diff --git a/.gitea/workflows/ci-dev.yaml b/.gitea/workflows/ci-dev.yaml index 3269e0e..d415c5f 100644 --- a/.gitea/workflows/ci-dev.yaml +++ b/.gitea/workflows/ci-dev.yaml @@ -1,4 +1,4 @@ -name: El CI — dev +name: El SDK CI — dev on: push: @@ -49,7 +49,6 @@ jobs: echo "gen3 (self-hosted) elc built" dist/platform/elc --version || true - # Run all four test suites — all must pass - name: Run tests — text run: | ELC="$(pwd)/dist/platform/elc" \ @@ -74,8 +73,98 @@ jobs: EL_HOME="$(pwd)" \ bash tests/html_sanitizer/run.sh - # Publish artifact to GCP Artifact Registry (dev) - - name: Publish elc to Artifact Registry (dev) + # Native El test suites (elc --test, compile-link-run) + - name: Run tests — native (core) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_core.el > /tmp/el_native_core.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_core.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_core + /tmp/el_native_core + + - name: Run tests — native (text) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_text.el > /tmp/el_native_text.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_text.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_text + /tmp/el_native_text + + - name: Run tests — native (string) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_string.el > /tmp/el_native_string.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_string.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_string + /tmp/el_native_string + + - name: Run tests — native (math) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_math.el > /tmp/el_native_math.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_math.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_math + /tmp/el_native_math + + - name: Run tests — native (state) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_state.el > /tmp/el_native_state.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_state.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_state + /tmp/el_native_state + + - name: Run tests — native (time) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_time.el > /tmp/el_native_time.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_time.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_time + /tmp/el_native_time + + - name: Run tests — native (json) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_json.el > /tmp/el_native_json.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_json.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_json + /tmp/el_native_json + + - name: Run tests — native (env) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_env.el > /tmp/el_native_env.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_env.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_env + /tmp/el_native_env + + - name: Run tests — native (fs) + run: | + set -euo pipefail + ELC="$(pwd)/dist/platform/elc" + RUNTIME="$(pwd)/el-compiler/runtime" + "$ELC" --test tests/native/test_fs.el > /tmp/el_native_fs.c + gcc -O2 -I "$RUNTIME" /tmp/el_native_fs.c "$RUNTIME/el_runtime.c" \ + -lcurl -lpthread -lm -o /tmp/el_native_fs + /tmp/el_native_fs + + - name: Publish El SDK to Artifact Registry (dev) env: GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} run: | @@ -88,6 +177,7 @@ jobs: gcloud config set project neuron-785695 VERSION="${GITEA_SHA:0:8}" + gcloud artifacts generic upload \ --repository=foundation-dev \ --location=us-central1 \ @@ -96,6 +186,21 @@ jobs: --version="${VERSION}" \ --source=dist/platform/elc - # Also tag as latest-dev - echo "Published elc version=${VERSION} to foundation-dev/el/elc" + gcloud artifacts generic upload \ + --repository=foundation-dev \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/el_runtime.c \ + --version="${VERSION}" \ + --source=el-compiler/runtime/el_runtime.c + + gcloud artifacts generic upload \ + --repository=foundation-dev \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/el_runtime.h \ + --version="${VERSION}" \ + --source=el-compiler/runtime/el_runtime.h + + echo "Published El SDK version=${VERSION} to foundation-dev" rm -f /tmp/gcp-key.json diff --git a/.gitea/workflows/ci-stage.yaml b/.gitea/workflows/ci-stage.yaml index b1daa33..185c558 100644 --- a/.gitea/workflows/ci-stage.yaml +++ b/.gitea/workflows/ci-stage.yaml @@ -1,4 +1,4 @@ -name: El CI — stage +name: El SDK CI — stage on: push: @@ -16,6 +16,16 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Enforce source branch (stage ← dev only) + if: github.event_name == 'pull_request' + run: | + SOURCE="${GITHUB_HEAD_REF}" + if [ "${SOURCE}" != "dev" ]; then + echo "ERROR: Stage branch only accepts PRs from 'dev'. Source was: '${SOURCE}'" + exit 1 + fi + echo "Source branch check passed: ${SOURCE} → stage" + - name: Install build dependencies run: | apt-get update -qq @@ -49,7 +59,6 @@ jobs: echo "gen3 (self-hosted) elc built" dist/platform/elc --version || true - # Run all four test suites — all must pass - name: Run tests — text run: | ELC="$(pwd)/dist/platform/elc" \ @@ -74,8 +83,7 @@ jobs: EL_HOME="$(pwd)" \ bash tests/html_sanitizer/run.sh - # Publish artifact to GCP Artifact Registry (stage) - - name: Publish elc to Artifact Registry (stage) + - name: Publish El SDK to Artifact Registry (stage) env: GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} run: | @@ -88,6 +96,7 @@ jobs: gcloud config set project neuron-785695 VERSION="${GITEA_SHA:0:8}" + gcloud artifacts generic upload \ --repository=foundation-stage \ --location=us-central1 \ @@ -96,5 +105,21 @@ jobs: --version="${VERSION}" \ --source=dist/platform/elc - echo "Published elc version=${VERSION} to foundation-stage/el/elc" + gcloud artifacts generic upload \ + --repository=foundation-stage \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/el_runtime.c \ + --version="${VERSION}" \ + --source=el-compiler/runtime/el_runtime.c + + gcloud artifacts generic upload \ + --repository=foundation-stage \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/el_runtime.h \ + --version="${VERSION}" \ + --source=el-compiler/runtime/el_runtime.h + + echo "Published El SDK version=${VERSION} to foundation-stage" rm -f /tmp/gcp-key.json diff --git a/.gitea/workflows/sdk-release.yaml b/.gitea/workflows/sdk-release.yaml index e102216..627aa85 100644 --- a/.gitea/workflows/sdk-release.yaml +++ b/.gitea/workflows/sdk-release.yaml @@ -13,6 +13,16 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Enforce source branch (main ← stage only) + if: github.event_name == 'pull_request' + run: | + SOURCE="${GITHUB_HEAD_REF}" + if [ "${SOURCE}" != "stage" ]; then + echo "ERROR: Main branch only accepts PRs from 'stage'. Source was: '${SOURCE}'" + exit 1 + fi + echo "Source branch check passed: ${SOURCE} → main" + - name: Install build dependencies run: | apt-get update -qq @@ -128,6 +138,48 @@ jobs: echo "Release published successfully" + # Publish artifacts to GCP Artifact Registry (prod) + - name: Publish El SDK to Artifact Registry (prod) + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "${GCP_SA_KEY}" > /tmp/gcp-key.json + apt-get install -y -qq apt-transport-https ca-certificates gnupg curl + curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg + echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" > /etc/apt/sources.list.d/google-cloud-sdk.list + apt-get update -qq && apt-get install -y google-cloud-cli + gcloud auth activate-service-account --key-file=/tmp/gcp-key.json + gcloud config set project neuron-785695 + + VERSION="${GITEA_SHA:0:8}" + + gcloud artifacts generic upload \ + --repository=foundation-prod \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/elc \ + --version="${VERSION}" \ + --source=dist/platform/elc + + gcloud artifacts generic upload \ + --repository=foundation-prod \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/el_runtime.c \ + --version="${VERSION}" \ + --source=el-compiler/runtime/el_runtime.c + + gcloud artifacts generic upload \ + --repository=foundation-prod \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/el_runtime.h \ + --version="${VERSION}" \ + --source=el-compiler/runtime/el_runtime.h + + echo "Published El SDK version=${VERSION} to foundation-prod" + rm -f /tmp/gcp-key.json + # Dispatch el-sdk-updated event to downstream repos # Publish artifact to GCP Artifact Registry (prod) - name: Publish elc to Artifact Registry (prod) @@ -189,3 +241,75 @@ jobs: } }" echo "Dispatched el-sdk-updated to neuron-technologies/forge" + + - name: Dispatch to neuron-technologies/el-ui + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_API: https://git.neuralplatform.ai/api/v1 + run: | + curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Content-Type: application/json" \ + "${GITEA_API}/repos/neuron-technologies/el-ui/dispatches" \ + -d "{ + \"type\": \"el-sdk-updated\", + \"inputs\": { + \"el_version\": \"latest\", + \"commit\": \"${GITHUB_SHA}\" + } + }" + echo "Dispatched el-sdk-updated to neuron-technologies/el-ui" + + - name: Dispatch to neuron-technologies/elp + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_API: https://git.neuralplatform.ai/api/v1 + run: | + curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Content-Type: application/json" \ + "${GITEA_API}/repos/neuron-technologies/elp/dispatches" \ + -d "{ + \"type\": \"el-sdk-updated\", + \"inputs\": { + \"el_version\": \"latest\", + \"commit\": \"${GITHUB_SHA}\" + } + }" + echo "Dispatched el-sdk-updated to neuron-technologies/elp" + + - name: Dispatch to neuron-technologies/elql + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_API: https://git.neuralplatform.ai/api/v1 + run: | + curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Content-Type: application/json" \ + "${GITEA_API}/repos/neuron-technologies/elql/dispatches" \ + -d "{ + \"type\": \"el-sdk-updated\", + \"inputs\": { + \"el_version\": \"latest\", + \"commit\": \"${GITHUB_SHA}\" + } + }" + echo "Dispatched el-sdk-updated to neuron-technologies/elql" + + - name: Dispatch to neuron-technologies/el-ide + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_API: https://git.neuralplatform.ai/api/v1 + run: | + curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Content-Type: application/json" \ + "${GITEA_API}/repos/neuron-technologies/el-ide/dispatches" \ + -d "{ + \"type\": \"el-sdk-updated\", + \"inputs\": { + \"el_version\": \"latest\", + \"commit\": \"${GITHUB_SHA}\" + } + }" + echo "Dispatched el-sdk-updated to neuron-technologies/el-ide" diff --git a/dist/platform/elc b/dist/platform/elc deleted file mode 100755 index 9ec7b43..0000000 Binary files a/dist/platform/elc and /dev/null differ diff --git a/elp/.gitignore b/elp/.gitignore new file mode 100644 index 0000000..d984b0d --- /dev/null +++ b/elp/.gitignore @@ -0,0 +1,21 @@ +# Compiled El bytecode +*.elc + +# C codegen output +*.c +*.o +*.a +*.so +*.dylib + +# Combined build artifacts +_combined.el +*-combined.el + +# Distribution / build output +dist/ +build/ +out/ + +# OS +.DS_Store diff --git a/elp/manifest.el b/elp/manifest.el new file mode 100644 index 0000000..dcec603 --- /dev/null +++ b/elp/manifest.el @@ -0,0 +1,85 @@ +package "elp" { + version "0.7.0" + description "Engram Language Protocol — bidirectional engine mapping between Engram semantic forms and natural language surface text. 31 languages." + edition "2026" +} + +build { + entry "src/elp.el" + + // Compilation order (dependency order): + // language-profile (no deps) + // vocabulary (no deps) + // morphology (depends on: language-profile) + // morphology-es (depends on: morphology) Spanish + // morphology-fr (depends on: morphology) French + // morphology-de (depends on: morphology) German + // morphology-ru (depends on: morphology) Russian + // morphology-ja (depends on: morphology) Japanese + // morphology-fi (depends on: morphology) Finnish + // morphology-ar (depends on: morphology) Arabic + // morphology-hi (depends on: morphology) Hindi + // morphology-sw (depends on: morphology) Swahili + // morphology-la (depends on: morphology) Latin + // morphology-he (depends on: morphology) Hebrew + // morphology-grc (depends on: morphology) Ancient Greek + // morphology-ang (depends on: morphology) Old English + // morphology-sa (depends on: morphology) Sanskrit + // morphology-got (depends on: morphology) Gothic + // morphology-non (depends on: morphology) Old Norse + // morphology-enm (depends on: morphology) Middle English + // morphology-pi (depends on: morphology) Pali + // morphology-fro (depends on: morphology) Old French + // morphology-goh (depends on: morphology) Old High German + // morphology-sga (depends on: morphology) Old Irish + // morphology-txb (depends on: morphology) Tocharian B + // morphology-peo (depends on: morphology) Old Persian + // morphology-akk (depends on: morphology) Akkadian + // morphology-uga (depends on: morphology) Ugaritic + // morphology-egy (depends on: morphology) Ancient Egyptian + // morphology-sux (depends on: morphology) Sumerian + // morphology-gez (depends on: morphology) Ge'ez (Classical Ethiopic) + // morphology-cop (depends on: morphology) Coptic (Sahidic) + // grammar (depends on: language-profile) + // realizer (depends on: morphology, grammar, language-profile) + // semantics (depends on: grammar, realizer, language-profile) + // elp (depends on: semantics, realizer) + sources [ + "src/language-profile.el", + "src/vocabulary.el", + "src/morphology.el", + "src/morphology-es.el", + "src/morphology-fr.el", + "src/morphology-de.el", + "src/morphology-ru.el", + "src/morphology-ja.el", + "src/morphology-fi.el", + "src/morphology-ar.el", + "src/morphology-hi.el", + "src/morphology-sw.el", + "src/morphology-la.el", + "src/morphology-he.el", + "src/morphology-grc.el", + "src/morphology-ang.el", + "src/morphology-sa.el", + "src/morphology-got.el", + "src/morphology-non.el", + "src/morphology-enm.el", + "src/morphology-pi.el", + "src/morphology-fro.el", + "src/morphology-goh.el", + "src/morphology-sga.el", + "src/morphology-txb.el", + "src/morphology-peo.el", + "src/morphology-akk.el", + "src/morphology-uga.el", + "src/morphology-egy.el", + "src/morphology-sux.el", + "src/morphology-gez.el", + "src/morphology-cop.el", + "src/grammar.el", + "src/realizer.el", + "src/semantics.el", + "src/elp.el", + ] +} diff --git a/elp/src/elp.el b/elp/src/elp.el new file mode 100644 index 0000000..3269061 --- /dev/null +++ b/elp/src/elp.el @@ -0,0 +1,159 @@ +// elp.el - Engram Language Protocol — public API. +// +// Output half of the ELP: Engram semantic form → natural language surface text. +// 31 languages. Ties together language-profile, vocabulary, morphology, +// grammar, realizer, and semantics into a single entry point. +// +// Import chain (mirrors manifest.el dependency order): +// language-profile (no deps) +// vocabulary (no deps) +// morphology (depends on: language-profile) +// morphology-XX (depends on: morphology) — all language engines +// grammar (depends on: language-profile) +// realizer (depends on: morphology, grammar, language-profile) +// semantics (depends on: grammar, realizer, language-profile) +// +// When elc processes a source that imports this file, it resolves all +// transitive imports via depth-first deduplication — each module is +// inlined exactly once regardless of how many importers reference it. + +// ── Base layers ─────────────────────────────────────────────────────────────── +import "language-profile.el" +import "vocabulary.el" + +// ── Morphology: base engine ─────────────────────────────────────────────────── +import "morphology.el" + +// ── Morphology: living languages ────────────────────────────────────────────── +import "morphology-es.el" +import "morphology-fr.el" +import "morphology-de.el" +import "morphology-ru.el" +import "morphology-ja.el" +import "morphology-fi.el" +import "morphology-ar.el" +import "morphology-hi.el" +import "morphology-sw.el" + +// ── Morphology: ancient / classical ────────────────────────────────────────── +import "morphology-la.el" +import "morphology-he.el" + +// ── Morphology: dead languages ──────────────────────────────────────────────── +import "morphology-grc.el" +import "morphology-ang.el" +import "morphology-sa.el" +import "morphology-got.el" +import "morphology-non.el" +import "morphology-enm.el" +import "morphology-pi.el" +import "morphology-fro.el" +import "morphology-goh.el" +import "morphology-sga.el" +import "morphology-txb.el" +import "morphology-peo.el" +import "morphology-akk.el" +import "morphology-uga.el" +import "morphology-egy.el" +import "morphology-sux.el" +import "morphology-gez.el" +import "morphology-cop.el" + +// ── Higher layers ───────────────────────────────────────────────────────────── +import "grammar.el" +import "realizer.el" +import "semantics.el" +// +// Entry points: +// +// generate(semantic_form_json) -> String +// Low-level JSON-based API, defaults to English. SemanticForm JSON fields: +// intent - "assert" | "question" | "command" +// agent - subject (pronoun or noun phrase, optional for commands) +// predicate - verb base form +// patient - object noun phrase (optional) +// location - prepositional phrase e.g. "in the park" (optional) +// tense - "present" | "past" | "future" (default: "present") +// aspect - "simple" | "progressive" | "perfect" (default: "simple") +// lang - ISO 639-1 code (default: "en") +// +// generate_lang(semantic_form_json, lang_code) -> String +// JSON-based API with explicit language code (overrides any "lang" in JSON). +// +// generate_frame(frame: SemFrame) -> String +// High-level SemFrame API. Language from frame's "lang" field (default "en"). +// Intents: "assert" | "query" | "describe" | "greet". +// +// generate_frame_lang(frame: SemFrame, lang_code: String) -> String +// High-level SemFrame API with explicit language code override. + +// ── JSON helpers ────────────────────────────────────────────────────────────── + +fn sem_get(json: String, key: String) -> String { + let val: String = json_get(json, key) + return val +} + +// ── Public API: SemFrame ────────────────────────────────────────────────────── + +// Generate text from a SemFrame in the language embedded in the frame (default "en"). +fn generate_frame(frame: [String]) -> String { + return sem_realize(frame) +} + +// Generate text from a SemFrame in the specified language. +fn generate_frame_lang(frame: [String], lang_code: String) -> String { + return sem_realize_lang(frame, lang_code) +} + +// ── Public API: JSON ────────────────────────────────────────────────────────── + +// Build a realizer slot map from JSON fields and an explicit lang code. +fn build_form_from_json(semantic_form_json: String, lang_code: String) -> [String] { + let intent: String = sem_get(semantic_form_json, "intent") + let agent: String = sem_get(semantic_form_json, "agent") + let predicate: String = sem_get(semantic_form_json, "predicate") + let patient: String = sem_get(semantic_form_json, "patient") + let location: String = sem_get(semantic_form_json, "location") + let tense: String = sem_get(semantic_form_json, "tense") + let aspect: String = sem_get(semantic_form_json, "aspect") + + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, intent) + let form = native_list_append(form, "agent") + let form = native_list_append(form, agent) + let form = native_list_append(form, "predicate") + let form = native_list_append(form, predicate) + let form = native_list_append(form, "patient") + let form = native_list_append(form, patient) + let form = native_list_append(form, "location") + let form = native_list_append(form, location) + let form = native_list_append(form, "tense") + let form = native_list_append(form, tense) + let form = native_list_append(form, "aspect") + let form = native_list_append(form, aspect) + let form = native_list_append(form, "lang") + let form = native_list_append(form, lang_code) + + return form +} + +// Generate text from a JSON semantic form. Language defaults to "en" unless +// the JSON contains a "lang" field. +fn generate(semantic_form_json: String) -> String { + let lang_in_json: String = sem_get(semantic_form_json, "lang") + let lang_code: String = lang_in_json + if str_eq(lang_code, "") { + let lang_code = "en" + } + let form: [String] = build_form_from_json(semantic_form_json, lang_code) + return realize(form) +} + +// Generate text from a JSON semantic form in the specified language. +// lang_code overrides any "lang" field present in the JSON. +fn generate_lang(semantic_form_json: String, lang_code: String) -> String { + let form: [String] = build_form_from_json(semantic_form_json, lang_code) + return realize(form) +} diff --git a/elp/src/elp.elh b/elp/src/elp.elh new file mode 100644 index 0000000..ab8a621 --- /dev/null +++ b/elp/src/elp.elh @@ -0,0 +1,7 @@ +// auto-generated by elc --emit-header — do not edit +extern fn sem_get(json: String, key: String) -> String +extern fn generate_frame(frame: Any) -> String +extern fn generate_frame_lang(frame: Any, lang_code: String) -> String +extern fn build_form_from_json(semantic_form_json: String, lang_code: String) -> Any +extern fn generate(semantic_form_json: String) -> String +extern fn generate_lang(semantic_form_json: String, lang_code: String) -> String diff --git a/elp/src/grammar.el b/elp/src/grammar.el new file mode 100644 index 0000000..d10ed73 --- /dev/null +++ b/elp/src/grammar.el @@ -0,0 +1,555 @@ +// grammar.el - Grammar engine: syntactic structure, word order, phrase assembly. +// +// Language-specific word order and question strategy are driven by the language +// profile, not hardcoded. The slot map format (GramSpec) is universal; a "lang" +// key carries the ISO 639-1 code so every downstream function can resolve the +// active profile. +// +// GramSpec slot keys: +// intent - "assert" | "question" | "command" +// agent - subject referent string +// predicate - verb base form +// patient - object noun phrase (optional) +// location - prepositional phrase (optional) +// tense - "present" | "past" | "future" +// aspect - "simple" | "progressive" | "perfect" +// lang - ISO 639-1 code (default "en") +// verb_surf - conjugated verb surface form (computed) +// aux_surf - auxiliary surface form (computed) +// +// Depends on: language-profile + +// ── Slot map helpers ────────────────────────────────────────────────────────── + +fn slots_get(slots: [String], key: String) -> String { + let n: Int = native_list_len(slots) + let i: Int = 0 + while i < n - 1 { + let k: String = native_list_get(slots, i) + if str_eq(k, key) { + return native_list_get(slots, i + 1) + } + let i = i + 2 + } + return "" +} + +fn slots_set(slots: [String], key: String, val: String) -> [String] { + let n: Int = native_list_len(slots) + let result: [String] = native_list_empty() + let found: Bool = false + let i: Int = 0 + while i < n - 1 { + let k: String = native_list_get(slots, i) + let v: String = native_list_get(slots, i + 1) + if str_eq(k, key) { + let result = native_list_append(result, k) + let result = native_list_append(result, val) + let found = true + } else { + let result = native_list_append(result, k) + let result = native_list_append(result, v) + } + let i = i + 2 + } + if !found { + let result = native_list_append(result, key) + let result = native_list_append(result, val) + } + return result +} + +fn make_slots(k0: String, v0: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, k0) + let r = native_list_append(r, v0) + return r +} + +fn make_slots2(k0: String, v0: String, k1: String, v1: String) -> [String] { + let r: [String] = make_slots(k0, v0) + let r = native_list_append(r, k1) + let r = native_list_append(r, v1) + return r +} + +fn make_slots3(k0: String, v0: String, k1: String, v1: String, k2: String, v2: String) -> [String] { + let r: [String] = make_slots2(k0, v0, k1, v1) + let r = native_list_append(r, k2) + let r = native_list_append(r, v2) + return r +} + +fn make_slots4(k0: String, v0: String, k1: String, v1: String, k2: String, v2: String, k3: String, v3: String) -> [String] { + let r: [String] = make_slots3(k0, v0, k1, v1, k2, v2) + let r = native_list_append(r, k3) + let r = native_list_append(r, v3) + return r +} + +fn make_slots5(k0: String, v0: String, k1: String, v1: String, k2: String, v2: String, k3: String, v3: String, k4: String, v4: String) -> [String] { + let r: [String] = make_slots4(k0, v0, k1, v1, k2, v2, k3, v3) + let r = native_list_append(r, k4) + let r = native_list_append(r, v4) + return r +} + +// ── Grammar rule catalog ────────────────────────────────────────────────────── + +fn rule_id(rule: [String]) -> String { + return native_list_get(rule, 0) +} + +fn rule_lhs(rule: [String]) -> String { + return native_list_get(rule, 1) +} + +fn rule_rhs_len(rule: [String]) -> Int { + let n: Int = native_list_len(rule) + return n - 2 +} + +fn rule_rhs(rule: [String], idx: Int) -> String { + return native_list_get(rule, idx + 2) +} + +fn make_rule(id: String, lhs: String, r0: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, id) + let r = native_list_append(r, lhs) + let r = native_list_append(r, r0) + return r +} + +fn make_rule2(id: String, lhs: String, r0: String, r1: String) -> [String] { + let r: [String] = make_rule(id, lhs, r0) + let r = native_list_append(r, r1) + return r +} + +fn make_rule3(id: String, lhs: String, r0: String, r1: String, r2: String) -> [String] { + let r: [String] = make_rule2(id, lhs, r0, r1) + let r = native_list_append(r, r2) + return r +} + +fn make_rule4(id: String, lhs: String, r0: String, r1: String, r2: String, r3: String) -> [String] { + let r: [String] = make_rule3(id, lhs, r0, r1, r2) + let r = native_list_append(r, r3) + return r +} + +fn build_rules() -> [[String]] { + let rules: [[String]] = native_list_empty() + + let rules = native_list_append(rules, make_rule2("S-DECL", "S", "NP", "VP")) + let rules = native_list_append(rules, make_rule3("S-QUEST", "S", "Aux", "NP", "VP")) + let rules = native_list_append(rules, make_rule("S-IMP", "S", "VP")) + let rules = native_list_append(rules, make_rule2("NP-DET-N", "NP", "Det", "N")) + let rules = native_list_append(rules, make_rule3("NP-DET-ADJ-N","NP", "Det", "Adj", "N")) + let rules = native_list_append(rules, make_rule("NP-PRON", "NP", "Pron")) + let rules = native_list_append(rules, make_rule("NP-N", "NP", "N")) + let rules = native_list_append(rules, make_rule("VP-V", "VP", "V")) + let rules = native_list_append(rules, make_rule2("VP-V-NP", "VP", "V", "NP")) + let rules = native_list_append(rules, make_rule2("VP-V-PP", "VP", "V", "PP")) + let rules = native_list_append(rules, make_rule3("VP-V-NP-PP", "VP", "V", "NP", "PP")) + let rules = native_list_append(rules, make_rule2("VP-AUX-V", "VP", "Aux", "V")) + let rules = native_list_append(rules, make_rule3("VP-AUX-V-NP", "VP", "Aux", "V", "NP")) + let rules = native_list_append(rules, make_rule2("PP-P-NP", "PP", "P", "NP")) + + return rules +} + +fn get_rules() -> [[String]] { + return build_rules() +} + +fn find_rule(rule_id_str: String) -> [String] { + let rules: [[String]] = get_rules() + let n: Int = native_list_len(rules) + let i: Int = 0 + while i < n { + let rule: [String] = native_list_get(rules, i) + let id: String = native_list_get(rule, 0) + if str_eq(id, rule_id_str) { + return rule + } + let i = i + 1 + } + let empty: [String] = native_list_empty() + return empty +} + +// ── Tree node construction ──────────────────────────────────────────────────── + +fn make_leaf(label: String, word: String) -> String { + return "(" + label + " " + word + ")" +} + +fn make_node1(label: String, child0: String) -> String { + return "(" + label + " _ " + child0 + ")" +} + +fn make_node2(label: String, child0: String, child1: String) -> String { + return "(" + label + " _ " + child0 + " " + child1 + ")" +} + +fn make_node3(label: String, child0: String, child1: String, child2: String) -> String { + return "(" + label + " _ " + child0 + " " + child1 + " " + child2 + ")" +} + +fn make_node4(label: String, child0: String, child1: String, child2: String, child3: String) -> String { + return "(" + label + " _ " + child0 + " " + child1 + " " + child2 + " " + child3 + ")" +} + +// ── Tree rendering ──────────────────────────────────────────────────────────── + +fn nlg_is_ws(c: String) -> Bool { + if str_eq(c, " ") { return true } + if str_eq(c, "\t") { return true } + if str_eq(c, "\n") { return true } + return false +} + +fn skip_ws(s: String, pos: Int) -> Int { + let n: Int = str_len(s) + let i: Int = pos + let running: Bool = true + while running { + if i >= n { + let running = false + } else { + let c: String = str_slice(s, i, i + 1) + if nlg_is_ws(c) { + let i = i + 1 + } else { + let running = false + } + } + } + return i +} + +fn scan_token(s: String, start: Int) -> [String] { + let n: Int = str_len(s) + let i: Int = start + let running: Bool = true + while running { + if i >= n { + let running = false + } else { + let c: String = str_slice(s, i, i + 1) + if nlg_is_ws(c) { + let running = false + } else { + if str_eq(c, "(") { + let running = false + } else { + if str_eq(c, ")") { + let running = false + } else { + let i = i + 1 + } + } + } + } + } + let tok: String = str_slice(s, start, i) + let result: [String] = native_list_empty() + let result = native_list_append(result, tok) + let result = native_list_append(result, int_to_str(i)) + return result +} + +fn render_tree(tree: String) -> String { + let words: [String] = native_list_empty() + let n: Int = str_len(tree) + let i: Int = 0 + let prev_was_open: Bool = false + while i < n { + let c: String = str_slice(tree, i, i + 1) + if str_eq(c, "(") { + let prev_was_open = true + let i = i + 1 + } else { + if str_eq(c, ")") { + let prev_was_open = false + let i = i + 1 + } else { + if nlg_is_ws(c) { + let i = i + 1 + } else { + let tok_info: [String] = scan_token(tree, i) + let tok: String = native_list_get(tok_info, 0) + let new_i: Int = str_to_int(native_list_get(tok_info, 1)) + let i = new_i + if prev_was_open { + let prev_was_open = false + } else { + if !str_eq(tok, "_") { + let words = native_list_append(words, tok) + } + } + } + } + } + } + return str_join(words, " ") +} + +// ── Word-order engine ───────────────────────────────────────────────────────── + +// gram_word_order: returns the word order string from a profile. +fn gram_word_order(profile: [String]) -> String { + return lang_word_order(profile) +} + +// gram_order_constituents: order Subject, Verb, Object tokens according to the +// language profile's word_order. +// +// subj, verb, obj: surface strings (may be empty). +// Returns a space-joined string in the correct order. +// +// Supported orders: SVO, SOV, VSO, VOS, OVS, OSV, free (defaults to SVO). + +fn gram_order_constituents(subj: String, verb: String, obj: String, profile: [String]) -> String { + let order: String = gram_word_order(profile) + let parts: [String] = native_list_empty() + + if str_eq(order, "SVO") { + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + return str_join(parts, " ") + } + + if str_eq(order, "SOV") { + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + return str_join(parts, " ") + } + + if str_eq(order, "VSO") { + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + return str_join(parts, " ") + } + + if str_eq(order, "VOS") { + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + return str_join(parts, " ") + } + + if str_eq(order, "OVS") { + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + return str_join(parts, " ") + } + + if str_eq(order, "OSV") { + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + return str_join(parts, " ") + } + + // "free" and unknown: use SVO as the neutral citation order. + if !str_eq(subj, "") { let parts = native_list_append(parts, subj) } + if !str_eq(verb, "") { let parts = native_list_append(parts, verb) } + if !str_eq(obj, "") { let parts = native_list_append(parts, obj) } + return str_join(parts, " ") +} + +// gram_build_vp: construct a verb phrase surface string. +// +// verb: main verb surface form. +// aux: auxiliary surface form (empty if none). +// profile: language profile. +// +// In SVO/VSO/VOS languages the auxiliary precedes the main verb. +// In SOV languages the verb cluster appears at the end; we keep aux before V +// as a reasonable default for the auxiliary-final constructions in those languages. + +fn gram_build_vp(verb: String, aux: String, profile: [String]) -> String { + if str_eq(aux, "") { + return verb + } + return aux + " " + verb +} + +// gram_question_strategy: returns the question formation strategy for a language. +// +// "do-support" - English: "Do you see?" — do-auxiliary inserted, verb stays base +// "particle" - Japanese: sentence-final か appended +// "intonation" - Mandarin, Spanish: rising intonation only, word order unchanged +// "inversion" - French, German: subject-verb inversion + +fn gram_question_strategy(profile: [String]) -> String { + let code: String = lang_get(profile, "code") + if str_eq(code, "en") { return "do-support" } + if str_eq(code, "ja") { return "particle" } + if str_eq(code, "zh") { return "intonation" } + if str_eq(code, "es") { return "intonation" } + if str_eq(code, "fr") { return "inversion" } + if str_eq(code, "de") { return "inversion" } + if str_eq(code, "ar") { return "intonation" } + if str_eq(code, "hi") { return "particle" } + if str_eq(code, "ru") { return "intonation" } + if str_eq(code, "fi") { return "particle" } + if str_eq(code, "sw") { return "intonation" } + if str_eq(code, "la") { return "intonation" } // Latin: word order marks Q (VSO or -ne suffix) + if str_eq(code, "he") { return "intonation" } // Modern Hebrew: rising intonation + if str_eq(code, "grc") { return "intonation" } // Ancient Greek: ἆρα particle or intonation + if str_eq(code, "ang") { return "intonation" } // Old English: hwæþer particle or intonation + if str_eq(code, "sa") { return "intonation" } // Sanskrit: kim particle or intonation + if str_eq(code, "got") { return "intonation" } // Gothic: ibai particle or intonation + if str_eq(code, "non") { return "intonation" } // Old Norse: hvárr particle or intonation + if str_eq(code, "enm") { return "do-support" } // Middle English: do-support emerging + if str_eq(code, "pi") { return "intonation" } // Pali: kim particle or intonation + // Unknown: default to intonation (safest — never wrong, just flat) + return "intonation" +} + +// ── NP and PP assembly ──────────────────────────────────────────────────────── +// +// These functions are profile-aware but the logic is the same across languages +// because we work with pre-assembled strings (Engram vocabulary supplies +// language-specific forms before these functions see them). + +fn is_pronoun(word: String) -> Bool { + if str_eq(word, "I") { return true } + if str_eq(word, "you") { return true } + if str_eq(word, "he") { return true } + if str_eq(word, "she") { return true } + if str_eq(word, "it") { return true } + if str_eq(word, "we") { return true } + if str_eq(word, "they") { return true } + if str_eq(word, "me") { return true } + if str_eq(word, "him") { return true } + if str_eq(word, "her") { return true } + if str_eq(word, "us") { return true } + if str_eq(word, "them") { return true } + return false +} + +// build_np: assemble a noun phrase tree from a referent string. +// profile parameter reserved for future case-marking / article agreement. +fn build_np(referent: String, slots: [String]) -> String { + if is_pronoun(referent) { + return make_node1("NP", make_leaf("Pron", referent)) + } + let parts: [String] = str_split(referent, " ") + let np: Int = native_list_len(parts) + if np == 1 { + return make_node1("NP", make_leaf("N", referent)) + } + if np == 2 { + let det: String = native_list_get(parts, 0) + let noun: String = native_list_get(parts, 1) + return make_node2("NP", make_leaf("Det", det), make_leaf("N", noun)) + } + if np == 3 { + let det: String = native_list_get(parts, 0) + let adj: String = native_list_get(parts, 1) + let noun: String = native_list_get(parts, 2) + return make_node3("NP", make_leaf("Det", det), make_leaf("Adj", adj), make_leaf("N", noun)) + } + return make_node1("NP", make_leaf("N", referent)) +} + +// build_pp: assemble a prepositional phrase tree from a "PREP NP" string. +// For postpositional languages (ja, hi, ko) the slot value is expected to be +// already pre-assembled with the postposition in the correct position by the +// caller (vocabulary lookup from Engram supplies the right surface form). +fn build_pp(loc: String) -> String { + let parts: [String] = str_split(loc, " ") + let n: Int = native_list_len(parts) + if n < 2 { + return make_leaf("PP", loc) + } + let prep: String = native_list_get(parts, 0) + let np_parts: [String] = native_list_empty() + let i: Int = 1 + while i < n { + let np_parts = native_list_append(np_parts, native_list_get(parts, i)) + let i = i + 1 + } + let np_str: String = str_join(np_parts, " ") + let np_tree: String = build_np(np_str, native_list_empty()) + return make_node2("PP", make_leaf("P", prep), np_tree) +} + +// ── VP tree construction ────────────────────────────────────────────────────── + +fn build_vp_body(slots: [String]) -> String { + let verb_surf: String = slots_get(slots, "verb_surf") + let patient: String = slots_get(slots, "patient") + let loc: String = slots_get(slots, "location") + if !str_eq(patient, "") { + let obj_np: String = build_np(patient, slots) + if !str_eq(loc, "") { + let pp: String = build_pp(loc) + return make_node3("VP", make_leaf("V", verb_surf), obj_np, pp) + } + return make_node2("VP", make_leaf("V", verb_surf), obj_np) + } + if !str_eq(loc, "") { + let pp: String = build_pp(loc) + return make_node2("VP", make_leaf("V", verb_surf), pp) + } + return make_node1("VP", make_leaf("V", verb_surf)) +} + +fn build_vp_from_slots(slots: [String]) -> String { + let aux_surf: String = slots_get(slots, "aux_surf") + if !str_eq(aux_surf, "") { + let verb_surf: String = slots_get(slots, "verb_surf") + let patient: String = slots_get(slots, "patient") + let loc: String = slots_get(slots, "location") + if !str_eq(patient, "") { + let obj_np: String = build_np(patient, slots) + return make_node3("VP", make_leaf("Aux", aux_surf), make_leaf("V", verb_surf), obj_np) + } + return make_node2("VP", make_leaf("Aux", aux_surf), make_leaf("V", verb_surf)) + } + return build_vp_body(slots) +} + +// ── Tree generator ──────────────────────────────────────────────────────────── + +fn generate_tree(rule_id_str: String, slots: [String]) -> String { + let rule: [String] = find_rule(rule_id_str) + let n: Int = native_list_len(rule) + if n == 0 { + return make_leaf("ERR", "unknown-rule") + } + + let lhs: String = native_list_get(rule, 1) + + if str_eq(rule_id_str, "S-DECL") { + let agent: String = slots_get(slots, "agent") + let np_tree: String = build_np(agent, slots) + let vp_tree: String = build_vp_from_slots(slots) + return make_node2("S", np_tree, vp_tree) + } + + if str_eq(rule_id_str, "S-QUEST") { + let agent: String = slots_get(slots, "agent") + let np_tree: String = build_np(agent, slots) + let vp_tree: String = build_vp_body(slots) + let aux_surf: String = slots_get(slots, "aux_surf") + return make_node3("S", make_leaf("Aux", aux_surf), np_tree, vp_tree) + } + + if str_eq(rule_id_str, "S-IMP") { + let vp_tree: String = build_vp_from_slots(slots) + return make_node1("S", vp_tree) + } + + return make_leaf(lhs, "?") +} diff --git a/elp/src/grammar.elh b/elp/src/grammar.elh new file mode 100644 index 0000000..ef8cf80 --- /dev/null +++ b/elp/src/grammar.elh @@ -0,0 +1,38 @@ +// auto-generated by elc --emit-header - do not edit +extern fn slots_get(slots: Any, key: String) -> String +extern fn slots_set(slots: Any, key: String, val: String) -> Any +extern fn make_slots(k0: String, v0: String) -> Any +extern fn make_slots2(k0: String, v0: String, k1: String, v1: String) -> Any +extern fn make_slots3(k0: String, v0: String, k1: String, v1: String, k2: String, v2: String) -> Any +extern fn make_slots4(k0: String, v0: String, k1: String, v1: String, k2: String, v2: String, k3: String, v3: String) -> Any +extern fn make_slots5(k0: String, v0: String, k1: String, v1: String, k2: String, v2: String, k3: String, v3: String, k4: String, v4: String) -> Any +extern fn rule_id(rule: Any) -> String +extern fn rule_lhs(rule: Any) -> String +extern fn rule_rhs_len(rule: Any) -> Int +extern fn rule_rhs(rule: Any, idx: Int) -> String +extern fn make_rule(id: String, lhs: String, r0: String) -> Any +extern fn make_rule2(id: String, lhs: String, r0: String, r1: String) -> Any +extern fn make_rule3(id: String, lhs: String, r0: String, r1: String, r2: String) -> Any +extern fn make_rule4(id: String, lhs: String, r0: String, r1: String, r2: String, r3: String) -> Any +extern fn build_rules() -> Any +extern fn get_rules() -> Any +extern fn find_rule(rule_id_str: String) -> Any +extern fn make_leaf(label: String, word: String) -> String +extern fn make_node1(label: String, child0: String) -> String +extern fn make_node2(label: String, child0: String, child1: String) -> String +extern fn make_node3(label: String, child0: String, child1: String, child2: String) -> String +extern fn make_node4(label: String, child0: String, child1: String, child2: String, child3: String) -> String +extern fn nlg_is_ws(c: String) -> Bool +extern fn skip_ws(s: String, pos: Int) -> Int +extern fn scan_token(s: String, start: Int) -> Any +extern fn render_tree(tree: String) -> String +extern fn gram_word_order(profile: Any) -> String +extern fn gram_order_constituents(subj: String, verb: String, obj: String, profile: Any) -> String +extern fn gram_build_vp(verb: String, aux: String, profile: Any) -> String +extern fn gram_question_strategy(profile: Any) -> String +extern fn is_pronoun(word: String) -> Bool +extern fn build_np(referent: String, slots: Any) -> String +extern fn build_pp(loc: String) -> String +extern fn build_vp_body(slots: Any) -> String +extern fn build_vp_from_slots(slots: Any) -> String +extern fn generate_tree(rule_id_str: String, slots: Any) -> String diff --git a/elp/src/language-profile.el b/elp/src/language-profile.el new file mode 100644 index 0000000..2635784 --- /dev/null +++ b/elp/src/language-profile.el @@ -0,0 +1,353 @@ +// language-profile.el - Language profile data and accessors. +// +// A language profile is a slot map ([String] key-value list) describing the +// typological properties of a natural language. The engine reads these +// properties to drive morphology, word-order, and question-formation without +// any per-language code paths. +// +// Profile slot keys: +// code - ISO 639-1 code: "en", "ja", "ar", "zh", "de", "fr", "es", "sw", "hi", "ru", etc. +// word_order - "SVO" | "SOV" | "VSO" | "VOS" | "OVS" | "OSV" | "free" +// morph_type - "isolating" | "agglutinative" | "fusional" | "polysynthetic" +// has_case - "true" | "false" +// has_gender - "true" | "false" +// script_dir - "ltr" | "rtl" | "ttb" +// agreement - semicolon-separated features: "number;person" | "number;person;gender;case" | "none" +// null_subject - "true" | "false" (pro-drop: subject may be omitted) + +// ── Constructor ─────────────────────────────────────────────────────────────── + +fn lang_profile(code: String, word_order: String, morph_type: String, has_case: String, has_gender: String, script_dir: String, agreement: String, null_subject: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, "code") + let r = native_list_append(r, code) + let r = native_list_append(r, "word_order") + let r = native_list_append(r, word_order) + let r = native_list_append(r, "morph_type") + let r = native_list_append(r, morph_type) + let r = native_list_append(r, "has_case") + let r = native_list_append(r, has_case) + let r = native_list_append(r, "has_gender") + let r = native_list_append(r, has_gender) + let r = native_list_append(r, "script_dir") + let r = native_list_append(r, script_dir) + let r = native_list_append(r, "agreement") + let r = native_list_append(r, agreement) + let r = native_list_append(r, "null_subject") + let r = native_list_append(r, null_subject) + return r +} + +// ── Accessor ────────────────────────────────────────────────────────────────── + +fn lang_get(profile: [String], key: String) -> String { + let n: Int = native_list_len(profile) + let i: Int = 0 + while i < n - 1 { + let k: String = native_list_get(profile, i) + if str_eq(k, key) { + return native_list_get(profile, i + 1) + } + let i = i + 2 + } + return "" +} + +// ── Built-in profiles ───────────────────────────────────────────────────────── +// +// Each profile encodes typological facts about one language. These are data, +// not separate code paths. Adding a new language means adding a new profile +// and loading its vocabulary/suffix tables into the Engram - no engine changes. + +// English: SVO, fusional, no grammatical case (nominative/accusative collapsed), +// no grammatical gender, left-to-right, agreement on number and person, +// obligatory subject (no pro-drop). +fn lang_profile_en() -> [String] { + return lang_profile("en", "SVO", "fusional", "false", "false", "ltr", "number;person", "false") +} + +// Japanese: SOV, agglutinative, grammatical relations marked by postpositions +// (not inflectional case), no grammatical gender, left-to-right, no agreement +// morphology on verbs, pro-drop (null subject frequent). +fn lang_profile_ja() -> [String] { + return lang_profile("ja", "SOV", "agglutinative", "false", "false", "ltr", "none", "true") +} + +// Arabic: VSO, fusional, full case system, grammatical gender (masc/fem), +// right-to-left script, agreement on number, person, gender, and case, +// pro-drop (subject agreement marking on verb allows subject omission). +fn lang_profile_ar() -> [String] { + return lang_profile("ar", "VSO", "fusional", "true", "true", "rtl", "number;person;gender;case", "true") +} + +// Mandarin Chinese: SVO, isolating (no morphological inflection), no case, +// no grammatical gender, left-to-right, no agreement (no morphological marking), +// null subject allowed in discourse context. +fn lang_profile_zh() -> [String] { + return lang_profile("zh", "SVO", "isolating", "false", "false", "ltr", "none", "true") +} + +// German: V2 (second-position verb, base SOV in subordinate clauses), fusional, +// four-case system, three grammatical genders, left-to-right, agreement on +// number, person, gender, and case, obligatory subject. +fn lang_profile_de() -> [String] { + return lang_profile("de", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "false") +} + +// Spanish: SVO, fusional, no morphological case (but object clitics exist), +// grammatical gender (masc/fem), left-to-right, agreement on number, person, +// and gender, pro-drop (rich verbal agreement allows subject omission). +fn lang_profile_es() -> [String] { + return lang_profile("es", "SVO", "fusional", "false", "true", "ltr", "number;person;gender", "true") +} + +// Finnish: SOV, agglutinative, fifteen grammatical cases, no grammatical gender, +// left-to-right, agreement on number, person, and case, no pro-drop (subject +// required in finite clauses). +fn lang_profile_fi() -> [String] { + return lang_profile("fi", "SOV", "agglutinative", "true", "false", "ltr", "number;person;case", "false") +} + +// Swahili: SVO, agglutinative, noun-class system (15+ classes replacing gender), +// no case inflection, left-to-right, agreement driven by noun class and number, +// pro-drop (subject prefix on verb can stand alone). +fn lang_profile_sw() -> [String] { + return lang_profile("sw", "SVO", "agglutinative", "false", "false", "ltr", "noun-class;number", "true") +} + +// Hindi: SOV, fusional, case-marked postpositional system, grammatical gender +// (masc/fem), left-to-right (Devanagari script still ltr), agreement on number, +// person, gender, and case, pro-drop (subject frequently dropped). +fn lang_profile_hi() -> [String] { + return lang_profile("hi", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Russian: free word order (pragmatically determined), fusional, six-case system, +// three grammatical genders, left-to-right (Cyrillic), agreement on number, +// person, gender, and case, no pro-drop (subject required). +fn lang_profile_ru() -> [String] { + return lang_profile("ru", "free", "fusional", "true", "true", "ltr", "number;person;gender;case", "false") +} + +// French: SVO, fusional, no morphological case (but clitic object pronouns), +// two grammatical genders (masc/fem), left-to-right, agreement on number, +// person, and gender, no pro-drop. +fn lang_profile_fr() -> [String] { + return lang_profile("fr", "SVO", "fusional", "false", "true", "ltr", "number;person;gender", "false") +} + +// Latin: SOV (highly free word order), fusional, six-case system (nom/gen/dat/acc/abl/voc), +// three genders (masc/fem/neut), left-to-right, rich agreement on number, person, gender, +// and case, pro-drop (subject expressed in verb ending). +fn lang_profile_la() -> [String] { + return lang_profile("la", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Hebrew (Modern): SVO, Semitic trilateral root morphology, two genders (masc/fem), +// two numbers (singular/plural; dual vestigial), right-to-left (Hebrew script), +// agreement on number, person, gender; zero copula in present tense; no grammatical cases. +fn lang_profile_he() -> [String] { + return lang_profile("he", "SVO", "semitic", "true", "false", "rtl", "number;person;gender", "true") +} + +// Sanskrit: SOV/free, highly fusional, 3 genders, 8 cases, 3 numbers (sg/du/pl), +// Devanagari script, rich verb system (10 classes, 9 tenses/moods), pro-drop. +fn lang_profile_sa() -> [String] { + return lang_profile("sa", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Gothic: SOV, fusional, 3 genders, 4 cases, singular/plural, +// Gothic alphabet (romanized as þ/ƕ/ai/au/ei), strong and weak classes, pro-drop. +fn lang_profile_got() -> [String] { + return lang_profile("got", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Old Norse: free/SOV, fusional, 3 genders, 4 cases, singular/plural, +// definite article as noun suffix (-inn/-in/-it), strong and weak classes, pro-drop. +fn lang_profile_non() -> [String] { + return lang_profile("non", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Middle English (ca. 1100–1500): SVO emerging, mostly lost case system, +// -es plural/genitive, strong and weak verbs, no grammatical gender on nouns. +fn lang_profile_enm() -> [String] { + return lang_profile("enm", "SVO", "fusional", "false", "false", "ltr", "number;person", "false") +} + +// Pali: SOV, fusional (simplified Sanskrit), 3 genders, 8 cases, sg/pl, +// Latin transliteration with IAST diacritics, Buddhist canonical language. +fn lang_profile_pi() -> [String] { + return lang_profile("pi", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Ancient Greek: free/SOV word order, highly fusional, 3 genders, 5 cases (nom/acc/gen/dat/voc), +// singular/dual/plural, polytonic Greek script (Unicode), complex verb system with aspect +// (imperfective/perfective), augment in past tenses, pro-drop. +fn lang_profile_grc() -> [String] { + return lang_profile("grc", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case;aspect", "true") +} + +// Old English (Anglo-Saxon): SOV/V2, fusional, 3 genders, 4 cases (nom/acc/gen/dat), +// singular/plural, Latin alphabet + þ/ð/ƿ/æ, strong and weak noun/verb classes, pro-drop. +fn lang_profile_ang() -> [String] { + return lang_profile("ang", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Old French (ca. 1000–1300 CE): SVO/V2, fusional, two-case system (nominative/oblique), +// two genders (masculine/feminine), left-to-right, agreement on number, person, gender, +// and case, no pro-drop (subject generally required). +fn lang_profile_fro() -> [String] { + return lang_profile("fro", "SVO", "fusional", "true", "true", "ltr", "number;person;gender;case", "false") +} + +// Old High German (ca. 750–1050 CE): SOV/V2, fusional, four-case system, three genders, +// left-to-right, agreement on number, person, gender, and case, pro-drop. +fn lang_profile_goh() -> [String] { + return lang_profile("goh", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Old Irish (ca. 600–900 CE): VSO, fusional, case system, three genders, +// left-to-right, agreement on number, person, gender, and case, pro-drop. +fn lang_profile_sga() -> [String] { + return lang_profile("sga", "VSO", "fusional", "true", "true", "ltr", "number;person;gender;case", "true") +} + +// Tocharian B (ca. 500–1000 CE): SOV, fusional, case system, two genders, +// left-to-right, agreement on number, person, gender, and case, no pro-drop. +fn lang_profile_txb() -> [String] { + return lang_profile("txb", "SOV", "fusional", "true", "true", "ltr", "number;person;gender;case", "false") +} + +// Old Persian (ca. 525–330 BCE): SOV, fusional, 8-case system, no grammatical gender, +// left-to-right, agreement on number, person, and case, pro-drop. +fn lang_profile_peo() -> [String] { + return lang_profile("peo", "SOV", "fusional", "true", "false", "ltr", "number;person;case", "true") +} + +// Akkadian (Old Babylonian period, ca. 1900–1600 BCE): VSO, fusional, 3-case system +// (nominative/accusative/genitive with mimation), two genders, left-to-right, +// agreement on number, person, gender, and case, no pro-drop. +fn lang_profile_akk() -> [String] { + return lang_profile("akk", "VSO", "fusional", "true", "true", "ltr", "number;person;gender;case", "false") +} + +// Ugaritic (ca. 1400–1200 BCE): VSO, Semitic trilateral root morphology, 3-case system, +// two genders, left-to-right (cuneiform alphabetic script), agreement on number, person, +// gender, and case, no pro-drop. +fn lang_profile_uga() -> [String] { + return lang_profile("uga", "VSO", "semitic", "true", "true", "ltr", "number;person;gender;case", "false") +} + +// Ancient Egyptian / Middle Egyptian (ca. 2100–1300 BCE): SVO, agglutinative, +// no morphological case (word order + prepositions), two genders, left-to-right, +// agreement on number, person, and gender, pro-drop (zero copula in present). +fn lang_profile_egy() -> [String] { + return lang_profile("egy", "SVO", "agglutinative", "false", "true", "ltr", "number;person;gender", "true") +} + +// Sumerian (ca. 3000–2000 BCE): SOV, agglutinative, ergative-absolutive case system, +// no grammatical gender (animacy distinction instead), left-to-right, agreement on +// number and person, pro-drop. +fn lang_profile_sux() -> [String] { + return lang_profile("sux", "SOV", "agglutinative", "true", "false", "ltr", "number;person", "true") +} + +// Ge'ez (Classical Ethiopic, ca. 4th–7th century CE): SOV, Semitic trilateral root +// morphology, two genders (masc/fem), Ethiopic/Fidel script (ltr), agreement on +// number, person, and gender, pro-drop (subject inflection on verb). +fn lang_profile_gez() -> [String] { + return lang_profile("gez", "SOV", "semitic", "true", "true", "ltr", "number;person;gender", "true") +} + +// Coptic (Sahidic dialect, ca. 3rd–11th century CE): SVO, agglutinative, no +// morphological case, two genders (masc/fem), left-to-right (Coptic alphabet), +// agreement on number and gender via bound subject pronouns, no pro-drop (explicit +// subject prefix required on every verb). +fn lang_profile_cop() -> [String] { + return lang_profile("cop", "SVO", "agglutinative", "false", "true", "ltr", "number;person;gender", "false") +} + +// ── Dispatch: code -> profile ───────────────────────────────────────────────── + +fn lang_from_code(code: String) -> [String] { + if str_eq(code, "en") { return lang_profile_en() } + if str_eq(code, "ja") { return lang_profile_ja() } + if str_eq(code, "ar") { return lang_profile_ar() } + if str_eq(code, "zh") { return lang_profile_zh() } + if str_eq(code, "de") { return lang_profile_de() } + if str_eq(code, "es") { return lang_profile_es() } + if str_eq(code, "fi") { return lang_profile_fi() } + if str_eq(code, "sw") { return lang_profile_sw() } + if str_eq(code, "hi") { return lang_profile_hi() } + if str_eq(code, "ru") { return lang_profile_ru() } + if str_eq(code, "fr") { return lang_profile_fr() } + if str_eq(code, "la") { return lang_profile_la() } + if str_eq(code, "he") { return lang_profile_he() } + if str_eq(code, "grc") { return lang_profile_grc() } + if str_eq(code, "ang") { return lang_profile_ang() } + if str_eq(code, "sa") { return lang_profile_sa() } + if str_eq(code, "got") { return lang_profile_got() } + if str_eq(code, "non") { return lang_profile_non() } + if str_eq(code, "enm") { return lang_profile_enm() } + if str_eq(code, "pi") { return lang_profile_pi() } + if str_eq(code, "fro") { return lang_profile_fro() } + if str_eq(code, "goh") { return lang_profile_goh() } + if str_eq(code, "sga") { return lang_profile_sga() } + if str_eq(code, "txb") { return lang_profile_txb() } + if str_eq(code, "peo") { return lang_profile_peo() } + if str_eq(code, "akk") { return lang_profile_akk() } + if str_eq(code, "uga") { return lang_profile_uga() } + if str_eq(code, "egy") { return lang_profile_egy() } + if str_eq(code, "sux") { return lang_profile_sux() } + if str_eq(code, "gez") { return lang_profile_gez() } + if str_eq(code, "cop") { return lang_profile_cop() } + // Unknown code: fall back to English profile + return lang_profile_en() +} + +// English default - backward compatibility entry point. +fn lang_default() -> [String] { + return lang_profile_en() +} + +// ── Typed convenience predicates ────────────────────────────────────────────── + +fn lang_is_isolating(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "morph_type"), "isolating") +} + +fn lang_is_agglutinative(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "morph_type"), "agglutinative") +} + +fn lang_is_fusional(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "morph_type"), "fusional") +} + +fn lang_is_polysynthetic(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "morph_type"), "polysynthetic") +} + +fn lang_is_rtl(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "script_dir"), "rtl") +} + +fn lang_has_null_subject(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "null_subject"), "true") +} + +fn lang_has_case(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "has_case"), "true") +} + +fn lang_has_gender(profile: [String]) -> Bool { + return str_eq(lang_get(profile, "has_gender"), "true") +} + +fn lang_word_order(profile: [String]) -> String { + return lang_get(profile, "word_order") +} + +fn lang_code(profile: [String]) -> String { + return lang_get(profile, "code") +} diff --git a/elp/src/language-profile.elh b/elp/src/language-profile.elh new file mode 100644 index 0000000..b138c4f --- /dev/null +++ b/elp/src/language-profile.elh @@ -0,0 +1,46 @@ +// auto-generated by elc --emit-header - do not edit +extern fn lang_profile(code: String, word_order: String, morph_type: String, has_case: String, has_gender: String, script_dir: String, agreement: String, null_subject: String) -> Any +extern fn lang_get(profile: Any, key: String) -> String +extern fn lang_profile_en() -> Any +extern fn lang_profile_ja() -> Any +extern fn lang_profile_ar() -> Any +extern fn lang_profile_zh() -> Any +extern fn lang_profile_de() -> Any +extern fn lang_profile_es() -> Any +extern fn lang_profile_fi() -> Any +extern fn lang_profile_sw() -> Any +extern fn lang_profile_hi() -> Any +extern fn lang_profile_ru() -> Any +extern fn lang_profile_fr() -> Any +extern fn lang_profile_la() -> Any +extern fn lang_profile_he() -> Any +extern fn lang_profile_sa() -> Any +extern fn lang_profile_got() -> Any +extern fn lang_profile_non() -> Any +extern fn lang_profile_enm() -> Any +extern fn lang_profile_pi() -> Any +extern fn lang_profile_grc() -> Any +extern fn lang_profile_ang() -> Any +extern fn lang_profile_fro() -> Any +extern fn lang_profile_goh() -> Any +extern fn lang_profile_sga() -> Any +extern fn lang_profile_txb() -> Any +extern fn lang_profile_peo() -> Any +extern fn lang_profile_akk() -> Any +extern fn lang_profile_uga() -> Any +extern fn lang_profile_egy() -> Any +extern fn lang_profile_sux() -> Any +extern fn lang_profile_gez() -> Any +extern fn lang_profile_cop() -> Any +extern fn lang_from_code(code: String) -> Any +extern fn lang_default() -> Any +extern fn lang_is_isolating(profile: Any) -> Bool +extern fn lang_is_agglutinative(profile: Any) -> Bool +extern fn lang_is_fusional(profile: Any) -> Bool +extern fn lang_is_polysynthetic(profile: Any) -> Bool +extern fn lang_is_rtl(profile: Any) -> Bool +extern fn lang_has_null_subject(profile: Any) -> Bool +extern fn lang_has_case(profile: Any) -> Bool +extern fn lang_has_gender(profile: Any) -> Bool +extern fn lang_word_order(profile: Any) -> String +extern fn lang_code(profile: Any) -> String diff --git a/elp/src/morphology-akk.el b/elp/src/morphology-akk.el new file mode 100644 index 0000000..3d5cbc0 --- /dev/null +++ b/elp/src/morphology-akk.el @@ -0,0 +1,527 @@ +// morphology-akk.el - Akkadian morphology for the NLG engine. +// 𒀭𒂗𒍪 — Akkadian (akkadû), the language of Babylon and Assyria. +// +// Implements Old Babylonian Akkadian verb conjugation (G-stem / Grundstamm), +// noun declension with mimation, and noun-phrase construction. +// +// Akkadian is the oldest attested Semitic language (ca. 2800–100 BCE). +// It uses cuneiform script; we work in standard Latin transliteration +// (Old Babylonian dialect — the classical prestige form). +// +// Language profile: +// code=akk, name=Akkadian, morph_type=semitic, word_order=VSO/SOV, +// script=cuneiform (transliterated), family=semitic/east-semitic +// +// Key grammatical facts: +// - Semitic trilateral root system: words built from 3-consonant roots +// by inserting vowel patterns (e.g. root p-r-s → iparras "he decides") +// - Grammatical gender: masculine / feminine (no neuter) +// - Cases: nominative (-um), accusative (-am), genitive (-im) — "mimation" +// - Number: singular / plural (dual is vestigial in verbs) +// - Verb stems: G (basic), D (intensive), Š (causative), N (passive); +// this file implements G-stem throughout +// - Two main tense/aspect systems: +// Present-future (iparras pattern): action in progress or future +// Perfect (iptaras pattern): completed action with present relevance +// Stative (paris pattern): resultant state, often adjectival +// - No definite or indefinite article; case endings convey +// determination contextually +// - Copula: bašû (to exist/be) +// +// Verb conjugation conventions: +// person: "first" | "second" | "third" +// gender: "m" | "f" +// number: "singular" | "plural" +// tense: "present" | "perfect" | "stative" +// +// Noun declension conventions: +// gram_case: "nom" | "acc" | "gen" +// number: "singular" | "plural" +// gender: "m" | "f" (passed to akk_decline for gender-specific forms) +// +// Verbs covered (G-stem infinitive, transliterated): +// "bašû" — to exist / be (copula) +// "alāku" — to go +// "amāru" — to see +// "qabû" — to say +// "epēšu" — to do / make +// +// Nouns covered with known mimation forms: +// "šarrum" — king +// "awīlum" — man / person +// "bītum" — house +// "ilum" — god +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn akk_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn akk_str_len(s: String) -> Int { + return str_len(s) +} + +fn akk_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +// ── Slot index ───────────────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based slot for table lookups. +// Akkadian verb agreement does not distinguish gender in 1st person, +// and the 2nd person often conflates masc/fem in some paradigms. +// We use a 6-cell paradigm matching the most common OB presentation: +// +// 0 = 1sg (I) +// 1 = 2sg (you sg) +// 2 = 3sg m (he) +// 3 = 3sg f (she) +// 4 = 1pl (we) +// 5 = 3pl (they) +// +// Note: 2pl is rare / vestigial in attested OB texts; omitted here. + +fn akk_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "plural") { return 4 } + return 0 + } + if str_eq(person, "second") { + return 1 + } + // third + if str_eq(number, "plural") { return 5 } + return 2 // default: 3sg masc; caller may override with gender check below +} + +// akk_slot_g: gender-aware slot for third person singular. +// Returns 3 (3sg fem) when person=third, number=singular, gender=f. +fn akk_slot_g(person: String, gender: String, number: String) -> Int { + let base: Int = akk_slot(person, number) + if str_eq(person, "third") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 3 } + } + } + return base +} + +// ── Copula: bašû — to exist / be ────────────────────────────────────────────── +// +// bašû is suppletive and highly irregular. +// Present: ibašši (3sg m/f), abašši (1sg), tabašši (2sg) +// Stative: bašī (3sg m), bašiat (3sg f), bašāku (1sg) +// Perfect: not commonly attested in G-stem; use present forms as fallback. + +fn akk_copula_present(slot: Int) -> String { + if slot == 0 { return "abašši" } // 1sg + if slot == 1 { return "tabašši" } // 2sg + if slot == 2 { return "ibašši" } // 3sg m + if slot == 3 { return "ibašši" } // 3sg f (same form in attested OB) + if slot == 4 { return "nibašši" } // 1pl + return "ibaššū" // 3pl +} + +fn akk_copula_stative(slot: Int) -> String { + if slot == 0 { return "bašāku" } // 1sg (stative 1sg: -āku suffix) + if slot == 1 { return "bašāta" } // 2sg (-āta suffix) + if slot == 2 { return "bašī" } // 3sg m (unmarked base) + if slot == 3 { return "bašiat" } // 3sg f (-at suffix) + if slot == 4 { return "bašānu" } // 1pl (-ānu suffix) + return "bašū" // 3pl (-ū suffix) +} + +fn akk_is_copula(verb: String) -> Bool { + if str_eq(verb, "bašû") { return true } + if str_eq(verb, "bashu") { return true } + if str_eq(verb, "be") { return true } + return false +} + +fn akk_conjugate_copula(tense: String, slot: Int) -> String { + if str_eq(tense, "stative") { return akk_copula_stative(slot) } + // present and perfect both fall back to present forms for bašû + return akk_copula_present(slot) +} + +// ── alāku — to go ───────────────────────────────────────────────────────────── +// +// Irregular: present stem is illak- (not the expected alakk-). +// Present: illak (3sg), allak (1sg), tallak (2sg), nillak (1pl), illaku (3pl) +// Perfect: ittalk- forms (less common, use illak- + perf marker) +// Stative: use present as proxy + +fn akk_alaku_present(slot: Int) -> String { + if slot == 0 { return "allak" } // 1sg + if slot == 1 { return "tallak" } // 2sg + if slot == 2 { return "illak" } // 3sg m + if slot == 3 { return "tallak" } // 3sg f (same as 2sg — OB pattern) + if slot == 4 { return "nillak" } // 1pl + return "illaku" // 3pl +} + +fn akk_alaku_perfect(slot: Int) -> String { + if slot == 0 { return "ittalak" } // 1sg + if slot == 1 { return "tattalak" } // 2sg + if slot == 2 { return "ittalak" } // 3sg m + if slot == 3 { return "tattalak" } // 3sg f + if slot == 4 { return "nittalak" } // 1pl + return "ittalku" // 3pl +} + +// ── amāru — to see ──────────────────────────────────────────────────────────── +// +// Present (immar-): immar (3sg), ammar (1sg), tammar (2sg) +// Perfect (imtamar-): imtamar (3sg), amtamar (1sg), tamtamar (2sg) + +fn akk_amaru_present(slot: Int) -> String { + if slot == 0 { return "ammar" } // 1sg + if slot == 1 { return "tammar" } // 2sg + if slot == 2 { return "immar" } // 3sg m + if slot == 3 { return "tammar" } // 3sg f + if slot == 4 { return "nimmar" } // 1pl + return "immaru" // 3pl +} + +fn akk_amaru_perfect(slot: Int) -> String { + if slot == 0 { return "amtamar" } // 1sg + if slot == 1 { return "tamtamar" } // 2sg + if slot == 2 { return "imtamar" } // 3sg m + if slot == 3 { return "tamtamar" } // 3sg f + if slot == 4 { return "nimtamar" } // 1pl + return "imtamaru" // 3pl +} + +fn akk_amaru_stative(slot: Int) -> String { + // amāru stative: 3sg "amir" (the one who saw / he has seen) + if slot == 0 { return "amrāku" } + if slot == 1 { return "amrāta" } + if slot == 2 { return "amir" } + if slot == 3 { return "amrat" } + if slot == 4 { return "amrānu" } + return "amrū" +} + +// ── qabû — to say / speak ───────────────────────────────────────────────────── +// +// Present: iqabbi (3sg), aqabbi (1sg), taqabbi (2sg) +// Perfect: iqtabi (3sg), aqtabi (1sg), taqtabi (2sg) + +fn akk_qabu_present(slot: Int) -> String { + if slot == 0 { return "aqabbi" } // 1sg + if slot == 1 { return "taqabbi" } // 2sg + if slot == 2 { return "iqabbi" } // 3sg m + if slot == 3 { return "taqabbi" } // 3sg f + if slot == 4 { return "niqabbi" } // 1pl + return "iqabbû" // 3pl +} + +fn akk_qabu_perfect(slot: Int) -> String { + if slot == 0 { return "aqtabi" } // 1sg + if slot == 1 { return "taqtabi" } // 2sg + if slot == 2 { return "iqtabi" } // 3sg m + if slot == 3 { return "taqtabi" } // 3sg f + if slot == 4 { return "niqtabi" } // 1pl + return "iqtabû" // 3pl +} + +fn akk_qabu_stative(slot: Int) -> String { + if slot == 0 { return "qabāku" } + if slot == 1 { return "qabāta" } + if slot == 2 { return "qabi" } + if slot == 3 { return "qabiat" } + if slot == 4 { return "qabānu" } + return "qabû" +} + +// ── epēšu — to do / make ────────────────────────────────────────────────────── +// +// Present (ieppuš / eppuš): ieppuš (3sg), eppuš (1sg), teppuš (2sg) +// Perfect: iptešu forms + +fn akk_epesu_present(slot: Int) -> String { + if slot == 0 { return "eppuš" } // 1sg + if slot == 1 { return "teppuš" } // 2sg + if slot == 2 { return "ieppuš" } // 3sg m + if slot == 3 { return "teppuš" } // 3sg f + if slot == 4 { return "neppuš" } // 1pl + return "ieppušu" // 3pl +} + +fn akk_epesu_perfect(slot: Int) -> String { + if slot == 0 { return "iptešu" } // 1sg (irregular: root ʿ-p-š) + if slot == 1 { return "taptešu" } // 2sg + if slot == 2 { return "iptešu" } // 3sg m + if slot == 3 { return "taptešu" } // 3sg f + if slot == 4 { return "niptešu" } // 1pl + return "iptešū" // 3pl +} + +fn akk_epesu_stative(slot: Int) -> String { + if slot == 0 { return "epšāku" } + if slot == 1 { return "epšāta" } + if slot == 2 { return "epuš" } + if slot == 3 { return "epšat" } + if slot == 4 { return "epšānu" } + return "epšū" +} + +// ── Regular G-stem paradigms (iparras model) ────────────────────────────────── +// +// For regular verbs not in the irregular table, we apply the standard +// OB G-stem paradigm using a caller-supplied present stem and perfect stem. +// The stems must be pre-computed by the caller (or vocabulary layer). +// +// iparras (present) endings by slot: +// 1sg: a- prefix +// 2sg: ta- prefix +// 3sg m: i- prefix +// 3sg f: ta- prefix (same prefix as 2sg) +// 1pl: ni- prefix +// 3pl: i- prefix + -ū suffix +// +// For the generic fallback we use "iparras" as the model template. + +fn akk_regular_present(stem: String, slot: Int) -> String { + // stem is the 3sg m form (i-prefix already present in conventional citation) + // We rebuild from the bare root portion by stripping/adding prefixes. + // Simplification: return prefixed forms using the provided present-3sg string. + if slot == 0 { return "a" + stem } // 1sg: a + stem (strip i-, add a-) + if slot == 1 { return "ta" + stem } // 2sg + if slot == 2 { return "i" + stem } // 3sg m + if slot == 3 { return "ta" + stem } // 3sg f + if slot == 4 { return "ni" + stem } // 1pl + return "i" + stem + "u" // 3pl: i + stem + -ū +} + +fn akk_regular_perfect(stem: String, slot: Int) -> String { + // Perfect (iptaras) — uses infix -ta- after first root consonant. + // stem here is the 3sg perfect form; we apply person endings. + if slot == 0 { return "a" + stem } // 1sg + if slot == 1 { return "ta" + stem } // 2sg + if slot == 2 { return "i" + stem } // 3sg m + if slot == 3 { return "ta" + stem } // 3sg f + if slot == 4 { return "ni" + stem } // 1pl + return "i" + stem + "u" // 3pl +} + +fn akk_regular_stative(stem: String, slot: Int) -> String { + // Stative (paris): 3sg m has zero ending; others take person suffixes. + if slot == 0 { return stem + "āku" } // 1sg + if slot == 1 { return stem + "āta" } // 2sg + if slot == 2 { return stem } // 3sg m: bare stem + if slot == 3 { return stem + "at" } // 3sg f + if slot == 4 { return stem + "ānu" } // 1pl + return stem + "ū" // 3pl +} + +// ── Known-verb dispatcher ───────────────────────────────────────────────────── + +fn akk_known_verb(verb: String, tense: String, slot: Int) -> String { + // bašû — to be / exist + if str_eq(verb, "bašû") { + return akk_conjugate_copula(tense, slot) + } + if str_eq(verb, "bashu") { + return akk_conjugate_copula(tense, slot) + } + + // alāku — to go + if str_eq(verb, "alāku") { + if str_eq(tense, "perfect") { return akk_alaku_perfect(slot) } + if str_eq(tense, "stative") { return akk_alaku_present(slot) } + return akk_alaku_present(slot) + } + if str_eq(verb, "alaku") { + if str_eq(tense, "perfect") { return akk_alaku_perfect(slot) } + return akk_alaku_present(slot) + } + + // amāru — to see + if str_eq(verb, "amāru") { + if str_eq(tense, "perfect") { return akk_amaru_perfect(slot) } + if str_eq(tense, "stative") { return akk_amaru_stative(slot) } + return akk_amaru_present(slot) + } + if str_eq(verb, "amaru") { + if str_eq(tense, "perfect") { return akk_amaru_perfect(slot) } + if str_eq(tense, "stative") { return akk_amaru_stative(slot) } + return akk_amaru_present(slot) + } + + // qabû — to say + if str_eq(verb, "qabû") { + if str_eq(tense, "perfect") { return akk_qabu_perfect(slot) } + if str_eq(tense, "stative") { return akk_qabu_stative(slot) } + return akk_qabu_present(slot) + } + if str_eq(verb, "qabu") { + if str_eq(tense, "perfect") { return akk_qabu_perfect(slot) } + if str_eq(tense, "stative") { return akk_qabu_stative(slot) } + return akk_qabu_present(slot) + } + + // epēšu — to do / make + if str_eq(verb, "epēšu") { + if str_eq(tense, "perfect") { return akk_epesu_perfect(slot) } + if str_eq(tense, "stative") { return akk_epesu_stative(slot) } + return akk_epesu_present(slot) + } + if str_eq(verb, "epesu") { + if str_eq(tense, "perfect") { return akk_epesu_perfect(slot) } + if str_eq(tense, "stative") { return akk_epesu_stative(slot) } + return akk_epesu_present(slot) + } + + return "" +} + +// ── Main conjugation entry point ────────────────────────────────────────────── +// +// akk_conjugate: conjugate an Akkadian verb (G-stem). +// +// verb: G-stem infinitive (transliterated, e.g. "alāku", "amāru") +// tense: "present" | "perfect" | "stative" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns: +// - Inflected form for known verbs +// - verb unchanged as safe fallback for unknown verbs + +fn akk_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let slot: Int = akk_slot(person, number) + + // Copula shortcut + if akk_is_copula(verb) { + return akk_conjugate_copula(tense, slot) + } + + // Known-verb table + let known: String = akk_known_verb(verb, tense, slot) + if !str_eq(known, "") { + return known + } + + // Unknown verb: safe fallback + return verb +} + +// ── Noun declension ──────────────────────────────────────────────────────────── +// +// akk_decline: decline an Akkadian noun for gram_case and number. +// +// Mimation: OB nouns bear final -m in all case endings (mimation). +// The base noun (dictionary form) is the nominative singular with mimation. +// We strip the nominative -um ending (if present) to obtain the bare stem, +// then apply the requested ending. +// +// Masculine case endings (singular): +// Nominative: -um +// Accusative: -am +// Genitive: -im +// +// Masculine case endings (plural): +// Nominative: -ūtum (or -ū in construct) +// Accusative/Genitive: -ātim (or -ī in construct) +// +// Feminine nouns (identified by -tum nom sg ending): +// Sg nominative: -tum, accusative: -tam, genitive: -tim +// Pl nominative: -ātum, genitive/accusative: -ātim +// +// Known irregular stems (the vocabulary layer should pass dictionary forms): +// šarrum → stem: šarr- +// awīlum → stem: awīl- +// bītum → stem: bīt- +// ilum → stem: il- + +fn akk_strip_nom(noun: String) -> String { + // Strip -um (masc nom sg mimation ending) to get bare stem + if akk_str_ends(noun, "um") { + return akk_str_drop_last(noun, 2) + } + // Strip -tum (fem nom sg) + if akk_str_ends(noun, "tum") { + return akk_str_drop_last(noun, 3) + } + // Already a bare stem or unusual form: return as-is + return noun +} + +fn akk_is_fem(noun: String) -> Bool { + // Feminine nouns in OB typically end in -tum (nom sg) + if akk_str_ends(noun, "tum") { return true } + if akk_str_ends(noun, "tam") { return true } + if akk_str_ends(noun, "tim") { return true } + return false +} + +fn akk_decline(noun: String, gram_case: String, number: String) -> String { + let fem: Bool = akk_is_fem(noun) + let stem: String = akk_strip_nom(noun) + + if str_eq(number, "singular") { + if fem { + if str_eq(gram_case, "nom") { return stem + "tum" } + if str_eq(gram_case, "acc") { return stem + "tam" } + if str_eq(gram_case, "gen") { return stem + "tim" } + return stem + "tum" + } + // Masculine + if str_eq(gram_case, "nom") { return stem + "um" } + if str_eq(gram_case, "acc") { return stem + "am" } + if str_eq(gram_case, "gen") { return stem + "im" } + return stem + "um" + } + + // Plural + if fem { + if str_eq(gram_case, "nom") { return stem + "ātum" } + // acc and gen merge in the oblique plural + return stem + "ātim" + } + // Masculine plural + if str_eq(gram_case, "nom") { return stem + "ūtum" } + return stem + "ātim" +} + +// ── Noun phrase ──────────────────────────────────────────────────────────────── +// +// akk_noun_phrase: produce the surface noun phrase. +// +// Akkadian has no definite or indefinite article. Determination is conveyed +// by context, word order, and the genitive construct chain (status constructus). +// The definite parameter is accepted but has no surface effect: the declined +// noun is returned in either case. +// +// noun: dictionary form (nominative singular with mimation, e.g. "šarrum") +// gram_case: "nom" | "acc" | "gen" +// number: "singular" | "plural" +// definite: "true" | "false" (no surface effect in Akkadian) + +fn akk_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return akk_decline(noun, gram_case, number) +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// akk_map_canonical: map cross-lingual English canonical verb labels to +// their Akkadian G-stem infinitive equivalents. + +fn akk_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "bašû" } + if str_eq(verb, "go") { return "alāku" } + if str_eq(verb, "see") { return "amāru" } + if str_eq(verb, "say") { return "qabû" } + if str_eq(verb, "speak") { return "qabû" } + if str_eq(verb, "do") { return "epēšu" } + if str_eq(verb, "make") { return "epēšu" } + return verb +} diff --git a/elp/src/morphology-akk.elh b/elp/src/morphology-akk.elh new file mode 100644 index 0000000..c13a7d8 --- /dev/null +++ b/elp/src/morphology-akk.elh @@ -0,0 +1,31 @@ +// auto-generated by elc --emit-header - do not edit +extern fn akk_str_ends(s: String, suf: String) -> Bool +extern fn akk_str_len(s: String) -> Int +extern fn akk_str_drop_last(s: String, n: Int) -> String +extern fn akk_slot(person: String, number: String) -> Int +extern fn akk_slot_g(person: String, gender: String, number: String) -> Int +extern fn akk_copula_present(slot: Int) -> String +extern fn akk_copula_stative(slot: Int) -> String +extern fn akk_is_copula(verb: String) -> Bool +extern fn akk_conjugate_copula(tense: String, slot: Int) -> String +extern fn akk_alaku_present(slot: Int) -> String +extern fn akk_alaku_perfect(slot: Int) -> String +extern fn akk_amaru_present(slot: Int) -> String +extern fn akk_amaru_perfect(slot: Int) -> String +extern fn akk_amaru_stative(slot: Int) -> String +extern fn akk_qabu_present(slot: Int) -> String +extern fn akk_qabu_perfect(slot: Int) -> String +extern fn akk_qabu_stative(slot: Int) -> String +extern fn akk_epesu_present(slot: Int) -> String +extern fn akk_epesu_perfect(slot: Int) -> String +extern fn akk_epesu_stative(slot: Int) -> String +extern fn akk_regular_present(stem: String, slot: Int) -> String +extern fn akk_regular_perfect(stem: String, slot: Int) -> String +extern fn akk_regular_stative(stem: String, slot: Int) -> String +extern fn akk_known_verb(verb: String, tense: String, slot: Int) -> String +extern fn akk_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn akk_strip_nom(noun: String) -> String +extern fn akk_is_fem(noun: String) -> Bool +extern fn akk_decline(noun: String, gram_case: String, number: String) -> String +extern fn akk_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String +extern fn akk_map_canonical(verb: String) -> String diff --git a/elp/src/morphology-ang.el b/elp/src/morphology-ang.el new file mode 100644 index 0000000..0d533b0 --- /dev/null +++ b/elp/src/morphology-ang.el @@ -0,0 +1,751 @@ +// morphology-ang.el - Old English (Anglo-Saxon) morphology for the NLG engine. +// +// Implements Old English verb conjugation, noun declension, and the definite +// article/demonstrative pronoun. Designed as a companion to morphology.el and +// called by the engine when the language profile code is "ang". +// +// Language profile: code=ang, name=Old English, morph_type=fusional, +// word_order=SOV, question_strategy=intonation, script=latin, family=germanic. +// +// Typology note: Old English is a synthetic Germanic language with four +// grammatical cases (nominative, accusative, genitive, dative), three genders, +// and strong/weak noun and verb classes. Strong verbs form their past tense by +// internal vowel change (ablaut); weak verbs use a dental (-de/-ode) suffix. +// Long vowels are marked with a macron (ā ē ī ō ū) and are preserved in all +// string literals; ǣ, æ, þ, ð, and ƿ (wynn) are used where historically +// appropriate. V2 (verb-second) word order applies in main clauses but is not +// enforced by this module — the realizer handles constituent ordering. +// +// Verb conjugation covered: +// Tenses: present, past +// Persons: first/second/third × singular/plural (slots 0-5) +// Classes: weak (regular -ian), strong irregular table +// Irregulars: wesan/beon (be), habban (have), gān (go), cuman (come), +// secgan (say), sēon (see), dōn (do), willan (want), magan (can) +// Canonical map: "be" -> "wesan" (past) / "beon" (present) +// +// Noun declension covered: +// Strong masc a-stem (cyning pattern): nom/acc -∅, gen -es, dat -e; pl -as/-a/-um +// Strong neut a-stem (word pattern): sg same as masc; pl nom/acc -∅ +// Weak n-stem (nama pattern): sg nom -a, obl -an; pl -an/-ena/-um +// +// Article: simplified demonstrative/article forms for masculine, feminine, +// neuter (se/sēo/þæt), fully declined. +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn ang_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn ang_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn ang_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn ang_str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based index for paradigm tables. +// 0 = 1st singular (ic) +// 1 = 2nd singular (þū) +// 2 = 3rd singular (hē/hēo/hit) +// 3 = 1st plural (wē) +// 4 = 2nd plural (gē) +// 5 = 3rd plural (hīe) +// +// Old English also has a dual (wit, git) — not handled; dual falls through +// to plural. + +fn ang_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// The semantic layer may pass English canonical labels. Map to Old English +// citation (infinitive) forms. "be" maps to "beon" for present and "wesan" +// for past — the caller selects tense, so we map "be" to "beon" and handle +// the past-tense wesan forms inside the conjugation function. + +fn ang_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "beon" } + if str_eq(verb, "have") { return "habban" } + if str_eq(verb, "go") { return "gān" } + if str_eq(verb, "come") { return "cuman" } + if str_eq(verb, "say") { return "secgan" } + if str_eq(verb, "see") { return "sēon" } + if str_eq(verb, "do") { return "dōn" } + if str_eq(verb, "want") { return "willan" } + if str_eq(verb, "will") { return "willan" } + if str_eq(verb, "can") { return "magan" } + if str_eq(verb, "know") { return "witan" } + if str_eq(verb, "give") { return "giefan" } + if str_eq(verb, "take") { return "niman" } + if str_eq(verb, "find") { return "findan" } + if str_eq(verb, "make") { return "macian" } + return verb +} + +// ── Irregular: wesan (to be — past tense forms) ─────────────────────────────── +// +// Past: wæs wǣre wæs wǣron wǣron wǣron + +fn ang_wesan_past(slot: Int) -> String { + if slot == 0 { return "wæs" } + if slot == 1 { return "wǣre" } + if slot == 2 { return "wæs" } + if slot == 3 { return "wǣron" } + if slot == 4 { return "wǣron" } + return "wǣron" +} + +// ── Irregular: beon (to be — present / habitual / future) ──────────────────── +// +// Present: bēo bist biþ bēoþ bēoþ bēoþ +// +// The present indicative of "wesan" is eom/eart/is/sind — that paradigm is +// also provided below for completeness and for callers who specifically request +// wesan present. + +fn ang_beon_present(slot: Int) -> String { + if slot == 0 { return "bēo" } + if slot == 1 { return "bist" } + if slot == 2 { return "biþ" } + if slot == 3 { return "bēoþ" } + if slot == 4 { return "bēoþ" } + return "bēoþ" +} + +// ── Irregular: wesan present (eom/eart/is/sind) ─────────────────────────────── +// +// Present: eom eart is sind/sindon sind sind + +fn ang_wesan_present(slot: Int) -> String { + if slot == 0 { return "eom" } + if slot == 1 { return "eart" } + if slot == 2 { return "is" } + if slot == 3 { return "sind" } + if slot == 4 { return "sind" } + return "sind" +} + +// ── Irregular: habban (to have) ─────────────────────────────────────────────── +// +// Present: hæbbe hæfst hæfþ habbað habbað habbað +// Past: hæfde hæfdest hæfde hæfdon hæfdon hæfdon + +fn ang_habban_present(slot: Int) -> String { + if slot == 0 { return "hæbbe" } + if slot == 1 { return "hæfst" } + if slot == 2 { return "hæfþ" } + if slot == 3 { return "habbað" } + if slot == 4 { return "habbað" } + return "habbað" +} + +fn ang_habban_past(slot: Int) -> String { + if slot == 0 { return "hæfde" } + if slot == 1 { return "hæfdest" } + if slot == 2 { return "hæfde" } + if slot == 3 { return "hæfdon" } + if slot == 4 { return "hæfdon" } + return "hæfdon" +} + +// ── Irregular: gān (to go) ──────────────────────────────────────────────────── +// +// Present: gā gǣst gǣþ gāð gāð gāð +// Past: ēode ēodest ēode ēodon ēodon ēodon + +fn ang_gan_present(slot: Int) -> String { + if slot == 0 { return "gā" } + if slot == 1 { return "gǣst" } + if slot == 2 { return "gǣþ" } + if slot == 3 { return "gāð" } + if slot == 4 { return "gāð" } + return "gāð" +} + +fn ang_gan_past(slot: Int) -> String { + if slot == 0 { return "ēode" } + if slot == 1 { return "ēodest" } + if slot == 2 { return "ēode" } + if slot == 3 { return "ēodon" } + if slot == 4 { return "ēodon" } + return "ēodon" +} + +// ── Irregular: cuman (to come) ──────────────────────────────────────────────── +// +// Present: cume cymst cymþ cumað cumað cumað +// Past: cōm cōme cōm cōmon cōmon cōmon + +fn ang_cuman_present(slot: Int) -> String { + if slot == 0 { return "cume" } + if slot == 1 { return "cymst" } + if slot == 2 { return "cymþ" } + if slot == 3 { return "cumað" } + if slot == 4 { return "cumað" } + return "cumað" +} + +fn ang_cuman_past(slot: Int) -> String { + if slot == 0 { return "cōm" } + if slot == 1 { return "cōme" } + if slot == 2 { return "cōm" } + if slot == 3 { return "cōmon" } + if slot == 4 { return "cōmon" } + return "cōmon" +} + +// ── Irregular: secgan (to say) ──────────────────────────────────────────────── +// +// Present: secge sagast sagað secgað secgað secgað +// Past: sægde sægdest sægde sægdon sægdon sægdon + +fn ang_secgan_present(slot: Int) -> String { + if slot == 0 { return "secge" } + if slot == 1 { return "sagast" } + if slot == 2 { return "sagað" } + if slot == 3 { return "secgað" } + if slot == 4 { return "secgað" } + return "secgað" +} + +fn ang_secgan_past(slot: Int) -> String { + if slot == 0 { return "sægde" } + if slot == 1 { return "sægdest" } + if slot == 2 { return "sægde" } + if slot == 3 { return "sægdon" } + if slot == 4 { return "sægdon" } + return "sægdon" +} + +// ── Irregular: sēon (to see) ────────────────────────────────────────────────── +// +// Present: sēo siehst siehþ sēoð sēoð sēoð +// Past: seah sāwe seah sāwon sāwon sāwon + +fn ang_seon_present(slot: Int) -> String { + if slot == 0 { return "sēo" } + if slot == 1 { return "siehst" } + if slot == 2 { return "siehþ" } + if slot == 3 { return "sēoð" } + if slot == 4 { return "sēoð" } + return "sēoð" +} + +fn ang_seon_past(slot: Int) -> String { + if slot == 0 { return "seah" } + if slot == 1 { return "sāwe" } + if slot == 2 { return "seah" } + if slot == 3 { return "sāwon" } + if slot == 4 { return "sāwon" } + return "sāwon" +} + +// ── Irregular: dōn (to do) ──────────────────────────────────────────────────── +// +// Present: dō dēst dēþ dōð dōð dōð +// Past: dyde dydest dyde dydon dydon dydon + +fn ang_don_present(slot: Int) -> String { + if slot == 0 { return "dō" } + if slot == 1 { return "dēst" } + if slot == 2 { return "dēþ" } + if slot == 3 { return "dōð" } + if slot == 4 { return "dōð" } + return "dōð" +} + +fn ang_don_past(slot: Int) -> String { + if slot == 0 { return "dyde" } + if slot == 1 { return "dydest" } + if slot == 2 { return "dyde" } + if slot == 3 { return "dydon" } + if slot == 4 { return "dydon" } + return "dydon" +} + +// ── Irregular: willan (to want / will) ──────────────────────────────────────── +// +// Present: wille wilt wile willað willað willað +// Past: wolde woldest wolde woldon woldon woldon + +fn ang_willan_present(slot: Int) -> String { + if slot == 0 { return "wille" } + if slot == 1 { return "wilt" } + if slot == 2 { return "wile" } + if slot == 3 { return "willað" } + if slot == 4 { return "willað" } + return "willað" +} + +fn ang_willan_past(slot: Int) -> String { + if slot == 0 { return "wolde" } + if slot == 1 { return "woldest" } + if slot == 2 { return "wolde" } + if slot == 3 { return "woldon" } + if slot == 4 { return "woldon" } + return "woldon" +} + +// ── Irregular: magan (to be able / can) ────────────────────────────────────── +// +// Present: mæg meaht mæg magon magon magon +// Past: meahte meahtest meahte meahton meahton meahton + +fn ang_magan_present(slot: Int) -> String { + if slot == 0 { return "mæg" } + if slot == 1 { return "meaht" } + if slot == 2 { return "mæg" } + if slot == 3 { return "magon" } + if slot == 4 { return "magon" } + return "magon" +} + +fn ang_magan_past(slot: Int) -> String { + if slot == 0 { return "meahte" } + if slot == 1 { return "meahtest" } + if slot == 2 { return "meahte" } + if slot == 3 { return "meahton" } + if slot == 4 { return "meahton" } + return "meahton" +} + +// ── Irregular: witan (to know) ──────────────────────────────────────────────── +// +// Present: wāt wāst wāt witon witon witon +// Past: wisse/wiste wissest wisse wisson wisson wisson + +fn ang_witan_present(slot: Int) -> String { + if slot == 0 { return "wāt" } + if slot == 1 { return "wāst" } + if slot == 2 { return "wāt" } + if slot == 3 { return "witon" } + if slot == 4 { return "witon" } + return "witon" +} + +fn ang_witan_past(slot: Int) -> String { + if slot == 0 { return "wisse" } + if slot == 1 { return "wissest" } + if slot == 2 { return "wisse" } + if slot == 3 { return "wisson" } + if slot == 4 { return "wisson" } + return "wisson" +} + +// ── Weak verb: present-tense endings ───────────────────────────────────────── +// +// Weak verbs with -ian infinitives form their present tense as: +// stem + -e, -est, -eþ, -aþ, -aþ, -aþ +// +// The stem is the infinitive with -ian stripped (or -an for class-2 verbs). + +fn ang_weak_present_ending(slot: Int) -> String { + if slot == 0 { return "e" } + if slot == 1 { return "est" } + if slot == 2 { return "eþ" } + if slot == 3 { return "aþ" } + if slot == 4 { return "aþ" } + return "aþ" +} + +// ── Weak verb: past-tense ending selection ──────────────────────────────────── +// +// Class 1 (-ian with short stem): past -ede (e.g. nerian -> nerede) +// Class 2 (-ian with long/heavy stem): past -ode (e.g. macian -> macode) +// Class 3 (-ian, small group): past -de (e.g. habban -> hæfde — irregular) +// +// Heuristic: if the stem length is 1 char, use -ede; otherwise use -ode. +// This is a simplification; correct assignment requires lexical class marking. +// +// For the past, all persons in the plural share -on, and all singulars share +// the same dental-suffixed stem. + +fn ang_weak_past_stem(stem: String) -> String { + let slen: Int = str_len(stem) + if slen <= 2 { + return stem + "ede" + } + return stem + "ode" +} + +fn ang_weak_past(stem: String, slot: Int) -> String { + let pstem: String = ang_weak_past_stem(stem) + if slot == 0 { return pstem } + if slot == 1 { return pstem + "st" } + if slot == 2 { return pstem } + if slot == 3 { return ang_str_drop_last(pstem, 1) + "on" } + if slot == 4 { return ang_str_drop_last(pstem, 1) + "on" } + return ang_str_drop_last(pstem, 1) + "on" +} + +// ── Stem extraction for weak verbs ──────────────────────────────────────────── +// +// Strip the infinitive ending to recover the stem: +// -ian -> strip 3 chars (nerian -> ner-, macian -> mac-) +// -an -> strip 2 chars (habban -> habb-; fallback for non -ian) +// otherwise: return as-is + +fn ang_weak_stem(verb: String) -> String { + if ang_str_ends(verb, "ian") { + return ang_str_drop_last(verb, 3) + } + if ang_str_ends(verb, "an") { + return ang_str_drop_last(verb, 2) + } + return verb +} + +// ── ang_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Old English infinitive or English canonical label +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Strategy: +// 1. Map canonical English labels to OE verbs. +// 2. Check the full irregular table. +// 3. Fall back to weak conjugation for unknown -ian/-an verbs. +// 4. Return the base form if nothing matches. + +fn ang_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = ang_map_canonical(verb) + let slot: Int = ang_slot(person, number) + + // ── Irregulars ──────────────────────────────────────────────────────────── + + // beon: present-tense "be" (habitual/future/general) + if str_eq(v, "beon") { + if str_eq(tense, "present") { return ang_beon_present(slot) } + // past: use wesan past forms + return ang_wesan_past(slot) + } + + // wesan: past "be" and present "be" (existential/stative) + if str_eq(v, "wesan") { + if str_eq(tense, "present") { return ang_wesan_present(slot) } + return ang_wesan_past(slot) + } + + if str_eq(v, "habban") { + if str_eq(tense, "present") { return ang_habban_present(slot) } + return ang_habban_past(slot) + } + + if str_eq(v, "gān") { + if str_eq(tense, "present") { return ang_gan_present(slot) } + return ang_gan_past(slot) + } + + if str_eq(v, "cuman") { + if str_eq(tense, "present") { return ang_cuman_present(slot) } + return ang_cuman_past(slot) + } + + if str_eq(v, "secgan") { + if str_eq(tense, "present") { return ang_secgan_present(slot) } + return ang_secgan_past(slot) + } + + if str_eq(v, "sēon") { + if str_eq(tense, "present") { return ang_seon_present(slot) } + return ang_seon_past(slot) + } + + if str_eq(v, "dōn") { + if str_eq(tense, "present") { return ang_don_present(slot) } + return ang_don_past(slot) + } + + if str_eq(v, "willan") { + if str_eq(tense, "present") { return ang_willan_present(slot) } + return ang_willan_past(slot) + } + + if str_eq(v, "magan") { + if str_eq(tense, "present") { return ang_magan_present(slot) } + return ang_magan_past(slot) + } + + if str_eq(v, "witan") { + if str_eq(tense, "present") { return ang_witan_present(slot) } + return ang_witan_past(slot) + } + + // ── Regular weak conjugation ────────────────────────────────────────────── + + let stem: String = ang_weak_stem(v) + + if str_eq(tense, "present") { + return stem + ang_weak_present_ending(slot) + } + + if str_eq(tense, "past") { + return ang_weak_past(stem, slot) + } + + // Unknown tense: return infinitive + return v +} + +// ── Noun declension class detection ─────────────────────────────────────────── +// +// Infer the declension class from the nominative singular form and an optional +// gender hint. Without a full lexicon, ending-based heuristics are used: +// +// ends in -a -> weak n-stem (nama pattern) +// ends in -e (long) -> may be various; default to strong masc a-stem +// any other ending -> strong a-stem; gender distinguishes masc vs neut +// +// The caller may pass gender as a hint: +// "masculine" | "feminine" | "neuter" | "" (empty = infer) +// +// For simplicity this module handles three paradigms: +// "strong_masc" — a-stem masculine (cyning, mann) +// "strong_neut" — a-stem neuter (word, scip) +// "weak" — n-stem (nama, ēage) + +fn ang_declension(noun: String, gender: String) -> String { + if ang_str_ends(noun, "a") { return "weak" } + if str_eq(gender, "neuter") { return "strong_neut" } + return "strong_masc" +} + +// ── Strong masculine a-stem (cyning pattern) ────────────────────────────────── +// +// Stem: the noun as given (nom sg lacks an inflectional ending in this class). +// +// Singular: nom -∅ acc -∅ gen -es dat -e +// Plural: nom -as acc -as gen -a dat -um + +fn ang_decline_strong_masc(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return noun } + if str_eq(gram_case, "genitive") { return noun + "es" } + if str_eq(gram_case, "dative") { return noun + "e" } + return noun + } + // plural + if str_eq(gram_case, "nominative") { return noun + "as" } + if str_eq(gram_case, "accusative") { return noun + "as" } + if str_eq(gram_case, "genitive") { return noun + "a" } + if str_eq(gram_case, "dative") { return noun + "um" } + return noun + "as" +} + +// ── Strong neuter a-stem (word pattern) ─────────────────────────────────────── +// +// Singular: same as strong masc +// Plural: nom/acc -∅ gen -a dat -um + +fn ang_decline_strong_neut(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return noun } + if str_eq(gram_case, "genitive") { return noun + "es" } + if str_eq(gram_case, "dative") { return noun + "e" } + return noun + } + // plural: neuters have zero ending in nom/acc + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return noun } + if str_eq(gram_case, "genitive") { return noun + "a" } + if str_eq(gram_case, "dative") { return noun + "um" } + return noun +} + +// ── Weak n-stem (nama pattern) ──────────────────────────────────────────────── +// +// The nom sg ends in -a; the oblique stem is formed by stripping -a and adding +// -an. Plural genitive is -ena. +// +// Singular: nom -a acc -an gen -an dat -an +// Plural: nom -an acc -an gen -ena dat -um + +fn ang_decline_weak(noun: String, gram_case: String, number: String) -> String { + // Oblique stem: strip the final -a + let stem: String = ang_str_drop_last(noun, 1) + + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return stem + "an" } + if str_eq(gram_case, "genitive") { return stem + "an" } + if str_eq(gram_case, "dative") { return stem + "an" } + return noun + } + // plural + if str_eq(gram_case, "nominative") { return stem + "an" } + if str_eq(gram_case, "accusative") { return stem + "an" } + if str_eq(gram_case, "genitive") { return stem + "ena" } + if str_eq(gram_case, "dative") { return stem + "um" } + return stem + "an" +} + +// ── ang_decline: main declension entry point ────────────────────────────────── +// +// noun: nominative singular Old English noun (e.g. "cyning", "word", "nama") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// gender: "masculine" | "neuter" | "feminine" | "" (empty triggers inference) +// +// Returns the inflected form. Falls back to the nominative singular for any +// unrecognised combination. + +fn ang_decline(noun: String, gram_case: String, number: String, gender: String) -> String { + let decl: String = ang_declension(noun, gender) + + if str_eq(decl, "strong_masc") { + return ang_decline_strong_masc(noun, gram_case, number) + } + + if str_eq(decl, "strong_neut") { + return ang_decline_strong_neut(noun, gram_case, number) + } + + if str_eq(decl, "weak") { + return ang_decline_weak(noun, gram_case, number) + } + + // Unknown: return nominative unchanged + return noun +} + +// ── Definite article / demonstrative: se/sēo/þæt ───────────────────────────── +// +// Old English used the demonstrative pronoun se/sēo/þæt as a definite article. +// The full paradigm (gender × case × number) is given below. +// +// Masculine: +// sg: nom se acc þone gen þæs dat þǣm +// pl: nom þā acc þā gen þāra dat þǣm +// +// Feminine: +// sg: nom sēo acc þā gen þǣre dat þǣre +// pl: nom þā acc þā gen þāra dat þǣm +// +// Neuter: +// sg: nom þæt acc þæt gen þæs dat þǣm +// pl: nom þā acc þā gen þāra dat þǣm + +fn ang_article_masculine(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "se" } + if str_eq(gram_case, "accusative") { return "þone" } + if str_eq(gram_case, "genitive") { return "þæs" } + if str_eq(gram_case, "dative") { return "þǣm" } + return "se" + } + // plural + if str_eq(gram_case, "nominative") { return "þā" } + if str_eq(gram_case, "accusative") { return "þā" } + if str_eq(gram_case, "genitive") { return "þāra" } + if str_eq(gram_case, "dative") { return "þǣm" } + return "þā" +} + +fn ang_article_feminine(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "sēo" } + if str_eq(gram_case, "accusative") { return "þā" } + if str_eq(gram_case, "genitive") { return "þǣre" } + if str_eq(gram_case, "dative") { return "þǣre" } + return "sēo" + } + // plural + if str_eq(gram_case, "nominative") { return "þā" } + if str_eq(gram_case, "accusative") { return "þā" } + if str_eq(gram_case, "genitive") { return "þāra" } + if str_eq(gram_case, "dative") { return "þǣm" } + return "þā" +} + +fn ang_article_neuter(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "þæt" } + if str_eq(gram_case, "accusative") { return "þæt" } + if str_eq(gram_case, "genitive") { return "þæs" } + if str_eq(gram_case, "dative") { return "þǣm" } + return "þæt" + } + // plural + if str_eq(gram_case, "nominative") { return "þā" } + if str_eq(gram_case, "accusative") { return "þā" } + if str_eq(gram_case, "genitive") { return "þāra" } + if str_eq(gram_case, "dative") { return "þǣm" } + return "þā" +} + +fn ang_article(gender: String, gram_case: String, number: String) -> String { + if str_eq(gender, "masculine") { return ang_article_masculine(gram_case, number) } + if str_eq(gender, "feminine") { return ang_article_feminine(gram_case, number) } + // neuter + return ang_article_neuter(gram_case, number) +} + +// ── Gender inference from noun form ─────────────────────────────────────────── +// +// A last-resort heuristic when the caller provides no gender hint. +// -a ending strongly suggests weak masculine or neuter (but most -a nouns are +// masculine weak). Without a full lexicon, masculine is the safe default. + +fn ang_infer_gender(noun: String) -> String { + if ang_str_ends(noun, "u") { return "feminine" } + if ang_str_ends(noun, "e") { return "feminine" } + return "masculine" +} + +// ── ang_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Produces a declined noun with optional definite article (demonstrative) +// prepended. When gender is empty ("") it is inferred from the noun form. +// +// noun: nominative singular Old English noun +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" | "false" + +fn ang_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let gender: String = ang_infer_gender(noun) + let declined: String = ang_decline(noun, gram_case, number, gender) + if str_eq(definite, "true") { + let art: String = ang_article(gender, gram_case, number) + return art + " " + declined + } + return declined +} diff --git a/elp/src/morphology-ang.elh b/elp/src/morphology-ang.elh new file mode 100644 index 0000000..f1b317a --- /dev/null +++ b/elp/src/morphology-ang.elh @@ -0,0 +1,44 @@ +// auto-generated by elc --emit-header - do not edit +extern fn ang_str_ends(s: String, suf: String) -> Bool +extern fn ang_str_drop_last(s: String, n: Int) -> String +extern fn ang_str_last_char(s: String) -> String +extern fn ang_str_last2(s: String) -> String +extern fn ang_slot(person: String, number: String) -> Int +extern fn ang_map_canonical(verb: String) -> String +extern fn ang_wesan_past(slot: Int) -> String +extern fn ang_beon_present(slot: Int) -> String +extern fn ang_wesan_present(slot: Int) -> String +extern fn ang_habban_present(slot: Int) -> String +extern fn ang_habban_past(slot: Int) -> String +extern fn ang_gan_present(slot: Int) -> String +extern fn ang_gan_past(slot: Int) -> String +extern fn ang_cuman_present(slot: Int) -> String +extern fn ang_cuman_past(slot: Int) -> String +extern fn ang_secgan_present(slot: Int) -> String +extern fn ang_secgan_past(slot: Int) -> String +extern fn ang_seon_present(slot: Int) -> String +extern fn ang_seon_past(slot: Int) -> String +extern fn ang_don_present(slot: Int) -> String +extern fn ang_don_past(slot: Int) -> String +extern fn ang_willan_present(slot: Int) -> String +extern fn ang_willan_past(slot: Int) -> String +extern fn ang_magan_present(slot: Int) -> String +extern fn ang_magan_past(slot: Int) -> String +extern fn ang_witan_present(slot: Int) -> String +extern fn ang_witan_past(slot: Int) -> String +extern fn ang_weak_present_ending(slot: Int) -> String +extern fn ang_weak_past_stem(stem: String) -> String +extern fn ang_weak_past(stem: String, slot: Int) -> String +extern fn ang_weak_stem(verb: String) -> String +extern fn ang_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn ang_declension(noun: String, gender: String) -> String +extern fn ang_decline_strong_masc(noun: String, gram_case: String, number: String) -> String +extern fn ang_decline_strong_neut(noun: String, gram_case: String, number: String) -> String +extern fn ang_decline_weak(noun: String, gram_case: String, number: String) -> String +extern fn ang_decline(noun: String, gram_case: String, number: String, gender: String) -> String +extern fn ang_article_masculine(gram_case: String, number: String) -> String +extern fn ang_article_feminine(gram_case: String, number: String) -> String +extern fn ang_article_neuter(gram_case: String, number: String) -> String +extern fn ang_article(gender: String, gram_case: String, number: String) -> String +extern fn ang_infer_gender(noun: String) -> String +extern fn ang_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-ar.el b/elp/src/morphology-ar.el new file mode 100644 index 0000000..6d3c121 --- /dev/null +++ b/elp/src/morphology-ar.el @@ -0,0 +1,728 @@ +// morphology-ar.el - Arabic morphology for the NLG engine. +// +// Implements Arabic verb conjugation, noun inflection (gram_case, gender, number, +// definiteness), and definite-article attachment with sun/moon letter handling. +// +// Arabic is a Semitic language with a trilateral root system: most words derive +// from 3-consonant roots by inserting vowel patterns (أوزان awzan) around the +// root consonants. Verb conjugation is realised as prefix + stem + suffix. +// +// Strategy: the engine takes the 3ms perfect (past tense) form as the canonical +// dictionary key (e.g. كَتَبَ kataba) and applies affix patterns to derive all +// other conjugated forms for Form I (الفعل المجرد) regular verbs. A lookup +// table covers essential irregular and hollow verbs. +// +// Verb tenses covered: "past" (perfect/الماضي), "present" (imperfect/المضارع), +// "future" (سَيَفْعَلُ = sa- + imperfect). +// Persons: first/second/third × masculine/feminine × singular/plural (+ dual stubs). +// Gender params: "m" (masculine) | "f" (feminine). +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq, str_drop_last concept) + +// ── String helpers ──────────────────────────────────────────────────────────── + +fn ar_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn ar_str_len(s: String) -> Int { + return str_len(s) +} + +fn ar_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn ar_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +// ── Slot index ──────────────────────────────────────────────────────────────── +// +// Maps person × gender × number to a 0-based slot for table lookups. +// Slot layout (10 cells, matching classical Arabic conjugation paradigm): +// 0 = 3ms (he) +// 1 = 3fs (she) +// 2 = 2ms (you m sg) +// 3 = 2fs (you f sg) +// 4 = 1s (I) +// 5 = 3mp (they m pl) +// 6 = 3fp (they f pl) +// 7 = 2mp (you m pl) +// 8 = 2fp (you f pl) +// 9 = 1p (we) + +fn ar_slot(person: String, gender: String, number: String) -> Int { + if str_eq(person, "third") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 1 } + return 0 + } + // plural + if str_eq(gender, "f") { return 6 } + return 5 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 3 } + return 2 + } + // plural + if str_eq(gender, "f") { return 8 } + return 7 + } + // first + if str_eq(number, "plural") { return 9 } + return 4 +} + +// ── Perfect (past) suffixes ─────────────────────────────────────────────────── +// +// Form I perfect: root-past-stem (e.g. كَتَبَ kataba) + suffix. +// The 3ms form IS the base (no suffix added). All other persons add a suffix +// that replaces or follows the final short vowel of the base. +// +// Pattern (dropping the final -a of the 3ms base, then adding): +// 3ms: -a (base as given) +// 3fs: -at +// 2ms: -ta +// 2fs: -ti +// 1s: -tu +// 3mp: -uu +// 3fp: -na +// 2mp: -tum +// 2fp: -tunna +// 1p: -naa +// +// The base passed to ar_conjugate_form1 is the full 3ms form (ends in -a). +// For suffixed forms we drop the final vowel character (1 byte = the -a) then +// apply the suffix. In Arabic script the final short vowel (fatha ـَ) on the +// last consonant of the base is part of the grapheme cluster of that consonant; +// for our stored strings the form كَتَبَ is stored with the final fatha attached +// to the ب. The suffix strings already include the vowel that replaces it, so +// we drop 1 character from the base. +// +// For simplicity the suffixes below are given as Arabic transliteration that +// the El string system handles as UTF-8. The actual Arabic forms are stored +// as UTF-8 Arabic script literals. +// +// Returns the suffix string (including the vowel carried on the junction +// consonant for suffixed forms). Returns "" for 3ms (base is the full form). + +fn ar_perfect_suffix(slot: Int) -> String { + if slot == 0 { return "" } // 3ms: base is already complete + if slot == 1 { return "ت" } // 3fs: -at (تْ taa saakina) + if slot == 2 { return "تَ" } // 2ms: -ta + if slot == 3 { return "تِ" } // 2fs: -ti + if slot == 4 { return "تُ" } // 1s: -tu + if slot == 5 { return "وا" } // 3mp: -uu (واو + alif farika) + if slot == 6 { return "نَ" } // 3fp: -na + if slot == 7 { return "تُمْ" } // 2mp: -tum + if slot == 8 { return "تُنَّ" } // 2fp: -tunna + return "نَا" // 1p: -naa (9) +} + +// ── Imperfect (present) prefixes ────────────────────────────────────────────── +// +// Form I imperfect: prefix + middle vowel pattern + suffix. +// Prefix depends on person (and for 1s the prefix is أَ). + +fn ar_imperfect_prefix(slot: Int) -> String { + if slot == 0 { return "يَ" } // 3ms: ya- + if slot == 1 { return "تَ" } // 3fs: ta- + if slot == 2 { return "تَ" } // 2ms: ta- + if slot == 3 { return "تَ" } // 2fs: ta- + if slot == 4 { return "أَ" } // 1s: a- + if slot == 5 { return "يَ" } // 3mp: ya- + if slot == 6 { return "يَ" } // 3fp: ya- + if slot == 7 { return "تَ" } // 2mp: ta- + if slot == 8 { return "تَ" } // 2fp: ta- + return "نَ" // 1p: na- (9) +} + +// ── Imperfect (present) suffixes ────────────────────────────────────────────── +// +// Standard Form I imperfect — yaf'ulu / yaf'alu / yaf'ilu vowel class. +// The stem vowel is encoded in the verb's imperfect stem (stored in the lookup +// table or derived from the base). The suffix encodes number/gender/person. +// +// Suffix pattern (after the u-class stem: yaktubu): +// 3ms: -u (yaktub-u) +// 3fs: -u (taktub-u) +// 2ms: -u (taktub-u) +// 2fs: -iina (taktub-iina) +// 1s: -u (aktub-u) +// 3mp: -uuna (yaktub-uuna) +// 3fp: -na (yaktub-na) +// 2mp: -uuna (taktub-uuna) +// 2fp: -na (taktub-na) +// 1p: -u (naktub-u) + +fn ar_imperfect_suffix(slot: Int) -> String { + if slot == 0 { return "ُ" } // 3ms: -u + if slot == 1 { return "ُ" } // 3fs: -u + if slot == 2 { return "ُ" } // 2ms: -u + if slot == 3 { return "ِينَ" } // 2fs: -iina + if slot == 4 { return "ُ" } // 1s: -u + if slot == 5 { return "ُونَ" } // 3mp: -uuna + if slot == 6 { return "نَ" } // 3fp: -na + if slot == 7 { return "ُونَ" } // 2mp: -uuna + if slot == 8 { return "نَ" } // 2fp: -na + return "ُ" // 1p: -u (9) +} + +// ── Form I conjugation ──────────────────────────────────────────────────────── +// +// ar_conjugate_form1: conjugate a regular Form I verb. +// +// past_base: the 3ms perfect form (e.g. "كَتَبَ") +// present_stem: the imperfect stem without prefix (e.g. "كْتُبُ" for yaktubu) +// This is the middle part after stripping the prefix: for يَكْتُبُ +// the stem = "كْتُبُ". We strip the final -u vowel diacritic +// (1 char) from the stem and re-add via the suffix. +// tense: "past" | "present" | "future" +// slot: ar_slot result + +fn ar_conjugate_form1(past_base: String, present_stem: String, tense: String, slot: Int) -> String { + if str_eq(tense, "past") { + // 3ms: return base as-is + if slot == 0 { return past_base } + // All other forms: drop final character of base (the short -a vowel mark + // on the last root consonant), then append the suffix. + let suf: String = ar_perfect_suffix(slot) + // Drop the last character (the fatha diacritic or final vowel-letter) + let stem: String = ar_str_drop_last(past_base, 1) + return stem + suf + } + + if str_eq(tense, "present") { + let pre: String = ar_imperfect_prefix(slot) + let suf: String = ar_imperfect_suffix(slot) + // present_stem already includes the medial vowel pattern (e.g. "كْتُبُ") + // Drop its final character (the -u diacritic) before adding the suffix. + let mid: String = ar_str_drop_last(present_stem, 1) + return pre + mid + suf + } + + if str_eq(tense, "future") { + // Future = سَ (sa-) + imperfect 3ms form + let pres_3ms: String = ar_conjugate_form1(past_base, present_stem, "present", 0) + return "سَ" + pres_3ms + } + + // Unknown tense: return base form + return past_base +} + +// ── Irregular verb lookup table ─────────────────────────────────────────────── +// +// Returns the inflected form for verbs that cannot be derived by Form I rules, +// or "" if the verb is not in the table. +// +// Covered verbs (by their 3ms past / dictionary key): +// كَانَ kaana — to be (hollow verb, waw-medial) +// ذَهَبَ dhahaba — to go (Form I, regular; explicit table for certainty) +// جَاءَ jaa'a — to come (hamzated + defective) +// قَالَ qaala — to say (hollow verb, waw-medial) +// رَأَى ra'aa — to see (hamzated + defective) +// أَكَلَ akala — to eat (hamzated initial) +// شَرِبَ shariba — to drink (Form I i-class) +// عَرَفَ arafa — to know (Form I a-class) +// أَرَادَ araada — to want (Form IV hollow) +// اِسْتَطَاعَ istata'a — can/be able (Form X) +// فَعَلَ fa'ala — to do/act (Form I; paradigm verb) +// أَخَذَ akhadha — to take (hamzated initial) +// عَمِلَ amila — to work (Form I i-class) +// +// For each verb: [past_3ms, past_3fs, past_2ms, past_2fs, past_1s, +// past_3mp, past_3fp, past_2mp, past_2fp, past_1p, +// pres_3ms, pres_3fs, pres_2ms, pres_2fs, pres_1s, +// pres_3mp, pres_3fp, pres_2mp, pres_2fp, pres_1p] + +fn ar_irregular_kaana(slot: Int, tense: String) -> String { + // كَانَ — to be + if str_eq(tense, "past") { + if slot == 0 { return "كَانَ" } + if slot == 1 { return "كَانَتْ" } + if slot == 2 { return "كُنْتَ" } + if slot == 3 { return "كُنْتِ" } + if slot == 4 { return "كُنْتُ" } + if slot == 5 { return "كَانُوا" } + if slot == 6 { return "كُنَّ" } + if slot == 7 { return "كُنْتُمْ" } + if slot == 8 { return "كُنْتُنَّ" } + return "كُنَّا" + } + if str_eq(tense, "present") { + if slot == 0 { return "يَكُونُ" } + if slot == 1 { return "تَكُونُ" } + if slot == 2 { return "تَكُونُ" } + if slot == 3 { return "تَكُونِينَ" } + if slot == 4 { return "أَكُونُ" } + if slot == 5 { return "يَكُونُونَ" } + if slot == 6 { return "يَكُنَّ" } + if slot == 7 { return "تَكُونُونَ" } + if slot == 8 { return "تَكُنَّ" } + return "نَكُونُ" + } + if str_eq(tense, "future") { + let pres: String = ar_irregular_kaana(slot, "present") + return "سَ" + pres + } + return "كَانَ" +} + +fn ar_irregular_qaala(slot: Int, tense: String) -> String { + // قَالَ — to say (hollow waw-medial) + if str_eq(tense, "past") { + if slot == 0 { return "قَالَ" } + if slot == 1 { return "قَالَتْ" } + if slot == 2 { return "قُلْتَ" } + if slot == 3 { return "قُلْتِ" } + if slot == 4 { return "قُلْتُ" } + if slot == 5 { return "قَالُوا" } + if slot == 6 { return "قُلْنَ" } + if slot == 7 { return "قُلْتُمْ" } + if slot == 8 { return "قُلْتُنَّ" } + return "قُلْنَا" + } + if str_eq(tense, "present") { + if slot == 0 { return "يَقُولُ" } + if slot == 1 { return "تَقُولُ" } + if slot == 2 { return "تَقُولُ" } + if slot == 3 { return "تَقُولِينَ" } + if slot == 4 { return "أَقُولُ" } + if slot == 5 { return "يَقُولُونَ" } + if slot == 6 { return "يَقُلْنَ" } + if slot == 7 { return "تَقُولُونَ" } + if slot == 8 { return "تَقُلْنَ" } + return "نَقُولُ" + } + if str_eq(tense, "future") { + let pres: String = ar_irregular_qaala(slot, "present") + return "سَ" + pres + } + return "قَالَ" +} + +fn ar_irregular_jaa(slot: Int, tense: String) -> String { + // جَاءَ — to come (hamzated defective) + if str_eq(tense, "past") { + if slot == 0 { return "جَاءَ" } + if slot == 1 { return "جَاءَتْ" } + if slot == 2 { return "جِئْتَ" } + if slot == 3 { return "جِئْتِ" } + if slot == 4 { return "جِئْتُ" } + if slot == 5 { return "جَاءُوا" } + if slot == 6 { return "جِئْنَ" } + if slot == 7 { return "جِئْتُمْ" } + if slot == 8 { return "جِئْتُنَّ" } + return "جِئْنَا" + } + if str_eq(tense, "present") { + if slot == 0 { return "يَجِيءُ" } + if slot == 1 { return "تَجِيءُ" } + if slot == 2 { return "تَجِيءُ" } + if slot == 3 { return "تَجِيئِينَ" } + if slot == 4 { return "أَجِيءُ" } + if slot == 5 { return "يَجِيئُونَ" } + if slot == 6 { return "يَجِئْنَ" } + if slot == 7 { return "تَجِيئُونَ" } + if slot == 8 { return "تَجِئْنَ" } + return "نَجِيءُ" + } + if str_eq(tense, "future") { + let pres: String = ar_irregular_jaa(slot, "present") + return "سَ" + pres + } + return "جَاءَ" +} + +fn ar_irregular_raaa(slot: Int, tense: String) -> String { + // رَأَى — to see (hamzated defective) + if str_eq(tense, "past") { + if slot == 0 { return "رَأَى" } + if slot == 1 { return "رَأَتْ" } + if slot == 2 { return "رَأَيْتَ" } + if slot == 3 { return "رَأَيْتِ" } + if slot == 4 { return "رَأَيْتُ" } + if slot == 5 { return "رَأَوْا" } + if slot == 6 { return "رَأَيْنَ" } + if slot == 7 { return "رَأَيْتُمْ" } + if slot == 8 { return "رَأَيْتُنَّ" } + return "رَأَيْنَا" + } + if str_eq(tense, "present") { + if slot == 0 { return "يَرَى" } + if slot == 1 { return "تَرَى" } + if slot == 2 { return "تَرَى" } + if slot == 3 { return "تَرَيْنَ" } + if slot == 4 { return "أَرَى" } + if slot == 5 { return "يَرَوْنَ" } + if slot == 6 { return "يَرَيْنَ" } + if slot == 7 { return "تَرَوْنَ" } + if slot == 8 { return "تَرَيْنَ" } + return "نَرَى" + } + if str_eq(tense, "future") { + let pres: String = ar_irregular_raaa(slot, "present") + return "سَ" + pres + } + return "رَأَى" +} + +fn ar_irregular_araada(slot: Int, tense: String) -> String { + // أَرَادَ — to want (Form IV hollow) + if str_eq(tense, "past") { + if slot == 0 { return "أَرَادَ" } + if slot == 1 { return "أَرَادَتْ" } + if slot == 2 { return "أَرَدْتَ" } + if slot == 3 { return "أَرَدْتِ" } + if slot == 4 { return "أَرَدْتُ" } + if slot == 5 { return "أَرَادُوا" } + if slot == 6 { return "أَرَدْنَ" } + if slot == 7 { return "أَرَدْتُمْ" } + if slot == 8 { return "أَرَدْتُنَّ" } + return "أَرَدْنَا" + } + if str_eq(tense, "present") { + if slot == 0 { return "يُرِيدُ" } + if slot == 1 { return "تُرِيدُ" } + if slot == 2 { return "تُرِيدُ" } + if slot == 3 { return "تُرِيدِينَ" } + if slot == 4 { return "أُرِيدُ" } + if slot == 5 { return "يُرِيدُونَ" } + if slot == 6 { return "يُرِدْنَ" } + if slot == 7 { return "تُرِيدُونَ" } + if slot == 8 { return "تُرِدْنَ" } + return "نُرِيدُ" + } + if str_eq(tense, "future") { + let pres: String = ar_irregular_araada(slot, "present") + return "سَ" + pres + } + return "أَرَادَ" +} + +fn ar_irregular_istata(slot: Int, tense: String) -> String { + // اِسْتَطَاعَ — can / be able (Form X hollow) + if str_eq(tense, "past") { + if slot == 0 { return "اِسْتَطَاعَ" } + if slot == 1 { return "اِسْتَطَاعَتْ" } + if slot == 2 { return "اِسْتَطَعْتَ" } + if slot == 3 { return "اِسْتَطَعْتِ" } + if slot == 4 { return "اِسْتَطَعْتُ" } + if slot == 5 { return "اِسْتَطَاعُوا" } + if slot == 6 { return "اِسْتَطَعْنَ" } + if slot == 7 { return "اِسْتَطَعْتُمْ" } + if slot == 8 { return "اِسْتَطَعْتُنَّ" } + return "اِسْتَطَعْنَا" + } + if str_eq(tense, "present") { + if slot == 0 { return "يَسْتَطِيعُ" } + if slot == 1 { return "تَسْتَطِيعُ" } + if slot == 2 { return "تَسْتَطِيعُ" } + if slot == 3 { return "تَسْتَطِيعِينَ" } + if slot == 4 { return "أَسْتَطِيعُ" } + if slot == 5 { return "يَسْتَطِيعُونَ" } + if slot == 6 { return "يَسْتَطِعْنَ" } + if slot == 7 { return "تَسْتَطِيعُونَ" } + if slot == 8 { return "تَسْتَطِعْنَ" } + return "نَسْتَطِيعُ" + } + if str_eq(tense, "future") { + let pres: String = ar_irregular_istata(slot, "present") + return "سَ" + pres + } + return "اِسْتَطَاعَ" +} + +// ── Irregular verb dispatcher ───────────────────────────────────────────────── +// +// ar_irregular: returns the inflected form if verb is in the lookup table, +// or "" if not found (caller should use Form I rules). +// +// verb: 3ms past form (dictionary key) as Arabic string +// tense: "past" | "present" | "future" +// slot: ar_slot result + +fn ar_irregular(verb: String, tense: String, slot: Int) -> String { + if str_eq(verb, "كَانَ") { return ar_irregular_kaana(slot, tense) } + if str_eq(verb, "قَالَ") { return ar_irregular_qaala(slot, tense) } + if str_eq(verb, "جَاءَ") { return ar_irregular_jaa(slot, tense) } + if str_eq(verb, "رَأَى") { return ar_irregular_raaa(slot, tense) } + if str_eq(verb, "أَرَادَ") { return ar_irregular_araada(slot, tense) } + if str_eq(verb, "اِسْتَطَاعَ") { return ar_irregular_istata(slot, tense) } + return "" +} + +// ── Regular Form I verb table ───────────────────────────────────────────────── +// +// For regular Form I verbs that would be correctly generated by ar_conjugate_form1 +// but whose imperfect stem must be looked up (Arabic verbs have three vowel +// classes for the imperfect medial vowel: a, i, u — فَعَلَ/يَفْعَلُ, +// فَعِلَ/يَفْعَلُ, فَعَلَ/يَفْعُلُ). We store the present stem for each. +// +// Returns present_stem (the imperfect without prefix, e.g. "كْتُبُ" for yaktubu), +// or "" if not in table. + +fn ar_present_stem(verb: String) -> String { + if str_eq(verb, "كَتَبَ") { return "كْتُبُ" } // kataba -> yaktubu (u-class) + if str_eq(verb, "ذَهَبَ") { return "ذْهَبُ" } // dhahaba -> yadhhabu (a-class) + if str_eq(verb, "أَكَلَ") { return "أْكُلُ" } // akala -> yaakulu (u-class) + if str_eq(verb, "شَرِبَ") { return "شْرَبُ" } // shariba -> yashrabu (a-class) + if str_eq(verb, "عَرَفَ") { return "عْرِفُ" } // arafa -> yarifu (i-class) + if str_eq(verb, "فَعَلَ") { return "فْعَلُ" } // fa'ala -> yaf'alu (a-class) + if str_eq(verb, "أَخَذَ") { return "أْخُذُ" } // akhadha -> yaakhudhu (u-class) + if str_eq(verb, "عَمِلَ") { return "عْمَلُ" } // amila -> ya'malu (a-class) + if str_eq(verb, "دَرَسَ") { return "دْرُسُ" } // darasa -> yadrusu (u-class) + if str_eq(verb, "فَهِمَ") { return "فْهَمُ" } // fahima -> yafhamu (a-class) + if str_eq(verb, "سَمِعَ") { return "سْمَعُ" } // sami'a -> yasma'u (a-class) + if str_eq(verb, "جَلَسَ") { return "جْلِسُ" } // jalasa -> yajlisu (i-class) + if str_eq(verb, "فَتَحَ") { return "فْتَحُ" } // fataha -> yaftahu (a-class) + if str_eq(verb, "خَرَجَ") { return "خْرُجُ" } // kharaja -> yakhruju (u-class) + if str_eq(verb, "دَخَلَ") { return "دْخُلُ" } // dakhala -> yadkhulu (u-class) + if str_eq(verb, "وَجَدَ") { return "جِدُ" } // wajada -> yajidu (i-class, waw-initial) + if str_eq(verb, "صَنَعَ") { return "صْنَعُ" } // sana'a -> yasna'u (a-class) + if str_eq(verb, "رَجَعَ") { return "رْجِعُ" } // raja'a -> yarji'u (i-class) + if str_eq(verb, "وَقَفَ") { return "قِفُ" } // waqafa -> yaqifu (i-class, waw-initial) + if str_eq(verb, "قَرَأَ") { return "قْرَأُ" } // qara'a -> yaqra'u (a-class) + if str_eq(verb, "كَذَبَ") { return "كْذِبُ" } // kadhaba -> yakdhibu (i-class) + return "" +} + +// ── Main conjugation dispatcher ─────────────────────────────────────────────── +// +// ar_conjugate: conjugate an Arabic verb. +// +// verb: 3ms perfect form (dictionary key), e.g. "كَتَبَ" +// tense: "past" | "present" | "future" +// person: "first" | "second" | "third" +// gender: "m" | "f" +// number: "singular" | "plural" + +fn ar_conjugate(verb: String, tense: String, person: String, gender: String, number: String) -> String { + let slot: Int = ar_slot(person, gender, number) + + // 1. Check irregular table + let irreg: String = ar_irregular(verb, tense, slot) + if !str_eq(irreg, "") { + return irreg + } + + // 2. Look up present stem for regular Form I + let present_stem: String = ar_present_stem(verb) + if !str_eq(present_stem, "") { + return ar_conjugate_form1(verb, present_stem, tense, slot) + } + + // 3. Fallback: return base form (3ms past) — unknown verb + return verb +} + +// ── Definite article ────────────────────────────────────────────────────────── +// +// ar_definite_article: prefix ال (al-) to a noun with sun/moon letter handling. +// +// Sun letters (الحروف الشمسية) cause the lam of the article to assimilate to +// the first letter of the noun. Moon letters (الحروف القمرية) do not. +// +// Sun letters (Unicode Arabic code points): +// ت ث د ذ ر ز س ش ص ض ط ظ ل ن +// +// Moon letters (all others): +// أ ب ج ح خ ع غ ف ق ك م ه و ي +// +// In Arabic orthography the assimilation is shown with a shadda on the sun letter. +// Here we return "ال" (al-) for moon letters and the assimilated form for sun +// letters. The noun is prefixed with the article; the article lam is replaced +// by a shadda on the sun consonant. + +fn ar_is_sun_letter(c: String) -> Bool { + if str_eq(c, "ت") { return true } + if str_eq(c, "ث") { return true } + if str_eq(c, "د") { return true } + if str_eq(c, "ذ") { return true } + if str_eq(c, "ر") { return true } + if str_eq(c, "ز") { return true } + if str_eq(c, "س") { return true } + if str_eq(c, "ش") { return true } + if str_eq(c, "ص") { return true } + if str_eq(c, "ض") { return true } + if str_eq(c, "ط") { return true } + if str_eq(c, "ظ") { return true } + if str_eq(c, "ل") { return true } + if str_eq(c, "ن") { return true } + return false +} + +fn ar_definite_article(noun: String) -> String { + // Extract first character to determine sun/moon + let n: Int = ar_str_len(noun) + if n == 0 { + return noun + } + let first: String = str_slice(noun, 0, 1) + if ar_is_sun_letter(first) { + // Sun letter: article lam assimilates -> الـ + shadda on first letter + // Written as: أَلْ + first + shadda + rest + // We represent this as "ال" + first_with_shadda + rest_of_noun + // The shadda diacritic (U+0651) attaches to the sun letter. + let shadda: String = "ّ" + let rest: String = str_slice(noun, 1, n) + return "ال" + first + shadda + rest + } + // Moon letter: simple al- prefix + return "ال" + noun +} + +// ── Case endings ────────────────────────────────────────────────────────────── +// +// ar_case_ending: return the short vowel ending for a noun given its gram_case +// and definiteness. +// +// case: "nom" | "acc" | "gen" +// definite: "true" | "false" +// +// Indefinite endings carry nunation (tanwin): +// nom: -un (ٌ) +// acc: -an (ً) +// gen: -in (ٍ) +// +// Definite endings are single short vowels: +// nom: -u (ُ) +// acc: -a (َ) +// gen: -i (ِ) + +fn ar_case_ending(kase: String, definite: String) -> String { + let is_def: Bool = str_eq(definite, "true") + if str_eq(kase, "nom") { + if is_def { return "ُ" } + return "ٌ" + } + if str_eq(kase, "acc") { + if is_def { return "َ" } + return "ً" + } + if str_eq(kase, "gen") { + if is_def { return "ِ" } + return "ٍ" + } + return "" +} + +// ── Gender inference ────────────────────────────────────────────────────────── +// +// ar_gender: infer gender from noun form. +// Returns "f" for nouns ending in taa marbuta (ة or ـة), otherwise "m". +// This covers the most reliable heuristic; broken plurals and loanwords may +// vary but are handled by explicit lookup in the Engram. + +fn ar_gender(noun: String) -> String { + if ar_str_ends(noun, "ة") { return "f" } + if ar_str_ends(noun, "ـة") { return "f" } + return "m" +} + +// ── Sound plurals ───────────────────────────────────────────────────────────── +// +// ar_sound_plural: form the sound masculine or feminine plural. +// +// Sound masculine plural (جمع المذكر السالم): +// nom: -uuna (ونَ) +// acc/gen: -iina (ينَ) +// +// Sound feminine plural (جمع المؤنث السالم): +// Remove final ة (taa marbuta) if present, then add -aat (اتٌ/اتُ). +// +// This function returns the base plural form (without case ending) suitable +// for passing to ar_noun_form. For masculine plural case variation, callers +// should use ar_masc_pl_ending. + +fn ar_masc_pl_ending(kase: String) -> String { + if str_eq(kase, "nom") { return "ونَ" } + // acc and gen both use -iina in sound masculine plural + return "ينَ" +} + +fn ar_sound_plural(noun: String, gender: String) -> String { + if str_eq(gender, "f") { + // Feminine sound plural: drop ة, add ات + if ar_str_ends(noun, "ة") { + let base: String = ar_str_drop_last(noun, 1) + return base + "ات" + } + return noun + "ات" + } + // Masculine sound plural (nominative form as default): -uuna + return noun + "ون" +} + +// ── Full noun inflection ────────────────────────────────────────────────────── +// +// ar_noun_form: produce the inflected noun form. +// +// noun: base (singular) noun string +// gender: "m" | "f" (pass "" to infer from noun ending) +// kase: "nom" | "acc" | "gen" | "" (no case ending added) +// number: "singular" | "plural" +// definite: "true" | "false" +// +// For plurals, the function applies the sound plural (broken plurals are +// language-external and must be supplied via Engram vocabulary nodes). + +fn ar_noun_form(noun: String, gender: String, kase: String, number: String, definite: String) -> String { + // Resolve gender + let g: String = gender + if str_eq(g, "") { + let g = ar_gender(noun) + } + + // Build the stem (with definiteness and number) + let stem: String = noun + if str_eq(number, "plural") { + if str_eq(g, "m") { + // Masculine sound plural: stem + case-dependent ending + let pl_suf: String = ar_masc_pl_ending(kase) + if str_eq(definite, "true") { + let def_stem: String = ar_definite_article(noun) + return def_stem + pl_suf + } + return noun + pl_suf + } + // Feminine plural: drop ة, add ات + case ending + let fem_pl: String = ar_sound_plural(noun, "f") + let case_end: String = ar_case_ending(kase, definite) + if str_eq(definite, "true") { + return ar_definite_article(fem_pl) + case_end + } + return fem_pl + case_end + } + + // Singular + let case_end: String = ar_case_ending(kase, definite) + if str_eq(definite, "true") { + let def_stem: String = ar_definite_article(noun) + return def_stem + case_end + } + return noun + case_end +} + +// ── Convenience: verb inflect entry point ───────────────────────────────────── +// +// ar_verb_form: thin wrapper matching the signature style of the main engine. +// Accepts gender as part of person encoding: "third_m" | "third_f" | "first" | "second_m" | "second_f". +// Alternatively accepts explicit gender param. + +fn ar_verb_form(verb: String, tense: String, person: String, number: String) -> String { + // Default gender to masculine + return ar_conjugate(verb, tense, person, "m", number) +} diff --git a/elp/src/morphology-ar.elh b/elp/src/morphology-ar.elh new file mode 100644 index 0000000..71bdfd3 --- /dev/null +++ b/elp/src/morphology-ar.elh @@ -0,0 +1,27 @@ +// auto-generated by elc --emit-header - do not edit +extern fn ar_str_ends(s: String, suf: String) -> Bool +extern fn ar_str_len(s: String) -> Int +extern fn ar_str_drop_last(s: String, n: Int) -> String +extern fn ar_str_last_char(s: String) -> String +extern fn ar_slot(person: String, gender: String, number: String) -> Int +extern fn ar_perfect_suffix(slot: Int) -> String +extern fn ar_imperfect_prefix(slot: Int) -> String +extern fn ar_imperfect_suffix(slot: Int) -> String +extern fn ar_conjugate_form1(past_base: String, present_stem: String, tense: String, slot: Int) -> String +extern fn ar_irregular_kaana(slot: Int, tense: String) -> String +extern fn ar_irregular_qaala(slot: Int, tense: String) -> String +extern fn ar_irregular_jaa(slot: Int, tense: String) -> String +extern fn ar_irregular_raaa(slot: Int, tense: String) -> String +extern fn ar_irregular_araada(slot: Int, tense: String) -> String +extern fn ar_irregular_istata(slot: Int, tense: String) -> String +extern fn ar_irregular(verb: String, tense: String, slot: Int) -> String +extern fn ar_present_stem(verb: String) -> String +extern fn ar_conjugate(verb: String, tense: String, person: String, gender: String, number: String) -> String +extern fn ar_is_sun_letter(c: String) -> Bool +extern fn ar_definite_article(noun: String) -> String +extern fn ar_case_ending(kase: String, definite: String) -> String +extern fn ar_gender(noun: String) -> String +extern fn ar_masc_pl_ending(kase: String) -> String +extern fn ar_sound_plural(noun: String, gender: String) -> String +extern fn ar_noun_form(noun: String, gender: String, kase: String, number: String, definite: String) -> String +extern fn ar_verb_form(verb: String, tense: String, person: String, number: String) -> String diff --git a/elp/src/morphology-cop.el b/elp/src/morphology-cop.el new file mode 100644 index 0000000..b96b117 --- /dev/null +++ b/elp/src/morphology-cop.el @@ -0,0 +1,576 @@ +// morphology-cop.el - Coptic (Sahidic dialect) morphology for the NLG engine. +// +// Implements Coptic verb conjugation (bipartite and tripartite patterns), noun +// phrase assembly with definite and indefinite articles, and noun number marking. +// Designed as a companion to morphology.el; called when language code is "cop". +// +// Language profile: code=cop, name=Coptic, morph_type=agglutinative, +// word_order=SVO, question_strategy=particle, script=coptic, family=afro-asiatic-egyptian. +// +// Script: Coptic uses the Greek alphabet plus seven additional letters borrowed +// from Demotic Egyptian. All Coptic-script characters in this file use their +// correct Unicode code points (Coptic block U+2C80–U+2CFF; Coptic letters also +// appear in the Greek block: ϣ U+03E3, ϥ U+03E5, ϩ U+03E9, ϫ U+03EB, ϭ U+03ED). +// +// The El runtime stores strings as byte arrays. String literals with Coptic +// Unicode characters are encoded as UTF-8 and compared via str_eq byte equality. +// The runtime limitation on non-ASCII *output display* does not affect internal +// string logic — str_eq and concatenation work correctly. +// +// Grammatical notes (Sahidic Coptic, ca. 200–1000 CE): +// - SVO word order (Greek influence; reversed from classical Egyptian) +// - Definite articles prefixed directly to the noun (no space): +// p- (masc sg), t- (fem sg), n- (plural) — definite +// ou- (sg indefinite), hen- (pl indefinite) +// - Grammatical gender: masculine / feminine (still active) +// - No case endings — grammatical role expressed by word order + prepositions +// - Verb tense/aspect expressed by conjugation base (bipartite pattern): +// Present I: pronoun prefix + verb stem ("f-bwk" = he goes) +// Perfect: a- + pronoun prefix + verb ("a-f-bwk" = he went) +// Future: pronoun prefix + na- + verb ("f-na-bwk" = he will go) +// - Pronoun prefixes (Sahidic — used as subject markers in bipartite conjugation): +// 1sg: a-/t- (full: ⲁⲛⲟⲕ) 2sg m: k- 2sg f: te- +// 3sg m: f- 3sg f: s- +// 1pl: n- 2pl: teten- 3pl: se- +// - Copula: "pe" (m sg), "te" (f sg), "ne" (pl); zero copula for adj predicates +// - "to be/become": ϣωπε (Sahidic; present: fϣoop / sϣoop; past: afϣwpe) +// +// Verbs covered (Sahidic transliteration / Coptic script): +// ϣωπε (shwpe) — to be / become bwk — to go +// nau — to see jw — to say / speak +// di — to give +// +// Canonical English → Coptic mapping: +// "be" → ϣωπε / zero copula "go" → bwk +// "see" → nau "say" → jw +// "give" → di +// +// Persons/numbers covered: +// person: "first" | "second" | "third" +// gender: "m" | "f" (relevant for 2sg and 3sg pronoun prefix selection) +// number: "singular" | "plural" +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ────────────────────────────────────────────────────────────── + +fn cop_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn cop_str_len(s: String) -> Int { + return str_len(s) +} + +fn cop_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn cop_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { return "" } + return str_slice(s, n - 1, n) +} + +// ── Person/number slot ────────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based index used in paradigm tables. +// Gender is not encoded in the slot index here; it is passed separately to +// cop_subject_prefix where it matters (2sg and 3sg distinction). +// +// Slot layout: +// 0 = 1st singular (ⲁⲛⲟⲕ anok) +// 1 = 2nd singular (ⲛⲧⲟⲕ/ⲛⲧⲟ ntok/nto) — gender resolved in cop_subject_prefix +// 2 = 3rd singular (ⲛⲧⲟϥ/ⲛⲧⲟⲥ ntof/ntos) — gender resolved in cop_subject_prefix +// 3 = 1st plural (ⲁⲛⲟⲛ anon) +// 4 = 2nd plural (ⲛⲧⲱⲧⲉⲛ ntwten) +// 5 = 3rd plural (ⲛⲧⲟⲩ ntou) + +fn cop_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Subject pronoun prefixes ───────────────────────────────────────────────────── +// +// Coptic bipartite conjugation uses short pronoun prefixes attached directly to +// the verb stem (or to the tense base in tripartite). These are the Sahidic +// bound subject pronouns. +// +// Full independent pronouns (for reference): +// 1sg: ⲁⲛⲟⲕ (anok) prefix: ⲁ- / ⲧ- (varies by tense base) +// 2sg m: ⲛⲧⲟⲕ (ntok) prefix: ⲕ- +// 2sg f: ⲛⲧⲟ (nto) prefix: ⲧⲉ- +// 3sg m: ⲛⲧⲟϥ (ntof) prefix: ϥ- +// 3sg f: ⲛⲧⲟⲥ (ntos) prefix: ⲥ- +// 1pl: ⲁⲛⲟⲛ (anon) prefix: ⲛ- +// 2pl: ⲛⲧⲱⲧⲉⲛ (ntwten) prefix: ⲧⲉⲧⲉⲛ- +// 3pl: ⲛⲧⲟⲩ (ntou) prefix: ⲥⲉ- +// +// cop_subject_prefix returns the short bound prefix used in bipartite conjugation. +// For the perfect (a-prefix tense base), the subject prefix follows "a-" directly. + +fn cop_subject_prefix(person: String, number: String) -> String { + if str_eq(person, "first") { + if str_eq(number, "singular") { return "ⲁ" } + return "ⲛ" + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return "ⲕ" } + return "ⲧⲉⲧⲉⲛ" + } + // third + if str_eq(number, "singular") { return "ϥ" } + return "ⲥⲉ" +} + +// cop_subject_prefix_gendered: like cop_subject_prefix but handles the +// 2sg feminine (ⲧⲉ-) and 3sg feminine (ⲥ-) distinction. + +fn cop_subject_prefix_gendered(person: String, gender: String, number: String) -> String { + if str_eq(person, "first") { + if str_eq(number, "singular") { return "ⲁ" } + return "ⲛ" + } + if str_eq(person, "second") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return "ⲧⲉ" } + return "ⲕ" + } + return "ⲧⲉⲧⲉⲛ" + } + // third person + if str_eq(number, "singular") { + if str_eq(gender, "f") { return "ⲥ" } + return "ϥ" + } + return "ⲥⲉ" +} + +// ── Copula ────────────────────────────────────────────────────────────────────── +// +// The Coptic nominal/adjectival copula is a standalone particle that agrees with +// the gender and number of the subject: +// Masculine sg: ⲡⲉ (pe) +// Feminine sg: ⲧⲉ (te) +// Plural: ⲛⲉ (ne) +// +// For adjective predicates in the present tense, the copula is often zero +// (following the inherited Egyptian zero-copula rule). This engine returns "" +// for the present adjective predicate and the full copula particle otherwise. + +fn cop_copula_particle(gender: String, number: String) -> String { + if str_eq(number, "plural") { return "ⲛⲉ" } + if str_eq(gender, "f") { return "ⲧⲉ" } + return "ⲡⲉ" +} + +// ── Verb: ϣωπε (to be / become) ──────────────────────────────────────────────── +// +// ϣωπε is the Sahidic verb meaning "to be" or "to become". It is used as a +// substantive/existential copula. For adjective predicate sentences the zero +// copula is preferred (inherited from Egyptian). +// +// Sahidic forms: +// Present I (bipartite): prefix + ϣⲟⲟⲡ (e.g. ϥϣⲟⲟⲡ "he is/exists") +// Perfect (a- base): ⲁ + prefix + ϣⲱⲡⲉ (e.g. ⲁϥϣⲱⲡⲉ "he became") +// Future (na- infix): prefix + ⲛⲁϣⲱⲡⲉ (e.g. ϥⲛⲁϣⲱⲡⲉ "he will become") +// +// Note: ϣⲟⲟⲡ (shoop) is the present stem; ϣⲱⲡⲉ (shwpe) is the infinitive/perfect stem. + +fn cop_shwpe_present(prefix: String) -> String { + return prefix + "ϣⲟⲟⲡ" +} + +fn cop_shwpe_perfect(prefix: String) -> String { + return "ⲁ" + prefix + "ϣⲱⲡⲉ" +} + +fn cop_shwpe_future(prefix: String) -> String { + return prefix + "ⲛⲁϣⲱⲡⲉ" +} + +// ── Verb: bwk (to go) — written ⲃⲱⲕ ─────────────────────────────────────────── +// +// A common strong verb. The standard bipartite/tripartite pattern applies. +// Present: prefix + ⲃⲱⲕ (e.g. ϥⲃⲱⲕ "he goes") +// Perfect: ⲁ + prefix + ⲃⲱⲕ (e.g. ⲁϥⲃⲱⲕ "he went") +// Future: prefix + ⲛⲁⲃⲱⲕ (e.g. ϥⲛⲁⲃⲱⲕ "he will go") + +fn cop_bwk_present(prefix: String) -> String { + return prefix + "ⲃⲱⲕ" +} + +fn cop_bwk_perfect(prefix: String) -> String { + return "ⲁ" + prefix + "ⲃⲱⲕ" +} + +fn cop_bwk_future(prefix: String) -> String { + return prefix + "ⲛⲁⲃⲱⲕ" +} + +// ── Verb: nau (to see) — written ⲛⲁⲩ ────────────────────────────────────────── +// +// nau is a biconsonantal verb. Regular bipartite conjugation: +// Present: prefix + ⲛⲁⲩ (e.g. ϥⲛⲁⲩ "he sees") +// Perfect: ⲁ + prefix + ⲛⲁⲩ (e.g. ⲁϥⲛⲁⲩ "he saw") +// Future: prefix + ⲛⲁⲛⲁⲩ (e.g. ϥⲛⲁⲛⲁⲩ "he will see") +// +// Note: the future prefix "na-" followed by "nau" produces "nanau" — standard. + +fn cop_nau_present(prefix: String) -> String { + return prefix + "ⲛⲁⲩ" +} + +fn cop_nau_perfect(prefix: String) -> String { + return "ⲁ" + prefix + "ⲛⲁⲩ" +} + +fn cop_nau_future(prefix: String) -> String { + return prefix + "ⲛⲁⲛⲁⲩ" +} + +// ── Verb: jw (to say / speak) — written ϫⲱ ──────────────────────────────────── +// +// ϫⲱ is the Sahidic verb for "to say". Bipartite pattern: +// Present: prefix + ϫⲱ (e.g. ϥϫⲱ "he says") +// Perfect: ⲁ + prefix + ϫⲱ (e.g. ⲁϥϫⲱ "he said") +// Future: prefix + ⲛⲁϫⲱ (e.g. ϥⲛⲁϫⲱ "he will say") + +fn cop_jw_present(prefix: String) -> String { + return prefix + "ϫⲱ" +} + +fn cop_jw_perfect(prefix: String) -> String { + return "ⲁ" + prefix + "ϫⲱ" +} + +fn cop_jw_future(prefix: String) -> String { + return prefix + "ⲛⲁϫⲱ" +} + +// ── Verb: di (to give) — written ϯ ───────────────────────────────────────────── +// +// ϯ (ti/di) is a monosyllabic verb meaning "to give". It is very common in +// Coptic texts. Bipartite pattern: +// Present: prefix + ϯ (e.g. ϥϯ "he gives") +// Perfect: ⲁ + prefix + ϯ (e.g. ⲁϥϯ "he gave") +// Future: prefix + ⲛⲁϯ (e.g. ϥⲛⲁϯ "he will give") + +fn cop_di_present(prefix: String) -> String { + return prefix + "ϯ" +} + +fn cop_di_perfect(prefix: String) -> String { + return "ⲁ" + prefix + "ϯ" +} + +fn cop_di_future(prefix: String) -> String { + return prefix + "ⲛⲁϯ" +} + +// ── Copula detection ───────────────────────────────────────────────────────────── + +fn cop_is_copula(verb: String) -> Bool { + if str_eq(verb, "ϣωπε") { return true } + if str_eq(verb, "shwpe") { return true } + if str_eq(verb, "be") { return true } + return false +} + +// ── Known-verb dispatcher ──────────────────────────────────────────────────────── +// +// Returns the inflected form for a known verb given the subject prefix string +// and tense. Returns "" if the verb is not in the table. + +fn cop_known_verb_prefixed(verb: String, tense: String, prefix: String) -> String { + // ── ϣωπε / shwpe / "be" — to be / become ──────────────────────────────────── + if str_eq(verb, "ϣωπε") { + if str_eq(tense, "present") { return cop_shwpe_present(prefix) } + if str_eq(tense, "past") { return cop_shwpe_perfect(prefix) } + if str_eq(tense, "future") { return cop_shwpe_future(prefix) } + return cop_shwpe_present(prefix) + } + if str_eq(verb, "shwpe") { + if str_eq(tense, "present") { return cop_shwpe_present(prefix) } + if str_eq(tense, "past") { return cop_shwpe_perfect(prefix) } + if str_eq(tense, "future") { return cop_shwpe_future(prefix) } + return cop_shwpe_present(prefix) + } + + // ── bwk / ⲃⲱⲕ — to go ──────────────────────────────────────────────────────── + if str_eq(verb, "bwk") { + if str_eq(tense, "present") { return cop_bwk_present(prefix) } + if str_eq(tense, "past") { return cop_bwk_perfect(prefix) } + if str_eq(tense, "future") { return cop_bwk_future(prefix) } + return cop_bwk_present(prefix) + } + if str_eq(verb, "ⲃⲱⲕ") { + if str_eq(tense, "present") { return cop_bwk_present(prefix) } + if str_eq(tense, "past") { return cop_bwk_perfect(prefix) } + if str_eq(tense, "future") { return cop_bwk_future(prefix) } + return cop_bwk_present(prefix) + } + if str_eq(verb, "go") { + if str_eq(tense, "present") { return cop_bwk_present(prefix) } + if str_eq(tense, "past") { return cop_bwk_perfect(prefix) } + if str_eq(tense, "future") { return cop_bwk_future(prefix) } + return cop_bwk_present(prefix) + } + + // ── nau / ⲛⲁⲩ — to see ─────────────────────────────────────────────────────── + if str_eq(verb, "nau") { + if str_eq(tense, "present") { return cop_nau_present(prefix) } + if str_eq(tense, "past") { return cop_nau_perfect(prefix) } + if str_eq(tense, "future") { return cop_nau_future(prefix) } + return cop_nau_present(prefix) + } + if str_eq(verb, "ⲛⲁⲩ") { + if str_eq(tense, "present") { return cop_nau_present(prefix) } + if str_eq(tense, "past") { return cop_nau_perfect(prefix) } + if str_eq(tense, "future") { return cop_nau_future(prefix) } + return cop_nau_present(prefix) + } + if str_eq(verb, "see") { + if str_eq(tense, "present") { return cop_nau_present(prefix) } + if str_eq(tense, "past") { return cop_nau_perfect(prefix) } + if str_eq(tense, "future") { return cop_nau_future(prefix) } + return cop_nau_present(prefix) + } + + // ── jw / ϫⲱ — to say / speak ───────────────────────────────────────────────── + if str_eq(verb, "jw") { + if str_eq(tense, "present") { return cop_jw_present(prefix) } + if str_eq(tense, "past") { return cop_jw_perfect(prefix) } + if str_eq(tense, "future") { return cop_jw_future(prefix) } + return cop_jw_present(prefix) + } + if str_eq(verb, "ϫⲱ") { + if str_eq(tense, "present") { return cop_jw_present(prefix) } + if str_eq(tense, "past") { return cop_jw_perfect(prefix) } + if str_eq(tense, "future") { return cop_jw_future(prefix) } + return cop_jw_present(prefix) + } + if str_eq(verb, "say") { + if str_eq(tense, "present") { return cop_jw_present(prefix) } + if str_eq(tense, "past") { return cop_jw_perfect(prefix) } + if str_eq(tense, "future") { return cop_jw_future(prefix) } + return cop_jw_present(prefix) + } + + // ── di / ϯ — to give ────────────────────────────────────────────────────────── + if str_eq(verb, "di") { + if str_eq(tense, "present") { return cop_di_present(prefix) } + if str_eq(tense, "past") { return cop_di_perfect(prefix) } + if str_eq(tense, "future") { return cop_di_future(prefix) } + return cop_di_present(prefix) + } + if str_eq(verb, "ϯ") { + if str_eq(tense, "present") { return cop_di_present(prefix) } + if str_eq(tense, "past") { return cop_di_perfect(prefix) } + if str_eq(tense, "future") { return cop_di_future(prefix) } + return cop_di_present(prefix) + } + if str_eq(verb, "give") { + if str_eq(tense, "present") { return cop_di_present(prefix) } + if str_eq(tense, "past") { return cop_di_perfect(prefix) } + if str_eq(tense, "future") { return cop_di_future(prefix) } + return cop_di_present(prefix) + } + + // Verb not in table + return "" +} + +// ── Regular verb conjugation ───────────────────────────────────────────────────── +// +// For verbs not in the explicit table, apply the productive bipartite pattern: +// Present: prefix + stem +// Perfect: ⲁ + prefix + stem +// Future: prefix + ⲛⲁ + stem + +fn cop_regular_present(prefix: String, stem: String) -> String { + return prefix + stem +} + +fn cop_regular_perfect(prefix: String, stem: String) -> String { + return "ⲁ" + prefix + stem +} + +fn cop_regular_future(prefix: String, stem: String) -> String { + return prefix + "ⲛⲁ" + stem +} + +// ── cop_conjugate: main conjugation entry point ────────────────────────────────── +// +// verb: Coptic verb (Sahidic stem, transliterated, or English canonical label) +// tense: "present" | "past" | "future" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the fully conjugated form with subject prefix embedded. +// Zero copula ("") is returned for present "be" (adj predicate context). +// For unknown verbs the regular bipartite pattern is applied as a productive fallback. + +fn cop_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let prefix: String = cop_subject_prefix(person, number) + + // Handle "be" canonical → zero copula in present; ϣωπε otherwise + if str_eq(verb, "be") { + if str_eq(tense, "present") { return "" } + if str_eq(tense, "past") { return cop_shwpe_perfect(prefix) } + if str_eq(tense, "future") { return cop_shwpe_future(prefix) } + return "" + } + + // Try the known-verb table + let known: String = cop_known_verb_prefixed(verb, tense, prefix) + if !str_eq(known, "") { + return known + } + + // Regular productive bipartite conjugation + if str_eq(tense, "present") { return cop_regular_present(prefix, verb) } + if str_eq(tense, "past") { return cop_regular_perfect(prefix, verb) } + if str_eq(tense, "future") { return cop_regular_future(prefix, verb) } + + // Unknown tense: return verb as safe fallback + return verb +} + +// ── Article system ──────────────────────────────────────────────────────────────── +// +// cop_article: return the Coptic article string for the given gender/number/definiteness. +// +// Definite articles (prefixed directly to noun, no space): +// Masculine singular: ⲡ- (p-) +// Feminine singular: ⲧ- (t-) +// Plural (both): ⲛ- (n-) +// +// Indefinite articles: +// Singular (both genders): ⲟⲩ- (ou-) +// Plural: ϩⲉⲛ- (hen-) +// +// gender: "m" | "f" +// number: "singular" | "plural" +// definite: "true" | "false" +// +// Returns the article prefix string (to be concatenated with the noun). + +fn cop_article(gender: String, number: String, definite: String) -> String { + if str_eq(definite, "true") { + if str_eq(number, "plural") { return "ⲛ" } + if str_eq(gender, "f") { return "ⲧ" } + return "ⲡ" + } + // Indefinite + if str_eq(number, "plural") { return "ϩⲉⲛ" } + return "ⲟⲩ" +} + +// ── Noun number ─────────────────────────────────────────────────────────────────── +// +// cop_decline: return the noun in the appropriate number form. +// +// Coptic nouns have no case endings. Grammatical role is expressed entirely by +// word order and prepositions. The gram_case parameter is accepted for API +// symmetry with other morphology modules but has no effect. +// +// Plural formation: +// Coptic plural morphology is highly irregular (inherited from Egyptian and +// influenced by Greek loanwords). Common patterns: +// - Many nouns show no suffix change — plurality is indicated only by the plural article ⲛ-. +// - Some nouns take -ⲟⲟⲩⲉ (-ooue): e.g. ϩⲟ (face) → ϩⲟⲟⲩⲉ +// - Greek loanwords often add -ⲟⲥ / -ⲟⲩ in Greek fashion +// +// This function implements: +// - No suffix change (base form) as the productive default — the article carries number. +// - Words ending in ⲉ (a common Coptic nominal ending) may take -ⲟⲟⲩⲉ in the plural; +// this suffix is applied only when the caller explicitly requests plural and the +// noun ends in ⲉ (productive pattern). +// Vocabulary-layer irregular plurals should be stored in vocabulary-cop.el and +// passed already inflected. + +fn cop_decline(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { return noun } + // Plural: if noun ends in ⲉ, attempt -ooue suffix (common productive pattern) + if cop_str_ends(noun, "ⲉ") { + let stem: String = cop_drop(noun, 1) + return stem + "ⲟⲟⲩⲉ" + } + // Default: base form (article carries the plural signal) + return noun +} + +// ── Noun phrase assembly ────────────────────────────────────────────────────────── +// +// cop_noun_phrase: build a complete Coptic noun phrase. +// +// noun: base noun (Coptic script or transliteration) +// gram_case: accepted for API symmetry; has no effect (Coptic is caseless) +// number: "singular" | "plural" +// definite: "true" | "false" +// +// The article is prefixed directly to the noun with no intervening space, +// following standard Coptic orthographic convention. +// Gender defaults to masculine when not determinable from context; the caller +// should supply the declined noun already in its correct form if gender-sensitive +// plural forms are needed. + +fn cop_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let form: String = cop_decline(noun, gram_case, number) + // Infer gender from number: if plural, gender is moot for the article (always ⲛ-) + // For singular, default to masculine (caller provides gender via article if known) + let art: String = cop_article("m", number, definite) + if str_eq(definite, "true") { + return art + form + } + if str_eq(definite, "false") { + // Indefinite article + noun (no space — Coptic convention for proclitic articles) + return art + form + } + return form +} + +// cop_noun_phrase_gendered: noun phrase with explicit gender for correct article selection. +// +// gender: "m" | "f" + +fn cop_noun_phrase_gendered(noun: String, gram_case: String, number: String, definite: String, gender: String) -> String { + let form: String = cop_decline(noun, gram_case, number) + let art: String = cop_article(gender, number, definite) + if str_eq(definite, "true") { + return art + form + } + if str_eq(definite, "false") { + return art + form + } + return form +} + +// ── Canonical verb mapping ──────────────────────────────────────────────────────── +// +// cop_map_canonical: map cross-lingual English canonical verb labels to their +// Sahidic Coptic equivalents before dispatching to cop_conjugate. + +fn cop_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "be" } + if str_eq(verb, "go") { return "bwk" } + if str_eq(verb, "see") { return "nau" } + if str_eq(verb, "say") { return "jw" } + if str_eq(verb, "speak") { return "jw" } + if str_eq(verb, "give") { return "di" } + // Unknown: return as-is; cop_conjugate will apply the regular pattern + return verb +} diff --git a/elp/src/morphology-cop.elh b/elp/src/morphology-cop.elh new file mode 100644 index 0000000..8be3aea --- /dev/null +++ b/elp/src/morphology-cop.elh @@ -0,0 +1,35 @@ +// auto-generated by elc --emit-header - do not edit +extern fn cop_str_ends(s: String, suf: String) -> Bool +extern fn cop_str_len(s: String) -> Int +extern fn cop_drop(s: String, n: Int) -> String +extern fn cop_last_char(s: String) -> String +extern fn cop_slot(person: String, number: String) -> Int +extern fn cop_subject_prefix(person: String, number: String) -> String +extern fn cop_subject_prefix_gendered(person: String, gender: String, number: String) -> String +extern fn cop_copula_particle(gender: String, number: String) -> String +extern fn cop_shwpe_present(prefix: String) -> String +extern fn cop_shwpe_perfect(prefix: String) -> String +extern fn cop_shwpe_future(prefix: String) -> String +extern fn cop_bwk_present(prefix: String) -> String +extern fn cop_bwk_perfect(prefix: String) -> String +extern fn cop_bwk_future(prefix: String) -> String +extern fn cop_nau_present(prefix: String) -> String +extern fn cop_nau_perfect(prefix: String) -> String +extern fn cop_nau_future(prefix: String) -> String +extern fn cop_jw_present(prefix: String) -> String +extern fn cop_jw_perfect(prefix: String) -> String +extern fn cop_jw_future(prefix: String) -> String +extern fn cop_di_present(prefix: String) -> String +extern fn cop_di_perfect(prefix: String) -> String +extern fn cop_di_future(prefix: String) -> String +extern fn cop_is_copula(verb: String) -> Bool +extern fn cop_known_verb_prefixed(verb: String, tense: String, prefix: String) -> String +extern fn cop_regular_present(prefix: String, stem: String) -> String +extern fn cop_regular_perfect(prefix: String, stem: String) -> String +extern fn cop_regular_future(prefix: String, stem: String) -> String +extern fn cop_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn cop_article(gender: String, number: String, definite: String) -> String +extern fn cop_decline(noun: String, gram_case: String, number: String) -> String +extern fn cop_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String +extern fn cop_noun_phrase_gendered(noun: String, gram_case: String, number: String, definite: String, gender: String) -> String +extern fn cop_map_canonical(verb: String) -> String diff --git a/elp/src/morphology-de.el b/elp/src/morphology-de.el new file mode 100644 index 0000000..979aa95 --- /dev/null +++ b/elp/src/morphology-de.el @@ -0,0 +1,813 @@ +// morphology-de.el - German morphology: articles, adjective endings, noun +// plurals, and verb conjugation. +// +// German is a fusional language with: +// - 4 grammatical cases: nominative, accusative, dative, genitive +// - 3 genders: masculine (m), feminine (f), neuter (n) +// - 2 numbers: singular, plural +// - Strong and weak verb classes +// +// Conventions used throughout: +// gender: "m" | "f" | "n" +// case: "nom" | "acc" | "dat" | "gen" +// number: "sg" | "pl" +// person: "1" | "2" | "3" +// tense: "present" | "past" | "future" +// article_type: "def" | "indef" | "none" +// +// Depends on: language-profile (str_eq, str_len, str_slice, str_drop_last, +// str_ends_with) + +// ── Definite articles (der-words) ───────────────────────────────────────────── +// +// Masc Fem Neut Plural +// Nom: der die das die +// Acc: den die das die +// Dat: dem der dem den +// Gen: des der des der + +fn de_article_def(gender: String, gram_case: String, number: String) -> String { + if str_eq(number, "pl") { + if str_eq(gram_case, "nom") { return "die" } + if str_eq(gram_case, "acc") { return "die" } + if str_eq(gram_case, "dat") { return "den" } + if str_eq(gram_case, "gen") { return "der" } + return "die" + } + if str_eq(gender, "m") { + if str_eq(gram_case, "nom") { return "der" } + if str_eq(gram_case, "acc") { return "den" } + if str_eq(gram_case, "dat") { return "dem" } + if str_eq(gram_case, "gen") { return "des" } + return "der" + } + if str_eq(gender, "f") { + if str_eq(gram_case, "nom") { return "die" } + if str_eq(gram_case, "acc") { return "die" } + if str_eq(gram_case, "dat") { return "der" } + if str_eq(gram_case, "gen") { return "der" } + return "die" + } + // neuter + if str_eq(gram_case, "nom") { return "das" } + if str_eq(gram_case, "acc") { return "das" } + if str_eq(gram_case, "dat") { return "dem" } + if str_eq(gram_case, "gen") { return "des" } + return "das" +} + +// ── Indefinite articles (ein-words) ────────────────────────────────────────── +// +// Masc Fem Neut Plural +// Nom: ein eine ein — +// Acc: einen eine ein — +// Dat: einem einer einem — +// Gen: eines einer eines — + +fn de_article_indef(gender: String, gram_case: String, number: String) -> String { + if str_eq(number, "pl") { + // Indefinite article has no plural form + return "" + } + if str_eq(gender, "m") { + if str_eq(gram_case, "nom") { return "ein" } + if str_eq(gram_case, "acc") { return "einen" } + if str_eq(gram_case, "dat") { return "einem" } + if str_eq(gram_case, "gen") { return "eines" } + return "ein" + } + if str_eq(gender, "f") { + if str_eq(gram_case, "nom") { return "eine" } + if str_eq(gram_case, "acc") { return "eine" } + if str_eq(gram_case, "dat") { return "einer" } + if str_eq(gram_case, "gen") { return "einer" } + return "eine" + } + // neuter + if str_eq(gram_case, "nom") { return "ein" } + if str_eq(gram_case, "acc") { return "ein" } + if str_eq(gram_case, "dat") { return "einem" } + if str_eq(gram_case, "gen") { return "eines" } + return "ein" +} + +// de_article: unified article dispatch. +// definite: "def" | "indef" | "none" +fn de_article(gender: String, gram_case: String, number: String, definite: String) -> String { + if str_eq(definite, "def") { return de_article_def(gender, gram_case, number) } + if str_eq(definite, "indef") { return de_article_indef(gender, gram_case, number) } + return "" +} + +// ── Adjective endings ───────────────────────────────────────────────────────── +// +// Weak endings (after a definite article or der-word): +// +// Masc Fem Neut Plural +// Nom: -e -e -e -en +// Acc: -en -e -e -en +// Dat: -en -en -en -en +// Gen: -en -en -en -en +// +// Mixed endings (after ein-words with no marking, i.e. indef article): +// +// Masc Fem Neut Plural +// Nom: -er -e -es -en +// Acc: -en -e -es -en +// Dat: -en -en -en -en +// Gen: -en -en -en -en +// +// Strong endings (no preceding article): +// +// Masc Fem Neut Plural +// Nom: -er -e -es -e +// Acc: -en -e -es -e +// Dat: -em -er -em -en +// Gen: -en -er -en -er +// +// article_type: "def" | "indef" | "none" + +fn de_adj_ending(gender: String, gram_case: String, number: String, article_type: String) -> String { + if str_eq(article_type, "def") { + // Weak declension + if str_eq(number, "pl") { + return "en" + } + if str_eq(gender, "m") { + if str_eq(gram_case, "nom") { return "e" } + return "en" + } + if str_eq(gender, "f") { + if str_eq(gram_case, "nom") { return "e" } + if str_eq(gram_case, "acc") { return "e" } + return "en" + } + // neuter + if str_eq(gram_case, "nom") { return "e" } + if str_eq(gram_case, "acc") { return "e" } + return "en" + } + + if str_eq(article_type, "indef") { + // Mixed declension + if str_eq(number, "pl") { + return "en" + } + if str_eq(gender, "m") { + if str_eq(gram_case, "nom") { return "er" } + return "en" + } + if str_eq(gender, "f") { + if str_eq(gram_case, "nom") { return "e" } + if str_eq(gram_case, "acc") { return "e" } + return "en" + } + // neuter + if str_eq(gram_case, "nom") { return "es" } + if str_eq(gram_case, "acc") { return "es" } + return "en" + } + + // Strong declension (no article) + if str_eq(number, "pl") { + if str_eq(gram_case, "nom") { return "e" } + if str_eq(gram_case, "acc") { return "e" } + if str_eq(gram_case, "dat") { return "en" } + if str_eq(gram_case, "gen") { return "er" } + return "e" + } + if str_eq(gender, "m") { + if str_eq(gram_case, "nom") { return "er" } + if str_eq(gram_case, "acc") { return "en" } + if str_eq(gram_case, "dat") { return "em" } + if str_eq(gram_case, "gen") { return "en" } + return "er" + } + if str_eq(gender, "f") { + if str_eq(gram_case, "nom") { return "e" } + if str_eq(gram_case, "acc") { return "e" } + if str_eq(gram_case, "dat") { return "er" } + if str_eq(gram_case, "gen") { return "er" } + return "e" + } + // neuter + if str_eq(gram_case, "nom") { return "es" } + if str_eq(gram_case, "acc") { return "es" } + if str_eq(gram_case, "dat") { return "em" } + if str_eq(gram_case, "gen") { return "en" } + return "es" +} + +// ── Noun plural formation ───────────────────────────────────────────────────── +// +// Major patterns, keyed on lemma. Where a noun is known irregular, the full +// plural is returned. Otherwise a productive heuristic by gender and ending +// is applied: +// +// Masculine hard nouns → +e (der Tag → Tage) +// Feminine nouns in -e → +n (die Katze → Katzen) +// Feminine nouns → +en (die Frau → Frauen) +// Neuter nouns in -chen/-lein → ∅ (das Mädchen → Mädchen) +// Neuter nouns in -um → -um +en (das Zentrum → Zentren) +// Loanwords in -a,-o,-i → +s (das Auto → Autos) +// Default → +e + +fn de_noun_plural(noun: String, gender: String) -> String { + // ── Lexical irregulars ────────────────────────────────────────────────── + if str_eq(noun, "Mann") { return "Männer" } + if str_eq(noun, "Kind") { return "Kinder" } + if str_eq(noun, "Haus") { return "Häuser" } + if str_eq(noun, "Buch") { return "Bücher" } + if str_eq(noun, "Mutter") { return "Mütter" } + if str_eq(noun, "Vater") { return "Väter" } + if str_eq(noun, "Bruder") { return "Brüder" } + if str_eq(noun, "Tochter") { return "Töchter" } + if str_eq(noun, "Nacht") { return "Nächte" } + if str_eq(noun, "Stadt") { return "Städte" } + if str_eq(noun, "Wort") { return "Wörter" } + if str_eq(noun, "Gott") { return "Götter" } + if str_eq(noun, "Wald") { return "Wälder" } + if str_eq(noun, "Band") { return "Bände" } + if str_eq(noun, "Hund") { return "Hunde" } + if str_eq(noun, "Baum") { return "Bäume" } + if str_eq(noun, "Raum") { return "Räume" } + if str_eq(noun, "Traum") { return "Träume" } + if str_eq(noun, "Zug") { return "Züge" } + if str_eq(noun, "Flug") { return "Flüge" } + if str_eq(noun, "Fuß") { return "Füße" } + if str_eq(noun, "Gruß") { return "Grüße" } + if str_eq(noun, "Geist") { return "Geister" } + if str_eq(noun, "Schwanz") { return "Schwänze" } + if str_eq(noun, "Stuhl") { return "Stühle" } + if str_eq(noun, "Stuhl") { return "Stühle" } + if str_eq(noun, "Sohn") { return "Söhne" } + if str_eq(noun, "Ton") { return "Töne" } + if str_eq(noun, "Fluss") { return "Flüsse" } + if str_eq(noun, "Frau") { return "Frauen" } + if str_eq(noun, "Straße") { return "Straßen" } + if str_eq(noun, "Schule") { return "Schulen" } + if str_eq(noun, "Blume") { return "Blumen" } + if str_eq(noun, "Katze") { return "Katzen" } + if str_eq(noun, "Sprache") { return "Sprachen" } + if str_eq(noun, "Kirche") { return "Kirchen" } + if str_eq(noun, "Tür") { return "Türen" } + if str_eq(noun, "Uhr") { return "Uhren" } + if str_eq(noun, "Zahl") { return "Zahlen" } + if str_eq(noun, "Wahl") { return "Wahlen" } + if str_eq(noun, "Bahn") { return "Bahnen" } + if str_eq(noun, "Zahn") { return "Zähne" } + if str_eq(noun, "Nase") { return "Nasen" } + if str_eq(noun, "Maus") { return "Mäuse" } + if str_eq(noun, "Mädchen") { return "Mädchen" } + if str_eq(noun, "Messer") { return "Messer" } + if str_eq(noun, "Fenster") { return "Fenster" } + if str_eq(noun, "Zimmer") { return "Zimmer" } + if str_eq(noun, "Wasser") { return "Wasser" } + if str_eq(noun, "Bett") { return "Betten" } + if str_eq(noun, "Auto") { return "Autos" } + if str_eq(noun, "Kino") { return "Kinos" } + if str_eq(noun, "Radio") { return "Radios" } + if str_eq(noun, "Foto") { return "Fotos" } + if str_eq(noun, "Cafe") { return "Cafes" } + if str_eq(noun, "Zentrum") { return "Zentren" } + if str_eq(noun, "Museum") { return "Museen" } + if str_eq(noun, "Gymnasium") { return "Gymnasien" } + if str_eq(noun, "Studium") { return "Studien" } + if str_eq(noun, "Datum") { return "Daten" } + + // ── Productive heuristics ─────────────────────────────────────────────── + + // Nouns ending in -chen or -lein: no change (diminutives) + if str_ends_with(noun, "chen") { return noun } + if str_ends_with(noun, "lein") { return noun } + + // Nouns ending in -um: replace with -en + if str_ends_with(noun, "um") { + return str_drop_last(noun, 2) + "en" + } + + // Loanwords ending in vowel or -s: add -s + if str_ends_with(noun, "a") { return noun + "s" } + if str_ends_with(noun, "o") { return noun + "s" } + if str_ends_with(noun, "i") { return noun + "s" } + if str_ends_with(noun, "u") { return noun + "s" } + if str_ends_with(noun, "y") { return noun + "s" } + + // Feminine nouns ending in -e: add -n + if str_eq(gender, "f") { + if str_ends_with(noun, "e") { + return noun + "n" + } + // Feminine nouns ending in -in: add -nen + if str_ends_with(noun, "in") { + return noun + "nen" + } + // Most other feminines: add -en + return noun + "en" + } + + // Neuter and masculine: default to +e + return noun + "e" +} + +// ── Noun case endings ───────────────────────────────────────────────────────── +// +// In German, noun case inflection is mostly carried by the article and +// adjective. The noun itself only changes in two regular situations: +// - Genitive singular masculine/neuter: -(e)s +// - Dative plural: -n (if not already ending in -n or -s) +// +// Irregular genitive forms (e.g. N-declension: Herr → Herrn) are +// handled per-lemma in de_case_ending. + +fn de_case_ending(noun: String, gender: String, gram_case: String, number: String) -> String { + // N-declension masculines (weak nouns): all non-nominative singular forms + all plural add -(e)n + if str_eq(noun, "Herr") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "Herr" } + return "Herrn" + } + return "Herren" + } + if str_eq(noun, "Mensch") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "Mensch" } + return "Menschen" + } + return "Menschen" + } + if str_eq(noun, "Student") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "Student" } + return "Studenten" + } + return "Studenten" + } + if str_eq(noun, "Kollege") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "Kollege" } + return "Kollegen" + } + return "Kollegen" + } + if str_eq(noun, "Name") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "Name" } + if str_eq(gram_case, "gen") { return "Namens" } + return "Namen" + } + return "Namen" + } + + // Regular masculine/neuter: genitive singular gets -(e)s + if str_eq(number, "sg") { + if str_eq(gram_case, "gen") { + if str_eq(gender, "m") { + if str_ends_with(noun, "s") { return noun + "es" } + if str_ends_with(noun, "x") { return noun + "es" } + if str_ends_with(noun, "z") { return noun + "es" } + if str_ends_with(noun, "sch") { return noun + "es" } + return noun + "s" + } + if str_eq(gender, "n") { + if str_ends_with(noun, "s") { return noun + "es" } + if str_ends_with(noun, "x") { return noun + "es" } + if str_ends_with(noun, "z") { return noun + "es" } + return noun + "s" + } + } + // All other singular cases: noun unchanged + return noun + } + + // Plural dative: add -n unless already ending in -n or -s + if str_eq(gram_case, "dat") { + let pl: String = de_noun_plural(noun, gender) + if str_ends_with(pl, "n") { return pl } + if str_ends_with(pl, "s") { return pl } + return pl + "n" + } + + // All other plural cases: return the standard plural form + return de_noun_plural(noun, gender) +} + +// ── Weak verb conjugation ───────────────────────────────────────────────────── +// +// Model: machen (mach-) +// +// Present: +// 1sg ich mache 2sg du machst 3sg er/sie/es macht +// 1pl wir machen 2pl ihr macht 3pl sie machen +// +// Past (Präteritum): +// 1sg ich machte 2sg du machtest 3sg er/sie/es machte +// 1pl wir machten 2pl ihr machtet 3pl sie machten + +fn de_conjugate_weak(stem: String, tense: String, person: String, number: String) -> String { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return stem + "e" } + if str_eq(person, "2") { + // Stems ending in -t or -d insert -e- before -st + if str_ends_with(stem, "t") { return stem + "est" } + if str_ends_with(stem, "d") { return stem + "est" } + return stem + "st" + } + // 3sg + if str_ends_with(stem, "t") { return stem + "et" } + if str_ends_with(stem, "d") { return stem + "et" } + return stem + "t" + } + // plural + if str_eq(person, "1") { return stem + "en" } + if str_eq(person, "2") { + if str_ends_with(stem, "t") { return stem + "et" } + if str_ends_with(stem, "d") { return stem + "et" } + return stem + "t" + } + // 3pl + return stem + "en" + } + + if str_eq(tense, "past") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return stem + "te" } + if str_eq(person, "2") { return stem + "test" } + return stem + "te" + } + if str_eq(person, "1") { return stem + "ten" } + if str_eq(person, "2") { return stem + "tet" } + return stem + "ten" + } + + // Future: werden + infinitive — caller must prepend the auxiliary + return stem + "en" +} + +// ── Strong / irregular verb present-tense forms ─────────────────────────────── +// +// Returns the correct surface form if the verb is irregular, or "" if unknown. +// Only present-tense irregulars are encoded here because past tense for strong +// verbs is stored as a separate stem (Ablaut) — see de_conjugate. + +fn de_irregular_present(verb: String, person: String, number: String) -> String { + // sein — fully irregular + if str_eq(verb, "sein") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "bin" } + if str_eq(person, "2") { return "bist" } + return "ist" + } + if str_eq(person, "1") { return "sind" } + if str_eq(person, "2") { return "seid" } + return "sind" + } + + // haben + if str_eq(verb, "haben") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "habe" } + if str_eq(person, "2") { return "hast" } + return "hat" + } + if str_eq(person, "1") { return "haben" } + if str_eq(person, "2") { return "habt" } + return "haben" + } + + // werden + if str_eq(verb, "werden") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "werde" } + if str_eq(person, "2") { return "wirst" } + return "wird" + } + if str_eq(person, "1") { return "werden" } + if str_eq(person, "2") { return "werdet" } + return "werden" + } + + // gehen + if str_eq(verb, "gehen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "gehe" } + if str_eq(person, "2") { return "gehst" } + return "geht" + } + if str_eq(person, "1") { return "gehen" } + if str_eq(person, "2") { return "geht" } + return "gehen" + } + + // kommen + if str_eq(verb, "kommen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "komme" } + if str_eq(person, "2") { return "kommst" } + return "kommt" + } + if str_eq(person, "1") { return "kommen" } + if str_eq(person, "2") { return "kommt" } + return "kommen" + } + + // sehen — vowel change e→ie in 2sg/3sg + if str_eq(verb, "sehen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "sehe" } + if str_eq(person, "2") { return "siehst" } + return "sieht" + } + if str_eq(person, "1") { return "sehen" } + if str_eq(person, "2") { return "seht" } + return "sehen" + } + + // essen — vowel change e→i in 2sg/3sg + if str_eq(verb, "essen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "esse" } + if str_eq(person, "2") { return "isst" } + return "isst" + } + if str_eq(person, "1") { return "essen" } + if str_eq(person, "2") { return "esst" } + return "essen" + } + + // geben — vowel change e→i in 2sg/3sg + if str_eq(verb, "geben") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "gebe" } + if str_eq(person, "2") { return "gibst" } + return "gibt" + } + if str_eq(person, "1") { return "geben" } + if str_eq(person, "2") { return "gebt" } + return "geben" + } + + // nehmen — vowel change e→i + consonant change in 2sg/3sg + if str_eq(verb, "nehmen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "nehme" } + if str_eq(person, "2") { return "nimmst" } + return "nimmt" + } + if str_eq(person, "1") { return "nehmen" } + if str_eq(person, "2") { return "nehmt" } + return "nehmen" + } + + // fahren — vowel change a→ä in 2sg/3sg + if str_eq(verb, "fahren") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "fahre" } + if str_eq(person, "2") { return "fährst" } + return "fährt" + } + if str_eq(person, "1") { return "fahren" } + if str_eq(person, "2") { return "fahrt" } + return "fahren" + } + + // laufen — vowel change au→äu in 2sg/3sg + if str_eq(verb, "laufen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "laufe" } + if str_eq(person, "2") { return "läufst" } + return "läuft" + } + if str_eq(person, "1") { return "laufen" } + if str_eq(person, "2") { return "lauft" } + return "laufen" + } + + // wissen — irregular throughout + if str_eq(verb, "wissen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "weiß" } + if str_eq(person, "2") { return "weißt" } + return "weiß" + } + if str_eq(person, "1") { return "wissen" } + if str_eq(person, "2") { return "wisst" } + return "wissen" + } + + // können — modal + if str_eq(verb, "können") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "kann" } + if str_eq(person, "2") { return "kannst" } + return "kann" + } + if str_eq(person, "1") { return "können" } + if str_eq(person, "2") { return "könnt" } + return "können" + } + + // müssen — modal + if str_eq(verb, "müssen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "muss" } + if str_eq(person, "2") { return "musst" } + return "muss" + } + if str_eq(person, "1") { return "müssen" } + if str_eq(person, "2") { return "müsst" } + return "müssen" + } + + // wollen — modal + if str_eq(verb, "wollen") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "will" } + if str_eq(person, "2") { return "willst" } + return "will" + } + if str_eq(person, "1") { return "wollen" } + if str_eq(person, "2") { return "wollt" } + return "wollen" + } + + // Unknown: signal caller to fall through to weak conjugation + return "" +} + +// ── Strong verb past-tense (Präteritum) Ablaut stems ───────────────────────── +// +// Returns the past stem for strong verbs (Ablaut form), or "" if unknown/weak. +// The past-tense endings for strong verbs differ from weak: +// 1sg/3sg: bare stem (no ending) +// 2sg: stem + -st +// 1pl/3pl: stem + -en +// 2pl: stem + -t + +fn de_strong_past_stem(verb: String) -> String { + if str_eq(verb, "gehen") { return "ging" } + if str_eq(verb, "kommen") { return "kam" } + if str_eq(verb, "sehen") { return "sah" } + if str_eq(verb, "geben") { return "gab" } + if str_eq(verb, "nehmen") { return "nahm" } + if str_eq(verb, "fahren") { return "fuhr" } + if str_eq(verb, "laufen") { return "lief" } + if str_eq(verb, "schreiben") { return "schrieb" } + if str_eq(verb, "bleiben") { return "blieb" } + if str_eq(verb, "steigen") { return "stieg" } + if str_eq(verb, "lesen") { return "las" } + if str_eq(verb, "sprechen") { return "sprach" } + if str_eq(verb, "treffen") { return "traf" } + if str_eq(verb, "essen") { return "aß" } + if str_eq(verb, "trinken") { return "trank" } + if str_eq(verb, "finden") { return "fand" } + if str_eq(verb, "denken") { return "dachte" } + if str_eq(verb, "bringen") { return "brachte" } + if str_eq(verb, "stehen") { return "stand" } + if str_eq(verb, "liegen") { return "lag" } + if str_eq(verb, "sitzen") { return "saß" } + if str_eq(verb, "fallen") { return "fiel" } + if str_eq(verb, "halten") { return "hielt" } + if str_eq(verb, "rufen") { return "rief" } + if str_eq(verb, "tragen") { return "trug" } + if str_eq(verb, "schlagen") { return "schlug" } + if str_eq(verb, "ziehen") { return "zog" } + if str_eq(verb, "wachsen") { return "wuchs" } + if str_eq(verb, "helfen") { return "half" } + if str_eq(verb, "werfen") { return "warf" } + return "" +} + +// ── Normalization helpers ───────────────────────────────────────────────────── +// +// The realizer sends long-form labels ("singular", "first"). +// German morphology uses short forms ("sg", "1"). Normalize on entry. + +fn de_norm_number(number: String) -> String { + if str_eq(number, "singular") { return "sg" } + if str_eq(number, "plural") { return "pl" } + return number +} + +fn de_norm_person(person: String) -> String { + if str_eq(person, "first") { return "1" } + if str_eq(person, "second") { return "2" } + if str_eq(person, "third") { return "3" } + return person +} + +// ── Unified German verb conjugation ────────────────────────────────────────── +// +// tense: "present" | "past" | "future" +// person: "1" | "2" | "3" (also accepts "first" | "second" | "third") +// number: "sg" | "pl" (also accepts "singular" | "plural") + +fn de_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let number = de_norm_number(number) + let person = de_norm_person(person) + // Future tense: werden (conjugated) + infinitive + if str_eq(tense, "future") { + let aux: String = de_irregular_present("werden", person, number) + return aux + " " + verb + } + + // sein — past is also fully irregular + if str_eq(verb, "sein") { + if str_eq(tense, "present") { + return de_irregular_present("sein", person, number) + } + // Past (war) + if str_eq(number, "sg") { + if str_eq(person, "1") { return "war" } + if str_eq(person, "2") { return "warst" } + return "war" + } + if str_eq(person, "1") { return "waren" } + if str_eq(person, "2") { return "wart" } + return "waren" + } + + // haben — past: hatte + if str_eq(verb, "haben") { + if str_eq(tense, "present") { + return de_irregular_present("haben", person, number) + } + if str_eq(number, "sg") { + if str_eq(person, "1") { return "hatte" } + if str_eq(person, "2") { return "hattest" } + return "hatte" + } + if str_eq(person, "1") { return "hatten" } + if str_eq(person, "2") { return "hattet" } + return "hatten" + } + + // wissen — past: wusste (mixed/irregular) + if str_eq(verb, "wissen") { + if str_eq(tense, "present") { + return de_irregular_present("wissen", person, number) + } + if str_eq(number, "sg") { + if str_eq(person, "1") { return "wusste" } + if str_eq(person, "2") { return "wusstest" } + return "wusste" + } + if str_eq(person, "1") { return "wussten" } + if str_eq(person, "2") { return "wusstet" } + return "wussten" + } + + // Modals: können, müssen, wollen — past uses weak -te suffix on preterite stem + if str_eq(verb, "können") { + if str_eq(tense, "present") { + return de_irregular_present("können", person, number) + } + return de_conjugate_weak("konnt", "past", person, number) + } + if str_eq(verb, "müssen") { + if str_eq(tense, "present") { + return de_irregular_present("müssen", person, number) + } + return de_conjugate_weak("musst", "past", person, number) + } + if str_eq(verb, "wollen") { + if str_eq(tense, "present") { + return de_irregular_present("wollen", person, number) + } + return de_conjugate_weak("wollt", "past", person, number) + } + + // Present: try irregular table first + if str_eq(tense, "present") { + let irr: String = de_irregular_present(verb, person, number) + if !str_eq(irr, "") { + return irr + } + // Fall through to weak conjugation using infinitive stem (drop -en) + let stem: String = str_drop_last(verb, 2) + return de_conjugate_weak(stem, "present", person, number) + } + + // Past: try strong Ablaut first + if str_eq(tense, "past") { + let ps: String = de_strong_past_stem(verb) + if !str_eq(ps, "") { + // Strong past endings: 1sg/3sg bare, 2sg+st, 1pl/3pl+en, 2pl+t + if str_eq(number, "sg") { + if str_eq(person, "1") { return ps } + if str_eq(person, "2") { return ps + "st" } + return ps + } + if str_eq(person, "1") { return ps + "en" } + if str_eq(person, "2") { return ps + "t" } + return ps + "en" + } + // Weak past + let stem: String = str_drop_last(verb, 2) + return de_conjugate_weak(stem, "past", person, number) + } + + // Fallback: return infinitive + return verb +} diff --git a/elp/src/morphology-de.elh b/elp/src/morphology-de.elh new file mode 100644 index 0000000..23ce0d6 --- /dev/null +++ b/elp/src/morphology-de.elh @@ -0,0 +1,13 @@ +// auto-generated by elc --emit-header - do not edit +extern fn de_article_def(gender: String, gram_case: String, number: String) -> String +extern fn de_article_indef(gender: String, gram_case: String, number: String) -> String +extern fn de_article(gender: String, gram_case: String, number: String, definite: String) -> String +extern fn de_adj_ending(gender: String, gram_case: String, number: String, article_type: String) -> String +extern fn de_noun_plural(noun: String, gender: String) -> String +extern fn de_case_ending(noun: String, gender: String, gram_case: String, number: String) -> String +extern fn de_conjugate_weak(stem: String, tense: String, person: String, number: String) -> String +extern fn de_irregular_present(verb: String, person: String, number: String) -> String +extern fn de_strong_past_stem(verb: String) -> String +extern fn de_norm_number(number: String) -> String +extern fn de_norm_person(person: String) -> String +extern fn de_conjugate(verb: String, tense: String, person: String, number: String) -> String diff --git a/elp/src/morphology-egy.el b/elp/src/morphology-egy.el new file mode 100644 index 0000000..c1bfef7 --- /dev/null +++ b/elp/src/morphology-egy.el @@ -0,0 +1,570 @@ +// morphology-egy.el - Ancient Egyptian (Middle Egyptian) morphology for the NLG engine. +// +// Implements Middle Egyptian verb conjugation (sdm=f / sdm.n=f paradigm), +// noun number marking, suffix pronouns, and noun phrase assembly. +// Designed as a companion to morphology.el; called when language code is "egy". +// +// Language profile: code=egy, name=Ancient Egyptian, morph_type=agglutinative, +// word_order=SVO (Middle Egyptian nominal sentences), question_strategy=particle, +// script=hieroglyphic (transliterated here as ASCII), family=afro-asiatic-egyptian. +// +// Script note: Classical transliteration uses special characters (ꜣ ꜥ ḥ ḫ ẖ š q ṯ ḏ). +// This engine uses a safe ASCII mapping: +// A = ꜣ (aleph/glottal stop) a = ꜥ (ayin) +// H = ḥ (h with dot) x = ḫ (velar fricative) +// X = ẖ (emphatic h) sh = š (sh sound) +// q = q (emphatic k) T = ṯ (tj sound) +// D = ḏ (dj sound) +// This mapping keeps all string literals ASCII-safe for the El runtime. +// +// Grammatical notes (Middle Egyptian, ca. 2000–1300 BCE): +// - Aspectual system: Imperfective (sdm=f), Perfective (sdm.n=f), Prospective +// - "tense" labels used here: "present" (imperfective), "past" (perfective), +// "future" (prospective/sdm.xr=f), "infinitive" +// - Two grammatical genders: masculine (unmarked) and feminine (suffix -t) +// - Number: singular (unmarked), dual (-wy masc / -ty fem), plural (-w masc / -wt fem) +// - No case endings — syntactic role expressed by word order and prepositions +// - No definite/indefinite article in Middle Egyptian (Late Egyptian introduced pꜣ/tꜣ/nꜣ) +// - Zero copula: adjectival predicates need no verb "to be" ("nfr sw" = "he is good") +// - Suffix pronouns attach directly to the verb stem with = (e.g. sdm=f "he hears") +// +// Persons/numbers covered (suffix pronoun paradigm): +// person: "first" | "second" | "third" +// gender: "m" | "f" (relevant for 2sg, 3sg; 1sg and plurals often unmarked) +// number: "singular" | "dual" | "plural" +// +// Verbs covered (ASCII transliteration → gloss): +// wnn — to be/exist (copular auxiliary) +// rdi / di — to give +// mAA — to see +// Dd — to say +// Sm — to go +// iri — to do / make +// sdm — to hear (the paradigm verb for the sdm=f construction) +// +// Canonical English → Egyptian mapping: +// "be" → wnn / zero copula "give" → rdi +// "see" → mAA "say" → Dd +// "go" → Sm "do" → iri +// "make" → iri "hear" → sdm +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ────────────────────────────────────────────────────────────── + +fn egy_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn egy_str_len(s: String) -> Int { + return str_len(s) +} + +fn egy_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn egy_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { return "" } + return str_slice(s, n - 1, n) +} + +// ── Person/number slot ────────────────────────────────────────────────────────── +// +// Maps person × gender × number to a 0-based index used in paradigm tables. +// Egyptian suffix pronouns distinguish gender in 2nd and 3rd person singular. +// +// Slot layout: +// 0 = 1sg (=i) +// 1 = 2sg masc (=k) +// 2 = 2sg fem (=T) +// 3 = 3sg masc (=f) +// 4 = 3sg fem (=s) +// 5 = 1pl (=n) +// 6 = 2pl (=Tn) +// 7 = 3pl (=sn) +// 8 = 1du / 2du / 3du (=sny — simplified; dual pronouns are rare in sources) +// +// Dual falls through to slot 8 (a single dual pronoun slot for all persons). + +fn egy_slot(person: String, number: String) -> Int { + if str_eq(number, "dual") { return 8 } + if str_eq(person, "first") { + if str_eq(number, "plural") { return 5 } + return 0 + } + if str_eq(person, "second") { + if str_eq(number, "plural") { return 6 } + return 1 + } + // third person + if str_eq(number, "plural") { return 7 } + return 3 +} + +// egy_slot_with_gender: slot variant that factors in gender for 2sg and 3sg. + +fn egy_slot_with_gender(person: String, gender: String, number: String) -> Int { + if str_eq(number, "dual") { return 8 } + if str_eq(person, "first") { + if str_eq(number, "plural") { return 5 } + return 0 + } + if str_eq(person, "second") { + if str_eq(number, "plural") { return 6 } + if str_eq(gender, "f") { return 2 } + return 1 + } + // third person + if str_eq(number, "plural") { return 7 } + if str_eq(gender, "f") { return 4 } + return 3 +} + +// ── Suffix pronouns ───────────────────────────────────────────────────────────── +// +// Egyptian suffix pronouns attach to verbs, nouns, and prepositions. +// Written with = before the pronoun in transliteration (e.g. =f = "his / he"). +// +// Standard Middle Egyptian paradigm: +// 1sg: =i ("I / me / my") +// 2sg m: =k ("you / your" masc) +// 2sg f: =T ("you / your" fem, ṯ in classical) +// 3sg m: =f ("he / him / his") +// 3sg f: =s ("she / her") +// 1pl: =n ("we / us / our") +// 2pl: =Tn ("you all / your" plural) +// 3pl: =sn ("they / them / their") +// dual: =sny (simplified dual — rare in Middle Egyptian texts) + +fn egy_conjugate_pronoun(person: String, number: String) -> String { + let slot: Int = egy_slot(person, number) + if slot == 0 { return "=i" } + if slot == 1 { return "=k" } + if slot == 5 { return "=n" } + if slot == 6 { return "=Tn" } + if slot == 7 { return "=sn" } + if slot == 8 { return "=sny" } + // slots 2–4 need gender; default to masc for slot 3 + return "=f" +} + +fn egy_suffix_pronoun(slot: Int) -> String { + if slot == 0 { return "=i" } + if slot == 1 { return "=k" } + if slot == 2 { return "=T" } + if slot == 3 { return "=f" } + if slot == 4 { return "=s" } + if slot == 5 { return "=n" } + if slot == 6 { return "=Tn" } + if slot == 7 { return "=sn" } + // dual (slot 8) + return "=sny" +} + +// ── Copula detection ──────────────────────────────────────────────────────────── +// +// In Middle Egyptian the verb "to be" as predicate is often omitted in the +// present (zero copula for adjective predicates). The auxiliary wnn is used +// for existence / substantive "to be" and in subordinate clauses. +// Canonical English label "be" maps to zero copula in the present. + +fn egy_is_copula(verb: String) -> Bool { + if str_eq(verb, "wnn") { return true } + if str_eq(verb, "be") { return true } + return false +} + +// ── Copula conjugation ────────────────────────────────────────────────────────── +// +// Present ("imperfective"): zero copula for adjectival predicate — return "". +// The auxiliary iw...wnn is used in certain syntactic environments but the +// bare zero is the canonical Middle Egyptian form. +// Past ("perfective"): wnn.n (with perfective suffix .n) +// Future ("prospective"): wnn.xr (prospective form, simplified) + +fn egy_conjugate_copula(tense: String, slot: Int) -> String { + if str_eq(tense, "present") { return "" } + if str_eq(tense, "past") { + return "wnn.n" + egy_suffix_pronoun(slot) + } + if str_eq(tense, "future") { + return "wnn.xr" + egy_suffix_pronoun(slot) + } + if str_eq(tense, "infinitive") { return "wnn" } + // Default: zero copula + return "" +} + +// ── Irregular verb: rdi / di (to give) ───────────────────────────────────────── +// +// rdi is the full form; di is the common abbreviated written form. +// Imperfective (present): di=f (3sg m), with full pronoun for other persons. +// Perfective (past): di.n=f +// Prospective (future): di.xr=f +// Infinitive: rdi + +fn egy_rdi_present(slot: Int) -> String { + return "di" + egy_suffix_pronoun(slot) +} + +fn egy_rdi_past(slot: Int) -> String { + return "di.n" + egy_suffix_pronoun(slot) +} + +fn egy_rdi_future(slot: Int) -> String { + return "di.xr" + egy_suffix_pronoun(slot) +} + +// ── Irregular verb: mAA (to see) ─────────────────────────────────────────────── +// +// mAA is a geminated root (m-AA). +// Present: mAA=f; Past: mAA.n=f; Future: mAA.xr=f + +fn egy_mAA_present(slot: Int) -> String { + return "mAA" + egy_suffix_pronoun(slot) +} + +fn egy_mAA_past(slot: Int) -> String { + return "mAA.n" + egy_suffix_pronoun(slot) +} + +fn egy_mAA_future(slot: Int) -> String { + return "mAA.xr" + egy_suffix_pronoun(slot) +} + +// ── Irregular verb: Dd (to say) ───────────────────────────────────────────────── +// +// Present: Dd=f; Past: Dd.n=f; Future: Dd.xr=f +// Infinitive: Dd + +fn egy_Dd_present(slot: Int) -> String { + return "Dd" + egy_suffix_pronoun(slot) +} + +fn egy_Dd_past(slot: Int) -> String { + return "Dd.n" + egy_suffix_pronoun(slot) +} + +fn egy_Dd_future(slot: Int) -> String { + return "Dd.xr" + egy_suffix_pronoun(slot) +} + +// ── Irregular verb: Sm (to go) ───────────────────────────────────────────────── +// +// Present: Sm=f; Past: Sm.n=f; Future: Sm.xr=f +// (Note: the verb Smt "to go" appears in texts; Sm is the most common short form.) + +fn egy_Sm_present(slot: Int) -> String { + return "Sm" + egy_suffix_pronoun(slot) +} + +fn egy_Sm_past(slot: Int) -> String { + return "Sm.n" + egy_suffix_pronoun(slot) +} + +fn egy_Sm_future(slot: Int) -> String { + return "Sm.xr" + egy_suffix_pronoun(slot) +} + +// ── Irregular verb: iri (to do / make) ───────────────────────────────────────── +// +// iri has a contracted 3-radical stem ir- before pronouns. +// Present: ir=f; Past: ir.n=f; Future: ir.xr=f +// Infinitive: iri + +fn egy_iri_present(slot: Int) -> String { + return "ir" + egy_suffix_pronoun(slot) +} + +fn egy_iri_past(slot: Int) -> String { + return "ir.n" + egy_suffix_pronoun(slot) +} + +fn egy_iri_future(slot: Int) -> String { + return "ir.xr" + egy_suffix_pronoun(slot) +} + +// ── Regular verb: sdm (to hear) ──────────────────────────────────────────────── +// +// sdm (to hear) is the paradigm verb used in grammar textbooks to illustrate +// all Egyptian verb forms. The sdm=f construction names the imperfective suffix +// verb pattern itself. +// Present: sdm=f; Past: sdm.n=f; Future: sdm.xr=f +// Infinitive: sdm + +fn egy_sdm_present(slot: Int) -> String { + return "sdm" + egy_suffix_pronoun(slot) +} + +fn egy_sdm_past(slot: Int) -> String { + return "sdm.n" + egy_suffix_pronoun(slot) +} + +fn egy_sdm_future(slot: Int) -> String { + return "sdm.xr" + egy_suffix_pronoun(slot) +} + +// ── Known-verb dispatcher ─────────────────────────────────────────────────────── +// +// Returns the inflected form for a known verb, or "" if unknown. +// Accepts both canonical English labels and Egyptian transliterations. + +fn egy_known_verb(verb: String, tense: String, slot: Int) -> String { + // ── rdi / di — to give ─────────────────────────────────────────────────────── + if str_eq(verb, "rdi") { + if str_eq(tense, "present") { return egy_rdi_present(slot) } + if str_eq(tense, "past") { return egy_rdi_past(slot) } + if str_eq(tense, "future") { return egy_rdi_future(slot) } + if str_eq(tense, "infinitive") { return "rdi" } + return egy_rdi_present(slot) + } + if str_eq(verb, "di") { + if str_eq(tense, "present") { return egy_rdi_present(slot) } + if str_eq(tense, "past") { return egy_rdi_past(slot) } + if str_eq(tense, "future") { return egy_rdi_future(slot) } + if str_eq(tense, "infinitive") { return "rdi" } + return egy_rdi_present(slot) + } + if str_eq(verb, "give") { + if str_eq(tense, "present") { return egy_rdi_present(slot) } + if str_eq(tense, "past") { return egy_rdi_past(slot) } + if str_eq(tense, "future") { return egy_rdi_future(slot) } + if str_eq(tense, "infinitive") { return "rdi" } + return egy_rdi_present(slot) + } + + // ── mAA — to see ───────────────────────────────────────────────────────────── + if str_eq(verb, "mAA") { + if str_eq(tense, "present") { return egy_mAA_present(slot) } + if str_eq(tense, "past") { return egy_mAA_past(slot) } + if str_eq(tense, "future") { return egy_mAA_future(slot) } + if str_eq(tense, "infinitive") { return "mAA" } + return egy_mAA_present(slot) + } + if str_eq(verb, "see") { + if str_eq(tense, "present") { return egy_mAA_present(slot) } + if str_eq(tense, "past") { return egy_mAA_past(slot) } + if str_eq(tense, "future") { return egy_mAA_future(slot) } + if str_eq(tense, "infinitive") { return "mAA" } + return egy_mAA_present(slot) + } + + // ── Dd — to say ────────────────────────────────────────────────────────────── + if str_eq(verb, "Dd") { + if str_eq(tense, "present") { return egy_Dd_present(slot) } + if str_eq(tense, "past") { return egy_Dd_past(slot) } + if str_eq(tense, "future") { return egy_Dd_future(slot) } + if str_eq(tense, "infinitive") { return "Dd" } + return egy_Dd_present(slot) + } + if str_eq(verb, "say") { + if str_eq(tense, "present") { return egy_Dd_present(slot) } + if str_eq(tense, "past") { return egy_Dd_past(slot) } + if str_eq(tense, "future") { return egy_Dd_future(slot) } + if str_eq(tense, "infinitive") { return "Dd" } + return egy_Dd_present(slot) + } + + // ── Sm — to go ─────────────────────────────────────────────────────────────── + if str_eq(verb, "Sm") { + if str_eq(tense, "present") { return egy_Sm_present(slot) } + if str_eq(tense, "past") { return egy_Sm_past(slot) } + if str_eq(tense, "future") { return egy_Sm_future(slot) } + if str_eq(tense, "infinitive") { return "Sm" } + return egy_Sm_present(slot) + } + if str_eq(verb, "go") { + if str_eq(tense, "present") { return egy_Sm_present(slot) } + if str_eq(tense, "past") { return egy_Sm_past(slot) } + if str_eq(tense, "future") { return egy_Sm_future(slot) } + if str_eq(tense, "infinitive") { return "Sm" } + return egy_Sm_present(slot) + } + + // ── iri — to do / make ─────────────────────────────────────────────────────── + if str_eq(verb, "iri") { + if str_eq(tense, "present") { return egy_iri_present(slot) } + if str_eq(tense, "past") { return egy_iri_past(slot) } + if str_eq(tense, "future") { return egy_iri_future(slot) } + if str_eq(tense, "infinitive") { return "iri" } + return egy_iri_present(slot) + } + if str_eq(verb, "do") { + if str_eq(tense, "present") { return egy_iri_present(slot) } + if str_eq(tense, "past") { return egy_iri_past(slot) } + if str_eq(tense, "future") { return egy_iri_future(slot) } + if str_eq(tense, "infinitive") { return "iri" } + return egy_iri_present(slot) + } + if str_eq(verb, "make") { + if str_eq(tense, "present") { return egy_iri_present(slot) } + if str_eq(tense, "past") { return egy_iri_past(slot) } + if str_eq(tense, "future") { return egy_iri_future(slot) } + if str_eq(tense, "infinitive") { return "iri" } + return egy_iri_present(slot) + } + + // ── sdm — to hear ──────────────────────────────────────────────────────────── + if str_eq(verb, "sdm") { + if str_eq(tense, "present") { return egy_sdm_present(slot) } + if str_eq(tense, "past") { return egy_sdm_past(slot) } + if str_eq(tense, "future") { return egy_sdm_future(slot) } + if str_eq(tense, "infinitive") { return "sdm" } + return egy_sdm_present(slot) + } + if str_eq(verb, "hear") { + if str_eq(tense, "present") { return egy_sdm_present(slot) } + if str_eq(tense, "past") { return egy_sdm_past(slot) } + if str_eq(tense, "future") { return egy_sdm_future(slot) } + if str_eq(tense, "infinitive") { return "sdm" } + return egy_sdm_present(slot) + } + + // Verb not in table + return "" +} + +// ── Regular verb conjugation ──────────────────────────────────────────────────── +// +// For verbs not in the explicit table, apply the productive suffix-verb pattern: +// Present (imperfective sdm=f): stem + pronoun suffix +// Past (perfective sdm.n=f): stem + ".n" + pronoun suffix +// Future (prospective sdm.xr=f): stem + ".xr" + pronoun suffix +// Infinitive: stem unchanged +// +// This covers the vast majority of strong (sound) verb roots. + +fn egy_regular_present(stem: String, slot: Int) -> String { + return stem + egy_suffix_pronoun(slot) +} + +fn egy_regular_past(stem: String, slot: Int) -> String { + return stem + ".n" + egy_suffix_pronoun(slot) +} + +fn egy_regular_future(stem: String, slot: Int) -> String { + return stem + ".xr" + egy_suffix_pronoun(slot) +} + +// ── egy_conjugate: main conjugation entry point ───────────────────────────────── +// +// verb: Egyptian verb (ASCII transliteration) or English canonical label +// tense: "present" | "past" | "future" | "infinitive" +// person: "first" | "second" | "third" +// number: "singular" | "dual" | "plural" +// +// Returns: +// - "" for present copula (zero copula — caller omits the verb) +// - inflected form (stem + .n + suffix, etc.) for all other cases +// - verb + regular suffix for unknown verbs (productive fallback) + +fn egy_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let slot: Int = egy_slot(person, number) + + // Handle copula (wnn / "be") + if egy_is_copula(verb) { + return egy_conjugate_copula(tense, slot) + } + + // Try the known-verb table + let known: String = egy_known_verb(verb, tense, slot) + if !str_eq(known, "") { + return known + } + + // Infinitive: return unchanged + if str_eq(tense, "infinitive") { return verb } + + // Regular verb: apply productive sdm=f / sdm.n=f pattern + if str_eq(tense, "present") { return egy_regular_present(verb, slot) } + if str_eq(tense, "past") { return egy_regular_past(verb, slot) } + if str_eq(tense, "future") { return egy_regular_future(verb, slot) } + + // Unknown tense: return verb unchanged as safe fallback + return verb +} + +// ── Noun number marking ───────────────────────────────────────────────────────── +// +// Middle Egyptian nouns are invariant for case — syntactic role is expressed by +// word order and prepositions, not noun endings. Number is marked by suffix: +// +// Singular: base form (no suffix) +// Dual: masc + wy / fem + ty (wy and ty in ASCII transliteration) +// Plural: masc + w / fem + wt +// +// Many common nouns have suppletive or irregular plurals (recorded in the +// vocabulary layer). This function implements the productive regular pattern. +// +// gram_case: accepted for API symmetry but has no effect (Egyptian is caseless). + +fn egy_decline(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { return noun } + if str_eq(number, "dual") { + // Feminine dual: if noun ends in t (feminine marker), replace with ty + if egy_str_ends(noun, "t") { + let stem: String = egy_drop(noun, 1) + return stem + "ty" + } + return noun + "wy" + } + // Plural + if egy_str_ends(noun, "t") { + // Feminine noun: add wt + return noun + "wt" + } + // Masculine noun: add w + return noun + "w" +} + +// ── Feminine derivation ───────────────────────────────────────────────────────── +// +// egy_fem: derive the feminine form of a noun or adjective by appending -t. +// +// In Middle Egyptian, the feminine gender marker is the suffix -t (written with +// the bread-loaf hieroglyph, Gardiner X1). If the base already ends in -t the +// form is returned unchanged to avoid double-suffixing. + +fn egy_fem(noun: String) -> String { + if egy_str_ends(noun, "t") { return noun } + return noun + "t" +} + +// ── Noun phrase assembly ──────────────────────────────────────────────────────── +// +// egy_noun_phrase: return the surface form of a noun phrase. +// +// noun: base noun (ASCII transliteration) +// gram_case: passed for API symmetry; has no effect (Egyptian is caseless) +// number: "singular" | "dual" | "plural" +// definite: "true" | "false" — Middle Egyptian has no article; parameter accepted +// for API symmetry. Late Egyptian pꜣ/tꜣ/nꜣ articles are not implemented +// here (they would require knowing the gender of each noun). +// +// Returns the noun in its correct number form. + +fn egy_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return egy_decline(noun, gram_case, number) +} + +// ── Canonical verb mapping ────────────────────────────────────────────────────── +// +// egy_map_canonical: map cross-lingual English canonical verb labels to their +// Middle Egyptian equivalents before dispatching to egy_conjugate. + +fn egy_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "wnn" } + if str_eq(verb, "give") { return "rdi" } + if str_eq(verb, "see") { return "mAA" } + if str_eq(verb, "say") { return "Dd" } + if str_eq(verb, "go") { return "Sm" } + if str_eq(verb, "do") { return "iri" } + if str_eq(verb, "make") { return "iri" } + if str_eq(verb, "hear") { return "sdm" } + // Unknown: return as-is; egy_conjugate will apply the regular pattern + return verb +} diff --git a/elp/src/morphology-egy.elh b/elp/src/morphology-egy.elh new file mode 100644 index 0000000..22cf7c2 --- /dev/null +++ b/elp/src/morphology-egy.elh @@ -0,0 +1,38 @@ +// auto-generated by elc --emit-header - do not edit +extern fn egy_str_ends(s: String, suf: String) -> Bool +extern fn egy_str_len(s: String) -> Int +extern fn egy_drop(s: String, n: Int) -> String +extern fn egy_last_char(s: String) -> String +extern fn egy_slot(person: String, number: String) -> Int +extern fn egy_slot_with_gender(person: String, gender: String, number: String) -> Int +extern fn egy_conjugate_pronoun(person: String, number: String) -> String +extern fn egy_suffix_pronoun(slot: Int) -> String +extern fn egy_is_copula(verb: String) -> Bool +extern fn egy_conjugate_copula(tense: String, slot: Int) -> String +extern fn egy_rdi_present(slot: Int) -> String +extern fn egy_rdi_past(slot: Int) -> String +extern fn egy_rdi_future(slot: Int) -> String +extern fn egy_mAA_present(slot: Int) -> String +extern fn egy_mAA_past(slot: Int) -> String +extern fn egy_mAA_future(slot: Int) -> String +extern fn egy_Dd_present(slot: Int) -> String +extern fn egy_Dd_past(slot: Int) -> String +extern fn egy_Dd_future(slot: Int) -> String +extern fn egy_Sm_present(slot: Int) -> String +extern fn egy_Sm_past(slot: Int) -> String +extern fn egy_Sm_future(slot: Int) -> String +extern fn egy_iri_present(slot: Int) -> String +extern fn egy_iri_past(slot: Int) -> String +extern fn egy_iri_future(slot: Int) -> String +extern fn egy_sdm_present(slot: Int) -> String +extern fn egy_sdm_past(slot: Int) -> String +extern fn egy_sdm_future(slot: Int) -> String +extern fn egy_known_verb(verb: String, tense: String, slot: Int) -> String +extern fn egy_regular_present(stem: String, slot: Int) -> String +extern fn egy_regular_past(stem: String, slot: Int) -> String +extern fn egy_regular_future(stem: String, slot: Int) -> String +extern fn egy_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn egy_decline(noun: String, gram_case: String, number: String) -> String +extern fn egy_fem(noun: String) -> String +extern fn egy_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String +extern fn egy_map_canonical(verb: String) -> String diff --git a/elp/src/morphology-enm.el b/elp/src/morphology-enm.el new file mode 100644 index 0000000..e27f9b9 --- /dev/null +++ b/elp/src/morphology-enm.el @@ -0,0 +1,450 @@ +// morphology-enm.el - Middle English morphology for the NLG engine. +// +// Implements Middle English verb conjugation and noun declension for the +// ca. 1100-1500 CE period (Chaucerian English). Designed as a companion to +// morphology.el and called by the engine when the language profile code is "enm". +// +// Language profile: code=enm, name=Middle English, morph_type=analytic, +// word_order=SVO, question_strategy=inversion, script=latin, family=germanic. +// +// Verb conjugation covered: +// Tenses: present, past +// Persons: first/second/third x singular/plural (slots 0-5) +// Classes: weak (productive: -est 2sg, -eth 3sg, -en pl; past: -ede/-de/-te) +// Irregulars: been/ben (be), han/haven (have), goon (go), seen (see), +// seyn/seyen (say), comen (come), maken (make) +// Canonical map: "be" -> "been" +// +// Noun declension covered: +// Middle English has largely lost case endings. This module handles: +// - nominative (base form) +// - genitive singular (+es) +// - plural (+es default; irregular forms for common words) +// Common irregulars: man->men, child->children, ox->oxen, foot->feet, +// tooth->teeth +// +// Article formation: +// Definite: "the" prepended +// Indefinite: "a" or "an" based on the first letter of the noun phrase +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn enm_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn enm_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn enm_first_char(s: String) -> String { + if str_len(s) == 0 { return "" } + return str_slice(s, 0, 1) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based paradigm slot. +// 0 = 1st singular (I / ich) +// 1 = 2nd singular (thou) +// 2 = 3rd singular (he / she / it) +// 3 = 1st plural (we) +// 4 = 2nd plural (ye) +// 5 = 3rd plural (they) + +fn enm_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Irregular verb tables ────────────────────────────────────────────────────── +// +// Each irregular verb has a present and past paradigm of six forms (slots 0-5). +// Forms are in Middle English spelling, close to Chaucerian usage. + +fn enm_been_present(slot: Int) -> String { + if slot == 0 { return "am" } + if slot == 1 { return "art" } + if slot == 2 { return "is" } + if slot == 3 { return "aren" } + if slot == 4 { return "been" } + return "been" +} + +fn enm_been_past(slot: Int) -> String { + if slot == 0 { return "was" } + if slot == 1 { return "were" } + if slot == 2 { return "was" } + if slot == 3 { return "were" } + if slot == 4 { return "were" } + return "were" +} + +fn enm_haven_present(slot: Int) -> String { + if slot == 0 { return "have" } + if slot == 1 { return "hast" } + if slot == 2 { return "hath" } + if slot == 3 { return "have" } + if slot == 4 { return "have" } + return "have" +} + +fn enm_haven_past(slot: Int) -> String { + if slot == 0 { return "hadde" } + if slot == 1 { return "haddest" } + if slot == 2 { return "hadde" } + if slot == 3 { return "hadden" } + if slot == 4 { return "hadden" } + return "hadden" +} + +fn enm_goon_present(slot: Int) -> String { + if slot == 0 { return "go" } + if slot == 1 { return "goost" } + if slot == 2 { return "gooth" } + if slot == 3 { return "goon" } + if slot == 4 { return "goon" } + return "goon" +} + +fn enm_goon_past(slot: Int) -> String { + if slot == 0 { return "wente" } + if slot == 1 { return "wentest" } + if slot == 2 { return "wente" } + if slot == 3 { return "wenten" } + if slot == 4 { return "wenten" } + return "wenten" +} + +fn enm_seen_present(slot: Int) -> String { + if slot == 0 { return "see" } + if slot == 1 { return "seest" } + if slot == 2 { return "seeth" } + if slot == 3 { return "seen" } + if slot == 4 { return "seen" } + return "seen" +} + +fn enm_seen_past(slot: Int) -> String { + if slot == 0 { return "saugh" } + if slot == 1 { return "sawest" } + if slot == 2 { return "saugh" } + if slot == 3 { return "sawen" } + if slot == 4 { return "sawen" } + return "sawen" +} + +fn enm_seyen_present(slot: Int) -> String { + if slot == 0 { return "seye" } + if slot == 1 { return "seyst" } + if slot == 2 { return "seith" } + if slot == 3 { return "seyen" } + if slot == 4 { return "seyen" } + return "seyen" +} + +fn enm_seyen_past(slot: Int) -> String { + if slot == 0 { return "seide" } + if slot == 1 { return "seidest" } + if slot == 2 { return "seide" } + if slot == 3 { return "seiden" } + if slot == 4 { return "seiden" } + return "seiden" +} + +fn enm_comen_present(slot: Int) -> String { + if slot == 0 { return "come" } + if slot == 1 { return "comest" } + if slot == 2 { return "cometh" } + if slot == 3 { return "comen" } + if slot == 4 { return "comen" } + return "comen" +} + +fn enm_comen_past(slot: Int) -> String { + if slot == 0 { return "cam" } + if slot == 1 { return "come" } + if slot == 2 { return "cam" } + if slot == 3 { return "comen" } + if slot == 4 { return "comen" } + return "comen" +} + +fn enm_maken_present(slot: Int) -> String { + if slot == 0 { return "make" } + if slot == 1 { return "makest" } + if slot == 2 { return "maketh" } + if slot == 3 { return "maken" } + if slot == 4 { return "maken" } + return "maken" +} + +fn enm_maken_past(slot: Int) -> String { + if slot == 0 { return "made" } + if slot == 1 { return "madest" } + if slot == 2 { return "made" } + if slot == 3 { return "maden" } + if slot == 4 { return "maden" } + return "maden" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Maps English semantic labels to Middle English infinitives so the semantic +// layer can request forms without knowing the target-language lexeme. + +fn enm_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "been" } + if str_eq(verb, "have") { return "haven" } + if str_eq(verb, "go") { return "goon" } + if str_eq(verb, "see") { return "seen" } + if str_eq(verb, "say") { return "seyen" } + if str_eq(verb, "come") { return "comen" } + if str_eq(verb, "make") { return "maken" } + return verb +} + +// ── Weak verb stem derivation ────────────────────────────────────────────────── +// +// For weak verbs the present stem is the infinitive minus any trailing -en or -e. +// Past tense suffix: most common is -ede (after unvoiced consonants often -te, +// after voiced -de). This module uses -ede as the default productive past suffix. +// +// Present: +// slot 0: stem (I love) +// slot 1: stem + est (thou lovest) +// slot 2: stem + eth (he loveth) +// slot 3: stem + en (we loven) +// slot 4: stem + en (ye loven) +// slot 5: stem + en (they loven) +// +// Past: +// slot 0: stem + ede (I lovede) +// slot 1: stem + edest (thou lovedest) +// slot 2: stem + ede (he lovede) +// slot 3..5: stem + eden (we loveden) + +fn enm_weak_stem(verb: String) -> String { + if enm_str_ends(verb, "en") { return enm_drop(verb, 2) } + if enm_str_ends(verb, "e") { return enm_drop(verb, 1) } + return verb +} + +fn enm_weak_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "e" } + if slot == 1 { return stem + "est" } + if slot == 2 { return stem + "eth" } + if slot == 3 { return stem + "en" } + if slot == 4 { return stem + "en" } + return stem + "en" +} + +fn enm_weak_past(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "ede" } + if slot == 1 { return stem + "edest" } + if slot == 2 { return stem + "ede" } + if slot == 3 { return stem + "eden" } + if slot == 4 { return stem + "eden" } + return stem + "eden" +} + +// ── enm_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Middle English infinitive (e.g. "loven", "been") or English canonical +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Unknown tenses fall back to the infinitive rather +// than crashing. + +fn enm_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = enm_map_canonical(verb) + let slot: Int = enm_slot(person, number) + + // ── Irregulars ──────────────────────────────────────────────────────────── + + if str_eq(v, "been") { + if str_eq(tense, "present") { return enm_been_present(slot) } + if str_eq(tense, "past") { return enm_been_past(slot) } + return v + } + + if str_eq(v, "haven") { + if str_eq(tense, "present") { return enm_haven_present(slot) } + if str_eq(tense, "past") { return enm_haven_past(slot) } + return v + } + + if str_eq(v, "goon") { + if str_eq(tense, "present") { return enm_goon_present(slot) } + if str_eq(tense, "past") { return enm_goon_past(slot) } + return v + } + + if str_eq(v, "seen") { + if str_eq(tense, "present") { return enm_seen_present(slot) } + if str_eq(tense, "past") { return enm_seen_past(slot) } + return v + } + + if str_eq(v, "seyen") { + if str_eq(tense, "present") { return enm_seyen_present(slot) } + if str_eq(tense, "past") { return enm_seyen_past(slot) } + return v + } + + if str_eq(v, "comen") { + if str_eq(tense, "present") { return enm_comen_present(slot) } + if str_eq(tense, "past") { return enm_comen_past(slot) } + return v + } + + if str_eq(v, "maken") { + if str_eq(tense, "present") { return enm_maken_present(slot) } + if str_eq(tense, "past") { return enm_maken_past(slot) } + return v + } + + // ── Regular weak verb ───────────────────────────────────────────────────── + + let stem: String = enm_weak_stem(v) + if str_eq(tense, "present") { return enm_weak_present(stem, slot) } + if str_eq(tense, "past") { return enm_weak_past(stem, slot) } + + // Unknown tense: return infinitive unchanged + return v +} + +// ── Noun plural irregulars ───────────────────────────────────────────────────── +// +// Returns the suppletive plural form for nouns with non-productive plurals, or "" +// if the noun takes the regular -es plural. +// +// Covered: man, woman, child, ox, foot, tooth, goose, mouse, louse +// These mirror patterns still visible in Modern English, present in ME too. + +fn enm_irregular_plural(noun: String) -> String { + if str_eq(noun, "man") { return "men" } + if str_eq(noun, "woman") { return "wommen" } + if str_eq(noun, "child") { return "children" } + if str_eq(noun, "ox") { return "oxen" } + if str_eq(noun, "foot") { return "feet" } + if str_eq(noun, "tooth") { return "teeth" } + if str_eq(noun, "goose") { return "gees" } + if str_eq(noun, "mouse") { return "mees" } + if str_eq(noun, "louse") { return "lees" } + return "" +} + +// ── Regular plural formation ─────────────────────────────────────────────────── +// +// Default: append -es. For nouns already ending in -e, append just -s. +// For nouns ending in -s, -x, -sh, -ch: the -es is still appropriate but +// in ME spelling the forms vary; we use the simple +es rule uniformly. + +fn enm_make_plural(noun: String) -> String { + // Check suppletive irregular first + let irreg: String = enm_irregular_plural(noun) + if !str_eq(irreg, "") { return irreg } + + // Noun ends in -e: just add -s to avoid double vowel + if enm_str_ends(noun, "e") { return noun + "s" } + + // Default: +es + return noun + "es" +} + +// ── enm_decline: main declension entry point ────────────────────────────────── +// +// Middle English has largely lost case morphology. This function handles the +// three practically relevant categories: +// nominative — base form (used also for accusative and dative) +// genitive — base form + es (possessive) +// plural — irregular or base + es +// +// noun: base nominative form (e.g. "knyght", "man", "lond") +// gram_case: "nominative" | "accusative" | "dative" | "genitive" | "plural" +// ("accusative" and "dative" return the nominative form) +// number: "singular" | "plural" +// +// Returns the inflected form. + +fn enm_decline(noun: String, gram_case: String, number: String) -> String { + // Plural number overrides gram_case for the plural form + if str_eq(number, "plural") { + return enm_make_plural(noun) + } + + // Singular + if str_eq(gram_case, "genitive") { + // Genitive singular: +es (even after -e: "the kinges court") + return noun + "es" + } + + // Nominative, accusative, dative — all the same in ME + return noun +} + +// ── Article selection ────────────────────────────────────────────────────────── +// +// Middle English uses "the" (definite) and "a" / "an" (indefinite). +// The indefinite article is "an" before a vowel-initial word, "a" otherwise. +// Vowel check is on the first character of the noun phrase word. + +fn enm_is_vowel_initial(s: String) -> Bool { + let c: String = enm_first_char(s) + if str_eq(c, "a") { return true } + if str_eq(c, "e") { return true } + if str_eq(c, "i") { return true } + if str_eq(c, "o") { return true } + if str_eq(c, "u") { return true } + // ME also treated initial h as effectively silent in some dialects; + // we conservatively treat h-initial as consonant-initial. + return false +} + +fn enm_indef_article(noun_phrase: String) -> String { + if enm_is_vowel_initial(noun_phrase) { return "an" } + return "a" +} + +// ── enm_noun_phrase: noun phrase builder ───────────────────────────────────── +// +// Constructs a full noun phrase with the appropriate article. +// +// noun: base nominative singular form (e.g. "knyght", "man", "lond") +// gram_case: "nominative" | "accusative" | "dative" | "genitive" | "plural" +// number: "singular" | "plural" +// definite: "true" | "false" (string comparison) +// +// Returns the complete noun phrase string (article + declined noun). + +fn enm_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let form: String = enm_decline(noun, gram_case, number) + + if str_eq(definite, "true") { + return "the " + form + } + + // Indefinite article only makes sense for singular; plural takes no article + if str_eq(number, "plural") { + return form + } + + let art: String = enm_indef_article(form) + return art + " " + form +} diff --git a/elp/src/morphology-enm.elh b/elp/src/morphology-enm.elh new file mode 100644 index 0000000..c38c522 --- /dev/null +++ b/elp/src/morphology-enm.elh @@ -0,0 +1,30 @@ +// auto-generated by elc --emit-header - do not edit +extern fn enm_str_ends(s: String, suf: String) -> Bool +extern fn enm_drop(s: String, n: Int) -> String +extern fn enm_first_char(s: String) -> String +extern fn enm_slot(person: String, number: String) -> Int +extern fn enm_been_present(slot: Int) -> String +extern fn enm_been_past(slot: Int) -> String +extern fn enm_haven_present(slot: Int) -> String +extern fn enm_haven_past(slot: Int) -> String +extern fn enm_goon_present(slot: Int) -> String +extern fn enm_goon_past(slot: Int) -> String +extern fn enm_seen_present(slot: Int) -> String +extern fn enm_seen_past(slot: Int) -> String +extern fn enm_seyen_present(slot: Int) -> String +extern fn enm_seyen_past(slot: Int) -> String +extern fn enm_comen_present(slot: Int) -> String +extern fn enm_comen_past(slot: Int) -> String +extern fn enm_maken_present(slot: Int) -> String +extern fn enm_maken_past(slot: Int) -> String +extern fn enm_map_canonical(verb: String) -> String +extern fn enm_weak_stem(verb: String) -> String +extern fn enm_weak_present(stem: String, slot: Int) -> String +extern fn enm_weak_past(stem: String, slot: Int) -> String +extern fn enm_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn enm_irregular_plural(noun: String) -> String +extern fn enm_make_plural(noun: String) -> String +extern fn enm_decline(noun: String, gram_case: String, number: String) -> String +extern fn enm_is_vowel_initial(s: String) -> Bool +extern fn enm_indef_article(noun_phrase: String) -> String +extern fn enm_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-es.el b/elp/src/morphology-es.el new file mode 100644 index 0000000..d2762be --- /dev/null +++ b/elp/src/morphology-es.el @@ -0,0 +1,715 @@ +// morphology-es.el - Spanish morphology for the NLG engine. +// +// Implements fusional Spanish verb conjugation, noun pluralization, gender +// inference, and article agreement. Designed as a companion to morphology.el +// and called by the engine when the language profile code is "es". +// +// Verb tenses covered: present, preterite (past), future, imperfect. +// Persons: first/second/third × singular/plural (1s 2s 3s 1p 2p 3p). +// Verb classes: -ar, -er, -ir (regular) + a core set of common irregulars. +// +// Depends on: morphology.el (str_ends, str_drop_last, str_last_char, str_last2, str_last3, is_vowel) + +// ── String helpers (local, matching morphology.el conventions) ──────────────── + +fn es_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn es_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn es_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn es_str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +fn es_str_last3(s: String) -> String { + let n: Int = str_len(s) + if n < 3 { + return s + } + return str_slice(s, n - 3, n) +} + +// ── Verb class detection ────────────────────────────────────────────────────── +// +// Spanish verbs fall into three conjugation classes defined by the infinitive +// ending: -ar, -er, -ir. The stem is the infinitive minus those two characters. + +fn es_verb_class(base: String) -> String { + if es_str_ends(base, "ar") { return "ar" } + if es_str_ends(base, "er") { return "er" } + if es_str_ends(base, "ir") { return "ir" } + return "ar" +} + +fn es_stem(base: String) -> String { + return es_str_drop_last(base, 2) +} + +// ── Person/number index ─────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based slot index used inside paradigm tables. +// 0 = 1s, 1 = 2s, 2 = 3s, 3 = 1p, 4 = 2p, 5 = 3p + +fn es_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Irregular present tense ─────────────────────────────────────────────────── +// +// Returns the fully-inflected form if the verb is irregular in the present +// tense for the given person/number slot, otherwise returns "". +// +// ser: soy, eres, es, somos, sois, son +// estar: estoy, estás, está, estamos, estáis, están +// tener: tengo, tienes, tiene, tenemos, tenéis, tienen +// hacer: hago, haces, hace, hacemos, hacéis, hacen +// ir: voy, vas, va, vamos, vais, van +// ver: veo, ves, ve, vemos, veis, ven +// dar: doy, das, da, damos, dais, dan +// saber: sé, sabes, sabe, sabemos, sabéis, saben +// poder: puedo, puedes, puede, podemos, podéis, pueden +// querer: quiero, quieres, quiere, queremos, queréis, quieren +// venir: vengo, vienes, viene, venimos, venís, vienen +// decir: digo, dices, dice, decimos, decís, dicen +// haber: he, has, ha, hemos, habéis, han + +fn es_irregular_present(verb: String, person: String, number: String) -> String { + let slot: Int = es_slot(person, number) + + if str_eq(verb, "ser") { + if slot == 0 { return "soy" } + if slot == 1 { return "eres" } + if slot == 2 { return "es" } + if slot == 3 { return "somos" } + if slot == 4 { return "sois" } + return "son" + } + + if str_eq(verb, "estar") { + if slot == 0 { return "estoy" } + if slot == 1 { return "estás" } + if slot == 2 { return "está" } + if slot == 3 { return "estamos" } + if slot == 4 { return "estáis" } + return "están" + } + + if str_eq(verb, "tener") { + if slot == 0 { return "tengo" } + if slot == 1 { return "tienes" } + if slot == 2 { return "tiene" } + if slot == 3 { return "tenemos" } + if slot == 4 { return "tenéis" } + return "tienen" + } + + if str_eq(verb, "hacer") { + if slot == 0 { return "hago" } + if slot == 1 { return "haces" } + if slot == 2 { return "hace" } + if slot == 3 { return "hacemos" } + if slot == 4 { return "hacéis" } + return "hacen" + } + + if str_eq(verb, "ir") { + if slot == 0 { return "voy" } + if slot == 1 { return "vas" } + if slot == 2 { return "va" } + if slot == 3 { return "vamos" } + if slot == 4 { return "vais" } + return "van" + } + + if str_eq(verb, "ver") { + if slot == 0 { return "veo" } + if slot == 1 { return "ves" } + if slot == 2 { return "ve" } + if slot == 3 { return "vemos" } + if slot == 4 { return "veis" } + return "ven" + } + + if str_eq(verb, "dar") { + if slot == 0 { return "doy" } + if slot == 1 { return "das" } + if slot == 2 { return "da" } + if slot == 3 { return "damos" } + if slot == 4 { return "dais" } + return "dan" + } + + if str_eq(verb, "saber") { + if slot == 0 { return "sé" } + if slot == 1 { return "sabes" } + if slot == 2 { return "sabe" } + if slot == 3 { return "sabemos" } + if slot == 4 { return "sabéis" } + return "saben" + } + + if str_eq(verb, "poder") { + if slot == 0 { return "puedo" } + if slot == 1 { return "puedes" } + if slot == 2 { return "puede" } + if slot == 3 { return "podemos" } + if slot == 4 { return "podéis" } + return "pueden" + } + + if str_eq(verb, "querer") { + if slot == 0 { return "quiero" } + if slot == 1 { return "quieres" } + if slot == 2 { return "quiere" } + if slot == 3 { return "queremos" } + if slot == 4 { return "queréis" } + return "quieren" + } + + if str_eq(verb, "venir") { + if slot == 0 { return "vengo" } + if slot == 1 { return "vienes" } + if slot == 2 { return "viene" } + if slot == 3 { return "venimos" } + if slot == 4 { return "venís" } + return "vienen" + } + + if str_eq(verb, "decir") { + if slot == 0 { return "digo" } + if slot == 1 { return "dices" } + if slot == 2 { return "dice" } + if slot == 3 { return "decimos" } + if slot == 4 { return "decís" } + return "dicen" + } + + if str_eq(verb, "haber") { + if slot == 0 { return "he" } + if slot == 1 { return "has" } + if slot == 2 { return "ha" } + if slot == 3 { return "hemos" } + if slot == 4 { return "habéis" } + return "han" + } + + return "" +} + +// ── Irregular preterite tense ───────────────────────────────────────────────── +// +// Returns the inflected preterite form for irregular verbs, or "" if regular. +// +// ser/ir (same preterite): fui, fuiste, fue, fuimos, fuisteis, fueron +// tener: tuve, tuviste, tuvo, tuvimos, tuvisteis, tuvieron +// hacer: hice, hiciste, hizo, hicimos, hicisteis, hicieron +// estar: estuve, estuviste, estuvo, estuvimos, estuvisteis, estuvieron +// dar: di, diste, dio, dimos, disteis, dieron +// saber: supe, supiste, supo, supimos, supisteis, supieron +// poder: pude, pudiste, pudo, pudimos, pudisteis, pudieron +// querer: quise, quisiste, quiso, quisimos, quisisteis, quisieron +// venir: vine, viniste, vino, vinimos, vinisteis, vinieron +// decir: dije, dijiste, dijo, dijimos, dijisteis, dijeron +// haber: hube, hubiste, hubo, hubimos, hubisteis, hubieron +// ver: vi, viste, vio, vimos, visteis, vieron + +fn es_irregular_preterite(verb: String, person: String, number: String) -> String { + let slot: Int = es_slot(person, number) + + if str_eq(verb, "ser") { + if slot == 0 { return "fui" } + if slot == 1 { return "fuiste" } + if slot == 2 { return "fue" } + if slot == 3 { return "fuimos" } + if slot == 4 { return "fuisteis" } + return "fueron" + } + + if str_eq(verb, "ir") { + if slot == 0 { return "fui" } + if slot == 1 { return "fuiste" } + if slot == 2 { return "fue" } + if slot == 3 { return "fuimos" } + if slot == 4 { return "fuisteis" } + return "fueron" + } + + if str_eq(verb, "tener") { + if slot == 0 { return "tuve" } + if slot == 1 { return "tuviste" } + if slot == 2 { return "tuvo" } + if slot == 3 { return "tuvimos" } + if slot == 4 { return "tuvisteis" } + return "tuvieron" + } + + if str_eq(verb, "hacer") { + if slot == 0 { return "hice" } + if slot == 1 { return "hiciste" } + if slot == 2 { return "hizo" } + if slot == 3 { return "hicimos" } + if slot == 4 { return "hicisteis" } + return "hicieron" + } + + if str_eq(verb, "estar") { + if slot == 0 { return "estuve" } + if slot == 1 { return "estuviste" } + if slot == 2 { return "estuvo" } + if slot == 3 { return "estuvimos" } + if slot == 4 { return "estuvisteis" } + return "estuvieron" + } + + if str_eq(verb, "dar") { + if slot == 0 { return "di" } + if slot == 1 { return "diste" } + if slot == 2 { return "dio" } + if slot == 3 { return "dimos" } + if slot == 4 { return "disteis" } + return "dieron" + } + + if str_eq(verb, "saber") { + if slot == 0 { return "supe" } + if slot == 1 { return "supiste" } + if slot == 2 { return "supo" } + if slot == 3 { return "supimos" } + if slot == 4 { return "supisteis" } + return "supieron" + } + + if str_eq(verb, "poder") { + if slot == 0 { return "pude" } + if slot == 1 { return "pudiste" } + if slot == 2 { return "pudo" } + if slot == 3 { return "pudimos" } + if slot == 4 { return "pudisteis" } + return "pudieron" + } + + if str_eq(verb, "querer") { + if slot == 0 { return "quise" } + if slot == 1 { return "quisiste" } + if slot == 2 { return "quiso" } + if slot == 3 { return "quisimos" } + if slot == 4 { return "quisisteis" } + return "quisieron" + } + + if str_eq(verb, "venir") { + if slot == 0 { return "vine" } + if slot == 1 { return "viniste" } + if slot == 2 { return "vino" } + if slot == 3 { return "vinimos" } + if slot == 4 { return "vinisteis" } + return "vinieron" + } + + if str_eq(verb, "decir") { + if slot == 0 { return "dije" } + if slot == 1 { return "dijiste" } + if slot == 2 { return "dijo" } + if slot == 3 { return "dijimos" } + if slot == 4 { return "dijisteis" } + return "dijeron" + } + + if str_eq(verb, "haber") { + if slot == 0 { return "hube" } + if slot == 1 { return "hubiste" } + if slot == 2 { return "hubo" } + if slot == 3 { return "hubimos" } + if slot == 4 { return "hubisteis" } + return "hubieron" + } + + if str_eq(verb, "ver") { + if slot == 0 { return "vi" } + if slot == 1 { return "viste" } + if slot == 2 { return "vio" } + if slot == 3 { return "vimos" } + if slot == 4 { return "visteis" } + return "vieron" + } + + return "" +} + +// ── Irregular imperfect tense ───────────────────────────────────────────────── +// +// Only three verbs are truly irregular in the imperfect: +// ser: era, eras, era, éramos, erais, eran +// ir: iba, ibas, iba, íbamos, ibais, iban +// ver: veía, veías, veía, veíamos, veíais, veían + +fn es_irregular_imperfect(verb: String, person: String, number: String) -> String { + let slot: Int = es_slot(person, number) + + if str_eq(verb, "ser") { + if slot == 0 { return "era" } + if slot == 1 { return "eras" } + if slot == 2 { return "era" } + if slot == 3 { return "éramos" } + if slot == 4 { return "erais" } + return "eran" + } + + if str_eq(verb, "ir") { + if slot == 0 { return "iba" } + if slot == 1 { return "ibas" } + if slot == 2 { return "iba" } + if slot == 3 { return "íbamos" } + if slot == 4 { return "ibais" } + return "iban" + } + + if str_eq(verb, "ver") { + if slot == 0 { return "veía" } + if slot == 1 { return "veías" } + if slot == 2 { return "veía" } + if slot == 3 { return "veíamos" } + if slot == 4 { return "veíais" } + return "veían" + } + + return "" +} + +// ── Regular present conjugation ─────────────────────────────────────────────── +// +// -ar: -o, -as, -a, -amos, -áis, -an +// -er: -o, -es, -e, -emos, -éis, -en +// -ir: -o, -es, -e, -imos, -ís, -en + +fn es_regular_present(stem: String, vclass: String, slot: Int) -> String { + if str_eq(vclass, "ar") { + if slot == 0 { return stem + "o" } + if slot == 1 { return stem + "as" } + if slot == 2 { return stem + "a" } + if slot == 3 { return stem + "amos" } + if slot == 4 { return stem + "áis" } + return stem + "an" + } + if str_eq(vclass, "er") { + if slot == 0 { return stem + "o" } + if slot == 1 { return stem + "es" } + if slot == 2 { return stem + "e" } + if slot == 3 { return stem + "emos" } + if slot == 4 { return stem + "éis" } + return stem + "en" + } + // -ir + if slot == 0 { return stem + "o" } + if slot == 1 { return stem + "es" } + if slot == 2 { return stem + "e" } + if slot == 3 { return stem + "imos" } + if slot == 4 { return stem + "ís" } + return stem + "en" +} + +// ── Regular preterite conjugation ───────────────────────────────────────────── +// +// -ar: -é, -aste, -ó, -amos, -asteis, -aron +// -er: -í, -iste, -ió, -imos, -isteis, -ieron +// -ir: -í, -iste, -ió, -imos, -isteis, -ieron + +fn es_regular_preterite(stem: String, vclass: String, slot: Int) -> String { + if str_eq(vclass, "ar") { + if slot == 0 { return stem + "é" } + if slot == 1 { return stem + "aste" } + if slot == 2 { return stem + "ó" } + if slot == 3 { return stem + "amos" } + if slot == 4 { return stem + "asteis" } + return stem + "aron" + } + // -er and -ir share the same preterite endings + if slot == 0 { return stem + "í" } + if slot == 1 { return stem + "iste" } + if slot == 2 { return stem + "ió" } + if slot == 3 { return stem + "imos" } + if slot == 4 { return stem + "isteis" } + return stem + "ieron" +} + +// ── Regular future conjugation ──────────────────────────────────────────────── +// +// Future is formed from the full infinitive + endings (all classes): +// -é, -ás, -á, -emos, -éis, -án +// +// No stem change; the infinitive is the future stem. + +fn es_regular_future(base: String, slot: Int) -> String { + if slot == 0 { return base + "é" } + if slot == 1 { return base + "ás" } + if slot == 2 { return base + "á" } + if slot == 3 { return base + "emos" } + if slot == 4 { return base + "éis" } + return base + "án" +} + +// ── Irregular future stems ──────────────────────────────────────────────────── +// +// Some verbs contract or alter their infinitive for the future stem. +// Returns the irregular future stem, or "" if the verb uses the regular stem. + +fn es_irregular_future_stem(verb: String) -> String { + if str_eq(verb, "tener") { return "tendr" } + if str_eq(verb, "hacer") { return "har" } + if str_eq(verb, "poder") { return "podr" } + if str_eq(verb, "querer") { return "querr" } + if str_eq(verb, "venir") { return "vendr" } + if str_eq(verb, "decir") { return "dir" } + if str_eq(verb, "haber") { return "habr" } + if str_eq(verb, "saber") { return "sabr" } + if str_eq(verb, "salir") { return "saldr" } + if str_eq(verb, "poner") { return "pondr" } + return "" +} + +// ── Regular imperfect conjugation ───────────────────────────────────────────── +// +// -ar: -aba, -abas, -aba, -ábamos, -abais, -aban +// -er/-ir: -ía, -ías, -ía, -íamos, -íais, -ían + +fn es_regular_imperfect(stem: String, vclass: String, slot: Int) -> String { + if str_eq(vclass, "ar") { + if slot == 0 { return stem + "aba" } + if slot == 1 { return stem + "abas" } + if slot == 2 { return stem + "aba" } + if slot == 3 { return stem + "ábamos" } + if slot == 4 { return stem + "abais" } + return stem + "aban" + } + // -er and -ir + if slot == 0 { return stem + "ía" } + if slot == 1 { return stem + "ías" } + if slot == 2 { return stem + "ía" } + if slot == 3 { return stem + "íamos" } + if slot == 4 { return stem + "íais" } + return stem + "ían" +} + +// ── Full conjugation entry point ────────────────────────────────────────────── +// +// es_conjugate: conjugate a Spanish verb. +// +// verb: Spanish infinitive (e.g. "hablar", "ser", "tener") +// tense: "present" | "past" | "future" | "imperfect" +// (note: "past" maps to the preterite/indefinite past) +// person: "first" | "second" | "third" +// number: "singular" | "plural" + +fn es_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let slot: Int = es_slot(person, number) + + if str_eq(tense, "present") { + let irreg: String = es_irregular_present(verb, person, number) + if !str_eq(irreg, "") { + return irreg + } + let vclass: String = es_verb_class(verb) + let stem: String = es_stem(verb) + return es_regular_present(stem, vclass, slot) + } + + if str_eq(tense, "past") { + let irreg: String = es_irregular_preterite(verb, person, number) + if !str_eq(irreg, "") { + return irreg + } + let vclass: String = es_verb_class(verb) + let stem: String = es_stem(verb) + return es_regular_preterite(stem, vclass, slot) + } + + if str_eq(tense, "future") { + let irreg_stem: String = es_irregular_future_stem(verb) + if !str_eq(irreg_stem, "") { + return es_regular_future(irreg_stem, slot) + } + return es_regular_future(verb, slot) + } + + if str_eq(tense, "imperfect") { + let irreg: String = es_irregular_imperfect(verb, person, number) + if !str_eq(irreg, "") { + return irreg + } + let vclass: String = es_verb_class(verb) + let stem: String = es_stem(verb) + return es_regular_imperfect(stem, vclass, slot) + } + + // Unknown tense: return infinitive unchanged + return verb +} + +// ── Noun gender inference ───────────────────────────────────────────────────── +// +// Returns "m" (masculine), "f" (feminine), or "unknown". +// +// Heuristics (not exhaustive — cover most common patterns): +// ends in -o -> masculine (libro, gato, niño) +// ends in -a -> feminine (casa, mesa, niña) +// ends in -ión -> feminine (canción, nación) +// ends in -dad/-tad -> feminine (ciudad, libertad) +// ends in -umbre -> feminine (costumbre) +// ends in -sis -> feminine (crisis, tesis) +// ends in -ema/-ama -> masculine (problema, programa, tema, idioma) +// ends in -or -> masculine (color, amor, señor) +// ends in -aje -> masculine (viaje, paisaje) +// ends in -án/-ón -> masculine (avión → check -ión first) +// otherwise -> unknown + +fn es_gender(noun: String) -> String { + // -ión before -o so "avión" → feminine (it ends -ión, not just -on) + if es_str_ends(noun, "ión") { return "f" } + if es_str_ends(noun, "dad") { return "f" } + if es_str_ends(noun, "tad") { return "f" } + if es_str_ends(noun, "umbre") { return "f" } + if es_str_ends(noun, "sis") { return "f" } + if es_str_ends(noun, "ema") { return "m" } + if es_str_ends(noun, "ama") { return "m" } + if es_str_ends(noun, "aje") { return "m" } + if es_str_ends(noun, "or") { return "m" } + if es_str_ends(noun, "o") { return "m" } + if es_str_ends(noun, "a") { return "f" } + return "unknown" +} + +// ── Noun pluralization ──────────────────────────────────────────────────────── +// +// Rules (applied in order): +// ends in vowel (a e i o u) -> add -s +// ends in consonant -> add -es +// ends in -z -> replace -z with -ces +// ends in -s (unstressed) -> unchanged (e.g. "el lunes" -> "los lunes") +// +// Note: nouns ending in stressed vowel + s (e.g. "el autobús" → "los autobuses") +// are handled by the consonant rule since -s is a consonant ending for pluralization +// purposes; but "el lunes" (days of week ending in -s) stay unchanged — this is +// an irregular class. The table below handles common invariant nouns. + +fn es_invariant_plural(noun: String) -> String { + if str_eq(noun, "lunes") { return "lunes" } + if str_eq(noun, "martes") { return "martes" } + if str_eq(noun, "miércoles") { return "miércoles" } + if str_eq(noun, "jueves") { return "jueves" } + if str_eq(noun, "viernes") { return "viernes" } + if str_eq(noun, "crisis") { return "crisis" } + if str_eq(noun, "tesis") { return "tesis" } + if str_eq(noun, "análisis") { return "análisis" } + if str_eq(noun, "dosis") { return "dosis" } + if str_eq(noun, "virus") { return "virus" } + return "" +} + +fn es_pluralize(noun: String) -> String { + let inv: String = es_invariant_plural(noun) + if !str_eq(inv, "") { + return inv + } + let last: String = es_str_last_char(noun) + // Ends in -z: replace with -ces + if str_eq(last, "z") { + return es_str_drop_last(noun, 1) + "ces" + } + // Ends in a vowel: add -s + if str_eq(last, "a") { return noun + "s" } + if str_eq(last, "e") { return noun + "s" } + if str_eq(last, "i") { return noun + "s" } + if str_eq(last, "o") { return noun + "s" } + if str_eq(last, "u") { return noun + "s" } + // Ends in consonant (including -s for stressed words like autobús): add -es + return noun + "es" +} + +// ── Article agreement ───────────────────────────────────────────────────────── +// +// es_agree_article: return the correct Spanish article for a noun. +// +// noun: the noun (used for gender and number inference) +// definite: "true" for definite (el/la/los/las), "false" for indefinite (un/una/unos/unas) +// number: "singular" | "plural" +// +// Special case: feminine nouns beginning with stressed "a-" or "ha-" take +// masculine singular definite article: "el agua", "el hacha". +// This is handled by checking the noun's first character when gender is feminine. + +fn es_starts_with_stressed_a(noun: String) -> Bool { + // Approximate: check if noun starts with "a" or "ha" (covers most cases) + // The accent on the first syllable is not detectable orthographically in + // general, so we apply the rule broadly for any feminine noun starting with + // "a" or "ha" in singular. + let n: Int = str_len(noun) + if n == 0 { + return false + } + let c0: String = str_slice(noun, 0, 1) + if str_eq(c0, "a") { return true } + if n >= 2 { + let c1: String = str_slice(noun, 1, 2) + if str_eq(c0, "h") { + if str_eq(c1, "a") { return true } + } + } + return false +} + +fn es_agree_article(noun: String, definite: String, number: String) -> String { + let gender: String = es_gender(noun) + let is_plural: Bool = str_eq(number, "plural") + let is_def: Bool = str_eq(definite, "true") + + if is_def { + if is_plural { + if str_eq(gender, "f") { return "las" } + return "los" + } + // singular + if str_eq(gender, "f") { + // el agua rule: feminine singular nouns starting with stressed "a" + if es_starts_with_stressed_a(noun) { return "el" } + return "la" + } + return "el" + } + + // indefinite + if is_plural { + if str_eq(gender, "f") { return "unas" } + return "unos" + } + if str_eq(gender, "f") { return "una" } + return "un" +} diff --git a/elp/src/morphology-es.elh b/elp/src/morphology-es.elh new file mode 100644 index 0000000..551d6c0 --- /dev/null +++ b/elp/src/morphology-es.elh @@ -0,0 +1,23 @@ +// auto-generated by elc --emit-header - do not edit +extern fn es_str_ends(s: String, suf: String) -> Bool +extern fn es_str_drop_last(s: String, n: Int) -> String +extern fn es_str_last_char(s: String) -> String +extern fn es_str_last2(s: String) -> String +extern fn es_str_last3(s: String) -> String +extern fn es_verb_class(base: String) -> String +extern fn es_stem(base: String) -> String +extern fn es_slot(person: String, number: String) -> Int +extern fn es_irregular_present(verb: String, person: String, number: String) -> String +extern fn es_irregular_preterite(verb: String, person: String, number: String) -> String +extern fn es_irregular_imperfect(verb: String, person: String, number: String) -> String +extern fn es_regular_present(stem: String, vclass: String, slot: Int) -> String +extern fn es_regular_preterite(stem: String, vclass: String, slot: Int) -> String +extern fn es_regular_future(base: String, slot: Int) -> String +extern fn es_irregular_future_stem(verb: String) -> String +extern fn es_regular_imperfect(stem: String, vclass: String, slot: Int) -> String +extern fn es_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn es_gender(noun: String) -> String +extern fn es_invariant_plural(noun: String) -> String +extern fn es_pluralize(noun: String) -> String +extern fn es_starts_with_stressed_a(noun: String) -> Bool +extern fn es_agree_article(noun: String, definite: String, number: String) -> String diff --git a/elp/src/morphology-fi.el b/elp/src/morphology-fi.el new file mode 100644 index 0000000..278550f --- /dev/null +++ b/elp/src/morphology-fi.el @@ -0,0 +1,622 @@ +// morphology-fi.el - Finnish morphology: noun case inflection and verb conjugation. +// +// Finnish is SOV, agglutinative, 15 grammatical cases, no grammatical gender, +// no articles. Morphology is suffix-chain based. +// +// Key facts: +// - Vowel harmony: suffixes harmonize with the stem's vowel class. +// Back vowels (a, o, u) → back-harmony suffixes (-ssa, -sta, -an, etc.) +// Front vowels (ä, ö, y) or neutral-only stems → front-harmony (-ssä, -stä, -än, etc.) +// - Consonant gradation: alternation between strong and weak consonant grades. +// Full gradation tables are large; this module implements the most common +// patterns. Irregular/exceptional stems must be supplied in inflected form. +// - Verbs conjugate for person (1/2/3) and number (singular/plural), plus tense +// (present/past) and polarity (affirmative/negative). +// - Question suffix: -ko (back harmony) / -kö (front harmony), appended to verb. +// +// Depends on: (no dependencies - standalone morphology module) + +// ── Vowel harmony ───────────────────────────────────────────────────────────── +// +// fi_harmony(word) -> "back" | "front" +// +// Scan the word right-to-left for the last unambiguously back (a, o, u) or +// front (ä, ö, y) vowel. Neutral vowels (e, i) do not determine the class. +// If only neutral vowels are found, default to "front" (the conservative choice +// for borrowed words and those without clear back vowels). + +fn fi_harmony(word: String) -> String { + let n: Int = str_len(word) + let i: Int = n - 1 + while i >= 0 { + let c: String = str_slice(word, i, i + 1) + // Back vowels + if str_eq(c, "a") { return "back" } + if str_eq(c, "o") { return "back" } + if str_eq(c, "u") { return "back" } + // Front vowels (UTF-8; Finnish ä is U+00E4, ö is U+00F6) + // In a byte scan we may land mid-codepoint; we do a substring comparison + // by checking two-byte sequences at position i-1 when c is a lead byte. + if str_eq(c, "ä") { return "front" } + if str_eq(c, "ö") { return "front" } + if str_eq(c, "y") { return "front" } + let i = i - 1 + } + // Default: front (covers neutral-only and unknown stems) + return "front" +} + +// ── Suffix harmonization ────────────────────────────────────────────────────── +// +// fi_suffix(base, harmony) -> String +// +// Given a back-harmony base suffix, return the harmonized form. +// Only the a/ä alternation is handled here; all other vowels stay the same. +// E.g. fi_suffix("ssa", "front") -> "ssä" +// fi_suffix("ssa", "back") -> "ssa" + +fn fi_suffix(base: String, harmony: String) -> String { + if str_eq(harmony, "front") { + // Replace every 'a' with 'ä' and every 'o' in suffix with 'ö'. + // We handle only the common patterns used in Finnish case suffixes. + if str_eq(base, "a") { return "ä" } + if str_eq(base, "ssa") { return "ssä" } + if str_eq(base, "sta") { return "stä" } + if str_eq(base, "an") { return "än" } + if str_eq(base, "aan") { return "ään" } + if str_eq(base, "lla") { return "llä" } + if str_eq(base, "lta") { return "ltä" } + if str_eq(base, "lle") { return "lle" } + if str_eq(base, "na") { return "nä" } + if str_eq(base, "ksi") { return "ksi" } + if str_eq(base, "tta") { return "ttä" } + if str_eq(base, "ta") { return "tä" } + if str_eq(base, "ja") { return "jä" } + if str_eq(base, "oja") { return "öjä" } + if str_eq(base, "issa") { return "issä" } + if str_eq(base, "ista") { return "istä" } + if str_eq(base, "ihin") { return "ihin" } + if str_eq(base, "illa") { return "illä" } + if str_eq(base, "ilta") { return "iltä" } + if str_eq(base, "ille") { return "ille" } + if str_eq(base, "ina") { return "inä" } + if str_eq(base, "itta") { return "ittä" } + if str_eq(base, "ko") { return "kö" } + if str_eq(base, "pa") { return "pä" } + if str_eq(base, "va") { return "vä" } + if str_eq(base, "ma") { return "mä" } + if str_eq(base, "han") { return "hän" } + if str_eq(base, "lla") { return "llä" } + // Fall back: return the back-harmony form unchanged + return base + } + // Back harmony: return as-is + return base +} + +// ── Noun case inflection ────────────────────────────────────────────────────── +// +// fi_noun_case(stem, gram_case, number, harmony) -> String +// +// Computes the inflected noun form from the oblique stem, case name, number +// ("singular" | "plural"), and vowel harmony class. +// +// The "stem" is the oblique/genitive stem (e.g. talo for talo, puhu for puhua). +// For most Type-1 nouns the oblique stem = dictionary form minus final vowel. +// For the singular nominative the dictionary form itself is used (passed directly). +// +// Cases and their suffixes (talo → back, stem "talo"): +// nominative sg : stem (no suffix) → talo +// nominative pl : stem + t → talot +// genitive sg : stem + n → talon +// genitive pl : stem + jen / jen → talojen +// accusative sg : stem + n (= gen sg) → talon +// accusative pl : stem + t (= nom pl) → talot +// partitive sg : stem + a/ä → taloa +// partitive pl : stem + ja/jä → taloja +// inessive sg : stem + ssa/ssä → talossa +// inessive pl : stem + issa/issä → taloissa +// elative sg : stem + sta/stä → talosta +// elative pl : stem + ista/istä → taloista +// illative sg : stem + vowel + n → taloon (long vowel + n) +// illative pl : stem + ihin → taloihin +// adessive sg : stem + lla/llä → talolla +// adessive pl : stem + illa/illä → taloilla +// ablative sg : stem + lta/ltä → talolta +// ablative pl : stem + ilta/iltä → taloilta +// allative sg : stem + lle → talolle +// allative pl : stem + ille → taloille +// essive sg : stem + na/nä → talona +// essive pl : stem + ina/inä → taloina +// translative sg : stem + ksi → taloksi +// translative pl : stem + iksi → taloiksi +// instructive pl : stem + in → taloin (plural only) +// abessive sg : stem + tta/ttä → talotta +// abessive pl : stem + itta/ittä → taloitta +// comitative pl : stem + ineen → taloineen (plural only) + +fn fi_noun_case(stem: String, gram_case: String, number: String, harmony: String) -> String { + let sg: Bool = str_eq(number, "singular") + + if str_eq(gram_case, "nominative") { + if sg { return stem } + return stem + "t" + } + + if str_eq(gram_case, "genitive") { + if sg { return stem + "n" } + return stem + "jen" + } + + if str_eq(gram_case, "accusative") { + if sg { return stem + "n" } + return stem + "t" + } + + if str_eq(gram_case, "partitive") { + if sg { return stem + fi_suffix("a", harmony) } + return stem + fi_suffix("ja", harmony) + } + + if str_eq(gram_case, "inessive") { + if sg { return stem + fi_suffix("ssa", harmony) } + return stem + fi_suffix("issa", harmony) + } + + if str_eq(gram_case, "elative") { + if sg { return stem + fi_suffix("sta", harmony) } + return stem + fi_suffix("ista", harmony) + } + + if str_eq(gram_case, "illative") { + if sg { + // Singular illative: final vowel of stem is lengthened + n + // e.g. talo → taloon, puu → puuhun, käsi → käteen + // We take the last character of the stem and double it, then add n. + let last: String = fi_str_last_char(stem) + return stem + last + "n" + } + return stem + fi_suffix("ihin", harmony) + } + + if str_eq(gram_case, "adessive") { + if sg { return stem + fi_suffix("lla", harmony) } + return stem + fi_suffix("illa", harmony) + } + + if str_eq(gram_case, "ablative") { + if sg { return stem + fi_suffix("lta", harmony) } + return stem + fi_suffix("ilta", harmony) + } + + if str_eq(gram_case, "allative") { + // Allative is -lle for both numbers (only the stem differs) + if sg { return stem + "lle" } + return stem + "ille" + } + + if str_eq(gram_case, "essive") { + if sg { return stem + fi_suffix("na", harmony) } + return stem + fi_suffix("ina", harmony) + } + + if str_eq(gram_case, "translative") { + if sg { return stem + "ksi" } + return stem + "iksi" + } + + if str_eq(gram_case, "instructive") { + // Instructive is plural only in modern Finnish + return stem + "in" + } + + if str_eq(gram_case, "abessive") { + if sg { return stem + fi_suffix("tta", harmony) } + return stem + fi_suffix("itta", harmony) + } + + if str_eq(gram_case, "comitative") { + // Comitative is plural only + return stem + "ineen" + } + + // Unknown case: return stem unchanged + return stem +} + +// ── Noun helper: str_last_char ───────────────────────────────────────────────── +// +// Return the last Unicode character of a string. +// Mirrors the helper in morphology.el; redefined here for standalone use. + +fn fi_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { return "" } + return str_slice(s, n - 1, n) +} + +// ── Full noun inflection (convenience wrapper) ──────────────────────────────── +// +// fi_apply_case(noun, gram_case, number) -> String +// +// Accepts the nominative singular form (dictionary form), derives the harmony +// class, and produces the requested case form. +// +// For most regular nouns the oblique stem equals the dictionary form. The +// illative singular is handled by appending the last vowel + n. + +fn fi_apply_case(noun: String, gram_case: String, number: String) -> String { + let harmony: String = fi_harmony(noun) + // For nominative singular, return the noun as-is. + if str_eq(gram_case, "nominative") { + if str_eq(number, "singular") { return noun } + return noun + "t" + } + // For all other cases, use the noun as the oblique stem. + // (Callers that need consonant-gradated stems must pass the graded stem + // directly via fi_noun_case.) + return fi_noun_case(noun, gram_case, number, harmony) +} + +// ── Verb stem extraction ────────────────────────────────────────────────────── +// +// fi_verb_stem(dict_form) -> String +// +// Strip the infinitive ending to get the present-tense stem. +// +// Type 1 verbs (most common): infinitive ends in -a/-ä, stem = infinitive - a/ä +// puhua → puhu, juosta → juos (irregular, handled separately) +// Type 2 verbs: end in -da/-dä, stem = infinitive - da/dä +// syödä → syö, juoda → juo +// Type 3 verbs: end in -la/-lä, -ra/-rä, -na/-nä, -sta/-stä +// tulla → tul + l → stem "tull" (double consonant) +// Type 4 verbs: end in -ata/-ätä +// tavata → tapaa (irregular lengthening, handled as irregular) +// +// For NLG purposes we handle Type 1 and Type 2 as the most frequent. + +fn fi_verb_stem(dict_form: String) -> String { + // Type 2: -da/-dä → drop 2 characters + if str_ends_with(dict_form, "da") { + return str_drop_last(dict_form, 2) + } + if str_ends_with(dict_form, "dä") { + return str_drop_last(dict_form, 2) + } + // Type 3: -lla/-llä, -rra, -nna → drop last 2 chars (keeps double consonant) + if str_ends_with(dict_form, "lla") { + return str_drop_last(dict_form, 2) + } + if str_ends_with(dict_form, "llä") { + return str_drop_last(dict_form, 2) + } + if str_ends_with(dict_form, "rra") { + return str_drop_last(dict_form, 2) + } + if str_ends_with(dict_form, "nna") { + return str_drop_last(dict_form, 2) + } + // Type 1 (and default): -a/-ä → drop 1 character + if str_ends_with(dict_form, "a") { + return str_drop_last(dict_form, 1) + } + if str_ends_with(dict_form, "ä") { + return str_drop_last(dict_form, 1) + } + return dict_form +} + +// ── Irregular verb table ────────────────────────────────────────────────────── +// +// Returns an 18-element list encoding essential irregular paradigm forms, or an +// empty list if the verb is regular. +// +// Slot layout (0-indexed): +// 0 inf infinitive (dictionary form) +// 1 pres_1sg present 1sg +// 2 pres_2sg present 2sg +// 3 pres_3sg present 3sg +// 4 pres_1pl present 1pl +// 5 pres_2pl present 2pl +// 6 pres_3pl present 3pl +// 7 past_1sg past 1sg +// 8 past_2sg past 2sg +// 9 past_3sg past 3sg +// 10 past_1pl past 1pl +// 11 past_2pl past 2pl +// 12 past_3pl past 3pl +// 13 neg_stem negative stem (used with en/et/ei/emme/ette/eivät) +// 14 cond_stem conditional stem (for future use) +// 15 imp_2sg imperative 2sg +// 16 part_pres present participle stem +// 17 part_past past participle + +fn fi_irregular_verb(dict_form: String) -> [String] { + let empty: [String] = [] + + // olla — to be (the most irregular Finnish verb) + if str_eq(dict_form, "olla") { + let r: [String] = ["olla", "olen", "olet", "on", "olemme", "olette", "ovat", + "olin", "olit", "oli", "olimme", "olitte", "olivat", + "ole", "olis", "ole", "oleva", "ollut"] + return r + } + + // voida — can / to be able to + if str_eq(dict_form, "voida") { + let r: [String] = ["voida", "voin", "voit", "voi", "voimme", "voitte", "voivat", + "voin", "voit", "voi", "voimme", "voitte", "voivat", + "voi", "vois", "voi", "voiva", "voinut"] + return r + } + + // mennä — to go (Type 3 with irregularities) + if str_eq(dict_form, "mennä") { + let r: [String] = ["mennä", "menen", "menet", "menee", "menemme", "menette", "menevät", + "menin", "menit", "meni", "menimme", "menitte", "menivät", + "mene", "menis", "mene", "menevä", "mennyt"] + return r + } + + // tulla — to come (Type 3) + if str_eq(dict_form, "tulla") { + let r: [String] = ["tulla", "tulen", "tulet", "tulee", "tulemme", "tulette", "tulevat", + "tulin", "tulit", "tuli", "tulimme", "tulitte", "tulivat", + "tule", "tulis", "tule", "tuleva", "tullut"] + return r + } + + // tehdä — to do / make (Type 2, irregular) + if str_eq(dict_form, "tehdä") { + let r: [String] = ["tehdä", "teen", "teet", "tekee", "teemme", "teette", "tekevät", + "tein", "teit", "teki", "teimme", "teitte", "tekivät", + "tee", "tekis", "tee", "tekevä", "tehnyt"] + return r + } + + // nähdä — to see (Type 2, irregular) + if str_eq(dict_form, "nähdä") { + let r: [String] = ["nähdä", "näen", "näet", "näkee", "näemme", "näette", "näkevät", + "näin", "näit", "näki", "näimme", "näitte", "näkivät", + "näe", "näkis", "näe", "näkevä", "nähnyt"] + return r + } + + // saada — to get / to be able to (Type 2) + if str_eq(dict_form, "saada") { + let r: [String] = ["saada", "saan", "saat", "saa", "saamme", "saatte", "saavat", + "sain", "sait", "sai", "saimme", "saitte", "saivat", + "saa", "sais", "saa", "saava", "saanut"] + return r + } + + // pitää — must / to like (Type 1 with stem change) + if str_eq(dict_form, "pitää") { + let r: [String] = ["pitää", "pidän", "pidät", "pitää", "pidämme", "pidätte", "pitävät", + "pidin", "pidit", "piti", "pidimme", "piditte", "pitivät", + "pidä", "pitäis", "pidä", "pitävä", "pitänyt"] + return r + } + + // tietää — to know (Type 1 with stem change) + if str_eq(dict_form, "tietää") { + let r: [String] = ["tietää", "tiedän", "tiedät", "tietää", "tiedämme", "tiedätte", "tietävät", + "tiesin", "tiesit", "tiesi", "tiesimme", "tiesitte", "tiesivät", + "tiedä", "tietäis", "tiedä", "tietävä", "tiennyt"] + return r + } + + return empty +} + +// ── Present-tense personal endings ─────────────────────────────────────────── +// +// Type-1 verb present tense endings (suffix onto stem): +// 1sg: -n 2sg: -t 3sg: stem-final vowel lengthened (no suffix) +// 1pl: -mme 2pl: -tte 3pl: -vat/-vät +// +// The 3sg form doubles the final vowel of the stem (puhu → puhuu, tule → tulee). +// The 3pl uses the harmony-dependent -vat/-vät suffix. + +fn fi_present_ending(stem: String, person: String, number: String, harmony: String) -> String { + if str_eq(number, "singular") { + if str_eq(person, "first") { return stem + "n" } + if str_eq(person, "second") { return stem + "t" } + if str_eq(person, "third") { + // 3sg: lengthen final vowel + let last: String = fi_str_last_char(stem) + return stem + last + } + } + if str_eq(number, "plural") { + if str_eq(person, "first") { return stem + "mme" } + if str_eq(person, "second") { return stem + "tte" } + if str_eq(person, "third") { return stem + fi_suffix("vat", harmony) } + } + return stem +} + +// ── Past-tense forms ────────────────────────────────────────────────────────── +// +// Type-1 verbs form the past by inserting -i- between the stem and the personal +// ending. The stem-final vowel may contract before -i-. +// +// puhua: puhu + i → puhui + n → puhuin (1sg past) +// Common contraction: stem final -a/-ä drops before -i- +// puhua stem puhu → puhu + i = puhui (no drop needed, -u not -a) +// tavata → contraction gives tavasi (handled as irregular or Type 4) +// For Type-1 verbs with -u/-y final stem the rule is simple concatenation. + +fn fi_past_stem(stem: String) -> String { + // If stem ends in a or ä, they may contract. For Type-1 verbs where the + // infinitive is -aa/-ää the stem ends in -a/-ä; before -i- that often + // gives -oi-/-öi- (e.g. puhua: puhu → puhui, but sanoa: sano → sanoi). + // The heuristic: if the stem already ends in a vowel other than a/ä, just + // append i. If it ends in a/ä, convert to o/ö + i (common pattern). + let last: String = fi_str_last_char(stem) + if str_eq(last, "a") { + return str_drop_last(stem, 1) + "oi" + } + if str_eq(last, "ä") { + return str_drop_last(stem, 1) + "öi" + } + return stem + "i" +} + +fn fi_past_ending(stem: String, person: String, number: String, harmony: String) -> String { + let pstem: String = fi_past_stem(stem) + if str_eq(number, "singular") { + if str_eq(person, "first") { return pstem + "n" } + if str_eq(person, "second") { return pstem + "t" } + if str_eq(person, "third") { return str_drop_last(pstem, 1) } + } + if str_eq(number, "plural") { + if str_eq(person, "first") { return pstem + "mme" } + if str_eq(person, "second") { return pstem + "tte" } + if str_eq(person, "third") { return pstem + fi_suffix("vat", harmony) } + } + return pstem +} + +// ── Negative forms ──────────────────────────────────────────────────────────── +// +// Finnish negation: negative auxiliary ei (conjugated for person/number) + +// verb in the connective (negative) stem = infinitive stem without personal ending. +// +// Negative auxiliary conjugation: +// 1sg: en 2sg: et 3sg: ei +// 1pl: emme 2pl: ette 3pl: eivät +// +// The negative stem for most verbs = present stem (the form without any ending). + +fn fi_neg_aux(person: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(person, "first") { return "en" } + if str_eq(person, "second") { return "et" } + if str_eq(person, "third") { return "ei" } + } + if str_eq(number, "plural") { + if str_eq(person, "first") { return "emme" } + if str_eq(person, "second") { return "ette" } + if str_eq(person, "third") { return "eivät" } + } + return "ei" +} + +fn fi_negative(verb: String, person: String, number: String) -> String { + let irreg: [String] = fi_irregular_verb(verb) + let aux: String = fi_neg_aux(person, number) + if native_list_len(irreg) > 0 { + let neg_stem: String = native_list_get(irreg, 13) + return aux + " " + neg_stem + } + let stem: String = fi_verb_stem(verb) + return aux + " " + stem +} + +// ── Main conjugation entry point ────────────────────────────────────────────── +// +// fi_conjugate(verb, tense, person, number) -> String +// +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" + +fn fi_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let harmony: String = fi_harmony(verb) + + // Check irregular table first + let irreg: [String] = fi_irregular_verb(verb) + if native_list_len(irreg) > 0 { + if str_eq(tense, "present") { + if str_eq(number, "singular") { + if str_eq(person, "first") { return native_list_get(irreg, 1) } + if str_eq(person, "second") { return native_list_get(irreg, 2) } + if str_eq(person, "third") { return native_list_get(irreg, 3) } + } + if str_eq(number, "plural") { + if str_eq(person, "first") { return native_list_get(irreg, 4) } + if str_eq(person, "second") { return native_list_get(irreg, 5) } + if str_eq(person, "third") { return native_list_get(irreg, 6) } + } + } + if str_eq(tense, "past") { + if str_eq(number, "singular") { + if str_eq(person, "first") { return native_list_get(irreg, 7) } + if str_eq(person, "second") { return native_list_get(irreg, 8) } + if str_eq(person, "third") { return native_list_get(irreg, 9) } + } + if str_eq(number, "plural") { + if str_eq(person, "first") { return native_list_get(irreg, 10) } + if str_eq(person, "second") { return native_list_get(irreg, 11) } + if str_eq(person, "third") { return native_list_get(irreg, 12) } + } + } + } + + // Regular verbs + let stem: String = fi_verb_stem(verb) + + if str_eq(tense, "present") { + return fi_present_ending(stem, person, number, harmony) + } + + if str_eq(tense, "past") { + return fi_past_ending(stem, person, number, harmony) + } + + return stem +} + +// ── Question suffix ─────────────────────────────────────────────────────────── +// +// Finnish questions are formed by appending -ko (back harmony) or -kö (front +// harmony) directly to the verb (or sometimes another focus word). + +fn fi_question_suffix(harmony: String) -> String { + if str_eq(harmony, "front") { return "kö" } + return "ko" +} + +// ── Question formation ──────────────────────────────────────────────────────── +// +// fi_make_question: append the appropriate question suffix to a verb form. + +fn fi_make_question(verb_form: String, harmony: String) -> String { + return verb_form + fi_question_suffix(harmony) +} + +// ── Convenience: inflect a noun through all 15 cases ───────────────────────── +// +// Returns a 30-element list: [case_name, sg_form, case_name, pl_form, ...] +// for all 15 cases. Plural-only cases (instructive, comitative) have an +// empty string for the singular slot. + +fn fi_full_paradigm(noun: String) -> [String] { + let harmony: String = fi_harmony(noun) + let r: [String] = [] + let cases: [String] = ["nominative", "genitive", "accusative", "partitive", + "inessive", "elative", "illative", "adessive", + "ablative", "allative", "essive", "translative", + "instructive", "abessive", "comitative"] + let n: Int = native_list_len(cases) + let i: Int = 0 + while i < n { + let c: String = native_list_get(cases, i) + let r = native_list_append(r, c) + // Singular + if str_eq(c, "instructive") { + let r = native_list_append(r, "") + } else { + if str_eq(c, "comitative") { + let r = native_list_append(r, "") + } else { + let r = native_list_append(r, fi_noun_case(noun, c, "singular", harmony)) + } + } + // Plural + let r = native_list_append(r, fi_noun_case(noun, c, "plural", harmony)) + let i = i + 1 + } + return r +} diff --git a/elp/src/morphology-fi.elh b/elp/src/morphology-fi.elh new file mode 100644 index 0000000..6ab4de7 --- /dev/null +++ b/elp/src/morphology-fi.elh @@ -0,0 +1,17 @@ +// auto-generated by elc --emit-header - do not edit +extern fn fi_harmony(word: String) -> String +extern fn fi_suffix(base: String, harmony: String) -> String +extern fn fi_noun_case(stem: String, gram_case: String, number: String, harmony: String) -> String +extern fn fi_str_last_char(s: String) -> String +extern fn fi_apply_case(noun: String, gram_case: String, number: String) -> String +extern fn fi_verb_stem(dict_form: String) -> String +extern fn fi_irregular_verb(dict_form: String) -> Any +extern fn fi_present_ending(stem: String, person: String, number: String, harmony: String) -> String +extern fn fi_past_stem(stem: String) -> String +extern fn fi_past_ending(stem: String, person: String, number: String, harmony: String) -> String +extern fn fi_neg_aux(person: String, number: String) -> String +extern fn fi_negative(verb: String, person: String, number: String) -> String +extern fn fi_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn fi_question_suffix(harmony: String) -> String +extern fn fi_make_question(verb_form: String, harmony: String) -> String +extern fn fi_full_paradigm(noun: String) -> Any diff --git a/elp/src/morphology-fr.el b/elp/src/morphology-fr.el new file mode 100644 index 0000000..576e001 --- /dev/null +++ b/elp/src/morphology-fr.el @@ -0,0 +1,676 @@ +// morphology-fr.el - French morphology for the NLG engine. +// +// Implements fusional French verb conjugation, noun pluralization, gender +// inference, article agreement, and interrogative inversion. Designed as a +// companion to morphology.el and called by the engine when the language +// profile code is "fr". +// +// Verb tenses covered: present, future, imparfait, passé composé. +// Persons: first/second/third × singular/plural. +// Verb groups: -er (regular), -ir (regular finir-type), -re (regular vendre-type) +// + a core set of common irregular verbs. +// +// Liaison / elision notes: +// - le/la → l' before vowel-initial nouns (handled in fr_agree_article) +// - est-ce que can precede any statement for yes/no questions (fr_question_inversion) +// - Inversion inserts -t- between vowel-final verb form and 3s pronoun: parle-t-il +// +// Depends on: morphology.el (str_ends_with, str_slice, str_len helpers) + +// ── String helpers (local, matching morphology.el conventions) ──────────────── + +fn fr_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn fr_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn fr_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn fr_str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +fn fr_is_vowel_start(s: String) -> Bool { + let n: Int = str_len(s) + if n == 0 { + return false + } + let c: String = str_slice(s, 0, 1) + if str_eq(c, "a") { return true } + if str_eq(c, "e") { return true } + if str_eq(c, "é") { return true } + if str_eq(c, "è") { return true } + if str_eq(c, "ê") { return true } + if str_eq(c, "i") { return true } + if str_eq(c, "î") { return true } + if str_eq(c, "o") { return true } + if str_eq(c, "ô") { return true } + if str_eq(c, "u") { return true } + if str_eq(c, "û") { return true } + if str_eq(c, "h") { return true } + return false +} + +// ── Verb group detection ────────────────────────────────────────────────────── +// +// Returns "er" | "ir" | "re" | "irregular". +// Irregular detection is done by checking against a known list first; all other +// verbs are classified by ending. + +fn fr_is_known_irregular(verb: String) -> Bool { + if str_eq(verb, "être") { return true } + if str_eq(verb, "avoir") { return true } + if str_eq(verb, "aller") { return true } + if str_eq(verb, "faire") { return true } + if str_eq(verb, "pouvoir") { return true } + if str_eq(verb, "vouloir") { return true } + if str_eq(verb, "venir") { return true } + if str_eq(verb, "dire") { return true } + if str_eq(verb, "voir") { return true } + if str_eq(verb, "prendre") { return true } + if str_eq(verb, "mettre") { return true } + if str_eq(verb, "savoir") { return true } + return false +} + +fn fr_verb_group(base: String) -> String { + if fr_is_known_irregular(base) { return "irregular" } + if fr_str_ends(base, "er") { return "er" } + if fr_str_ends(base, "ir") { return "ir" } + if fr_str_ends(base, "re") { return "re" } + return "er" +} + +fn fr_stem(base: String) -> String { + return fr_str_drop_last(base, 2) +} + +// ── Person/number slot index ────────────────────────────────────────────────── +// +// 0 = 1s (je), 1 = 2s (tu), 2 = 3s (il/elle), 3 = 1p (nous), 4 = 2p (vous), 5 = 3p (ils/elles) + +fn fr_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Irregular present tense ─────────────────────────────────────────────────── +// +// être: suis, es, est, sommes, êtes, sont +// avoir: ai, as, a, avons, avez, ont +// aller: vais, vas, va, allons, allez, vont +// faire: fais, fais, fait, faisons, faites, font +// pouvoir: peux, peux, peut, pouvons, pouvez, peuvent +// vouloir: veux, veux, veut, voulons, voulez, veulent +// venir: viens, viens, vient, venons, venez, viennent +// dire: dis, dis, dit, disons, dites, disent +// voir: vois, vois, voit, voyons, voyez, voient +// prendre: prends, prends, prend, prenons, prenez, prennent +// mettre: mets, mets, met, mettons, mettez, mettent +// savoir: sais, sais, sait, savons, savez, savent + +fn fr_irregular_present(verb: String, person: String, number: String) -> String { + let slot: Int = fr_slot(person, number) + + if str_eq(verb, "être") { + if slot == 0 { return "suis" } + if slot == 1 { return "es" } + if slot == 2 { return "est" } + if slot == 3 { return "sommes" } + if slot == 4 { return "etes" } + return "sont" + } + + // ASCII alias used by morph_map_canonical — identical conjugation. + if str_eq(verb, "etre") { + if slot == 0 { return "suis" } + if slot == 1 { return "es" } + if slot == 2 { return "est" } + if slot == 3 { return "sommes" } + if slot == 4 { return "etes" } + return "sont" + } + + if str_eq(verb, "avoir") { + if slot == 0 { return "ai" } + if slot == 1 { return "as" } + if slot == 2 { return "a" } + if slot == 3 { return "avons" } + if slot == 4 { return "avez" } + return "ont" + } + + if str_eq(verb, "aller") { + if slot == 0 { return "vais" } + if slot == 1 { return "vas" } + if slot == 2 { return "va" } + if slot == 3 { return "allons" } + if slot == 4 { return "allez" } + return "vont" + } + + if str_eq(verb, "faire") { + if slot == 0 { return "fais" } + if slot == 1 { return "fais" } + if slot == 2 { return "fait" } + if slot == 3 { return "faisons" } + if slot == 4 { return "faites" } + return "font" + } + + if str_eq(verb, "pouvoir") { + if slot == 0 { return "peux" } + if slot == 1 { return "peux" } + if slot == 2 { return "peut" } + if slot == 3 { return "pouvons" } + if slot == 4 { return "pouvez" } + return "peuvent" + } + + if str_eq(verb, "vouloir") { + if slot == 0 { return "veux" } + if slot == 1 { return "veux" } + if slot == 2 { return "veut" } + if slot == 3 { return "voulons" } + if slot == 4 { return "voulez" } + return "veulent" + } + + if str_eq(verb, "venir") { + if slot == 0 { return "viens" } + if slot == 1 { return "viens" } + if slot == 2 { return "vient" } + if slot == 3 { return "venons" } + if slot == 4 { return "venez" } + return "viennent" + } + + if str_eq(verb, "dire") { + if slot == 0 { return "dis" } + if slot == 1 { return "dis" } + if slot == 2 { return "dit" } + if slot == 3 { return "disons" } + if slot == 4 { return "dites" } + return "disent" + } + + if str_eq(verb, "voir") { + if slot == 0 { return "vois" } + if slot == 1 { return "vois" } + if slot == 2 { return "voit" } + if slot == 3 { return "voyons" } + if slot == 4 { return "voyez" } + return "voient" + } + + if str_eq(verb, "prendre") { + if slot == 0 { return "prends" } + if slot == 1 { return "prends" } + if slot == 2 { return "prend" } + if slot == 3 { return "prenons" } + if slot == 4 { return "prenez" } + return "prennent" + } + + if str_eq(verb, "mettre") { + if slot == 0 { return "mets" } + if slot == 1 { return "mets" } + if slot == 2 { return "met" } + if slot == 3 { return "mettons" } + if slot == 4 { return "mettez" } + return "mettent" + } + + if str_eq(verb, "savoir") { + if slot == 0 { return "sais" } + if slot == 1 { return "sais" } + if slot == 2 { return "sait" } + if slot == 3 { return "savons" } + if slot == 4 { return "savez" } + return "savent" + } + + return "" +} + +// ── Regular present tense ───────────────────────────────────────────────────── +// +// -er: -e, -es, -e, -ons, -ez, -ent +// -ir: -is, -is, -it, -issons, -issez, -issent (finir-type; stem gets -iss- in plural) +// -re: -s, -s, -(nothing), -ons, -ez, -ent + +fn fr_regular_present(stem: String, vgroup: String, slot: Int) -> String { + if str_eq(vgroup, "er") { + if slot == 0 { return stem + "e" } + if slot == 1 { return stem + "es" } + if slot == 2 { return stem + "e" } + if slot == 3 { return stem + "ons" } + if slot == 4 { return stem + "ez" } + return stem + "ent" + } + + if str_eq(vgroup, "ir") { + // finir-type: singular uses bare stem, plural uses stem + -iss- + if slot == 0 { return stem + "is" } + if slot == 1 { return stem + "is" } + if slot == 2 { return stem + "it" } + if slot == 3 { return stem + "issons" } + if slot == 4 { return stem + "issez" } + return stem + "issent" + } + + // -re (vendre-type) + if slot == 0 { return stem + "s" } + if slot == 1 { return stem + "s" } + if slot == 2 { return stem } + if slot == 3 { return stem + "ons" } + if slot == 4 { return stem + "ez" } + return stem + "ent" +} + +// ── Regular future tense ────────────────────────────────────────────────────── +// +// Future is formed from the infinitive (minus silent -e for -re verbs) + endings: +// -ai, -as, -a, -ons, -ez, -ont + +fn fr_future_stem(base: String, vgroup: String) -> String { + // -re verbs drop the final -e before adding future endings + if str_eq(vgroup, "re") { + return fr_str_drop_last(base, 1) + } + return base +} + +fn fr_regular_future(fstem: String, slot: Int) -> String { + if slot == 0 { return fstem + "ai" } + if slot == 1 { return fstem + "as" } + if slot == 2 { return fstem + "a" } + if slot == 3 { return fstem + "ons" } + if slot == 4 { return fstem + "ez" } + return fstem + "ont" +} + +// ── Irregular future stems ──────────────────────────────────────────────────── +// +// Returns the irregular future stem, or "" if regular. + +fn fr_irregular_future_stem(verb: String) -> String { + if str_eq(verb, "être") { return "ser" } + if str_eq(verb, "avoir") { return "aur" } + if str_eq(verb, "aller") { return "ir" } + if str_eq(verb, "faire") { return "fer" } + if str_eq(verb, "pouvoir") { return "pourr" } + if str_eq(verb, "vouloir") { return "voudr" } + if str_eq(verb, "venir") { return "viendr" } + if str_eq(verb, "voir") { return "verr" } + if str_eq(verb, "savoir") { return "saur" } + return "" +} + +// ── Regular imparfait ───────────────────────────────────────────────────────── +// +// Imparfait is formed from the nous-present stem (infinitive minus -er/-ir/-re, +// then add -iss for -ir verbs in nous-form) + endings: +// -ais, -ais, -ait, -ions, -iez, -aient +// +// For -er verbs: stem = infinitive minus -er +// For -ir verbs: stem = infinitive minus -ir (bare stem, not -iss- — imparfait +// uses the basic stem, unlike present plural which uses -iss-) +// For -re verbs: stem = infinitive minus -re +// Exception: être uses ét- as the imparfait stem. + +fn fr_imperfect_stem(base: String, vgroup: String) -> String { + if str_eq(base, "être") { return "ét" } + return fr_stem(base) +} + +fn fr_regular_imperfect(istem: String, slot: Int) -> String { + if slot == 0 { return istem + "ais" } + if slot == 1 { return istem + "ais" } + if slot == 2 { return istem + "ait" } + if slot == 3 { return istem + "ions" } + if slot == 4 { return istem + "iez" } + return istem + "aient" +} + +// ── Passé composé (past compound) ──────────────────────────────────────────── +// +// Passé composé = auxiliary (avoir or être) + past participle. +// Most verbs use avoir; a core set of motion/state verbs use être. +// +// This function returns a two-word string "auxiliary participle". +// The caller is responsible for agreement of the past participle when être is +// used (feminine adds -e, plural adds -s); this function returns the masculine +// singular participle unconditionally. + +fn fr_uses_etre(verb: String) -> Bool { + if str_eq(verb, "aller") { return true } + if str_eq(verb, "venir") { return true } + if str_eq(verb, "partir") { return true } + if str_eq(verb, "arriver") { return true } + if str_eq(verb, "entrer") { return true } + if str_eq(verb, "sortir") { return true } + if str_eq(verb, "naître") { return true } + if str_eq(verb, "mourir") { return true } + if str_eq(verb, "rester") { return true } + if str_eq(verb, "tomber") { return true } + if str_eq(verb, "monter") { return true } + if str_eq(verb, "descendre") { return true } + if str_eq(verb, "rentrer") { return true } + if str_eq(verb, "retourner") { return true } + if str_eq(verb, "passer") { return true } + return false +} + +// Returns the past participle (masculine singular form). +fn fr_past_participle(verb: String) -> String { + // Irregular participles + if str_eq(verb, "être") { return "été" } + if str_eq(verb, "avoir") { return "eu" } + if str_eq(verb, "aller") { return "allé" } + if str_eq(verb, "faire") { return "fait" } + if str_eq(verb, "pouvoir") { return "pu" } + if str_eq(verb, "vouloir") { return "voulu" } + if str_eq(verb, "venir") { return "venu" } + if str_eq(verb, "dire") { return "dit" } + if str_eq(verb, "voir") { return "vu" } + if str_eq(verb, "prendre") { return "pris" } + if str_eq(verb, "mettre") { return "mis" } + if str_eq(verb, "savoir") { return "su" } + if str_eq(verb, "naître") { return "né" } + if str_eq(verb, "mourir") { return "mort" } + // Regular participles by group + let vgroup: String = fr_verb_group(verb) + if str_eq(vgroup, "er") { + return fr_str_drop_last(verb, 2) + "é" + } + if str_eq(vgroup, "ir") { + return fr_str_drop_last(verb, 2) + "i" + } + // -re verbs: drop -re, add -u + return fr_str_drop_last(verb, 2) + "u" +} + +// Conjugates the avoir auxiliary in the present (for passé composé). +fn fr_avoir_present(slot: Int) -> String { + if slot == 0 { return "ai" } + if slot == 1 { return "as" } + if slot == 2 { return "a" } + if slot == 3 { return "avons" } + if slot == 4 { return "avez" } + return "ont" +} + +// Conjugates the être auxiliary in the present (for passé composé). +fn fr_etre_present(slot: Int) -> String { + if slot == 0 { return "suis" } + if slot == 1 { return "es" } + if slot == 2 { return "est" } + if slot == 3 { return "sommes" } + if slot == 4 { return "êtes" } + return "sont" +} + +// ── Full conjugation entry point ────────────────────────────────────────────── +// +// fr_conjugate: conjugate a French verb. +// +// verb: French infinitive (e.g. "parler", "être", "venir") +// tense: "present" | "future" | "imperfect" | "past" +// (note: "past" returns the passé composé as "aux participle") +// person: "first" | "second" | "third" +// number: "singular" | "plural" + +fn fr_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let slot: Int = fr_slot(person, number) + + if str_eq(tense, "present") { + let irreg: String = fr_irregular_present(verb, person, number) + if !str_eq(irreg, "") { + return irreg + } + let vgroup: String = fr_verb_group(verb) + let stem: String = fr_stem(verb) + return fr_regular_present(stem, vgroup, slot) + } + + if str_eq(tense, "future") { + let irreg_stem: String = fr_irregular_future_stem(verb) + if !str_eq(irreg_stem, "") { + return fr_regular_future(irreg_stem, slot) + } + let vgroup: String = fr_verb_group(verb) + let fstem: String = fr_future_stem(verb, vgroup) + return fr_regular_future(fstem, slot) + } + + if str_eq(tense, "imperfect") { + let vgroup: String = fr_verb_group(verb) + let istem: String = fr_imperfect_stem(verb, vgroup) + return fr_regular_imperfect(istem, slot) + } + + if str_eq(tense, "past") { + // Passé composé: auxiliary + past participle + let pp: String = fr_past_participle(verb) + if fr_uses_etre(verb) { + let aux: String = fr_etre_present(slot) + return aux + " " + pp + } + let aux: String = fr_avoir_present(slot) + return aux + " " + pp + } + + // Unknown tense: return infinitive unchanged + return verb +} + +// ── Noun gender inference ───────────────────────────────────────────────────── +// +// Returns "m" (masculine), "f" (feminine), or "unknown". +// +// Heuristics (common French patterns): +// ends in -tion/-sion/-xion -> feminine (nation, passion, connexion) +// ends in -ure -> feminine (voiture, culture) +// ends in -ette -> feminine (omelette, cigarette) +// ends in -eur (abstract) -> feminine (couleur, peur, chaleur) +// ends in -eur (agent) -> masculine (acteur, serveur) — can't always distinguish +// ends in -eur (no rule) -> try -teur → masculine (docteur, auteur) +// ends in -ment -> masculine (sentiment, gouvernement) +// ends in -age -> masculine (voyage, fromage) +// ends in -isme -> masculine (socialisme) +// ends in -eau -> masculine (tableau, gâteau) +// ends in -er/-é -> masculine (boucher, café) +// ends in -ée -> feminine (journée, idée) +// ends in -ie -> feminine (philosophie, géographie) +// ends in -ance/-ence -> feminine (chance, science) +// ends in -té/-tié -> feminine (beauté, amitié) +// ends in -ude -> feminine (attitude, solitude) +// ends in -ade -> feminine (salade, promenade) +// ends in -ette -> feminine (already covered) +// ends in -e (generic) -> often feminine but not reliable; return "unknown" + +fn fr_gender(noun: String) -> String { + // Feminine patterns (check more specific before general) + if fr_str_ends(noun, "tion") { return "f" } + if fr_str_ends(noun, "sion") { return "f" } + if fr_str_ends(noun, "xion") { return "f" } + if fr_str_ends(noun, "ure") { return "f" } + if fr_str_ends(noun, "ette") { return "f" } + if fr_str_ends(noun, "ance") { return "f" } + if fr_str_ends(noun, "ence") { return "f" } + if fr_str_ends(noun, "ité") { return "f" } + if fr_str_ends(noun, "té") { return "f" } + if fr_str_ends(noun, "tié") { return "f" } + if fr_str_ends(noun, "ude") { return "f" } + if fr_str_ends(noun, "ade") { return "f" } + if fr_str_ends(noun, "ée") { return "f" } + if fr_str_ends(noun, "ie") { return "f" } + // Masculine patterns + if fr_str_ends(noun, "ment") { return "m" } + if fr_str_ends(noun, "age") { return "m" } + if fr_str_ends(noun, "isme") { return "m" } + if fr_str_ends(noun, "eau") { return "m" } + if fr_str_ends(noun, "eur") { return "m" } + if fr_str_ends(noun, "er") { return "m" } + if fr_str_ends(noun, "é") { return "m" } + return "unknown" +} + +// ── Noun pluralization ──────────────────────────────────────────────────────── +// +// French plural rules: +// already ends in -s, -x, or -z -> unchanged +// ends in -eau -> add -x (bateau → bateaux) +// ends in -eu -> add -x (jeu → jeux; bleu → bleus is exception) +// ends in -al -> replace -al with -aux (animal → animaux) +// ends in -ail (most) -> replace -ail with -aux (travail → travaux; bail) +// otherwise -> add -s + +fn fr_invariant_plural(noun: String) -> String { + // Words already ending in -s, -x, -z are unchanged in plural + let last: String = fr_str_last_char(noun) + if str_eq(last, "s") { return noun } + if str_eq(last, "x") { return noun } + if str_eq(last, "z") { return noun } + return "" +} + +fn fr_pluralize(noun: String) -> String { + let inv: String = fr_invariant_plural(noun) + if !str_eq(inv, "") { + return inv + } + if fr_str_ends(noun, "eau") { + return noun + "x" + } + if fr_str_ends(noun, "eu") { + return noun + "x" + } + if fr_str_ends(noun, "al") { + return fr_str_drop_last(noun, 2) + "aux" + } + if fr_str_ends(noun, "ail") { + return fr_str_drop_last(noun, 3) + "aux" + } + return noun + "s" +} + +// ── Article agreement ───────────────────────────────────────────────────────── +// +// fr_agree_article: return the correct French article for a noun. +// +// noun: the noun (used for gender inference and elision check) +// definite: "true" for definite (le/la/l'/les), "false" for indefinite (un/une/des) +// number: "singular" | "plural" +// +// Elision: le/la → l' before a vowel- or h-initial noun (handled here). + +fn fr_agree_article(noun: String, definite: String, number: String) -> String { + let gender: String = fr_gender(noun) + let is_plural: Bool = str_eq(number, "plural") + let is_def: Bool = str_eq(definite, "true") + let vowel_start: Bool = fr_is_vowel_start(noun) + + if is_def { + if is_plural { + return "les" + } + // singular + if vowel_start { + return "l'" + } + if str_eq(gender, "f") { + return "la" + } + return "le" + } + + // indefinite + if is_plural { + return "des" + } + if str_eq(gender, "f") { + return "une" + } + return "un" +} + +// ── Question inversion ──────────────────────────────────────────────────────── +// +// fr_question_inversion: form a yes/no question using subject-verb inversion. +// +// subject: pronoun string: "je" | "tu" | "il" | "elle" | "nous" | "vous" | "ils" | "elles" +// verb_form: the conjugated verb form (e.g. "parle", "mange", "est") +// +// Rules: +// - Verb and subject are joined with a hyphen: "parle-t-il ?" +// - When the verb form ends in a vowel and the subject starts with a vowel +// (il, elle, ils, elles), insert euphonic -t-: "parle-t-il ?" +// - Je inversion is archaic; "est-ce que je ...?" is preferred — this function +// generates "est-ce que je ?" for first-person singular. +// - The result ends with " ?" + +fn fr_subject_starts_vowel(subject: String) -> Bool { + if str_eq(subject, "il") { return true } + if str_eq(subject, "elle") { return true } + if str_eq(subject, "ils") { return true } + if str_eq(subject, "elles") { return true } + return false +} + +fn fr_verb_ends_vowel(verb_form: String) -> Bool { + let last: String = fr_str_last_char(verb_form) + if str_eq(last, "a") { return true } + if str_eq(last, "e") { return true } + if str_eq(last, "é") { return true } + if str_eq(last, "i") { return true } + if str_eq(last, "o") { return true } + if str_eq(last, "u") { return true } + return false +} + +fn fr_question_inversion(subject: String, verb_form: String) -> String { + // First-person singular: use est-ce que construction + if str_eq(subject, "je") { + return "est-ce que je " + verb_form + " ?" + } + + // Determine whether to insert -t- + let need_t: Bool = false + if fr_verb_ends_vowel(verb_form) { + if fr_subject_starts_vowel(subject) { + let need_t = true + } + } + + if need_t { + return verb_form + "-t-" + subject + " ?" + } + return verb_form + "-" + subject + " ?" +} diff --git a/elp/src/morphology-fr.elh b/elp/src/morphology-fr.elh new file mode 100644 index 0000000..38957e1 --- /dev/null +++ b/elp/src/morphology-fr.elh @@ -0,0 +1,29 @@ +// auto-generated by elc --emit-header - do not edit +extern fn fr_str_ends(s: String, suf: String) -> Bool +extern fn fr_str_drop_last(s: String, n: Int) -> String +extern fn fr_str_last_char(s: String) -> String +extern fn fr_str_last2(s: String) -> String +extern fn fr_is_vowel_start(s: String) -> Bool +extern fn fr_is_known_irregular(verb: String) -> Bool +extern fn fr_verb_group(base: String) -> String +extern fn fr_stem(base: String) -> String +extern fn fr_slot(person: String, number: String) -> Int +extern fn fr_irregular_present(verb: String, person: String, number: String) -> String +extern fn fr_regular_present(stem: String, vgroup: String, slot: Int) -> String +extern fn fr_future_stem(base: String, vgroup: String) -> String +extern fn fr_regular_future(fstem: String, slot: Int) -> String +extern fn fr_irregular_future_stem(verb: String) -> String +extern fn fr_imperfect_stem(base: String, vgroup: String) -> String +extern fn fr_regular_imperfect(istem: String, slot: Int) -> String +extern fn fr_uses_etre(verb: String) -> Bool +extern fn fr_past_participle(verb: String) -> String +extern fn fr_avoir_present(slot: Int) -> String +extern fn fr_etre_present(slot: Int) -> String +extern fn fr_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn fr_gender(noun: String) -> String +extern fn fr_invariant_plural(noun: String) -> String +extern fn fr_pluralize(noun: String) -> String +extern fn fr_agree_article(noun: String, definite: String, number: String) -> String +extern fn fr_subject_starts_vowel(subject: String) -> Bool +extern fn fr_verb_ends_vowel(verb_form: String) -> Bool +extern fn fr_question_inversion(subject: String, verb_form: String) -> String diff --git a/elp/src/morphology-fro.el b/elp/src/morphology-fro.el new file mode 100644 index 0000000..f7ed551 --- /dev/null +++ b/elp/src/morphology-fro.el @@ -0,0 +1,667 @@ +// morphology-fro.el - Old French morphology for the NLG engine. +// +// Implements Old French verb conjugation, noun declension, and the definite +// article. Designed as a companion to morphology.el and called by the engine +// when the language profile code is "fro". +// +// Language profile: code=fro, name=Old French, morph_type=fusional, +// word_order=V2, question_strategy=inversion, script=latin, +// family=romance. +// +// Historical note: Old French (ca. 900–1400 CE) is the ancestor of Modern +// French. It diverged from Vulgar Latin and retained a two-case system — +// nominative (cas sujet) and oblique (cas régime) — inherited ultimately from +// Latin. By around 1300 CE the case distinction had largely collapsed in +// spoken usage, surviving mainly in formal written registers until it +// disappeared altogether. This file targets the core Old French period +// (ca. 1000–1300). +// +// Two-case system (masculine nouns): +// Singular: nominative stem + -s (li murs = the wall [subject]) +// oblique stem (le mur = the wall [object]) +// Plural: nominative stem (li mur = the walls [subject]) +// oblique stem + -s (les murs = the walls [object]) +// Feminine nouns show no case distinction throughout. +// +// Verb conjugation covered: +// Tenses: present indicative, passé simple (past), future +// Persons: first/second/third × singular/plural (slots 0-5) +// Conjugations: +// 1st (-er): present -e/-es/-e/-ons/-ez/-ent +// passé simple -ai/-as/-a/-ames/-astes/-erent +// future stem+rai/ras/ra/rons/rez/ront +// 2nd (-ir): present -is/-is/-it/-issons/-issiez/-issent +// passé simple -is/-is/-it/-imes/-istes/-irent +// future stem+rai series +// 3rd (-re): present stem/s/t/-ons/-ez/-ent +// passé simple -is series (like 2nd) +// future stem+rai series +// Irregulars: estre (be), avoir (have), aler (go), venir (come), +// faire (do/make) +// Canonical map: "be" -> "estre" +// +// Noun declension covered: +// Masculine: two-case (nom/obl) × sg/pl as above +// Feminine: case-neutral, sg base / pl base + -s +// Gender detection: -e ending -> feminine (heuristic), else masculine +// +// Article: +// Definite masculine nom sg: li; obl sg: le; nom pl: li; obl pl: les +// Definite feminine sg: la; pl: les +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn fro_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn fro_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based paradigm index. +// 0 = 1st singular (je) +// 1 = 2nd singular (tu) +// 2 = 3rd singular (il/ele) +// 3 = 1st plural (nos) +// 4 = 2nd plural (vos) +// 5 = 3rd plural (il/eles) + +fn fro_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third person + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// English semantic-layer labels are resolved to Old French dictionary infinitives +// before conjugation. + +fn fro_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "estre" } + if str_eq(verb, "have") { return "avoir" } + if str_eq(verb, "go") { return "aler" } + if str_eq(verb, "come") { return "venir" } + if str_eq(verb, "do") { return "faire" } + if str_eq(verb, "make") { return "faire" } + if str_eq(verb, "say") { return "dire" } + if str_eq(verb, "see") { return "veoir" } + if str_eq(verb, "want") { return "vouloir" } + if str_eq(verb, "can") { return "pooir" } + return verb +} + +// ── Irregular verb: estre (to be) ───────────────────────────────────────────── +// +// Suppletive paradigm — one of the most irregular verbs in Old French. +// +// Present indicative: +// 1sg sui 2sg es 3sg est +// 1pl somes 2pl estes 3pl sont +// +// Passé simple (past): +// 1sg fui 2sg fus 3sg fu +// 1pl fumes 2pl fustes 3pl furent +// +// Future (periphrastic, based on ester- stem): +// 1sg esterai 2sg esteras 3sg estera +// 1pl esterons 2pl esterez 3pl esteront + +fn fro_estre_present(slot: Int) -> String { + if slot == 0 { return "sui" } + if slot == 1 { return "es" } + if slot == 2 { return "est" } + if slot == 3 { return "somes" } + if slot == 4 { return "estes" } + return "sont" +} + +fn fro_estre_past(slot: Int) -> String { + if slot == 0 { return "fui" } + if slot == 1 { return "fus" } + if slot == 2 { return "fu" } + if slot == 3 { return "fumes" } + if slot == 4 { return "fustes" } + return "furent" +} + +fn fro_estre_future(slot: Int) -> String { + if slot == 0 { return "esterai" } + if slot == 1 { return "esteras" } + if slot == 2 { return "estera" } + if slot == 3 { return "esterons" } + if slot == 4 { return "esterez" } + return "esteront" +} + +// ── Irregular verb: avoir (to have) ─────────────────────────────────────────── +// +// Present indicative: +// 1sg ai 2sg as 3sg a +// 1pl avons 2pl avez 3pl ont +// +// Passé simple: +// 1sg oi 2sg os 3sg ot +// 1pl eumes 2pl eustes 3pl orent +// +// Future: +// 1sg avrai 2sg avras 3sg avra +// 1pl avrons 2pl avrez 3pl avront + +fn fro_avoir_present(slot: Int) -> String { + if slot == 0 { return "ai" } + if slot == 1 { return "as" } + if slot == 2 { return "a" } + if slot == 3 { return "avons" } + if slot == 4 { return "avez" } + return "ont" +} + +fn fro_avoir_past(slot: Int) -> String { + if slot == 0 { return "oi" } + if slot == 1 { return "os" } + if slot == 2 { return "ot" } + if slot == 3 { return "eumes" } + if slot == 4 { return "eustes" } + return "orent" +} + +fn fro_avoir_future(slot: Int) -> String { + if slot == 0 { return "avrai" } + if slot == 1 { return "avras" } + if slot == 2 { return "avra" } + if slot == 3 { return "avrons" } + if slot == 4 { return "avrez" } + return "avront" +} + +// ── Irregular verb: aler (to go) ────────────────────────────────────────────── +// +// Highly suppletive — present draws on Latin *vadere (vois- stem). +// +// Present indicative: +// 1sg vois 2sg vas 3sg va +// 1pl alons 2pl alez 3pl vont +// +// Passé simple (regular -er pattern on al-): +// 1sg alai 2sg alas 3sg ala +// 1pl alames 2pl alastes 3pl alerent +// +// Future (ir- stem, archaic): +// 1sg irai 2sg iras 3sg ira +// 1pl irons 2pl irez 3pl iront + +fn fro_aler_present(slot: Int) -> String { + if slot == 0 { return "vois" } + if slot == 1 { return "vas" } + if slot == 2 { return "va" } + if slot == 3 { return "alons" } + if slot == 4 { return "alez" } + return "vont" +} + +fn fro_aler_past(slot: Int) -> String { + if slot == 0 { return "alai" } + if slot == 1 { return "alas" } + if slot == 2 { return "ala" } + if slot == 3 { return "alames" } + if slot == 4 { return "alastes" } + return "alerent" +} + +fn fro_aler_future(slot: Int) -> String { + if slot == 0 { return "irai" } + if slot == 1 { return "iras" } + if slot == 2 { return "ira" } + if slot == 3 { return "irons" } + if slot == 4 { return "irez" } + return "iront" +} + +// ── Irregular verb: venir (to come) ─────────────────────────────────────────── +// +// Present indicative (vien-/ven- alternation): +// 1sg vieng 2sg viens 3sg vient +// 1pl venons 2pl venez 3pl vienent +// +// Passé simple: +// 1sg ving 2sg vins 3sg vint +// 1pl vinsmes 2pl vinstes 3pl vindrent +// +// Future (venr- stem): +// 1sg venrai 2sg venras 3sg venra +// 1pl venrons 2pl venrez 3pl venront + +fn fro_venir_present(slot: Int) -> String { + if slot == 0 { return "vieng" } + if slot == 1 { return "viens" } + if slot == 2 { return "vient" } + if slot == 3 { return "venons" } + if slot == 4 { return "venez" } + return "vienent" +} + +fn fro_venir_past(slot: Int) -> String { + if slot == 0 { return "ving" } + if slot == 1 { return "vins" } + if slot == 2 { return "vint" } + if slot == 3 { return "vinsmes" } + if slot == 4 { return "vinstes" } + return "vindrent" +} + +fn fro_venir_future(slot: Int) -> String { + if slot == 0 { return "venrai" } + if slot == 1 { return "venras" } + if slot == 2 { return "venra" } + if slot == 3 { return "venrons" } + if slot == 4 { return "venrez" } + return "venront" +} + +// ── Irregular verb: faire (to do/make) ──────────────────────────────────────── +// +// Present indicative (faz/fais- alternation): +// 1sg faz 2sg fais 3sg fait +// 1pl faisons 2pl faites 3pl font +// +// Passé simple: +// 1sg fis 2sg fis 3sg fist +// 1pl fimes 2pl fistes 3pl firent +// +// Future (fer- stem): +// 1sg ferai 2sg feras 3sg fera +// 1pl ferons 2pl ferez 3pl feront + +fn fro_faire_present(slot: Int) -> String { + if slot == 0 { return "faz" } + if slot == 1 { return "fais" } + if slot == 2 { return "fait" } + if slot == 3 { return "faisons" } + if slot == 4 { return "faites" } + return "font" +} + +fn fro_faire_past(slot: Int) -> String { + if slot == 0 { return "fis" } + if slot == 1 { return "fis" } + if slot == 2 { return "fist" } + if slot == 3 { return "fimes" } + if slot == 4 { return "fistes" } + return "firent" +} + +fn fro_faire_future(slot: Int) -> String { + if slot == 0 { return "ferai" } + if slot == 1 { return "feras" } + if slot == 2 { return "fera" } + if slot == 3 { return "ferons" } + if slot == 4 { return "ferez" } + return "feront" +} + +// ── Conjugation class detection ──────────────────────────────────────────────── +// +// Old French verbs fall into three broad conjugation classes: +// 1st conjugation: infinitive ends in -er (chanter, donner) +// 2nd conjugation: infinitive ends in -ir (finir, choisir) +// 3rd conjugation: infinitive ends in -re (vendre, rendre) +// +// Returns "1", "2", or "3". + +fn fro_verb_class(verb: String) -> String { + if fro_str_ends(verb, "er") { return "1" } + if fro_str_ends(verb, "ir") { return "2" } + if fro_str_ends(verb, "re") { return "3" } + return "1" +} + +// fro_verb_stem: strip the infinitive suffix to expose the productive stem. +// 1st (-er): drop 2 bytes +// 2nd (-ir): drop 2 bytes +// 3rd (-re): drop 2 bytes + +fn fro_verb_stem(verb: String, vclass: String) -> String { + return fro_drop(verb, 2) +} + +// ── 1st conjugation (-er): regular endings ──────────────────────────────────── +// +// Present indicative (stem + ending): +// 1sg -e 2sg -es 3sg -e +// 1pl -ons 2pl -ez 3pl -ent +// +// Passé simple: +// 1sg -ai 2sg -as 3sg -a +// 1pl -ames 2pl -astes 3pl -erent +// +// Future (infinitive is the base — drop -r then add endings): +// Actually the future stem = infinitive minus final -r (chanter- -> chanterai) +// 1sg -ai 2sg -as 3sg -a +// 1pl -ons 2pl -ez 3pl -ont +// Combined with chanterr-: chant+er+ai = chanterai; stem for future = infinitive + "a"... +// Simpler: future base = fro_drop(verb, 1) i.e. drop final -r to keep the -e: +// chanterai, chanteras, chantera, chanterons, chanterez, chanteront + +fn fro_conj1_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "e" } + if slot == 1 { return stem + "es" } + if slot == 2 { return stem + "e" } + if slot == 3 { return stem + "ons" } + if slot == 4 { return stem + "ez" } + return stem + "ent" +} + +fn fro_conj1_past(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "ai" } + if slot == 1 { return stem + "as" } + if slot == 2 { return stem + "a" } + if slot == 3 { return stem + "ames" } + if slot == 4 { return stem + "astes" } + return stem + "erent" +} + +fn fro_conj1_future(verb: String, slot: Int) -> String { + // Future base = infinitive minus final -r (retains the -e): chanter -> chante- + let base: String = fro_drop(verb, 1) + if slot == 0 { return base + "rai" } + if slot == 1 { return base + "ras" } + if slot == 2 { return base + "ra" } + if slot == 3 { return base + "rons" } + if slot == 4 { return base + "rez" } + return base + "ront" +} + +// ── 2nd conjugation (-ir): regular endings ──────────────────────────────────── +// +// Present indicative uses an infix -iss- in pl forms (inchoative): +// 1sg stem + -is 2sg stem + -is 3sg stem + -it +// 1pl stem + -issons 2pl stem + -issiez 3pl stem + -issent +// +// Passé simple: +// 1sg stem + -is 2sg stem + -is 3sg stem + -it +// 1pl stem + -imes 2pl stem + -istes 3pl stem + -irent +// +// Future (infinitive minus final -r): +// finir -> fini- -> finirai ... + +fn fro_conj2_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "is" } + if slot == 1 { return stem + "is" } + if slot == 2 { return stem + "it" } + if slot == 3 { return stem + "issons" } + if slot == 4 { return stem + "issiez" } + return stem + "issent" +} + +fn fro_conj2_past(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "is" } + if slot == 1 { return stem + "is" } + if slot == 2 { return stem + "it" } + if slot == 3 { return stem + "imes" } + if slot == 4 { return stem + "istes" } + return stem + "irent" +} + +fn fro_conj2_future(verb: String, slot: Int) -> String { + let base: String = fro_drop(verb, 1) + if slot == 0 { return base + "rai" } + if slot == 1 { return base + "ras" } + if slot == 2 { return base + "ra" } + if slot == 3 { return base + "rons" } + if slot == 4 { return base + "rez" } + return base + "ront" +} + +// ── 3rd conjugation (-re): regular endings ──────────────────────────────────── +// +// Present indicative: +// 1sg stem (no ending) 2sg stem + -s 3sg stem + -t +// 1pl stem + -ons 2pl stem + -ez 3pl stem + -ent +// +// Passé simple (same endings as 2nd conj): +// 1sg stem + -is 2sg stem + -is 3sg stem + -it +// 1pl stem + -imes 2pl stem + -istes 3pl stem + -irent +// +// Future (-re verbs drop -e before adding endings): +// vendre -> vendr- -> vendrai ... + +fn fro_conj3_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem } + if slot == 1 { return stem + "s" } + if slot == 2 { return stem + "t" } + if slot == 3 { return stem + "ons" } + if slot == 4 { return stem + "ez" } + return stem + "ent" +} + +fn fro_conj3_past(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "is" } + if slot == 1 { return stem + "is" } + if slot == 2 { return stem + "it" } + if slot == 3 { return stem + "imes" } + if slot == 4 { return stem + "istes" } + return stem + "irent" +} + +fn fro_conj3_future(verb: String, slot: Int) -> String { + // Drop -re (2 bytes) to get consonant-final stem, then add -rai etc. + let base: String = fro_drop(verb, 2) + if slot == 0 { return base + "rai" } + if slot == 1 { return base + "ras" } + if slot == 2 { return base + "ra" } + if slot == 3 { return base + "rons" } + if slot == 4 { return base + "rez" } + return base + "ront" +} + +// ── fro_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Old French infinitive (e.g. "chanter", "finir", "vendre") +// or English canonical label ("be", "go", "have", ...) +// tense: "present" | "past" | "future" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Unknown tenses fall back to the infinitive. + +fn fro_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = fro_map_canonical(verb) + let slot: Int = fro_slot(person, number) + + // ── Irregular: estre (to be) ────────────────────────────────────────────── + if str_eq(v, "estre") { + if str_eq(tense, "present") { return fro_estre_present(slot) } + if str_eq(tense, "past") { return fro_estre_past(slot) } + if str_eq(tense, "future") { return fro_estre_future(slot) } + return v + } + + // ── Irregular: avoir (to have) ──────────────────────────────────────────── + if str_eq(v, "avoir") { + if str_eq(tense, "present") { return fro_avoir_present(slot) } + if str_eq(tense, "past") { return fro_avoir_past(slot) } + if str_eq(tense, "future") { return fro_avoir_future(slot) } + return v + } + + // ── Irregular: aler (to go) ─────────────────────────────────────────────── + if str_eq(v, "aler") { + if str_eq(tense, "present") { return fro_aler_present(slot) } + if str_eq(tense, "past") { return fro_aler_past(slot) } + if str_eq(tense, "future") { return fro_aler_future(slot) } + return v + } + + // ── Irregular: venir (to come) ──────────────────────────────────────────── + if str_eq(v, "venir") { + if str_eq(tense, "present") { return fro_venir_present(slot) } + if str_eq(tense, "past") { return fro_venir_past(slot) } + if str_eq(tense, "future") { return fro_venir_future(slot) } + return v + } + + // ── Irregular: faire (to do/make) ───────────────────────────────────────── + if str_eq(v, "faire") { + if str_eq(tense, "present") { return fro_faire_present(slot) } + if str_eq(tense, "past") { return fro_faire_past(slot) } + if str_eq(tense, "future") { return fro_faire_future(slot) } + return v + } + + // ── Regular conjugations ────────────────────────────────────────────────── + let vclass: String = fro_verb_class(v) + let stem: String = fro_verb_stem(v, vclass) + + if str_eq(vclass, "1") { + if str_eq(tense, "present") { return fro_conj1_present(stem, slot) } + if str_eq(tense, "past") { return fro_conj1_past(stem, slot) } + if str_eq(tense, "future") { return fro_conj1_future(v, slot) } + return v + } + + if str_eq(vclass, "2") { + if str_eq(tense, "present") { return fro_conj2_present(stem, slot) } + if str_eq(tense, "past") { return fro_conj2_past(stem, slot) } + if str_eq(tense, "future") { return fro_conj2_future(v, slot) } + return v + } + + if str_eq(vclass, "3") { + if str_eq(tense, "present") { return fro_conj3_present(stem, slot) } + if str_eq(tense, "past") { return fro_conj3_past(stem, slot) } + if str_eq(tense, "future") { return fro_conj3_future(v, slot) } + return v + } + + // Final fallback: return the infinitive + return v +} + +// ── Gender detection ─────────────────────────────────────────────────────────── +// +// Heuristic gender detection from the citation form (nominative singular). +// Old French gender was inherited from Latin with only two genders surviving: +// masculine and feminine (neuter collapsed into masculine/feminine by Vulgar Latin). +// +// Heuristic: citation form ending in -e -> feminine; otherwise -> masculine. +// This is imperfect but covers the majority of common nouns. + +fn fro_gender(noun: String) -> String { + if fro_str_ends(noun, "e") { return "fem" } + return "masc" +} + +// ── Noun declension ──────────────────────────────────────────────────────────── +// +// Old French two-case system: +// +// Masculine (e.g. mur — wall, stem = mur): +// Singular nominative (cas sujet): murs (stem + -s) +// Singular oblique (cas régime): mur (stem) +// Plural nominative: mur (stem) +// Plural oblique: murs (stem + -s) +// +// This pattern means nominative markers invert relative to Latin: +// the nominative takes -s in singular but loses it in plural, +// while the oblique works the other way round. +// +// Feminine (e.g. dame — lady): +// No case distinction throughout. +// Singular: dame (citation form) +// Plural: dames (citation + -s) +// +// gram_case: "nominative" | "oblique" +// number: "singular" | "plural" + +fn fro_decline_masc(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun + "s" } + // oblique singular: bare stem + return noun + } + // plural + if str_eq(gram_case, "nominative") { return noun } + return noun + "s" +} + +fn fro_decline_fem(noun: String, number: String) -> String { + if str_eq(number, "singular") { return noun } + return noun + "s" +} + +// fro_decline: main declension entry point. +// +// noun: citation form (nominative/oblique singular — typically the bare stem) +// gram_case: "nominative" | "oblique" +// number: "singular" | "plural" + +fn fro_decline(noun: String, gram_case: String, number: String) -> String { + let gender: String = fro_gender(noun) + if str_eq(gender, "masc") { + return fro_decline_masc(noun, gram_case, number) + } + return fro_decline_fem(noun, number) +} + +// ── Definite article ────────────────────────────────────────────────────────── +// +// Old French definite articles are case- and gender-sensitive: +// +// Masculine: +// nom sg: li obl sg: le +// nom pl: li obl pl: les +// +// Feminine: +// sg: la pl: les +// +// gender: "masc" | "fem" +// gram_case: "nominative" | "oblique" +// number: "singular" | "plural" + +fn fro_article(gender: String, gram_case: String, number: String) -> String { + if str_eq(gender, "masc") { + if str_eq(number, "plural") { return "les" } + if str_eq(gram_case, "nominative") { return "li" } + return "le" + } + // feminine + if str_eq(number, "plural") { return "les" } + return "la" +} + +// ── fro_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Assembles a declined noun with an optional definite article. +// +// noun: citation form (nominative/oblique singular stem) +// gram_case: "nominative" | "oblique" +// number: "singular" | "plural" +// definite: "true" to prepend the definite article; any other value omits it + +fn fro_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let gender: String = fro_gender(noun) + let declined: String = fro_decline(noun, gram_case, number) + + if str_eq(definite, "true") { + let art: String = fro_article(gender, gram_case, number) + return art + " " + declined + } + + return declined +} diff --git a/elp/src/morphology-fro.elh b/elp/src/morphology-fro.elh new file mode 100644 index 0000000..823bd0e --- /dev/null +++ b/elp/src/morphology-fro.elh @@ -0,0 +1,38 @@ +// auto-generated by elc --emit-header - do not edit +extern fn fro_str_ends(s: String, suf: String) -> Bool +extern fn fro_drop(s: String, n: Int) -> String +extern fn fro_slot(person: String, number: String) -> Int +extern fn fro_map_canonical(verb: String) -> String +extern fn fro_estre_present(slot: Int) -> String +extern fn fro_estre_past(slot: Int) -> String +extern fn fro_estre_future(slot: Int) -> String +extern fn fro_avoir_present(slot: Int) -> String +extern fn fro_avoir_past(slot: Int) -> String +extern fn fro_avoir_future(slot: Int) -> String +extern fn fro_aler_present(slot: Int) -> String +extern fn fro_aler_past(slot: Int) -> String +extern fn fro_aler_future(slot: Int) -> String +extern fn fro_venir_present(slot: Int) -> String +extern fn fro_venir_past(slot: Int) -> String +extern fn fro_venir_future(slot: Int) -> String +extern fn fro_faire_present(slot: Int) -> String +extern fn fro_faire_past(slot: Int) -> String +extern fn fro_faire_future(slot: Int) -> String +extern fn fro_verb_class(verb: String) -> String +extern fn fro_verb_stem(verb: String, vclass: String) -> String +extern fn fro_conj1_present(stem: String, slot: Int) -> String +extern fn fro_conj1_past(stem: String, slot: Int) -> String +extern fn fro_conj1_future(verb: String, slot: Int) -> String +extern fn fro_conj2_present(stem: String, slot: Int) -> String +extern fn fro_conj2_past(stem: String, slot: Int) -> String +extern fn fro_conj2_future(verb: String, slot: Int) -> String +extern fn fro_conj3_present(stem: String, slot: Int) -> String +extern fn fro_conj3_past(stem: String, slot: Int) -> String +extern fn fro_conj3_future(verb: String, slot: Int) -> String +extern fn fro_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn fro_gender(noun: String) -> String +extern fn fro_decline_masc(noun: String, gram_case: String, number: String) -> String +extern fn fro_decline_fem(noun: String, number: String) -> String +extern fn fro_decline(noun: String, gram_case: String, number: String) -> String +extern fn fro_article(gender: String, gram_case: String, number: String) -> String +extern fn fro_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-gez.el b/elp/src/morphology-gez.el new file mode 100644 index 0000000..d1808f4 --- /dev/null +++ b/elp/src/morphology-gez.el @@ -0,0 +1,506 @@ +// morphology-gez.el - Ge'ez morphology for the NLG engine. +// ግዕዝ — Classical Ethiopic, the liturgical language of the +// Ethiopian Orthodox Church and ancestor of Amharic/Tigrinya. +// +// Implements Ge'ez verb conjugation (perfect and imperfect, basic G-stem), +// noun declension (nominative, accusative, construct; singular and plural), +// and noun-phrase construction. +// +// Ge'ez (also: Classical Ethiopic, gǝʿǝz) is the ancient Semitic language +// of the Kingdom of Axum (ca. 300–900 CE active liturgy; ca. 1st century BCE +// epigraphic attestation). It remains the liturgical language of the +// Ethiopian and Eritrean Orthodox Churches. Modern Ethiopian Semitic languages +// (Amharic, Tigrinya, Tigre) descend from Ge'ez or a closely related ancestor. +// +// Script: Ge'ez Fidel (ፊደል) — an Ethiopic abugida (Unicode U+1200–U+137F). +// Each Fidel character encodes a consonant + vowel combination (7 orders per +// consonant). String literals in this file use actual Unicode characters. +// +// NOTE on El runtime: the El VM currently outputs non-ASCII as numeric hashes +// (runtime limitation for non-Latin scripts). str_eq and string comparisons +// work correctly internally. When the VM adds full UTF-8 output, all Ge'ez +// strings will display correctly automatically. +// +// Language profile: +// code=gez, name=Ge'ez, morph_type=semitic, word_order=SOV, +// script=ethiopic-fidel, family=semitic/south-ethiopic-semitic +// +// Key grammatical facts: +// - SOV word order — unusual for Semitic (Arabic, Hebrew, Akkadian are VSO); +// Ge'ez shares SOV with modern Ethiopian Semitic descendants +// - Semitic trilateral root system (root + vowel pattern = word) +// - Gender: masculine (default) / feminine (often marked with -t suffix) +// - Number: singular / plural; dual vestigial +// - Cases: nominative (unmarked), accusative -a (animate masc nouns), +// construct/genitive (various; simplified to base form here) +// - Plural: no single rule; common patterns: -āt (fem/animate), -ān (masc), +// broken (internal vowel change, unpredictable without lexicon) +// - Verb system: +// Perfect (suffix conjugation): completed action +// Imperfect (prefix conjugation): ongoing / future / habitual +// Four derived stems: basic (G), causative (ʾa-), intensive (doubling), +// passive (te-); this file implements basic G-stem throughout +// - No definite article (unlike Amharic which has suffixed -u/-wa/-itu etc.) +// - Copula: root kwn (ሆነ honä) — "to be / become" +// +// Verb conjugation conventions: +// person: "first" | "second" | "third" +// gender: "m" | "f" +// number: "singular" | "plural" +// tense: "perfect" | "imperfect" +// +// Noun declension conventions: +// gram_case: "nom" | "acc" | "construct" +// number: "singular" | "plural" +// +// Verbs covered (root / Fidel form / transliteration): +// "kwn" / ሆነ (honä) — to be / become (copula) +// "hlw" / ሀሎ (hallo) — to exist / there is +// "hbl" / ሰጠ (säṭṭä) — to give +// "rʾy" / አየ (ʾayyä) — to see +// "qwl" / ተናገረ (tänagärä) — to speak +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn gez_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn gez_str_len(s: String) -> Int { + return str_len(s) +} + +fn gez_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +// ── Slot index ───────────────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based slot for table lookups. +// Gender is handled separately for third-person disambiguation. +// +// Slot layout (6 primary cells): +// 0 = 1sg (I) +// 1 = 2sg (you sg — gender note: Ge'ez distinguishes 2sg m/f in perfect) +// 2 = 3sg m (he) +// 3 = 3sg f (she) +// 4 = 1pl (we) +// 5 = 3pl (they — default masc) + +fn gez_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "plural") { return 4 } + return 0 + } + if str_eq(person, "second") { + return 1 + } + // third + if str_eq(number, "plural") { return 5 } + return 2 +} + +// gez_slot_g: gender-sensitive slot for third-person singular. +fn gez_slot_g(person: String, gender: String, number: String) -> Int { + let base: Int = gez_slot(person, number) + if str_eq(person, "third") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 3 } + } + } + return base +} + +// ── Copula: kwn / ሆነ — to be / become ──────────────────────────────────────── +// +// Perfect paradigm (suffix forms): +// 3sg m: ሆነ honä (base form) +// 3sg f: ሆነት honät (-t suffix) +// 2sg m: ሆንከ honkä (-kä suffix) +// 2sg f: ሆንኪ honki (-ki suffix) +// 1sg: ሆንኩ honku (-ku suffix) +// 3pl m: ሆኑ honu (-u suffix) +// 3pl f: ሆና honā (-ā suffix) +// 2pl: ሆንክሙ honkǝmu (-kǝmu suffix) +// 1pl: ሆንነ honna (-na suffix) +// +// Imperfect paradigm (prefix forms): +// 3sg m: ይሆን yǝhon (yǝ- prefix) +// 3sg f: ትሆን tǝhon (tǝ- prefix) +// 2sg: ትሆን tǝhon (tǝ- prefix) +// 1sg: እሆን ʾǝhon (ʾǝ- prefix) +// 3pl m: ይሆኑ yǝhonu (yǝ- + -u suffix) +// 1pl: ንሆን nǝhon (nǝ- prefix) + +fn gez_kwn_perfect(slot: Int) -> String { + if slot == 0 { return "ሆንኩ" } // 1sg honku + if slot == 1 { return "ሆንከ" } // 2sg m honkä (default; fem: ሆንኪ) + if slot == 2 { return "ሆነ" } // 3sg m honä + if slot == 3 { return "ሆነት" } // 3sg f honät + if slot == 4 { return "ሆንነ" } // 1pl honna + return "ሆኑ" // 3pl honu +} + +fn gez_kwn_imperfect(slot: Int) -> String { + if slot == 0 { return "እሆን" } // 1sg ʾǝhon + if slot == 1 { return "ትሆን" } // 2sg tǝhon + if slot == 2 { return "ይሆን" } // 3sg m yǝhon + if slot == 3 { return "ትሆን" } // 3sg f tǝhon (same prefix as 2sg) + if slot == 4 { return "ንሆን" } // 1pl nǝhon + return "ይሆኑ" // 3pl yǝhonu +} + +fn gez_is_copula(verb: String) -> Bool { + if str_eq(verb, "kwn") { return true } + if str_eq(verb, "ሆነ") { return true } + if str_eq(verb, "hona") { return true } + if str_eq(verb, "be") { return true } + return false +} + +fn gez_conjugate_copula(tense: String, slot: Int) -> String { + if str_eq(tense, "imperfect") { return gez_kwn_imperfect(slot) } + return gez_kwn_perfect(slot) +} + +// ── hlw / ሀሎ — to exist / there is ─────────────────────────────────────────── +// +// hallo is an existential copula used for "there is/are". +// In Ge'ez it is largely invariant in its classical usage (presentational). +// We provide a minimal paradigm; for existential use, hallo is returned for +// all slots in the "perfect" (existential present). + +fn gez_hlw_perfect(slot: Int) -> String { + // Invariant existential for most purposes + if slot == 0 { return "ሀሎኩ" } // 1sg halloku + if slot == 1 { return "ሀሎከ" } // 2sg hallokä + if slot == 2 { return "ሀሎ" } // 3sg m hallo + if slot == 3 { return "ሀለወት" } // 3sg f halläwät + if slot == 4 { return "ሀሎነ" } // 1pl hallonä + return "ሀሉ" // 3pl hallu +} + +fn gez_hlw_imperfect(slot: Int) -> String { + if slot == 0 { return "እሀሉ" } // 1sg + if slot == 1 { return "ትሀሉ" } // 2sg + if slot == 2 { return "ይሀሉ" } // 3sg m + if slot == 3 { return "ትሀሉ" } // 3sg f + if slot == 4 { return "ንሀሉ" } // 1pl + return "ይሀልዉ" // 3pl +} + +// ── hbl / ሰጠ — to give ──────────────────────────────────────────────────────── +// +// Perfect: säṭṭä (3sg m base); standard G-stem suffix paradigm. +// Imperfect: yǝsäṭ (3sg m). + +fn gez_hbl_perfect(slot: Int) -> String { + if slot == 0 { return "ሰጠኩ" } // 1sg säṭṭäku + if slot == 1 { return "ሰጠከ" } // 2sg säṭṭäkä + if slot == 2 { return "ሰጠ" } // 3sg m säṭṭä + if slot == 3 { return "ሰጠት" } // 3sg f säṭṭät + if slot == 4 { return "ሰጠነ" } // 1pl säṭṭänä + return "ሰጡ" // 3pl säṭṭu +} + +fn gez_hbl_imperfect(slot: Int) -> String { + if slot == 0 { return "እሰጥ" } // 1sg ʾǝsäṭ + if slot == 1 { return "ትሰጥ" } // 2sg tǝsäṭ + if slot == 2 { return "ይሰጥ" } // 3sg m yǝsäṭ + if slot == 3 { return "ትሰጥ" } // 3sg f tǝsäṭ + if slot == 4 { return "ንሰጥ" } // 1pl nǝsäṭ + return "ይሰጡ" // 3pl yǝsäṭu +} + +// ── rʾy / አየ — to see ───────────────────────────────────────────────────────── +// +// Third-weak verb (final ʾ). Perfect: ʾayyä (3sg m); imperfect: yāy (3sg m). + +fn gez_ray_perfect(slot: Int) -> String { + if slot == 0 { return "አየኩ" } // 1sg ʾayyäku + if slot == 1 { return "አየከ" } // 2sg ʾayyäkä + if slot == 2 { return "አየ" } // 3sg m ʾayyä + if slot == 3 { return "አየት" } // 3sg f ʾayyät + if slot == 4 { return "አየነ" } // 1pl ʾayyänä + return "አዩ" // 3pl ʾayyu +} + +fn gez_ray_imperfect(slot: Int) -> String { + if slot == 0 { return "እያይ" } // 1sg ʾǝyāy + if slot == 1 { return "ትያይ" } // 2sg tǝyāy + if slot == 2 { return "ያይ" } // 3sg m yāy + if slot == 3 { return "ትያይ" } // 3sg f tǝyāy + if slot == 4 { return "ንያይ" } // 1pl nǝyāy + return "ያዩ" // 3pl yāyu +} + +// ── qwl / ተናገረ — to speak ──────────────────────────────────────────────────── +// +// tänagärä is actually a derived (reciprocal / D-stem) form of the root ngrǝ, +// used as the ordinary word for "to speak" in Classical Ge'ez. +// Perfect: tänagärä (3sg m); imperfect: yǝnagär (3sg m). + +fn gez_qwl_perfect(slot: Int) -> String { + if slot == 0 { return "ተናገርኩ" } // 1sg tänagärku + if slot == 1 { return "ተናገርከ" } // 2sg tänagärkä + if slot == 2 { return "ተናገረ" } // 3sg m tänagärä + if slot == 3 { return "ተናገረት" } // 3sg f tänagärät + if slot == 4 { return "ተናገርነ" } // 1pl tänagärnä + return "ተናገሩ" // 3pl tänagäru +} + +fn gez_qwl_imperfect(slot: Int) -> String { + if slot == 0 { return "እናገር" } // 1sg ʾǝnagär + if slot == 1 { return "ትናገር" } // 2sg tǝnagär + if slot == 2 { return "ይናገር" } // 3sg m yǝnagär + if slot == 3 { return "ትናገር" } // 3sg f tǝnagär + if slot == 4 { return "ንናገር" } // 1pl nǝnagär + return "ይናገሩ" // 3pl yǝnagäru +} + +// ── Generic G-stem paradigm ──────────────────────────────────────────────────── +// +// For regular strong verbs not in the lookup table. +// Ge'ez perfect suffixes: 1sg -ku, 2sg -kä, 3sg m ∅, 3sg f -at, 1pl -nä, 3pl -u +// Ge'ez imperfect prefixes: 1sg ʾǝ-, 2sg tǝ-, 3sg m yǝ-, 3sg f tǝ-, 1pl nǝ- + +fn gez_generic_perfect(base3sg: String, slot: Int) -> String { + if slot == 0 { return base3sg + "ኩ" } // -ku + if slot == 1 { return base3sg + "ከ" } // -kä + if slot == 2 { return base3sg } // ∅ + if slot == 3 { return base3sg + "ት" } // -at (simplified: -t Fidel) + if slot == 4 { return base3sg + "ነ" } // -nä + return base3sg + "ኡ" // -u (3pl) +} + +fn gez_generic_imperfect(base3sg: String, slot: Int) -> String { + // base3sg is the 3sg m imperfect form (with yǝ- prefix) + // We heuristically return the stem with different prefixes. + if slot == 0 { return "እ" + base3sg } // ʾǝ- + if slot == 1 { return "ት" + base3sg } // tǝ- + if slot == 2 { return "ይ" + base3sg } // yǝ- + if slot == 3 { return "ት" + base3sg } // tǝ- + if slot == 4 { return "ን" + base3sg } // nǝ- + return "ይ" + base3sg + "ኡ" // yǝ- + -u (3pl) +} + +// ── Known-verb dispatcher ───────────────────────────────────────────────────── + +fn gez_known_verb(verb: String, tense: String, slot: Int) -> String { + // kwn / ሆነ — to be + if str_eq(verb, "kwn") { + return gez_conjugate_copula(tense, slot) + } + if str_eq(verb, "ሆነ") { + return gez_conjugate_copula(tense, slot) + } + if str_eq(verb, "hona") { + return gez_conjugate_copula(tense, slot) + } + + // hlw / ሀሎ — to exist + if str_eq(verb, "hlw") { + if str_eq(tense, "imperfect") { return gez_hlw_imperfect(slot) } + return gez_hlw_perfect(slot) + } + if str_eq(verb, "ሀሎ") { + if str_eq(tense, "imperfect") { return gez_hlw_imperfect(slot) } + return gez_hlw_perfect(slot) + } + if str_eq(verb, "hallo") { + if str_eq(tense, "imperfect") { return gez_hlw_imperfect(slot) } + return gez_hlw_perfect(slot) + } + + // hbl / ሰጠ — to give + if str_eq(verb, "hbl") { + if str_eq(tense, "imperfect") { return gez_hbl_imperfect(slot) } + return gez_hbl_perfect(slot) + } + if str_eq(verb, "ሰጠ") { + if str_eq(tense, "imperfect") { return gez_hbl_imperfect(slot) } + return gez_hbl_perfect(slot) + } + if str_eq(verb, "sätta") { + if str_eq(tense, "imperfect") { return gez_hbl_imperfect(slot) } + return gez_hbl_perfect(slot) + } + + // rʾy / አየ — to see + if str_eq(verb, "rʾy") { + if str_eq(tense, "imperfect") { return gez_ray_imperfect(slot) } + return gez_ray_perfect(slot) + } + if str_eq(verb, "አየ") { + if str_eq(tense, "imperfect") { return gez_ray_imperfect(slot) } + return gez_ray_perfect(slot) + } + if str_eq(verb, "ʾayya") { + if str_eq(tense, "imperfect") { return gez_ray_imperfect(slot) } + return gez_ray_perfect(slot) + } + + // qwl / ተናገረ — to speak + if str_eq(verb, "qwl") { + if str_eq(tense, "imperfect") { return gez_qwl_imperfect(slot) } + return gez_qwl_perfect(slot) + } + if str_eq(verb, "ተናገረ") { + if str_eq(tense, "imperfect") { return gez_qwl_imperfect(slot) } + return gez_qwl_perfect(slot) + } + if str_eq(verb, "tänagärä") { + if str_eq(tense, "imperfect") { return gez_qwl_imperfect(slot) } + return gez_qwl_perfect(slot) + } + + return "" +} + +// ── Main conjugation entry point ────────────────────────────────────────────── +// +// gez_conjugate: conjugate a Ge'ez verb (G-stem / basic stem). +// +// verb: root (e.g. "kwn", "rʾy"), Fidel citation form (e.g. "ሆነ"), +// or transliterated 3sg perfect (e.g. "hona", "ʾayya") +// tense: "perfect" | "imperfect" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns: +// - Fidel string (Unicode) for known verbs +// - verb unchanged as safe fallback for unknown verbs + +fn gez_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let slot: Int = gez_slot(person, number) + + if gez_is_copula(verb) { + return gez_conjugate_copula(tense, slot) + } + + let known: String = gez_known_verb(verb, tense, slot) + if !str_eq(known, "") { + return known + } + + return verb +} + +// ── Noun declension ──────────────────────────────────────────────────────────── +// +// gez_decline: decline a Ge'ez noun for gram_case and number. +// +// Case system (simplified for this engine): +// Nominative: base form (unmarked — the Fidel form as given) +// Accusative: base + -a (for animate masculine nouns; inanimate often same) +// Construct: base form (genitive/construct; detailed vowel alternations +// are lexically irregular — simplified to base here) +// +// Plural patterns (highly irregular in Ge'ez, like Arabic broken plurals): +// Common productive suffixes: +// Feminine/animate: -āt (ሀዋርያት hawāryāt — apostles) +// Masculine: -ān (ነቢያን nabiyān — prophets) +// Broken plurals: unpredictable — must come from vocabulary layer. +// Fallback: base + "āt" (ア default) +// +// noun: base singular form (Fidel or transliterated) +// gram_case: "nom" | "acc" | "construct" +// number: "singular" | "plural" + +fn gez_is_fidel(noun: String) -> Bool { + // Ethiopic Unicode block starts at U+1200 (ሀ). + // We detect by checking a set of common Fidel first characters. + let n: Int = gez_str_len(noun) + if n == 0 { return false } + let first: String = str_slice(noun, 0, 1) + if str_eq(first, "ሀ") { return true } + if str_eq(first, "ሁ") { return true } + if str_eq(first, "ሂ") { return true } + if str_eq(first, "ሃ") { return true } + if str_eq(first, "ሄ") { return true } + if str_eq(first, "ህ") { return true } + if str_eq(first, "ሆ") { return true } + if str_eq(first, "ለ") { return true } + if str_eq(first, "መ") { return true } + if str_eq(first, "ሰ") { return true } + if str_eq(first, "ሸ") { return true } + if str_eq(first, "ቀ") { return true } + if str_eq(first, "በ") { return true } + if str_eq(first, "ተ") { return true } + if str_eq(first, "ነ") { return true } + if str_eq(first, "አ") { return true } + if str_eq(first, "እ") { return true } + if str_eq(first, "ከ") { return true } + if str_eq(first, "ወ") { return true } + if str_eq(first, "ዘ") { return true } + if str_eq(first, "የ") { return true } + if str_eq(first, "ደ") { return true } + if str_eq(first, "ገ") { return true } + if str_eq(first, "ጠ") { return true } + if str_eq(first, "ፀ") { return true } + if str_eq(first, "ፈ") { return true } + if str_eq(first, "ፐ") { return true } + return false +} + +fn gez_decline(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "plural") { + // Plural: default suffix -āt (Fidel: append transliterated marker for + // non-Fidel input; for Fidel input append ት as the -āt marker) + if gez_is_fidel(noun) { + return noun + "ዎች" // simplified -woc plural marker (Ge'ez -āt ≈ ዎ) + } + return noun + "āt" + } + + // Singular + if str_eq(gram_case, "acc") { + // Accusative: add -a suffix + if gez_is_fidel(noun) { + return noun + "ን" // accusative object marker (simplified) + } + return noun + "a" + } + + // Nominative and construct: return base form + return noun +} + +// ── Noun phrase ──────────────────────────────────────────────────────────────── +// +// gez_noun_phrase: produce the surface noun phrase. +// +// Ge'ez has no definite article (unlike Amharic's suffix -u/-wa/-itu). +// Definiteness is expressed through word order and context. +// The definite parameter is accepted for interface uniformity but has no +// surface effect. +// +// noun: base noun (Fidel string or transliteration) +// gram_case: "nom" | "acc" | "construct" +// number: "singular" | "plural" +// definite: "true" | "false" (no surface effect in Ge'ez) + +fn gez_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return gez_decline(noun, gram_case, number) +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// gez_map_canonical: map cross-lingual English canonical verb labels to +// Ge'ez roots or citation forms. + +fn gez_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "kwn" } + if str_eq(verb, "exist") { return "hlw" } + if str_eq(verb, "give") { return "hbl" } + if str_eq(verb, "see") { return "rʾy" } + if str_eq(verb, "speak") { return "qwl" } + if str_eq(verb, "say") { return "qwl" } + return verb +} diff --git a/elp/src/morphology-gez.elh b/elp/src/morphology-gez.elh new file mode 100644 index 0000000..c26912a --- /dev/null +++ b/elp/src/morphology-gez.elh @@ -0,0 +1,26 @@ +// auto-generated by elc --emit-header - do not edit +extern fn gez_str_ends(s: String, suf: String) -> Bool +extern fn gez_str_len(s: String) -> Int +extern fn gez_str_drop_last(s: String, n: Int) -> String +extern fn gez_slot(person: String, number: String) -> Int +extern fn gez_slot_g(person: String, gender: String, number: String) -> Int +extern fn gez_kwn_perfect(slot: Int) -> String +extern fn gez_kwn_imperfect(slot: Int) -> String +extern fn gez_is_copula(verb: String) -> Bool +extern fn gez_conjugate_copula(tense: String, slot: Int) -> String +extern fn gez_hlw_perfect(slot: Int) -> String +extern fn gez_hlw_imperfect(slot: Int) -> String +extern fn gez_hbl_perfect(slot: Int) -> String +extern fn gez_hbl_imperfect(slot: Int) -> String +extern fn gez_ray_perfect(slot: Int) -> String +extern fn gez_ray_imperfect(slot: Int) -> String +extern fn gez_qwl_perfect(slot: Int) -> String +extern fn gez_qwl_imperfect(slot: Int) -> String +extern fn gez_generic_perfect(base3sg: String, slot: Int) -> String +extern fn gez_generic_imperfect(base3sg: String, slot: Int) -> String +extern fn gez_known_verb(verb: String, tense: String, slot: Int) -> String +extern fn gez_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn gez_is_fidel(noun: String) -> Bool +extern fn gez_decline(noun: String, gram_case: String, number: String) -> String +extern fn gez_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String +extern fn gez_map_canonical(verb: String) -> String diff --git a/elp/src/morphology-goh.el b/elp/src/morphology-goh.el new file mode 100644 index 0000000..d83c50e --- /dev/null +++ b/elp/src/morphology-goh.el @@ -0,0 +1,636 @@ +// morphology-goh.el - Old High German morphology for the NLG engine. +// +// Implements Old High German verb conjugation, noun declension, and the +// demonstrative determiner. Designed as a companion to morphology.el and +// called by the engine when the language profile code is "goh". +// +// Language profile: code=goh, name=Old High German, morph_type=fusional, +// word_order=V2, question_strategy=inversion, script=latin, +// family=germanic. +// +// Historical note: Old High German (ca. 750–1050 CE) is the earliest +// substantially attested stage of High German, preserved in texts such as the +// Hildebrandslied, the Muspilli, and Notker's translations. It is the +// ancestor of Middle High German and thence Modern German. The "High" refers +// to the geographical highlands of southern Germany, Austria, and Switzerland — +// distinct from the Low German / Old Saxon dialects spoken to the north. +// +// Defining feature — the Second Germanic Consonant Shift (Hochdeutsche +// Lautverschiebung), which distinguishes OHG from Gothic and Old English: +// p → ff/pf (Gothic "skip" → OHG "skif"; Goth "apan" → OHG "affo") +// t → ss/z (Goth "watan" → OHG "wazzer"; OE "tid" → OHG "zit") +// k → ch (Goth "mikan" → OHG "mihil") +// This shift only applies to inherited consonants and not to recent loanwords. +// +// Three genders (masculine, feminine, neuter), four cases (nominative, +// accusative, genitive, dative), and two numbers (singular, plural). +// +// Verb conjugation covered: +// Tenses: present indicative, past indicative +// Persons: first/second/third × singular/plural (slots 0-5) +// Classes: weak verbs (dental -ta past suffix — the most productive class) +// Irregulars: wesan/sīn (be), habēn (have), gān (go), sehan (see), +// quethan (say), tuon (do) +// Canonical map: "be" -> "wesan" +// +// Noun declension covered: +// Strong masc a-stem (tag — day): 4 cases × sg/pl +// Strong fem ō-stem (geba — gift): 4 cases × sg/pl +// Strong neut a-stem (wort — word): 4 cases × sg/pl +// Weak masc n-stem (boto — messenger): 4 cases × sg/pl +// +// Demonstrative / definite article: +// OHG uses the demonstrative dër/diu/daz (the) which doubles as a definite +// determiner. This implementation selects the correct nominative form by +// inferred gender and passes it as a separate word before the noun. +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn goh_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn goh_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based paradigm index. +// 0 = 1st singular (ih) +// 1 = 2nd singular (dū) +// 2 = 3rd singular (ër/siu/ez) +// 3 = 1st plural (wir) +// 4 = 2nd plural (ir) +// 5 = 3rd plural (sie) + +fn goh_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third person + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// English semantic-layer labels are resolved to OHG dictionary infinitives +// before conjugation. + +fn goh_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "wesan" } + if str_eq(verb, "have") { return "haben" } + if str_eq(verb, "go") { return "gan" } + if str_eq(verb, "see") { return "sehan" } + if str_eq(verb, "say") { return "quethan" } + if str_eq(verb, "do") { return "tuon" } + if str_eq(verb, "make") { return "tuon" } + if str_eq(verb, "come") { return "queman" } + if str_eq(verb, "give") { return "geban" } + if str_eq(verb, "know") { return "wizzan" } + if str_eq(verb, "want") { return "wellan" } + return verb +} + +// ── Irregular verb: wesan/sīn (to be) ──────────────────────────────────────── +// +// wesan is one of the most irregular verbs in OHG. The present uses the +// bim/bin- forms (from Proto-Germanic *biju-); the past uses the was-/wāri- +// forms (from the strong past of wesan). +// +// Present indicative: +// 1sg bim/bin 2sg bist 3sg ist +// 1pl birum 2pl biruț 3pl sint +// +// Note: 2pl "biruț" — the ț represents an old dental fricative; rendered here +// as "birut" (common orthographic variant in OHG manuscripts). +// +// Past indicative: +// 1sg was 2sg wāri 3sg was +// 1pl wārum 2pl wāruț 3pl wārun + +fn goh_wesan_present(slot: Int) -> String { + if slot == 0 { return "bim" } + if slot == 1 { return "bist" } + if slot == 2 { return "ist" } + if slot == 3 { return "birum" } + if slot == 4 { return "birut" } + return "sint" +} + +fn goh_wesan_past(slot: Int) -> String { + if slot == 0 { return "was" } + if slot == 1 { return "wari" } + if slot == 2 { return "was" } + if slot == 3 { return "warum" } + if slot == 4 { return "warut" } + return "warun" +} + +// ── Irregular verb: habēn (to have) ─────────────────────────────────────────── +// +// habēn is an athematic preterite-present verb. +// +// Present indicative: +// 1sg habem 2sg habest 3sg habet +// 1pl habemes 2pl habet 3pl habent +// +// Past (weak past -ta on stem hab-): +// 1sg habeta 2sg habetos 3sg habeta +// 1pl habetom 2pl habetot 3pl habeton + +fn goh_haben_present(slot: Int) -> String { + if slot == 0 { return "habem" } + if slot == 1 { return "habest" } + if slot == 2 { return "habet" } + if slot == 3 { return "habemes" } + if slot == 4 { return "habet" } + return "habent" +} + +fn goh_haben_past(slot: Int) -> String { + if slot == 0 { return "habeta" } + if slot == 1 { return "habetos" } + if slot == 2 { return "habeta" } + if slot == 3 { return "habetom" } + if slot == 4 { return "habetot" } + return "habeton" +} + +// ── Irregular verb: gān (to go) ─────────────────────────────────────────────── +// +// gān is an anomalous contracted verb. +// +// Present indicative: +// 1sg gan 2sg gest 3sg get +// 1pl games 2pl gat 3pl gant +// +// Past (reduplicating/suppletive — giang- forms): +// 1sg giang 2sg giangi 3sg giang +// 1pl giangum 2pl giangun 3pl giangun + +fn goh_gan_present(slot: Int) -> String { + if slot == 0 { return "gan" } + if slot == 1 { return "gest" } + if slot == 2 { return "get" } + if slot == 3 { return "games" } + if slot == 4 { return "gat" } + return "gant" +} + +fn goh_gan_past(slot: Int) -> String { + if slot == 0 { return "giang" } + if slot == 1 { return "giangi" } + if slot == 2 { return "giang" } + if slot == 3 { return "giangum" } + if slot == 4 { return "giangun" } + return "giangun" +} + +// ── Irregular verb: sehan (to see) ──────────────────────────────────────────── +// +// Strong class 5 (ablaut e/a). Present has i-mutation in sg forms. +// +// Present indicative: +// 1sg sihu 2sg sihist 3sg sihit +// 1pl sehemes 2pl sehet 3pl sehent +// +// Past (strong ablaut: e → a): +// 1sg sah 2sg sahi 3sg sah +// 1pl sahum 2pl sahut 3pl sahun + +fn goh_sehan_present(slot: Int) -> String { + if slot == 0 { return "sihu" } + if slot == 1 { return "sihist" } + if slot == 2 { return "sihit" } + if slot == 3 { return "sehemes" } + if slot == 4 { return "sehet" } + return "sehent" +} + +fn goh_sehan_past(slot: Int) -> String { + if slot == 0 { return "sah" } + if slot == 1 { return "sahi" } + if slot == 2 { return "sah" } + if slot == 3 { return "sahum" } + if slot == 4 { return "sahut" } + return "sahun" +} + +// ── Irregular verb: quethan (to say) ────────────────────────────────────────── +// +// Strong class 5 (ablaut e/a). Present sg has i-mutation (quid-). +// +// Present indicative: +// 1sg quidu 2sg quidist 3sg quidit +// 1pl quethumes 2pl quethet 3pl quethent +// +// Past (strong ablaut: e → a): +// 1sg quad 2sg quadi 3sg quad +// 1pl quadum 2pl quadut 3pl quadun + +fn goh_quethan_present(slot: Int) -> String { + if slot == 0 { return "quidu" } + if slot == 1 { return "quidist" } + if slot == 2 { return "quidit" } + if slot == 3 { return "quethumes" } + if slot == 4 { return "quethet" } + return "quethent" +} + +fn goh_quethan_past(slot: Int) -> String { + if slot == 0 { return "quad" } + if slot == 1 { return "quadi" } + if slot == 2 { return "quad" } + if slot == 3 { return "quadum" } + if slot == 4 { return "quadut" } + return "quadun" +} + +// ── Irregular verb: tuon (to do/make) ───────────────────────────────────────── +// +// tuon is a contracted athematic verb. +// +// Present indicative: +// 1sg tuom 2sg tuost 3sg tuot +// 1pl tuomes 2pl tuot 3pl tuont +// +// Past (weak past -ta on stem tā-): +// 1sg teta 2sg tetos 3sg teta +// 1pl tetom 2pl tetot 3pl teton + +fn goh_tuon_present(slot: Int) -> String { + if slot == 0 { return "tuom" } + if slot == 1 { return "tuost" } + if slot == 2 { return "tuot" } + if slot == 3 { return "tuomes" } + if slot == 4 { return "tuot" } + return "tuont" +} + +fn goh_tuon_past(slot: Int) -> String { + if slot == 0 { return "teta" } + if slot == 1 { return "tetos" } + if slot == 2 { return "teta" } + if slot == 3 { return "tetom" } + if slot == 4 { return "tetot" } + return "teton" +} + +// ── Weak verb regular paradigm ───────────────────────────────────────────────── +// +// Weak verbs are the productive OHG class — new verbs are regularly formed on +// this pattern. The infinitive ends in -en or -on; the weak past uses the +// dental suffix -ta/-to (a reflex of Proto-Germanic *-dō-). +// +// Class 1 weak (most common; infinitive -en, stem ends in consonant): +// +// Present indicative (stem + ending): +// 1sg -u 2sg -ist 3sg -it +// 1pl -emēs 2pl -et 3pl -ent +// +// Past indicative (stem + dental suffix): +// 1sg -ta 2sg -tōs 3sg -ta +// 1pl -tōm 2pl -tōt 3pl -tōn +// +// The stem for a regular weak verb is obtained by dropping -en (2 bytes). + +fn goh_weak_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "u" } + if slot == 1 { return stem + "ist" } + if slot == 2 { return stem + "it" } + if slot == 3 { return stem + "emes" } + if slot == 4 { return stem + "et" } + return stem + "ent" +} + +fn goh_weak_past(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "ta" } + if slot == 1 { return stem + "tos" } + if slot == 2 { return stem + "ta" } + if slot == 3 { return stem + "tom" } + if slot == 4 { return stem + "tot" } + return stem + "ton" +} + +// goh_verb_stem: strip the infinitive ending to expose the productive stem. +// -en endings: drop 2 bytes (most weak verbs: sagēn → sag-) +// -on endings: drop 2 bytes (class 2 weak: lobōn → lob-) +// -an endings: drop 2 bytes (strong verbs handled as irregular; fallback) + +fn goh_verb_stem(verb: String) -> String { + return goh_drop(verb, 2) +} + +// ── goh_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: OHG infinitive (e.g. "sagēn", "lobōn") or English canonical label +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Unknown tenses fall back to the infinitive. + +fn goh_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = goh_map_canonical(verb) + let slot: Int = goh_slot(person, number) + + // ── Irregular: wesan (to be) ────────────────────────────────────────────── + if str_eq(v, "wesan") { + if str_eq(tense, "present") { return goh_wesan_present(slot) } + if str_eq(tense, "past") { return goh_wesan_past(slot) } + return v + } + + // ── Irregular: habēn / haben (to have) ─────────────────────────────────── + if str_eq(v, "haben") { + if str_eq(tense, "present") { return goh_haben_present(slot) } + if str_eq(tense, "past") { return goh_haben_past(slot) } + return v + } + + // Also match the macron-spelled infinitive if passed directly + if str_eq(v, "haben") { + if str_eq(tense, "present") { return goh_haben_present(slot) } + if str_eq(tense, "past") { return goh_haben_past(slot) } + return v + } + + // ── Irregular: gān / gan (to go) ───────────────────────────────────────── + if str_eq(v, "gan") { + if str_eq(tense, "present") { return goh_gan_present(slot) } + if str_eq(tense, "past") { return goh_gan_past(slot) } + return v + } + + // ── Irregular: sehan (to see) ───────────────────────────────────────────── + if str_eq(v, "sehan") { + if str_eq(tense, "present") { return goh_sehan_present(slot) } + if str_eq(tense, "past") { return goh_sehan_past(slot) } + return v + } + + // ── Irregular: quethan (to say) ─────────────────────────────────────────── + if str_eq(v, "quethan") { + if str_eq(tense, "present") { return goh_quethan_present(slot) } + if str_eq(tense, "past") { return goh_quethan_past(slot) } + return v + } + + // ── Irregular: tuon (to do/make) ────────────────────────────────────────── + if str_eq(v, "tuon") { + if str_eq(tense, "present") { return goh_tuon_present(slot) } + if str_eq(tense, "past") { return goh_tuon_past(slot) } + return v + } + + // ── Regular weak conjugation ────────────────────────────────────────────── + let stem: String = goh_verb_stem(v) + + if str_eq(tense, "present") { return goh_weak_present(stem, slot) } + if str_eq(tense, "past") { return goh_weak_past(stem, slot) } + + // Final fallback: return the infinitive + return v +} + +// ── Noun stem type detection ─────────────────────────────────────────────────── +// +// OHG nouns are grouped by historical stem class. This engine supports four: +// +// "masc_a" — strong masculine a-stem (tag, fisc, arm) +// "fem_o" — strong feminine ō-stem (geba, zala, burg) +// "neut_a" — strong neuter a-stem (wort, kind, tier) +// "masc_n" — weak masculine n-stem (boto, hazo, namo) +// +// Detection heuristic from the citation form (nominative singular): +// ends in -o → masc_n (weak masc nouns: boto, hazo) +// ends in -a → fem_o (strong fem: geba, zala) +// ends in -t, -d, -n (common neuter endings) → neut_a +// otherwise → masc_a (default strong masculine) +// +// Callers may override by passing the stem type directly when the heuristic +// would produce the wrong class (e.g. for monosyllables with ambiguous endings). + +fn goh_stem_type(noun: String) -> String { + if goh_str_ends(noun, "o") { return "masc_n" } + if goh_str_ends(noun, "a") { return "fem_o" } + if goh_str_ends(noun, "t") { return "neut_a" } + if goh_str_ends(noun, "d") { return "neut_a" } + if goh_str_ends(noun, "nd") { return "neut_a" } + return "masc_a" +} + +// goh_extract_stem: derive the bare stem used as the base for all case endings. +// +// masc_a: citation form is nom sg without ending (tag = tag, fisc = fisc) +// — citation IS the stem; no stripping needed +// fem_o: strip final -a (geba → geb-) +// neut_a: citation form is nom/acc sg without ending (wort = wort) +// — citation IS the stem; no stripping needed +// masc_n: strip final -o (boto → bot-) + +fn goh_extract_stem(noun: String, stype: String) -> String { + if str_eq(stype, "fem_o") { return goh_drop(noun, 1) } + if str_eq(stype, "masc_n") { return goh_drop(noun, 1) } + // masc_a and neut_a: citation IS the stem + return noun +} + +// ── Strong masculine a-stem declension (tag — day) ──────────────────────────── +// +// The strong masculine a-stem is the most common OHG masculine class. +// It corresponds to the Gothic a-stem and the Latin 2nd-declension masculine. +// +// Paradigm (stem = tag-): +// Singular: nom tag acc tag gen tages dat tage +// Plural: nom taga acc taga gen tago dat tagum + +fn goh_decline_masc_a_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem } + if str_eq(gram_case, "accusative") { return stem } + if str_eq(gram_case, "genitive") { return stem + "es" } + if str_eq(gram_case, "dative") { return stem + "e" } + return stem +} + +fn goh_decline_masc_a_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "a" } + if str_eq(gram_case, "accusative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "o" } + if str_eq(gram_case, "dative") { return stem + "um" } + return stem + "a" +} + +// ── Strong feminine ō-stem declension (geba — gift) ────────────────────────── +// +// The ō-stem feminines are the standard OHG feminine class. +// They correspond to the Gothic o-stem and Latin 1st-declension nouns. +// +// Paradigm (stem = geb-): +// Singular: nom geba acc geba gen gebā dat gebu +// Plural: nom gebā acc gebā gen gebōno dat gebōm + +fn goh_decline_fem_o_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "a" } + if str_eq(gram_case, "accusative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "a" } + if str_eq(gram_case, "dative") { return stem + "u" } + return stem + "a" +} + +fn goh_decline_fem_o_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "a" } + if str_eq(gram_case, "accusative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "ono" } + if str_eq(gram_case, "dative") { return stem + "om" } + return stem + "a" +} + +// ── Strong neuter a-stem declension (wort — word) ───────────────────────────── +// +// Strong neuter nouns share the a-stem pattern but have identical nom/acc +// throughout (a pan-Germanic neuter feature). The plural differs from the +// masculine in the nom/acc: neuters use stem alone rather than stem + -a. +// +// Paradigm (stem = wort): +// Singular: nom wort acc wort gen wortes dat worte +// Plural: nom wort acc wort gen worto dat wortum + +fn goh_decline_neut_a_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem } + if str_eq(gram_case, "accusative") { return stem } + if str_eq(gram_case, "genitive") { return stem + "es" } + if str_eq(gram_case, "dative") { return stem + "e" } + return stem +} + +fn goh_decline_neut_a_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem } + if str_eq(gram_case, "accusative") { return stem } + if str_eq(gram_case, "genitive") { return stem + "o" } + if str_eq(gram_case, "dative") { return stem + "um" } + return stem +} + +// ── Weak masculine n-stem declension (boto — messenger) ─────────────────────── +// +// Weak nouns (n-stems) are characterised by the nasal -n- appearing in all +// forms except the nominative singular. They correspond to the Gothic n-stem +// and the Old English weak noun class. +// +// Paradigm (stem = bot-): +// Singular: nom boto acc boton gen boton dat boton +// Plural: nom boton acc boton gen botōno dat botōm + +fn goh_decline_masc_n_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "o" } + if str_eq(gram_case, "accusative") { return stem + "on" } + if str_eq(gram_case, "genitive") { return stem + "on" } + if str_eq(gram_case, "dative") { return stem + "on" } + return stem + "o" +} + +fn goh_decline_masc_n_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "on" } + if str_eq(gram_case, "accusative") { return stem + "on" } + if str_eq(gram_case, "genitive") { return stem + "ono" } + if str_eq(gram_case, "dative") { return stem + "om" } + return stem + "on" +} + +// ── goh_decline: main declension entry point ────────────────────────────────── +// +// noun: OHG nominative singular form (e.g. "tag", "geba", "wort", "boto") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// +// Returns the inflected form. Unknown stem types return the citation form +// unchanged as a safe fallback. + +fn goh_decline(noun: String, gram_case: String, number: String) -> String { + let stype: String = goh_stem_type(noun) + let stem: String = goh_extract_stem(noun, stype) + + if str_eq(stype, "masc_a") { + if str_eq(number, "singular") { return goh_decline_masc_a_sg(stem, gram_case) } + return goh_decline_masc_a_pl(stem, gram_case) + } + + if str_eq(stype, "fem_o") { + if str_eq(number, "singular") { return goh_decline_fem_o_sg(stem, gram_case) } + return goh_decline_fem_o_pl(stem, gram_case) + } + + if str_eq(stype, "neut_a") { + if str_eq(number, "singular") { return goh_decline_neut_a_sg(stem, gram_case) } + return goh_decline_neut_a_pl(stem, gram_case) + } + + if str_eq(stype, "masc_n") { + if str_eq(number, "singular") { return goh_decline_masc_n_sg(stem, gram_case) } + return goh_decline_masc_n_pl(stem, gram_case) + } + + // Unknown: return citation form unchanged + return noun +} + +// ── Demonstrative article ────────────────────────────────────────────────────── +// +// OHG uses the demonstrative pronoun dër/diu/daz as a definite determiner. +// Full declension of this pronoun is complex; this implementation provides the +// nominative forms used as determiners before nouns. +// +// Nominative forms (the most common slot for a determiner): +// Masculine sg: der Feminine sg: diu Neuter sg: daz +// Plural (all genders): die +// +// Gender is inferred from the stem type: +// masc_a → masculine → "der" +// fem_o → feminine → "diu" +// neut_a → neuter → "daz" +// masc_n → masculine → "der" + +fn goh_demo_article(stype: String, number: String) -> String { + if str_eq(number, "plural") { return "die" } + if str_eq(stype, "fem_o") { return "diu" } + if str_eq(stype, "neut_a") { return "daz" } + return "der" +} + +// ── goh_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Assembles a declined noun with an optional OHG demonstrative article. +// +// noun: OHG nominative singular (e.g. "tag", "geba", "wort", "boto") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" to prepend the demonstrative determiner; any other value omits it +// +// Note: the demonstrative is given in its nominative singular form for +// simplicity. Full agreement would require a separate declined demonstrative +// paradigm; the NLG layer should implement that when case-agreement on the +// determiner is required. + +fn goh_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let stype: String = goh_stem_type(noun) + let declined: String = goh_decline(noun, gram_case, number) + + if str_eq(definite, "true") { + let art: String = goh_demo_article(stype, number) + return art + " " + declined + } + + return declined +} diff --git a/elp/src/morphology-goh.elh b/elp/src/morphology-goh.elh new file mode 100644 index 0000000..2226247 --- /dev/null +++ b/elp/src/morphology-goh.elh @@ -0,0 +1,34 @@ +// auto-generated by elc --emit-header - do not edit +extern fn goh_str_ends(s: String, suf: String) -> Bool +extern fn goh_drop(s: String, n: Int) -> String +extern fn goh_slot(person: String, number: String) -> Int +extern fn goh_map_canonical(verb: String) -> String +extern fn goh_wesan_present(slot: Int) -> String +extern fn goh_wesan_past(slot: Int) -> String +extern fn goh_haben_present(slot: Int) -> String +extern fn goh_haben_past(slot: Int) -> String +extern fn goh_gan_present(slot: Int) -> String +extern fn goh_gan_past(slot: Int) -> String +extern fn goh_sehan_present(slot: Int) -> String +extern fn goh_sehan_past(slot: Int) -> String +extern fn goh_quethan_present(slot: Int) -> String +extern fn goh_quethan_past(slot: Int) -> String +extern fn goh_tuon_present(slot: Int) -> String +extern fn goh_tuon_past(slot: Int) -> String +extern fn goh_weak_present(stem: String, slot: Int) -> String +extern fn goh_weak_past(stem: String, slot: Int) -> String +extern fn goh_verb_stem(verb: String) -> String +extern fn goh_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn goh_stem_type(noun: String) -> String +extern fn goh_extract_stem(noun: String, stype: String) -> String +extern fn goh_decline_masc_a_sg(stem: String, gram_case: String) -> String +extern fn goh_decline_masc_a_pl(stem: String, gram_case: String) -> String +extern fn goh_decline_fem_o_sg(stem: String, gram_case: String) -> String +extern fn goh_decline_fem_o_pl(stem: String, gram_case: String) -> String +extern fn goh_decline_neut_a_sg(stem: String, gram_case: String) -> String +extern fn goh_decline_neut_a_pl(stem: String, gram_case: String) -> String +extern fn goh_decline_masc_n_sg(stem: String, gram_case: String) -> String +extern fn goh_decline_masc_n_pl(stem: String, gram_case: String) -> String +extern fn goh_decline(noun: String, gram_case: String, number: String) -> String +extern fn goh_demo_article(stype: String, number: String) -> String +extern fn goh_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-got.el b/elp/src/morphology-got.el new file mode 100644 index 0000000..5569989 --- /dev/null +++ b/elp/src/morphology-got.el @@ -0,0 +1,679 @@ +// morphology-got.el - Gothic morphology for the NLG engine. +// +// Implements Gothic verb conjugation and noun declension using standard +// Gothic Latin romanisation. Designed as a companion to morphology.el and +// called by the engine when the language profile code is "got". +// +// Language profile: code=got, name=Gothic, morph_type=fusional, +// word_order=SOV, question_strategy=intonation, script=gothic-latin, +// family=germanic. +// +// Historical note: Gothic is attested primarily in the 4th-century Bible +// translation by Bishop Wulfila (Ulfilas). It is the earliest substantially +// attested Germanic language and preserves many archaic features lost in later +// branches (e.g. distinct dual, mediopassive voice, four-case system). +// +// Romanisation conventions used in this file: +// þ — thorn (voiced/voiceless dental fricative; like "th" in "the/thin") +// ƕ — hwair (Gothic hw-, like "wh" in older English "what") +// q — Gothic q (labiovelar stop, like "qu") +// ei — long /iː/ (Gothic digraph) +// ai — short /ɛ/ (Gothic digraph, not a diphthong) +// au — short /ɔ/ (Gothic digraph, not a diphthong) +// Standard vowels: a e i u (short) +// +// Verb conjugation covered: +// Tenses: present indicative active, past indicative active +// Persons: first/second/third × singular/plural +// Classes: weak class 1 (-jan verbs), weak class 2 (-on verbs) as +// the regular productive paths +// Irregulars: wisan (be), haban (have), gaggan (go), saihwan (see), +// qiþan (say), niman (take) +// Canonical map: "be" -> "wisan" +// +// Noun declension covered: +// Cases: nominative, accusative, genitive, dative (all 4 Gothic cases) +// Stem types: a-stem masc (paradigm: dags — day), +// o-stem fem (paradigm: gibo — gift), +// n-stem masc (paradigm: guma — man) +// Numbers: singular, plural +// +// Demonstrative / article: +// Gothic has no definite article proper. The demonstrative pronoun +// sa (masc) / so (fem) / þata (neut) functions as a near-definite +// determiner. got_noun_phrase prepends "sa" (masc) or "þo" (fem) when +// definite=true. Gender must be inferred from stem class: a-stem → masc, +// o-stem → fem, n-stem → masc. +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn got_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn got_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Gothic has singular, dual, and plural. The dual is historically attested +// for first and second person only (e.g. 1du wit, 2du jut) but is quite rare +// even in the Gothic corpus. For NLG simplicity the dual is treated as plural. +// +// 0 = 1st singular +// 1 = 2nd singular +// 2 = 3rd singular +// 3 = 1st plural +// 4 = 2nd plural +// 5 = 3rd plural + +fn got_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third person + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// English semantic-layer labels are mapped to Gothic dictionary forms before +// conjugation. Dictionary forms are the infinitive. + +fn got_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "wisan" } + if str_eq(verb, "have") { return "haban" } + if str_eq(verb, "go") { return "gaggan" } + if str_eq(verb, "see") { return "saihwan" } + if str_eq(verb, "say") { return "qiþan" } + if str_eq(verb, "take") { return "niman" } + if str_eq(verb, "come") { return "qiman" } + if str_eq(verb, "give") { return "giban" } + if str_eq(verb, "know") { return "kunnan" } + if str_eq(verb, "want") { return "wiljan" } + return verb +} + +// ── Irregular verb: wisan (to be) ───────────────────────────────────────────── +// +// wisan is suppletive — the present is formed from im / is / ist / sijum… +// and the past from was / wast / was / wesum… +// +// Present indicative active: +// 1sg im 2sg is 3sg ist +// 1pl sijum 2pl sijuþ 3pl sind +// +// Past indicative active: +// 1sg was 2sg wast 3sg was +// 1pl wesum 2pl wesuþ 3pl wesun + +fn got_wisan_present(slot: Int) -> String { + if slot == 0 { return "im" } + if slot == 1 { return "is" } + if slot == 2 { return "ist" } + if slot == 3 { return "sijum" } + if slot == 4 { return "sijuþ" } + return "sind" +} + +fn got_wisan_past(slot: Int) -> String { + if slot == 0 { return "was" } + if slot == 1 { return "wast" } + if slot == 2 { return "was" } + if slot == 3 { return "wesum" } + if slot == 4 { return "wesuþ" } + return "wesun" +} + +// ── Irregular verb: haban (to have) ─────────────────────────────────────────── +// +// Weak class 3 (-an preterite-present type). +// +// Present: +// 1sg haba 2sg habais 3sg habaiþ +// 1pl habam 2pl habaiþ 3pl haband +// +// Past (habida series — weak past in -ida): +// 1sg habida 2sg habides 3sg habida +// 1pl habidum 2pl habideþ 3pl habidedun + +fn got_haban_present(slot: Int) -> String { + if slot == 0 { return "haba" } + if slot == 1 { return "habais" } + if slot == 2 { return "habaiþ" } + if slot == 3 { return "habam" } + if slot == 4 { return "habaiþ" } + return "haband" +} + +fn got_haban_past(slot: Int) -> String { + if slot == 0 { return "habida" } + if slot == 1 { return "habides" } + if slot == 2 { return "habida" } + if slot == 3 { return "habidum" } + if slot == 4 { return "habideþ" } + return "habidedun" +} + +// ── Irregular verb: gaggan (to go) ──────────────────────────────────────────── +// +// Strong class 7 (reduplicating); suppletive in past with iddja- forms. +// +// Present: +// 1sg gagga 2sg gaggis 3sg gaggiþ +// 1pl gagam 2pl gagiþ 3pl gaggand +// +// Past (iddja series — suppletive): +// 1sg iddja 2sg iddjēs 3sg iddja +// 1pl iddjēdum 2pl iddjēduþ 3pl iddjēdun + +fn got_gaggan_present(slot: Int) -> String { + if slot == 0 { return "gagga" } + if slot == 1 { return "gaggis" } + if slot == 2 { return "gaggiþ" } + if slot == 3 { return "gagam" } + if slot == 4 { return "gagiþ" } + return "gaggand" +} + +fn got_gaggan_past(slot: Int) -> String { + if slot == 0 { return "iddja" } + if slot == 1 { return "iddjēs" } + if slot == 2 { return "iddja" } + if slot == 3 { return "iddjēdum" } + if slot == 4 { return "iddjēduþ" } + return "iddjēdun" +} + +// ── Irregular verb: saihwan (to see) ────────────────────────────────────────── +// +// Strong class 5 (saiƕan / saihwan). Present stem saihw-; past stem sahw-. +// +// Present: +// 1sg saihwa 2sg saihwis 3sg saihwiþ +// 1pl saihwam 2pl saihwiþ 3pl saihwand +// +// Past (ablaut: ai→a, strong past): +// 1sg sahw 2sg sahwt 3sg sahw +// 1pl sehwum 2pl sehwuþ 3pl sehwun + +fn got_saihwan_present(slot: Int) -> String { + if slot == 0 { return "saihwa" } + if slot == 1 { return "saihwis" } + if slot == 2 { return "saihwiþ" } + if slot == 3 { return "saihwam" } + if slot == 4 { return "saihwiþ" } + return "saihwand" +} + +fn got_saihwan_past(slot: Int) -> String { + if slot == 0 { return "sahw" } + if slot == 1 { return "sahwt" } + if slot == 2 { return "sahw" } + if slot == 3 { return "sehwum" } + if slot == 4 { return "sehwuþ" } + return "sehwun" +} + +// ── Irregular verb: qiþan (to say) ──────────────────────────────────────────── +// +// Strong class 5 (i-ablaut). Present stem qiþ-; past stem qaþ-. +// +// Present: +// 1sg qiþa 2sg qiþis 3sg qiþiþ +// 1pl qiþam 2pl qiþiþ 3pl qiþand +// +// Past (ablaut: i→a): +// 1sg qaþ 2sg qast 3sg qaþ +// 1pl qēþum 2pl qēþuþ 3pl qēþun + +fn got_qithan_present(slot: Int) -> String { + if slot == 0 { return "qiþa" } + if slot == 1 { return "qiþis" } + if slot == 2 { return "qiþiþ" } + if slot == 3 { return "qiþam" } + if slot == 4 { return "qiþiþ" } + return "qiþand" +} + +fn got_qithan_past(slot: Int) -> String { + if slot == 0 { return "qaþ" } + if slot == 1 { return "qast" } + if slot == 2 { return "qaþ" } + if slot == 3 { return "qēþum" } + if slot == 4 { return "qēþuþ" } + return "qēþun" +} + +// ── Irregular verb: niman (to take) ─────────────────────────────────────────── +// +// Strong class 4 (sonorant stem; i-ablaut in present, a-ablaut in past). +// +// Present: +// 1sg nima 2sg nimis 3sg nimiþ +// 1pl nimam 2pl nimiþ 3pl nimand +// +// Past (ablaut: i→a): +// 1sg nam 2sg namt 3sg nam +// 1pl nēmum 2pl nēmuþ 3pl nēmun + +fn got_niman_present(slot: Int) -> String { + if slot == 0 { return "nima" } + if slot == 1 { return "nimis" } + if slot == 2 { return "nimiþ" } + if slot == 3 { return "nimam" } + if slot == 4 { return "nimiþ" } + return "nimand" +} + +fn got_niman_past(slot: Int) -> String { + if slot == 0 { return "nam" } + if slot == 1 { return "namt" } + if slot == 2 { return "nam" } + if slot == 3 { return "nēmum" } + if slot == 4 { return "nēmuþ" } + return "nēmun" +} + +// ── Weak class 1 (-jan verbs): regular conjugation ──────────────────────────── +// +// Class 1 weak verbs are the most productive Gothic verb class. The +// infinitive ends in -jan; the stem is obtained by stripping -jan. +// +// Present indicative active: +// 1sg stem + -a (nasjan -> nasja) +// 2sg stem + -is (nasjis) +// 3sg stem + -iþ (nasjiþ) +// 1pl stem + -jam (nasjam) +// 2pl stem + -jiþ (nasjiþ) +// 3pl stem + -jand (nasjand) +// +// Past indicative active (weak past -ida): +// 1sg stem + -ida (nasjida) +// 2sg stem + -ides (nasjides) +// 3sg stem + -ida (nasjida) +// 1pl stem + -idum (nasjidum) +// 2pl stem + -ideþ (nasjideþ) +// 3pl stem + -idedun (nasjidedun) + +fn got_wk1_present_ending(slot: Int) -> String { + if slot == 0 { return "a" } + if slot == 1 { return "is" } + if slot == 2 { return "iþ" } + if slot == 3 { return "jam" } + if slot == 4 { return "jiþ" } + return "jand" +} + +fn got_wk1_past_ending(slot: Int) -> String { + if slot == 0 { return "ida" } + if slot == 1 { return "ides" } + if slot == 2 { return "ida" } + if slot == 3 { return "idum" } + if slot == 4 { return "ideþ" } + return "idedun" +} + +fn got_wk1_conjugate(stem: String, tense: String, slot: Int) -> String { + if str_eq(tense, "present") { + return stem + got_wk1_present_ending(slot) + } + if str_eq(tense, "past") { + return stem + got_wk1_past_ending(slot) + } + return stem +} + +// ── Weak class 2 (-on verbs): regular conjugation ───────────────────────────── +// +// Class 2 weak verbs. Infinitive ends in -on; stem = drop -on. +// This class corresponds roughly to OE -ian / OHG -on denominatives. +// +// Present indicative active: +// 1sg stem + -o (salbon -> salbo) +// 2sg stem + -os (salbos) +// 3sg stem + -oþ (salboþ) +// 1pl stem + -om (salbom) +// 2pl stem + -oþ (salboþ) +// 3pl stem + -ond (salbond) +// +// Past indicative active (weak past -oda): +// 1sg stem + -oda (salboda) +// 2sg stem + -odes (salbodes) +// 3sg stem + -oda (salboda) +// 1pl stem + -odum (salbodum) +// 2pl stem + -odeþ (salbodeþ) +// 3pl stem + -odedun (salbodedun) + +fn got_wk2_present_ending(slot: Int) -> String { + if slot == 0 { return "o" } + if slot == 1 { return "os" } + if slot == 2 { return "oþ" } + if slot == 3 { return "om" } + if slot == 4 { return "oþ" } + return "ond" +} + +fn got_wk2_past_ending(slot: Int) -> String { + if slot == 0 { return "oda" } + if slot == 1 { return "odes" } + if slot == 2 { return "oda" } + if slot == 3 { return "odum" } + if slot == 4 { return "odeþ" } + return "odedun" +} + +fn got_wk2_conjugate(stem: String, tense: String, slot: Int) -> String { + if str_eq(tense, "present") { + return stem + got_wk2_present_ending(slot) + } + if str_eq(tense, "past") { + return stem + got_wk2_past_ending(slot) + } + return stem +} + +// ── Infinitive class detection ───────────────────────────────────────────────── +// +// Identifies the verb class from the infinitive ending so that the correct +// regular paradigm can be applied for verbs not in the irregular table. +// +// ends in -jan -> weak class 1 ("wk1") +// ends in -on -> weak class 2 ("wk2") +// otherwise -> default to weak class 1 (most productive class) + +fn got_verb_class(verb: String) -> String { + if got_str_ends(verb, "jan") { return "wk1" } + if got_str_ends(verb, "on") { return "wk2" } + return "wk1" +} + +// got_verb_stem: strip the infinitive suffix to expose the productive stem. +// +// wk1: strip -jan (3 bytes — all ASCII) +// wk2: strip -on (2 bytes) + +fn got_verb_stem(verb: String, vclass: String) -> String { + if str_eq(vclass, "wk1") { return got_str_drop_last(verb, 3) } + if str_eq(vclass, "wk2") { return got_str_drop_last(verb, 2) } + return got_str_drop_last(verb, 2) +} + +// ── got_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Gothic infinitive in Latin romanisation (e.g. "wisan", "nasjan") +// or English canonical label ("be", "go", "have") +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" (or "dual" — treated as plural) +// +// Returns the inflected form. Falls back to the infinitive for unknown +// tenses rather than crashing. + +fn got_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = got_map_canonical(verb) + let slot: Int = got_slot(person, number) + + // ── Irregular: wisan (to be) ────────────────────────────────────────────── + if str_eq(v, "wisan") { + if str_eq(tense, "present") { return got_wisan_present(slot) } + if str_eq(tense, "past") { return got_wisan_past(slot) } + return v + } + + // ── Irregular: haban (to have) ──────────────────────────────────────────── + if str_eq(v, "haban") { + if str_eq(tense, "present") { return got_haban_present(slot) } + if str_eq(tense, "past") { return got_haban_past(slot) } + return v + } + + // ── Irregular: gaggan (to go) ───────────────────────────────────────────── + if str_eq(v, "gaggan") { + if str_eq(tense, "present") { return got_gaggan_present(slot) } + if str_eq(tense, "past") { return got_gaggan_past(slot) } + return v + } + + // ── Irregular: saihwan (to see) ─────────────────────────────────────────── + if str_eq(v, "saihwan") { + if str_eq(tense, "present") { return got_saihwan_present(slot) } + if str_eq(tense, "past") { return got_saihwan_past(slot) } + return v + } + + // ── Irregular: qiþan (to say) ───────────────────────────────────────────── + if str_eq(v, "qiþan") { + if str_eq(tense, "present") { return got_qithan_present(slot) } + if str_eq(tense, "past") { return got_qithan_past(slot) } + return v + } + + // ── Irregular: niman (to take) ──────────────────────────────────────────── + if str_eq(v, "niman") { + if str_eq(tense, "present") { return got_niman_present(slot) } + if str_eq(tense, "past") { return got_niman_past(slot) } + return v + } + + // ── Regular weak conjugation ────────────────────────────────────────────── + let vclass: String = got_verb_class(v) + let stem: String = got_verb_stem(v, vclass) + + if str_eq(vclass, "wk1") { + return got_wk1_conjugate(stem, tense, slot) + } + if str_eq(vclass, "wk2") { + return got_wk2_conjugate(stem, tense, slot) + } + + // Final fallback: return the infinitive + return v +} + +// ── a-stem masculine paradigm (dags — day) ──────────────────────────────────── +// +// The a-stem masculine is the largest Gothic noun class, corresponding to the +// Proto-Germanic *-a- stems (OE -as, German -e plurals). +// +// Nominative singular: dags +// Stem: dag- (strip final -s from nom sg) +// +// Singular: nom dags acc dag gen dagis dat daga +// Plural: nom dagos acc dagans gen dage dat dagam +// +// Note: some sources list acc sg as "dag" (without -n), consistent with +// Gothic nom≠acc distinction in masculine a-stems. + +fn got_decline_a_stem_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "s" } + if str_eq(gram_case, "accusative") { return stem } + if str_eq(gram_case, "genitive") { return stem + "is" } + if str_eq(gram_case, "dative") { return stem + "a" } + return stem + "s" +} + +fn got_decline_a_stem_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "os" } + if str_eq(gram_case, "accusative") { return stem + "ans" } + if str_eq(gram_case, "genitive") { return stem + "e" } + if str_eq(gram_case, "dative") { return stem + "am" } + return stem + "os" +} + +// ── o-stem feminine paradigm (gibo — gift) ──────────────────────────────────── +// +// The o-stem feminines correspond to Proto-Germanic *-ō- stems. The +// nominative singular ends in -o; nom and acc plural are identical. +// +// Singular: nom gibo acc giba gen gibos dat gibai +// Plural: nom gibos acc gibos gen gibo dat gibom + +fn got_decline_o_stem_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "o" } + if str_eq(gram_case, "accusative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "os" } + if str_eq(gram_case, "dative") { return stem + "ai" } + return stem + "o" +} + +fn got_decline_o_stem_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "os" } + if str_eq(gram_case, "accusative") { return stem + "os" } + if str_eq(gram_case, "genitive") { return stem + "o" } + if str_eq(gram_case, "dative") { return stem + "om" } + return stem + "os" +} + +// ── n-stem masculine paradigm (guma — man) ──────────────────────────────────── +// +// The n-stems (weak nouns) are characterised by -n- appearing in all cases +// except the nominative singular. They are sometimes called "weak nouns" +// by analogy with Old English grammar. +// +// Singular: nom guma acc guman gen gumins dat gumin +// Plural: nom gumans acc gumans gen gumane dat gumam + +fn got_decline_n_stem_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "a" } + if str_eq(gram_case, "accusative") { return stem + "an" } + if str_eq(gram_case, "genitive") { return stem + "ins" } + if str_eq(gram_case, "dative") { return stem + "in" } + return stem + "a" +} + +fn got_decline_n_stem_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "ans" } + if str_eq(gram_case, "accusative") { return stem + "ans" } + if str_eq(gram_case, "genitive") { return stem + "ane" } + if str_eq(gram_case, "dative") { return stem + "am" } + return stem + "ans" +} + +// ── Stem type detection ──────────────────────────────────────────────────────── +// +// Infers the stem class from the nominative singular form. +// +// Strategy: +// ends in -s and previous char is not a vowel -> a-stem masc (dags type) +// ends in -o -> o-stem fem (gibo type) +// ends in -a -> n-stem masc (guma type) +// ends in -s and previous char is a vowel -> could be various; default a-stem +// otherwise -> default to a-stem +// +// For the common case where the caller passes the paradigm lemma directly: +// "dags" -> "a", "gibo" -> "o", "guma" -> "n" + +fn got_stem_type(noun: String) -> String { + if got_str_ends(noun, "o") { return "o" } + if got_str_ends(noun, "a") { return "n" } + if got_str_ends(noun, "s") { return "a" } + // Fallback for other forms + return "a" +} + +// got_extract_stem: strip the nom-sg suffix to obtain the bare stem. +// +// a-stem: strip final -s (dags -> dag) +// o-stem: strip final -o (gibo -> gib) +// n-stem: strip final -a (guma -> gum) +// +// All suffix bytes are single-byte ASCII, so str_len gives byte=char counts. + +fn got_extract_stem(noun: String, stype: String) -> String { + let n: Int = str_len(noun) + // All three suffixes are 1 byte each + return str_slice(noun, 0, n - 1) +} + +// ── Gender inference for article selection ───────────────────────────────────── +// +// The demonstrative-article used in got_noun_phrase depends on gender. +// Gender correlates with stem class in Gothic (imperfect but useful heuristic): +// a-stem -> masculine -> sa +// o-stem -> feminine -> þo (nom sg of feminine demonstrative) +// n-stem -> masculine -> sa +// +// Neuter a-stems (like "waurd" — word) exist but are not distinguished here; +// the NLG layer is expected to pass explicit gender when the distinction matters. + +fn got_demo_article(stype: String) -> String { + if str_eq(stype, "o") { return "þo" } + // a-stem and n-stem both masculine + return "sa" +} + +// ── got_decline: main declension entry point ────────────────────────────────── +// +// noun: nominative singular in Gothic Latin romanisation +// (e.g. "dags", "gibo", "guma") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// +// Returns the inflected form. Unknown stem types return the nominative +// singular unchanged rather than producing garbage output. + +fn got_decline(noun: String, gram_case: String, number: String) -> String { + let stype: String = got_stem_type(noun) + let stem: String = got_extract_stem(noun, stype) + + if str_eq(stype, "a") { + if str_eq(number, "singular") { return got_decline_a_stem_sg(stem, gram_case) } + return got_decline_a_stem_pl(stem, gram_case) + } + + if str_eq(stype, "o") { + if str_eq(number, "singular") { return got_decline_o_stem_sg(stem, gram_case) } + return got_decline_o_stem_pl(stem, gram_case) + } + + if str_eq(stype, "n") { + if str_eq(number, "singular") { return got_decline_n_stem_sg(stem, gram_case) } + return got_decline_n_stem_pl(stem, gram_case) + } + + // Unknown: return the nominative singular unchanged + return noun +} + +// ── got_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Gothic has no definite article. The demonstrative pronouns sa (masc) / +// so (fem) / þata (neut) are used in contexts where a definite-article-like +// meaning is required (closely following Greek ὁ/ἡ/τό in Wulfila's translation). +// +// When definite=true this function prepends the gender-appropriate demonstrative +// in its nominative singular form. For non-nominative cases the demonstrative +// should ideally be declined to match; this implementation prepends the nom-sg +// form as a simplification suitable for NLG output. Callers requiring full +// demonstrative agreement should call got_decline_demonstrative separately. +// +// noun: nominative singular Gothic noun +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" prepends the demonstrative; any other value omits it + +fn got_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let declined: String = got_decline(noun, gram_case, number) + + if str_eq(definite, "true") { + let stype: String = got_stem_type(noun) + let article: String = got_demo_article(stype) + return article + " " + declined + } + + return declined +} diff --git a/elp/src/morphology-got.elh b/elp/src/morphology-got.elh new file mode 100644 index 0000000..ef286f9 --- /dev/null +++ b/elp/src/morphology-got.elh @@ -0,0 +1,37 @@ +// auto-generated by elc --emit-header - do not edit +extern fn got_str_ends(s: String, suf: String) -> Bool +extern fn got_str_drop_last(s: String, n: Int) -> String +extern fn got_slot(person: String, number: String) -> Int +extern fn got_map_canonical(verb: String) -> String +extern fn got_wisan_present(slot: Int) -> String +extern fn got_wisan_past(slot: Int) -> String +extern fn got_haban_present(slot: Int) -> String +extern fn got_haban_past(slot: Int) -> String +extern fn got_gaggan_present(slot: Int) -> String +extern fn got_gaggan_past(slot: Int) -> String +extern fn got_saihwan_present(slot: Int) -> String +extern fn got_saihwan_past(slot: Int) -> String +extern fn got_qithan_present(slot: Int) -> String +extern fn got_qithan_past(slot: Int) -> String +extern fn got_niman_present(slot: Int) -> String +extern fn got_niman_past(slot: Int) -> String +extern fn got_wk1_present_ending(slot: Int) -> String +extern fn got_wk1_past_ending(slot: Int) -> String +extern fn got_wk1_conjugate(stem: String, tense: String, slot: Int) -> String +extern fn got_wk2_present_ending(slot: Int) -> String +extern fn got_wk2_past_ending(slot: Int) -> String +extern fn got_wk2_conjugate(stem: String, tense: String, slot: Int) -> String +extern fn got_verb_class(verb: String) -> String +extern fn got_verb_stem(verb: String, vclass: String) -> String +extern fn got_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn got_decline_a_stem_sg(stem: String, gram_case: String) -> String +extern fn got_decline_a_stem_pl(stem: String, gram_case: String) -> String +extern fn got_decline_o_stem_sg(stem: String, gram_case: String) -> String +extern fn got_decline_o_stem_pl(stem: String, gram_case: String) -> String +extern fn got_decline_n_stem_sg(stem: String, gram_case: String) -> String +extern fn got_decline_n_stem_pl(stem: String, gram_case: String) -> String +extern fn got_stem_type(noun: String) -> String +extern fn got_extract_stem(noun: String, stype: String) -> String +extern fn got_demo_article(stype: String) -> String +extern fn got_decline(noun: String, gram_case: String, number: String) -> String +extern fn got_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-grc.el b/elp/src/morphology-grc.el new file mode 100644 index 0000000..741ced5 --- /dev/null +++ b/elp/src/morphology-grc.el @@ -0,0 +1,755 @@ +// morphology-grc.el - Ancient Greek morphology for the NLG engine. +// +// Implements polytonic Ancient Greek verb conjugation, noun declension, and +// the definite article. Designed as a companion to morphology.el and called +// by the engine when the language profile code is "grc". +// +// Language profile: code=grc, name=Ancient Greek, morph_type=fusional, +// word_order=SOV, question_strategy=particle, script=greek, family=hellenic. +// +// Typology note: Ancient Greek is a heavily inflected synthetic language with +// rich morphophonology. Nouns carry gender, case, and number in fused endings. +// Verbs encode tense, aspect, voice, mood, person, and number. The augment +// (ε-) marks past indicative. All polytonic diacritics are preserved in +// string literals; comparisons use exact Unicode equality. +// +// Verb conjugation covered: +// Tenses: present, imperfect, aorist, future +// Persons: first/second/third × singular/plural (slots 0-5) +// Class: thematic (-ω) verbs +// Irregulars: εἰναι (be), ἔχειν (have), λέγειν (say), ὁράω (see), +// ἔρχεσθαι (come/go) +// Canonical map: "be" -> "εἰναι" +// +// Noun declension covered: +// Cases: nominative, accusative, genitive, dative, vocative +// Declensions: 1st (-α/-η fem), 2nd masc (-ος), 2nd neut (-ον), 3rd (base) +// +// Article: full 24-form table for ὁ/ἡ/τό (gender × case × number). +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn grc_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn grc_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn grc_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn grc_str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +fn grc_str_last3(s: String) -> String { + let n: Int = str_len(s) + if n < 3 { + return s + } + return str_slice(s, n - 3, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based index used in all paradigm tables. +// 0 = 1st singular (ἐγώ) +// 1 = 2nd singular (σύ) +// 2 = 3rd singular (αὐτός/αὐτή/αὐτό) +// 3 = 1st plural (ἡμεῖς) +// 4 = 2nd plural (ὑμεῖς) +// 5 = 3rd plural (αὐτοί) +// +// Dual number is not handled; dual inputs fall through to plural. + +fn grc_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// The semantic layer may pass English canonical labels. Map these to the +// Ancient Greek infinitive (or dictionary citation form) before conjugation. + +fn grc_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "εἰναι" } + if str_eq(verb, "have") { return "ἔχειν" } + if str_eq(verb, "say") { return "λέγειν" } + if str_eq(verb, "see") { return "ὁράω" } + if str_eq(verb, "come") { return "ἔρχεσθαι" } + if str_eq(verb, "go") { return "ἔρχεσθαι" } + if str_eq(verb, "know") { return "γιγνώσκειν" } + if str_eq(verb, "write") { return "γράφειν" } + if str_eq(verb, "hear") { return "ἀκούειν" } + if str_eq(verb, "want") { return "βούλεσθαι" } + if str_eq(verb, "do") { return "ποιεῖν" } + if str_eq(verb, "make") { return "ποιεῖν" } + return verb +} + +// ── Irregular: εἰναι (to be) ────────────────────────────────────────────────── +// +// Present indicative active: εἰμί εἶ ἐστί ἐσμέν ἐστέ εἰσί +// Imperfect: ἦν ἦσθα ἦν ἦμεν ἦτε ἦσαν +// Future: ἔσομαι ἔσῃ ἔσται ἐσόμεθα ἔσεσθε ἔσονται +// Aorist: no aorist of εἰμί; use imperfect as fallback + +fn grc_einai_present(slot: Int) -> String { + if slot == 0 { return "εἰμί" } + if slot == 1 { return "εἶ" } + if slot == 2 { return "ἐστί" } + if slot == 3 { return "ἐσμέν" } + if slot == 4 { return "ἐστέ" } + return "εἰσί" +} + +fn grc_einai_imperfect(slot: Int) -> String { + if slot == 0 { return "ἦν" } + if slot == 1 { return "ἦσθα" } + if slot == 2 { return "ἦν" } + if slot == 3 { return "ἦμεν" } + if slot == 4 { return "ἦτε" } + return "ἦσαν" +} + +fn grc_einai_future(slot: Int) -> String { + if slot == 0 { return "ἔσομαι" } + if slot == 1 { return "ἔσῃ" } + if slot == 2 { return "ἔσται" } + if slot == 3 { return "ἐσόμεθα" } + if slot == 4 { return "ἔσεσθε" } + return "ἔσονται" +} + +// ── Irregular: ἔχειν (to have) ──────────────────────────────────────────────── +// +// Present: ἔχω ἔχεις ἔχει ἔχομεν ἔχετε ἔχουσι +// Imperfect: εἶχον εἶχες εἶχε εἴχομεν εἴχετε εἶχον +// Aorist: ἔσχον ἔσχες ἔσχε ἔσχομεν ἔσχετε ἔσχον +// Future: ἕξω ἕξεις ἕξει ἕξομεν ἕξετε ἕξουσι + +fn grc_echein_present(slot: Int) -> String { + if slot == 0 { return "ἔχω" } + if slot == 1 { return "ἔχεις" } + if slot == 2 { return "ἔχει" } + if slot == 3 { return "ἔχομεν" } + if slot == 4 { return "ἔχετε" } + return "ἔχουσι" +} + +fn grc_echein_imperfect(slot: Int) -> String { + if slot == 0 { return "εἶχον" } + if slot == 1 { return "εἶχες" } + if slot == 2 { return "εἶχε" } + if slot == 3 { return "εἴχομεν" } + if slot == 4 { return "εἴχετε" } + return "εἶχον" +} + +fn grc_echein_aorist(slot: Int) -> String { + if slot == 0 { return "ἔσχον" } + if slot == 1 { return "ἔσχες" } + if slot == 2 { return "ἔσχε" } + if slot == 3 { return "ἔσχομεν" } + if slot == 4 { return "ἔσχετε" } + return "ἔσχον" +} + +fn grc_echein_future(slot: Int) -> String { + if slot == 0 { return "ἕξω" } + if slot == 1 { return "ἕξεις" } + if slot == 2 { return "ἕξει" } + if slot == 3 { return "ἕξομεν" } + if slot == 4 { return "ἕξετε" } + return "ἕξουσι" +} + +// ── Irregular: λέγειν (to say) ──────────────────────────────────────────────── +// +// Present: λέγω λέγεις λέγει λέγομεν λέγετε λέγουσι +// Imperfect: ἔλεγον ἔλεγες ἔλεγε ἐλέγομεν ἐλέγετε ἔλεγον +// Aorist: εἶπον εἶπες εἶπε εἴπομεν εἴπετε εἶπον +// Future: λέξω λέξεις λέξει λέξομεν λέξετε λέξουσι + +fn grc_legein_present(slot: Int) -> String { + if slot == 0 { return "λέγω" } + if slot == 1 { return "λέγεις" } + if slot == 2 { return "λέγει" } + if slot == 3 { return "λέγομεν" } + if slot == 4 { return "λέγετε" } + return "λέγουσι" +} + +fn grc_legein_imperfect(slot: Int) -> String { + if slot == 0 { return "ἔλεγον" } + if slot == 1 { return "ἔλεγες" } + if slot == 2 { return "ἔλεγε" } + if slot == 3 { return "ἐλέγομεν" } + if slot == 4 { return "ἐλέγετε" } + return "ἔλεγον" +} + +fn grc_legein_aorist(slot: Int) -> String { + if slot == 0 { return "εἶπον" } + if slot == 1 { return "εἶπες" } + if slot == 2 { return "εἶπε" } + if slot == 3 { return "εἴπομεν" } + if slot == 4 { return "εἴπετε" } + return "εἶπον" +} + +fn grc_legein_future(slot: Int) -> String { + if slot == 0 { return "λέξω" } + if slot == 1 { return "λέξεις" } + if slot == 2 { return "λέξει" } + if slot == 3 { return "λέξομεν" } + if slot == 4 { return "λέξετε" } + return "λέξουσι" +} + +// ── Irregular: ὁράω (to see) ────────────────────────────────────────────────── +// +// Present: ὁράω ὁράς ὁρᾷ ὁρῶμεν ὁρᾶτε ὁρῶσι +// Imperfect: ἑώρων ἑώρας ἑώρα ἑωρῶμεν ἑωρᾶτε ἑώρων +// Aorist: εἶδον εἶδες εἶδε εἴδομεν εἴδετε εἶδον +// Future: ὄψομαι ὄψῃ ὄψεται ὀψόμεθα ὄψεσθε ὄψονται + +fn grc_horao_present(slot: Int) -> String { + if slot == 0 { return "ὁράω" } + if slot == 1 { return "ὁράς" } + if slot == 2 { return "ὁρᾷ" } + if slot == 3 { return "ὁρῶμεν" } + if slot == 4 { return "ὁρᾶτε" } + return "ὁρῶσι" +} + +fn grc_horao_imperfect(slot: Int) -> String { + if slot == 0 { return "ἑώρων" } + if slot == 1 { return "ἑώρας" } + if slot == 2 { return "ἑώρα" } + if slot == 3 { return "ἑωρῶμεν" } + if slot == 4 { return "ἑωρᾶτε" } + return "ἑώρων" +} + +fn grc_horao_aorist(slot: Int) -> String { + if slot == 0 { return "εἶδον" } + if slot == 1 { return "εἶδες" } + if slot == 2 { return "εἶδε" } + if slot == 3 { return "εἴδομεν" } + if slot == 4 { return "εἴδετε" } + return "εἶδον" +} + +fn grc_horao_future(slot: Int) -> String { + if slot == 0 { return "ὄψομαι" } + if slot == 1 { return "ὄψῃ" } + if slot == 2 { return "ὄψεται" } + if slot == 3 { return "ὀψόμεθα" } + if slot == 4 { return "ὄψεσθε" } + return "ὄψονται" +} + +// ── Irregular: ἔρχεσθαι (to come / to go) ──────────────────────────────────── +// +// Present: ἔρχομαι ἔρχῃ ἔρχεται ἐρχόμεθα ἔρχεσθε ἔρχονται +// Imperfect: ἠρχόμην ἤρχου ἤρχετο ἠρχόμεθα ἤρχεσθε ἤρχοντο +// Aorist: ἦλθον ἦλθες ἦλθε ἤλθομεν ἤλθετε ἦλθον +// Future: εἶμι εἶ εἶσι ἴμεν ἴτε ἴασι + +fn grc_erchesthai_present(slot: Int) -> String { + if slot == 0 { return "ἔρχομαι" } + if slot == 1 { return "ἔρχῃ" } + if slot == 2 { return "ἔρχεται" } + if slot == 3 { return "ἐρχόμεθα" } + if slot == 4 { return "ἔρχεσθε" } + return "ἔρχονται" +} + +fn grc_erchesthai_imperfect(slot: Int) -> String { + if slot == 0 { return "ἠρχόμην" } + if slot == 1 { return "ἤρχου" } + if slot == 2 { return "ἤρχετο" } + if slot == 3 { return "ἠρχόμεθα" } + if slot == 4 { return "ἤρχεσθε" } + return "ἤρχοντο" +} + +fn grc_erchesthai_aorist(slot: Int) -> String { + if slot == 0 { return "ἦλθον" } + if slot == 1 { return "ἦλθες" } + if slot == 2 { return "ἦλθε" } + if slot == 3 { return "ἤλθομεν" } + if slot == 4 { return "ἤλθετε" } + return "ἦλθον" +} + +fn grc_erchesthai_future(slot: Int) -> String { + if slot == 0 { return "εἶμι" } + if slot == 1 { return "εἶ" } + if slot == 2 { return "εἶσι" } + if slot == 3 { return "ἴμεν" } + if slot == 4 { return "ἴτε" } + return "ἴασι" +} + +// ── Thematic (-ω) present active endings ────────────────────────────────────── +// +// Slot: 0 1 2 3 4 5 +// -ω -εις -ει -ομεν -ετε -ουσι +// +// These are attached to the present stem. + +fn grc_thematic_present_ending(slot: Int) -> String { + if slot == 0 { return "ω" } + if slot == 1 { return "εις" } + if slot == 2 { return "ει" } + if slot == 3 { return "ομεν" } + if slot == 4 { return "ετε" } + return "ουσι" +} + +// ── Thematic imperfect active endings ───────────────────────────────────────── +// +// Imperfect = augment (ἐ-) + stem + secondary endings +// Slot: 0 1 2 3 4 5 +// -ον -ες -ε -ομεν -ετε -ον + +fn grc_thematic_imperfect_ending(slot: Int) -> String { + if slot == 0 { return "ον" } + if slot == 1 { return "ες" } + if slot == 2 { return "ε" } + if slot == 3 { return "ομεν" } + if slot == 4 { return "ετε" } + return "ον" +} + +// ── Thematic future active endings ──────────────────────────────────────────── +// +// Future = stem + σ + thematic vowel + primary endings. +// For most -ω verbs: stem + σ serves as the future stem, then present endings. +// Slot: 0 1 2 3 4 5 +// -σω -σεις -σει -σομεν -σετε -σουσι + +fn grc_thematic_future_ending(slot: Int) -> String { + if slot == 0 { return "σω" } + if slot == 1 { return "σεις" } + if slot == 2 { return "σει" } + if slot == 3 { return "σομεν" } + if slot == 4 { return "σετε" } + return "σουσι" +} + +// ── Weak (first) aorist active endings ──────────────────────────────────────── +// +// Weak aorist = augment (ἐ-) + stem + σ + aorist endings +// Slot: 0 1 2 3 4 5 +// -σα -σας -σε -σαμεν -σατε -σαν + +fn grc_weak_aorist_ending(slot: Int) -> String { + if slot == 0 { return "σα" } + if slot == 1 { return "σας" } + if slot == 2 { return "σε" } + if slot == 3 { return "σαμεν" } + if slot == 4 { return "σατε" } + return "σαν" +} + +// ── Stem extraction ──────────────────────────────────────────────────────────── +// +// Strip the citation-form ending to recover the present stem. +// -ειν -> strip 3 chars (λύειν -> λύ-) +// -ω -> strip 1 char (λύω -> λύ-) +// -αω -> strip 2 chars (ὁράω -> ὁρ-; handled as irregular above) +// -εω -> strip 2 chars (contracted -εω verbs) +// otherwise: return as-is (already a stem or unrecognised form) + +fn grc_present_stem(verb: String) -> String { + if grc_str_ends(verb, "ειν") { + return grc_str_drop_last(verb, 3) + } + if grc_str_ends(verb, "αω") { + return grc_str_drop_last(verb, 2) + } + if grc_str_ends(verb, "εω") { + return grc_str_drop_last(verb, 2) + } + if grc_str_ends(verb, "ω") { + return grc_str_drop_last(verb, 1) + } + return verb +} + +// ── grc_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Greek infinitive/citation form or English canonical label +// tense: "present" | "imperfect" | "aorist" | "future" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to the citation form for unknown +// tenses or unrecognised verbs rather than crashing. + +fn grc_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = grc_map_canonical(verb) + let slot: Int = grc_slot(person, number) + + // ── Irregulars ──────────────────────────────────────────────────────────── + + if str_eq(v, "εἰναι") { + if str_eq(tense, "present") { return grc_einai_present(slot) } + if str_eq(tense, "imperfect") { return grc_einai_imperfect(slot) } + if str_eq(tense, "aorist") { return grc_einai_imperfect(slot) } + if str_eq(tense, "future") { return grc_einai_future(slot) } + return v + } + + if str_eq(v, "ἔχειν") { + if str_eq(tense, "present") { return grc_echein_present(slot) } + if str_eq(tense, "imperfect") { return grc_echein_imperfect(slot) } + if str_eq(tense, "aorist") { return grc_echein_aorist(slot) } + if str_eq(tense, "future") { return grc_echein_future(slot) } + return v + } + + if str_eq(v, "λέγειν") { + if str_eq(tense, "present") { return grc_legein_present(slot) } + if str_eq(tense, "imperfect") { return grc_legein_imperfect(slot) } + if str_eq(tense, "aorist") { return grc_legein_aorist(slot) } + if str_eq(tense, "future") { return grc_legein_future(slot) } + return v + } + + if str_eq(v, "ὁράω") { + if str_eq(tense, "present") { return grc_horao_present(slot) } + if str_eq(tense, "imperfect") { return grc_horao_imperfect(slot) } + if str_eq(tense, "aorist") { return grc_horao_aorist(slot) } + if str_eq(tense, "future") { return grc_horao_future(slot) } + return v + } + + if str_eq(v, "ἔρχεσθαι") { + if str_eq(tense, "present") { return grc_erchesthai_present(slot) } + if str_eq(tense, "imperfect") { return grc_erchesthai_imperfect(slot) } + if str_eq(tense, "aorist") { return grc_erchesthai_aorist(slot) } + if str_eq(tense, "future") { return grc_erchesthai_future(slot) } + return v + } + + // ── Regular thematic conjugation ────────────────────────────────────────── + + let stem: String = grc_present_stem(v) + + if str_eq(tense, "present") { + return stem + grc_thematic_present_ending(slot) + } + + if str_eq(tense, "imperfect") { + // Augment: prefix ἐ- to the stem + return "ἐ" + stem + grc_thematic_imperfect_ending(slot) + } + + if str_eq(tense, "future") { + return stem + grc_thematic_future_ending(slot) + } + + if str_eq(tense, "aorist") { + // Weak (sigmatic) aorist: ἐ- + stem + σ endings + return "ἐ" + stem + grc_weak_aorist_ending(slot) + } + + // Unknown tense: return citation form unchanged + return v +} + +// ── Declension detection ─────────────────────────────────────────────────────── +// +// Infer Greek declension class from the nominative singular ending. +// +// ends in -ος -> 2nd declension masculine +// ends in -ον -> 2nd declension neuter +// ends in -α -> 1st declension feminine (alpha-stem) +// ends in -η -> 1st declension feminine (eta-stem) +// otherwise -> 3rd declension (consonant stem; too varied for full tables) + +fn grc_declension(noun: String) -> String { + if grc_str_ends(noun, "ος") { return "2m" } + if grc_str_ends(noun, "ον") { return "2n" } + if grc_str_ends(noun, "α") { return "1a" } + if grc_str_ends(noun, "η") { return "1e" } + return "3" +} + +// ── 2nd declension masculine: -ος nouns ────────────────────────────────────── +// +// Stem: remove -ος (2 chars) +// Singular: nom -ος gen -ου dat -ῳ acc -ον voc -ε +// Plural: nom -οι gen -ων dat -οις acc -ους voc -οι + +fn grc_decline_2m(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "ος" } + if str_eq(gram_case, "genitive") { return stem + "ου" } + if str_eq(gram_case, "dative") { return stem + "ῳ" } + if str_eq(gram_case, "accusative") { return stem + "ον" } + if str_eq(gram_case, "vocative") { return stem + "ε" } + return stem + "ος" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "οι" } + if str_eq(gram_case, "genitive") { return stem + "ων" } + if str_eq(gram_case, "dative") { return stem + "οις" } + if str_eq(gram_case, "accusative") { return stem + "ους" } + if str_eq(gram_case, "vocative") { return stem + "οι" } + return stem + "οι" +} + +// ── 2nd declension neuter: -ον nouns ───────────────────────────────────────── +// +// Stem: remove -ον (2 chars) +// Singular: nom/acc/voc -ον gen -ου dat -ῳ +// Plural: nom/acc/voc -α gen -ων dat -οις + +fn grc_decline_2n(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "ον" } + if str_eq(gram_case, "genitive") { return stem + "ου" } + if str_eq(gram_case, "dative") { return stem + "ῳ" } + if str_eq(gram_case, "accusative") { return stem + "ον" } + if str_eq(gram_case, "vocative") { return stem + "ον" } + return stem + "ον" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "α" } + if str_eq(gram_case, "genitive") { return stem + "ων" } + if str_eq(gram_case, "dative") { return stem + "οις" } + if str_eq(gram_case, "accusative") { return stem + "α" } + if str_eq(gram_case, "vocative") { return stem + "α" } + return stem + "α" +} + +// ── 1st declension feminine: alpha-stem (-α) nouns ─────────────────────────── +// +// Stem: remove -α (1 char) +// Singular: nom -α gen -ας dat -ᾳ acc -αν voc -α +// Plural: nom -αι gen -ων dat -αις acc -ας voc -αι + +fn grc_decline_1a(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "α" } + if str_eq(gram_case, "genitive") { return stem + "ας" } + if str_eq(gram_case, "dative") { return stem + "ᾳ" } + if str_eq(gram_case, "accusative") { return stem + "αν" } + if str_eq(gram_case, "vocative") { return stem + "α" } + return stem + "α" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "αι" } + if str_eq(gram_case, "genitive") { return stem + "ων" } + if str_eq(gram_case, "dative") { return stem + "αις" } + if str_eq(gram_case, "accusative") { return stem + "ας" } + if str_eq(gram_case, "vocative") { return stem + "αι" } + return stem + "αι" +} + +// ── 1st declension feminine: eta-stem (-η) nouns ───────────────────────────── +// +// Stem: remove -η (1 char) +// Singular: nom -η gen -ης dat -ῃ acc -ην voc -η +// Plural: nom -αι gen -ων dat -αις acc -ας voc -αι + +fn grc_decline_1e(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "η" } + if str_eq(gram_case, "genitive") { return stem + "ης" } + if str_eq(gram_case, "dative") { return stem + "ῃ" } + if str_eq(gram_case, "accusative") { return stem + "ην" } + if str_eq(gram_case, "vocative") { return stem + "η" } + return stem + "η" + } + // plural (same as alpha-stem in the plural) + if str_eq(gram_case, "nominative") { return stem + "αι" } + if str_eq(gram_case, "genitive") { return stem + "ων" } + if str_eq(gram_case, "dative") { return stem + "αις" } + if str_eq(gram_case, "accusative") { return stem + "ας" } + if str_eq(gram_case, "vocative") { return stem + "αι" } + return stem + "αι" +} + +// ── grc_decline: main declension entry point ────────────────────────────────── +// +// noun: nominative singular Greek noun (e.g. "λόγος", "ἔργον", "χώρα") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" | "vocative" +// number: "singular" | "plural" +// +// 3rd declension consonant stems are too unpredictable without a full lexicon; +// for those the nominative is returned unchanged as a safe fallback. + +fn grc_decline(noun: String, gram_case: String, number: String) -> String { + let decl: String = grc_declension(noun) + + if str_eq(decl, "2m") { + let stem: String = grc_str_drop_last(noun, 2) + return grc_decline_2m(stem, gram_case, number) + } + + if str_eq(decl, "2n") { + let stem: String = grc_str_drop_last(noun, 2) + return grc_decline_2n(stem, gram_case, number) + } + + if str_eq(decl, "1a") { + let stem: String = grc_str_drop_last(noun, 1) + return grc_decline_1a(stem, gram_case, number) + } + + if str_eq(decl, "1e") { + let stem: String = grc_str_drop_last(noun, 1) + return grc_decline_1e(stem, gram_case, number) + } + + // 3rd declension: return the base form unchanged + return noun +} + +// ── grc_article: definite article ──────────────────────────────────────────── +// +// The Ancient Greek definite article ὁ/ἡ/τό is fully declined for gender, +// case, and number. There is no indefinite article. +// +// gender: "masculine" | "feminine" | "neuter" +// gram_case: "nominative" | "accusative" | "genitive" | "dative" | "vocative" +// number: "singular" | "plural" +// +// Masc Fem Neut +// Nom sg: ὁ ἡ τό +// Gen sg: τοῦ τῆς τοῦ +// Dat sg: τῷ τῇ τῷ +// Acc sg: τόν τήν τό +// Voc sg: (none; ὦ used as exclamatory particle, not article) +// Nom pl: οἱ αἱ τά +// Gen pl: τῶν τῶν τῶν +// Dat pl: τοῖς ταῖς τοῖς +// Acc pl: τούς τάς τά +// Voc pl: (same as nom pl in practice) + +fn grc_article_masculine(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "ὁ" } + if str_eq(gram_case, "genitive") { return "τοῦ" } + if str_eq(gram_case, "dative") { return "τῷ" } + if str_eq(gram_case, "accusative") { return "τόν" } + if str_eq(gram_case, "vocative") { return "ὁ" } + return "ὁ" + } + // plural + if str_eq(gram_case, "nominative") { return "οἱ" } + if str_eq(gram_case, "genitive") { return "τῶν" } + if str_eq(gram_case, "dative") { return "τοῖς" } + if str_eq(gram_case, "accusative") { return "τούς" } + if str_eq(gram_case, "vocative") { return "οἱ" } + return "οἱ" +} + +fn grc_article_feminine(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "ἡ" } + if str_eq(gram_case, "genitive") { return "τῆς" } + if str_eq(gram_case, "dative") { return "τῇ" } + if str_eq(gram_case, "accusative") { return "τήν" } + if str_eq(gram_case, "vocative") { return "ἡ" } + return "ἡ" + } + // plural + if str_eq(gram_case, "nominative") { return "αἱ" } + if str_eq(gram_case, "genitive") { return "τῶν" } + if str_eq(gram_case, "dative") { return "ταῖς" } + if str_eq(gram_case, "accusative") { return "τάς" } + if str_eq(gram_case, "vocative") { return "αἱ" } + return "αἱ" +} + +fn grc_article_neuter(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "τό" } + if str_eq(gram_case, "genitive") { return "τοῦ" } + if str_eq(gram_case, "dative") { return "τῷ" } + if str_eq(gram_case, "accusative") { return "τό" } + if str_eq(gram_case, "vocative") { return "τό" } + return "τό" + } + // plural + if str_eq(gram_case, "nominative") { return "τά" } + if str_eq(gram_case, "genitive") { return "τῶν" } + if str_eq(gram_case, "dative") { return "τοῖς" } + if str_eq(gram_case, "accusative") { return "τά" } + if str_eq(gram_case, "vocative") { return "τά" } + return "τά" +} + +fn grc_article(gender: String, gram_case: String, number: String) -> String { + if str_eq(gender, "masculine") { return grc_article_masculine(gram_case, number) } + if str_eq(gender, "feminine") { return grc_article_feminine(gram_case, number) } + // neuter + return grc_article_neuter(gram_case, number) +} + +// ── Infer gender from noun ending ───────────────────────────────────────────── +// +// Used by grc_noun_phrase when no explicit gender is provided. +// -ος -> masculine (default 2nd), -ον -> neuter, -α/-η -> feminine. + +fn grc_infer_gender(noun: String) -> String { + if grc_str_ends(noun, "ος") { return "masculine" } + if grc_str_ends(noun, "ον") { return "neuter" } + if grc_str_ends(noun, "α") { return "feminine" } + if grc_str_ends(noun, "η") { return "feminine" } + return "masculine" +} + +// ── grc_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Produces a declined noun with optional definite article prepended. +// Gender is inferred from the noun ending when not supplied explicitly. +// +// noun: nominative singular Greek noun +// gram_case: "nominative" | "accusative" | "genitive" | "dative" | "vocative" +// number: "singular" | "plural" +// definite: "true" | "false" (article is prepended when "true") + +fn grc_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let declined: String = grc_decline(noun, gram_case, number) + if str_eq(definite, "true") { + let gender: String = grc_infer_gender(noun) + let art: String = grc_article(gender, gram_case, number) + return art + " " + declined + } + return declined +} diff --git a/elp/src/morphology-grc.elh b/elp/src/morphology-grc.elh new file mode 100644 index 0000000..be5f997 --- /dev/null +++ b/elp/src/morphology-grc.elh @@ -0,0 +1,45 @@ +// auto-generated by elc --emit-header - do not edit +extern fn grc_str_ends(s: String, suf: String) -> Bool +extern fn grc_str_drop_last(s: String, n: Int) -> String +extern fn grc_str_last_char(s: String) -> String +extern fn grc_str_last2(s: String) -> String +extern fn grc_str_last3(s: String) -> String +extern fn grc_slot(person: String, number: String) -> Int +extern fn grc_map_canonical(verb: String) -> String +extern fn grc_einai_present(slot: Int) -> String +extern fn grc_einai_imperfect(slot: Int) -> String +extern fn grc_einai_future(slot: Int) -> String +extern fn grc_echein_present(slot: Int) -> String +extern fn grc_echein_imperfect(slot: Int) -> String +extern fn grc_echein_aorist(slot: Int) -> String +extern fn grc_echein_future(slot: Int) -> String +extern fn grc_legein_present(slot: Int) -> String +extern fn grc_legein_imperfect(slot: Int) -> String +extern fn grc_legein_aorist(slot: Int) -> String +extern fn grc_legein_future(slot: Int) -> String +extern fn grc_horao_present(slot: Int) -> String +extern fn grc_horao_imperfect(slot: Int) -> String +extern fn grc_horao_aorist(slot: Int) -> String +extern fn grc_horao_future(slot: Int) -> String +extern fn grc_erchesthai_present(slot: Int) -> String +extern fn grc_erchesthai_imperfect(slot: Int) -> String +extern fn grc_erchesthai_aorist(slot: Int) -> String +extern fn grc_erchesthai_future(slot: Int) -> String +extern fn grc_thematic_present_ending(slot: Int) -> String +extern fn grc_thematic_imperfect_ending(slot: Int) -> String +extern fn grc_thematic_future_ending(slot: Int) -> String +extern fn grc_weak_aorist_ending(slot: Int) -> String +extern fn grc_present_stem(verb: String) -> String +extern fn grc_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn grc_declension(noun: String) -> String +extern fn grc_decline_2m(stem: String, gram_case: String, number: String) -> String +extern fn grc_decline_2n(stem: String, gram_case: String, number: String) -> String +extern fn grc_decline_1a(stem: String, gram_case: String, number: String) -> String +extern fn grc_decline_1e(stem: String, gram_case: String, number: String) -> String +extern fn grc_decline(noun: String, gram_case: String, number: String) -> String +extern fn grc_article_masculine(gram_case: String, number: String) -> String +extern fn grc_article_feminine(gram_case: String, number: String) -> String +extern fn grc_article_neuter(gram_case: String, number: String) -> String +extern fn grc_article(gender: String, gram_case: String, number: String) -> String +extern fn grc_infer_gender(noun: String) -> String +extern fn grc_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-he.el b/elp/src/morphology-he.el new file mode 100644 index 0000000..7946d93 --- /dev/null +++ b/elp/src/morphology-he.el @@ -0,0 +1,632 @@ +// morphology-he.el - Hebrew morphology for the NLG engine. +// עברית — עיצוב מורפולוגי למנוע ייצור שפה טבעית +// +// Implements Modern Hebrew verb conjugation (Pa'al binyan, participle-based +// present tense), noun pluralization, and definite-article prefixing. +// +// Hebrew is a Semitic language with a trilateral root system shared with +// Arabic. Like Arabic, words are built from three-consonant roots by +// applying vowel patterns (mishkalim) around the root. +// +// Modern Hebrew (the target) profile: +// code=he, name=Hebrew, morph_type=semitic, word_order=SVO, +// question_strategy=intonation, script=hebrew, family=semitic +// +// Key grammatical facts: +// - Grammatical gender: masculine (m) / feminine (f) +// - Number: singular / plural (dual exists but is marginal in Modern Hebrew) +// - Verbs: built from 3-letter roots via binyanim (verb patterns) +// Pa'al (פָּעַל) is covered here — the most common pattern for everyday verbs +// - Present tense is participle-based (בינוני / binyan) with gender/number +// agreement suffixes on the verb; it doubles as an adjective form +// - Copula: present tense uses zero copula (omit "to be" entirely); +// past tense uses היה/הייתה/היו (haya/hayta/hayu) +// - Definite article: prefix ה (ha-) attached directly to the noun; +// consonant doubling after ה is simplified to just "ha" prefix here +// - Questions: rising intonation (no morphological change); optional +// particle האם (ha'im) at sentence start; this engine uses intonation +// strategy (question mark added by realizer) +// - Script: Hebrew Unicode (right-to-left). The El runtime currently +// outputs non-ASCII as numeric hashes (runtime limitation), but str_eq +// and string literals work correctly internally. When the VM adds UTF-8 +// output support, all Hebrew strings will display correctly automatically. +// +// Verbs covered (by infinitive, transliterated and Hebrew): +// "lihyot" / לִהְיוֹת — to be (copula, zero-present, haya-past) +// "haya" / הָיָה — to be (dictionary alias → lihyot) +// "be" — English canonical → lihyot +// "lir'ot" / לִרְאוֹת — to see +// "le'exol" / לֶאֱכוֹל — to eat +// "ledaber" / לְדַבֵּר — to speak +// "lalechet" / לָלֶכֶת — to go +// +// Conventions used throughout: +// person: "first" | "second" | "third" +// gender: "m" | "f" +// number: "singular" | "plural" +// tense: "present" | "past" | "future" +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with, +// str_drop_last, str_concat/+) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn he_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn he_str_len(s: String) -> Int { + return str_len(s) +} + +fn he_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn he_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +// ── Slot index ───────────────────────────────────────────────────────────────── +// +// Maps person × gender × number to a 0-based slot for table lookups. +// Modern Hebrew uses 12 paradigm cells (3 persons × 2 genders × 2 numbers), +// but first person is gender-neutral in Modern Hebrew for verbs, so we +// collapse 1s-m and 1s-f to the same slot, and likewise 1p. +// +// Slot layout: +// 0 = 3ms (הוא hu — he) +// 1 = 3fs (היא hi — she) +// 2 = 2ms (אתה ata — you m sg) +// 3 = 2fs (את at — you f sg) +// 4 = 1s (אני ani — I, gender-neutral in Modern Hebrew) +// 5 = 3mp (הם hem — they m pl) +// 6 = 3fp (הן hen — they f pl) +// 7 = 2mp (אתם atem — you m pl) +// 8 = 2fp (אתן aten — you f pl) +// 9 = 1p (אנחנו anakhnu — we, gender-neutral) + +fn he_slot(person: String, gender: String, number: String) -> Int { + if str_eq(person, "third") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 1 } + return 0 + } + // plural + if str_eq(gender, "f") { return 6 } + return 5 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 3 } + return 2 + } + // plural + if str_eq(gender, "f") { return 8 } + return 7 + } + // first person — gender-neutral in Modern Hebrew verb conjugation + if str_eq(number, "plural") { return 9 } + return 4 +} + +// ── Present-tense (participle / binyan) agreement suffixes ──────────────────── +// +// Modern Hebrew present tense is built from the Pa'al participle stem. +// The participle agrees with the subject in gender and number. +// +// For Pa'al (CoCeC pattern), the present-tense forms are: +// Masc sg: base participle stem (e.g. רוֹאֶה ro'e — sees) [no suffix] +// Fem sg: stem + ת (-t / -et) depending on root +// Masc pl: stem + ים (-im) (often with vowel change in the root) +// Fem pl: stem + ות (-ot) +// +// Rather than attempting to derive these from the root (which requires knowing +// the full vowel pattern), we store the four present-tense forms explicitly +// for each covered verb. This is the standard approach for a finite NLG +// system covering a curated verb set. +// +// Present forms are indexed by a 2-bit form code: +// 0 = masc sg (ms) +// 1 = fem sg (fs) +// 2 = masc pl (mp) +// 3 = fem pl (fp) + +fn he_present_form_code(slot: Int) -> Int { + // Slots 0, 2, 4, 7 → masc sg form (1s and 2ms use same form as 3ms) + if slot == 0 { return 0 } // 3ms + if slot == 1 { return 1 } // 3fs + if slot == 2 { return 0 } // 2ms → masc sg + if slot == 3 { return 1 } // 2fs → fem sg + if slot == 4 { return 0 } // 1s → masc sg (gender-neutral, default masc) + if slot == 5 { return 2 } // 3mp → masc pl + if slot == 6 { return 3 } // 3fp → fem pl + if slot == 7 { return 2 } // 2mp → masc pl + if slot == 8 { return 3 } // 2fp → fem pl + return 2 // 1p (slot 9) → masc pl (gender-neutral default) +} + +// ── Copula: היה haya — to be ────────────────────────────────────────────────── +// +// Present copula: ZERO (omitted from surface form). +// Past copula: היה haya (3ms), הייתה hayta (3fs/2fs), היו hayu (3pl), +// הייתי hayiti (1s), הייתם hayitem (2mp), הייתן hayiten (2fp), +// היינו hayinu (1p), היית hayita (2ms). +// Future copula: יהיה yihye (3ms), תהיה tihye (3fs/2), אהיה ehye (1s), +// יהיו yihyu (3pl/2pl), נהיה nihye (1p) — included for completeness. + +fn he_copula_past(slot: Int) -> String { + if slot == 0 { return "היה" } // 3ms haya + if slot == 1 { return "הייתה" } // 3fs hayta + if slot == 2 { return "היית" } // 2ms hayita + if slot == 3 { return "הייתה" } // 2fs hayta (same as 3fs in Modern Hebrew) + if slot == 4 { return "הייתי" } // 1s hayiti + if slot == 5 { return "היו" } // 3mp hayu + if slot == 6 { return "היו" } // 3fp hayu (same as 3mp in Modern Hebrew) + if slot == 7 { return "הייתם" } // 2mp hayitem + if slot == 8 { return "הייתן" } // 2fp hayiten + return "היינו" // 1p hayinu +} + +fn he_copula_future(slot: Int) -> String { + if slot == 0 { return "יהיה" } // 3ms yihye + if slot == 1 { return "תהיה" } // 3fs tihye + if slot == 2 { return "תהיה" } // 2ms tihye + if slot == 3 { return "תהיי" } // 2fs tihyi + if slot == 4 { return "אהיה" } // 1s ehye + if slot == 5 { return "יהיו" } // 3mp yihyu + if slot == 6 { return "יהיו" } // 3fp yihyu + if slot == 7 { return "תהיו" } // 2mp tihyu + if slot == 8 { return "תהיו" } // 2fp tihyu + return "נהיה" // 1p nihye +} + +// he_is_copula: detect whether the input verb means "to be". +fn he_is_copula(verb: String) -> Bool { + if str_eq(verb, "lihyot") { return true } + if str_eq(verb, "haya") { return true } + if str_eq(verb, "be") { return true } + if str_eq(verb, "היה") { return true } + if str_eq(verb, "לִהְיוֹת") { return true } + return false +} + +// he_conjugate_copula: conjugate the copula for the given tense/slot. +fn he_conjugate_copula(tense: String, slot: Int) -> String { + // Present copula: zero in Modern Hebrew + if str_eq(tense, "present") { return "" } + if str_eq(tense, "past") { return he_copula_past(slot) } + if str_eq(tense, "future") { return he_copula_future(slot) } + // Default: zero copula + return "" +} + +// ── Pa'al present-tense forms: verb-by-verb table ───────────────────────────── +// +// Each verb stores four present-tense participle forms: +// [masc sg, fem sg, masc pl, fem pl] +// indexed by he_present_form_code(slot). +// +// Transliterations for reference: +// lir'ot (לִרְאוֹת — to see): ro'e / ro'a / ro'im / ro'ot +// le'exol (לֶאֱכוֹל — to eat): oxel / oxelet / oxlim / oxlot +// ledaber (לְדַבֵּר — to speak): medaber / medaberet / medabrim / medabrot +// lalechet (לָלֶכֶת — to go): holech / holechet / holchim / holchot + +fn he_present_lir_ot(form: Int) -> String { + if form == 0 { return "רוֹאֶה" } // ro'e — masc sg + if form == 1 { return "רוֹאָה" } // ro'a — fem sg + if form == 2 { return "רוֹאִים" } // ro'im — masc pl + return "רוֹאוֹת" // ro'ot — fem pl (form == 3) +} + +fn he_present_le_exol(form: Int) -> String { + if form == 0 { return "אוֹכֵל" } // oxel — masc sg + if form == 1 { return "אוֹכֶלֶת" } // oxelet — fem sg + if form == 2 { return "אוֹכְלִים" } // oxlim — masc pl + return "אוֹכְלוֹת" // oxlot — fem pl +} + +fn he_present_ledaber(form: Int) -> String { + if form == 0 { return "מְדַבֵּר" } // medaber — masc sg + if form == 1 { return "מְדַבֶּרֶת" } // medaberet — fem sg + if form == 2 { return "מְדַבְּרִים" } // medabrim — masc pl + return "מְדַבְּרוֹת" // medabrot — fem pl +} + +fn he_present_lalechet(form: Int) -> String { + if form == 0 { return "הוֹלֵךְ" } // holech — masc sg + if form == 1 { return "הוֹלֶכֶת" } // holechet — fem sg + if form == 2 { return "הוֹלְכִים" } // holchim — masc pl + return "הוֹלְכוֹת" // holchot — fem pl +} + +// ── Pa'al past-tense forms: verb-by-verb table ─────────────────────────────── +// +// Past tense in Pa'al uses suffixes on a past stem (the 3ms form is the stem). +// Suffix pattern (slot → suffix appended to stem consonants): +// slot 0 (3ms): base (e.g. ראה ra'a) +// slot 1 (3fs): -ta (ראתה ra'ata) +// slot 2 (2ms): -ta (ראית ra'ita) +// slot 3 (2fs): -t (ראית ra'it — same spelling as 2ms in Modern Hebrew) +// slot 4 (1s): -ti (ראיתי ra'iti) +// slot 5 (3mp): -u (ראו ra'u) +// slot 6 (3fp): -u (ראו ra'u — same as 3mp in Modern Hebrew) +// slot 7 (2mp): -tem (ראיתם ra'item) +// slot 8 (2fp): -ten (ראיתן ra'iten) +// slot 9 (1p): -nu (ראינו ra'inu) +// +// We store full past paradigms for each verb — suffix application to the base +// requires knowing each verb's past stem vowel pattern. + +fn he_past_lir_ot(slot: Int) -> String { + if slot == 0 { return "רָאָה" } // ra'a — 3ms + if slot == 1 { return "רָאֲתָה" } // ra'ata — 3fs + if slot == 2 { return "רָאִיתָ" } // ra'ita — 2ms + if slot == 3 { return "רָאִית" } // ra'it — 2fs + if slot == 4 { return "רָאִיתִי" } // ra'iti — 1s + if slot == 5 { return "רָאוּ" } // ra'u — 3mp + if slot == 6 { return "רָאוּ" } // ra'u — 3fp + if slot == 7 { return "רְאִיתֶם" } // re'item — 2mp + if slot == 8 { return "רְאִיתֶן" } // re'iten — 2fp + return "רָאִינוּ" // ra'inu — 1p +} + +fn he_past_le_exol(slot: Int) -> String { + if slot == 0 { return "אָכַל" } // axal — 3ms + if slot == 1 { return "אָכְלָה" } // axla — 3fs + if slot == 2 { return "אָכַלְתָּ" } // axalta — 2ms + if slot == 3 { return "אָכַלְתְּ" } // axalt — 2fs + if slot == 4 { return "אָכַלְתִּי" }// axalti — 1s + if slot == 5 { return "אָכְלוּ" } // axlu — 3mp + if slot == 6 { return "אָכְלוּ" } // axlu — 3fp + if slot == 7 { return "אֲכַלְתֶּם" }// axaltem — 2mp + if slot == 8 { return "אֲכַלְתֶּן" }// axalten — 2fp + return "אָכַלְנוּ" // axalnu — 1p +} + +fn he_past_ledaber(slot: Int) -> String { + if slot == 0 { return "דִּבֵּר" } // diber — 3ms (Pi'el past) + if slot == 1 { return "דִּבְּרָה" } // dibra — 3fs + if slot == 2 { return "דִּבַּרְתָּ" }// dibarta — 2ms + if slot == 3 { return "דִּבַּרְתְּ" }// dibart — 2fs + if slot == 4 { return "דִּבַּרְתִּי" }// diberti — 1s + if slot == 5 { return "דִּבְּרוּ" } // dibru — 3mp + if slot == 6 { return "דִּבְּרוּ" } // dibru — 3fp + if slot == 7 { return "דִּבַּרְתֶּם" }// dibertem— 2mp + if slot == 8 { return "דִּבַּרְתֶּן" }// dibertn — 2fp + return "דִּבַּרְנוּ" // dibernu — 1p +} + +fn he_past_lalechet(slot: Int) -> String { + if slot == 0 { return "הָלַךְ" } // halax — 3ms + if slot == 1 { return "הָלְכָה" } // halxa — 3fs + if slot == 2 { return "הָלַכְתָּ" } // halaxta — 2ms + if slot == 3 { return "הָלַכְתְּ" } // halaxt — 2fs + if slot == 4 { return "הָלַכְתִּי" }// halaxti — 1s + if slot == 5 { return "הָלְכוּ" } // halxu — 3mp + if slot == 6 { return "הָלְכוּ" } // halxu — 3fp + if slot == 7 { return "הֲלַכְתֶּם" }// halaxtem— 2mp + if slot == 8 { return "הֲלַכְתֶּן" }// halaxten— 2fp + return "הָלַכְנוּ" // halaxnu — 1p +} + +// ── Future-tense forms: verb-by-verb table ───────────────────────────────────── +// +// Future tense in Pa'al uses prefix + root + suffix (yiqtol pattern). +// We store full paradigms for each covered verb. + +fn he_future_lir_ot(slot: Int) -> String { + if slot == 0 { return "יִרְאֶה" } // yir'e — 3ms + if slot == 1 { return "תִּרְאֶה" } // tir'e — 3fs + if slot == 2 { return "תִּרְאֶה" } // tir'e — 2ms + if slot == 3 { return "תִּרְאִי" } // tir'i — 2fs + if slot == 4 { return "אֶרְאֶה" } // er'e — 1s + if slot == 5 { return "יִרְאוּ" } // yir'u — 3mp + if slot == 6 { return "תִּרְאֶינָה" }// tir'ena — 3fp + if slot == 7 { return "תִּרְאוּ" } // tir'u — 2mp + if slot == 8 { return "תִּרְאֶינָה" }// tir'ena — 2fp + return "נִרְאֶה" // nir'e — 1p +} + +fn he_future_le_exol(slot: Int) -> String { + if slot == 0 { return "יֹאכַל" } // yoxal — 3ms + if slot == 1 { return "תֹּאכַל" } // toxal — 3fs + if slot == 2 { return "תֹּאכַל" } // toxal — 2ms + if slot == 3 { return "תֹּאכְלִי" } // toxli — 2fs + if slot == 4 { return "אֹכַל" } // oxal — 1s + if slot == 5 { return "יֹאכְלוּ" } // yoxlu — 3mp + if slot == 6 { return "תֹּאכַלְנָה" }// toxalna — 3fp + if slot == 7 { return "תֹּאכְלוּ" } // toxlu — 2mp + if slot == 8 { return "תֹּאכַלְנָה" }// toxalna — 2fp + return "נֹאכַל" // noxal — 1p +} + +fn he_future_ledaber(slot: Int) -> String { + if slot == 0 { return "יְדַבֵּר" } // yedaber — 3ms + if slot == 1 { return "תְּדַבֵּר" } // tedaber — 3fs + if slot == 2 { return "תְּדַבֵּר" } // tedaber — 2ms + if slot == 3 { return "תְּדַבְּרִי" }// tedabri — 2fs + if slot == 4 { return "אֲדַבֵּר" } // adaber — 1s + if slot == 5 { return "יְדַבְּרוּ" }// yedabru — 3mp + if slot == 6 { return "תְּדַבֵּרְנָה" }// tedaberna — 3fp + if slot == 7 { return "תְּדַבְּרוּ" }// tedabru — 2mp + if slot == 8 { return "תְּדַבֵּרְנָה" }// tedaberna — 2fp + return "נְדַבֵּר" // nedaber — 1p +} + +fn he_future_lalechet(slot: Int) -> String { + if slot == 0 { return "יֵלֵךְ" } // yelex — 3ms + if slot == 1 { return "תֵּלֵךְ" } // telex — 3fs + if slot == 2 { return "תֵּלֵךְ" } // telex — 2ms + if slot == 3 { return "תֵּלְכִי" } // telxi — 2fs + if slot == 4 { return "אֵלֵךְ" } // elex — 1s + if slot == 5 { return "יֵלְכוּ" } // yelxu — 3mp + if slot == 6 { return "תֵּלַכְנָה" } // telaxna — 3fp + if slot == 7 { return "תֵּלְכוּ" } // telxu — 2mp + if slot == 8 { return "תֵּלַכְנָה" } // telaxna — 2fp + return "נֵלֵךְ" // nelex — 1p +} + +// ── Known-verb dispatcher ───────────────────────────────────────────────────── +// +// he_known_verb: return the inflected form for a known verb, or "" if the +// verb is not in the lookup table. Accepts both transliterated and Hebrew +// script infinitives. + +fn he_known_verb(verb: String, tense: String, slot: Int) -> String { + // ── lir'ot / לִרְאוֹת — to see ─────────────────────────────────────────── + if str_eq(verb, "lir'ot") { + if str_eq(tense, "present") { return he_present_lir_ot(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_lir_ot(slot) } + if str_eq(tense, "future") { return he_future_lir_ot(slot) } + return he_present_lir_ot(he_present_form_code(slot)) + } + if str_eq(verb, "לִרְאוֹת") { + if str_eq(tense, "present") { return he_present_lir_ot(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_lir_ot(slot) } + if str_eq(tense, "future") { return he_future_lir_ot(slot) } + return he_present_lir_ot(he_present_form_code(slot)) + } + + // ── le'exol / לֶאֱכוֹל — to eat ────────────────────────────────────────── + if str_eq(verb, "le'exol") { + if str_eq(tense, "present") { return he_present_le_exol(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_le_exol(slot) } + if str_eq(tense, "future") { return he_future_le_exol(slot) } + return he_present_le_exol(he_present_form_code(slot)) + } + if str_eq(verb, "לֶאֱכוֹל") { + if str_eq(tense, "present") { return he_present_le_exol(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_le_exol(slot) } + if str_eq(tense, "future") { return he_future_le_exol(slot) } + return he_present_le_exol(he_present_form_code(slot)) + } + + // ── ledaber / לְדַבֵּר — to speak ──────────────────────────────────────── + if str_eq(verb, "ledaber") { + if str_eq(tense, "present") { return he_present_ledaber(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_ledaber(slot) } + if str_eq(tense, "future") { return he_future_ledaber(slot) } + return he_present_ledaber(he_present_form_code(slot)) + } + if str_eq(verb, "לְדַבֵּר") { + if str_eq(tense, "present") { return he_present_ledaber(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_ledaber(slot) } + if str_eq(tense, "future") { return he_future_ledaber(slot) } + return he_present_ledaber(he_present_form_code(slot)) + } + + // ── lalechet / לָלֶכֶת — to go ─────────────────────────────────────────── + if str_eq(verb, "lalechet") { + if str_eq(tense, "present") { return he_present_lalechet(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_lalechet(slot) } + if str_eq(tense, "future") { return he_future_lalechet(slot) } + return he_present_lalechet(he_present_form_code(slot)) + } + if str_eq(verb, "לָלֶכֶת") { + if str_eq(tense, "present") { return he_present_lalechet(he_present_form_code(slot)) } + if str_eq(tense, "past") { return he_past_lalechet(slot) } + if str_eq(tense, "future") { return he_future_lalechet(slot) } + return he_present_lalechet(he_present_form_code(slot)) + } + + // Verb not in table + return "" +} + +// ── Main conjugation entry point ────────────────────────────────────────────── +// +// he_conjugate: conjugate a Hebrew verb. +// +// verb: infinitive (transliterated or Hebrew script) +// tense: "present" | "past" | "future" +// person: "first" | "second" | "third" +// gender: "m" | "f" +// number: "singular" | "plural" +// +// Returns: +// - "" for present copula (zero copula — caller omits the verb) +// - inflected form for all other cases +// - the infinitive unchanged for unknown verbs (safe fallback) + +fn he_conjugate(verb: String, tense: String, person: String, gender: String, number: String) -> String { + let slot: Int = he_slot(person, gender, number) + + // Handle copula first + if he_is_copula(verb) { + return he_conjugate_copula(tense, slot) + } + + // Try the known-verb table + let known: String = he_known_verb(verb, tense, slot) + if !str_eq(known, "") { + return known + } + + // Unknown verb: return the infinitive as a safe placeholder. + // The caller can detect this when the output equals the input. + return verb +} + +// ── Noun pluralization ───────────────────────────────────────────────────────── +// +// he_pluralize: form the plural of a Hebrew noun. +// +// Rules (simplified for Modern Hebrew): +// Masculine nouns (and those not ending in -a or -et): +// Add ים- (-im) +// Feminine nouns ending in -a (transliteration) or the Hebrew letter ה: +// Replace final ה with ות (-ot) +// Feminine nouns ending in -et (transliteration) or ת-: +// Replace -et / ת with ות (-ot) +// Fallback: +// Add ות (-ot) — covers other feminine patterns +// +// Notes: +// - Many Hebrew nouns have irregular plurals (e.g. ספר/ספרים, בית/בתים). +// The Engram vocabulary layer should supply these directly. +// - This function handles the productive, regular pattern. + +fn he_pluralize(noun: String, gender: String) -> String { + if str_eq(gender, "m") { + // Masculine: add -im + return noun + "ים" + } + + // Feminine noun ending in Hebrew ה (he) — most common -a ending in script + if he_str_ends(noun, "ה") { + let stem: String = he_str_drop_last(noun, 1) + return stem + "ות" + } + + // Feminine noun ending in ת (tav) — covers -et, -at, -it endings + if he_str_ends(noun, "ת") { + let stem: String = he_str_drop_last(noun, 1) + return stem + "ות" + } + + // Transliteration check: -a ending (e.g. "yalda" → "yaldot") + if he_str_ends(noun, "a") { + let stem: String = he_str_drop_last(noun, 1) + return stem + "ot" + } + + // Transliteration check: -et ending (e.g. "yaldet" → "yaldot") + if he_str_ends(noun, "et") { + let stem: String = he_str_drop_last(noun, 2) + return stem + "ot" + } + + // Fallback: add -ot + return noun + "ות" +} + +// ── Definite noun phrases ────────────────────────────────────────────────────── +// +// he_definite_prefix: attach the definite article ה (ha-) to a noun. +// +// The definite article in Hebrew is the prefix ה (ha-) attached directly +// to the noun without a space. In formal/Biblical Hebrew the following +// consonant receives a dagesh (doubling), but in Modern Hebrew pronunciation +// the doubling is generally not applied. We implement the simplified form: +// definite noun = "ה" + noun (script form) +// For transliterated nouns: "ha" + noun +// +// Callers pass Hebrew script nouns; transliterated nouns are handled by +// checking whether the noun starts with a Hebrew code-point range. + +fn he_is_hebrew_script(noun: String) -> Bool { + // Hebrew Unicode block: U+05D0 (א) through U+05EA (ת). + // We check the first character: if str_len > 0 and it is a Hebrew letter, + // the noun is in Hebrew script. We use a set of common first letters as + // a heuristic; the alternative (numeric code-point comparison) is not + // available in El. This covers the vast majority of practical cases. + let n: Int = str_len(noun) + if n == 0 { return false } + let first: String = str_slice(noun, 0, 1) + // Common Hebrew first letters in the Unicode block + if str_eq(first, "א") { return true } + if str_eq(first, "ב") { return true } + if str_eq(first, "ג") { return true } + if str_eq(first, "ד") { return true } + if str_eq(first, "ה") { return true } + if str_eq(first, "ו") { return true } + if str_eq(first, "ז") { return true } + if str_eq(first, "ח") { return true } + if str_eq(first, "ט") { return true } + if str_eq(first, "י") { return true } + if str_eq(first, "כ") { return true } + if str_eq(first, "ל") { return true } + if str_eq(first, "מ") { return true } + if str_eq(first, "נ") { return true } + if str_eq(first, "ס") { return true } + if str_eq(first, "ע") { return true } + if str_eq(first, "פ") { return true } + if str_eq(first, "צ") { return true } + if str_eq(first, "ק") { return true } + if str_eq(first, "ר") { return true } + if str_eq(first, "ש") { return true } + if str_eq(first, "ת") { return true } + return false +} + +fn he_definite_prefix(noun: String) -> String { + if he_is_hebrew_script(noun) { + return "ה" + noun + } + // Transliterated noun: prepend "ha" + return "ha" + noun +} + +// he_noun_phrase: build a full noun phrase with definiteness and number. +// +// noun: base (singular) noun string (Hebrew script or transliteration) +// number: "singular" | "plural" +// gender: "m" | "f" +// definite: "true" | "false" +// +// Returns the surface noun phrase string. + +fn he_noun_phrase(noun: String, number: String, gender: String, definite: String) -> String { + // Step 1: apply number (pluralize if needed) + let stem: String = noun + if str_eq(number, "plural") { + let stem = he_pluralize(noun, gender) + } + + // Step 2: apply definiteness + if str_eq(definite, "true") { + return he_definite_prefix(stem) + } + return stem +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// he_map_canonical: map cross-lingual canonical English verb labels to +// their Hebrew equivalents before dispatching to he_conjugate. +// +// This mirrors morph_map_canonical in morphology.el but for Hebrew. +// Called by the morphology dispatcher before he_conjugate. +// +// Canonical labels: "be" | "have" | "do" | "go" | "see" | "eat" | "speak" + +fn he_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "lihyot" } + if str_eq(verb, "see") { return "lir'ot" } + if str_eq(verb, "eat") { return "le'exol" } + if str_eq(verb, "speak") { return "ledaber" } + if str_eq(verb, "say") { return "ledaber" } + if str_eq(verb, "go") { return "lalechet" } + // Unknown canonical: return as-is; he_conjugate will fall back to infinitive + return verb +} diff --git a/elp/src/morphology-he.elh b/elp/src/morphology-he.elh new file mode 100644 index 0000000..ed6304f --- /dev/null +++ b/elp/src/morphology-he.elh @@ -0,0 +1,30 @@ +// auto-generated by elc --emit-header - do not edit +extern fn he_str_ends(s: String, suf: String) -> Bool +extern fn he_str_len(s: String) -> Int +extern fn he_str_drop_last(s: String, n: Int) -> String +extern fn he_str_last_char(s: String) -> String +extern fn he_slot(person: String, gender: String, number: String) -> Int +extern fn he_present_form_code(slot: Int) -> Int +extern fn he_copula_past(slot: Int) -> String +extern fn he_copula_future(slot: Int) -> String +extern fn he_is_copula(verb: String) -> Bool +extern fn he_conjugate_copula(tense: String, slot: Int) -> String +extern fn he_present_lir_ot(form: Int) -> String +extern fn he_present_le_exol(form: Int) -> String +extern fn he_present_ledaber(form: Int) -> String +extern fn he_present_lalechet(form: Int) -> String +extern fn he_past_lir_ot(slot: Int) -> String +extern fn he_past_le_exol(slot: Int) -> String +extern fn he_past_ledaber(slot: Int) -> String +extern fn he_past_lalechet(slot: Int) -> String +extern fn he_future_lir_ot(slot: Int) -> String +extern fn he_future_le_exol(slot: Int) -> String +extern fn he_future_ledaber(slot: Int) -> String +extern fn he_future_lalechet(slot: Int) -> String +extern fn he_known_verb(verb: String, tense: String, slot: Int) -> String +extern fn he_conjugate(verb: String, tense: String, person: String, gender: String, number: String) -> String +extern fn he_pluralize(noun: String, gender: String) -> String +extern fn he_is_hebrew_script(noun: String) -> Bool +extern fn he_definite_prefix(noun: String) -> String +extern fn he_noun_phrase(noun: String, number: String, gender: String, definite: String) -> String +extern fn he_map_canonical(verb: String) -> String diff --git a/elp/src/morphology-hi.el b/elp/src/morphology-hi.el new file mode 100644 index 0000000..d4cfa02 --- /dev/null +++ b/elp/src/morphology-hi.el @@ -0,0 +1,630 @@ +// morphology-hi.el - Hindi morphology for the NLG engine. +// +// Implements Hindi noun declension (direct and oblique cases), postpositional +// particles, verb stem extraction, tense conjugation, and genitive agreement. +// +// Hindi is a fusional/agglutinative hybrid, SOV, pro-drop, with Devanagari script. +// +// Key facts: +// - 2 genders: masculine (m), feminine (f) +// - 2 numbers: singular (sg), plural (pl) +// - 2 main cases: direct (nominative/accusative) and oblique (before postpositions) +// - Verbs agree with subject in gender and number +// - No articles +// +// Conventions used throughout: +// gender: "m" | "f" +// number: "sg" | "pl" +// case: "direct" | "oblique" +// tense: "present" | "past" | "future" +// person: "1" | "2" | "3" +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with, +// str_drop_last) + +// ── String helpers ──────────────────────────────────────────────────────────── + +fn hi_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn hi_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn hi_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +// ── Gender inference ────────────────────────────────────────────────────────── +// +// Heuristic from the noun's final Devanagari character. +// Masculine: typically ends in आ (aa), or a consonant cluster +// Feminine: typically ends in ई (ii), ि (i-matra), or other endings +// +// This is an approximation — gender is inherent to each noun and not always +// predictable. The caller should supply gender explicitly when known. +// +// Common feminine endings: "ी" (long ii), "ि" (short i matra in some forms), +// "न" (like बहन), "त" (like रात), "ट" (like बात) +// Common masculine endings: "ा" (aa matra), consonants generally + +fn hi_gender(noun: String) -> String { + // Long ii ending — strongly feminine + if hi_str_ends(noun, "ी") { return "f" } + // aa matra ending — strongly masculine + if hi_str_ends(noun, "ा") { return "m" } + // Known feminine words by ending + if hi_str_ends(noun, "न") { + // बहन (sister), दुकान (shop) — feminine; but also many masc. + // Default feminine for -न common feminine nouns + return "f" + } + if hi_str_ends(noun, "त") { return "f" } // रात, बात, बात + if hi_str_ends(noun, "ट") { return "f" } // बात (variant spellings) + if hi_str_ends(noun, "श") { return "m" } // आकाश etc. + // Specific common words + if str_eq(noun, "लड़का") { return "m" } + if str_eq(noun, "लड़की") { return "f" } + if str_eq(noun, "आदमी") { return "m" } + if str_eq(noun, "औरत") { return "f" } + if str_eq(noun, "घर") { return "m" } + if str_eq(noun, "मेज़") { return "f" } + if str_eq(noun, "किताब") { return "f" } + if str_eq(noun, "पानी") { return "m" } + if str_eq(noun, "दूध") { return "m" } + if str_eq(noun, "हाथ") { return "m" } + if str_eq(noun, "आँख") { return "f" } + if str_eq(noun, "बच्चा") { return "m" } + if str_eq(noun, "बच्ची") { return "f" } + if str_eq(noun, "काम") { return "m" } + if str_eq(noun, "बात") { return "f" } + if str_eq(noun, "दिन") { return "m" } + if str_eq(noun, "रात") { return "f" } + if str_eq(noun, "देश") { return "m" } + if str_eq(noun, "भाषा") { return "f" } + if str_eq(noun, "जगह") { return "f" } + if str_eq(noun, "समय") { return "m" } + if str_eq(noun, "साल") { return "m" } + // Default to masculine + return "m" +} + +// ── Masculine noun declension ───────────────────────────────────────────────── +// +// Two patterns: +// (A) Ends in -आ (ा matra): लड़का, बच्चा, घोड़ा — vowel-final type +// direct sg: base (लड़का) +// direct pl: stem + े (लड़के) +// oblique sg: stem + े (लड़के) +// oblique pl: stem + ों (लड़कों) +// +// (B) Consonant-final or other: आदमी, घर, हाथ, दिन — invariant type +// direct sg: base +// direct pl: base (no change in direct plural for most) +// oblique sg: base (no change) +// oblique pl: base + ों (घरों, हाथों, दिनों) +// Exception: आदमी (masc ending -ī): acts like (B) in direct but +// oblique pl uses ों drop the ī: आदमियों + +fn hi_masc_aa_stem(noun: String) -> String { + // Strip trailing ा (aa matra, 3 UTF-8 bytes in Devanagari — but El strings + // are Unicode so we drop the last character which is ा) + return hi_str_drop_last(noun, 1) +} + +fn hi_noun_direct_m(noun: String, number: String) -> String { + if hi_str_ends(noun, "ा") { + // Pattern A: aa-final masculine + if str_eq(number, "sg") { return noun } + // pl: replace ा with े + return hi_masc_aa_stem(noun) + "े" + } + // Pattern B: invariant direct forms + return noun +} + +fn hi_noun_oblique_m(noun: String, number: String) -> String { + if hi_str_ends(noun, "ा") { + // Pattern A + let stem: String = hi_masc_aa_stem(noun) + if str_eq(number, "sg") { return stem + "े" } + return stem + "ों" + } + // Pattern B: consonant-final or ī-final + // आदमी and similar ī-final masculines: oblique pl inserts य + if hi_str_ends(noun, "ी") { + if str_eq(number, "sg") { return noun } + // oblique pl: drop ी, add ियों + let stem: String = hi_str_drop_last(noun, 1) + return stem + "ियों" + } + // Default consonant-final masculines + if str_eq(number, "sg") { return noun } + return noun + "ों" +} + +// ── Feminine noun declension ────────────────────────────────────────────────── +// +// Two patterns: +// (A) Ends in -ई/-ी (long ii): लड़की, बच्ची +// direct sg: base (लड़की) +// direct pl: stem + ियाँ (लड़कियाँ) +// oblique sg: base (लड़की) +// oblique pl: stem + ियों (लड़कियों) +// +// (B) Consonant-final or other: मेज़, रात, किताब, बात, औरत, भाषा +// direct sg: base (मेज़) +// direct pl: base + ें (मेज़ें, किताबें) +// oblique sg: base +// oblique pl: base + ों (मेज़ों, किताबों) + +fn hi_noun_direct_f(noun: String, number: String) -> String { + if hi_str_ends(noun, "ी") { + // Pattern A: ii-final feminine + if str_eq(number, "sg") { return noun } + let stem: String = hi_str_drop_last(noun, 1) + return stem + "ियाँ" + } + // Pattern B: other feminine + if str_eq(number, "sg") { return noun } + // Direct plural: add ें + return noun + "ें" +} + +fn hi_noun_oblique_f(noun: String, number: String) -> String { + if hi_str_ends(noun, "ी") { + // Pattern A + if str_eq(number, "sg") { return noun } + let stem: String = hi_str_drop_last(noun, 1) + return stem + "ियों" + } + // Pattern B + if str_eq(number, "sg") { return noun } + return noun + "ों" +} + +// ── Unified noun declension entry points ────────────────────────────────────── + +// hi_noun_direct: direct case form (nominative/bare accusative). +fn hi_noun_direct(noun: String, gender: String, number: String) -> String { + if str_eq(gender, "m") { return hi_noun_direct_m(noun, number) } + if str_eq(gender, "f") { return hi_noun_direct_f(noun, number) } + return noun +} + +// hi_noun_oblique: oblique case form (before postpositions). +fn hi_noun_oblique(noun: String, gender: String, number: String) -> String { + if str_eq(gender, "m") { return hi_noun_oblique_m(noun, number) } + if str_eq(gender, "f") { return hi_noun_oblique_f(noun, number) } + return noun +} + +// ── Postpositional particles ────────────────────────────────────────────────── +// +// Hindi marks grammatical relations with postpositions that follow the oblique +// noun. The genitive postposition agrees with the possessed noun's gender and +// number — use hi_agree_genitive for that case. +// +// case values: +// "nominative" — no postposition (direct case subject) +// "accusative_animate"— को (ko) — animate direct objects +// "dative" — को (ko) +// "genitive" — का/की/के — use hi_agree_genitive instead +// "locative_in" — में (meṃ — in) +// "locative_on" — पर (par — on) +// "instrumental" — से (se — with/by) +// "ablative" — से (se — from) +// "comitative" — के साथ (ke saath — with/together with) +// "benefactive" — के लिए (ke liye — for) + +fn hi_postposition(gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return "" } + if str_eq(gram_case, "accusative_animate") { return "को" } + if str_eq(gram_case, "dative") { return "को" } + if str_eq(gram_case, "genitive") { return "का" } // base; use hi_agree_genitive + if str_eq(gram_case, "locative_in") { return "में" } + if str_eq(gram_case, "locative_on") { return "पर" } + if str_eq(gram_case, "instrumental") { return "से" } + if str_eq(gram_case, "ablative") { return "से" } + if str_eq(gram_case, "comitative") { return "के साथ" } + if str_eq(gram_case, "benefactive") { return "के लिए" } + return "" +} + +// hi_agree_genitive: return the genitive postposition (का/की/के) that agrees +// with the gender and number of the POSSESSED noun (not the possessor). +// +// possessed_gender: "m" | "f" +// possessed_number: "sg" | "pl" +// +// m sg → का (kaa) +// f sg → की (kii) +// m pl → के (ke) +// f pl → की (kii) + +fn hi_agree_genitive(possessed_gender: String, possessed_number: String) -> String { + if str_eq(possessed_gender, "f") { return "की" } + if str_eq(possessed_number, "pl") { return "के" } + return "का" +} + +// ── Verb stem extraction ────────────────────────────────────────────────────── +// +// Most Hindi infinitives end in -ना (naa). Stripping it gives the verb stem. +// Examples: खाना → खा, जाना → जा, करना → कर, देखना → देख +// +// Irregulars that do not follow this pattern return a hardcoded stem. + +fn hi_verb_stem(infinitive: String) -> String { + // Irregular stems + if str_eq(infinitive, "होना") { return "हो" } + if str_eq(infinitive, "करना") { return "कर" } + if str_eq(infinitive, "जाना") { return "जा" } + if str_eq(infinitive, "आना") { return "आ" } + if str_eq(infinitive, "देना") { return "दे" } + if str_eq(infinitive, "लेना") { return "ले" } + if str_eq(infinitive, "देखना") { return "देख" } + if str_eq(infinitive, "कहना") { return "कह" } + if str_eq(infinitive, "जानना") { return "जान" } + if str_eq(infinitive, "चाहना") { return "चाह" } + if str_eq(infinitive, "खाना") { return "खा" } + if str_eq(infinitive, "पीना") { return "पी" } + if str_eq(infinitive, "सोना") { return "सो" } + if str_eq(infinitive, "लिखना") { return "लिख" } + if str_eq(infinitive, "पढ़ना") { return "पढ़" } + if str_eq(infinitive, "बोलना") { return "बोल" } + if str_eq(infinitive, "चलना") { return "चल" } + if str_eq(infinitive, "बैठना") { return "बैठ" } + if str_eq(infinitive, "उठना") { return "उठ" } + if str_eq(infinitive, "मिलना") { return "मिल" } + if str_eq(infinitive, "रहना") { return "रह" } + if str_eq(infinitive, "सुनना") { return "सुन" } + if str_eq(infinitive, "समझना") { return "समझ" } + if str_eq(infinitive, "मानना") { return "मान" } + if str_eq(infinitive, "बनाना") { return "बना" } + if str_eq(infinitive, "लाना") { return "ला" } + if str_eq(infinitive, "भेजना") { return "भेज" } + if str_eq(infinitive, "खोलना") { return "खोल" } + if str_eq(infinitive, "बंद करना") { return "बंद कर" } + // Generic: strip trailing ना (last character) + if hi_str_ends(infinitive, "ना") { + return hi_str_drop_last(infinitive, 1) + // Note: ना is two Unicode chars (न + ा) but as a suffix pattern + // we want to strip the last char 'ा' and keep 'न' — however the + // actual Devanagari suffix ना is a single syllable grapheme cluster. + // str_drop_last drops the last Unicode codepoint. + // ना = न (na) + ा (aa-matra): str_drop_last(s,1) drops ा, leaving न at end. + // We need to drop 2 codepoints (न and ा = ना) to get the true stem. + } + return infinitive +} + +// hi_verb_stem_clean: correctly strips -ना (2 Unicode codepoints: न + ा matra) +fn hi_verb_stem_clean(infinitive: String) -> String { + // Irregulars first + if str_eq(infinitive, "होना") { return "हो" } + if str_eq(infinitive, "करना") { return "कर" } + if str_eq(infinitive, "जाना") { return "जा" } + if str_eq(infinitive, "आना") { return "आ" } + if str_eq(infinitive, "देना") { return "दे" } + if str_eq(infinitive, "लेना") { return "ले" } + if str_eq(infinitive, "देखना") { return "देख" } + if str_eq(infinitive, "कहना") { return "कह" } + if str_eq(infinitive, "जानना") { return "जान" } + if str_eq(infinitive, "चाहना") { return "चाह" } + if str_eq(infinitive, "खाना") { return "खा" } + if str_eq(infinitive, "पीना") { return "पी" } + if str_eq(infinitive, "सोना") { return "सो" } + if str_eq(infinitive, "लिखना") { return "लिख" } + if str_eq(infinitive, "पढ़ना") { return "पढ़" } + if str_eq(infinitive, "बोलना") { return "बोल" } + if str_eq(infinitive, "चलना") { return "चल" } + if str_eq(infinitive, "बैठना") { return "बैठ" } + if str_eq(infinitive, "उठना") { return "उठ" } + if str_eq(infinitive, "मिलना") { return "मिल" } + if str_eq(infinitive, "रहना") { return "रह" } + if str_eq(infinitive, "सुनना") { return "सुन" } + if str_eq(infinitive, "समझना") { return "समझ" } + if str_eq(infinitive, "मानना") { return "मान" } + if str_eq(infinitive, "बनाना") { return "बना" } + if str_eq(infinitive, "लाना") { return "ला" } + if str_eq(infinitive, "भेजना") { return "भेज" } + if str_eq(infinitive, "खोलना") { return "खोल" } + // Strip ना = 2 codepoints + if hi_str_ends(infinitive, "ना") { + return hi_str_drop_last(infinitive, 2) + } + return infinitive +} + +// ── Present tense habitual conjugation ─────────────────────────────────────── +// +// Structure: stem + aspect-suffix + auxiliary +// +// Aspect suffixes (agree with SUBJECT gender/number): +// m sg: ता (taa) +// f sg: ती (tii) +// m pl: ते (te) +// f pl: ती (tii) +// +// Auxiliary हो/है/हैं (am/is/are) agreed with person and number: +// 1sg: हूँ (huuṃ) +// 2sg: हो (ho) [informal], हैं (haiṃ) [formal] +// 3sg: है (hai) +// 1pl: हैं (haiṃ) +// 2pl: हो (ho) [informal], हैं (haiṃ) [formal] +// 3pl: हैं (haiṃ) + +fn hi_present_aspect(gender: String, number: String) -> String { + if str_eq(gender, "f") { return "ती" } + if str_eq(number, "pl") { return "ते" } + return "ता" +} + +fn hi_aux_present(person: String, number: String) -> String { + if str_eq(person, "1") { + if str_eq(number, "sg") { return "हूँ" } + return "हैं" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "हो" } + return "हो" + } + // third person + if str_eq(number, "sg") { return "है" } + return "हैं" +} + +// ── Past tense conjugation ──────────────────────────────────────────────────── +// +// Simple past suffix agrees with subject (when object has no को). +// stem + past-suffix: +// m sg: आ (aa) e.g. खाया (khaayaa) +// f sg: ई (ii) e.g. खाई (khaaii) +// m pl: ए (e) e.g. खाए (khaae) +// f pl: ईं (iiṃ) e.g. खाईं (khaaiṃ) +// +// Many verb stems ending in a vowel undergo contraction — the irregulars table +// handles known cases; otherwise stem + suffix is concatenated. + +fn hi_past_suffix(gender: String, number: String) -> String { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "आ" } + return "ए" + } + // feminine + if str_eq(number, "sg") { return "ई" } + return "ईं" +} + +// Past tense irregulars — full past form returned for known verb+gender+number. +fn hi_past_irregular(stem: String, gender: String, number: String) -> String { + // होना (ho): था/थी/थे/थीं + if str_eq(stem, "हो") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "था" } + return "थे" + } + if str_eq(number, "sg") { return "थी" } + return "थीं" + } + // जाना (jaa): गया/गई/गए/गईं + if str_eq(stem, "जा") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "गया" } + return "गए" + } + if str_eq(number, "sg") { return "गई" } + return "गईं" + } + // करना (kar): किया/की/किए/कीं + if str_eq(stem, "कर") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "किया" } + return "किए" + } + if str_eq(number, "sg") { return "की" } + return "कीं" + } + // देना (de): दिया/दी/दिए/दीं + if str_eq(stem, "दे") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "दिया" } + return "दिए" + } + if str_eq(number, "sg") { return "दी" } + return "दीं" + } + // लेना (le): लिया/ली/लिए/लीं + if str_eq(stem, "ले") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "लिया" } + return "लिए" + } + if str_eq(number, "sg") { return "ली" } + return "लीं" + } + // आना (aa): आया/आई/आए/आईं + if str_eq(stem, "आ") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "आया" } + return "आए" + } + if str_eq(number, "sg") { return "आई" } + return "आईं" + } + // खाना (khaa): खाया/खाई/खाए/खाईं + if str_eq(stem, "खा") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "खाया" } + return "खाए" + } + if str_eq(number, "sg") { return "खाई" } + return "खाईं" + } + // पीना (pii): पिया/पी/पिए/पीं + if str_eq(stem, "पी") { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "पिया" } + return "पिए" + } + if str_eq(number, "sg") { return "पी" } + return "पीं" + } + // No irregular match + return "" +} + +// ── Future tense conjugation ────────────────────────────────────────────────── +// +// Future: stem + future-suffix (fused person+gender+number) +// +// 1sg m: ऊँगा (uuṃgaa) 1sg f: ऊँगी (uuṃgii) +// 2sg m: ओगे (oge) 2sg f: ओगी (ogii) +// 3sg m: एगा (egaa) 3sg f: एगी (egii) +// 1pl m: एंगे (eṃge) 1pl f: एंगी (eṃgii) +// 2pl m: ओगे (oge) 2pl f: ओगी (ogii) +// 3pl m: एंगे (eṃge) 3pl f: एंगी (eṃgii) + +fn hi_future_suffix(person: String, number: String, gender: String) -> String { + if str_eq(person, "1") { + if str_eq(number, "sg") { + if str_eq(gender, "f") { return "ऊँगी" } + return "ऊँगा" + } + if str_eq(gender, "f") { return "एंगी" } + return "एंगे" + } + if str_eq(person, "2") { + if str_eq(gender, "f") { return "ओगी" } + return "ओगे" + } + // third person + if str_eq(number, "sg") { + if str_eq(gender, "f") { return "एगी" } + return "एगा" + } + if str_eq(gender, "f") { return "एंगी" } + return "एंगे" +} + +// ── Tense suffix (aspect suffix only, without auxiliary) ───────────────────── +// +// For callers that need just the aspect suffix to construct compound tenses. + +fn hi_tense_suffix(tense: String, gender: String, number: String) -> String { + if str_eq(tense, "present") { return hi_present_aspect(gender, number) } + if str_eq(tense, "past") { return hi_past_suffix(gender, number) } + // future uses hi_future_suffix (includes person) + return "" +} + +// ── होना (honaa — to be) special handling ──────────────────────────────────── +// +// होना is deeply irregular. Its forms are used as auxiliaries throughout. +// +// present: हूँ/हो/है/हैं (via hi_aux_present) +// past: था/थी/थे/थीं (via hi_past_irregular) +// future: होऊँगा/होओगे/होएगा etc. (stem हो + future suffix) + +fn hi_hona_present(person: String, number: String) -> String { + return hi_aux_present(person, number) +} + +fn hi_hona_past(gender: String, number: String) -> String { + if str_eq(gender, "m") { + if str_eq(number, "sg") { return "था" } + return "थे" + } + if str_eq(number, "sg") { return "थी" } + return "थीं" +} + +// ── Full verb conjugation ───────────────────────────────────────────────────── +// +// hi_conjugate: conjugate a Hindi verb. +// +// verb: Hindi infinitive in Devanagari (e.g. "खाना", "जाना", "करना") +// tense: "present" | "past" | "future" +// person: "1" | "2" | "3" +// gender: "m" | "f" (subject gender) +// number: "sg" | "pl" +// +// Returns the complete inflected verb string (including auxiliary where needed). + +fn hi_conjugate(verb: String, tense: String, person: String, gender: String, number: String) -> String { + let stem: String = hi_verb_stem_clean(verb) + + // होना — fully irregular + if str_eq(verb, "होना") { + if str_eq(tense, "present") { return hi_hona_present(person, number) } + if str_eq(tense, "past") { return hi_hona_past(gender, number) } + // future: होऊँगा etc. + return "हो" + hi_future_suffix(person, number, gender) + } + + if str_eq(tense, "present") { + let aspect: String = hi_present_aspect(gender, number) + let aux: String = hi_aux_present(person, number) + return stem + aspect + " " + aux + } + + if str_eq(tense, "past") { + let irreg: String = hi_past_irregular(stem, gender, number) + if !str_eq(irreg, "") { + return irreg + } + return stem + hi_past_suffix(gender, number) + } + + if str_eq(tense, "future") { + return stem + hi_future_suffix(person, number, gender) + } + + // Unknown tense: return infinitive + return verb +} + +// ── Noun phrase construction helpers ───────────────────────────────────────── + +// hi_noun_with_post: return the oblique noun form followed by its postposition. +// Use for all cases that require an oblique form (dative, locative, etc.). +// +// noun: Devanagari noun string +// gender: "m" | "f" +// number: "sg" | "pl" +// case: postposition case key (see hi_postposition) + +fn hi_noun_with_post(noun: String, gender: String, number: String, gram_case: String) -> String { + let post: String = hi_postposition(gram_case) + if str_eq(post, "") { + // Nominative: use direct form + return hi_noun_direct(noun, gender, number) + } + let oblique: String = hi_noun_oblique(noun, gender, number) + return oblique + " " + post +} + +// hi_genitive_phrase: "X का/की/के Y" — possessive phrase. +// possessor and possessed are bare noun strings; the function computes all +// inflections and agreement automatically. +// +// possessor_gender/number: gender and number of the possessor noun +// possessed_gender/number: gender and number of the possessed noun (drives agreement) + +fn hi_genitive_phrase(possessor: String, possessor_gender: String, possessor_number: String, + possessed: String, possessed_gender: String, possessed_number: String) -> String { + let obl: String = hi_noun_oblique(possessor, possessor_gender, possessor_number) + let gen: String = hi_agree_genitive(possessed_gender, possessed_number) + let poss: String = hi_noun_direct(possessed, possessed_gender, possessed_number) + return obl + " " + gen + " " + poss +} diff --git a/elp/src/morphology-hi.elh b/elp/src/morphology-hi.elh new file mode 100644 index 0000000..d012ddf --- /dev/null +++ b/elp/src/morphology-hi.elh @@ -0,0 +1,27 @@ +// auto-generated by elc --emit-header - do not edit +extern fn hi_str_ends(s: String, suf: String) -> Bool +extern fn hi_str_drop_last(s: String, n: Int) -> String +extern fn hi_str_last_char(s: String) -> String +extern fn hi_gender(noun: String) -> String +extern fn hi_masc_aa_stem(noun: String) -> String +extern fn hi_noun_direct_m(noun: String, number: String) -> String +extern fn hi_noun_oblique_m(noun: String, number: String) -> String +extern fn hi_noun_direct_f(noun: String, number: String) -> String +extern fn hi_noun_oblique_f(noun: String, number: String) -> String +extern fn hi_noun_direct(noun: String, gender: String, number: String) -> String +extern fn hi_noun_oblique(noun: String, gender: String, number: String) -> String +extern fn hi_postposition(gram_case: String) -> String +extern fn hi_agree_genitive(possessed_gender: String, possessed_number: String) -> String +extern fn hi_verb_stem(infinitive: String) -> String +extern fn hi_verb_stem_clean(infinitive: String) -> String +extern fn hi_present_aspect(gender: String, number: String) -> String +extern fn hi_aux_present(person: String, number: String) -> String +extern fn hi_past_suffix(gender: String, number: String) -> String +extern fn hi_past_irregular(stem: String, gender: String, number: String) -> String +extern fn hi_future_suffix(person: String, number: String, gender: String) -> String +extern fn hi_tense_suffix(tense: String, gender: String, number: String) -> String +extern fn hi_hona_present(person: String, number: String) -> String +extern fn hi_hona_past(gender: String, number: String) -> String +extern fn hi_conjugate(verb: String, tense: String, person: String, gender: String, number: String) -> String +extern fn hi_noun_with_post(noun: String, gender: String, number: String, gram_case: String) -> String +extern fn hi_genitive_phrase(possessor: String, possessor_gender: String, possessor_number: String, possessed: String, possessed_gender: String, possessed_number: String) -> String diff --git a/elp/src/morphology-ja.el b/elp/src/morphology-ja.el new file mode 100644 index 0000000..2a09412 --- /dev/null +++ b/elp/src/morphology-ja.el @@ -0,0 +1,449 @@ +// morphology-ja.el - Japanese morphology: verb conjugation and noun particles. +// +// Japanese is SOV, agglutinative, pro-drop. Morphology is suffix-chain based. +// +// Key facts: +// - Nouns do not inflect; grammatical relations are marked by postpositional +// particles attached after the noun. +// - Verbs inflect for tense, polarity, and politeness. +// - Two main verb groups: Ichidan (vowel-stem, Group 2) and Godan (consonant- +// stem, Group 1), plus a small set of irregular verbs. +// - Politeness levels: plain (dictionary/casual) and polite (masu-form). +// - Questions are formed by appending the sentence-final particle か (ka). +// +// Depends on: (no dependencies - standalone morphology module) + +// ── Verb group classification ───────────────────────────────────────────────── +// +// Returns "ichidan" | "godan" | "irregular" +// +// Irregular verbs are checked first. Ichidan verbs end in -る and have a +// vowel immediately before the る. Everything else is Godan. +// +// Note: this is a heuristic classifier for romanized input. For production use +// with native kana/kanji forms, the dictionary form (辞書形) must be consulted. + +fn ja_verb_group(dict_form: String) -> String { + // Irregular verbs (exact match on dictionary form) + if str_eq(dict_form, "する") { return "irregular" } + if str_eq(dict_form, "くる") { return "irregular" } + if str_eq(dict_form, "くる") { return "irregular" } + if str_eq(dict_form, "いる") { return "irregular" } + if str_eq(dict_form, "ある") { return "irregular" } + if str_eq(dict_form, "だ") { return "irregular" } + // Romanized irregulars + if str_eq(dict_form, "suru") { return "irregular" } + if str_eq(dict_form, "kuru") { return "irregular" } + if str_eq(dict_form, "iru") { return "irregular" } + if str_eq(dict_form, "aru") { return "irregular" } + if str_eq(dict_form, "da") { return "irregular" } + + // Ichidan: ends in -る (-ru) and has a vowel before it. + // We test using native kana ending and the romanized -eru / -iru pattern. + if str_ends_with(dict_form, "る") { + // Any kana-form ending in る that is not in the irregular list is + // heuristically classified as Ichidan when the preceding mora ends in + // a vowel sound. For the romanized path we check -eru and -iru endings. + return "ichidan" + } + if str_ends_with(dict_form, "eru") { return "ichidan" } + if str_ends_with(dict_form, "iru") { return "ichidan" } + + return "godan" +} + +// ── Ichidan stem extraction ─────────────────────────────────────────────────── +// +// Strip the final -る (-ru) from an Ichidan dictionary form. +// 食べる → 食べ taberu → tabe + +fn ja_ichidan_stem(dict_form: String) -> String { + if str_ends_with(dict_form, "る") { + let n: Int = str_len(dict_form) + // str_slice operates on byte offsets; る is 3 UTF-8 bytes. + // We trust the runtime to handle Unicode correctly via str_drop_last. + return str_drop_last(dict_form, 1) + } + if str_ends_with(dict_form, "ru") { + let n: Int = str_len(dict_form) + return str_slice(dict_form, 0, n - 2) + } + return dict_form +} + +// ── Godan stem changes ──────────────────────────────────────────────────────── +// +// Godan verbs mutate their final kana to a different row before attaching a +// suffix. The "row" parameter selects which stem form is needed: +// +// "i" - the i-row (連用形 ren'yōkei): for polite forms, te-form base +// "a" - the a-row (未然形 mizenkei): for negative +// "te" - te/ta-form (special sound changes apply) +// +// Final kana → i-row: く→き ぐ→ぎ す→し つ→ち ぬ→に ぶ→び む→み る→り う→い +// Final kana → a-row: く→か ぐ→が す→さ つ→た ぬ→な ぶ→ば む→ま る→ら う→わ +// Te/ta-form: く→い ぐ→い す→し つ→っ ぬ→ん ぶ→ん む→ん る→っ う→っ + +fn ja_godan_stem_change(dict_form: String, row: String) -> String { + let n: Int = str_len(dict_form) + if n == 0 { return dict_form } + + // i-row (polite stem / ren'yōkei) + if str_eq(row, "i") { + if str_ends_with(dict_form, "く") { return str_drop_last(dict_form, 1) + "き" } + if str_ends_with(dict_form, "ぐ") { return str_drop_last(dict_form, 1) + "ぎ" } + if str_ends_with(dict_form, "す") { return str_drop_last(dict_form, 1) + "し" } + if str_ends_with(dict_form, "つ") { return str_drop_last(dict_form, 1) + "ち" } + if str_ends_with(dict_form, "ぬ") { return str_drop_last(dict_form, 1) + "に" } + if str_ends_with(dict_form, "ぶ") { return str_drop_last(dict_form, 1) + "び" } + if str_ends_with(dict_form, "む") { return str_drop_last(dict_form, 1) + "み" } + if str_ends_with(dict_form, "る") { return str_drop_last(dict_form, 1) + "り" } + if str_ends_with(dict_form, "う") { return str_drop_last(dict_form, 1) + "い" } + // Romanized fallbacks + if str_ends_with(dict_form, "ku") { return str_drop_last(dict_form, 2) + "ki" } + if str_ends_with(dict_form, "gu") { return str_drop_last(dict_form, 2) + "gi" } + if str_ends_with(dict_form, "su") { return str_drop_last(dict_form, 2) + "shi" } + if str_ends_with(dict_form, "tsu") { return str_drop_last(dict_form, 3) + "chi" } + if str_ends_with(dict_form, "nu") { return str_drop_last(dict_form, 2) + "ni" } + if str_ends_with(dict_form, "bu") { return str_drop_last(dict_form, 2) + "bi" } + if str_ends_with(dict_form, "mu") { return str_drop_last(dict_form, 2) + "mi" } + if str_ends_with(dict_form, "ru") { return str_drop_last(dict_form, 2) + "ri" } + if str_ends_with(dict_form, "u") { return str_drop_last(dict_form, 1) + "i" } + return dict_form + } + + // a-row (negative stem / mizenkei) + if str_eq(row, "a") { + if str_ends_with(dict_form, "く") { return str_drop_last(dict_form, 1) + "か" } + if str_ends_with(dict_form, "ぐ") { return str_drop_last(dict_form, 1) + "が" } + if str_ends_with(dict_form, "す") { return str_drop_last(dict_form, 1) + "さ" } + if str_ends_with(dict_form, "つ") { return str_drop_last(dict_form, 1) + "た" } + if str_ends_with(dict_form, "ぬ") { return str_drop_last(dict_form, 1) + "な" } + if str_ends_with(dict_form, "ぶ") { return str_drop_last(dict_form, 1) + "ば" } + if str_ends_with(dict_form, "む") { return str_drop_last(dict_form, 1) + "ま" } + if str_ends_with(dict_form, "る") { return str_drop_last(dict_form, 1) + "ら" } + if str_ends_with(dict_form, "う") { return str_drop_last(dict_form, 1) + "わ" } + // Romanized fallbacks + if str_ends_with(dict_form, "ku") { return str_drop_last(dict_form, 2) + "ka" } + if str_ends_with(dict_form, "gu") { return str_drop_last(dict_form, 2) + "ga" } + if str_ends_with(dict_form, "su") { return str_drop_last(dict_form, 2) + "sa" } + if str_ends_with(dict_form, "tsu") { return str_drop_last(dict_form, 3) + "ta" } + if str_ends_with(dict_form, "nu") { return str_drop_last(dict_form, 2) + "na" } + if str_ends_with(dict_form, "bu") { return str_drop_last(dict_form, 2) + "ba" } + if str_ends_with(dict_form, "mu") { return str_drop_last(dict_form, 2) + "ma" } + if str_ends_with(dict_form, "ru") { return str_drop_last(dict_form, 2) + "ra" } + if str_ends_with(dict_form, "u") { return str_drop_last(dict_form, 1) + "wa" } + return dict_form + } + + // te/ta-row (te-form and plain past; special euphonic changes) + // Sound changes: く→い, ぐ→い (voiced), す→し, つ/る/う→っ, ぬ/ぶ/む→ん + if str_eq(row, "te") { + if str_ends_with(dict_form, "く") { return str_drop_last(dict_form, 1) + "い" } + if str_ends_with(dict_form, "ぐ") { return str_drop_last(dict_form, 1) + "い" } + if str_ends_with(dict_form, "す") { return str_drop_last(dict_form, 1) + "し" } + if str_ends_with(dict_form, "つ") { return str_drop_last(dict_form, 1) + "っ" } + if str_ends_with(dict_form, "ぬ") { return str_drop_last(dict_form, 1) + "ん" } + if str_ends_with(dict_form, "ぶ") { return str_drop_last(dict_form, 1) + "ん" } + if str_ends_with(dict_form, "む") { return str_drop_last(dict_form, 1) + "ん" } + if str_ends_with(dict_form, "る") { return str_drop_last(dict_form, 1) + "っ" } + if str_ends_with(dict_form, "う") { return str_drop_last(dict_form, 1) + "っ" } + // Romanized fallbacks + if str_ends_with(dict_form, "ku") { return str_drop_last(dict_form, 2) + "i" } + if str_ends_with(dict_form, "gu") { return str_drop_last(dict_form, 2) + "i" } + if str_ends_with(dict_form, "su") { return str_drop_last(dict_form, 2) + "shi" } + if str_ends_with(dict_form, "tsu") { return str_drop_last(dict_form, 3) + "tt" } + if str_ends_with(dict_form, "nu") { return str_drop_last(dict_form, 2) + "n" } + if str_ends_with(dict_form, "bu") { return str_drop_last(dict_form, 2) + "n" } + if str_ends_with(dict_form, "mu") { return str_drop_last(dict_form, 2) + "n" } + if str_ends_with(dict_form, "ru") { return str_drop_last(dict_form, 2) + "tt" } + if str_ends_with(dict_form, "u") { return str_drop_last(dict_form, 1) + "tt" } + return dict_form + } + + return dict_form +} + +// ── Verb conjugation ────────────────────────────────────────────────────────── +// +// ja_conjugate(dict_form, form) -> String +// +// form values: +// "present" - plain non-past (dictionary form) +// "past" - plain past +// "negative" - plain negative +// "volitional" - plain volitional (let's …) +// "polite" - polite non-past (masu-form) +// "polite-past" - polite past (mashita-form) +// "polite-neg" - polite negative (masen-form) +// "te" - te-form (connective / gerund) + +fn ja_conjugate(dict_form: String, form: String) -> String { + let group: String = ja_verb_group(dict_form) + + // ── Irregular verbs ─────────────────────────────────────────────────────── + if str_eq(group, "irregular") { + // する / suru (to do) + if str_eq(dict_form, "する") { + if str_eq(form, "present") { return "する" } + if str_eq(form, "past") { return "した" } + if str_eq(form, "negative") { return "しない" } + if str_eq(form, "volitional") { return "しよう" } + if str_eq(form, "polite") { return "します" } + if str_eq(form, "polite-past") { return "しました" } + if str_eq(form, "polite-neg") { return "しません" } + if str_eq(form, "te") { return "して" } + return dict_form + } + if str_eq(dict_form, "suru") { + if str_eq(form, "present") { return "suru" } + if str_eq(form, "past") { return "shita" } + if str_eq(form, "negative") { return "shinai" } + if str_eq(form, "volitional") { return "shiyou" } + if str_eq(form, "polite") { return "shimasu" } + if str_eq(form, "polite-past") { return "shimashita" } + if str_eq(form, "polite-neg") { return "shimasen" } + if str_eq(form, "te") { return "shite" } + return dict_form + } + + // くる / kuru (to come) + if str_eq(dict_form, "くる") { + if str_eq(form, "present") { return "くる" } + if str_eq(form, "past") { return "きた" } + if str_eq(form, "negative") { return "こない" } + if str_eq(form, "volitional") { return "こよう" } + if str_eq(form, "polite") { return "きます" } + if str_eq(form, "polite-past") { return "きました" } + if str_eq(form, "polite-neg") { return "きません" } + if str_eq(form, "te") { return "きて" } + return dict_form + } + if str_eq(dict_form, "kuru") { + if str_eq(form, "present") { return "kuru" } + if str_eq(form, "past") { return "kita" } + if str_eq(form, "negative") { return "konai" } + if str_eq(form, "volitional") { return "koyou" } + if str_eq(form, "polite") { return "kimasu" } + if str_eq(form, "polite-past") { return "kimashita" } + if str_eq(form, "polite-neg") { return "kimasen" } + if str_eq(form, "te") { return "kite" } + return dict_form + } + + // いる / iru (to be / exist, animate) + if str_eq(dict_form, "いる") { + if str_eq(form, "present") { return "いる" } + if str_eq(form, "past") { return "いた" } + if str_eq(form, "negative") { return "いない" } + if str_eq(form, "volitional") { return "いよう" } + if str_eq(form, "polite") { return "います" } + if str_eq(form, "polite-past") { return "いました" } + if str_eq(form, "polite-neg") { return "いません" } + if str_eq(form, "te") { return "いて" } + return dict_form + } + if str_eq(dict_form, "iru") { + if str_eq(form, "present") { return "iru" } + if str_eq(form, "past") { return "ita" } + if str_eq(form, "negative") { return "inai" } + if str_eq(form, "volitional") { return "iyou" } + if str_eq(form, "polite") { return "imasu" } + if str_eq(form, "polite-past") { return "imashita" } + if str_eq(form, "polite-neg") { return "imasen" } + if str_eq(form, "te") { return "ite" } + return dict_form + } + + // ある / aru (to be / exist, inanimate) + if str_eq(dict_form, "ある") { + if str_eq(form, "present") { return "ある" } + if str_eq(form, "past") { return "あった" } + if str_eq(form, "negative") { return "ない" } + if str_eq(form, "volitional") { return "あろう" } + if str_eq(form, "polite") { return "あります" } + if str_eq(form, "polite-past") { return "ありました" } + if str_eq(form, "polite-neg") { return "ありません" } + if str_eq(form, "te") { return "あって" } + return dict_form + } + if str_eq(dict_form, "aru") { + if str_eq(form, "present") { return "aru" } + if str_eq(form, "past") { return "atta" } + if str_eq(form, "negative") { return "nai" } + if str_eq(form, "volitional") { return "arou" } + if str_eq(form, "polite") { return "arimasu" } + if str_eq(form, "polite-past") { return "arimashita" } + if str_eq(form, "polite-neg") { return "arimasen" } + if str_eq(form, "te") { return "atte" } + return dict_form + } + + // だ / da (copula) + if str_eq(dict_form, "だ") { + if str_eq(form, "present") { return "だ" } + if str_eq(form, "past") { return "だった" } + if str_eq(form, "negative") { return "ではない" } + if str_eq(form, "volitional") { return "だろう" } + if str_eq(form, "polite") { return "です" } + if str_eq(form, "polite-past") { return "でした" } + if str_eq(form, "polite-neg") { return "ではありません" } + if str_eq(form, "te") { return "で" } + return dict_form + } + if str_eq(dict_form, "da") { + if str_eq(form, "present") { return "da" } + if str_eq(form, "past") { return "datta" } + if str_eq(form, "negative") { return "dewanai" } + if str_eq(form, "volitional") { return "darou" } + if str_eq(form, "polite") { return "desu" } + if str_eq(form, "polite-past") { return "deshita" } + if str_eq(form, "polite-neg") { return "dewaarimarsen" } + if str_eq(form, "te") { return "de" } + return dict_form + } + + // Unknown irregular — fall through to base form + return dict_form + } + + // ── Ichidan verbs ───────────────────────────────────────────────────────── + if str_eq(group, "ichidan") { + let stem: String = ja_ichidan_stem(dict_form) + + if str_eq(form, "present") { return dict_form } + if str_eq(form, "past") { return stem + "た" } + if str_eq(form, "negative") { return stem + "ない" } + if str_eq(form, "volitional") { return stem + "よう" } + if str_eq(form, "polite") { return stem + "ます" } + if str_eq(form, "polite-past") { return stem + "ました" } + if str_eq(form, "polite-neg") { return stem + "ません" } + if str_eq(form, "te") { return stem + "て" } + return dict_form + } + + // ── Godan verbs ─────────────────────────────────────────────────────────── + // Godan plain present: dictionary form unchanged + if str_eq(form, "present") { return dict_form } + + // Godan polite forms use the i-row stem + masu endings + if str_eq(form, "polite") { + let istem: String = ja_godan_stem_change(dict_form, "i") + return istem + "ます" + } + if str_eq(form, "polite-past") { + let istem: String = ja_godan_stem_change(dict_form, "i") + return istem + "ました" + } + if str_eq(form, "polite-neg") { + let istem: String = ja_godan_stem_change(dict_form, "i") + return istem + "ません" + } + + // Godan plain negative uses the a-row stem + nai + if str_eq(form, "negative") { + let astem: String = ja_godan_stem_change(dict_form, "a") + return astem + "ない" + } + + // Godan volitional: i-row + ou (う ending → おう, others → ろう via i-stem) + if str_eq(form, "volitional") { + // う-verbs: drop final う and add おう + if str_ends_with(dict_form, "う") { + return str_drop_last(dict_form, 1) + "おう" + } + let istem: String = ja_godan_stem_change(dict_form, "i") + return istem + "ろう" + } + + // Godan te-form: euphonic te-row stem + て (voiced ぐ ending → いで) + if str_eq(form, "te") { + let tstem: String = ja_godan_stem_change(dict_form, "te") + // Voiced consonants (ぐ) use で instead of て + if str_ends_with(dict_form, "ぐ") { return tstem + "いで" } + if str_ends_with(dict_form, "gu") { return tstem + "ide" } + // Nasal assimilation: ぬ/ぶ/む → んで + if str_ends_with(dict_form, "ぬ") { return tstem + "んで" } + if str_ends_with(dict_form, "ぶ") { return tstem + "んで" } + if str_ends_with(dict_form, "む") { return tstem + "んで" } + if str_ends_with(dict_form, "nu") { return tstem + "nde" } + if str_ends_with(dict_form, "bu") { return tstem + "nde" } + if str_ends_with(dict_form, "mu") { return tstem + "nde" } + // す → して + if str_ends_with(dict_form, "す") { return tstem + "して" } + if str_ends_with(dict_form, "su") { return tstem + "shite" } + // く → いて (tstem already has い) + if str_ends_with(dict_form, "く") { return tstem + "て" } + if str_ends_with(dict_form, "ku") { return tstem + "te" } + // つ/る/う → って + return tstem + "て" + } + + // Godan plain past: same stem changes as te-form, then た/だ + if str_eq(form, "past") { + let tstem: String = ja_godan_stem_change(dict_form, "te") + if str_ends_with(dict_form, "ぐ") { return tstem + "いだ" } + if str_ends_with(dict_form, "gu") { return tstem + "ida" } + if str_ends_with(dict_form, "ぬ") { return tstem + "んだ" } + if str_ends_with(dict_form, "ぶ") { return tstem + "んだ" } + if str_ends_with(dict_form, "む") { return tstem + "んだ" } + if str_ends_with(dict_form, "nu") { return tstem + "nda" } + if str_ends_with(dict_form, "bu") { return tstem + "nda" } + if str_ends_with(dict_form, "mu") { return tstem + "nda" } + if str_ends_with(dict_form, "す") { return tstem + "した" } + if str_ends_with(dict_form, "su") { return tstem + "shita" } + if str_ends_with(dict_form, "く") { return tstem + "た" } + if str_ends_with(dict_form, "ku") { return tstem + "ta" } + return tstem + "た" + } + + return dict_form +} + +// ── Case particles ──────────────────────────────────────────────────────────── +// +// Japanese nouns do not inflect; case is indicated by a postpositional particle +// placed directly after the noun. + +fn ja_particle(gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return "が" } + if str_eq(gram_case, "accusative") { return "を" } + if str_eq(gram_case, "dative") { return "に" } + if str_eq(gram_case, "genitive") { return "の" } + if str_eq(gram_case, "topic") { return "は" } + if str_eq(gram_case, "instrumental") { return "で" } + if str_eq(gram_case, "locative") { return "に" } + if str_eq(gram_case, "ablative") { return "から" } + if str_eq(gram_case, "direction") { return "へ" } + if str_eq(gram_case, "comitative") { return "と" } + return "" +} + +// ── Noun phrase construction ────────────────────────────────────────────────── +// +// ja_noun_phrase: attach the correct case particle to a noun. +// The particle immediately follows the noun with no space. + +fn ja_noun_phrase(noun: String, gram_case: String) -> String { + let p: String = ja_particle(gram_case) + if str_eq(p, "") { + return noun + } + return noun + p +} + +// ── Question particle ───────────────────────────────────────────────────────── +// +// Japanese questions are formed by appending か (ka) to the end of a sentence. + +fn ja_question_particle() -> String { + return "か" +} + +// ── Sentence-final particle attachment ─────────────────────────────────────── +// +// ja_make_question: append the question particle to a sentence. + +fn ja_make_question(sentence: String) -> String { + return sentence + ja_question_particle() +} diff --git a/elp/src/morphology-ja.elh b/elp/src/morphology-ja.elh new file mode 100644 index 0000000..4ecf826 --- /dev/null +++ b/elp/src/morphology-ja.elh @@ -0,0 +1,9 @@ +// auto-generated by elc --emit-header - do not edit +extern fn ja_verb_group(dict_form: String) -> String +extern fn ja_ichidan_stem(dict_form: String) -> String +extern fn ja_godan_stem_change(dict_form: String, row: String) -> String +extern fn ja_conjugate(dict_form: String, form: String) -> String +extern fn ja_particle(gram_case: String) -> String +extern fn ja_noun_phrase(noun: String, gram_case: String) -> String +extern fn ja_question_particle() -> String +extern fn ja_make_question(sentence: String) -> String diff --git a/elp/src/morphology-la.el b/elp/src/morphology-la.el new file mode 100644 index 0000000..a74da54 --- /dev/null +++ b/elp/src/morphology-la.el @@ -0,0 +1,871 @@ +// morphology-la.el - Latin morphology for the NLG engine. +// +// Implements fusional Latin verb conjugation and noun declension. Designed +// as a companion to morphology.el and called by the engine when the language +// profile code is "la". +// +// Language profile: code=la, name=Latin, morph_type=fusional, word_order=SOV, +// question_strategy=intonation, script=latin, family=italic. +// +// Verb conjugation covered: +// Tenses: present, past (perfect active), future +// Persons: first/second/third x singular/plural (slots 0-5) +// Conjugations: 1st (-are), 2nd (-ere long), 3rd (-ere short), 4th (-ire) +// Irregulars: esse (be), ire (go), velle (want), posse (can) +// Canonical map: "be" -> "esse" +// +// Noun declension covered: +// Cases: nominative, accusative, genitive, dative, ablative +// Declensions: 1st (-a fem), 2nd masc (-us), 2nd neut (-um), 3rd (-is), +// 4th (-us), 5th (-es) +// +// Latin has no articles. la_noun_phrase returns the declined noun directly. +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn la_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn la_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn la_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn la_str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +fn la_str_last3(s: String) -> String { + let n: Int = str_len(s) + if n < 3 { + return s + } + return str_slice(s, n - 3, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based slot index used in paradigm tables. +// 0 = 1st singular (ego) +// 1 = 2nd singular (tu) +// 2 = 3rd singular (is/ea/id) +// 3 = 1st plural (nos) +// 4 = 2nd plural (vos) +// 5 = 3rd plural (ei/eae/ea) + +fn la_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Conjugation class detection ──────────────────────────────────────────────── +// +// Latin verbs fall into four conjugation classes identified by the infinitive +// ending. The 2nd and 3rd conjugations both end in -ere; the 2nd has a long +// e (stem vowel retained before -re), the 3rd has a short e (thematic vowel). +// Heuristic: if the verb stem before -ere ends in a consonant cluster or a +// single consonant preceded by a short vowel, treat as 3rd; otherwise 2nd. +// In practice the caller passes dictionary infinitives, so we check known 2nd +// conjugation markers (stem ends in -e before -re, i.e. the penult is e) and +// known 4th (-ire) vs 3rd (-ere with consonant stem). +// +// Simplified detection strategy: +// ends in -are -> "1" +// ends in -ire -> "4" +// ends in -ere -> check penultimate vowel pattern: +// stem + "ere" where stem ends in a vowel-like syllable -> "2" +// otherwise -> "3" +// +// For the small working vocabulary, we rely on the ending length heuristic: +// -ere with 2nd conj: the infinitive without -re has a long e as last char, +// meaning the four chars before the final "re" are "e-consonant" or "ee". +// Simpler: ends in -ere and has stem length >= 3 with last stem char a vowel +// -> 2nd; else 3rd. This correctly handles monere (2nd) vs dicere (3rd). + +fn la_verb_class(verb: String) -> String { + if la_str_ends(verb, "are") { return "1" } + if la_str_ends(verb, "ire") { return "4" } + if la_str_ends(verb, "ere") { + // Strip -ere, look at the last char of the stem + let stem: String = la_str_drop_last(verb, 3) + let slen: Int = str_len(stem) + if slen == 0 { return "3" } + let last: String = str_slice(stem, slen - 1, slen) + // Stem ends in a vowel -> 2nd conjugation (monere, videre, habere) + if str_eq(last, "a") { return "2" } + if str_eq(last, "e") { return "2" } + if str_eq(last, "i") { return "2" } + if str_eq(last, "o") { return "2" } + if str_eq(last, "u") { return "2" } + // Stem ends in a consonant -> 3rd conjugation (dicere, edere, ducere) + return "3" + } + // Default: treat as 3rd if ending is unknown + return "3" +} + +// la_stem: strip the infinitive ending to get the present stem. +// +// 1st: -are -> stem (amāre -> am-) +// 2nd: -ere -> stem + e (monēre -> mone-) [keep the stem vowel] +// 3rd: -ere -> stem (dicere -> dic-) +// 4th: -ire -> stem + i (audire -> audi-) + +fn la_stem(verb: String, vclass: String) -> String { + if str_eq(vclass, "1") { return la_str_drop_last(verb, 3) } + if str_eq(vclass, "2") { return la_str_drop_last(verb, 2) } // drop -re; keep -e + if str_eq(vclass, "3") { return la_str_drop_last(verb, 3) } + if str_eq(vclass, "4") { return la_str_drop_last(verb, 2) } // drop -re; keep -i + return la_str_drop_last(verb, 3) +} + +// la_perfect_stem: derive the perfect active stem. +// +// Latin perfect stems are highly irregular in general. For regular verbs the +// most common pattern is stem + v- (1st/4th) or stem + u- (2nd/3rd), but this +// is not universal. We use the following heuristic approximations: +// +// 1st conj: present stem + av- (amavi, portavi) +// 2nd conj: present stem + u- (monui, habui) -- drops the -e from stem +// 3rd conj: present stem + - (doubled root; context varies; use stem + i) +// 4th conj: present stem + iv- (audivi) +// +// This will be wrong for many common verbs; callers can override by adding the +// verb to the la_irregular_perfect table. + +fn la_perfect_stem(verb: String, vclass: String) -> String { + if str_eq(vclass, "1") { + // amāre -> am + av = amav + let pstem: String = la_str_drop_last(verb, 3) + return pstem + "av" + } + if str_eq(vclass, "2") { + // monēre -> mone -> drop e -> mon + u = monu + let pstem: String = la_str_drop_last(verb, 3) + return pstem + "u" + } + if str_eq(vclass, "3") { + // dicere -> dic + (perfect varies; approximate with stem + -i stem) + let pstem: String = la_str_drop_last(verb, 3) + return pstem + } + if str_eq(vclass, "4") { + // audire -> audi + iv = audiv + let pstem: String = la_str_drop_last(verb, 2) + return pstem + "v" + } + return la_str_drop_last(verb, 3) +} + +// ── Perfect active endings (all conjugations share these) ───────────────────── +// +// Slot: 0=1sg 1=2sg 2=3sg 3=1pl 4=2pl 5=3pl +// -i, -isti, -it, -imus, -istis, -erunt + +fn la_perfect_ending(slot: Int) -> String { + if slot == 0 { return "i" } + if slot == 1 { return "isti" } + if slot == 2 { return "it" } + if slot == 3 { return "imus" } + if slot == 4 { return "istis" } + return "erunt" +} + +// ── Present tense endings ───────────────────────────────────────────────────── +// +// 1st: -o, -as, -at, -amus, -atis, -ant +// 2nd: -eo, -es, -et, -emus, -etis, -ent +// 3rd: -o, -is, -it, -imus, -itis, -unt +// 4th: -io, -is, -it, -imus, -itis, -iunt +// +// Note: for 1st conj the stem already ends in the thematic vowel (am- not ama- +// at slot 0 because the -o absorbs it). The 2nd conj stem retains its -e and +// the ending is appended directly. + +fn la_present_ending(vclass: String, slot: Int) -> String { + if str_eq(vclass, "1") { + if slot == 0 { return "o" } + if slot == 1 { return "as" } + if slot == 2 { return "at" } + if slot == 3 { return "amus" } + if slot == 4 { return "atis" } + return "ant" + } + if str_eq(vclass, "2") { + if slot == 0 { return "o" } + if slot == 1 { return "s" } // stem ends -e; -es becomes mones + if slot == 2 { return "t" } // monet + if slot == 3 { return "mus" } // monemus + if slot == 4 { return "tis" } // monetis + return "nt" // monent + } + if str_eq(vclass, "3") { + if slot == 0 { return "o" } + if slot == 1 { return "is" } + if slot == 2 { return "it" } + if slot == 3 { return "imus" } + if slot == 4 { return "itis" } + return "unt" + } + // 4th (-ire) + if slot == 0 { return "o" } + if slot == 1 { return "s" } // audi + s = audis + if slot == 2 { return "t" } // audit + if slot == 3 { return "mus" } // audimus + if slot == 4 { return "tis" } // auditis + return "unt" // audiunt +} + +// la_present_form: build the present tense form for a regular verb. +// +// Special slot-0 handling per class: +// 1st: am- + o = amo (strip thematic -a from stem first) +// 2nd: mone- + o = moneo +// 3rd: dic- + o = dico +// 4th: audi- + o = audio (the -i stays as part of the stem) + +fn la_present_form(stem: String, vclass: String, slot: Int) -> String { + if str_eq(vclass, "1") { + if slot == 0 { + // stem ends in the thematic -a which is absorbed by -o + return la_str_drop_last(stem, 1) + "o" + } + return stem + la_present_ending(vclass, slot) + } + if str_eq(vclass, "2") { + // stem ends in -e; all endings attach directly + return stem + la_present_ending(vclass, slot) + } + if str_eq(vclass, "3") { + if slot == 0 { + return stem + "o" + } + return stem + la_present_ending(vclass, slot) + } + // 4th: stem ends in -i + if slot == 0 { + return stem + "o" // audio + } + if slot == 5 { + return stem + "unt" // audiunt (special: i + unt) + } + return stem + la_present_ending(vclass, slot) +} + +// ── Future tense ────────────────────────────────────────────────────────────── +// +// 1st/2nd conjugations: present stem + bo/bis/bit/bimus/bitis/bunt +// (1st: thematic -a dropped before -bo; 2nd: -e kept, ebo -> moneo... actually +// for 2nd the future is mone + bo = monebo; stem keeps -e) +// +// 3rd/4th conjugations: present stem + am/es/et/emus/etis/ent +// (No thematic vowel linking; -am directly on consonant stem) + +fn la_future_ending_12(slot: Int) -> String { + if slot == 0 { return "bo" } + if slot == 1 { return "bis" } + if slot == 2 { return "bit" } + if slot == 3 { return "bimus" } + if slot == 4 { return "bitis" } + return "bunt" +} + +fn la_future_ending_34(slot: Int) -> String { + if slot == 0 { return "am" } + if slot == 1 { return "es" } + if slot == 2 { return "et" } + if slot == 3 { return "emus" } + if slot == 4 { return "etis" } + return "ent" +} + +fn la_future_form(stem: String, vclass: String, slot: Int) -> String { + if str_eq(vclass, "1") { + // Drop thematic -a then add -bo etc: am- + bo = amabo? No: ama + bo = amabo + // Actually for 1st conj the stem IS the thematic-vowel stem (ama-), + // and the future is ama + bo = amabo. + return stem + la_future_ending_12(slot) + } + if str_eq(vclass, "2") { + // mone + bo = monebo + return stem + la_future_ending_12(slot) + } + if str_eq(vclass, "3") { + // dic + am = dicam + return stem + la_future_ending_34(slot) + } + // 4th: audi + am = audiam + return stem + la_future_ending_34(slot) +} + +// ── Irregular verb tables ───────────────────────────────────────────────────── +// +// esse (be), ire (go), velle (want), posse (can/be able) + +fn la_esse_present(slot: Int) -> String { + if slot == 0 { return "sum" } + if slot == 1 { return "es" } + if slot == 2 { return "est" } + if slot == 3 { return "sumus" } + if slot == 4 { return "estis" } + return "sunt" +} + +fn la_esse_past(slot: Int) -> String { + if slot == 0 { return "fui" } + if slot == 1 { return "fuisti" } + if slot == 2 { return "fuit" } + if slot == 3 { return "fuimus" } + if slot == 4 { return "fuistis" } + return "fuerunt" +} + +fn la_esse_future(slot: Int) -> String { + if slot == 0 { return "ero" } + if slot == 1 { return "eris" } + if slot == 2 { return "erit" } + if slot == 3 { return "erimus" } + if slot == 4 { return "eritis" } + return "erunt" +} + +fn la_ire_present(slot: Int) -> String { + if slot == 0 { return "eo" } + if slot == 1 { return "is" } + if slot == 2 { return "it" } + if slot == 3 { return "imus" } + if slot == 4 { return "itis" } + return "eunt" +} + +fn la_ire_past(slot: Int) -> String { + if slot == 0 { return "ii" } + if slot == 1 { return "isti" } // contracted: iisti -> isti + if slot == 2 { return "iit" } + if slot == 3 { return "iimus" } + if slot == 4 { return "istis" } + return "ierunt" +} + +fn la_ire_future(slot: Int) -> String { + if slot == 0 { return "ibo" } + if slot == 1 { return "ibis" } + if slot == 2 { return "ibit" } + if slot == 3 { return "ibimus" } + if slot == 4 { return "ibitis" } + return "ibunt" +} + +fn la_velle_present(slot: Int) -> String { + if slot == 0 { return "volo" } + if slot == 1 { return "vis" } + if slot == 2 { return "vult" } + if slot == 3 { return "volumus" } + if slot == 4 { return "vultis" } + return "volunt" +} + +fn la_velle_past(slot: Int) -> String { + if slot == 0 { return "volui" } + if slot == 1 { return "voluisti" } + if slot == 2 { return "voluit" } + if slot == 3 { return "voluimus" } + if slot == 4 { return "voluistis" } + return "voluerunt" +} + +fn la_velle_future(slot: Int) -> String { + if slot == 0 { return "volam" } + if slot == 1 { return "voles" } + if slot == 2 { return "volet" } + if slot == 3 { return "volemus" } + if slot == 4 { return "voletis" } + return "volent" +} + +fn la_posse_present(slot: Int) -> String { + if slot == 0 { return "possum" } + if slot == 1 { return "potes" } + if slot == 2 { return "potest" } + if slot == 3 { return "possumus" } + if slot == 4 { return "potestis" } + return "possunt" +} + +fn la_posse_past(slot: Int) -> String { + if slot == 0 { return "potui" } + if slot == 1 { return "potuisti" } + if slot == 2 { return "potuit" } + if slot == 3 { return "potuimus" } + if slot == 4 { return "potuistis" } + return "potuerunt" +} + +fn la_posse_future(slot: Int) -> String { + if slot == 0 { return "potero" } + if slot == 1 { return "poteris" } + if slot == 2 { return "poterit" } + if slot == 3 { return "poterimus" } + if slot == 4 { return "poteritis" } + return "poterunt" +} + +// ── Irregular perfect stems for common verbs ────────────────────────────────── +// +// Returns the perfect stem for common irregular verbs, or "" if not found. +// When a perfect stem is returned, la_perfect_ending() is appended directly. +// +// Verb Perfect stem Example: 3sg +// edere ed- edit +// dicere dix- dixit +// ducere dux- duxit +// facere fec- fecit +// capere cep- cepit +// venire ven- venit (same as present; context clarifies) +// videre vid- vidit +// esse -> handled separately +// ire -> handled separately + +fn la_irregular_perfect_stem(verb: String) -> String { + if str_eq(verb, "edere") { return "ed" } + if str_eq(verb, "dicere") { return "dix" } + if str_eq(verb, "ducere") { return "dux" } + if str_eq(verb, "facere") { return "fec" } + if str_eq(verb, "capere") { return "cep" } + if str_eq(verb, "venire") { return "ven" } + if str_eq(verb, "videre") { return "vid" } + if str_eq(verb, "bibere") { return "bib" } + if str_eq(verb, "currere") { return "cucurr" } + if str_eq(verb, "legere") { return "leg" } + if str_eq(verb, "scribere") { return "scrips" } + if str_eq(verb, "vivere") { return "vix" } + if str_eq(verb, "cadere") { return "cecid" } + if str_eq(verb, "ponere") { return "posu" } + if str_eq(verb, "querere") { return "quaesiv" } + return "" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// The semantic layer passes English canonical labels ("be", "go", "want"). +// Map these to Latin infinitives before conjugation. + +fn la_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "esse" } + if str_eq(verb, "go") { return "ire" } + if str_eq(verb, "want") { return "velle" } + if str_eq(verb, "can") { return "posse" } + if str_eq(verb, "eat") { return "edere" } + if str_eq(verb, "say") { return "dicere" } + if str_eq(verb, "see") { return "videre" } + if str_eq(verb, "make") { return "facere" } + if str_eq(verb, "come") { return "venire" } + if str_eq(verb, "read") { return "legere" } + if str_eq(verb, "write") { return "scribere" } + if str_eq(verb, "run") { return "currere" } + if str_eq(verb, "live") { return "vivere" } + if str_eq(verb, "love") { return "amare" } + return verb +} + +// ── la_conjugate: main conjugation entry point ──────────────────────────────── +// +// verb: Latin infinitive (e.g. "amare", "esse") or English canonical +// tense: "present" | "past" | "future" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to the base (infinitive) when a form +// is not implemented rather than crashing. + +fn la_conjugate(verb: String, tense: String, person: String, number: String) -> String { + // Map canonical English labels to Latin infinitives + let v: String = la_map_canonical(verb) + let slot: Int = la_slot(person, number) + + // ── Irregulars ──────────────────────────────────────────────────────────── + + if str_eq(v, "esse") { + if str_eq(tense, "present") { return la_esse_present(slot) } + if str_eq(tense, "past") { return la_esse_past(slot) } + if str_eq(tense, "future") { return la_esse_future(slot) } + return v + } + + if str_eq(v, "ire") { + if str_eq(tense, "present") { return la_ire_present(slot) } + if str_eq(tense, "past") { return la_ire_past(slot) } + if str_eq(tense, "future") { return la_ire_future(slot) } + return v + } + + if str_eq(v, "velle") { + if str_eq(tense, "present") { return la_velle_present(slot) } + if str_eq(tense, "past") { return la_velle_past(slot) } + if str_eq(tense, "future") { return la_velle_future(slot) } + return v + } + + if str_eq(v, "posse") { + if str_eq(tense, "present") { return la_posse_present(slot) } + if str_eq(tense, "past") { return la_posse_past(slot) } + if str_eq(tense, "future") { return la_posse_future(slot) } + return v + } + + // ── Regular conjugation ─────────────────────────────────────────────────── + + let vclass: String = la_verb_class(v) + let stem: String = la_stem(v, vclass) + + if str_eq(tense, "present") { + return la_present_form(stem, vclass, slot) + } + + if str_eq(tense, "past") { + // Check for a known irregular perfect stem first + let irreg_perf: String = la_irregular_perfect_stem(v) + if !str_eq(irreg_perf, "") { + return irreg_perf + la_perfect_ending(slot) + } + // Regular perfect stem derivation + let perf_stem: String = la_perfect_stem(v, vclass) + return perf_stem + la_perfect_ending(slot) + } + + if str_eq(tense, "future") { + return la_future_form(stem, vclass, slot) + } + + // Unknown tense: return infinitive + return v +} + +// ── Declension detection ─────────────────────────────────────────────────────── +// +// Infer Latin declension from the nominative singular ending. +// +// ends in -a -> 1st declension (feminine) +// ends in -us -> 2nd or 4th; disambiguate: if genitive suffix pattern +// suggests 4th (-us gen) we use 4th, otherwise 2nd masc. +// Heuristic: monosyllabic -us nouns and known 4th-decl words +// use 4th; longer -us words default to 2nd. +// ends in -um -> 2nd declension neuter +// ends in -is -> 3rd declension (genitive -is is also 3rd nom for some words; +// treat nom -is as 3rd) +// ends in -es -> 5th declension +// ends in -er -> 2nd masc (puer, ager) +// otherwise -> 3rd declension (consonant stems: rex, miles, etc.) + +fn la_declension(noun: String) -> String { + if la_str_ends(noun, "a") { return "1" } + if la_str_ends(noun, "um") { return "2n" } + if la_str_ends(noun, "er") { return "2m" } + if la_str_ends(noun, "us") { + // 4th declension heuristic: check known 4th decl nouns + if str_eq(noun, "manus") { return "4" } + if str_eq(noun, "usus") { return "4" } + if str_eq(noun, "fructus") { return "4" } + if str_eq(noun, "gradus") { return "4" } + if str_eq(noun, "cursus") { return "4" } + if str_eq(noun, "sensus") { return "4" } + if str_eq(noun, "spiritus") { return "4" } + if str_eq(noun, "portus") { return "4" } + if str_eq(noun, "domus") { return "4" } + if str_eq(noun, "impetus") { return "4" } + // Default: 2nd masc + return "2m" + } + if la_str_ends(noun, "es") { return "5" } + if la_str_ends(noun, "is") { return "3" } + // Consonant-stem 3rd declension (rex, canis, leo, etc.) + return "3" +} + +// ── 1st declension: -a nouns (mostly feminine) ──────────────────────────────── +// +// Stem: remove final -a +// Singular: nom -a gen -ae dat -ae acc -am abl -a +// Plural: nom -ae gen -arum dat -is acc -as abl -is + +fn la_decline_1(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "ae" } + if str_eq(gram_case, "dative") { return stem + "ae" } + if str_eq(gram_case, "accusative") { return stem + "am" } + if str_eq(gram_case, "ablative") { return stem + "a" } + // vocative same as nominative for 1st decl + return stem + "a" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "ae" } + if str_eq(gram_case, "genitive") { return stem + "arum" } + if str_eq(gram_case, "dative") { return stem + "is" } + if str_eq(gram_case, "accusative") { return stem + "as" } + if str_eq(gram_case, "ablative") { return stem + "is" } + return stem + "ae" +} + +// ── 2nd declension masculine: -us nouns ─────────────────────────────────────── +// +// Stem: remove final -us +// Singular: nom -us gen -i dat -o acc -um abl -o +// Plural: nom -i gen -orum dat -is acc -os abl -is + +fn la_decline_2m(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "us" } + if str_eq(gram_case, "genitive") { return stem + "i" } + if str_eq(gram_case, "dative") { return stem + "o" } + if str_eq(gram_case, "accusative") { return stem + "um" } + if str_eq(gram_case, "ablative") { return stem + "o" } + return stem + "us" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "i" } + if str_eq(gram_case, "genitive") { return stem + "orum" } + if str_eq(gram_case, "dative") { return stem + "is" } + if str_eq(gram_case, "accusative") { return stem + "os" } + if str_eq(gram_case, "ablative") { return stem + "is" } + return stem + "i" +} + +// ── 2nd declension neuter: -um nouns ───────────────────────────────────────── +// +// Stem: remove final -um +// Singular: nom/acc -um gen -i dat/abl -o +// Plural: nom/acc -a gen -orum dat/abl -is + +fn la_decline_2n(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "um" } + if str_eq(gram_case, "genitive") { return stem + "i" } + if str_eq(gram_case, "dative") { return stem + "o" } + if str_eq(gram_case, "accusative") { return stem + "um" } + if str_eq(gram_case, "ablative") { return stem + "o" } + return stem + "um" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "orum" } + if str_eq(gram_case, "dative") { return stem + "is" } + if str_eq(gram_case, "accusative") { return stem + "a" } + if str_eq(gram_case, "ablative") { return stem + "is" } + return stem + "a" +} + +// ── 3rd declension: consonant and i-stem nouns ──────────────────────────────── +// +// The 3rd declension is highly varied; the nominative singular is usually +// irregular (the stem is seen in the genitive). The caller passes the +// nominative singular form; we use it as-is for nominative and treat it as +// the stem for other cases (approximation for productive NLG use). +// +// Singular: nom (unchanged) gen -is dat -i acc -em abl -e +// Plural: nom -es gen -um dat -ibus acc -es abl -ibus +// +// For i-stems (is ending in nom sg) we keep the full form as the stem and +// add endings directly to the base minus -is. + +fn la_decline_3(noun: String, gram_case: String, number: String) -> String { + // For 3rd decl the nom sg is given; the stem for oblique cases is + // derived by stripping -is if the nom ends in -is, otherwise we use + // the noun as the stem for the oblique and append endings. + let oblique_stem: String = "" + if la_str_ends(noun, "is") { + let oblique_stem = la_str_drop_last(noun, 2) + } else { + let oblique_stem = noun + } + + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "genitive") { return oblique_stem + "is" } + if str_eq(gram_case, "dative") { return oblique_stem + "i" } + if str_eq(gram_case, "accusative") { return oblique_stem + "em" } + if str_eq(gram_case, "ablative") { return oblique_stem + "e" } + return noun + } + // plural + if str_eq(gram_case, "nominative") { return oblique_stem + "es" } + if str_eq(gram_case, "genitive") { return oblique_stem + "um" } + if str_eq(gram_case, "dative") { return oblique_stem + "ibus" } + if str_eq(gram_case, "accusative") { return oblique_stem + "es" } + if str_eq(gram_case, "ablative") { return oblique_stem + "ibus" } + return oblique_stem + "es" +} + +// ── 4th declension: -us nouns (mostly masculine) ───────────────────────────── +// +// Stem: remove final -us +// Singular: nom -us gen -us dat -ui acc -um abl -u +// Plural: nom -us gen -uum dat -ibus acc -us abl -ibus + +fn la_decline_4(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "us" } + if str_eq(gram_case, "genitive") { return stem + "us" } + if str_eq(gram_case, "dative") { return stem + "ui" } + if str_eq(gram_case, "accusative") { return stem + "um" } + if str_eq(gram_case, "ablative") { return stem + "u" } + return stem + "us" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "us" } + if str_eq(gram_case, "genitive") { return stem + "uum" } + if str_eq(gram_case, "dative") { return stem + "ibus" } + if str_eq(gram_case, "accusative") { return stem + "us" } + if str_eq(gram_case, "ablative") { return stem + "ibus" } + return stem + "us" +} + +// ── 5th declension: -es nouns (mostly feminine) ─────────────────────────────── +// +// Stem: remove final -es +// Singular: nom -es gen -ei dat -ei acc -em abl -e +// Plural: nom -es gen -erum dat -ebus acc -es abl -ebus + +fn la_decline_5(stem: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "es" } + if str_eq(gram_case, "genitive") { return stem + "ei" } + if str_eq(gram_case, "dative") { return stem + "ei" } + if str_eq(gram_case, "accusative") { return stem + "em" } + if str_eq(gram_case, "ablative") { return stem + "e" } + return stem + "es" + } + // plural + if str_eq(gram_case, "nominative") { return stem + "es" } + if str_eq(gram_case, "genitive") { return stem + "erum" } + if str_eq(gram_case, "dative") { return stem + "ebus" } + if str_eq(gram_case, "accusative") { return stem + "es" } + if str_eq(gram_case, "ablative") { return stem + "ebus" } + return stem + "es" +} + +// ── 2nd declension -er nouns ────────────────────────────────────────────────── +// +// Nouns like "puer" retain -e throughout; nouns like "ager" drop it in oblique. +// Heuristic: if the stem (drop -er) + er would be the original, check if the +// penultimate char before -er is also r (like "puer": stem "pu" + "er" = puer) +// vs "ager": stem "agr" drops e. We default to retaining -e (puer pattern) +// for simplicity; "ager" type is less common. +// +// Singular: nom -er gen -i dat -o acc -um abl -o +// Plural: nom -i gen -orum dat -is acc -os abl -is + +fn la_decline_2er(noun: String, gram_case: String, number: String) -> String { + // Oblique stem: drop -er then add "r" to get true stem? For simplicity + // use the form with -e retained (puer pattern): stem = noun minus "r". + // This correctly handles "puer" -> "pueri", "puero" etc. + // For ager-type the caller would need to pass the stem form; we approximate. + let stem: String = la_str_drop_last(noun, 1) // drop final -r -> "pue" + + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "genitive") { return stem + "ri" } // pueri + if str_eq(gram_case, "dative") { return stem + "ro" } // puero + if str_eq(gram_case, "accusative") { return stem + "rum" } // puerum + if str_eq(gram_case, "ablative") { return stem + "ro" } // puero + return noun + } + // plural + if str_eq(gram_case, "nominative") { return stem + "ri" } // pueri + if str_eq(gram_case, "genitive") { return stem + "rorum" } // puerorum + if str_eq(gram_case, "dative") { return stem + "ris" } // pueris + if str_eq(gram_case, "accusative") { return stem + "ros" } // pueros + if str_eq(gram_case, "ablative") { return stem + "ris" } // pueris + return stem + "ri" +} + +// ── la_decline: main declension entry point ─────────────────────────────────── +// +// noun: nominative singular Latin noun (e.g. "feles", "aqua", "dominus") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" | "ablative" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to the nominative singular when a +// form is not implemented. + +fn la_decline(noun: String, gram_case: String, number: String) -> String { + let decl: String = la_declension(noun) + + if str_eq(decl, "1") { + let stem: String = la_str_drop_last(noun, 1) + return la_decline_1(stem, gram_case, number) + } + + if str_eq(decl, "2m") { + let stem: String = la_str_drop_last(noun, 2) + return la_decline_2m(stem, gram_case, number) + } + + if str_eq(decl, "2n") { + let stem: String = la_str_drop_last(noun, 2) + return la_decline_2n(stem, gram_case, number) + } + + if str_eq(decl, "2er") { + return la_decline_2er(noun, gram_case, number) + } + + if str_eq(decl, "3") { + return la_decline_3(noun, gram_case, number) + } + + if str_eq(decl, "4") { + let stem: String = la_str_drop_last(noun, 2) + return la_decline_4(stem, gram_case, number) + } + + if str_eq(decl, "5") { + let stem: String = la_str_drop_last(noun, 2) + return la_decline_5(stem, gram_case, number) + } + + // Unknown declension: return nominative unchanged + return noun +} + +// ── la_noun_phrase: noun phrase builder ─────────────────────────────────────── +// +// Latin has no definite or indefinite articles. The declined noun form is the +// complete noun phrase. The definite parameter is accepted for interface +// compatibility with other language modules but has no effect. +// +// noun: nominative singular Latin noun +// gram_case: "nominative" | "accusative" | "genitive" | "dative" | "ablative" +// number: "singular" | "plural" +// definite: ignored (Latin has no articles) + +fn la_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return la_decline(noun, gram_case, number) +} diff --git a/elp/src/morphology-la.elh b/elp/src/morphology-la.elh new file mode 100644 index 0000000..39bf57d --- /dev/null +++ b/elp/src/morphology-la.elh @@ -0,0 +1,41 @@ +// auto-generated by elc --emit-header - do not edit +extern fn la_str_ends(s: String, suf: String) -> Bool +extern fn la_str_drop_last(s: String, n: Int) -> String +extern fn la_str_last_char(s: String) -> String +extern fn la_str_last2(s: String) -> String +extern fn la_str_last3(s: String) -> String +extern fn la_slot(person: String, number: String) -> Int +extern fn la_verb_class(verb: String) -> String +extern fn la_stem(verb: String, vclass: String) -> String +extern fn la_perfect_stem(verb: String, vclass: String) -> String +extern fn la_perfect_ending(slot: Int) -> String +extern fn la_present_ending(vclass: String, slot: Int) -> String +extern fn la_present_form(stem: String, vclass: String, slot: Int) -> String +extern fn la_future_ending_12(slot: Int) -> String +extern fn la_future_ending_34(slot: Int) -> String +extern fn la_future_form(stem: String, vclass: String, slot: Int) -> String +extern fn la_esse_present(slot: Int) -> String +extern fn la_esse_past(slot: Int) -> String +extern fn la_esse_future(slot: Int) -> String +extern fn la_ire_present(slot: Int) -> String +extern fn la_ire_past(slot: Int) -> String +extern fn la_ire_future(slot: Int) -> String +extern fn la_velle_present(slot: Int) -> String +extern fn la_velle_past(slot: Int) -> String +extern fn la_velle_future(slot: Int) -> String +extern fn la_posse_present(slot: Int) -> String +extern fn la_posse_past(slot: Int) -> String +extern fn la_posse_future(slot: Int) -> String +extern fn la_irregular_perfect_stem(verb: String) -> String +extern fn la_map_canonical(verb: String) -> String +extern fn la_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn la_declension(noun: String) -> String +extern fn la_decline_1(stem: String, gram_case: String, number: String) -> String +extern fn la_decline_2m(stem: String, gram_case: String, number: String) -> String +extern fn la_decline_2n(stem: String, gram_case: String, number: String) -> String +extern fn la_decline_3(noun: String, gram_case: String, number: String) -> String +extern fn la_decline_4(stem: String, gram_case: String, number: String) -> String +extern fn la_decline_5(stem: String, gram_case: String, number: String) -> String +extern fn la_decline_2er(noun: String, gram_case: String, number: String) -> String +extern fn la_decline(noun: String, gram_case: String, number: String) -> String +extern fn la_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-non.el b/elp/src/morphology-non.el new file mode 100644 index 0000000..c7eafb6 --- /dev/null +++ b/elp/src/morphology-non.el @@ -0,0 +1,555 @@ +// morphology-non.el - Old Norse morphology for the NLG engine. +// +// Implements Old Norse verb conjugation and noun declension for the ca. 700-1100 CE +// period. Designed as a companion to morphology.el and called by the engine when +// the language profile code is "non". +// +// Language profile: code=non, name=Old Norse, morph_type=fusional, word_order=V2, +// question_strategy=inversion, script=latin, family=germanic. +// +// Verb conjugation covered: +// Tenses: present, past +// Persons: first/second/third x singular/plural (slots 0-5) +// Classes: weak (-a infinitive: -aði past), and a set of common strong/irregular verbs +// Irregulars: vera (be), hafa (have), ganga (go), sjá (see), segja (say), +// koma (come) +// Canonical map: "be" -> "vera" +// +// Noun declension covered: +// Strong masculine a-stem (like "armr") +// Strong feminine ō-stem (like "gör") +// Strong neuter a-stem (like "land") +// Cases: nominative, accusative, genitive, dative +// Numbers: singular, plural +// Definite suffix: appended to the declined form (masc -inn/-ins/-inum, neut -it) +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn non_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn non_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn non_last(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { return "" } + return str_slice(s, n - 1, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based paradigm slot. +// 0 = 1st singular (ek) +// 1 = 2nd singular (þú) +// 2 = 3rd singular (hann/hon/þat) +// 3 = 1st plural (vér) +// 4 = 2nd plural (þér) +// 5 = 3rd plural (þeir/þær/þau) + +fn non_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Irregular verb tables ────────────────────────────────────────────────────── +// +// Each irregular verb has a present and past paradigm of six forms (slots 0-5). + +fn non_vera_present(slot: Int) -> String { + if slot == 0 { return "em" } + if slot == 1 { return "ert" } + if slot == 2 { return "er" } + if slot == 3 { return "erum" } + if slot == 4 { return "eruð" } + return "eru" +} + +fn non_vera_past(slot: Int) -> String { + if slot == 0 { return "var" } + if slot == 1 { return "vart" } + if slot == 2 { return "var" } + if slot == 3 { return "vórum" } + if slot == 4 { return "vóruð" } + return "vóru" +} + +fn non_hafa_present(slot: Int) -> String { + if slot == 0 { return "hefi" } + if slot == 1 { return "hefr" } + if slot == 2 { return "hefr" } + if slot == 3 { return "höfum" } + if slot == 4 { return "hafið" } + return "hafa" +} + +fn non_hafa_past(slot: Int) -> String { + if slot == 0 { return "hafða" } + if slot == 1 { return "hafðir" } + if slot == 2 { return "hafði" } + if slot == 3 { return "höfðum" } + if slot == 4 { return "höfðuð" } + return "höfðu" +} + +fn non_ganga_present(slot: Int) -> String { + if slot == 0 { return "geng" } + if slot == 1 { return "gengr" } + if slot == 2 { return "gengr" } + if slot == 3 { return "göngum" } + if slot == 4 { return "gangið" } + return "ganga" +} + +fn non_ganga_past(slot: Int) -> String { + if slot == 0 { return "gekk" } + if slot == 1 { return "gekkt" } + if slot == 2 { return "gekk" } + if slot == 3 { return "gengum" } + if slot == 4 { return "genguð" } + return "gengu" +} + +fn non_sja_present(slot: Int) -> String { + if slot == 0 { return "sé" } + if slot == 1 { return "sér" } + if slot == 2 { return "sér" } + if slot == 3 { return "séum" } + if slot == 4 { return "séið" } + return "sjá" +} + +fn non_sja_past(slot: Int) -> String { + if slot == 0 { return "sá" } + if slot == 1 { return "sást" } + if slot == 2 { return "sá" } + if slot == 3 { return "sám" } + if slot == 4 { return "sáð" } + return "sáu" +} + +fn non_segja_present(slot: Int) -> String { + if slot == 0 { return "segi" } + if slot == 1 { return "segir" } + if slot == 2 { return "segir" } + if slot == 3 { return "segjum" } + if slot == 4 { return "segið" } + return "segja" +} + +fn non_segja_past(slot: Int) -> String { + if slot == 0 { return "sagði" } + if slot == 1 { return "sagðir" } + if slot == 2 { return "sagði" } + if slot == 3 { return "sögðum" } + if slot == 4 { return "sögðuð" } + return "sögðu" +} + +fn non_koma_present(slot: Int) -> String { + if slot == 0 { return "kem" } + if slot == 1 { return "kemr" } + if slot == 2 { return "kemr" } + if slot == 3 { return "komum" } + if slot == 4 { return "komið" } + return "koma" +} + +fn non_koma_past(slot: Int) -> String { + if slot == 0 { return "kom" } + if slot == 1 { return "komt" } + if slot == 2 { return "kom" } + if slot == 3 { return "komum" } + if slot == 4 { return "komuð" } + return "komu" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Maps English semantic labels to Old Norse infinitives so the semantic layer +// can request forms without knowing the target language lexeme. + +fn non_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "vera" } + if str_eq(verb, "have") { return "hafa" } + if str_eq(verb, "go") { return "ganga" } + if str_eq(verb, "see") { return "sjá" } + if str_eq(verb, "say") { return "segja" } + if str_eq(verb, "come") { return "koma" } + return verb +} + +// ── Weak verb conjugation ────────────────────────────────────────────────────── +// +// Weak verbs (infinitive ending in -a) form the productive conjugation class. +// +// Present tense (stem = drop final -a from infinitive): +// Sg: 1st stem + -a 2nd stem + -ar 3rd stem + -ar +// Pl: 1st stem + -um 2nd stem + -ið 3rd stem + -a +// +// Past tense (suffix -aði- inserted after stem): +// Sg: 1st stem + -aði 2nd stem + -aðir 3rd stem + -aði +// Pl: 1st stem + -uðum 2nd stem + -uðuð 3rd stem + -uðu + +fn non_weak_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "a" } + if slot == 1 { return stem + "ar" } + if slot == 2 { return stem + "ar" } + if slot == 3 { return stem + "um" } + if slot == 4 { return stem + "ið" } + return stem + "a" +} + +fn non_weak_past(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "aði" } + if slot == 1 { return stem + "aðir" } + if slot == 2 { return stem + "aði" } + if slot == 3 { return stem + "uðum" } + if slot == 4 { return stem + "uðuð" } + return stem + "uðu" +} + +// ── non_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Old Norse infinitive (e.g. "kalla", "vera") or English canonical label +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Unknown tenses fall back to the infinitive rather +// than crashing. + +fn non_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = non_map_canonical(verb) + let slot: Int = non_slot(person, number) + + // ── Irregulars ──────────────────────────────────────────────────────────── + + if str_eq(v, "vera") { + if str_eq(tense, "present") { return non_vera_present(slot) } + if str_eq(tense, "past") { return non_vera_past(slot) } + return v + } + + if str_eq(v, "hafa") { + if str_eq(tense, "present") { return non_hafa_present(slot) } + if str_eq(tense, "past") { return non_hafa_past(slot) } + return v + } + + if str_eq(v, "ganga") { + if str_eq(tense, "present") { return non_ganga_present(slot) } + if str_eq(tense, "past") { return non_ganga_past(slot) } + return v + } + + if str_eq(v, "sjá") { + if str_eq(tense, "present") { return non_sja_present(slot) } + if str_eq(tense, "past") { return non_sja_past(slot) } + return v + } + + if str_eq(v, "segja") { + if str_eq(tense, "present") { return non_segja_present(slot) } + if str_eq(tense, "past") { return non_segja_past(slot) } + return v + } + + if str_eq(v, "koma") { + if str_eq(tense, "present") { return non_koma_present(slot) } + if str_eq(tense, "past") { return non_koma_past(slot) } + return v + } + + // ── Regular weak verb (-a infinitive) ──────────────────────────────────── + // + // If the verb ends in -a, strip it to get the stem and apply weak endings. + // Otherwise fall back to returning the base form unchanged. + + if non_str_ends(v, "a") { + let stem: String = non_drop(v, 1) + if str_eq(tense, "present") { return non_weak_present(stem, slot) } + if str_eq(tense, "past") { return non_weak_past(stem, slot) } + return v + } + + // Unknown verb form: return the infinitive unchanged + return v +} + +// ── Strong masculine a-stem declension ("armr" — arm) ───────────────────────── +// +// The paradigm below uses "armr" as the exemplar. The caller passes the full +// nominative singular (including the -r ending); the oblique stem is derived +// by stripping -r (or -ur) from the nominative. +// +// Singular: nom armr acc arm gen arms dat armi +// Plural: nom armar acc arma gen arma dat örmum +// +// The dative plural -örmum involves u-umlaut of the root vowel. Because umlaut +// depends on the root vowel in complex ways, the module stores the dative plural +// stem separately: for "armr" it is "örm". For unknown nouns we approximatehere +// by returning the nominative plural (armar) rather than crashing. + +fn non_decline_masc(noun: String, gram_case: String, number: String) -> String { + // Derive oblique stem by dropping the nominative -r ending if present. + let stem: String = noun + if non_str_ends(noun, "r") { + let stem = non_drop(noun, 1) + } + + // Hard-code the known exemplar "armr" fully, including the umlauted dat pl. + if str_eq(noun, "armr") { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "armr" } + if str_eq(gram_case, "accusative") { return "arm" } + if str_eq(gram_case, "genitive") { return "arms" } + if str_eq(gram_case, "dative") { return "armi" } + return "armr" + } + if str_eq(gram_case, "nominative") { return "armar" } + if str_eq(gram_case, "accusative") { return "arma" } + if str_eq(gram_case, "genitive") { return "arma" } + if str_eq(gram_case, "dative") { return "örmum" } + return "armar" + } + + // Generic strong masculine a-stem: use stripped stem + endings. + // Dative plural umlaut is approximated as nominative plural (safe fallback). + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return stem + "r" } + if str_eq(gram_case, "accusative") { return stem } + if str_eq(gram_case, "genitive") { return stem + "s" } + if str_eq(gram_case, "dative") { return stem + "i" } + return stem + "r" + } + if str_eq(gram_case, "nominative") { return stem + "ar" } + if str_eq(gram_case, "accusative") { return stem + "a" } + if str_eq(gram_case, "genitive") { return stem + "a" } + if str_eq(gram_case, "dative") { return stem + "um" } + return stem + "ar" +} + +// ── Strong feminine ō-stem declension ("gör" — gear) ───────────────────────── +// +// ō-stem feminines have a distinct set of endings. The stem is the nominative +// singular form itself (no case suffix in nom sg for this class, though some +// nouns add -ar in nom/acc pl). +// +// Singular: nom gör acc görvar gen görvar dat görvi +// Plural: nom görvar acc görvar gen görva dat görvum + +fn non_decline_fem(noun: String, gram_case: String, number: String) -> String { + // Use "gör" as the fully specified exemplar. + if str_eq(noun, "gör") { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "gör" } + if str_eq(gram_case, "accusative") { return "görvar" } + if str_eq(gram_case, "genitive") { return "görvar" } + if str_eq(gram_case, "dative") { return "görvi" } + return "gör" + } + if str_eq(gram_case, "nominative") { return "görvar" } + if str_eq(gram_case, "accusative") { return "görvar" } + if str_eq(gram_case, "genitive") { return "görva" } + if str_eq(gram_case, "dative") { return "görvum" } + return "görvar" + } + + // Generic ō-stem feminine: noun base + endings (approximate). + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return noun + "var" } + if str_eq(gram_case, "genitive") { return noun + "var" } + if str_eq(gram_case, "dative") { return noun + "vi" } + return noun + } + if str_eq(gram_case, "nominative") { return noun + "var" } + if str_eq(gram_case, "accusative") { return noun + "var" } + if str_eq(gram_case, "genitive") { return noun + "va" } + if str_eq(gram_case, "dative") { return noun + "vum" } + return noun + "var" +} + +// ── Strong neuter a-stem declension ("land" — land) ────────────────────────── +// +// Neuter a-stems show no ending in nom/acc sg and u-umlaut in the dative plural. +// +// Singular: nom land acc land gen lands dat landi +// Plural: nom lönd acc lönd gen landa dat löndum + +fn non_decline_neut(noun: String, gram_case: String, number: String) -> String { + if str_eq(noun, "land") { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "land" } + if str_eq(gram_case, "accusative") { return "land" } + if str_eq(gram_case, "genitive") { return "lands" } + if str_eq(gram_case, "dative") { return "landi" } + return "land" + } + if str_eq(gram_case, "nominative") { return "lönd" } + if str_eq(gram_case, "accusative") { return "lönd" } + if str_eq(gram_case, "genitive") { return "landa" } + if str_eq(gram_case, "dative") { return "löndum" } + return "lönd" + } + + // Generic strong neuter a-stem (no umlaut approximated — falls back to base). + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return noun } + if str_eq(gram_case, "genitive") { return noun + "s" } + if str_eq(gram_case, "dative") { return noun + "i" } + return noun + } + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "accusative") { return noun } + if str_eq(gram_case, "genitive") { return noun + "a" } + if str_eq(gram_case, "dative") { return noun + "um" } + return noun +} + +// ── Gender detection heuristic ───────────────────────────────────────────────── +// +// Old Norse gender must ideally be supplied by the lexicon. As a heuristic: +// ends in -r (after removing) and root looks consonant-final -> masculine +// ends in no case suffix (just the root vowel) -> try feminine +// monosyllabic root without final r -> neuter +// +// The module uses a simplified approach: known exemplars are routed to their +// specific paradigm; everything else defaults to strong masculine. + +fn non_detect_gender(noun: String) -> String { + if str_eq(noun, "land") { return "neuter" } + if str_eq(noun, "gör") { return "feminine" } + // Default: masculine + return "masculine" +} + +// ── non_decline: main declension entry point ────────────────────────────────── +// +// noun: nominative singular Old Norse noun (e.g. "armr", "land", "gör") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to nominative singular on unknown input. + +fn non_decline(noun: String, gram_case: String, number: String) -> String { + let gender: String = non_detect_gender(noun) + + if str_eq(gender, "masculine") { return non_decline_masc(noun, gram_case, number) } + if str_eq(gender, "feminine") { return non_decline_fem(noun, gram_case, number) } + if str_eq(gender, "neuter") { return non_decline_neut(noun, gram_case, number) } + + // Fallback + return noun +} + +// ── Definite suffix table ────────────────────────────────────────────────────── +// +// Old Norse expresses definiteness via a suffix enclitic attached to the end of +// the inflected noun form (not a separate article). The suffix agrees with gender +// and case. +// +// Masculine singular: nom -inn gen -ins dat -inum acc -inn +// Neuter singular: nom -it gen -ins dat -inu acc -it +// Feminine singular: nom -in gen -innar dat -inni acc -ina +// Plural (all genders): nom/acc -inir (masc), -in (neut), -inar (fem) +// — simplified to -in for plural in this module. + +fn non_def_suffix_masc(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "inn" } + if str_eq(gram_case, "genitive") { return "ins" } + if str_eq(gram_case, "dative") { return "inum" } + if str_eq(gram_case, "accusative") { return "inn" } + return "inn" + } + // plural + if str_eq(gram_case, "nominative") { return "inir" } + if str_eq(gram_case, "accusative") { return "ina" } + if str_eq(gram_case, "genitive") { return "anna" } + if str_eq(gram_case, "dative") { return "unum" } + return "inir" +} + +fn non_def_suffix_neut(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "it" } + if str_eq(gram_case, "genitive") { return "ins" } + if str_eq(gram_case, "dative") { return "inu" } + if str_eq(gram_case, "accusative") { return "it" } + return "it" + } + // plural + if str_eq(gram_case, "nominative") { return "in" } + if str_eq(gram_case, "accusative") { return "in" } + if str_eq(gram_case, "genitive") { return "anna" } + if str_eq(gram_case, "dative") { return "unum" } + return "in" +} + +fn non_def_suffix_fem(gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "in" } + if str_eq(gram_case, "genitive") { return "innar" } + if str_eq(gram_case, "dative") { return "inni" } + if str_eq(gram_case, "accusative") { return "ina" } + return "in" + } + // plural + if str_eq(gram_case, "nominative") { return "inar" } + if str_eq(gram_case, "accusative") { return "inar" } + if str_eq(gram_case, "genitive") { return "anna" } + if str_eq(gram_case, "dative") { return "innar" } + return "inar" +} + +// ── non_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Old Norse definiteness is expressed through a suffix enclitic, not a separate +// article. For indefinite nouns the declined form is returned as-is. +// +// noun: nominative singular Old Norse noun (e.g. "armr", "land") +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" | "false" (string comparison) +// +// Returns the complete noun phrase string. + +fn non_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let base: String = non_decline(noun, gram_case, number) + + if !str_eq(definite, "true") { return base } + + // Append the appropriate definite suffix. + let gender: String = non_detect_gender(noun) + + if str_eq(gender, "masculine") { + return base + non_def_suffix_masc(gram_case, number) + } + if str_eq(gender, "neuter") { + return base + non_def_suffix_neut(gram_case, number) + } + if str_eq(gender, "feminine") { + return base + non_def_suffix_fem(gram_case, number) + } + + // Fallback: append generic -inn + return base + "inn" +} diff --git a/elp/src/morphology-non.elh b/elp/src/morphology-non.elh new file mode 100644 index 0000000..bdf7ce6 --- /dev/null +++ b/elp/src/morphology-non.elh @@ -0,0 +1,30 @@ +// auto-generated by elc --emit-header - do not edit +extern fn non_str_ends(s: String, suf: String) -> Bool +extern fn non_drop(s: String, n: Int) -> String +extern fn non_last(s: String) -> String +extern fn non_slot(person: String, number: String) -> Int +extern fn non_vera_present(slot: Int) -> String +extern fn non_vera_past(slot: Int) -> String +extern fn non_hafa_present(slot: Int) -> String +extern fn non_hafa_past(slot: Int) -> String +extern fn non_ganga_present(slot: Int) -> String +extern fn non_ganga_past(slot: Int) -> String +extern fn non_sja_present(slot: Int) -> String +extern fn non_sja_past(slot: Int) -> String +extern fn non_segja_present(slot: Int) -> String +extern fn non_segja_past(slot: Int) -> String +extern fn non_koma_present(slot: Int) -> String +extern fn non_koma_past(slot: Int) -> String +extern fn non_map_canonical(verb: String) -> String +extern fn non_weak_present(stem: String, slot: Int) -> String +extern fn non_weak_past(stem: String, slot: Int) -> String +extern fn non_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn non_decline_masc(noun: String, gram_case: String, number: String) -> String +extern fn non_decline_fem(noun: String, gram_case: String, number: String) -> String +extern fn non_decline_neut(noun: String, gram_case: String, number: String) -> String +extern fn non_detect_gender(noun: String) -> String +extern fn non_decline(noun: String, gram_case: String, number: String) -> String +extern fn non_def_suffix_masc(gram_case: String, number: String) -> String +extern fn non_def_suffix_neut(gram_case: String, number: String) -> String +extern fn non_def_suffix_fem(gram_case: String, number: String) -> String +extern fn non_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-peo.el b/elp/src/morphology-peo.el new file mode 100644 index 0000000..1c12c7c --- /dev/null +++ b/elp/src/morphology-peo.el @@ -0,0 +1,347 @@ +// morphology-peo.el - Old Persian morphology for the NLG engine. +// +// Implements Old Persian verb conjugation and noun declension for the ca. 600-300 BCE +// period (Achaemenid Empire). Designed as a companion to morphology.el and called +// by the engine when the language profile code is "peo". +// +// Language profile: code=peo, name=Old Persian, morph_type=fusional, word_order=SOV, +// question_strategy=particle, script=latin, family=iranian. +// +// Old Persian is attested primarily in royal cuneiform inscriptions (Behistun, +// Persepolis, Naqsh-e Rostam, etc.). The transliteration used here follows the +// standard scholarly convention with macrons for long vowels (ā, ī, ū). The corpus +// is small — most productive forms are individually attested in the inscriptions. +// +// Verb conjugation covered: +// Tenses: present, past (imperfect) +// Persons: first/second/third x singular/plural (slots 0-5) +// Irregulars: ah- (to be), kar- (to do/make), xšāya- (to rule), +// tar- (to cross/overcome), dā- (to give) +// Canonical map: "be" -> "ah-" +// Pro-drop: the subject pronoun is typically omitted; the engine provides +// conjugated forms only and does not add pronouns. +// +// Noun declension covered: +// a-stem masculine (like "dahyu" — country/land) +// Cases: nominative, accusative, genitive, dative x singular, plural +// (Many case distinctions collapsed in practice; 4 cases implemented) +// Articles: none — Old Persian has no article system +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn peo_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn peo_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based paradigm slot. +// 0 = 1st singular (adam) +// 1 = 2nd singular (tuvam) +// 2 = 3rd singular (hauv) +// 3 = 1st plural (vayam) +// 4 = 2nd plural (yuvam) +// 5 = 3rd plural (taiy) + +fn peo_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Regular present endings ──────────────────────────────────────────────────── +// +// Old Persian present active indicative endings (Schmitt 1991 reconstruction): +// Sg: 1st -āmiy 2nd -ahiy 3rd -atiy +// Pl: 1st -āmahy 2nd -ātā 3rd -antiy +// +// These attach to the present stem. The present stem typically equals the +// verbal root (sometimes with a thematic vowel -a-). + +fn peo_present_suffix(slot: Int) -> String { + if slot == 0 { return "āmiy" } + if slot == 1 { return "ahiy" } + if slot == 2 { return "atiy" } + if slot == 3 { return "āmahy" } + if slot == 4 { return "ātā" } + return "antiy" +} + +// ── Regular past (imperfect) endings ────────────────────────────────────────── +// +// Old Persian imperfect (past) endings. The imperfect is formed with the augment +// a- prefixed to the stem, but since many verbs in the inscriptions appear without +// the augment or with it fossilised, the engine omits the augment prefix and +// returns only the stem + ending combination. +// +// Imperfect endings: +// Sg: 1st -am 2nd -ā 3rd -a +// Pl: 1st -āmā 2nd -ātā 3rd -ā + +fn peo_past_suffix(slot: Int) -> String { + if slot == 0 { return "am" } + if slot == 1 { return "ā" } + if slot == 2 { return "a" } + if slot == 3 { return "āmā" } + if slot == 4 { return "ātā" } + return "ā" +} + +// ── Irregular verb tables ────────────────────────────────────────────────────── + +// ah- (to be) — the Old Persian verb for being/existence +// Present: amiy, ahiy, astiy, amahy, astā, hatiy +// Past: āham, āha, āha, āhama, āhata, āhan + +fn peo_ah_present(slot: Int) -> String { + if slot == 0 { return "amiy" } + if slot == 1 { return "ahiy" } + if slot == 2 { return "astiy" } + if slot == 3 { return "amahy" } + if slot == 4 { return "astā" } + return "hatiy" +} + +fn peo_ah_past(slot: Int) -> String { + if slot == 0 { return "āham" } + if slot == 1 { return "āha" } + if slot == 2 { return "āha" } + if slot == 3 { return "āhama" } + if slot == 4 { return "āhata" } + return "āhan" +} + +// kar- (to do/make) — highly productive verb, uses present stem kun-/kunav- +// Present: kunāmiy, kunāhiy, kunautiy, kunāmahy, kunātā, kunavantiy +// Past: akunavam (1sg), akunava (3sg) — limited attestation; simplified + +fn peo_kar_present(slot: Int) -> String { + if slot == 0 { return "kunāmiy" } + if slot == 1 { return "kunāhiy" } + if slot == 2 { return "kunautiy" } + if slot == 3 { return "kunāmahy" } + if slot == 4 { return "kunātā" } + return "kunavantiy" +} + +fn peo_kar_past(slot: Int) -> String { + if slot == 0 { return "akunavam" } + if slot == 1 { return "akunavā" } + if slot == 2 { return "akunava" } + if slot == 3 { return "akunavāmā" } + if slot == 4 { return "akunavātā" } + return "akunavan" +} + +// xšāya- (to rule) — verb of the royal inscriptions, thematic stem xšāya- +// Present: xšāyāmiy, xšāyāhiy, xšāyatiy, xšāyāmahy, xšāyātā, xšāyantiy + +fn peo_xsaya_present(slot: Int) -> String { + if slot == 0 { return "xšāyāmiy" } + if slot == 1 { return "xšāyāhiy" } + if slot == 2 { return "xšāyatiy" } + if slot == 3 { return "xšāyāmahy" } + if slot == 4 { return "xšāyātā" } + return "xšāyantiy" +} + +// tar- (to cross/overcome) — limited attestation in inscriptions +// Attested: taratiy (3sg pres), tarantiy (3pl pres) +// Other slots approximated using regular present endings on stem tar- + +fn peo_tar_present(slot: Int) -> String { + if slot == 2 { return "taratiy" } + if slot == 5 { return "tarantiy" } + // Other slots: apply regular endings to stem tar- + return "tar" + peo_present_suffix(slot) +} + +// dā- (to give) — long-vowel root, contracts in some forms +// Present: dāmiy, dāhiy, dātiy, dāmahy, dātā, dantiy + +fn peo_da_present(slot: Int) -> String { + if slot == 0 { return "dāmiy" } + if slot == 1 { return "dāhiy" } + if slot == 2 { return "dātiy" } + if slot == 3 { return "dāmahy" } + if slot == 4 { return "dātā" } + return "dantiy" +} + +fn peo_da_past(slot: Int) -> String { + if slot == 0 { return "adām" } + if slot == 1 { return "adāā" } + if slot == 2 { return "adā" } + if slot == 3 { return "adāmā" } + if slot == 4 { return "adātā" } + return "adān" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Maps English semantic labels to Old Persian verbal stems / citation forms. + +fn peo_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "ah" } + if str_eq(verb, "do") { return "kar" } + if str_eq(verb, "make") { return "kar" } + if str_eq(verb, "rule") { return "xšāya" } + if str_eq(verb, "cross") { return "tar" } + if str_eq(verb, "give") { return "dā" } + return verb +} + +// ── peo_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Old Persian verbal stem or English canonical label +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Pro-drop language — the engine produces conjugated +// verb forms only; subject pronouns are omitted unless explicitly generated by +// the semantic layer. + +fn peo_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = peo_map_canonical(verb) + let slot: Int = peo_slot(person, number) + + // ── ah- (to be) ─────────────────────────────────────────────────────────── + if str_eq(v, "ah") { + if str_eq(tense, "present") { return peo_ah_present(slot) } + if str_eq(tense, "past") { return peo_ah_past(slot) } + return v + } + + // ── kar- (to do/make) ───────────────────────────────────────────────────── + if str_eq(v, "kar") { + if str_eq(tense, "present") { return peo_kar_present(slot) } + if str_eq(tense, "past") { return peo_kar_past(slot) } + return v + } + + // ── xšāya- (to rule) ────────────────────────────────────────────────────── + if str_eq(v, "xšāya") { + if str_eq(tense, "present") { return peo_xsaya_present(slot) } + // Past of xšāya-: apply imperfect endings to xšāya- stem + if str_eq(tense, "past") { return "xšāya" + peo_past_suffix(slot) } + return v + } + + // ── tar- (to cross/overcome) ────────────────────────────────────────────── + if str_eq(v, "tar") { + if str_eq(tense, "present") { return peo_tar_present(slot) } + if str_eq(tense, "past") { return "tar" + peo_past_suffix(slot) } + return v + } + + // ── dā- (to give) ───────────────────────────────────────────────────────── + if str_eq(v, "dā") { + if str_eq(tense, "present") { return peo_da_present(slot) } + if str_eq(tense, "past") { return peo_da_past(slot) } + return v + } + + // ── Regular thematic verb ───────────────────────────────────────────────── + // + // Apply present or past endings directly to the stem. The stem is assumed + // to be in the form supplied (Old Persian thematic stems typically end in -a-). + if str_eq(tense, "present") { return v + peo_present_suffix(slot) } + if str_eq(tense, "past") { return v + peo_past_suffix(slot) } + + // Unknown tense: return the bare stem + return v +} + +// ── a-stem masculine declension ("dahyu" — country/land) ───────────────────── +// +// The a-stem is the primary masculine nominal class in Old Persian. The paradigm +// below uses "dahyu" (country, land — the most frequent noun in the inscriptions) +// as the fully specified exemplar. +// +// Singular: nom dahyāuš acc dahyum gen dahyāuš dat dahyavā +// Plural: nom dahyāva acc dahyūn gen dahyūnām dat dahyubiyā +// +// The singular nom/gen syncretism (both dahyāuš) is historically inherited from +// Old Iranian; it is not a scribal error. + +fn peo_decline_astem(noun: String, gram_case: String, number: String) -> String { + if str_eq(noun, "dahyu") { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "dahyāuš" } + if str_eq(gram_case, "accusative") { return "dahyum" } + if str_eq(gram_case, "genitive") { return "dahyāuš" } + if str_eq(gram_case, "dative") { return "dahyavā" } + return "dahyāuš" + } + if str_eq(gram_case, "nominative") { return "dahyāva" } + if str_eq(gram_case, "accusative") { return "dahyūn" } + if str_eq(gram_case, "genitive") { return "dahyūnām" } + if str_eq(gram_case, "dative") { return "dahyubiyā" } + return "dahyāva" + } + + // Generic a-stem masculine: apply Old Persian nominal endings to base. + // Base form assumed to be the uninflected stem (without final -u/-a). + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun + "āuš" } + if str_eq(gram_case, "accusative") { return noun + "am" } + if str_eq(gram_case, "genitive") { return noun + "āuš" } + if str_eq(gram_case, "dative") { return noun + "avā" } + return noun + "āuš" + } + // plural + if str_eq(gram_case, "nominative") { return noun + "āva" } + if str_eq(gram_case, "accusative") { return noun + "ūn" } + if str_eq(gram_case, "genitive") { return noun + "ūnām" } + if str_eq(gram_case, "dative") { return noun + "ubiyā" } + return noun + "āva" +} + +// ── peo_decline: main declension entry point ────────────────────────────────── +// +// noun: Old Persian noun (nominative singular or uninflected stem) +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// +// Only the a-stem masculine paradigm is currently implemented; other stem classes +// fall back to the nominative singular form. The corpus is small enough that +// most attested nouns are a-stems or i-stems whose oblique forms can be +// approximated by the a-stem pattern. + +fn peo_decline(noun: String, gram_case: String, number: String) -> String { + return peo_decline_astem(noun, gram_case, number) +} + +// ── peo_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Old Persian has no definite or indefinite articles. Definiteness was expressed +// contextually or through word order, not morphologically. This function ignores +// the "definite" parameter and returns the declined noun form directly. +// +// noun: Old Persian noun (nominative singular or stem) +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" | "false" (ignored — no articles in Old Persian) +// +// Returns the declined noun form. + +fn peo_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return peo_decline(noun, gram_case, number) +} diff --git a/elp/src/morphology-peo.elh b/elp/src/morphology-peo.elh new file mode 100644 index 0000000..56c507e --- /dev/null +++ b/elp/src/morphology-peo.elh @@ -0,0 +1,19 @@ +// auto-generated by elc --emit-header - do not edit +extern fn peo_drop(s: String, n: Int) -> String +extern fn peo_ends(s: String, suf: String) -> Bool +extern fn peo_slot(person: String, number: String) -> Int +extern fn peo_present_suffix(slot: Int) -> String +extern fn peo_past_suffix(slot: Int) -> String +extern fn peo_ah_present(slot: Int) -> String +extern fn peo_ah_past(slot: Int) -> String +extern fn peo_kar_present(slot: Int) -> String +extern fn peo_kar_past(slot: Int) -> String +extern fn peo_xsaya_present(slot: Int) -> String +extern fn peo_tar_present(slot: Int) -> String +extern fn peo_da_present(slot: Int) -> String +extern fn peo_da_past(slot: Int) -> String +extern fn peo_map_canonical(verb: String) -> String +extern fn peo_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn peo_decline_astem(noun: String, gram_case: String, number: String) -> String +extern fn peo_decline(noun: String, gram_case: String, number: String) -> String +extern fn peo_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-pi.el b/elp/src/morphology-pi.el new file mode 100644 index 0000000..bf53534 --- /dev/null +++ b/elp/src/morphology-pi.el @@ -0,0 +1,545 @@ +// morphology-pi.el - Pali morphology for the NLG engine. +// +// Implements Pali verb conjugation and noun declension using standard IAST-subset +// Latin transliteration. Pali is the liturgical language of Theravada Buddhism +// (canonical form of Middle Indo-Aryan, ca. 3rd century BCE). +// +// Language profile: code=pi, name=Pali, morph_type=fusional, word_order=SOV, +// question_strategy=particle, script=latin-iast, family=indo-aryan. +// +// Verb conjugation covered: +// Tenses: present (bhū-ādi class), aorist (past), future +// Persons: first/second/third x singular/plural (slots 0-5) +// Endings: present -āmi/-asi/-ati/-āma/-atha/-anti +// aorist -iṃ/-i/-i/-imhā/-ittha/-iṃsu +// future -issāmi/-issasi/-issati/-issāma/-issatha/-issanti +// Irregulars: atthi/hoti (be), gacchati (go), passati (see), +// vadati (say), karoti (do) +// Canonical map: "be" -> "hoti" +// +// Noun declension covered: +// a-stem masculine (paradigm: "purisa" — man): 8 cases, sg + pl +// ā-stem feminine (paradigm: "kaññā" — girl): 8 cases, sg (pl approx.) +// Cases: nominative, accusative, instrumental, dative, ablative, +// genitive, locative, vocative +// +// Articles: +// Pali has no articles. pi_noun_phrase returns the declined noun directly. +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn pi_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn pi_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn pi_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { return "" } + return str_slice(s, n - 1, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based paradigm slot. +// 0 = 1st singular (ahaṃ) +// 1 = 2nd singular (tvaṃ) +// 2 = 3rd singular (so/sā/taṃ) +// 3 = 1st plural (mayaṃ) +// 4 = 2nd plural (tumhe) +// 5 = 3rd plural (te/tā/tāni) + +fn pi_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Present tense endings (bhū-ādi class) ───────────────────────────────────── +// +// The standard present active endings for the most common Pali verb class: +// 1sg -āmi 2sg -asi 3sg -ati +// 1pl -āma 2pl -atha 3pl -anti + +fn pi_present_ending(slot: Int) -> String { + if slot == 0 { return "āmi" } + if slot == 1 { return "asi" } + if slot == 2 { return "ati" } + if slot == 3 { return "āma" } + if slot == 4 { return "atha" } + return "anti" +} + +// ── Aorist (past) tense endings ─────────────────────────────────────────────── +// +// The Pali aorist is the standard simple past. The most common set: +// 1sg -iṃ 2sg -i 3sg -i +// 1pl -imhā 2pl -ittha 3pl -iṃsu +// +// These are appended to the verb root (or a modified stem). For regular +// weak aorists, the root is taken from the infinitive by stripping -ati. + +fn pi_aorist_ending(slot: Int) -> String { + if slot == 0 { return "iṃ" } + if slot == 1 { return "i" } + if slot == 2 { return "i" } + if slot == 3 { return "imhā" } + if slot == 4 { return "ittha" } + return "iṃsu" +} + +// ── Future tense endings ─────────────────────────────────────────────────────── +// +// Future is formed with the suffix -issa- inserted between root and personal ending: +// 1sg -issāmi 2sg -issasi 3sg -issati +// 1pl -issāma 2pl -issatha 3pl -issanti + +fn pi_future_ending(slot: Int) -> String { + if slot == 0 { return "issāmi" } + if slot == 1 { return "issasi" } + if slot == 2 { return "issati" } + if slot == 3 { return "issāma" } + if slot == 4 { return "issatha" } + return "issanti" +} + +// ── Irregular verb tables ────────────────────────────────────────────────────── +// +// atthi/hoti (to be): two parallel paradigms. +// The "hoti" paradigm is used by default (canonical "be" maps here). +// "atthi" paradigm is included for the commonly seen alternative. + +fn pi_hoti_present(slot: Int) -> String { + if slot == 0 { return "homi" } + if slot == 1 { return "hosi" } + if slot == 2 { return "hoti" } + if slot == 3 { return "homa" } + if slot == 4 { return "hotha" } + return "honti" +} + +fn pi_atthi_present(slot: Int) -> String { + if slot == 0 { return "amhi" } + if slot == 1 { return "asi" } + if slot == 2 { return "atthi" } + if slot == 3 { return "amha" } + if slot == 4 { return "attha" } + return "santi" +} + +// Past (aorist) of hoti/atthi: āsi paradigm (a-aorist) +fn pi_hoti_aorist(slot: Int) -> String { + if slot == 0 { return "āsiṃ" } + if slot == 1 { return "āsi" } + if slot == 2 { return "āsi" } + if slot == 3 { return "āsimhā" } + if slot == 4 { return "āsittha" } + return "āsiṃsu" +} + +// Future of hoti: regular -issa- on root "ho-" +fn pi_hoti_future(slot: Int) -> String { + if slot == 0 { return "hossāmi" } + if slot == 1 { return "hossasi" } + if slot == 2 { return "hossati" } + if slot == 3 { return "hossāma" } + if slot == 4 { return "hossatha" } + return "hossanti" +} + +// gacchati (to go): present is suppletive; aorist uses root "gam-"/"agamā-" +fn pi_gacchati_present(slot: Int) -> String { + if slot == 0 { return "gacchāmi" } + if slot == 1 { return "gacchasi" } + if slot == 2 { return "gacchati" } + if slot == 3 { return "gacchāma" } + if slot == 4 { return "gacchatha" } + return "gacchanti" +} + +fn pi_gacchati_aorist(slot: Int) -> String { + if slot == 0 { return "agamāsiṃ" } + if slot == 1 { return "agamāsi" } + if slot == 2 { return "agamāsi" } + if slot == 3 { return "agamāsimhā" } + if slot == 4 { return "agamāsittha" } + return "agamaṃsu" +} + +fn pi_gacchati_future(slot: Int) -> String { + if slot == 0 { return "gamissāmi" } + if slot == 1 { return "gamissasi" } + if slot == 2 { return "gamissati" } + if slot == 3 { return "gamissāma" } + if slot == 4 { return "gamissatha" } + return "gamissanti" +} + +// passati (to see): regular present; aorist root "dis-"/"addasā-" +fn pi_passati_present(slot: Int) -> String { + if slot == 0 { return "passāmi" } + if slot == 1 { return "passasi" } + if slot == 2 { return "passati" } + if slot == 3 { return "passāma" } + if slot == 4 { return "passatha" } + return "passanti" +} + +fn pi_passati_aorist(slot: Int) -> String { + if slot == 0 { return "addasāsiṃ" } + if slot == 1 { return "addasāsi" } + if slot == 2 { return "addasāsi" } + if slot == 3 { return "addasāsimhā" } + if slot == 4 { return "addasāsittha" } + return "addasāsiṃsu" +} + +fn pi_passati_future(slot: Int) -> String { + if slot == 0 { return "dakkhissāmi" } + if slot == 1 { return "dakkhissasi" } + if slot == 2 { return "dakkhissati" } + if slot == 3 { return "dakkhissāma" } + if slot == 4 { return "dakkhissatha" } + return "dakkhissanti" +} + +// vadati (to say): regular throughout; aorist uses avadi- +fn pi_vadati_present(slot: Int) -> String { + if slot == 0 { return "vadāmi" } + if slot == 1 { return "vadasi" } + if slot == 2 { return "vadati" } + if slot == 3 { return "vadāma" } + if slot == 4 { return "vadatha" } + return "vadanti" +} + +fn pi_vadati_aorist(slot: Int) -> String { + if slot == 0 { return "avadāsiṃ" } + if slot == 1 { return "avadāsi" } + if slot == 2 { return "avadāsi" } + if slot == 3 { return "avadāsimhā" } + if slot == 4 { return "avadāsittha" } + return "avadāsiṃsu" +} + +fn pi_vadati_future(slot: Int) -> String { + if slot == 0 { return "vadissāmi" } + if slot == 1 { return "vadissasi" } + if slot == 2 { return "vadissati" } + if slot == 3 { return "vadissāma" } + if slot == 4 { return "vadissatha" } + return "vadissanti" +} + +// karoti (to do/make): karo- present stem; kāri-/akāsi aorist +fn pi_karoti_present(slot: Int) -> String { + if slot == 0 { return "karomi" } + if slot == 1 { return "karosi" } + if slot == 2 { return "karoti" } + if slot == 3 { return "karoma" } + if slot == 4 { return "karotha" } + return "karonti" +} + +fn pi_karoti_aorist(slot: Int) -> String { + if slot == 0 { return "akāsiṃ" } + if slot == 1 { return "akāsi" } + if slot == 2 { return "akāsi" } + if slot == 3 { return "akāsimhā" } + if slot == 4 { return "akāsittha" } + return "akāsiṃsu" +} + +fn pi_karoti_future(slot: Int) -> String { + if slot == 0 { return "karissāmi" } + if slot == 1 { return "karissasi" } + if slot == 2 { return "karissati" } + if slot == 3 { return "karissāma" } + if slot == 4 { return "karissatha" } + return "karissanti" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Maps English semantic labels to Pali verb citation forms (3rd sg present). + +fn pi_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "hoti" } + if str_eq(verb, "go") { return "gacchati" } + if str_eq(verb, "see") { return "passati" } + if str_eq(verb, "say") { return "vadati" } + if str_eq(verb, "do") { return "karoti" } + if str_eq(verb, "make") { return "karoti" } + return verb +} + +// ── Regular verb stem derivation ─────────────────────────────────────────────── +// +// For bhū-ādi class verbs, the present stem is derived by stripping -ati from +// the 3sg present form (the citation form), then appending the appropriate ending. +// The same root (without -ati) is used for the aorist and future. +// +// e.g. "bhavati" -> root "bhava" -> present "bhavāmi", future "bhavissāmi" +// -> aorist root = "bhavi" -> "bhaviṃ" + +fn pi_regular_root(verb: String) -> String { + // Strip -ati if present to get the thematic stem + if pi_str_ends(verb, "ati") { return pi_drop(verb, 3) } + // Some forms end in -eti (e-class verbs) + if pi_str_ends(verb, "eti") { return pi_drop(verb, 3) } + // Otherwise treat the whole form as the root + return verb +} + +// ── pi_conjugate: main conjugation entry point ──────────────────────────────── +// +// verb: Pali 3sg present (citation form, e.g. "bhavati", "hoti") or English +// canonical label +// tense: "present" | "past" | "future" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to the citation form on unknown input. + +fn pi_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = pi_map_canonical(verb) + let slot: Int = pi_slot(person, number) + + // ── Irregulars ──────────────────────────────────────────────────────────── + + if str_eq(v, "hoti") { + if str_eq(tense, "present") { return pi_hoti_present(slot) } + if str_eq(tense, "past") { return pi_hoti_aorist(slot) } + if str_eq(tense, "future") { return pi_hoti_future(slot) } + return v + } + + if str_eq(v, "atthi") { + if str_eq(tense, "present") { return pi_atthi_present(slot) } + if str_eq(tense, "past") { return pi_hoti_aorist(slot) } + if str_eq(tense, "future") { return pi_hoti_future(slot) } + return v + } + + if str_eq(v, "gacchati") { + if str_eq(tense, "present") { return pi_gacchati_present(slot) } + if str_eq(tense, "past") { return pi_gacchati_aorist(slot) } + if str_eq(tense, "future") { return pi_gacchati_future(slot) } + return v + } + + if str_eq(v, "passati") { + if str_eq(tense, "present") { return pi_passati_present(slot) } + if str_eq(tense, "past") { return pi_passati_aorist(slot) } + if str_eq(tense, "future") { return pi_passati_future(slot) } + return v + } + + if str_eq(v, "vadati") { + if str_eq(tense, "present") { return pi_vadati_present(slot) } + if str_eq(tense, "past") { return pi_vadati_aorist(slot) } + if str_eq(tense, "future") { return pi_vadati_future(slot) } + return v + } + + if str_eq(v, "karoti") { + if str_eq(tense, "present") { return pi_karoti_present(slot) } + if str_eq(tense, "past") { return pi_karoti_aorist(slot) } + if str_eq(tense, "future") { return pi_karoti_future(slot) } + return v + } + + // ── Regular bhū-ādi class verb ──────────────────────────────────────────── + + let root: String = pi_regular_root(v) + + if str_eq(tense, "present") { + return root + pi_present_ending(slot) + } + + if str_eq(tense, "past") { + // Aorist: root + i-aorist ending + return root + pi_aorist_ending(slot) + } + + if str_eq(tense, "future") { + return root + pi_future_ending(slot) + } + + // Unknown tense: return citation form unchanged + return v +} + +// ── a-stem masculine declension ("purisa" — man) ───────────────────────────── +// +// The a-stem masculine is the most frequent Pali declension class. +// Paradigm based on "puriso" (nominative singular). +// +// Eight cases: nominative, accusative, instrumental, dative, ablative, +// genitive, locative, vocative. +// +// Singular: +// nom puriso acc purisaṃ instr purisena dat purisāya (or purissā) +// abl purisā gen purisassa loc purisasmiṃ voc purisa +// +// Plural: +// nom purisā acc purise instr purisehi dat purisānaṃ +// abl purisānaṃ gen purisānaṃ loc purisesu voc purisā +// +// The caller passes the stem (without final vowel), e.g. "purisa". +// Detection: strip the final -o (nom sg) or use the stem directly. + +fn pi_decline_a_masc_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "o" } + if str_eq(gram_case, "accusative") { return stem + "ṃ" } + if str_eq(gram_case, "instrumental") { return stem + "ena" } + if str_eq(gram_case, "dative") { return stem + "āya" } + if str_eq(gram_case, "ablative") { return stem + "ā" } + if str_eq(gram_case, "genitive") { return stem + "ssa" } + if str_eq(gram_case, "locative") { return stem + "smiṃ" } + if str_eq(gram_case, "vocative") { return stem } + // Default: nominative + return stem + "o" +} + +fn pi_decline_a_masc_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "ā" } + if str_eq(gram_case, "accusative") { return stem + "e" } + if str_eq(gram_case, "instrumental") { return stem + "ehi" } + if str_eq(gram_case, "dative") { return stem + "ānaṃ" } + if str_eq(gram_case, "ablative") { return stem + "ānaṃ" } + if str_eq(gram_case, "genitive") { return stem + "ānaṃ" } + if str_eq(gram_case, "locative") { return stem + "esu" } + if str_eq(gram_case, "vocative") { return stem + "ā" } + return stem + "ā" +} + +// ── ā-stem feminine declension ("kaññā" — girl) ─────────────────────────────── +// +// ā-stem feminines are the second most common class. Paradigm based on "kaññā". +// +// Singular: +// nom kaññā acc kaññaṃ instr kaññāya dat kaññāya +// abl kaññāya gen kaññāya loc kaññāyaṃ voc kaññe +// +// Plural (approximated from standard tables; many forms merge): +// nom kaññā acc kaññā instr kaññāhi dat kaññānaṃ +// abl kaññānaṃ gen kaññānaṃ loc kaññāsu voc kaññā +// +// The caller passes the stem without the final ā, e.g. "kaññ". + +fn pi_decline_a_fem_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "ā" } + if str_eq(gram_case, "accusative") { return stem + "aṃ" } + if str_eq(gram_case, "instrumental") { return stem + "āya" } + if str_eq(gram_case, "dative") { return stem + "āya" } + if str_eq(gram_case, "ablative") { return stem + "āya" } + if str_eq(gram_case, "genitive") { return stem + "āya" } + if str_eq(gram_case, "locative") { return stem + "āyaṃ" } + if str_eq(gram_case, "vocative") { return stem + "e" } + return stem + "ā" +} + +fn pi_decline_a_fem_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "ā" } + if str_eq(gram_case, "accusative") { return stem + "ā" } + if str_eq(gram_case, "instrumental") { return stem + "āhi" } + if str_eq(gram_case, "dative") { return stem + "ānaṃ" } + if str_eq(gram_case, "ablative") { return stem + "ānaṃ" } + if str_eq(gram_case, "genitive") { return stem + "ānaṃ" } + if str_eq(gram_case, "locative") { return stem + "āsu" } + if str_eq(gram_case, "vocative") { return stem + "ā" } + return stem + "ā" +} + +// ── Declension class detection ───────────────────────────────────────────────── +// +// Detect whether a noun is an a-stem masculine or ā-stem feminine based on its +// citation form (nominative singular). +// +// ends in -o -> a-stem masculine (puriso, devo, loko) +// ends in -ā -> ā-stem feminine (kaññā, mātu[?], nadī) +// ends in -a -> treat as a-stem masculine stem (some words cited without -o) +// +// For other stems the module falls back to a-stem masculine as the safest default. + +fn pi_detect_class(noun: String) -> String { + if pi_str_ends(noun, "o") { return "a_masc" } + if pi_str_ends(noun, "ā") { return "a_fem" } + // Some a-masc nouns may be cited as stems ending in -a + if pi_str_ends(noun, "a") { return "a_masc" } + // Default to a-stem masculine + return "a_masc" +} + +// ── pi_decline: main declension entry point ─────────────────────────────────── +// +// noun: Pali nominative singular (citation form, e.g. "puriso", "kaññā") +// gram_case: "nominative" | "accusative" | "instrumental" | "dative" | +// "ablative" | "genitive" | "locative" | "vocative" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to the citation form on unknown input. + +fn pi_decline(noun: String, gram_case: String, number: String) -> String { + let nclass: String = pi_detect_class(noun) + + if str_eq(nclass, "a_masc") { + // Derive stem: strip final -o or -a to get the consonant stem + let stem: String = noun + if pi_str_ends(noun, "o") { + let stem = pi_drop(noun, 1) + } + if pi_str_ends(noun, "a") { + let stem = pi_drop(noun, 1) + } + if str_eq(number, "singular") { return pi_decline_a_masc_sg(stem, gram_case) } + return pi_decline_a_masc_pl(stem, gram_case) + } + + if str_eq(nclass, "a_fem") { + // Derive stem: strip final -ā + let stem: String = noun + if pi_str_ends(noun, "ā") { + let stem = pi_drop(noun, 1) + } + if str_eq(number, "singular") { return pi_decline_a_fem_sg(stem, gram_case) } + return pi_decline_a_fem_pl(stem, gram_case) + } + + // Unknown class: return citation form unchanged + return noun +} + +// ── pi_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Pali has no articles (definite or indefinite). The declined form is the +// complete noun phrase. The definite parameter is accepted for interface +// compatibility with other language modules but has no effect. +// +// noun: nominative singular Pali noun (e.g. "puriso", "kaññā") +// gram_case: "nominative" | "accusative" | "instrumental" | "dative" | +// "ablative" | "genitive" | "locative" | "vocative" +// number: "singular" | "plural" +// definite: ignored (Pali has no articles) +// +// Returns the inflected noun form. + +fn pi_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return pi_decline(noun, gram_case, number) +} diff --git a/elp/src/morphology-pi.elh b/elp/src/morphology-pi.elh new file mode 100644 index 0000000..1de2c02 --- /dev/null +++ b/elp/src/morphology-pi.elh @@ -0,0 +1,34 @@ +// auto-generated by elc --emit-header - do not edit +extern fn pi_str_ends(s: String, suf: String) -> Bool +extern fn pi_drop(s: String, n: Int) -> String +extern fn pi_last_char(s: String) -> String +extern fn pi_slot(person: String, number: String) -> Int +extern fn pi_present_ending(slot: Int) -> String +extern fn pi_aorist_ending(slot: Int) -> String +extern fn pi_future_ending(slot: Int) -> String +extern fn pi_hoti_present(slot: Int) -> String +extern fn pi_atthi_present(slot: Int) -> String +extern fn pi_hoti_aorist(slot: Int) -> String +extern fn pi_hoti_future(slot: Int) -> String +extern fn pi_gacchati_present(slot: Int) -> String +extern fn pi_gacchati_aorist(slot: Int) -> String +extern fn pi_gacchati_future(slot: Int) -> String +extern fn pi_passati_present(slot: Int) -> String +extern fn pi_passati_aorist(slot: Int) -> String +extern fn pi_passati_future(slot: Int) -> String +extern fn pi_vadati_present(slot: Int) -> String +extern fn pi_vadati_aorist(slot: Int) -> String +extern fn pi_vadati_future(slot: Int) -> String +extern fn pi_karoti_present(slot: Int) -> String +extern fn pi_karoti_aorist(slot: Int) -> String +extern fn pi_karoti_future(slot: Int) -> String +extern fn pi_map_canonical(verb: String) -> String +extern fn pi_regular_root(verb: String) -> String +extern fn pi_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn pi_decline_a_masc_sg(stem: String, gram_case: String) -> String +extern fn pi_decline_a_masc_pl(stem: String, gram_case: String) -> String +extern fn pi_decline_a_fem_sg(stem: String, gram_case: String) -> String +extern fn pi_decline_a_fem_pl(stem: String, gram_case: String) -> String +extern fn pi_detect_class(noun: String) -> String +extern fn pi_decline(noun: String, gram_case: String, number: String) -> String +extern fn pi_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-ru.el b/elp/src/morphology-ru.el new file mode 100644 index 0000000..d0fa913 --- /dev/null +++ b/elp/src/morphology-ru.el @@ -0,0 +1,920 @@ +// morphology-ru.el - Russian morphology: noun declension and verb conjugation. +// +// Russian is a fusional language with: +// - 6 grammatical cases: nominative, accusative, genitive, dative, +// instrumental, prepositional +// - 3 genders: masculine (m), feminine (f), neuter (n) +// - 2 numbers: singular (sg), plural (pl) +// - Aspect: perfective / imperfective (caller feature) +// - No articles +// - Cyrillic script (El strings are Unicode-transparent) +// +// Conventions: +// gender: "m" | "f" | "n" +// case: "nom" | "acc" | "gen" | "dat" | "ins" | "pre" +// number: "sg" | "pl" +// person: "1" | "2" | "3" +// tense: "present" | "past" | "future" +// +// Stem-type classification: +// "hard" - stem ends in a hard consonant +// "soft" - stem ends in a soft consonant (+ ь) or a hushing consonant +// "special" - lexically irregular +// +// Depends on: language-profile (str_eq, str_len, str_slice, str_drop_last, +// str_ends_with) + +// ── Gender heuristic from ending ────────────────────────────────────────────── +// +// Russian gender is mostly predictable from the nominative singular ending: +// ends in consonant → masculine (стол, дом) +// ends in -ь → masculine or feminine (must be lexical) +// ends in -а / -я → feminine (женщина, земля) +// ends in -о / -е → neuter (слово, море) +// +// The heuristic returns the most probable gender. Caller should override +// for known exceptions (путь, рубль are masc despite -ь). + +fn ru_gender(noun: String) -> String { + let n: Int = str_len(noun) + if n == 0 { return "m" } + let last: String = str_slice(noun, n - 1, n) + + // Neuter: -о or -е + if str_eq(last, "о") { return "n" } + if str_eq(last, "е") { return "n" } + if str_eq(last, "ё") { return "n" } + + // Feminine: -а or -я + if str_eq(last, "а") { return "f" } + if str_eq(last, "я") { return "f" } + + // Soft sign: ambiguous — default feminine (most common case) + if str_eq(last, "ь") { return "f" } + + // Consonant or й: masculine + return "m" +} + +// ── Stem-type classifier ────────────────────────────────────────────────────── +// +// "hard" — ends in a plain consonant (стол) or -а (женщина) or -о (слово) +// "soft" — ends in -ь, -й, -я, -е, -ие, -ия +// "sibilant" — ends in ж/ш/ч/щ (triggers spelling rules) + +fn ru_stem_type(noun: String, gender: String) -> String { + let n: Int = str_len(noun) + if n == 0 { return "hard" } + let last: String = str_slice(noun, n - 1, n) + + if str_eq(last, "ь") { return "soft" } + if str_eq(last, "й") { return "soft" } + if str_eq(last, "я") { return "soft" } + if str_eq(last, "е") { return "soft" } + + // Sibilants (hushing consonants: ж ш ч щ) — use sibilant rules + if str_eq(last, "ж") { return "sibilant" } + if str_eq(last, "ш") { return "sibilant" } + if str_eq(last, "ч") { return "sibilant" } + if str_eq(last, "щ") { return "sibilant" } + + return "hard" +} + +// ── Noun declension ─────────────────────────────────────────────────────────── +// +// Main entry point. Handles irregulars by lemma, then dispatches to the +// paradigm appropriate for (gender × stem_type). + +fn ru_noun_case(noun: String, gender: String, gram_case: String, number: String) -> String { + // ── Lexical irregulars ────────────────────────────────────────────────── + + // человек (person) — plural suppletive: люди + if str_eq(noun, "человек") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "человек" } + if str_eq(gram_case, "acc") { return "человека" } + if str_eq(gram_case, "gen") { return "человека" } + if str_eq(gram_case, "dat") { return "человеку" } + if str_eq(gram_case, "ins") { return "человеком" } + if str_eq(gram_case, "pre") { return "человеке" } + } + // plural: люди paradigm + if str_eq(gram_case, "nom") { return "люди" } + if str_eq(gram_case, "acc") { return "людей" } + if str_eq(gram_case, "gen") { return "людей" } + if str_eq(gram_case, "dat") { return "людям" } + if str_eq(gram_case, "ins") { return "людьми" } + if str_eq(gram_case, "pre") { return "людях" } + return "люди" + } + + // ребёнок (child) — plural suppletive: дети + if str_eq(noun, "ребёнок") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "ребёнок" } + if str_eq(gram_case, "acc") { return "ребёнка" } + if str_eq(gram_case, "gen") { return "ребёнка" } + if str_eq(gram_case, "dat") { return "ребёнку" } + if str_eq(gram_case, "ins") { return "ребёнком" } + if str_eq(gram_case, "pre") { return "ребёнке" } + } + if str_eq(gram_case, "nom") { return "дети" } + if str_eq(gram_case, "acc") { return "детей" } + if str_eq(gram_case, "gen") { return "детей" } + if str_eq(gram_case, "dat") { return "детям" } + if str_eq(gram_case, "ins") { return "детьми" } + if str_eq(gram_case, "pre") { return "детях" } + return "дети" + } + + // время (time) — neuter in -мя (heteroclitic declension) + if str_eq(noun, "время") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "время" } + if str_eq(gram_case, "acc") { return "время" } + if str_eq(gram_case, "gen") { return "времени" } + if str_eq(gram_case, "dat") { return "времени" } + if str_eq(gram_case, "ins") { return "временем" } + if str_eq(gram_case, "pre") { return "времени" } + } + if str_eq(gram_case, "nom") { return "времена" } + if str_eq(gram_case, "acc") { return "времена" } + if str_eq(gram_case, "gen") { return "времён" } + if str_eq(gram_case, "dat") { return "временам" } + if str_eq(gram_case, "ins") { return "временами" } + if str_eq(gram_case, "pre") { return "временах" } + return "времена" + } + + // имя (name) — neuter in -мя + if str_eq(noun, "имя") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "имя" } + if str_eq(gram_case, "acc") { return "имя" } + if str_eq(gram_case, "gen") { return "имени" } + if str_eq(gram_case, "dat") { return "имени" } + if str_eq(gram_case, "ins") { return "именем" } + if str_eq(gram_case, "pre") { return "имени" } + } + if str_eq(gram_case, "nom") { return "имена" } + if str_eq(gram_case, "acc") { return "имена" } + if str_eq(gram_case, "gen") { return "имён" } + if str_eq(gram_case, "dat") { return "именам" } + if str_eq(gram_case, "ins") { return "именами" } + if str_eq(gram_case, "pre") { return "именах" } + return "имена" + } + + // путь (way/path) — masculine soft with unique instrumental + if str_eq(noun, "путь") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "путь" } + if str_eq(gram_case, "acc") { return "путь" } + if str_eq(gram_case, "gen") { return "пути" } + if str_eq(gram_case, "dat") { return "пути" } + if str_eq(gram_case, "ins") { return "путём" } + if str_eq(gram_case, "pre") { return "пути" } + } + if str_eq(gram_case, "nom") { return "пути" } + if str_eq(gram_case, "acc") { return "пути" } + if str_eq(gram_case, "gen") { return "путей" } + if str_eq(gram_case, "dat") { return "путям" } + if str_eq(gram_case, "ins") { return "путями" } + if str_eq(gram_case, "pre") { return "путях" } + return "пути" + } + + // мать (mother) — feminine with -ер- insert + if str_eq(noun, "мать") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "мать" } + if str_eq(gram_case, "acc") { return "мать" } + if str_eq(gram_case, "gen") { return "матери" } + if str_eq(gram_case, "dat") { return "матери" } + if str_eq(gram_case, "ins") { return "матерью" } + if str_eq(gram_case, "pre") { return "матери" } + } + if str_eq(gram_case, "nom") { return "матери" } + if str_eq(gram_case, "acc") { return "матерей" } + if str_eq(gram_case, "gen") { return "матерей" } + if str_eq(gram_case, "dat") { return "матерям" } + if str_eq(gram_case, "ins") { return "матерями" } + if str_eq(gram_case, "pre") { return "матерях" } + return "матери" + } + + // дочь (daughter) — same insert pattern + if str_eq(noun, "дочь") { + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return "дочь" } + if str_eq(gram_case, "acc") { return "дочь" } + if str_eq(gram_case, "gen") { return "дочери" } + if str_eq(gram_case, "dat") { return "дочери" } + if str_eq(gram_case, "ins") { return "дочерью" } + if str_eq(gram_case, "pre") { return "дочери" } + } + if str_eq(gram_case, "nom") { return "дочери" } + if str_eq(gram_case, "acc") { return "дочерей" } + if str_eq(gram_case, "gen") { return "дочерей" } + if str_eq(gram_case, "dat") { return "дочерям" } + if str_eq(gram_case, "ins") { return "дочерями" } + if str_eq(gram_case, "pre") { return "дочерях" } + return "дочери" + } + + // ── Regular paradigm dispatch ──────────────────────────────────────────── + + let stype: String = ru_stem_type(noun, gender) + return ru_decline_regular(noun, gender, stype, gram_case, number) +} + +// ── Regular declension paradigms ───────────────────────────────────────────── +// +// Handles hard, soft, and sibilant stems across all three genders. + +fn ru_decline_regular(noun: String, gender: String, stype: String, gram_case: String, number: String) -> String { + if str_eq(gender, "m") { + return ru_decline_masc(noun, stype, gram_case, number) + } + if str_eq(gender, "f") { + return ru_decline_fem(noun, stype, gram_case, number) + } + return ru_decline_neut(noun, stype, gram_case, number) +} + +// ── Masculine declension ────────────────────────────────────────────────────── +// +// Hard (стол): stem = noun itself (zero ending in nom sg) +// Sg: стол, стол, стола, столу, столом, столе +// Pl: столы, столы, столов, столам, столами, столах +// +// Soft ending in -й (трамвай → трамва-): +// Sg: трамвай, трамвай, трамвая, трамваю, трамваем, трамвае +// Pl: трамваи, трамваи, трамваев, трамваям, трамваями, трамваях +// +// Soft ending in -ь (рубль → рубл-): +// Sg: рубль, рубль, рубля, рублю, рублём, рубле +// Pl: рубли, рубли, рублей, рублям, рублями, рублях +// +// Sibilant (нож → нож-): +// Same as hard but ins sg = -ом only when stressed; unstressed = -ем +// Here we assume stressed stem and use -ом. + +fn ru_decline_masc(noun: String, stype: String, gram_case: String, number: String) -> String { + let n: Int = str_len(noun) + + if str_eq(stype, "soft") { + let last: String = str_slice(noun, n - 1, n) + + // Stem in -й (трамвай) + if str_eq(last, "й") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return noun } // inanimate + if str_eq(gram_case, "gen") { return stem + "я" } + if str_eq(gram_case, "dat") { return stem + "ю" } + if str_eq(gram_case, "ins") { return stem + "ем" } + if str_eq(gram_case, "pre") { return stem + "е" } + return noun + } + if str_eq(gram_case, "nom") { return stem + "и" } + if str_eq(gram_case, "acc") { return stem + "и" } + if str_eq(gram_case, "gen") { return stem + "ев" } + if str_eq(gram_case, "dat") { return stem + "ям" } + if str_eq(gram_case, "ins") { return stem + "ями" } + if str_eq(gram_case, "pre") { return stem + "ях" } + return stem + "и" + } + + // Stem in -ь (рубль, гость) + if str_eq(last, "ь") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return noun } + if str_eq(gram_case, "gen") { return stem + "я" } + if str_eq(gram_case, "dat") { return stem + "ю" } + if str_eq(gram_case, "ins") { return stem + "ём" } + if str_eq(gram_case, "pre") { return stem + "е" } + return noun + } + if str_eq(gram_case, "nom") { return stem + "и" } + if str_eq(gram_case, "acc") { return stem + "и" } + if str_eq(gram_case, "gen") { return stem + "ей" } + if str_eq(gram_case, "dat") { return stem + "ям" } + if str_eq(gram_case, "ins") { return stem + "ями" } + if str_eq(gram_case, "pre") { return stem + "ях" } + return stem + "и" + } + } + + // Hard and sibilant: stem = noun (zero ending in nom sg) + let stem: String = noun + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return stem } + if str_eq(gram_case, "acc") { return stem } // inanimate; animate = gen + if str_eq(gram_case, "gen") { return stem + "а" } + if str_eq(gram_case, "dat") { return stem + "у" } + if str_eq(gram_case, "ins") { return stem + "ом" } + if str_eq(gram_case, "pre") { return stem + "е" } + return stem + } + // Plural + if str_eq(gram_case, "nom") { return stem + "ы" } + if str_eq(gram_case, "acc") { return stem + "ы" } + if str_eq(gram_case, "gen") { return stem + "ов" } + if str_eq(gram_case, "dat") { return stem + "ам" } + if str_eq(gram_case, "ins") { return stem + "ами" } + if str_eq(gram_case, "pre") { return stem + "ах" } + return stem + "ы" +} + +// ── Feminine declension ─────────────────────────────────────────────────────── +// +// Hard in -а (женщина): +// Sg: женщина, женщину, женщины, женщине, женщиной, женщине +// Pl: женщины, женщин, женщин, женщинам, женщинами, женщинах +// +// Soft in -я (земля): +// Sg: земля, землю, земли, земле, землёй, земле +// Pl: земли, земли, земель, землям, землями, землях +// +// Soft in -ь (тетрадь, ночь): +// Sg: тетрадь, тетрадь, тетради, тетради, тетрадью, тетради +// Pl: тетради, тетради, тетрадей, тетрадям, тетрадями, тетрадях + +fn ru_decline_fem(noun: String, stype: String, gram_case: String, number: String) -> String { + let n: Int = str_len(noun) + let last: String = str_slice(noun, n - 1, n) + + // Soft in -ь + if str_eq(last, "ь") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return noun } + if str_eq(gram_case, "gen") { return stem + "и" } + if str_eq(gram_case, "dat") { return stem + "и" } + if str_eq(gram_case, "ins") { return stem + "ью" } + if str_eq(gram_case, "pre") { return stem + "и" } + return noun + } + if str_eq(gram_case, "nom") { return stem + "и" } + if str_eq(gram_case, "acc") { return stem + "и" } + if str_eq(gram_case, "gen") { return stem + "ей" } + if str_eq(gram_case, "dat") { return stem + "ям" } + if str_eq(gram_case, "ins") { return stem + "ями" } + if str_eq(gram_case, "pre") { return stem + "ях" } + return stem + "и" + } + + // Soft in -я (земля, семья) + if str_eq(last, "я") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return stem + "ю" } + if str_eq(gram_case, "gen") { return stem + "и" } + if str_eq(gram_case, "dat") { return stem + "е" } + if str_eq(gram_case, "ins") { return stem + "ей" } + if str_eq(gram_case, "pre") { return stem + "е" } + return noun + } + if str_eq(gram_case, "nom") { return stem + "и" } + if str_eq(gram_case, "acc") { return stem + "и" } + // Genitive plural: zero ending (with possible fleeting vowel) — use -ей for soft + if str_eq(gram_case, "gen") { return stem + "ей" } + if str_eq(gram_case, "dat") { return stem + "ям" } + if str_eq(gram_case, "ins") { return stem + "ями" } + if str_eq(gram_case, "pre") { return stem + "ях" } + return stem + "и" + } + + // Hard in -а (женщина, страна, рука) + if str_eq(last, "а") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return stem + "у" } + if str_eq(gram_case, "gen") { return stem + "ы" } + if str_eq(gram_case, "dat") { return stem + "е" } + if str_eq(gram_case, "ins") { return stem + "ой" } + if str_eq(gram_case, "pre") { return stem + "е" } + return noun + } + // Plural: gen pl = zero ending (stem only) for most -а feminines + if str_eq(gram_case, "nom") { return stem + "ы" } + if str_eq(gram_case, "acc") { return stem + "ы" } + if str_eq(gram_case, "gen") { return stem } + if str_eq(gram_case, "dat") { return stem + "ам" } + if str_eq(gram_case, "ins") { return stem + "ами" } + if str_eq(gram_case, "pre") { return stem + "ах" } + return stem + "ы" + } + + // Fallback: treat as hard -а (unexpected ending) + return noun +} + +// ── Neuter declension ───────────────────────────────────────────────────────── +// +// Hard in -о (слово): +// Sg: слово, слово, слова, слову, словом, слове +// Pl: слова, слова, слов, словам, словами, словах +// +// Soft in -е (море, поле): +// Sg: море, море, моря, морю, морем, море +// Pl: моря, моря, морей, морям, морями, морях +// +// Soft in -ие (здание): +// Sg: здание, здание, здания, зданию, зданием, здании +// Pl: здания, здания, зданий, зданиям, зданиями, зданиях + +fn ru_decline_neut(noun: String, stype: String, gram_case: String, number: String) -> String { + let n: Int = str_len(noun) + let last: String = str_slice(noun, n - 1, n) + + // Nouns in -ие (здание, здравоохранение) + if str_ends_with(noun, "ие") { + let stem: String = str_drop_last(noun, 2) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return noun } + if str_eq(gram_case, "gen") { return stem + "ия" } + if str_eq(gram_case, "dat") { return stem + "ию" } + if str_eq(gram_case, "ins") { return stem + "ием" } + if str_eq(gram_case, "pre") { return stem + "ии" } + return noun + } + if str_eq(gram_case, "nom") { return stem + "ия" } + if str_eq(gram_case, "acc") { return stem + "ия" } + if str_eq(gram_case, "gen") { return stem + "ий" } + if str_eq(gram_case, "dat") { return stem + "иям" } + if str_eq(gram_case, "ins") { return stem + "иями" } + if str_eq(gram_case, "pre") { return stem + "иях" } + return stem + "ия" + } + + // Soft in -е (море, поле) + if str_eq(last, "е") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return noun } + if str_eq(gram_case, "gen") { return stem + "я" } + if str_eq(gram_case, "dat") { return stem + "ю" } + if str_eq(gram_case, "ins") { return stem + "ем" } + if str_eq(gram_case, "pre") { return noun } + return noun + } + if str_eq(gram_case, "nom") { return stem + "я" } + if str_eq(gram_case, "acc") { return stem + "я" } + if str_eq(gram_case, "gen") { return stem + "ей" } + if str_eq(gram_case, "dat") { return stem + "ям" } + if str_eq(gram_case, "ins") { return stem + "ями" } + if str_eq(gram_case, "pre") { return stem + "ях" } + return stem + "я" + } + + // Hard in -о (слово, окно, место) + if str_eq(last, "о") { + let stem: String = str_drop_last(noun, 1) + if str_eq(number, "sg") { + if str_eq(gram_case, "nom") { return noun } + if str_eq(gram_case, "acc") { return noun } + if str_eq(gram_case, "gen") { return stem + "а" } + if str_eq(gram_case, "dat") { return stem + "у" } + if str_eq(gram_case, "ins") { return stem + "ом" } + if str_eq(gram_case, "pre") { return stem + "е" } + return noun + } + if str_eq(gram_case, "nom") { return stem + "а" } + if str_eq(gram_case, "acc") { return stem + "а" } + // Genitive plural: zero ending (слов, окон, мест) + if str_eq(gram_case, "gen") { return stem } + if str_eq(gram_case, "dat") { return stem + "ам" } + if str_eq(gram_case, "ins") { return stem + "ами" } + if str_eq(gram_case, "pre") { return stem + "ах" } + return stem + "а" + } + + // Fallback + return noun +} + +// ── Past-tense agreement ────────────────────────────────────────────────────── +// +// Russian past tense agrees with the subject in gender and number. +// The past stem is derived from the infinitive (drop -ть/-ти/-чь). +// +// Endings: masc → (bare stem), fem → -а, neut → -о, pl → -и +// +// Special: verbs in -чь (мочь → мог), -ти (идти → шёл) are irregular. + +fn ru_past_agree(verb_stem: String, gender: String, number: String) -> String { + if str_eq(number, "pl") { + return verb_stem + "и" + } + if str_eq(gender, "f") { return verb_stem + "а" } + if str_eq(gender, "n") { return verb_stem + "о" } + return verb_stem +} + +// ── First-conjugation present tense ────────────────────────────────────────── +// +// Model: читать (чита-) → читаю, читаешь, читает, читаем, читаете, читают +// Model: писать (пиш-) — stem changes in conjugation (handled by caller) +// +// This function takes an already-computed present stem (e.g. "чита") and +// applies first-conjugation endings. +// +// 1sg: stem + -ю (after vowel) or -у (after consonant) +// 2sg: stem + -ешь +// 3sg: stem + -ет +// 1pl: stem + -ем +// 2pl: stem + -ете +// 3pl: stem + -ют (after vowel) or -ут (after consonant) + +fn ru_conjugate_1st(stem: String, tense: String, person: String, number: String) -> String { + if str_eq(tense, "present") { + let n: Int = str_len(stem) + let last: String = str_slice(stem, n - 1, n) + let vowels: Bool = false + let vowels = + str_eq(last, "а") || + str_eq(last, "е") || + str_eq(last, "и") || + str_eq(last, "о") || + str_eq(last, "у") || + str_eq(last, "ю") || + str_eq(last, "я") || + str_eq(last, "э") || + str_eq(last, "ё") || + str_eq(last, "ы") + + if str_eq(number, "sg") { + if str_eq(person, "1") { + if vowels { return stem + "ю" } + return stem + "у" + } + if str_eq(person, "2") { return stem + "ешь" } + return stem + "ет" + } + if str_eq(person, "1") { return stem + "ем" } + if str_eq(person, "2") { return stem + "ете" } + if vowels { return stem + "ют" } + return stem + "ут" + } + // Past and future handled by ru_conjugate + return stem +} + +// ── Second-conjugation present tense ───────────────────────────────────────── +// +// Model: говорить (говор-) → говорю, говоришь, говорит, говорим, говорите, говорят +// +// 1sg: stem + -ю / -у +// 2sg: stem + -ишь +// 3sg: stem + -ит +// 1pl: stem + -им +// 2pl: stem + -ите +// 3pl: stem + -ят / -ат + +fn ru_conjugate_2nd(stem: String, tense: String, person: String, number: String) -> String { + if str_eq(tense, "present") { + let n: Int = str_len(stem) + let last: String = str_slice(stem, n - 1, n) + let after_vowel: Bool = + str_eq(last, "а") || + str_eq(last, "е") || + str_eq(last, "и") || + str_eq(last, "о") || + str_eq(last, "у") || + str_eq(last, "ю") || + str_eq(last, "я") || + str_eq(last, "э") || + str_eq(last, "ё") || + str_eq(last, "ы") + + if str_eq(number, "sg") { + if str_eq(person, "1") { + if after_vowel { return stem + "ю" } + return stem + "у" + } + if str_eq(person, "2") { return stem + "ишь" } + return stem + "ит" + } + if str_eq(person, "1") { return stem + "им" } + if str_eq(person, "2") { return stem + "ите" } + if after_vowel { return stem + "ят" } + return stem + "ат" + } + return stem +} + +// ── Irregular verb forms ────────────────────────────────────────────────────── +// +// Returns the inflected form for known irregular verbs, or "" if unknown. +// gender is used for past tense agreement. + +fn ru_irregular(verb: String, tense: String, person: String, number: String) -> String { + // быть (to be) — present tense: есть (invariant) / rarely conjugated + if str_eq(verb, "быть") { + if str_eq(tense, "present") { + // Modern Russian uses invariant "есть" for all persons in present + return "есть" + } + // Future: буду, будешь, будет, будем, будете, будут + if str_eq(tense, "future") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "буду" } + if str_eq(person, "2") { return "будешь" } + return "будет" + } + if str_eq(person, "1") { return "будем" } + if str_eq(person, "2") { return "будете" } + return "будут" + } + // Past: returned without gender agreement — caller must call ru_past_agree + return "" + } + + // идти (to go on foot) — present: иду, идёшь, идёт, идём, идёте, идут + if str_eq(verb, "идти") { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "иду" } + if str_eq(person, "2") { return "идёшь" } + return "идёт" + } + if str_eq(person, "1") { return "идём" } + if str_eq(person, "2") { return "идёте" } + return "идут" + } + // Past stem: шёл (m), шла (f), шло (n), шли (pl) + return "" + } + + // ехать (to go by vehicle) — present: еду, едешь, едет, едем, едете, едут + if str_eq(verb, "ехать") { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "еду" } + if str_eq(person, "2") { return "едешь" } + return "едет" + } + if str_eq(person, "1") { return "едем" } + if str_eq(person, "2") { return "едете" } + return "едут" + } + return "" + } + + // говорить (to speak) — 2nd conjugation + if str_eq(verb, "говорить") { + if str_eq(tense, "present") { + return ru_conjugate_2nd("говор", "present", person, number) + } + return "" + } + + // знать (to know) — 1st conjugation, regular: зна- + if str_eq(verb, "знать") { + if str_eq(tense, "present") { + return ru_conjugate_1st("зна", "present", person, number) + } + return "" + } + + // видеть (to see) — 2nd conjugation, 1sg mutation: вижу + if str_eq(verb, "видеть") { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "вижу" } + if str_eq(person, "2") { return "видишь" } + return "видит" + } + if str_eq(person, "1") { return "видим" } + if str_eq(person, "2") { return "видите" } + return "видят" + } + return "" + } + + // делать (to do) — 1st conjugation: дела- + if str_eq(verb, "делать") { + if str_eq(tense, "present") { + return ru_conjugate_1st("дела", "present", person, number) + } + return "" + } + + // хотеть (to want) — mixed conjugation (1st pl, 2nd sg/3sg) + if str_eq(verb, "хотеть") { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "хочу" } + if str_eq(person, "2") { return "хочешь" } + return "хочет" + } + if str_eq(person, "1") { return "хотим" } + if str_eq(person, "2") { return "хотите" } + return "хотят" + } + return "" + } + + // мочь (can/be able) — present: могу, можешь, может, можем, можете, могут + if str_eq(verb, "мочь") { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "могу" } + if str_eq(person, "2") { return "можешь" } + return "может" + } + if str_eq(person, "1") { return "можем" } + if str_eq(person, "2") { return "можете" } + return "могут" + } + return "" + } + + // сказать (to say, pfv) — present (= future perfective): + // скажу, скажешь, скажет, скажем, скажете, скажут + if str_eq(verb, "сказать") { + if str_eq(tense, "present") { + if str_eq(number, "sg") { + if str_eq(person, "1") { return "скажу" } + if str_eq(person, "2") { return "скажешь" } + return "скажет" + } + if str_eq(person, "1") { return "скажем" } + if str_eq(person, "2") { return "скажете" } + return "скажут" + } + return "" + } + + return "" +} + +// ── Past stem table ─────────────────────────────────────────────────────────── +// +// Returns the masculine past stem (without agreement ending) for known verbs. +// The caller must run ru_past_agree(stem, gender, number) to get the full form. + +fn ru_past_stem(verb: String) -> String { + // Regular -ать: drop -ть, add nothing (past stem = infinitive minus -ть) + if str_eq(verb, "читать") { return "чита" } + if str_eq(verb, "знать") { return "зна" } + if str_eq(verb, "делать") { return "дела" } + if str_eq(verb, "сказать") { return "сказа" } + if str_eq(verb, "думать") { return "дума" } + if str_eq(verb, "работать") { return "работа" } + if str_eq(verb, "писать") { return "писа" } + if str_eq(verb, "слушать") { return "слуша" } + if str_eq(verb, "отвечать") { return "отвеча" } + + // Regular -ить/-еть + if str_eq(verb, "говорить") { return "говори" } + if str_eq(verb, "видеть") { return "виде" } + if str_eq(verb, "смотреть") { return "смотре" } + if str_eq(verb, "иметь") { return "име" } + if str_eq(verb, "хотеть") { return "хоте" } + + // Irregular pasts + if str_eq(verb, "быть") { return "бы" } // был/была/было/были + if str_eq(verb, "идти") { return "шё" } // шёл — caller must handle -л suffix + if str_eq(verb, "ехать") { return "еха" } // ехал + if str_eq(verb, "мочь") { return "мо" } // мог (m: мог, not мол) + if str_eq(verb, "нести") { return "нё" } // нёс + if str_eq(verb, "вести") { return "вё" } // вёл + + // Derive from infinitive: drop -ть + let n: Int = str_len(verb) + if n > 2 { + let last2: String = str_slice(verb, n - 2, n) + if str_eq(last2, "ть") { + return str_drop_last(verb, 2) + } + } + return verb +} + +// ── Unified Russian verb conjugation ───────────────────────────────────────── +// +// tense: "present" | "past" | "future" +// person: "1" | "2" | "3" +// number: "sg" | "pl" +// gender: "m" | "f" | "n" — used for past tense agreement only + +fn ru_conjugate(verb: String, tense: String, person: String, number: String, gender: String) -> String { + // ── Copula "byt" (transliterated быть) ──────────────────────────────── + // Russian present tense has zero copula — "Кошка большая" not "Кошка есть большая". + // Return empty string so gram_order_constituents skips the verb slot. + if str_eq(verb, "byt") { + if str_eq(tense, "present") { return "" } + // Future: буду/будешь/будет... Past: был/была/было/были + // For now return transliterated placeholder; full Unicode tables TBD. + if str_eq(tense, "future") { return "budet" } + return "byl" + } + + // ── Past tense ────────────────────────────────────────────────────────── + if str_eq(tense, "past") { + // Special-case verbs with non-standard past forms + if str_eq(verb, "идти") { + if str_eq(number, "pl") { return "шли" } + if str_eq(gender, "f") { return "шла" } + if str_eq(gender, "n") { return "шло" } + return "шёл" + } + if str_eq(verb, "мочь") { + if str_eq(number, "pl") { return "могли" } + if str_eq(gender, "f") { return "могла" } + if str_eq(gender, "n") { return "могло" } + return "мог" + } + if str_eq(verb, "нести") { + if str_eq(number, "pl") { return "несли" } + if str_eq(gender, "f") { return "несла" } + if str_eq(gender, "n") { return "несло" } + return "нёс" + } + if str_eq(verb, "вести") { + if str_eq(number, "pl") { return "вели" } + if str_eq(gender, "f") { return "вела" } + if str_eq(gender, "n") { return "вело" } + return "вёл" + } + let ps: String = ru_past_stem(verb) + return ru_past_agree(ps, gender, number) + } + + // ── Future tense (imperfective) ───────────────────────────────────────── + // + // Imperfective future = быть (conjugated) + infinitive + if str_eq(tense, "future") { + let aux: String = ru_irregular("быть", "future", person, number) + return aux + " " + verb + } + + // ── Present tense ─────────────────────────────────────────────────────── + + // Try the irregular table first + let irr: String = ru_irregular(verb, tense, person, number) + if !str_eq(irr, "") { + return irr + } + + // Derive conjugation class from infinitive ending + let n: Int = str_len(verb) + if n > 4 { + let last4: String = str_slice(verb, n - 4, n) + // -ить verbs → 2nd conjugation (most) + if str_eq(last4, "ить ") { + // remove trailing space if any — defensive + } + } + + // Detect -ить suffix → 2nd conjugation + if str_ends_with(verb, "ить") { + let stem: String = str_drop_last(verb, 3) + return ru_conjugate_2nd(stem, "present", person, number) + } + + // Detect -еть suffix → 2nd conjugation + if str_ends_with(verb, "еть") { + let stem: String = str_drop_last(verb, 3) + return ru_conjugate_2nd(stem, "present", person, number) + } + + // Detect -ать suffix → 1st conjugation + if str_ends_with(verb, "ать") { + let stem: String = str_drop_last(verb, 2) + return ru_conjugate_1st(stem, "present", person, number) + } + + // Detect -ять suffix → 1st conjugation + if str_ends_with(verb, "ять") { + let stem: String = str_drop_last(verb, 2) + return ru_conjugate_1st(stem, "present", person, number) + } + + // Detect -овать suffix → 1st conjugation with -у- stem + if str_ends_with(verb, "овать") { + let stem: String = str_drop_last(verb, 5) + "у" + return ru_conjugate_1st(stem, "present", person, number) + } + + // Detect -нуть suffix → 1st conjugation + if str_ends_with(verb, "нуть") { + let stem: String = str_drop_last(verb, 4) + "н" + return ru_conjugate_1st(stem, "present", person, number) + } + + // Fallback: return the infinitive + return verb +} diff --git a/elp/src/morphology-ru.elh b/elp/src/morphology-ru.elh new file mode 100644 index 0000000..6ef6791 --- /dev/null +++ b/elp/src/morphology-ru.elh @@ -0,0 +1,14 @@ +// auto-generated by elc --emit-header - do not edit +extern fn ru_gender(noun: String) -> String +extern fn ru_stem_type(noun: String, gender: String) -> String +extern fn ru_noun_case(noun: String, gender: String, gram_case: String, number: String) -> String +extern fn ru_decline_regular(noun: String, gender: String, stype: String, gram_case: String, number: String) -> String +extern fn ru_decline_masc(noun: String, stype: String, gram_case: String, number: String) -> String +extern fn ru_decline_fem(noun: String, stype: String, gram_case: String, number: String) -> String +extern fn ru_decline_neut(noun: String, stype: String, gram_case: String, number: String) -> String +extern fn ru_past_agree(verb_stem: String, gender: String, number: String) -> String +extern fn ru_conjugate_1st(stem: String, tense: String, person: String, number: String) -> String +extern fn ru_conjugate_2nd(stem: String, tense: String, person: String, number: String) -> String +extern fn ru_irregular(verb: String, tense: String, person: String, number: String) -> String +extern fn ru_past_stem(verb: String) -> String +extern fn ru_conjugate(verb: String, tense: String, person: String, number: String, gender: String) -> String diff --git a/elp/src/morphology-sa.el b/elp/src/morphology-sa.el new file mode 100644 index 0000000..ecd471e --- /dev/null +++ b/elp/src/morphology-sa.el @@ -0,0 +1,651 @@ +// morphology-sa.el - Sanskrit morphology for the NLG engine. +// +// Implements Sanskrit verb conjugation and noun declension using IAST +// transliteration as the primary form. Designed as a companion to +// morphology.el and called by the engine when the language profile code +// is "sa". +// +// Language profile: code=sa, name=Sanskrit, morph_type=fusional, +// word_order=SOV, question_strategy=intonation, script=devanagari, +// family=indo-aryan. +// +// Verb conjugation covered: +// Tenses: present (laṭ), past (imperfect laṅ), future (lṛṭ) +// Persons: first/second/third × singular/plural +// (dual is treated as plural throughout — see sa_slot) +// Classes: Class 1 (bhū-adi, stem + a + endings) as the regular path +// Irregulars: as, bhū, gam, dṛś, vad, kṛ (the core NLG vocabulary) +// Canonical map: "be" -> "as" +// +// Noun declension covered: +// Cases: nominative, accusative, instrumental, dative, ablative, +// genitive, locative, vocative (all 8 Sanskrit cases) +// Stem types: a-stem masculine (paradigm: deva), +// ā-stem feminine (paradigm: devī) +// Numbers: singular, plural (dual collapsed to plural) +// +// Sanskrit has no articles. sa_noun_phrase returns the declined noun +// directly. +// +// Notes on IAST diacritics used throughout this file: +// ā ī ū — long vowels +// ṛ — vocalic r +// ṃ — anusvāra (nasalisation / homorganic nasal) +// ḥ — visarga (final breath) +// ś ṣ — palatal / retroflex sibilants +// ṭ ḍ ṇ — retroflex stops and nasal +// ñ — palatal nasal +// Sandhi is intentionally suppressed — forms are returned in their +// isolated (pausa) shapes so the NLG realizer can apply sandhi later. +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn sa_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn sa_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based index into paradigm arrays. +// +// 0 = 1st singular (uttama eka) +// 1 = 2nd singular (madhyama eka) +// 2 = 3rd singular (prathama eka) +// 3 = 1st plural (uttama bahu) +// 4 = 2nd plural (madhyama bahu) +// 5 = 3rd plural (prathama bahu) +// +// Sanskrit has a dual number but for NLG simplicity the dual is collapsed: +// "dual" inputs return the same slot as "plural". Forms in this file +// therefore carry plural endings even when the dual was requested. + +fn sa_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third person + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Semantic-layer canonical English labels are mapped to IAST dictionary +// entries before conjugation. The dictionary entry is then looked up in +// the irregular table; unknown entries fall through to the Class-1 path. + +fn sa_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "as" } + if str_eq(verb, "become") { return "bhu" } + if str_eq(verb, "go") { return "gam" } + if str_eq(verb, "see") { return "drs" } + if str_eq(verb, "speak") { return "vad" } + if str_eq(verb, "say") { return "vad" } + if str_eq(verb, "do") { return "kr" } + if str_eq(verb, "make") { return "kr" } + return verb +} + +// ── Irregular verb: as (to be) ──────────────────────────────────────────────── +// +// Present (laṭ) parasmaipada: +// 1sg asmi 2sg asi 3sg asti +// 1pl smaḥ 2pl stha 3pl santi +// +// Imperfect (laṅ) parasmaipada: +// 1sg āsam 2sg āsīḥ 3sg āsīt +// 1pl āsma 2pl āsta 3pl āsan + +fn sa_as_present(slot: Int) -> String { + if slot == 0 { return "asmi" } + if slot == 1 { return "asi" } + if slot == 2 { return "asti" } + if slot == 3 { return "smaḥ" } + if slot == 4 { return "stha" } + return "santi" +} + +fn sa_as_past(slot: Int) -> String { + if slot == 0 { return "āsam" } + if slot == 1 { return "āsīḥ" } + if slot == 2 { return "āsīt" } + if slot == 3 { return "āsma" } + if slot == 4 { return "āsta" } + return "āsan" +} + +// Future (lṛṭ) of as: bhaviṣyāmi series (uses bhū as suppletive stem) +fn sa_as_future(slot: Int) -> String { + if slot == 0 { return "bhaviṣyāmi" } + if slot == 1 { return "bhaviṣyasi" } + if slot == 2 { return "bhaviṣyati" } + if slot == 3 { return "bhaviṣyāmaḥ" } + if slot == 4 { return "bhaviṣyatha" } + return "bhaviṣyanti" +} + +// ── Irregular verb: bhū (to be, to become) ──────────────────────────────────── +// +// Class 1; present stem bho → bhava (guṇa of u before -a-). +// +// Present (laṭ): +// 1sg bhavāmi 2sg bhavasi 3sg bhavati +// 1pl bhavāmaḥ 2pl bhavatha 3pl bhavanti +// +// Imperfect (laṅ): +// 1sg abhavam 2sg abhavaḥ 3sg abhavat +// 1pl abhavāma 2pl abhavata 3pl abhavan +// +// Future (lṛṭ): regular from bhaviṣya- + +fn sa_bhu_present(slot: Int) -> String { + if slot == 0 { return "bhavāmi" } + if slot == 1 { return "bhavasi" } + if slot == 2 { return "bhavati" } + if slot == 3 { return "bhavāmaḥ" } + if slot == 4 { return "bhavatha" } + return "bhavanti" +} + +fn sa_bhu_past(slot: Int) -> String { + if slot == 0 { return "abhavam" } + if slot == 1 { return "abhavaḥ" } + if slot == 2 { return "abhavat" } + if slot == 3 { return "abhavāma" } + if slot == 4 { return "abhavata" } + return "abhavan" +} + +fn sa_bhu_future(slot: Int) -> String { + if slot == 0 { return "bhaviṣyāmi" } + if slot == 1 { return "bhaviṣyasi" } + if slot == 2 { return "bhaviṣyati" } + if slot == 3 { return "bhaviṣyāmaḥ" } + if slot == 4 { return "bhaviṣyatha" } + return "bhaviṣyanti" +} + +// ── Irregular verb: gam (to go) ─────────────────────────────────────────────── +// +// Historically Class 1 with the present stem gaccha- (inserted -ccha-). +// +// Present (laṭ): +// gacchāmi gacchasi gacchati +// gacchāmaḥ gacchatha gacchanti +// +// Imperfect (laṅ): augmented agaccha- +// +// Future: gamiṣyati series + +fn sa_gam_present(slot: Int) -> String { + if slot == 0 { return "gacchāmi" } + if slot == 1 { return "gacchasi" } + if slot == 2 { return "gacchati" } + if slot == 3 { return "gacchāmaḥ" } + if slot == 4 { return "gacchatha" } + return "gacchanti" +} + +fn sa_gam_past(slot: Int) -> String { + if slot == 0 { return "agaccham" } + if slot == 1 { return "agacchaḥ" } + if slot == 2 { return "agacchat" } + if slot == 3 { return "agacchāma" } + if slot == 4 { return "agacchata" } + return "agacchan" +} + +fn sa_gam_future(slot: Int) -> String { + if slot == 0 { return "gamiṣyāmi" } + if slot == 1 { return "gamiṣyasi" } + if slot == 2 { return "gamiṣyati" } + if slot == 3 { return "gamiṣyāmaḥ" } + if slot == 4 { return "gamiṣyatha" } + return "gamiṣyanti" +} + +// ── Irregular verb: dṛś (to see) ───────────────────────────────────────────── +// +// Suppletive present stem paśya- (Class 4 / ātmanepada suppletive). +// Used in the active (parasmaipada) sense throughout for NLG simplicity. +// +// Present: paśyāmi paśyasi paśyati paśyāmaḥ paśyatha paśyanti +// Imperfect: apaśyam series +// Future: drakṣyati series + +fn sa_drs_present(slot: Int) -> String { + if slot == 0 { return "paśyāmi" } + if slot == 1 { return "paśyasi" } + if slot == 2 { return "paśyati" } + if slot == 3 { return "paśyāmaḥ" } + if slot == 4 { return "paśyatha" } + return "paśyanti" +} + +fn sa_drs_past(slot: Int) -> String { + if slot == 0 { return "apaśyam" } + if slot == 1 { return "apaśyaḥ" } + if slot == 2 { return "apaśyat" } + if slot == 3 { return "apaśyāma" } + if slot == 4 { return "apaśyata" } + return "apaśyan" +} + +fn sa_drs_future(slot: Int) -> String { + if slot == 0 { return "drakṣyāmi" } + if slot == 1 { return "drakṣyasi" } + if slot == 2 { return "drakṣyati" } + if slot == 3 { return "drakṣyāmaḥ" } + if slot == 4 { return "drakṣyatha" } + return "drakṣyanti" +} + +// ── Irregular verb: vad (to speak, to say) ──────────────────────────────────── +// +// Class 1; present stem vada-. +// +// Present: vadāmi vadasi vadati vadāmaḥ vadatha vadanti +// Imperfect: avadam series +// Future: vadiṣyati series + +fn sa_vad_present(slot: Int) -> String { + if slot == 0 { return "vadāmi" } + if slot == 1 { return "vadasi" } + if slot == 2 { return "vadati" } + if slot == 3 { return "vadāmaḥ" } + if slot == 4 { return "vadatha" } + return "vadanti" +} + +fn sa_vad_past(slot: Int) -> String { + if slot == 0 { return "avadam" } + if slot == 1 { return "avadaḥ" } + if slot == 2 { return "avadat" } + if slot == 3 { return "avadāma" } + if slot == 4 { return "avadata" } + return "avadan" +} + +fn sa_vad_future(slot: Int) -> String { + if slot == 0 { return "vadiṣyāmi" } + if slot == 1 { return "vadiṣyasi" } + if slot == 2 { return "vadiṣyati" } + if slot == 3 { return "vadiṣyāmaḥ" } + if slot == 4 { return "vadiṣyatha" } + return "vadiṣyanti" +} + +// ── Irregular verb: kṛ (to do, to make) ────────────────────────────────────── +// +// Class 8 (tanādi); highly irregular. Present stem karo- (sg) / kuru- (pl). +// +// Present: +// 1sg karomi 2sg karoṣi 3sg karoti +// 1pl kurmaḥ 2pl kurutha 3pl kurvanti +// +// Imperfect: akaro- / akuru- +// Future: kariṣyati series + +fn sa_kr_present(slot: Int) -> String { + if slot == 0 { return "karomi" } + if slot == 1 { return "karoṣi" } + if slot == 2 { return "karoti" } + if slot == 3 { return "kurmaḥ" } + if slot == 4 { return "kurutha" } + return "kurvanti" +} + +fn sa_kr_past(slot: Int) -> String { + if slot == 0 { return "akaravam" } + if slot == 1 { return "akarodaḥ" } + if slot == 2 { return "akarot" } + if slot == 3 { return "akurma" } + if slot == 4 { return "akuruta" } + return "akurvan" +} + +fn sa_kr_future(slot: Int) -> String { + if slot == 0 { return "kariṣyāmi" } + if slot == 1 { return "kariṣyasi" } + if slot == 2 { return "kariṣyati" } + if slot == 3 { return "kariṣyāmaḥ" } + if slot == 4 { return "kariṣyatha" } + return "kariṣyanti" +} + +// ── Class-1 regular conjugation (bhū-adi) ───────────────────────────────────── +// +// The thematic class: root → guṇa-strengthened root → + a + personal ending. +// Present endings (parasmaipada): +// 1sg -āmi 2sg -asi 3sg -ati +// 1pl -āmaḥ 2pl -atha 3pl -anti +// +// Imperfect (laṅ) = augment a- + stem + imperfect endings: +// 1sg -am 2sg -aḥ 3sg -at +// 1pl -āma 2pl -ata 3pl -an +// +// Future (lṛṭ) = stem + iṣya + present personal endings +// +// The caller supplies the present-tense verbal stem (e.g. "bodha" for +// "to know/wake"). We do not derive stems automatically from roots for +// arbitrary input — only the known irregular verbs above have root→stem +// derivation. Unknown verbs are conjugated as if their input IS the stem. + +fn sa_class1_present_ending(slot: Int) -> String { + if slot == 0 { return "āmi" } + if slot == 1 { return "asi" } + if slot == 2 { return "ati" } + if slot == 3 { return "āmaḥ" } + if slot == 4 { return "atha" } + return "anti" +} + +fn sa_class1_past_ending(slot: Int) -> String { + if slot == 0 { return "am" } + if slot == 1 { return "aḥ" } + if slot == 2 { return "at" } + if slot == 3 { return "āma" } + if slot == 4 { return "ata" } + return "an" +} + +fn sa_class1_future_ending(slot: Int) -> String { + if slot == 0 { return "iṣyāmi" } + if slot == 1 { return "iṣyasi" } + if slot == 2 { return "iṣyati" } + if slot == 3 { return "iṣyāmaḥ" } + if slot == 4 { return "iṣyatha" } + return "iṣyanti" +} + +fn sa_class1_conjugate(stem: String, tense: String, slot: Int) -> String { + if str_eq(tense, "present") { + return stem + sa_class1_present_ending(slot) + } + if str_eq(tense, "past") { + return "a" + stem + sa_class1_past_ending(slot) + } + if str_eq(tense, "future") { + return stem + sa_class1_future_ending(slot) + } + return stem +} + +// ── sa_conjugate: main conjugation entry point ──────────────────────────────── +// +// verb: IAST form (e.g. "gam", "as") or English canonical ("be", "go") +// tense: "present" | "past" | "future" +// person: "first" | "second" | "third" +// number: "singular" | "plural" (or "dual" — treated as plural) +// +// Returns the inflected form in IAST. Falls back to the verb stem for any +// unknown input rather than crashing. + +fn sa_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = sa_map_canonical(verb) + let slot: Int = sa_slot(person, number) + + // ── Irregular: as (to be) ───────────────────────────────────────────────── + if str_eq(v, "as") { + if str_eq(tense, "present") { return sa_as_present(slot) } + if str_eq(tense, "past") { return sa_as_past(slot) } + if str_eq(tense, "future") { return sa_as_future(slot) } + return v + } + + // ── Irregular: bhū (to be/become) ──────────────────────────────────────── + if str_eq(v, "bhu") { + if str_eq(tense, "present") { return sa_bhu_present(slot) } + if str_eq(tense, "past") { return sa_bhu_past(slot) } + if str_eq(tense, "future") { return sa_bhu_future(slot) } + return v + } + + // ── Irregular: gam (to go) ──────────────────────────────────────────────── + if str_eq(v, "gam") { + if str_eq(tense, "present") { return sa_gam_present(slot) } + if str_eq(tense, "past") { return sa_gam_past(slot) } + if str_eq(tense, "future") { return sa_gam_future(slot) } + return v + } + + // ── Irregular: dṛś / drs (to see) ──────────────────────────────────────── + if str_eq(v, "drs") { + if str_eq(tense, "present") { return sa_drs_present(slot) } + if str_eq(tense, "past") { return sa_drs_past(slot) } + if str_eq(tense, "future") { return sa_drs_future(slot) } + return v + } + + // ── Irregular: vad (to speak/say) ──────────────────────────────────────── + if str_eq(v, "vad") { + if str_eq(tense, "present") { return sa_vad_present(slot) } + if str_eq(tense, "past") { return sa_vad_past(slot) } + if str_eq(tense, "future") { return sa_vad_future(slot) } + return v + } + + // ── Irregular: kṛ / kr (to do/make) ────────────────────────────────────── + if str_eq(v, "kr") { + if str_eq(tense, "present") { return sa_kr_present(slot) } + if str_eq(tense, "past") { return sa_kr_past(slot) } + if str_eq(tense, "future") { return sa_kr_future(slot) } + return v + } + + // ── Regular Class-1 fallback ────────────────────────────────────────────── + // Treat the supplied string as a present-tense verbal stem and apply the + // standard thematic endings. This handles any verb the caller passes in + // the form "" without a recognised root tag. + return sa_class1_conjugate(v, tense, slot) +} + +// ── a-stem masculine paradigm (deva) ────────────────────────────────────────── +// +// Stems of the deva- type are the most numerous Sanskrit noun class. +// All eight cases × singular and plural are encoded below. +// +// Singular: +// nom deva-ḥ → "devaḥ" (visarga in citation; use bare form here) +// acc deva-m → "devam" +// ins deva-na → "devena" (guṇa: a+n→ena) +// dat deva-āya → "devāya" +// abl deva-āt → "devāt" +// gen deva-sya → "devasya" +// loc deva-e → "deve" +// voc deva → "deva" (bare stem) +// +// Plural: +// nom deva-āḥ → "devāḥ" +// acc deva-ān → "devān" +// ins deva-aiḥ → "devaiḥ" +// dat deva-bhyaḥ → "devebhyaḥ" (with connecting -e-) +// abl deva-bhyaḥ → "devebhyaḥ" (dat=abl in plural for a-stems) +// gen deva-ānām → "devānām" +// loc deva-eṣu → "deveṣu" +// voc deva-āḥ → "devāḥ" + +fn sa_decline_a_stem_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "ḥ" } + if str_eq(gram_case, "accusative") { return stem + "m" } + if str_eq(gram_case, "instrumental") { return stem + "ena" } + if str_eq(gram_case, "dative") { return stem + "āya" } + if str_eq(gram_case, "ablative") { return stem + "āt" } + if str_eq(gram_case, "genitive") { return stem + "sya" } + if str_eq(gram_case, "locative") { return stem + "e" } + if str_eq(gram_case, "vocative") { return stem } + return stem +} + +fn sa_decline_a_stem_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "āḥ" } + if str_eq(gram_case, "accusative") { return stem + "ān" } + if str_eq(gram_case, "instrumental") { return stem + "aiḥ" } + if str_eq(gram_case, "dative") { return stem + "ebhyaḥ" } + if str_eq(gram_case, "ablative") { return stem + "ebhyaḥ" } + if str_eq(gram_case, "genitive") { return stem + "ānām" } + if str_eq(gram_case, "locative") { return stem + "eṣu" } + if str_eq(gram_case, "vocative") { return stem + "āḥ" } + return stem + "āḥ" +} + +// ── ā-stem feminine paradigm (devī / nārī type) ─────────────────────────────── +// +// ā-stems are the primary feminine class. Paradigm for nārī (woman): +// +// Singular: +// nom nārī acc nārīm ins nāryā +// dat nāryai abl nāryāḥ gen nāryāḥ +// loc nāryām voc nāri +// +// Plural: +// nom nāryaḥ acc nārīḥ ins nārībhiḥ +// dat nārībhyaḥ abl nārībhyaḥ gen nārīṇām +// loc nārīṣu voc nāryaḥ +// +// For input the caller passes the nominative singular form (e.g. "nārī"). +// We strip the final ī to obtain the stem for oblique formation. + +fn sa_decline_aa_stem_sg(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "ī" } + if str_eq(gram_case, "accusative") { return stem + "īm" } + if str_eq(gram_case, "instrumental") { return stem + "yā" } + if str_eq(gram_case, "dative") { return stem + "yai" } + if str_eq(gram_case, "ablative") { return stem + "yāḥ" } + if str_eq(gram_case, "genitive") { return stem + "yāḥ" } + if str_eq(gram_case, "locative") { return stem + "yām" } + if str_eq(gram_case, "vocative") { return stem + "i" } + return stem + "ī" +} + +fn sa_decline_aa_stem_pl(stem: String, gram_case: String) -> String { + if str_eq(gram_case, "nominative") { return stem + "yaḥ" } + if str_eq(gram_case, "accusative") { return stem + "īḥ" } + if str_eq(gram_case, "instrumental") { return stem + "ībhiḥ" } + if str_eq(gram_case, "dative") { return stem + "ībhyaḥ" } + if str_eq(gram_case, "ablative") { return stem + "ībhyaḥ" } + if str_eq(gram_case, "genitive") { return stem + "īṇām" } + if str_eq(gram_case, "locative") { return stem + "īṣu" } + if str_eq(gram_case, "vocative") { return stem + "yaḥ" } + return stem + "yaḥ" +} + +// ── Stem-type detection ──────────────────────────────────────────────────────── +// +// Infers the stem class from the nominative singular form supplied by the +// caller. Sanskrit stems are conventionally cited in their nom-sg form. +// +// Heuristics (sufficient for the NLG working vocabulary): +// ends in ā -> ā-stem feminine +// ends in ī -> ā-stem feminine (long ī subtype) +// ends in aḥ -> a-stem masculine (visarga ending from -as) +// ends in a -> treat as a-stem masculine (bare stem supplied) +// otherwise -> return base form as-is (unknown/consonant stem fallback) + +fn sa_stem_type(noun: String) -> String { + if sa_str_ends(noun, "ā") { return "aa" } + if sa_str_ends(noun, "ī") { return "aa" } + if sa_str_ends(noun, "aḥ") { return "a" } + if sa_str_ends(noun, "a") { return "a" } + return "unknown" +} + +// sa_extract_stem: strip the nominative-singular suffix to get the bare stem. +// +// a-stem "deva" -> "dev" (if ends in bare -a; strip final char) +// "devaḥ" -> "dev" (strip -aḥ = 2 Unicode code-points … but +// since ḥ is multi-byte we treat "aḥ" as suffix) +// ā-stem "nārī" -> "nār" (strip -ī) +// "nārā" -> "nār" (strip -ā) +// +// Because IAST diacritics are multi-byte UTF-8 the raw byte lengths do not +// equal character counts. The engine's str_len / str_slice operate on bytes. +// Rather than counting UTF-8 bytes for each diacritic here we take a simpler +// path: we look for a known suffix and drop a fixed number of characters. +// For the characters used: +// ā = 2 bytes (U+0101) +// ī = 2 bytes (U+012B) +// ḥ = 3 bytes (U+1E25) +// So "aḥ" = 1 + 3 = 4 bytes; bare "a" = 1 byte; "ā" = 2 bytes; "ī" = 2 bytes. +// +// The function uses str_ends_with for detection, then str_slice to strip. + +fn sa_extract_stem(noun: String, stype: String) -> String { + let n: Int = str_len(noun) + if str_eq(stype, "a") { + // Check whether it ends in "aḥ" (visarga form): 4 bytes to strip + if sa_str_ends(noun, "aḥ") { + return str_slice(noun, 0, n - 4) + } + // Otherwise bare -a: 1 byte + return str_slice(noun, 0, n - 1) + } + if str_eq(stype, "aa") { + // ī or ā: both 2 bytes + return str_slice(noun, 0, n - 2) + } + return noun +} + +// ── sa_decline: main declension entry point ─────────────────────────────────── +// +// noun: nominative singular IAST form (e.g. "deva", "devaḥ", "nārī") +// gram_case: "nominative" | "accusative" | "instrumental" | "dative" | +// "ablative" | "genitive" | "locative" | "vocative" +// number: "singular" | "plural" (dual → plural) +// +// Returns the inflected form. Unknown stems return the noun unchanged. + +fn sa_decline(noun: String, gram_case: String, number: String) -> String { + let stype: String = sa_stem_type(noun) + + if str_eq(stype, "a") { + let stem: String = sa_extract_stem(noun, "a") + if str_eq(number, "singular") { return sa_decline_a_stem_sg(stem, gram_case) } + return sa_decline_a_stem_pl(stem, gram_case) + } + + if str_eq(stype, "aa") { + let stem: String = sa_extract_stem(noun, "aa") + if str_eq(number, "singular") { return sa_decline_aa_stem_sg(stem, gram_case) } + return sa_decline_aa_stem_pl(stem, gram_case) + } + + // Unknown stem class: return noun unchanged rather than producing garbage + return noun +} + +// ── sa_noun_phrase: noun phrase builder ─────────────────────────────────────── +// +// Sanskrit has no articles — neither definite nor indefinite. The definite +// parameter is accepted for interface compatibility with other language modules +// but has no effect on the output. +// +// Sanskrit expresses definiteness and referential status through word order, +// demonstratives (etad / tad), and discourse context — none of which is the +// responsibility of the morphology module. +// +// noun: nominative singular IAST form +// gram_case: "nominative" | "accusative" | "instrumental" | "dative" | +// "ablative" | "genitive" | "locative" | "vocative" +// number: "singular" | "plural" +// definite: ignored + +fn sa_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return sa_decline(noun, gram_case, number) +} diff --git a/elp/src/morphology-sa.elh b/elp/src/morphology-sa.elh new file mode 100644 index 0000000..368fc69 --- /dev/null +++ b/elp/src/morphology-sa.elh @@ -0,0 +1,36 @@ +// auto-generated by elc --emit-header - do not edit +extern fn sa_str_ends(s: String, suf: String) -> Bool +extern fn sa_str_drop_last(s: String, n: Int) -> String +extern fn sa_slot(person: String, number: String) -> Int +extern fn sa_map_canonical(verb: String) -> String +extern fn sa_as_present(slot: Int) -> String +extern fn sa_as_past(slot: Int) -> String +extern fn sa_as_future(slot: Int) -> String +extern fn sa_bhu_present(slot: Int) -> String +extern fn sa_bhu_past(slot: Int) -> String +extern fn sa_bhu_future(slot: Int) -> String +extern fn sa_gam_present(slot: Int) -> String +extern fn sa_gam_past(slot: Int) -> String +extern fn sa_gam_future(slot: Int) -> String +extern fn sa_drs_present(slot: Int) -> String +extern fn sa_drs_past(slot: Int) -> String +extern fn sa_drs_future(slot: Int) -> String +extern fn sa_vad_present(slot: Int) -> String +extern fn sa_vad_past(slot: Int) -> String +extern fn sa_vad_future(slot: Int) -> String +extern fn sa_kr_present(slot: Int) -> String +extern fn sa_kr_past(slot: Int) -> String +extern fn sa_kr_future(slot: Int) -> String +extern fn sa_class1_present_ending(slot: Int) -> String +extern fn sa_class1_past_ending(slot: Int) -> String +extern fn sa_class1_future_ending(slot: Int) -> String +extern fn sa_class1_conjugate(stem: String, tense: String, slot: Int) -> String +extern fn sa_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn sa_decline_a_stem_sg(stem: String, gram_case: String) -> String +extern fn sa_decline_a_stem_pl(stem: String, gram_case: String) -> String +extern fn sa_decline_aa_stem_sg(stem: String, gram_case: String) -> String +extern fn sa_decline_aa_stem_pl(stem: String, gram_case: String) -> String +extern fn sa_stem_type(noun: String) -> String +extern fn sa_extract_stem(noun: String, stype: String) -> String +extern fn sa_decline(noun: String, gram_case: String, number: String) -> String +extern fn sa_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-sga.el b/elp/src/morphology-sga.el new file mode 100644 index 0000000..8f92363 --- /dev/null +++ b/elp/src/morphology-sga.el @@ -0,0 +1,454 @@ +// morphology-sga.el - Old Irish morphology for the NLG engine. +// +// Implements Old Irish verb conjugation, noun declension, and initial consonant +// lenition for the ca. 600-900 CE period. Designed as a companion to +// morphology.el and called by the engine when the language profile code is "sga". +// +// Language profile: code=sga, name=Old Irish, morph_type=fusional, word_order=VSO, +// question_strategy=particle, script=latin, family=celtic. +// +// Verb conjugation covered: +// Tenses: present, past +// Persons: first/second/third x singular/plural (slots 0-5) +// Forms: absolute (verb-initial position only; conjunct not implemented) +// Irregulars: bith (to be, substantive), téit (to go), gaibid (to take/hold), +// ad·cí (to see), as·beir (to say) +// Copula: "is" — invariant in 3sg; used as the default copular form +// Canonical map: "be" -> copula "is" (3sg) / "bith" (substantive be) +// +// Noun declension covered: +// o-stem masculine (like "fer" — man) +// ā-stem feminine (like "ben" — woman) +// Cases: nominative, vocative, accusative, genitive, dative +// Numbers: singular, plural +// Definite article: simplified "in" prefix (article + noun) +// +// Lenition (initial mutation): +// b->bh, c->ch, d->dh, f->fh, g->gh, m->mh, p->ph, s->sh, t->th +// Other initial consonants and vowels are returned unchanged. +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn sga_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn sga_first(s: String) -> String { + if str_len(s) == 0 { return "" } + return str_slice(s, 0, 1) +} + +fn sga_rest(s: String) -> String { + let n: Int = str_len(s) + if n <= 1 { return "" } + return str_slice(s, 1, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based paradigm slot. +// 0 = 1st singular (mé) +// 1 = 2nd singular (tú) +// 2 = 3rd singular (é/sí/ed) +// 3 = 1st plural (sní) +// 4 = 2nd plural (sí) +// 5 = 3rd plural (é/sí/ed) + +fn sga_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Lenition ─────────────────────────────────────────────────────────────────── +// +// Initial consonant lenition (séimhiú) — the most common mutation in Old Irish. +// Applies after certain prepositions, the genitive of feminine nouns, and many +// other grammatical environments. Simplified: only the first consonant is mutated. +// +// Lenition table (b c d f g m p s t): +// b -> bh c -> ch d -> dh f -> fh g -> gh +// m -> mh p -> ph s -> sh t -> th +// Vowels and other consonants: unchanged. + +fn sga_lenite(word: String) -> String { + let init: String = sga_first(word) + let tail: String = sga_rest(word) + if str_eq(init, "b") { return "bh" + tail } + if str_eq(init, "c") { return "ch" + tail } + if str_eq(init, "d") { return "dh" + tail } + if str_eq(init, "f") { return "fh" + tail } + if str_eq(init, "g") { return "gh" + tail } + if str_eq(init, "m") { return "mh" + tail } + if str_eq(init, "p") { return "ph" + tail } + if str_eq(init, "s") { return "sh" + tail } + if str_eq(init, "t") { return "th" + tail } + // Vowels and unlenitable consonants (l, n, r, …): unchanged + return word +} + +// ── Copula paradigm ──────────────────────────────────────────────────────────── +// +// The Old Irish copula "is" is largely invariant in the present tense in its +// most common (3rd singular assertive) use. The full paradigm has variants +// (am, at, is in sg; ammi, adib, it in pl) but for NLG purposes we return "is" +// for 3sg and the simplified forms elsewhere. + +fn sga_copula_present(slot: Int) -> String { + if slot == 0 { return "am" } + if slot == 1 { return "at" } + if slot == 2 { return "is" } + if slot == 3 { return "am" } + if slot == 4 { return "adib" } + return "it" +} + +// ── Substantive "bith" (to be) ───────────────────────────────────────────────── +// +// "Bith" is the substantive/existential verb for being. It differs from the +// copula "is" in that it can carry tense inflection and express existence rather +// than predication. +// +// Present: am, at, is, am, adib, at +// Past: ba, ba, ba, bámmar, bádaid, batar + +fn sga_bith_present(slot: Int) -> String { + if slot == 0 { return "am" } + if slot == 1 { return "at" } + if slot == 2 { return "is" } + if slot == 3 { return "am" } + if slot == 4 { return "adib" } + return "at" +} + +fn sga_bith_past(slot: Int) -> String { + if slot == 0 { return "ba" } + if slot == 1 { return "ba" } + if slot == 2 { return "ba" } + if slot == 3 { return "bámmar" } + if slot == 4 { return "bádaid" } + return "batar" +} + +// ── Irregular verb tables ────────────────────────────────────────────────────── + +// téit (to go) — strong verb, highly suppletive in the past +// Present: tíagu, téit, téit, tíagmai, tíagid, tíagat +// Past: lod, lod, luid, lodmar, lodaid, lotar + +fn sga_teit_present(slot: Int) -> String { + if slot == 0 { return "tíagu" } + if slot == 1 { return "téit" } + if slot == 2 { return "téit" } + if slot == 3 { return "tíagmai" } + if slot == 4 { return "tíagid" } + return "tíagat" +} + +fn sga_teit_past(slot: Int) -> String { + if slot == 0 { return "lod" } + if slot == 1 { return "lod" } + if slot == 2 { return "luid" } + if slot == 3 { return "lodmar" } + if slot == 4 { return "lodaid" } + return "lotar" +} + +// gaibid (to take/hold) — AI class strong verb +// Present: gaibim, gaibi, gaibid, gaibmi, gaibthe, gaibid + +fn sga_gaibid_present(slot: Int) -> String { + if slot == 0 { return "gaibim" } + if slot == 1 { return "gaibi" } + if slot == 2 { return "gaibid" } + if slot == 3 { return "gaibmi" } + if slot == 4 { return "gaibthe" } + return "gaibid" +} + +// ad·cí (to see) — compound verb with deuterotonic stress +// Present: ad·ciu, ad·cí, ad·cí, ad·cími, ad·cíthe, ad·ciat + +fn sga_adci_present(slot: Int) -> String { + if slot == 0 { return "ad·ciu" } + if slot == 1 { return "ad·cí" } + if slot == 2 { return "ad·cí" } + if slot == 3 { return "ad·cími" } + if slot == 4 { return "ad·cíthe" } + return "ad·ciat" +} + +// as·beir (to say) — compound verb +// Present: as·biur, as·beir, as·beir, as·beram, as·berid, as·berat + +fn sga_asbeir_present(slot: Int) -> String { + if slot == 0 { return "as·biur" } + if slot == 1 { return "as·beir" } + if slot == 2 { return "as·beir" } + if slot == 3 { return "as·beram" } + if slot == 4 { return "as·berid" } + return "as·berat" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Maps English semantic labels to Old Irish infinitives / citation forms. +// Old Irish verbs are cited by 3sg present absolute (the most stable form). + +fn sga_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "is" } + if str_eq(verb, "go") { return "téit" } + if str_eq(verb, "take") { return "gaibid" } + if str_eq(verb, "hold") { return "gaibid" } + if str_eq(verb, "see") { return "ad·cí" } + if str_eq(verb, "say") { return "as·beir" } + return verb +} + +// ── Regular AI-class verb conjugation ───────────────────────────────────────── +// +// The AI (first) conjugation is the most productive class in Old Irish. +// Stems ending in a broad consonant take broad endings; slender take slender +// endings. For simplicity this module uses a single generic set. +// +// Present absolute (verb-initial position): +// Sg: 1st -aim, 2nd -ai, 3rd -aid +// Pl: 1st -am, 2nd -aid, 3rd -at +// +// There is no regular past tense for AI verbs in the simple sense — the engine +// falls back to the citation form when past is requested for unknown verbs. + +fn sga_ai_present(stem: String, slot: Int) -> String { + if slot == 0 { return stem + "aim" } + if slot == 1 { return stem + "ai" } + if slot == 2 { return stem + "aid" } + if slot == 3 { return stem + "am" } + if slot == 4 { return stem + "aid" } + return stem + "at" +} + +// ── sga_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Old Irish citation form or English canonical label +// tense: "present" | "past" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected absolute form. Unknown tenses fall back to the citation +// form. Conjunct forms (after particles) are not implemented; only absolute +// forms are produced. + +fn sga_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = sga_map_canonical(verb) + let slot: Int = sga_slot(person, number) + + // ── Copula "is" ─────────────────────────────────────────────────────────── + if str_eq(v, "is") { + if str_eq(tense, "present") { return sga_copula_present(slot) } + // Past copula: "ba" is the standard past (invariant simplification) + return "ba" + } + + // ── Substantive bith ────────────────────────────────────────────────────── + if str_eq(v, "bith") { + if str_eq(tense, "present") { return sga_bith_present(slot) } + if str_eq(tense, "past") { return sga_bith_past(slot) } + return v + } + + // ── téit (to go) ────────────────────────────────────────────────────────── + if str_eq(v, "téit") { + if str_eq(tense, "present") { return sga_teit_present(slot) } + if str_eq(tense, "past") { return sga_teit_past(slot) } + return v + } + + // ── gaibid (to take/hold) ───────────────────────────────────────────────── + if str_eq(v, "gaibid") { + if str_eq(tense, "present") { return sga_gaibid_present(slot) } + // Past gaibid: gab- preterite (simplified to slot 2 form for all) + return "gab" + } + + // ── ad·cí (to see) ──────────────────────────────────────────────────────── + if str_eq(v, "ad·cí") { + if str_eq(tense, "present") { return sga_adci_present(slot) } + // Past: ro·acc forms exist but are complex; return citation form + return v + } + + // ── as·beir (to say) ────────────────────────────────────────────────────── + if str_eq(v, "as·beir") { + if str_eq(tense, "present") { return sga_asbeir_present(slot) } + return v + } + + // ── Regular AI-class verb ───────────────────────────────────────────────── + // + // Citation form for AI verbs ends in -id (3sg pres abs). Strip -id to get + // the stem, then apply AI endings. If the verb doesn't end in -id, use the + // whole form as the stem (best-effort). + if str_ends_with(v, "id") { + let stem: String = sga_drop(v, 2) + if str_eq(tense, "present") { return sga_ai_present(stem, slot) } + // No regular past implemented: return citation form + return v + } + + // Unknown verb: return citation form unchanged + return v +} + +// ── o-stem masculine declension ("fer" — man) ───────────────────────────────── +// +// The o-stem is the most common masculine declension class. +// +// Singular: nom fer voc a fhir acc fer gen fir dat fiur +// Plural: nom fir voc a firu acc firu gen fer dat feraib + +fn sga_decline_ostem(noun: String, gram_case: String, number: String) -> String { + if str_eq(noun, "fer") { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "fer" } + if str_eq(gram_case, "vocative") { return "fhir" } + if str_eq(gram_case, "accusative") { return "fer" } + if str_eq(gram_case, "genitive") { return "fir" } + if str_eq(gram_case, "dative") { return "fiur" } + return "fer" + } + if str_eq(gram_case, "nominative") { return "fir" } + if str_eq(gram_case, "vocative") { return "firu" } + if str_eq(gram_case, "accusative") { return "firu" } + if str_eq(gram_case, "genitive") { return "fer" } + if str_eq(gram_case, "dative") { return "feraib" } + return "fir" + } + + // Generic o-stem masculine: append case endings to noun base. + // Nom/Acc sg take no ending; Gen sg syncopates (approximated by +a removed); + // the engine uses safe suffix-only approximations here. + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "vocative") { return sga_lenite(noun) } + if str_eq(gram_case, "accusative") { return noun } + if str_eq(gram_case, "genitive") { return noun + "a" } + if str_eq(gram_case, "dative") { return noun + "u" } + return noun + } + if str_eq(gram_case, "nominative") { return noun + "i" } + if str_eq(gram_case, "vocative") { return noun + "u" } + if str_eq(gram_case, "accusative") { return noun + "u" } + if str_eq(gram_case, "genitive") { return noun } + if str_eq(gram_case, "dative") { return noun + "aib" } + return noun + "i" +} + +// ── ā-stem feminine declension ("ben" — woman) ──────────────────────────────── +// +// The ā-stem is the most common feminine declension class. It shows heavy +// syncope and internal change (ben -> mná in oblique forms). +// +// Singular: nom ben voc a ben acc bein gen mná dat mnáib +// Plural: nom mná voc a mná acc mná gen ban dat mnáib + +fn sga_decline_astem(noun: String, gram_case: String, number: String) -> String { + if str_eq(noun, "ben") { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return "ben" } + if str_eq(gram_case, "vocative") { return "ben" } + if str_eq(gram_case, "accusative") { return "bein" } + if str_eq(gram_case, "genitive") { return "mná" } + if str_eq(gram_case, "dative") { return "mnáib" } + return "ben" + } + if str_eq(gram_case, "nominative") { return "mná" } + if str_eq(gram_case, "vocative") { return "mná" } + if str_eq(gram_case, "accusative") { return "mná" } + if str_eq(gram_case, "genitive") { return "ban" } + if str_eq(gram_case, "dative") { return "mnáib" } + return "mná" + } + + // Generic ā-stem feminine: suffix-based approximation. + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun } + if str_eq(gram_case, "vocative") { return noun } + if str_eq(gram_case, "accusative") { return noun + "i" } + if str_eq(gram_case, "genitive") { return noun + "e" } + if str_eq(gram_case, "dative") { return noun + "aib" } + return noun + } + if str_eq(gram_case, "nominative") { return noun + "a" } + if str_eq(gram_case, "vocative") { return noun + "a" } + if str_eq(gram_case, "accusative") { return noun + "a" } + if str_eq(gram_case, "genitive") { return noun } + if str_eq(gram_case, "dative") { return noun + "aib" } + return noun + "a" +} + +// ── Gender detection heuristic ───────────────────────────────────────────────── +// +// Ideally gender is supplied by the lexicon. Known exemplars are routed +// explicitly; everything else defaults to o-stem masculine. + +fn sga_detect_gender(noun: String) -> String { + if str_eq(noun, "ben") { return "feminine" } + if str_eq(noun, "mná") { return "feminine" } + // Default: masculine o-stem + return "masculine" +} + +// ── sga_decline: main declension entry point ────────────────────────────────── +// +// noun: nominative singular Old Irish noun (e.g. "fer", "ben") +// gram_case: "nominative" | "vocative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to nominative singular on unknown input. + +fn sga_decline(noun: String, gram_case: String, number: String) -> String { + let gender: String = sga_detect_gender(noun) + + if str_eq(gender, "masculine") { return sga_decline_ostem(noun, gram_case, number) } + if str_eq(gender, "feminine") { return sga_decline_astem(noun, gram_case, number) } + + // Fallback + return noun +} + +// ── sga_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Old Irish has a definite article that agrees in case, number, and gender. +// The article has many allomorphs (int, in, ind, na, …). For NLG purposes this +// module uses the simplified invariant form "in" for all definite contexts, +// placed before the declined noun. +// +// Indefinite nouns carry no article (like Latin). +// +// noun: nominative singular Old Irish noun +// gram_case: "nominative" | "vocative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" | "false" +// +// Returns the complete noun phrase string. + +fn sga_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + let base: String = sga_decline(noun, gram_case, number) + + if !str_eq(definite, "true") { return base } + + // Definite: prepend simplified article "in" + return "in " + base +} diff --git a/elp/src/morphology-sga.elh b/elp/src/morphology-sga.elh new file mode 100644 index 0000000..8bc0529 --- /dev/null +++ b/elp/src/morphology-sga.elh @@ -0,0 +1,22 @@ +// auto-generated by elc --emit-header - do not edit +extern fn sga_drop(s: String, n: Int) -> String +extern fn sga_first(s: String) -> String +extern fn sga_rest(s: String) -> String +extern fn sga_slot(person: String, number: String) -> Int +extern fn sga_lenite(word: String) -> String +extern fn sga_copula_present(slot: Int) -> String +extern fn sga_bith_present(slot: Int) -> String +extern fn sga_bith_past(slot: Int) -> String +extern fn sga_teit_present(slot: Int) -> String +extern fn sga_teit_past(slot: Int) -> String +extern fn sga_gaibid_present(slot: Int) -> String +extern fn sga_adci_present(slot: Int) -> String +extern fn sga_asbeir_present(slot: Int) -> String +extern fn sga_map_canonical(verb: String) -> String +extern fn sga_ai_present(stem: String, slot: Int) -> String +extern fn sga_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn sga_decline_ostem(noun: String, gram_case: String, number: String) -> String +extern fn sga_decline_astem(noun: String, gram_case: String, number: String) -> String +extern fn sga_detect_gender(noun: String) -> String +extern fn sga_decline(noun: String, gram_case: String, number: String) -> String +extern fn sga_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-sux.el b/elp/src/morphology-sux.el new file mode 100644 index 0000000..92aab5e --- /dev/null +++ b/elp/src/morphology-sux.el @@ -0,0 +1,639 @@ +// morphology-sux.el — Sumerian morphology for the NLG engine. +// +// Implements Sumerian noun declension, verb conjugation, and sentence +// construction. Designed as a companion to morphology.el and called by +// the engine when the language profile code is "sux". +// +// Language profile: code=sux, name=Sumerian, morph_type=agglutinative, +// word_order=SOV, question_strategy=particle, script=latin_transliteration, +// family=isolate (no known relatives). +// +// Typological overview: +// Sumerian is the world's oldest attested written language, first recorded +// in Uruk ca. 3500 BCE; active spoken use through ca. 2000 BCE; learned +// scribal language to ca. 100 CE. It is a language isolate — unrelated to +// any other known language family. +// +// ERGATIVITY: Sumerian is ergative-absolutive. The subject of a transitive +// verb (the AGENT) takes the ergative case (-e). The subject of an +// intransitive verb and the direct object of a transitive verb share the +// same form: the ABSOLUTIVE (unmarked, no suffix). This is structurally +// the opposite of nominative-accusative languages (like Latin or Greek) +// where the subject of both transitive and intransitive verbs is marked the +// same way. Example: lugal-e é mu-un-dù = "the king built the house", +// where lugal-e = king-ERG (agent of transitive dù "build") and é = house-ABS +// (patient, unmarked). +// +// NOUN CLASSES: animate (humans, gods) and inanimate (everything else). +// Animate plurals use -ene; inanimate plurals use -a (collective). +// +// VERB CHAIN: Sumerian finite verbs are polysynthetic chains encoding: +// (modal)(negation)(dimensional prefixes)(stem)(voice/causative)(suffixes) +// The dimensional prefix chain includes pronominal agreement markers for +// agent and patient. This module implements a simplified but linguistically +// honest subset: perfective mu-/imperfective i- prefix + personal suffixes. +// +// KEY VERBS: Several high-frequency verbs have frozen citation forms. +// The copula is often omitted in equational sentences; when present it is +// usually the clitic -am₃ or the verb me "to be". +// +// TRANSLITERATION: Standard Assyriological transliteration uses subscript +// numbers for sign disambiguation (dug₄, tum₂, am₃) written here with the +// corresponding Unicode characters (dug4, tum2, am3 using ASCII where the +// subscript forms are unavailable in string literals, or as ₄ etc. where +// needed). Special characters: š (sh), ŋ (velar nasal), ĝ (= ŋ alternate), +// ḫ (voiceless velar/uvular fricative). +// +// Cases implemented: +// absolutive (∅), ergative (-e), genitive (-ak), dative (-ra), +// locative (-a), ablative (-ta), comitative (-da), equative (-gin) +// +// Depends on: morphology.el (str_ends_with, str_len, str_slice, str_eq, +// native_list_empty, native_list_append, native_list_get, native_list_len) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn sux_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn sux_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn sux_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn sux_str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based index used in paradigm tables. +// 0 = 1st singular (ĝe₂₆ / ĝa₂ "I") +// 1 = 2nd singular (za-e "you") +// 2 = 3rd singular (animate: a-ne "he/she"; inanimate implied) +// 3 = 1st plural (me "we") +// 4 = 2nd plural (me-zen "you (pl)") +// 5 = 3rd plural (animate: a-ne-ne "they") +// +// Dual is not grammaticalised distinctly from plural in Sumerian verbal +// morphology; dual inputs fall through to plural. + +fn sux_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third person + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Ergative personal suffixes ───────────────────────────────────────────────── +// +// These encode the AGENT of a transitive verb when it appears as a standalone +// noun suffix (postposition on the nominal element in the ergative chain). +// In practice the -e ergative postposition on nouns is more common; these +// pronominal suffixes appear in the verbal chain. Provided here for the +// pronominal agent agreement slot. +// +// Ergative suffixes on nominal phrases (the postposition form, not verbal): +// 1sg: -(e)n 2sg: -(e)n 3sg animate: -e +// 1pl: -enden 2pl: -enzen 3pl animate: -eš + +fn sux_ergative_suffix(person: String, number: String) -> String { + if str_eq(person, "first") { + if str_eq(number, "singular") { return "-en" } + return "-enden" + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return "-en" } + return "-enzen" + } + // third + if str_eq(number, "singular") { return "-e" } + return "-eš" +} + +// ── Absolutive personal suffixes ────────────────────────────────────────────── +// +// The absolutive is the UNMARKED case in Sumerian ergative grammar. It is +// used for: +// (a) the single argument of an intransitive verb (= subject) +// (b) the direct object of a transitive verb (= patient) +// +// There is no overt suffix on the noun in the absolutive. However, the VERB +// agrees with the absolutive argument via a suffix in the verbal chain. +// These are the verbal agreement suffixes for the absolutive participant: +// 1sg: -en 2sg: -en 3sg: ∅ (null) 1pl: -enden 2pl: -enzen 3pl: ∅ + +fn sux_absolutive_suffix(person: String, number: String) -> String { + if str_eq(person, "first") { + if str_eq(number, "singular") { return "-en" } + return "-enden" + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return "-en" } + return "-enzen" + } + // third person: null agreement suffix for 3sg and 3pl + return "" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// The semantic layer may pass English canonical labels. Map these to the +// Sumerian citation stem (the base form as used in transliteration). + +fn sux_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "me" } + if str_eq(verb, "say") { return "dug4" } + if str_eq(verb, "go") { return "du" } + if str_eq(verb, "see") { return "igi-bar" } + if str_eq(verb, "do") { return "ak" } + if str_eq(verb, "make") { return "ak" } + if str_eq(verb, "bring") { return "tum2" } + if str_eq(verb, "build") { return "dù" } + if str_eq(verb, "give") { return "šum2" } + if str_eq(verb, "know") { return "zu" } + if str_eq(verb, "hear") { return "ĝeštug2 ĝar" } + if str_eq(verb, "love") { return "ki-aĝ2" } + if str_eq(verb, "sit") { return "tuš" } + if str_eq(verb, "stand") { return "gub" } + if str_eq(verb, "come") { return "ĝen" } + if str_eq(verb, "eat") { return "gu7" } + if str_eq(verb, "drink") { return "naĝ" } + if str_eq(verb, "write") { return "sar" } + return verb +} + +// ── Verbal personal suffixes (simplified finite chain) ──────────────────────── +// +// In the simplified model the personal suffix encodes the absolutive argument +// (the subject of intransitive verbs, or the patient of transitive verbs). +// Full Sumerian verbal morphology is polysynthetic and beyond NLG scope; this +// models the most productive layer: stem + absolutive agreement. +// +// Suffix paradigm: +// slot 0 (1sg): -en slot 3 (1pl): -enden +// slot 1 (2sg): -en slot 4 (2pl): -enzen +// slot 2 (3sg): ∅ slot 5 (3pl): -eš + +fn sux_personal_suffix(slot: Int) -> String { + if slot == 0 { return "en" } + if slot == 1 { return "en" } + if slot == 2 { return "" } + if slot == 3 { return "enden" } + if slot == 4 { return "enzen" } + return "eš" +} + +// ── Special: me (to be) ─────────────────────────────────────────────────────── +// +// The Sumerian copula "me" (to be) has several uses: +// - As a full verb with personal endings in present: me-en (I am), me-en +// (you are), ∅ / -am3 (he/she/it is — copula often omitted or realised as +// the clitic -am3 attached to the predicate), me-en-dè (we are) +// - As a predicative clitic: noun/adj + -am3 +// - In past: ha-ma-an-me (he/she was — rare in NLG contexts) +// +// For NLG purposes: +// present: use me + personal suffix; 3sg = omit entirely or "-am3" clitic +// past: ba-me + personal suffix (archaic; approximate) + +fn sux_me_present(slot: Int) -> String { + if slot == 0 { return "me-en" } + if slot == 1 { return "me-en" } + if slot == 2 { return "" } + if slot == 3 { return "me-en-dè" } + if slot == 4 { return "me-en-zè-en" } + return "me-eš" +} + +fn sux_me_past(slot: Int) -> String { + if slot == 0 { return "ba-me-en" } + if slot == 1 { return "ba-me-en" } + if slot == 2 { return "ba-me" } + if slot == 3 { return "ba-me-en-dè" } + if slot == 4 { return "ba-me-en-zè-en" } + return "ba-me-eš" +} + +// ── Special: dug4/e (to say) ────────────────────────────────────────────────── +// +// "dug4" is the perfective stem; "e" is the imperfective/present stem. +// Common finite forms: +// present (imperfective): e + personal suffix; 3sg = e +// past (perfective): mu-un-dug4 (3sg agent; simplified) + +fn sux_dug4_present(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "e" } + return "e-" + suf +} + +fn sux_dug4_past(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "mu-un-dug4" } + return "mu-un-dug4-" + suf +} + +// ── Special: du (to go) ─────────────────────────────────────────────────────── +// +// Intransitive motion verb. The agent is in the absolutive. +// present (imperfective): i-du + personal suffix +// past (perfective): mu-un-du + personal suffix (mu- on intransitive +// when the agent is 3rd person; convention varies) + +fn sux_du_present(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "i-du" } + return "i-du-" + suf +} + +fn sux_du_past(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "mu-un-du" } + return "mu-un-du-" + suf +} + +// ── Special: igi bar (to see — "to open the eye") ──────────────────────────── +// +// A compound verb: igi (eye) + bar (to open/spread). The noun igi is the +// incorporated object; bar is the finite verb element. +// present: igi i-bar + personal suffix +// past: igi mu-un-bar + personal suffix + +fn sux_igibar_present(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "igi i-bar" } + return "igi i-bar-" + suf +} + +fn sux_igibar_past(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "igi mu-un-bar" } + return "igi mu-un-bar-" + suf +} + +// ── Special: ak (to do / make) ─────────────────────────────────────────────── +// +// High-frequency transitive verb; forms the basis of many compound verbs. +// present: i-ak + personal suffix +// past: mu-un-ak + personal suffix + +fn sux_ak_present(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "i-ak" } + return "i-ak-" + suf +} + +fn sux_ak_past(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "mu-un-ak" } + return "mu-un-ak-" + suf +} + +// ── Special: tum2/de6 (to bring) ───────────────────────────────────────────── +// +// Motion verb with incorporated directionality. +// present: i-tum2 + personal suffix +// past: mu-un-tum2 + personal suffix + +fn sux_tum2_present(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "i-tum2" } + return "i-tum2-" + suf +} + +fn sux_tum2_past(slot: Int) -> String { + let suf: String = sux_personal_suffix(slot) + if str_eq(suf, "") { return "mu-un-tum2" } + return "mu-un-tum2-" + suf +} + +// ── sux_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Sumerian verb stem or English canonical label +// tense: "present" | "past" +// (Sumerian distinguishes imperfective/perfective aspect rather than +// tense proper; "present" maps to imperfective i-, "past" to +// perfective mu-) +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected finite verb form in standard transliteration. +// Falls back to mu- + stem for unknown verbs (productive perfective prefix). +// +// Note on ergativity in the verb chain: the prefix mu- encodes that the +// agent (ergative subject) is 3rd person in the prototypical case. Full +// pronominal infixing in the dimensional prefix chain is not modelled here; +// the returned forms represent the 3rd-person-agent baseline with personal +// suffixes for the absolutive participant. + +fn sux_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = sux_map_canonical(verb) + let slot: Int = sux_slot(person, number) + + // ── "me" — copula / to be ──────────────────────────────────────────────── + if str_eq(v, "me") { + if str_eq(tense, "present") { return sux_me_present(slot) } + if str_eq(tense, "past") { return sux_me_past(slot) } + return sux_me_present(slot) + } + + // ── "dug4" — to say ────────────────────────────────────────────────────── + if str_eq(v, "dug4") { + if str_eq(tense, "present") { return sux_dug4_present(slot) } + if str_eq(tense, "past") { return sux_dug4_past(slot) } + return sux_dug4_past(slot) + } + + // ── "du" — to go ───────────────────────────────────────────────────────── + if str_eq(v, "du") { + if str_eq(tense, "present") { return sux_du_present(slot) } + if str_eq(tense, "past") { return sux_du_past(slot) } + return sux_du_past(slot) + } + + // ── "igi-bar" — to see ─────────────────────────────────────────────────── + if str_eq(v, "igi-bar") { + if str_eq(tense, "present") { return sux_igibar_present(slot) } + if str_eq(tense, "past") { return sux_igibar_past(slot) } + return sux_igibar_past(slot) + } + + // ── "ak" — to do / make ────────────────────────────────────────────────── + if str_eq(v, "ak") { + if str_eq(tense, "present") { return sux_ak_present(slot) } + if str_eq(tense, "past") { return sux_ak_past(slot) } + return sux_ak_past(slot) + } + + // ── "tum2" — to bring ──────────────────────────────────────────────────── + if str_eq(v, "tum2") { + if str_eq(tense, "present") { return sux_tum2_present(slot) } + if str_eq(tense, "past") { return sux_tum2_past(slot) } + return sux_tum2_past(slot) + } + + // ── Regular fallback: prefix + stem + personal suffix ──────────────────── + // + // For verbs not listed above, apply the productive rule: + // imperfective (present): i- + stem + suffix + // perfective (past): mu- + stem + suffix + // + // The "un" infix after mu- is a 3rd-person animate patient marker that + // appears with transitive verbs; we omit it in the generic fallback as we + // cannot know transitivity without a lexicon. + + let suf: String = sux_personal_suffix(slot) + if str_eq(tense, "present") { + if str_eq(suf, "") { return "i-" + v } + return "i-" + v + "-" + suf + } + // past / perfective + if str_eq(suf, "") { return "mu-" + v } + return "mu-" + v + "-" + suf +} + +// ── Animacy detection ───────────────────────────────────────────────────────── +// +// Sumerian grammatical animacy (ANIMATE vs INANIMATE) is a binary noun class +// distinction affecting plural formation and pronominal reference. Animate +// nouns denote humans and deities; everything else is inanimate. +// +// Heuristic: check for known divine/human markers in the noun: +// - dingir/diĝir prefix (divine determinative, written with sign AN: 𒀭) +// - Ends in -ra, -en (lordly epithets) +// - Known human occupational terms as exact matches +// - Otherwise: inanimate +// +// This is necessarily approximate without a full lexicon. The function errs +// toward inanimate (safer default for open-class nouns). + +fn sux_is_animate(noun: String) -> Bool { + // Divine determinative in transliteration + if sux_str_ends(noun, "diĝir") { return true } + if sux_str_ends(noun, "dingir") { return true } + // Common human roles + if str_eq(noun, "lugal") { return true } // king + if str_eq(noun, "nin") { return true } // lady/queen + if str_eq(noun, "en") { return true } // lord + if str_eq(noun, "ensi2") { return true } // ruler/governor + if str_eq(noun, "dumu") { return true } // son/child + if str_eq(noun, "dam") { return true } // spouse/wife + if str_eq(noun, "ama") { return true } // mother + if str_eq(noun, "ad") { return true } // father + if str_eq(noun, "a2-dam") { return true } // wife (alternate) + if str_eq(noun, "lu2") { return true } // man/person + if str_eq(noun, "munus") { return true } // woman + if str_eq(noun, "ur") { return true } // man (archaic) + if str_eq(noun, "saĝ") { return true } // head → person (as noun) + if str_eq(noun, "gudu4") { return true } // priest + if str_eq(noun, "sanga") { return true } // temple administrator + if str_eq(noun, "ugula") { return true } // overseer + if str_eq(noun, "dub-sar") { return true } // scribe + if str_eq(noun, "nar") { return true } // singer/musician + if str_eq(noun, "sukkal") { return true } // minister/vizier + // Check for divine name prefix d (determinative before proper names) + if sux_str_ends(noun, "d-") { return true } + // Otherwise: inanimate + return false +} + +// ── Case suffixes ───────────────────────────────────────────────────────────── +// +// Sumerian is ergative-absolutive. The cases below are postpositional clitics +// attached to the last element of the noun phrase. +// +// absolutive: ∅ (unmarked — subject of intransitive, object of transitive) +// ergative: -e (subject of transitive verb — the AGENT) +// genitive: -ak (possession, association; often written -a(k) before consonant) +// dative: -ra (indirect object, beneficiary, "for/to") +// locative: -a (location "in/at/on"; -e before certain consonants) +// ablative: -ta (source, separation "from") +// comitative: -da (accompaniment "with") +// equative: -gin (comparison "like/as") +// +// Note: in connected speech the genitive -ak loses its final -k before a +// consonant; this simplification uses the full form throughout. + +fn sux_case_suffix(gram_case: String) -> String { + if str_eq(gram_case, "absolutive") { return "" } + if str_eq(gram_case, "ergative") { return "-e" } + if str_eq(gram_case, "genitive") { return "-ak" } + if str_eq(gram_case, "dative") { return "-ra" } + if str_eq(gram_case, "locative") { return "-a" } + if str_eq(gram_case, "ablative") { return "-ta" } + if str_eq(gram_case, "comitative") { return "-da" } + if str_eq(gram_case, "equative") { return "-gin" } + // Terminative (-še3: "to/toward") — also attested + if str_eq(gram_case, "terminative") { return "-še" } + return "" +} + +// ── sux_decline: noun declension ───────────────────────────────────────────── +// +// noun: base form of the noun (absolutive singular = citation form) +// gram_case: one of the cases listed above +// number: "singular" | "plural" +// +// Plural formation: +// Animate nouns: base + -ene (e.g. lugal-ene "kings") +// Inanimate nouns: base + -a (collective/inanimate plural; less common, +// many inanimate nouns are not pluralised at all in Sumerian) +// +// The case suffix attaches AFTER the plural marker. +// +// Absolutive singular = the bare stem (no suffix added). + +fn sux_decline(noun: String, gram_case: String, number: String) -> String { + let csuf: String = sux_case_suffix(gram_case) + if str_eq(number, "singular") { + // Absolutive singular: bare stem with no suffix at all + if str_eq(gram_case, "absolutive") { return noun } + // Strip the leading dash from the suffix for direct concatenation + let suf_len: Int = str_len(csuf) + let bare_suf: String = str_slice(csuf, 1, suf_len) + return noun + bare_suf + } + // Plural + let animate: Bool = sux_is_animate(noun) + let plural_stem: String = "" + if animate { + let plural_stem = noun + "ene" + } + if !animate { + let plural_stem = noun + "a" + } + if str_eq(gram_case, "absolutive") { return plural_stem } + let suf_len2: Int = str_len(csuf) + let bare_suf2: String = str_slice(csuf, 1, suf_len2) + return plural_stem + bare_suf2 +} + +// ── sux_noun_phrase: noun phrase builder ───────────────────────────────────── +// +// Sumerian has NO articles (definite or indefinite). Determinateness is +// expressed through context, position, or the genitive construction. +// The "definite" parameter is accepted for interface compatibility but is +// ignored — the returned form is always the declined noun alone. +// +// noun: base (absolutive) form +// gram_case: grammatical case string +// number: "singular" | "plural" +// definite: ignored (Sumerian has no articles) + +fn sux_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return sux_decline(noun, gram_case, number) +} + +// ── sux_verb_chain: build the finite verbal complex ─────────────────────────── +// +// Constructs the full Sumerian SOV clause for a transitive or intransitive +// predication. Sumerian word order is strict SOV. +// +// For TRANSITIVE sentences (ergative construction): +// agent (in ergative case: noun + -e) + patient (absolutive) + verb +// Example: lugal-e é mu-un-dù +// king-ERG house-ABS built +// "The king built the house." +// +// For INTRANSITIVE sentences: +// agent (in absolutive case: bare noun) + verb +// Example: lugal du +// king-ABS went +// "The king went." +// +// agent: the subject noun (base/absolutive form); ergative suffix applied here +// verb: Sumerian verb stem or canonical English label +// patient: patient noun (absolutive; pass "" for intransitive) +// tense: "present" | "past" +// +// Note: this function handles third-person singular agreement throughout, which +// is the most common narrative form in Sumerian texts. The conjugated verb +// form uses sux_conjugate with "third"/"singular" for the absolutive agreement. + +fn sux_verb_chain(agent: String, verb: String, patient: String, tense: String) -> String { + let conjugated: String = sux_conjugate(verb, tense, "third", "singular") + // Intransitive: agent in absolutive + verb + if str_eq(patient, "") { + return agent + " " + conjugated + } + // Transitive: agent in ergative + patient in absolutive + verb + // Apply ergative suffix directly (no leading dash needed — it is -e) + let agent_erg: String = agent + "e" + return agent_erg + " " + patient + " " + conjugated +} + +// ── sux_realize_sentence: top-level sentence realizer ──────────────────────── +// +// Assembles a complete Sumerian sentence from semantic components. +// +// intent: "assert" | "question" | "describe" +// agent: subject noun (base form) +// predicate: verb stem / canonical label (for assert/question) OR +// adjective/noun predicate (for describe / nominal sentence) +// patient: object noun (base form); pass "" for intransitive or nominal sentence +// tense: "present" | "past" +// +// ── assert (declarative transitive/intransitive) ───────────────────────────── +// Builds the SOV verb chain using sux_verb_chain. +// Ergative marking is applied to the agent when a patient is present. +// Example: lugal-e é mu-un-dù "The king built the house." +// +// ── question ───────────────────────────────────────────────────────────────── +// Sumerian polar questions are formed by appending the enclitic -a to the +// verb (written -am₃ in some analyses; here "-a" on the verb complex). +// Word order is unchanged (SOV retained). +// Example: lugal-e é mu-un-dù-a? "Did the king build the house?" +// +// ── describe (nominal/equational sentence) ────────────────────────────────── +// Sumerian equational sentences (X is Y) typically omit the copula entirely +// or append -am₃ to the predicate nominal/adjective. +// Form: agent + predicate + "-am3" +// Example: lugal-am3 "He is a king." / lugal kalag-ga-am3 "The king is mighty." +// +// When a patient is provided in describe mode, it is treated as the predicate +// complement: agent + patient-am3. + +fn sux_realize_sentence(intent: String, agent: String, predicate: String, patient: String, tense: String) -> String { + if str_eq(intent, "assert") { + return sux_verb_chain(agent, predicate, patient, tense) + } + if str_eq(intent, "question") { + // Build the assertion first, then append the question enclitic -a + let assertion: String = sux_verb_chain(agent, predicate, patient, tense) + return assertion + "-a" + } + if str_eq(intent, "describe") { + // Nominal/equational sentence: agent predicate/patient + copula clitic -am3 + // When patient is given it serves as the predicate nominal + if str_eq(patient, "") { + return agent + " " + predicate + "-am3" + } + return agent + " " + patient + "-am3" + } + // Fallback: plain assertion + return sux_verb_chain(agent, predicate, patient, tense) +} diff --git a/elp/src/morphology-sux.elh b/elp/src/morphology-sux.elh new file mode 100644 index 0000000..aa40e56 --- /dev/null +++ b/elp/src/morphology-sux.elh @@ -0,0 +1,29 @@ +// auto-generated by elc --emit-header - do not edit +extern fn sux_str_ends(s: String, suf: String) -> Bool +extern fn sux_str_drop_last(s: String, n: Int) -> String +extern fn sux_str_last_char(s: String) -> String +extern fn sux_str_last2(s: String) -> String +extern fn sux_slot(person: String, number: String) -> Int +extern fn sux_ergative_suffix(person: String, number: String) -> String +extern fn sux_absolutive_suffix(person: String, number: String) -> String +extern fn sux_map_canonical(verb: String) -> String +extern fn sux_personal_suffix(slot: Int) -> String +extern fn sux_me_present(slot: Int) -> String +extern fn sux_me_past(slot: Int) -> String +extern fn sux_dug4_present(slot: Int) -> String +extern fn sux_dug4_past(slot: Int) -> String +extern fn sux_du_present(slot: Int) -> String +extern fn sux_du_past(slot: Int) -> String +extern fn sux_igibar_present(slot: Int) -> String +extern fn sux_igibar_past(slot: Int) -> String +extern fn sux_ak_present(slot: Int) -> String +extern fn sux_ak_past(slot: Int) -> String +extern fn sux_tum2_present(slot: Int) -> String +extern fn sux_tum2_past(slot: Int) -> String +extern fn sux_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn sux_is_animate(noun: String) -> Bool +extern fn sux_case_suffix(gram_case: String) -> String +extern fn sux_decline(noun: String, gram_case: String, number: String) -> String +extern fn sux_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String +extern fn sux_verb_chain(agent: String, verb: String, patient: String, tense: String) -> String +extern fn sux_realize_sentence(intent: String, agent: String, predicate: String, patient: String, tense: String) -> String diff --git a/elp/src/morphology-sw.el b/elp/src/morphology-sw.el new file mode 100644 index 0000000..aed8481 --- /dev/null +++ b/elp/src/morphology-sw.el @@ -0,0 +1,934 @@ +// morphology-sw.el - Swahili morphology for the NLG engine. +// +// Implements Swahili noun class detection, subject/object agreement prefixes, +// tense markers, verb conjugation, negation, noun pluralization, and adjective +// agreement. +// +// Swahili is an agglutinative SVO language that uses a noun class system +// (15+ classes) instead of grammatical gender. Noun classes determine the +// agreement prefixes on verbs, adjectives, and other nominals. +// +// Key facts: +// - No case endings — word order and prepositions handle relations +// - Verb morphology: SUBJ-TENSE-OBJ-STEM(-final vowel) +// - Latin script; tonal but tone unmarked in standard orthography +// +// Conventions used throughout: +// class: "1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"15" +// person: "1sg"|"2sg"|"3sg"|"1pl"|"2pl"|"3pl" | "1"|"2"|"3" + number "sg"/"pl" +// tense: "present"|"progressive"|"past"|"future"|"perfect" +// number: "sg" | "pl" +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with, +// str_drop_last) + +// ── String helpers ──────────────────────────────────────────────────────────── + +fn sw_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn sw_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn sw_str_first_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, 0, 1) +} + +fn sw_str_first2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, 0, 2) +} + +fn sw_str_first3(s: String) -> String { + let n: Int = str_len(s) + if n < 3 { + return s + } + return str_slice(s, 0, 3) +} + +fn sw_str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +// ── Noun class detection ────────────────────────────────────────────────────── +// +// Returns the singular noun class number as a string. +// The noun class is inferred from the noun's prefix according to the standard +// Bantu noun class system used in Swahili. +// +// Class pairs (singular/plural): +// Class 1/2 (M-WA): m-/mw- → wa- people, animates +// Class 3/4 (M-MI): m-/mw- → mi- trees, plants, objects +// Class 5/6 (JI-MA): ji-/j- → ma- fruits, augmentatives +// Class 7/8 (KI-VI): ki-/ch- → vi-/vy- things, languages +// Class 9/10 (N): n-/m-/∅ → same animals, loanwords +// Class 11 (U): u-/w- → (10) abstract nouns +// Class 15 (KU): ku- → — infinitives as nouns +// +// Disambiguation between class 1 and class 3 (both m-/mw- prefix): +// Class 1 nouns refer to people/animates; class 3 to inanimate objects/plants. +// A lexical lookup for common class 1 nouns handles the ambiguous cases. +// +// Note: Class 9/10 nouns often have no visible prefix (zero-prefix or nasal +// prefix that assimilates to the following consonant). + +fn sw_is_class1_noun(noun: String) -> Bool { + // Known class 1 (M-WA: human/animate) nouns + if str_eq(noun, "mtu") { return true } // person + if str_eq(noun, "mwanafunzi") { return true } // student + if str_eq(noun, "mwalimu") { return true } // teacher + if str_eq(noun, "mke") { return true } // wife/woman + if str_eq(noun, "mume") { return true } // husband/man + if str_eq(noun, "mtoto") { return true } // child + if str_eq(noun, "mgeni") { return true } // guest/stranger + if str_eq(noun, "mwana") { return true } // child/son + if str_eq(noun, "mkubwa") { return true } // elder/adult + if str_eq(noun, "mdogo") { return true } // young one + if str_eq(noun, "mgonjwa") { return true } // sick person/patient + if str_eq(noun, "mfanyakazi") { return true } // worker + if str_eq(noun, "mkulima") { return true } // farmer + if str_eq(noun, "mwimbaji") { return true } // singer + if str_eq(noun, "msomaji") { return true } // reader + if str_eq(noun, "mwandishi") { return true } // writer + if str_eq(noun, "mpiganaji") { return true } // fighter/warrior + if str_eq(noun, "msaidizi") { return true } // helper + if str_eq(noun, "mpishi") { return true } // cook + if str_eq(noun, "mwanasheria") { return true } // lawyer + if str_eq(noun, "daktari") { return true } // doctor (cl.9, but animate) + if str_eq(noun, "rafiki") { return true } // friend (cl.9) + if str_eq(noun, "ndugu") { return true } // sibling/relative (cl.9) + return false +} + +fn sw_noun_class(noun: String) -> String { + // Class 15: ku- prefix — infinitives used as nouns + if sw_str_ends(noun, "ku") { + if str_eq(sw_str_first2(noun), "ku") { return "15" } + } + if sw_str_first2(noun) == "ku" { return "15" } + + // Explicit class 15 check + let p2: String = sw_str_first2(noun) + if str_eq(p2, "ku") { return "15" } + + // Class 7/8 (KI-VI): ki- or ch- + let p3: String = sw_str_first3(noun) + if str_eq(p3, "ki-") { return "7" } + if str_eq(p2, "ki") { return "7" } + if str_eq(p2, "ch") { return "7" } // e.g. chakula (food), choo (toilet) + + // Class 11 (U): u- or w- prefix — abstract nouns + // Must check before class 1/3 m- prefix checks + let p1: String = sw_str_first_char(noun) + if str_eq(p1, "u") { return "11" } + if str_eq(p1, "w") { return "11" } // e.g. wimbo (song) class 11 + + // Class 5/6 (JI-MA): ji- prefix or zero-prefix fruits/augmentatives + if str_eq(p2, "ji") { return "5" } + // Common class 5 nouns with zero prefix (j- before vowel) + if str_eq(noun, "jicho") { return "5" } // eye + if str_eq(noun, "jino") { return "5" } // tooth + if str_eq(noun, "bega") { return "5" } // shoulder + if str_eq(noun, "tunda") { return "5" } // fruit + if str_eq(noun, "embe") { return "5" } // mango + if str_eq(noun, "gari") { return "5" } // car/vehicle + if str_eq(noun, "bei") { return "5" } // price + if str_eq(noun, "sauti") { return "5" } // voice/sound + if str_eq(noun, "thamani") { return "5" } // value + + // Class 1/3 (M- prefix): disambiguate by lexical lookup + if str_eq(p1, "m") { + if sw_is_class1_noun(noun) { return "1" } + return "3" // class 3: trees, plants, inanimate m- nouns + } + if str_eq(p2, "mw") { + if sw_is_class1_noun(noun) { return "1" } + return "3" + } + + // Class 9/10 (N): nasal prefix or zero prefix — catch-all for most + // loanwords and animal names + // Many class 9 nouns start with: n, ny, ng, mb, nd, nj, nz, or bare vowel + if str_eq(p2, "ny") { return "9" } + if str_eq(p2, "ng") { return "9" } + if str_eq(p2, "mb") { return "9" } + if str_eq(p2, "nd") { return "9" } + if str_eq(p2, "nj") { return "9" } + if str_eq(p2, "nz") { return "9" } + if str_eq(p1, "n") { return "9" } + + // Common lexical class 9 nouns (animals, loanwords, etc.) + if str_eq(noun, "paka") { return "9" } // cat + if str_eq(noun, "mbwa") { return "9" } // dog + if str_eq(noun, "simba") { return "9" } // lion + if str_eq(noun, "tembo") { return "9" } // elephant + if str_eq(noun, "nyoka") { return "9" } // snake + if str_eq(noun, "samaki") { return "9" } // fish + if str_eq(noun, "rafiki") { return "9" } // friend + if str_eq(noun, "daktari") { return "9" } // doctor + if str_eq(noun, "serikali") { return "9" } // government + if str_eq(noun, "hospitali") { return "9" } // hospital + if str_eq(noun, "shule") { return "9" } // school + if str_eq(noun, "kanisa") { return "9" } // church + if str_eq(noun, "ofisi") { return "9" } // office + if str_eq(noun, "picha") { return "9" } // picture/photo + if str_eq(noun, "sehemu") { return "9" } // part/section + if str_eq(noun, "habari") { return "9" } // news + if str_eq(noun, "nchi") { return "9" } // country/land + if str_eq(noun, "bahari") { return "9" } // sea/ocean + if str_eq(noun, "dunia") { return "9" } // world + if str_eq(noun, "ardhi") { return "9" } // ground/earth + + // Default to class 9 for unknown nouns (most common catch-all) + return "9" +} + +// ── Subject agreement prefixes ──────────────────────────────────────────────── +// +// Returns the subject prefix for verb conjugation. +// +// For personal pronouns: person "1","2","3" + number "sg","pl" +// For noun class agreement: person "3" + the noun's class +// +// Personal: +// 1sg (mimi) → ni- +// 2sg (wewe) → u- +// 3sg class 1 → a- +// 1pl (sisi) → tu- +// 2pl (nyinyi)→ m- +// 3pl class 2 → wa- +// +// Noun class 3sg: +// cl.1 → a- cl.2 → wa- +// cl.3 → u- cl.4 → i- +// cl.5 → li- cl.6 → ya- +// cl.7 → ki- cl.8 → vi- +// cl.9 → i- cl.10 → zi- +// cl.11 → u- cl.15 → ku- + +fn sw_subj_prefix(person: String, number: String, noun_class: String) -> String { + // First and second person always use personal prefixes regardless of noun class + if str_eq(person, "1") { + if str_eq(number, "sg") { return "ni" } + return "tu" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "u" } + return "m" + } + + // Third person: agree with noun class + // Plural classes + if str_eq(number, "pl") { + if str_eq(noun_class, "1") { return "wa" } // class 2 (wa-) + if str_eq(noun_class, "2") { return "wa" } + if str_eq(noun_class, "3") { return "i" } // class 4 (i-) + if str_eq(noun_class, "4") { return "i" } + if str_eq(noun_class, "5") { return "ya" } // class 6 (ya-) + if str_eq(noun_class, "6") { return "ya" } + if str_eq(noun_class, "7") { return "vi" } // class 8 (vi-) + if str_eq(noun_class, "8") { return "vi" } + if str_eq(noun_class, "9") { return "zi" } // class 10 (zi-) + if str_eq(noun_class, "10") { return "zi" } + if str_eq(noun_class, "11") { return "zi" } // class 11 pl uses cl.10 + return "zi" + } + + // Singular classes + if str_eq(noun_class, "1") { return "a" } + if str_eq(noun_class, "3") { return "u" } + if str_eq(noun_class, "4") { return "i" } + if str_eq(noun_class, "5") { return "li" } + if str_eq(noun_class, "6") { return "ya" } + if str_eq(noun_class, "7") { return "ki" } + if str_eq(noun_class, "8") { return "vi" } + if str_eq(noun_class, "9") { return "i" } + if str_eq(noun_class, "10") { return "zi" } + if str_eq(noun_class, "11") { return "u" } + if str_eq(noun_class, "15") { return "ku" } + // Default: third person animate sg + return "a" +} + +// ── Object agreement prefixes ───────────────────────────────────────────────── +// +// Object infixes are inserted between tense marker and verb stem. +// They mirror the subject prefixes with minor differences. +// +// 1sg → ni- 2sg → ku- 3sg cl.1 → m-/mw- +// 1pl → tu- 2pl → wa- 3pl cl.2 → wa- +// cl.3 sg → u- cl.4 pl → i- +// cl.5 sg → li- cl.6 pl → ya- +// cl.7 sg → ki- cl.8 pl → vi- +// cl.9 sg → i- cl.10 pl → zi- +// cl.11 → u- cl.15 → ku- + +fn sw_obj_prefix(person: String, number: String, noun_class: String) -> String { + if str_eq(person, "1") { + if str_eq(number, "sg") { return "ni" } + return "tu" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "ku" } + return "wa" + } + // Third person object + if str_eq(number, "pl") { + if str_eq(noun_class, "1") { return "wa" } + if str_eq(noun_class, "2") { return "wa" } + if str_eq(noun_class, "3") { return "i" } + if str_eq(noun_class, "4") { return "i" } + if str_eq(noun_class, "5") { return "ya" } + if str_eq(noun_class, "6") { return "ya" } + if str_eq(noun_class, "7") { return "vi" } + if str_eq(noun_class, "8") { return "vi" } + if str_eq(noun_class, "9") { return "zi" } + if str_eq(noun_class, "10") { return "zi" } + return "wa" + } + // Singular + if str_eq(noun_class, "1") { return "m" } + if str_eq(noun_class, "3") { return "u" } + if str_eq(noun_class, "5") { return "li" } + if str_eq(noun_class, "7") { return "ki" } + if str_eq(noun_class, "9") { return "i" } + if str_eq(noun_class, "11") { return "u" } + if str_eq(noun_class, "15") { return "ku" } + return "m" +} + +// ── Tense markers ───────────────────────────────────────────────────────────── +// +// Tense markers are inserted between the subject prefix and the verb stem. +// +// "present" → -a- (habitual/simple present; final vowel -a) +// "progressive" → -na- (present progressive) +// "past" → -li- (simple past) +// "future" → -ta- (future) +// "perfect" → -me- (present perfect) +// "remote_past" → -li- (same marker; distinction via context or -ku-) +// "subjunctive" → (no tense marker; final vowel changes to -e) + +fn sw_tense_marker(tense: String) -> String { + if str_eq(tense, "present") { return "a" } + if str_eq(tense, "progressive") { return "na" } + if str_eq(tense, "past") { return "li" } + if str_eq(tense, "future") { return "ta" } + if str_eq(tense, "perfect") { return "me" } + if str_eq(tense, "subjunctive") { return "" } + if str_eq(tense, "remote_past") { return "li" } + // Default to progressive marker + return "na" +} + +// ── Final vowel (verb ending) ───────────────────────────────────────────────── +// +// The final vowel of the verb stem changes based on tense and negation. +// +// Positive forms: +// present habitual / progressive / past / future / perfect: -a +// subjunctive: -e +// +// Negative forms: +// present: -i (the negative present uses -i instead of -a) +// past: -a (negative past: ha- prefix + -ku- tense + stem + -a) +// others: -e (negative subjunctive) +// +// Note: For most tenses the final vowel is simply -a. Only the negative present +// and subjunctive change it. + +fn sw_verb_final(tense: String, negative: Bool) -> String { + if negative { + if str_eq(tense, "present") { return "i" } + if str_eq(tense, "progressive") { return "i" } + if str_eq(tense, "subjunctive") { return "e" } + return "a" + } + if str_eq(tense, "subjunctive") { return "e" } + return "a" +} + +// ── Negative subject prefix ─────────────────────────────────────────────────── +// +// Negation in Swahili is expressed by replacing the subject prefix with a +// negative counterpart (ha- for most; si- for 1sg). +// +// Positive → Negative subject prefixes: +// ni- → si- (1sg) +// u- → hu- (2sg) +// a- → ha- (3sg cl.1) +// tu- → hatu- (1pl) +// m- → ham- (2pl) +// wa- → hawa- (3pl cl.2) +// other class 3sg prefixes: ha + prefix (e.g. ha+u = hau, ha+li = hali) + +fn sw_neg_subj_prefix(person: String, number: String, noun_class: String) -> String { + if str_eq(person, "1") { + if str_eq(number, "sg") { return "si" } + return "hatu" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "hu" } + return "ham" + } + // Third person negative = ha + positive subject prefix + let pos: String = sw_subj_prefix(person, number, noun_class) + return "ha" + pos +} + +// ── Stem extraction ─────────────────────────────────────────────────────────── +// +// Swahili infinitives begin with ku-. The verb stem is the infinitive minus ku-. +// For verbs where the stem itself starts with a vowel, the ku- is retained in +// some contexts (kuomba, kusoma etc.) but stripped for conjugation. +// +// Special cases: +// kula (to eat) → stem: l- (kula → la in conjugation: anakula) +// kuwa (to be) → stem: wa (but equatorial forms are suppletive: ni/u/ni) +// kwenda (to go) → stem: end (kw + end → enda) +// kuja (to come) → stem: ja + +fn sw_verb_stem(infinitive: String) -> String { + if str_eq(infinitive, "kula") { return "l" } // eat — irregular: anakula + if str_eq(infinitive, "kuwa") { return "wa" } // be + if str_eq(infinitive, "kwenda") { return "enda" } + if str_eq(infinitive, "kuja") { return "ja" } + if str_eq(infinitive, "kusoma") { return "soma" } + if str_eq(infinitive, "kusema") { return "sema" } + if str_eq(infinitive, "kuona") { return "ona" } + if str_eq(infinitive, "kufanya") { return "fanya" } + if str_eq(infinitive, "kutaka") { return "taka" } + if str_eq(infinitive, "kujua") { return "jua" } + if str_eq(infinitive, "kupata") { return "pata" } + if str_eq(infinitive, "kuambia") { return "ambia" } + if str_eq(infinitive, "kuleta") { return "leta" } + if str_eq(infinitive, "kuweka") { return "weka" } + if str_eq(infinitive, "kuingia") { return "ingia" } + if str_eq(infinitive, "kutoka") { return "toka" } + if str_eq(infinitive, "kupiga") { return "piga" } + if str_eq(infinitive, "kuimba") { return "imba" } + if str_eq(infinitive, "kucheza") { return "cheza" } + if str_eq(infinitive, "kulala") { return "lala" } + if str_eq(infinitive, "kuandika") { return "andika" } + if str_eq(infinitive, "kununua") { return "nunua" } + if str_eq(infinitive, "kuuza") { return "uza" } + if str_eq(infinitive, "kupenda") { return "penda" } + if str_eq(infinitive, "kuchukua") { return "chukua" } + if str_eq(infinitive, "kulipa") { return "lipa" } + if str_eq(infinitive, "kusikia") { return "sikia" } + if str_eq(infinitive, "kuamka") { return "amka" } + if str_eq(infinitive, "kukaa") { return "kaa" } + if str_eq(infinitive, "kurudi") { return "rudi" } + if str_eq(infinitive, "kushinda") { return "shinda" } + if str_eq(infinitive, "kusaidia") { return "saidia" } + if str_eq(infinitive, "kuzungumza") { return "zungumza" } + if str_eq(infinitive, "kupumzika") { return "pumzika" } + if str_eq(infinitive, "kufika") { return "fika" } + if str_eq(infinitive, "kuomba") { return "omba" } + if str_eq(infinitive, "kushukuru") { return "shukuru" } + // Generic: strip leading ku (2 chars) or kw (for kwenda etc.) + if sw_str_first2(infinitive) == "ku" { + return str_slice(infinitive, 2, str_len(infinitive)) + } + if sw_str_first2(infinitive) == "kw" { + return str_slice(infinitive, 2, str_len(infinitive)) + } + return infinitive +} + +// ── Positive verb conjugation ───────────────────────────────────────────────── +// +// Structure: SUBJ_PREFIX + TENSE_MARKER + STEM + FINAL_VOWEL +// +// Examples: +// anasoma = a (3sg cl.1) + na (prog) + soma (read) + [stem ends -a] +// nilikula = ni (1sg) + li (past) + ku (special) + la (kula stem) +// tutasema = tu (1pl) + ta (future) + sema (say) + [stem ends -a] +// amesoma = a (3sg) + me (perfect) + soma + [final -a] +// +// Special case: kula — the stem is bare "l", and the full conjugation inserts +// ku before the stem in most tenses: a-na-ku-la, a-li-ku-la, a-ta-ku-la +// but a-me-l-a is not standard — standard is amekula. + +fn sw_conjugate(verb_stem: String, person: String, number: String, noun_class: String, tense: String) -> String { + let subj: String = sw_subj_prefix(person, number, noun_class) + let tm: String = sw_tense_marker(tense) + let fv: String = sw_verb_final(tense, false) + + // kula (eat) — stem is "l" but conjugates as "kula" after prefix+tense + if str_eq(verb_stem, "l") { + if str_eq(tm, "") { + return subj + "kula" + } + return subj + tm + "kula" + } + + // kuwa (be) — present equational forms are suppletive + if str_eq(verb_stem, "wa") { + if str_eq(tense, "present") { + // Equational: ni/u/ni for 1sg/2sg/3sg; tu/m/ni for pl + if str_eq(person, "1") { + if str_eq(number, "sg") { return "ni" } + return "tu ni" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "u" } + return "m ni" + } + // 3sg/3pl: use class-based copula + if str_eq(number, "sg") { + // Locative/existential forms: niko, uko, yuko etc. (class-based) + if str_eq(noun_class, "1") { return "yuko" } + if str_eq(noun_class, "3") { return "upo" } + if str_eq(noun_class, "5") { return "lipo" } + if str_eq(noun_class, "7") { return "kipo" } + if str_eq(noun_class, "9") { return "ipo" } + if str_eq(noun_class, "11") { return "upo" } + return "yuko" + } + // plural + if str_eq(noun_class, "1") { return "wako" } + if str_eq(noun_class, "3") { return "ipo" } + if str_eq(noun_class, "5") { return "yapo" } + if str_eq(noun_class, "7") { return "vipo" } + if str_eq(noun_class, "9") { return "zipo" } + return "wako" + } + // Progressive kuwa: niko/uko/yuko (existence/location) + if str_eq(tense, "progressive") { + if str_eq(person, "1") { + if str_eq(number, "sg") { return "niko" } + return "tuko" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "uko" } + return "mko" + } + if str_eq(number, "sg") { + if str_eq(noun_class, "1") { return "yuko" } + return subj + "ko" + } + if str_eq(noun_class, "1") { return "wako" } + return subj + "ko" + } + // Past/future/perfect kuwa: regular + } + + // Regular conjugation + let stem_final: String = sw_str_last_char(verb_stem) + + // If stem already ends in the correct final vowel, don't double it + if str_eq(fv, "a") { + if str_eq(stem_final, "a") { + // Stem ends in -a: result is subj+tm+stem (final -a already present) + if str_eq(tm, "") { + return subj + verb_stem + } + return subj + tm + verb_stem + } + } + + if str_eq(tm, "") { + return subj + verb_stem + fv + } + return subj + tm + verb_stem + fv +} + +// ── Negative verb conjugation ───────────────────────────────────────────────── +// +// Negative structure: NEG_SUBJ_PREFIX + (tense) + STEM + FINAL_VOWEL_I +// +// Negative present: +// ha- prefix replaces subject prefix; final vowel -i +// e.g. hasomi (he/she doesn't read), sisomi (I don't read) +// +// Negative past: +// ha- prefix + -ku- tense infix + stem + -a +// e.g. hakusoma (he/she didn't read), sikusoma (I didn't read) +// +// Negative future: +// ha- prefix + -ta- + stem + -i (or sometimes -a; -i is more standard) +// e.g. hatasoma (he/she won't read) +// +// Negative perfect: +// ha- prefix + -ja- (not yet) + stem + -a +// e.g. hajaenda (he/she hasn't gone yet) + +fn sw_negative(verb_stem: String, person: String, number: String, noun_class: String, tense: String) -> String { + let neg_subj: String = sw_neg_subj_prefix(person, number, noun_class) + + // kula special gram_case + if str_eq(verb_stem, "l") { + if str_eq(tense, "past") { return neg_subj + "kukula" } + if str_eq(tense, "perfect") { return neg_subj + "jakula" } + return neg_subj + "kuli" + } + + if str_eq(tense, "present") { + let fv: String = sw_verb_final("present", true) // -i + let stem_no_a: String = verb_stem + // If stem ends in -a, drop it before adding -i (some grammars) + // Standard: ha + stem-minus-final-a + i + let slen: Int = str_len(verb_stem) + if slen > 0 { + let last: String = sw_str_last_char(verb_stem) + if str_eq(last, "a") { + return neg_subj + sw_str_drop_last(verb_stem, 1) + fv + } + } + return neg_subj + verb_stem + fv + } + + if str_eq(tense, "past") { + // Negative past: ha + ku + stem + a + return neg_subj + "ku" + verb_stem + "a" + } + + if str_eq(tense, "future") { + // Negative future: ha + ta + stem + i (standard) + let fv: String = sw_verb_final("present", true) // -i + return neg_subj + "ta" + verb_stem + fv + } + + if str_eq(tense, "perfect") { + // Negative perfect "not yet": ha + ja + stem + a + return neg_subj + "ja" + verb_stem + "a" + } + + if str_eq(tense, "progressive") { + // Negative progressive: same as negative present + let fv: String = sw_verb_final("present", true) + let slen: Int = str_len(verb_stem) + if slen > 0 { + let last: String = sw_str_last_char(verb_stem) + if str_eq(last, "a") { + return neg_subj + sw_str_drop_last(verb_stem, 1) + fv + } + } + return neg_subj + verb_stem + fv + } + + // Default negative: ha + stem + i + return neg_subj + verb_stem + "i" +} + +// ── Noun plural formation ───────────────────────────────────────────────────── +// +// Swahili plurals are formed by changing the noun class prefix. +// +// Class 1 (m-/mw-) → Class 2 (wa-): mtu → watu, mwalimu → walimu +// Class 3 (m-/mw-) → Class 4 (mi-): mti → miti, mwamba → miamba +// Class 5 (ji-/∅) → Class 6 (ma-): jicho → macho, tunda → matunda +// Class 7 (ki-/ch-)→ Class 8 (vi-/vy-): kitu → vitu, chakula → vyakula +// Class 9 (n-/∅) → Class 10 (n-/∅): same prefix — no change in prefix; +// some class 9 nouns add ma- (ma- class) in plural +// Class 11 (u-) → Class 10 (n-/∅): ubao → mbao +// +// Known lexical exceptions are handled first. + +fn sw_noun_plural(noun: String) -> String { + // ── Lexical irregulars ────────────────────────────────────────────────── + if str_eq(noun, "mtu") { return "watu" } + if str_eq(noun, "mtoto") { return "watoto" } + if str_eq(noun, "mke") { return "wake" } + if str_eq(noun, "mume") { return "waume" } + if str_eq(noun, "mwana") { return "wana" } + if str_eq(noun, "mwalimu") { return "walimu" } + if str_eq(noun, "mgeni") { return "wageni" } + if str_eq(noun, "mwanafunzi") { return "wanafunzi" } + if str_eq(noun, "mfanyakazi") { return "wafanyakazi" } + if str_eq(noun, "mkulima") { return "wakulima" } + if str_eq(noun, "mgonjwa") { return "wagonjwa" } + if str_eq(noun, "jicho") { return "macho" } + if str_eq(noun, "jino") { return "meno" } + if str_eq(noun, "bega") { return "mabega" } + if str_eq(noun, "tunda") { return "matunda" } + if str_eq(noun, "gari") { return "magari" } + if str_eq(noun, "embe") { return "maembe" } + if str_eq(noun, "wimbo") { return "nyimbo" } // class 11 → 10 + if str_eq(noun, "ubao") { return "mbao" } + if str_eq(noun, "ugonjwa") { return "magonjwa" } + if str_eq(noun, "uso") { return "nyuso" } + if str_eq(noun, "ukuta") { return "kuta" } + if str_eq(noun, "ulimi") { return "ndimi" } + if str_eq(noun, "upande") { return "pande" } + if str_eq(noun, "uwezo") { return "nguvu" } // approximate + // Class 9/10 nouns: same form sg/pl (zero-change class) + if str_eq(noun, "paka") { return "paka" } + if str_eq(noun, "samaki") { return "samaki" } + if str_eq(noun, "rafiki") { return "rafiki" } + if str_eq(noun, "daktari") { return "madaktari" } // some use ma- pl + if str_eq(noun, "habari") { return "habari" } + if str_eq(noun, "nchi") { return "nchi" } + if str_eq(noun, "bahari") { return "bahari" } + if str_eq(noun, "shule") { return "shule" } + if str_eq(noun, "hospitali") { return "hospitali" } + if str_eq(noun, "ofisi") { return "ofisi" } + if str_eq(noun, "serikali") { return "serikali" } + + // ── Productive rules ──────────────────────────────────────────────────── + + // Class 1 (m- people): m- → wa- + if sw_is_class1_noun(noun) { + if str_eq(sw_str_first2(noun), "mw") { + return "wa" + str_slice(noun, 2, str_len(noun)) + } + if str_eq(sw_str_first_char(noun), "m") { + return "wa" + str_slice(noun, 1, str_len(noun)) + } + } + + // Class 7 (ki-/ch-) → Class 8 (vi-/vy-) + let p2: String = sw_str_first2(noun) + if str_eq(p2, "ki") { + return "vi" + str_slice(noun, 2, str_len(noun)) + } + if str_eq(p2, "ch") { + return "vy" + str_slice(noun, 2, str_len(noun)) + } + + // Class 5 (ji-) → Class 6 (ma-) + if str_eq(p2, "ji") { + return "ma" + str_slice(noun, 2, str_len(noun)) + } + + // Class 11 (u-/w-) → Class 10 (n-/∅): drop u, may add n + let p1: String = sw_str_first_char(noun) + if str_eq(p1, "u") { + // Most u- class nouns: drop u → bare stem (class 10 zero prefix) + return str_slice(noun, 1, str_len(noun)) + } + + // Class 3 (m-/mw- inanimate) → Class 4 (mi-) + if str_eq(p1, "m") { + if str_eq(p2, "mw") { + return "mi" + str_slice(noun, 2, str_len(noun)) + } + return "mi" + str_slice(noun, 1, str_len(noun)) + } + + // Class 9/10: no prefix change (same form) + return noun +} + +// ── Adjective agreement ─────────────────────────────────────────────────────── +// +// Adjectives in Swahili take a class agreement prefix that matches the noun +// they modify. The prefix is placed before the adjective stem. +// +// Agreement prefixes (singular): +// cl.1 → m-/mw- cl.2 → wa- +// cl.3 → m-/mw- cl.4 → mi- +// cl.5 → (j-)l- cl.6 → ma- +// cl.7 → ki-/ch- cl.8 → vi-/vy- +// cl.9 → (n-) cl.10 → (n-) +// cl.11 → mw- cl.15 → ku- +// +// The adjective prefix for class 1/3 singular before a vowel-initial stem +// uses mw- instead of m-. +// +// number: "sg" | "pl" +// noun_class: singular class of the noun (the function applies the correct +// plural class internally when number == "pl") + +fn sw_adj_prefix(noun_class: String, number: String) -> String { + // Plural classes + if str_eq(number, "pl") { + if str_eq(noun_class, "1") { return "wa" } // cl.2 + if str_eq(noun_class, "2") { return "wa" } + if str_eq(noun_class, "3") { return "mi" } // cl.4 + if str_eq(noun_class, "4") { return "mi" } + if str_eq(noun_class, "5") { return "ma" } // cl.6 + if str_eq(noun_class, "6") { return "ma" } + if str_eq(noun_class, "7") { return "vi" } // cl.8 + if str_eq(noun_class, "8") { return "vi" } + if str_eq(noun_class, "9") { return "n" } // cl.10 (nasal) + if str_eq(noun_class, "10") { return "n" } + if str_eq(noun_class, "11") { return "n" } // cl.10 in plural + return "wa" + } + + // Singular classes + if str_eq(noun_class, "1") { return "m" } + if str_eq(noun_class, "3") { return "m" } + if str_eq(noun_class, "4") { return "mi" } + if str_eq(noun_class, "5") { return "j" } // l- before consonant, j- before vowel + if str_eq(noun_class, "6") { return "ma" } + if str_eq(noun_class, "7") { return "ki" } + if str_eq(noun_class, "8") { return "vi" } + if str_eq(noun_class, "9") { return "n" } + if str_eq(noun_class, "10") { return "n" } + if str_eq(noun_class, "11") { return "mw" } + if str_eq(noun_class, "15") { return "ku" } + return "" +} + +// sw_agree_adj: apply the agreement prefix to an adjective stem. +// +// adj_stem: the adjective without any class prefix (e.g. "zuri", "kubwa", "dogo") +// noun_class: class of the noun being modified (singular class number as string) +// number: "sg" | "pl" +// +// Returns the fully prefixed adjective form. +// +// Note: many common adjectives in Swahili are Arabic/Bantu borrowings and do +// not take class prefixes (e.g. "nzuri" — beautiful, "kubwa" — big, "dogo" — small). +// Prefix agreement applies primarily to native Bantu adjective stems and +// demonstratives. This function applies the prefix mechanically; for adjectives +// that are invariant loanwords the caller should use the bare form. + +fn sw_agree_adj(adj_stem: String, noun_class: String, number: String) -> String { + // Invariant adjectives (no class prefix required in standard usage) + if str_eq(adj_stem, "nzuri") { return "nzuri" } // good/beautiful + if str_eq(adj_stem, "baya") { return "baya" } // bad + if str_eq(adj_stem, "safi") { return "safi" } // clean + if str_eq(adj_stem, "chafu") { return "chafu" } // dirty + if str_eq(adj_stem, "ghali") { return "ghali" } // expensive + if str_eq(adj_stem, "rahisi") { return "rahisi" } // cheap/easy + if str_eq(adj_stem, "mzuri") { return sw_adj_prefix(noun_class, number) + "zuri" } + + // Apply class prefix to Bantu adjective stems + let prefix: String = sw_adj_prefix(noun_class, number) + if str_eq(prefix, "") { + return adj_stem + } + + // cl.1/3 prefix m- before consonant, mw- before vowel + if str_eq(prefix, "m") { + let first: String = sw_str_first_char(adj_stem) + if str_eq(first, "a") { return "mw" + adj_stem } + if str_eq(first, "e") { return "mw" + adj_stem } + if str_eq(first, "i") { return "mw" + adj_stem } + if str_eq(first, "o") { return "mw" + adj_stem } + if str_eq(first, "u") { return "mw" + adj_stem } + return "m" + adj_stem + } + + // cl.5 prefix j- before vowel, l- before consonant + if str_eq(prefix, "j") { + let first: String = sw_str_first_char(adj_stem) + if str_eq(first, "a") { return "j" + adj_stem } + if str_eq(first, "e") { return "j" + adj_stem } + if str_eq(first, "i") { return "j" + adj_stem } + if str_eq(first, "o") { return "j" + adj_stem } + if str_eq(first, "u") { return "j" + adj_stem } + return "l" + adj_stem + } + + return prefix + adj_stem +} + +// ── Demonstrative agreement ─────────────────────────────────────────────────── +// +// Swahili demonstratives agree with the noun class. +// "this" (proximal): huyu (cl.1/2), huu (cl.3/11), hili (cl.5), hiki (cl.7), +// hii (cl.9), huu (cl.11) +// "that" (distal): yule (cl.1/2), ule (cl.3/11), lile (cl.5), kile (cl.7), +// ile (cl.9) +// +// proximity: "near" | "far" + +fn sw_demonstrative(noun_class: String, number: String, proximity: String) -> String { + if str_eq(proximity, "near") { + if str_eq(number, "pl") { + if str_eq(noun_class, "1") { return "hawa" } + if str_eq(noun_class, "3") { return "hii" } + if str_eq(noun_class, "5") { return "haya" } + if str_eq(noun_class, "7") { return "hivi" } + if str_eq(noun_class, "9") { return "hizi" } + return "hawa" + } + if str_eq(noun_class, "1") { return "huyu" } + if str_eq(noun_class, "3") { return "huu" } + if str_eq(noun_class, "5") { return "hili" } + if str_eq(noun_class, "7") { return "hiki" } + if str_eq(noun_class, "9") { return "hii" } + if str_eq(noun_class, "11") { return "huu" } + if str_eq(noun_class, "15") { return "huku" } + return "hii" + } + // distal + if str_eq(number, "pl") { + if str_eq(noun_class, "1") { return "wale" } + if str_eq(noun_class, "3") { return "ile" } + if str_eq(noun_class, "5") { return "yale" } + if str_eq(noun_class, "7") { return "vile" } + if str_eq(noun_class, "9") { return "zile" } + return "wale" + } + if str_eq(noun_class, "1") { return "yule" } + if str_eq(noun_class, "3") { return "ule" } + if str_eq(noun_class, "5") { return "lile" } + if str_eq(noun_class, "7") { return "kile" } + if str_eq(noun_class, "9") { return "ile" } + if str_eq(noun_class, "11") { return "ule" } + if str_eq(noun_class, "15") { return "kule" } + return "ile" +} + +// ── Swahili copula (kuwa — to be) ───────────────────────────────────────────── +// +// The copula in Swahili is complex: +// +// Equational ("X is Y", noun predicate): +// ni (is/am/are) — invariant for present equational +// si — negative present equational +// +// Locative/existential ("X is [somewhere]", with -ko/-po/-mo): +// niko/uko/yuko/tuko/mko/wako — with -ko (definite location) +// nipo/upo/yupo/tupo/mpo/wapo — with -po (near location) +// nimo/umo/yumo/tumo/mmo/wamo — with -mo (inside) +// +// sw_copula_present: returns the present copula form. +// use_case: "equative" | "locative" + +fn sw_copula_present(person: String, number: String, use_case: String) -> String { + if str_eq(use_case, "equative") { + if str_eq(person, "1") { return "ni" } + if str_eq(person, "2") { return "ni" } + return "ni" + } + // locative -ko (most common) + if str_eq(person, "1") { + if str_eq(number, "sg") { return "niko" } + return "tuko" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "uko" } + return "mko" + } + if str_eq(number, "sg") { return "yuko" } + return "wako" +} + +// sw_copula_neg_present: negative present copula. +// equative: si (invariant for all persons in negative equational) +fn sw_copula_neg_present(person: String, number: String) -> String { + if str_eq(person, "1") { + if str_eq(number, "sg") { return "si" } + return "si" + } + if str_eq(person, "2") { + if str_eq(number, "sg") { return "si" } + return "si" + } + return "si" +} diff --git a/elp/src/morphology-sw.elh b/elp/src/morphology-sw.elh new file mode 100644 index 0000000..6de2ff0 --- /dev/null +++ b/elp/src/morphology-sw.elh @@ -0,0 +1,23 @@ +// auto-generated by elc --emit-header - do not edit +extern fn sw_str_ends(s: String, suf: String) -> Bool +extern fn sw_str_drop_last(s: String, n: Int) -> String +extern fn sw_str_first_char(s: String) -> String +extern fn sw_str_first2(s: String) -> String +extern fn sw_str_first3(s: String) -> String +extern fn sw_str_last_char(s: String) -> String +extern fn sw_is_class1_noun(noun: String) -> Bool +extern fn sw_noun_class(noun: String) -> String +extern fn sw_subj_prefix(person: String, number: String, noun_class: String) -> String +extern fn sw_obj_prefix(person: String, number: String, noun_class: String) -> String +extern fn sw_tense_marker(tense: String) -> String +extern fn sw_verb_final(tense: String, negative: Bool) -> String +extern fn sw_neg_subj_prefix(person: String, number: String, noun_class: String) -> String +extern fn sw_verb_stem(infinitive: String) -> String +extern fn sw_conjugate(verb_stem: String, person: String, number: String, noun_class: String, tense: String) -> String +extern fn sw_negative(verb_stem: String, person: String, number: String, noun_class: String, tense: String) -> String +extern fn sw_noun_plural(noun: String) -> String +extern fn sw_adj_prefix(noun_class: String, number: String) -> String +extern fn sw_agree_adj(adj_stem: String, noun_class: String, number: String) -> String +extern fn sw_demonstrative(noun_class: String, number: String, proximity: String) -> String +extern fn sw_copula_present(person: String, number: String, use_case: String) -> String +extern fn sw_copula_neg_present(person: String, number: String) -> String diff --git a/elp/src/morphology-txb.el b/elp/src/morphology-txb.el new file mode 100644 index 0000000..c465fcc --- /dev/null +++ b/elp/src/morphology-txb.el @@ -0,0 +1,308 @@ +// morphology-txb.el - Tocharian B morphology for the NLG engine. +// +// Implements Tocharian B verb conjugation and noun declension for the ca. 500-1000 CE +// period. Designed as a companion to morphology.el and called by the engine when +// the language profile code is "txb". +// +// Language profile: code=txb, name=Tocharian B, morph_type=fusional, word_order=SOV, +// question_strategy=particle, script=latin, family=tocharian. +// +// Tocharian B is an extinct Indo-European language attested in the Tarim Basin +// (modern Xinjiang, China). Most surviving texts are Buddhist in content. +// The transliteration used here follows standard scholarly convention (Sieg, Siegling, +// Winter); subscript dots are omitted in identifiers but retained in string literals. +// +// Verb conjugation covered: +// Tenses: present (class I endings), imperfect not implemented +// Persons: first/second/third x singular/plural (slots 0-5) +// Irregulars: käm- (to come), yä- (to go), wes-/ste (to be), +// lyut- (to see), wak- (to speak) +// Canonical map: "be" -> "ste" (3sg) / "wes" (other) +// +// Noun declension covered: +// Masculine o-stem: nom/acc/gen/dat x sg/pl +// Feminine ā-stem: nom/acc/gen/dat x sg/pl +// (The full 8-case paradigm is simplified to 4 cases for the engine.) +// Number: singular, plural +// Articles: none — Tocharian B has no article system +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn txb_drop(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { return "" } + return str_slice(s, 0, len - n) +} + +fn txb_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +// ── Person/number slot ───────────────────────────────────────────────────────── +// +// Maps person x number to a 0-based paradigm slot. +// 0 = 1st singular +// 1 = 2nd singular +// 2 = 3rd singular (most frequently attested) +// 3 = 1st plural +// 4 = 2nd plural +// 5 = 3rd plural + +fn txb_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "singular") { return 0 } + return 3 + } + if str_eq(person, "second") { + if str_eq(number, "singular") { return 1 } + return 4 + } + // third + if str_eq(number, "singular") { return 2 } + return 5 +} + +// ── Present class I endings ──────────────────────────────────────────────────── +// +// Tocharian B present class I (most regular verbs). The full paradigm is +// complex with active/medio-passive distinction; only the active series is +// implemented here. +// +// Active present class I endings applied to stem: +// Sg: 1st -au 2nd -ät 3rd -em +// Pl: 1st -emane 2nd -em 3rd -em +// +// Note: the plural endings show extensive syncretism in the attested corpus. + +fn txb_pres1_suffix(slot: Int) -> String { + if slot == 0 { return "au" } + if slot == 1 { return "ät" } + if slot == 2 { return "em" } + if slot == 3 { return "emane" } + if slot == 4 { return "em" } + return "em" +} + +// ── Irregular verb tables ────────────────────────────────────────────────────── + +// käm- (to come) — suppletive present paradigm +// kam, käm, käm, kamnäṃ, kamnäṃ, kamnäṃ + +fn txb_kam_present(slot: Int) -> String { + if slot == 0 { return "kam" } + if slot == 1 { return "käm" } + if slot == 2 { return "käm" } + if slot == 3 { return "kamnäṃ" } + if slot == 4 { return "kamnäṃ" } + return "kamnäṃ" +} + +// yä- (to go) — class IV verb; short stem +// yau, yät, yäm, ymäṃ, ymäṃ, yänmäṃ + +fn txb_ya_present(slot: Int) -> String { + if slot == 0 { return "yau" } + if slot == 1 { return "yät" } + if slot == 2 { return "yäm" } + if slot == 3 { return "ymäṃ" } + if slot == 4 { return "ymäṃ" } + return "yänmäṃ" +} + +// wes- / ste (to be) — the copula/existential "be" verb +// 3sg form "ste" is by far the most attested; elsewhere "wes" is used. +// Simplified paradigm: "ste" for 3sg, "wes" for all other slots. + +fn txb_wes_present(slot: Int) -> String { + if slot == 2 { return "ste" } + return "wes" +} + +// lyut- (to see) — class I regular stem, fully attested +// lyutau, lyutät, lyutem, lyutemane, lyutem, lyutem + +fn txb_lyut_present(slot: Int) -> String { + if slot == 0 { return "lyutau" } + if slot == 1 { return "lyutät" } + if slot == 2 { return "lyutem" } + if slot == 3 { return "lyutemane" } + if slot == 4 { return "lyutem" } + return "lyutem" +} + +// wak- (to speak) — class I regular stem +// wakau, wakät, wakem, wakemane, wakem, wakem + +fn txb_wak_present(slot: Int) -> String { + if slot == 0 { return "wakau" } + if slot == 1 { return "wakät" } + if slot == 2 { return "wakem" } + if slot == 3 { return "wakemane" } + if slot == 4 { return "wakem" } + return "wakem" +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// Maps English semantic labels to Tocharian B citation forms (verbal stems). + +fn txb_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "wes" } + if str_eq(verb, "come") { return "käm" } + if str_eq(verb, "go") { return "yä" } + if str_eq(verb, "see") { return "lyut" } + if str_eq(verb, "speak") { return "wak" } + if str_eq(verb, "say") { return "wak" } + return verb +} + +// ── txb_conjugate: main conjugation entry point ─────────────────────────────── +// +// verb: Tocharian B stem or English canonical label +// tense: "present" (only present is implemented; others return base form) +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns the inflected form. For unknown verbs the stem is returned as-is — +// the corpus is small enough that most productive verbs are known to the engine. + +fn txb_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let v: String = txb_map_canonical(verb) + let slot: Int = txb_slot(person, number) + + // ── wes-/ste (to be) ────────────────────────────────────────────────────── + if str_eq(v, "wes") { + if str_eq(tense, "present") { return txb_wes_present(slot) } + return v + } + + // ── käm- (to come) ──────────────────────────────────────────────────────── + if str_eq(v, "käm") { + if str_eq(tense, "present") { return txb_kam_present(slot) } + return v + } + + // ── yä- (to go) ─────────────────────────────────────────────────────────── + if str_eq(v, "yä") { + if str_eq(tense, "present") { return txb_ya_present(slot) } + return v + } + + // ── lyut- (to see) ──────────────────────────────────────────────────────── + if str_eq(v, "lyut") { + if str_eq(tense, "present") { return txb_lyut_present(slot) } + return v + } + + // ── wak- (to speak) ─────────────────────────────────────────────────────── + if str_eq(v, "wak") { + if str_eq(tense, "present") { return txb_wak_present(slot) } + return v + } + + // ── Regular class I verb ────────────────────────────────────────────────── + // + // Apply present class I endings directly to the stem. + if str_eq(tense, "present") { return v + txb_pres1_suffix(slot) } + + // Unknown tense: return base form + return v +} + +// ── Masculine o-stem declension ─────────────────────────────────────────────── +// +// Tocharian B masculine o-stem endings (simplified 4-case system): +// Singular: nom -e, acc -e, gen -entse, dat -ene +// Plural: nom -i, acc -i, gen -entwetse, dat -ene +// +// The o-stem masculine is the most common nominal class. The nom/acc syncretism +// in the singular is a characteristic Tocharian B feature. + +fn txb_decline_masc(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun + "e" } + if str_eq(gram_case, "accusative") { return noun + "e" } + if str_eq(gram_case, "genitive") { return noun + "entse" } + if str_eq(gram_case, "dative") { return noun + "ene" } + return noun + "e" + } + // plural + if str_eq(gram_case, "nominative") { return noun + "i" } + if str_eq(gram_case, "accusative") { return noun + "i" } + if str_eq(gram_case, "genitive") { return noun + "entwetse" } + if str_eq(gram_case, "dative") { return noun + "ene" } + return noun + "i" +} + +// ── Feminine ā-stem declension ──────────────────────────────────────────────── +// +// Tocharian B feminine ā-stem endings (simplified 4-case system): +// Singular: nom -a, acc -a, gen -antse, dat -ane +// Plural: nom -ä, acc -ä, gen -antse, dat -ane +// +// The ā-stem feminine shows the same nom/acc syncretism as the masculine. + +fn txb_decline_fem(noun: String, gram_case: String, number: String) -> String { + if str_eq(number, "singular") { + if str_eq(gram_case, "nominative") { return noun + "a" } + if str_eq(gram_case, "accusative") { return noun + "a" } + if str_eq(gram_case, "genitive") { return noun + "antse" } + if str_eq(gram_case, "dative") { return noun + "ane" } + return noun + "a" + } + // plural + if str_eq(gram_case, "nominative") { return noun + "ä" } + if str_eq(gram_case, "accusative") { return noun + "ä" } + if str_eq(gram_case, "genitive") { return noun + "antse" } + if str_eq(gram_case, "dative") { return noun + "ane" } + return noun + "ä" +} + +// ── Gender detection heuristic ───────────────────────────────────────────────── +// +// In Tocharian B the gender of a noun must ideally be supplied by the lexicon. +// Gender was originally inherited from Proto-Indo-European but many neuters +// merged into masculine. This heuristic defaults to masculine; known feminine +// items should be supplied via the vocabulary layer. + +fn txb_detect_gender(noun: String) -> String { + // No reliable phonological gender markers in Tocharian B stems. + // Default: masculine. + return "masculine" +} + +// ── txb_decline: main declension entry point ────────────────────────────────── +// +// noun: Tocharian B noun stem (uninflected base form) +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// +// Returns the inflected form. Falls back to the bare stem on unknown input. + +fn txb_decline(noun: String, gram_case: String, number: String) -> String { + let gender: String = txb_detect_gender(noun) + + if str_eq(gender, "feminine") { return txb_decline_fem(noun, gram_case, number) } + // masculine (default) + return txb_decline_masc(noun, gram_case, number) +} + +// ── txb_noun_phrase: noun phrase builder ────────────────────────────────────── +// +// Tocharian B has no article system. Definiteness was not grammatically marked +// by a separate morpheme — context and word order served that function. +// This function therefore ignores the "definite" parameter and returns the +// declined noun form directly. +// +// noun: Tocharian B noun stem +// gram_case: "nominative" | "accusative" | "genitive" | "dative" +// number: "singular" | "plural" +// definite: "true" | "false" (ignored — no articles in Tocharian B) +// +// Returns the declined noun form. + +fn txb_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return txb_decline(noun, gram_case, number) +} diff --git a/elp/src/morphology-txb.elh b/elp/src/morphology-txb.elh new file mode 100644 index 0000000..27794bf --- /dev/null +++ b/elp/src/morphology-txb.elh @@ -0,0 +1,17 @@ +// auto-generated by elc --emit-header - do not edit +extern fn txb_drop(s: String, n: Int) -> String +extern fn txb_ends(s: String, suf: String) -> Bool +extern fn txb_slot(person: String, number: String) -> Int +extern fn txb_pres1_suffix(slot: Int) -> String +extern fn txb_kam_present(slot: Int) -> String +extern fn txb_ya_present(slot: Int) -> String +extern fn txb_wes_present(slot: Int) -> String +extern fn txb_lyut_present(slot: Int) -> String +extern fn txb_wak_present(slot: Int) -> String +extern fn txb_map_canonical(verb: String) -> String +extern fn txb_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn txb_decline_masc(noun: String, gram_case: String, number: String) -> String +extern fn txb_decline_fem(noun: String, gram_case: String, number: String) -> String +extern fn txb_detect_gender(noun: String) -> String +extern fn txb_decline(noun: String, gram_case: String, number: String) -> String +extern fn txb_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String diff --git a/elp/src/morphology-uga.el b/elp/src/morphology-uga.el new file mode 100644 index 0000000..435f86d --- /dev/null +++ b/elp/src/morphology-uga.el @@ -0,0 +1,420 @@ +// morphology-uga.el - Ugaritic morphology for the NLG engine. +// 𐎀𐎎𐎗𐎚 — Ugaritic, the language of the city-state of Ugarit. +// +// Implements Ugaritic verb conjugation (G-stem, suffix and prefix conjugations), +// noun declension (three cases, gender, number, dual), and noun-phrase construction. +// +// Ugaritic is a Northwest Semitic language (ca. 1400–1200 BCE), written in a +// 30-character alphabetic cuneiform. It is closely related to Biblical Hebrew +// and Phoenician. We work in standard Latin transliteration: +// ʼ = aleph (glottal stop) ʻ = ʿayin ḫ = het ġ = ghayin +// ṯ = thet ẓ = emphatic z š = shin ṣ = tsade +// +// Language profile: +// code=uga, name=Ugaritic, morph_type=semitic, word_order=VSO, +// script=alphabetic cuneiform (transliterated), family=semitic/northwest-semitic +// +// Key grammatical facts: +// - Semitic trilateral root system (nearly identical to Hebrew/Arabic) +// - Grammatical gender: masculine / feminine +// - Cases: nominative (-u), accusative (-a), genitive (-i) +// (mirrors Akkadian but with shorter endings — no mimation in Ugaritic) +// - Number: singular / plural / dual +// - Dual: nom -āma, gen/acc -ēma +// - Verb tenses: +// qtl (perfect, suffix conjugation) — completed action +// yqtl (imperfect, prefix conjugation) — ongoing / future action +// - Verb stems: G, D, Š, N (this file: G-stem throughout) +// - No separate definite article (unlike later Hebrew ha-) +// - Copula: root kn (to be) +// +// Verb conjugation conventions: +// person: "first" | "second" | "third" +// gender: "m" | "f" +// number: "singular" | "plural" +// tense: "perfect" | "imperfect" +// +// Noun declension conventions: +// gram_case: "nom" | "acc" | "gen" +// number: "singular" | "plural" | "dual" +// +// Verbs covered (G-stem root, transliterated): +// "kn" — to be (copula) +// "hlk" — to go +// "rʼy" — to see +// "ʼmr" — to say +// +// Depends on: morphology.el (str_eq, str_len, str_slice, str_ends_with) + +// ── String helpers ───────────────────────────────────────────────────────────── + +fn uga_str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn uga_str_len(s: String) -> Int { + return str_len(s) +} + +fn uga_str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +// ── Slot index ───────────────────────────────────────────────────────────────── +// +// Maps person × number to a 0-based slot index. +// Gender is used separately for third-person disambiguation. +// +// Slot layout (6 primary cells, matching classic NW-Semitic paradigm): +// 0 = 1sg (I) +// 1 = 2sg (you sg — masc and fem conflate in many forms) +// 2 = 3sg m (he) +// 3 = 3sg f (she) +// 4 = 1pl (we) +// 5 = 3pl (they — masc default) + +fn uga_slot(person: String, number: String) -> Int { + if str_eq(person, "first") { + if str_eq(number, "plural") { return 4 } + return 0 + } + if str_eq(person, "second") { + return 1 + } + // third + if str_eq(number, "plural") { return 5 } + return 2 +} + +// uga_slot_g: gender-sensitive slot for third-person singular. +fn uga_slot_g(person: String, gender: String, number: String) -> Int { + let base: Int = uga_slot(person, number) + if str_eq(person, "third") { + if str_eq(number, "singular") { + if str_eq(gender, "f") { return 3 } + } + } + return base +} + +// ── Copula: kn — to be ──────────────────────────────────────────────────────── +// +// qtl (perfect): kāna (3sg m), kānat (3sg f), kānu (3pl) +// yqtl (imperfect): yakūnu (3sg m), takūnu (3sg f / 2sg), ʼakūnu (1sg) +// +// The root kn is a weak verb (hollow: middle w/y). The perfect stem is kāna-; +// the imperfect stem is -kūn-. + +fn uga_kn_perfect(slot: Int) -> String { + if slot == 0 { return "kāntu" } // 1sg (kān- + suffix -tu) + if slot == 1 { return "kānta" } // 2sg (-ta suffix) + if slot == 2 { return "kāna" } // 3sg m (base) + if slot == 3 { return "kānat" } // 3sg f (-at suffix) + if slot == 4 { return "kānnu" } // 1pl (-nu suffix) + return "kānu" // 3pl (-u suffix) +} + +fn uga_kn_imperfect(slot: Int) -> String { + if slot == 0 { return "ʼakūnu" } // 1sg (ʼa- prefix) + if slot == 1 { return "takūnu" } // 2sg (ta- prefix) + if slot == 2 { return "yakūnu" } // 3sg m (ya- prefix) + if slot == 3 { return "takūnu" } // 3sg f (ta- prefix, same as 2sg) + if slot == 4 { return "nakūnu" } // 1pl (na- prefix) + return "yakūnuna" // 3pl (ya- + -ūna energic suffix) +} + +fn uga_is_copula(verb: String) -> Bool { + if str_eq(verb, "kn") { return true } + if str_eq(verb, "kāna") { return true } + if str_eq(verb, "be") { return true } + return false +} + +fn uga_conjugate_copula(tense: String, slot: Int) -> String { + if str_eq(tense, "perfect") { return uga_kn_perfect(slot) } + return uga_kn_imperfect(slot) +} + +// ── hlk — to go ─────────────────────────────────────────────────────────────── +// +// Regular strong verb. Perfect stem: halak-; imperfect stem: -hluk-. + +fn uga_hlk_perfect(slot: Int) -> String { + if slot == 0 { return "halaktu" } // 1sg + if slot == 1 { return "halakta" } // 2sg + if slot == 2 { return "halaka" } // 3sg m + if slot == 3 { return "halakat" } // 3sg f + if slot == 4 { return "halaknu" } // 1pl + return "halaku" // 3pl +} + +fn uga_hlk_imperfect(slot: Int) -> String { + if slot == 0 { return "ʼahluku" } // 1sg + if slot == 1 { return "tahluku" } // 2sg + if slot == 2 { return "yahluku" } // 3sg m + if slot == 3 { return "tahluku" } // 3sg f + if slot == 4 { return "nahluku" } // 1pl + return "yahlukuna" // 3pl +} + +// ── rʼy — to see ────────────────────────────────────────────────────────────── +// +// Third-weak verb (final y). Perfect: raʼaya (3sg m); imperfect: yarʼā (3sg m). + +fn uga_ray_perfect(slot: Int) -> String { + if slot == 0 { return "raʼaytu" } // 1sg + if slot == 1 { return "raʼayta" } // 2sg + if slot == 2 { return "raʼaya" } // 3sg m + if slot == 3 { return "raʼayat" } // 3sg f + if slot == 4 { return "raʼaynu" } // 1pl + return "raʼayu" // 3pl +} + +fn uga_ray_imperfect(slot: Int) -> String { + if slot == 0 { return "ʼarʼā" } // 1sg + if slot == 1 { return "tarʼā" } // 2sg + if slot == 2 { return "yarʼā" } // 3sg m + if slot == 3 { return "tarʼā" } // 3sg f + if slot == 4 { return "narʼā" } // 1pl + return "yarʼayna" // 3pl (fem plural ending for final-weak) +} + +// ── ʼmr — to say ────────────────────────────────────────────────────────────── +// +// Strong verb. Perfect: ʼamara (3sg m); imperfect: yaʼmuru (3sg m). + +fn uga_amr_perfect(slot: Int) -> String { + if slot == 0 { return "ʼamartu" } // 1sg + if slot == 1 { return "ʼamarta" } // 2sg + if slot == 2 { return "ʼamara" } // 3sg m + if slot == 3 { return "ʼamarat" } // 3sg f + if slot == 4 { return "ʼamarnu" } // 1pl + return "ʼamaru" // 3pl +} + +fn uga_amr_imperfect(slot: Int) -> String { + if slot == 0 { return "ʼaʼmuru" } // 1sg + if slot == 1 { return "taʼmuru" } // 2sg + if slot == 2 { return "yaʼmuru" } // 3sg m + if slot == 3 { return "taʼmuru" } // 3sg f + if slot == 4 { return "naʼmuru" } // 1pl + return "yaʼmuruna" // 3pl +} + +// ── Generic G-stem paradigm (regular strong verbs) ──────────────────────────── +// +// For verbs not in the lookup table, apply the regular pattern. +// Caller supplies the 3sg perfect form (qtl) and 3sg imperfect (yqtl) form. +// We derive person forms by suffix/prefix substitution. + +fn uga_generic_perfect(base3sg: String, slot: Int) -> String { + // Perfect suffixes: 1sg -tu, 2sg -ta, 3sg m ∅, 3sg f -at, 1pl -nu, 3pl -u + if slot == 0 { return base3sg + "tu" } + if slot == 1 { return base3sg + "ta" } + if slot == 2 { return base3sg } + if slot == 3 { return base3sg + "at" } + if slot == 4 { return base3sg + "nu" } + return base3sg + "u" +} + +fn uga_generic_imperfect(base3sg: String, slot: Int) -> String { + // Strip leading ya- to get the core, re-prefix per person. + // This is a heuristic for display purposes when the stem is unknown. + if slot == 0 { return "ʼa" + base3sg } + if slot == 1 { return "ta" + base3sg } + if slot == 2 { return "ya" + base3sg } + if slot == 3 { return "ta" + base3sg } + if slot == 4 { return "na" + base3sg } + return "ya" + base3sg + "una" +} + +// ── Known-verb dispatcher ───────────────────────────────────────────────────── + +fn uga_known_verb(verb: String, tense: String, slot: Int) -> String { + // kn — to be + if str_eq(verb, "kn") { + return uga_conjugate_copula(tense, slot) + } + if str_eq(verb, "kāna") { + return uga_conjugate_copula(tense, slot) + } + + // hlk — to go + if str_eq(verb, "hlk") { + if str_eq(tense, "perfect") { return uga_hlk_perfect(slot) } + return uga_hlk_imperfect(slot) + } + if str_eq(verb, "halaka") { + if str_eq(tense, "perfect") { return uga_hlk_perfect(slot) } + return uga_hlk_imperfect(slot) + } + + // rʼy — to see + if str_eq(verb, "rʼy") { + if str_eq(tense, "perfect") { return uga_ray_perfect(slot) } + return uga_ray_imperfect(slot) + } + if str_eq(verb, "raʼaya") { + if str_eq(tense, "perfect") { return uga_ray_perfect(slot) } + return uga_ray_imperfect(slot) + } + + // ʼmr — to say + if str_eq(verb, "ʼmr") { + if str_eq(tense, "perfect") { return uga_amr_perfect(slot) } + return uga_amr_imperfect(slot) + } + if str_eq(verb, "ʼamara") { + if str_eq(tense, "perfect") { return uga_amr_perfect(slot) } + return uga_amr_imperfect(slot) + } + + return "" +} + +// ── Main conjugation entry point ────────────────────────────────────────────── +// +// uga_conjugate: conjugate a Ugaritic verb (G-stem). +// +// verb: root (2–3 consonants, e.g. "kn", "hlk") or 3sg perfect citation form +// tense: "perfect" | "imperfect" +// person: "first" | "second" | "third" +// number: "singular" | "plural" +// +// Returns: +// - Inflected form for known verbs +// - verb unchanged as safe fallback for unknown verbs + +fn uga_conjugate(verb: String, tense: String, person: String, number: String) -> String { + let slot: Int = uga_slot(person, number) + + if uga_is_copula(verb) { + return uga_conjugate_copula(tense, slot) + } + + let known: String = uga_known_verb(verb, tense, slot) + if !str_eq(known, "") { + return known + } + + return verb +} + +// ── Noun declension ──────────────────────────────────────────────────────────── +// +// uga_decline: decline a Ugaritic noun for gram_case and number. +// +// Ugaritic case endings (no mimation — unlike Akkadian): +// Masculine singular: +// Nominative: -u (e.g. malku "king") +// Accusative: -a (e.g. malka) +// Genitive: -i (e.g. malki) +// Masculine plural: +// Nominative: -ūma (e.g. malkūma) +// Genitive/Accusative: -īma (e.g. malkīma) +// Feminine singular (typically -atu base): +// Nominative: -atu (e.g. malaktu) +// Accusative: -ata (e.g. malakta) +// Genitive: -ati (e.g. malakti) +// Feminine plural: +// Nominative: -ātu (e.g. malakātu) +// Genitive/Accusative: -āti +// Dual: +// Nominative: -āma (e.g. malkāma) +// Genitive/Accusative: -ēma +// +// Strategy: strip the known nominative ending to get the bare stem, +// then apply the requested ending. + +fn uga_strip_nom(noun: String) -> String { + // Strip masc sg -u + if uga_str_ends(noun, "u") { + let len: Int = uga_str_len(noun) + if len > 1 { + return uga_str_drop_last(noun, 1) + } + } + // Strip fem sg -atu + if uga_str_ends(noun, "atu") { + return uga_str_drop_last(noun, 3) + } + return noun +} + +fn uga_is_fem(noun: String) -> Bool { + if uga_str_ends(noun, "atu") { return true } + if uga_str_ends(noun, "ata") { return true } + if uga_str_ends(noun, "ati") { return true } + if uga_str_ends(noun, "ātu") { return true } + if uga_str_ends(noun, "āti") { return true } + return false +} + +fn uga_decline(noun: String, gram_case: String, number: String) -> String { + let fem: Bool = uga_is_fem(noun) + let stem: String = uga_strip_nom(noun) + + if str_eq(number, "dual") { + if str_eq(gram_case, "nom") { return stem + "āma" } + return stem + "ēma" + } + + if str_eq(number, "plural") { + if fem { + if str_eq(gram_case, "nom") { return stem + "ātu" } + return stem + "āti" + } + // Masculine plural + if str_eq(gram_case, "nom") { return stem + "ūma" } + return stem + "īma" + } + + // Singular + if fem { + if str_eq(gram_case, "nom") { return stem + "atu" } + if str_eq(gram_case, "acc") { return stem + "ata" } + if str_eq(gram_case, "gen") { return stem + "ati" } + return stem + "atu" + } + // Masculine singular + if str_eq(gram_case, "nom") { return stem + "u" } + if str_eq(gram_case, "acc") { return stem + "a" } + if str_eq(gram_case, "gen") { return stem + "i" } + return stem + "u" +} + +// ── Noun phrase ──────────────────────────────────────────────────────────────── +// +// uga_noun_phrase: produce the surface noun phrase. +// +// Ugaritic has no separate definite article (unlike later Hebrew ha-). +// Determination is expressed through word order, the construct chain (genitive), +// and pronominal suffixes. The definite parameter is accepted for interface +// uniformity but has no surface effect. +// +// noun: base noun (nominative singular form, e.g. "malku") +// gram_case: "nom" | "acc" | "gen" +// number: "singular" | "plural" | "dual" +// definite: "true" | "false" (no surface effect in Ugaritic) + +fn uga_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String { + return uga_decline(noun, gram_case, number) +} + +// ── Canonical verb mapping ───────────────────────────────────────────────────── +// +// uga_map_canonical: map cross-lingual English canonical verb labels to +// Ugaritic G-stem roots or citation forms. + +fn uga_map_canonical(verb: String) -> String { + if str_eq(verb, "be") { return "kn" } + if str_eq(verb, "go") { return "hlk" } + if str_eq(verb, "see") { return "rʼy" } + if str_eq(verb, "say") { return "ʼmr" } + if str_eq(verb, "speak") { return "ʼmr" } + return verb +} diff --git a/elp/src/morphology-uga.elh b/elp/src/morphology-uga.elh new file mode 100644 index 0000000..37a8aea --- /dev/null +++ b/elp/src/morphology-uga.elh @@ -0,0 +1,25 @@ +// auto-generated by elc --emit-header - do not edit +extern fn uga_str_ends(s: String, suf: String) -> Bool +extern fn uga_str_len(s: String) -> Int +extern fn uga_str_drop_last(s: String, n: Int) -> String +extern fn uga_slot(person: String, number: String) -> Int +extern fn uga_slot_g(person: String, gender: String, number: String) -> Int +extern fn uga_kn_perfect(slot: Int) -> String +extern fn uga_kn_imperfect(slot: Int) -> String +extern fn uga_is_copula(verb: String) -> Bool +extern fn uga_conjugate_copula(tense: String, slot: Int) -> String +extern fn uga_hlk_perfect(slot: Int) -> String +extern fn uga_hlk_imperfect(slot: Int) -> String +extern fn uga_ray_perfect(slot: Int) -> String +extern fn uga_ray_imperfect(slot: Int) -> String +extern fn uga_amr_perfect(slot: Int) -> String +extern fn uga_amr_imperfect(slot: Int) -> String +extern fn uga_generic_perfect(base3sg: String, slot: Int) -> String +extern fn uga_generic_imperfect(base3sg: String, slot: Int) -> String +extern fn uga_known_verb(verb: String, tense: String, slot: Int) -> String +extern fn uga_conjugate(verb: String, tense: String, person: String, number: String) -> String +extern fn uga_strip_nom(noun: String) -> String +extern fn uga_is_fem(noun: String) -> Bool +extern fn uga_decline(noun: String, gram_case: String, number: String) -> String +extern fn uga_noun_phrase(noun: String, gram_case: String, number: String, definite: String) -> String +extern fn uga_map_canonical(verb: String) -> String diff --git a/elp/src/morphology.el b/elp/src/morphology.el new file mode 100644 index 0000000..2031194 --- /dev/null +++ b/elp/src/morphology.el @@ -0,0 +1,699 @@ +// morphology.el - Morphology engine: inflection driven by language profile. +// +// Strategy dispatch is based on the morph_type field of the language profile: +// +// "isolating" (zh, vi) - no inflection; base form is final form. +// "agglutinative" (ja, fi, sw) - suffix chains; each feature adds a suffix. +// "fusional" (en, de, ru) - endings encode multiple features at once; +// table-driven per language. +// "polysynthetic" (various) - complex verb complexes; returns base form, +// full support deferred. +// +// Language-specific dispatch (added in 0.3.0): +// morph_conjugate and morph_pluralize first check the profile language code +// and delegate to the corresponding language module when one is available: +// es -> morphology-es.el (Spanish) +// fr -> morphology-fr.el (French) +// de -> morphology-de.el (German) +// ru -> morphology-ru.el (Russian) +// ja -> morphology-ja.el (Japanese) +// fi -> morphology-fi.el (Finnish) +// ar -> morphology-ar.el (Arabic) +// hi -> morphology-hi.el (Hindi) +// sw -> morphology-sw.el (Swahili) +// Unknown codes fall through to the morph_type strategy dispatch below. +// +// For English (fusional, code="en") the existing rules are preserved and +// routed through the engine interface rather than exposed as the sole path. +// +// Depends on: language-profile +// Language modules (loaded after this file, depend on this file): +// morphology-es, morphology-fr, morphology-de, morphology-ru, morphology-ja, +// morphology-fi, morphology-ar, morphology-hi, morphology-sw + +// ── String helpers ──────────────────────────────────────────────────────────── + +fn str_ends(s: String, suf: String) -> Bool { + return str_ends_with(s, suf) +} + +fn str_last_char(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return "" + } + return str_slice(s, n - 1, n) +} + +fn str_last2(s: String) -> String { + let n: Int = str_len(s) + if n < 2 { + return s + } + return str_slice(s, n - 2, n) +} + +fn str_last3(s: String) -> String { + let n: Int = str_len(s) + if n < 3 { + return s + } + return str_slice(s, n - 3, n) +} + +fn str_drop_last(s: String, n: Int) -> String { + let len: Int = str_len(s) + if n >= len { + return "" + } + return str_slice(s, 0, len - n) +} + +fn is_vowel(c: String) -> Bool { + if str_eq(c, "a") { return true } + if str_eq(c, "e") { return true } + if str_eq(c, "i") { return true } + if str_eq(c, "o") { return true } + if str_eq(c, "u") { return true } + return false +} + +// ── Suffix application ──────────────────────────────────────────────────────── +// +// Apply a suffix to a base form with basic phonological adjustments. +// Used by the agglutinative path and the fusional helper functions. +// +// Rules applied (in order): +// base ends in "-e" and suffix starts with a vowel -> drop the trailing "e" +// base ends in CVC and suffix starts with a vowel -> double final consonant +// default: concatenate + +fn morph_apply_suffix(base: String, suffix: String) -> String { + if str_eq(suffix, "") { + return base + } + let suf_start: String = str_slice(suffix, 0, 1) + let suf_starts_vowel: Bool = is_vowel(suf_start) + + // Drop trailing silent -e before a vowel-initial suffix + if suf_starts_vowel { + if str_ends(base, "e") { + if !str_ends(base, "ee") { + return str_drop_last(base, 1) + suffix + } + } + } + + // CVC doubling before a vowel-initial suffix + if suf_starts_vowel { + let n: Int = str_len(base) + if n >= 3 { + let c3: String = str_slice(base, n - 3, n - 2) + let c2: String = str_slice(base, n - 2, n - 1) + let c1: String = str_slice(base, n - 1, n) + if !is_vowel(c3) { + if is_vowel(c2) { + if !is_vowel(c1) { + if !str_eq(c1, "w") { + if !str_eq(c1, "x") { + if !str_eq(c1, "y") { + return base + c1 + suffix + } + } + } + } + } + } + } + } + + return base + suffix +} + +// ── English irregular tables ────────────────────────────────────────────────── + +fn en_irregular_plural(word: String) -> String { + if str_eq(word, "child") { return "children" } + if str_eq(word, "man") { return "men" } + if str_eq(word, "woman") { return "women" } + if str_eq(word, "tooth") { return "teeth" } + if str_eq(word, "foot") { return "feet" } + if str_eq(word, "goose") { return "geese" } + if str_eq(word, "mouse") { return "mice" } + if str_eq(word, "louse") { return "lice" } + if str_eq(word, "ox") { return "oxen" } + if str_eq(word, "person") { return "people" } + if str_eq(word, "leaf") { return "leaves" } + if str_eq(word, "loaf") { return "loaves" } + if str_eq(word, "wolf") { return "wolves" } + if str_eq(word, "life") { return "lives" } + if str_eq(word, "knife") { return "knives" } + if str_eq(word, "wife") { return "wives" } + if str_eq(word, "half") { return "halves" } + if str_eq(word, "self") { return "selves" } + if str_eq(word, "elf") { return "elves" } + if str_eq(word, "shelf") { return "shelves" } + if str_eq(word, "fish") { return "fish" } + if str_eq(word, "sheep") { return "sheep" } + if str_eq(word, "deer") { return "deer" } + if str_eq(word, "moose") { return "moose" } + if str_eq(word, "series") { return "series" } + if str_eq(word, "species") { return "species" } + return "" +} + +fn en_irregular_singular(word: String) -> String { + if str_eq(word, "children") { return "child" } + if str_eq(word, "men") { return "man" } + if str_eq(word, "women") { return "woman" } + if str_eq(word, "teeth") { return "tooth" } + if str_eq(word, "feet") { return "foot" } + if str_eq(word, "geese") { return "goose" } + if str_eq(word, "mice") { return "mouse" } + if str_eq(word, "lice") { return "louse" } + if str_eq(word, "oxen") { return "ox" } + if str_eq(word, "people") { return "person" } + if str_eq(word, "leaves") { return "leaf" } + if str_eq(word, "wolves") { return "wolf" } + if str_eq(word, "lives") { return "life" } + if str_eq(word, "knives") { return "knife" } + if str_eq(word, "wives") { return "wife" } + if str_eq(word, "halves") { return "half" } + if str_eq(word, "selves") { return "self" } + if str_eq(word, "elves") { return "elf" } + if str_eq(word, "shelves") { return "shelf" } + if str_eq(word, "fish") { return "fish" } + if str_eq(word, "sheep") { return "sheep" } + if str_eq(word, "deer") { return "deer" } + if str_eq(word, "moose") { return "moose" } + if str_eq(word, "series") { return "series" } + if str_eq(word, "species") { return "species" } + return "" +} + +// Returns [base, 3sg-present, past, past-participle, gerund] for English +// irregular verbs, or an empty list if the verb is regular. +fn en_irregular_verb(base: String) -> [String] { + let empty: [String] = [] + if str_eq(base, "be") { let r: [String] = ["be", "is", "was", "been", "being"]; return r } + if str_eq(base, "have") { let r: [String] = ["have", "has", "had", "had", "having"]; return r } + if str_eq(base, "do") { let r: [String] = ["do", "does", "did", "done", "doing"]; return r } + if str_eq(base, "go") { let r: [String] = ["go", "goes", "went", "gone", "going"]; return r } + if str_eq(base, "say") { let r: [String] = ["say", "says", "said", "said", "saying"]; return r } + if str_eq(base, "make") { let r: [String] = ["make", "makes", "made", "made", "making"]; return r } + if str_eq(base, "know") { let r: [String] = ["know", "knows", "knew", "known", "knowing"]; return r } + if str_eq(base, "take") { let r: [String] = ["take", "takes", "took", "taken", "taking"]; return r } + if str_eq(base, "see") { let r: [String] = ["see", "sees", "saw", "seen", "seeing"]; return r } + if str_eq(base, "come") { let r: [String] = ["come", "comes", "came", "come", "coming"]; return r } + if str_eq(base, "think") { let r: [String] = ["think", "thinks","thought","thought", "thinking"]; return r } + if str_eq(base, "get") { let r: [String] = ["get", "gets", "got", "gotten", "getting"]; return r } + if str_eq(base, "give") { let r: [String] = ["give", "gives", "gave", "given", "giving"]; return r } + if str_eq(base, "find") { let r: [String] = ["find", "finds", "found", "found", "finding"]; return r } + if str_eq(base, "tell") { let r: [String] = ["tell", "tells", "told", "told", "telling"]; return r } + if str_eq(base, "become") { let r: [String] = ["become", "becomes","became","become", "becoming"]; return r } + if str_eq(base, "leave") { let r: [String] = ["leave", "leaves","left", "left", "leaving"]; return r } + if str_eq(base, "feel") { let r: [String] = ["feel", "feels", "felt", "felt", "feeling"]; return r } + if str_eq(base, "put") { let r: [String] = ["put", "puts", "put", "put", "putting"]; return r } + if str_eq(base, "bring") { let r: [String] = ["bring", "brings","brought","brought", "bringing"]; return r } + if str_eq(base, "begin") { let r: [String] = ["begin", "begins","began", "begun", "beginning"];return r } + if str_eq(base, "keep") { let r: [String] = ["keep", "keeps", "kept", "kept", "keeping"]; return r } + if str_eq(base, "hold") { let r: [String] = ["hold", "holds", "held", "held", "holding"]; return r } + if str_eq(base, "write") { let r: [String] = ["write", "writes","wrote", "written", "writing"]; return r } + if str_eq(base, "stand") { let r: [String] = ["stand", "stands","stood", "stood", "standing"]; return r } + if str_eq(base, "hear") { let r: [String] = ["hear", "hears", "heard", "heard", "hearing"]; return r } + if str_eq(base, "let") { let r: [String] = ["let", "lets", "let", "let", "letting"]; return r } + if str_eq(base, "run") { let r: [String] = ["run", "runs", "ran", "run", "running"]; return r } + if str_eq(base, "meet") { let r: [String] = ["meet", "meets", "met", "met", "meeting"]; return r } + if str_eq(base, "sit") { let r: [String] = ["sit", "sits", "sat", "sat", "sitting"]; return r } + if str_eq(base, "send") { let r: [String] = ["send", "sends", "sent", "sent", "sending"]; return r } + if str_eq(base, "speak") { let r: [String] = ["speak", "speaks","spoke", "spoken", "speaking"]; return r } + if str_eq(base, "buy") { let r: [String] = ["buy", "buys", "bought", "bought", "buying"]; return r } + if str_eq(base, "pay") { let r: [String] = ["pay", "pays", "paid", "paid", "paying"]; return r } + if str_eq(base, "read") { let r: [String] = ["read", "reads", "read", "read", "reading"]; return r } + if str_eq(base, "win") { let r: [String] = ["win", "wins", "won", "won", "winning"]; return r } + if str_eq(base, "eat") { let r: [String] = ["eat", "eats", "ate", "eaten", "eating"]; return r } + if str_eq(base, "fall") { let r: [String] = ["fall", "falls", "fell", "fallen", "falling"]; return r } + if str_eq(base, "sleep") { let r: [String] = ["sleep", "sleeps","slept", "slept", "sleeping"]; return r } + if str_eq(base, "drive") { let r: [String] = ["drive", "drives","drove", "driven", "driving"]; return r } + if str_eq(base, "build") { let r: [String] = ["build", "builds","built", "built", "building"]; return r } + if str_eq(base, "cut") { let r: [String] = ["cut", "cuts", "cut", "cut", "cutting"]; return r } + if str_eq(base, "set") { let r: [String] = ["set", "sets", "set", "set", "setting"]; return r } + if str_eq(base, "hit") { let r: [String] = ["hit", "hits", "hit", "hit", "hitting"]; return r } + return empty +} + +// ── English regular inflection helpers ──────────────────────────────────────── + +fn en_verb_3sg(base: String) -> String { + if str_ends(base, "s") { return base + "es" } + if str_ends(base, "x") { return base + "es" } + if str_ends(base, "z") { return base + "es" } + if str_ends(base, "ch") { return base + "es" } + if str_ends(base, "sh") { return base + "es" } + let last: String = str_last_char(base) + if str_eq(last, "y") { + let prev: String = str_drop_last(base, 1) + let prev_last: String = str_last_char(prev) + if !is_vowel(prev_last) { + return prev + "ies" + } + } + return base + "s" +} + +fn en_should_double_final(base: String) -> Bool { + let n: Int = str_len(base) + if n < 3 { + return false + } + let c3: String = str_slice(base, n - 3, n - 2) + let c2: String = str_slice(base, n - 2, n - 1) + let c1: String = str_slice(base, n - 1, n) + if !is_vowel(c3) { + if is_vowel(c2) { + if !is_vowel(c1) { + if !str_eq(c1, "w") { + if !str_eq(c1, "x") { + if !str_eq(c1, "y") { + return true + } + } + } + } + } + } + return false +} + +fn en_verb_past(base: String) -> String { + if str_ends(base, "e") { + return base + "d" + } + let last: String = str_last_char(base) + if str_eq(last, "y") { + let prev: String = str_drop_last(base, 1) + let prev_last: String = str_last_char(prev) + if !is_vowel(prev_last) { + return prev + "ied" + } + } + if en_should_double_final(base) { + return base + last + "ed" + } + return base + "ed" +} + +fn en_verb_gerund(base: String) -> String { + if str_ends(base, "ie") { + return str_drop_last(base, 2) + "ying" + } + if str_ends(base, "e") { + if !str_ends(base, "ee") { + return str_drop_last(base, 1) + "ing" + } + } + let last: String = str_last_char(base) + if en_should_double_final(base) { + return base + last + "ing" + } + return base + "ing" +} + +// English noun pluralization (regular). +fn en_pluralize_regular(singular: String) -> String { + if str_ends(singular, "s") { return singular + "es" } + if str_ends(singular, "x") { return singular + "es" } + if str_ends(singular, "z") { return singular + "es" } + if str_ends(singular, "ch") { return singular + "es" } + if str_ends(singular, "sh") { return singular + "es" } + let last: String = str_last_char(singular) + if str_eq(last, "y") { + let prev: String = str_drop_last(singular, 1) + let prev_last: String = str_last_char(prev) + if !is_vowel(prev_last) { + return prev + "ies" + } + } + if str_ends(singular, "fe") { + return str_drop_last(singular, 2) + "ves" + } + return singular + "s" +} + +// ── English verb conjugation ────────────────────────────────────────────────── +// +// tense: "present" | "past" | "future" | "perfect" | "progressive" +// person: "first" | "second" | "third" +// number: "singular" | "plural" + +fn en_verb_form(base: String, tense: String, person: String, number: String) -> String { + let irreg: [String] = en_irregular_verb(base) + let is_irreg: Bool = false + if native_list_len(irreg) > 0 { + let is_irreg = true + } + + // "be" is fully irregular across all persons and tenses + if str_eq(base, "be") { + if str_eq(tense, "present") { + if str_eq(number, "plural") { return "are" } + if str_eq(person, "first") { return "am" } + if str_eq(person, "second") { return "are" } + return "is" + } + if str_eq(tense, "past") { + if str_eq(number, "plural") { return "were" } + if str_eq(person, "second") { return "were" } + return "was" + } + if str_eq(tense, "future") { return "will be" } + if str_eq(tense, "perfect") { return "been" } + if str_eq(tense, "progressive") { return "being" } + return "be" + } + + if str_eq(tense, "present") { + if str_eq(person, "third") { + if str_eq(number, "singular") { + if is_irreg { + return native_list_get(irreg, 1) + } + return en_verb_3sg(base) + } + } + return base + } + + if str_eq(tense, "past") { + if is_irreg { return native_list_get(irreg, 2) } + return en_verb_past(base) + } + + if str_eq(tense, "future") { + return "will " + base + } + + if str_eq(tense, "perfect") { + if is_irreg { return native_list_get(irreg, 3) } + return en_verb_past(base) + } + + if str_eq(tense, "progressive") { + if is_irreg { return native_list_get(irreg, 4) } + return en_verb_gerund(base) + } + + return base +} + +// ── Determiner agreement ────────────────────────────────────────────────────── +// Language-independent interface; only English has a/an distinction today. + +fn agree_determiner(det: String, noun: String) -> String { + if str_eq(det, "a") { + let first: String = str_slice(noun, 0, 1) + let fl: String = str_to_lower(first) + if is_vowel(fl) { + return "an" + } + return "a" + } + return det +} + +// ── Morphology engine: public interface ─────────────────────────────────────── + +// morph_pluralize: pluralize a noun given a language profile. +// +// For isolating languages: return base form (no inflection). +// For agglutinative languages: look up plural suffix from Engram; fall back to +// base form when not found (Engram data drives agglutinative languages). +// For fusional English: apply English rule + irregular table. +// For other fusional languages: return base form (Engram data required). +// For polysynthetic: return base form. + +fn morph_pluralize(noun: String, profile: [String]) -> String { + let mtype: String = lang_get(profile, "morph_type") + let code: String = lang_get(profile, "code") + + // ── Language-specific dispatch (0.3.0) ──────────────────────────────────── + // Delegate to the language module when one is available. Each module + // exposes a well-known public function; unknown codes fall through to the + // morph_type strategy below. + if str_eq(code, "es") { return es_pluralize(noun) } + if str_eq(code, "fr") { return fr_pluralize(noun) } + if str_eq(code, "de") { return de_noun_plural(noun, "unknown") } + if str_eq(code, "ru") { return ru_noun_case(noun, "m", "nom", "pl") } + if str_eq(code, "ja") { return noun } // Japanese nouns do not pluralize + if str_eq(code, "fi") { return fi_apply_case(noun, "nom", "pl") } + if str_eq(code, "ar") { return ar_sound_plural(noun, "m") } + if str_eq(code, "hi") { return hi_noun_direct(noun, hi_gender(noun), "pl") } + if str_eq(code, "sw") { return sw_noun_plural(noun) } + + // ── morph_type fallback (isolating / agglutinative / fusional) ──────────── + + if str_eq(mtype, "isolating") { + // Isolating languages (zh, vi, etc.) do not inflect nouns. + // Number is expressed through context, classifiers, or separate words. + return noun + } + + if str_eq(mtype, "agglutinative") { + // Agglutinative languages attach suffixes that come from vocabulary data + // in the Engram. The engine provides the mechanism; the data (suffixes) + // come from language-specific vocabulary nodes. Without loaded Engram + // data for the target language, we return the base form and let the + // caller supply the inflected form directly. + return noun + } + + if str_eq(mtype, "fusional") { + if str_eq(code, "en") { + let irreg: String = en_irregular_plural(noun) + if !str_eq(irreg, "") { + return irreg + } + return en_pluralize_regular(noun) + } + // Other fusional languages: inflection tables are extensive and + // language-specific. Return base; Engram vocabulary nodes supply the + // correct plural form for the target language. + return noun + } + + // polysynthetic and unknown: return base form + return noun +} + +// morph_map_canonical: map cross-lingual canonical verbs to language-specific forms. +// +// Semantic layers pass English canonical labels ("be", "have", "do") as predicates. +// Language modules expect their native infinitives ("ser", "sein", "olla" ...). +// This function normalises before dispatch so each module sees its native form. +// +// Zero-copula languages (ar, ja, hi) return "" for "be" — callers that receive "" +// should omit the verb from the surface form. + +fn morph_map_canonical(verb: String, code: String) -> String { + if str_eq(verb, "be") { + if str_eq(code, "es") { return "ser" } + if str_eq(code, "fr") { return "etre" } // ASCII alias; fr handles "etre" -> être + if str_eq(code, "de") { return "sein" } + if str_eq(code, "fi") { return "olla" } + if str_eq(code, "ru") { return "byt" } // Latin transliteration for now + if str_eq(code, "sw") { return "kuwa" } + } + return verb +} + +// morph_conjugate: conjugate a verb given tense, person, number, and profile. +// +// tense: "present" | "past" | "future" | "perfect" | "progressive" +// person: "first" | "second" | "third" +// number: "singular" | "plural" + +fn morph_conjugate(verb: String, tense: String, person: String, number: String, profile: [String]) -> String { + let mtype: String = lang_get(profile, "morph_type") + let code: String = lang_get(profile, "code") + + // Map canonical English verb labels to language-specific infinitives before dispatch. + let verb = morph_map_canonical(verb, code) + + // ── Language-specific dispatch (0.3.0) ──────────────────────────────────── + // Delegate to the language module when one is available. Each module + // exposes a well-known public function; unknown codes fall through to the + // morph_type strategy below. + if str_eq(code, "es") { return es_conjugate(verb, tense, person, number) } + if str_eq(code, "fr") { return fr_conjugate(verb, tense, person, number) } + if str_eq(code, "de") { return de_conjugate(verb, tense, person, number) } + if str_eq(code, "ru") { return ru_conjugate(verb, tense, person, number, "unknown") } + if str_eq(code, "ja") { return ja_conjugate(verb, "present") } + if str_eq(code, "fi") { return fi_conjugate(verb, tense, person, number) } + if str_eq(code, "ar") { return ar_conjugate(verb, tense, person, "m", number) } + if str_eq(code, "hi") { return hi_conjugate(verb, tense, person, "m", number) } + if str_eq(code, "sw") { return sw_conjugate(verb, person, number, "1", tense) } + if str_eq(code, "la") { return la_conjugate(verb, tense, person, number) } + if str_eq(code, "he") { return he_conjugate(verb, tense, person, "m", number) } + if str_eq(code, "grc") { return grc_conjugate(verb, tense, person, number) } + if str_eq(code, "ang") { return ang_conjugate(verb, tense, person, number) } + if str_eq(code, "sa") { return sa_conjugate(verb, tense, person, number) } + if str_eq(code, "got") { return got_conjugate(verb, tense, person, number) } + if str_eq(code, "non") { return non_conjugate(verb, tense, person, number) } + if str_eq(code, "enm") { return enm_conjugate(verb, tense, person, number) } + if str_eq(code, "pi") { return pi_conjugate(verb, tense, person, number) } + if str_eq(code, "fro") { return fro_conjugate(verb, tense, person, number) } + if str_eq(code, "goh") { return goh_conjugate(verb, tense, person, number) } + if str_eq(code, "sga") { return sga_conjugate(verb, tense, person, number) } + if str_eq(code, "txb") { return txb_conjugate(verb, tense, person, number) } + if str_eq(code, "peo") { return peo_conjugate(verb, tense, person, number) } + if str_eq(code, "akk") { return akk_conjugate(verb, tense, person, number) } + if str_eq(code, "uga") { return uga_conjugate(verb, tense, person, number) } + if str_eq(code, "egy") { return egy_conjugate(verb, tense, person, number) } + if str_eq(code, "sux") { return sux_conjugate(verb, tense, person, number) } + if str_eq(code, "gez") { return gez_conjugate(verb, tense, person, number) } + if str_eq(code, "cop") { return cop_conjugate(verb, tense, person, number) } + + // ── morph_type fallback (isolating / agglutinative / fusional) ──────────── + + if str_eq(mtype, "isolating") { + // Isolating languages do not inflect verbs. Tense and aspect are + // expressed through particles and separate words (e.g. 了 in Mandarin). + return verb + } + + if str_eq(mtype, "agglutinative") { + // Agglutinative suffix chains. The engine builds the suffix sequence; + // the actual suffix strings come from Engram vocabulary nodes tagged with + // the language code and the grammatical feature. + // Without Engram-loaded suffix tables, return base form. + return verb + } + + if str_eq(mtype, "fusional") { + if str_eq(code, "en") { + return en_verb_form(verb, tense, person, number) + } + // Other fusional languages: return base form. + // Engram vocabulary nodes carry the inflected forms for de, ru, ar, etc. + return verb + } + + // polysynthetic and unknown + return verb +} + +// morph_inflect: general inflection entry point. +// +// features: a semicolon-separated feature string, e.g. "plural" | "past;third;singular" +// Dispatches to the appropriate engine path based on the profile morph_type. + +fn morph_inflect(word: String, features: String, profile: [String]) -> String { + // Parse the first feature token to decide what kind of inflection to apply. + let n: Int = str_len(features) + if n == 0 { + return word + } + + // Scan to the first ';' to extract the leading feature token. + let i: Int = 0 + let running: Bool = true + while running { + if i >= n { + let running = false + } else { + let c: String = str_slice(features, i, i + 1) + if str_eq(c, ";") { + let running = false + } else { + let i = i + 1 + } + } + } + let first_feat: String = str_slice(features, 0, i) + + if str_eq(first_feat, "plural") { + return morph_pluralize(word, profile) + } + + // For verb features: expect "tense;person;number" + // Parse remaining tokens after the first ';' + if i < n { + let rest: String = str_slice(features, i + 1, n) + // Find second ';' + let j: Int = 0 + let rn: Int = str_len(rest) + let running2: Bool = true + while running2 { + if j >= rn { + let running2 = false + } else { + let c: String = str_slice(rest, j, j + 1) + if str_eq(c, ";") { + let running2 = false + } else { + let j = j + 1 + } + } + } + let person: String = str_slice(rest, 0, j) + let number: String = "" + if j < rn { + let number = str_slice(rest, j + 1, rn) + } + return morph_conjugate(word, first_feat, person, number, profile) + } + + // Single token that is a tense (e.g. "past") with no person/number + return morph_conjugate(word, first_feat, "third", "singular", profile) +} + +// ── Backward-compatible English-only entry points ───────────────────────────── +// +// These preserve the original signatures for callers that were written before +// the language-profile system was introduced. + +fn pluralize(singular: String) -> String { + return morph_pluralize(singular, lang_default()) +} + +fn singularize(plural: String) -> String { + let irreg: String = en_irregular_singular(plural) + if !str_eq(irreg, "") { + return irreg + } + if str_ends(plural, "ies") { + return str_drop_last(plural, 3) + "y" + } + if str_ends(plural, "ves") { + let stem: String = str_drop_last(plural, 3) + let last_stem: String = str_last_char(stem) + if str_eq(last_stem, "i") { + return stem + "fe" + } + return stem + "f" + } + if str_ends(plural, "ches") { return str_drop_last(plural, 2) } + if str_ends(plural, "shes") { return str_drop_last(plural, 2) } + if str_ends(plural, "xes") { return str_drop_last(plural, 2) } + if str_ends(plural, "zes") { return str_drop_last(plural, 2) } + if str_ends(plural, "ses") { return str_drop_last(plural, 2) } + if str_ends(plural, "s") { + return str_drop_last(plural, 1) + } + return plural +} + +// verb_form: English verb conjugation (original signature). +fn verb_form(base: String, tense: String, person: String, number: String) -> String { + return morph_conjugate(base, tense, person, number, lang_default()) +} + +// irregular_plural: English irregular plural lookup (backward compat). +fn irregular_plural(word: String) -> String { + return en_irregular_plural(word) +} + +// irregular_singular: English irregular singular lookup (backward compat). +fn irregular_singular(word: String) -> String { + return en_irregular_singular(word) +} diff --git a/elp/src/morphology.elh b/elp/src/morphology.elh new file mode 100644 index 0000000..d150d39 --- /dev/null +++ b/elp/src/morphology.elh @@ -0,0 +1,27 @@ +// auto-generated by elc --emit-header - do not edit +extern fn str_ends(s: String, suf: String) -> Bool +extern fn str_last_char(s: String) -> String +extern fn str_last2(s: String) -> String +extern fn str_last3(s: String) -> String +extern fn str_drop_last(s: String, n: Int) -> String +extern fn is_vowel(c: String) -> Bool +extern fn morph_apply_suffix(base: String, suffix: String) -> String +extern fn en_irregular_plural(word: String) -> String +extern fn en_irregular_singular(word: String) -> String +extern fn en_irregular_verb(base: String) -> Any +extern fn en_verb_3sg(base: String) -> String +extern fn en_should_double_final(base: String) -> Bool +extern fn en_verb_past(base: String) -> String +extern fn en_verb_gerund(base: String) -> String +extern fn en_pluralize_regular(singular: String) -> String +extern fn en_verb_form(base: String, tense: String, person: String, number: String) -> String +extern fn agree_determiner(det: String, noun: String) -> String +extern fn morph_pluralize(noun: String, profile: Any) -> String +extern fn morph_map_canonical(verb: String, code: String) -> String +extern fn morph_conjugate(verb: String, tense: String, person: String, number: String, profile: Any) -> String +extern fn morph_inflect(word: String, features: String, profile: Any) -> String +extern fn pluralize(singular: String) -> String +extern fn singularize(plural: String) -> String +extern fn verb_form(base: String, tense: String, person: String, number: String) -> String +extern fn irregular_plural(word: String) -> String +extern fn irregular_singular(word: String) -> String diff --git a/elp/src/realizer.el b/elp/src/realizer.el new file mode 100644 index 0000000..b43030e --- /dev/null +++ b/elp/src/realizer.el @@ -0,0 +1,310 @@ +// realizer.el - Universal syntactic realizer: GramSpec -> surface text. +// +// The realizer is now language-agnostic. It reads the "lang" field from the +// GramSpec to resolve a language profile, then dispatches word order, question +// formation, and morphology through the engine functions in grammar.el and +// morphology.el. +// +// English remains the default (backward compatible) when no "lang" key is set. +// +// Realization pipeline per call: +// 1. Extract lang code -> resolve profile +// 2. Extract agent, predicate, patient, location, tense, aspect, intent +// 3. Compute person/number from agent (English heuristic; other languages TBD) +// 4. Build VP: morph_conjugate with profile -> get verb and auxiliary surface +// 5. Choose question strategy from gram_question_strategy(profile) +// 6. Order constituents via gram_order_constituents(subj, verb, obj, profile) +// 7. Capitalize and terminate +// +// Depends on: morphology (morph_conjugate, agree_determiner) +// grammar (gram_order_constituents, gram_question_strategy, +// gram_build_vp, build_np, build_pp, slots_get) +// language-profile (lang_from_code, lang_get, ...) + +// ── Agent agreement analysis ────────────────────────────────────────────────── +// +// Person and number are inferred from English pronouns. For other languages +// the grammatical person/number should come from the Engram vocabulary node +// for the subject; here we use a heuristic that is correct for English and +// passable for languages where the same pronoun strings are used. + +fn agent_person(agent: String) -> String { + if str_eq(agent, "I") { return "first" } + if str_eq(agent, "me") { return "first" } + if str_eq(agent, "we") { return "first" } + if str_eq(agent, "us") { return "first" } + if str_eq(agent, "you") { return "second" } + return "third" +} + +fn agent_number(agent: String) -> String { + if str_eq(agent, "I") { return "singular" } + if str_eq(agent, "me") { return "singular" } + if str_eq(agent, "he") { return "singular" } + if str_eq(agent, "him") { return "singular" } + if str_eq(agent, "she") { return "singular" } + if str_eq(agent, "her") { return "singular" } + if str_eq(agent, "it") { return "singular" } + if str_eq(agent, "you") { return "singular" } + if str_eq(agent, "we") { return "plural" } + if str_eq(agent, "us") { return "plural" } + if str_eq(agent, "they") { return "plural" } + if str_eq(agent, "them") { return "plural" } + return "singular" +} + +// ── NP realization ──────────────────────────────────────────────────────────── + +fn realize_np(referent: String, number: String) -> String { + return referent +} + +// ── VP realization ──────────────────────────────────────────────────────────── +// +// Returns [main_verb_surface, aux_surface_or_empty]. +// Delegates conjugation to morph_conjugate with the language profile. + +fn realize_vp_lang(base_verb: String, tense: String, aspect: String, person: String, number: String, profile: [String]) -> [String] { + let empty_aux: String = "" + + if str_eq(tense, "future") { + // Future: modal "will" + base (English) or language-specific future marker. + // For isolating/agglutinative languages the future marker is also the + // base form (morph_conjugate returns base); the surface "will" only appears + // for English because morph_conjugate("be", "future", ..., en_profile) = "will be". + let code: String = lang_get(profile, "code") + if str_eq(code, "en") { + let result: [String] = native_list_empty() + let result = native_list_append(result, base_verb) + let result = native_list_append(result, "will") + return result + } + // Other languages: conjugate normally (engine returns base form for + // languages without loaded Engram suffix data). + let surf: String = morph_conjugate(base_verb, tense, person, number, profile) + let result: [String] = native_list_empty() + let result = native_list_append(result, surf) + let result = native_list_append(result, empty_aux) + return result + } + + if str_eq(aspect, "progressive") { + let gerund: String = morph_conjugate(base_verb, "progressive", person, number, profile) + let be_aux: String = morph_conjugate("be", tense, person, number, profile) + let result: [String] = native_list_empty() + let result = native_list_append(result, gerund) + let result = native_list_append(result, be_aux) + return result + } + + if str_eq(aspect, "perfect") { + let pp: String = morph_conjugate(base_verb, "perfect", person, number, profile) + let have_form: String = morph_conjugate("have", tense, person, number, profile) + let result: [String] = native_list_empty() + let result = native_list_append(result, pp) + let result = native_list_append(result, have_form) + return result + } + + let surf: String = morph_conjugate(base_verb, tense, person, number, profile) + let result: [String] = native_list_empty() + let result = native_list_append(result, surf) + let result = native_list_append(result, empty_aux) + return result +} + +// ── Question formation ──────────────────────────────────────────────────────── +// +// Strategy is resolved from gram_question_strategy(profile): +// +// "do-support" (en) - insert conjugated "do" before subject; verb stays base. +// "particle" (ja, hi, fi) - statement order + sentence-final question particle. +// "intonation" (zh, es, ar, ru, sw) - statement order + "?" punctuation only. +// "inversion" (fr, de) - subject-verb inversion. + +// realize_question_lang: build the question surface string for any language. +// Returns the complete surface string (without final punctuation). + +fn realize_question_lang(predicate: String, tense: String, aspect: String, person: String, number: String, agent: String, patient: String, location: String, profile: [String]) -> String { + let strategy: String = gram_question_strategy(profile) + let code: String = lang_get(profile, "code") + + // ── do-support (English) ────────────────────────────────────────────────── + if str_eq(strategy, "do-support") { + if str_eq(aspect, "progressive") { + let vp_pair: [String] = realize_vp_lang(predicate, tense, "progressive", person, number, profile) + let gerund: String = native_list_get(vp_pair, 0) + let be_aux: String = native_list_get(vp_pair, 1) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, be_aux) + let parts = native_list_append(parts, agent) + let parts = native_list_append(parts, gerund) + if !str_eq(patient, "") { let parts = native_list_append(parts, patient) } + if !str_eq(location, "") { let parts = native_list_append(parts, location) } + return str_join(parts, " ") + } + + if str_eq(aspect, "perfect") { + let vp_pair: [String] = realize_vp_lang(predicate, tense, "perfect", person, number, profile) + let pp: String = native_list_get(vp_pair, 0) + let have_aux: String = native_list_get(vp_pair, 1) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, have_aux) + let parts = native_list_append(parts, agent) + let parts = native_list_append(parts, pp) + if !str_eq(patient, "") { let parts = native_list_append(parts, patient) } + if !str_eq(location, "") { let parts = native_list_append(parts, location) } + return str_join(parts, " ") + } + + // Simple: do-support + if str_eq(predicate, "be") { + let be_form: String = morph_conjugate("be", tense, person, number, profile) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, be_form) + let parts = native_list_append(parts, agent) + if !str_eq(patient, "") { let parts = native_list_append(parts, patient) } + if !str_eq(location, "") { let parts = native_list_append(parts, location) } + return str_join(parts, " ") + } + let do_form: String = morph_conjugate("do", tense, person, number, profile) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, do_form) + let parts = native_list_append(parts, agent) + let parts = native_list_append(parts, predicate) + if !str_eq(patient, "") { let parts = native_list_append(parts, patient) } + if !str_eq(location, "") { let parts = native_list_append(parts, location) } + return str_join(parts, " ") + } + + // ── particle (ja, hi, fi) ───────────────────────────────────────────────── + // Build in statement order, then append the question particle. + if str_eq(strategy, "particle") { + let vp_pair: [String] = realize_vp_lang(predicate, tense, aspect, person, number, profile) + let verb_s: String = native_list_get(vp_pair, 0) + let aux_s: String = native_list_get(vp_pair, 1) + let vp_str: String = gram_build_vp(verb_s, aux_s, profile) + let core: String = gram_order_constituents(agent, vp_str, patient, profile) + let loc_part: String = "" + if !str_eq(location, "") { + let loc_part = core + " " + location + } else { + let loc_part = core + } + // Language-specific question particles + if str_eq(code, "ja") { return loc_part + " か" } + if str_eq(code, "hi") { return loc_part + " क्या" } + if str_eq(code, "fi") { return loc_part + "-ko" } + return loc_part + "?" + } + + // ── inversion (fr, de) ──────────────────────────────────────────────────── + if str_eq(strategy, "inversion") { + let vp_pair: [String] = realize_vp_lang(predicate, tense, aspect, person, number, profile) + let verb_s: String = native_list_get(vp_pair, 0) + let aux_s: String = native_list_get(vp_pair, 1) + // Inversion: Verb-Subject-Object order + let parts: [String] = native_list_empty() + if !str_eq(aux_s, "") { + let parts = native_list_append(parts, aux_s) + } else { + let parts = native_list_append(parts, verb_s) + } + let parts = native_list_append(parts, agent) + if !str_eq(aux_s, "") { + let parts = native_list_append(parts, verb_s) + } + if !str_eq(patient, "") { let parts = native_list_append(parts, patient) } + if !str_eq(location, "") { let parts = native_list_append(parts, location) } + return str_join(parts, " ") + } + + // ── intonation (zh, es, ar, ru, sw) — statement order, "?" added by caller ─ + let vp_pair: [String] = realize_vp_lang(predicate, tense, aspect, person, number, profile) + let verb_s: String = native_list_get(vp_pair, 0) + let aux_s: String = native_list_get(vp_pair, 1) + let vp_str: String = gram_build_vp(verb_s, aux_s, profile) + let core: String = gram_order_constituents(agent, vp_str, patient, profile) + if !str_eq(location, "") { + return core + " " + location + } + return core +} + +// ── Capitalization and punctuation ──────────────────────────────────────────── + +fn capitalize_first(s: String) -> String { + let n: Int = str_len(s) + if n == 0 { + return s + } + let first: String = str_slice(s, 0, 1) + let rest: String = str_slice(s, 1, n) + return str_to_upper(first) + rest +} + +fn add_punct(s: String, intent: String) -> String { + if str_eq(intent, "question") { return s + "?" } + return s + "." +} + +// ── Main realization entry point ────────────────────────────────────────────── + +fn realize_lang(form: [String], profile: [String]) -> String { + let intent: String = slots_get(form, "intent") + let agent: String = slots_get(form, "agent") + let predicate: String = slots_get(form, "predicate") + let patient: String = slots_get(form, "patient") + let location: String = slots_get(form, "location") + let tense_raw: String = slots_get(form, "tense") + let aspect_raw: String= slots_get(form, "aspect") + + let tense: String = tense_raw + if str_eq(tense, "") { let tense = "present" } + let aspect: String = aspect_raw + if str_eq(aspect, "") { let aspect = "simple" } + + let person: String = agent_person(agent) + let number: String = agent_number(agent) + + // ── Command (imperative) ────────────────────────────────────────────────── + if str_eq(intent, "command") { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, predicate) + if !str_eq(patient, "") { let parts = native_list_append(parts, patient) } + if !str_eq(location, "") { let parts = native_list_append(parts, location) } + let sentence: String = str_join(parts, " ") + return add_punct(capitalize_first(sentence), "command") + } + + // ── Question ────────────────────────────────────────────────────────────── + if str_eq(intent, "question") { + let surface: String = realize_question_lang(predicate, tense, aspect, person, number, agent, patient, location, profile) + return add_punct(capitalize_first(surface), "question") + } + + // ── Assertion (declarative) ─────────────────────────────────────────────── + let vp_pair: [String] = realize_vp_lang(predicate, tense, aspect, person, number, profile) + let verb_surf: String = native_list_get(vp_pair, 0) + let aux_surf: String = native_list_get(vp_pair, 1) + + let vp_str: String = gram_build_vp(verb_surf, aux_surf, profile) + let core: String = gram_order_constituents(agent, vp_str, patient, profile) + + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, core) + if !str_eq(location, "") { + let parts = native_list_append(parts, location) + } + let sentence: String = str_join(parts, " ") + return add_punct(capitalize_first(sentence), "assert") +} + +// realize: backward-compatible English entry point (original signature). +fn realize(form: [String]) -> String { + let lang_code: String = slots_get(form, "lang") + if str_eq(lang_code, "") { + return realize_lang(form, lang_default()) + } + return realize_lang(form, lang_from_code(lang_code)) +} diff --git a/elp/src/realizer.elh b/elp/src/realizer.elh new file mode 100644 index 0000000..5bf5696 --- /dev/null +++ b/elp/src/realizer.elh @@ -0,0 +1,10 @@ +// auto-generated by elc --emit-header - do not edit +extern fn agent_person(agent: String) -> String +extern fn agent_number(agent: String) -> String +extern fn realize_np(referent: String, number: String) -> String +extern fn realize_vp_lang(base_verb: String, tense: String, aspect: String, person: String, number: String, profile: Any) -> Any +extern fn realize_question_lang(predicate: String, tense: String, aspect: String, person: String, number: String, agent: String, patient: String, location: String, profile: Any) -> String +extern fn capitalize_first(s: String) -> String +extern fn add_punct(s: String, intent: String) -> String +extern fn realize_lang(form: Any, profile: Any) -> String +extern fn realize(form: Any) -> String diff --git a/elp/src/semantics.el b/elp/src/semantics.el new file mode 100644 index 0000000..76924b2 --- /dev/null +++ b/elp/src/semantics.el @@ -0,0 +1,308 @@ +// semantics.el - Semantic layer: SemFrame -> GramSpec (slot map for realizer). +// +// Bridges from intent/meaning representation to the grammar layer. +// A SemFrame is a slot map ([String] key-value list) with these keys: +// +// "intent" - "assert" | "query" | "describe" | "greet" +// "subject" - subject referent (pronoun or noun phrase) +// "object" - object referent (optional, "" if absent) +// "modifiers" - semicolon-separated modifier strings (e.g. "in the park;quickly") +// "lang" - ISO 639-1 language code (optional, defaults to "en") +// +// sem_to_spec converts a SemFrame into a realizer slot map ready for realize(). +// sem_realize is the end-to-end shortcut: frame -> realized text. +// +// All existing function signatures are preserved; new *_lang variants add an +// explicit lang_code parameter. +// +// Depends on: grammar (slots_*, realize), language-profile (lang_from_code) + +// ── SemFrame constructors ───────────────────────────────────────────────────── + +// Build a SemFrame with all four core fields. Language defaults to "en". +fn sem_frame(intent: String, subject: String, obj: String, modifiers: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, "intent") + let r = native_list_append(r, intent) + let r = native_list_append(r, "subject") + let r = native_list_append(r, subject) + let r = native_list_append(r, "object") + let r = native_list_append(r, obj) + let r = native_list_append(r, "modifiers") + let r = native_list_append(r, modifiers) + let r = native_list_append(r, "lang") + let r = native_list_append(r, "en") + return r +} + +// Build a SemFrame with an explicit language code. +fn sem_frame_lang(intent: String, subject: String, obj: String, modifiers: String, lang_code: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, "intent") + let r = native_list_append(r, intent) + let r = native_list_append(r, "subject") + let r = native_list_append(r, subject) + let r = native_list_append(r, "object") + let r = native_list_append(r, obj) + let r = native_list_append(r, "modifiers") + let r = native_list_append(r, modifiers) + let r = native_list_append(r, "lang") + let r = native_list_append(r, lang_code) + return r +} + +// Convenience: no object, no modifiers, English. +fn sem_frame_simple(intent: String, subject: String) -> [String] { + return sem_frame(intent, subject, "", "") +} + +// Convenience: with object, no modifiers, English. +fn sem_frame_obj(intent: String, subject: String, obj: String) -> [String] { + return sem_frame(intent, subject, obj, "") +} + +// ── SemFrame field accessors ────────────────────────────────────────────────── + +fn sem_intent(frame: [String]) -> String { + return slots_get(frame, "intent") +} + +fn sem_subject(frame: [String]) -> String { + return slots_get(frame, "subject") +} + +fn sem_object(frame: [String]) -> String { + return slots_get(frame, "object") +} + +fn sem_modifiers(frame: [String]) -> String { + return slots_get(frame, "modifiers") +} + +fn sem_lang(frame: [String]) -> String { + let code: String = slots_get(frame, "lang") + if str_eq(code, "") { + return "en" + } + return code +} + +// ── Modifier helpers ────────────────────────────────────────────────────────── + +fn sem_first_modifier(mods: String) -> String { + let n: Int = str_len(mods) + if n == 0 { + return "" + } + let i: Int = 0 + let running: Bool = true + while running { + if i >= n { + let running = false + } else { + let c: String = str_slice(mods, i, i + 1) + if str_eq(c, ";") { + let running = false + } else { + let i = i + 1 + } + } + } + return str_slice(mods, 0, i) +} + +// ── Intent mapping ──────────────────────────────────────────────────────────── + +fn sem_intent_to_realize(intent: String) -> String { + if str_eq(intent, "assert") { return "assert" } + if str_eq(intent, "query") { return "question" } + if str_eq(intent, "describe") { return "assert" } + if str_eq(intent, "greet") { return "greet" } + return "assert" +} + +// ── sem_to_spec: SemFrame -> realizer slot map ──────────────────────────────── +// +// The "lang" key from the SemFrame is forwarded into the GramSpec so that +// realize() can resolve the correct language profile. + +fn sem_to_spec(frame: [String]) -> [String] { + let intent: String = sem_intent(frame) + let subject: String = sem_subject(frame) + let obj: String = sem_object(frame) + let mods: String = sem_modifiers(frame) + let lang_code: String = sem_lang(frame) + let location: String = sem_first_modifier(mods) + + if str_eq(intent, "greet") { + let spec: [String] = native_list_empty() + let spec = native_list_append(spec, "intent") + let spec = native_list_append(spec, "greet") + let spec = native_list_append(spec, "agent") + let spec = native_list_append(spec, subject) + let spec = native_list_append(spec, "predicate") + let spec = native_list_append(spec, "") + let spec = native_list_append(spec, "patient") + let spec = native_list_append(spec, "") + let spec = native_list_append(spec, "location") + let spec = native_list_append(spec, "") + let spec = native_list_append(spec, "tense") + let spec = native_list_append(spec, "present") + let spec = native_list_append(spec, "aspect") + let spec = native_list_append(spec, "simple") + let spec = native_list_append(spec, "lang") + let spec = native_list_append(spec, lang_code) + return spec + } + + if str_eq(intent, "describe") { + let spec: [String] = native_list_empty() + let spec = native_list_append(spec, "intent") + let spec = native_list_append(spec, "assert") + let spec = native_list_append(spec, "agent") + let spec = native_list_append(spec, subject) + let spec = native_list_append(spec, "predicate") + let spec = native_list_append(spec, "be") + let spec = native_list_append(spec, "patient") + let spec = native_list_append(spec, obj) + let spec = native_list_append(spec, "location") + let spec = native_list_append(spec, location) + let spec = native_list_append(spec, "tense") + let spec = native_list_append(spec, "present") + let spec = native_list_append(spec, "aspect") + let spec = native_list_append(spec, "simple") + let spec = native_list_append(spec, "lang") + let spec = native_list_append(spec, lang_code) + return spec + } + + let realize_intent: String = sem_intent_to_realize(intent) + let spec: [String] = native_list_empty() + let spec = native_list_append(spec, "intent") + let spec = native_list_append(spec, realize_intent) + let spec = native_list_append(spec, "agent") + let spec = native_list_append(spec, subject) + let spec = native_list_append(spec, "predicate") + let spec = native_list_append(spec, obj) + let spec = native_list_append(spec, "patient") + let spec = native_list_append(spec, "") + let spec = native_list_append(spec, "location") + let spec = native_list_append(spec, location) + let spec = native_list_append(spec, "tense") + let spec = native_list_append(spec, "present") + let spec = native_list_append(spec, "aspect") + let spec = native_list_append(spec, "simple") + let spec = native_list_append(spec, "lang") + let spec = native_list_append(spec, lang_code) + return spec +} + +// ── sem_to_spec_full ────────────────────────────────────────────────────────── + +fn sem_to_spec_full(frame: [String], verb: String, tense: String, aspect: String) -> [String] { + let intent: String = sem_intent(frame) + let subject: String = sem_subject(frame) + let obj: String = sem_object(frame) + let mods: String = sem_modifiers(frame) + let lang_code: String = sem_lang(frame) + let location: String = sem_first_modifier(mods) + + if str_eq(intent, "greet") { + return sem_to_spec(frame) + } + + if str_eq(intent, "describe") { + let spec: [String] = native_list_empty() + let spec = native_list_append(spec, "intent") + let spec = native_list_append(spec, "assert") + let spec = native_list_append(spec, "agent") + let spec = native_list_append(spec, subject) + let spec = native_list_append(spec, "predicate") + let spec = native_list_append(spec, "be") + let spec = native_list_append(spec, "patient") + let spec = native_list_append(spec, obj) + let spec = native_list_append(spec, "location") + let spec = native_list_append(spec, location) + let spec = native_list_append(spec, "tense") + let spec = native_list_append(spec, tense) + let spec = native_list_append(spec, "aspect") + let spec = native_list_append(spec, aspect) + let spec = native_list_append(spec, "lang") + let spec = native_list_append(spec, lang_code) + return spec + } + + let realize_intent: String = sem_intent_to_realize(intent) + let spec: [String] = native_list_empty() + let spec = native_list_append(spec, "intent") + let spec = native_list_append(spec, realize_intent) + let spec = native_list_append(spec, "agent") + let spec = native_list_append(spec, subject) + let spec = native_list_append(spec, "predicate") + let spec = native_list_append(spec, verb) + let spec = native_list_append(spec, "patient") + let spec = native_list_append(spec, obj) + let spec = native_list_append(spec, "location") + let spec = native_list_append(spec, location) + let spec = native_list_append(spec, "tense") + let spec = native_list_append(spec, tense) + let spec = native_list_append(spec, "aspect") + let spec = native_list_append(spec, aspect) + let spec = native_list_append(spec, "lang") + let spec = native_list_append(spec, lang_code) + return spec +} + +// ── Greet realization helper ────────────────────────────────────────────────── + +fn sem_realize_greet(subject: String) -> String { + if str_eq(subject, "") { + return "Hello." + } + return "Hello, " + subject + "." +} + +// ── sem_realize: SemFrame -> text ───────────────────────────────────────────── + +fn sem_realize(frame: [String]) -> String { + let intent: String = sem_intent(frame) + + if str_eq(intent, "greet") { + return sem_realize_greet(sem_subject(frame)) + } + + let spec: [String] = sem_to_spec(frame) + return realize(spec) +} + +// ── sem_realize_full ────────────────────────────────────────────────────────── + +fn sem_realize_full(frame: [String], verb: String, tense: String, aspect: String) -> String { + let intent: String = sem_intent(frame) + + if str_eq(intent, "greet") { + return sem_realize_greet(sem_subject(frame)) + } + + let spec: [String] = sem_to_spec_full(frame, verb, tense, aspect) + return realize(spec) +} + +// ── sem_realize_lang: realize in an explicitly specified language ────────────── +// +// Convenience for callers that want to specify the output language without +// constructing a full SemFrame. The lang_code overrides whatever "lang" is +// set in the frame. + +fn sem_realize_lang(frame: [String], lang_code: String) -> String { + let intent: String = sem_intent(frame) + + if str_eq(intent, "greet") { + return sem_realize_greet(sem_subject(frame)) + } + + // Inject the lang_code into the frame before converting to spec. + let patched: [String] = slots_set(frame, "lang", lang_code) + let spec: [String] = sem_to_spec(patched) + return realize(spec) +} diff --git a/elp/src/semantics.elh b/elp/src/semantics.elh new file mode 100644 index 0000000..68304f8 --- /dev/null +++ b/elp/src/semantics.elh @@ -0,0 +1,18 @@ +// auto-generated by elc --emit-header - do not edit +extern fn sem_frame(intent: String, subject: String, obj: String, modifiers: String) -> Any +extern fn sem_frame_lang(intent: String, subject: String, obj: String, modifiers: String, lang_code: String) -> Any +extern fn sem_frame_simple(intent: String, subject: String) -> Any +extern fn sem_frame_obj(intent: String, subject: String, obj: String) -> Any +extern fn sem_intent(frame: Any) -> String +extern fn sem_subject(frame: Any) -> String +extern fn sem_object(frame: Any) -> String +extern fn sem_modifiers(frame: Any) -> String +extern fn sem_lang(frame: Any) -> String +extern fn sem_first_modifier(mods: String) -> String +extern fn sem_intent_to_realize(intent: String) -> String +extern fn sem_to_spec(frame: Any) -> Any +extern fn sem_to_spec_full(frame: Any, verb: String, tense: String, aspect: String) -> Any +extern fn sem_realize_greet(subject: String) -> String +extern fn sem_realize(frame: Any) -> String +extern fn sem_realize_full(frame: Any, verb: String, tense: String, aspect: String) -> String +extern fn sem_realize_lang(frame: Any, lang_code: String) -> String diff --git a/elp/src/vocabulary-akk.el b/elp/src/vocabulary-akk.el new file mode 100644 index 0000000..2d97974 --- /dev/null +++ b/elp/src/vocabulary-akk.el @@ -0,0 +1,1259 @@ +// vocabulary-akk.el — Akkadian vocabulary seed +// 1238 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 1238 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_akk_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["Marduk", "noun", "Marduk", "", "", "", "Marduk chief god"]) + let v = native_list_append(v, ["mû", "noun", "mû", "", "", "", "water"]) + let v = native_list_append(v, ["urdu", "noun", "urdu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gulgul", "noun", "gulgul", "", "", "", "construct state of"]) + let v = native_list_append(v, ["lū", "noun", "lū", "", "", "", "or"]) + let v = native_list_append(v, ["kalbu", "noun", "kalbu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["ilu", "noun", "ilu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kāsu", "noun", "kāsu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀀𒈝", "noun", "𒀀𒈝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒄿𒇻", "noun", "𒄿𒇻", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒍏𒄩𒍣𒅔", "noun", "𒍏𒄩𒍣𒅔", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["barbarum", "noun", "barbarū", "", "", "", "wolf"]) + let v = native_list_append(v, ["ardu", "noun", "ardu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋾𒊺𒀉", "noun", "𒋾𒊺𒀉", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒈾𒀾𒊒", "noun", "𒈾𒀾𒊒", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒈬𒄷𒌝", "noun", "𒈬𒄷𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒄑𒂟", "noun", "𒄑𒂟", "", "", "", "scales"]) + let v = native_list_append(v, ["Šamaš", "noun", "Šamaš", "", "", "", "Shamash the sun"]) + let v = native_list_append(v, ["𒂊𒉡𒈠𒂊𒇺", "noun", "𒂊𒉡𒈠𒂊𒇺", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒂷𒆪", "noun", "𒂷𒆪", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒋗𒌑𒊒", "noun", "𒋗𒌑𒊒", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["patrum", "noun", "patrū", "", "", "", "knife dagger sword"]) + let v = native_list_append(v, ["ardum", "noun", "ardum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mutum", "noun", "mutū", "", "", "", "husband"]) + let v = native_list_append(v, ["aptum", "noun", "apātum", "", "", "", "window window opening"]) + let v = native_list_append(v, ["𒀀𒉿𒈝", "noun", "𒀀𒉿𒈝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀀𒉿𒇴", "noun", "𒀀𒉿𒇴", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁲𒉡𒌝", "noun", "𒁲𒉡𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁲𒉏", "noun", "𒁲𒉏", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁕𒀀𒀀𒉡𒌝", "noun", "𒁕𒀀𒀀𒉡𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁕𒀀𒀀𒉆", "noun", "𒁕𒀀𒀀𒉆", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁕𒀀𒀀𒉌", "noun", "𒁕𒀀𒀀𒉌", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["Adad", "noun", "Adad", "", "", "", "Adad the god"]) + let v = native_list_append(v, ["𒆠𒅖𒁍", "noun", "𒆠𒅖𒁍", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀀𒉿𒅆", "noun", "𒀀𒉿𒅆", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒆠𒅖𒁉", "noun", "𒆠𒅖𒁉", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["gardumu", "noun", "gardumu", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["šar", "noun", "šar", "", "", "", "construct state of"]) + let v = native_list_append(v, ["𒅈𒂵𒌋𒌋𒉡", "noun", "𒅈𒂵𒌋𒌋𒉡", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["ellum", "noun", "ellum", "", "", "", "sesame oil of"]) + let v = native_list_append(v, ["idum", "noun", "idū", "", "", "", "arm"]) + let v = native_list_append(v, ["argamannu", "noun", "argamannu", "", "", "", "red purple"]) + let v = native_list_append(v, ["𒊭𒄠𒁀𒇷𒅋𒌈", "noun", "𒊭𒄠𒁀𒇷𒅋𒌈", "", "", "", "fenugreek"]) + let v = native_list_append(v, ["bardu", "noun", "bardu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅇𒆪𒊒𒌝", "noun", "𒅇𒆪𒊒𒌝", "", "", "", "kiln-fired brick"]) + let v = native_list_append(v, ["Ištar", "noun", "Ištar", "", "", "", "Ishtar goddess of"]) + let v = native_list_append(v, ["bardum", "noun", "bardum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀀𒇉𒌓𒄒𒉣", "noun", "𒀀𒇉𒌓𒄒𒉣", "", "", "", "Euphrates"]) + let v = native_list_append(v, ["𒀸𒋩", "noun", "𒀸𒋩", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["urdum", "noun", "urdum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅀𒁀𒊓", "noun", "𒅀𒁀𒊓", "", "", "", "Jebus the Caananite"]) + let v = native_list_append(v, ["𒅀𒁉𒊓", "noun", "𒅀𒁉𒊓", "", "", "", "Jebus the Canaanite"]) + let v = native_list_append(v, ["𒅀𒁍𒋗", "noun", "𒅀𒁍𒋗", "", "", "", "Jebus the Caananite"]) + let v = native_list_append(v, ["𒅀𒐀𒋢", "noun", "𒅀𒐀𒋢", "", "", "", "Jehoash"]) + let v = native_list_append(v, ["𒅀𒆪𒌋𒆠𒉡", "noun", "𒅀𒆪𒌋𒆠𒉡", "", "", "", "Jehoiachin"]) + let v = native_list_append(v, ["𒁹𒀭𒂗𒈗𒋀", "noun", "𒁹𒀭𒂗𒈗𒋀", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁹𒄩𒍝𒆥𒀀𒌑", "noun", "𒁹𒄩𒍝𒆥𒀀𒌑", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁹𒅀𒌑𒄩𒍣", "noun", "𒁹𒅀𒌑𒄩𒍣", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒆳𒅀𒌑𒁕𒀀𒀀", "noun", "𒆳𒅀𒌑𒁕𒀀𒀀", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁹𒈨𒈾𒋛𒄿", "noun", "𒁹𒈨𒈾𒋛𒄿", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒈬𒊺𒊩𒌨𒌅", "noun", "𒈬𒊺𒊩𒌨𒌅", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒌷𒀸𒋡𒇻𒈾𒆠", "noun", "𒌷𒀸𒋡𒇻𒈾𒆠", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["elum", "noun", "elum", "", "", "", "top upper side"]) + let v = native_list_append(v, ["gūdu", "noun", "gūdānu", "", "", "", "leather bag waterskin"]) + let v = native_list_append(v, ["𒉌𒌓𒍝𒆴𒀀", "noun", "𒉌𒌓𒍝𒆴𒀀", "", "", "", "lapis lazuli"]) + let v = native_list_append(v, ["𒆳𒈪𒄑𒊑", "noun", "𒆳𒈪𒄑𒊑", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒆪𒋛", "noun", "𒆪𒋛", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒉌𒅅𒆪𒌑", "noun", "𒉌𒅅𒆪𒌑", "", "", "", "Necho I a"]) + let v = native_list_append(v, ["𒆳𒆠𒈾𒄴𒈾", "noun", "𒆳𒆠𒈾𒄴𒈾", "", "", "", "Cuneiform form of"]) + let v = native_list_append(v, ["𒄿𒈝", "noun", "𒄿𒈝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒍝𒈠𒊒𒌝", "noun", "𒍝𒈠𒊒𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀭𒇸", "noun", "𒀭𒇸", "", "", "", "demon deity"]) + let v = native_list_append(v, ["abdu", "noun", "abdu", "", "", "", "servant slave"]) + let v = native_list_append(v, ["𒅀𒁍𒋢", "noun", "𒅀𒁍𒋢", "", "", "", "Jebus the Caananite"]) + let v = native_list_append(v, ["𒊓𒄠𒋢𒌝", "noun", "𒊓𒄠𒋢𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀊𒁍", "noun", "𒀊𒁍", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒉌𒅁𒄷𒊑𒊑𒅀", "noun", "𒉌𒅁𒄷𒊑𒊑𒅀", "", "", "", "Tutankhamun"]) + let v = native_list_append(v, ["asum", "noun", "asum", "", "", "", "myrtle"]) + let v = native_list_append(v, ["𒀠𒁍𒌝", "noun", "𒀠𒁍𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["wardu", "noun", "wardu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄩𒄠𒈬𒊏𒁉", "noun", "𒄩𒄠𒈬𒊏𒁉", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒅕𒍢𒂊𒌈", "noun", "𒅕𒍢𒂊𒌈", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀀𒊏𒀭𒌓", "noun", "𒀀𒊏𒀭𒌓", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["kudurru", "noun", "kudurrū", "", "", "", "boundary stone boundary"]) + let v = native_list_append(v, ["ilum", "noun", "ilū", "", "", "", "god deity"]) + let v = native_list_append(v, ["iltum", "noun", "ilātum", "", "", "", "goddess"]) + let v = native_list_append(v, ["šamû", "noun", "šamû", "", "", "", "sky heaven"]) + let v = native_list_append(v, ["bītum", "noun", "bītātum", "", "", "", "house"]) + let v = native_list_append(v, ["ēkallum", "noun", "ēkallātum", "", "", "", "palace"]) + let v = native_list_append(v, ["awīlum", "noun", "awīlû", "", "", "", "man"]) + let v = native_list_append(v, ["bēlum", "noun", "bēlū", "", "", "", "lord"]) + let v = native_list_append(v, ["bēltum", "noun", "bēlētum", "", "", "", "lady mistress"]) + let v = native_list_append(v, ["erṣetum", "noun", "erṣētum", "", "", "", "earth land"]) + let v = native_list_append(v, ["kāsum", "noun", "kāsātum", "", "", "", "a cup goblet"]) + let v = native_list_append(v, ["kankum", "noun", "kankū", "", "", "", "seal"]) + let v = native_list_append(v, ["kunukkum", "noun", "kunukkū", "", "", "", "seal cylinder seal"]) + let v = native_list_append(v, ["kanīkum", "noun", "kanīkū", "", "", "", "sealed document"]) + let v = native_list_append(v, ["šarrāqum", "noun", "šarrāqū", "", "", "", "thief robber"]) + let v = native_list_append(v, ["𒀀𒈾𒆪", "noun", "𒀀𒈾𒆪", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["paššūrum", "noun", "paššūrū", "", "", "", "dining tray table"]) + let v = native_list_append(v, ["ālum", "noun", "ālānū", "", "", "", "city town"]) + let v = native_list_append(v, ["muškēnum", "noun", "muškēnū", "", "", "", "commoner dependent a"]) + let v = native_list_append(v, ["ilū", "noun", "ilū", "", "", "", "plural of ilum"]) + let v = native_list_append(v, ["ilānū", "noun", "ilānū", "", "", "", "plural of ilum"]) + let v = native_list_append(v, ["abum", "noun", "abbū", "", "", "", "father"]) + let v = native_list_append(v, ["amtum", "noun", "amātum", "", "", "", "female slave female"]) + let v = native_list_append(v, ["ḫurāṣum", "noun", "ḫurāṣum", "", "", "", "gold"]) + let v = native_list_append(v, ["kaspum", "noun", "kaspum", "", "", "", "silver"]) + let v = native_list_append(v, ["mārum", "noun", "mārū", "", "", "", "son"]) + let v = native_list_append(v, ["mārtum", "noun", "mārātum", "", "", "", "daughter"]) + let v = native_list_append(v, ["qaqqadum", "noun", "qaqqadātum", "", "", "", "head"]) + let v = native_list_append(v, ["ṣābum", "noun", "ṣābū", "", "", "", "worker soldier"]) + let v = native_list_append(v, ["šarrum", "noun", "šarrū", "", "", "", "king"]) + let v = native_list_append(v, ["šarratum", "noun", "šarrātum", "", "", "", "queen"]) + let v = native_list_append(v, ["wardum", "noun", "wardū", "", "", "", "male slave male"]) + let v = native_list_append(v, ["rēšum", "noun", "rēšū", "", "", "", "head"]) + let v = native_list_append(v, ["aššatum", "noun", "aššātum", "", "", "", "wife"]) + let v = native_list_append(v, ["kakkabum", "noun", "kakkabū", "", "", "", "star"]) + let v = native_list_append(v, ["emūqum", "noun", "emūqū", "", "", "", "strength power force"]) + let v = native_list_append(v, ["īnum", "noun", "īnū", "", "", "", "eye"]) + let v = native_list_append(v, ["pānum", "noun", "pānū", "", "", "", "front front part"]) + let v = native_list_append(v, ["līmum", "noun", "līmum", "", "", "", "one thousand 1000"]) + let v = native_list_append(v, ["išdum", "noun", "išdātum", "", "", "", "base foundation bottom"]) + let v = native_list_append(v, ["libbum", "noun", "libbū", "", "", "", "heart abdomen womb"]) + let v = native_list_append(v, ["nārum", "noun", "nārātum", "", "", "", "river canal"]) + let v = native_list_append(v, ["šīpātum", "noun", "šīpātum", "", "", "", "wool fleece"]) + let v = native_list_append(v, ["šārtum", "noun", "šārātum", "", "", "", "a single hair"]) + let v = native_list_append(v, ["kirûm", "noun", "kirû", "", "", "", "garden orchard"]) + let v = native_list_append(v, ["ṭuppum", "noun", "ṭuppū", "", "", "", "tablet document letter"]) + let v = native_list_append(v, ["aradum", "noun", "aradum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kirû", "noun", "kirû", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kirium", "noun", "kirium", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ummum", "noun", "ummātum", "", "", "", "mother"]) + let v = native_list_append(v, ["ummu", "noun", "ummu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznum", "noun", "uznātum", "", "", "", "ear"]) + let v = native_list_append(v, ["uznu", "noun", "uznu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arārum", "noun", "arārū", "", "", "", "curse"]) + let v = native_list_append(v, ["šamšum", "noun", "šamšānu", "", "", "", "sun"]) + let v = native_list_append(v, ["ūmum", "noun", "ūmū", "", "", "", "day daytime from"]) + let v = native_list_append(v, ["qanûm", "noun", "qanû", "", "", "", "reed cane"]) + let v = native_list_append(v, ["aplum", "noun", "aplum", "", "", "", "heir oldest son"]) + let v = native_list_append(v, ["agammum", "noun", "agammū", "", "", "", "marsh lagoon"]) + let v = native_list_append(v, ["īkum", "noun", "īkū", "", "", "", "dyke ditch"]) + let v = native_list_append(v, ["Šarrum-kīn", "noun", "Šarrum-kīn", "", "", "", "Sargon of Akkad"]) + let v = native_list_append(v, ["imērum", "noun", "imērū", "", "", "", "donkey"]) + let v = native_list_append(v, ["sinništum", "noun", "sinnišātum", "", "", "", "female"]) + let v = native_list_append(v, ["mātum", "noun", "mātātum", "", "", "", "home country native"]) + let v = native_list_append(v, ["awīltum", "noun", "awīlātum", "", "", "", "woman lady"]) + let v = native_list_append(v, ["ṣeḫrum", "noun", "ṣeḫrū", "", "", "", "child"]) + let v = native_list_append(v, ["ṣeḫērum", "noun", "ṣeḫērum", "", "", "", "childhood"]) + let v = native_list_append(v, ["ṣuḫārum", "noun", "ṣuḫārû", "", "", "", "boy male child"]) + let v = native_list_append(v, ["ṣuḫārtum", "noun", "ṣuḫārātum", "", "", "", "young woman female"]) + let v = native_list_append(v, ["aḫûm", "noun", "aḫû", "", "", "", "stranger foreigner outsider"]) + let v = native_list_append(v, ["aḫum", "noun", "aḫḫū", "", "", "", "brother"]) + let v = native_list_append(v, ["kappum", "noun", "kappū", "", "", "", "hand palm of"]) + let v = native_list_append(v, ["waklum", "noun", "waklū", "", "", "", "overseer inspector foreman"]) + let v = native_list_append(v, ["šinnum", "noun", "šinnātum", "", "", "", "tooth"]) + let v = native_list_append(v, ["pûm", "noun", "pâtum", "", "", "", "mouth"]) + let v = native_list_append(v, ["šumum", "noun", "šumū", "", "", "", "name"]) + let v = native_list_append(v, ["šattum", "noun", "šanātum", "", "", "", "year"]) + let v = native_list_append(v, ["nīšum", "noun", "nīšum", "", "", "", "life"]) + let v = native_list_append(v, ["zikrum", "noun", "zikrū", "", "", "", "discourse utterance pronouncement"]) + let v = native_list_append(v, ["pān šattim", "noun", "pān šattim", "", "", "", "spring"]) + let v = native_list_append(v, ["ṭabtum", "noun", "ṭabtum", "", "", "", "salt"]) + let v = native_list_append(v, ["birkum", "noun", "birkū", "", "", "", "knee"]) + let v = native_list_append(v, ["qaqqarum", "noun", "qaqqarū", "", "", "", "the earth"]) + let v = native_list_append(v, ["abnum", "noun", "abnū", "", "", "", "stone rock"]) + let v = native_list_append(v, ["alpum", "noun", "alpū", "", "", "", "ox bull"]) + let v = native_list_append(v, ["dayyānum", "noun", "dayyānū", "", "", "", "judge"]) + let v = native_list_append(v, ["aḫātum", "noun", "aḫḫātum", "", "", "", "sister"]) + let v = native_list_append(v, ["šūmū", "noun", "šūmū", "", "", "", "garlic"]) + let v = native_list_append(v, ["zikarum", "noun", "zikarū", "", "", "", "man male"]) + let v = native_list_append(v, ["išarum", "noun", "išarū", "", "", "", "penis phallus"]) + let v = native_list_append(v, ["šamnum", "noun", "šamnum", "", "", "", "oil fat cream"]) + let v = native_list_append(v, ["šamaššammum", "noun", "šamaššammū", "", "", "", "an oil-producing plant"]) + let v = native_list_append(v, ["šammum", "noun", "šammū", "", "", "", "plant grass"]) + let v = native_list_append(v, ["šammi Šamaš", "noun", "šammū Šamaš", "", "", "", "sunflower"]) + let v = native_list_append(v, ["ḫaṣṣinnum", "noun", "ḫaṣṣinnū", "", "", "", "axe hoe digging"]) + let v = native_list_append(v, ["warḫum", "noun", "warḫum", "", "", "", "moon"]) + let v = native_list_append(v, ["urrum", "noun", "urrū", "", "", "", "day daylight opposed"]) + let v = native_list_append(v, ["mazzaztum", "noun", "mazzazātum", "", "", "", "stand for an"]) + let v = native_list_append(v, ["ālikum", "noun", "ālikum", "", "", "", "traveller messenger"]) + let v = native_list_append(v, ["ilkum", "noun", "ilkū", "", "", "", "ilkum-service i.e. work"]) + let v = native_list_append(v, ["alaktum", "noun", "alkātum", "", "", "", "behaviour customs"]) + let v = native_list_append(v, ["kalbum", "noun", "kalbū", "", "", "", "dog also as"]) + let v = native_list_append(v, ["qarnum", "noun", "qarnātum", "", "", "", "horn"]) + let v = native_list_append(v, ["nagbum", "noun", "nagbū", "", "", "", "underground water"]) + let v = native_list_append(v, ["ēnum", "noun", "ēnū", "", "", "", "lord"]) + let v = native_list_append(v, ["eleppum", "noun", "eleppētum", "", "", "", "ship boat"]) + let v = native_list_append(v, ["lītum", "noun", "liātum", "", "", "", "cow"]) + let v = native_list_append(v, ["lûm", "noun", "lû", "", "", "", "bull"]) + let v = native_list_append(v, ["mēsum", "noun", "mēsū", "", "", "", "mēsum tree mēsum"]) + let v = native_list_append(v, ["Bābilim", "noun", "Bābilim", "", "", "", "Babylon"]) + let v = native_list_append(v, ["ugārum", "noun", "ugārû", "", "", "", "arable land meadow"]) + let v = native_list_append(v, ["bābum", "noun", "bābū", "", "", "", "door gate opening"]) + let v = native_list_append(v, ["eperum", "noun", "eperū", "", "", "", "dust"]) + let v = native_list_append(v, ["dārum", "noun", "dārū", "", "", "", "perpetuity continuum permanence"]) + let v = native_list_append(v, ["amurdinnum", "noun", "amurdinnum", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["Urarṭu", "noun", "Urarṭu", "", "", "", "Urartu a country"]) + let v = native_list_append(v, ["sīḫum", "noun", "sīḫum", "", "", "", "an uncertain kind"]) + let v = native_list_append(v, ["irgilum", "noun", "irgilum", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ergilum", "noun", "ergilū", "", "", "", "a type of"]) + let v = native_list_append(v, ["gišimmarum", "noun", "gišimmarātum", "", "", "", "date palm"]) + let v = native_list_append(v, ["ṣerretum", "noun", "ṣerrētum", "", "", "", "concubine subsidiary wife"]) + let v = native_list_append(v, ["musukkannum", "noun", "musukkannū", "", "", "", "a musukkannu tree"]) + let v = native_list_append(v, ["akalum", "noun", "akalum", "", "", "", "bread loaf of"]) + let v = native_list_append(v, ["aklum", "noun", "aklum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌓𒍣", "noun", "𒌓𒍣", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["erbum", "noun", "erbû", "", "", "", "locust"]) + let v = native_list_append(v, ["erebum", "noun", "erebum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṣuprum", "noun", "ṣuprātum", "", "", "", "nail"]) + let v = native_list_append(v, ["midrum", "noun", "midrū", "", "", "", "midru bread a"]) + let v = native_list_append(v, ["lamassum", "noun", "lamassātum", "", "", "", "a lamassu protective"]) + let v = native_list_append(v, ["šēdum", "noun", "šēdū", "", "", "", "a šēdum protective"]) + let v = native_list_append(v, ["ziqqurratum", "noun", "ziqqurrētum", "", "", "", "temple tower ziggurat"]) + let v = native_list_append(v, ["iṣum", "noun", "iṣṣū", "", "", "", "tree"]) + let v = native_list_append(v, ["kispu", "noun", "kispu", "", "", "", "funerary offering"]) + let v = native_list_append(v, ["šīmtum", "noun", "šīmātum", "", "", "", "determined order nature"]) + let v = native_list_append(v, ["gallûm", "noun", "gallû", "", "", "", "gallu demon"]) + let v = native_list_append(v, ["ariktum", "noun", "arkātum", "", "", "", "a weapon a"]) + let v = native_list_append(v, ["būrum", "noun", "būrū", "", "", "", "young calf of"]) + let v = native_list_append(v, ["annakum", "noun", "annakum", "", "", "", "tin lead"]) + let v = native_list_append(v, ["annaku", "noun", "annaku", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parzillum", "noun", "parzillum", "", "", "", "iron"]) + let v = native_list_append(v, ["ṭupšarrum", "noun", "ṭupšarrū", "", "", "", "scribe tablet writer"]) + let v = native_list_append(v, ["zību", "noun", "zību", "", "", "", "jackal"]) + let v = native_list_append(v, ["iṣṣūrum", "noun", "iṣṣūrū", "", "", "", "bird"]) + let v = native_list_append(v, ["zībum", "noun", "zībum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bēl lā ilim", "noun", "bēlū lā ilim", "", "", "", "unhappy person"]) + let v = native_list_append(v, ["kaprum", "noun", "kaprū", "", "", "", "village in the"]) + let v = native_list_append(v, ["awātum", "noun", "awâtum", "", "", "", "word utterance"]) + let v = native_list_append(v, ["zumbum", "noun", "zumbum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zubbum", "noun", "zubbū", "", "", "", "fly"]) + let v = native_list_append(v, ["daltum", "noun", "dalātum", "", "", "", "door"]) + let v = native_list_append(v, ["mutqûm", "noun", "mutqûm", "", "", "", "sweet bread"]) + let v = native_list_append(v, ["zērum", "noun", "zērū", "", "", "", "seed"]) + let v = native_list_append(v, ["šiqlum", "noun", "šiqlū", "", "", "", "shekel a unit"]) + let v = native_list_append(v, ["immerum", "noun", "immerū", "", "", "", "sheep ram"]) + let v = native_list_append(v, ["bibbum", "noun", "bibbum", "", "", "", "wild sheep"]) + let v = native_list_append(v, ["lišānum", "noun", "lišānātum", "", "", "", "tongue"]) + let v = native_list_append(v, ["šaḫûm", "noun", "šaḫû", "", "", "", "pig boar"]) + let v = native_list_append(v, ["maškanum", "noun", "maškanū", "", "", "", "threshing floor"]) + let v = native_list_append(v, ["nadītum", "noun", "nadiātum", "", "", "", "a nadītum priestess"]) + let v = native_list_append(v, ["sūqum", "noun", "sūqātum", "", "", "", "street"]) + let v = native_list_append(v, ["qadûm", "noun", "qadû", "", "", "", "owl"]) + let v = native_list_append(v, ["warad ēkallim", "noun", "wardū ēkallim", "", "", "", "slave of the"]) + let v = native_list_append(v, ["kandum", "noun", "kandānu", "", "", "", "a kandu jar"]) + let v = native_list_append(v, ["Ninua", "noun", "Ninua", "", "", "", "Nineveh capital city"]) + let v = native_list_append(v, ["nūnum", "noun", "nūnū", "", "", "", "fish"]) + let v = native_list_append(v, ["kakkum", "noun", "kakkū", "", "", "", "weapon"]) + let v = native_list_append(v, ["šikarum", "noun", "šikarum", "", "", "", "beer made of"]) + let v = native_list_append(v, ["šulmum", "noun", "šulmum", "", "", "", "completeness intact state"]) + let v = native_list_append(v, ["biṣṣūrum", "noun", "biṣṣūrū", "", "", "", "vulva or vagina"]) + let v = native_list_append(v, ["dāmum", "noun", "dāmū", "", "", "", "blood"]) + let v = native_list_append(v, ["Enūma Eliš", "noun", "Enūma Eliš", "", "", "", "The Enûma Eliš"]) + let v = native_list_append(v, ["muḫḫum", "noun", "muḫḫum", "", "", "", "skull pate"]) + let v = native_list_append(v, ["Idiglat", "noun", "Idiglat", "", "", "", "Tigris"]) + let v = native_list_append(v, ["arantum", "noun", "arantum", "", "", "", "A type of"]) + let v = native_list_append(v, ["appum", "noun", "appātum", "", "", "", "nose"]) + let v = native_list_append(v, ["Ausi'i", "noun", "Ausi'i", "", "", "", "Hoshea the nineteenth"]) + let v = native_list_append(v, ["𒁹𒀀𒌑𒋛𒀪", "noun", "𒁹𒀀𒌑𒋛𒀪", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["akkû", "noun", "akkû", "", "", "", "a type of"]) + let v = native_list_append(v, ["addum", "noun", "addum", "", "", "", "storm thunderstorm"]) + let v = native_list_append(v, ["Lamaštum", "noun", "Lamaštum", "", "", "", "Lamashtu a female"]) + let v = native_list_append(v, ["napištum", "noun", "napšātum", "", "", "", "throat"]) + let v = native_list_append(v, ["kišādum", "noun", "kišādātum", "", "", "", "neck throat the"]) + let v = native_list_append(v, ["ḫurḫudum", "noun", "ḫurḫudum", "", "", "", "trachea larynx throat"]) + let v = native_list_append(v, ["ur'udum", "noun", "ur'udum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Aššūr", "noun", "Aššūr", "", "", "", "Assur political capital"]) + let v = native_list_append(v, ["kiššatum", "noun", "kiššatum", "", "", "", "totality all of"]) + let v = native_list_append(v, ["apkallum", "noun", "apkallū", "", "", "", "sage. wise man"]) + let v = native_list_append(v, ["kussûm", "noun", "kussû", "", "", "", "chair seat throne"]) + let v = native_list_append(v, ["dīnum", "noun", "dīnātum", "", "", "", "decision judgment verdict"]) + let v = native_list_append(v, ["nūrum", "noun", "nūrum", "", "", "", "light"]) + let v = native_list_append(v, ["ṣēnum", "noun", "ṣēnū", "", "", "", "sheep flock of"]) + let v = native_list_append(v, ["malkum", "noun", "malkū", "", "", "", "king prince foreign"]) + let v = native_list_append(v, ["ḫamuštum", "noun", "ḫamšātum", "", "", "", "one fifth"]) + let v = native_list_append(v, ["kabsum", "noun", "kabsū", "", "", "", "young male sheep"]) + let v = native_list_append(v, ["gammalu", "noun", "gammalû", "", "", "", "camel"]) + let v = native_list_append(v, ["šalāmum", "noun", "šalāmum", "", "", "", "health physical well-being"]) + let v = native_list_append(v, ["eṣemtum", "noun", "eṣmētum", "", "", "", "bone"]) + let v = native_list_append(v, ["pīrum", "noun", "pīrū", "", "", "", "elephant"]) + let v = native_list_append(v, ["qištum", "noun", "qišātum", "", "", "", "forest grove"]) + let v = native_list_append(v, ["guḫlum", "noun", "guḫlum", "", "", "", "kohl antimony paste"]) + let v = native_list_append(v, ["abīlum", "noun", "abīlum", "", "", "", "Old Akkadian form"]) + let v = native_list_append(v, ["mār mārim", "noun", "mārū mārim", "", "", "", "grandson"]) + let v = native_list_append(v, ["mār damqi", "noun", "mārū damqi", "", "", "", "nobleman aristocrat"]) + let v = native_list_append(v, ["qātum", "noun", "qātātum", "", "", "", "hand"]) + let v = native_list_append(v, ["balāṭum", "noun", "balāṭum", "", "", "", "life vigor good"]) + let v = native_list_append(v, ["qaštum", "noun", "qašātum", "", "", "", "bow"]) + let v = native_list_append(v, ["gamārum", "noun", "gamārum", "", "", "", "completeness finality"]) + let v = native_list_append(v, ["eqlum", "noun", "eqlētum", "", "", "", "field cultivated field"]) + let v = native_list_append(v, ["eṭlum", "noun", "eṭlūtum", "", "", "", "young man youth"]) + let v = native_list_append(v, ["tamkārum", "noun", "tamkārū", "", "", "", "merchant trader"]) + let v = native_list_append(v, ["šaptum", "noun", "šapātum", "", "", "", "lip"]) + let v = native_list_append(v, ["bīt ṭuppim", "noun", "bīt ṭuppātim", "", "", "", "school"]) + let v = native_list_append(v, ["burāšum", "noun", "burāšum", "", "", "", "a tree of"]) + let v = native_list_append(v, ["ikkarum", "noun", "ikkarātum", "", "", "", "farmer plowman"]) + let v = native_list_append(v, ["andurārum", "noun", "andurārum", "", "", "", "freedom exemption"]) + let v = native_list_append(v, ["darārum", "noun", "nidarrar", "", "", "", "to be free"]) + let v = native_list_append(v, ["simmiltum", "noun", "simmilātum", "", "", "", "ladder stair"]) + let v = native_list_append(v, ["pūrum", "noun", "pūrū", "", "", "", "shallow bowl platter"]) + let v = native_list_append(v, ["Šabāṭum", "noun", "Šabāṭum", "", "", "", "Šabāṭu the eleventh"]) + let v = native_list_append(v, ["qimmatum", "noun", "qimmātum", "", "", "", "hair of the"]) + let v = native_list_append(v, ["adānum", "noun", "adānātum", "", "", "", "fixed date time"]) + let v = native_list_append(v, ["idīnum", "noun", "idīnum", "", "", "", "desert steppe plain"]) + let v = native_list_append(v, ["amūtum", "noun", "amuwātum", "", "", "", "liver of a"]) + let v = native_list_append(v, ["mūšum", "noun", "mūšū", "", "", "", "night nighttime"]) + let v = native_list_append(v, ["ṣalmum", "noun", "ṣalmū", "", "", "", "effigy image likeness"]) + let v = native_list_append(v, ["lābum", "noun", "lābū", "", "", "", "lion"]) + let v = native_list_append(v, ["nēšum", "noun", "nēšū", "", "", "", "lion"]) + let v = native_list_append(v, ["sīsûm", "noun", "sīsû", "", "", "", "horse"]) + let v = native_list_append(v, ["šallūrum", "noun", "šallūrū", "", "", "", "a fruit tree"]) + let v = native_list_append(v, ["enzum", "noun", "enzētum", "", "", "", "she-goat"]) + let v = native_list_append(v, ["malāḫum", "noun", "malāḫū", "", "", "", "sailor shipwright"]) + let v = native_list_append(v, ["kalûm", "noun", "kalûm", "", "", "", "all totality entirety"]) + let v = native_list_append(v, ["Nisaba", "noun", "Nisaba", "", "", "", "Nisaba grain goddess"]) + let v = native_list_append(v, ["šadûm", "noun", "šadû", "", "", "", "mountain mountain region"]) + let v = native_list_append(v, ["išātum", "noun", "išātātum", "", "", "", "fire"]) + let v = native_list_append(v, ["Abum", "noun", "Abum", "", "", "", "Abu the fifth"]) + let v = native_list_append(v, ["Ḫammurapi", "noun", "Ḫammurapi", "", "", "", "a male given"]) + let v = native_list_append(v, ["kimtum", "noun", "kimtum", "", "", "", "family kin"]) + let v = native_list_append(v, ["ḫarrānum", "noun", "ḫarrānātum", "", "", "", "road way path"]) + let v = native_list_append(v, ["narkabtum", "noun", "narkabātum", "", "", "", "chariot for war"]) + let v = native_list_append(v, ["šēpum", "noun", "šēpētum", "", "", "", "foot"]) + let v = native_list_append(v, ["purussûm", "noun", "purussû", "", "", "", "legal decision resolution"]) + let v = native_list_append(v, ["rubûm", "noun", "rubû", "", "", "", "prince"]) + let v = native_list_append(v, ["rubātum", "noun", "rubâtum", "", "", "", "princess"]) + let v = native_list_append(v, ["Akkade", "noun", "Akkade", "", "", "", "Akkad a land"]) + let v = native_list_append(v, ["rēštum", "noun", "rēšētum", "", "", "", "beginning"]) + let v = native_list_append(v, ["rē'ûm", "noun", "rē'û", "", "", "", "participle of 𒊑𒂍𒌝"]) + let v = native_list_append(v, ["maḫrum", "noun", "maḫrum", "", "", "", "front presence"]) + let v = native_list_append(v, ["šaplum", "noun", "šaplum", "", "", "", "underside bottom"]) + let v = native_list_append(v, ["kīrum", "noun", "kīrātum", "", "", "", "oven kiln especially"]) + let v = native_list_append(v, ["Utnapištim", "noun", "Utnapištim", "", "", "", "Utnapishtim last antediluvian"]) + let v = native_list_append(v, ["šīrum", "noun", "šīrum", "", "", "", "flesh"]) + let v = native_list_append(v, ["libittum", "noun", "libnātum", "", "", "", "mudbrick brick"]) + let v = native_list_append(v, ["būdum", "noun", "būdum", "", "", "", "shoulder region between"]) + let v = native_list_append(v, ["dišpum", "noun", "dišpum", "", "", "", "honey"]) + let v = native_list_append(v, ["Igigū", "noun", "Igigū", "", "", "", "Igigi a collective"]) + let v = native_list_append(v, ["makkūrum", "noun", "makkūrum", "", "", "", "property valuables assets"]) + let v = native_list_append(v, ["dūrum", "noun", "dūrānū", "", "", "", "city wall fortification"]) + let v = native_list_append(v, ["igārum", "noun", "igārātum", "", "", "", "wall of a"]) + let v = native_list_append(v, ["inbum", "noun", "inbū", "", "", "", "fruit flower"]) + let v = native_list_append(v, ["kišpum", "noun", "kišpū", "", "", "", "sorcery evil spell"]) + let v = native_list_append(v, ["sāsum", "noun", "sāsū", "", "", "", "moth"]) + let v = native_list_append(v, ["šūšum", "noun", "šūšum", "", "", "", "liquorice"]) + let v = native_list_append(v, ["Ayyārum", "noun", "Ayyārum", "", "", "", "Ayyāru the second"]) + let v = native_list_append(v, ["Addarum", "noun", "Addarum", "", "", "", "Adar the twelfth"]) + let v = native_list_append(v, ["šūrum", "noun", "šūrū", "", "", "", "bull"]) + let v = native_list_append(v, ["tittum", "noun", "tīnātum", "", "", "", "fig tree"]) + let v = native_list_append(v, ["warkatum", "noun", "warkātum", "", "", "", "backside rear side"]) + let v = native_list_append(v, ["līlum", "noun", "līlū", "", "", "", "evening night"]) + let v = native_list_append(v, ["līliātum", "noun", "līliātum", "", "", "", "evening night"]) + let v = native_list_append(v, ["narûm", "noun", "narû", "", "", "", "stela for publicising"]) + let v = native_list_append(v, ["qabrum", "noun", "qabrū", "", "", "", "grave tomb"]) + let v = native_list_append(v, ["tarlugallum", "noun", "tarlugallū", "", "", "", "hen rooster"]) + let v = native_list_append(v, ["ebbūbum", "noun", "ebbūbū", "", "", "", "flute pipe"]) + let v = native_list_append(v, ["Šumerum", "noun", "Šumerum", "", "", "", "Sumer"]) + let v = native_list_append(v, ["šapattum", "noun", "šapattum", "", "", "", "15ᵗʰ day of"]) + let v = native_list_append(v, ["miḫiṣtum", "noun", "miḫṣātum", "", "", "", "cuneiform wedge stroke"]) + let v = native_list_append(v, ["gigurû", "noun", "gigurû", "", "", "", "name of the"]) + let v = native_list_append(v, ["santakkum", "noun", "santakkū", "", "", "", "triangle"]) + let v = native_list_append(v, ["šiqdum", "noun", "šiqdum", "", "", "", "almond tree"]) + let v = native_list_append(v, ["kabattum", "noun", "kabattum", "", "", "", "innards"]) + let v = native_list_append(v, ["ašrum", "noun", "ašrū", "", "", "", "place site location"]) + let v = native_list_append(v, ["eršum", "noun", "eršētum", "", "", "", "bed"]) + let v = native_list_append(v, ["errēšum", "noun", "errēšū", "", "", "", "cultivator tenant farmer"]) + let v = native_list_append(v, ["mūtum", "noun", "mūtum", "", "", "", "death"]) + let v = native_list_append(v, ["ziqnum", "noun", "ziqnum", "", "", "", "beard"]) + let v = native_list_append(v, ["pagrum", "noun", "pagrū", "", "", "", "body"]) + let v = native_list_append(v, ["ḫīṭum", "noun", "ḫīṭū", "", "", "", "error fault lack"]) + let v = native_list_append(v, ["ēpûm", "noun", "ēpû", "", "", "", "baker"]) + let v = native_list_append(v, ["ēpû", "noun", "ēpû", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ēpītum", "noun", "ēpiātum", "", "", "", "feminine of ēpûm"]) + let v = native_list_append(v, ["šumēlum", "noun", "šumēlum", "", "", "", "the left"]) + let v = native_list_append(v, ["Yaru'u", "noun", "Yaru'u", "", "", "", "the Nile river"]) + let v = native_list_append(v, ["tinūrum", "noun", "tinūrū", "", "", "", "oven kiln tannour"]) + let v = native_list_append(v, ["ūsum", "noun", "ūsū", "", "", "", "duck goose"]) + let v = native_list_append(v, ["egertu", "noun", "egerātu", "", "", "", "letter"]) + let v = native_list_append(v, ["šagabigalzu", "noun", "šagabigalzū", "", "", "", "a medicinal plant"]) + let v = native_list_append(v, ["šakabegalzu", "noun", "šakabegalzu", "", "", "", "rare form of"]) + let v = native_list_append(v, ["mušḫuššum", "noun", "mušḫuššū", "", "", "", "the name of"]) + let v = native_list_append(v, ["šandanakkum", "noun", "šandanakkātum", "", "", "", "administrator of date"]) + let v = native_list_append(v, ["mušītum", "noun", "mušiātum", "", "", "", "nighttime night"]) + let v = native_list_append(v, ["imnum", "noun", "imnum", "", "", "", "the right"]) + let v = native_list_append(v, ["Kinaḫnum", "noun", "Kinaḫnum", "", "", "", "Canaan"]) + let v = native_list_append(v, ["ḫassū", "noun", "ḫassū", "", "", "", "lettuce"]) + let v = native_list_append(v, ["Kūsu", "noun", "Kūsu", "", "", "", "Cush"]) + let v = native_list_append(v, ["𒈨𒈛𒄩𒆠", "noun", "𒈨𒈛𒄩𒆠", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["Meluḫḫa", "noun", "Meluḫḫa", "", "", "", "Meluhha"]) + let v = native_list_append(v, ["našru", "noun", "našru", "", "", "", "eagle"]) + let v = native_list_append(v, ["ūṣum", "noun", "ūṣū", "", "", "", "arrowhead"]) + let v = native_list_append(v, ["𒈨𒈛𒄩", "noun", "𒈨𒈛𒄩", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["kibtum", "noun", "kibātum", "", "", "", "wheat"]) + let v = native_list_append(v, ["ḫalbum", "noun", "ḫalbū", "", "", "", "forest"]) + let v = native_list_append(v, ["gūrum", "noun", "gūrum", "", "", "", "foliage/leaves of reed"]) + let v = native_list_append(v, ["šeleppûm", "noun", "šeleppû", "", "", "", "turtle"]) + let v = native_list_append(v, ["nigûtum", "noun", "nigâtum", "", "", "", "joyful music merry-making"]) + let v = native_list_append(v, ["ištānum", "noun", "ištānum", "", "", "", "north"]) + let v = native_list_append(v, ["šārum", "noun", "šārū", "", "", "", "wind"]) + let v = native_list_append(v, ["Amurrum", "noun", "Amurrum", "", "", "", "Amorite"]) + let v = native_list_append(v, ["amurrum", "noun", "amurrum", "", "", "", "west"]) + let v = native_list_append(v, ["nišum", "noun", "nišū", "", "", "", "mankind people human"]) + let v = native_list_append(v, ["nišū", "noun", "nišū", "", "", "", "plural of nišum"]) + let v = native_list_append(v, ["birqum", "noun", "birqū", "", "", "", "lightning"]) + let v = native_list_append(v, ["šuršum", "noun", "šuršū", "", "", "", "root"]) + let v = native_list_append(v, ["ayyalum", "noun", "ayyalū", "", "", "", "stag deer"]) + let v = native_list_append(v, ["enzu", "noun", "enzu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["urḫum", "noun", "urḫū", "", "", "", "road path way"]) + let v = native_list_append(v, ["bāṣum", "noun", "bāṣum", "", "", "", "sand"]) + let v = native_list_append(v, ["𒀭𒀹𒁯", "noun", "𒀭𒀹𒁯", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["dayyānam", "noun", "dayyānam", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["dayyānī", "noun", "dayyānī", "", "", "", "accusative and genitive"]) + let v = native_list_append(v, ["dīnim", "noun", "dīnim", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["erṣētum", "noun", "erṣētum", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["kišpī", "noun", "kišpī", "", "", "", "accusative and genitive"]) + let v = native_list_append(v, ["awīlim", "noun", "awīlim", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["awīlam", "noun", "awīlam", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["šūru", "noun", "šūru", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["Urušalim", "noun", "Urušalim", "", "", "", "Jerusalem"]) + let v = native_list_append(v, ["𒌑𒊒𒊓𒅆𒆠", "noun", "𒌑𒊒𒊓𒅆𒆠", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["urḫu", "noun", "urḫu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["Urašṭu", "noun", "Urašṭu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṭīdu", "noun", "ṭīdu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["ṭīdum", "noun", "ṭīdum", "", "", "", "mud clay"]) + let v = native_list_append(v, ["šalgu", "noun", "šalgu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["šalgum", "noun", "šalgum", "", "", "", "snow sleet"]) + let v = native_list_append(v, ["šēlebum", "noun", "šēlebū", "", "", "", "fox"]) + let v = native_list_append(v, ["ḫikuptaḫ", "noun", "ḫikuptaḫ", "", "", "", "Memphis Egypt"]) + let v = native_list_append(v, ["ṣillum", "noun", "ṣillum", "", "", "", "shadow shade shaded"]) + let v = native_list_append(v, ["pītum", "noun", "pītū", "", "", "", "opening aperture breach"]) + let v = native_list_append(v, ["pītu", "noun", "pītu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["ṣurrum", "noun", "ṣurrum", "", "", "", "flint obsidian"]) + let v = native_list_append(v, ["awīlu", "noun", "awīlu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["amēlu", "noun", "amēlu", "", "", "", "Middle Babylonian Standard"]) + let v = native_list_append(v, ["amīlu", "noun", "amīlu", "", "", "", "Middle Babylonian Standard"]) + let v = native_list_append(v, ["a'īlu", "noun", "a'īlu", "", "", "", "Middle Assyrian form"]) + let v = native_list_append(v, ["awīlû", "noun", "awīlû", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["gulgullum", "noun", "gulgullū", "", "", "", "skull"]) + let v = native_list_append(v, ["gulgullu", "noun", "gulgullu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["abullum", "noun", "abullātum", "", "", "", "entrance gate of"]) + let v = native_list_append(v, ["zumrum", "noun", "zumrū", "", "", "", "body of humans"]) + let v = native_list_append(v, ["nāgirum", "noun", "nāgirū", "", "", "", "town crier herald"]) + let v = native_list_append(v, ["šērum", "noun", "šērum", "", "", "", "morning star dawn"]) + let v = native_list_append(v, ["targumannum", "noun", "targumannum", "", "", "", "interpreter dragoman"]) + let v = native_list_append(v, ["pūtum", "noun", "pâtum", "", "", "", "forehead front brow"]) + let v = native_list_append(v, ["arnum", "noun", "arnū", "", "", "", "crime wrongdoing offence"]) + let v = native_list_append(v, ["šizbum", "noun", "šizbum", "", "", "", "milk"]) + let v = native_list_append(v, ["tīlum", "noun", "tīlū", "", "", "", "mound heap tell"]) + let v = native_list_append(v, ["abūbum", "noun", "abūbum", "", "", "", "the Deluge the"]) + let v = native_list_append(v, ["bibbulum", "noun", "bibbulum", "", "", "", "flood"]) + let v = native_list_append(v, ["bubbulum", "noun", "bubbulum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bīt ilim", "noun", "bītāt ilānī", "", "", "", "temple"]) + let v = native_list_append(v, ["𒀭𒉎𒂂𒄷", "noun", "𒀭𒉎𒂂𒄷", "", "", "", "Sumerogram of Anzud"]) + let v = native_list_append(v, ["šeššig", "noun", "šeššig", "", "", "", "word used to"]) + let v = native_list_append(v, ["gunû", "noun", "gunû", "", "", "", "word used to"]) + let v = native_list_append(v, ["tenû", "noun", "tenû", "", "", "", "word used to"]) + let v = native_list_append(v, ["lē'um", "noun", "lē'ū", "", "", "", "writing board of"]) + let v = native_list_append(v, ["šūtum", "noun", "šūtum", "", "", "", "south"]) + let v = native_list_append(v, ["eṭemmum", "noun", "eṭemmū", "", "", "", "ghost spirit of"]) + let v = native_list_append(v, ["wāšipum", "noun", "wāšipū", "", "", "", "exorcist incantation priest"]) + let v = native_list_append(v, ["Pazūzu", "noun", "Pazūzānu", "", "", "", "Pazuzu an evil"]) + let v = native_list_append(v, ["ṣimdatum", "noun", "ṣimdātum", "", "", "", "regulation ordinance edict"]) + let v = native_list_append(v, ["erretum", "noun", "errētum", "", "", "", "curse malediction"]) + let v = native_list_append(v, ["pušqum", "noun", "pušqū", "", "", "", "narrowness narrow place"]) + let v = native_list_append(v, ["šamûm", "noun", "šamiātum", "", "", "", "rain"]) + let v = native_list_append(v, ["rīmum", "noun", "rīmū", "", "", "", "wild bull"]) + let v = native_list_append(v, ["tamḫārum", "noun", "tamḫārū", "", "", "", "battle combat fight"]) + let v = native_list_append(v, ["simtum", "noun", "simātum", "", "", "", "fitting suitable seemly"]) + let v = native_list_append(v, ["nidintum", "noun", "nidintum", "", "", "", "present gift dowry"]) + let v = native_list_append(v, ["bānûm", "noun", "bānû", "", "", "", "participle of banûm"]) + let v = native_list_append(v, ["bīšum", "noun", "bīšū", "", "", "", "possession movable property"]) + let v = native_list_append(v, ["sikkatum", "noun", "sikkātum", "", "", "", "peg nail"]) + let v = native_list_append(v, ["sikkānum", "noun", "sikkānātum", "", "", "", "rudder steering paddle"]) + let v = native_list_append(v, ["ḫulqum", "noun", "ḫulqum", "", "", "", "lost object lost"]) + let v = native_list_append(v, ["šulmu", "noun", "šulmu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["girru", "noun", "girru", "", "", "", "lion"]) + let v = native_list_append(v, ["girrum", "noun", "girrum", "", "", "", "Mimated form of"]) + let v = native_list_append(v, ["nēmequm", "noun", "nēmequm", "", "", "", "experience knowledge wisdom"]) + let v = native_list_append(v, ["egu", "noun", "egu", "", "", "", "a thorny plant"]) + let v = native_list_append(v, ["ibrum", "noun", "ibrū", "", "", "", "comrade fellow friend"]) + let v = native_list_append(v, ["bīnum", "noun", "bīnum", "", "", "", "son"]) + let v = native_list_append(v, ["šiṭrum", "noun", "šiṭrū", "", "", "", "text inscription any"]) + let v = native_list_append(v, ["tiāmtum", "noun", "tiāmātum", "", "", "", "sea ocean"]) + let v = native_list_append(v, ["šaṭārum", "noun", "šaṭārum", "", "", "", "copy exemplar text"]) + let v = native_list_append(v, ["qīštum", "noun", "qīšātum", "", "", "", "gift presented to"]) + let v = native_list_append(v, ["siparrum", "noun", "siparrū", "", "", "", "bronze"]) + let v = native_list_append(v, ["šubultum", "noun", "šubullātum", "", "", "", "ear spike of"]) + let v = native_list_append(v, ["kārum", "noun", "kārū", "", "", "", "embankment quay wall"]) + let v = native_list_append(v, ["šuttum", "noun", "šunātum", "", "", "", "dream"]) + let v = native_list_append(v, ["šīnātum", "noun", "šīnātum", "", "", "", "urine"]) + let v = native_list_append(v, ["šuburrum", "noun", "šuburrū", "", "", "", "rump bottom rear"]) + let v = native_list_append(v, ["serdum", "noun", "serdū", "", "", "", "olive"]) + let v = native_list_append(v, ["gardumum", "noun", "gardumum", "", "", "", "Mimated form of"]) + let v = native_list_append(v, ["titūrum", "noun", "titūrātum", "", "", "", "bridge causeway"]) + let v = native_list_append(v, ["Sāmerīna", "noun", "Sāmerīna", "", "", "", "The ancient capital"]) + let v = native_list_append(v, ["ašāgum", "noun", "ašāgum", "", "", "", "a common spiny"]) + let v = native_list_append(v, ["Elamtu", "noun", "Elamtu", "", "", "", "Elam an ancient"]) + let v = native_list_append(v, ["mīnum", "noun", "mīnum", "", "", "", "number"]) + let v = native_list_append(v, ["šiprum", "noun", "šiprū", "", "", "", "message report commission"]) + let v = native_list_append(v, ["šaprum", "noun", "šaprūtum", "", "", "", "messenger envoy"]) + let v = native_list_append(v, ["salīmum", "noun", "salīmum", "", "", "", "peace concord amity"]) + let v = native_list_append(v, ["zibānītum", "noun", "zibānītum", "", "", "", "a type of"]) + let v = native_list_append(v, ["suqtum", "noun", "suqtum", "", "", "", "chin"]) + let v = native_list_append(v, ["râmum", "noun", "râmum", "", "", "", "nominalization of râmum"]) + let v = native_list_append(v, ["šurānum", "noun", "šurānū", "", "", "", "cat"]) + let v = native_list_append(v, ["nakkaptum", "noun", "nakkapātum", "", "", "", "temple brow"]) + let v = native_list_append(v, ["ṭābātum", "noun", "ṭābātum", "", "", "", "vinegar"]) + let v = native_list_append(v, ["karānum", "noun", "karānum", "", "", "", "wine"]) + let v = native_list_append(v, ["ḫūdum", "noun", "ḫūdum", "", "", "", "joy happiness"]) + let v = native_list_append(v, ["luppum", "noun", "luppātum", "", "", "", "leather bag"]) + let v = native_list_append(v, ["rigmum", "noun", "rigmātum", "", "", "", "voice cry"]) + let v = native_list_append(v, ["ûm", "noun", "ûm", "", "", "", "barley grain"]) + let v = native_list_append(v, ["še'um", "noun", "še'um", "", "", "", "barley grain"]) + let v = native_list_append(v, ["māšum", "noun", "māšū", "", "", "", "twin"]) + let v = native_list_append(v, ["qinnum", "noun", "qinnū", "", "", "", "nest lair"]) + let v = native_list_append(v, ["iškum", "noun", "iškū", "", "", "", "testicle scrotum"]) + let v = native_list_append(v, ["narūqum", "noun", "narūqātum", "", "", "", "sack bag"]) + let v = native_list_append(v, ["tumrum", "noun", "tumrū", "", "", "", "cinder ashes ember"]) + let v = native_list_append(v, ["ramānum", "noun", "ramānātum", "", "", "", "self"]) + let v = native_list_append(v, ["kitûm", "noun", "kitâtum", "", "", "", "flax"]) + let v = native_list_append(v, ["kītum", "noun", "kītum", "", "", "", "reed mat"]) + let v = native_list_append(v, ["qerītum", "noun", "qeriātum", "", "", "", "banquet feast festive"]) + let v = native_list_append(v, ["Pazūzānu", "noun", "Pazūzānu", "", "", "", "plural of Pazūzu"]) + let v = native_list_append(v, ["tarbāṣum", "noun", "tarbāṣātum", "", "", "", "pen for cattle"]) + let v = native_list_append(v, ["Sîn", "noun", "Sîn", "", "", "", "Nanna Suen Nanna-Suen"]) + let v = native_list_append(v, ["talmīdum", "noun", "talmīdū", "", "", "", "apprentice student"]) + let v = native_list_append(v, ["𒆳𒅖𒆪𒍝𒀀𒀀", "noun", "𒆳𒅖𒆪𒍝𒀀𒀀", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["nēru", "noun", "nēru", "", "", "", "non-mimated free form"]) + let v = native_list_append(v, ["nīru", "noun", "nīru", "", "", "", "non-mimated free form"]) + let v = native_list_append(v, ["𒆳𒋤𒀪𒆷𒀀𒀀", "noun", "𒆳𒋤𒀪𒆷𒀀𒀀", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["imittum", "noun", "imittum", "", "", "", "the right"]) + let v = native_list_append(v, ["mayyālum", "noun", "mayyālū", "", "", "", "bed sleeping place"]) + let v = native_list_append(v, ["bīt mayyālim", "noun", "bīt mayyālim", "", "", "", "bedroom"]) + let v = native_list_append(v, ["bīt eršim", "noun", "bīt eršim", "", "", "", "bedroom"]) + let v = native_list_append(v, ["uršum", "noun", "uršātum", "", "", "", "bedroom personal quarters"]) + let v = native_list_append(v, ["nisannum", "noun", "nisannum", "", "", "", "offering of first"]) + let v = native_list_append(v, ["𒄣𒌒𒁍", "noun", "𒄣𒌒𒁍", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["tamšīlum", "noun", "tamšīlātum", "", "", "", "likeness replica effigy"]) + let v = native_list_append(v, ["gišrum", "noun", "gišrānū", "", "", "", "wooden bar log"]) + let v = native_list_append(v, ["napṭum", "noun", "napṭum", "", "", "", "naphtha"]) + let v = native_list_append(v, ["uṣurtum", "noun", "uṣurātum", "", "", "", "line drawing plan"]) + let v = native_list_append(v, ["qunnabu", "noun", "qunnabu", "", "", "", "an aromatic possibly"]) + let v = native_list_append(v, ["uššum", "noun", "uššū", "", "", "", "foundation"]) + let v = native_list_append(v, ["ubānum", "noun", "ubānātum", "", "", "", "finger"]) + let v = native_list_append(v, ["gerginakku", "noun", "gerginakku", "", "", "", "library"]) + let v = native_list_append(v, ["mīšarum", "noun", "mīšarum", "", "", "", "justice"]) + let v = native_list_append(v, ["Gilgāmeš", "noun", "Gilgāmeš", "", "", "", "Gilgamesh a Sumerian"]) + let v = native_list_append(v, ["ṣibtum", "noun", "ṣibātum", "", "", "", "interest"]) + let v = native_list_append(v, ["nidittum", "noun", "nidittum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rē'ûtum", "noun", "rē'ûtum", "", "", "", "shepherdship"]) + let v = native_list_append(v, ["gubāru", "noun", "gubāru", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["gubārum", "noun", "gubārū", "", "", "", "ingot"]) + let v = native_list_append(v, ["ṣērum", "noun", "ṣērum", "", "", "", "back"]) + let v = native_list_append(v, ["nāqidum", "noun", "nāqidum", "", "", "", "stockbreeder"]) + let v = native_list_append(v, ["Nabû-na'id", "noun", "Nabû-na'id", "", "", "", "a male given"]) + let v = native_list_append(v, ["𒁹𒄥𒁲𒄿", "noun", "𒁹𒄥𒁲𒄿", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["Bēl-šarra-uṣur", "noun", "Bēl-šarra-uṣur", "", "", "", "a male given"]) + let v = native_list_append(v, ["𒆳𒅀𒌑𒁲", "noun", "𒆳𒅀𒌑𒁲", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["Gurdî", "noun", "Gurdî", "", "", "", "a male given"]) + let v = native_list_append(v, ["Yaudāya", "noun", "Yaudāya", "", "", "", "Judean of Judah"]) + let v = native_list_append(v, ["Ḫazaqiyau", "noun", "Ḫazaqiyau", "", "", "", "a male given"]) + let v = native_list_append(v, ["Yauḫazi", "noun", "Yauḫazi", "", "", "", "a male given"]) + let v = native_list_append(v, ["Menasî", "noun", "Menasî", "", "", "", "a male given"]) + let v = native_list_append(v, ["Yaudu", "noun", "Yaudu", "", "", "", "Judah an Iron"]) + let v = native_list_append(v, ["Iškuzāya", "noun", "Iškuzāya", "", "", "", "the country inhabited"]) + let v = native_list_append(v, ["mušēniqtum", "noun", "mušēniqtum", "", "", "", "wet nurse"]) + let v = native_list_append(v, ["quppum", "noun", "quppum", "", "", "", "wicker basket wooden"]) + let v = native_list_append(v, ["Ašqaluna", "noun", "Ašqaluna", "", "", "", "Ashkelon"]) + let v = native_list_append(v, ["Nabû-kudurri-uṣur", "noun", "Nabû-kudurri-uṣur", "", "", "", "a male given"]) + let v = native_list_append(v, ["šawirum", "noun", "šawirātum", "", "", "", "ring torque"]) + let v = native_list_append(v, ["Amēl-Marduk", "noun", "Amēl-Marduk", "", "", "", "a male given"]) + let v = native_list_append(v, ["Nabû-apla-uṣur", "noun", "Nabû-apla-uṣur", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miṣri", "noun", "Miṣri", "", "", "", "Egypt"]) + let v = native_list_append(v, ["Muṣur", "noun", "Muṣur", "", "", "", "Egypt"]) + let v = native_list_append(v, ["Yaua", "noun", "Yaua", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sir'alāya", "noun", "Sir'alāya", "", "", "", "Israelite"]) + let v = native_list_append(v, ["Yaunāya", "noun", "Yaunāya", "", "", "", "Ionian"]) + let v = native_list_append(v, ["Yamanāya", "noun", "Yamanāya", "", "", "", "Ionian"]) + let v = native_list_append(v, ["Tukultī-apil-Ešarra", "noun", "Tukultī-apil-Ešarra", "", "", "", "a male given"]) + let v = native_list_append(v, ["Tukultī-apil-Ešar", "noun", "Tukultī-apil-Ešar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Isqaluna", "noun", "Isqaluna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Išqilunu", "noun", "Išqilunu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tukultum", "noun", "tukultum", "", "", "", "trust"]) + let v = native_list_append(v, ["Išpakāya", "noun", "Išpakāya", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḫazannum", "noun", "hazannātum", "", "", "", "mayor village headman"]) + let v = native_list_append(v, ["markasum", "noun", "markasum", "", "", "", "bond tie"]) + let v = native_list_append(v, ["zuruqqu", "noun", "zuruqqu", "", "", "", "a shadoof"]) + let v = native_list_append(v, ["idin", "verb", "idin", "", "", "", "second-person singular masculine"]) + let v = native_list_append(v, ["𒃻𒆷𒈬", "verb", "ša₂-la-mu", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒁲𒉏", "verb", "ṭe₄-nim", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["kanākum", "verb", "ikannak", "iktanak", "iknuk", "", "to seal to"]) + let v = native_list_append(v, ["šarāqum", "verb", "i", "šarāqu", "", "", "to steal to"]) + let v = native_list_append(v, ["walādum", "verb", "no-table-tags", "akk-conj", "wālidum", "", "to give birth"]) + let v = native_list_append(v, ["damāqum", "verb", "idammiq", "iddamiq", "idmiq", "", "to be good"]) + let v = native_list_append(v, ["danānum", "verb", "idannin", "iddanin", "idnin", "", "to become strong"]) + let v = native_list_append(v, ["ḫalāqum", "verb", "iḫalliq", "iḫtaliq", "iḫliq", "", "to disappear vanquish"]) + let v = native_list_append(v, ["arārum", "verb", "irrar", "ītarar", "īrur", "", "to curse"]) + let v = native_list_append(v, ["qanûm", "verb", "iqanni", "iqtani", "iqni", "", "to keep possession"]) + let v = native_list_append(v, ["warāqum", "verb", "irriq", "īteriq", "īriq", "", "to become green"]) + let v = native_list_append(v, ["kašādum", "verb", "ikaššad", "iktašad", "ikšud", "", "to arrive at"]) + let v = native_list_append(v, ["ṣeḫērum", "verb", "i", "", "", "", "to be small"]) + let v = native_list_append(v, ["nadānum", "verb", "inaddin", "ittadin", "iddin", "", "to give grant"]) + let v = native_list_append(v, ["qabûm", "verb", "iqabbi", "iqtabi", "iqbi", "", "to say tell"]) + let v = native_list_append(v, ["alākum", "verb", "illak", "ītalak", "īlik", "", "to go move"]) + let v = native_list_append(v, ["elēpum", "verb", "illip", "ītelip", "īlip", "", "to sprout grow"]) + let v = native_list_append(v, ["akālum", "verb", "ikkal", "ītakal", "īkul", "", "to eat consume"]) + let v = native_list_append(v, ["parāsum", "verb", "iparras", "iptaras", "iprus", "", "to divide separate"]) + let v = native_list_append(v, ["𒀀𒈠𒊒", "verb", "a-ma-ru", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["erēšum", "verb", "irriš", "īteriš", "īriš", "", "to sow plant"]) + let v = native_list_append(v, ["matāqum", "verb", "imattiq", "imtatiq", "imtiq", "", "to become sweet"]) + let v = native_list_append(v, ["siāqum", "verb", "isīaq", "issīq", "isīq", "", "to become narrow"]) + let v = native_list_append(v, ["šemûm", "verb", "e", "no-table-tags", "akk-conj", "", "to hear"]) + let v = native_list_append(v, ["warādum", "verb", "no-table-tags", "akk-conj", "wāridum", "", "to descend go"]) + let v = native_list_append(v, ["niākum", "verb", "inīak", "ittīk", "inīk", "", "to have sex"]) + let v = native_list_append(v, ["elûm", "verb", "illi", "īteli", "īli", "", "to be high"]) + let v = native_list_append(v, ["šalāmum", "verb", "išallim", "ištalim", "išlim", "", "to become healthy"]) + let v = native_list_append(v, ["menûm", "verb", "imenne", "imtene", "imne", "", "to love be"]) + let v = native_list_append(v, ["maḫāṣum", "verb", "imaḫḫaṣ", "imtaḫaṣ", "imḫaṣ", "", "to strike hit"]) + let v = native_list_append(v, ["maqātum", "verb", "imaqqut", "imtaqut", "imqut", "", "to fall fall"]) + let v = native_list_append(v, ["marāṣum", "verb", "imarraṣ", "imtaraṣ", "imraṣ", "", "to be ill"]) + let v = native_list_append(v, ["rapāšum", "verb", "irappiš", "irtapiš", "irpiš", "", "to be or"]) + let v = native_list_append(v, ["ṣabātum", "verb", "a", "no-table-tags", "akk-conj", "", "to seize take"]) + let v = native_list_append(v, ["šakānum", "verb", "išakkan", "ištakan", "iškun", "", "to place put"]) + let v = native_list_append(v, ["balāṭum", "verb", "iballuṭ", "ibtaluṭ", "ibluṭ", "", "to live be"]) + let v = native_list_append(v, ["gamārum", "verb", "igammar", "igtamar", "igmur", "", "to bring to"]) + let v = native_list_append(v, ["maḫārum", "verb", "imaḫḫar", "imtaḫar", "imḫur", "", "to accept receive"]) + let v = native_list_append(v, ["qerûm", "verb", "i", "qerû", "qarûm", "", "to invite"]) + let v = native_list_append(v, ["kašdum", "verb", "kašittum", "kašdūtum", "kašdātum", "", "successful achieved accomplished"]) + let v = native_list_append(v, ["amārum", "verb", "immar", "ītamar", "īmur", "", "to see behold"]) + let v = native_list_append(v, ["zamārum", "verb", "no-table-tags", "akk-conj", "zāmirum", "", "to sing with"]) + let v = native_list_append(v, ["edēšum", "verb", "iddiš", "ītediš", "īdiš", "", "to be new"]) + let v = native_list_append(v, ["makārum", "verb", "imakkar", "imtakar", "imkur", "", "to flood irrigate"]) + let v = native_list_append(v, ["ezēbum", "verb", "izzib", "ītezib", "īzib", "", "to leave leave"]) + let v = native_list_append(v, ["kabātum", "verb", "ikabbit", "iktabit", "ikbit", "", "to be/become heavy"]) + let v = native_list_append(v, ["qebērum", "verb", "iqebbir", "iqtebir", "iqbir", "", "to bury"]) + let v = native_list_append(v, ["napāšum", "verb", "inappuš", "ittapuš", "ippuš", "", "to breathe freely"]) + let v = native_list_append(v, ["petûm", "verb", "ipette", "iptete", "ipte", "", "to open"]) + let v = native_list_append(v, ["banûm", "verb", "ibanni", "ibtani", "ibni", "", "to build construct"]) + let v = native_list_append(v, ["ṣalālum", "verb", "iṣallal", "iṣtalal", "iṣlal", "", "to lie down"]) + let v = native_list_append(v, ["mâtum", "verb", "imât", "imtūt", "imūt", "", "to die"]) + let v = native_list_append(v, ["zarāqum", "verb", "izarriq", "izzariq", "izriq", "", "to sprinkle liquids"]) + let v = native_list_append(v, ["epûm", "verb", "ippi", "ītepi", "īpi", "", "to bake"]) + let v = native_list_append(v, ["esēpum", "verb", "issip", "ītesip", "īsip", "", "to gather up"]) + let v = native_list_append(v, ["nâḫum", "verb", "inâḫ", "ittūḫ", "inūḫ", "", "to rest take"]) + let v = native_list_append(v, ["šanānum", "verb", "išannan", "ištanan", "išnun", "", "to be equal"]) + let v = native_list_append(v, ["nabûm", "verb", "inabbi", "ittabi", "ibbi", "", "to name nominate"]) + let v = native_list_append(v, ["maṣûm", "verb", "imaṣṣi", "imtaṣi", "imṣi", "", "to be equal"]) + let v = native_list_append(v, ["waṣûm", "verb", "uṣṣi", "ittaṣi", "uṣi", "", "to leave depart"]) + let v = native_list_append(v, ["nasāḫum", "verb", "inassaḫ", "ittasaḫ", "issuḫ", "", "to tear out"]) + let v = native_list_append(v, ["ṣiāḫum", "verb", "iṣīaḫ", "iṣṣīḫ", "iṣīḫ", "", "to laugh smile"]) + let v = native_list_append(v, ["ṣiāḫu", "verb", "ṣiāḫu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["ṣâḫu", "verb", "ṣâḫu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṭênum", "verb", "iṭên", "iṭṭēn", "iṭēn", "", "to grind"]) + let v = native_list_append(v, ["ṭênim", "verb", "ṭênim", "", "", "", "infinitive genitive of"]) + let v = native_list_append(v, ["ṭābu", "verb", "ṭābu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["šebērum", "verb", "išebbir", "ištebir", "išbir", "", "to break fracture"]) + let v = native_list_append(v, ["epēšum", "verb", "ippeš", "ītepeš", "īpuš", "", "to act behave"]) + let v = native_list_append(v, ["našûm", "verb", "inašši", "ittaši", "išši", "", "to lift up"]) + let v = native_list_append(v, ["nazāqum", "verb", "inazziq", "ittaziq", "izziq", "", "to worry be"]) + let v = native_list_append(v, ["wabālum", "verb", "ubbal", "ittabal", "ubil", "", "to bring transport"]) + let v = native_list_append(v, ["babālum", "verb", "babālum", "", "", "", "Old Babylonian form"]) + let v = native_list_append(v, ["abālu", "verb", "abālu", "", "", "", "Standard Babylonian form"]) + let v = native_list_append(v, ["edûm", "verb", "īde", "edû", "idûm", "", "to know"]) + let v = native_list_append(v, ["ṣamādum", "verb", "iṣammid", "iṣṣamid", "iṣmid", "", "to yoke harness"]) + let v = native_list_append(v, ["šaḫāṭum", "verb", "išaḫḫiṭ", "ištaḫiṭ", "išḫiṭ", "", "to jump leap"]) + let v = native_list_append(v, ["zanānum", "verb", "izannun", "izzanun", "iznun", "", "to rain"]) + let v = native_list_append(v, ["pašāqum", "verb", "ipaššuq", "iptašuq", "ipšuq", "", "to become narrow"]) + let v = native_list_append(v, ["arākum", "verb", "irrik", "ītarik", "īrik", "", "to become long"]) + let v = native_list_append(v, ["dalālum", "verb", "idallal", "iddalal", "idlul", "", "to praise sing"]) + let v = native_list_append(v, ["kânum", "verb", "ikân", "iktūn", "ikūn", "", "to stay in"]) + let v = native_list_append(v, ["šaṭārum", "verb", "išaṭṭar", "ištaṭar", "išṭur", "", "to write down"]) + let v = native_list_append(v, ["bašûm", "verb", "ibašši", "ibtaši", "ibši", "", "to exist to"]) + let v = native_list_append(v, ["qiāšum", "verb", "iqīaš", "iqtīš", "iqīš", "", "to bestow give"]) + let v = native_list_append(v, ["išûm", "verb", "īšu", "išû", "", "", "to have own"]) + let v = native_list_append(v, ["naṣārum", "verb", "inaṣṣar", "ittaṣar", "iṣṣur", "", "to watch over"]) + let v = native_list_append(v, ["šâlu", "verb", "šâlu", "", "", "", "ask question"]) + let v = native_list_append(v, ["parādum", "verb", "iparrid", "iptarid", "iprid", "", "to be scared"]) + let v = native_list_append(v, ["pašāḫum", "verb", "ipaššaḫ", "iptašaḫ", "ipšaḫ", "", "to rest refresh"]) + let v = native_list_append(v, ["izuzzum", "verb", "izzaz", "ittaziz", "izziz", "", "to stand up"]) + let v = native_list_append(v, ["bakûm", "verb", "ibakki", "ibtaki", "ibki", "", "to weep shed"]) + let v = native_list_append(v, ["šapārum", "verb", "išappar", "ištapar", "išpur", "", "to send"]) + let v = native_list_append(v, ["šapāṭum", "verb", "išappiṭ", "ištapiṭ", "išpiṭ", "", "to give judgement"]) + let v = native_list_append(v, ["ramākum", "verb", "irammuk", "irtamuk", "irmuk", "", "to bathe wash"]) + let v = native_list_append(v, ["salāmum", "verb", "isallim", "istallim", "islim", "", "to make peace"]) + let v = native_list_append(v, ["râmum", "verb", "irâm", "irtām", "irām", "", "to love"]) + let v = native_list_append(v, ["ḫadûm", "verb", "iḫaddu", "iḫtadu", "iḫdu", "", "to rejoice be"]) + let v = native_list_append(v, ["šasûm", "verb", "išassi", "ištassi", "išsi", "", "to cry out"]) + let v = native_list_append(v, ["ṭepûm", "verb", "iṭeppi", "iṭṭepi", "iṭpi", "", "to add attach"]) + let v = native_list_append(v, ["gamālum", "verb", "igammil", "igtamil", "igmil", "", "to do a"]) + let v = native_list_append(v, ["le'ûm", "verb", "ilei", "ilte'i", "ilē", "", "to be able"]) + let v = native_list_append(v, ["madādum", "verb", "imaddad", "imtadad", "imdud", "", "to measure out"]) + let v = native_list_append(v, ["niālum", "verb", "inīal", "ittīl", "inīl", "", "to lie down"]) + let v = native_list_append(v, ["ḫamāṭum", "verb", "iḫammuṭ", "iḫtamuṭ", "iḫmuṭ", "", "to hasten be"]) + let v = native_list_append(v, ["ešērum", "verb", "iššir", "ītešir", "īšir", "", "to go well"]) + let v = native_list_append(v, ["kaṣāpu", "verb", "kaṣāpu", "", "", "", "to think"]) + let v = native_list_append(v, ["tarāṣu", "verb", "tarāṣu", "", "", "", "Non-mimated form of"]) + let v = native_list_append(v, ["laqāḫu", "verb", "laqāḫu", "", "", "", "El-Amarna form of"]) + let v = native_list_append(v, ["tarāṣum", "verb", "itarruṣ", "ittaruṣ", "itruṣ", "", "to become pleasing"]) + let v = native_list_append(v, ["leqûm", "verb", "ileqqe", "ilteqe", "ilqe", "", "to take"]) + let v = native_list_append(v, ["takālum", "verb", "itakkal", "ittakal", "itkal", "", "to trust rely"]) + let v = native_list_append(v, ["rakāsum", "verb", "irakkas", "irtakas", "irkus", "", "to tie attach"]) + let v = native_list_append(v, ["dakāšum", "verb", "idakkaš", "iddakaš", "idkuš", "", "to pierce sting"]) + let v = native_list_append(v, ["bulluṭum", "verb", "bulluṭu", "", "", "", "to bring back"]) + let v = native_list_append(v, ["ellum", "adj", "ellum", "", "elletum", "", "verbal adjective of"]) + let v = native_list_append(v, ["kankum", "adj", "kankum", "", "kaniktum", "", "verbal adjective of"]) + let v = native_list_append(v, ["šarqum", "adj", "šarqum", "", "šariqtum", "", "stolen"]) + let v = native_list_append(v, ["ṣeḫrum", "adj", "ṣeḫrum", "", "ṣeḫertum", "", "verbal adjective of"]) + let v = native_list_append(v, ["aḫûm", "adj", "aḫûm", "", "aḫītum", "", "foreign outsider alien"]) + let v = native_list_append(v, ["zikrum", "adj", "zikrum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marrum", "adj", "marrum", "", "marratum", "", "bitter brackish biting"]) + let v = native_list_append(v, ["ṭābum", "adj", "ṭābum", "", "ṭābtum", "", "pleasant pleasing"]) + let v = native_list_append(v, ["zikarum", "adj", "zikarum", "", "", "", "male virile"]) + let v = native_list_append(v, ["matqum", "adj", "matqum", "", "matuqtum", "", "sweet"]) + let v = native_list_append(v, ["wēdum", "adj", "wēdum", "", "wēttum", "", "single sole"]) + let v = native_list_append(v, ["elûm", "adj", "elûm", "", "elītum", "", "upper"]) + let v = native_list_append(v, ["damqum", "adj", "damqum", "", "damiqtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["dannum", "adj", "dannum", "", "dannatum", "", "verbal adjective of"]) + let v = native_list_append(v, ["ḫalqum", "adj", "ḫalqum", "", "ḫaliqtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["ṣalmum", "adj", "ṣalmum", "", "ṣalimtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["annûm", "adj", "annûm", "", "annītum", "", "this these"]) + let v = native_list_append(v, ["maḫrûm", "adj", "maḫrûm", "", "maḫrītum", "", "first old original"]) + let v = native_list_append(v, ["šaplûm", "adj", "šaplûm", "", "šaplītum", "", "lower"]) + let v = native_list_append(v, ["eššum", "adj", "eššum", "", "eššetum", "", "verbal adjective of"]) + let v = native_list_append(v, ["ayyum", "adj", "ayyum", "", "ayyītum", "", "which"]) + let v = native_list_append(v, ["kabtum", "adj", "kabtum", "", "kabittum", "", "verbal adjective of"]) + let v = native_list_append(v, ["marûm", "adj", "marûm", "", "marītum", "", "fattened of domestic"]) + let v = native_list_append(v, ["ḫamṭu", "adj", "ḫamṭu", "", "", "", "quick swift sudden"]) + let v = native_list_append(v, ["petûm", "adj", "petûm", "", "petītum", "", "verbal adjective of"]) + let v = native_list_append(v, ["mītum", "adj", "mītum", "", "mīttum", "", "verbal adjective of"]) + let v = native_list_append(v, ["epûm", "adj", "epûm", "", "epītum", "", "verbal adjective of"]) + let v = native_list_append(v, ["ullûm", "adj", "ullûm", "", "ullītum", "", "that those"]) + let v = native_list_append(v, ["kīnum", "adj", "kīnum", "", "kīttum", "", "verbal adjective of"]) + let v = native_list_append(v, ["labirum", "adj", "labirum", "", "labirtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["ezzum", "adj", "ezzum", "", "ezzetum", "", "angry furious fierce"]) + let v = native_list_append(v, ["gitmālum", "adj", "gitmālum", "", "gitmāltum", "", "equal in size"]) + let v = native_list_append(v, ["kadrum", "adj", "kadrum", "", "kadirtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["marṣum", "adj", "marṣum", "", "maruštum", "", "verbal adjective of"]) + let v = native_list_append(v, ["šalmum", "adj", "šalmum", "", "šalimtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["rabûm", "adj", "rabûm", "", "rabītum", "", "verbal adjective of"]) + let v = native_list_append(v, ["sapḫum", "adj", "sapḫum", "", "sapiḫtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["šanûm", "adj", "šanûm", "", "šanītum", "", "verbal adjective of"]) + let v = native_list_append(v, ["wašṭum", "adj", "wašṭum", "", "wašṭātum", "", "verbal adjective of"]) + let v = native_list_append(v, ["arkum", "adj", "arkum", "", "ariktum", "", "verbal adjective of"]) + let v = native_list_append(v, ["dārûm", "adj", "dārûm", "", "dārītum", "", "everlasting perpetual enduring"]) + let v = native_list_append(v, ["𒀝𒅗𒁺𒌑", "adj", "𒀝𒅗𒁺𒌑", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["akkadûm", "adj", "akkadûm", "", "akkadītum", "", "Akkadian"]) + let v = native_list_append(v, ["kaṣûm", "adj", "kaṣûm", "", "kaṣītum", "", "verbal adjective of"]) + let v = native_list_append(v, ["Sāmerīnāya", "adj", "Sāmerīnāya", "", "", "", "Samaritan"]) + let v = native_list_append(v, ["kurûm", "adj", "kurûm", "", "kurītum", "", "verbal adjective of"]) + let v = native_list_append(v, ["wālidum", "adj", "wālidum", "", "wālittum", "", "begetter birth giving"]) + let v = native_list_append(v, ["sāmum", "adj", "sāmum", "", "sāmtum", "", "red brown"]) + let v = native_list_append(v, ["warqum", "adj", "warqum", "", "waruqtum", "", "verbal adjective of"]) + let v = native_list_append(v, ["peṣûm", "adj", "peṣûm", "", "peṣītum", "", "white pale bleached"]) + let v = native_list_append(v, ["qabaltiu", "adj", "qabaltiu", "", "", "", "central middle"]) + let v = native_list_append(v, ["in", "prep", "in", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ana", "prep", "ana", "", "", "", "to toward onto"]) + let v = native_list_append(v, ["eli", "prep", "eli", "", "", "", "on above over"]) + let v = native_list_append(v, ["ina", "prep", "ina", "", "", "", "in on onto"]) + let v = native_list_append(v, ["adi", "prep", "adi", "", "", "", "up to as"]) + let v = native_list_append(v, ["𒅔", "prep", "𒅔", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒂊𒇷", "prep", "𒂊𒇷", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒄿𒈾", "prep", "𒄿𒈾", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀉𒋾", "prep", "𒀉𒋾", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["kī", "prep", "kī", "", "", "", "as like in"]) + let v = native_list_append(v, ["itti", "prep", "itti", "", "", "", "with"]) + let v = native_list_append(v, ["warki", "prep", "warki", "", "", "", "after"]) + let v = native_list_append(v, ["𒀀𒈾", "prep", "𒀀𒈾", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["ištu", "prep", "ištu", "", "", "", "from out of"]) + let v = native_list_append(v, ["inūma", "prep", "inūma", "", "", "", "at the time"]) + let v = native_list_append(v, ["kīma", "prep", "kīma", "", "", "", "like as"]) + let v = native_list_append(v, ["aššum", "prep", "aššum", "", "", "", "concerning regarding on"]) + let v = native_list_append(v, ["u", "conj", "u", "", "", "", "and"]) + let v = native_list_append(v, ["𒈠", "conj", "𒈠", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒋳𒈠", "conj", "𒋳𒈠", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["šumma", "conj", "šumma", "", "", "", "if whether"]) + let v = native_list_append(v, ["ištu", "conj", "ištu", "", "", "", "since after"]) + let v = native_list_append(v, ["inūma", "conj", "inūma", "", "", "", "when after while"]) + let v = native_list_append(v, ["kīma", "conj", "kīma", "", "", "", "when as soon"]) + let v = native_list_append(v, ["aššum", "conj", "aššum", "", "", "", "because of the"]) + let v = native_list_append(v, ["anna", "particle", "anna", "", "", "", "yes certainly"]) + let v = native_list_append(v, ["ma", "particle", "ma", "", "", "", "and but"]) + let v = native_list_append(v, ["umma", "particle", "umma", "", "", "", "introduces direct and"]) + let v = native_list_append(v, ["ul", "particle", "ul", "", "", "", "not in main"]) + let v = native_list_append(v, ["ula", "particle", "ula", "", "", "", "Old Akkadian Old"]) + let v = native_list_append(v, ["ulla", "particle", "ulla", "", "", "", "no"]) + let v = native_list_append(v, ["ullu", "particle", "ullu", "", "", "", "Standard Babylonian and"]) + let v = native_list_append(v, ["anta", "pron", "anta", "", "", "", "Eblaite form of"]) + let v = native_list_append(v, ["atti", "pron", "atti", "", "", "", "you thou second-person"]) + let v = native_list_append(v, ["atta", "pron", "atta", "", "", "", "you thou second-person"]) + let v = native_list_append(v, ["šina", "pron", "šina", "", "", "", "they feminine plural"]) + let v = native_list_append(v, ["𒋗𒌑", "pron", "𒋗𒌑", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒋗𒀀𒋾", "pron", "𒋗𒀀𒋾", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒊭", "pron", "𒊭", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["anāku", "pron", "anāku", "", "", "", "I first-person singular"]) + let v = native_list_append(v, ["mannum", "pron", "mannum", "", "", "", "who?"]) + let v = native_list_append(v, ["šī", "pron", "šī", "", "", "", "she subject pronoun"]) + let v = native_list_append(v, ["ša", "pron", "ša", "", "", "", "who/whom which"]) + let v = native_list_append(v, ["𒀜𒋫", "pron", "𒀜𒋫", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀜𒋾", "pron", "𒀜𒋾", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒀀𒈾𒆪", "pron", "𒀀𒈾𒆪", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["yâti", "pron", "yâti", "", "", "", "me"]) + let v = native_list_append(v, ["šū", "pron", "šū", "", "", "", "he subject pronoun"]) + let v = native_list_append(v, ["𒅆𒄿", "pron", "𒅆𒄿", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["šunu", "pron", "šunu", "", "", "", "they masculine plural"]) + let v = native_list_append(v, ["nīnu", "pron", "nīnu", "", "", "", "we first-person plural"]) + let v = native_list_append(v, ["attunu", "pron", "attunu", "", "", "", "ye you second-person"]) + let v = native_list_append(v, ["attina", "pron", "attina", "", "", "", "ye you second-person"]) + let v = native_list_append(v, ["šuāti", "pron", "šuāti", "", "", "", "him her it"]) + let v = native_list_append(v, ["šâti", "pron", "šâti", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["šâtu", "pron", "šâtu", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["šuātu", "pron", "šuātu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mīnum", "pron", "mīnum", "", "", "", "what?"]) + let v = native_list_append(v, ["𒈬𒀀𒁴", "pron", "𒈬𒀀𒁴", "", "", "", "Mixed spelling of"]) + let v = native_list_append(v, ["𒊕", "other", "𒊕", "", "", "", "Sumerogram of pūtum"]) + let v = native_list_append(v, ["𒂗", "other", "𒂗", "", "", "", "Sumerogram of bēlum"]) + let v = native_list_append(v, ["𒈗", "other", "𒈗", "", "", "", "Sumerogram of šarrum"]) + let v = native_list_append(v, ["𒀸", "other", "𒀸", "", "", "", "Sumerogram of aplum"]) + let v = native_list_append(v, ["𒃲", "other", "𒃲", "", "", "", "Sumerogram of kāsum"]) + let v = native_list_append(v, ["𒇽", "other", "𒇽", "", "", "", "Sumerogram of awīlum"]) + let v = native_list_append(v, ["𒌷", "other", "𒌷", "", "", "", "Sumerogram of ālum"]) + let v = native_list_append(v, ["𒉌", "other", "𒉌", "", "", "", "Sumerogram of šamnum"]) + let v = native_list_append(v, ["𒌋", "other", "𒌋", "", "", "", "Sumerogram of gigurû"]) + let v = native_list_append(v, ["𒁹", "other", "𒁹", "", "", "", "Sumerogram of ištēn"]) + let v = native_list_append(v, ["𒋰", "other", "𒋰", "", "", "", "Sumerogram of edēlum"]) + let v = native_list_append(v, ["𒁳", "other", "𒁳", "", "", "", "Sumerogram of ṣabātum"]) + let v = native_list_append(v, ["𒇻", "other", "𒇻", "", "", "", "Sumerogram of immerum"]) + let v = native_list_append(v, ["ulla", "other", "ulla", "", "", "", "well now"]) + let v = native_list_append(v, ["𒂍", "other", "𒂍", "", "", "", "Sumerogram of bītum"]) + let v = native_list_append(v, ["𒉒", "other", "𒉒", "", "", "", "Sumerogram of ittûm"]) + let v = native_list_append(v, ["𒅜", "other", "𒅜", "", "", "", "Sumerogram of kišpum"]) + let v = native_list_append(v, ["𒂟", "other", "𒂟", "", "", "", "Sumerogram of ṣābum"]) + let v = native_list_append(v, ["𒋧", "other", "𒋧", "", "", "", "Sumerogram of šūmū"]) + let v = native_list_append(v, ["𒋾", "other", "𒋾", "", "", "", "Sumerogram of balāṭum"]) + let v = native_list_append(v, ["𒋻", "other", "𒋻", "", "", "", "Sumerogram of šebērum"]) + let v = native_list_append(v, ["𒍣", "other", "𒍣", "", "", "", "Sumerogram of napištum"]) + let v = native_list_append(v, ["𒉺𒇻", "other", "𒉺𒇻", "", "", "", "Sumerogram of rēûm"]) + let v = native_list_append(v, ["𒀴", "other", "𒀴", "", "", "", "Sumerogram of wardum"]) + let v = native_list_append(v, ["𒄯𒊕", "other", "𒄯𒊕", "", "", "", "Sumerogram of šadûm"]) + let v = native_list_append(v, ["𒌚", "other", "𒌚", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆰", "other", "𒆰", "", "", "", "Sumerogram of zērum"]) + let v = native_list_append(v, ["𒌵", "other", "𒌵", "", "", "", "Sumerogram of Akkade"]) + let v = native_list_append(v, ["𒋀", "other", "𒋀", "", "", "", "Sumerogram of aḫum"]) + let v = native_list_append(v, ["𒈦", "other", "𒈦", "", "", "", "Sumerogram of māšum"]) + let v = native_list_append(v, ["𒀊", "other", "𒀊", "", "", "", "Sumerogram of tiāmtum"]) + let v = native_list_append(v, ["𒌉", "other", "𒌉", "", "", "", "Sumerogram of mārum"]) + let v = native_list_append(v, ["𒀫", "other", "𒀫", "", "", "", "Sumerogram of būrum"]) + let v = native_list_append(v, ["𒌉𒍑", "other", "𒌉𒍑", "", "", "", "Sumerogram of aplum"]) + let v = native_list_append(v, ["𒈬", "other", "𒈬", "", "", "", "Sumerogram of šumum"]) + let v = native_list_append(v, ["𒌉𒊩", "other", "𒌉𒊩", "", "", "", "Sumerogram of mārtum"]) + let v = native_list_append(v, ["𒌓", "other", "𒌓", "", "", "", "Sumerogram for šamšum"]) + let v = native_list_append(v, ["𒅖", "other", "𒅖", "", "", "", "Sumerogram of eperum"]) + let v = native_list_append(v, ["𒋛", "other", "𒋛", "", "", "", "Sumerogram of qarnum"]) + let v = native_list_append(v, ["𒅊", "other", "𒅊", "", "", "", "Sumerogram of warāqum"]) + let v = native_list_append(v, ["𒋠", "other", "𒋠", "", "", "", "Sumerogram of šārtum"]) + let v = native_list_append(v, ["𒄾", "other", "𒄾", "", "", "", "Sumerogram of ḫadûm"]) + let v = native_list_append(v, ["𒄞", "other", "𒄞", "", "", "", "Sumerogram of alpum"]) + let v = native_list_append(v, ["𒌨", "other", "𒌨", "", "", "", "Sumerogram of kalbum"]) + let v = native_list_append(v, ["𒌨𒈤", "other", "𒌨𒈤", "", "", "", "Sumerogram of urmaḫḫum"]) + let v = native_list_append(v, ["𒊍", "other", "𒊍", "", "", "", "Sumerogram of asum"]) + let v = native_list_append(v, ["𒌨𒁇𒊏", "other", "𒌨𒁇𒊏", "", "", "", "Sumerogram of barbarum"]) + let v = native_list_append(v, ["𒀭𒁇", "other", "𒀭𒁇", "", "", "", "Sumerogram of parzillum"]) + let v = native_list_append(v, ["𒅆𒂍𒉪", "other", "𒅆𒂍𒉪", "", "", "", "Sumerogram of ziqqurratum"]) + let v = native_list_append(v, ["𒁲", "other", "𒁲", "", "", "", "Sumerogram of dīnum"]) + let v = native_list_append(v, ["𒅆", "other", "𒅆", "", "", "", "Sumerogram of amārum"]) + let v = native_list_append(v, ["𒀵", "other", "𒀵", "", "", "", "Sumerogram of wardum"]) + let v = native_list_append(v, ["𒍩", "other", "𒍩", "", "", "", "Sumerogram of kiššātum"]) + let v = native_list_append(v, ["𒋗", "other", "𒋗", "", "", "", "Sumerogram of qātum"]) + let v = native_list_append(v, ["𒆠", "other", "𒆠", "", "", "", "Sumerogram of ašrum"]) + let v = native_list_append(v, ["𒆠𒉘", "other", "𒆠𒉘", "", "", "", "Sumerogram of râmum"]) + let v = native_list_append(v, ["𒁺", "other", "𒁺", "", "", "", "Sumerogram of alākum"]) + let v = native_list_append(v, ["𒂵", "other", "𒂵", "", "", "", "Sumerogram of šizbum"]) + let v = native_list_append(v, ["𒉈", "other", "𒉈", "", "", "", "Sumerogram of eššum"]) + let v = native_list_append(v, ["𒍚", "other", "𒍚", "", "", "", "Sumerogram of enzum"]) + let v = native_list_append(v, ["𒀲", "other", "𒀲", "", "", "", "Sumerogram of imērum"]) + let v = native_list_append(v, ["𒀭", "other", "𒀭", "", "", "", "Sumerogram of elûm"]) + let v = native_list_append(v, ["𒆍𒃲", "other", "𒆍𒃲", "", "", "", "Sumerogram of abullum"]) + let v = native_list_append(v, ["𒊺", "other", "𒊺", "", "", "", "Sumerogram of ûm"]) + let v = native_list_append(v, ["𒀜", "other", "𒀜", "", "", "", "Sumerogram of abum"]) + let v = native_list_append(v, ["𒅥", "other", "𒅥", "", "", "", "Sumerogram of akālum"]) + let v = native_list_append(v, ["𒀯", "other", "𒀯", "", "", "", "Sumerogram of kakkabum"]) + let v = native_list_append(v, ["𒂼", "other", "𒂼", "", "", "", "Sumerogram of ummum"]) + let v = native_list_append(v, ["𒌗", "other", "𒌗", "", "", "", "Sumerogram of warḫum"]) + let v = native_list_append(v, ["𒀳", "other", "𒀳", "", "", "", "Sumerogram of ikkarum"]) + let v = native_list_append(v, ["𒄷𒄭", "other", "𒄷𒄭", "", "", "", "Sumerogram of damum"]) + let v = native_list_append(v, ["𒀭𒈹", "other", "𒀭𒈹", "", "", "", "Sumerogram of Ištar"]) + let v = native_list_append(v, ["𒄑", "other", "𒄑", "", "", "", "Sumerogram of iṣum"]) + let v = native_list_append(v, ["𒀀", "other", "𒀀", "", "", "", "Sumerogram of mû"]) + let v = native_list_append(v, ["𒊮", "other", "𒊮", "", "", "", "Sumerogram of libbum"]) + let v = native_list_append(v, ["𒅴", "other", "𒅴", "", "", "", "Sumerogram of lišānum"]) + let v = native_list_append(v, ["𒀉", "other", "𒀉", "", "", "", "Sumerogram of aḫum"]) + let v = native_list_append(v, ["𒁮", "other", "𒁮", "", "", "", "Sumerogram of aššatum"]) + let v = native_list_append(v, ["𒋞", "other", "𒋞", "", "", "", "Sumerogram of būdum"]) + let v = native_list_append(v, ["𒅗", "other", "𒅗", "", "", "", "Sumerogram of qabûm"]) + let v = native_list_append(v, ["𒍑", "other", "𒍑", "", "", "", "Sumerogram of zikarum"]) + let v = native_list_append(v, ["𒈫", "other", "𒈫", "", "", "", "Sumerogram of šinā"]) + let v = native_list_append(v, ["𒐈", "other", "𒐈", "", "", "", "Sumerogram of šalāšat"]) + let v = native_list_append(v, ["𒉡𒌝𒈠𒄷", "other", "𒉡𒌝𒈠𒄷", "", "", "", "Sumerogram of zībum"]) + let v = native_list_append(v, ["𒈪", "other", "𒈪", "", "", "", "Sumerogram of mūšum"]) + let v = native_list_append(v, ["𒆥𒋝", "other", "𒆥𒋝", "", "", "", "Sumerogram of līliātum"]) + let v = native_list_append(v, ["𒑆", "other", "𒑆", "", "", "", "Sumerogram of tišīt"]) + let v = native_list_append(v, ["𒉿", "other", "𒉿", "", "", "", "Sumerogram of uznum"]) + let v = native_list_append(v, ["𒀲𒆳𒊏", "other", "𒀲𒆳𒊏", "", "", "", "Sumerogram of sīsûm"]) + let v = native_list_append(v, ["𒊕𒁺", "other", "𒊕𒁺", "", "", "", "Sumerogram of qaqqadum"]) + let v = native_list_append(v, ["𒌋𒅗", "other", "𒌋𒅗", "", "", "", "Sumerogram of eli"]) + let v = native_list_append(v, ["𒄭", "other", "𒄭", "", "", "", "Sumerogram of ṭābum"]) + let v = native_list_append(v, ["𒋼", "other", "𒋼", "", "", "", "Sumerogram of kakkabum"]) + let v = native_list_append(v, ["𒉎", "other", "𒉎", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄷", "other", "𒄷", "", "", "", "Sumerogram of iṣṣūrum"]) + let v = native_list_append(v, ["𒂊", "other", "𒂊", "", "", "", "Sumerogram of īkum"]) + let v = native_list_append(v, ["𒌋𒀜", "other", "𒌋𒀜", "", "", "", "Sumerogram of kīrum"]) + let v = native_list_append(v, ["𒄠𒋛", "other", "𒄠𒋛", "", "", "", "Sumerogram of pīrum"]) + let v = native_list_append(v, ["𒁾", "other", "𒁾", "", "", "", "Sumerogram of ṭuppum"]) + let v = native_list_append(v, ["𒄑𒂆𒈦", "other", "𒄑𒂆𒈦", "", "", "", "Sumerogram of Gilgāmeš"]) + let v = native_list_append(v, ["𒃵𒂷", "other", "𒃵𒂷", "", "", "", "Akkadogram of gammalu"]) + let v = native_list_append(v, ["-atum", "other", "-atum", "", "", "", "Suffix used to"]) + let v = native_list_append(v, ["𒀭𒈾", "other", "𒀭𒈾", "", "", "", "Sumerogram of annakum"]) + let v = native_list_append(v, ["𒀀𒇉", "other", "𒀀𒇉", "", "", "", "Sumerogram of nārum"]) + let v = native_list_append(v, ["erbet", "other", "erbet", "", "", "", "four 4"]) + let v = native_list_append(v, ["𒈾", "other", "𒈾", "", "", "", "Sumerogram of awīlum"]) + let v = native_list_append(v, ["𒋳", "other", "𒋳", "", "", "", "Sumerogram of lapātum"]) + let v = native_list_append(v, ["𒌑", "other", "𒌑", "", "", "", "Sumerogram of šammum"]) + let v = native_list_append(v, ["𒁕", "other", "𒁕", "", "", "", "Sumerogram of idum"]) + let v = native_list_append(v, ["𒀝", "other", "𒀝", "", "", "", "Sumerogram of epēšum"]) + let v = native_list_append(v, ["𒄿", "other", "𒄿", "", "", "", "Sumerogram of nâdum"]) + let v = native_list_append(v, ["𒉏", "other", "𒉏", "", "", "", "Sumerogram of elûm"]) + let v = native_list_append(v, ["𒁍", "other", "𒁍", "", "", "", "Sumerogram of arākum"]) + let v = native_list_append(v, ["𒊏", "other", "𒊏", "", "", "", "Sumerogram of maḫāṣum"]) + let v = native_list_append(v, ["𒅅", "other", "𒅅", "", "", "", "Sumerogram of daltum"]) + let v = native_list_append(v, ["𒉡", "other", "𒉡", "", "", "", "Sumerogram of lā"]) + let v = native_list_append(v, ["𒅇", "other", "𒅇", "", "", "", "Sumerogram of u"]) + let v = native_list_append(v, ["𒋫", "other", "𒋫", "", "", "", "Sumerogram of ištu"]) + let v = native_list_append(v, ["𒆬𒌓", "other", "𒆬𒌓", "", "", "", "Sumerogram of kaspum"]) + let v = native_list_append(v, ["𒉆", "other", "𒉆", "", "", "", "Sumerogram of šīmtum"]) + let v = native_list_append(v, ["𒊒", "other", "𒊒", "", "", "", "Sumerogram of maqātum"]) + let v = native_list_append(v, ["𒆪", "other", "𒆪", "", "", "", "Sumerogram of kakkum"]) + let v = native_list_append(v, ["𒄠", "other", "𒄠", "", "", "", "Sumerogram of rīmum"]) + let v = native_list_append(v, ["𒀀𒁺", "other", "𒀀𒁺", "", "", "", "Sumerogram of adi"]) + let v = native_list_append(v, ["𒌋𒈫", "other", "𒌋𒈫", "", "", "", "12"]) + let v = native_list_append(v, ["𒌌", "other", "𒌌", "", "", "", "Sumerogram of kakkabum"]) + let v = native_list_append(v, ["𒄖𒍝", "other", "𒄖𒍝", "", "", "", "Sumerogram of kussûm"]) + let v = native_list_append(v, ["𒅎", "other", "𒅎", "", "", "", "Sumerogram of ṭīdum"]) + let v = native_list_append(v, ["𒀭𒅎", "other", "𒀭𒅎", "", "", "", "Sumerogram of Adad"]) + let v = native_list_append(v, ["𒀭𒌓", "other", "𒀭𒌓", "", "", "", "Sumerogram of Šamaš"]) + let v = native_list_append(v, ["𒁉", "other", "𒁉", "", "", "", "Sumerogram of šū"]) + let v = native_list_append(v, ["𒀭𒀀𒇉", "other", "𒀭𒀀𒇉", "", "", "", "Sumerogram of nārum"]) + let v = native_list_append(v, ["𒆍", "other", "𒆍", "", "", "", "Sumerogram of bābum"]) + let v = native_list_append(v, ["𒆍𒀭𒊏𒆠", "other", "𒆍𒀭𒊏𒆠", "", "", "", "Sumerogram of Bābilim"]) + let v = native_list_append(v, ["𒋠𒍝𒆳𒋛𒀀", "other", "𒋠𒍝𒆳𒋛𒀀", "", "", "", "Akkadogram of argamannu"]) + let v = native_list_append(v, ["𒂍𒃲", "other", "𒂍𒃲", "", "", "", "Sumerogram of ēkallum"]) + let v = native_list_append(v, ["nēr", "other", "nēr", "", "", "", "six hundred 600"]) + let v = native_list_append(v, ["𒀖", "other", "𒀖", "", "", "", "Sumerogram of arḫum"]) + let v = native_list_append(v, ["𒀭𒆘", "other", "𒀭𒆘", "", "", "", "Sumerogram of šēdum"]) + let v = native_list_append(v, ["𒃾", "other", "𒃾", "", "", "", "Sumerogram of karānum"]) + let v = native_list_append(v, ["𒁵", "other", "𒁵", "", "", "", "Sumerogram of ṭabtum"]) + let v = native_list_append(v, ["𒀀𒇉𒈦𒄘𒃼", "other", "𒀀𒇉𒈦𒄘𒃼", "", "", "", "Sumerogram of Idiglat"]) + let v = native_list_append(v, ["𒆸", "other", "𒆸", "", "", "", "Sumerogram of upqum"]) + let v = native_list_append(v, ["𒉽", "other", "𒉽", "", "", "", "Sumerogram of nakārum"]) + let v = native_list_append(v, ["𒀭𒆗", "other", "𒀭𒆗", "", "", "", "Sumerogram of lamassum"]) + let v = native_list_append(v, ["𒉺", "other", "𒉺", "", "", "", "Sumerogram of ḫaṭṭum"]) + let v = native_list_append(v, ["𒄑𒉺", "other", "𒄑𒉺", "", "", "", "Sumerogram of ḫaṭṭum"]) + let v = native_list_append(v, ["𒉼", "other", "𒉼", "", "", "", "Sumerogram of qaštum"]) + let v = native_list_append(v, ["𒄑𒉼", "other", "𒄑𒉼", "", "", "", "Sumerogram of qaštum"]) + let v = native_list_append(v, ["𒊩", "other", "𒊩", "", "", "", "Sumerogram of sinništum"]) + let v = native_list_append(v, ["𒄩", "other", "𒄩", "", "", "", "Sumerogram of nūnum"]) + let v = native_list_append(v, ["𒃻", "other", "𒃻", "", "", "", "Sumerogram of šakānum"]) + let v = native_list_append(v, ["𒊹", "other", "𒊹", "", "", "", "Sumerogram of kiššatum"]) + let v = native_list_append(v, ["𒂼𒅈𒄄", "other", "𒂼𒅈𒄄", "", "", "", "Sumerogram of andurārum"]) + let v = native_list_append(v, ["𒌦", "other", "𒌦", "", "", "", "Sumerogram of mātum"]) + let v = native_list_append(v, ["𒄀", "other", "𒄀", "", "", "", "Sumerogram of qanûm"]) + let v = native_list_append(v, ["𒄬", "other", "𒄬", "", "", "", "Akkadogram of šemûm"]) + let v = native_list_append(v, ["𒆬𒄀", "other", "𒆬𒄀", "", "", "", "Sumerogram of ḫurāṣum"]) + let v = native_list_append(v, ["𒍑𒆪", "other", "𒍑𒆪", "", "", "", "Sumerogram of kalûm"]) + let v = native_list_append(v, ["𒀋", "other", "𒀋", "", "", "", "Sumerogram of abum"]) + let v = native_list_append(v, ["𒈗𒁺", "other", "𒈗𒁺", "", "", "", "Akkadogram of Šarrum-kīn"]) + let v = native_list_append(v, ["𒁀", "other", "𒁀", "", "", "", "Sumerogram of qiāšum"]) + let v = native_list_append(v, ["𒈣", "other", "𒈣", "", "", "", "Sumerogram of eleppum"]) + let v = native_list_append(v, ["𒀁", "other", "𒀁", "", "", "", "Sumerogram of aplum"]) + let v = native_list_append(v, ["𒌨𒈨", "other", "𒌨𒈨", "", "", "", "Sumerogram of sāsum"]) + let v = native_list_append(v, ["𒀉𒁍𒁕", "other", "𒀉𒁍𒁕", "", "", "", "Sumerogram of ariktum"]) + let v = native_list_append(v, ["𒅗𒈲", "other", "𒅗𒈲", "", "", "", "Sumerogram of tūltum"]) + let v = native_list_append(v, ["𒄊𒉻𒁺", "other", "𒄊𒉻𒁺", "", "", "", "Sumerogram of eṣemtum"]) + let v = native_list_append(v, ["𒃢", "other", "𒃢", "", "", "", "Sumerogram of kabsum"]) + let v = native_list_append(v, ["𒆧", "other", "𒆧", "", "", "", "Sumerogram of kiššatum"]) + let v = native_list_append(v, ["𒀭𒀫𒌓", "other", "𒀭𒀫𒌓", "", "", "", "Sumerogram of Marduk"]) + let v = native_list_append(v, ["𒀀𒂵𒄠", "other", "𒀀𒂵𒄠", "", "", "", "Sumerogram of agammum"]) + let v = native_list_append(v, ["-ī", "other", "-ī", "", "", "", "Suffix used to"]) + let v = native_list_append(v, ["𒌚𒁈", "other", "𒌚𒁈", "", "", "", "Sumerogram of nisannum"]) + let v = native_list_append(v, ["𒌚𒄞", "other", "𒌚𒄞", "", "", "", "Sumerogram of Ayyārum"]) + let v = native_list_append(v, ["𒃵", "other", "𒃵", "", "", "", "Sumerogram of mâtum"]) + let v = native_list_append(v, ["sebet", "other", "sebet", "", "", "", "seven 7"]) + let v = native_list_append(v, ["𒋚", "other", "𒋚", "", "", "", "Sumerogram of šaḫûm"]) + let v = native_list_append(v, ["𒂄", "other", "𒂄", "", "", "", "Sumerogram of šaḫûm"]) + let v = native_list_append(v, ["𒁈", "other", "𒁈", "", "", "", "Sumerogram of parakkum"]) + let v = native_list_append(v, ["𒊕𒆠", "other", "𒊕𒆠", "", "", "", "Sumerogram of pūtum"]) + let v = native_list_append(v, ["𒍎", "other", "𒍎", "", "", "", "Sumerogram of paššūrum"]) + let v = native_list_append(v, ["𒊬", "other", "𒊬", "", "", "", "Sumerogram of kirûm"]) + let v = native_list_append(v, ["𒆳", "other", "𒆳", "", "", "", "Sumerogram of kašādum"]) + let v = native_list_append(v, ["𒀾", "other", "𒀾", "", "", "", "Sumerogram of arārum"]) + let v = native_list_append(v, ["𒄯", "other", "𒄯", "", "", "", "Sumerogram of erûm"]) + let v = native_list_append(v, ["𒃻𒁀", "other", "𒃻𒁀", "", "", "", "Sumerogram of qiāšum"]) + let v = native_list_append(v, ["𒁁", "other", "𒁁", "", "", "", "Sumerogram of petûm"]) + let v = native_list_append(v, ["𒊓", "other", "𒊓", "", "", "", "Sumerogram of kiššum"]) + let v = native_list_append(v, ["𒍪", "other", "𒍪", "", "", "", "Sumerogram of edûm"]) + let v = native_list_append(v, ["𒋢", "other", "𒋢", "", "", "", "Sumerogram of maškum"]) + let v = native_list_append(v, ["𒂖", "other", "𒂖", "", "", "", "Sumerogram of ellum"]) + let v = native_list_append(v, ["𒆬", "other", "𒆬", "", "", "", "Sumerogram of kaspum"]) + let v = native_list_append(v, ["𒀂", "other", "𒀂", "", "", "", "Sumerogram of agammum"]) + let v = native_list_append(v, ["𒁶", "other", "𒁶", "", "", "", "Sumerogram of kīma"]) + let v = native_list_append(v, ["𒀊𒁀", "other", "𒀊𒁀", "", "", "", "Sumerogram of abum"]) + let v = native_list_append(v, ["𒀀𒀊𒁀", "other", "𒀀𒀊𒁀", "", "", "", "Sumerogram of tiāmtum"]) + let v = native_list_append(v, ["𒎎", "other", "𒎎", "", "", "", "Sumerogram of abnum"]) + let v = native_list_append(v, ["𒁦", "other", "𒁦", "", "", "", "Sumerogram of supūrum"]) + let v = native_list_append(v, ["𒁲𒋻", "other", "𒁲𒋻", "", "", "", "Sumerogram of dayyānum"]) + let v = native_list_append(v, ["𒆕", "other", "𒆕", "", "", "", "Sumerogram of banûm"]) + let v = native_list_append(v, ["𒎏", "other", "𒎏", "", "", "", "Sumerogram of aḫātum"]) + let v = native_list_append(v, ["𒆠𒂗𒄀", "other", "𒆠𒂗𒄀", "", "", "", "Sumerogram of Šumerum"]) + let v = native_list_append(v, ["𒀀𒁀", "other", "𒀀𒁀", "", "", "", "Akkadogram of abum"]) + let v = native_list_append(v, ["𒊷", "other", "𒊷", "", "", "", "Sumerogram of gišimmarum"]) + let v = native_list_append(v, ["𒉋", "other", "𒉋", "", "", "", "Sumerogram of edēšum"]) + let v = native_list_append(v, ["𒅍", "other", "𒅍", "", "", "", "Sumerogram of našûm"]) + let v = native_list_append(v, ["𒋧𒊬", "other", "𒋧𒊬", "", "", "", "Sumerogram of šūmū"]) + let v = native_list_append(v, ["ištēn", "other", "ištēn", "", "", "", "one 1"]) + let v = native_list_append(v, ["𒄑𒆪", "other", "𒄑𒆪", "", "", "", "Sumerogram of kakkum"]) + let v = native_list_append(v, ["𒄈", "other", "𒄈", "", "", "", "Sumerogram of patrum"]) + let v = native_list_append(v, ["𒂆", "other", "𒂆", "", "", "", "Sumerogram of nāgirum"]) + let v = native_list_append(v, ["𒄘", "other", "𒄘", "", "", "", "Sumerogram of kišādum"]) + let v = native_list_append(v, ["𒄑𒄯", "other", "𒄑𒄯", "", "", "", "Sumerogram of uṣurtum"]) + let v = native_list_append(v, ["𒉌𒄑", "other", "𒉌𒄑", "", "", "", "Sumerogram of šamnum"]) + let v = native_list_append(v, ["𒌓𒅗𒁇", "other", "𒌓𒅗𒁇", "", "", "", "Sumerogram of siparrum"]) + let v = native_list_append(v, ["𒍼", "other", "𒍼", "", "", "", "Sumerogram of kibtum"]) + let v = native_list_append(v, ["𒉭", "other", "𒉭", "", "", "", "Sumerogram of pelûm"]) + let v = native_list_append(v, ["𒉐", "other", "𒉐", "", "", "", "Sumerogram of wabālum"]) + let v = native_list_append(v, ["𒌇", "other", "𒌇", "", "", "", "Sumerogram of zamārum"]) + let v = native_list_append(v, ["𒌨𒂠", "other", "𒌨𒂠", "", "", "", "Sumerogram of kalbum"]) + let v = native_list_append(v, ["𒄵", "other", "𒄵", "", "", "", "Sumerogram of sapāḫum"]) + let v = native_list_append(v, ["𒍠", "other", "𒍠", "", "", "", "Sumerogram of aḫum"]) + let v = native_list_append(v, ["𒋃", "other", "𒋃", "", "", "", "Sumerogram of kirbābum"]) + let v = native_list_append(v, ["𒆪𒇷", "other", "𒆪𒇷", "", "", "", "Sumerogram of ibrum"]) + let v = native_list_append(v, ["𒐊", "other", "𒐊", "", "", "", "Sumerogram of ḫamšat"]) + let v = native_list_append(v, ["𒐉", "other", "𒐉", "", "", "", "Sumerogram of erbet"]) + let v = native_list_append(v, ["𒐋", "other", "𒐋", "", "", "", "Sumerogram of šeššet"]) + let v = native_list_append(v, ["𒐌", "other", "𒐌", "", "", "", "Sumerogram of sebet"]) + let v = native_list_append(v, ["𒐍", "other", "𒐍", "", "", "", "Sumerogram of samānat"]) + let v = native_list_append(v, ["𒆗", "other", "𒆗", "", "", "", "Sumerogram of danānum"]) + let v = native_list_append(v, ["𒂡", "other", "𒂡", "", "", "", "Sumerogram of zamārum"]) + let v = native_list_append(v, ["𒀀𒊮", "other", "𒀀𒊮", "", "", "", "Sumerogram of eqlum"]) + let v = native_list_append(v, ["𒃷", "other", "𒃷", "", "", "", "Sumerogram of eqlum"]) + let v = native_list_append(v, ["𒉆𒋻", "other", "𒉆𒋻", "", "", "", "Sumerogram of šīmtum"]) + let v = native_list_append(v, ["𒁷", "other", "𒁷", "", "", "", "Sumerogram of balāṭum"]) + let v = native_list_append(v, ["𒌢", "other", "𒌢", "", "", "", "Sumerogram of ṣuprum"]) + let v = native_list_append(v, ["𒄑𒈪", "other", "𒄑𒈪", "", "", "", "Sumerogram of ṣillum"]) + let v = native_list_append(v, ["𒊨", "other", "𒊨", "", "", "", "Sumerogram of ṣulūlum"]) + let v = native_list_append(v, ["𒂗𒈾", "other", "𒂗𒈾", "", "", "", "Sumerogram of mīnum"]) + let v = native_list_append(v, ["𒋼𒇲", "other", "𒋼𒇲", "", "", "", "Sumerogram of gallûm"]) + let v = native_list_append(v, ["𒌑𒄉", "other", "𒌑𒄉", "", "", "", "Sumerogram of ašāgum"]) + let v = native_list_append(v, ["𒄊", "other", "𒄊", "", "", "", "Sumerogram of šēpum"]) + let v = native_list_append(v, ["𒀀𒈠𒊒", "other", "𒀀𒈠𒊒", "", "", "", "Sumerogram of abūbum"]) + let v = native_list_append(v, ["𒅆𒌨", "other", "𒅆𒌨", "", "", "", "Sumerogram of gallûm"]) + let v = native_list_append(v, ["𒈛", "other", "𒈛", "", "", "", "Sumerogram of zakûm"]) + let v = native_list_append(v, ["𒉣", "other", "𒉣", "", "", "", "Sumerogram of rubûm"]) + let v = native_list_append(v, ["𒅻", "other", "𒅻", "", "", "", "Sumerogram of šaptum"]) + let v = native_list_append(v, ["𒅾", "other", "𒅾", "", "", "", "Sumerogram of šaptum"]) + let v = native_list_append(v, ["𒀄", "other", "𒀄", "", "", "", "Sumerogram of ḫalāqum"]) + let v = native_list_append(v, ["𒀍", "other", "𒀍", "", "", "", "Sumerogram of qabrum"]) + let v = native_list_append(v, ["𒀏", "other", "𒀏", "", "", "", "Sumerogram of Ninua"]) + let v = native_list_append(v, ["𒁑", "other", "𒁑", "", "", "", "Sumerogram of pulukkum"]) + let v = native_list_append(v, ["𒁓", "other", "𒁓", "", "", "", "Sumerogram of pūrum"]) + let v = native_list_append(v, ["𒁼", "other", "𒁼", "", "", "", "Sumerogram of šuršum"]) + let v = native_list_append(v, ["𒂂", "other", "𒂂", "", "", "", "Sumerogram of kabātum"]) + let v = native_list_append(v, ["𒂕", "other", "𒂕", "", "", "", "Sumerogram of warka"]) + let v = native_list_append(v, ["𒂦", "other", "𒂦", "", "", "", "Sumerogram of dūrum"]) + let v = native_list_append(v, ["𒃰", "other", "𒃰", "", "", "", "Sumerogram of kitûm"]) + let v = native_list_append(v, ["𒃽", "other", "𒃽", "", "", "", "Sumerogram of bēltum"]) + let v = native_list_append(v, ["𒄃", "other", "𒄃", "", "", "", "Sumerogram of egērum"]) + let v = native_list_append(v, ["𒄇", "other", "𒄇", "", "", "", "Sumerogram of eṭemmum"]) + let v = native_list_append(v, ["𒄕", "other", "𒄕", "", "", "", "Akkadogram of našûm"]) + let v = native_list_append(v, ["𒄧", "other", "𒄧", "", "", "", "Sumerogram of inbum"]) + let v = native_list_append(v, ["𒆇", "other", "𒆇", "", "", "", "Sumerogram of pûm"]) + let v = native_list_append(v, ["𒆏", "other", "𒆏", "", "", "", "Sumerogram of šumēlum"]) + let v = native_list_append(v, ["𒆟", "other", "𒆟", "", "", "", "Sumerogram of rakāsum"]) + let v = native_list_append(v, ["𒆥", "other", "𒆥", "", "", "", "Sumerogram of šapārum"]) + let v = native_list_append(v, ["𒇅", "other", "𒇅", "", "", "", "Sumerogram of tinūrum"]) + let v = native_list_append(v, ["𒇌", "other", "𒇌", "", "", "", "Sumerogram of tinūrum"]) + let v = native_list_append(v, ["𒇯", "other", "𒇯", "", "", "", "Sumerogram of tīlum"]) + let v = native_list_append(v, ["𒇲", "other", "𒇲", "", "", "", "Sumerogram of tarāṣum"]) + let v = native_list_append(v, ["𒇿", "other", "𒇿", "", "", "", "Sumerogram of pagrum"]) + let v = native_list_append(v, ["𒈧", "other", "𒈧", "", "", "", "Sumerogram of bīrum"]) + let v = native_list_append(v, ["𒈰", "other", "𒈰", "", "", "", "Sumerogram of šārtum"]) + let v = native_list_append(v, ["𒈽", "other", "𒈽", "", "", "", "Sumerogram of uššum"]) + let v = native_list_append(v, ["𒈿", "other", "𒈿", "", "", "", "Sumerogram of niālum"]) + let v = native_list_append(v, ["𒊻", "other", "𒊻", "", "", "", "Sumerogram of ūsum"]) + let v = native_list_append(v, ["𒋓", "other", "𒋓", "", "", "", "Sumerogram of iškum"]) + let v = native_list_append(v, ["𒋙", "other", "𒋙", "", "", "", "Sumerogram of kiššatum"]) + let v = native_list_append(v, ["𒋦", "other", "𒋦", "", "", "", "Sumerogram of qimmatum"]) + let v = native_list_append(v, ["𒋩", "other", "𒋩", "", "", "", "Sumerogram of zanānum"]) + let v = native_list_append(v, ["𒋭", "other", "𒋭", "", "", "", "Sumerogram of dišpum"]) + let v = native_list_append(v, ["𒋺", "other", "𒋺", "", "", "", "Sumerogram of ezēbum"]) + let v = native_list_append(v, ["𒌍", "other", "𒌍", "", "", "", "Akkadogram of amūtum"]) + let v = native_list_append(v, ["𒌜", "other", "𒌜", "", "", "", "Sumerogram of eṭemmum"]) + let v = native_list_append(v, ["𒌤", "other", "𒌤", "", "", "", "Sumerogram of šasûm"]) + let v = native_list_append(v, ["𒌫", "other", "𒌫", "", "", "", "Sumerogram of išdum"]) + let v = native_list_append(v, ["𒍜", "other", "𒍜", "", "", "", "Sumerogram of šīrum"]) + let v = native_list_append(v, ["𒎙", "other", "𒎙", "", "", "", "Akkadogram of šarratum"]) + let v = native_list_append(v, ["𒄑𒅅", "other", "𒄑𒅅", "", "", "", "Sumerogram of daltum"]) + let v = native_list_append(v, ["-iš", "other", "-iš", "", "", "", "Combined with an"]) + let v = native_list_append(v, ["𒄑𒁍𒁕", "other", "𒄑𒁍𒁕", "", "", "", "Sumerogram of ariktum"]) + let v = native_list_append(v, ["𒌋𒁯", "other", "𒌋𒁯", "", "", "", "Sumerogram of Ištar"]) + let v = native_list_append(v, ["𒊩𒆳", "other", "𒊩𒆳", "", "", "", "Sumerogram of amtum"]) + let v = native_list_append(v, ["𒁾𒊬", "other", "𒁾𒊬", "", "", "", "Sumerogram of ṭupšarrum"]) + let v = native_list_append(v, ["𒉡𒌝𒈠", "other", "𒉡𒌝𒈠", "", "", "", "Sumerogram of zību"]) + let v = native_list_append(v, ["𒀳𒇲", "other", "𒀳𒇲", "", "", "", "Sumerogram of erēšum"]) + let v = native_list_append(v, ["𒐞", "other", "𒐞", "", "", "", "Sumerogram of nēr"]) + let v = native_list_append(v, ["šinā", "other", "šinā", "", "", "", "two 2"]) + let v = native_list_append(v, ["𒂍𒀀", "other", "𒂍𒀀", "", "", "", "Sumerogram of kaprum"]) + let v = native_list_append(v, ["𒆯𒆯", "other", "𒆯𒆯", "", "", "", "Sumerogram of matqum"]) + let v = native_list_append(v, ["𒂅", "other", "𒂅", "", "", "", "Sumerogram of šiqlum"]) + let v = native_list_append(v, ["𒇻𒌀", "other", "𒇻𒌀", "", "", "", "Sumerogram of bibbum"]) + let v = native_list_append(v, ["𒀯𒇻𒌀", "other", "𒀯𒇻𒌀", "", "", "", "Sumerogram of bibbum"]) + let v = native_list_append(v, ["𒄀𒆤", "other", "𒄀𒆤", "", "", "", "Sumerogram of kītum"]) + let v = native_list_append(v, ["𒆠𒌓", "other", "𒆠𒌓", "", "", "", "Sumerogram of maškanum"]) + let v = native_list_append(v, ["𒊩𒈨", "other", "𒊩𒈨", "", "", "", "Sumerogram of nadītum"]) + let v = native_list_append(v, ["𒄑𒌇", "other", "𒄑𒌇", "", "", "", "Sumerogram of šemûm"]) + let v = native_list_append(v, ["šalāšat", "other", "šalāšat", "", "", "", "three 3"]) + let v = native_list_append(v, ["ḫamšat", "other", "ḫamšat", "", "", "", "five 5"]) + let v = native_list_append(v, ["šeššet", "other", "šeššet", "", "", "", "six 6"]) + let v = native_list_append(v, ["samānat", "other", "samānat", "", "", "", "eight 8"]) + let v = native_list_append(v, ["tišīt", "other", "tišīt", "", "", "", "nine 9"]) + let v = native_list_append(v, ["ešeret", "other", "ešeret", "", "", "", "ten 10"]) + let v = native_list_append(v, ["𒀭𒊺𒉀", "other", "𒀭𒊺𒉀", "", "", "", "Sumerogram of Nisaba"]) + let v = native_list_append(v, ["𒊩𒆷", "other", "𒊩𒆷", "", "", "", "Sumerogram of biṣṣūrum"]) + let v = native_list_append(v, ["𒇯𒁺", "other", "𒇯𒁺", "", "", "", "Sumerogram of elûm"]) + let v = native_list_append(v, ["𒈦𒄘𒃼", "other", "𒈦𒄘𒃼", "", "", "", "only used in"]) + let v = native_list_append(v, ["𒉣𒈨", "other", "𒉣𒈨", "", "", "", "Sumerogram of apkallum"]) + let v = native_list_append(v, ["𒄑𒄖𒍝", "other", "𒄑𒄖𒍝", "", "", "", "Sumerogram of kussûm"]) + let v = native_list_append(v, ["𒄑𒌁", "other", "𒄑𒌁", "", "", "", "Sumerogram of qištum"]) + let v = native_list_append(v, ["𒎎𒋆𒁉𒍣𒁕", "other", "𒎎𒋆𒁉𒍣𒁕", "", "", "", "Sumerogram of guḫlum"]) + let v = native_list_append(v, ["𒅆𒂟", "other", "𒅆𒂟", "", "", "", "Sumerogram of damāqum"]) + let v = native_list_append(v, ["𒈠𒁕", "other", "𒈠𒁕", "", "", "", "Sumerogram of mātum"]) + let v = native_list_append(v, ["𒉎𒍪", "other", "𒉎𒍪", "", "", "", "Sumerogram of šarrāqum"]) + let v = native_list_append(v, ["𒄑𒂷𒄑", "other", "𒄑𒂷𒄑", "", "", "", "Sumerogram of kakkum"]) + let v = native_list_append(v, ["𒁮𒃼", "other", "𒁮𒃼", "", "", "", "Akkadogram of tamkārum"]) + let v = native_list_append(v, ["𒂍𒁾𒁀", "other", "𒂍𒁾𒁀", "", "", "", "Sumerogram of bīt"]) + let v = native_list_append(v, ["𒂍𒁾𒁀𒀀", "other", "𒂍𒁾𒁀𒀀", "", "", "", "Sumerogram of bīt"]) + let v = native_list_append(v, ["𒄑𒇷", "other", "𒄑𒇷", "", "", "", "Sumerogram of burāšum"]) + let v = native_list_append(v, ["𒄑𒋆𒇷", "other", "𒄑𒋆𒇷", "", "", "", "Sumerogram of burāšum"]) + let v = native_list_append(v, ["𒇽𒀳", "other", "𒇽𒀳", "", "", "", "Sumerogram of ikkarum"]) + let v = native_list_append(v, ["𒄑𒌉𒂠", "other", "𒄑𒌉𒂠", "", "", "", "Sumerogram of simmiltum"]) + let v = native_list_append(v, ["𒄑𒄿𒇻", "other", "𒄑𒄿𒇻", "", "", "", "Sumerogram of simmiltum"]) + let v = native_list_append(v, ["𒄑𒋆𒊍", "other", "𒄑𒋆𒊍", "", "", "", "Sumerogram of asum"]) + let v = native_list_append(v, ["𒄑𒊍", "other", "𒄑𒊍", "", "", "", "Sumerogram of asum"]) + let v = native_list_append(v, ["𒄑𒄒", "other", "𒄑𒄒", "", "", "", "Sumerogram of šallūrum"]) + let v = native_list_append(v, ["𒑗", "other", "𒑗", "", "", "", "Sumerogram of šalāšat"]) + let v = native_list_append(v, ["𒄀𒄥", "other", "𒄀𒄥", "", "", "", "Sumerogram of pānum"]) + let v = native_list_append(v, ["𒈣𒁻", "other", "𒈣𒁻", "", "", "", "Sumerogram of malāḫum"]) + let v = native_list_append(v, ["𒆕𒀀𒁉", "other", "𒆕𒀀𒁉", "", "", "", "Sumerogram of kalûm"]) + let v = native_list_append(v, ["𒌚𒉈", "other", "𒌚𒉈", "", "", "", "Sumerogram of Abum"]) + let v = native_list_append(v, ["𒃶𒅅", "other", "𒃶𒅅", "", "", "", "Sumerogram of ḫegallum"]) + let v = native_list_append(v, ["𒅎𒊑𒀀", "other", "𒅎𒊑𒀀", "", "", "", "Sumerogram of kimtum"]) + let v = native_list_append(v, ["𒄑𒇀", "other", "𒄑𒇀", "", "", "", "Sumerogram of narkabtum"]) + let v = native_list_append(v, ["𒊩𒇬", "other", "𒊩𒇬", "", "", "", "Sumerogram of pûm"]) + let v = native_list_append(v, ["𒀲𒋙𒀯", "other", "𒀲𒋙𒀯", "", "", "", "Sumerogram of parûm"]) + let v = native_list_append(v, ["𒌵𒆠", "other", "𒌵𒆠", "", "", "", "Sumerogram of Akkade"]) + let v = native_list_append(v, ["𒌓𒁺", "other", "𒌓𒁺", "", "", "", "Sumerogram of waṣûm"]) + let v = native_list_append(v, ["𒄴𒈨", "other", "𒄴𒈨", "", "", "", "Sumerogram of pašīšum"]) + let v = native_list_append(v, ["𒈦𒌋", "other", "𒈦𒌋", "", "", "", "Sumerogram of eṭemmum"]) + let v = native_list_append(v, ["𒈾𒆕𒀀", "other", "𒈾𒆕𒀀", "", "", "", "Sumerogram of narûm"]) + let v = native_list_append(v, ["𒅇𒌅", "other", "𒅇𒌅", "", "", "", "Sumerogram of walādum"]) + let v = native_list_append(v, ["𒂍𒋞", "other", "𒂍𒋞", "", "", "", "Sumerogram of igārum"]) + let v = native_list_append(v, ["𒃻𒂵", "other", "𒃻𒂵", "", "", "", "Sumerogram of makkūrum"]) + let v = native_list_append(v, ["𒉣𒆠", "other", "𒉣𒆠", "", "", "", "Sumerogram of Bābilim"]) + let v = native_list_append(v, ["𒄑𒈠", "other", "𒄑𒈠", "", "", "", "Sumerogram of tittum"]) + let v = native_list_append(v, ["𒋢𒀀𒂔𒇲", "other", "𒋢𒀀𒂔𒇲", "", "", "", "Sumerogram of nādum"]) + let v = native_list_append(v, ["𒋛𒀀", "other", "𒋛𒀀", "", "", "", "Sumerogram of watārum"]) + let v = native_list_append(v, ["𒁯𒈗𒄷", "other", "𒁯𒈗𒄷", "", "", "", "Sumerogram of tarlugallum"]) + let v = native_list_append(v, ["𒄑𒄀𒁍", "other", "𒄑𒄀𒁍", "", "", "", "Sumerogram of ebbūbum"]) + let v = native_list_append(v, ["𒅗𒌤", "other", "𒅗𒌤", "", "", "", "Sumerogram of šasûm"]) + let v = native_list_append(v, ["𒄖𒋧", "other", "𒄖𒋧", "", "", "", "Sumerogram of miḫiṣtum"]) + let v = native_list_append(v, ["𒅗𒋧", "other", "𒅗𒋧", "", "", "", "Sumerogram of miḫiṣtum"]) + let v = native_list_append(v, ["𒊕𒆕", "other", "𒊕𒆕", "", "", "", "Sumerogram of santakkum"]) + let v = native_list_append(v, ["𒃮𒊑", "other", "𒃮𒊑", "", "", "", "Sumerogram of šumḫurum"]) + let v = native_list_append(v, ["𒉣𒇬", "other", "𒉣𒇬", "", "", "", "Sumerogram of tarbāṣum"]) + let v = native_list_append(v, ["𒄑𒇵", "other", "𒄑𒇵", "", "", "", "Sumerogram of šiqdum"]) + let v = native_list_append(v, ["𒊻𒄷", "other", "𒊻𒄷", "", "", "", "Sumerogram of ūsum"]) + let v = native_list_append(v, ["𒃲𒉌", "other", "𒃲𒉌", "", "", "", "Sumerogram of šandanakkum"]) + let v = native_list_append(v, ["𒈲𒍽", "other", "𒈲𒍽", "", "", "", "Sumerogram of mušḫuššum"]) + let v = native_list_append(v, ["𒀭𒊨", "other", "𒀭𒊨", "", "", "", "Sumerogram of andullum"]) + let v = native_list_append(v, ["𒄷𒈿", "other", "𒄷𒈿", "", "", "", "Sumerogram of nabûm"]) + let v = native_list_append(v, ["𒄑𒆕", "other", "𒄑𒆕", "", "", "", "Sumerogram of sikkatum"]) + let v = native_list_append(v, ["𒄑𒆕𒋾", "other", "𒄑𒆕𒋾", "", "", "", "Sumerogram of ūṣum"]) + let v = native_list_append(v, ["𒃻𒅮𒈾", "other", "𒃻𒅮𒈾", "", "", "", "Sumerogram of šeleppûm"]) + let v = native_list_append(v, ["𒉏𒄈", "other", "𒉏𒄈", "", "", "", "Sumerogram of birqum"]) + let v = native_list_append(v, ["𒋞𒀲", "other", "𒋞𒀲", "", "", "", "Sumerogram of amarum"]) + let v = native_list_append(v, ["𒋆𒄈", "other", "𒋆𒄈", "", "", "", "Sumerogram of asum"]) + let v = native_list_append(v, ["𒂇", "other", "𒂇", "", "", "", "Sumerogram of nāgirum"]) + let v = native_list_append(v, ["𒅆𒂠", "other", "𒅆𒂠", "", "", "", "Sumerogram of labirum"]) + let v = native_list_append(v, ["𒅎𒍇𒇻", "other", "𒅎𒍇𒇻", "", "", "", "Sumerogram of šūtum"]) + let v = native_list_append(v, ["𒄑𒍣𒃶", "other", "𒄑𒍣𒃶", "", "", "", "Sumerogram of sikkānum"]) + let v = native_list_append(v, ["𒌚𒀾", "other", "𒌚𒀾", "", "", "", "Sumerogram of Šabāṭum"]) + let v = native_list_append(v, ["𒉏𒆠", "other", "𒉏𒆠", "", "", "", "Sumerogram of Elamtu"]) + let v = native_list_append(v, ["mimma šumšu", "other", "mimma šumšu", "", "", "", "anything at all"]) + let v = native_list_append(v, ["𒉏𒈠𒆠", "other", "𒉏𒈠𒆠", "", "", "", "Sumerogram of Elamtu"]) + let v = native_list_append(v, ["𒂗𒉆", "other", "𒂗𒉆", "", "", "", "Sumerogram of mīnum"]) + let v = native_list_append(v, ["𒄑𒈿", "other", "𒄑𒈿", "", "", "", "Sumerogram of eršum"]) + let v = native_list_append(v, ["𒉌𒆳𒊏", "other", "𒉌𒆳𒊏", "", "", "", "Sumerogram of napṭum"]) + let v = native_list_append(v, ["ištu pê adi ḫurāṣim", "other", "ištu pê adi ḫurāṣim", "", "", "", "everything all"]) + let v = native_list_append(v, ["𒋗𒅆", "other", "𒋗𒅆", "", "", "", "Sumerogram of ubānum"]) + let v = native_list_append(v, ["𒃻𒋛𒁲", "other", "𒃻𒋛𒁲", "", "", "", "Sumerogram of mīšarum"]) + let v = native_list_append(v, ["-ūtum", "other", "-ūtum", "", "", "", "-ship -ness -hood"]) + let v = native_list_append(v, ["𒉪𒅅", "other", "𒉪𒅅", "", "", "", "Sumerogram of takālum"]) + let v = native_list_append(v, ["𒋆𒇷", "other", "𒋆𒇷", "", "", "", "Sumerogram of burāšum"]) + let v = native_list_append(v, ["lā", "adv", "lā", "", "", "", "no not in"]) + let v = native_list_append(v, ["minde", "adv", "minde", "", "", "", "perhaps maybe possibly"]) + let v = native_list_append(v, ["urram", "adv", "urram", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["𒆷", "adv", "𒆷", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒉿𒅈𒅗𒉡𒌝", "adv", "𒉿𒅈𒅗𒉡𒌝", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["𒌑𒌌", "adv", "𒌑𒌌", "", "", "", "Cuneiform spelling of"]) + let v = native_list_append(v, ["kī", "adv", "kī", "", "", "", "how?"]) + let v = native_list_append(v, ["warka", "adv", "warka", "", "", "", "afterwards later"]) + let v = native_list_append(v, ["eliš", "adv", "eliš", "", "", "", "up on top"]) + let v = native_list_append(v, ["inūmīšu", "adv", "inūmīšu", "", "", "", "in those days"]) + let v = native_list_append(v, ["warkānum", "adv", "warkānum", "", "", "", "later on afterwards"]) + let v = native_list_append(v, ["danniš", "adv", "danniš", "", "", "", "very greatly"]) + let v = native_list_append(v, ["šattam", "adv", "šattam", "", "", "", "this year"]) + let v = native_list_append(v, ["inanna", "adv", "inanna", "", "", "", "now just now"]) + let v = native_list_append(v, ["ūmam", "adv", "ūmam", "", "", "", "today on this"]) + let v = native_list_append(v, ["amšālim", "adv", "amšālim", "", "", "", "yesterday"]) + let v = native_list_append(v, ["šaddaqdam", "adv", "šaddaqdam", "", "", "", "last year"]) + let v = native_list_append(v, ["šaddaqdim", "adv", "šaddaqdim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mūšam", "adv", "mūšam", "", "", "", "at night tonight"]) + let v = native_list_append(v, ["damqiš", "adv", "damqiš", "", "", "", "well carefully"]) + let v = native_list_append(v, ["ūmišam", "adv", "ūmišam", "", "", "", "every day daily"]) + let v = native_list_append(v, ["ḫamuttam", "adv", "ḫamuttam", "", "", "", "at once promptly"]) + let v = native_list_append(v, ["kēna", "adv", "kēna", "", "", "", "yes"]) + let v = native_list_append(v, ["imittam", "adv", "imittam", "", "", "", "to the right"]) + let v = native_list_append(v, ["ayyikīam", "adv", "ayyikīam", "", "", "", "where?"]) + let v = native_list_append(v, ["kīam", "adv", "kīam", "", "", "", "thus in this"]) + return v +} + +fn vocab_akk_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_akk_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-ang.el b/elp/src/vocabulary-ang.el new file mode 100644 index 0000000..41f3391 --- /dev/null +++ b/elp/src/vocabulary-ang.el @@ -0,0 +1,11692 @@ +// vocabulary-ang.el — Old English vocabulary seed +// 11671 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 64713 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_ang_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["word", "noun", "worda", "wordes", "worde", "", "word"]) + let v = native_list_append(v, ["pie", "noun", "pīan", "pīan", "pīan", "", "alternative form of"]) + let v = native_list_append(v, ["December", "noun", "December", "", "", "", "December"]) + let v = native_list_append(v, ["September", "noun", "September", "septembres", "septembre", "", "September"]) + let v = native_list_append(v, ["November", "noun", "November", "", "", "", "November"]) + let v = native_list_append(v, ["leap", "noun", "lēapas", "lēapes", "lēape", "", "basket"]) + let v = native_list_append(v, ["winter", "noun", "wintras", "wintres", "wintre", "", "winter"]) + let v = native_list_append(v, ["spring", "noun", "springas", "springes", "springe", "", "a spring source"]) + let v = native_list_append(v, ["mann", "noun", "menn", "mannes", "menn", "", "person"]) + let v = native_list_append(v, ["man", "noun", "men", "manes", "men", "", "alternative form of"]) + let v = native_list_append(v, ["is", "noun", "īs", "īses", "īse", "", "ice"]) + let v = native_list_append(v, ["are", "noun", "āran", "āran", "āran", "", "synonym of ār"]) + let v = native_list_append(v, ["rape", "noun", "rape", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["port", "noun", "portas", "portes", "porte", "", "a port a"]) + let v = native_list_append(v, ["hund", "noun", "hundas", "hundes", "hunde", "", "dog"]) + let v = native_list_append(v, ["os", "noun", "ēse", "ōsa", "ēse", "", "a god"]) + let v = native_list_append(v, ["bot", "noun", "bōte", "bōte", "bōte", "", "help assistance rescue"]) + let v = native_list_append(v, ["hell", "noun", "hella", "helle", "helle", "", "hell"]) + let v = native_list_append(v, ["fere", "noun", "fere", "", "", "", "dative instrumental of"]) + let v = native_list_append(v, ["war", "noun", "war", "", "", "", "seaweed"]) + let v = native_list_append(v, ["wage", "noun", "wage", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wall", "noun", "wallas", "walles", "walle", "", "alternative form of"]) + let v = native_list_append(v, ["market", "noun", "market", "", "", "", "market"]) + let v = native_list_append(v, ["world", "noun", "worlde", "worlde", "worlde", "", "alternative form of"]) + let v = native_list_append(v, ["last", "noun", "lāstas", "lāstes", "lāste", "", "footstep track"]) + let v = native_list_append(v, ["first", "noun", "first", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Armenia", "noun", "Armenia", "", "", "", "Armenia"]) + let v = native_list_append(v, ["false", "noun", "false", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Ethiopia", "noun", "Ethiopia", "Ethiopian", "Ethiopian", "", "Ethiopia"]) + let v = native_list_append(v, ["India", "noun", "India", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angla", "noun", "angla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Syria", "noun", "Syria", "Syrian", "Syrian", "", "Syria"]) + let v = native_list_append(v, ["accent", "noun", "accentas", "accentes", "accente", "", "accent mark diacritic"]) + let v = native_list_append(v, ["eo", "noun", "eo", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bio", "noun", "bīon", "bīon", "bīon", "", "alternative form of"]) + let v = native_list_append(v, ["ace", "noun", "ace", "", "", "", "inflection of āc"]) + let v = native_list_append(v, ["ad", "noun", "ādas", "ādes", "āde", "", "funeral pyre"]) + let v = native_list_append(v, ["storm", "noun", "stormas", "stormes", "storme", "", "storm"]) + let v = native_list_append(v, ["win", "noun", "wīn", "wīnes", "wīne", "", "wine"]) + let v = native_list_append(v, ["stand", "noun", "standas", "standes", "stande", "", "delay"]) + let v = native_list_append(v, ["here", "noun", "herġas", "herġes", "herġe", "", "army military especially"]) + let v = native_list_append(v, ["dare", "noun", "dare", "", "", "", "inflection of daru"]) + let v = native_list_append(v, ["tiger", "noun", "tigras", "tigres", "tigre", "", "tiger"]) + let v = native_list_append(v, ["tigre", "noun", "tigre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gold", "noun", "gold", "goldes", "golde", "", "gold"]) + let v = native_list_append(v, ["red", "noun", "red", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woman", "noun", "woman", "", "", "", "inflection of wōma"]) + let v = native_list_append(v, ["twig", "noun", "twigu", "twiġes", "twiġe", "", "twig"]) + let v = native_list_append(v, ["king", "noun", "kingas", "kinges", "kinge", "", "alternative form of"]) + let v = native_list_append(v, ["or", "noun", "ōr", "ōres", "ōre", "", "origin beginning"]) + let v = native_list_append(v, ["sol", "noun", "sol", "", "", "", "sun"]) + let v = native_list_append(v, ["some", "noun", "some", "", "", "", "inflection of sōm"]) + let v = native_list_append(v, ["hand", "noun", "handa", "handa", "handa", "", "hand"]) + let v = native_list_append(v, ["el", "noun", "el", "", "", "", "The name of"]) + let v = native_list_append(v, ["for", "noun", "fōra", "fōre", "fōre", "", "journey going course"]) + let v = native_list_append(v, ["an", "noun", "ān", "ānes", "āne", "", "one digit or"]) + let v = native_list_append(v, ["dear", "noun", "dear", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ate", "noun", "ātan", "ātan", "ātan", "", "oat"]) + let v = native_list_append(v, ["her", "noun", "hēr", "hēres", "hēre", "", "alternative form of"]) + let v = native_list_append(v, ["angle", "noun", "angle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["arm", "noun", "armas", "armes", "arme", "", "alternative form of"]) + let v = native_list_append(v, ["east", "noun", "ēastas", "ēastes", "ēaste", "", "the east"]) + let v = native_list_append(v, ["sibling", "noun", "siblingas", "siblinges", "siblinge", "", "relative kinsman"]) + let v = native_list_append(v, ["son", "noun", "son", "", "", "", "a musical sound"]) + let v = native_list_append(v, ["non", "noun", "non", "nōnes", "nōne", "", "Nones the ninth"]) + let v = native_list_append(v, ["not", "noun", "notas", "notes", "note", "", "a sign mark"]) + let v = native_list_append(v, ["finger", "noun", "fingras", "fingres", "fingre", "", "finger"]) + let v = native_list_append(v, ["men", "noun", "men", "", "", "", "inflection of man"]) + let v = native_list_append(v, ["male", "noun", "male", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hole", "noun", "hole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bold", "noun", "bolda", "boldes", "bolde", "", "alternative form of"]) + let v = native_list_append(v, ["martyr", "noun", "martyras", "martyres", "martyre", "", "martyr"]) + let v = native_list_append(v, ["tan", "noun", "tānas", "tānes", "tāne", "", "twig branch"]) + let v = native_list_append(v, ["turtle", "noun", "turtlan", "turtlan", "turtlan", "", "turtle dove"]) + let v = native_list_append(v, ["tide", "noun", "tide", "", "", "", "inflection of tīd"]) + let v = native_list_append(v, ["rose", "noun", "rōsan", "rōsan", "rōsan", "", "rose"]) + let v = native_list_append(v, ["tin", "noun", "tin", "tines", "tine", "", "tin"]) + let v = native_list_append(v, ["amber", "noun", "ambras", "ambres", "ambre", "", "bucket"]) + let v = native_list_append(v, ["rice", "noun", "rīċu", "rīċes", "rīċe", "", "kingdom empire"]) + let v = native_list_append(v, ["tract", "noun", "tract", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["al", "noun", "āl", "āles", "āle", "", "fire"]) + let v = native_list_append(v, ["adel", "noun", "adel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["god", "noun", "gōd", "gōdes", "gōde", "", "good something good"]) + let v = native_list_append(v, ["bad", "noun", "bāda", "bāde", "bāde", "", "waiting expectation"]) + let v = native_list_append(v, ["friend", "noun", "friend", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gripe", "noun", "gripas", "gripes", "gripum", "", "grip clutch grasp"]) + let v = native_list_append(v, ["ban", "noun", "bān", "bānes", "bāne", "", "bone"]) + let v = native_list_append(v, ["bat", "noun", "bātas", "bātes", "bāte", "", "boat"]) + let v = native_list_append(v, ["beat", "noun", "bēat", "bēates", "bēate", "", "a beating blow"]) + let v = native_list_append(v, ["bed", "noun", "beda", "bedes", "bede", "", "alternative form of"]) + let v = native_list_append(v, ["bite", "noun", "bite", "", "", "", "bite"]) + let v = native_list_append(v, ["song", "noun", "songas", "songes", "songe", "", "alternative form of"]) + let v = native_list_append(v, ["tear", "noun", "tēaras", "tēares", "tēare", "", "tear drop of"]) + let v = native_list_append(v, ["beg", "noun", "beg", "", "", "", "berry"]) + let v = native_list_append(v, ["ben", "noun", "bēne", "bēne", "bēne", "", "prayer praying"]) + let v = native_list_append(v, ["since", "noun", "since", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ear", "noun", "ēaras", "ēares", "ēare", "", "billow wave"]) + let v = native_list_append(v, ["nose", "noun", "nose", "", "", "", "inflection of nosu"]) + let v = native_list_append(v, ["leg", "noun", "lēġas", "lēġes", "lēġe", "", "alternative form of"]) + let v = native_list_append(v, ["angel", "noun", "anglas", "angles", "angle", "", "alternative form of"]) + let v = native_list_append(v, ["slim", "noun", "slīm", "slīmes", "slīme", "", "slime"]) + let v = native_list_append(v, ["swan", "noun", "swanas", "swanes", "swane", "", "swan"]) + let v = native_list_append(v, ["lose", "noun", "lose", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lane", "noun", "lanan", "lanan", "lanan", "", "lane narrow path"]) + let v = native_list_append(v, ["womb", "noun", "womba", "wombe", "wombe", "", "alternative form of"]) + let v = native_list_append(v, ["axe", "noun", "axe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Leon", "noun", "Leon", "", "", "", "accusative/genitive singular of"]) + let v = native_list_append(v, ["force", "noun", "force", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wife", "noun", "wife", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Scotland", "noun", "Scotland", "Sċotlandes", "Sċotlande", "", "land of the"]) + let v = native_list_append(v, ["palm", "noun", "palm", "", "", "", "palm tree"]) + let v = native_list_append(v, ["lam", "noun", "lām", "lāmes", "lāme", "", "clay loam"]) + let v = native_list_append(v, ["pin", "noun", "pin", "", "", "", "pine"]) + let v = native_list_append(v, ["race", "noun", "race", "", "", "", "inflection of racu"]) + let v = native_list_append(v, ["ber", "noun", "bēra", "bēre", "bēre", "", "bier a litter"]) + let v = native_list_append(v, ["lead", "noun", "lead", "lēades", "lēade", "", "lead"]) + let v = native_list_append(v, ["were", "noun", "were", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bend", "noun", "bendas", "bendes", "bende", "", "bond coil"]) + let v = native_list_append(v, ["bled", "noun", "blēda", "blēde", "blēde", "", "a shoot branch"]) + let v = native_list_append(v, ["bred", "noun", "bredu", "bredes", "brede", "", "surface"]) + let v = native_list_append(v, ["cost", "noun", "costas", "costes", "coste", "", "option choice possibility"]) + let v = native_list_append(v, ["dream", "noun", "drēamas", "drēames", "drēame", "", "joy pleasure gladness"]) + let v = native_list_append(v, ["fell", "noun", "fell", "", "", "", "fell skin"]) + let v = native_list_append(v, ["felt", "noun", "feltas", "feltes", "felte", "", "felt"]) + let v = native_list_append(v, ["find", "noun", "find", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fled", "noun", "fled", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["get", "noun", "geatu", "ġetes", "ġete", "", "alternative form of"]) + let v = native_list_append(v, ["held", "noun", "held", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["had", "noun", "hādas", "hādes", "hāde", "", "person individual"]) + let v = native_list_append(v, ["hide", "noun", "hide", "", "", "", "inflection of hīd"]) + let v = native_list_append(v, ["hid", "noun", "hīda", "hīde", "hīde", "", "a portion of"]) + let v = native_list_append(v, ["hold", "noun", "holda", "holdes", "holde", "", "dead body carcass"]) + let v = native_list_append(v, ["lean", "noun", "lēan", "lēanes", "lēane", "", "reward"]) + let v = native_list_append(v, ["lent", "noun", "lenta", "lente", "lente", "", "lentil"]) + let v = native_list_append(v, ["met", "noun", "metu", "metes", "mete", "", "synonym of ġemet"]) + let v = native_list_append(v, ["writing", "noun", "wrītinga", "wrītinge", "wrītinge", "", "writing"]) + let v = native_list_append(v, ["finn", "noun", "finnas", "finnes", "finne", "", "fin"]) + let v = native_list_append(v, ["bog", "noun", "bōgas", "bōges", "bōge", "", "branch or bough"]) + let v = native_list_append(v, ["rod", "noun", "rōda", "rōde", "rōde", "", "cross method of"]) + let v = native_list_append(v, ["mal", "noun", "māl", "māles", "māle", "", "mole spot on"]) + let v = native_list_append(v, ["sic", "noun", "sic", "", "", "", "a watercourse stream"]) + let v = native_list_append(v, ["wine", "noun", "winas", "wines", "winum", "", "friend"]) + let v = native_list_append(v, ["spell", "noun", "spella", "spelles", "spelle", "", "story"]) + let v = native_list_append(v, ["bell", "noun", "bell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bread", "noun", "brēadru", "brēades", "brēade", "", "bit piece morsel"]) + let v = native_list_append(v, ["rode", "noun", "rode", "", "", "", "inflection of rōd"]) + let v = native_list_append(v, ["run", "noun", "rūna", "rūne", "rūne", "", "whisper counsel consultation"]) + let v = native_list_append(v, ["ran", "noun", "rān", "rānes", "rāne", "", "unlawful seizure of"]) + let v = native_list_append(v, ["set", "noun", "setu", "setes", "sete", "", "seat"]) + let v = native_list_append(v, ["sang", "noun", "sangas", "sanges", "sange", "", "song"]) + let v = native_list_append(v, ["smelt", "noun", "smelt", "", "", "", "smelt a fish"]) + let v = native_list_append(v, ["sped", "noun", "spēde", "spēde", "spēde", "", "success prosperity"]) + let v = native_list_append(v, ["stole", "noun", "stole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sting", "noun", "stingas", "stinges", "stinge", "", "sting stinging of"]) + let v = native_list_append(v, ["torn", "noun", "torna", "tornes", "torne", "", "anger anguish distress"]) + let v = native_list_append(v, ["worn", "noun", "wornas", "wornes", "worne", "", "great many multitude"]) + let v = native_list_append(v, ["wind", "noun", "windas", "windes", "winde", "", "wind"]) + let v = native_list_append(v, ["sot", "noun", "sōt", "sōtes", "sōte", "", "soot"]) + let v = native_list_append(v, ["comb", "noun", "comb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["by", "noun", "by", "", "", "", "dwelling habituation"]) + let v = native_list_append(v, ["box", "noun", "boxas", "boxes", "boxe", "", "box tree"]) + let v = native_list_append(v, ["care", "noun", "care", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["dry", "noun", "drȳas", "drȳes", "drȳe", "", "wizard sorcerer"]) + let v = native_list_append(v, ["tit", "noun", "tit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fox", "noun", "foxas", "foxes", "foxe", "", "fox"]) + let v = native_list_append(v, ["ram", "noun", "ram", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bil", "noun", "billa", "billes", "bille", "", "a kind of"]) + let v = native_list_append(v, ["rim", "noun", "rīm", "rīmes", "rīme", "", "number"]) + let v = native_list_append(v, ["Rom", "noun", "Rom", "Rōme", "Rōme", "", "Rome a major"]) + let v = native_list_append(v, ["sap", "noun", "sāpa", "sāpe", "sāpe", "", "amber resin"]) + let v = native_list_append(v, ["list", "noun", "listas", "listes", "liste", "", "art cunning guile"]) + let v = native_list_append(v, ["life", "noun", "life", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sword", "noun", "sword", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pull", "noun", "pull", "", "", "", "pool creek"]) + let v = native_list_append(v, ["dust", "noun", "dūst", "dūstes", "dūste", "", "dust powder mill"]) + let v = native_list_append(v, ["sand", "noun", "sanda", "sande", "sande", "", "action of sending"]) + let v = native_list_append(v, ["fog", "noun", "fog", "", "", "", "a joining joint"]) + let v = native_list_append(v, ["full", "noun", "fulla", "fulles", "fulle", "", "a beaker"]) + let v = native_list_append(v, ["none", "noun", "none", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lig", "noun", "līgas", "līġes", "līġe", "", "fire flame"]) + let v = native_list_append(v, ["sal", "noun", "sālas", "sāles", "sāle", "", "rope cord rein"]) + let v = native_list_append(v, ["field", "noun", "fieldas", "fieldes", "fielde", "", "fold crease of"]) + let v = native_list_append(v, ["mana", "noun", "mana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Africa", "noun", "Africa", "", "", "", "Africa"]) + let v = native_list_append(v, ["Asia", "noun", "Asia", "", "", "", "Asia the largest"]) + let v = native_list_append(v, ["hilt", "noun", "hiltas", "hiltes", "hilte", "", "hilt handle"]) + let v = native_list_append(v, ["handle", "noun", "handlan", "handlan", "handlan", "", "handle"]) + let v = native_list_append(v, ["ese", "noun", "ese", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mare", "noun", "maran", "maran", "maran", "", "mare evil spirit"]) + let v = native_list_append(v, ["colt", "noun", "coltas", "coltes", "colte", "", "colt a juvenile"]) + let v = native_list_append(v, ["calf", "noun", "calf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beard", "noun", "beardas", "beardes", "bearde", "", "beard"]) + let v = native_list_append(v, ["seam", "noun", "sēamas", "sēames", "sēame", "", "seam"]) + let v = native_list_append(v, ["ore", "noun", "oran", "oran", "oran", "", "A mine place"]) + let v = native_list_append(v, ["note", "noun", "note", "", "", "", "inflection of notu"]) + let v = native_list_append(v, ["wire", "noun", "wire", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wal", "noun", "walu", "wales", "wale", "", "alternative form of"]) + let v = native_list_append(v, ["hem", "noun", "hem", "", "", "", "hem border"]) + let v = native_list_append(v, ["pipe", "noun", "pīpan", "pīpan", "pīpan", "", "a pipe musical"]) + let v = native_list_append(v, ["mase", "noun", "māsan", "māsan", "māsan", "", "titmouse"]) + let v = native_list_append(v, ["han", "noun", "hāna", "hāne", "hāne", "", "a projecting stone"]) + let v = native_list_append(v, ["unwisdom", "noun", "unwīsdōmas", "unwīsdōmes", "unwīsdōme", "", "foolishness stupidity ignorance"]) + let v = native_list_append(v, ["eum", "noun", "eum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hun", "noun", "hun", "", "", "", "a common element"]) + let v = native_list_append(v, ["ile", "noun", "ilas", "iles", "ilum", "", "the sole of"]) + let v = native_list_append(v, ["help", "noun", "helpa", "helpe", "helpe", "", "help"]) + let v = native_list_append(v, ["senatus", "noun", "senatas", "senata", "senatum", "", "the senate of"]) + let v = native_list_append(v, ["wir", "noun", "wīras", "wīres", "wīre", "", "wire"]) + let v = native_list_append(v, ["blod", "noun", "blōd", "blōdes", "blōde", "", "blood"]) + let v = native_list_append(v, ["ham", "noun", "hāmas", "hāmes", "hām", "", "home"]) + let v = native_list_append(v, ["cop", "noun", "cop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elf", "noun", "elfas", "elfes", "elfe", "", "alternative form of"]) + let v = native_list_append(v, ["wand", "noun", "wanda", "wande", "wande", "", "mole animal"]) + let v = native_list_append(v, ["ta", "noun", "tān", "tān", "tān", "", "toe"]) + let v = native_list_append(v, ["mot", "noun", "mōta", "mōte", "mōte", "", "toll"]) + let v = native_list_append(v, ["flor", "noun", "flōra", "flōra", "flōra", "", "pavement floor"]) + let v = native_list_append(v, ["boc", "noun", "bēċ", "bēċ", "bēċ", "", "book"]) + let v = native_list_append(v, ["munt", "noun", "muntas", "muntes", "munte", "", "a hill mound"]) + let v = native_list_append(v, ["line", "noun", "līnan", "līnan", "līnan", "", "line"]) + let v = native_list_append(v, ["appel", "noun", "appel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gift", "noun", "ġifte", "ġifte", "ġifte", "", "marriage payment dowry"]) + let v = native_list_append(v, ["dag", "noun", "dāgas", "dāges", "dāge", "", "dough"]) + let v = native_list_append(v, ["dal", "noun", "dal", "", "", "", "division"]) + let v = native_list_append(v, ["mile", "noun", "mile", "", "", "", "inflection of mīl"]) + let v = native_list_append(v, ["cesta", "noun", "cesta", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["ne", "noun", "neäs", "neës", "neë", "", "alternative form of"]) + let v = native_list_append(v, ["sex", "noun", "sex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ar", "noun", "āra", "āre", "āre", "", "honour glory grace"]) + let v = native_list_append(v, ["ca", "noun", "ca", "", "", "", "jackdaw"]) + let v = native_list_append(v, ["se", "noun", "sēan", "sēan", "sēan", "", "alternative form of"]) + let v = native_list_append(v, ["pot", "noun", "pot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bolt", "noun", "boltas", "boltes", "bolte", "", "bolt"]) + let v = native_list_append(v, ["sole", "noun", "solan", "solan", "solan", "", "sole"]) + let v = native_list_append(v, ["ra", "noun", "rān", "rān", "rān", "", "roe deer roebuck"]) + let v = native_list_append(v, ["ac", "noun", "ǣċ", "ǣċ", "ǣċ", "", "oak wood or"]) + let v = native_list_append(v, ["mus", "noun", "mȳs", "mȳs", "mȳs", "", "mouse"]) + let v = native_list_append(v, ["pe", "noun", "pe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flea", "noun", "flea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["well", "noun", "wellas", "welles", "welle", "", "alternative form of"]) + let v = native_list_append(v, ["spade", "noun", "spade", "", "", "", "inflection of spadu"]) + let v = native_list_append(v, ["baba", "noun", "baban", "baban", "baban", "", "a male child"]) + let v = native_list_append(v, ["dreame", "noun", "dreame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bill", "noun", "bill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Breton", "noun", "Breton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steam", "noun", "stēamas", "stēames", "stēame", "", "steam water vapor"]) + let v = native_list_append(v, ["dice", "noun", "dice", "", "", "", "dative/genitive singular of"]) + let v = native_list_append(v, ["will", "noun", "will", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["must", "noun", "must", "", "", "", "must newly or"]) + let v = native_list_append(v, ["muse", "noun", "muse", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ea", "noun", "ēa", "ēa", "ēa", "", "river"]) + let v = native_list_append(v, ["ele", "noun", "elas", "eles", "elum", "", "oil"]) + let v = native_list_append(v, ["net", "noun", "net", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["side", "noun", "sīdan", "sīdan", "sīdan", "", "side"]) + let v = native_list_append(v, ["Daniel", "noun", "Daniel", "Danieles", "Daniele", "", "a male given"]) + let v = native_list_append(v, ["belt", "noun", "beltas", "beltes", "belte", "", "A belt."]) + let v = native_list_append(v, ["rust", "noun", "rust", "", "", "", "rust"]) + let v = native_list_append(v, ["gear", "noun", "ġēar", "ġēares", "ġēare", "", "year"]) + let v = native_list_append(v, ["bar", "noun", "bāras", "bāres", "bāre", "", "boar"]) + let v = native_list_append(v, ["temple", "noun", "temple", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Rome", "noun", "Rome", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["cola", "noun", "cola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ford", "noun", "forda", "forda", "forda", "", "ford"]) + let v = native_list_append(v, ["paradise", "noun", "paradise", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fan", "noun", "fan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lad", "noun", "lāda", "lāde", "lāde", "", "carrying bringing leading"]) + let v = native_list_append(v, ["Ethiopian", "noun", "Ethiopian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["Syrian", "noun", "Syrian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["pole", "noun", "pole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sel", "noun", "salu", "seles", "sele", "", "alternative form of"]) + let v = native_list_append(v, ["font", "noun", "font", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["candela", "noun", "candela", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["hype", "noun", "hypas", "hypes", "hypum", "", "hip"]) + let v = native_list_append(v, ["los", "noun", "losa", "loses", "lose", "", "loss"]) + let v = native_list_append(v, ["Alexander", "noun", "Alexander", "Alexandres", "Alexandre", "", "Alexander the Great"]) + let v = native_list_append(v, ["tuna", "noun", "tuna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tire", "noun", "tire", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mule", "noun", "mule", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["loft", "noun", "loft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["land", "noun", "landa", "landes", "lande", "", "land dry portion"]) + let v = native_list_append(v, ["horn", "noun", "hornas", "hornes", "horne", "", "horn"]) + let v = native_list_append(v, ["lyre", "noun", "lyras", "lyres", "lyrum", "", "loss damage destruction"]) + let v = native_list_append(v, ["rind", "noun", "rinda", "rinde", "rinde", "", "bark of a"]) + let v = native_list_append(v, ["cos", "noun", "cos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Alexandria", "noun", "Alexandria", "Alexandrian", "Alexandrian", "", "Alexandria Egypt"]) + let v = native_list_append(v, ["farm", "noun", "farm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["form", "noun", "form", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["papa", "noun", "pāpan", "pāpan", "pāpan", "", "pope"]) + let v = native_list_append(v, ["da", "noun", "dān", "dān", "dān", "", "doe female fallow"]) + let v = native_list_append(v, ["hond", "noun", "honda", "honda", "honda", "", "alternative form of"]) + let v = native_list_append(v, ["trust", "noun", "trust", "", "", "", "trust"]) + let v = native_list_append(v, ["brine", "noun", "brine", "", "", "", "brine"]) + let v = native_list_append(v, ["cot", "noun", "cotu", "cotes", "cote", "", "cottage"]) + let v = native_list_append(v, ["raw", "noun", "rāwa", "rāwe", "rāwe", "", "alternative form of"]) + let v = native_list_append(v, ["est", "noun", "ēste", "ēstes", "ēste", "", "consent grace favor"]) + let v = native_list_append(v, ["lore", "noun", "lore", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["turf", "noun", "tyrf", "tyrf", "tyrf", "", "turf"]) + let v = native_list_append(v, ["more", "noun", "moran", "moran", "moran", "", "carrot"]) + let v = native_list_append(v, ["log", "noun", "lōg", "lōges", "lōge", "", "a place stead"]) + let v = native_list_append(v, ["gast", "noun", "gāstas", "gāstes", "gāste", "", "spirit"]) + let v = native_list_append(v, ["leaf", "noun", "lēaf", "lēafes", "lēafe", "", "leaf"]) + let v = native_list_append(v, ["row", "noun", "rōwa", "rōwe", "rōwe", "", "quiet rest calm"]) + let v = native_list_append(v, ["timber", "noun", "timbra", "timbres", "timbre", "", "timber"]) + let v = native_list_append(v, ["timbre", "noun", "timbre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lust", "noun", "lustas", "lustes", "luste", "", "desire pleasure appetite"]) + let v = native_list_append(v, ["ee", "noun", "ee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wen", "noun", "wēne", "wēne", "wēne", "", "expectation"]) + let v = native_list_append(v, ["lyra", "noun", "lyra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["campe", "noun", "campe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["leo", "noun", "lēon", "lēon", "lēon", "", "a lion"]) + let v = native_list_append(v, ["berg", "noun", "berg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Marcus", "noun", "Marcus", "Marces", "Marce", "", "Mark the Apostle"]) + let v = native_list_append(v, ["top", "noun", "top", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spice", "noun", "spice", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["denn", "noun", "denna", "dennes", "denne", "", "den or lair"]) + let v = native_list_append(v, ["wag", "noun", "wāgas", "wāges", "wāge", "", "wall of a"]) + let v = native_list_append(v, ["rude", "noun", "rūdan", "rūdan", "rūdan", "", "rue plants in"]) + let v = native_list_append(v, ["rad", "noun", "rāda", "rāde", "rāde", "", "journey ride the"]) + let v = native_list_append(v, ["rand", "noun", "randa", "randes", "rande", "", "outer part of"]) + let v = native_list_append(v, ["Pharao", "noun", "Pharao", "", "", "", "Pharaoh biblical character"]) + let v = native_list_append(v, ["wynn", "noun", "wynna", "wynne", "wynne", "", "joy delight"]) + let v = native_list_append(v, ["lid", "noun", "lid", "", "", "", "ship vessel"]) + let v = native_list_append(v, ["gar", "noun", "gāras", "gāres", "gāre", "", "spear arrow dart"]) + let v = native_list_append(v, ["hop", "noun", "hop", "", "", "", "a small enclosed"]) + let v = native_list_append(v, ["cealc", "noun", "ċealcas", "ċealces", "ċealce", "", "plaster mortar"]) + let v = native_list_append(v, ["mode", "noun", "mode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lice", "noun", "lice", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["storc", "noun", "storcas", "storces", "storce", "", "stork"]) + let v = native_list_append(v, ["ela", "noun", "ela", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["eles", "noun", "eles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["elas", "noun", "elas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cancer", "noun", "cancras", "cancres", "cancre", "", "cancer"]) + let v = native_list_append(v, ["rana", "noun", "rana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["passion", "noun", "passione", "passione", "passione", "", "passion of Christ"]) + let v = native_list_append(v, ["eau", "noun", "eau", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lamb", "noun", "lambru", "lambes", "lambe", "", "lamb"]) + let v = native_list_append(v, ["pea", "noun", "pea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hola", "noun", "hola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["trio", "noun", "trio", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leger", "noun", "leġeru", "leġeres", "leġere", "", "the state or"]) + let v = native_list_append(v, ["frost", "noun", "frost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plumae", "noun", "plumae", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lago", "noun", "laga", "laga", "laga", "", "alternative form of"]) + let v = native_list_append(v, ["tor", "noun", "tor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ren", "noun", "ren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bon", "noun", "bōna", "", "", "", "ornament"]) + let v = native_list_append(v, ["mos", "noun", "mos", "", "", "", "moss"]) + let v = native_list_append(v, ["bos", "noun", "bos", "", "", "", "an ox or"]) + let v = native_list_append(v, ["huil", "noun", "huil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weg", "noun", "wegas", "weġes", "weġe", "", "way"]) + let v = native_list_append(v, ["heg", "noun", "heg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dom", "noun", "dōmas", "dōmes", "dōme", "", "judgment"]) + let v = native_list_append(v, ["som", "noun", "sōma", "sōme", "sōme", "", "agreement concord"]) + let v = native_list_append(v, ["Gotland", "noun", "Gotland", "", "", "", "Gotland"]) + let v = native_list_append(v, ["stol", "noun", "stōlas", "stōles", "stōle", "", "chair seat"]) + let v = native_list_append(v, ["hus", "noun", "hūs", "hūses", "hūse", "", "house"]) + let v = native_list_append(v, ["Aaron", "noun", "Aaron", "", "", "", "Aaron"]) + let v = native_list_append(v, ["tale", "noun", "tale", "", "", "", "inflection of talu"]) + let v = native_list_append(v, ["lira", "noun", "līran", "līran", "līran", "", "fleshy part of"]) + let v = native_list_append(v, ["manu", "noun", "mana", "mana", "mana", "", "mane"]) + let v = native_list_append(v, ["stale", "noun", "stale", "", "", "", "inflection of stalu"]) + let v = native_list_append(v, ["woda", "noun", "wōdan", "wōdan", "wōdan", "", "crazy person madman"]) + let v = native_list_append(v, ["gos", "noun", "gēs", "gēs", "gēs", "", "goose"]) + let v = native_list_append(v, ["African", "noun", "Africanas", "Africanes", "Africane", "", "an African"]) + let v = native_list_append(v, ["wisdom", "noun", "wīsdōmas", "wīsdōmes", "wīsdōme", "", "wisdom"]) + let v = native_list_append(v, ["Alexandrian", "noun", "Alexandrian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["croc", "noun", "croccas", "crocces", "crocce", "", "alternative form of"]) + let v = native_list_append(v, ["dung", "noun", "dynġ", "dynġ", "dynġ", "", "dungeon prison"]) + let v = native_list_append(v, ["apa", "noun", "apan", "apan", "apan", "", "simian monkey ape"]) + let v = native_list_append(v, ["carte", "noun", "cartan", "cartan", "cartan", "", "paper piece of"]) + let v = native_list_append(v, ["beda", "noun", "beda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["nytt", "noun", "nytta", "nytte", "nytte", "", "use"]) + let v = native_list_append(v, ["bord", "noun", "borda", "bordes", "borde", "", "board plank"]) + let v = native_list_append(v, ["muscle", "noun", "musclan", "musclan", "musclan", "", "mussel"]) + let v = native_list_append(v, ["dune", "noun", "dune", "", "", "", "inflection of dūn"]) + let v = native_list_append(v, ["anda", "noun", "andan", "andan", "andan", "", "envy jealousy a"]) + let v = native_list_append(v, ["baca", "noun", "baca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ruma", "noun", "ruma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hat", "noun", "hāt", "hātes", "hāte", "", "a promise"]) + let v = native_list_append(v, ["raha", "noun", "rāhan", "rāhan", "rāhan", "", "alternative form of"]) + let v = native_list_append(v, ["eg", "noun", "eg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Thomas", "noun", "Thomas", "", "", "", "Thomas"]) + let v = native_list_append(v, ["Tigris", "noun", "Tigris", "", "", "", "Tigris a river"]) + let v = native_list_append(v, ["malt", "noun", "malt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toga", "noun", "toga", "", "", "", "leader only found"]) + let v = native_list_append(v, ["ward", "noun", "ward", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corn", "noun", "corna", "cornes", "corne", "", "corn a grain"]) + let v = native_list_append(v, ["banca", "noun", "bancan", "bancan", "bancan", "", "bench"]) + let v = native_list_append(v, ["Italia", "noun", "Italia", "", "", "", "Italy a country"]) + let v = native_list_append(v, ["wise", "noun", "wīsan", "wīsan", "wīsan", "", "way manner"]) + let v = native_list_append(v, ["epistola", "noun", "epistolan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fin", "noun", "finnas", "finnes", "finne", "", "alternative form of"]) + let v = native_list_append(v, ["mesa", "noun", "mesa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["fix", "noun", "fixas", "fixes", "fixe", "", "alternative form of"]) + let v = native_list_append(v, ["ala", "noun", "ala", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hol", "noun", "holu", "holes", "hole", "", "hole"]) + let v = native_list_append(v, ["gata", "noun", "gata", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gong", "noun", "gong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["med", "noun", "mēda", "mēde", "mēde", "", "reward"]) + let v = native_list_append(v, ["templum", "noun", "templum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lista", "noun", "lista", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["bane", "noun", "bane", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þing", "noun", "þinga", "þinges", "þinge", "", "thing"]) + let v = native_list_append(v, ["scip", "noun", "sċipu", "sċipes", "sċipe", "", "ship"]) + let v = native_list_append(v, ["stan", "noun", "stānas", "stānes", "stāne", "", "stone"]) + let v = native_list_append(v, ["giefu", "noun", "ġiefa", "ġiefe", "ġiefe", "", "present gift"]) + let v = native_list_append(v, ["sorg", "noun", "sorga", "sorge", "sorge", "", "worry anxiety"]) + let v = native_list_append(v, ["nama", "noun", "naman", "naman", "naman", "", "name"]) + let v = native_list_append(v, ["eage", "noun", "ēagan", "ēagan", "ēagan", "", "eye"]) + let v = native_list_append(v, ["tunge", "noun", "tungan", "tungan", "tungan", "", "a tongue"]) + let v = native_list_append(v, ["hnutu", "noun", "hnyte", "hnyte", "hnyte", "", "nut"]) + let v = native_list_append(v, ["engel", "noun", "englas", "engles", "engle", "", "angel"]) + let v = native_list_append(v, ["heafod", "noun", "hēafdu", "hēafdes", "hēafde", "", "head"]) + let v = native_list_append(v, ["sawol", "noun", "sāwla", "sāwle", "sāwle", "", "soul"]) + let v = native_list_append(v, ["dæg", "noun", "dagas", "dæġes", "dæġe", "", "day usually as"]) + let v = native_list_append(v, ["æsc", "noun", "æscas", "æsċes", "æsċe", "", "ash tree"]) + let v = native_list_append(v, ["geat", "noun", "gatu", "ġeates", "ġeate", "", "gate"]) + let v = native_list_append(v, ["wealh", "noun", "wēalas", "wēales", "wēale", "", "Celt"]) + let v = native_list_append(v, ["feoh", "noun", "feoh", "fēos", "fēo", "", "money"]) + let v = native_list_append(v, ["por", "noun", "por", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bene", "noun", "bene", "", "", "", "inflection of bēn"]) + let v = native_list_append(v, ["bere", "noun", "beras", "beres", "berum", "", "barley"]) + let v = native_list_append(v, ["dell", "noun", "della", "delle", "delle", "", "dell vale"]) + let v = native_list_append(v, ["ellen", "noun", "elna", "elnes", "elne", "", "strength courage bravery"]) + let v = native_list_append(v, ["wade", "noun", "wade", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ord", "noun", "ordas", "ordes", "orde", "", "point especially of"]) + let v = native_list_append(v, ["flan", "noun", "flānas", "flānes", "flāne", "", "arrow"]) + let v = native_list_append(v, ["wiccan", "noun", "wiccan", "", "", "", "plural of wiċċa"]) + let v = native_list_append(v, ["abad", "noun", "ābāda", "ābāde", "ābāde", "", "wait delay"]) + let v = native_list_append(v, ["brand", "noun", "brandas", "brandes", "brande", "", "firebrand torch"]) + let v = native_list_append(v, ["fot", "noun", "fēt", "fōtes", "fēt", "", "a foot in"]) + let v = native_list_append(v, ["eten", "noun", "etenas", "etenes", "etene", "", "alternative form of"]) + let v = native_list_append(v, ["porta", "noun", "porta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["swine", "noun", "swine", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["philosophe", "noun", "philosophe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gate", "noun", "gate", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mel", "noun", "mēl", "mēles", "mēle", "", "alternative form of"]) + let v = native_list_append(v, ["Babylon", "noun", "Babylon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inn", "noun", "inn", "", "", "", "inn"]) + let v = native_list_append(v, ["fer", "noun", "fearu", "feres", "fere", "", "alternative form of"]) + let v = native_list_append(v, ["su", "noun", "sȳ", "sȳ", "sȳ", "", "sow female pig"]) + let v = native_list_append(v, ["il", "noun", "il", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sue", "noun", "sue", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cyning", "noun", "cyningas", "cyninges", "cyninge", "", "king"]) + let v = native_list_append(v, ["woruld", "noun", "worulde", "worulde", "worulde", "", "alternative form of"]) + let v = native_list_append(v, ["earn", "noun", "earnas", "earnes", "earne", "", "eagle"]) + let v = native_list_append(v, ["fisc", "noun", "fiscas", "fisċes", "fisċe", "", "fish"]) + let v = native_list_append(v, ["mona", "noun", "mōnan", "mōnan", "mōnan", "", "moon"]) + let v = native_list_append(v, ["steorra", "noun", "steorran", "steorran", "steorran", "", "star"]) + let v = native_list_append(v, ["bana", "noun", "banan", "banan", "banan", "", "murderer"]) + let v = native_list_append(v, ["guma", "noun", "guman", "guman", "guman", "", "man hero"]) + let v = native_list_append(v, ["scofl", "noun", "sċofla", "sċofle", "sċofle", "", "shovel"]) + let v = native_list_append(v, ["lufu", "noun", "lufa", "lufe", "lufe", "", "love"]) + let v = native_list_append(v, ["heord", "noun", "heorda", "heorde", "heorde", "", "a herd"]) + let v = native_list_append(v, ["glof", "noun", "glōfan", "glōfe", "glōfe", "", "a glove"]) + let v = native_list_append(v, ["duce", "noun", "dūcan", "dūcan", "dūcan", "", "duck bird"]) + let v = native_list_append(v, ["ule", "noun", "ūlan", "ūlan", "ūlan", "", "owl"]) + let v = native_list_append(v, ["beo", "noun", "bēon", "bēon", "bēon", "", "bee"]) + let v = native_list_append(v, ["fleoge", "noun", "flēogan", "flēogan", "flēogan", "", "a fly"]) + let v = native_list_append(v, ["loppestre", "noun", "loppestran", "loppestran", "loppestran", "", "lobster"]) + let v = native_list_append(v, ["moþþe", "noun", "moþþan", "moþþan", "moþþan", "", "moth"]) + let v = native_list_append(v, ["heorte", "noun", "heortan", "heortan", "heortan", "", "heart muscle"]) + let v = native_list_append(v, ["muð", "noun", "mūðas", "mūðes", "mūðe", "", "alternative spelling of"]) + let v = native_list_append(v, ["hwæl", "noun", "hwalas", "hwæles", "hwæle", "", "whale"]) + let v = native_list_append(v, ["æl", "noun", "alas", "æles", "æle", "", "awl hook fork"]) + let v = native_list_append(v, ["að", "noun", "að", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["æcer", "noun", "æcras", "æcres", "æcre", "", "field specifically one"]) + let v = native_list_append(v, ["hægl", "noun", "hæġlas", "hæġles", "hæġle", "", "hail"]) + let v = native_list_append(v, ["regn", "noun", "reġnas", "reġnes", "reġne", "", "rain"]) + let v = native_list_append(v, ["hring", "noun", "hringas", "hringes", "hringe", "", "ring circular band"]) + let v = native_list_append(v, ["stæf", "noun", "stafas", "stæfes", "stæfe", "", "staff"]) + let v = native_list_append(v, ["leogere", "noun", "lēogeras", "lēogeres", "lēogere", "", "a liar"]) + let v = native_list_append(v, ["þrote", "noun", "þrotan", "þrotan", "þrotan", "", "throat"]) + let v = native_list_append(v, ["nip", "noun", "nip", "", "", "", "Meaning unclear glosses"]) + let v = native_list_append(v, ["bellum", "noun", "bellum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hora", "noun", "hora", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["pile", "noun", "pile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pad", "noun", "pāda", "pāde", "pāde", "", "an outer garment"]) + let v = native_list_append(v, ["mes", "noun", "mesa", "mese", "mese", "", "dung"]) + let v = native_list_append(v, ["spite", "noun", "spite", "", "", "", "inflection of spitu"]) + let v = native_list_append(v, ["Adam", "noun", "Adam", "Adames", "Adame", "", "Adam Biblical character"]) + let v = native_list_append(v, ["part", "noun", "part", "", "", "", "part"]) + let v = native_list_append(v, ["æ", "noun", "ǣ", "ǣ", "ǣ", "", "law"]) + let v = native_list_append(v, ["mese", "noun", "mese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["piper", "noun", "piper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["camp", "noun", "campas", "campes", "campe", "", "combat battle warfare"]) + let v = native_list_append(v, ["fyra", "noun", "fyra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Andreas", "noun", "Andreas", "", "", "", "a male given"]) + let v = native_list_append(v, ["pal", "noun", "pālas", "pāles", "pāle", "", "stake"]) + let v = native_list_append(v, ["nest", "noun", "nesta", "nestes", "neste", "", "nest"]) + let v = native_list_append(v, ["saga", "noun", "sagan", "", "", "", "saw tool"]) + let v = native_list_append(v, ["rest", "noun", "resta", "reste", "reste", "", "alternative form of"]) + let v = native_list_append(v, ["bean", "noun", "bēana", "bēane", "bēane", "", "bean especially the"]) + let v = native_list_append(v, ["Englisc", "noun", "Englisc", "Englisċes", "Englisċe", "", "the English language"]) + let v = native_list_append(v, ["sealt", "noun", "sealta", "sealtes", "sealte", "", "common salt sodium"]) + let v = native_list_append(v, ["Snotingaham", "noun", "Snotingaham", "", "", "", "Nottingham"]) + let v = native_list_append(v, ["fang", "noun", "fangas", "fanges", "fange", "", "plunder booty"]) + let v = native_list_append(v, ["fen", "noun", "fen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orc", "noun", "orcas", "orces", "orce", "", "cup tankard"]) + let v = native_list_append(v, ["Saul", "noun", "Saul", "Saules", "Saule", "", "Saul biblical king"]) + let v = native_list_append(v, ["lima", "noun", "lima", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sæteresdæg", "noun", "sæteresdagas", "sæteresdæġes", "sæteresdæġe", "", "alternative form of"]) + let v = native_list_append(v, ["sæterndæg", "noun", "sæterndæg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæternesdæg", "noun", "sæternesdagas", "sæternesdæġes", "sæternesdæġe", "", "Saturday the seventh"]) + let v = native_list_append(v, ["ædre", "noun", "ǣdran", "ǣdran", "ǣdran", "", "vein artery sinew"]) + let v = native_list_append(v, ["æcced", "noun", "æċċed", "æċċedes", "æċċede", "", "alternative form of"]) + let v = native_list_append(v, ["æced", "noun", "æced", "æċedes", "æċede", "", "vinegar"]) + let v = native_list_append(v, ["eaw", "noun", "eaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tot", "noun", "totu", "totes", "tote", "", "pomp splendour parade"]) + let v = native_list_append(v, ["wrist", "noun", "wrist", "", "", "", "wrist"]) + let v = native_list_append(v, ["foxes", "noun", "foxes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Babilonie", "noun", "Babilonie", "Babilōnian", "Babilōnian", "", "Babylon the ancient"]) + let v = native_list_append(v, ["Babilonige", "noun", "Babilonige", "Babilōniġan", "Babilōniġan", "", "Babylon an ancient"]) + let v = native_list_append(v, ["wicca", "noun", "wiċċan", "wiċċan", "wiċċan", "", "witch wizard sorcerer"]) + let v = native_list_append(v, ["basnung", "noun", "bāsnunga", "bāsnunge", "bāsnunge", "", "expectation"]) + let v = native_list_append(v, ["Xerxis", "noun", "Xerxis", "Xerxises", "Xerxise", "", "Xerxes the King"]) + let v = native_list_append(v, ["bogan", "noun", "bogan", "", "", "", "plural of boga"]) + let v = native_list_append(v, ["æwnung", "noun", "æwnung", "ǣwnunge", "ǣwnunge", "", "wedlock"]) + let v = native_list_append(v, ["scire", "noun", "scire", "", "", "", "inflection of sċīr"]) + let v = native_list_append(v, ["pere", "noun", "peran", "peran", "peran", "", "pear"]) + let v = native_list_append(v, ["gist", "noun", "gist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plot", "noun", "plot", "", "", "", "plot of land"]) + let v = native_list_append(v, ["solum", "noun", "solum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fiend", "noun", "fiend", "", "", "", "inflection of fēond"]) + let v = native_list_append(v, ["tun", "noun", "tūnas", "tūnes", "tūne", "", "an enclosed piece"]) + let v = native_list_append(v, ["windle", "noun", "windle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mett", "noun", "mett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mitta", "noun", "mittan", "mittan", "mittan", "", "a dry and"]) + let v = native_list_append(v, ["gad", "noun", "gād", "gādes", "gāde", "", "lack want"]) + let v = native_list_append(v, ["strand", "noun", "stranda", "strandes", "strande", "", "beach"]) + let v = native_list_append(v, ["col", "noun", "colu", "coles", "cole", "", "coal"]) + let v = native_list_append(v, ["gimme", "noun", "gimme", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["style", "noun", "style", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toll", "noun", "tolla", "tolles", "tolle", "", "tax toll fare"]) + let v = native_list_append(v, ["wert", "noun", "werte", "werte", "werte", "", "alternative form of"]) + let v = native_list_append(v, ["rap", "noun", "rāpas", "rāpes", "rāpe", "", "rope"]) + let v = native_list_append(v, ["wig", "noun", "wīg", "wīġes", "wīġe", "", "war battle"]) + let v = native_list_append(v, ["mist", "noun", "mistas", "mistes", "miste", "", "fog"]) + let v = native_list_append(v, ["spada", "noun", "spada", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["mix", "noun", "mix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["martyrdom", "noun", "martyrdōmas", "martyrdōmes", "martyrdōme", "", "martyrdom"]) + let v = native_list_append(v, ["Sicilia", "noun", "Sicilia", "", "", "", "Sicily an island"]) + let v = native_list_append(v, ["spic", "noun", "spic", "spiċes", "spiċe", "", "bacon"]) + let v = native_list_append(v, ["æwita", "noun", "ǣwitan", "ǣwitan", "ǣwitan", "", "counselor one skilled"]) + let v = native_list_append(v, ["æwiscnes", "noun", "ǣwisċnessa", "ǣwisċnesse", "ǣwisċnesse", "", "disgrace obscenity filthiness"]) + let v = native_list_append(v, ["lys", "noun", "lys", "", "", "", "inflection of lūs"]) + let v = native_list_append(v, ["mest", "noun", "mestas", "mestes", "meste", "", "alternative form of"]) + let v = native_list_append(v, ["budda", "noun", "buddan", "buddan", "buddan", "", "beetle"]) + let v = native_list_append(v, ["sure", "noun", "sure", "", "", "", "sorrel"]) + let v = native_list_append(v, ["team", "noun", "tēamas", "tēames", "tēame", "", "childbirth"]) + let v = native_list_append(v, ["wergeld", "noun", "werġeld", "werġeldes", "werġelde", "", "alternative form of"]) + let v = native_list_append(v, ["cena", "noun", "cena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wif", "noun", "wīf", "wīfes", "wīfe", "", "woman"]) + let v = native_list_append(v, ["ur", "noun", "ūras", "ūres", "ūre", "", "aurochs"]) + let v = native_list_append(v, ["pic", "noun", "pic", "piċes", "piċe", "", "pitch"]) + let v = native_list_append(v, ["bliss", "noun", "blissa", "blisse", "blisse", "", "joy bliss"]) + let v = native_list_append(v, ["Estland", "noun", "Estland", "Ēstlandes", "Ēstlande", "", "Land of the"]) + let v = native_list_append(v, ["fica", "noun", "fica", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["huse", "noun", "huse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["alum", "noun", "alum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bade", "noun", "bade", "", "", "", "inflection of bād"]) + let v = native_list_append(v, ["bate", "noun", "bate", "", "", "", "inflection of bāt"]) + let v = native_list_append(v, ["bates", "noun", "bates", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["batt", "noun", "batt", "", "", "", "bat"]) + let v = native_list_append(v, ["bode", "noun", "bode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brad", "noun", "brādas", "brādes", "brāde", "", "alternative form of"]) + let v = native_list_append(v, ["carl", "noun", "carlas", "carles", "carle", "", "a freeman a"]) + let v = native_list_append(v, ["coca", "noun", "coca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["corona", "noun", "corōnan", "corōnan", "corōnan", "", "crown"]) + let v = native_list_append(v, ["coss", "noun", "cossas", "cosses", "cosse", "", "kiss"]) + let v = native_list_append(v, ["cue", "noun", "cue", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cyst", "noun", "cyste", "cyste", "cyste", "", "choice"]) + let v = native_list_append(v, ["degum", "noun", "degum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dor", "noun", "dōru", "dōres", "dōre", "", "a large door"]) + let v = native_list_append(v, ["dun", "noun", "dūna", "dūne", "dūne", "", "hill mountain"]) + let v = native_list_append(v, ["dyne", "noun", "dynas", "dynes", "dynum", "", "din"]) + let v = native_list_append(v, ["floc", "noun", "floc", "", "", "", "flatfish flounder"]) + let v = native_list_append(v, ["gilt", "noun", "gilt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glom", "noun", "glōmas", "glōmes", "glōme", "", "gloom twilight gloaming"]) + let v = native_list_append(v, ["hod", "noun", "hōdas", "hōdes", "hōde", "", "hood"]) + let v = native_list_append(v, ["hogan", "noun", "hogan", "", "", "", "inflection of hoga"]) + let v = native_list_append(v, ["holm", "noun", "holmas", "holmes", "holme", "", "ocean sea waters"]) + let v = native_list_append(v, ["holt", "noun", "holtas", "holtes", "holte", "", "wood woodland holt"]) + let v = native_list_append(v, ["lac", "noun", "lāc", "lāces", "lāce", "", "play sport"]) + let v = native_list_append(v, ["lar", "noun", "lāre", "lāre", "lāre", "", "teaching learning education"]) + let v = native_list_append(v, ["logan", "noun", "logan", "", "", "", "inflection of loga"]) + let v = native_list_append(v, ["loge", "noun", "loge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["marc", "noun", "marca", "marces", "marce", "", "mark as currency"]) + let v = native_list_append(v, ["mere", "noun", "meras", "meres", "merum", "", "lake"]) + let v = native_list_append(v, ["mete", "noun", "metas", "metes", "metum", "", "food"]) + let v = native_list_append(v, ["mod", "noun", "mōd", "mōdes", "mōde", "", "mind"]) + let v = native_list_append(v, ["nones", "noun", "nones", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["pard", "noun", "pard", "", "", "", "leopard"]) + let v = native_list_append(v, ["pol", "noun", "pōlas", "pōles", "pōle", "", "pool"]) + let v = native_list_append(v, ["prim", "noun", "prim", "", "", "", "Prime the first"]) + let v = native_list_append(v, ["ream", "noun", "ream", "", "", "", "cream"]) + let v = native_list_append(v, ["rune", "noun", "rune", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sage", "noun", "sage", "", "", "", "inflection of sagu"]) + let v = native_list_append(v, ["sima", "noun", "sīman", "sīman", "sīman", "", "cord rope"]) + let v = native_list_append(v, ["strop", "noun", "strop", "", "", "", "strap"]) + let v = native_list_append(v, ["tine", "noun", "tine", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["torr", "noun", "torras", "torres", "torre", "", "tower"]) + let v = native_list_append(v, ["ulan", "noun", "ulan", "", "", "", "plural of ūle"]) + let v = native_list_append(v, ["wale", "noun", "wale", "", "", "", "inflection of walu"]) + let v = native_list_append(v, ["weal", "noun", "wēalas", "wēales", "wēale", "", "alternative form of"]) + let v = native_list_append(v, ["weald", "noun", "wealdas", "wealdes", "wealde", "", "forest"]) + let v = native_list_append(v, ["wean", "noun", "wean", "", "", "", "inflection of wēa"]) + let v = native_list_append(v, ["fuse", "noun", "fuse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["beam", "noun", "bēamas", "bēames", "bēame", "", "tree"]) + let v = native_list_append(v, ["cleat", "noun", "clēatas", "clēates", "clēate", "", "a small block"]) + let v = native_list_append(v, ["disc", "noun", "discas", "disċes", "disċe", "", "plate dish"]) + let v = native_list_append(v, ["drift", "noun", "drifte", "drifte", "drifte", "", "an act of"]) + let v = native_list_append(v, ["fader", "noun", "faderas", "fadera", "faderum", "", "alternative form of"]) + let v = native_list_append(v, ["gang", "noun", "gangas", "ganges", "gange", "", "going walking"]) + let v = native_list_append(v, ["geld", "noun", "ġeld", "ġeldes", "ġelde", "", "alternative form of"]) + let v = native_list_append(v, ["heap", "noun", "hēapas", "hēapes", "hēape", "", "group"]) + let v = native_list_append(v, ["horde", "noun", "horde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["grep", "noun", "grep", "", "", "", "furrow burrow"]) + let v = native_list_append(v, ["lame", "noun", "lame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["liege", "noun", "liege", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mite", "noun", "mite", "", "", "", "a mite small"]) + let v = native_list_append(v, ["neat", "noun", "nēat", "nēates", "nēate", "", "animal beast"]) + let v = native_list_append(v, ["neb", "noun", "neb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pice", "noun", "pice", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["psalm", "noun", "psalm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slap", "noun", "slāpas", "slāpes", "slāpe", "", "alternative form of"]) + let v = native_list_append(v, ["tang", "noun", "tanga", "tange", "tange", "", "tongs"]) + let v = native_list_append(v, ["wane", "noun", "wanas", "wanes", "wanum", "", "a member of"]) + let v = native_list_append(v, ["clam", "noun", "clāmas", "clāmes", "clāme", "", "mud"]) + let v = native_list_append(v, ["scurf", "noun", "scurf", "", "", "", "scurf"]) + let v = native_list_append(v, ["tux", "noun", "tūxas", "tūxes", "tūxe", "", "alternative form of"]) + let v = native_list_append(v, ["pil", "noun", "pil", "", "", "", "pointed stick"]) + let v = native_list_append(v, ["Lewes", "noun", "Lewes", "", "", "", "Lewes a town"]) + let v = native_list_append(v, ["befor", "noun", "befor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["midwinter", "noun", "midde wintras", "middes wintres", "middum wintra", "", "the middle of"]) + let v = native_list_append(v, ["Satan", "noun", "Satan", "Satanes", "Satane", "", "Satan the Devil"]) + let v = native_list_append(v, ["Marian", "noun", "Marian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["eh", "noun", "eh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gat", "noun", "gǣt", "gǣt", "gǣt", "", "goat"]) + let v = native_list_append(v, ["onda", "noun", "ondan", "ondan", "ondan", "", "alternative form of"]) + let v = native_list_append(v, ["ege", "noun", "eġas", "eġes", "eġe", "", "fear"]) + let v = native_list_append(v, ["hoc", "noun", "hoccas", "hocces", "hocce", "", "marshmallow plant"]) + let v = native_list_append(v, ["magister", "noun", "magister", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sala", "noun", "sala", "", "", "", "a sale"]) + let v = native_list_append(v, ["ente", "noun", "ente", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mores", "noun", "mores", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sean", "noun", "sean", "", "", "", "inflection of sē"]) + let v = native_list_append(v, ["ned", "noun", "ned", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blæc", "noun", "blacu", "blæces", "blæce", "", "black"]) + let v = native_list_append(v, ["mon", "noun", "mon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cald", "noun", "calda", "caldes", "calde", "", "alternative spelling of"]) + let v = native_list_append(v, ["fel", "noun", "fel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["homa", "noun", "homa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wang", "noun", "wangas", "wanges", "wange", "", "a flat surface"]) + let v = native_list_append(v, ["rodere", "noun", "rodere", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lade", "noun", "lade", "", "", "", "inflection of lād"]) + let v = native_list_append(v, ["helm", "noun", "helmas", "helmes", "helme", "", "helmet"]) + let v = native_list_append(v, ["flod", "noun", "flōdas", "flōdes", "flōde", "", "flowing of the"]) + let v = native_list_append(v, ["plaster", "noun", "plaster", "", "", "", "plaster"]) + let v = native_list_append(v, ["stream", "noun", "strēamas", "strēames", "strēame", "", "stream"]) + let v = native_list_append(v, ["rum", "noun", "rūm", "rūmes", "rūme", "", "room space"]) + let v = native_list_append(v, ["Elizabeth", "noun", "Elizabeth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foster", "noun", "fōstru", "fōstres", "fōstre", "", "alternative form of"]) + let v = native_list_append(v, ["freo", "noun", "frēon", "frēon", "frēon", "", "a free man"]) + let v = native_list_append(v, ["dome", "noun", "dome", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["post", "noun", "postas", "postes", "poste", "", "post"]) + let v = native_list_append(v, ["caul", "noun", "caul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blase", "noun", "blasan", "blasan", "blasan", "", "torch"]) + let v = native_list_append(v, ["fara", "noun", "faran", "faran", "faran", "", "traveller farer"]) + let v = native_list_append(v, ["ora", "noun", "ōran", "ōran", "ōran", "", "ore unwrought metal"]) + let v = native_list_append(v, ["syringe", "noun", "syringe", "", "", "", "inflection of sȳring"]) + let v = native_list_append(v, ["pistol", "noun", "pistolas", "pistoles", "pistole", "", "letter epistle"]) + let v = native_list_append(v, ["flint", "noun", "flintas", "flintes", "flinte", "", "flint"]) + let v = native_list_append(v, ["wield", "noun", "wielde", "wielde", "wielde", "", "power might"]) + let v = native_list_append(v, ["sul", "noun", "sūlas", "sūles", "sūle", "", "plough"]) + let v = native_list_append(v, ["deg", "noun", "dagas", "deġes", "deġe", "", "alternative form of"]) + let v = native_list_append(v, ["mil", "noun", "mīla", "mīle", "mīle", "", "mile"]) + let v = native_list_append(v, ["miss", "noun", "missa", "misses", "misse", "", "loss"]) + let v = native_list_append(v, ["regal", "noun", "regal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ancre", "noun", "ancre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tune", "noun", "tune", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Cumberland", "noun", "Cumberland", "Cumberlandes", "Cumberlande", "", "Cumbria a Brittonic"]) + let v = native_list_append(v, ["este", "noun", "este", "", "", "", "inflection of ēst"]) + let v = native_list_append(v, ["canonic", "noun", "canonicas", "canonices", "canonice", "", "canon"]) + let v = native_list_append(v, ["maga", "noun", "magan", "magan", "magan", "", "stomach"]) + let v = native_list_append(v, ["stall", "noun", "stall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tal", "noun", "tāla", "tāle", "tāle", "", "evil-speaking calumny disparagement"]) + let v = native_list_append(v, ["banc", "noun", "banca", "bance", "bance", "", "bench"]) + let v = native_list_append(v, ["doc", "noun", "doc", "", "", "", "bastard"]) + let v = native_list_append(v, ["hula", "noun", "hula", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["gelt", "noun", "gelt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lox", "noun", "loxas", "loxes", "loxe", "", "lynx"]) + let v = native_list_append(v, ["ides", "noun", "idesa", "idese", "idese", "", "woman lady queen"]) + let v = native_list_append(v, ["buc", "noun", "būcas", "būces", "būce", "", "belly stomach"]) + let v = native_list_append(v, ["flit", "noun", "flitu", "flites", "flite", "", "argument fight"]) + let v = native_list_append(v, ["smelting", "noun", "smeltinga", "smeltinge", "smeltinge", "", "amber"]) + let v = native_list_append(v, ["borg", "noun", "borgas", "borges", "borge", "", "pledge"]) + let v = native_list_append(v, ["bona", "noun", "bona", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stor", "noun", "stōras", "stōres", "stōre", "", "frankincense"]) + let v = native_list_append(v, ["tid", "noun", "tīda", "tīde", "tīde", "", "time in general"]) + let v = native_list_append(v, ["bruna", "noun", "bruna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["scope", "noun", "scope", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["notes", "noun", "notes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ridere", "noun", "rīderas", "rīderes", "rīdere", "", "rider horseman"]) + let v = native_list_append(v, ["foxhole", "noun", "foxhole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["beag", "noun", "bēagas", "bēages", "bēage", "", "circular object worn"]) + let v = native_list_append(v, ["mor", "noun", "mōras", "mōres", "mōre", "", "marsh wilderness moor"]) + let v = native_list_append(v, ["melting", "noun", "melting", "meltinge", "meltinge", "", "melting"]) + let v = native_list_append(v, ["spindel", "noun", "spindel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naso", "noun", "naso", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nasa", "noun", "nasa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["understanding", "noun", "understanding", "understandinge", "understandinge", "", "intelligence"]) + let v = native_list_append(v, ["flora", "noun", "flora", "", "", "", "inflection of flōr"]) + let v = native_list_append(v, ["flore", "noun", "flore", "", "", "", "inflection of flōr"]) + let v = native_list_append(v, ["corse", "noun", "corse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Isaac", "noun", "Isaac", "", "", "", "Isaac Biblical character"]) + let v = native_list_append(v, ["Scott", "noun", "Sċottas", "Sċottes", "Sċotte", "", "A Scot"]) + let v = native_list_append(v, ["stig", "noun", "stīga", "stīġe", "stīġe", "", "path especially steep"]) + let v = native_list_append(v, ["boga", "noun", "bogan", "bogan", "bogan", "", "bow weapon"]) + let v = native_list_append(v, ["pyll", "noun", "pyllas", "pylles", "pylle", "", "tidal pool inlet"]) + let v = native_list_append(v, ["belle", "noun", "bellan", "bellan", "bellan", "", "bell"]) + let v = native_list_append(v, ["grin", "noun", "grīna", "grīne", "grīne", "", "snare"]) + let v = native_list_append(v, ["swole", "noun", "swole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stow", "noun", "stōwa", "stōwe", "stōwe", "", "a place"]) + let v = native_list_append(v, ["elm", "noun", "elmas", "elmes", "elme", "", "elm tree"]) + let v = native_list_append(v, ["gore", "noun", "gore", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["porte", "noun", "porte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wad", "noun", "wād", "wādes", "wāde", "", "woad"]) + let v = native_list_append(v, ["tig", "noun", "tig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reden", "noun", "reden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wer", "noun", "weras", "weres", "were", "", "man"]) + let v = native_list_append(v, ["tinn", "noun", "tinna", "tinne", "tinne", "", "beam rafter"]) + let v = native_list_append(v, ["bile", "noun", "bile", "", "", "", "bill of a"]) + let v = native_list_append(v, ["amore", "noun", "amoran", "amoran", "amoran", "", "a kind of"]) + let v = native_list_append(v, ["fora", "noun", "fora", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["bolster", "noun", "bolstras", "bolstres", "bolstre", "", "pillow cushion"]) + let v = native_list_append(v, ["pinn", "noun", "pinnas", "pinnes", "pinne", "", "pin peg"]) + let v = native_list_append(v, ["rinc", "noun", "rincas", "rinces", "rince", "", "man warrior"]) + let v = native_list_append(v, ["rince", "noun", "rince", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wo", "noun", "wo", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["carr", "noun", "carras", "carres", "carre", "", "stone rock"]) + let v = native_list_append(v, ["bige", "noun", "biġas", "biġes", "biġe", "", "alternative form of"]) + let v = native_list_append(v, ["beaga", "noun", "beaga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sola", "noun", "sola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["regna", "noun", "regna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["max", "noun", "max", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fultum", "noun", "fultumas", "fultumes", "fultume", "", "help support protection"]) + let v = native_list_append(v, ["lida", "noun", "lidan", "lidan", "lidan", "", "sailor"]) + let v = native_list_append(v, ["wince", "noun", "wince", "", "", "", "winch reel"]) + let v = native_list_append(v, ["fæces", "noun", "fæces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["warum", "noun", "warum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["writ", "noun", "writu", "writes", "write", "", "writ"]) + let v = native_list_append(v, ["bridle", "noun", "bridle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["angol", "noun", "anglas", "angles", "angle", "", "fishhook"]) + let v = native_list_append(v, ["plume", "noun", "plūman", "plūman", "plūman", "", "plum"]) + let v = native_list_append(v, ["ware", "noun", "ware", "", "", "", "inflection of waru"]) + let v = native_list_append(v, ["cluster", "noun", "cluster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fane", "noun", "fane", "", "", "", "inflection of fanu"]) + let v = native_list_append(v, ["grad", "noun", "gradas", "grades", "grade", "", "grade step order"]) + let v = native_list_append(v, ["brig", "noun", "brig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceol", "noun", "ċēolas", "ċēoles", "ċēole", "", "ship specifically a"]) + let v = native_list_append(v, ["linda", "noun", "linda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["warp", "noun", "warp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Augustus", "noun", "Augustus", "Augustuses", "Augustuse", "", "the Roman emperor"]) + let v = native_list_append(v, ["wyrm", "noun", "wyrmas", "wyrmes", "wyrme", "", "any crawling animal"]) + let v = native_list_append(v, ["nicer", "noun", "niceras", "niceres", "nicere", "", "alternative form of"]) + let v = native_list_append(v, ["underling", "noun", "underlingas", "underlinges", "underlinge", "", "underling subordinate"]) + let v = native_list_append(v, ["ie", "noun", "ie", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["glede", "noun", "glede", "", "", "", "inflection of glēd"]) + let v = native_list_append(v, ["caru", "noun", "cara", "care", "care", "", "worry anxiety care"]) + let v = native_list_append(v, ["fetor", "noun", "fetor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neste", "noun", "neste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Westminster", "noun", "Westminster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dah", "noun", "dāgas", "dāges", "dāge", "", "alternative form of"]) + let v = native_list_append(v, ["flies", "noun", "flies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meta", "noun", "meta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bod", "noun", "bodu", "bodes", "bode", "", "a command mandate"]) + let v = native_list_append(v, ["æg", "noun", "ǣġru", "ǣġes", "ǣġe", "", "egg"]) + let v = native_list_append(v, ["fodring", "noun", "fodring", "", "", "", "grazing"]) + let v = native_list_append(v, ["fodre", "noun", "fodre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fitt", "noun", "fitta", "fitte", "fitte", "", "poem song"]) + let v = native_list_append(v, ["hane", "noun", "hane", "", "", "", "inflection of hān"]) + let v = native_list_append(v, ["Harold", "noun", "Harold", "", "", "", "a male given"]) + let v = native_list_append(v, ["ecg", "noun", "eċġa", "eċġe", "eċġe", "", "edge of a"]) + let v = native_list_append(v, ["Germania", "noun", "Germania", "", "", "", "land encompassing all"]) + let v = native_list_append(v, ["sinn", "noun", "sinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boba", "noun", "bōban", "bōban", "bōban", "", "a male child"]) + let v = native_list_append(v, ["tol", "noun", "tōl", "tōles", "tōle", "", "tool implement instrument"]) + let v = native_list_append(v, ["fata", "noun", "fata", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bula", "noun", "bulan", "bulan", "bulan", "", "bull"]) + let v = native_list_append(v, ["impa", "noun", "impa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lege", "noun", "lege", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sape", "noun", "sāpan", "sāpan", "sāpan", "", "soap"]) + let v = native_list_append(v, ["Abraham", "noun", "Abraham", "Ābrahāmes", "Ābrahāme", "", "Abraham"]) + let v = native_list_append(v, ["blot", "noun", "blōt", "blōtes", "blōte", "", "a sacrifice especially"]) + let v = native_list_append(v, ["Cuda", "noun", "Cuda", "", "", "", "a male given"]) + let v = native_list_append(v, ["boca", "noun", "boca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sorge", "noun", "sorge", "", "", "", "inflection of sorg"]) + let v = native_list_append(v, ["hose", "noun", "hosan", "hosan", "hosan", "", "pant leg stocking"]) + let v = native_list_append(v, ["hired", "noun", "hīredas", "hīredes", "hīrede", "", "family household"]) + let v = native_list_append(v, ["bears", "noun", "bears", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grund", "noun", "grundas", "grundes", "grunde", "", "ground"]) + let v = native_list_append(v, ["moder", "noun", "moder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cimbal", "noun", "cimbal", "", "", "", "cymbal"]) + let v = native_list_append(v, ["Maria", "noun", "Maria", "Marīan", "Marīan", "", "Mary"]) + let v = native_list_append(v, ["croft", "noun", "croft", "", "", "", "an enclosed field"]) + let v = native_list_append(v, ["boda", "noun", "bodan", "bodan", "bodan", "", "messenger"]) + let v = native_list_append(v, ["purpure", "noun", "purpuran", "purpuran", "purpuran", "", "a purple garment"]) + let v = native_list_append(v, ["sande", "noun", "sande", "", "", "", "inflection of sand"]) + let v = native_list_append(v, ["roda", "noun", "roda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["Gold", "noun", "Gold", "", "", "", "a male given"]) + let v = native_list_append(v, ["Abele", "noun", "Abele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Alda", "noun", "Alda", "Aldan", "Aldan", "", "a male given"]) + let v = native_list_append(v, ["Angel", "noun", "Angel", "Angle", "Angle", "", "Anglia peninsula in"]) + let v = native_list_append(v, ["Angle", "noun", "Angle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Bar", "noun", "Bar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Beda", "noun", "Beda", "Bedan", "Bedan", "", "a male given"]) + let v = native_list_append(v, ["Brett", "noun", "Brettas", "Brettes", "Brette", "", "Briton native or"]) + let v = native_list_append(v, ["Budda", "noun", "Budda", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cana", "noun", "Cana", "", "", "", "a male given"]) + let v = native_list_append(v, ["Carl", "noun", "Carl", "", "", "", "a male given"]) + let v = native_list_append(v, ["Carr", "noun", "Carr", "", "", "", "Charmouth a village"]) + let v = native_list_append(v, ["Cater", "noun", "Cater", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cent", "noun", "Cent", "Cente", "", "", "Kent a historic"]) + let v = native_list_append(v, ["Cola", "noun", "Cola", "Cōlan", "Cōlan", "", "a male given"]) + let v = native_list_append(v, ["Creme", "noun", "Creme", "", "", "", "Crema town in"]) + let v = native_list_append(v, ["Este", "noun", "Ēste", "Ēsta", "Ēstum", "", "the Aestii or"]) + let v = native_list_append(v, ["Finn", "noun", "Finnas", "Finnes", "Finne", "", "Sami"]) + let v = native_list_append(v, ["Geat", "noun", "Ġēatas", "Ġēates", "Ġēate", "", "Geat"]) + let v = native_list_append(v, ["Germanium", "noun", "Germanium", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["God", "noun", "God", "Godes", "Gode", "", "God"]) + let v = native_list_append(v, ["Hun", "noun", "Hun", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ira", "noun", "Ira", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Leo", "noun", "Leo", "Leon", "Leone", "", "a male given"]) + let v = native_list_append(v, ["Leone", "noun", "Leone", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Mann", "noun", "Mann", "", "", "", "a male given"]) + let v = native_list_append(v, ["Perse", "noun", "Persa", "Persea", "Persum", "", "the Persians"]) + let v = native_list_append(v, ["Regulus", "noun", "Regulus", "Reguluses", "Regule", "", "a male given"]) + let v = native_list_append(v, ["Sola", "noun", "Sola", "Sōlan", "Sōlan", "", "a male given"]) + let v = native_list_append(v, ["Tine", "noun", "Tine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Winter", "noun", "Winter", "", "", "", "a male given"]) + let v = native_list_append(v, ["scot", "noun", "sċot", "sċotes", "sċote", "", "shot act of"]) + let v = native_list_append(v, ["peru", "noun", "pera", "pere", "pere", "", "pear"]) + let v = native_list_append(v, ["cu", "noun", "cȳ", "cūe", "cȳ", "", "cow"]) + let v = native_list_append(v, ["brim", "noun", "brimu", "brimes", "brime", "", "sea ocean water"]) + let v = native_list_append(v, ["hera", "noun", "hēran", "hēran", "hēran", "", "follower servant one"]) + let v = native_list_append(v, ["berge", "noun", "berġan", "berġan", "berġan", "", "berry"]) + let v = native_list_append(v, ["feder", "noun", "feder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bern", "noun", "bern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cian", "noun", "cian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["scorpio", "noun", "scorpio", "", "", "", "scorpion"]) + let v = native_list_append(v, ["nase", "noun", "nase", "", "", "", "inflection of nasu"]) + let v = native_list_append(v, ["rinde", "noun", "rindan", "rindan", "rindan", "", "rind"]) + let v = native_list_append(v, ["wald", "noun", "waldas", "waldes", "walde", "", "alternative form of"]) + let v = native_list_append(v, ["wurm", "noun", "wurm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Abel", "noun", "Abel", "", "", "", "Abel the brother"]) + let v = native_list_append(v, ["cruft", "noun", "cruftas", "cruftes", "crufte", "", "vault"]) + let v = native_list_append(v, ["tabula", "noun", "tabula", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hog", "noun", "hog", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["planeta", "noun", "planētan", "planētan", "planētan", "", "planet"]) + let v = native_list_append(v, ["cocer", "noun", "coceras", "coceres", "cocere", "", "a quiver for"]) + let v = native_list_append(v, ["dombec", "noun", "dombec", "", "", "", "plural of domboc"]) + let v = native_list_append(v, ["Arabia", "noun", "Arabia", "", "", "", "Arabia a peninsula"]) + let v = native_list_append(v, ["scopa", "noun", "scopa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hice", "noun", "hican", "hican", "hican", "", "A type of"]) + let v = native_list_append(v, ["haga", "noun", "haga", "", "", "", "a hedge thicket"]) + let v = native_list_append(v, ["meare", "noun", "meare", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["graf", "noun", "graf", "", "", "", "grove"]) + let v = native_list_append(v, ["strela", "noun", "strela", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["plega", "noun", "plegan", "plegan", "plegan", "", "playing"]) + let v = native_list_append(v, ["yr", "noun", "yr", "", "", "", "the runic character"]) + let v = native_list_append(v, ["sprote", "noun", "sprote", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["boh", "noun", "boh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hosp", "noun", "hospas", "hospes", "hospe", "", "reproach contempt contumely"]) + let v = native_list_append(v, ["ears", "noun", "earsas", "earses", "earse", "", "butt arse"]) + let v = native_list_append(v, ["flex", "noun", "flex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Irland", "noun", "Irland", "Īrlandes", "Īrlande", "", "Ireland an island"]) + let v = native_list_append(v, ["pinna", "noun", "pinna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sada", "noun", "sādan", "sādan", "sādan", "", "cord halter snare"]) + let v = native_list_append(v, ["sabat", "noun", "sabat", "", "", "", "the Sabbath"]) + let v = native_list_append(v, ["ara", "noun", "āra", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["bote", "noun", "bote", "", "", "", "inflection of bōt"]) + let v = native_list_append(v, ["homer", "noun", "homeras", "homeres", "homere", "", "alternative form of"]) + let v = native_list_append(v, ["wires", "noun", "wires", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["grot", "noun", "grota", "grotes", "grote", "", "particle"]) + let v = native_list_append(v, ["spore", "noun", "spore", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heben", "noun", "hebenas", "hebenes", "hebene", "", "alternative form of"]) + let v = native_list_append(v, ["sed", "noun", "sēd", "sēdes", "sēde", "", "alternative form of"]) + let v = native_list_append(v, ["duguþ", "noun", "duguþa", "duguþe", "duguþe", "", "band of warriors"]) + let v = native_list_append(v, ["flet", "noun", "fleta", "fletes", "flete", "", "the floor ground"]) + let v = native_list_append(v, ["swat", "noun", "swat", "swātes", "swāte", "", "sweat"]) + let v = native_list_append(v, ["friþ", "noun", "friþu", "friþes", "friþe", "", "peace"]) + let v = native_list_append(v, ["gesiþ", "noun", "ġesīþas", "ġesīþes", "ġesīþe", "", "companion comrade"]) + let v = native_list_append(v, ["mæg", "noun", "māgas", "mǣġes", "mǣġe", "", "relative kinsman"]) + let v = native_list_append(v, ["wlanc", "noun", "wlanc", "", "", "", "pride"]) + let v = native_list_append(v, ["rapa", "noun", "rapa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["breg", "noun", "breg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eþel", "noun", "ēþlas", "ēþles", "ēþle", "", "ones native country"]) + let v = native_list_append(v, ["ofer", "noun", "ōfras", "ōfres", "ōfre", "", "border edge specifically"]) + let v = native_list_append(v, ["wenn", "noun", "wennas", "wennes", "wenne", "", "wen cyst on"]) + let v = native_list_append(v, ["westen", "noun", "wēstenas", "wēstenes", "wēstene", "", "wasteland desert wilderness"]) + let v = native_list_append(v, ["hade", "noun", "hade", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gigant", "noun", "gīgantas", "gīgantes", "gīgante", "", "a giant mythical"]) + let v = native_list_append(v, ["bera", "noun", "beran", "beran", "beran", "", "bear"]) + let v = native_list_append(v, ["borga", "noun", "borga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Bretland", "noun", "Bretland", "Bretlandes", "Bretlande", "", "Britain a large"]) + let v = native_list_append(v, ["lasta", "noun", "lasta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["elda", "noun", "elda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ferð", "noun", "ferðas", "ferðes", "ferðe", "", "alternative spelling of"]) + let v = native_list_append(v, ["finna", "noun", "finna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fær", "noun", "fǣras", "fǣres", "fǣre", "", "sudden danger calamity"]) + let v = native_list_append(v, ["gera", "noun", "gera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hafa", "noun", "hafan", "hafan", "hafan", "", "haver owner"]) + let v = native_list_append(v, ["herra", "noun", "herra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lifa", "noun", "lifa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lyf", "noun", "lyf", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lyfta", "noun", "lyfta", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["nota", "noun", "nota", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stundum", "noun", "stundum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["til", "noun", "tilas", "tiles", "tile", "", "use service convenience"]) + let v = native_list_append(v, ["wages", "noun", "wages", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fet", "noun", "fet", "", "", "", "inflection of fōt"]) + let v = native_list_append(v, ["Palestina", "noun", "Palestina", "", "", "", "Palestine"]) + let v = native_list_append(v, ["bita", "noun", "bitan", "bitan", "bitan", "", "bite of food"]) + let v = native_list_append(v, ["grafa", "noun", "grāfan", "grāfan", "grāfan", "", "grove copse"]) + let v = native_list_append(v, ["ganga", "noun", "ganga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["spec", "noun", "spec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyrst", "noun", "fyrstas", "fyrstes", "fyrste", "", "alternative form of"]) + let v = native_list_append(v, ["bur", "noun", "būras", "būres", "būre", "", "private chamber room"]) + let v = native_list_append(v, ["coccum", "noun", "coccum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gafol", "noun", "gafola", "gafole", "gafole", "", "fork"]) + let v = native_list_append(v, ["wæl", "noun", "walu", "wæles", "wæle", "", "slaughter carnage"]) + let v = native_list_append(v, ["griþ", "noun", "griþ", "griþes", "griþe", "", "truce peace"]) + let v = native_list_append(v, ["yþ", "noun", "ȳþe", "ȳþe", "ȳþe", "", "wave of water"]) + let v = native_list_append(v, ["leoþ", "noun", "lēoþ", "lēoþes", "lēoþe", "", "poem"]) + let v = native_list_append(v, ["fæc", "noun", "facu", "fæces", "fæce", "", "a division space"]) + let v = native_list_append(v, ["swefn", "noun", "swefnu", "swefnes", "swefne", "", "dream"]) + let v = native_list_append(v, ["beorn", "noun", "beornas", "beornes", "beorne", "", "man warrior"]) + let v = native_list_append(v, ["tir", "noun", "tīras", "tīres", "tīre", "", "fame glory honour"]) + let v = native_list_append(v, ["hæleþ", "noun", "hæleþas", "hæleþes", "hæleþe", "", "alternative form of"]) + let v = native_list_append(v, ["guþ", "noun", "gūþe", "gūþe", "gūþe", "", "battle combat"]) + let v = native_list_append(v, ["deor", "noun", "dēor", "dēores", "dēore", "", "wild animal beast"]) + let v = native_list_append(v, ["cempa", "noun", "cempan", "cempan", "cempan", "", "soldier warrior"]) + let v = native_list_append(v, ["wæstm", "noun", "wæstmas", "wæstmes", "wæstme", "", "fruit"]) + let v = native_list_append(v, ["wite", "noun", "wītu", "wītes", "wīte", "", "punishment"]) + let v = native_list_append(v, ["andwlita", "noun", "andwlitan", "andwlitan", "andwlitan", "", "face"]) + let v = native_list_append(v, ["eahta", "noun", "eahta", "", "eahtum", "", "eight"]) + let v = native_list_append(v, ["seon", "noun", "seon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gird", "noun", "gird", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fugol", "noun", "fuglas", "fugles", "fugle", "", "bird"]) + let v = native_list_append(v, ["stræl", "noun", "strǣla", "strǣle", "strǣle", "", "arrow"]) + let v = native_list_append(v, ["mund", "noun", "munda", "munde", "munde", "", "hand palm as"]) + let v = native_list_append(v, ["sweora", "noun", "swēoran", "swēoran", "swēoran", "", "neck"]) + let v = native_list_append(v, ["þruh", "noun", "þrȳh", "þrȳh", "þrȳh", "", "a pipe or"]) + let v = native_list_append(v, ["dolg", "noun", "dolga", "dolges", "dolge", "", "wound gash"]) + let v = native_list_append(v, ["earm", "noun", "earmas", "earmes", "earme", "", "arm"]) + let v = native_list_append(v, ["þræl", "noun", "þrǣlas", "þrǣles", "þrǣle", "", "slave"]) + let v = native_list_append(v, ["earh", "noun", "ēarwa", "ēarwe", "ēarwe", "", "arrow"]) + let v = native_list_append(v, ["myltestre", "noun", "myltestran", "myltestran", "myltestran", "", "a whore prostitute"]) + let v = native_list_append(v, ["mæw", "noun", "mǣwas", "mǣwes", "mǣwe", "", "gull seagull"]) + let v = native_list_append(v, ["monaþ", "noun", "mōnaþ", "mōnaþes", "mōnaþ", "", "month"]) + let v = native_list_append(v, ["cniht", "noun", "cneoht", "cnihtes", "cnihte", "", "boy"]) + let v = native_list_append(v, ["hela", "noun", "hēlan", "hēlan", "hēlan", "", "heel of the"]) + let v = native_list_append(v, ["hlaford", "noun", "hlāfordas", "hlāfordes", "hlāforde", "", "lord master of"]) + let v = native_list_append(v, ["hlaf", "noun", "hlāfas", "hlāfes", "hlāfe", "", "bread"]) + let v = native_list_append(v, ["weard", "noun", "weardas", "weardes", "wearde", "", "guard"]) + let v = native_list_append(v, ["hlæfdige", "noun", "hlǣfdī̆ġan", "hlǣfdī̆ġan", "hlǣfdī̆ġan", "", "a lady the"]) + let v = native_list_append(v, ["dæge", "noun", "dǣġan", "dǣġan", "dǣġan", "", "female servant"]) + let v = native_list_append(v, ["catt", "noun", "cattas", "cattes", "catte", "", "cat"]) + let v = native_list_append(v, ["catte", "noun", "cattan", "cattan", "cattan", "", "a female cat"]) + let v = native_list_append(v, ["oran", "noun", "oran", "", "", "", "inflection of ōra"]) + let v = native_list_append(v, ["tægel", "noun", "tægel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þegn", "noun", "þeġnas", "þeġnes", "þeġne", "", "servant"]) + let v = native_list_append(v, ["trig", "noun", "trīġ", "trīġes", "trīġe", "", "alternative form of"]) + let v = native_list_append(v, ["tima", "noun", "tīman", "tīman", "tīman", "", "a time hour"]) + let v = native_list_append(v, ["sida", "noun", "sida", "", "", "", "inflection of sidu"]) + let v = native_list_append(v, ["isern", "noun", "īsern", "īsernes", "īserne", "", "the metal iron"]) + let v = native_list_append(v, ["hors", "noun", "horsa", "horses", "horse", "", "horse"]) + let v = native_list_append(v, ["eorl", "noun", "eorlas", "eorles", "eorle", "", "A nobleman a"]) + let v = native_list_append(v, ["hyse", "noun", "hyssas", "hysses", "hysse", "", "warrior"]) + let v = native_list_append(v, ["iergþu", "noun", "iergþu", "ierġþe", "ierġþe", "", "alternative form of"]) + let v = native_list_append(v, ["hafoc", "noun", "hafocas", "hafoces", "hafoce", "", "hawk"]) + let v = native_list_append(v, ["morgen", "noun", "morgnas", "morgnes", "morgne", "", "morning"]) + let v = native_list_append(v, ["heregeatwa", "noun", "hereġeatwa", "", "", "", "war-gear"]) + let v = native_list_append(v, ["atr", "noun", "atr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folc", "noun", "folca", "folces", "folce", "", "the people especially"]) + let v = native_list_append(v, ["leode", "noun", "lēode", "lēoda", "lēodum", "", "men people people"]) + let v = native_list_append(v, ["leod", "noun", "lēodas", "lēodes", "lēode", "", "man chief leader"]) + let v = native_list_append(v, ["eoh", "noun", "ēos", "ēos", "ēo", "", "horse steed"]) + let v = native_list_append(v, ["maþa", "noun", "maþan", "maþan", "maþan", "", "worm maggot"]) + let v = native_list_append(v, ["Tina", "noun", "Tina", "Tīnan", "Tīnan", "", "Tyne a river"]) + let v = native_list_append(v, ["toþ", "noun", "tēþ", "tōþes", "tēþ", "", "tooth"]) + let v = native_list_append(v, ["hord", "noun", "horda", "hordes", "horde", "", "A hoard especially"]) + let v = native_list_append(v, ["treow", "noun", "trēowu", "trēowes", "trēowe", "", "tree"]) + let v = native_list_append(v, ["targe", "noun", "targe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["targa", "noun", "targan", "targan", "targan", "", "a light shield"]) + let v = native_list_append(v, ["temples", "noun", "temples", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wyrd", "noun", "wyrde", "wyrde", "wyrde", "", "fate destiny"]) + let v = native_list_append(v, ["þorn", "noun", "þornas", "þornes", "þorne", "", "thorn"]) + let v = native_list_append(v, ["nyd", "noun", "nyd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprot", "noun", "sprota", "sprotes", "sprote", "", "sprout shoot twig"]) + let v = native_list_append(v, ["Tiw", "noun", "Tiw", "Tīwes", "Tīwe", "", "Tiw the Anglo-Saxon"]) + let v = native_list_append(v, ["tiwesdæg", "noun", "tīwesdagas", "tīwesdæġes", "tīwesdæġe", "", "Tuesday"]) + let v = native_list_append(v, ["iw", "noun", "īwas", "īwes", "īwe", "", "yew tree"]) + let v = native_list_append(v, ["grana", "noun", "grana", "", "", "", "Definition unclear perhaps"]) + let v = native_list_append(v, ["æx", "noun", "æxe", "æxe", "æxe", "", "axe"]) + let v = native_list_append(v, ["sweord", "noun", "sweorda", "sweordes", "sweorde", "", "sword"]) + let v = native_list_append(v, ["lagu", "noun", "laga", "laga", "laga", "", "sea water lake"]) + let v = native_list_append(v, ["holes", "noun", "holes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mearh", "noun", "mēaras", "mēares", "mēare", "", "horse steed"]) + let v = native_list_append(v, ["stod", "noun", "stod", "", "", "", "enclosure for breeding"]) + let v = native_list_append(v, ["burh", "noun", "burh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burg", "noun", "byrġ", "byrġ", "byrġ", "", "city or town"]) + let v = native_list_append(v, ["gerefa", "noun", "ġerēfan", "ġerēfan", "ġerēfan", "", "a reeve or"]) + let v = native_list_append(v, ["scir", "noun", "sċīra", "sċīre", "sċīre", "", "office status of"]) + let v = native_list_append(v, ["scirgerefa", "noun", "sċīrġerēfan", "sċīrġerēfan", "sċīrġerēfan", "", "sheriff chief officer"]) + let v = native_list_append(v, ["laca", "noun", "laca", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["fæstnung", "noun", "fæstnunga", "fæstnunge", "fæstnunge", "", "fastening"]) + let v = native_list_append(v, ["fæmne", "noun", "fǣmnan", "fǣmnan", "fǣmnan", "", "virgin"]) + let v = native_list_append(v, ["hæmed", "noun", "hǣmdu", "hǣmdes", "hǣmde", "", "sex intercourse"]) + let v = native_list_append(v, ["mægþ", "noun", "mæġþ", "mæġþ", "mæġþ", "", "alternative form of"]) + let v = native_list_append(v, ["mægþblæd", "noun", "mæġþbladu", "mæġþblædes", "mæġþblæde", "", "alternative form of"]) + let v = native_list_append(v, ["blæd", "noun", "bladu", "blædes", "blæde", "", "leaf"]) + let v = native_list_append(v, ["mægþhad", "noun", "mǣġþhādas", "mǣġþhādes", "mǣġþhāde", "", "kinship relationship"]) + let v = native_list_append(v, ["gedwola", "noun", "ġedwolan", "ġedwolan", "ġedwolan", "", "mistake error"]) + let v = native_list_append(v, ["gedwolgod", "noun", "ġedwolgodas", "ġedwolgodes", "ġedwolgode", "", "false god idol"]) + let v = native_list_append(v, ["dweorg", "noun", "dweorgas", "dweorges", "dweorge", "", "dwarf"]) + let v = native_list_append(v, ["Woden", "noun", "Woden", "Wōdnes", "Wōdne", "", "Woden"]) + let v = native_list_append(v, ["monandæg", "noun", "mōnandagas", "mōnandæġes", "mōnandæġe", "", "Monday"]) + let v = native_list_append(v, ["fyst", "noun", "fȳste", "fȳste", "fȳste", "", "the fist"]) + let v = native_list_append(v, ["fyr", "noun", "fȳr", "fȳres", "fȳre", "", "fire"]) + let v = native_list_append(v, ["fic", "noun", "fīcas", "fīces", "fīce", "", "a fig or"]) + let v = native_list_append(v, ["æfen", "noun", "ǣfennas", "ǣfennes", "ǣfenne", "", "evening"]) + let v = native_list_append(v, ["wyrt", "noun", "wyrte", "wyrte", "wyrte", "", "plant"]) + let v = native_list_append(v, ["ægwyrt", "noun", "ǣġwyrta", "ǣġwyrte", "ǣġwyrte", "", "dandelion"]) + let v = native_list_append(v, ["ælf", "noun", "ælfas", "ælfes", "ælfe", "", "alternative form of"]) + let v = native_list_append(v, ["æppel", "noun", "æppla", "æppla", "æppla", "", "apple"]) + let v = native_list_append(v, ["æppelleaf", "noun", "æppellēaf", "æppellēafes", "æppellēafe", "", "the violet"]) + let v = native_list_append(v, ["dagung", "noun", "dagunga", "dagunge", "dagunge", "", "dawn daybreak"]) + let v = native_list_append(v, ["agen", "noun", "āgen", "", "", "", "property house"]) + let v = native_list_append(v, ["agenslaga", "noun", "āgenslagan", "āgenslagan", "āgenslagan", "", "someone who kills"]) + let v = native_list_append(v, ["slaga", "noun", "slagan", "slagan", "slagan", "", "killer murderer"]) + let v = native_list_append(v, ["beado", "noun", "beado", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bealo", "noun", "bealwa", "bealwes", "bealwe", "", "alternative form of"]) + let v = native_list_append(v, ["bearg", "noun", "beargas", "bearges", "bearge", "", "castrated boar barrow"]) + let v = native_list_append(v, ["beorg", "noun", "beorgas", "beorges", "beorge", "", "mountain hill"]) + let v = native_list_append(v, ["beallucas", "noun", "beallucas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bearn", "noun", "bearna", "bearnes", "bearne", "", "child"]) + let v = native_list_append(v, ["cild", "noun", "ċildru", "ċildes", "ċilde", "", "child"]) + let v = native_list_append(v, ["dohtor", "noun", "dohtra", "dohtra", "dehter", "", "daughter"]) + let v = native_list_append(v, ["sunu", "noun", "suna", "suna", "suna", "", "son male child"]) + let v = native_list_append(v, ["sunsunu", "noun", "sunsuna", "sunsuna", "sunsuna", "", "grandson lit. sons"]) + let v = native_list_append(v, ["gebed", "noun", "ġebedu", "ġebedes", "ġebede", "", "prayer religious observance"]) + let v = native_list_append(v, ["beor", "noun", "bēoras", "bēores", "bēore", "", "beer ale"]) + let v = native_list_append(v, ["ealu", "noun", "ealoþ", "ealoþ", "ealoþ", "", "beer ale"]) + let v = native_list_append(v, ["eam", "noun", "ēamas", "ēames", "ēame", "", "uncle especially maternal"]) + let v = native_list_append(v, ["bochus", "noun", "bōchūs", "bōchūses", "bōchūse", "", "library"]) + let v = native_list_append(v, ["cæg", "noun", "cǣġa", "cǣġe", "cǣġe", "", "key"]) + let v = native_list_append(v, ["gisel", "noun", "ġīselas", "ġīseles", "ġīsele", "", "alternative form of"]) + let v = native_list_append(v, ["grama", "noun", "graman", "graman", "graman", "", "anger rage wrath"]) + let v = native_list_append(v, ["reste", "noun", "reste", "", "", "", "inflection of rest"]) + let v = native_list_append(v, ["hunig", "noun", "hunig", "huniġes", "huniġe", "", "honey"]) + let v = native_list_append(v, ["gild", "noun", "ġild", "ġildes", "ġilde", "", "alternative form of"]) + let v = native_list_append(v, ["carles wæn", "noun", "carles wæn", "", "", "", "the Big Dipper"]) + let v = native_list_append(v, ["wægn", "noun", "wæġnas", "wæġnes", "wæġne", "", "wagon carriage"]) + let v = native_list_append(v, ["siþ", "noun", "sīþas", "sīþes", "sīþe", "", "time instance or"]) + let v = native_list_append(v, ["riþ", "noun", "riþ", "", "", "", "a stream or"]) + let v = native_list_append(v, ["rimcræft", "noun", "rīmcræftas", "rīmcræftes", "rīmcræfte", "", "mathematics"]) + let v = native_list_append(v, ["cræft", "noun", "cræftas", "cræftes", "cræfte", "", "strength power"]) + let v = native_list_append(v, ["gifu", "noun", "ġifa", "ġife", "ġife", "", "alternative form of"]) + let v = native_list_append(v, ["riht", "noun", "riht", "", "", "", "right as opposed"]) + let v = native_list_append(v, ["regnboga", "noun", "reġnbogan", "reġnbogan", "reġnbogan", "", "rainbow"]) + let v = native_list_append(v, ["hest", "noun", "hest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["finne", "noun", "finne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gutt", "noun", "guttas", "guttes", "gutte", "", "gut entrail"]) + let v = native_list_append(v, ["scop", "noun", "sċopas", "sċopes", "sċope", "", "poet"]) + let v = native_list_append(v, ["eoten", "noun", "eotenas", "eotenes", "eotene", "", "giant monster"]) + let v = native_list_append(v, ["hengest", "noun", "henġestas", "henġestes", "henġeste", "", "stallion"]) + let v = native_list_append(v, ["aþ", "noun", "āþas", "āþes", "āþe", "", "an oath"]) + let v = native_list_append(v, ["eofor", "noun", "eoforas", "eofores", "eofore", "", "boar wild boar"]) + let v = native_list_append(v, ["wines", "noun", "wines", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cruc", "noun", "cruc", "", "", "", "cross"]) + let v = native_list_append(v, ["hos", "noun", "hōsa", "hōse", "hōse", "", "escort company troop"]) + let v = native_list_append(v, ["tollere", "noun", "tolleras", "tolleres", "tollerum", "", "tax collector"]) + let v = native_list_append(v, ["ost", "noun", "ōstas", "ōstes", "ōste", "", "knot in a"]) + let v = native_list_append(v, ["heort", "noun", "heort", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyþ", "noun", "hȳþa", "hȳþe", "hȳþe", "", "a harbour or"]) + let v = native_list_append(v, ["saul", "noun", "saul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ræd", "noun", "rǣdas", "rǣdes", "rǣde", "", "advice"]) + let v = native_list_append(v, ["gedwimor", "noun", "ġedwimor", "ġedwimores", "ġedwimore", "", "illusion"]) + let v = native_list_append(v, ["flagg", "noun", "flagg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lefel", "noun", "lefel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæl", "noun", "salu", "sæles", "sæle", "", "room great hall"]) + let v = native_list_append(v, ["dene", "noun", "dena", "dena", "denum", "", "valley"]) + let v = native_list_append(v, ["Etne", "noun", "Etne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Odda", "noun", "Odda", "Oddan", "Oddan", "", "a male given"]) + let v = native_list_append(v, ["Fræna", "noun", "Fræna", "Frænan", "Frænan", "", "a male given"]) + let v = native_list_append(v, ["medu", "noun", "meda", "meda", "meda", "", "mead"]) + let v = native_list_append(v, ["wæsp", "noun", "wæsp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snaca", "noun", "snacan", "snacan", "snacan", "", "snake"]) + let v = native_list_append(v, ["wulf", "noun", "wulfas", "wulfes", "wulfe", "", "wolf"]) + let v = native_list_append(v, ["ceo", "noun", "ceo", "", "", "", "a chough a"]) + let v = native_list_append(v, ["legere", "noun", "legere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atena", "noun", "atena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["liga", "noun", "liga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Lucas", "noun", "Lucas", "Lūces", "Lūce", "", "Luke the Evangelist"]) + let v = native_list_append(v, ["hof", "noun", "hofu", "hofes", "hofe", "", "court hall"]) + let v = native_list_append(v, ["wolcen", "noun", "wolcnu", "wolcnes", "wolcne", "", "alternative form of"]) + let v = native_list_append(v, ["forca", "noun", "forcan", "forcan", "forcan", "", "fork"]) + let v = native_list_append(v, ["duru", "noun", "dura", "dura", "dura", "", "door"]) + let v = native_list_append(v, ["lyft", "noun", "lyfte", "lyfte", "lyfte", "", "air"]) + let v = native_list_append(v, ["leax", "noun", "leaxas", "leaxes", "leaxe", "", "a salmon"]) + let v = native_list_append(v, ["reced", "noun", "reċedas", "reċedes", "reċede", "", "alternative form of"]) + let v = native_list_append(v, ["þyrs", "noun", "þyrsas", "þyrses", "þyrse", "", "monster demon giant"]) + let v = native_list_append(v, ["dyrne", "noun", "dyrnu", "dyrnes", "dyrnum", "", "alternative form of"]) + let v = native_list_append(v, ["gesceaft", "noun", "ġesċeafte", "ġesċeafte", "ġesċeafte", "", "creation"]) + let v = native_list_append(v, ["geþyld", "noun", "ġeþyldu", "ġeþyldes", "ġeþylde", "", "patience"]) + let v = native_list_append(v, ["gemot", "noun", "ġemōt", "ġemōtes", "ġemōte", "", "meeting encounter assembly"]) + let v = native_list_append(v, ["iwa", "noun", "iwa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ead", "noun", "ēad", "ēades", "ēade", "", "happiness prosperity"]) + let v = native_list_append(v, ["hægtesse", "noun", "hæġtessan", "hæġtessan", "hæġtessan", "", "witch hag Fury"]) + let v = native_list_append(v, ["anhaga", "noun", "ānhagan", "ānhagan", "ānhagan", "", "a recluse a"]) + let v = native_list_append(v, ["palma", "noun", "palma", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buend", "noun", "būend", "būendes", "būende", "", "an inhabitant"]) + let v = native_list_append(v, ["neahbuend", "noun", "neahbuend", "", "", "", "a neighbour"]) + let v = native_list_append(v, ["gebur", "noun", "ġebūras", "ġebūres", "ġebūre", "", "inhabitant farmer husbandman"]) + let v = native_list_append(v, ["neahgebur", "noun", "nēahġebūras", "nēahġebūres", "nēahġebūre", "", "neighbour"]) + let v = native_list_append(v, ["earfeþe", "noun", "earfeþu", "earfeþes", "earfeþum", "", "alternative spelling of"]) + let v = native_list_append(v, ["blotmonaþ", "noun", "blōtmōnaþ", "blōtmōnaþes", "blōtmōnaþ", "", "the eleventh month"]) + let v = native_list_append(v, ["hærfest", "noun", "hærfestas", "hærfestes", "hærfeste", "", "harvest"]) + let v = native_list_append(v, ["hærfestmonaþ", "noun", "hærfestmonaþ", "", "", "", "the ninth month"]) + let v = native_list_append(v, ["haligmonaþ", "noun", "haligmonaþ", "", "", "", "the ninth month"]) + let v = native_list_append(v, ["weod", "noun", "wēod", "wēodes", "wēode", "", "a weed"]) + let v = native_list_append(v, ["weodmonaþ", "noun", "weodmonaþ", "", "", "", "the eighth month"]) + let v = native_list_append(v, ["liþa", "noun", "liþa", "", "", "", "designating the sixth"]) + let v = native_list_append(v, ["ærra liþa", "noun", "ærra liþa", "", "", "", "the sixth month"]) + let v = native_list_append(v, ["æfterra liþa", "noun", "æfterra liþa", "", "", "", "the seventh month"]) + let v = native_list_append(v, ["þrimilce", "noun", "þrimilce", "", "", "", "the fifth month"]) + let v = native_list_append(v, ["hreþ", "noun", "hrēþas", "hrēþes", "hrēþe", "", "glory triumph honour"]) + let v = native_list_append(v, ["hreþmonaþ", "noun", "hrēþmōnþas", "hrēþmōnþes", "hrēþmōnþe", "", "the third month"]) + let v = native_list_append(v, ["geola", "noun", "ġēolan", "ġēolan", "ġēolan", "", "two-month period covering"]) + let v = native_list_append(v, ["eastre", "noun", "ēastran", "ēastran", "ēastran", "", "Easter"]) + let v = native_list_append(v, ["eastermonaþ", "noun", "eastermonaþ", "", "", "", "the fourth month"]) + let v = native_list_append(v, ["winterfylleþ", "noun", "winterfylleþ", "", "", "", "the tenth month"]) + let v = native_list_append(v, ["horses", "noun", "horses", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["goma", "noun", "gōman", "gōman", "gōman", "", "palate the roof"]) + let v = native_list_append(v, ["finc", "noun", "finċas", "finċes", "finċe", "", "a finch"]) + let v = native_list_append(v, ["weall", "noun", "weallas", "wealles", "wealle", "", "wall"]) + let v = native_list_append(v, ["hrof", "noun", "hrōfas", "hrōfes", "hrōfe", "", "roof"]) + let v = native_list_append(v, ["hruse", "noun", "hrusan", "hrusan", "hrusan", "", "the surface of"]) + let v = native_list_append(v, ["cneo", "noun", "cnēo", "cneowes", "cneowe", "", "alternative form of"]) + let v = native_list_append(v, ["geap", "noun", "ġēapa", "ġēape", "ġēape", "", "an expanse room"]) + let v = native_list_append(v, ["dreor", "noun", "drēoras", "drēores", "drēore", "", "gore blood"]) + let v = native_list_append(v, ["hryre", "noun", "hryras", "hryres", "hryrum", "", "a fall or"]) + let v = native_list_append(v, ["milts", "noun", "miltsa", "miltse", "miltse", "", "mercy grace kindness"]) + let v = native_list_append(v, ["uhta", "noun", "ūhtan", "ūhtan", "ūhtan", "", "the last part"]) + let v = native_list_append(v, ["witan", "noun", "witan", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["cearu", "noun", "cearu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dæl", "noun", "dǣlas", "dǣles", "dǣle", "", "part"]) + let v = native_list_append(v, ["faran", "noun", "faran", "", "", "", "inflection of fara"]) + let v = native_list_append(v, ["ger", "noun", "ġēr", "ġēres", "ġēre", "", "alternative form of"]) + let v = native_list_append(v, ["gefera", "noun", "ġefēran", "ġefēran", "ġefēran", "", "companion comrade"]) + let v = native_list_append(v, ["lyt", "noun", "lyt", "", "", "", "little few a"]) + let v = native_list_append(v, ["secg", "noun", "seċġas", "seċġes", "seċġe", "", "man warrior hero"]) + let v = native_list_append(v, ["hrim", "noun", "hrīmas", "hrīmes", "hrīme", "", "frost"]) + let v = native_list_append(v, ["nasu", "noun", "nasa", "nase", "nase", "", "nose"]) + let v = native_list_append(v, ["freond", "noun", "frīend", "frēondes", "frīend", "", "friend"]) + let v = native_list_append(v, ["hæft", "noun", "hæft", "", "", "", "a handle the"]) + let v = native_list_append(v, ["benn", "noun", "benna", "benne", "benne", "", "a wound mortal"]) + let v = native_list_append(v, ["wund", "noun", "wunda", "wunde", "wunde", "", "a wound an"]) + let v = native_list_append(v, ["gemang", "noun", "ġemang", "ġemanges", "ġemange", "", "mixture"]) + let v = native_list_append(v, ["seo", "noun", "sēon", "sēon", "sēon", "", "pupil of the"]) + let v = native_list_append(v, ["cwen", "noun", "cwēne", "cwēne", "cwēne", "", "queen a ruling"]) + let v = native_list_append(v, ["cwene", "noun", "cwenan", "cwenan", "cwenan", "", "woman"]) + let v = native_list_append(v, ["eow", "noun", "ēowas", "ēowes", "ēowe", "", "alternative form of"]) + let v = native_list_append(v, ["Portland", "noun", "Portland", "", "", "", "Portland in Dorset"]) + let v = native_list_append(v, ["feþer", "noun", "feþra", "feþre", "feþre", "", "feather"]) + let v = native_list_append(v, ["fyrd", "noun", "fyrde", "fyrde", "fyrde", "", "alternative form of"]) + let v = native_list_append(v, ["faru", "noun", "fare", "fare", "fare", "", "a journey or"]) + let v = native_list_append(v, ["gemynd", "noun", "ġemynde", "ġemynde", "ġemynde", "", "memory"]) + let v = native_list_append(v, ["gode", "noun", "gode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brod", "noun", "brōda", "brōde", "brōde", "", "brood"]) + let v = native_list_append(v, ["sefa", "noun", "sefan", "sefan", "sefan", "", "spirit heart mind"]) + let v = native_list_append(v, ["genere", "noun", "genere", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["geard", "noun", "ġeardas", "ġeardes", "ġearde", "", "enclosure an enclosed"]) + let v = native_list_append(v, ["middangeard", "noun", "middangeard", "middanġeardes", "middanġearde", "", "the world"]) + let v = native_list_append(v, ["eard", "noun", "earda", "earda", "earda", "", "homeland native soil"]) + let v = native_list_append(v, ["wicce", "noun", "wiċċan", "wiċċan", "wiċċan", "", "witch"]) + let v = native_list_append(v, ["pintel", "noun", "pintlas", "pintles", "pintle", "", "penis"]) + let v = native_list_append(v, ["unrihthæmed", "noun", "unrihthæmed", "", "", "", "adultery"]) + let v = native_list_append(v, ["wudu", "noun", "wuda", "wuda", "wuda", "", "wood"]) + let v = native_list_append(v, ["wuduwasa", "noun", "wuduwasa", "", "", "", "wild man of"]) + let v = native_list_append(v, ["wod", "noun", "wōdas", "wōdes", "wōde", "", "madness"]) + let v = native_list_append(v, ["unriht", "noun", "unriht", "", "", "", "wrong evil injustice"]) + let v = native_list_append(v, ["legerteam", "noun", "legerteam", "", "", "", "sexual intercourse"]) + let v = native_list_append(v, ["hyrst", "noun", "hyrste", "hyrste", "hyrste", "", "hurst hillock eminence"]) + let v = native_list_append(v, ["forn", "noun", "forn", "", "", "", "trout"]) + let v = native_list_append(v, ["mora", "noun", "mora", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["moras", "noun", "moras", "", "", "", "plural of mōr"]) + let v = native_list_append(v, ["stele", "noun", "stele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lind", "noun", "linde", "linde", "linde", "", "lime linden"]) + let v = native_list_append(v, ["bytta", "noun", "bytta", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["grið", "noun", "grið", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hel", "noun", "hela", "hele", "hele", "", "alternative form of"]) + let v = native_list_append(v, ["hlið", "noun", "hlið", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ofn", "noun", "ofnas", "ofnes", "ofne", "", "oven stove"]) + let v = native_list_append(v, ["fregn", "noun", "fregn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spor", "noun", "sporu", "spores", "spore", "", "track trace"]) + let v = native_list_append(v, ["gemana", "noun", "ġemānan", "ġemānan", "ġemānan", "", "intercourse whether social"]) + let v = native_list_append(v, ["wifgemana", "noun", "wifgemana", "", "", "", "sexual intercourse with"]) + let v = native_list_append(v, ["mæghæmed", "noun", "mǣġhǣmdu", "mǣġhǣmdes", "mǣġhǣmde", "", "incest"]) + let v = native_list_append(v, ["sibbleger", "noun", "sibbleġru", "sibbleġres", "sibbleġre", "", "alternative form of"]) + let v = native_list_append(v, ["teors", "noun", "teorsas", "teorses", "teorse", "", "penis"]) + let v = native_list_append(v, ["geardagas", "noun", "ġeārdagas", "ġeārdaga", "ġeārdagum", "", "ancient times days"]) + let v = native_list_append(v, ["hatheort", "noun", "hātheort", "hātheortes", "hātheorte", "", "fury anger wrath"]) + let v = native_list_append(v, ["mece", "noun", "mēċas", "mēċes", "mēċe", "", "poetic alternative form"]) + let v = native_list_append(v, ["mæl", "noun", "mǣl", "mǣles", "mǣle", "", "a measure"]) + let v = native_list_append(v, ["broc", "noun", "brēċ", "brēċ", "brēċ", "", "underpants see brēċ"]) + let v = native_list_append(v, ["gehygd", "noun", "ġehyġde", "ġehyġde", "ġehyġde", "", "thought contemplation intention"]) + let v = native_list_append(v, ["þrag", "noun", "þrāge", "þrāge", "þrāge", "", "time season while"]) + let v = native_list_append(v, ["hriþ", "noun", "hrīþa", "hrīþe", "hrīþe", "", "snowstorm storm tempest"]) + let v = native_list_append(v, ["estas", "noun", "estas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["soler", "noun", "soler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sceat", "noun", "sċēatas", "sċēates", "sċēate", "", "corner angle projection"]) + let v = native_list_append(v, ["nægel", "noun", "nægel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þegen", "noun", "þeġnas", "þeġnes", "þeġne", "", "alternative form of"]) + let v = native_list_append(v, ["oroþ", "noun", "oroþu", "oroþes", "oroþe", "", "breath exhalation"]) + let v = native_list_append(v, ["esta", "noun", "esta", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["esa", "noun", "esa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["drincan", "noun", "drincan", "", "", "", "inflection of drinca"]) + let v = native_list_append(v, ["elch", "noun", "elch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mago", "noun", "mago", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæder", "noun", "fæderas", "fæderes", "fædere", "", "father"]) + let v = native_list_append(v, ["modor", "noun", "mōdra", "mōdor", "mēder", "", "mother"]) + let v = native_list_append(v, ["broþor", "noun", "brōþor", "brōþor", "brēþer", "", "brother"]) + let v = native_list_append(v, ["sweoster", "noun", "sweoster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nefa", "noun", "nefan", "nefan", "nefan", "", "nephew"]) + let v = native_list_append(v, ["eowu", "noun", "eowa", "eowe", "eowe", "", "ewe"]) + let v = native_list_append(v, ["sugu", "noun", "suga", "suge", "suge", "", "sow female pig"]) + let v = native_list_append(v, ["leah", "noun", "lēas", "lēas", "lēa", "", "clearing"]) + let v = native_list_append(v, ["meolc", "noun", "meolce", "meolce", "meolce", "", "milk"]) + let v = native_list_append(v, ["melu", "noun", "melu", "melwes", "melwe", "", "flour"]) + let v = native_list_append(v, ["geoc", "noun", "ġeocu", "ġeoces", "ġeoce", "", "yoke"]) + let v = native_list_append(v, ["bru", "noun", "brūwe", "brūwe", "brūwe", "", "an eyelash"]) + let v = native_list_append(v, ["eare", "noun", "ēaran", "ēaran", "ēaran", "", "ear organ of"]) + let v = native_list_append(v, ["nosu", "noun", "nosa", "nosa", "nosa", "", "nose"]) + let v = native_list_append(v, ["ales", "noun", "ales", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cuma", "noun", "cuman", "cuman", "cuman", "", "guest"]) + let v = native_list_append(v, ["Nazareth", "noun", "Nazareth", "", "", "", "Nazareth an ancient"]) + let v = native_list_append(v, ["wop", "noun", "wōpas", "wōpes", "wōpe", "", "weeping lamentation"]) + let v = native_list_append(v, ["banes", "noun", "banes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fleam", "noun", "flēamas", "flēames", "flēame", "", "escape flight"]) + let v = native_list_append(v, ["ærs", "noun", "ærsas", "ærses", "ærse", "", "alternative form of"]) + let v = native_list_append(v, ["morþor", "noun", "morþru", "morþres", "morþre", "", "murder"]) + let v = native_list_append(v, ["sunne", "noun", "sunnan", "sunnan", "sunnan", "", "sun"]) + let v = native_list_append(v, ["wæter", "noun", "wætru", "wætres", "wætre", "", "water"]) + let v = native_list_append(v, ["þunor", "noun", "þunras", "þunres", "þunre", "", "thunder"]) + let v = native_list_append(v, ["dara", "noun", "dara", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["laþ", "noun", "lāþ", "lāþes", "lāþe", "", "a person or"]) + let v = native_list_append(v, ["hore", "noun", "hōran", "hōran", "hōran", "", "whore prostitute"]) + let v = native_list_append(v, ["syl", "noun", "sȳle", "sȳle", "sȳle", "", "pillar column support"]) + let v = native_list_append(v, ["grap", "noun", "grāpa", "grāpe", "grāpe", "", "grip grasp clutches"]) + let v = native_list_append(v, ["ster", "noun", "ster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spel", "noun", "spella", "spelles", "spelle", "", "alternative form of"]) + let v = native_list_append(v, ["snel", "noun", "snel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mand", "noun", "manda", "mande", "mande", "", "basket"]) + let v = native_list_append(v, ["tote", "noun", "tote", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lus", "noun", "lȳs", "lȳs", "lȳs", "", "louse"]) + let v = native_list_append(v, ["pinne", "noun", "pinnan", "pinnan", "pinnan", "", "bottle flask"]) + let v = native_list_append(v, ["obra", "noun", "obra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["oncer", "noun", "oncer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stores", "noun", "stores", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["runa", "noun", "runa", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["rift", "noun", "rift", "", "", "", "a veil curtain"]) + let v = native_list_append(v, ["manna", "noun", "mannan", "mannan", "mannan", "", "man"]) + let v = native_list_append(v, ["consul", "noun", "consulas", "consules", "consule", "", "Roman consul"]) + let v = native_list_append(v, ["osa", "noun", "osa", "", "", "", "inflection of ōs"]) + let v = native_list_append(v, ["grom", "noun", "grōmas", "grōmes", "grōme", "", "fetus womb-child"]) + let v = native_list_append(v, ["neo", "noun", "nēo", "nēowes", "nēowe", "", "a corpse"]) + let v = native_list_append(v, ["timpanum", "noun", "timpanum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["suga", "noun", "suga", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["hame", "noun", "hame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cal", "noun", "cal", "", "", "", "cabbage kale colewort"]) + let v = native_list_append(v, ["cops", "noun", "cops", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horda", "noun", "horda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["honda", "noun", "honda", "", "", "", "inflection of hond"]) + let v = native_list_append(v, ["ole", "noun", "ole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grasa", "noun", "grasa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mede", "noun", "mede", "", "", "", "inflection of mēd"]) + let v = native_list_append(v, ["byre", "noun", "byras", "byres", "byrum", "", "child son descendant"]) + let v = native_list_append(v, ["rec", "noun", "rēcas", "rēces", "rēce", "", "smoke"]) + let v = native_list_append(v, ["sele", "noun", "selas", "seles", "selum", "", "great hall house"]) + let v = native_list_append(v, ["bure", "noun", "bure", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stela", "noun", "stelan", "stelan", "stelan", "", "stalk of a"]) + let v = native_list_append(v, ["Egypte", "noun", "Egypte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blanca", "noun", "blancan", "blancan", "blancan", "", "white or grey"]) + let v = native_list_append(v, ["credo", "noun", "credo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flota", "noun", "flotan", "flotan", "flotan", "", "sailor shipman"]) + let v = native_list_append(v, ["bec", "noun", "bec", "", "", "", "inflection of bōc"]) + let v = native_list_append(v, ["pistola", "noun", "pistola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hara", "noun", "haran", "haran", "haran", "", "rabbit hare"]) + let v = native_list_append(v, ["hind", "noun", "hinde", "hinde", "hinde", "", "hind doe"]) + let v = native_list_append(v, ["Bret", "noun", "Brettas", "Brettes", "Brette", "", "alternative form of"]) + let v = native_list_append(v, ["fugle", "noun", "fugle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ambra", "noun", "ambra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lin", "noun", "lin", "", "", "", "linen flax"]) + let v = native_list_append(v, ["lifer", "noun", "lifra", "lifre", "lifre", "", "liver interior organ"]) + let v = native_list_append(v, ["æþeling", "noun", "æþelingas", "æþelinges", "æþelinge", "", "prince"]) + let v = native_list_append(v, ["wedd", "noun", "wedda", "weddes", "wedde", "", "pledge contract"]) + let v = native_list_append(v, ["fura", "noun", "fura", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fera", "noun", "fēran", "fēran", "fēran", "", "companion associate"]) + let v = native_list_append(v, ["rima", "noun", "riman", "riman", "riman", "", "edge rim border"]) + let v = native_list_append(v, ["lan", "noun", "lan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sula", "noun", "sula", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["cropp", "noun", "croppas", "croppes", "croppe", "", "the crop of"]) + let v = native_list_append(v, ["þeaw", "noun", "þēawas", "þēawes", "þēawe", "", "habit custom"]) + let v = native_list_append(v, ["þol", "noun", "þolas", "", "", "", "thole rowlock"]) + let v = native_list_append(v, ["hammas", "noun", "hammas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["garas", "noun", "garas", "", "", "", "plural of gār"]) + let v = native_list_append(v, ["færa", "noun", "færa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["deh", "noun", "dēga", "dēge", "dēge", "", "alternative form of"]) + let v = native_list_append(v, ["hanga", "noun", "hang", "hanges", "hange", "", "hanger implement or"]) + let v = native_list_append(v, ["rica", "noun", "rica", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hata", "noun", "hatan", "hatan", "hatan", "", "a hater"]) + let v = native_list_append(v, ["magas", "noun", "magas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["stund", "noun", "stunda", "stunde", "stunde", "", "time while"]) + let v = native_list_append(v, ["gemet", "noun", "ġemetu", "ġemetes", "ġemete", "", "measure"]) + let v = native_list_append(v, ["loca", "noun", "locan", "locan", "locan", "", "locked enclosure"]) + let v = native_list_append(v, ["siga", "noun", "siga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mera", "noun", "mera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["landa", "noun", "landa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lusta", "noun", "lusta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Nathan", "noun", "Nathan", "", "", "", "Nathan son of"]) + let v = native_list_append(v, ["sido", "noun", "sido", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["binn", "noun", "binna", "binne", "binne", "", "stall"]) + let v = native_list_append(v, ["wasend", "noun", "wasend", "", "", "", "the throat or"]) + let v = native_list_append(v, ["wiþþe", "noun", "wiþþan", "wiþþan", "wiþþan", "", "tie band"]) + let v = native_list_append(v, ["gealga", "noun", "ġealgan", "ġealgan", "ġealgan", "", "gallows a gibbet"]) + let v = native_list_append(v, ["mur", "noun", "mūran", "mūran", "mūran", "", "a wall"]) + let v = native_list_append(v, ["hode", "noun", "hode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["regnum", "noun", "regnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lic", "noun", "līc", "līċes", "līċe", "", "dead body corpse"]) + let v = native_list_append(v, ["molde", "noun", "moldan", "moldan", "moldan", "", "earth soil"]) + let v = native_list_append(v, ["sagu", "noun", "sage", "sage", "sage", "", "statement discourse report"]) + let v = native_list_append(v, ["sare", "noun", "sare", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gimm", "noun", "ġimmas", "ġimmes", "ġimme", "", "gem jewel"]) + let v = native_list_append(v, ["gimmwyrhta", "noun", "gimmwyrhta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meregrot", "noun", "meregrotu", "meregrotes", "meregrote", "", "a pearl"]) + let v = native_list_append(v, ["clifstan", "noun", "clifstan", "", "", "", "rock"]) + let v = native_list_append(v, ["clif", "noun", "clifu", "clifes", "clife", "", "a cliff a"]) + let v = native_list_append(v, ["Iringes weg", "noun", "Iringes weg", "", "", "", "the Milky Way"]) + let v = native_list_append(v, ["eoforþring", "noun", "eoforþring", "", "", "", "the constellation of"]) + let v = native_list_append(v, ["delu", "noun", "dela", "dele", "dele", "", "nipple"]) + let v = native_list_append(v, ["dæges eage", "noun", "dæġes ēagan", "dæġes ēagan", "dæġes ēagan", "", "daisy"]) + let v = native_list_append(v, ["dæges", "noun", "dæges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["forligerhus", "noun", "forliġerhūs", "forliġerhūses", "forliġerhūse", "", "a brothel"]) + let v = native_list_append(v, ["fatum", "noun", "fatum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["galga", "noun", "galgan", "galgan", "galgan", "", "alternative form of"]) + let v = native_list_append(v, ["hospes", "noun", "hospes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["agen nama", "noun", "āgen naman", "āgen naman", "āgen naman", "", "a proper noun"]) + let v = native_list_append(v, ["binama", "noun", "bīnaman", "bīnaman", "bīnaman", "", "pronoun"]) + let v = native_list_append(v, ["biword", "noun", "bīword", "bīwordes", "bīworde", "", "an adverb"]) + let v = native_list_append(v, ["witena gemot", "noun", "witena gemot", "", "", "", "parliament assembly of"]) + let v = native_list_append(v, ["wita", "noun", "witan", "witan", "witan", "", "wise person especially"]) + let v = native_list_append(v, ["witena", "noun", "witena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wæn", "noun", "wǣnas", "wǣnes", "wǣne", "", "alternative form of"]) + let v = native_list_append(v, ["carles", "noun", "carles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sar", "noun", "sār", "sāres", "sāre", "", "pain"]) + let v = native_list_append(v, ["bryd", "noun", "brȳde", "brȳde", "brȳde", "", "bride"]) + let v = native_list_append(v, ["wearte", "noun", "weartan", "weartan", "weartan", "", "wart"]) + let v = native_list_append(v, ["geac", "noun", "ġēacas", "ġēaces", "ġēace", "", "cuckoo"]) + let v = native_list_append(v, ["geaces", "noun", "geaces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["geaces sure", "noun", "geaces sure", "", "", "", "wood sorrel"]) + let v = native_list_append(v, ["garleac", "noun", "gārlēac", "gārlēaces", "gārlēace", "", "garlic"]) + let v = native_list_append(v, ["leac", "noun", "lēac", "lēaces", "lēace", "", "An allium a"]) + let v = native_list_append(v, ["pisum", "noun", "pisum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gor", "noun", "gor", "gores", "gore", "", "dirt dung feces"]) + let v = native_list_append(v, ["feter", "noun", "fetera", "fetere", "fetere", "", "fetter"]) + let v = native_list_append(v, ["wæt", "noun", "wæt", "", "", "", "a drink a"]) + let v = native_list_append(v, ["cen", "noun", "ċēnas", "ċēnes", "ċēne", "", "torch"]) + let v = native_list_append(v, ["docga", "noun", "docgan", "docgan", "docgan", "", "a powerful kind"]) + let v = native_list_append(v, ["hryþþa", "noun", "ryþþan", "ryþþan", "ryþþan", "", "mastiff large dog"]) + let v = native_list_append(v, ["seax", "noun", "seaxa", "seaxes", "seaxe", "", "knife"]) + let v = native_list_append(v, ["ofermod", "noun", "ofermod", "ofermōdes", "ofermōde", "", "pride"]) + let v = native_list_append(v, ["boia", "noun", "bōian", "bōian", "bōian", "", "younger brother"]) + let v = native_list_append(v, ["wæpengetæc", "noun", "wæpengetæc", "", "", "", "a vote made"]) + let v = native_list_append(v, ["roþhund", "noun", "roþhundas", "roþhundes", "roþhunde", "", "mastiff"]) + let v = native_list_append(v, ["ærra geola", "noun", "ærra geola", "", "", "", "the twelfth month"]) + let v = native_list_append(v, ["æfterra geola", "noun", "æfterra geola", "", "", "", "the first month"]) + let v = native_list_append(v, ["solmonaþ", "noun", "solmonaþ", "", "", "", "the second month"]) + let v = native_list_append(v, ["cycen", "noun", "cycen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["middel", "noun", "middel", "", "", "", "middle center"]) + let v = native_list_append(v, ["ræt", "noun", "ræt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tinda", "noun", "tinda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mear", "noun", "mear", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sunnandæg", "noun", "sunnandagas", "sunnandæġes", "sunnandæġe", "", "Sunday"]) + let v = native_list_append(v, ["cappa", "noun", "cappan", "cappan", "cappan", "", "a long tunic"]) + let v = native_list_append(v, ["leodum", "noun", "leodum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["weder", "noun", "wedru", "wedres", "wedre", "", "weather"]) + let v = native_list_append(v, ["oga", "noun", "ōgan", "ōgan", "ōgan", "", "horror or terror"]) + let v = native_list_append(v, ["basu", "noun", "basa", "base", "base", "", "purple"]) + let v = native_list_append(v, ["feo", "noun", "feo", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sien", "noun", "sīene", "sīene", "sīene", "", "power of sight"]) + let v = native_list_append(v, ["ieg", "noun", "īeġa", "īeġe", "īeġe", "", "island"]) + let v = native_list_append(v, ["yppe", "noun", "yppan", "yppan", "yppan", "", "platform dais upland"]) + let v = native_list_append(v, ["tur", "noun", "tūras", "tūres", "tūre", "", "tower"]) + let v = native_list_append(v, ["giedd", "noun", "ġiedd", "ġieddes", "ġiedde", "", "story tale song"]) + let v = native_list_append(v, ["wræc", "noun", "wracu", "wræces", "wræce", "", "exile state of"]) + let v = native_list_append(v, ["uhtcearu", "noun", "uhtcearu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lif", "noun", "līf", "līfes", "līfe", "", "life"]) + let v = native_list_append(v, ["tind", "noun", "tindas", "tindes", "tinde", "", "a point or"]) + let v = native_list_append(v, ["serce", "noun", "serce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winda", "noun", "winda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stal", "noun", "stalu", "stales", "stale", "", "alternative form of"]) + let v = native_list_append(v, ["hyge", "noun", "hyge", "hyġes", "hyġe", "", "thought mind mood"]) + let v = native_list_append(v, ["denu", "noun", "dena", "dene", "dene", "", "alternative form of"]) + let v = native_list_append(v, ["gefea", "noun", "ġefēan", "ġefēan", "ġefēan", "", "joy"]) + let v = native_list_append(v, ["frymþ", "noun", "frymþa", "", "", "", "beginning origin"]) + let v = native_list_append(v, ["frymþu", "noun", "frymþa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wucu", "noun", "wucan", "wucan", "wucan", "", "alternative form of"]) + let v = native_list_append(v, ["wice", "noun", "wican", "wican", "wican", "", "week"]) + let v = native_list_append(v, ["punda", "noun", "punda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bebod", "noun", "bebodu", "bebodes", "bebode", "", "order mandate command"]) + let v = native_list_append(v, ["giest", "noun", "ġiestas", "ġiestes", "ġieste", "", "stranger"]) + let v = native_list_append(v, ["muha", "noun", "muha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["finnas", "noun", "finnas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["lim", "noun", "limu", "limes", "lime", "", "limb bodily member"]) + let v = native_list_append(v, ["Dene", "noun", "Dena", "", "Denum", "", "Danes"]) + let v = native_list_append(v, ["þeodcyning", "noun", "þēodcyningas", "þēodcyninges", "þēodcyninge", "", "great king monarch"]) + let v = native_list_append(v, ["þrymm", "noun", "þrymmas", "þrymmes", "þrymme", "", "host army"]) + let v = native_list_append(v, ["þrym", "noun", "þrymas", "þrymes", "þryme", "", "alternative spelling of"]) + let v = native_list_append(v, ["þreat", "noun", "þrēatas", "þrēates", "þrēate", "", "crowd swarm throng"]) + let v = native_list_append(v, ["medusetl", "noun", "medusetlu", "medusetles", "medusetle", "", "mead-seat mead-bench"]) + let v = native_list_append(v, ["tires", "noun", "tires", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["slep", "noun", "slēpas", "slēpes", "slēpe", "", "alternative form of"]) + let v = native_list_append(v, ["hra", "noun", "hra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cio", "noun", "cio", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frofor", "noun", "frōfra", "frōfre", "frōfre", "", "comfort consolation"]) + let v = native_list_append(v, ["druh", "noun", "druhas", "druhes", "druhe", "", "dust"]) + let v = native_list_append(v, ["tih", "noun", "tih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hranrad", "noun", "hranrāda", "hranrāde", "hranrāde", "", "ocean"]) + let v = native_list_append(v, ["gombe", "noun", "gomban", "gomban", "gomban", "", "tribute"]) + let v = native_list_append(v, ["eafora", "noun", "eaforan", "eaforan", "eaforan", "", "son scion descendant"]) + let v = native_list_append(v, ["alu", "noun", "aloþ", "aloþ", "aloþ", "", "alternative form of"]) + let v = native_list_append(v, ["wuldor", "noun", "wuldru", "wuldres", "wuldre", "", "glory"]) + let v = native_list_append(v, ["bearm", "noun", "bearmas", "bearmes", "bearme", "", "bosom lap"]) + let v = native_list_append(v, ["hulu", "noun", "hula", "hule", "hule", "", "hull husk"]) + let v = native_list_append(v, ["torre", "noun", "torre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["seolh", "noun", "sēolas", "sēoles", "sēole", "", "seal animal"]) + let v = native_list_append(v, ["walu", "noun", "wala", "wale", "wale", "", "a mark caused"]) + let v = native_list_append(v, ["waru", "noun", "wara", "ware", "ware", "", "an article of"]) + let v = native_list_append(v, ["lofdæd", "noun", "lofdǣda", "lofdǣde", "lofdǣde", "", "praiseworthy deed"]) + let v = native_list_append(v, ["lof", "noun", "lofu", "lofes", "lofe", "", "praise"]) + let v = native_list_append(v, ["gesceaphwil", "noun", "ġesċeaphwīla", "ġesċeaphwīle", "ġesċeaphwīle", "", "the fated moment"]) + let v = native_list_append(v, ["frea", "noun", "frēan", "frēan", "frēan", "", "lord king"]) + let v = native_list_append(v, ["faroþ", "noun", "faroþas", "faroþes", "faroþe", "", "tide current"]) + let v = native_list_append(v, ["leof", "noun", "lēofas", "lēofes", "lēofe", "", "friend loved one"]) + let v = native_list_append(v, ["burna", "noun", "burnan", "burnan", "burnan", "", "stream"]) + let v = native_list_append(v, ["feorweg", "noun", "feorwegas", "feorweġes", "feorweġe", "", "a way or"]) + let v = native_list_append(v, ["frætwe", "noun", "frætwa", "frætwa", "frætwum", "", "treasures ornaments"]) + let v = native_list_append(v, ["lor", "noun", "lor", "lores", "lore", "", "loss destruction"]) + let v = native_list_append(v, ["mula", "noun", "mula", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gesweostor", "noun", "ġesweostor", "", "", "", "sisters used as"]) + let v = native_list_append(v, ["sweostor", "noun", "ġesweostor", "ġesweostra", "ġesweostrum", "", "sister"]) + let v = native_list_append(v, ["papan", "noun", "papan", "", "", "", "inflection of pāpa"]) + let v = native_list_append(v, ["pada", "noun", "pādan", "pādan", "pādan", "", "outergarment mantle cloak"]) + let v = native_list_append(v, ["bigas", "noun", "bigas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["pusa", "noun", "pusan", "pusan", "pusan", "", "purse bag scrip"]) + let v = native_list_append(v, ["teon", "noun", "teon", "", "", "", "damage hurt vexation"]) + let v = native_list_append(v, ["hlæst", "noun", "hlæsta", "hlæstes", "hlæste", "", "load freight cargo"]) + let v = native_list_append(v, ["gefræge", "noun", "ġefrǣġu", "ġefrǣġes", "ġefrǣġe", "", "inquiry a knowledge"]) + let v = native_list_append(v, ["stanas", "noun", "stanas", "", "", "", "plural of stān"]) + let v = native_list_append(v, ["lym", "noun", "lym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mistel", "noun", "mistel", "", "", "", "mistletoe"]) + let v = native_list_append(v, ["witt", "noun", "witta", "wittes", "witte", "", "mind understanding sense"]) + let v = native_list_append(v, ["eades", "noun", "eades", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["æmette", "noun", "ǣmettan", "ǣmettan", "ǣmettan", "", "alternative form of"]) + let v = native_list_append(v, ["beomodor", "noun", "bēomōdra", "bēomōdor", "bēomēder", "", "queen bee"]) + let v = native_list_append(v, ["beowyrt", "noun", "bēowyrte", "bēowyrte", "bēowyrte", "", "sweet flag Acorus"]) + let v = native_list_append(v, ["beoceorl", "noun", "bēoċeorlas", "bēoċeorles", "bēoċeorle", "", "beekeeper"]) + let v = native_list_append(v, ["imbe", "noun", "imbe", "", "", "", "swarm of bees"]) + let v = native_list_append(v, ["dran", "noun", "drāna", "drāne", "drāne", "", "male bee drone"]) + let v = native_list_append(v, ["mules", "noun", "mules", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["setl", "noun", "setlu", "setles", "setle", "", "sitting residence"]) + let v = native_list_append(v, ["gare", "noun", "gare", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["werod", "noun", "weroda", "werodes", "werode", "", "troop company army"]) + let v = native_list_append(v, ["ræswa", "noun", "rǣswan", "rǣswan", "rǣswan", "", "counsellor"]) + let v = native_list_append(v, ["gebedda", "noun", "ġebeddan", "ġebeddan", "ġebeddan", "", "someone who lies"]) + let v = native_list_append(v, ["bedd", "noun", "bedda", "beddes", "bedde", "", "bed"]) + let v = native_list_append(v, ["holen", "noun", "holnas", "holnes", "holne", "", "holly"]) + let v = native_list_append(v, ["weorþ", "noun", "weorþa", "weorþes", "weorþe", "", "worth price value"]) + let v = native_list_append(v, ["weorþmynd", "noun", "weorþmynd", "", "", "", "worldly honour glory"]) + let v = native_list_append(v, ["winemæg", "noun", "winemāgas", "winemǣġes", "winemǣġe", "", "kinsman"]) + let v = native_list_append(v, ["ærn", "noun", "ærnu", "ærnes", "ærne", "", "house habitation"]) + let v = native_list_append(v, ["feorh", "noun", "fēora", "fēores", "fēore", "", "life one whose"]) + let v = native_list_append(v, ["folcstede", "noun", "folcstedas", "folcstedes", "folcstedum", "", "public place meeting-place"]) + let v = native_list_append(v, ["heahweg", "noun", "hēahwegas", "hēahweġes", "hēahweġe", "", "main road road"]) + let v = native_list_append(v, ["beot", "noun", "bēot", "bēotes", "bēote", "", "promise vow boast"]) + let v = native_list_append(v, ["sinc", "noun", "sinca", "sinces", "since", "", "treasure"]) + let v = native_list_append(v, ["heorot", "noun", "heortas", "heortes", "heorte", "", "deer"]) + let v = native_list_append(v, ["aþum", "noun", "āþmas", "āþmes", "āþme", "", "son-in-law"]) + let v = native_list_append(v, ["sweor", "noun", "swēoras", "swēores", "swēore", "", "father-in-law"]) + let v = native_list_append(v, ["fas", "noun", "fas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angles", "noun", "angles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mecefisc", "noun", "mēċefiscas", "mēċefisċes", "mēċefisċe", "", "alternative form of"]) + let v = native_list_append(v, ["modes", "noun", "modes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["decane", "noun", "decane", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["blæge", "noun", "blǣġan", "blǣġan", "blǣġan", "", "gudgeon bleak fish"]) + let v = native_list_append(v, ["idles", "noun", "idles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["aga", "noun", "āgan", "āgan", "āgan", "", "owner possessor"]) + let v = native_list_append(v, ["hragra", "noun", "hrāgran", "hrāgran", "hrāgran", "", "heron"]) + let v = native_list_append(v, ["wælniþ", "noun", "wælnīþas", "wælnīþes", "wælnīþe", "", "deadly hatred violence"]) + let v = native_list_append(v, ["pending", "noun", "pending", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bece", "noun", "bēċan", "bēċan", "bēċan", "", "beech"]) + let v = native_list_append(v, ["snoru", "noun", "snora", "snore", "snore", "", "daughter-in-law"]) + let v = native_list_append(v, ["earfoþe", "noun", "earfoþu", "earfoþes", "earfoþum", "", "work labour"]) + let v = native_list_append(v, ["dogor", "noun", "dōgoras", "dōgores", "dōgore", "", "day"]) + let v = native_list_append(v, ["fruma", "noun", "fruman", "fruman", "fruman", "", "beginning origin"]) + let v = native_list_append(v, ["frumsceaft", "noun", "frumsċeaftu", "", "", "", "creation abstract concept"]) + let v = native_list_append(v, ["sceaft", "noun", "sċeaftas", "sċeaftes", "sċeafte", "", "shaft of an"]) + let v = native_list_append(v, ["firas", "noun", "fīras", "fīra", "fīrum", "", "men humans"]) + let v = native_list_append(v, ["wlite", "noun", "wlitas", "wlites", "wlitum", "", "looks appearance aspect"]) + let v = native_list_append(v, ["wong", "noun", "wongas", "wonges", "wonge", "", "alternative spelling of"]) + let v = native_list_append(v, ["lega", "noun", "lega", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["miere", "noun", "mīeran", "mīeran", "mīeran", "", "mare female horse"]) + let v = native_list_append(v, ["tunas", "noun", "tunas", "", "", "", "plural of tūn"]) + let v = native_list_append(v, ["swines", "noun", "swines", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tines", "noun", "tines", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["seles", "noun", "seles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sige", "noun", "siġas", "siġes", "siġe", "", "victory"]) + let v = native_list_append(v, ["leoma", "noun", "lēoman", "lēoman", "lēoman", "", "radiance light ray"]) + let v = native_list_append(v, ["landbuend", "noun", "landbūend", "landbūendes", "landbūende", "", "inhabitant native"]) + let v = native_list_append(v, ["folde", "noun", "foldan", "foldan", "foldan", "", "land earth ground"]) + let v = native_list_append(v, ["sceatt", "noun", "sċeattas", "sċeattes", "sċeatte", "", "treasure money wealth"]) + let v = native_list_append(v, ["spices", "noun", "spices", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cere", "noun", "ceras", "ceres", "cerum", "", "vessel-maker"]) + let v = native_list_append(v, ["cynn", "noun", "cynna", "cynnes", "cynne", "", "kind"]) + let v = native_list_append(v, ["dryht", "noun", "dryhte", "dryhte", "dryhte", "", "troop army"]) + let v = native_list_append(v, ["dryhtguma", "noun", "dryhtguman", "", "", "", "warrior retainer"]) + let v = native_list_append(v, ["weras", "noun", "weras", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["menn", "noun", "menn", "", "", "", "inflection of mann"]) + let v = native_list_append(v, ["ceas", "noun", "ċēasa", "ċēase", "ċēase", "", "dispute quarrel"]) + let v = native_list_append(v, ["morberige", "noun", "mōrberiġan", "mōrberiġan", "mōrberiġan", "", "alternative form of"]) + let v = native_list_append(v, ["firen", "noun", "firena", "firene", "firene", "", "crime"]) + let v = native_list_append(v, ["suna", "noun", "suna", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mære", "noun", "mǣru", "mǣres", "mǣre", "", "boundary border"]) + let v = native_list_append(v, ["fæsten", "noun", "fæstenu", "fæstenes", "fæstene", "", "fortified place stronghold"]) + let v = native_list_append(v, ["fifel", "noun", "fīfelas", "fīfeles", "fīfele", "", "monster giant"]) + let v = native_list_append(v, ["fifelcynn", "noun", "fifelcynn", "fīfelcynnes", "fīfelcynne", "", "monsterkind the race"]) + let v = native_list_append(v, ["fæhþ", "noun", "fæhþ", "", "", "", "enmity hostility feud"]) + let v = native_list_append(v, ["Norþweg", "noun", "Norþwegas", "Norþweġes", "Norþweġe", "", "Norway a country"]) + let v = native_list_append(v, ["drench", "noun", "drench", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tunes", "noun", "tunes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["beorþegu", "noun", "beorþegu", "", "", "", "beer-drinking"]) + let v = native_list_append(v, ["gedryht", "noun", "ġedryhte", "ġedryhte", "ġedryhte", "", "troop body of"]) + let v = native_list_append(v, ["sorh", "noun", "sorga", "sorġe", "sorġe", "", "alternative form of"]) + let v = native_list_append(v, ["morþ", "noun", "morþa", "morþes", "morþe", "", "murder"]) + let v = native_list_append(v, ["camb", "noun", "cambas", "cambes", "cambe", "", "comb"]) + let v = native_list_append(v, ["helle", "noun", "helle", "", "", "", "inflection of hell"]) + let v = native_list_append(v, ["nafu", "noun", "nafa", "nafe", "nafe", "", "nave of wheel"]) + let v = native_list_append(v, ["nafela", "noun", "nafela", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bolla", "noun", "bollan", "bollan", "bollan", "", "bowl"]) + let v = native_list_append(v, ["hweol", "noun", "hwēol", "hwēoles", "hwēole", "", "wheel"]) + let v = native_list_append(v, ["snaw", "noun", "snāwas", "snāwes", "snāwe", "", "snow"]) + let v = native_list_append(v, ["deaþ", "noun", "dēaþas", "dēaþes", "dēaþe", "", "death"]) + let v = native_list_append(v, ["dema", "noun", "dēman", "dēman", "dēman", "", "judge"]) + let v = native_list_append(v, ["beon", "noun", "beon", "", "", "", "inflection of bēo"]) + let v = native_list_append(v, ["eorþe", "noun", "eorþan", "eorþan", "eorþan", "", "ground"]) + let v = native_list_append(v, ["flæsc", "noun", "flǣsċ", "flǣsċes", "flǣsċe", "", "flesh"]) + let v = native_list_append(v, ["forliger", "noun", "forliġeru", "forliġeres", "forliġere", "", "adultery fornication"]) + let v = native_list_append(v, ["fryhtu", "noun", "fryhtu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyrhtu", "noun", "fyrhte", "fyrhte", "fyrhte", "", "fright"]) + let v = native_list_append(v, ["gearn", "noun", "ġearn", "ġearnes", "ġearne", "", "yarn"]) + let v = native_list_append(v, ["glæm", "noun", "glǣmas", "glǣmes", "glǣme", "", "gleam splendor radiance"]) + let v = native_list_append(v, ["glæs", "noun", "glasu", "glæses", "glæse", "", "glass"]) + let v = native_list_append(v, ["godspel", "noun", "godspella", "godspelles", "godspelle", "", "alternative form of"]) + let v = native_list_append(v, ["geatwa", "noun", "ġeatwa", "ġeatwa", "ġeatwum", "", "equipment"]) + let v = native_list_append(v, ["hig", "noun", "hig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cedra", "noun", "cedra", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["sigil", "noun", "siġil", "siġles", "siġle", "", "alternative form of"]) + let v = native_list_append(v, ["geoguþ", "noun", "ġeoguþa", "ġeoguþe", "ġeoguþe", "", "youth quality or"]) + let v = native_list_append(v, ["lyb", "noun", "lyb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæte", "noun", "hæte", "hǣtan", "hǣtan", "", "alternative form of"]) + let v = native_list_append(v, ["hæþ", "noun", "hǣþ", "hǣþes", "hǣþe", "", "wasteland wilderness heath"]) + let v = native_list_append(v, ["hæþen", "noun", "hæþnas", "hæþnes", "hæþne", "", "alternative form of"]) + let v = native_list_append(v, ["muþ", "noun", "mūþas", "mūþes", "mūþe", "", "mouth"]) + let v = native_list_append(v, ["sibb", "noun", "sibba", "sibbe", "sibbe", "", "relationship"]) + let v = native_list_append(v, ["seolfor", "noun", "seolfra", "seolfres", "seolfre", "", "silver"]) + let v = native_list_append(v, ["heofon", "noun", "heofonas", "heofones", "heofone", "", "sky"]) + let v = native_list_append(v, ["cruse", "noun", "crūsan", "crūsan", "crūsan", "", "earthen pot jug"]) + let v = native_list_append(v, ["Bethleem", "noun", "Bethleem", "", "", "", "Bethlehem a city"]) + let v = native_list_append(v, ["talu", "noun", "tala", "tale", "tale", "", "account reckoning"]) + let v = native_list_append(v, ["synn", "noun", "synna", "synne", "synne", "", "misdeed fault crime"]) + let v = native_list_append(v, ["werg", "noun", "wergas", "werges", "werge", "", "alternative form of"]) + let v = native_list_append(v, ["wiht", "noun", "wihte", "wihte", "wihte", "", "thing"]) + let v = native_list_append(v, ["niþ", "noun", "nīþas", "nīþes", "nīþe", "", "envy jealousy"]) + let v = native_list_append(v, ["wæpen", "noun", "wǣpnu", "wǣpnes", "wǣpne", "", "alternative form of"]) + let v = native_list_append(v, ["þeod", "noun", "þēoda", "þēode", "þēode", "", "nation people"]) + let v = native_list_append(v, ["þurst", "noun", "þurstas", "þurstes", "þurste", "", "thirst"]) + let v = native_list_append(v, ["þistel", "noun", "þistlas", "þistles", "þistle", "", "thistle"]) + let v = native_list_append(v, ["þeof", "noun", "þēofas", "þēofes", "þēofe", "", "thief"]) + let v = native_list_append(v, ["baþu", "noun", "baþu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bælg", "noun", "bælg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bæc", "noun", "bacu", "bæces", "bæce", "", "back"]) + let v = native_list_append(v, ["arwe", "noun", "arwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nearu", "noun", "nearwa", "nearwe", "nearwe", "", "narrowness"]) + let v = native_list_append(v, ["scamu", "noun", "sċama", "sċame", "sċame", "", "shame embarrassment"]) + let v = native_list_append(v, ["scield", "noun", "sċielda", "sċielda", "sċielda", "", "shield"]) + let v = native_list_append(v, ["andswaru", "noun", "andswara", "andsware", "andsware", "", "answer"]) + let v = native_list_append(v, ["efen", "noun", "ēfennas", "ēfennes", "ēfenne", "", "alternative form of"]) + let v = native_list_append(v, ["ende", "noun", "endas", "endes", "endum", "", "end"]) + let v = native_list_append(v, ["ærende", "noun", "ǣrendu", "ǣrendes", "ǣrende", "", "message"]) + let v = native_list_append(v, ["æt", "noun", "æt", "", "", "", "eating"]) + let v = native_list_append(v, ["ceorl", "noun", "ċeorlas", "ċeorles", "ċeorle", "", "a churl a"]) + let v = native_list_append(v, ["beod", "noun", "bēodas", "bēodes", "bēode", "", "table"]) + let v = native_list_append(v, ["bisceop", "noun", "bisċeopas", "bisċeopes", "bisċeope", "", "alternative form of"]) + let v = native_list_append(v, ["bletsung", "noun", "blētsunga", "blētsunge", "blētsunge", "", "blessing"]) + let v = native_list_append(v, ["bodig", "noun", "bodiġ", "bodiġes", "bodiġe", "", "stature"]) + let v = native_list_append(v, ["botm", "noun", "botmas", "botmes", "botme", "", "bottom foundation"]) + let v = native_list_append(v, ["breost", "noun", "brēost", "brēostes", "brēoste", "", "chest"]) + let v = native_list_append(v, ["bridel", "noun", "brīdlas", "brīdles", "brīdle", "", "bridle"]) + let v = native_list_append(v, ["brycg", "noun", "bryċġa", "bryċġe", "bryċġe", "", "bridge"]) + let v = native_list_append(v, ["butere", "noun", "buteran", "buteran", "buteran", "", "butter"]) + let v = native_list_append(v, ["byrþen", "noun", "byrþenna", "byrþenne", "byrþenne", "", "burden"]) + let v = native_list_append(v, ["candel", "noun", "candela", "candele", "candele", "", "candle"]) + let v = native_list_append(v, ["cese", "noun", "ċēsas", "ċēses", "ċēse", "", "alternative form of"]) + let v = native_list_append(v, ["ceace", "noun", "ċēacan", "ċēacan", "ċēacan", "", "jaw jawbone"]) + let v = native_list_append(v, ["cealf", "noun", "ċealfru", "ċealfes", "ċealfe", "", "calf young cow"]) + let v = native_list_append(v, ["ceap", "noun", "cēapas", "cēapes", "cēape", "", "cattle any commodity"]) + let v = native_list_append(v, ["cene", "noun", "cene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cinn", "noun", "ċinn", "ċinnes", "ċinne", "", "chin"]) + let v = native_list_append(v, ["cirice", "noun", "ċiriċan", "ċiriċan", "ċiriċan", "", "church"]) + let v = native_list_append(v, ["cofa", "noun", "cofan", "cofan", "cofan", "", "chamber"]) + let v = native_list_append(v, ["cradol", "noun", "cradolas", "cradoles", "cradole", "", "cradle"]) + let v = native_list_append(v, ["cest", "noun", "ċesta", "ċeste", "ċeste", "", "alternative form of"]) + let v = native_list_append(v, ["cocc", "noun", "coccas", "cocces", "cocce", "", "cock a male"]) + let v = native_list_append(v, ["cele", "noun", "ċelas", "ċeles", "ċele", "", "alternative form of"]) + let v = native_list_append(v, ["cweorn", "noun", "cweorna", "cweorne", "cweorne", "", "quern"]) + let v = native_list_append(v, ["cynd", "noun", "cynde", "cynde", "cynde", "", "that which is"]) + let v = native_list_append(v, ["ciern", "noun", "ċierna", "ċierne", "ċierne", "", "churn"]) + let v = native_list_append(v, ["ded", "noun", "dēde", "dēde", "dēde", "", "alternative form of"]) + let v = native_list_append(v, ["deofol", "noun", "deofol", "", "", "", "the Devil Satan"]) + let v = native_list_append(v, ["wawa", "noun", "wāwan", "wāwan", "wāwan", "", "alternative form of"]) + let v = native_list_append(v, ["dic", "noun", "dīċas", "dīċes", "dīċe", "", "ditch trench dike"]) + let v = native_list_append(v, ["diacon", "noun", "diāconas", "diācones", "diācone", "", "deacon"]) + let v = native_list_append(v, ["drenc", "noun", "drenċas", "drenċes", "drenċe", "", "drink"]) + let v = native_list_append(v, ["dropa", "noun", "dropan", "dropan", "dropan", "", "drop"]) + let v = native_list_append(v, ["drugaþ", "noun", "drūgaþa", "drūgaþe", "drūgaþe", "", "dryness"]) + let v = native_list_append(v, ["dynt", "noun", "dyntas", "dyntes", "dynte", "", "blow strike"]) + let v = native_list_append(v, ["dysig", "noun", "dysiġ", "dysiġes", "dysiġe", "", "an error folly"]) + let v = native_list_append(v, ["eaca", "noun", "ēacan", "ēacan", "ēacan", "", "addition increase supplement"]) + let v = native_list_append(v, ["igland", "noun", "igland", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eln", "noun", "elna", "elne", "elne", "", "ell cubit"]) + let v = native_list_append(v, ["elnboga", "noun", "elnbogan", "elnbogan", "elnbogan", "", "elbow"]) + let v = native_list_append(v, ["eornost", "noun", "eornost", "", "", "", "earnestness"]) + let v = native_list_append(v, ["fæger", "noun", "fæġer", "fæġeres", "fæġere", "", "beauty"]) + let v = native_list_append(v, ["fæt", "noun", "fatu", "fætes", "fæte", "", "container vessel especially"]) + let v = native_list_append(v, ["fæþm", "noun", "fæþmas", "fæþmes", "fæþme", "", "the outstretched arms"]) + let v = native_list_append(v, ["fefor", "noun", "feforas", "fefores", "fefore", "", "fever"]) + let v = native_list_append(v, ["fenn", "noun", "fennas", "fennes", "fenne", "", "fen marsh"]) + let v = native_list_append(v, ["feoht", "noun", "feohta", "feohtes", "feohte", "", "fight battle"]) + let v = native_list_append(v, ["feond", "noun", "fīend", "fēondes", "fīend", "", "enemy foe"]) + let v = native_list_append(v, ["fleos", "noun", "fleos", "", "", "", "fleece"]) + let v = native_list_append(v, ["flocc", "noun", "floccas", "flocces", "flocce", "", "flock herd"]) + let v = native_list_append(v, ["flyht", "noun", "flyhtas", "flyhtes", "flyhte", "", "flight the act"]) + let v = native_list_append(v, ["foda", "noun", "fōdan", "fōdan", "fōdan", "", "food"]) + let v = native_list_append(v, ["fodor", "noun", "fodor", "", "", "", "fodder"]) + let v = native_list_append(v, ["wull", "noun", "wull", "wulle", "wulle", "", "wool"]) + let v = native_list_append(v, ["wundor", "noun", "wundru", "wundres", "wundre", "", "miracle wonder marvel"]) + let v = native_list_append(v, ["gielp", "noun", "ġielpas", "ġielpes", "ġielpe", "", "a boast"]) + let v = native_list_append(v, ["græs", "noun", "grasu", "græses", "græse", "", "grass"]) + let v = native_list_append(v, ["greot", "noun", "greot", "", "", "", "earth"]) + let v = native_list_append(v, ["grytt", "noun", "grytt", "", "", "", "bran"]) + let v = native_list_append(v, ["græf", "noun", "grafu", "græfes", "græfe", "", "grave"]) + let v = native_list_append(v, ["gylt", "noun", "gyltas", "gyltes", "gylte", "", "guilt"]) + let v = native_list_append(v, ["gyrdel", "noun", "gyrdlas", "gyrdles", "gyrdle", "", "belt"]) + let v = native_list_append(v, ["hæfen", "noun", "hæfena", "hæfene", "hæfene", "", "sheltered inlet harbour"]) + let v = native_list_append(v, ["hælþ", "noun", "hǣlþa", "hǣlþe", "hǣlþe", "", "health"]) + let v = native_list_append(v, ["lengþu", "noun", "lengþa", "lengþe", "lengþe", "", "length"]) + let v = native_list_append(v, ["healf", "noun", "healfa", "healfe", "healfe", "", "side"]) + let v = native_list_append(v, ["hearm", "noun", "hearmas", "hearmes", "hearme", "", "harm"]) + let v = native_list_append(v, ["hearpe", "noun", "hearpan", "hearpan", "hearpan", "", "harp"]) + let v = native_list_append(v, ["helma", "noun", "helman", "helman", "helman", "", "helm of boat"]) + let v = native_list_append(v, ["heorþ", "noun", "heorþas", "heorþes", "heorþe", "", "hearth"]) + let v = native_list_append(v, ["hierde", "noun", "hierdas", "hierdes", "hierdum", "", "herdsman"]) + let v = native_list_append(v, ["sceap", "noun", "sċēap", "sċēapes", "sċēape", "", "sheep"]) + let v = native_list_append(v, ["hiew", "noun", "hīew", "hīewes", "hīewe", "", "form appearance likeness"]) + let v = native_list_append(v, ["hleo", "noun", "hleo", "", "", "", "shelter"]) + let v = native_list_append(v, ["hopa", "noun", "hopan", "hopan", "hopan", "", "hope"]) + let v = native_list_append(v, ["hreaw", "noun", "hreaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hreow", "noun", "hrēowa", "hrēowe", "hrēowe", "", "regret remorse"]) + let v = native_list_append(v, ["hrost", "noun", "hrōstas", "hrōstes", "hrōste", "", "a wooden framework"]) + let v = native_list_append(v, ["hrung", "noun", "hrunga", "hrunge", "hrunge", "", "a rung"]) + let v = native_list_append(v, ["hungor", "noun", "hungras", "hungres", "hungre", "", "hunger"]) + let v = native_list_append(v, ["wansceaft", "noun", "wansceaft", "", "", "", "misery misfortune"]) + let v = native_list_append(v, ["wera", "noun", "wera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["husbonda", "noun", "husbonda", "", "", "", "master of the"]) + let v = native_list_append(v, ["bonda", "noun", "bondan", "bondan", "bondan", "", "husband"]) + let v = native_list_append(v, ["hwæte", "noun", "hwæte", "hwǣtes", "hwǣte", "", "wheat"]) + let v = native_list_append(v, ["hwil", "noun", "hwīla", "hwīle", "hwīle", "", "while period of"]) + let v = native_list_append(v, ["hyd", "noun", "hȳde", "hȳde", "hȳde", "", "skin hide"]) + let v = native_list_append(v, ["idel", "noun", "īdel", "īdeles", "īdele", "", "idleness vanity futility"]) + let v = native_list_append(v, ["hama", "noun", "haman", "haman", "haman", "", "a covering"]) + let v = native_list_append(v, ["læt", "noun", "lātas", "lǣtes", "lǣte", "", "a class of"]) + let v = native_list_append(v, ["læste", "noun", "læste", "", "", "", "last a shoemakers"]) + let v = native_list_append(v, ["læce", "noun", "lǣċas", "lǣċes", "lǣċe", "", "doctor physician"]) + let v = native_list_append(v, ["locum", "noun", "locum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["leafa", "noun", "leafa", "", "", "", "belief"]) + let v = native_list_append(v, ["læn", "noun", "lǣn", "lǣnes", "lǣne", "", "loan grant gift"]) + let v = native_list_append(v, ["læs", "noun", "lǣswa", "lǣswe", "lǣswe", "", "pasture"]) + let v = native_list_append(v, ["læwed", "noun", "lǣwedas", "lǣwedes", "lǣwede", "", "layman"]) + let v = native_list_append(v, ["lencten", "noun", "lenctenas", "lenctenes", "lenctene", "", "spring season"]) + let v = native_list_append(v, ["leoht", "noun", "lēoht", "lēohtes", "lēohte", "", "light"]) + let v = native_list_append(v, ["elpendban", "noun", "elpendbān", "elpendbānes", "elpendbāne", "", "ivory"]) + let v = native_list_append(v, ["elpend", "noun", "elpendas", "elpendes", "elpende", "", "elephant"]) + let v = native_list_append(v, ["loc", "noun", "locu", "loces", "loce", "", "lock"]) + let v = native_list_append(v, ["locc", "noun", "loccas", "locces", "locce", "", "lock of hair"]) + let v = native_list_append(v, ["mæd", "noun", "mǣdwa", "mǣdwe", "mǣdwe", "", "meadow"]) + let v = native_list_append(v, ["mægden", "noun", "mæġdenu", "mæġdenes", "mæġdene", "", "girl"]) + let v = native_list_append(v, ["mægeþ", "noun", "mæġeþ", "mæġeþ", "mæġeþ", "", "girl virgin"]) + let v = native_list_append(v, ["mædwe", "noun", "mædwe", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["miht", "noun", "mihte", "mihte", "mihte", "", "power ability"]) + let v = native_list_append(v, ["meaht", "noun", "meahte", "meahte", "meahte", "", "alternative form of"]) + let v = native_list_append(v, ["meahte", "noun", "meahte", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["mægester", "noun", "mægester", "", "", "", "master"]) + let v = native_list_append(v, ["dwola", "noun", "dwolan", "dwolan", "dwolan", "", "error fault heresy"]) + let v = native_list_append(v, ["mæsse", "noun", "mæssan", "mæssan", "mæssan", "", "mass mostly in"]) + let v = native_list_append(v, ["mæst", "noun", "mæstas", "mæstes", "mæste", "", "mast of ship"]) + let v = native_list_append(v, ["mearc", "noun", "mearca", "mearce", "mearce", "", "mark sign character"]) + let v = native_list_append(v, ["munuc", "noun", "munucas", "munuces", "munuce", "", "monk"]) + let v = native_list_append(v, ["mylen", "noun", "mylnas", "mylnes", "mylne", "", "mill a building"]) + let v = native_list_append(v, ["myrgþ", "noun", "myrgþa", "myrgþe", "myrgþe", "", "mirth"]) + let v = native_list_append(v, ["maht", "noun", "maht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nædl", "noun", "nǣdla", "nǣdle", "nǣdle", "", "needle"]) + let v = native_list_append(v, ["nædre", "noun", "nǣdran", "nǣdran", "nǣdran", "", "snake"]) + let v = native_list_append(v, ["neod", "noun", "nēoda", "nēode", "nēode", "", "desire longing zeal"]) + let v = native_list_append(v, ["niht", "noun", "nihta", "nihtes", "nihte", "", "night"]) + let v = native_list_append(v, ["geong", "noun", "ġeongas", "ġeonges", "ġeonge", "", "alternative form of"]) + let v = native_list_append(v, ["ordal", "noun", "ordāl", "ordāles", "ordāle", "", "judgement"]) + let v = native_list_append(v, ["oxa", "noun", "oxan", "oxan", "oxan", "", "ox"]) + let v = native_list_append(v, ["pæþ", "noun", "paþas", "pæþes", "pæþe", "", "path"]) + let v = native_list_append(v, ["penning", "noun", "penningas", "penninges", "penninge", "", "penny"]) + let v = native_list_append(v, ["ploh", "noun", "ploh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["preost", "noun", "prēostas", "prēostes", "prēoste", "", "priest"]) + let v = native_list_append(v, ["prica", "noun", "prican", "prican", "prican", "", "prick small hole"]) + let v = native_list_append(v, ["pryte", "noun", "prȳtan", "prȳtan", "prȳtan", "", "alternative form of"]) + let v = native_list_append(v, ["psealm", "noun", "psealmas", "psealmes", "psealme", "", "psalm"]) + let v = native_list_append(v, ["pund", "noun", "punda", "pundes", "punde", "", "pound weight or"]) + let v = native_list_append(v, ["pytt", "noun", "pyttas", "pyttes", "pytte", "", "pit"]) + let v = native_list_append(v, ["popig", "noun", "popig", "", "", "", "poppy"]) + let v = native_list_append(v, ["raca", "noun", "raca", "", "", "", "rake"]) + let v = native_list_append(v, ["geban", "noun", "geban", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ræs", "noun", "rǣsas", "rǣses", "rǣse", "", "run"]) + let v = native_list_append(v, ["reord", "noun", "reorda", "reorde", "reorde", "", "voice"]) + let v = native_list_append(v, ["hriþer", "noun", "hrīþeru", "hrīþeres", "hrīþere", "", "cow bull ox"]) + let v = native_list_append(v, ["rida", "noun", "ridan", "ridan", "ridan", "", "rider"]) + let v = native_list_append(v, ["sacu", "noun", "saca", "sace", "sace", "", "dispute strife contention"]) + let v = native_list_append(v, ["sadol", "noun", "sadolas", "sadoles", "sadole", "", "saddle"]) + let v = native_list_append(v, ["sæ", "noun", "sǣ", "sǣ", "sǣ", "", "sea"]) + let v = native_list_append(v, ["sæd", "noun", "sǣd", "sǣdes", "sǣde", "", "seed"]) + let v = native_list_append(v, ["sceafa", "noun", "sċeafan", "sċeafan", "sċeafan", "", "shave tool plane"]) + let v = native_list_append(v, ["sceaþa", "noun", "sċeaþan", "sċeaþan", "sċeaþan", "", "one who injures"]) + let v = native_list_append(v, ["sceadu", "noun", "sċeadwa", "sċeadwe", "sċeadwe", "", "shadow"]) + let v = native_list_append(v, ["sceaþ", "noun", "sceaþ", "", "", "", "sheath"]) + let v = native_list_append(v, ["scinu", "noun", "sċina", "sċine", "sċine", "", "shin"]) + let v = native_list_append(v, ["scrud", "noun", "sċrūd", "sċrūdes", "sċrȳd", "", "garment"]) + let v = native_list_append(v, ["scur", "noun", "sċūras", "sċūres", "sċūre", "", "shower"]) + let v = native_list_append(v, ["sceot", "noun", "sċeot", "sċeotes", "sċeote", "", "shot act of"]) + let v = native_list_append(v, ["sceabb", "noun", "sċeabbas", "sċeabbes", "sċeabbe", "", "scab"]) + let v = native_list_append(v, ["segel", "noun", "segel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["segl", "noun", "seġlu", "seġles", "seġle", "", "sail"]) + let v = native_list_append(v, ["hætt", "noun", "hættas", "hættes", "hætte", "", "hat"]) + let v = native_list_append(v, ["sihþ", "noun", "sihþ", "", "", "", "sight ability to"]) + let v = native_list_append(v, ["slæp", "noun", "slǣpas", "slǣpes", "slǣpe", "", "sleep"]) + let v = native_list_append(v, ["sloh", "noun", "sloh", "", "", "", "slough"]) + let v = native_list_append(v, ["smiþ", "noun", "smiþas", "smiþes", "smiþe", "", "smith"]) + let v = native_list_append(v, ["soþ", "noun", "sōþ", "sōþes", "sōþe", "", "truth"]) + let v = native_list_append(v, ["spann", "noun", "spanna", "spanne", "spanne", "", "span of a"]) + let v = native_list_append(v, ["spere", "noun", "speru", "speres", "sperum", "", "spear lance pike"]) + let v = native_list_append(v, ["spinel", "noun", "spinela", "spinele", "spinele", "", "spindle"]) + let v = native_list_append(v, ["spitu", "noun", "spita", "spite", "spite", "", "spit of wood"]) + let v = native_list_append(v, ["spræc", "noun", "sprǣċa", "sprǣċe", "sprǣċe", "", "speech"]) + let v = native_list_append(v, ["springa", "noun", "springa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["spreot", "noun", "spreot", "", "", "", "pole"]) + let v = native_list_append(v, ["staca", "noun", "stacan", "stacan", "stacan", "", "stake"]) + let v = native_list_append(v, ["stapol", "noun", "stapolas", "stapoles", "stapole", "", "basis"]) + let v = native_list_append(v, ["stara", "noun", "stara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hreac", "noun", "hrēacas", "hrēaces", "hrēace", "", "stack stook rick"]) + let v = native_list_append(v, ["staþol", "noun", "staþolas", "staþoles", "staþole", "", "foundation establishment"]) + let v = native_list_append(v, ["stede", "noun", "stedas", "stedes", "stedum", "", "place"]) + let v = native_list_append(v, ["stefn", "noun", "stefna", "stefne", "stefne", "", "voice"]) + let v = native_list_append(v, ["drync", "noun", "drynċas", "drynċes", "drynċe", "", "drink draught"]) + let v = native_list_append(v, ["streaw", "noun", "strēaw", "strēawes", "strēawe", "", "straw"]) + let v = native_list_append(v, ["stræt", "noun", "strǣta", "strǣte", "strǣte", "", "street road"]) + let v = native_list_append(v, ["stenc", "noun", "stenċas", "stenċes", "stenċe", "", "smell"]) + let v = native_list_append(v, ["steor", "noun", "stēoras", "stēores", "stēore", "", "young bull"]) + let v = native_list_append(v, ["stepe", "noun", "stepas", "stepes", "stepum", "", "alternative form of"]) + let v = native_list_append(v, ["stice", "noun", "stiċas", "stiċes", "stiċe", "", "stitch in the"]) + let v = native_list_append(v, ["stigel", "noun", "stigel", "", "", "", "stile"]) + let v = native_list_append(v, ["stoc", "noun", "stocu", "stoces", "stoce", "", "house dwelling place"]) + let v = native_list_append(v, ["studu", "noun", "styde", "styde", "styde", "", "prop"]) + let v = native_list_append(v, ["streng", "noun", "strenġas", "strenġes", "strenġe", "", "string rope cord"]) + let v = native_list_append(v, ["sumor", "noun", "sumoras", "sumores", "sumore", "", "summer"]) + let v = native_list_append(v, ["sund", "noun", "sunda", "sundes", "sunde", "", "swimming"]) + let v = native_list_append(v, ["sweard", "noun", "sweard", "", "", "", "skin rind"]) + let v = native_list_append(v, ["swealwe", "noun", "swealwan", "swealwan", "swealwan", "", "swallow bird"]) + let v = native_list_append(v, ["swæþ", "noun", "swaþu", "swæþes", "swæþe", "", "track trace"]) + let v = native_list_append(v, ["swearm", "noun", "swearmas", "swearmes", "swearme", "", "swarm"]) + let v = native_list_append(v, ["gerd", "noun", "gerd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swin", "noun", "swīn", "swīnes", "swīne", "", "pig"]) + let v = native_list_append(v, ["swinc", "noun", "swinca", "swinces", "swince", "", "hard work toil"]) + let v = native_list_append(v, ["sierce", "noun", "sierċan", "sierċan", "sierċan", "", "shirt chemise"]) + let v = native_list_append(v, ["tacen", "noun", "tācnu", "tācnes", "tācne", "", "alternative form of"]) + let v = native_list_append(v, ["teld", "noun", "telda", "teldes", "telde", "", "tent"]) + let v = native_list_append(v, ["hrycg", "noun", "hryċġas", "hryċġes", "hryċġe", "", "back spine"]) + let v = native_list_append(v, ["tæppe", "noun", "tæppan", "tæppan", "tæppan", "", "band ribbon tape"]) + let v = native_list_append(v, ["tæppa", "noun", "tæppan", "tæppan", "tæppan", "", "tap spigot"]) + let v = native_list_append(v, ["tigele", "noun", "tigelan", "tigelan", "tigelan", "", "tile"]) + let v = native_list_append(v, ["treowe", "noun", "treowe", "", "", "", "inflection of trēow"]) + let v = native_list_append(v, ["tynder", "noun", "tyndra", "tyndre", "tyndre", "", "tinder"]) + let v = native_list_append(v, ["þanc", "noun", "þancas", "þances", "þance", "", "thanks gratitude"]) + let v = native_list_append(v, ["þoht", "noun", "þoht", "", "", "", "thought"]) + let v = native_list_append(v, ["þorp", "noun", "þorpa", "þorpes", "þorpe", "", "village"]) + let v = native_list_append(v, ["þille", "noun", "þillan", "þillan", "þillan", "", "plank wooden flooring"]) + let v = native_list_append(v, ["þæc", "noun", "þacu", "þæces", "þæce", "", "roof"]) + let v = native_list_append(v, ["þeoh", "noun", "þēoh", "þēos", "þēo", "", "thigh"]) + let v = native_list_append(v, ["þræd", "noun", "þrǣdas", "þrǣdes", "þrǣde", "", "thread"]) + let v = native_list_append(v, ["þrea", "noun", "þrēan", "þrēan", "þrēan", "", "threat"]) + let v = native_list_append(v, ["þrescold", "noun", "þresċoldas", "þresċoldes", "þresċolde", "", "threshold"]) + let v = native_list_append(v, ["huþ", "noun", "hūþe", "hūþe", "hūþe", "", "plunder booty"]) + let v = native_list_append(v, ["wælfyllo", "noun", "wælfyllo", "", "", "", "fill of slaughter"]) + let v = native_list_append(v, ["wifmann", "noun", "wīfmenn", "wīfmannes", "wīfmenn", "", "woman"]) + let v = native_list_append(v, ["wic", "noun", "wīc", "wīc", "wīc", "", "village"]) + let v = native_list_append(v, ["ærdæg", "noun", "ǣrdagas", "ǣrdæġes", "ǣrdæġe", "", "the early part"]) + let v = native_list_append(v, ["guþcræft", "noun", "guþcræft", "", "", "", "warfare military strategy"]) + let v = native_list_append(v, ["wist", "noun", "wiste", "wiste", "wiste", "", "being existence"]) + let v = native_list_append(v, ["wiste", "noun", "wiste", "", "", "", "inflection of wist"]) + let v = native_list_append(v, ["þuma", "noun", "þūman", "þūman", "þūman", "", "thumb"]) + let v = native_list_append(v, ["þymel", "noun", "þȳmelas", "þȳmeles", "þȳmele", "", "thumbstall"]) + let v = native_list_append(v, ["wacu", "noun", "waca", "wace", "wace", "", "wake watch"]) + let v = native_list_append(v, ["wæd", "noun", "wǣde", "wǣde", "wǣde", "", "garment item of"]) + let v = native_list_append(v, ["wær", "noun", "wǣra", "wǣre", "wǣre", "", "truth faith"]) + let v = native_list_append(v, ["wæcce", "noun", "wæċċan", "wæċċan", "wæċċan", "", "watch"]) + let v = native_list_append(v, ["wærloga", "noun", "wǣrlogan", "wǣrlogan", "wǣrlogan", "", "traitor oath-breaker liar"]) + let v = native_list_append(v, ["loga", "noun", "logan", "logan", "logan", "", "liar"]) + let v = native_list_append(v, ["wela", "noun", "welan", "welan", "welan", "", "wealth"]) + let v = native_list_append(v, ["weorc", "noun", "weorca", "weorces", "weorce", "", "work in various"]) + let v = native_list_append(v, ["widewe", "noun", "widewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wilcuma", "noun", "wilcuman", "wilcuman", "wilcuman", "", "welcome guest"]) + let v = native_list_append(v, ["willa", "noun", "willan", "willan", "willan", "", "will"]) + let v = native_list_append(v, ["witnes", "noun", "witnes", "", "", "", "witness"]) + let v = native_list_append(v, ["þeoden", "noun", "þēodnas", "þēodnes", "þēodne", "", "prince lord ruler"]) + let v = native_list_append(v, ["þryþ", "noun", "þrȳþe", "þrȳþe", "þrȳþe", "", "strength power force"]) + let v = native_list_append(v, ["gewinn", "noun", "ġewinn", "ġewinnes", "ġewinne", "", "war"]) + let v = native_list_append(v, ["wrang", "noun", "wrangas", "wranges", "wrange", "", "a ships hold"]) + let v = native_list_append(v, ["wrecca", "noun", "wreċċan", "wreċċan", "wreċċan", "", "exile outcast"]) + let v = native_list_append(v, ["wyrhta", "noun", "wyrhtan", "wyrhtan", "wyrhtan", "", "worker"]) + let v = native_list_append(v, ["wearp", "noun", "wearp", "", "", "", "warp"]) + let v = native_list_append(v, ["wæx", "noun", "wæx", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["webb", "noun", "webbu", "webbes", "webbe", "", "web"]) + let v = native_list_append(v, ["yfel", "noun", "yfela", "yfeles", "yfele", "", "something bad or"]) + let v = native_list_append(v, ["morþbealo", "noun", "morþbealo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyren", "noun", "fyrena", "fyrene", "fyrene", "", "alternative form of"]) + let v = native_list_append(v, ["hoh", "noun", "hōs", "hōs", "hō", "", "The heel rear"]) + let v = native_list_append(v, ["ealdor", "noun", "ealdra", "ealdres", "ealdre", "", "life the vital"]) + let v = native_list_append(v, ["eld", "noun", "eld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ieldu", "noun", "ielde", "ielde", "ielde", "", "age"]) + let v = native_list_append(v, ["ellærn", "noun", "ellærn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ierfe", "noun", "ierfu", "ierfes", "ierfum", "", "inheritance"]) + let v = native_list_append(v, ["ierfa", "noun", "ierfan", "ierfan", "ierfan", "", "heir"]) + let v = native_list_append(v, ["æsce", "noun", "ascan", "ascan", "ascan", "", "ash combustion residue"]) + let v = native_list_append(v, ["leþer", "noun", "leþru", "leþres", "leþre", "", "hide skin leather"]) + let v = native_list_append(v, ["benc", "noun", "benċe", "benċe", "benċe", "", "bench"]) + let v = native_list_append(v, ["blæst", "noun", "blǣstas", "blǣstes", "blǣste", "", "blowing blast burst"]) + let v = native_list_append(v, ["earendel", "noun", "earendel", "", "", "", "the morning star"]) + let v = native_list_append(v, ["streawberige", "noun", "strēawberiġan", "strēawberiġan", "strēawberiġan", "", "alternative form of"]) + let v = native_list_append(v, ["berige", "noun", "beriġan", "beriġan", "beriġan", "", "alternative form of"]) + let v = native_list_append(v, ["ælmesse", "noun", "ælmessan", "ælmessan", "ælmessan", "", "alms"]) + let v = native_list_append(v, ["osle", "noun", "ōslan", "ōslan", "ōslan", "", "a European blackbird"]) + let v = native_list_append(v, ["asca", "noun", "asca", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["beofor", "noun", "beoforas", "beofores", "beofore", "", "alternative form of"]) + let v = native_list_append(v, ["acweorna", "noun", "ācweornan", "ācweornan", "ācweornan", "", "squirrel"]) + let v = native_list_append(v, ["ambiht", "noun", "ambihtas", "ambihtes", "ambihte", "", "servant"]) + let v = native_list_append(v, ["feald", "noun", "fealda", "fealde", "fealde", "", "occasion"]) + let v = native_list_append(v, ["fira", "noun", "fira", "", "", "", "mankinds genitive plural"]) + let v = native_list_append(v, ["heahfore", "noun", "hēahforan", "hēahforan", "hēahforan", "", "heifer"]) + let v = native_list_append(v, ["liþ", "noun", "liþa", "liþa", "liþa", "", "limb member"]) + let v = native_list_append(v, ["heafoc", "noun", "heafoc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wifmenn", "noun", "wifmenn", "", "", "", "plural of wīfmann"]) + let v = native_list_append(v, ["delle", "noun", "delle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hæf", "noun", "hæf", "", "", "", "yeast"]) + let v = native_list_append(v, ["henn", "noun", "henna", "henne", "henne", "", "hen"]) + let v = native_list_append(v, ["fina", "noun", "finan", "finan", "finan", "", "woodpecker"]) + let v = native_list_append(v, ["cnafa", "noun", "cnafan", "cnafan", "cnafan", "", "boy lad young"]) + let v = native_list_append(v, ["godsibb", "noun", "godsibbas", "godsibbes", "godsibbe", "", "one who has"]) + let v = native_list_append(v, ["mila", "noun", "mila", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["sunna", "noun", "sunnan", "sunnan", "sunnan", "", "sun"]) + let v = native_list_append(v, ["wodnesdæg", "noun", "wōdnesdagas", "wōdnesdæġes", "wōdnesdæġe", "", "Wednesday"]) + let v = native_list_append(v, ["þursdæg", "noun", "þursdagas", "þursdæġes", "þursdæġe", "", "Thursday"]) + let v = native_list_append(v, ["frigedæg", "noun", "frīġedagas", "frīġedæġes", "frīġedæġe", "", "Friday"]) + let v = native_list_append(v, ["melo", "noun", "melo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rocca", "noun", "rocca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ryge", "noun", "ryge", "", "", "", "rye"]) + let v = native_list_append(v, ["þrop", "noun", "þropa", "þropes", "þrope", "", "assembly"]) + let v = native_list_append(v, ["cetel", "noun", "cetel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fana", "noun", "fanan", "fanan", "fanan", "", "a bit of"]) + let v = native_list_append(v, ["fearh", "noun", "fēaras", "fēares", "fēare", "", "piglet"]) + let v = native_list_append(v, ["atorcoppe", "noun", "ātorcoppan", "ātorcoppan", "ātorcoppan", "", "spider"]) + let v = native_list_append(v, ["ator", "noun", "ātru", "ātres", "ātre", "", "poison venom"]) + let v = native_list_append(v, ["cece", "noun", "cece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lybb", "noun", "lybba", "lybbes", "lybbe", "", "drug medicine"]) + let v = native_list_append(v, ["æcern", "noun", "ǣcernu", "ǣcernes", "ǣcerne", "", "acorn"]) + let v = native_list_append(v, ["hnitu", "noun", "hnite", "hnite", "hnite", "", "nit"]) + let v = native_list_append(v, ["hræfn", "noun", "hræfnas", "hræfnes", "hræfne", "", "raven"]) + let v = native_list_append(v, ["scearu", "noun", "sċeara", "sċeare", "sċeare", "", "shaving or a"]) + let v = native_list_append(v, ["scear", "noun", "sċēare", "sċēare", "sċēare", "", "scissors shears"]) + let v = native_list_append(v, ["sicol", "noun", "sicolas", "sicoles", "sicole", "", "sickle"]) + let v = native_list_append(v, ["socc", "noun", "soccas", "socces", "socce", "", "sock"]) + let v = native_list_append(v, ["sticca", "noun", "sticcan", "sticcan", "sticcan", "", "stick"]) + let v = native_list_append(v, ["cran", "noun", "cranas", "cranes", "crane", "", "crane bird"]) + let v = native_list_append(v, ["waga", "noun", "waga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wala", "noun", "wala", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanga", "noun", "wanga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wini", "noun", "winas", "wines", "winum", "", "alternative form of"]) + let v = native_list_append(v, ["witu", "noun", "witu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["uf", "noun", "uf", "", "", "", "owl"]) + let v = native_list_append(v, ["tacne", "noun", "tacne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sceoh", "noun", "sceoh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleht", "noun", "sleht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salig", "noun", "salig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bede", "noun", "bede", "", "", "", "inflection of bedu"]) + let v = native_list_append(v, ["bergan", "noun", "bergan", "", "", "", "inflection of berġe"]) + let v = native_list_append(v, ["hana", "noun", "hanan", "hanan", "hanan", "", "rooster"]) + let v = native_list_append(v, ["gigante", "noun", "gigante", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Herod", "noun", "Herod", "Herodes", "Herode", "", "King Herod"]) + let v = native_list_append(v, ["fearn", "noun", "fearna", "fearnes", "fearne", "", "fern"]) + let v = native_list_append(v, ["hoppa", "noun", "hoppan", "hoppan", "hoppan", "", "agent noun of"]) + let v = native_list_append(v, ["Scylding", "noun", "Sċyldingas", "Sċyldinges", "Sċyldinge", "", "‘descendant of Scyld’"]) + let v = native_list_append(v, ["wea", "noun", "wēan", "wēan", "wēan", "", "misfortune evil harm"]) + let v = native_list_append(v, ["Cain", "noun", "Cain", "Caines", "Caine", "", "Cain the brother"]) + let v = native_list_append(v, ["bola", "noun", "bōlan", "bōlan", "bōlan", "", "younger brother"]) + let v = native_list_append(v, ["ylde", "noun", "ylda", "", "yldum", "", "alternative form of"]) + let v = native_list_append(v, ["hete", "noun", "hetas", "hetes", "hetum", "", "hatred"]) + let v = native_list_append(v, ["heteniþ", "noun", "hetenīþas", "", "", "", "deep enmity hostility"]) + let v = native_list_append(v, ["timberland", "noun", "timberlanda", "timberlandes", "timberlande", "", "timberland"]) + let v = native_list_append(v, ["muga", "noun", "mūgan", "mūgan", "mūgan", "", "stack of hay"]) + let v = native_list_append(v, ["gær", "noun", "ġǣr", "ġǣres", "ġǣre", "", "alternative form of"]) + let v = native_list_append(v, ["orde", "noun", "orde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dreng", "noun", "drenġas", "drenġes", "drenġe", "", "warrior soldier"]) + let v = native_list_append(v, ["frosc", "noun", "froscas", "frosċes", "frosċe", "", "frog"]) + let v = native_list_append(v, ["fetel", "noun", "fetelas", "feteles", "fetele", "", "girdle belt"]) + let v = native_list_append(v, ["buccan", "noun", "buccan", "", "", "", "inflection of bucca"]) + let v = native_list_append(v, ["twiga", "noun", "twiġan", "twiġan", "twiġan", "", "synonym of twiġ"]) + let v = native_list_append(v, ["hylla", "noun", "hylla", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["cribb", "noun", "cribbe", "cribbe", "cribbe", "", "manger stall"]) + let v = native_list_append(v, ["enta", "noun", "enta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["boxe", "noun", "boxe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["posa", "noun", "posa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["branda", "noun", "branda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["guman", "noun", "guman", "", "", "", "inflection of guma"]) + let v = native_list_append(v, ["mome", "noun", "mōman", "mōman", "mōman", "", "aunt mothers sister"]) + let v = native_list_append(v, ["sanctum", "noun", "sanctum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dura", "noun", "dura", "", "", "", "inflection of duru"]) + let v = native_list_append(v, ["Elisabeth", "noun", "Elisabeth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["panne", "noun", "pannan", "pannan", "pannan", "", "pan frying pan"]) + let v = native_list_append(v, ["Irlande", "noun", "Irlande", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Hereford", "noun", "Hereford", "", "", "", "Hereford a city"]) + let v = native_list_append(v, ["soles", "noun", "soles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["borda", "noun", "bordan", "bordan", "bordan", "", "an ornamental border"]) + let v = native_list_append(v, ["linde", "noun", "linde", "", "", "", "inflection of lind"]) + let v = native_list_append(v, ["ceder", "noun", "ċedra", "ċedre", "ċedre", "", "the cedar tree"]) + let v = native_list_append(v, ["liste", "noun", "liste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["myne", "noun", "mynas", "mynes", "mynum", "", "mind memory remembrance"]) + let v = native_list_append(v, ["scyte", "noun", "sċytas", "sċytes", "sċyte", "", "shooting"]) + let v = native_list_append(v, ["teter", "noun", "teter", "", "", "", "tetter"]) + let v = native_list_append(v, ["songe", "noun", "songe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cote", "noun", "cote", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wifes", "noun", "wifes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["stane", "noun", "stane", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cocca", "noun", "cocca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["heteniþas", "noun", "heteniþas", "", "", "", "plural of hetenīþ"]) + let v = native_list_append(v, ["wæg", "noun", "wǣgas", "wǣġes", "wǣġe", "", "wave"]) + let v = native_list_append(v, ["resta", "noun", "resta", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["missere", "noun", "misseru", "misseres", "misserum", "", "half-year"]) + let v = native_list_append(v, ["mægen", "noun", "mæġnu", "mæġnes", "mæġne", "", "strength power"]) + let v = native_list_append(v, ["feorhbealo", "noun", "feorhbealo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þunresdæg", "noun", "þunresdagas", "þunresdæġes", "þunresdæġe", "", "Thursday"]) + let v = native_list_append(v, ["folm", "noun", "folma", "folme", "folme", "", "poetic hand palm"]) + let v = native_list_append(v, ["aglæca", "noun", "āglǣċan", "āglǣċan", "āglǣċan", "", "an awesome or"]) + let v = native_list_append(v, ["ehtend", "noun", "ehtend", "", "", "", "pursuer persecutor"]) + let v = native_list_append(v, ["wifman", "noun", "wīfmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæle", "noun", "hæleþ", "hæleþ", "hæleþ", "", "hero"]) + let v = native_list_append(v, ["banhus", "noun", "bānhūs", "bānhūses", "bānhūse", "", "body torso"]) + let v = native_list_append(v, ["wigsmiþ", "noun", "wīġsmiþas", "wīġsmiþes", "wīġsmiþe", "", "warrior hero"]) + let v = native_list_append(v, ["hamora laf", "noun", "hamora lāfa", "hamora lāfe", "hamora lāfe", "", "sword"]) + let v = native_list_append(v, ["hamora", "noun", "hamora", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hamor", "noun", "hamoras", "hamores", "hamore", "", "hammer"]) + let v = native_list_append(v, ["laf", "noun", "lāfa", "lāfe", "lāfe", "", "remains remainder left"]) + let v = native_list_append(v, ["geogoþ", "noun", "geogoþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cometa", "noun", "comētan", "comētan", "comētan", "", "comet"]) + let v = native_list_append(v, ["duna", "noun", "duna", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["synnihte", "noun", "synnihte", "synnihtes", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwyrft", "noun", "hwyrftas", "", "", "", "revolution turning circuit"]) + let v = native_list_append(v, ["angenga", "noun", "āngenġan", "āngenġan", "āngenġan", "", "lone traveler solitary"]) + let v = native_list_append(v, ["wites", "noun", "wites", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nard", "noun", "nard", "", "", "", "spikenard"]) + let v = native_list_append(v, ["brecþ", "noun", "brecþa", "brecþe", "brecþe", "", "heartbreak grief"]) + let v = native_list_append(v, ["færgryre", "noun", "fǣrgryras", "fǣrgryres", "fǣrgryre", "", "sudden horror danger"]) + let v = native_list_append(v, ["borde", "noun", "bordan", "bordan", "bordan", "", "board"]) + let v = native_list_append(v, ["dela", "noun", "dela", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["wigweorþung", "noun", "wīġweorþunga", "wīġweorþunge", "wīġweorþunge", "", "alternative form of"]) + let v = native_list_append(v, ["ent", "noun", "entas", "entes", "ente", "", "giant mythical creature"]) + let v = native_list_append(v, ["lieg", "noun", "līeġas", "līeġes", "līeġe", "", "flame"]) + let v = native_list_append(v, ["gastbana", "noun", "gāstbanan", "", "", "", "destroyer of souls"]) + let v = native_list_append(v, ["þeodþrea", "noun", "þeodþrea", "", "", "", "national disaster great"]) + let v = native_list_append(v, ["hyht", "noun", "hyhtas", "hyhtes", "hyhte", "", "hope"]) + let v = native_list_append(v, ["henne", "noun", "henne", "", "", "", "inflection of henn"]) + let v = native_list_append(v, ["aras", "noun", "aras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bata", "noun", "bata", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["batas", "noun", "batas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bordan", "noun", "bordan", "", "", "", "inflection of borda"]) + let v = native_list_append(v, ["bordes", "noun", "bordes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cenes", "noun", "cenes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cesas", "noun", "cesas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cesa", "noun", "cesa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ceses", "noun", "ceses", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["clame", "noun", "clame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["clames", "noun", "clames", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["colmase", "noun", "colmāsan", "colmāsan", "colmāsan", "", "coal tit Periparus"]) + let v = native_list_append(v, ["cometan", "noun", "cometan", "", "", "", "inflection of comēta"]) + let v = native_list_append(v, ["bille", "noun", "bille", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["domas", "noun", "domas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["doma", "noun", "doma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["domes", "noun", "domes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dora", "noun", "doran", "doran", "doran", "", "bumblebee"]) + let v = native_list_append(v, ["doran", "noun", "doran", "", "", "", "inflection of dora"]) + let v = native_list_append(v, ["dore", "noun", "dore", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["feres", "noun", "feres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["limes", "noun", "limes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lyres", "noun", "lyres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["loges", "noun", "loges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["meres", "noun", "meres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["metes", "noun", "metes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gores", "noun", "gores", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bridles", "noun", "bridles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["totes", "noun", "totes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["filmen", "noun", "filmenas", "filmenes", "filmene", "", "membrane"]) + let v = native_list_append(v, ["finta", "noun", "fintan", "fintan", "fintan", "", "tail"]) + let v = native_list_append(v, ["fintan", "noun", "fintan", "", "", "", "inflection of finta"]) + let v = native_list_append(v, ["flete", "noun", "flete", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["flotan", "noun", "flotan", "", "", "", "inflection of flota"]) + let v = native_list_append(v, ["gastas", "noun", "gastas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gasta", "noun", "gasta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gaste", "noun", "gaste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gastes", "noun", "gastes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["generes", "noun", "generes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["grada", "noun", "grada", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hundes", "noun", "hundes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hunde", "noun", "hunde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hunda", "noun", "hunda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hundas", "noun", "hundas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["wil", "noun", "wīl", "wīles", "wīle", "", "wile trick or"]) + let v = native_list_append(v, ["sla", "noun", "sla", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hannibal", "noun", "Hannibal", "Hannibales", "Hannibale", "", "Hannibal a Carthaginian"]) + let v = native_list_append(v, ["modsefa", "noun", "mōdsefan", "mōdsefan", "mōdsefan", "", "heart mind character"]) + let v = native_list_append(v, ["dæd", "noun", "dǣde", "dǣde", "dǣde", "", "action deed"]) + let v = native_list_append(v, ["demend", "noun", "dēmend", "dēmendes", "dēmende", "", "judge"]) + let v = native_list_append(v, ["ingang", "noun", "ingangas", "inganges", "ingange", "", "entrance place of"]) + let v = native_list_append(v, ["lambes", "noun", "lambes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lambe", "noun", "lambe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["listas", "noun", "listas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["pisan", "noun", "pisan", "", "", "", "inflection of pise"]) + let v = native_list_append(v, ["pise", "noun", "pisan", "pisan", "pisan", "", "pea"]) + let v = native_list_append(v, ["plantan", "noun", "plantan", "", "", "", "inflection of plante"]) + let v = native_list_append(v, ["plante", "noun", "plantan", "plantan", "plantan", "", "plant shoot"]) + let v = native_list_append(v, ["portas", "noun", "portas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["portes", "noun", "portes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["scia", "noun", "sċīan", "sċīan", "sċīan", "", "shin"]) + let v = native_list_append(v, ["metas", "noun", "metas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["moderes", "noun", "moderes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["moran", "noun", "moran", "", "", "", "inflection of more"]) + let v = native_list_append(v, ["notas", "noun", "notas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["obras", "noun", "obras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["obre", "noun", "obre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["obres", "noun", "obres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rapas", "noun", "rapas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["tabulan", "noun", "tabulan", "", "", "", "inflection of tabule"]) + let v = native_list_append(v, ["tabule", "noun", "tabulan", "tabulan", "tabulan", "", "table"]) + let v = native_list_append(v, ["templa", "noun", "templa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["timan", "noun", "timan", "", "", "", "inflection of tīma"]) + let v = native_list_append(v, ["torna", "noun", "torna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["torne", "noun", "torne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tornes", "noun", "tornes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["haligdom", "noun", "hāliġdōmas", "hāliġdōmes", "hāliġdōme", "", "holiness sanctity"]) + let v = native_list_append(v, ["sperum", "noun", "sperum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["arblast", "noun", "arblastas", "arblastes", "arblaste", "", "crossbow arblast"]) + let v = native_list_append(v, ["geste", "noun", "geste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gestes", "noun", "gestes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brot", "noun", "brotu", "brotes", "brote", "", "a piece broken"]) + let v = native_list_append(v, ["soþgiedd", "noun", "sōþġiedd", "sōþġieddes", "sōþġiedde", "", "true story"]) + let v = native_list_append(v, ["durum", "noun", "durum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Inga", "noun", "Inga", "", "", "", "a male given"]) + let v = native_list_append(v, ["geswincdæg", "noun", "ġeswincdagas", "ġeswincdæġes", "ġeswincdæġe", "", "day of labour"]) + let v = native_list_append(v, ["earfoþhwil", "noun", "earfoþhwīle", "earfoþhwīle", "earfoþhwīle", "", "Hard time period"]) + let v = native_list_append(v, ["gewealc", "noun", "ġewealc", "ġewealces", "ġewealce", "", "rolling turning motion"]) + let v = native_list_append(v, ["naca", "noun", "nacan", "nacan", "nacan", "", "boat ship"]) + let v = native_list_append(v, ["wending", "noun", "wendinga", "wendinge", "wendinge", "", "change"]) + let v = native_list_append(v, ["lagum", "noun", "lagum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["canne", "noun", "cannan", "cannan", "cannan", "", "a can cup"]) + let v = native_list_append(v, ["sumere", "noun", "sumere", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["moda", "noun", "moda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Creta", "noun", "Creta", "", "", "", "Crete an island"]) + let v = native_list_append(v, ["crisma", "noun", "crisman", "crisman", "crisman", "", "chrism"]) + let v = native_list_append(v, ["alban", "noun", "alban", "", "", "", "inflection of albe"]) + let v = native_list_append(v, ["hemming", "noun", "hemming", "", "", "", "a boot made"]) + let v = native_list_append(v, ["gade", "noun", "gade", "", "", "", "inflection of gād"]) + let v = native_list_append(v, ["stanes", "noun", "stanes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sceaduwe", "noun", "sceaduwe", "", "", "", "inflection of sċeadu"]) + let v = native_list_append(v, ["Oswald", "noun", "Oswald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lisse", "noun", "lisse", "", "", "", "inflection of liss"]) + let v = native_list_append(v, ["recedes", "noun", "recedes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cy", "noun", "cy", "", "", "", "plural of cū"]) + let v = native_list_append(v, ["scopes", "noun", "scopes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lime", "noun", "lime", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["porr", "noun", "porra", "porres", "porre", "", "leek"]) + let v = native_list_append(v, ["horse", "noun", "horse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gener", "noun", "ġeneru", "ġeneres", "ġenere", "", "a refuge protection"]) + let v = native_list_append(v, ["horte", "noun", "hortan", "hortan", "hortan", "", "whortleberry"]) + let v = native_list_append(v, ["Dunholm", "noun", "Dunholm", "Dūnholmes", "Dūnholme", "", "County Durham a"]) + let v = native_list_append(v, ["Englaland", "noun", "Englaland", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taxe", "noun", "tāxan", "tāxan", "tāxan", "", "toad"]) + let v = native_list_append(v, ["gyte", "noun", "gytas", "gytes", "gytum", "", "pouring"]) + let v = native_list_append(v, ["cwalu", "noun", "cwala", "cwale", "cwale", "", "killing violent death"]) + let v = native_list_append(v, ["fæhþu", "noun", "fǣhþu", "fǣhþu", "fǣhþu", "", "enmity hostility"]) + let v = native_list_append(v, ["cyþþu", "noun", "cyþþu", "cȳþþe", "cȳþþe", "", "knowledge"]) + let v = native_list_append(v, ["rade", "noun", "rade", "", "", "", "inflection of rād"]) + let v = native_list_append(v, ["cliwen", "noun", "clīwenu", "clīwenes", "clīwene", "", "alternative form of"]) + let v = native_list_append(v, ["scritta", "noun", "scritta", "", "", "", "effeminate or castrated"]) + let v = native_list_append(v, ["successe", "noun", "successe", "", "", "", "outcome result"]) + let v = native_list_append(v, ["hagle", "noun", "hagle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Ines", "noun", "Ines", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cymene", "noun", "cymene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["peonia", "noun", "peonian", "peonian", "peonian", "", "peony"]) + let v = native_list_append(v, ["hames", "noun", "hames", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["scapes", "noun", "scapes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gara", "noun", "gara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Euan", "noun", "Euan", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["totale", "noun", "totale", "", "", "", "inflection of tōtalu"]) + let v = native_list_append(v, ["mista", "noun", "mista", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["swurd", "noun", "swurd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werd", "noun", "werde", "werde", "werde", "", "alternative form of"]) + let v = native_list_append(v, ["meting", "noun", "mētinga", "mētinge", "mētinge", "", "picture drawing painting"]) + let v = native_list_append(v, ["tunne", "noun", "tunnan", "tunnan", "tunnan", "", "barrel cask"]) + let v = native_list_append(v, ["bior", "noun", "bīoras", "bīores", "bīore", "", "alternative form of"]) + let v = native_list_append(v, ["Dodd", "noun", "Dodd", "", "", "", "a male given"]) + let v = native_list_append(v, ["gewild", "noun", "gewild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dica", "noun", "dica", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["regola", "noun", "regola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["regole", "noun", "regole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["merce", "noun", "merce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["getal", "noun", "getal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wond", "noun", "wond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fixes", "noun", "fixes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gripes", "noun", "gripes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["timbres", "noun", "timbres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hucs", "noun", "hucs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syll", "noun", "sylle", "sylle", "sylle", "", "a beam that"]) + let v = native_list_append(v, ["laste", "noun", "laste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["orgel", "noun", "orgel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cac", "noun", "cacas", "caces", "cace", "", "dung excrement"]) + let v = native_list_append(v, ["pawa", "noun", "pāwan", "pāwan", "pāwan", "", "peacock"]) + let v = native_list_append(v, ["boog", "noun", "boog", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeodenstol", "noun", "þeodenstol", "", "", "", "throne"]) + let v = native_list_append(v, ["solu", "noun", "solwa", "solwe", "solwe", "", "mire"]) + let v = native_list_append(v, ["anum", "noun", "anum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["banan", "noun", "banan", "", "", "", "inflection of bana"]) + let v = native_list_append(v, ["wades", "noun", "wades", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["feh", "noun", "feh", "fēs", "fē", "", "alternative form of"]) + let v = native_list_append(v, ["cuna", "noun", "cuna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["pryde", "noun", "prȳdan", "prȳdan", "prȳdan", "", "pride"]) + let v = native_list_append(v, ["abal", "noun", "abal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passione", "noun", "passione", "", "", "", "inflection of passion"]) + let v = native_list_append(v, ["franca", "noun", "francan", "francan", "francan", "", "lance javelin spear"]) + let v = native_list_append(v, ["fam", "noun", "fām", "fāmes", "fāme", "", "foam"]) + let v = native_list_append(v, ["laces", "noun", "laces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ella", "noun", "Ella", "", "", "", "a male given"]) + let v = native_list_append(v, ["Africana", "noun", "Africana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bæl", "noun", "bǣl", "bǣles", "bǣle", "", "funeral pyre bonfire"]) + let v = native_list_append(v, ["gimma", "noun", "gimma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["spora", "noun", "sporan", "sporan", "sporan", "", "alternative form of"]) + let v = native_list_append(v, ["bælfyr", "noun", "bælfyr", "", "", "", "balefire funeral fire"]) + let v = native_list_append(v, ["wecg", "noun", "weċġas", "weċġes", "weċġe", "", "wedge"]) + let v = native_list_append(v, ["agu", "noun", "aga", "age", "age", "", "magpie"]) + let v = native_list_append(v, ["hordes", "noun", "hordes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["woh", "noun", "wōh", "wōs", "wō", "", "wrong something wrong"]) + let v = native_list_append(v, ["suan", "noun", "suan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["telda", "noun", "telda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["laga", "noun", "laga", "", "", "", "inflection of lagu"]) + let v = native_list_append(v, ["læna", "noun", "læna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["melda", "noun", "meldan", "meldan", "meldan", "", "informer"]) + let v = native_list_append(v, ["mæla", "noun", "mæla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nytta", "noun", "nytta", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["rætta", "noun", "rætta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fus", "noun", "fūs", "fūses", "fūse", "", "a hastening progress"]) + let v = native_list_append(v, ["arum", "noun", "arum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Æþelbeorht", "noun", "Æþelbeorht", "Æþelbeorhtes", "Æþelbeorhte", "", "a male given"]) + let v = native_list_append(v, ["brogan", "noun", "brogan", "", "", "", "inflection of brōga"]) + let v = native_list_append(v, ["benda", "noun", "benda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["niedwracu", "noun", "niedwracu", "", "", "", "great suffering deep"]) + let v = native_list_append(v, ["nihtbealo", "noun", "nihtbealo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yþlida", "noun", "ȳþlidan", "ȳþlidan", "ȳþlidan", "", "ship"]) + let v = native_list_append(v, ["þearf", "noun", "þearfa", "þearfe", "þearfe", "", "need + genitive"]) + let v = native_list_append(v, ["siþfæt", "noun", "sīþfatu", "sīþfætes", "sīþfæte", "", "expedition journey"]) + let v = native_list_append(v, ["hæl", "noun", "hǣlru", "hǣles", "hǣle", "", "omen"]) + let v = native_list_append(v, ["sundwudu", "noun", "sundwuda", "", "", "", "ship"]) + let v = native_list_append(v, ["wægholm", "noun", "wǣġholmas", "", "", "", "sea ocean"]) + let v = native_list_append(v, ["brede", "noun", "brede", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stubbe", "noun", "stubbe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hom", "noun", "hom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["husa", "noun", "husa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Ida", "noun", "Ida", "Idan", "Idan", "", "a male given"]) + let v = native_list_append(v, ["dogga", "noun", "doggan", "doggan", "doggan", "", "alternative spelling of"]) + let v = native_list_append(v, ["urum", "noun", "urum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["enda", "noun", "enda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lond", "noun", "londa", "londes", "londe", "", "alternative form of"]) + let v = native_list_append(v, ["Wederas", "noun", "Wedera", "", "Wederum", "", "Geats"]) + let v = native_list_append(v, ["sæwudu", "noun", "sǣwuda", "", "", "", "boat ship"]) + let v = native_list_append(v, ["guþgewæde", "noun", "gūþġewǣdu", "", "", "", "battle-dress armour"]) + let v = native_list_append(v, ["yþlad", "noun", "ȳþlāde", "", "", "", "voyage crossing"]) + let v = native_list_append(v, ["bolca", "noun", "bolcan", "bolcan", "bolcan", "", "gangway of ship"]) + let v = native_list_append(v, ["fyrdsearu", "noun", "fyrdsearu", "", "", "", "armour war equipment"]) + let v = native_list_append(v, ["fyrwet", "noun", "fyrwet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["modgehygd", "noun", "mōdġehyġde", "mōdġehyġde", "mōdġehyġde", "", "thought intention"]) + let v = native_list_append(v, ["waroþ", "noun", "waroþas", "waroþes", "waroþe", "", "shore"]) + let v = native_list_append(v, ["wicg", "noun", "wiċġ", "wiċġes", "wiċġe", "", "horse steed"]) + let v = native_list_append(v, ["mægenwudu", "noun", "mæġenwuda", "", "", "", "mighty spear"]) + let v = native_list_append(v, ["frægn", "noun", "fræġn", "fræġnes", "fræġne", "", "question"]) + let v = native_list_append(v, ["searu", "noun", "searwa", "searwes", "searwe", "", "machine"]) + let v = native_list_append(v, ["searuhæbbend", "noun", "searuhæbbende", "searuhæbbendes", "searuhæbbende", "", "armour-haver armed warrior"]) + let v = native_list_append(v, ["byrne", "noun", "byrnan", "byrnan", "byrnan", "", "corselet coat of"]) + let v = native_list_append(v, ["lagustræt", "noun", "lagustrǣte", "", "", "", "ocean"]) + let v = native_list_append(v, ["endesæta", "noun", "endesæta", "", "", "", "coastguard border watchman"]) + let v = native_list_append(v, ["sciphere", "noun", "sċipherġas", "sċipherġes", "sċipherġe", "", "navy"]) + let v = native_list_append(v, ["clæg", "noun", "clǣġas", "clǣġes", "clǣġe", "", "clay"]) + let v = native_list_append(v, ["sceard", "noun", "sċeard", "sċeardes", "sċearde", "", "notch gap"]) + let v = native_list_append(v, ["morgengiefu", "noun", "morgenġiefa", "morgenġiefe", "morgenġiefe", "", "morning gift"]) + let v = native_list_append(v, ["lindhæbbend", "noun", "lindhæbbend", "", "", "", "shield-bearer warrior"]) + let v = native_list_append(v, ["Eli", "noun", "Eli", "", "", "", "a male given"]) + let v = native_list_append(v, ["leafnesword", "noun", "lēafnesword", "", "", "", "password"]) + let v = native_list_append(v, ["guþfremmend", "noun", "gūþfremmend", "gūþfremmendes", "gūþfremmende", "", "war-maker warrior"]) + let v = native_list_append(v, ["gemede", "noun", "ġemēdu", "ġemēdes", "ġemēde", "", "something agreeable or"]) + let v = native_list_append(v, ["ansyn", "noun", "ansīena", "ansīene", "ansīene", "", "alternative form of"]) + let v = native_list_append(v, ["frumcynn", "noun", "frumcynna", "frumcynnes", "frumcynne", "", "original kind lineage"]) + let v = native_list_append(v, ["tapor", "noun", "taporas", "tapores", "tapore", "", "taper"]) + let v = native_list_append(v, ["teru", "noun", "terwa", "terwes", "terwe", "", "alternative form of"]) + let v = native_list_append(v, ["teoru", "noun", "teorwa", "teorwes", "teorwe", "", "tar resin"]) + let v = native_list_append(v, ["ælfsogoþa", "noun", "ælfsogoþan", "ælfsogoþan", "ælfsogoþan", "", "alternative form of"]) + let v = native_list_append(v, ["leassceawere", "noun", "lēassċēaweras", "", "", "", "spy"]) + let v = native_list_append(v, ["feorbuend", "noun", "feorbuend", "", "", "", "foreigner alien"]) + let v = native_list_append(v, ["mereliþend", "noun", "mereliþend", "", "", "", "sailor"]) + let v = native_list_append(v, ["geþoht", "noun", "ġeþōhtas", "ġeþōhtes", "ġeþōhte", "", "thought what is"]) + let v = native_list_append(v, ["ofost", "noun", "ofsta", "ofste", "ofste", "", "alternative form of"]) + let v = native_list_append(v, ["wisa", "noun", "wīsan", "", "", "", "leader chief"]) + let v = native_list_append(v, ["gumcynn", "noun", "gumcynn", "", "", "", "mankind"]) + let v = native_list_append(v, ["heorþgeneat", "noun", "heorþġenēatas", "heorþġenēates", "heorþġenēate", "", "hearth-companion retainer member"]) + let v = native_list_append(v, ["ordfruma", "noun", "ordfruman", "ordfruman", "ordfruman", "", "origin"]) + let v = native_list_append(v, ["brom", "noun", "brōmas", "brōmes", "brōme", "", "broom the plant"]) + let v = native_list_append(v, ["dædhata", "noun", "dǣdhatan", "", "", "", "persecutor perpetrator"]) + let v = native_list_append(v, ["hynþu", "noun", "hȳnþu", "hȳnþu", "hȳnþu", "", "alternative form of"]) + let v = native_list_append(v, ["wiccecræft", "noun", "wiċċecræftas", "wiċċecræftes", "wiċċecræfte", "", "witchcraft"]) + let v = native_list_append(v, ["hræw", "noun", "hrǣw", "hrǣwes", "hrǣwe", "", "corpse carrion"]) + let v = native_list_append(v, ["hrafyl", "noun", "hrafyl", "", "", "", "slaughter"]) + let v = native_list_append(v, ["asse", "noun", "asse", "", "", "", "she-ass"]) + let v = native_list_append(v, ["edwenden", "noun", "edwendenne", "", "", "", "change reversal of"]) + let v = native_list_append(v, ["bealu", "noun", "bealwa", "bealwes", "bealwe", "", "harm evil"]) + let v = native_list_append(v, ["bisigu", "noun", "bisiġu", "bisiġu", "bisiġu", "", "business occupation activity"]) + let v = native_list_append(v, ["cearwylm", "noun", "ċearwylmas", "ċearwylmes", "ċearwylme", "", "alternative form of"]) + let v = native_list_append(v, ["earfoþþrag", "noun", "earfoþþrāge", "earfoþþrāge", "earfoþþrāge", "", "time of trouble"]) + let v = native_list_append(v, ["þreanied", "noun", "þrēanīede", "þrēanīede", "þrēanīede", "", "dire distress severe"]) + let v = native_list_append(v, ["heahstede", "noun", "hēahstedas", "", "", "", "high or important"]) + let v = native_list_append(v, ["scyld", "noun", "sċyldas", "sċyldes", "sċylde", "", "alternative form of"]) + let v = native_list_append(v, ["scyldwiga", "noun", "sċyldwigan", "", "", "", "warrior"]) + let v = native_list_append(v, ["gescad", "noun", "gescad", "", "", "", "separation"]) + let v = native_list_append(v, ["frean", "noun", "frean", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["gewæde", "noun", "ġewǣdu", "ġewǣdes", "ġewǣde", "", "covering shroud"]) + let v = native_list_append(v, ["magu", "noun", "maga", "maga", "maga", "", "boy son"]) + let v = native_list_append(v, ["coppe", "noun", "coppe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["widsiþ", "noun", "wīdsīþas", "wīdsīþes", "wīdsīþe", "", "a long journey"]) + let v = native_list_append(v, ["maguþegn", "noun", "maguþeġnas", "maguþeġnes", "maguþeġne", "", "servant retainer"]) + let v = native_list_append(v, ["gifeþe", "noun", "ġifeþu", "ġifeþes", "ġifeþe", "", "fate"]) + let v = native_list_append(v, ["hild", "noun", "hilde", "hilde", "hilde", "", "battle war"]) + let v = native_list_append(v, ["hilderæs", "noun", "hilderæs", "", "", "", "charge onslaught"]) + let v = native_list_append(v, ["ancor", "noun", "ancras", "ancres", "ancre", "", "anchor"]) + let v = native_list_append(v, ["eoforlic", "noun", "eoforlīc", "eoforlīċes", "eoforlīċe", "", "a form or"]) + let v = native_list_append(v, ["hleor", "noun", "hlēor", "hlēores", "hlēore", "", "cheek"]) + let v = native_list_append(v, ["monnum", "noun", "monnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fyl", "noun", "fyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geardagum", "noun", "geardagum", "", "", "", "dative of ġeārdagas"]) + let v = native_list_append(v, ["þeodcyninga", "noun", "þeodcyninga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Gardene", "noun", "Gārdene", "Gārdena", "Gārdenum", "", "‘Spear-Dane’ Dane"]) + let v = native_list_append(v, ["Gardena", "noun", "Gardena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["æþelingas", "noun", "æþelingas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sceaþena", "noun", "sceaþena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þreatum", "noun", "þreatum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["meodosetla", "noun", "meodosetla", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["frofre", "noun", "frofre", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wolcnum", "noun", "wolcnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["weorþmyndum", "noun", "weorþmyndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["garsecg", "noun", "garsecg", "gārseċġes", "gārseċġe", "", "ocean sea"]) + let v = native_list_append(v, ["ymbsittend", "noun", "ymbsittende", "ymbsittendes", "ymbsittendum", "", "neighbouring people those"]) + let v = native_list_append(v, ["ymbsittendra", "noun", "ymbsittendra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hronrad", "noun", "hronrad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hronrade", "noun", "hronrade", "", "", "", "inflection of hronrād"]) + let v = native_list_append(v, ["gomban", "noun", "gomban", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["eafera", "noun", "eafera", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["geardum", "noun", "geardum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["mægþum", "noun", "mægþum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["folce", "noun", "folce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fyrenþearf", "noun", "fyrenþearf", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fyrenþearfe", "noun", "fyrenþearfe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hwile", "noun", "hwile", "", "", "", "plural of hwīl"]) + let v = native_list_append(v, ["liffrea", "noun", "līffrēan", "līffrēan", "līffrēan", "", "lord of life"]) + let v = native_list_append(v, ["wuldres", "noun", "wuldres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["liffrean", "noun", "liffrean", "", "", "", "plural of līffrēa"]) + let v = native_list_append(v, ["spicing", "noun", "spīcingas", "spīcinges", "spīcinge", "", "spike"]) + let v = native_list_append(v, ["albe", "noun", "alban", "alban", "alban", "", "an alb type"]) + let v = native_list_append(v, ["springe", "noun", "springe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["obr", "noun", "ōbras", "ōbres", "ōbre", "", "alternative form of"]) + let v = native_list_append(v, ["æþelinges", "noun", "æþelinges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wealdend", "noun", "wealdende", "wealdendes", "wealdende", "", "controller master"]) + let v = native_list_append(v, ["worold", "noun", "worold", "", "", "", "Northumbrian form of"]) + let v = native_list_append(v, ["woroldar", "noun", "woroldāra", "woroldāre", "woroldāre", "", "worldly honour"]) + let v = native_list_append(v, ["woroldare", "noun", "woroldare", "", "", "", "plural of woroldār"]) + let v = native_list_append(v, ["Beowulf", "noun", "Beowulf", "Bēowulfes", "Bēowulfe", "", "Beowulf"]) + let v = native_list_append(v, ["Scedenig", "noun", "Scedenig", "", "", "", "Scania"]) + let v = native_list_append(v, ["Scedeland", "noun", "Scedeland", "", "", "", "Scania"]) + let v = native_list_append(v, ["Scedelandum", "noun", "Scedelandum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gesiþas", "noun", "gesiþas", "", "", "", "plural of ġesīþ"]) + let v = native_list_append(v, ["feohgift", "noun", "feohġifta", "feohġifte", "feohġifte", "", "treasure-giving dispensing of"]) + let v = native_list_append(v, ["feohgiftum", "noun", "feohgiftum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["wilgesiþ", "noun", "wilġesīþas", "wilġesīþes", "wilġesīþe", "", "dear companion"]) + let v = native_list_append(v, ["wilgesiþas", "noun", "wilgesiþas", "", "", "", "plural of wilġesīþ"]) + let v = native_list_append(v, ["lofdædum", "noun", "lofdædum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["mægþa", "noun", "mægþa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fenix", "noun", "fēnixas", "fēnixes", "fēnixe", "", "phoenix"]) + let v = native_list_append(v, ["gescæphwil", "noun", "gescæphwil", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["gescæphwile", "noun", "gescæphwile", "", "", "", "inflection of ġescæphwīl"]) + let v = native_list_append(v, ["brimes", "noun", "brimes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["faroþe", "noun", "faroþe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["culter", "noun", "culter", "", "", "", "A coulter of"]) + let v = native_list_append(v, ["sester", "noun", "sestras", "sestres", "sestre", "", "vessel jar pitcher"]) + let v = native_list_append(v, ["wordum", "noun", "wordum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Scyldinga", "noun", "Scyldinga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["landfruma", "noun", "landfruman", "landfruman", "landfruman", "", "ruler of the"]) + let v = native_list_append(v, ["hyþe", "noun", "hyþe", "", "", "", "plural of hȳþ"]) + let v = native_list_append(v, ["hringedstefna", "noun", "hringedstefnan", "hringedstefnan", "hringedstefnan", "", "curve-prowed ship ringed"]) + let v = native_list_append(v, ["brytta", "noun", "bryttan", "bryttan", "bryttan", "", "giver dispenser distributor"]) + let v = native_list_append(v, ["bryttan", "noun", "bryttan", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["scipes", "noun", "scipes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["maþum", "noun", "māþmas", "māþmes", "māþme", "", "alternative form of"]) + let v = native_list_append(v, ["maþma", "noun", "maþma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["madma", "noun", "madma", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hleorberg", "noun", "hleorberg", "", "", "", "cheek-guard on a"]) + let v = native_list_append(v, ["feorhweard", "noun", "feorhwearde", "", "", "", "mortal protection guard"]) + let v = native_list_append(v, ["bares", "noun", "bares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["londum", "noun", "londum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["storma", "noun", "storma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["flodes", "noun", "flodes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gifta", "noun", "ġifta", "ġifta", "ġiftum", "", "wedding"]) + let v = native_list_append(v, ["æht", "noun", "ǣhte", "ǣhte", "ǣhte", "", "possession"]) + let v = native_list_append(v, ["lacum", "noun", "lacum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["segn", "noun", "segn", "", "", "", "a sign mark"]) + let v = native_list_append(v, ["segen", "noun", "segen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["atorcoppan", "noun", "atorcoppan", "", "", "", "plural of ātorcoppe"]) + let v = native_list_append(v, ["spera", "noun", "spera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["boxa", "noun", "boxa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["menigeo", "noun", "menigeo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mænigo", "noun", "mænigo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["feorwegum", "noun", "feorwegum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hyrde", "noun", "hyrdas", "hyrdes", "hyrdum", "", "alternative form of"]) + let v = native_list_append(v, ["hildewæpen", "noun", "hildewæpen", "", "", "", "battle-weapon"]) + let v = native_list_append(v, ["hildewæpnum", "noun", "hildewæpnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bearme", "noun", "bearme", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["byrnum", "noun", "byrnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þeodgestreon", "noun", "þeodgestreon", "", "", "", "peoples treasure national"]) + let v = native_list_append(v, ["gestreon", "noun", "ġestrēonu", "ġestrēones", "ġestrēone", "", "treasure wealth"]) + let v = native_list_append(v, ["þeodgestreonum", "noun", "þeodgestreonum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["frumsceafte", "noun", "frumsceafte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fleo", "noun", "flēo", "flēo", "flēo", "", "a white spot"]) + let v = native_list_append(v, ["heofonum", "noun", "heofonum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["heofenum", "noun", "heofenum", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["heaþuwæd", "noun", "heaþuwǣda", "heaþuwǣde", "heaþuwǣde", "", "war-dress armour"]) + let v = native_list_append(v, ["heaþowædum", "noun", "heaþowædum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["frætwa", "noun", "frætwa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["yþe", "noun", "yþe", "", "", "", "plural of ȳþ"]) + let v = native_list_append(v, ["selerædend", "noun", "selerædend", "", "", "", "hall-counsellor"]) + let v = native_list_append(v, ["selerædende", "noun", "selerædende", "", "", "", "plural of selerǣdend"]) + let v = native_list_append(v, ["burgum", "noun", "burgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þrage", "noun", "þrage", "", "", "", "plural of þrāg"]) + let v = native_list_append(v, ["Daniele", "noun", "Daniele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["soþe", "noun", "soþe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["læg", "noun", "lagu", "læġes", "læġe", "", "that which lies"]) + let v = native_list_append(v, ["fligel", "noun", "fliġelas", "fliġeles", "fliġele", "", "flail whip"]) + let v = native_list_append(v, ["corna", "noun", "corna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["grane", "noun", "grane", "", "", "", "inflection of granu"]) + let v = native_list_append(v, ["flot", "noun", "flot", "", "", "", "the sea water"]) + let v = native_list_append(v, ["calde", "noun", "calde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["creda", "noun", "crēdan", "crēdan", "crēdan", "", "creed statement of"]) + let v = native_list_append(v, ["Ina", "noun", "Ina", "", "", "", "a male given"]) + let v = native_list_append(v, ["asce", "noun", "asce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pistole", "noun", "pistole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sule", "noun", "sule", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bolle", "noun", "bollan", "bollan", "bollan", "", "bowl cup pot"]) + let v = native_list_append(v, ["rocce", "noun", "rocce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["polente", "noun", "polente", "", "", "", "parched corn"]) + let v = native_list_append(v, ["brande", "noun", "brande", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["beah", "noun", "bēagas", "bēages", "bēage", "", "alternative form of"]) + let v = native_list_append(v, ["leodcyning", "noun", "leodcyning", "", "", "", "king ruler"]) + let v = native_list_append(v, ["folcum", "noun", "folcum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["earde", "noun", "earde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["briosa", "noun", "brīosan", "brīosan", "brīosan", "", "alternative form of"]) + let v = native_list_append(v, ["miste", "noun", "miste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["nette", "noun", "nette", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["scura", "noun", "scura", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["scure", "noun", "scure", "", "", "", "inflection of sċūr"]) + let v = native_list_append(v, ["Scyldingas", "noun", "Scyldingas", "", "", "", "plural of Scylding"]) + let v = native_list_append(v, ["weorod", "noun", "weoroda", "weorodes", "weorode", "", "alternative form of"]) + let v = native_list_append(v, ["uht", "noun", "uht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gifstol", "noun", "ġifstōlas", "ġifstōles", "ġifstōle", "", "throne"]) + let v = native_list_append(v, ["foldbuend", "noun", "foldbūend", "foldbūendes", "foldbūende", "", "one who lives"]) + let v = native_list_append(v, ["buende", "noun", "buende", "", "", "", "inflection of būend"]) + let v = native_list_append(v, ["rodor", "noun", "rodoras", "rodores", "rodore", "", "sky heaven heavens"]) + let v = native_list_append(v, ["adela", "noun", "adelan", "adelan", "adelan", "", "filth"]) + let v = native_list_append(v, ["torht", "noun", "torht", "", "", "", "clearness brightness shine"]) + let v = native_list_append(v, ["guþbeorn", "noun", "gūþbeornas", "gūþbeornes", "gūþbeorne", "", "warrior"]) + let v = native_list_append(v, ["arstafas", "noun", "ārstafas", "ārstafa", "ārstafum", "", "help kindness"]) + let v = native_list_append(v, ["guþbyrne", "noun", "gūþbyrnan", "gūþbyrnan", "gūþbyrnan", "", "corselet battle-mail"]) + let v = native_list_append(v, ["searo", "noun", "searo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geatwe", "noun", "ġeatwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æscholt", "noun", "æsċholt", "æsċholtes", "æsċholte", "", "spear"]) + let v = native_list_append(v, ["oretmæcg", "noun", "ōretmæċġas", "ōretmæċġes", "ōretmæċġe", "", "hero"]) + let v = native_list_append(v, ["Wendlas", "noun", "Wendlas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gedriht", "noun", "gedriht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["solan", "noun", "solan", "", "", "", "inflection of sole"]) + let v = native_list_append(v, ["rahan", "noun", "rahan", "", "", "", "inflection of rāha"]) + let v = native_list_append(v, ["suon", "noun", "suon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blada", "noun", "blada", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hanan", "noun", "hanan", "", "", "", "inflection of hana"]) + let v = native_list_append(v, ["fice", "noun", "fice", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fices", "noun", "fices", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Becca", "noun", "Becca", "Beccan", "Beccan", "", "a male given"]) + let v = native_list_append(v, ["gesta", "noun", "gesta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["horum", "noun", "horum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gares", "noun", "gares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["heals", "noun", "healsas", "healses", "healse", "", "neck"]) + let v = native_list_append(v, ["milds", "noun", "milds", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gimmes", "noun", "gimmes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["leas", "noun", "lēas", "lēases", "lēase", "", "falsehood lie"]) + let v = native_list_append(v, ["annesse", "noun", "annesse", "", "", "", "inflection of ānnes"]) + let v = native_list_append(v, ["sian", "noun", "sian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["latu", "noun", "latu", "", "", "", "delay hindrance"]) + let v = native_list_append(v, ["taru", "noun", "tarwa", "tarwe", "tarwe", "", "vetch tare"]) + let v = native_list_append(v, ["mene", "noun", "menas", "menes", "menum", "", "necklace collar"]) + let v = native_list_append(v, ["musa", "noun", "musa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["cinge", "noun", "cinge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cinga", "noun", "cinga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["intinga", "noun", "intingan", "intingan", "intingan", "", "cause reason"]) + let v = native_list_append(v, ["minte", "noun", "mintan", "mintan", "mintan", "", "mint"]) + let v = native_list_append(v, ["sadan", "noun", "sadan", "", "", "", "inflection of sāda"]) + let v = native_list_append(v, ["horas", "noun", "horas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ostre", "noun", "ostran", "ostran", "ostran", "", "oyster"]) + let v = native_list_append(v, ["læse", "noun", "læse", "", "", "", "inflection of lǣs"]) + let v = native_list_append(v, ["æþm", "noun", "ǣþmas", "ǣþmes", "ǣþme", "", "breathing"]) + let v = native_list_append(v, ["syle", "noun", "syle", "", "", "", "inflection of sȳl"]) + let v = native_list_append(v, ["stofa", "noun", "stofan", "stofan", "stofan", "", "synonym of stofu"]) + let v = native_list_append(v, ["ealdorman", "noun", "ealdorman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grighund", "noun", "grīġhundas", "grīġhundes", "grīġhunde", "", "greyhound"]) + let v = native_list_append(v, ["legerstow", "noun", "leġerstōwa", "leġerstōwe", "leġerstōwe", "", "cemetery graveyard"]) + let v = native_list_append(v, ["teso", "noun", "teso", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yn", "noun", "ȳna", "ȳne", "ȳne", "", "onion"]) + let v = native_list_append(v, ["godas", "noun", "godas", "", "", "", "plural of god"]) + let v = native_list_append(v, ["scola", "noun", "scola", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["loppe", "noun", "loppan", "loppan", "loppan", "", "spider perhaps also"]) + let v = native_list_append(v, ["bucca", "noun", "buccan", "buccan", "buccan", "", "he-goat"]) + let v = native_list_append(v, ["tole", "noun", "tole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fetele", "noun", "fetele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dolga", "noun", "dolga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stofn", "noun", "stofnas", "stofnes", "stofne", "", "stem"]) + let v = native_list_append(v, ["munta", "noun", "munta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["munte", "noun", "munte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["candele", "noun", "candele", "", "", "", "inflection of candel"]) + let v = native_list_append(v, ["blodwite", "noun", "blōdwītu", "", "", "", "penalty for bloodshed"]) + let v = native_list_append(v, ["bune", "noun", "bunan", "bunan", "bunan", "", "cup"]) + let v = native_list_append(v, ["wyn", "noun", "wynna", "wynne", "wynne", "", "alternative spelling of"]) + let v = native_list_append(v, ["ing", "noun", "inga", "inge", "inge", "", "meadow water meadow"]) + let v = native_list_append(v, ["sorga", "noun", "sorga", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["cors", "noun", "corsas", "corses", "corse", "", "curse"]) + let v = native_list_append(v, ["eaxl", "noun", "eaxla", "eaxle", "eaxle", "", "shoulder"]) + let v = native_list_append(v, ["storce", "noun", "storce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["storca", "noun", "storca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gewend", "noun", "gewend", "", "", "", "a spiral shell"]) + let v = native_list_append(v, ["heden", "noun", "hednas", "hednes", "hedne", "", "hood chasuble"]) + let v = native_list_append(v, ["goda", "noun", "goda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wiga", "noun", "wigan", "wigan", "wigan", "", "warrior fighter"]) + let v = native_list_append(v, ["titul", "noun", "titul", "", "", "", "title name of"]) + let v = native_list_append(v, ["docgan", "noun", "docgan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["cosse", "noun", "cosse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gewiss", "noun", "ġewiss", "ġewisses", "ġewisse", "", "certainty"]) + let v = native_list_append(v, ["ungewiss", "noun", "unġewiss", "unġewisses", "unġewisse", "", "uncertainty ignorance unconsciousness"]) + let v = native_list_append(v, ["fyre", "noun", "fyre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cultur", "noun", "cultur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bodes", "noun", "bodes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wyrms", "noun", "wyrmsas", "wyrmses", "wyrmse", "", "virus"]) + let v = native_list_append(v, ["mundum", "noun", "mundum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["munde", "noun", "munde", "", "", "", "inflection of mund"]) + let v = native_list_append(v, ["cule", "noun", "cule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunnung", "noun", "cunnung", "", "", "", "knowledge"]) + let v = native_list_append(v, ["afgod", "noun", "afgod", "", "", "", "An idol image"]) + let v = native_list_append(v, ["lenda", "noun", "lendan", "lendan", "lendan", "", "land-dweller inhabitant"]) + let v = native_list_append(v, ["reca", "noun", "reca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gegncwide", "noun", "ġeġncwidas", "ġeġncwides", "ġeġncwide", "", "answer reply"]) + let v = native_list_append(v, ["geæhtle", "noun", "ġeæhtlan", "ġeæhtlan", "ġeæhtlan", "", "respect esteem"]) + let v = native_list_append(v, ["deah", "noun", "dēaga", "dēage", "dēage", "", "alternative form of"]) + let v = native_list_append(v, ["aldor", "noun", "aldras", "aldres", "aldre", "", "alternative form of"]) + let v = native_list_append(v, ["heaþurinc", "noun", "heaþurincas", "heaþurinces", "heaþurince", "", "warrior hero"]) + let v = native_list_append(v, ["ealdfæder", "noun", "ealdfæderas", "ealdfædera", "ealdfæderum", "", "alternative form of"]) + let v = native_list_append(v, ["sæliþend", "noun", "sǣlīþend", "sǣlīþendes", "sǣlīþende", "", "seafarer sailor"]) + let v = native_list_append(v, ["wordes", "noun", "wordes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["onga", "noun", "onga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["canonica", "noun", "canonica", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stoles", "noun", "stoles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["stunda", "noun", "stunda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["hada", "noun", "hada", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tana", "noun", "tana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tane", "noun", "tane", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["daga", "noun", "daga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Alexandre", "noun", "Alexandre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Eostre", "noun", "Eostre", "", "", "", "The godess Easter"]) + let v = native_list_append(v, ["Cnut", "noun", "Cnut", "Cnutes", "Cnute", "", "a male given"]) + let v = native_list_append(v, ["suge", "noun", "suge", "", "", "", "inflection of sugu"]) + let v = native_list_append(v, ["bena", "noun", "bēnan", "bēnan", "bēnan", "", "petitioner requester"]) + let v = native_list_append(v, ["geofon", "noun", "ġeofonu", "ġeofones", "ġeofone", "", "ocean sea"]) + let v = native_list_append(v, ["begong", "noun", "begongas", "begonges", "begonge", "", "alternative form of"]) + let v = native_list_append(v, ["begang", "noun", "begangas", "beganges", "begange", "", "alternative form of"]) + let v = native_list_append(v, ["wearn", "noun", "wearna", "wearne", "wearne", "", "reluctance resistance"]) + let v = native_list_append(v, ["mægencræft", "noun", "mæġencræftas", "mæġencræftes", "mæġencræfte", "", "strength power"]) + let v = native_list_append(v, ["heaþu", "noun", "heaþa", "heaþa", "heaþa", "", "war battle attested"]) + let v = native_list_append(v, ["mundgripe", "noun", "mundgripas", "mundgripes", "mundgripum", "", "grasp hand-grip"]) + let v = native_list_append(v, ["gryre", "noun", "gryras", "gryres", "gryrum", "", "fright terror"]) + let v = native_list_append(v, ["modþracu", "noun", "mōdþraca", "mōdþrace", "mōdþrace", "", "courage bravery"]) + let v = native_list_append(v, ["heregrima", "noun", "heregrīman", "heregrīman", "heregrīman", "", "battle-mask helmet"]) + let v = native_list_append(v, ["hildebord", "noun", "hildeborda", "hildebordes", "hildeborde", "", "war-shield"]) + let v = native_list_append(v, ["geþinge", "noun", "ġeþinġu", "ġeþinġes", "ġeþinġe", "", "meeting council"]) + let v = native_list_append(v, ["horna", "noun", "horna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["foxholes", "noun", "foxholes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Beniamin", "noun", "Beniamin", "", "", "", "a male given"]) + let v = native_list_append(v, ["freadrihten", "noun", "freadrihten", "", "", "", "lord"]) + let v = native_list_append(v, ["cumpæder", "noun", "cumpæder", "", "", "", "godfather"]) + let v = native_list_append(v, ["haran", "noun", "haran", "", "", "", "inflection of hara"]) + let v = native_list_append(v, ["cua", "noun", "cua", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mægdencild", "noun", "mæġdenċildru", "mæġdenċildes", "mæġdenċilde", "", "girl female child"]) + let v = native_list_append(v, ["stric", "noun", "stric", "", "", "", "Meaning unclear potentially"]) + let v = native_list_append(v, ["bewering", "noun", "beweringa", "beweringe", "beweringe", "", "defense"]) + let v = native_list_append(v, ["metoda", "noun", "metoda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mandragora", "noun", "mandragora", "", "", "", "mandrake"]) + let v = native_list_append(v, ["Paulus", "noun", "Paulus", "Paules", "Paule", "", "Paul"]) + let v = native_list_append(v, ["cruce", "noun", "crūcan", "crūcan", "crūcan", "", "a waterpot pitcher"]) + let v = native_list_append(v, ["Troia", "noun", "Troia", "", "", "", "Troy"]) + let v = native_list_append(v, ["spreca", "noun", "sprecan", "sprecan", "sprecan", "", "speaker talker"]) + let v = native_list_append(v, ["becca", "noun", "beccan", "beccan", "beccan", "", "mattock pickaxe"]) + let v = native_list_append(v, ["gemete", "noun", "gemete", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fenestre", "noun", "fenestre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fenol", "noun", "fenol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merien", "noun", "merien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stott", "noun", "stottas", "stottes", "stotte", "", "an inferior type"]) + let v = native_list_append(v, ["risc", "noun", "risċa", "risċe", "risċe", "", "alternative form of"]) + let v = native_list_append(v, ["ceste", "noun", "ceste", "", "", "", "inflection of ċest"]) + let v = native_list_append(v, ["upspring", "noun", "upspringas", "upspringes", "upspringe", "", "a springing up"]) + let v = native_list_append(v, ["siman", "noun", "siman", "", "", "", "inflection of sīma"]) + let v = native_list_append(v, ["monna", "noun", "monna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["orda", "noun", "orda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["oste", "noun", "oste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["limu", "noun", "limu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["princ", "noun", "princ", "", "", "", "the twinkling of"]) + let v = native_list_append(v, ["getot", "noun", "ġetotu", "ġetotes", "ġetote", "", "pomp parade vainglory"]) + let v = native_list_append(v, ["Ing", "noun", "Ing", "Inga", "Inga", "", "a male given"]) + let v = native_list_append(v, ["sacca", "noun", "sacca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["topp", "noun", "toppas", "toppes", "toppe", "", "top summit of"]) + let v = native_list_append(v, ["noma", "noun", "noman", "noman", "noman", "", "alternative form of"]) + let v = native_list_append(v, ["toppa", "noun", "toppa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["toppe", "noun", "toppe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lilie", "noun", "lilian", "lilian", "lilian", "", "a lily"]) + let v = native_list_append(v, ["hland", "noun", "hlanda", "hlandes", "hlande", "", "urine"]) + let v = native_list_append(v, ["mygg", "noun", "mygg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["exen", "noun", "exen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nett", "noun", "netta", "nettes", "nette", "", "net"]) + let v = native_list_append(v, ["curs", "noun", "curs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hylle", "noun", "hylle", "", "", "", "inflection of hyll"]) + let v = native_list_append(v, ["drepe", "noun", "drepas", "drepes", "drepum", "", "a stroke deathblow"]) + let v = native_list_append(v, ["assen", "noun", "assena", "assene", "assene", "", "she-ass"]) + let v = native_list_append(v, ["ongin", "noun", "ongin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slan", "noun", "slan", "", "", "", "inflection of slāh"]) + let v = native_list_append(v, ["Eufrates", "noun", "Eufrates", "", "", "", "The Euphrates a"]) + let v = native_list_append(v, ["campa", "noun", "campa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["castel", "noun", "castellas", "castelles", "castelle", "", "castle"]) + let v = native_list_append(v, ["paradis", "noun", "paradīsas", "paradīses", "paradīse", "", "paradise"]) + let v = native_list_append(v, ["damm", "noun", "dammas", "dammes", "damme", "", "dam"]) + let v = native_list_append(v, ["byt", "noun", "bytta", "bytte", "bytte", "", "bottle flagon"]) + let v = native_list_append(v, ["freme", "noun", "freman", "freman", "freman", "", "fremu advantage gain"]) + let v = native_list_append(v, ["frema", "noun", "frema", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["corne", "noun", "corne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gers", "noun", "gersa", "gerses", "gerse", "", "alternative form of"]) + let v = native_list_append(v, ["breda", "noun", "breda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["termen", "noun", "termenas", "termenes", "termene", "", "a term fixed"]) + let v = native_list_append(v, ["Philippus", "noun", "Philippus", "Philippuses", "Philippuse", "", "Philip II of"]) + let v = native_list_append(v, ["fals", "noun", "falsa", "falses", "false", "", "falsehood fraud counterfeit"]) + let v = native_list_append(v, ["kuning", "noun", "kuningas", "kuninges", "kuninge", "", "alternative form of"]) + let v = native_list_append(v, ["penn", "noun", "penn", "", "", "", "pen enclosure fold"]) + let v = native_list_append(v, ["streame", "noun", "streame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["titta", "noun", "titta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["angin", "noun", "angin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Petrus", "noun", "Petrus", "Petres", "Petre", "", "Peter"]) + let v = native_list_append(v, ["merg", "noun", "merg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stoppa", "noun", "stoppan", "stoppan", "stoppan", "", "bucket"]) + let v = native_list_append(v, ["hengst", "noun", "hengst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hamora lafe", "noun", "hamora lafe", "", "", "", "plural of hamora"]) + let v = native_list_append(v, ["lafe", "noun", "lafe", "", "", "", "inflection of lāf"]) + let v = native_list_append(v, ["sond", "noun", "sond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bleda", "noun", "bleda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["eos", "noun", "eos", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nunnan", "noun", "nunnan", "", "", "", "inflection of nunne"]) + let v = native_list_append(v, ["sandland", "noun", "sandlanda", "sandlandes", "sandlande", "", "shore of the"]) + let v = native_list_append(v, ["Finne", "noun", "Finne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["buttorfleoge", "noun", "buttorflēogan", "buttorflēogan", "buttorflēogan", "", "alternative form of"]) + let v = native_list_append(v, ["fiffealde", "noun", "fiffealde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esne", "noun", "esnas", "esnes", "esnum", "", "a man of"]) + let v = native_list_append(v, ["storme", "noun", "storme", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["weregild", "noun", "weregild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þwang", "noun", "þwangas", "þwanges", "þwange", "", "thong of leather"]) + let v = native_list_append(v, ["sigle", "noun", "sigle", "", "", "", "rye"]) + let v = native_list_append(v, ["biscop", "noun", "bisċopas", "bisċopes", "bisċope", "", "bishop"]) + let v = native_list_append(v, ["ræswan", "noun", "ræswan", "", "", "", "oblique of rǣswa"]) + let v = native_list_append(v, ["healsgebedda", "noun", "healsġebeddan", "healsġebeddan", "healsġebeddan", "", "bedfellow consort lover"]) + let v = native_list_append(v, ["wiges", "noun", "wiges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nicor", "noun", "nicoras", "nicores", "nicore", "", "water demon water"]) + let v = native_list_append(v, ["brego", "noun", "brega", "brega", "brega", "", "prince lord ruler"]) + let v = native_list_append(v, ["wira", "noun", "wira", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wilweorþung", "noun", "wilweorþung", "", "", "", "well worship the"]) + let v = native_list_append(v, ["wana", "noun", "wanan", "wanan", "wanan", "", "a want lack"]) + let v = native_list_append(v, ["scocca", "noun", "scocca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freca", "noun", "frecan", "frecan", "frecan", "", "warrior"]) + let v = native_list_append(v, ["Egypta", "noun", "Egypta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Romana", "noun", "Romana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["medo", "noun", "medo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolle", "noun", "tolle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mys", "noun", "mys", "", "", "", "inflection of mūs"]) + let v = native_list_append(v, ["accenta", "noun", "accenta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["spone", "noun", "spone", "", "", "", "inflection of spōn"]) + let v = native_list_append(v, ["spala", "noun", "spalan", "spalan", "spalan", "", "substitute"]) + let v = native_list_append(v, ["hopp", "noun", "hopp", "", "", "", "covering"]) + let v = native_list_append(v, ["guþsele", "noun", "gūþselas", "gūþseles", "gūþsele", "", "war-hall hall of"]) + let v = native_list_append(v, ["golde", "noun", "golde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Norweg", "noun", "Norweg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["legie", "noun", "legian", "legian", "legian", "", "a Roman legion"]) + let v = native_list_append(v, ["hrægl", "noun", "hræġl", "hræġles", "hræġle", "", "garment piece of"]) + let v = native_list_append(v, ["wæge", "noun", "wǣġu", "wǣġes", "wǣġe", "", "cup flagon"]) + let v = native_list_append(v, ["beorsele", "noun", "bēorselas", "bēorseles", "bēorsele", "", "beerhall"]) + let v = native_list_append(v, ["fenland", "noun", "fenlanda", "fenlandes", "fenlande", "", "fenland marshy land"]) + let v = native_list_append(v, ["ferhþ", "noun", "ferhþas", "ferhþes", "ferhþe", "", "life"]) + let v = native_list_append(v, ["Eoforwic", "noun", "Eoforwic", "Eoforwīc", "Eoforwīc", "", "York"]) + let v = native_list_append(v, ["Ispania", "noun", "Ispania", "Ispānia", "Ispānia", "", "Spain a country"]) + let v = native_list_append(v, ["daru", "noun", "dara", "dare", "dare", "", "injury hurt harm"]) + let v = native_list_append(v, ["billum", "noun", "billum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["streames", "noun", "streames", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["stormes", "noun", "stormes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["docce", "noun", "docce", "doccan", "doccan", "", "dock genus Rumex"]) + let v = native_list_append(v, ["igil", "noun", "iġilas", "iġiles", "iġile", "", "hedgehog porcupine"]) + let v = native_list_append(v, ["swester", "noun", "swester", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scape", "noun", "scape", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sara", "noun", "sara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hronfisc", "noun", "hronfiscas", "hronfisċes", "hronfisċe", "", "alternative form of"]) + let v = native_list_append(v, ["Etna", "noun", "Etna", "", "", "", "Etna volcano in"]) + let v = native_list_append(v, ["brimliþend", "noun", "brimlīþend", "brimlīþendes", "brimlīþende", "", "seafarer sea-traveller"]) + let v = native_list_append(v, ["hwealf", "noun", "hwealfa", "hwealfe", "hwealfe", "", "vault arch"]) + let v = native_list_append(v, ["slef", "noun", "slēfa", "slēfe", "slēfe", "", "alternative form of"]) + let v = native_list_append(v, ["walhhnutu", "noun", "walhhnutu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["handa", "noun", "handa", "", "", "", "inflection of hand"]) + let v = native_list_append(v, ["tange", "noun", "tange", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hosu", "noun", "hosa", "hose", "hose", "", "pod husk"]) + let v = native_list_append(v, ["mulum", "noun", "mulum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["halas", "noun", "halas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["glær", "noun", "glǣras", "glǣres", "glǣre", "", "amber"]) + let v = native_list_append(v, ["andan", "noun", "andan", "", "", "", "inflection of anda"]) + let v = native_list_append(v, ["postes", "noun", "postes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["binde", "noun", "bindan", "bindan", "bindan", "", "band wreath headband"]) + let v = native_list_append(v, ["fionde", "noun", "fionde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fixe", "noun", "fixe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fixas", "noun", "fixas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fixa", "noun", "fixa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["byla", "noun", "byla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tempel", "noun", "templu", "temples", "temple", "", "temple"]) + let v = native_list_append(v, ["Paule", "noun", "Paule", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["collecta", "noun", "collectan", "collectan", "collectan", "", "collect prayer before"]) + let v = native_list_append(v, ["byl", "noun", "bȳlas", "bȳles", "bȳle", "", "boil"]) + let v = native_list_append(v, ["sangas", "noun", "sangas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["goldes", "noun", "goldes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["telg", "noun", "telgas", "telges", "telge", "", "dye"]) + let v = native_list_append(v, ["inca", "noun", "incan", "incan", "incan", "", "doubt uncertainty question"]) + let v = native_list_append(v, ["songes", "noun", "songes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rinces", "noun", "rinces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tord", "noun", "torda", "tordes", "torde", "", "turd"]) + let v = native_list_append(v, ["stapel", "noun", "stapelas", "stapeles", "stapele", "", "alternative form of"]) + let v = native_list_append(v, ["stafa", "noun", "stafa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["rices", "noun", "rices", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["glida", "noun", "glidan", "glidan", "glidan", "", "kite bird"]) + let v = native_list_append(v, ["apan", "noun", "apan", "", "", "", "inflection of apa"]) + let v = native_list_append(v, ["hangelle", "noun", "hangellan", "hangellan", "hangellan", "", "an implement that"]) + let v = native_list_append(v, ["helman", "noun", "helman", "", "", "", "inflection of helma"]) + let v = native_list_append(v, ["lanan", "noun", "lanan", "", "", "", "inflection of lane"]) + let v = native_list_append(v, ["mannan", "noun", "mannan", "", "", "", "inflection of manna"]) + let v = native_list_append(v, ["Romane", "noun", "Rōmāne", "Rōmāna", "Rōmānum", "", "the Romans the"]) + let v = native_list_append(v, ["pinnan", "noun", "pinnan", "", "", "", "inflection of pinne"]) + let v = native_list_append(v, ["purpuran", "noun", "purpuran", "", "", "", "inflection of purpure"]) + let v = native_list_append(v, ["cornes", "noun", "cornes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Libia", "noun", "Libia", "", "", "", "Libya"]) + let v = native_list_append(v, ["cocas", "noun", "cocas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["mixen", "noun", "mixena", "mixene", "mixene", "", "a mixen a"]) + let v = native_list_append(v, ["godes", "noun", "godes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["worde", "noun", "worde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["purs", "noun", "pursas", "purses", "purse", "", "purse leather bag"]) + let v = native_list_append(v, ["broga", "noun", "brōgan", "brōgan", "brōgan", "", "terror dread horror"]) + let v = native_list_append(v, ["tigres", "noun", "tigres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["coper", "noun", "coper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hengen", "noun", "henġenna", "henġenne", "henġenne", "", "hanging"]) + let v = native_list_append(v, ["ongit", "noun", "onġitu", "onġites", "onġite", "", "alternative form of"]) + let v = native_list_append(v, ["redin", "noun", "redin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liges", "noun", "liges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["handfull", "noun", "handfulla", "handfulle", "handfulle", "", "handful"]) + let v = native_list_append(v, ["cie", "noun", "ċīan", "ċīan", "ċīan", "", "gill"]) + let v = native_list_append(v, ["worda", "noun", "worda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wina", "noun", "wina", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nieten", "noun", "nīetenu", "nīetenes", "nīetene", "", "animal"]) + let v = native_list_append(v, ["rop", "noun", "roppas", "roppes", "roppe", "", "alternative form of"]) + let v = native_list_append(v, ["fugel", "noun", "fuglas", "fugles", "fugle", "", "alternative form of"]) + let v = native_list_append(v, ["hlid", "noun", "hlidu", "hlides", "hlide", "", "cover lid"]) + let v = native_list_append(v, ["Eadwulf", "noun", "Eadwulf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Eadgar", "noun", "Eadgar", "Ēadgāres", "Ēadgāre", "", "a male given"]) + let v = native_list_append(v, ["hliþ", "noun", "hleoþu", "hliþes", "hliþe", "", "slope incline"]) + let v = native_list_append(v, ["æcernes", "noun", "æcernes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ægenwulf", "noun", "Ægenwulf", "Ægenwulfes", "Ægenwulfe", "", "a male given"]) + let v = native_list_append(v, ["halh", "noun", "halh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ægen", "noun", "Ægen", "Ǣġenes", "Ǣġene", "", "a male given"]) + let v = native_list_append(v, ["Ægenbeald", "noun", "Ægenbeald", "Ǣġenbealdes", "Ǣġenbealde", "", "a male given"]) + let v = native_list_append(v, ["worþ", "noun", "worþa", "worþe", "worþe", "", "enclosure"]) + let v = native_list_append(v, ["worð", "noun", "worð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hæla", "noun", "hǣlan", "hǣlan", "hǣlan", "", "alternative form of"]) + let v = native_list_append(v, ["alor", "noun", "aloras", "alores", "alore", "", "alder"]) + let v = native_list_append(v, ["Ælf", "noun", "Ælf", "", "", "", "a male given"]) + let v = native_list_append(v, ["hamm", "noun", "hamma", "hamme", "hamme", "", "ham inner knee"]) + let v = native_list_append(v, ["Eadburh", "noun", "Eadburh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Eanred", "noun", "Eanred", "", "", "", "a male given"]) + let v = native_list_append(v, ["Anlaf", "noun", "Anlaf", "Anlāfes", "Anlāfe", "", "a male given"]) + let v = native_list_append(v, ["eorþ", "noun", "eorþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eorð", "noun", "eorð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["eorðe", "noun", "eorðan", "eorðan", "eorðan", "", "alternative spelling of"]) + let v = native_list_append(v, ["byrig", "noun", "byrig", "", "", "", "inflection of burg"]) + let v = native_list_append(v, ["Æþelred", "noun", "Æþelred", "Æþelrēdes", "Æþelrēde", "", "a male given"]) + let v = native_list_append(v, ["Æðelred", "noun", "Æðelred", "Æðelredes", "Æðelrede", "", "a male given"]) + let v = native_list_append(v, ["æspe", "noun", "æspan", "æspan", "æspan", "", "an aspen"]) + let v = native_list_append(v, ["hyll", "noun", "hylla", "hylle", "hylle", "", "hill"]) + let v = native_list_append(v, ["Æþelhere", "noun", "Æþelhere", "Æþelheres", "", "", "a male given"]) + let v = native_list_append(v, ["Æðelhere", "noun", "Æðelhere", "Æðelheres", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Aldwine", "noun", "Aldwine", "Aldwines", "", "", "a male given"]) + let v = native_list_append(v, ["sceaga", "noun", "sċeagan", "sċeagan", "sċeagan", "", "copse thicket"]) + let v = native_list_append(v, ["Cynferþ", "noun", "Cynferþ", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cynferð", "noun", "Cynferð", "", "", "", "a male given"]) + let v = native_list_append(v, ["cotas", "noun", "cotas", "", "", "", "plural of cot"]) + let v = native_list_append(v, ["bures", "noun", "bures", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Eana", "noun", "Eana", "", "", "", "a male given"]) + let v = native_list_append(v, ["lofa", "noun", "lofa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wearg", "noun", "weargas", "wearges", "wearge", "", "criminal reprobate felon"]) + let v = native_list_append(v, ["wearh", "noun", "weargas", "wearges", "wearge", "", "alternative spelling of"]) + let v = native_list_append(v, ["tungol", "noun", "tunglu", "tungles", "tungle", "", "heavenly body planet"]) + let v = native_list_append(v, ["nyten", "noun", "nȳtenu", "nȳtenes", "nȳtene", "", "alternative form of"]) + let v = native_list_append(v, ["seld", "noun", "seld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leade", "noun", "leade", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["casera", "noun", "casera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dryhten", "noun", "dryhtnas", "dryhtnes", "dryhtne", "", "a lord"]) + let v = native_list_append(v, ["drihtlice", "noun", "drihtliċan", "", "", "", "a lady a"]) + let v = native_list_append(v, ["scian", "noun", "scian", "", "", "", "inflection of sċīa"]) + let v = native_list_append(v, ["eom", "noun", "eom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["myln", "noun", "myln", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hlose", "noun", "hlōsan", "hlōsan", "hlōsan", "", "a pigsty"]) + let v = native_list_append(v, ["mægþe", "noun", "mægþe", "", "", "", "mayweed"]) + let v = native_list_append(v, ["mægðe", "noun", "mægðe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["scilling", "noun", "sċillingas", "sċillinges", "sċillinge", "", "a shilling"]) + let v = native_list_append(v, ["Punica", "noun", "Punica", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hlæder", "noun", "hlǣdra", "hlǣdre", "hlǣdre", "", "ladder"]) + let v = native_list_append(v, ["scilla", "noun", "scilla", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["scille", "noun", "scille", "", "", "", "inflection of sċill"]) + let v = native_list_append(v, ["geata", "noun", "geata", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["laþgeteona", "noun", "lāþġetēonan", "lāþġetēonan", "lāþġetēonan", "", "hated assailant hostile"]) + let v = native_list_append(v, ["manfordædla", "noun", "mānfordǣdlan", "mānfordǣdlan", "mānfordǣdlan", "", "wicked destroyer"]) + let v = native_list_append(v, ["sægrund", "noun", "sǣgrundas", "sǣgrundes", "sǣgrunde", "", "the bottom of"]) + let v = native_list_append(v, ["yþlaf", "noun", "ȳþlāfa", "ȳþlāfe", "ȳþlāfe", "", "what is left"]) + let v = native_list_append(v, ["fyllu", "noun", "fylla", "fylle", "fylle", "", "ones fill fulness"]) + let v = native_list_append(v, ["taum", "noun", "taum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Noe", "noun", "Noe", "Noēs", "Noē", "", "Noah Biblical character"]) + let v = native_list_append(v, ["sterra", "noun", "sterran", "sterran", "sterran", "", "alternative form of"]) + let v = native_list_append(v, ["feld", "noun", "felda", "felda", "felda", "", "field"]) + let v = native_list_append(v, ["heaþulac", "noun", "heaþulāc", "heaþulāces", "heaþulāce", "", "battle fighting"]) + let v = native_list_append(v, ["gielpe", "noun", "gielpe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heafodmæg", "noun", "hēafodmāgas", "hēafodmǣġes", "hēafodmǣġe", "", "close or important"]) + let v = native_list_append(v, ["sæcc", "noun", "sæċċa", "sæċċe", "sæċċe", "", "battle strife fighting"]) + let v = native_list_append(v, ["eotenas", "noun", "eotenas", "", "", "", "plural of eoten"]) + let v = native_list_append(v, ["eafoþ", "noun", "eafoþu", "eafoþes", "eafoþe", "", "strength"]) + let v = native_list_append(v, ["Bryttas", "noun", "Brytta", "", "Bryttum", "", "alternative form of"]) + let v = native_list_append(v, ["hleahtor", "noun", "hleahtras", "hleahtres", "hleahtre", "", "laughter"]) + let v = native_list_append(v, ["fant", "noun", "fant", "", "", "", "font fountain spring"]) + let v = native_list_append(v, ["eþelweard", "noun", "ēþelweardas", "ēþelweardes", "ēþelwearde", "", "guardian of the"]) + let v = native_list_append(v, ["mancynn", "noun", "mancynn", "mancynnes", "mancynne", "", "humanity mankind"]) + let v = native_list_append(v, ["sæbat", "noun", "sǣbātas", "sǣbātes", "sǣbāte", "", "ship"]) + let v = native_list_append(v, ["burse", "noun", "bursan", "bursan", "bursan", "", "bag pouch"]) + let v = native_list_append(v, ["diepe", "noun", "dīepan", "dīepan", "dīepan", "", "the deep"]) + let v = native_list_append(v, ["apostol", "noun", "apostolas", "apostoles", "apostole", "", "apostle"]) + let v = native_list_append(v, ["naman", "noun", "naman", "", "", "", "inflection of nama"]) + let v = native_list_append(v, ["landbuendum", "noun", "landbuendum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ampre", "noun", "ampran", "ampran", "ampran", "", "sorrel"]) + let v = native_list_append(v, ["mecum", "noun", "mecum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["endedæg", "noun", "endedagas", "endedæġes", "endedæġe", "", "final day day"]) + let v = native_list_append(v, ["wordhord", "noun", "wordhorda", "wordhordes", "wordhorde", "", "treasure of words"]) + let v = native_list_append(v, ["apostata", "noun", "apostatan", "apostatan", "apostatan", "", "apostate"]) + let v = native_list_append(v, ["swær", "noun", "swær", "", "", "", "a burden labour"]) + let v = native_list_append(v, ["binne", "noun", "binne", "", "", "", "inflection of binn"]) + let v = native_list_append(v, ["æþel", "noun", "ǣþelas", "ǣþeles", "ǣþele", "", "homeland ancestral territory"]) + let v = native_list_append(v, ["eodor", "noun", "eodoras", "eodores", "eodore", "", "alternative form of"]) + let v = native_list_append(v, ["gomene", "noun", "gomene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hyldo", "noun", "hyldo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hafela", "noun", "hafelan", "hafelan", "hafelan", "", "head"]) + let v = native_list_append(v, ["drihten", "noun", "drihtnas", "drihtnes", "drihtne", "", "alternative form of"]) + let v = native_list_append(v, ["gielpword", "noun", "ġielpword", "ġielpwordes", "ġielpworde", "", "boastful word"]) + let v = native_list_append(v, ["fæhþe", "noun", "fæhþe", "", "", "", "inflection of fǣhþu"]) + let v = native_list_append(v, ["caser", "noun", "cāseras", "cāseres", "cāsere", "", "alternative form of"]) + let v = native_list_append(v, ["metod", "noun", "metodas", "metodes", "metode", "", "fate destiny death"]) + let v = native_list_append(v, ["forbode", "noun", "forbode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["forbodes", "noun", "forbodes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Salomon", "noun", "Salomon", "Salomones", "Salomone", "", "Solomon son of"]) + let v = native_list_append(v, ["pipere", "noun", "pīperas", "pīperes", "pīpere", "", "piper"]) + let v = native_list_append(v, ["postola", "noun", "postola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["cin", "noun", "cin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tura", "noun", "tura", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fanum", "noun", "fanum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ælfadl", "noun", "ælfādla", "ælfādle", "ælfādle", "", "alternative form of"]) + let v = native_list_append(v, ["adl", "noun", "ādla", "ādle", "ādle", "", "disease"]) + let v = native_list_append(v, ["anga", "noun", "angan", "angan", "angan", "", "a spike sting"]) + let v = native_list_append(v, ["hæra", "noun", "hæra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Ebba", "noun", "Ebba", "", "", "", "a male given"]) + let v = native_list_append(v, ["ilfetu", "noun", "ilfetu", "", "", "", "swan"]) + let v = native_list_append(v, ["ilfete", "noun", "ilfete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sanda", "noun", "sanda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["stiga", "noun", "stiga", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["Sinai", "noun", "Sinai", "", "", "", "Sinai a mountain"]) + let v = native_list_append(v, ["benna", "noun", "benna", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["benne", "noun", "benne", "", "", "", "inflection of benn"]) + let v = native_list_append(v, ["timbra", "noun", "timbra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gled", "noun", "glēde", "glēde", "glēde", "", "burning or live"]) + let v = native_list_append(v, ["receda", "noun", "receda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["flyge", "noun", "flyge", "", "", "", "flight flying"]) + let v = native_list_append(v, ["flyte", "noun", "flyte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mancynne", "noun", "mancynne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fyrene", "noun", "fyrene", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["leohte", "noun", "leohte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Dunstan", "noun", "Dunstan", "Dunstānes", "Dunstāne", "", "a male given"]) + let v = native_list_append(v, ["passio", "noun", "passio", "", "", "", "the passion of"]) + let v = native_list_append(v, ["lippa", "noun", "lippan", "lippan", "lippan", "", "lip"]) + let v = native_list_append(v, ["lande", "noun", "lande", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sporan", "noun", "sporan", "", "", "", "inflection of spora"]) + let v = native_list_append(v, ["Edda", "noun", "Edda", "", "", "", "a male given"]) + let v = native_list_append(v, ["byge", "noun", "byġas", "byġes", "byġe", "", "curve bend"]) + let v = native_list_append(v, ["masc", "noun", "masċ", "masċes", "masċe", "", "net"]) + let v = native_list_append(v, ["sware", "noun", "sware", "", "", "", "inflection of swaru"]) + let v = native_list_append(v, ["hlæw", "noun", "hlǣwas", "hlǣwes", "hlǣwe", "", "mound hill barrow"]) + let v = native_list_append(v, ["hramsa", "noun", "hramsan", "hramsan", "hramsan", "", "onion"]) + let v = native_list_append(v, ["mealwe", "noun", "mealwan", "mealwan", "mealwan", "", "mallow"]) + let v = native_list_append(v, ["fifealde", "noun", "fīfealdan", "fīfealdan", "fīfealdan", "", "alternative form of"]) + let v = native_list_append(v, ["scearseax", "noun", "sċearseax", "sċearseaxes", "sċearseaxe", "", "alternative form of"]) + let v = native_list_append(v, ["Crist", "noun", "Crist", "Cristes", "Criste", "", "Christ"]) + let v = native_list_append(v, ["eorþan", "noun", "eorþan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["folca", "noun", "folca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hosa", "noun", "hosa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["swefna", "noun", "swefna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nihte", "noun", "nihte", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["beacen", "noun", "bēacnu", "bēacnes", "bēacne", "", "alternative form of"]) + let v = native_list_append(v, ["reordberend", "noun", "reordberende", "reordberendes", "reordberende", "", "voice-bearer person"]) + let v = native_list_append(v, ["siden", "noun", "sidenna", "sidenne", "sidenne", "", "magic"]) + let v = native_list_append(v, ["ild", "noun", "ild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gimmas", "noun", "gimmas", "", "", "", "plural of ġimm"]) + let v = native_list_append(v, ["beama", "noun", "beama", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sceatum", "noun", "sceatum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["foldan", "noun", "foldan", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["moldan", "noun", "moldan", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["feondas", "noun", "feondas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cyma", "noun", "cyma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["cymas", "noun", "cymas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["wanan", "noun", "wanan", "", "", "", "inflection of wana"]) + let v = native_list_append(v, ["bleo", "noun", "blēo", "blēowes", "blēowe", "", "colour"]) + let v = native_list_append(v, ["sorgum", "noun", "sorgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["mihte", "noun", "mihte", "", "", "", "inflection of miht"]) + let v = native_list_append(v, ["gesihþ", "noun", "ġesihþa", "ġesihþe", "ġesihþe", "", "sight vision"]) + let v = native_list_append(v, ["lec", "noun", "lēċas", "lēċes", "lēċe", "", "look regard"]) + let v = native_list_append(v, ["eaxlegespann", "noun", "eaxleġespann", "eaxleġespannes", "eaxleġespanne", "", "crosspiece crossbar"]) + let v = native_list_append(v, ["dryhtnes", "noun", "dryhtnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drihtnes", "noun", "drihtnes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sigebeam", "noun", "siġebēamas", "siġebēames", "siġebēame", "", "tree of victory"]) + let v = native_list_append(v, ["helend", "noun", "helend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæp", "noun", "sapu", "sæpes", "sæpe", "", "sap of plants"]) + let v = native_list_append(v, ["Milred", "noun", "Milred", "", "", "", "a male given"]) + let v = native_list_append(v, ["Tutta", "noun", "Tutta", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ercole", "noun", "Ercole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Efe", "noun", "Efe", "Ēfan", "Ēfan", "", "Eve the first"]) + let v = native_list_append(v, ["Ine", "noun", "Ine", "Īnes", "Īne", "", "a male given"]) + let v = native_list_append(v, ["Osmund", "noun", "Osmund", "", "", "", "a male given"]) + let v = native_list_append(v, ["pliht", "noun", "plihtas", "plihtes", "plihte", "", "danger risk"]) + let v = native_list_append(v, ["prætt", "noun", "prattas", "prættes", "prætte", "", "trick prank practical"]) + let v = native_list_append(v, ["Salomone", "noun", "Salomone", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Sodoma", "noun", "Sodoma", "Sodoman", "Sodoman", "", "Sodom ancient Biblical"]) + let v = native_list_append(v, ["senn", "noun", "senn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trog", "noun", "trogas", "troges", "troge", "", "trough"]) + let v = native_list_append(v, ["frum", "noun", "frum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fordes", "noun", "fordes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nosa", "noun", "nosa", "", "", "", "inflection of nosu"]) + let v = native_list_append(v, ["iren", "noun", "iren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["legas", "noun", "legas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["leges", "noun", "leges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["leget", "noun", "leget", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ligas", "noun", "ligas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["liget", "noun", "līġet", "līġetes", "līġete", "", "synonym of līeġetu"]) + let v = native_list_append(v, ["spella", "noun", "spella", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["loces", "noun", "loces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["meares", "noun", "meares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cyme", "noun", "cymas", "cymes", "cymum", "", "coming arrival advent"]) + let v = native_list_append(v, ["grut", "noun", "grut", "grūt", "grȳt", "", "malt mash"]) + let v = native_list_append(v, ["lissa", "noun", "lissa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["sigas", "noun", "sigas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cete", "noun", "cete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sandes", "noun", "sandes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["reces", "noun", "reces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["saca", "noun", "saca", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["mereces", "noun", "mereces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["merece", "noun", "mereċas", "mereċes", "mereċe", "", "march smallage plant"]) + let v = native_list_append(v, ["giren", "noun", "girena", "girene", "girene", "", "alternative form of"]) + let v = native_list_append(v, ["mearas", "noun", "mearas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["meara", "noun", "meara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["atan", "noun", "atan", "", "", "", "inflection of āte"]) + let v = native_list_append(v, ["anad", "noun", "anad", "", "", "", "waste desert solitude"]) + let v = native_list_append(v, ["fodan", "noun", "fodan", "", "", "", "inflection of fōda"]) + let v = native_list_append(v, ["coce", "noun", "coce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["coces", "noun", "coces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["coceras", "noun", "coceras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["stola", "noun", "stola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sumur", "noun", "sumuras", "sumures", "sumure", "", "alternative spelling of"]) + let v = native_list_append(v, ["ᚷᚫᚷᚩᚷᚫ", "noun", "ᚷᚫᚷᚩᚷᚫ", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ᛗᚫᚷᚫ", "noun", "ᛗᚫᚷᚫ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ᛗᚫᚷ", "noun", "ᛗᚫᚷ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᛗᛖᛞᚢ", "noun", "ᛗᛖᛞᚢ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["hieg", "noun", "hieg", "hīeġes", "hīeġe", "", "hay"]) + let v = native_list_append(v, ["telde", "noun", "telde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brega", "noun", "brega", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faca", "noun", "faca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dagas", "noun", "dagas", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["dagum", "noun", "dagum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dala", "noun", "dala", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dalum", "noun", "dalum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hierre", "noun", "hierre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gestas", "noun", "gestas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["campas", "noun", "campas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["campes", "noun", "campes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sinca", "noun", "sinca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Wigan", "noun", "Wigan", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["hrot", "noun", "hrotu", "hrotes", "hrote", "", "thick fluid scum"]) + let v = native_list_append(v, ["scora", "noun", "scora", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["torres", "noun", "torres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nead", "noun", "nead", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Babilon", "noun", "Babilon", "", "", "", "Babylon an ancient"]) + let v = native_list_append(v, ["epistole", "noun", "epistole", "", "", "", "inflection of epistol"]) + let v = native_list_append(v, ["pinca", "noun", "pincan", "pincan", "pincan", "", "peak"]) + let v = native_list_append(v, ["sanga", "noun", "sanga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["neten", "noun", "nētenu", "nētenes", "nētene", "", "alternative form of"]) + let v = native_list_append(v, ["cymes", "noun", "cymes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["beogang", "noun", "bēogangas", "bēoganges", "bēogange", "", "swarm of bees"]) + let v = native_list_append(v, ["bolde", "noun", "bolde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gerysena", "noun", "gerysena", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gerisena", "noun", "gerisena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gerisene", "noun", "ġerisene", "ġerisenes", "ġerisene", "", "what is fitting"]) + let v = native_list_append(v, ["ancres", "noun", "ancres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Caspian", "noun", "Caspian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["scipu", "noun", "scipu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ceald", "noun", "ċeald", "ċealdes", "ċealde", "", "cold coldness"]) + let v = native_list_append(v, ["ieldra", "noun", "ieldran", "ieldran", "ieldran", "", "parent"]) + let v = native_list_append(v, ["regne", "noun", "regne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ladteow", "noun", "lādtēowas", "lādtēowes", "lādtēowe", "", "leader"]) + let v = native_list_append(v, ["preon", "noun", "prēonas", "prēones", "prēone", "", "pin broach fastening"]) + let v = native_list_append(v, ["soþgied", "noun", "soþgied", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lieges", "noun", "lieges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sumera", "noun", "sumera", "", "", "", "dative of sumer"]) + let v = native_list_append(v, ["ofre", "noun", "ofre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hyra", "noun", "hyra", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["flanes", "noun", "flanes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["postum", "noun", "postum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bendes", "noun", "bendes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tida", "noun", "tida", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["dile", "noun", "dile", "diles", "", "", "dill Anethum graveolens"]) + let v = native_list_append(v, ["garum", "noun", "garum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hiw", "noun", "hīw", "hīwes", "hīwe", "", "alternative form of"]) + let v = native_list_append(v, ["merc", "noun", "merc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["græd", "noun", "græd", "", "", "", "greed"]) + let v = native_list_append(v, ["heow", "noun", "heow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leam", "noun", "leam", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gerar", "noun", "ġerār", "ġerāres", "ġerāre", "", "roar howl"]) + let v = native_list_append(v, ["ged", "noun", "ged", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fostre", "noun", "fostre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["adum", "noun", "adum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["atre", "noun", "atre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["alwe", "noun", "alwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agende", "noun", "agende", "", "", "", "inflection of āgend"]) + let v = native_list_append(v, ["bryne", "noun", "brynas", "brynes", "brynum", "", "burning fire flame"]) + let v = native_list_append(v, ["dage", "noun", "dage", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["engle", "noun", "engle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["strande", "noun", "strande", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["milte", "noun", "miltan", "miltan", "miltan", "", "spleen"]) + let v = native_list_append(v, ["oretta", "noun", "ōrettan", "ōrettan", "ōrettan", "", "warrior champion"]) + let v = native_list_append(v, ["ridda", "noun", "riddan", "riddan", "riddan", "", "rider"]) + let v = native_list_append(v, ["lyden", "noun", "lyden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diles", "noun", "diles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["aldre", "noun", "aldre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["pistolas", "noun", "pistolas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hadas", "noun", "hadas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["feos", "noun", "feos", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gigantes", "noun", "gigantes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["stana", "noun", "stana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["eares", "noun", "eares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sottes", "noun", "sottes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["salum", "noun", "salum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hynden", "noun", "hyndenna", "hyndenne", "hyndenne", "", "A group of"]) + let v = native_list_append(v, ["ultor", "noun", "ultras", "ultres", "ultre", "", "vulture"]) + let v = native_list_append(v, ["gamen", "noun", "gamena", "gamenes", "gamene", "", "game sport or"]) + let v = native_list_append(v, ["rume", "noun", "rume", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lare", "noun", "lare", "", "", "", "inflection of lār"]) + let v = native_list_append(v, ["hores", "noun", "hores", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["darum", "noun", "darum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lores", "noun", "lores", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hamme", "noun", "hamme", "", "", "", "inflection of hamm"]) + let v = native_list_append(v, ["isen", "noun", "isen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sange", "noun", "sange", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["strenge", "noun", "strenge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hær", "noun", "hǣr", "hǣres", "hǣre", "", "hair"]) + let v = native_list_append(v, ["hære", "noun", "hǣran", "hǣran", "hǣran", "", "sackcloth"]) + let v = native_list_append(v, ["hering", "noun", "heringa", "heringe", "heringe", "", "praise"]) + let v = native_list_append(v, ["gæst", "noun", "gǣstas", "gǣstes", "gǣste", "", "alternative form of"]) + let v = native_list_append(v, ["wol", "noun", "wōlas", "wōles", "wōle", "", "plague pestilence"]) + let v = native_list_append(v, ["gilde", "noun", "gilde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["daro", "noun", "daro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bæst", "noun", "bæstas", "bæstes", "bæste", "", "bast inner bark"]) + let v = native_list_append(v, ["mæle", "noun", "mæle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hinde", "noun", "hinde", "", "", "", "inflection of hind"]) + let v = native_list_append(v, ["caseras", "noun", "caseras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hoca", "noun", "hoca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hule", "noun", "hule", "", "", "", "inflection of hulu"]) + let v = native_list_append(v, ["wenge", "noun", "wenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boge", "noun", "boge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["welig", "noun", "weligas", "weliges", "welige", "", "willow"]) + let v = native_list_append(v, ["adesa", "noun", "adesan", "adesan", "adesan", "", "adze"]) + let v = native_list_append(v, ["wergild", "noun", "wergild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amigdale", "noun", "amigdale", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["roop", "noun", "roop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ern", "noun", "erna", "ernes", "erne", "", "alternative form of"]) + let v = native_list_append(v, ["Denemearc", "noun", "Denemearc", "Denemearce", "Denemearce", "", "Denmark a country"]) + let v = native_list_append(v, ["adla", "noun", "adla", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["Eotaland", "noun", "Eotaland", "Ēotalandes", "Ēotalande", "", "Jutland"]) + let v = native_list_append(v, ["gyden", "noun", "gydenna", "gydenne", "gydenne", "", "goddess"]) + let v = native_list_append(v, ["gyd", "noun", "gyd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["termin", "noun", "termin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cus", "noun", "cus", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mulas", "noun", "mulas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gryn", "noun", "gryna", "gryne", "gryne", "", "alternative form of"]) + let v = native_list_append(v, ["mul", "noun", "mūlas", "mūles", "mūle", "", "mule"]) + let v = native_list_append(v, ["syge", "noun", "syge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grine", "noun", "grine", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["roder", "noun", "roderas", "roderes", "rodere", "", "alternative form of"]) + let v = native_list_append(v, ["æscas", "noun", "æscas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ric", "noun", "rīcu", "rīces", "rīc", "", "alternative form of"]) + let v = native_list_append(v, ["tyd", "noun", "tyd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deag", "noun", "dēaga", "dēage", "dēage", "", "colour hue tinge"]) + let v = native_list_append(v, ["pott", "noun", "pottas", "pottes", "potte", "", "pot"]) + let v = native_list_append(v, ["foxa", "noun", "foxa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gete", "noun", "gete", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["notum", "noun", "notum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hyrne", "noun", "hyrnan", "hyrnan", "hyrnan", "", "corner"]) + let v = native_list_append(v, ["becere", "noun", "becere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marma", "noun", "marma", "marman", "marman", "", "marble"]) + let v = native_list_append(v, ["falses", "noun", "falses", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fers", "noun", "fersa", "ferses", "ferse", "", "verse"]) + let v = native_list_append(v, ["martyre", "noun", "martyre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["martyres", "noun", "martyres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bræþ", "noun", "brǣþas", "brǣþes", "brǣþe", "", "odour smell scent"]) + let v = native_list_append(v, ["tweo", "noun", "twēon", "twēon", "twēon", "", "doubt"]) + let v = native_list_append(v, ["bocstæf", "noun", "bōcstafas", "bōcstæfes", "bōcstæfe", "", "written character letter"]) + let v = native_list_append(v, ["gangas", "noun", "gangas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["orlæg", "noun", "orlagu", "orlæġes", "orlæġe", "", "fate destiny"]) + let v = native_list_append(v, ["orgol", "noun", "orgele", "orgele", "orgele", "", "pride"]) + let v = native_list_append(v, ["lage", "noun", "lage", "", "", "", "inflection of lagu"]) + let v = native_list_append(v, ["hoge", "noun", "hoge", "", "", "", "inflection of hogu"]) + let v = native_list_append(v, ["cleafa", "noun", "clēafan", "clēafan", "clēafan", "", "that which is"]) + let v = native_list_append(v, ["bysen", "noun", "bȳsna", "bȳsne", "bȳsne", "", "alternative form of"]) + let v = native_list_append(v, ["forebisen", "noun", "forebīsena", "forebīsene", "forebīsene", "", "alternative form of"]) + let v = native_list_append(v, ["bridd", "noun", "briddas", "briddes", "bridde", "", "chick a young"]) + let v = native_list_append(v, ["lacu", "noun", "laca", "lace", "lace", "", "pool pond"]) + let v = native_list_append(v, ["beote", "noun", "beote", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lenden", "noun", "lendenu", "lendenes", "lendene", "", "loin"]) + let v = native_list_append(v, ["nebb", "noun", "nebba", "nebbes", "nebbe", "", "face"]) + let v = native_list_append(v, ["clyster", "noun", "clystru", "clystres", "clystre", "", "cluster"]) + let v = native_list_append(v, ["bispell", "noun", "bīspell", "bīspelles", "bīspelle", "", "example pattern proverb"]) + let v = native_list_append(v, ["bispel", "noun", "bispel", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gespelia", "noun", "ġespelian", "ġespelian", "ġespelian", "", "vicar"]) + let v = native_list_append(v, ["leoda", "noun", "lēodan", "lēodan", "lēodan", "", "a man person"]) + let v = native_list_append(v, ["copp", "noun", "coppas", "coppes", "coppe", "", "cup vessel"]) + let v = native_list_append(v, ["cofan", "noun", "cofan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sunnu", "noun", "sunnu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ricen", "noun", "rīċenna", "rīċenne", "rīċenne", "", "a female ruler"]) + let v = native_list_append(v, ["andcwiss", "noun", "andcwissa", "andcwisse", "andcwisse", "", "a reply answer"]) + let v = native_list_append(v, ["cwide", "noun", "cwidas", "cwides", "cwidum", "", "saying"]) + let v = native_list_append(v, ["gecwide", "noun", "ġecwidas", "ġecwides", "ġecwide", "", "a speech word"]) + let v = native_list_append(v, ["steore", "noun", "stēoran", "stēoran", "stēoran", "", "direction discipline"]) + let v = native_list_append(v, ["steorend", "noun", "stēorend", "stēorendes", "stēorende", "", "director ruler leader"]) + let v = native_list_append(v, ["foreward", "noun", "forewarde", "forewarde", "forewarde", "", "alternative form of"]) + let v = native_list_append(v, ["freod", "noun", "frēoda", "frēode", "frēode", "", "peace frith"]) + let v = native_list_append(v, ["freols", "noun", "frēolsas", "frēolses", "frēolse", "", "freedom"]) + let v = native_list_append(v, ["neaht", "noun", "nieht", "nieht", "nieht", "", "alternative form of"]) + let v = native_list_append(v, ["orlege", "noun", "orleġu", "orleġes", "orleġe", "", "war strife hostility"]) + let v = native_list_append(v, ["orleahter", "noun", "orleahtras", "orleahtres", "orleahtre", "", "a divider separator"]) + let v = native_list_append(v, ["ofett", "noun", "ofetta", "ofettes", "ofette", "", "fruit"]) + let v = native_list_append(v, ["æþelu", "noun", "æþela", "æþele", "æþele", "", "nobility aristocracy"]) + let v = native_list_append(v, ["cist", "noun", "ċista", "ċiste", "ċiste", "", "box chest"]) + let v = native_list_append(v, ["behof", "noun", "behōf", "behōfes", "behōfe", "", "advantage behoof profit"]) + let v = native_list_append(v, ["cnif", "noun", "cnīfas", "cnīfes", "cnīfe", "", "knife"]) + let v = native_list_append(v, ["ordes", "noun", "ordes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["treu", "noun", "treu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grima", "noun", "grīman", "grīman", "grīman", "", "mask"]) + let v = native_list_append(v, ["frocga", "noun", "frocgan", "frocgan", "frocgan", "", "frog"]) + let v = native_list_append(v, ["steall", "noun", "steallas", "stealles", "stealle", "", "a position especially"]) + let v = native_list_append(v, ["teag", "noun", "tēaga", "tēage", "tēage", "", "cord band thong"]) + let v = native_list_append(v, ["hungras", "noun", "hungras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["scua", "noun", "sċūan", "sċūan", "sċūan", "", "shadow"]) + let v = native_list_append(v, ["ampella", "noun", "ampellan", "ampellan", "ampellan", "", "a flask bottle"]) + let v = native_list_append(v, ["ræden", "noun", "rǣdenna", "rǣdenne", "rǣdenne", "", "condition state terms"]) + let v = native_list_append(v, ["leag", "noun", "lēaga", "lēage", "lēage", "", "lye a mixture"]) + let v = native_list_append(v, ["cycene", "noun", "cyċenan", "cyċenan", "cyċenan", "", "kitchen"]) + let v = native_list_append(v, ["coc", "noun", "coccas", "cocces", "cocce", "", "alternative form of"]) + let v = native_list_append(v, ["feare", "noun", "feare", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["helpe", "noun", "helpe", "", "", "", "inflection of help"]) + let v = native_list_append(v, ["nexta", "noun", "nexta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mindom", "noun", "mindōmas", "mindōmes", "mindōme", "", "smallness abjectness"]) + let v = native_list_append(v, ["mircels", "noun", "mircelsas", "mircelses", "mircelse", "", "token sign"]) + let v = native_list_append(v, ["frowe", "noun", "frōwan", "frōwan", "frōwan", "", "woman lady"]) + let v = native_list_append(v, ["friclu", "noun", "fricla", "fricle", "fricle", "", "appetite"]) + let v = native_list_append(v, ["fricu", "noun", "frica", "frice", "frice", "", "use utilization"]) + let v = native_list_append(v, ["anlec", "noun", "anlēcas", "anlēċes", "anlēċe", "", "respect onlook regard"]) + let v = native_list_append(v, ["blædnes", "noun", "blǣdnessa", "blǣdnesse", "blǣdnesse", "", "flower blossom"]) + let v = native_list_append(v, ["ligetu", "noun", "līġeta", "līġete", "līġete", "", "alternative form of"]) + let v = native_list_append(v, ["elþeod", "noun", "elþēoda", "elþēode", "elþēode", "", "foreign country or"]) + let v = native_list_append(v, ["tollas", "noun", "tollas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hobanca", "noun", "hōbancan", "hōbancan", "hōbancan", "", "a couch"]) + let v = native_list_append(v, ["mamor", "noun", "māmras", "māmres", "māmre", "", "lethargy heavy or"]) + let v = native_list_append(v, ["mamera", "noun", "mameran", "mameran", "mameran", "", "lethargy deep or"]) + let v = native_list_append(v, ["andweorc", "noun", "andweorca", "andweorces", "andweorce", "", "substance matter material"]) + let v = native_list_append(v, ["andwist", "noun", "andwiste", "andwiste", "andwiste", "", "support assistance"]) + let v = native_list_append(v, ["midwist", "noun", "midwiste", "midwiste", "midwiste", "", "presence"]) + let v = native_list_append(v, ["þyld", "noun", "þylda", "þyldes", "þylde", "", "patience long-suffering endurance"]) + let v = native_list_append(v, ["galdor", "noun", "galdru", "galdres", "galdre", "", "alternative form of"]) + let v = native_list_append(v, ["ansien", "noun", "ansīene", "ansīene", "ansīene", "", "face"]) + let v = native_list_append(v, ["feorm", "noun", "feorma", "feorme", "feorme", "", "food sustenance provision"]) + let v = native_list_append(v, ["hearra", "noun", "hearran", "hearran", "hearran", "", "lord master"]) + let v = native_list_append(v, ["yst", "noun", "ȳste", "ȳste", "ȳste", "", "storm tempest whirlwind"]) + let v = native_list_append(v, ["fulwiht", "noun", "fulwihtu", "fulwihtes", "fulwihte", "", "baptism"]) + let v = native_list_append(v, ["ræde", "noun", "rǣdan", "rǣdan", "rǣdan", "", "lesson reading"]) + let v = native_list_append(v, ["wase", "noun", "wāsan", "wāsan", "wāsan", "", "soft mud mire"]) + let v = native_list_append(v, ["wos", "noun", "wōs", "wōses", "wōse", "", "juice sap moisture"]) + let v = native_list_append(v, ["wrenc", "noun", "wrenċas", "wrenċes", "wrenċe", "", "wile stratagem trick"]) + let v = native_list_append(v, ["wrid", "noun", "wrīdas", "wrīdes", "wrīde", "", "plant"]) + let v = native_list_append(v, ["wroht", "noun", "wrōhta", "wrōhte", "wrōhte", "", "blame accusation slander"]) + let v = native_list_append(v, ["iecend", "noun", "īeċend", "īeċendes", "īeċende", "", "a promoter producer"]) + let v = native_list_append(v, ["iegstream", "noun", "īeġstrēamas", "īeġstrēames", "īeġstrēame", "", "a waterstream current"]) + let v = native_list_append(v, ["ielden", "noun", "ieldena", "ieldenes", "ieldene", "", "a delay a"]) + let v = native_list_append(v, ["ingehygd", "noun", "inġehyġda", "inġehyġde", "inġehyġde", "", "consciousness thought thought"]) + let v = native_list_append(v, ["gerene", "noun", "ġerēnu", "ġerēnes", "ġerēne", "", "alternative form of"]) + let v = native_list_append(v, ["gesegen", "noun", "ġeseġena", "ġeseġene", "ġeseġene", "", "conversation"]) + let v = native_list_append(v, ["dwæs", "noun", "dwǣsas", "dwǣses", "dwǣse", "", "a clumsy imposter"]) + let v = native_list_append(v, ["swige", "noun", "swige", "swīġan", "swīġan", "", "silence"]) + let v = native_list_append(v, ["cenep", "noun", "cenepas", "cenepes", "cenepe", "", "mustache"]) + let v = native_list_append(v, ["spyrd", "noun", "spyrdas", "spyrdes", "spyrde", "", "stadium"]) + let v = native_list_append(v, ["notu", "noun", "nota", "note", "note", "", "use"]) + let v = native_list_append(v, ["þenest", "noun", "þēnesta", "þēneste", "þēneste", "", "service"]) + let v = native_list_append(v, ["demere", "noun", "dēmeras", "dēmeres", "dēmere", "", "a judge"]) + let v = native_list_append(v, ["sagum", "noun", "sagum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stycce", "noun", "styċċu", "styċċes", "styċċe", "", "piece"]) + let v = native_list_append(v, ["stocc", "noun", "stoccas", "stocces", "stocce", "", "log"]) + let v = native_list_append(v, ["uprodor", "noun", "uprodoras", "uprodores", "uprodore", "", "firmament upper heavens"]) + let v = native_list_append(v, ["utscyte", "noun", "ūtsċytas", "ūtsċytes", "ūtsċyte", "", "an outfall outlet"]) + let v = native_list_append(v, ["popi", "noun", "popi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lendenu", "noun", "lendenu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["andgiete", "noun", "andġietan", "andġietan", "andġietan", "", "intellect understanding"]) + let v = native_list_append(v, ["þiccet", "noun", "þiccetu", "þiccetes", "þiccete", "", "thicket growth of"]) + let v = native_list_append(v, ["stæfrof", "noun", "stæfrōfa", "stæfrōfe", "stæfrōfe", "", "alphabet"]) + let v = native_list_append(v, ["stæfcræft", "noun", "stæfcræftas", "stæfcræftes", "stæfcræfte", "", "grammar"]) + let v = native_list_append(v, ["stæfgefeg", "noun", "stæfġefēġ", "stæfġefēġes", "stæfġefēġe", "", "a combination of"]) + let v = native_list_append(v, ["stæfleahtor", "noun", "stæfleahtor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stæfwritere", "noun", "stæfwritere", "", "", "", "writer author writer"]) + let v = native_list_append(v, ["langoþ", "noun", "langoþas", "langoþes", "langoþe", "", "longing"]) + let v = native_list_append(v, ["eormen", "noun", "eormen", "", "", "", "world earth"]) + let v = native_list_append(v, ["hlot", "noun", "hlota", "hlotes", "hlote", "", "portion share lot"]) + let v = native_list_append(v, ["fremu", "noun", "frema", "freme", "freme", "", "advantage benefit"]) + let v = native_list_append(v, ["stæger", "noun", "stǣġera", "stǣġere", "stǣġere", "", "stair step staircase"]) + let v = native_list_append(v, ["samodswegend", "noun", "samodswēġend", "samodswēġendes", "samodswēġende", "", "a consonant consonant"]) + let v = native_list_append(v, ["stær", "noun", "staras", "stæres", "stære", "", "starling"]) + let v = native_list_append(v, ["muwa", "noun", "muwa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fugles", "noun", "fugles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["egena", "noun", "egena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["forenama", "noun", "forenaman", "forenaman", "forenaman", "", "pronoun"]) + let v = native_list_append(v, ["gebigednes", "noun", "ġebīġednessa", "ġebīġednesse", "ġebīġednesse", "", "alternative form of"]) + let v = native_list_append(v, ["fiell", "noun", "fiellas", "fielles", "fielle", "", "a fall"]) + let v = native_list_append(v, ["Wendelsæ", "noun", "Wendelsæ", "Wendelsǣ", "Wendelsǣ", "", "the Mediterranean Sea"]) + let v = native_list_append(v, ["pearroc", "noun", "pearrocas", "pearroces", "pearroce", "", "a fence used"]) + let v = native_list_append(v, ["ladung", "noun", "lādunga", "lādunge", "lādunge", "", "excuse + genitive"]) + let v = native_list_append(v, ["lafor", "noun", "laforas", "lafores", "lafore", "", "leopard"]) + let v = native_list_append(v, ["aþexe", "noun", "āþexan", "āþexan", "āþexan", "", "lizard"]) + let v = native_list_append(v, ["balca", "noun", "balcan", "balcan", "balcan", "", "balk beam bank"]) + let v = native_list_append(v, ["brandes", "noun", "brandes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wedde", "noun", "wedde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cota", "noun", "cota", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["clerc", "noun", "clercas", "clerces", "clerce", "", "clergyman clerk"]) + let v = native_list_append(v, ["hordas", "noun", "hordas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["eolas", "noun", "eolas", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["huses", "noun", "huses", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["woþ", "noun", "wōþa", "wōþe", "wōþe", "", "sound noise cry"]) + let v = native_list_append(v, ["tacna", "noun", "tacna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["entes", "noun", "entes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["entas", "noun", "entas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gefegnes", "noun", "ġefēġnessa", "ġefēġnesse", "ġefēġnesse", "", "an association joining"]) + let v = native_list_append(v, ["wordmittung", "noun", "wordmittung", "", "", "", "a similitude literary"]) + let v = native_list_append(v, ["spona", "noun", "spona", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["larwa", "noun", "larwa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ancras", "noun", "ancras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ancra", "noun", "ancran", "ancran", "ancran", "", "anchor"]) + let v = native_list_append(v, ["smic", "noun", "smic", "", "", "", "smoke vapor"]) + let v = native_list_append(v, ["clipola", "noun", "clipolan", "clipolan", "clipolan", "", "vowel vowel sound"]) + let v = native_list_append(v, ["clipolgefeg", "noun", "clipolgefeg", "", "", "", "diphthong combination of"]) + let v = native_list_append(v, ["geteld", "noun", "ġeteld", "ġeteldes", "ġetelde", "", "tent pavilion awning"]) + let v = native_list_append(v, ["rideras", "noun", "rideras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ridera", "noun", "ridera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["assena", "noun", "assena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["cyte", "noun", "ċȳtan", "ċȳtan", "ċȳtan", "", "hut cabin"]) + let v = native_list_append(v, ["portcwene", "noun", "portcwene", "", "", "", "inflection of portcwēn"]) + let v = native_list_append(v, ["hecg", "noun", "heċġa", "heċġe", "heċġe", "", "fence"]) + let v = native_list_append(v, ["spild", "noun", "spilda", "spildes", "spilde", "", "destruction ruin"]) + let v = native_list_append(v, ["drithen", "noun", "drithen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gid", "noun", "gid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caseres", "noun", "caseres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ƀ", "noun", "ƀ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["gied", "noun", "gied", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytte", "noun", "bytte", "", "", "", "inflection of byt"]) + let v = native_list_append(v, ["hamma", "noun", "hamma", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["liif", "noun", "liif", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tuxum", "noun", "tuxum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["tolles", "noun", "tolles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fylde", "noun", "fylde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fyld", "noun", "fyldas", "fyldes", "fylde", "", "alternative form of"]) + let v = native_list_append(v, ["glædmann", "noun", "glædmenn", "glædmannes", "glædmenn", "", "a happy person"]) + let v = native_list_append(v, ["amor", "noun", "amoras", "amores", "amore", "", "a type of"]) + let v = native_list_append(v, ["kæppe", "noun", "kæppan", "kæppan", "kæppan", "", "alternative form of"]) + let v = native_list_append(v, ["tæl", "noun", "tǣle", "tǣle", "tǣle", "", "evil-speaking calumny disparagement"]) + let v = native_list_append(v, ["fearr", "noun", "fearras", "fearres", "fearre", "", "bull"]) + let v = native_list_append(v, ["blæse", "noun", "blæsan", "blæsan", "blæsan", "", "alternative form of"]) + let v = native_list_append(v, ["blæs", "noun", "blǣsas", "blǣses", "blǣse", "", "blowing"]) + let v = native_list_append(v, ["blæste", "noun", "blæste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["unware", "noun", "unware", "", "", "", "inflection of unwær"]) + let v = native_list_append(v, ["sæt", "noun", "sǣta", "sǣte", "sǣte", "", "ambush"]) + let v = native_list_append(v, ["finnes", "noun", "finnes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["strandes", "noun", "strandes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["manscipe", "noun", "mansċipas", "mansċipes", "mansċipe", "", "humanity courtesy kindness"]) + let v = native_list_append(v, ["scipe", "noun", "sċipas", "sċipes", "sċipe", "", "rank office dignity"]) + let v = native_list_append(v, ["brica", "noun", "brica", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bræð", "noun", "bræð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["redere", "noun", "redere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæs", "noun", "fasu", "fæses", "fæse", "", "fringe"]) + let v = native_list_append(v, ["engles", "noun", "engles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fyrs", "noun", "fyrs", "", "", "", "furze gorse"]) + let v = native_list_append(v, ["fyres", "noun", "fyres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wiif", "noun", "wiif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geweorc", "noun", "ġeweorc", "ġeweorces", "ġeweorce", "", "work something done"]) + let v = native_list_append(v, ["næster", "noun", "næster", "", "", "", "a lipped vessel"]) + let v = native_list_append(v, ["mæscre", "noun", "mæsċran", "mæsċran", "mæsċran", "", "mesh"]) + let v = native_list_append(v, ["fota", "noun", "fota", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wolcne", "noun", "wolcne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gifte", "noun", "gifte", "", "", "", "inflection of ġift"]) + let v = native_list_append(v, ["unweder", "noun", "unwedru", "unwedres", "unwedre", "", "bad weather storm"]) + let v = native_list_append(v, ["wedru", "noun", "wedru", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["wedres", "noun", "wedres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wedra", "noun", "wedra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wedre", "noun", "wedre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wedrum", "noun", "wedrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["landes", "noun", "landes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sifa", "noun", "sifa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ealh", "noun", "ēalas", "ēales", "ēale", "", "temple"]) + let v = native_list_append(v, ["cyninge", "noun", "cyningan", "cyningan", "cyningan", "", "a female king"]) + let v = native_list_append(v, ["bucc", "noun", "buccas", "bucces", "bucce", "", "buck male deer"]) + let v = native_list_append(v, ["coltas", "noun", "coltas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["spelle", "noun", "spelle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["elde", "noun", "elda", "", "eldum", "", "alternative form of"]) + let v = native_list_append(v, ["wigle", "noun", "wiġlu", "wiġles", "wiġle", "", "divination"]) + let v = native_list_append(v, ["gildes", "noun", "gildes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["grietu", "noun", "grīeta", "grīete", "grīete", "", "greatness size"]) + let v = native_list_append(v, ["endes", "noun", "endes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bitum", "noun", "bitum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["earne", "noun", "earne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["coþu", "noun", "coþa", "coþe", "coþe", "", "disease sickness"]) + let v = native_list_append(v, ["gleo", "noun", "glēo", "glēowes", "glēowe", "", "joy glee"]) + let v = native_list_append(v, ["stut", "noun", "stūtas", "stūtes", "stūte", "", "gnat midge biting"]) + let v = native_list_append(v, ["blostm", "noun", "blōstmas", "blōstmes", "blōstme", "", "blossom bloom blooming"]) + let v = native_list_append(v, ["blostma", "noun", "blōstman", "blōstman", "blōstman", "", "flower blossom"]) + let v = native_list_append(v, ["hige", "noun", "hige", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strenges", "noun", "strenges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["snegl", "noun", "snegl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snegle", "noun", "snegle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["snegles", "noun", "snegles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hoces", "noun", "hoces", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wuna", "noun", "wunan", "wunan", "wunan", "", "habit custom"]) + let v = native_list_append(v, ["Esta", "noun", "Esta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fostres", "noun", "fostres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["becan", "noun", "becan", "", "", "", "inflection of bēċe"]) + let v = native_list_append(v, ["briddas", "noun", "briddas", "", "", "", "plural of bridd"]) + let v = native_list_append(v, ["bridda", "noun", "bridda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["briddes", "noun", "briddes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bridde", "noun", "bridde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["briddum", "noun", "briddum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sidu", "noun", "sida", "sida", "sida", "", "custom habit practice"]) + let v = native_list_append(v, ["sigor", "noun", "sigoras", "sigores", "sigore", "", "victory triumph success"]) + let v = native_list_append(v, ["ostes", "noun", "ostes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gemæne", "noun", "ġemǣnu", "ġemǣnes", "ġemǣne", "", "fellowship"]) + let v = native_list_append(v, ["ræswung", "noun", "ræswung", "", "", "", "reasoning"]) + let v = native_list_append(v, ["swamm", "noun", "swammas", "swammes", "swamme", "", "mushroom fungus"]) + let v = native_list_append(v, ["Franca", "noun", "Francan", "Francan", "Francan", "", "Frank Frenchman"]) + let v = native_list_append(v, ["flasce", "noun", "flascan", "flascan", "flascan", "", "flask bottle"]) + let v = native_list_append(v, ["racu", "noun", "raca", "race", "race", "", "explanation"]) + let v = native_list_append(v, ["fotas", "noun", "fotas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["þeodisc", "noun", "þēodisc", "þēodisċes", "þēodisċe", "", "a language"]) + let v = native_list_append(v, ["soð", "noun", "soð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["flewsa", "noun", "flēwsan", "flēwsan", "flēwsan", "", "flow flux issue"]) + let v = native_list_append(v, ["foxe", "noun", "foxe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hammes", "noun", "hammes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["finan", "noun", "finan", "", "", "", "inflection of fina"]) + let v = native_list_append(v, ["francan", "noun", "francan", "", "", "", "inflection of franca"]) + let v = native_list_append(v, ["neata", "noun", "neata", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Antiochia", "noun", "Antiochia", "Antiochian", "Antiochian", "", "Antioch a number"]) + let v = native_list_append(v, ["pucel", "noun", "pūclas", "pūcles", "pūcle", "", "a goblin demon"]) + let v = native_list_append(v, ["hades", "noun", "hades", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fola", "noun", "folan", "folan", "folan", "", "foal colt"]) + let v = native_list_append(v, ["modrige", "noun", "mōdriġan", "mōdriġan", "mōdriġan", "", "mothers sister maternal"]) + let v = native_list_append(v, ["faþu", "noun", "faþa", "faþe", "faþe", "", "fathers sister paternal"]) + let v = native_list_append(v, ["faþe", "noun", "faþan", "faþan", "faþan", "", "fathers sister paternal"]) + let v = native_list_append(v, ["fædera", "noun", "fæderan", "fæderan", "fæderan", "", "fathers brother paternal"]) + let v = native_list_append(v, ["nift", "noun", "nifta", "nifte", "nifte", "", "niece"]) + let v = native_list_append(v, ["brime", "noun", "brime", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brimas", "noun", "brimas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["brima", "noun", "brima", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["aler", "noun", "aler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæst", "noun", "hǣsta", "hǣste", "hǣste", "", "violence fury"]) + let v = native_list_append(v, ["cwead", "noun", "cwēad", "cwēades", "cwēade", "", "dung excrement"]) + let v = native_list_append(v, ["byrden", "noun", "byrdenna", "byrdenne", "byrdenne", "", "alternative form of"]) + let v = native_list_append(v, ["byrd", "noun", "byrde", "byrde", "byrde", "", "birth"]) + let v = native_list_append(v, ["grundes", "noun", "grundes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cipp", "noun", "ċippas", "ċippes", "ċippe", "", "a small piece"]) + let v = native_list_append(v, ["geclofa", "noun", "ġeclofan", "ġeclofan", "ġeclofan", "", "counterpart of a"]) + let v = native_list_append(v, ["eige", "noun", "eige", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Iohannes", "noun", "Iohannes", "Iōhannes", "Iōhanne", "", "John the Evangelist"]) + let v = native_list_append(v, ["giganta", "noun", "giganta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sanges", "noun", "sanges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wicga", "noun", "wicga", "", "", "", "insect"]) + let v = native_list_append(v, ["cunte", "noun", "cuntan", "cuntan", "cuntan", "", "cunt vagina vulva"]) + let v = native_list_append(v, ["sangere", "noun", "sangeras", "sangeres", "sangerum", "", "singer"]) + let v = native_list_append(v, ["hetas", "noun", "hetas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["snad", "noun", "snad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helme", "noun", "helme", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bloma", "noun", "blōman", "blōman", "blōman", "", "The mass of"]) + let v = native_list_append(v, ["elmes", "noun", "elmes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brocc", "noun", "broccas", "brocces", "brocce", "", "badger"]) + let v = native_list_append(v, ["hyr", "noun", "hȳra", "hȳre", "hȳre", "", "hire wages"]) + let v = native_list_append(v, ["cyll", "noun", "cylla", "cylle", "cylle", "", "a leathern bottle"]) + let v = native_list_append(v, ["beorma", "noun", "beorman", "beorman", "beorman", "", "yeast leaven"]) + let v = native_list_append(v, ["scol", "noun", "scōla", "scōle", "scōle", "", "school"]) + let v = native_list_append(v, ["cip", "noun", "cip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helmes", "noun", "helmes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wedlac", "noun", "wedlāc", "wedlāces", "wedlāce", "", "pledge"]) + let v = native_list_append(v, ["forst", "noun", "forstas", "forstes", "forste", "", "frost"]) + let v = native_list_append(v, ["flys", "noun", "flys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyrhþ", "noun", "fyrhþa", "fyrhþes", "fyrhþe", "", "forest wooded country"]) + let v = native_list_append(v, ["briw", "noun", "brīwas", "brīwes", "brīwe", "", "oatmeal porridge"]) + let v = native_list_append(v, ["pleoh", "noun", "plēona", "plēos", "plēo", "", "danger peril risk"]) + let v = native_list_append(v, ["sinder", "noun", "sindra", "sindres", "sindre", "", "cinder ashes"]) + let v = native_list_append(v, ["ambras", "noun", "ambras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["stipel", "noun", "stipel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gilda", "noun", "gilda", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleogenda", "noun", "flēogendan", "flēogendan", "flēogendan", "", "a bird lit."]) + let v = native_list_append(v, ["beadu", "noun", "beadwa", "beadwe", "beadwe", "", "battle war"]) + let v = native_list_append(v, ["carre", "noun", "carre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bæcere", "noun", "bæceras", "bæceres", "bæcerum", "", "baker person who"]) + let v = native_list_append(v, ["peo", "noun", "pēon", "pēon", "pēon", "", "an insect"]) + let v = native_list_append(v, ["tannera", "noun", "tannera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["carres", "noun", "carres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["carras", "noun", "carras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["carra", "noun", "carra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["flana", "noun", "flana", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["luste", "noun", "luste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["breag", "noun", "brēagas", "brēages", "brēage", "", "alternative form of"]) + let v = native_list_append(v, ["septembres", "noun", "septembres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["turas", "noun", "turas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cocce", "noun", "cocce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["eges", "noun", "eges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cnawelæcing", "noun", "cnāwelǣċinga", "cnāwelǣċinge", "cnāwelǣċinge", "", "acknowledgment acknowledging"]) + let v = native_list_append(v, ["roþor", "noun", "rōþor", "rōþres", "rōþre", "", "oar"]) + let v = native_list_append(v, ["scite", "noun", "sċite", "sċite", "sċite", "", "shit faeces"]) + let v = native_list_append(v, ["fingre", "noun", "fingre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fingres", "noun", "fingres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mereswine", "noun", "mereswine", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mereswin", "noun", "mereswīn", "mereswīnes", "mereswīne", "", "dolphin or porpoise"]) + let v = native_list_append(v, ["cann", "noun", "canna", "canne", "canne", "", "a piece of"]) + let v = native_list_append(v, ["segle", "noun", "segle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stapele", "noun", "stapele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["seht", "noun", "seht", "", "", "", "settlement arrangement agreement"]) + let v = native_list_append(v, ["saht", "noun", "saht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cnawelæc", "noun", "cnāwelǣċa", "cnāwelǣċe", "cnāwelǣċe", "", "Late Old English"]) + let v = native_list_append(v, ["teare", "noun", "teare", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["laur", "noun", "lauras", "laures", "laure", "", "laurel"]) + let v = native_list_append(v, ["heofonduguþ", "noun", "heofonduguþa", "heofonduguþe", "heofonduguþe", "", "heavenly host angels"]) + let v = native_list_append(v, ["sulh", "noun", "sylh", "sūle", "sylh", "", "plough implement"]) + let v = native_list_append(v, ["sufla", "noun", "sufla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sace", "noun", "sace", "", "", "", "inflection of sacu"]) + let v = native_list_append(v, ["helpend", "noun", "helpende", "helpendes", "helpende", "", "helper"]) + let v = native_list_append(v, ["meteres", "noun", "meteres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["metera", "noun", "metera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["meteras", "noun", "meteras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["stolas", "noun", "stolas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["rumes", "noun", "rumes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["picgbread", "noun", "picgbrēad", "picgbrēades", "picgbrēade", "", "glans mast acorns"]) + let v = native_list_append(v, ["treg", "noun", "trēġ", "trēġes", "trēġe", "", "alternative form of"]) + let v = native_list_append(v, ["leades", "noun", "leades", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fyrste", "noun", "fyrste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["unwares", "noun", "unwares", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["staras", "noun", "staras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["broþ", "noun", "broþu", "broþes", "broþe", "", "broth"]) + let v = native_list_append(v, ["wesend", "noun", "wesenda", "wesendes", "wesende", "", "aurochs bison buffalo"]) + let v = native_list_append(v, ["stealcung", "noun", "stealcung", "stealcunge", "stealcunge", "", "the act of"]) + let v = native_list_append(v, ["wege", "noun", "wege", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gebode", "noun", "gebode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gebod", "noun", "ġebodu", "ġebodes", "ġebode", "", "command order mandate"]) + let v = native_list_append(v, ["borge", "noun", "borge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["delf", "noun", "delfa", "delfes", "delfe", "", "digging excavation"]) + let v = native_list_append(v, ["winde", "noun", "windan", "windan", "windan", "", "There are no"]) + let v = native_list_append(v, ["grepe", "noun", "grepe", "", "", "", "ditch drain privy"]) + let v = native_list_append(v, ["slepe", "noun", "slepe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gicel", "noun", "ġiċelas", "ġiċeles", "ġiċele", "", "icicle"]) + let v = native_list_append(v, ["pægel", "noun", "pæġlas", "pæġles", "pæġle", "", "gill small liquid"]) + let v = native_list_append(v, ["spon", "noun", "spōnas", "spōnes", "spōne", "", "a wooden chip"]) + let v = native_list_append(v, ["colum", "noun", "colum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gest", "noun", "ġestas", "ġestes", "ġeste", "", "alternative form of"]) + let v = native_list_append(v, ["stefna", "noun", "stefnan", "stefnan", "stefnan", "", "prow stern"]) + let v = native_list_append(v, ["awel", "noun", "awelas", "aweles", "awele", "", "awl"]) + let v = native_list_append(v, ["hetend", "noun", "hetend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gewit", "noun", "gewit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliege", "noun", "flīegan", "flīegan", "flīegan", "", "alternative form of"]) + let v = native_list_append(v, ["hungre", "noun", "hungre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["daag", "noun", "daag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gierde", "noun", "gierde", "", "", "", "inflection of ġierd"]) + let v = native_list_append(v, ["helde", "noun", "heldan", "heldan", "heldan", "", "tansy plants of"]) + let v = native_list_append(v, ["massere", "noun", "massere", "", "", "", "merchant"]) + let v = native_list_append(v, ["strele", "noun", "strele", "", "", "", "inflection of strēl"]) + let v = native_list_append(v, ["ture", "noun", "ture", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wenne", "noun", "wenne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cuscute", "noun", "cuscute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hierusalem", "noun", "Hierusalem", "", "", "", "Jerusalem"]) + let v = native_list_append(v, ["roderas", "noun", "roderas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["rodera", "noun", "rodera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["haca", "noun", "hacan", "hacan", "hacan", "", "a hook a"]) + let v = native_list_append(v, ["handboc", "noun", "handbēċ", "handbēċ", "handbēċ", "", "handbook manual"]) + let v = native_list_append(v, ["fleard", "noun", "flearda", "fleardes", "flearde", "", "fraud deceit trickery"]) + let v = native_list_append(v, ["wundre", "noun", "wundre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bydel", "noun", "bydelas", "bydeles", "bydele", "", "preacher"]) + let v = native_list_append(v, ["lysu", "noun", "lyswa", "lyswes", "lyswe", "", "an evil deed"]) + let v = native_list_append(v, ["segles", "noun", "segles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["spede", "noun", "spede", "", "", "", "inflection of spēd"]) + let v = native_list_append(v, ["consule", "noun", "consule", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["consules", "noun", "consules", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fynd", "noun", "fynd", "", "", "", "inflection of fēond"]) + let v = native_list_append(v, ["fingerdocce", "noun", "fingerdocce", "", "", "", "finger muscles"]) + let v = native_list_append(v, ["ysel", "noun", "yselan", "yselan", "yselan", "", "alternative form of"]) + let v = native_list_append(v, ["myrþra", "noun", "myrþran", "myrþran", "myrþran", "", "homicide murder"]) + let v = native_list_append(v, ["moru", "noun", "mora", "more", "more", "", "carrot"]) + let v = native_list_append(v, ["ig", "noun", "ig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tacor", "noun", "tācoras", "tācores", "tācore", "", "husbands brother brother-in-law"]) + let v = native_list_append(v, ["flite", "noun", "flite", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Antiochian", "noun", "Antiochian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["ceod", "noun", "ċēodas", "ċēodes", "ċēode", "", "pouch bag"]) + let v = native_list_append(v, ["helfe", "noun", "helfe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyrhþe", "noun", "fyrhþu", "fyrhþes", "fyrhþum", "", "forest wooded country"]) + let v = native_list_append(v, ["tonama", "noun", "tōnaman", "tōnaman", "tōnaman", "", "surname cognomen"]) + let v = native_list_append(v, ["scoh", "noun", "sċōs", "sċōs", "sċō", "", "shoe"]) + let v = native_list_append(v, ["Lundene", "noun", "Lundene", "", "", "", "inflection of Lunden"]) + let v = native_list_append(v, ["cisel", "noun", "ċiselas", "ċiseles", "ċisele", "", "alternative form of"]) + let v = native_list_append(v, ["lobbe", "noun", "lobbe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["handgeweorc", "noun", "handġeweorc", "handġeweorces", "handġeweorce", "", "manual labor"]) + let v = native_list_append(v, ["feax", "noun", "feaxa", "feaxes", "feaxe", "", "hair on the"]) + let v = native_list_append(v, ["foresteall", "noun", "foresteallas", "forestealles", "forestealle", "", "intervention"]) + let v = native_list_append(v, ["cosses", "noun", "cosses", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mannes", "noun", "mannes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Persea", "noun", "Persea", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["handweorc", "noun", "handweorca", "handweorces", "handweorce", "", "manual labor"]) + let v = native_list_append(v, ["handgewrit", "noun", "handġewritu", "handġewrites", "handġewrite", "", "something written by"]) + let v = native_list_append(v, ["toscan", "noun", "toscan", "", "", "", "inflection of tosċa"]) + let v = native_list_append(v, ["bodeg", "noun", "bodeg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bodan", "noun", "bodan", "", "", "", "ground foundation"]) + let v = native_list_append(v, ["fyllo", "noun", "fyllo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cnearr", "noun", "cnearras", "cnearres", "cnearre", "", "a small ship"]) + let v = native_list_append(v, ["hagosteald", "noun", "hagostealdas", "hagostealdes", "hagostealde", "", "unmarried man belonging"]) + let v = native_list_append(v, ["decan", "noun", "decanas", "decanes", "decane", "", "one in charge"]) + let v = native_list_append(v, ["scread", "noun", "sċrēada", "sċrēade", "sċrēade", "", "a piece cut"]) + let v = native_list_append(v, ["halga", "noun", "hālgan", "hālgan", "hālgan", "", "holy man saint"]) + let v = native_list_append(v, ["bæddel", "noun", "bæddlas", "bæddles", "bæddle", "", "a person with"]) + let v = native_list_append(v, ["tures", "noun", "tures", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["larum", "noun", "larum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["geol", "noun", "ġēol", "ġēoles", "ġēole", "", "Christmas Yule"]) + let v = native_list_append(v, ["hæles", "noun", "hæles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["granu", "noun", "grana", "grane", "grane", "", "moustache"]) + let v = native_list_append(v, ["nostle", "noun", "nostlan", "nostlan", "nostlan", "", "a narrow band"]) + let v = native_list_append(v, ["slecg", "noun", "sleċġa", "sleċġe", "sleċġe", "", "sledgehammer"]) + let v = native_list_append(v, ["dicas", "noun", "dicas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["carrum", "noun", "carrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dracena", "noun", "dracena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lastas", "noun", "lastas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["legeres", "noun", "legeres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brice", "noun", "briċas", "briċes", "briċe", "", "alternative form of"]) + let v = native_list_append(v, ["eal", "noun", "eal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spaca", "noun", "spācan", "spācan", "spācan", "", "spoke of a"]) + let v = native_list_append(v, ["gewis", "noun", "gewis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fregen", "noun", "freġen", "freġenes", "freġene", "", "alternative form of"]) + let v = native_list_append(v, ["windles", "noun", "windles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hiwen", "noun", "hīwenu", "hīwenes", "hīwene", "", "household"]) + let v = native_list_append(v, ["puca", "noun", "pūcan", "pūcan", "pūcan", "", "goblin"]) + let v = native_list_append(v, ["beom", "noun", "beom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sugga", "noun", "sugga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["regnas", "noun", "regnas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["regnes", "noun", "regnes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gæra", "noun", "gæra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wange", "noun", "wangan", "wangan", "wangan", "", "cheek jaw"]) + let v = native_list_append(v, ["bogas", "noun", "bogas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["talentum", "noun", "talentum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["heald", "noun", "healda", "healdes", "healde", "", "hold guardianship protection"]) + let v = native_list_append(v, ["martir", "noun", "martir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scole", "noun", "scole", "", "", "", "inflection of sċolu"]) + let v = native_list_append(v, ["lippe", "noun", "lippan", "lippan", "lippan", "", "alternative form of"]) + let v = native_list_append(v, ["domboc", "noun", "dōmbēċ", "dōmbēċ", "dōmbēċ", "", "book of laws"]) + let v = native_list_append(v, ["wracu", "noun", "wraca", "wrace", "wrace", "", "revenge"]) + let v = native_list_append(v, ["breostcearu", "noun", "brēostċeara", "brēostċeare", "brēostċeare", "", "anxiety sorrow"]) + let v = native_list_append(v, ["cearseld", "noun", "ċearseldu", "ċearseldes", "ċearselde", "", "sad home dwelling"]) + let v = native_list_append(v, ["pipor", "noun", "pipor", "pipores", "pipore", "", "pepper in the"]) + let v = native_list_append(v, ["ymblyt", "noun", "ymblyt", "", "", "", "circle"]) + let v = native_list_append(v, ["tinde", "noun", "tinde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["geres", "noun", "geres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gere", "noun", "gere", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gestum", "noun", "gestum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lygen", "noun", "lyġenna", "lyġenne", "lyġenne", "", "lie falsehood"]) + let v = native_list_append(v, ["prisun", "noun", "prisūn", "prisūnes", "prisūne", "", "prison jail"]) + let v = native_list_append(v, ["feormeham", "noun", "feormehāmas", "feormehāmes", "feormehāme", "", "farm"]) + let v = native_list_append(v, ["hæcce", "noun", "hæccan", "hæccan", "hæccan", "", "crosier"]) + let v = native_list_append(v, ["snut", "noun", "snūtas", "snūtes", "snūte", "", "nose"]) + let v = native_list_append(v, ["feormere", "noun", "feormeras", "feormeres", "feormerum", "", "one who supplies"]) + let v = native_list_append(v, ["speres", "noun", "speres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["herebeorg", "noun", "herebeorga", "herebeorge", "herebeorge", "", "shelter refuge"]) + let v = native_list_append(v, ["hnecca", "noun", "hneccan", "hneccan", "hneccan", "", "back of the"]) + let v = native_list_append(v, ["smoca", "noun", "smocan", "smocan", "smocan", "", "smoke"]) + let v = native_list_append(v, ["gesceap", "noun", "ġesċeapu", "ġesċeapes", "ġesċeape", "", "shape external form"]) + let v = native_list_append(v, ["wordgecwide", "noun", "wordġecwidu", "wordġecwides", "wordġecwide", "", "a verbal agreement"]) + let v = native_list_append(v, ["steorn", "noun", "steorna", "steorne", "steorne", "", "forehead"]) + let v = native_list_append(v, ["seaw", "noun", "sēaw", "sēawes", "sēawe", "", "juice sap"]) + let v = native_list_append(v, ["tunnan", "noun", "tunnan", "", "", "", "inflection of tunne"]) + let v = native_list_append(v, ["osum", "noun", "osum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eder", "noun", "ederas", "ederes", "edere", "", "alternative form of"]) + let v = native_list_append(v, ["gealdor", "noun", "ġealdru", "ġealdres", "ġealdre", "", "spell charm incantation"]) + let v = native_list_append(v, ["lusa", "noun", "lusa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["halor", "noun", "halor", "", "", "", "salvation"]) + let v = native_list_append(v, ["palent", "noun", "palentas", "palentes", "palente", "", "palace"]) + let v = native_list_append(v, ["gefeoht", "noun", "ġefeoht", "ġefeohtes", "ġefeohte", "", "fight fighting"]) + let v = native_list_append(v, ["assa", "noun", "assan", "assan", "assan", "", "ass donkey"]) + let v = native_list_append(v, ["sceo", "noun", "sċēon", "sċēon", "sċēon", "", "cloud"]) + let v = native_list_append(v, ["annes", "noun", "ānnessa", "ānnesse", "ānnesse", "", "unity"]) + let v = native_list_append(v, ["sidan", "noun", "sidan", "", "", "", "inflection of sīde"]) + let v = native_list_append(v, ["rideres", "noun", "rideres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lyfte", "noun", "lyfte", "", "", "", "inflection of lyft"]) + let v = native_list_append(v, ["demeres", "noun", "demeres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["pallent", "noun", "pallent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["totala", "noun", "totala", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["sumeres", "noun", "sumeres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rador", "noun", "rador", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["consulas", "noun", "consulas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["metere", "noun", "mēteras", "mēteres", "mētere", "", "painter"]) + let v = native_list_append(v, ["roderes", "noun", "roderes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tungan", "noun", "tungan", "", "", "", "inflection of tunge"]) + let v = native_list_append(v, ["linan", "noun", "linan", "", "", "", "inflection of līne"]) + let v = native_list_append(v, ["niten", "noun", "nītenu", "nītenes", "nītene", "", "alternative form of"]) + let v = native_list_append(v, ["templu", "noun", "templu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fann", "noun", "fanna", "fanne", "fanne", "", "fan implement for"]) + let v = native_list_append(v, ["bryna", "noun", "bryna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bacas", "noun", "bacas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["discipulas", "noun", "discipulas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hamas", "noun", "hamas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["guttas", "noun", "guttas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["laure", "noun", "laure", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sancte", "noun", "sancte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["magum", "noun", "magum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["scopum", "noun", "scopum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["talum", "noun", "talum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["discipulum", "noun", "discipulum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cattum", "noun", "cattum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["loce", "noun", "loce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["campum", "noun", "campum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cocum", "noun", "cocum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["modum", "noun", "modum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cestum", "noun", "cestum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["nasum", "noun", "nasum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ferum", "noun", "ferum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["tornum", "noun", "tornum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cornum", "noun", "cornum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["saccum", "noun", "saccum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sacce", "noun", "sacce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["limum", "noun", "limum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cedrum", "noun", "cedrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["martyrum", "noun", "martyrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["florum", "noun", "florum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["legum", "noun", "legum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["morum", "noun", "morum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["facum", "noun", "facum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["furum", "noun", "furum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fure", "noun", "fure", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ducum", "noun", "ducum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["consulum", "noun", "consulum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eolhsand", "noun", "eolhsanda", "eolhsandes", "eolhsande", "", "amber"]) + let v = native_list_append(v, ["senatum", "noun", "senatum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["manum", "noun", "manum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gradum", "noun", "gradum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["metum", "noun", "metum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["accentum", "noun", "accentum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["portum", "noun", "portum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["orum", "noun", "orum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["andgit", "noun", "andġitu", "andġites", "andġite", "", "alternative form of"]) + let v = native_list_append(v, ["sancta", "noun", "sancta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sanctas", "noun", "sanctas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["merum", "noun", "merum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["meras", "noun", "meras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fusum", "noun", "fusum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["carum", "noun", "carum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["luse", "noun", "luse", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["medel", "noun", "medel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["totum", "noun", "totum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cipe", "noun", "ċipan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orgello", "noun", "orgello", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oregel", "noun", "oregel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hogg", "noun", "hoggas", "hogges", "hogge", "", "hog especially a"]) + let v = native_list_append(v, ["hocg", "noun", "hocg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mearum", "noun", "mearum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["meos", "noun", "mēosas", "mēoses", "mēose", "", "moss"]) + let v = native_list_append(v, ["atrum", "noun", "atrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["heres", "noun", "heres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["porticum", "noun", "porticum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["harum", "noun", "harum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["earum", "noun", "earum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["scolu", "noun", "sċola", "sċole", "sċole", "", "a troop or"]) + let v = native_list_append(v, ["sceolu", "noun", "sceolu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fearm", "noun", "fearmas", "fearmes", "fearme", "", "freight cargo load"]) + let v = native_list_append(v, ["canonicum", "noun", "canonicum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["canonice", "noun", "canonice", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["canonicas", "noun", "canonicas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["leoden", "noun", "leoden", "", "", "", "a language especially"]) + let v = native_list_append(v, ["læden", "noun", "læden", "", "", "", "alternative letter-case form"]) + let v = native_list_append(v, ["entum", "noun", "entum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bigspel", "noun", "bigspel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spæc", "noun", "spæc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cicen", "noun", "ċicenu", "ċicenes", "ċicene", "", "chicken"]) + let v = native_list_append(v, ["tacn", "noun", "tācnu", "tācnes", "tācne", "", "sign"]) + let v = native_list_append(v, ["mereswines", "noun", "mereswines", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ferd", "noun", "ferde", "ferde", "ferde", "", "alternative form of"]) + let v = native_list_append(v, ["poc", "noun", "poc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["circul", "noun", "ċirculas", "ċircules", "ċircule", "", "circle"]) + let v = native_list_append(v, ["spatla", "noun", "spatla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fierd", "noun", "fierde", "fierde", "fierde", "", "army military"]) + let v = native_list_append(v, ["insiht", "noun", "insihte", "insihte", "insihte", "", "narrative account"]) + let v = native_list_append(v, ["forbod", "noun", "forbodu", "forbodes", "forbode", "", "a forbidding forbode"]) + let v = native_list_append(v, ["hyrling", "noun", "hȳrlingas", "hȳrlinges", "hȳrlinge", "", "hireling one who"]) + let v = native_list_append(v, ["hyreborg", "noun", "hȳreborgas", "hȳreborges", "hȳreborge", "", "interest"]) + let v = native_list_append(v, ["flaxe", "noun", "flaxe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hron", "noun", "hron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hran", "noun", "hranas", "hranes", "hrane", "", "a small whale"]) + let v = native_list_append(v, ["stemn", "noun", "stemnas", "stemnes", "stemne", "", "stem"]) + let v = native_list_append(v, ["stæfn", "noun", "stæfn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["castenere", "noun", "casteneras", "casteneres", "castenerum", "", "cabinet chest"]) + let v = native_list_append(v, ["spir", "noun", "spir", "", "", "", "spire stalk of"]) + let v = native_list_append(v, ["clus", "noun", "clūsa", "clūse", "clūse", "", "alternative form of"]) + let v = native_list_append(v, ["passionum", "noun", "passionum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["scand", "noun", "sċanda", "sċande", "sċande", "", "shame disgrace"]) + let v = native_list_append(v, ["cinges", "noun", "cinges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cingas", "noun", "cingas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bregh", "noun", "bregh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hlafweard", "noun", "hlafweard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trus", "noun", "trus", "", "", "", "brushwood"]) + let v = native_list_append(v, ["bricas", "noun", "bricas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["porrum", "noun", "porrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cotum", "noun", "cotum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bleoh", "noun", "bleoh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dennes", "noun", "dennes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ederas", "noun", "ederas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["edor", "noun", "edoras", "edores", "edore", "", "enclosure hedge fence"]) + let v = native_list_append(v, ["deorum", "noun", "deorum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fulles", "noun", "fulles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["anhorn", "noun", "ānhornas", "ānhornes", "ānhorne", "", "unicorn"]) + let v = native_list_append(v, ["bretwalda", "noun", "bretwaldan", "bretwaldan", "bretwaldan", "", "title of certain"]) + let v = native_list_append(v, ["grop", "noun", "grop", "", "", "", "ditch drain"]) + let v = native_list_append(v, ["domum", "noun", "domum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["strion", "noun", "strīon", "strīones", "strīone", "", "alternative form of"]) + let v = native_list_append(v, ["dolc", "noun", "dolc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lieget", "noun", "līeġetu", "līeġetes", "līeġete", "", "synonym of līeġetu"]) + let v = native_list_append(v, ["burgræden", "noun", "burgrǣdenna", "burgrǣdenne", "burgrǣdenne", "", "citizenship"]) + let v = native_list_append(v, ["pistoles", "noun", "pistoles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["utland", "noun", "ūtlandas", "ūtlandes", "ūtlande", "", "a foreign country"]) + let v = native_list_append(v, ["brynas", "noun", "brynas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hyllas", "noun", "hyllas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fulle", "noun", "fulle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cyre", "noun", "cyras", "cyres", "cyrum", "", "choice free will"]) + let v = native_list_append(v, ["hinda", "noun", "hinda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["undern", "noun", "undern", "", "", "", "terce the third"]) + let v = native_list_append(v, ["Ex", "noun", "Ex", "", "", "", "Exe a river"]) + let v = native_list_append(v, ["segla", "noun", "segla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stæl", "noun", "stalu", "stæles", "stæle", "", "alternative form of"]) + let v = native_list_append(v, ["mæres", "noun", "mæres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["turum", "noun", "turum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["apostolum", "noun", "apostolum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["apostole", "noun", "apostole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cludes", "noun", "cludes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cludas", "noun", "cludas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["clude", "noun", "clude", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["clusum", "noun", "clusum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cluse", "noun", "clūsan", "clūsan", "clūsan", "", "bar bolt"]) + let v = native_list_append(v, ["hamorum", "noun", "hamorum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hamum", "noun", "hamum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["munda", "noun", "munda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["behat", "noun", "behāt", "behātes", "behāte", "", "promise"]) + let v = native_list_append(v, ["burne", "noun", "burnan", "burnan", "burnan", "", "a stream brook"]) + let v = native_list_append(v, ["nægl", "noun", "næglas", "næġles", "næġle", "", "the nail of"]) + let v = native_list_append(v, ["flæscmete", "noun", "flǣsċmetas", "flǣsċmetes", "flǣsċmete", "", "a type or"]) + let v = native_list_append(v, ["heaf", "noun", "heaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["andsware", "noun", "andsware", "", "", "", "an answer"]) + let v = native_list_append(v, ["fla", "noun", "flān", "flān", "flān", "", "alternative form of"]) + let v = native_list_append(v, ["cyng", "noun", "cyngas", "cynges", "cynge", "", "alternative form of"]) + let v = native_list_append(v, ["pannum", "noun", "pannum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sinu", "noun", "sinwa", "sinwe", "sinwe", "", "sinew nerve tendon"]) + let v = native_list_append(v, ["salnes", "noun", "sālnessa", "sālnesse", "sālnesse", "", "silence"]) + let v = native_list_append(v, ["æst", "noun", "æst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bloda", "noun", "bloda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["blode", "noun", "blode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["blodes", "noun", "blodes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["diaconum", "noun", "diaconum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["diacone", "noun", "diacone", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["diacones", "noun", "diacones", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hysope", "noun", "hysope", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stacga", "noun", "stacgan", "stacgan", "stacgan", "", "stag"]) + let v = native_list_append(v, ["Cristesmæsse", "noun", "Cristesmæsse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wada", "noun", "wada", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["metode", "noun", "metode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["metodes", "noun", "metodes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sæwuda", "noun", "sæwuda", "", "", "", "plural of sæwudu"]) + let v = native_list_append(v, ["tittas", "noun", "tittas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["cristallum", "noun", "cristallum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cristalla", "noun", "cristallan", "cristallan", "cristallan", "", "crystal"]) + let v = native_list_append(v, ["sawel", "noun", "sāwla", "sāwle", "sāwle", "", "alternative form of"]) + let v = native_list_append(v, ["sawal", "noun", "sawal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sowhul", "noun", "sowhul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tanum", "noun", "tanum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["borges", "noun", "borges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fatu", "noun", "fatu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cherubin", "noun", "cherubin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæm", "noun", "fæm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brer", "noun", "brēras", "brēres", "brēre", "", "alternative form of"]) + let v = native_list_append(v, ["eorþfæt", "noun", "eorþfatu", "eorþfætes", "eorþfæte", "", "an earthen vessel"]) + let v = native_list_append(v, ["gehðu", "noun", "gehðu", "", "", "", "care anxiety grief"]) + let v = native_list_append(v, ["lichama", "noun", "līchaman", "līchaman", "līchaman", "", "body"]) + let v = native_list_append(v, ["wintra", "noun", "wintra", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þeodcyningas", "noun", "þeodcyningas", "", "", "", "plural of þeodcyning"]) + let v = native_list_append(v, ["beger", "noun", "beġer", "beġeres", "beġere", "", "berry"]) + let v = native_list_append(v, ["bytt", "noun", "bytt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ænglisc", "noun", "Ænglisc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cwenan", "noun", "cwenan", "", "", "", "plural of cwene"]) + let v = native_list_append(v, ["hyrd", "noun", "hyrde", "hyrde", "hyrde", "", "framework door"]) + let v = native_list_append(v, ["torra", "noun", "torra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["broce", "noun", "broce", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["fona", "noun", "fonan", "fonan", "fonan", "", "alternative form of"]) + let v = native_list_append(v, ["deaw", "noun", "dēawas", "dēawes", "dēawe", "", "dew"]) + let v = native_list_append(v, ["collectum", "noun", "collectum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lungen", "noun", "lungenna", "lungenne", "lungenne", "", "lung"]) + let v = native_list_append(v, ["stræc", "noun", "stracu", "stræces", "stræce", "", "strictness rigor"]) + let v = native_list_append(v, ["beornas", "noun", "beornas", "", "", "", "plural of beorn"]) + let v = native_list_append(v, ["beme", "noun", "bēman", "bēman", "bēman", "", "alternative form of"]) + let v = native_list_append(v, ["grunda", "noun", "grunda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["seglas", "noun", "seglas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["staplas", "noun", "staplas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fixum", "noun", "fixum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["horan", "noun", "horan", "", "", "", "inflection of hōre"]) + let v = native_list_append(v, ["pipan", "noun", "pipan", "", "", "", "inflection of pīpe"]) + let v = native_list_append(v, ["springas", "noun", "springas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fulnes", "noun", "fūlnessa", "", "", "", "foulness impurity stench"]) + let v = native_list_append(v, ["amigdalum", "noun", "amigdalum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["amigdalas", "noun", "amigdalas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gelicnes", "noun", "ġelīcnessa", "ġelīcnesse", "ġelīcnesse", "", "similarity likeness"]) + let v = native_list_append(v, ["hwon", "noun", "hwon", "", "", "", "a few a"]) + let v = native_list_append(v, ["sawle", "noun", "sawle", "", "", "", "accusative singular genitive"]) + let v = native_list_append(v, ["sawla", "noun", "sawla", "", "", "", "plural of sawol"]) + let v = native_list_append(v, ["lyras", "noun", "lyras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["grundas", "noun", "grundas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["wom", "noun", "wōmas", "wōmes", "wōme", "", "sound noise"]) + let v = native_list_append(v, ["woma", "noun", "wōman", "wōman", "wōman", "", "sound noise"]) + let v = native_list_append(v, ["horsum", "noun", "horsum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eorðan", "noun", "eorðan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["lices", "noun", "lices", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["smitta", "noun", "smittan", "smittan", "smittan", "", "a smear blot"]) + let v = native_list_append(v, ["dena", "noun", "dena", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["orf", "noun", "orfa", "orfes", "orfe", "", "cattle"]) + let v = native_list_append(v, ["hylles", "noun", "hylles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["smittan", "noun", "smittan", "", "", "", "inflection of smitta"]) + let v = native_list_append(v, ["brynes", "noun", "brynes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hyrda", "noun", "hyrda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hyrdes", "noun", "hyrdes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lyftes", "noun", "lyftes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mistas", "noun", "mistas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["mistes", "noun", "mistes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["springes", "noun", "springes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sunde", "noun", "sunde", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Huda", "noun", "Huda", "", "", "", "a male given"]) + let v = native_list_append(v, ["sybbe", "noun", "sybbe", "", "", "", "accusative genitive dative"]) + let v = native_list_append(v, ["weres", "noun", "weres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dreames", "noun", "dreames", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["assum", "noun", "assum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sealh", "noun", "sēalas", "sēales", "sēale", "", "willow sallow"]) + let v = native_list_append(v, ["cwice", "noun", "cwice", "", "", "", "couch grass"]) + let v = native_list_append(v, ["spind", "noun", "spinda", "spindes", "spinde", "", "fat"]) + let v = native_list_append(v, ["forste", "noun", "forste", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Herodes", "noun", "Herodes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wifer", "noun", "wifras", "wifres", "wifre", "", "missile arrow javelin"]) + let v = native_list_append(v, ["wælcyrge", "noun", "wælcyrġan", "wælcyrġan", "wælcyrġan", "", "a malevolent female"]) + let v = native_list_append(v, ["wiber", "noun", "wiber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bosm", "noun", "bōsmas", "bōsmes", "bōsme", "", "breast bosom chest"]) + let v = native_list_append(v, ["herum", "noun", "herum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["trafu", "noun", "trafu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ceoce", "noun", "ċēocan", "ċēocan", "ċēocan", "", "cheek or cheekbone"]) + let v = native_list_append(v, ["apostola", "noun", "apostola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nepte", "noun", "neptan", "neptan", "neptan", "", "catnip"]) + let v = native_list_append(v, ["mugan", "noun", "mugan", "", "", "", "inflection of mūga"]) + let v = native_list_append(v, ["Francland", "noun", "Francland", "Franclandes", "Franclande", "", "the land of"]) + let v = native_list_append(v, ["Francrice", "noun", "Francrice", "Francrīċes", "Francrīċe", "", "the kingdom of"]) + let v = native_list_append(v, ["fanan", "noun", "fanan", "", "", "", "inflection of fana"]) + let v = native_list_append(v, ["meteseax", "noun", "meteseaxa", "meteseaxes", "meteseaxe", "", "knife especially one"]) + let v = native_list_append(v, ["ribban", "noun", "ribban", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["fex", "noun", "fexa", "fexes", "fexe", "", "alternative form of"]) + let v = native_list_append(v, ["talentan", "noun", "talentan", "", "", "", "inflection of talente"]) + let v = native_list_append(v, ["earsþerl", "noun", "earsþerlu", "earsþerles", "earsþerle", "", "alternative form of"]) + let v = native_list_append(v, ["þyrel", "noun", "þȳrelu", "þȳreles", "þȳrele", "", "hole perforation an"]) + let v = native_list_append(v, ["geahl", "noun", "geahl", "", "", "", "jowl jaw"]) + let v = native_list_append(v, ["toppas", "noun", "toppas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gigantum", "noun", "gigantum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["heoru", "noun", "heorwas", "heorwes", "heorwe", "", "sword"]) + let v = native_list_append(v, ["scopas", "noun", "scopas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["pices", "noun", "pices", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mealt", "noun", "mealta", "mealtes", "mealte", "", "malt"]) + let v = native_list_append(v, ["forcel", "noun", "forclas", "forcles", "forcle", "", "a pitchfork"]) + let v = native_list_append(v, ["scinum", "noun", "scinum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["wicu", "noun", "wica", "wice", "wice", "", "alternative form of"]) + let v = native_list_append(v, ["hoce", "noun", "hoce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hærn", "noun", "hærnas", "hærnes", "hærne", "", "brain"]) + let v = native_list_append(v, ["færgripe", "noun", "fǣrgripas", "fǣrgripes", "fǣrgripe", "", "sudden attack seizure"]) + let v = native_list_append(v, ["agendfrea", "noun", "agendfrea", "", "", "", "owner lord"]) + let v = native_list_append(v, ["batweard", "noun", "bātweardas", "bātweardes", "bātwearde", "", "ships watchman keeper"]) + let v = native_list_append(v, ["ean", "noun", "ean", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["foldbold", "noun", "foldbold", "", "", "", "house castle"]) + let v = native_list_append(v, ["freondlaþu", "noun", "frēondlaþa", "frēondlaþe", "frēondlaþe", "", "friendly invitation"]) + let v = native_list_append(v, ["earmhread", "noun", "earmhread", "", "", "", "arm ornament"]) + let v = native_list_append(v, ["eorclanstan", "noun", "eorclanstan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byrla", "noun", "byrlan", "byrlan", "byrlan", "", "trunk body"]) + let v = native_list_append(v, ["deges", "noun", "deges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dege", "noun", "dege", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rimere", "noun", "rīmeras", "rīmeres", "rīmere", "", "one who computes"]) + let v = native_list_append(v, ["burgen", "noun", "burgen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niwa", "noun", "niwa", "", "", "", "neophyte"]) + let v = native_list_append(v, ["feormfultum", "noun", "feormfultum", "", "", "", "purveyance assistance in"]) + let v = native_list_append(v, ["dwimor", "noun", "dwimora", "dwimores", "dwimore", "", "phantom ghost apparition"]) + let v = native_list_append(v, ["doru", "noun", "doru", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["guttum", "noun", "guttum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þeo", "noun", "þeowas", "þeowes", "þeowe", "", "alternative form of"]) + let v = native_list_append(v, ["healsfang", "noun", "healsfanga", "healsfanges", "healsfange", "", "a fine prescribed"]) + let v = native_list_append(v, ["wærc", "noun", "wærċas", "wærċes", "wærċe", "", "pain ache"]) + let v = native_list_append(v, ["heortece", "noun", "heorteċas", "heorteċes", "heorteċe", "", "heartache"]) + let v = native_list_append(v, ["æce", "noun", "æce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ece", "noun", "eċas", "eċes", "eċe", "", "ache"]) + let v = native_list_append(v, ["readan", "noun", "readan", "", "", "", "inflection of rēada"]) + let v = native_list_append(v, ["hæfte", "noun", "hæfte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hæftes", "noun", "hæftes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["egan", "noun", "egan", "", "", "", "inflection of ēge"]) + let v = native_list_append(v, ["gres", "noun", "grasu", "greses", "grese", "", "alternative form of"]) + let v = native_list_append(v, ["onsang", "noun", "onsangas", "onsanges", "onsange", "", "incantation"]) + let v = native_list_append(v, ["cocere", "noun", "cocere", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ragu", "noun", "raga", "rage", "rage", "", "lichen"]) + let v = native_list_append(v, ["wyll", "noun", "wyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kinge", "noun", "kinge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ðæt", "noun", "ðæt", "", "", "", "the letter Ð"]) + let v = native_list_append(v, ["hrop", "noun", "hrōpas", "hrōpes", "hrōpe", "", "clamour lamentation"]) + let v = native_list_append(v, ["synne", "noun", "synne", "", "", "", "inflection of synn"]) + let v = native_list_append(v, ["orfe", "noun", "orfe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["orfes", "noun", "orfes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eca", "noun", "eca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["treo", "noun", "treo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tacon", "noun", "tācnu", "tācnes", "tācne", "", "alternative form of"]) + let v = native_list_append(v, ["slota", "noun", "slotan", "slotan", "slotan", "", "bit morsel mouthful"]) + let v = native_list_append(v, ["drem", "noun", "drem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baras", "noun", "baras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bredu", "noun", "bredu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Brun", "noun", "Brun", "", "", "", "a male given"]) + let v = native_list_append(v, ["ciesa", "noun", "ciesa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ciese", "noun", "ċīesas", "ċīeses", "ċīese", "", "cheese"]) + let v = native_list_append(v, ["gerihte", "noun", "ġerihtu", "ġerihtes", "ġerihte", "", "right due justice"]) + let v = native_list_append(v, ["fersa", "noun", "fersa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["neoda", "noun", "neoda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["ferse", "noun", "ferse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Dunn", "noun", "Dunn", "", "", "", "a male given"]) + let v = native_list_append(v, ["warg", "noun", "wargas", "warges", "warge", "", "alternative form of"]) + let v = native_list_append(v, ["sciopo", "noun", "sciopo", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hweg", "noun", "hwēġ", "hwēġes", "hwēġe", "", "alternative form of"]) + let v = native_list_append(v, ["hwæg", "noun", "hwǣġ", "hwǣġes", "hwǣġe", "", "whey"]) + let v = native_list_append(v, ["Rin", "noun", "Rin", "Rīnes", "Rīne", "", "the Rhine"]) + let v = native_list_append(v, ["gehat", "noun", "ġehāt", "ġehātes", "ġehāte", "", "promise"]) + let v = native_list_append(v, ["sapan", "noun", "sapan", "", "", "", "inflection of sāpe"]) + let v = native_list_append(v, ["wisan", "noun", "wisan", "", "", "", "inflection of wīsa"]) + let v = native_list_append(v, ["horu", "noun", "horwas", "horwes", "horwe", "", "dirt filth foulness"]) + let v = native_list_append(v, ["meda", "noun", "meda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["lomb", "noun", "lomb", "", "", "", "Anglian form of"]) + let v = native_list_append(v, ["bodu", "noun", "bodu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["loh", "noun", "lōh", "lōges", "lōge", "", "alternative form of"]) + let v = native_list_append(v, ["weale", "noun", "weale", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dæla", "noun", "dæla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sæla", "noun", "sæla", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["infaru", "noun", "infara", "infare", "infare", "", "an invasion incursion"]) + let v = native_list_append(v, ["Orfeus", "noun", "Orfeus", "", "", "", "Orpheus figure from"]) + let v = native_list_append(v, ["wraca", "noun", "wraca", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["tungolcræft", "noun", "tungolcræft", "tungolcræftes", "tungolcræfte", "", "astronomy"]) + let v = native_list_append(v, ["þeodwiga", "noun", "þēodwigan", "", "", "", "warrior of the"]) + let v = native_list_append(v, ["Cephas", "noun", "Cephas", "", "", "", "Cephas a name"]) + let v = native_list_append(v, ["Sodome", "noun", "Sodome", "Sodoman", "Sodoman", "", "alternative form of"]) + let v = native_list_append(v, ["scrutnung", "noun", "sċrūtnunga", "", "", "", "an examination investigation"]) + let v = native_list_append(v, ["gatu", "noun", "gatu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["monn", "noun", "menn", "monnes", "menn", "", "alternative form of"]) + let v = native_list_append(v, ["næs", "noun", "næssas", "næsses", "næsse", "", "a ness promontory"]) + let v = native_list_append(v, ["disi", "noun", "disi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæring", "noun", "hǣringas", "hǣringes", "hǣringe", "", "herring"]) + let v = native_list_append(v, ["ciele", "noun", "ċielas", "ċieles", "ċiele", "", "cold coldness"]) + let v = native_list_append(v, ["clea", "noun", "clēa", "clawe", "clawe", "", "claw nail"]) + let v = native_list_append(v, ["ægru", "noun", "ǣġru", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ægres", "noun", "ægres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ægre", "noun", "ægre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ægra", "noun", "ǣġra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ægrum", "noun", "ǣġrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Eua", "noun", "Eua", "Ēuan", "Ēuan", "", "Eve the first"]) + let v = native_list_append(v, ["fiscum", "noun", "fiscum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fisce", "noun", "fisce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lusum", "noun", "lusum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["forþscype", "noun", "forþsċypas", "forþsċypes", "forþsċype", "", "progress"]) + let v = native_list_append(v, ["sceotend", "noun", "sċēotend", "sċēotendes", "sċēotende", "", "shooter archer warrior"]) + let v = native_list_append(v, ["hornreced", "noun", "hornreċed", "hornreċedes", "hornreċede", "", "gabled hall"]) + let v = native_list_append(v, ["mundbyrd", "noun", "mundbyrd", "", "", "", "protection patronage aid"]) + let v = native_list_append(v, ["beadwa", "noun", "beadwa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["geþing", "noun", "geþinga", "geþinges", "geþinge", "", "agreement treaty"]) + let v = native_list_append(v, ["ierre", "noun", "ierru", "ierres", "ierrum", "", "anger wrath ire"]) + let v = native_list_append(v, ["hælu", "noun", "hǣlu", "hǣlu", "hǣlu", "", "sound physical or"]) + let v = native_list_append(v, ["sibbegedriht", "noun", "sibbegedriht", "", "", "", "band of kinsmen"]) + let v = native_list_append(v, ["denum", "noun", "denum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["unlust", "noun", "unlustas", "unlustes", "unluste", "", "absence of desire"]) + let v = native_list_append(v, ["lawer", "noun", "lawer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fenne", "noun", "fenne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dwala", "noun", "dwala", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þo", "noun", "þōn", "þōn", "þōn", "", "clay"]) + let v = native_list_append(v, ["galgan", "noun", "galgan", "", "", "", "inflection of galga"]) + let v = native_list_append(v, ["alh", "noun", "ālas", "āles", "āle", "", "alternative form of"]) + let v = native_list_append(v, ["sunum", "noun", "sunum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fotum", "noun", "fotum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fruman", "noun", "fruman", "", "", "", "inflection of fruma"]) + let v = native_list_append(v, ["handum", "noun", "handum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["slah", "noun", "slān", "slān", "slān", "", "sloe"]) + let v = native_list_append(v, ["wamba", "noun", "wamba", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["witum", "noun", "witum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lofe", "noun", "lofe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["eale", "noun", "eale", "", "", "", "inflection of eal"]) + let v = native_list_append(v, ["slepa", "noun", "slepa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["staþa", "noun", "staþa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wega", "noun", "wega", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wigan", "noun", "wigan", "", "", "", "inflection of wiga"]) + let v = native_list_append(v, ["wulfe", "noun", "wulfe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["aþa", "noun", "aþa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["berum", "noun", "berum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["broþrum", "noun", "broþrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gund", "noun", "gund", "", "", "", "matter pus"]) + let v = native_list_append(v, ["guþa", "noun", "guþa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["lustum", "noun", "lustum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["soþa", "noun", "soþa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["unwita", "noun", "unwitan", "unwitan", "unwitan", "", "idiot"]) + let v = native_list_append(v, ["wamme", "noun", "wamme", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wlita", "noun", "wlita", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gelda", "noun", "gelda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["liss", "noun", "lissa", "lisse", "lisse", "", "mildness mercy kindness"]) + let v = native_list_append(v, ["bearo", "noun", "bearwas", "bearwes", "bearwe", "", "alternative form of"]) + let v = native_list_append(v, ["werre", "noun", "werre", "", "", "", "war large-scale military"]) + let v = native_list_append(v, ["hofa", "noun", "hofa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["yrfe", "noun", "yrfu", "yrfes", "yrfum", "", "alternative form of"]) + let v = native_list_append(v, ["elne", "noun", "elne", "", "", "", "inflection of eln"]) + let v = native_list_append(v, ["wiln", "noun", "wīlna", "wīlne", "wīlne", "", "handmaid"]) + let v = native_list_append(v, ["brere", "noun", "brere", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Petre", "noun", "Petre", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bedrip", "noun", "bedrip", "", "", "", "the cutting or"]) + let v = native_list_append(v, ["Abrahame", "noun", "Abrahame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Adame", "noun", "Adame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wex", "noun", "wex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ægypte", "noun", "Ægypta", "", "Ægyptum", "", "the Egyptians"]) + let v = native_list_append(v, ["wangan", "noun", "wangan", "", "", "", "inflection of wange"]) + let v = native_list_append(v, ["windas", "noun", "windas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["lafa", "noun", "lafa", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["numa", "noun", "numan", "numan", "numan", "", "taker"]) + let v = native_list_append(v, ["solor", "noun", "soloras", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rapum", "noun", "rapum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["tigras", "noun", "tigras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["tigra", "noun", "tigra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["scyldwite", "noun", "sċyldwītu", "sċyldwītes", "sċyldwīte", "", "fine for a"]) + let v = native_list_append(v, ["gioc", "noun", "gioc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ælfen", "noun", "ælfenna", "ælfenne", "ælfenne", "", "alternative form of"]) + let v = native_list_append(v, ["elfen", "noun", "elfenna", "elfenne", "elfenne", "", "alternative form of"]) + let v = native_list_append(v, ["welle", "noun", "welle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hringa", "noun", "hringa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gemote", "noun", "gemote", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["rifter", "noun", "riftras", "riftres", "riftre", "", "an instrument for"]) + let v = native_list_append(v, ["incum", "noun", "incum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["traht", "noun", "trahtas", "trahtes", "trahte", "", "text passage exposition"]) + let v = native_list_append(v, ["scos", "noun", "scos", "", "", "", "inflection of sċōh"]) + let v = native_list_append(v, ["flett", "noun", "fletta", "flettes", "flette", "", "the floor ground"]) + let v = native_list_append(v, ["rewet", "noun", "rewet", "", "", "", "rowing"]) + let v = native_list_append(v, ["gnast", "noun", "gnāstas", "gnāstes", "gnāste", "", "spark"]) + let v = native_list_append(v, ["hwicce", "noun", "hwiċċan", "hwiċċan", "hwiċċan", "", "chest box"]) + let v = native_list_append(v, ["Abba", "noun", "Abba", "Abban", "Abban", "", "a male given"]) + let v = native_list_append(v, ["scota", "noun", "scota", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["scote", "noun", "scote", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["handcops", "noun", "handcops", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adle", "noun", "adle", "", "", "", "inflection of ādl"]) + let v = native_list_append(v, ["trendle", "noun", "trendle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["trendles", "noun", "trendles", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gim", "noun", "gim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sesse", "noun", "sesse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["holdscipe", "noun", "holdsċipas", "holdsċipes", "holdsċipe", "", "loyalty allegiance"]) + let v = native_list_append(v, ["felg", "noun", "felg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dustsceawung", "noun", "dustsceawung", "", "", "", "viewing or contemplation"]) + let v = native_list_append(v, ["Agustus", "noun", "Agustus", "Agustuses", "Agustuse", "", "alternative form of"]) + let v = native_list_append(v, ["oter", "noun", "oter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dwild", "noun", "dwilda", "dwildes", "dwilde", "", "error"]) + let v = native_list_append(v, ["hilda", "noun", "hilda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["cyn", "noun", "cyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wisdome", "noun", "wisdome", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["flema", "noun", "flēman", "flēman", "flēman", "", "alternative form of"]) + let v = native_list_append(v, ["Symon", "noun", "Symon", "", "", "", "a male given"]) + let v = native_list_append(v, ["Iudas", "noun", "Iudas", "Iūdes", "Iūde", "", "Judas"]) + let v = native_list_append(v, ["londe", "noun", "londe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Yrland", "noun", "Yrland", "Ȳrlandes", "Ȳrlande", "", "alternative form of"]) + let v = native_list_append(v, ["Dauid", "noun", "Dauid", "Dauides", "Dauide", "", "a male given"]) + let v = native_list_append(v, ["genip", "noun", "ġenipu", "ġenipes", "ġenipe", "", "mist vapours darkness"]) + let v = native_list_append(v, ["tife", "noun", "tifan", "tifan", "tifan", "", "a female dog"]) + let v = native_list_append(v, ["edwist", "noun", "edwiste", "", "", "", "being substance sustenance"]) + let v = native_list_append(v, ["gearwe", "noun", "ġearwan", "ġearwan", "ġearwan", "", "yarrow"]) + let v = native_list_append(v, ["galdre", "noun", "galdras", "galdres", "galdrum", "", "wizard"]) + let v = native_list_append(v, ["wæpenhus", "noun", "wæpenhus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niþgeteon", "noun", "nīþġetēon", "", "", "", "an attack malice"]) + let v = native_list_append(v, ["æsctir", "noun", "æsċtīras", "", "", "", "glory spear-glory fame"]) + let v = native_list_append(v, ["fyrwit", "noun", "fyrwitta", "fyrwittes", "fyrwitte", "", "alternative form of"]) + let v = native_list_append(v, ["tæppestre", "noun", "tæppestran", "tæppestran", "tæppestran", "", "a female tavern-keeper"]) + let v = native_list_append(v, ["tæppere", "noun", "tæpperas", "tæpperes", "tæpperum", "", "tavern keeper bartender"]) + let v = native_list_append(v, ["sess", "noun", "sessas", "sesses", "sesse", "", "seat"]) + let v = native_list_append(v, ["scafa", "noun", "scafa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lifes", "noun", "lifes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["swingel", "noun", "swinġella", "swinġelle", "swinġelle", "", "a stripe stroke"]) + let v = native_list_append(v, ["lifen", "noun", "lifna", "lifne", "lifne", "", "that by which"]) + let v = native_list_append(v, ["holtes", "noun", "holtes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hald", "noun", "hald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyde", "noun", "hyde", "", "", "", "inflection of hȳd"]) + let v = native_list_append(v, ["casern", "noun", "casern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hinderling", "noun", "hinderlingas", "hinderlinges", "hinderlinge", "", "a mean base"]) + let v = native_list_append(v, ["leorningcild", "noun", "leorningċild", "leorningċildes", "leorningċilde", "", "student disciple"]) + let v = native_list_append(v, ["fyndel", "noun", "fyndela", "fyndele", "fyndele", "", "invention device"]) + let v = native_list_append(v, ["stret", "noun", "strēta", "strēte", "strēte", "", "alternative form of"]) + let v = native_list_append(v, ["biorn", "noun", "biorn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brond", "noun", "brond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agend", "noun", "āgend", "āgendes", "āgende", "", "owner"]) + let v = native_list_append(v, ["eorcnanstan", "noun", "eorcnanstānas", "eorcnanstānes", "eorcnanstāne", "", "precious stone pearl"]) + let v = native_list_append(v, ["omber", "noun", "omber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scapum", "noun", "scapum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dior", "noun", "dīor", "dīores", "dīore", "", "alternative form of"]) + let v = native_list_append(v, ["cossas", "noun", "cossas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["binna", "noun", "binna", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["worne", "noun", "worne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wole", "noun", "wole", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["windes", "noun", "windes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["willes", "noun", "willes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fealca", "noun", "fealcan", "fealcan", "fealcan", "", "falcon hawk"]) + let v = native_list_append(v, ["eame", "noun", "eame", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fielle", "noun", "fielle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["reaf", "noun", "rēaf", "rēafes", "rēafe", "", "plunder spoil booty"]) + let v = native_list_append(v, ["berend", "noun", "berend", "", "", "", "carrier bearer often"]) + let v = native_list_append(v, ["Iacobe", "noun", "Iacobe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Paulum", "noun", "Paulum", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Theodorus", "noun", "Theodorus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scima", "noun", "sċīman", "sċīman", "sċīman", "", "shine brightness"]) + let v = native_list_append(v, ["Hannibales", "noun", "Hannibales", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Hannibale", "noun", "Hannibale", "", "", "", "dative/nominative singular of"]) + let v = native_list_append(v, ["hiwisce", "noun", "hīwisċu", "hīwisċes", "hīwisċe", "", "household"]) + let v = native_list_append(v, ["efes", "noun", "efesa", "efese", "efese", "", "edge border brim"]) + let v = native_list_append(v, ["goman", "noun", "goman", "", "", "", "inflection of gōma"]) + let v = native_list_append(v, ["idele", "noun", "idele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["upgang", "noun", "upgangas", "upganges", "upgange", "", "a rise ascent"]) + let v = native_list_append(v, ["loþa", "noun", "loþan", "loþan", "loþan", "", "an upper garment"]) + let v = native_list_append(v, ["lofes", "noun", "lofes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lofas", "noun", "lofas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["stemna", "noun", "stemna", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["tyge", "noun", "tyġas", "tyġes", "tyġe", "", "tug pull"]) + let v = native_list_append(v, ["længe", "noun", "længe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bollan", "noun", "bollan", "", "", "", "inflection of bolla"]) + let v = native_list_append(v, ["suht", "noun", "suhte", "suhte", "suhte", "", "sickness"]) + let v = native_list_append(v, ["Westmynster", "noun", "Westmynster", "Westmynstres", "Westmynstre", "", "Westminster a county"]) + let v = native_list_append(v, ["hiwa", "noun", "hiwa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["apl", "noun", "apl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swima", "noun", "swīman", "swīman", "swīman", "", "swimming in the"]) + let v = native_list_append(v, ["breahtm", "noun", "breahtmas", "breahtmes", "breahtme", "", "a noise tumult"]) + let v = native_list_append(v, ["tætte", "noun", "tættan", "tættan", "tættan", "", "rag patch"]) + let v = native_list_append(v, ["healme", "noun", "healme", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["recels", "noun", "recels", "", "", "", "incense"]) + let v = native_list_append(v, ["frigu", "noun", "frigu", "", "", "", "love"]) + let v = native_list_append(v, ["dyncge", "noun", "dynċġan", "dynċġan", "dynċġan", "", "dung manure litter"]) + let v = native_list_append(v, ["Engle", "noun", "Engla", "", "Englum", "", "the English"]) + let v = native_list_append(v, ["filmene", "noun", "filmene", "", "", "", "inflection of filmen"]) + let v = native_list_append(v, ["dunum", "noun", "dunum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stæg", "noun", "stagu", "stæġes", "stæġe", "", "a stay rope"]) + let v = native_list_append(v, ["medum", "noun", "medum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["wiðersaca", "noun", "wiðersaca", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["elpas", "noun", "elpas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["seonu", "noun", "seonwa", "seonwe", "seonwe", "", "alternative form of"]) + let v = native_list_append(v, ["Tata", "noun", "Tata", "", "", "", "a male given"]) + let v = native_list_append(v, ["besema", "noun", "besema", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["besma", "noun", "besman", "besman", "besman", "", "broom besom"]) + let v = native_list_append(v, ["geræd", "noun", "geræd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gerad", "noun", "ġerād", "ġerādes", "ġerāde", "", "council judgement wisdom"]) + let v = native_list_append(v, ["wincel", "noun", "winclas", "wincles", "wincle", "", "nook corner"]) + let v = native_list_append(v, ["earfoþnes", "noun", "earfoþnessa", "earfoþnesse", "earfoþnesse", "", "difficulty"]) + let v = native_list_append(v, ["gisl", "noun", "ġīslas", "ġīsles", "ġīsle", "", "a hostage"]) + let v = native_list_append(v, ["sunnan", "noun", "sunnan", "", "", "", "inflection of sunne"]) + let v = native_list_append(v, ["sunnanæfen", "noun", "sunnanǣfennas", "sunnanǣfennes", "sunnanǣfenne", "", "Saturday evening"]) + let v = native_list_append(v, ["forda", "noun", "forda", "", "", "", "inflection of ford"]) + let v = native_list_append(v, ["edwindan", "noun", "edwindan", "", "", "", "inflection of edwinde"]) + let v = native_list_append(v, ["tosca", "noun", "tosċan", "tosċan", "tosċan", "", "toad"]) + let v = native_list_append(v, ["fordas", "noun", "fordas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["swestar", "noun", "swestar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ærendgast", "noun", "ærendgast", "", "", "", "a spiritual or"]) + let v = native_list_append(v, ["salor", "noun", "saloras", "salores", "salore", "", "a residence dwelling"]) + let v = native_list_append(v, ["Saule", "noun", "Saule", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Saules", "noun", "Saules", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nafogar", "noun", "nafogāras", "nafogāres", "nafogāre", "", "alternative form of"]) + let v = native_list_append(v, ["brægen", "noun", "bræġnu", "bræġnes", "bræġne", "", "alternative form of"]) + let v = native_list_append(v, ["gop", "noun", "gopas", "gopes", "gope", "", "captive slave"]) + let v = native_list_append(v, ["weli", "noun", "weli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nied", "noun", "nīede", "nīede", "nīede", "", "force compulsion"]) + let v = native_list_append(v, ["plætt", "noun", "plættas", "plættes", "plætte", "", "a slap smack"]) + let v = native_list_append(v, ["sceada", "noun", "sċēadan", "sċēadan", "sċēadan", "", "a parting of"]) + let v = native_list_append(v, ["andgiet", "noun", "andġietu", "andġietes", "andġiete", "", "understanding intellect cognizance"]) + let v = native_list_append(v, ["wigg", "noun", "wigg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wih", "noun", "wīh", "wīhes", "wīhe", "", "alternative form of"]) + let v = native_list_append(v, ["scin", "noun", "sċīnu", "sċīnes", "sċīne", "", "a deceptive appearance"]) + let v = native_list_append(v, ["cros", "noun", "cros", "", "", "", "cross"]) + let v = native_list_append(v, ["dracu", "noun", "draca", "", "", "", "trouble affliction"]) + let v = native_list_append(v, ["sealf", "noun", "sealfa", "sealfe", "sealfe", "", "ointment salve"]) + let v = native_list_append(v, ["iegland", "noun", "īeġland", "īeġlandes", "īeġlande", "", "island"]) + let v = native_list_append(v, ["egland", "noun", "egland", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bence", "noun", "bence", "", "", "", "inflection of benċ"]) + let v = native_list_append(v, ["Hune", "noun", "Hune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lanu", "noun", "lana", "lane", "lane", "", "lane street"]) + let v = native_list_append(v, ["femne", "noun", "fēmnan", "fēmnan", "fēmnan", "", "alternative form of"]) + let v = native_list_append(v, ["freodom", "noun", "frēodōmas", "frēodōmes", "frēodōme", "", "freedom state of"]) + let v = native_list_append(v, ["cumb", "noun", "cumb", "", "", "", "a hollow narrow"]) + let v = native_list_append(v, ["stala", "noun", "stala", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["wimpel", "noun", "wimpel", "", "", "", "a veil an"]) + let v = native_list_append(v, ["rudu", "noun", "rudu", "", "", "", "Red redness ruddy"]) + let v = native_list_append(v, ["wena", "noun", "wēnan", "wēnan", "wēnan", "", "opinion"]) + let v = native_list_append(v, ["hellewite", "noun", "hellewītu", "hellewītes", "hellewīte", "", "the torments of"]) + let v = native_list_append(v, ["hellegeat", "noun", "hellegatu", "helleġeates", "helleġeate", "", "gate of hell"]) + let v = native_list_append(v, ["wunda", "noun", "wunda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["færbu", "noun", "færbu", "", "", "", "misspelling of fær"]) + let v = native_list_append(v, ["gryt", "noun", "gryt", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fald", "noun", "fald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cossa", "noun", "cossa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["brydguma", "noun", "brȳdguman", "brȳdguman", "brȳdguman", "", "bridegroom"]) + let v = native_list_append(v, ["stanum", "noun", "stanum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["batum", "noun", "batum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hospa", "noun", "hospa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mannum", "noun", "mannum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["scap", "noun", "sċāp", "sċāpes", "sċāpe", "", "alternative form of"]) + let v = native_list_append(v, ["cing", "noun", "cingas", "cinges", "cinge", "", "alternative form of"]) + let v = native_list_append(v, ["unlar", "noun", "unlāra", "unlāre", "unlāre", "", "evil teaching"]) + let v = native_list_append(v, ["friðu", "noun", "friðu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["enid", "noun", "enid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["utgang", "noun", "ūtgangas", "ūtganges", "ūtgange", "", "exit a way"]) + let v = native_list_append(v, ["gerim", "noun", "ġerīm", "ġerīmes", "ġerīme", "", "number"]) + let v = native_list_append(v, ["hwelp", "noun", "hwelpas", "hwelpes", "hwelpe", "", "puppy"]) + let v = native_list_append(v, ["feall", "noun", "feall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hebenum", "noun", "hebenum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hebene", "noun", "hebene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hwerhwette", "noun", "hwerhwettan", "hwerhwettan", "hwerhwettan", "", "cucumber"]) + let v = native_list_append(v, ["tilung", "noun", "tilunga", "tilunge", "tilunge", "", "striving labor effort"]) + let v = native_list_append(v, ["Exe", "noun", "Exe", "", "", "", "abbreviation of Exanċeaster"]) + let v = native_list_append(v, ["efor", "noun", "eforas", "efores", "efore", "", "alternative form of"]) + let v = native_list_append(v, ["ælde", "noun", "ælda", "", "ældum", "", "alternative form of"]) + let v = native_list_append(v, ["torrum", "noun", "torrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Port", "noun", "Port", "", "", "", "a male given"]) + let v = native_list_append(v, ["stieple", "noun", "stieple", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["widu", "noun", "widu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stieples", "noun", "stieples", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["husbonde", "noun", "husbonde", "", "", "", "feminine form of"]) + let v = native_list_append(v, ["Eoferwicscir", "noun", "Eoferwicscir", "Eoferwīċsċīre", "Eoferwīċsċīre", "", "alternative form of"]) + let v = native_list_append(v, ["gewisse", "noun", "gewisse", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gewisses", "noun", "gewisses", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Brettes", "noun", "Brettes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Iotas", "noun", "Iotas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Eoferwic", "noun", "Eoferwic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teares", "noun", "teares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Nilus", "noun", "Nilus", "", "", "", "The Nile a"]) + let v = native_list_append(v, ["geneat", "noun", "ġenēatas", "ġenēates", "ġenēate", "", "a companion associate"]) + let v = native_list_append(v, ["stigu", "noun", "stigu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["wiþersaca", "noun", "wiþersacan", "wiþersacan", "wiþersacan", "", "adversary enemy betrayer"]) + let v = native_list_append(v, ["wiþercrist", "noun", "wiþercrist", "", "", "", "an antichrist"]) + let v = native_list_append(v, ["feore", "noun", "feore", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["abecede", "noun", "abecede", "", "", "", "ABC alphabet"]) + let v = native_list_append(v, ["tinne", "noun", "tinne", "", "", "", "inflection of tinn"]) + let v = native_list_append(v, ["cise", "noun", "ċīsas", "ċīses", "ċīse", "", "alternative form of"]) + let v = native_list_append(v, ["beodas", "noun", "beodas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["racente", "noun", "racentan", "racentan", "racentan", "", "chain fetter"]) + let v = native_list_append(v, ["nestum", "noun", "nestum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["weler", "noun", "weleras", "weleres", "welere", "", "lip"]) + let v = native_list_append(v, ["plegan", "noun", "plegan", "", "", "", "inflection of plega"]) + let v = native_list_append(v, ["fleah", "noun", "flēas", "flēas", "flēa", "", "flea"]) + let v = native_list_append(v, ["ysle", "noun", "yslan", "yslan", "yslan", "", "a spark cinder"]) + let v = native_list_append(v, ["ielfetu", "noun", "ielfeta", "ielfete", "ielfete", "", "swan"]) + let v = native_list_append(v, ["ielfete", "noun", "ielfetan", "ielfetan", "ielfetan", "", "swan"]) + let v = native_list_append(v, ["Bera", "noun", "Bera", "", "", "", "a male given"]) + let v = native_list_append(v, ["æta", "noun", "æta", "", "", "", "eater"]) + let v = native_list_append(v, ["æmta", "noun", "æmta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pleo", "noun", "pleo", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["plog", "noun", "plōgas", "plōges", "plōge", "", "the measure of"]) + let v = native_list_append(v, ["weoh", "noun", "wēoh", "wēohes", "wēohe", "", "idol image"]) + let v = native_list_append(v, ["burga", "noun", "burga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["swinn", "noun", "swinnas", "swinnes", "swinne", "", "melody"]) + let v = native_list_append(v, ["geswin", "noun", "ġesweonu", "ġeswines", "ġeswine", "", "melody"]) + let v = native_list_append(v, ["giden", "noun", "giden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rodu", "noun", "roda", "rode", "rode", "", "clearing glade"]) + let v = native_list_append(v, ["torras", "noun", "torras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hænep", "noun", "hænep", "hænepes", "hænepe", "", "alternative form of"]) + let v = native_list_append(v, ["Wendel", "noun", "Wendlas", "Wendles", "Wendle", "", "an inhabitant of"]) + let v = native_list_append(v, ["nowend", "noun", "nōwend", "nōwendes", "nōwende", "", "shipmaster sailor skipper"]) + let v = native_list_append(v, ["spane", "noun", "spanan", "spanan", "spanan", "", "teat"]) + let v = native_list_append(v, ["sceawung", "noun", "sċēawunga", "sċēawunge", "sċēawunge", "", "a looking at"]) + let v = native_list_append(v, ["æs", "noun", "ǣs", "ǣses", "ǣse", "", "food meat"]) + let v = native_list_append(v, ["biliþ", "noun", "biliþ", "", "", "", "an image likeness"]) + let v = native_list_append(v, ["gefær", "noun", "ġefǣras", "ġefǣres", "ġefǣre", "", "sudden danger calamity"]) + let v = native_list_append(v, ["neodlaþu", "noun", "neodlaþu", "", "", "", "an urgent summons"]) + let v = native_list_append(v, ["wordlaþu", "noun", "wordlaþa", "wordlaþe", "wordlaþe", "", "conversation speech"]) + let v = native_list_append(v, ["laþu", "noun", "laþa", "laþe", "laþe", "", "invitation"]) + let v = native_list_append(v, ["Hungerland", "noun", "Hungerland", "Hungerlandes", "Hungerlande", "", "alternative form of"]) + let v = native_list_append(v, ["fec", "noun", "fec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suol", "noun", "suol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æwisc", "noun", "ǣwisċa", "ǣwisċe", "ǣwisċe", "", "shame dishonor disgrace"]) + let v = native_list_append(v, ["anglas", "noun", "anglas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gerada", "noun", "gerada", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["canc", "noun", "canc", "", "", "", "jeering scorn derision"]) + let v = native_list_append(v, ["gecanc", "noun", "gecanc", "", "", "", "a mock gibe"]) + let v = native_list_append(v, ["gewand", "noun", "ġewand", "ġewandes", "ġewande", "", "concern hesitation doubt"]) + let v = native_list_append(v, ["nihtegale", "noun", "nihtegalan", "nihtegalan", "nihtegalan", "", "nightingale"]) + let v = native_list_append(v, ["nihthræfn", "noun", "nihthræfnas", "nihthræfnes", "nihthræfne", "", "nightbird"]) + let v = native_list_append(v, ["setel", "noun", "setel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["speld", "noun", "speldra", "speldes", "spelde", "", "splinter"]) + let v = native_list_append(v, ["leasa", "noun", "leasa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["snas", "noun", "snāsa", "snāse", "snāse", "", "spit skewer"]) + let v = native_list_append(v, ["swæcc", "noun", "swæccas", "swæcces", "swæcce", "", "taste"]) + let v = native_list_append(v, ["molda", "noun", "molda", "", "", "", "the top of"]) + let v = native_list_append(v, ["oht", "noun", "ōhta", "ōhte", "ōhte", "", "chase or pursuit"]) + let v = native_list_append(v, ["brocas", "noun", "brocas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["salh", "noun", "salh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["metesacca", "noun", "metesaccan", "metesaccan", "metesaccan", "", "a kind of"]) + let v = native_list_append(v, ["metesocn", "noun", "metesocna", "metesocne", "metesocne", "", "craving or desire"]) + let v = native_list_append(v, ["meteswamm", "noun", "meteswammas", "meteswammes", "meteswamme", "", "an edible mushroom"]) + let v = native_list_append(v, ["metetid", "noun", "metetide", "metetide", "metetide", "", "mealtime"]) + let v = native_list_append(v, ["meteþegn", "noun", "meteþeġnas", "meteþeġnes", "meteþeġne", "", "a food-officer one"]) + let v = native_list_append(v, ["afol", "noun", "afola", "afoles", "afole", "", "power power of"]) + let v = native_list_append(v, ["dolh", "noun", "dolga", "dolges", "dolge", "", "alternative form of"]) + let v = native_list_append(v, ["ceafl", "noun", "ċeaflas", "ċeafles", "ċeafle", "", "jaw cheek"]) + let v = native_list_append(v, ["Mædmonaþ", "noun", "Mædmonaþ", "", "", "", "the seventh month"]) + let v = native_list_append(v, ["midde", "noun", "middan", "middan", "middan", "", "the middle used"]) + let v = native_list_append(v, ["neora", "noun", "nēoran", "nēoran", "nēoran", "", "kidney"]) + let v = native_list_append(v, ["cliu", "noun", "cliu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swæc", "noun", "swæc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gælsa", "noun", "gǣlsan", "gǣlsan", "gǣlsan", "", "luxury extravagance"]) + let v = native_list_append(v, ["beobread", "noun", "bēobrēadru", "bēobrēades", "bēobrēade", "", "the pollen of"]) + let v = native_list_append(v, ["hoga", "noun", "hogan", "hogan", "hogan", "", "deliberate thought care"]) + let v = native_list_append(v, ["Cædmon", "noun", "Cædmon", "", "", "", "a male given"]) + let v = native_list_append(v, ["fealh", "noun", "fealh", "", "", "", "pipe"]) + let v = native_list_append(v, ["ceahhe", "noun", "ċeahhan", "ċeahhan", "ċeahhan", "", "jackdaw chough"]) + let v = native_list_append(v, ["clacu", "noun", "claca", "clace", "clace", "", "the din of"]) + let v = native_list_append(v, ["hearg", "noun", "hearga", "hearga", "hearga", "", "pile of stones"]) + let v = native_list_append(v, ["getæsu", "noun", "ġetǣsu", "ġetǣsu", "ġetǣsu", "", "commodity profit advantage"]) + let v = native_list_append(v, ["dufe", "noun", "dūfan", "dūfan", "dūfan", "", "dove pigeon"]) + let v = native_list_append(v, ["wila", "noun", "wila", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["brandas", "noun", "brandas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Germanie", "noun", "Ġermanie", "Ġermania", "Ġermanium", "", "a geographic region"]) + let v = native_list_append(v, ["anfloga", "noun", "anfloga", "", "", "", "Solitary flyer lone"]) + let v = native_list_append(v, ["serc", "noun", "serc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þinga", "noun", "þinga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["beall", "noun", "beallas", "bealles", "bealle", "", "ball"]) + let v = native_list_append(v, ["bealluc", "noun", "beallucas", "bealluces", "bealluce", "", "testicle"]) + let v = native_list_append(v, ["hriþerhyrde", "noun", "hriþerhyrde", "", "", "", "herdsman"]) + let v = native_list_append(v, ["þel", "noun", "þelu", "þeles", "þele", "", "plank"]) + let v = native_list_append(v, ["andfang", "noun", "andfangas", "andfanges", "andfange", "", "acceptance"]) + let v = native_list_append(v, ["usc", "noun", "ūscas", "ūsces", "ūsce", "", "alternative form of"]) + let v = native_list_append(v, ["angan", "noun", "angan", "", "", "", "inflection of anga"]) + let v = native_list_append(v, ["cuþa", "noun", "cūþan", "cūþan", "cūþan", "", "acquaintance relative"]) + let v = native_list_append(v, ["freana", "noun", "freana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fream", "noun", "fream", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["weana", "noun", "weana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["scric", "noun", "scric", "", "", "", "shrike bird of"]) + let v = native_list_append(v, ["steda", "noun", "stēdan", "stēdan", "stēdan", "", "a steed stallion"]) + let v = native_list_append(v, ["stedes", "noun", "stedes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hwila", "noun", "hwila", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["seola", "noun", "seola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["orþanc", "noun", "orþancas", "orþances", "orþance", "", "original thought creativity"]) + let v = native_list_append(v, ["orðanc", "noun", "orðanc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["orðonc", "noun", "orðonc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hæleð", "noun", "hæleð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rocc", "noun", "roccas", "rocces", "rocce", "", "rock"]) + let v = native_list_append(v, ["dalu", "noun", "dalu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["tyma", "noun", "tyma", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myl", "noun", "myl", "", "", "", "dust"]) + let v = native_list_append(v, ["gesig", "noun", "ġesigu", "ġesiges", "ġesige", "", "victory"]) + let v = native_list_append(v, ["trega", "noun", "tregan", "tregan", "tregan", "", "pain grief vexation"]) + let v = native_list_append(v, ["wilna", "noun", "wilna", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["nið", "noun", "nīðas", "nīðes", "nīðe", "", "alternative form of"]) + let v = native_list_append(v, ["crawe", "noun", "crāwan", "crāwan", "crāwan", "", "crow"]) + let v = native_list_append(v, ["gemyþ", "noun", "gemyþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gemyþe", "noun", "ġemȳþu", "ġemȳþes", "ġemȳþe", "", "mouth of a"]) + let v = native_list_append(v, ["gefædera", "noun", "ġefæderan", "ġefæderan", "ġefæderan", "", "godfather"]) + let v = native_list_append(v, ["gefæderan", "noun", "gefæderan", "", "", "", "plural of gefædera"]) + let v = native_list_append(v, ["diepþ", "noun", "dīepþa", "dīepþe", "dīepþe", "", "deepness depth"]) + let v = native_list_append(v, ["diepþu", "noun", "dīepþa", "dīepþe", "dīepþe", "", "deepness depth"]) + let v = native_list_append(v, ["leohtfæt", "noun", "lēohtfatu", "lēohtfætes", "lēohtfæte", "", "lamp lantern"]) + let v = native_list_append(v, ["Alpis", "noun", "Alpis", "", "", "", "the Alps a"]) + let v = native_list_append(v, ["firgen", "noun", "firgena", "firgenes", "firgene", "", "alternative form of"]) + let v = native_list_append(v, ["morgengifu", "noun", "morgengifu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seglu", "noun", "seglu", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["crycc", "noun", "cryċċa", "cryċċe", "cryċċe", "", "crutch"]) + let v = native_list_append(v, ["cricc", "noun", "criċċa", "criċċe", "criċċe", "", "alternative form of"]) + let v = native_list_append(v, ["welige", "noun", "welige", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["apum", "noun", "apum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sceaphyrde", "noun", "sceaphyrde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bicce", "noun", "biċċan", "biċċan", "biċċan", "", "bitch a female"]) + let v = native_list_append(v, ["Huna", "noun", "Huna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["modru", "noun", "modru", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["modra", "noun", "modra", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["ofra", "noun", "ofra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["trafa", "noun", "trafa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stære", "noun", "stære", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["husle", "noun", "husle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cisas", "noun", "cisas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cisa", "noun", "cisa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["cises", "noun", "cises", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bryce", "noun", "bryċas", "bryċes", "bryċe", "", "breaking"]) + let v = native_list_append(v, ["bellan", "noun", "bellan", "", "", "", "inflection of belle"]) + let v = native_list_append(v, ["finul", "noun", "finulas", "finules", "finule", "", "fennel"]) + let v = native_list_append(v, ["mapulder", "noun", "mapulderas", "mapulderes", "mapuldere", "", "maple"]) + let v = native_list_append(v, ["mapuldor", "noun", "mapuldor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mapolder", "noun", "mapolder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burug", "noun", "burug", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folma", "noun", "folma", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["Arius", "noun", "Arius", "", "", "", "a male given"]) + let v = native_list_append(v, ["lenge", "noun", "lenge", "", "", "", "inflection of lenġu"]) + let v = native_list_append(v, ["Halda", "noun", "Halda", "", "", "", "a male given"]) + let v = native_list_append(v, ["sægen", "noun", "sæġena", "sæġene", "sæġene", "", "saying"]) + let v = native_list_append(v, ["Ængle", "noun", "Ængle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hege", "noun", "heġas", "heġes", "heġe", "", "fence"]) + let v = native_list_append(v, ["werte", "noun", "werte", "", "", "", "inflection of wert"]) + let v = native_list_append(v, ["gewinne", "noun", "gewinne", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["floh", "noun", "flōhe", "flōhe", "flōhe", "", "that which is"]) + let v = native_list_append(v, ["sott", "noun", "sottas", "sottes", "sotte", "", "a fool"]) + let v = native_list_append(v, ["drim", "noun", "drim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rieht", "noun", "rieht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Michahel", "noun", "Michahel", "Michaheles", "Michahele", "", "a male given"]) + let v = native_list_append(v, ["tredel", "noun", "tredelas", "tredeles", "tredele", "", "step"]) + let v = native_list_append(v, ["gorst", "noun", "gorstas", "gorstes", "gorste", "", "gorse"]) + let v = native_list_append(v, ["dega", "noun", "dega", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["boce", "noun", "boce", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bæþ", "noun", "baþu", "bæþes", "bæþe", "", "bath"]) + let v = native_list_append(v, ["fæcele", "noun", "fæcele", "", "", "", "torch"]) + let v = native_list_append(v, ["uhtceare", "noun", "uhtceare", "", "", "", "inflection of ūhtcaru"]) + let v = native_list_append(v, ["weddes", "noun", "weddes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bromum", "noun", "bromum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Michahele", "noun", "Michahele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Herode", "noun", "Herode", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ricu", "noun", "ricu", "", "", "", "plural of rīċe"]) + let v = native_list_append(v, ["angul", "noun", "anglas", "angles", "angle", "", "alternative form of"]) + let v = native_list_append(v, ["Balder", "noun", "Balder", "", "", "", "a male given"]) + let v = native_list_append(v, ["turfa", "noun", "turfa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Moyses", "noun", "Moyses", "", "", "", "Moses"]) + let v = native_list_append(v, ["Engla", "noun", "Engla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stranda", "noun", "stranda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gisla", "noun", "gisla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Dena lagu", "noun", "Dena lagu", "Dena lage", "Dena lage", "", "Danelaw"]) + let v = native_list_append(v, ["ferda", "noun", "ferda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["giesta", "noun", "giesta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["deora", "noun", "deora", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["scillinge", "noun", "scillinge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Adda", "noun", "Adda", "Addan", "Addan", "", "a male given"]) + let v = native_list_append(v, ["giestas", "noun", "giestas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["midla", "noun", "midla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["titt", "noun", "tittas", "tittes", "titte", "", "tit teat breast"]) + let v = native_list_append(v, ["teara", "noun", "teara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["speru", "noun", "speru", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bigenga", "noun", "bīġenġan", "bīġenġan", "bīġenġan", "", "inhabitant"]) + let v = native_list_append(v, ["Matheo", "noun", "Matheo", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ramma", "noun", "ramma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["badu", "noun", "badwa", "badwe", "badwe", "", "alternative form of"]) + let v = native_list_append(v, ["sceatta", "noun", "sceatta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sceattas", "noun", "sceattas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["cawl", "noun", "cāwlas", "cāwles", "cāwle", "", "basket"]) + let v = native_list_append(v, ["ganges", "noun", "ganges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dreama", "noun", "dreama", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dype", "noun", "dȳpan", "dȳpan", "dȳpan", "", "alternative form of"]) + let v = native_list_append(v, ["hæt", "noun", "hættas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heretoga", "noun", "heretogan", "heretogan", "heretogan", "", "general"]) + let v = native_list_append(v, ["senata", "noun", "senata", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Krist", "noun", "Krist", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lastes", "noun", "lastes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sares", "noun", "sares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["stenge", "noun", "stenge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["steng", "noun", "stenġas", "stenġes", "stenġe", "", "pole"]) + let v = native_list_append(v, ["Moll", "noun", "Moll", "", "", "", "a male given"]) + let v = native_list_append(v, ["beocere", "noun", "bēoceras", "bēoceres", "bēocere", "", "beekeeper"]) + let v = native_list_append(v, ["kinges", "noun", "kinges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ælfric", "noun", "Ælfric", "Ælfrīċes", "Ælfrīċe", "", "a male given"]) + let v = native_list_append(v, ["Angelcynn", "noun", "Angelcynn", "Angelcynnes", "Angelcynne", "", "the Anglo-Saxon people"]) + let v = native_list_append(v, ["walla", "noun", "walla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wallas", "noun", "wallas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["geren", "noun", "gerena", "gerene", "gerene", "", "alternative form of"]) + let v = native_list_append(v, ["wusc", "noun", "wūscas", "wūsċes", "wūsċe", "", "wish"]) + let v = native_list_append(v, ["æcirn", "noun", "ǣcirnu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þeow", "noun", "þēowas", "þēowes", "þēowe", "", "slave"]) + let v = native_list_append(v, ["fullere", "noun", "fullere", "", "", "", "fuller person who"]) + let v = native_list_append(v, ["mynet", "noun", "myneta", "mynetes", "mynete", "", "coin"]) + let v = native_list_append(v, ["halpenige", "noun", "halpeniġas", "halpeniġes", "halpeniġe", "", "halfpenny"]) + let v = native_list_append(v, ["twi", "noun", "twi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hræn", "noun", "hræna", "hræne", "hræne", "", "wave billow"]) + let v = native_list_append(v, ["hærnflota", "noun", "hærnflotan", "hærnflotan", "hærnflotan", "", "boat"]) + let v = native_list_append(v, ["bocan", "noun", "bōcan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bratt", "noun", "bratt", "", "", "", "cloak"]) + let v = native_list_append(v, ["fengel", "noun", "fenglas", "fengles", "fengle", "", "lord prince king"]) + let v = native_list_append(v, ["tanas", "noun", "tanas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["swyn", "noun", "swȳn", "swȳnes", "swȳne", "", "alternative form of"]) + let v = native_list_append(v, ["peorð", "noun", "peorð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lyg", "noun", "lyg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyge", "noun", "lyġas", "lyġes", "lyġe", "", "lie"]) + let v = native_list_append(v, ["breada", "noun", "breada", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kyning", "noun", "kyningas", "kyninges", "kyninge", "", "alternative form of"]) + let v = native_list_append(v, ["bremel", "noun", "brēmelas", "brēmeles", "brēmele", "", "alternative form of"]) + let v = native_list_append(v, ["bræmel", "noun", "brǣmelas", "brǣmeles", "brǣmele", "", "bramble"]) + let v = native_list_append(v, ["bræmbel", "noun", "bræmbel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ramm", "noun", "rammas", "rammes", "ramme", "", "ram animal"]) + let v = native_list_append(v, ["cyta", "noun", "cȳtan", "cȳtan", "cȳtan", "", "kite"]) + let v = native_list_append(v, ["pilegrim", "noun", "pilegrim", "", "", "", "traveler wanderer"]) + let v = native_list_append(v, ["girene", "noun", "girene", "", "", "", "inflection of giren"]) + let v = native_list_append(v, ["disig", "noun", "disig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Matheus", "noun", "Matheus", "Mathēī", "Matheō", "", "Matthew the apostle"]) + let v = native_list_append(v, ["Pena", "noun", "Pena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fieder", "noun", "fieder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["domere", "noun", "dōmeras", "dōmeres", "dōmere", "", "judge"]) + let v = native_list_append(v, ["hlinc", "noun", "hlinċas", "hlinċes", "hlinċe", "", "hill rising ground"]) + let v = native_list_append(v, ["stalu", "noun", "stala", "stale", "stale", "", "stealing"]) + let v = native_list_append(v, ["tudor", "noun", "tudru", "tudres", "tudre", "", "offspring progeny"]) + let v = native_list_append(v, ["decanas", "noun", "decanas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["nefene", "noun", "nefenan", "nefenan", "nefenan", "", "niece"]) + let v = native_list_append(v, ["Sigel", "noun", "Sigel", "Siġles", "Siġle", "", "alternative form of"]) + let v = native_list_append(v, ["Sigle", "noun", "Sigle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hunta", "noun", "huntan", "huntan", "huntan", "", "hunter"]) + let v = native_list_append(v, ["boges", "noun", "boges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Hieremias", "noun", "Hieremias", "", "", "", "Jeremiah major prophet"]) + let v = native_list_append(v, ["Orcadas", "noun", "Orcadas", "", "", "", "the Orkney Islands"]) + let v = native_list_append(v, ["sawl", "noun", "sawl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meowle", "noun", "mēowlan", "mēowlan", "mēowlan", "", "a maid damsel"]) + let v = native_list_append(v, ["pæla", "noun", "pæla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["crat", "noun", "crat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Widia", "noun", "Widia", "", "", "", "a male given"]) + let v = native_list_append(v, ["Parthum", "noun", "Parthum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Parthe", "noun", "Partha", "", "Parthum", "", "the Parthians"]) + let v = native_list_append(v, ["Saracenum", "noun", "Saracenum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Saracene", "noun", "Saracena", "", "Saracenum", "", "the Saracens"]) + let v = native_list_append(v, ["hechele", "noun", "hechele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folgere", "noun", "folgeras", "folgeres", "folgerum", "", "follower attendant disciple"]) + let v = native_list_append(v, ["Affrica", "noun", "Affrica", "", "", "", "Africa the continent"]) + let v = native_list_append(v, ["hune", "noun", "hunan", "hunan", "hunan", "", "horehound herb"]) + let v = native_list_append(v, ["healsbeag", "noun", "healsbēagas", "healsbēages", "healsbēage", "", "collar or necklace"]) + let v = native_list_append(v, ["mycg", "noun", "myċġas", "myċġes", "myċġe", "", "a small fly"]) + let v = native_list_append(v, ["tægl", "noun", "tæġlas", "tæġles", "tæġle", "", "tail"]) + let v = native_list_append(v, ["iwe", "noun", "iwe", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stunde", "noun", "stunde", "", "", "", "inflection of stund"]) + let v = native_list_append(v, ["muus", "noun", "muus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þorna", "noun", "þorna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gemotes", "noun", "gemotes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Lunden", "noun", "Lunden", "Lundene", "Lundene", "", "London"]) + let v = native_list_append(v, ["pudd", "noun", "puddas", "puddes", "pudde", "", "ditch furrow"]) + let v = native_list_append(v, ["cymenes", "noun", "cymenes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fægernes", "noun", "fæġernessa", "fæġernesse", "fæġernesse", "", "beauty"]) + let v = native_list_append(v, ["scobl", "noun", "scobl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scucca", "noun", "sċuccan", "sċuccan", "sċuccan", "", "an evil spirit"]) + let v = native_list_append(v, ["þæsma", "noun", "þǣsman", "þǣsman", "þǣsman", "", "leaven yeast"]) + let v = native_list_append(v, ["andefne", "noun", "andefnu", "andefnes", "andefnum", "", "measure"]) + let v = native_list_append(v, ["eales", "noun", "eales", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["þeodloga", "noun", "þēodlogan", "þēodlogan", "þēodlogan", "", "a great liar"]) + let v = native_list_append(v, ["greatnesse", "noun", "greatnesse", "", "", "", "inflection of grēatnes"]) + let v = native_list_append(v, ["kinga", "noun", "kinga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["smitte", "noun", "smittan", "smittan", "smittan", "", "pollution defilement"]) + let v = native_list_append(v, ["licnes", "noun", "līcnessa", "līcnesse", "līcnesse", "", "likeness similarity"]) + let v = native_list_append(v, ["Grendel", "noun", "Grendel", "Grendles", "Grendle", "", "the monster Grendel"]) + let v = native_list_append(v, ["þearm", "noun", "þearmas", "þearmes", "þearme", "", "a gut an"]) + let v = native_list_append(v, ["geare", "noun", "geare", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["geares", "noun", "geares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hrincg", "noun", "hrincgas", "hrincges", "hrincge", "", "alternative form of"]) + let v = native_list_append(v, ["welan", "noun", "welan", "", "", "", "inflection of wela"]) + let v = native_list_append(v, ["Constantinopolis", "noun", "Constantinopolis", "", "", "", "Constantinople/Istanbul"]) + let v = native_list_append(v, ["stropp", "noun", "stropp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geposu", "noun", "ġeposa", "ġepose", "ġepose", "", "a head cold"]) + let v = native_list_append(v, ["bisæcc", "noun", "bīsæcca", "bīsæcce", "bīsæcce", "", "wallet"]) + let v = native_list_append(v, ["seaxes", "noun", "seaxes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sweg", "noun", "swēġas", "swēġes", "swēġe", "", "sound noise"]) + let v = native_list_append(v, ["leane", "noun", "leane", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["turfe", "noun", "turfe", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["seale", "noun", "seale", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wella", "noun", "wella", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nihtgenga", "noun", "nihtgenġan", "nihtgenġan", "nihtgenġan", "", "an evil being"]) + let v = native_list_append(v, ["haguþorn", "noun", "haguþornas", "haguþornes", "haguþorne", "", "hawthorn"]) + let v = native_list_append(v, ["gielda", "noun", "ġieldan", "ġieldan", "ġieldan", "", "payer"]) + let v = native_list_append(v, ["gigantas", "noun", "gigantas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Hama", "noun", "Hama", "Hāman", "Hāman", "", "a male given"]) + let v = native_list_append(v, ["monan", "noun", "monan", "", "", "", "inflection of mōna"]) + let v = native_list_append(v, ["leage", "noun", "leage", "", "", "", "inflection of lēage"]) + let v = native_list_append(v, ["feares", "noun", "feares", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ioc", "noun", "ioc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adosa", "noun", "adosan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adosan", "noun", "adosan", "", "", "", "inflection of adosa"]) + let v = native_list_append(v, ["ealas", "noun", "ealas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["esnes", "noun", "esnes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["picga", "noun", "picgan", "picgan", "picgan", "", "a young pig"]) + let v = native_list_append(v, ["læring", "noun", "lǣringa", "lǣringe", "lǣringe", "", "instruction teaching"]) + let v = native_list_append(v, ["canonices", "noun", "canonices", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["winberige", "noun", "wīnberiġan", "wīnberiġan", "wīnberiġan", "", "alternative form of"]) + let v = native_list_append(v, ["þreax", "noun", "þreax", "", "", "", "rottenness decay"]) + let v = native_list_append(v, ["weþer", "noun", "weþras", "weþres", "weþre", "", "wether"]) + let v = native_list_append(v, ["styring", "noun", "styringa", "styringe", "styringe", "", "movement motion"]) + let v = native_list_append(v, ["gesetnes", "noun", "ġesetnessa", "ġesetnesse", "ġesetnesse", "", "constitution law"]) + let v = native_list_append(v, ["gesetednes", "noun", "ġesetednessa", "ġesetednesse", "ġesetednesse", "", "alternative form of"]) + let v = native_list_append(v, ["pening", "noun", "pening", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cycel", "noun", "cyclas", "cyċles", "cyċle", "", "a small cake"]) + let v = native_list_append(v, ["cicel", "noun", "cicel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pocca", "noun", "pohhan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pohha", "noun", "pohhan", "pohhan", "pohhan", "", "poke pouch bag"]) + let v = native_list_append(v, ["folum", "noun", "folum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["renscur", "noun", "rēnsċūras", "rēnsċūres", "rēnsċūre", "", "alternative form of"]) + let v = native_list_append(v, ["ascung", "noun", "āscunga", "āscunge", "āscunge", "", "question"]) + let v = native_list_append(v, ["bæcestre", "noun", "bæcestran", "bæcestran", "bæcestran", "", "one who bakes"]) + let v = native_list_append(v, ["bæchus", "noun", "bæchūs", "bæchūses", "bæchūse", "", "bakery"]) + let v = native_list_append(v, ["gewind", "noun", "ġewind", "ġewindes", "ġewinde", "", "that which has"]) + let v = native_list_append(v, ["þeorf", "noun", "þeorf", "", "", "", "unleavened bread"]) + let v = native_list_append(v, ["sagol", "noun", "sāglas", "sāgles", "sāgle", "", "club cudgel"]) + let v = native_list_append(v, ["tænel", "noun", "tǣnelas", "tǣneles", "tǣnele", "", "a wicker basket"]) + let v = native_list_append(v, ["stenges", "noun", "stenges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Sigelhearwa", "noun", "Siġelhearwan", "Siġelhearwan", "Siġelhearwan", "", "an Ethiopian"]) + let v = native_list_append(v, ["mæsling", "noun", "mæslinga", "mæslinges", "mæslinge", "", "a kind of"]) + let v = native_list_append(v, ["morgnum", "noun", "morgnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["morgna", "noun", "morgna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gefæd", "noun", "ġefadu", "ġefædes", "ġefæde", "", "decorum discretion"]) + let v = native_list_append(v, ["ungefæd", "noun", "unġefadu", "unġefædes", "unġefæde", "", "indiscretion"]) + let v = native_list_append(v, ["geleod", "noun", "ġelēode", "ġelēodes", "ġelēode", "", "one of a"]) + let v = native_list_append(v, ["modcræft", "noun", "mōdcræftas", "", "", "", "mental power skill"]) + let v = native_list_append(v, ["ladmann", "noun", "lādmenn", "lādmannes", "lādmenn", "", "a leader guide"]) + let v = native_list_append(v, ["feldswamm", "noun", "feldswammas", "", "", "", "a field mushroom"]) + let v = native_list_append(v, ["hrepung", "noun", "hrepunga", "hrepunge", "hrepunge", "", "touch touching"]) + let v = native_list_append(v, ["hlyst", "noun", "hlyste", "hlyste", "hlyste", "", "listening"]) + let v = native_list_append(v, ["gedrefednes", "noun", "ġedrēfednesse", "ġedrēfednesse", "ġedrēfednesse", "", "trouble disturbance"]) + let v = native_list_append(v, ["tindum", "noun", "tindum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["socen", "noun", "socen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["socn", "noun", "sōcne", "sōcne", "sōcne", "", "a seeking search"]) + let v = native_list_append(v, ["portgerefa", "noun", "portġerēfan", "portġerēfan", "portġerēfan", "", "a portreeve an"]) + let v = native_list_append(v, ["seolfcwalu", "noun", "seolfcwalu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["termene", "noun", "termene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["clucge", "noun", "clucgan", "clucgan", "clucgan", "", "bell"]) + let v = native_list_append(v, ["dægmæl", "noun", "dæġmǣl", "dæġmǣles", "dæġmǣle", "", "an instrument for"]) + let v = native_list_append(v, ["eored", "noun", "ēoreda", "ēorede", "ēorede", "", "a cavalry band"]) + let v = native_list_append(v, ["pottum", "noun", "pottum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["endum", "noun", "endum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stormum", "noun", "stormum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["listum", "noun", "listum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ciþ", "noun", "ċīþas", "ċīþes", "ċīþe", "", "a young shoot"]) + let v = native_list_append(v, ["hæling", "noun", "hǣlinga", "hǣlinge", "hǣlinge", "", "healing"]) + let v = native_list_append(v, ["feondræden", "noun", "fēondrǣdenna", "fēondrǣdenne", "fēondrǣdenne", "", "enmity"]) + let v = native_list_append(v, ["hlaforddom", "noun", "hlāforddōmas", "", "", "", "jurisdiction governance rule"]) + let v = native_list_append(v, ["infiht", "noun", "infihta", "infihtes", "infihte", "", "alternative form of"]) + let v = native_list_append(v, ["cynnes", "noun", "cynnes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["niþþe", "noun", "niþþas", "niþþes", "niþþum", "", "a man"]) + let v = native_list_append(v, ["niþþas", "noun", "niþþas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["niþþum", "noun", "niþþum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["niþþa", "noun", "niþþa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["spadu", "noun", "spada", "spade", "spade", "", "spade"]) + let v = native_list_append(v, ["wræþþu", "noun", "wrǣþþa", "wrǣþþe", "wrǣþþe", "", "wrath ire"]) + let v = native_list_append(v, ["slæwþ", "noun", "slǣwþa", "slǣwþe", "slǣwþe", "", "sloth laziness"]) + let v = native_list_append(v, ["Wada", "noun", "Wada", "", "", "", "a male given"]) + let v = native_list_append(v, ["æmete", "noun", "ǣmetan", "ǣmetan", "ǣmetan", "", "ant"]) + let v = native_list_append(v, ["sceamu", "noun", "sċeama", "sċeame", "sċeame", "", "alternative form of"]) + let v = native_list_append(v, ["andsaca", "noun", "andsacan", "andsacan", "andsacan", "", "adversary opponent enemy"]) + let v = native_list_append(v, ["slepes", "noun", "slepes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["drycræft", "noun", "drȳcræftas", "drȳcræftes", "drȳcræfte", "", "sorcery"]) + let v = native_list_append(v, ["pipdream", "noun", "pīpdrēamas", "pīpdrēames", "pīpdrēame", "", "the sound of"]) + let v = native_list_append(v, ["seohtre", "noun", "seohtran", "", "", "", "a pipe through"]) + let v = native_list_append(v, ["fyrenðearfe", "noun", "fyrenðearfe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gegaderung", "noun", "ġegaderunga", "ġegaderunge", "ġegaderunge", "", "a joining together"]) + let v = native_list_append(v, ["framcynn", "noun", "framcynn", "", "", "", "offspring progeny posterity"]) + let v = native_list_append(v, ["heall", "noun", "healla", "healle", "healle", "", "a hall residence"]) + let v = native_list_append(v, ["nepflod", "noun", "nēpflōdas", "", "", "", "a very low"]) + let v = native_list_append(v, ["heahflod", "noun", "hēahflōdas", "", "", "", "high tide"]) + let v = native_list_append(v, ["lareow", "noun", "lārēowas", "lārēowes", "lārēowe", "", "teacher"]) + let v = native_list_append(v, ["ynneleac", "noun", "ynnelēac", "", "", "", "onion"]) + let v = native_list_append(v, ["ynne", "noun", "ynnan", "ynnan", "ynnan", "", "onion"]) + let v = native_list_append(v, ["gærsstapa", "noun", "gærsstapan", "gærsstapan", "gærsstapan", "", "alternative form of"]) + let v = native_list_append(v, ["gærs", "noun", "gærsa", "gærses", "gærse", "", "alternative form of"]) + let v = native_list_append(v, ["flotum", "noun", "flotum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["weofod", "noun", "wēofodu", "wēofodes", "wēofode", "", "altar"]) + let v = native_list_append(v, ["gesnot", "noun", "ġesnot", "", "", "", "nasal mucus snot"]) + let v = native_list_append(v, ["sanct", "noun", "sanctas", "sanctes", "sancte", "", "saint"]) + let v = native_list_append(v, ["hereweg", "noun", "hereweg", "", "", "", "highway"]) + let v = native_list_append(v, ["begbeam", "noun", "beġbēamas", "beġbēames", "beġbēame", "", "a mulberry bush"]) + let v = native_list_append(v, ["cranic", "noun", "cranicas", "cranices", "cranice", "", "chronicle"]) + let v = native_list_append(v, ["fealcen", "noun", "fealcnas", "fealcnes", "fealcne", "", "falcon bird"]) + let v = native_list_append(v, ["dierne", "noun", "diernu", "diernes", "diernum", "", "a secret"]) + let v = native_list_append(v, ["tunglere", "noun", "tungleras", "tungleres", "tunglerum", "", "astrologer or astronomer"]) + let v = native_list_append(v, ["burum", "noun", "burum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hooc", "noun", "hooc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["walle", "noun", "walle", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tusca", "noun", "tusca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tuscum", "noun", "tuscum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["tuscas", "noun", "tuscas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["tusce", "noun", "tusce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wuduland", "noun", "wudulanda", "wudulandes", "wudulande", "", "a wooded land"]) + let v = native_list_append(v, ["heofan", "noun", "heofanas", "heofanes", "heofane", "", "alternative form of"]) + let v = native_list_append(v, ["heof", "noun", "hēofas", "hēofes", "hēofe", "", "grief"]) + let v = native_list_append(v, ["wiergþu", "noun", "wierġþa", "wierġþe", "wierġþe", "", "curse"]) + let v = native_list_append(v, ["claþ", "noun", "clāþas", "clāþes", "clāþe", "", "cloth"]) + let v = native_list_append(v, ["claþas", "noun", "claþas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ducena", "noun", "ducena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["discipul", "noun", "discipulas", "discipules", "discipule", "", "disciple"]) + let v = native_list_append(v, ["ciris", "noun", "ciris", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelanda", "noun", "ġelandan", "ġelandan", "ġelandan", "", "compatriot"]) + let v = native_list_append(v, ["godnes", "noun", "gōdnessa", "gōdnesse", "gōdnesse", "", "the quality or"]) + let v = native_list_append(v, ["mistum", "noun", "mistum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hattefagol", "noun", "hattefagol", "", "", "", "a hedgehog"]) + let v = native_list_append(v, ["cossum", "noun", "cossum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["floccum", "noun", "floccum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["flocce", "noun", "flocce", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["metodum", "noun", "metodum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Ephese", "noun", "Ephese", "Ephesan", "Ephesan", "", "Ephesus An ancient"]) + let v = native_list_append(v, ["Persida", "noun", "Persida", "", "", "", "Persia"]) + let v = native_list_append(v, ["logum", "noun", "logum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Romanum", "noun", "Romanum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["buras", "noun", "buras", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["sporum", "noun", "sporum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["cyrf", "noun", "cyrfas", "cyrfes", "cyrfe", "", "an instrument used"]) + let v = native_list_append(v, ["lindum", "noun", "lindum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["borgum", "noun", "borgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["scid", "noun", "sċīd", "", "", "", "a thin piece"]) + let v = native_list_append(v, ["loddere", "noun", "lodderas", "", "", "", "poor person pauper"]) + let v = native_list_append(v, ["gleda", "noun", "gleda", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["sugum", "noun", "sugum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["siþa", "noun", "siþa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["talente", "noun", "talentan", "talentan", "talentan", "", "talent money weight"]) + let v = native_list_append(v, ["wræþþo", "noun", "wræþþo", "wrǣþþo", "wrǣþþo", "", "alternative form of"]) + let v = native_list_append(v, ["diht", "noun", "dihta", "dihtes", "dihte", "", "a setting in"]) + let v = native_list_append(v, ["gediht", "noun", "ġediht", "", "", "", "a composition"]) + let v = native_list_append(v, ["þyrst", "noun", "þyrst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stanrocc", "noun", "stānroccas", "stānrocces", "stānrocce", "", "a high rock"]) + let v = native_list_append(v, ["heolca", "noun", "heolcan", "heolcan", "heolcan", "", "hoarfrost rime"]) + let v = native_list_append(v, ["mildheortnes", "noun", "mildheortnessa", "mildheortnesse", "mildheortnesse", "", "mercy"]) + let v = native_list_append(v, ["friþa", "noun", "friþa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["genga", "noun", "genġan", "genġan", "genġan", "", "walker goer"]) + let v = native_list_append(v, ["treppe", "noun", "treppan", "treppan", "treppan", "", "alternative form of"]) + let v = native_list_append(v, ["dræn", "noun", "drǣna", "drǣne", "drǣne", "", "alternative form of"]) + let v = native_list_append(v, ["middæg", "noun", "midde dagas", "middes dæġes", "middum dæġe", "", "noon midday"]) + let v = native_list_append(v, ["gelotendæg", "noun", "ġelotendagas", "ġelotendæġes", "ġelotendæġe", "", "afternoon"]) + let v = native_list_append(v, ["midniht", "noun", "midda niht", "midre niht", "midre niht", "", "midnight"]) + let v = native_list_append(v, ["ealuhus", "noun", "ealuhus", "", "", "", "place where beer"]) + let v = native_list_append(v, ["weorþsciepe", "noun", "weorþsċiepas", "weorþsċiepes", "weorþsċiepe", "", "dignity worth honor"]) + let v = native_list_append(v, ["hrif", "noun", "hrifu", "hrifes", "hrife", "", "womb"]) + let v = native_list_append(v, ["hreaþemus", "noun", "hreaþemȳs", "hreaþemȳs", "hreaþemȳs", "", "bat flying mammal"]) + let v = native_list_append(v, ["hreaðemus", "noun", "hreaðemus", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hris", "noun", "hrīs", "hrīses", "hrīse", "", "twig branch"]) + let v = native_list_append(v, ["clud", "noun", "clūdas", "clūdes", "clūde", "", "stone rock boulder"]) + let v = native_list_append(v, ["worc", "noun", "worca", "worces", "worce", "", "alternative form of"]) + let v = native_list_append(v, ["heahengel", "noun", "hēahenglas", "hēahengles", "hēahengle", "", "an archangel"]) + let v = native_list_append(v, ["sibbe", "noun", "sibbe", "", "", "", "inflection of sibb"]) + let v = native_list_append(v, ["tyncen", "noun", "tynċenu", "tynċenes", "tynċene", "", "a small barrel"]) + let v = native_list_append(v, ["belg", "noun", "belg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ticcen", "noun", "tiċċenu", "tiċċenes", "tiċċene", "", "a young goat"]) + let v = native_list_append(v, ["striend", "noun", "strīende", "strīende", "strīende", "", "generation race kin"]) + let v = native_list_append(v, ["geligre", "noun", "ġeliġru", "", "", "", "the act of"]) + let v = native_list_append(v, ["geligere", "noun", "ġeligeru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geliger", "noun", "ġeligeru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gec", "noun", "gec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Februarius", "noun", "Februarius", "", "", "", "February"]) + let v = native_list_append(v, ["Ianuarius", "noun", "Ianuarius", "", "", "", "January"]) + let v = native_list_append(v, ["Martius", "noun", "Martius", "", "", "", "March"]) + let v = native_list_append(v, ["stybb", "noun", "stybbas", "stybbes", "stybbe", "", "stump of a"]) + let v = native_list_append(v, ["stubb", "noun", "stubbas", "stubbes", "stubbe", "", "alternative form of"]) + let v = native_list_append(v, ["scanca", "noun", "sċancan", "sċancan", "sċancan", "", "leg"]) + let v = native_list_append(v, ["sceanca", "noun", "sċeancan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sceonca", "noun", "sċeoncan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gesceft", "noun", "gesceft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Billa", "noun", "Billa", "", "", "", "a male given"]) + let v = native_list_append(v, ["dwolma", "noun", "dwolman", "dwolman", "dwolman", "", "chaos"]) + let v = native_list_append(v, ["bræmelberie", "noun", "brǣmelberian", "brǣmelberian", "brǣmelberian", "", "alternative form of"]) + let v = native_list_append(v, ["sangestre", "noun", "sangestran", "sangestran", "sangestran", "", "singer female"]) + let v = native_list_append(v, ["sangcræft", "noun", "sangcræftas", "", "", "", "the art of"]) + let v = native_list_append(v, ["beage", "noun", "beage", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["seolcwyrm", "noun", "seolcwyrmas", "seolcwyrmes", "seolcwyrme", "", "silkworm"]) + let v = native_list_append(v, ["seolc", "noun", "seolcas", "seolces", "seolce", "", "silk"]) + let v = native_list_append(v, ["Iob", "noun", "Iob", "Iōbes", "Iōbe", "", "Job biblical character"]) + let v = native_list_append(v, ["pearruc", "noun", "pearrucas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yce", "noun", "ȳċan", "ȳċan", "ȳċan", "", "toad poisonous frog"]) + let v = native_list_append(v, ["eorþberige", "noun", "eorþberiġan", "eorþberiġan", "eorþberiġan", "", "alternative form of"]) + let v = native_list_append(v, ["eorþberie", "noun", "eorþberian", "eorþberian", "eorþberian", "", "alternative spelling of"]) + let v = native_list_append(v, ["æglæca", "noun", "ǣglǣċan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drinc", "noun", "drinċas", "drinċes", "drinċe", "", "synonym of drynċ"]) + let v = native_list_append(v, ["drænc", "noun", "drænċas", "drænċes", "drænċe", "", "alternative form of"]) + let v = native_list_append(v, ["eadesa", "noun", "eadesan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeox", "noun", "þeox", "", "", "", "a spear"]) + let v = native_list_append(v, ["þeoxle", "noun", "þeoxlan", "þeoxlan", "þeoxlan", "", "axe"]) + let v = native_list_append(v, ["eldo", "noun", "eldo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waldas", "noun", "waldas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["breþer", "noun", "breþer", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["æfgrynde", "noun", "æfgryndu", "æfgryndes", "æfgryndum", "", "abyss"]) + let v = native_list_append(v, ["geriht", "noun", "ġeriht", "", "", "", "that which is"]) + let v = native_list_append(v, ["slegel", "noun", "sleġlas", "sleġles", "sleġle", "", "an instrument for"]) + let v = native_list_append(v, ["strengþu", "noun", "strengþa", "strengþe", "strengþe", "", "strength"]) + let v = native_list_append(v, ["strengþo", "noun", "strengþa", "strengþe", "strengþum", "", "alternative form of"]) + let v = native_list_append(v, ["ducan", "noun", "ducan", "", "", "", "inflection of dū̆ce"]) + let v = native_list_append(v, ["hyfe", "noun", "hyfe", "", "", "", "inflection of hȳf"]) + let v = native_list_append(v, ["hyf", "noun", "hȳfa", "hȳfe", "hȳfe", "", "beehive"]) + let v = native_list_append(v, ["cenþu", "noun", "cēnþa", "", "", "", "boldness bravery keenness"]) + let v = native_list_append(v, ["Ælle", "noun", "Ælle", "", "", "", "a male given"]) + let v = native_list_append(v, ["Æþelwulf", "noun", "Æþelwulf", "Æþelwulfes", "Æþelwulfe", "", "a male given"]) + let v = native_list_append(v, ["Aþelwulf", "noun", "Aþelwulf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gecor", "noun", "ġecoru", "", "", "", "choice"]) + let v = native_list_append(v, ["nemning", "noun", "nemninga", "nemninge", "nemninge", "", "name appellation"]) + let v = native_list_append(v, ["cippes", "noun", "cippes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["foþer", "noun", "foþer", "", "", "", "food fodder"]) + let v = native_list_append(v, ["dages", "noun", "dages", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wambadl", "noun", "wambādla", "wambādle", "wambādle", "", "stomach ache"]) + let v = native_list_append(v, ["isenordal", "noun", "īsenordāl", "īsenordāles", "īsenordāle", "", "ordeal by iron"]) + let v = native_list_append(v, ["croppa", "noun", "croppan", "croppan", "croppan", "", "crop"]) + let v = native_list_append(v, ["hlafæta", "noun", "hlāfǣtan", "hlāfǣtan", "hlāfǣtan", "", "bread-eater"]) + let v = native_list_append(v, ["wrætt", "noun", "wrǣtta", "wrǣtte", "wrǣtte", "", "ornament jewel"]) + let v = native_list_append(v, ["mylne", "noun", "mylne", "", "", "", "inflection of mylen"]) + let v = native_list_append(v, ["mylna", "noun", "mylna", "", "", "", "genitive/nominative/accusative plural of"]) + let v = native_list_append(v, ["wielm", "noun", "wielmas", "wielmes", "wielme", "", "that which wells"]) + let v = native_list_append(v, ["sweofot", "noun", "sweofotu", "sweofotes", "sweofote", "", "sleep slumber"]) + let v = native_list_append(v, ["preowthwil", "noun", "prēowthwīla", "", "", "", "the time it"]) + let v = native_list_append(v, ["ciepe", "noun", "ċīepan", "ċīepan", "ċīepan", "", "onion Allium cepa"]) + let v = native_list_append(v, ["gyr", "noun", "gyras", "gyres", "gyre", "", "mud"]) + let v = native_list_append(v, ["arcebiscop", "noun", "arċebisċopas", "arċebisċopes", "arċebisċope", "", "archbishop"]) + let v = native_list_append(v, ["Moises", "noun", "Moises", "", "", "", "Moses Biblical character"]) + let v = native_list_append(v, ["wituma", "noun", "wituman", "wituman", "wituman", "", "dowry"]) + let v = native_list_append(v, ["stæfleahter", "noun", "stæfleahtras", "stæfleahtres", "stæfleahtre", "", "grammatical error"]) + let v = native_list_append(v, ["Seaxe", "noun", "Seaxna", "", "Seaxum", "", "alternative form of"]) + let v = native_list_append(v, ["Seaxa", "noun", "Seaxan", "Seaxan", "Seaxan", "", "a Saxon"]) + let v = native_list_append(v, ["rædere", "noun", "rǣderas", "rǣderes", "rǣdere", "", "one who reads"]) + let v = native_list_append(v, ["splott", "noun", "splottas", "splottes", "splotte", "", "a plot or"]) + let v = native_list_append(v, ["þiestru", "noun", "þīestra", "þīestre", "þīestre", "", "darkness"]) + let v = native_list_append(v, ["orsorg", "noun", "orsorga", "orsorge", "orsorge", "", "freedom from anxiety"]) + let v = native_list_append(v, ["swegl", "noun", "swegl", "sweġles", "sweġle", "", "alternative form of"]) + let v = native_list_append(v, ["þafung", "noun", "þafunga", "þafunge", "þafunge", "", "consent permission"]) + let v = native_list_append(v, ["giedding", "noun", "giedding", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geddung", "noun", "geddung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giddung", "noun", "giddung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cyneg", "noun", "cynegas", "cyneges", "cynege", "", "alternative form of"]) + let v = native_list_append(v, ["cynegas", "noun", "cynegas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["pyle", "noun", "pyle", "", "", "", "pillow"]) + let v = native_list_append(v, ["eames", "noun", "eames", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ofertogennes", "noun", "ofertogennessa", "ofertogennesse", "ofertogennesse", "", "the condition of"]) + let v = native_list_append(v, ["furh", "noun", "fyrh", "fyrh", "fyrh", "", "furrow"]) + let v = native_list_append(v, ["healmes", "noun", "healmes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gesyd", "noun", "ġesydu", "", "", "", "a place in"]) + let v = native_list_append(v, ["seod", "noun", "sēodas", "sēodes", "sēode", "", "a moneybag purse"]) + let v = native_list_append(v, ["cnucel", "noun", "cnuclas", "", "", "", "the juncture of"]) + let v = native_list_append(v, ["scyrte", "noun", "sċyrtan", "sċyrtan", "sċyrtan", "", "a short garment"]) + let v = native_list_append(v, ["uder", "noun", "ūder", "ūdres", "ūdre", "", "udder"]) + let v = native_list_append(v, ["dægsceald", "noun", "dæġsċealdas", "", "", "", "a dayshield screen"]) + let v = native_list_append(v, ["gimwyrhta", "noun", "ġimwyrhtan", "ġimwyrhtan", "ġimwyrhtan", "", "jeweler"]) + let v = native_list_append(v, ["gafolrand", "noun", "gafolrandas", "", "", "", "a line rod"]) + let v = native_list_append(v, ["staþolung", "noun", "staþolunga", "staþolunge", "staþolunge", "", "founding foundation settling"]) + let v = native_list_append(v, ["staþoliend", "noun", "staþoliende", "staþoliendes", "staþoliende", "", "founder"]) + let v = native_list_append(v, ["staþolnes", "noun", "staþolnessa", "staþolnesse", "staþolnesse", "", "firmament foundation"]) + let v = native_list_append(v, ["staþolæht", "noun", "staþolǣhte", "staþolǣhte", "staþolǣhte", "", "estate landed possession"]) + let v = native_list_append(v, ["modstaþol", "noun", "mōdstaþolas", "mōdstaþoles", "mōdstaþole", "", "the minds foundation"]) + let v = native_list_append(v, ["modstaþolnes", "noun", "mōdstaþolnessa", "mōdstaþolnesse", "mōdstaþolnesse", "", "firm-mindedness established character"]) + let v = native_list_append(v, ["Hreþe", "noun", "Hreþe", "", "", "", "Rheda deity"]) + let v = native_list_append(v, ["Grecland", "noun", "Grecland", "Grēclandes", "Grēclande", "", "the land of"]) + let v = native_list_append(v, ["lara", "noun", "lara", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Cenric", "noun", "Cenric", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cerdic", "noun", "Cerdic", "Ċerdices", "Ċerdice", "", "a male given"]) + let v = native_list_append(v, ["Dudda", "noun", "Dudda", "Duddan", "Duddan", "", "a male given"]) + let v = native_list_append(v, ["Esla", "noun", "Esla", "Eslan", "Eslan", "", "a male given"]) + let v = native_list_append(v, ["Ædre", "noun", "Ædre", "Ǣdran", "Ǣdran", "", "a female given"]) + let v = native_list_append(v, ["Bebbe", "noun", "Bebbe", "Bebban", "Bebban", "", "a diminutive of"]) + let v = native_list_append(v, ["Ealhswiþ", "noun", "Ealhswiþ", "Ealhswīþe", "Ealhswīþe", "", "a female given"]) + let v = native_list_append(v, ["edstaþeliend", "noun", "edstaþeliende", "edstaþeliendes", "edstaþeliende", "", "a restorer"]) + let v = native_list_append(v, ["wisdomes", "noun", "wisdomes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tyht", "noun", "tyhtas", "tyhtes", "tyhte", "", "that which is"]) + let v = native_list_append(v, ["fotspor", "noun", "fōtsporu", "fōtspores", "fōtspore", "", "a trail of"]) + let v = native_list_append(v, ["crisman", "noun", "crisman", "", "", "", "inflection of crisma"]) + let v = native_list_append(v, ["wildor", "noun", "wildru", "wildres", "wildre", "", "a wild beast"]) + let v = native_list_append(v, ["efenniht", "noun", "efennihta", "", "efennihtum", "", "alternative form of"]) + let v = native_list_append(v, ["gnætt", "noun", "gnættas", "gnættes", "gnætte", "", "a small flying"]) + let v = native_list_append(v, ["fæderland", "noun", "fæderlanda", "fæderlandes", "fæderlande", "", "ones fathers land"]) + let v = native_list_append(v, ["muþa", "noun", "mūþan", "mūþan", "mūþan", "", "the mouth of"]) + let v = native_list_append(v, ["sumer", "noun", "sumeras", "sumeres", "sumere", "", "alternative spelling of"]) + let v = native_list_append(v, ["bladum", "noun", "bladum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ælædend", "noun", "ǣlǣdende", "", "", "", "lawgiver legislator"]) + let v = native_list_append(v, ["centaurian", "noun", "centaurian", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["sincgiefa", "noun", "sincġiefan", "sincġiefan", "sincġiefan", "", "a lord the"]) + let v = native_list_append(v, ["sincgyfa", "noun", "sincgyfa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Iacob", "noun", "Iacob", "Iācōbes", "Iācōbe", "", "Jacob father of"]) + let v = native_list_append(v, ["ceola", "noun", "ceola", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stirc", "noun", "stirc", "", "", "", "stirk"]) + let v = native_list_append(v, ["gingra", "noun", "ġingran", "ġingran", "ġingran", "", "disciple"]) + let v = native_list_append(v, ["blæstes", "noun", "blæstes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["moraþ", "noun", "mōraþ", "mōraþes", "mōraþe", "", "a sweet boiled"]) + let v = native_list_append(v, ["morað", "noun", "mōrað", "mōraðes", "mōraðe", "", "alternative spelling of"]) + let v = native_list_append(v, ["grimhelm", "noun", "grīmhelmas", "grīmhelmes", "grīmhelme", "", "a visored helmet"]) + let v = native_list_append(v, ["wylfen", "noun", "wylfenna", "wylfenne", "wylfenne", "", "wolf"]) + let v = native_list_append(v, ["ogan", "noun", "ogan", "", "", "", "inflection of ōga"]) + let v = native_list_append(v, ["heafola", "noun", "heafolan", "heafolan", "heafolan", "", "alternative form of"]) + let v = native_list_append(v, ["sælac", "noun", "sǣlāc", "sǣlāces", "sǣlāce", "", "sea-gift"]) + let v = native_list_append(v, ["freolac", "noun", "frēolāc", "frēolāces", "frēolāce", "", "oblation free-will offering"]) + let v = native_list_append(v, ["feohtlac", "noun", "feohtlāc", "feohtlāces", "feohtlāce", "", "fighting"]) + let v = native_list_append(v, ["hæmedlac", "noun", "hǣmedlāc", "hǣmedlāces", "hǣmedlāce", "", "sexual intercourse"]) + let v = native_list_append(v, ["slege", "noun", "sleġas", "sleġes", "sleġe", "", "hit strike blow"]) + let v = native_list_append(v, ["draca", "noun", "dracan", "dracan", "dracan", "", "dragon"]) + let v = native_list_append(v, ["sirce", "noun", "sirce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Iericho", "noun", "Iericho", "", "", "", "Jericho"]) + let v = native_list_append(v, ["sunnfolgend", "noun", "sunnfolgende", "sunnfolgendes", "sunnfolgende", "", "the heliotrope flower"]) + let v = native_list_append(v, ["solsece", "noun", "sōlsecan", "sōlsecan", "sōlsecan", "", "the heliotrope flower"]) + let v = native_list_append(v, ["sigelhweorfa", "noun", "siġelhweorfan", "siġelhweorfan", "siġelhweorfan", "", "a heliotrope flower"]) + let v = native_list_append(v, ["hyrdel", "noun", "hyrdlas", "", "", "", "a frame made"]) + let v = native_list_append(v, ["dott", "noun", "dott", "", "", "", "dot speck spot"]) + let v = native_list_append(v, ["hosan", "noun", "hosena", "", "hosum", "", "pants trousers"]) + let v = native_list_append(v, ["selfcwala", "noun", "selfcwalan", "selfcwalan", "selfcwalan", "", "someone who commits"]) + let v = native_list_append(v, ["nytte", "noun", "nytte", "", "", "", "inflection of nytt"]) + let v = native_list_append(v, ["scolere", "noun", "scōleras", "scōleres", "scōlere", "", "a scholar learner"]) + let v = native_list_append(v, ["floda", "noun", "floda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["godwebb", "noun", "godwebba", "godwebbes", "godwebbe", "", "a divine weave"]) + let v = native_list_append(v, ["wurma", "noun", "wurman", "wurman", "wurman", "", "a shellfish from"]) + let v = native_list_append(v, ["cofgod", "noun", "cōfgodas", "cōfgodes", "cōfgode", "", "household god penates"]) + let v = native_list_append(v, ["cofgodas", "noun", "cōfgodas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["husel", "noun", "hūsel", "hūseles", "hūsele", "", "alternative form of"]) + let v = native_list_append(v, ["husl", "noun", "husl", "hūsles", "hūsle", "", "the Eucharist"]) + let v = native_list_append(v, ["husul", "noun", "husul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seaþ", "noun", "sēaþas", "sēaþes", "sēaþe", "", "pit hole"]) + let v = native_list_append(v, ["reoma", "noun", "reoman", "reoman", "reoman", "", "alternative form of"]) + let v = native_list_append(v, ["susl", "noun", "sūsla", "sūsle", "sūsle", "", "torment anguish agony"]) + let v = native_list_append(v, ["Waldhere", "noun", "Waldhere", "", "", "", "a male given"]) + let v = native_list_append(v, ["olfend", "noun", "olfendas", "olfendes", "olfende", "", "camel"]) + let v = native_list_append(v, ["elp", "noun", "elpas", "elpes", "elpe", "", "elephant"]) + let v = native_list_append(v, ["ylpend", "noun", "ylpendas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylp", "noun", "ylpas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hellruna", "noun", "hellrūnan", "hellrūnan", "hellrūnan", "", "one skilled in"]) + let v = native_list_append(v, ["helruna", "noun", "helrūnan", "helrūnan", "helrūnan", "", "alternative form of"]) + let v = native_list_append(v, ["hellrun", "noun", "hellrūna", "hellrūne", "hellrūne", "", "a sorceress one"]) + let v = native_list_append(v, ["helrynegu", "noun", "helrȳneġa", "helrȳneġe", "helrȳneġe", "", "sorceress witch"]) + let v = native_list_append(v, ["crabba", "noun", "crabban", "crabban", "crabban", "", "crab"]) + let v = native_list_append(v, ["cranoc", "noun", "cranocas", "", "", "", "crane bird"]) + let v = native_list_append(v, ["strod", "noun", "strōd", "strōdes", "strōde", "", "marshy land overgrown"]) + let v = native_list_append(v, ["netene", "noun", "netene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gleomann", "noun", "glēomenn", "glēomannes", "glēomenn", "", "a minstrel musician"]) + let v = native_list_append(v, ["ealdormann", "noun", "ealdormenn", "ealdormannes", "ealdormenn", "", "A leader ruler"]) + let v = native_list_append(v, ["wæpnedmann", "noun", "wǣpnedmenn", "wǣpnedmannes", "wǣpnedmenn", "", "a male"]) + let v = native_list_append(v, ["forþgesceaft", "noun", "forþġesċeafte", "forþġesċeafte", "forþġesċeafte", "", "the world creation"]) + let v = native_list_append(v, ["wæfersien", "noun", "wæfersīene", "wæfersīene", "wæfersīene", "", "a spectacle a"]) + let v = native_list_append(v, ["neorxnawang", "noun", "neorxnawangas", "neorxnawanges", "neorxnawange", "", "Paradise."]) + let v = native_list_append(v, ["munec", "noun", "munecas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cysa", "noun", "ċȳsan", "ċȳsan", "ċȳsan", "", "alternative form of"]) + let v = native_list_append(v, ["rammes", "noun", "rammes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Eadweard", "noun", "Eadweard", "Ēadweardes", "Ēadwearde", "", "a male given"]) + let v = native_list_append(v, ["senep", "noun", "senepas", "senepes", "senepe", "", "mustard"]) + let v = native_list_append(v, ["hæfer", "noun", "hæferas", "hæferes", "hæfere", "", "he-goat buck"]) + let v = native_list_append(v, ["Eadric", "noun", "Eadric", "", "", "", "a male given"]) + let v = native_list_append(v, ["gleng", "noun", "glenġe", "glenġe", "glenġe", "", "ornament decoration"]) + let v = native_list_append(v, ["þefel", "noun", "þefelas", "þefeles", "þefele", "", "mulled wine"]) + let v = native_list_append(v, ["bearna", "noun", "bearna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["horh", "noun", "horwas", "horwes", "horwe", "", "phlegm"]) + let v = native_list_append(v, ["galdra", "noun", "galdra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["berena", "noun", "berena", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kining", "noun", "kining", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cawel", "noun", "cāwlas", "cāwles", "cāwle", "", "colewort"]) + let v = native_list_append(v, ["guþfugel", "noun", "gūþfuglas", "gūþfugles", "gūþfugle", "", "alternative form of"]) + let v = native_list_append(v, ["uþwita", "noun", "ūþwitan", "ūþwitan", "ūþwitan", "", "philosopher"]) + let v = native_list_append(v, ["gangweg", "noun", "gangwegas", "gangweġes", "gangweġe", "", "a passageway gangway"]) + let v = native_list_append(v, ["cynerice", "noun", "cynerīċu", "cynerīċes", "cynerīċe", "", "The authority of"]) + let v = native_list_append(v, ["gebetung", "noun", "ġebētunga", "ġebētunge", "ġebētunge", "", "a bettering an"]) + let v = native_list_append(v, ["crocca", "noun", "croccan", "croccan", "croccan", "", "a crock earthenware"]) + let v = native_list_append(v, ["alderdom", "noun", "alderdom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Wealas", "noun", "Wēalas", "Wēala", "Wēalum", "", "the Welsh"]) + let v = native_list_append(v, ["guþfugelas", "noun", "guþfugelas", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["agenung", "noun", "āgenunga", "āgenunge", "āgenunge", "", "an owning possession"]) + let v = native_list_append(v, ["seales", "noun", "seales", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sumerhus", "noun", "sumerhūs", "sumerhūses", "sumerhūse", "", "summerhouse"]) + let v = native_list_append(v, ["sumorhus", "noun", "sumorhūs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winterhus", "noun", "winterhūs", "winterhūses", "winterhūse", "", "winterhouse"]) + let v = native_list_append(v, ["scandhus", "noun", "sċandhūs", "sċandhūses", "sċandhūse", "", "house of ill-repute"]) + let v = native_list_append(v, ["friþhus", "noun", "friþhūs", "friþhūses", "friþhūse", "", "safehouse asylum sanctuary"]) + let v = native_list_append(v, ["generstede", "noun", "ġenerstedas", "ġenerstedes", "ġenerstede", "", "a place of"]) + let v = native_list_append(v, ["genear", "noun", "ġenearu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fnora", "noun", "fnoran", "fnoran", "fnoran", "", "a sneeze"]) + let v = native_list_append(v, ["eosol", "noun", "eosolas", "eosoles", "eosole", "", "alternative form of"]) + let v = native_list_append(v, ["feht", "noun", "feht", "", "", "", "woolen fleece"]) + let v = native_list_append(v, ["fanu", "noun", "fana", "fane", "fane", "", "synonym of fana"]) + let v = native_list_append(v, ["grindere", "noun", "grinderas", "grinderes", "grinderum", "", "one who or"]) + let v = native_list_append(v, ["grindel", "noun", "grindlas", "grindles", "grindle", "", "bar bolt"]) + let v = native_list_append(v, ["hnæpp", "noun", "hnæppas", "hnæppes", "hnæppe", "", "cup"]) + let v = native_list_append(v, ["hnæpf", "noun", "hnæpfas", "hnæpfes", "hnæpfe", "", "alternative form of"]) + let v = native_list_append(v, ["hnæp", "noun", "hnæppas", "hnæppes", "hnæppe", "", "alternative form of"]) + let v = native_list_append(v, ["Israhel", "noun", "Israhelas", "Israheles", "Israhele", "", "Israel"]) + let v = native_list_append(v, ["holegn", "noun", "holeġnas", "holeġnes", "holeġne", "", "alternative form of"]) + let v = native_list_append(v, ["leornungcniht", "noun", "leornungcnihtas", "leornungcnihtes", "leornungcnihte", "", "a youth engaged"]) + let v = native_list_append(v, ["cnihthad", "noun", "cnihthādas", "cnihthādes", "cnihthāde", "", "boyhood"]) + let v = native_list_append(v, ["cildhad", "noun", "ċildhādas", "ċildhādes", "ċildhāde", "", "childhood"]) + let v = native_list_append(v, ["fyrdrinc", "noun", "fyrdrincas", "fyrdrinces", "fyrdrince", "", "warrior soldier"]) + let v = native_list_append(v, ["ciefes", "noun", "ċiefesa", "ċiefese", "ċiefese", "", "concubine"]) + let v = native_list_append(v, ["ciefese", "noun", "ċiefesan", "ċiefesan", "ċiefesan", "", "concubine"]) + let v = native_list_append(v, ["Seaxland", "noun", "Seaxland", "Seaxlandes", "Seaxlande", "", "Saxony a historical"]) + let v = native_list_append(v, ["Freslond", "noun", "Freslond", "Frēslondes", "Frēslonde", "", "Friesland"]) + let v = native_list_append(v, ["Sweoland", "noun", "Sweoland", "Swēolandes", "Swēolande", "", "Sweden a country"]) + let v = native_list_append(v, ["Sweorice", "noun", "Swēorīċu", "Swēorīċes", "Swēorīċe", "", "Sweden a country"]) + let v = native_list_append(v, ["deorling", "noun", "dēorlingas", "dēorlinges", "dēorlinge", "", "alternative form of"]) + let v = native_list_append(v, ["lufestre", "noun", "lufestran", "lufestran", "lufestran", "", "lover"]) + let v = native_list_append(v, ["orleghwil", "noun", "orleġhwīla", "orleġhwīle", "orleġhwīle", "", "a time of"]) + let v = native_list_append(v, ["deorlingas", "noun", "deorlingas", "", "", "", "plural of deorling"]) + let v = native_list_append(v, ["tramet", "noun", "trāmetas", "trāmetes", "trāmete", "", "page of a"]) + let v = native_list_append(v, ["motung", "noun", "mōtunga", "mōtunge", "mōtunge", "", "conversation"]) + let v = native_list_append(v, ["antid", "noun", "antid", "", "", "", "prime the first"]) + let v = native_list_append(v, ["undæd", "noun", "undǣde", "undǣde", "undǣde", "", "crime misdeed"]) + let v = native_list_append(v, ["wyrdstæf", "noun", "wyrdstafas", "wyrdstæfes", "wyrdstæfe", "", "decree of fate"]) + let v = native_list_append(v, ["hyre", "noun", "hyre", "", "", "", "inflection of hȳr"]) + let v = native_list_append(v, ["sangum", "noun", "sangum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["upganges", "noun", "upganges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["upgange", "noun", "upgange", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["upgangas", "noun", "upgangas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["upganga", "noun", "upganga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["upgangum", "noun", "upgangum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["primsang", "noun", "prīmsangas", "prīmsanges", "prīmsange", "", "Prime the religious"]) + let v = native_list_append(v, ["primsanges", "noun", "primsanges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["primsange", "noun", "primsange", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["primsangas", "noun", "primsangas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["primsanga", "noun", "primsanga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["name", "verb", "nāme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abide", "verb", "ābīde", "", "", "", "inflection of ābīdan"]) + let v = native_list_append(v, ["abit", "verb", "ābīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["het", "verb", "hēt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["niet", "verb", "nīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["can", "verb", "can", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["seme", "verb", "sēme", "", "", "", "inflection of sēman"]) + let v = native_list_append(v, ["bit", "verb", "bīt", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["is", "verb", "ys", "ᛁᛋ", "", "", "third-person singular present"]) + let v = native_list_append(v, ["cum", "verb", "cum", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["most", "verb", "mōst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fere", "verb", "fēre", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["send", "verb", "send", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["bio", "verb", "bīo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["it", "verb", "yt", "ytt", "et", "", "third-person singular present"]) + let v = native_list_append(v, ["wrote", "verb", "wrōte", "", "", "", "inflection of wrōtan"]) + let v = native_list_append(v, ["write", "verb", "wrīte", "", "", "", "inflection of wrītan"]) + let v = native_list_append(v, ["age", "verb", "āge", "", "", "", "inflection of āgan"]) + let v = native_list_append(v, ["for", "verb", "fōr", "ᚠᚩᚱᚨ", "fore", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["art", "verb", "art", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["was", "verb", "wes", "wæs", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["bad", "verb", "bād", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["gripe", "verb", "grīpe", "", "", "", "inflection of grīpan"]) + let v = native_list_append(v, ["sing", "verb", "sing", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["slang", "verb", "slang", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["do", "verb", "dō", "", "", "", "inflection of dōn"]) + let v = native_list_append(v, ["amana", "verb", "āmana", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["sy", "verb", "sȳ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teman", "verb", "tēme", "tēmde", "", "", "alternative form of"]) + let v = native_list_append(v, ["hier", "verb", "hīer", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["arise", "verb", "ārīse", "", "", "", "inflection of ārīsan"]) + let v = native_list_append(v, ["arisen", "verb", "ārīsen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["born", "verb", "born", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["beaten", "verb", "bēaten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["began", "verb", "begā", "beēode", "", "", "to bego go"]) + let v = native_list_append(v, ["bid", "verb", "bīd", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["come", "verb", "cōme", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["find", "verb", "find", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["went", "verb", "went", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["lean", "verb", "lēa", "lōg", "", "", "to blame fault"]) + let v = native_list_append(v, ["let", "verb", "lēt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["rid", "verb", "rīd", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["ride", "verb", "rīde", "", "", "", "inflection of rīdan"]) + let v = native_list_append(v, ["rise", "verb", "rīse", "", "", "", "inflection of rīsan"]) + let v = native_list_append(v, ["risen", "verb", "rīsen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["sent", "verb", "sent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sit", "verb", "sit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["slide", "verb", "slīde", "", "", "", "inflection of slīdan"]) + let v = native_list_append(v, ["slit", "verb", "slīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sprang", "verb", "sprang", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["stolen", "verb", "stolen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["stride", "verb", "strīde", "", "", "", "inflection of strīdan"]) + let v = native_list_append(v, ["swollen", "verb", "swollen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["underwrite", "verb", "underwrīte", "", "", "", "inflection of underwrītan"]) + let v = native_list_append(v, ["undo", "verb", "undō", "", "", "", "inflection of undōn"]) + let v = native_list_append(v, ["wet", "verb", "wēt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["won", "verb", "won", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["era", "verb", "era", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["hebben", "verb", "hebben", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["worden", "verb", "ġeworden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ice", "verb", "īċe", "", "", "", "inflection of īċan"]) + let v = native_list_append(v, ["flat", "verb", "flāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["biet", "verb", "bīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["et", "verb", "et", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["far", "verb", "far", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["stop", "verb", "stōp", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["syn", "verb", "sȳn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anime", "verb", "ānime", "", "", "", "inflection of āniman"]) + let v = native_list_append(v, ["band", "verb", "band", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["slapen", "verb", "slāpen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["lies", "verb", "līes", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["ah", "verb", "āh", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["sette", "verb", "sette", "", "", "", "inflection of settan"]) + let v = native_list_append(v, ["wand", "verb", "wand", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mot", "verb", "mōt", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["ol", "verb", "ōl", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["si", "verb", "sī", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ga", "verb", "gā", "", "", "", "inflection of gān"]) + let v = native_list_append(v, ["nah", "verb", "nāh", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["ho", "verb", "hō", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["am", "verb", "am", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["wan", "verb", "wann", "", "", "", "third-person singular of"]) + let v = native_list_append(v, ["gras", "verb", "grās", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lagen", "verb", "lagen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["legen", "verb", "leġen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wat", "verb", "wāt", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["gym", "verb", "ġȳm", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["namen", "verb", "nāmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fare", "verb", "fare", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["don", "verb", "dō", "dyde", "", "", "to do"]) + let v = native_list_append(v, ["fo", "verb", "fō", "", "", "", "inflection of fōn"]) + let v = native_list_append(v, ["glad", "verb", "glād", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mote", "verb", "mōst", "", "", "", "singular present subjunctive"]) + let v = native_list_append(v, ["smite", "verb", "smīte", "", "", "", "inflection of smītan"]) + let v = native_list_append(v, ["sie", "verb", "sīe", "sȳ", "sīæ", "", "singular present subjunctive"]) + let v = native_list_append(v, ["log", "verb", "lōg", "lōh", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["aber", "verb", "āber", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["gale", "verb", "gale", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rad", "verb", "rād", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lah", "verb", "lāh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["bead", "verb", "bēad", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ter", "verb", "ter", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["luce", "verb", "lūce", "", "", "", "inflection of lūcan"]) + let v = native_list_append(v, ["bon", "verb", "bōn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dom", "verb", "dōm", "ᛞᚩᛗ", "", "", "first-person singular present"]) + let v = native_list_append(v, ["barn", "verb", "barn", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["grisen", "verb", "grisen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["afore", "verb", "āfōre", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["meow", "verb", "mēow", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ale", "verb", "āle", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fio", "verb", "fīo", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["rip", "verb", "rīp", "", "", "", "singular of imp"]) + let v = native_list_append(v, ["dengan", "verb", "denġe", "dengde", "", "", "To beat or"]) + let v = native_list_append(v, ["belog", "verb", "belōg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["steppe", "verb", "steppe", "", "", "", "inflection of steppan"]) + let v = native_list_append(v, ["nap", "verb", "nāp", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["rime", "verb", "rīme", "", "", "", "inflection of rīman"]) + let v = native_list_append(v, ["tema", "verb", "tema", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["bue", "verb", "būe", "", "", "", "inflection of būan"]) + let v = native_list_append(v, ["diet", "verb", "dīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fangen", "verb", "fangen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nomen", "verb", "nōmen", "nāmen", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["bun", "verb", "būn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bere", "verb", "bere", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["bogen", "verb", "bogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["blend", "verb", "blēnd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["abad", "verb", "ābād", "", "", "", "past singular of"]) + let v = native_list_append(v, ["hate", "verb", "hāte", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fer", "verb", "fēr", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["beo", "verb", "bēo", "bēom", "bīom", "", "inflection of bēon"]) + let v = native_list_append(v, ["nome", "verb", "nōme", "nāme", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["sac", "verb", "sāc", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ett", "verb", "ett", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["saga", "verb", "saga", "", "", "", "imperative of sagian"]) + let v = native_list_append(v, ["sealtan", "verb", "sealte", "sēolt", "", "", "to salt"]) + let v = native_list_append(v, ["sieltan", "verb", "sielte", "sielte", "", "", "to salt"]) + let v = native_list_append(v, ["gesieltan", "verb", "ġesielte", "ġesielte", "", "", "to salt"]) + let v = native_list_append(v, ["sniwan", "verb", "snīwe", "snīwde", "", "", "to snow"]) + let v = native_list_append(v, ["lace", "verb", "lāce", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["blostmian", "verb", "blōstmiġe", "blōstmode", "", "", "to blossom to"]) + let v = native_list_append(v, ["grip", "verb", "grīp", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["bacan", "verb", "bace", "bōc", "", "", "to bake"]) + let v = native_list_append(v, ["badian", "verb", "bādiġe", "bādode", "", "", "to take a"]) + let v = native_list_append(v, ["basnian", "verb", "bāsniġe", "bāsnode", "", "", "to await expect"]) + let v = native_list_append(v, ["cure", "verb", "cure", "", "", "", "inflection of ċēosan"]) + let v = native_list_append(v, ["æwnian", "verb", "ǣwniġe", "ǣwnode", "", "", "to marry wed"]) + let v = native_list_append(v, ["beæwnian", "verb", "beǣwniġe", "beǣwnode", "", "", "to join in"]) + let v = native_list_append(v, ["æbylgan", "verb", "ǣbylġe", "ǣbylġde", "", "", "to make angry"]) + let v = native_list_append(v, ["æfnan", "verb", "æfne", "æfnde", "", "", "to carry out"]) + let v = native_list_append(v, ["ælan", "verb", "ǣle", "ǣlde", "", "", "to kindle light"]) + let v = native_list_append(v, ["æmtian", "verb", "ǣmtiġe", "ǣmtode", "", "", "to be at"]) + let v = native_list_append(v, ["ærendian", "verb", "ǣrendiġe", "ǣrendode", "", "", "to go on"]) + let v = native_list_append(v, ["æswician", "verb", "ǣswiciġe", "ǣswicode", "", "", "to offend scandalize"]) + let v = native_list_append(v, ["ætrian", "verb", "ǣtriġe", "ǣtrode", "", "", "to poison"]) + let v = native_list_append(v, ["æþryttan", "verb", "ǣþrytte", "ǣþrytte", "", "", "to weary"]) + let v = native_list_append(v, ["abat", "verb", "ābāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lada", "verb", "lāda", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["teo", "verb", "tēo", "", "", "", "inflection of tēon"]) + let v = native_list_append(v, ["wast", "verb", "wāst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["tala", "verb", "tala", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["ceorlian", "verb", "ċeorliġe", "ċeorlode", "", "", "to marry a"]) + let v = native_list_append(v, ["wifian", "verb", "wīfiġe", "wīfode", "", "", "to marry a"]) + let v = native_list_append(v, ["lute", "verb", "lūte", "", "", "", "inflection of lūtan"]) + let v = native_list_append(v, ["anim", "verb", "ānim", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["bint", "verb", "bint", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["recede", "verb", "reċede", "", "", "", "inflection of reċċan"]) + let v = native_list_append(v, ["bion", "verb", "bīo", "bīo", "", "", "alternative form of"]) + let v = native_list_append(v, ["giefan", "verb", "ġiefe", "ġeaf", "", "", "to give"]) + let v = native_list_append(v, ["hir", "verb", "hīr", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["nite", "verb", "nite", "", "", "", "inflection of nitan"]) + let v = native_list_append(v, ["alan", "verb", "ale", "ōl", "", "", "to nourish"]) + let v = native_list_append(v, ["bide", "verb", "bīde", "", "", "", "inflection of bīdan"]) + let v = native_list_append(v, ["cam", "verb", "cam", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bitt", "verb", "bītt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["lea", "verb", "lēa", "", "", "", "inflection of lēan"]) + let v = native_list_append(v, ["luge", "verb", "luge", "", "", "", "inflection of lēogan"]) + let v = native_list_append(v, ["mere", "verb", "mere", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["milt", "verb", "milt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["scat", "verb", "sċāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["slat", "verb", "slāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wile", "verb", "wile", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["clang", "verb", "clang", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fret", "verb", "frēt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["grand", "verb", "grand", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sag", "verb", "sāg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["scan", "verb", "sċān", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sett", "verb", "sett", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["site", "verb", "site", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["snide", "verb", "snide", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["spire", "verb", "spire", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stag", "verb", "stāg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["stang", "verb", "stang", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["stent", "verb", "stent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["swang", "verb", "swang", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["singe", "verb", "singe", "", "", "", "inflection of singan"]) + let v = native_list_append(v, ["aris", "verb", "ārīs", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["boren", "verb", "boren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fore", "verb", "fōre", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["slog", "verb", "slōg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["freo", "verb", "frīo", "freoh", "frioh", "", "imperative singular of"]) + let v = native_list_append(v, ["aniet", "verb", "ānīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["tided", "verb", "tīded", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bond", "verb", "bond", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["deg", "verb", "dēg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afon", "verb", "āfō", "āfēng", "", "", "to receive take"]) + let v = native_list_append(v, ["fond", "verb", "fond", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["molten", "verb", "molten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["golden", "verb", "golden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["numen", "verb", "numen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lamp", "verb", "lamp", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["motan", "verb", "mōt", "mōste", "", "", "can to be"]) + let v = native_list_append(v, ["toc", "verb", "tōc", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["flog", "verb", "flōg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["pyran", "verb", "pȳre", "pȳrde", "", "", "to look into"]) + let v = native_list_append(v, ["lyste", "verb", "lyste", "", "", "", "inflection of lystan"]) + let v = native_list_append(v, ["lyst", "verb", "lyst", "", "", "", "inflection of lystan"]) + let v = native_list_append(v, ["merde", "verb", "merde", "", "", "", "inflection of merran"]) + let v = native_list_append(v, ["sig", "verb", "sīġ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leor", "verb", "lēor", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["wilt", "verb", "wilt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gol", "verb", "gōl", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sind", "verb", "aron", "arun", "earun", "", "Alternate form of"]) + let v = native_list_append(v, ["segun", "verb", "sēgun", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["wann", "verb", "wan", "wonn", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["belifan", "verb", "belīfe", "belāf", "", "", "to stay or"]) + let v = native_list_append(v, ["bora", "verb", "bora", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["meng", "verb", "menġ", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["glide", "verb", "glīde", "", "", "", "inflection of glīdan"]) + let v = native_list_append(v, ["nom", "verb", "nōm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["com", "verb", "cōm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lege", "verb", "leġe", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["deo", "verb", "dēo", "", "", "", "inflection of dēon"]) + let v = native_list_append(v, ["nime", "verb", "nime", "", "", "", "inflection of niman"]) + let v = native_list_append(v, ["bruce", "verb", "brūce", "", "", "", "inflection of brūcan"]) + let v = native_list_append(v, ["afar", "verb", "āfar", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["boden", "verb", "boden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sift", "verb", "sift", "", "", "", "inflection of siftan"]) + let v = native_list_append(v, ["fand", "verb", "fand", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["menge", "verb", "menġe", "", "", "", "inflection of menġan"]) + let v = native_list_append(v, ["galen", "verb", "galen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["freon", "verb", "frēon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hieren", "verb", "hīeren", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["dest", "verb", "dēst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["nat", "verb", "nāt", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["ann", "verb", "ann", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["soc", "verb", "sōc", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["leon", "verb", "lēo", "lāh", "", "", "to lend loan"]) + let v = native_list_append(v, ["aro", "verb", "earun", "earon", "", "", "Northumbrian form of"]) + let v = native_list_append(v, ["sah", "verb", "sāh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fett", "verb", "fētt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["leat", "verb", "lēat", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lumpen", "verb", "lumpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sitt", "verb", "sitt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["nam", "verb", "nom", "nōm", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["mæg", "verb", "mæġ", "mǣi", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["gan", "verb", "gā", "ēode", "", "", "to go"]) + let v = native_list_append(v, ["cwellan", "verb", "cwelle", "cwealde", "", "", "to kill slay"]) + let v = native_list_append(v, ["scacan", "verb", "sċace", "sċōc", "", "", "to pass or"]) + let v = native_list_append(v, ["þurfan", "verb", "þearf", "þorfte", "", "", "to need"]) + let v = native_list_append(v, ["teme", "verb", "tēme", "", "", "", "inflection of tēman"]) + let v = native_list_append(v, ["hon", "verb", "hō", "hēng", "", "", "to hang"]) + let v = native_list_append(v, ["linn", "verb", "linn", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["donde", "verb", "dōnde", "", "", "", "present participle of"]) + let v = native_list_append(v, ["hafa", "verb", "hafa", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hatte", "verb", "hātte", "", "", "", "first/third-person singular passive"]) + let v = native_list_append(v, ["snið", "verb", "snīð", "", "", "", "inflection of snīðan"]) + let v = native_list_append(v, ["spara", "verb", "spara", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["rowan", "verb", "rōwe", "rēow", "", "", "to row with"]) + let v = native_list_append(v, ["hladan", "verb", "hlade", "hlōd", "", "", "to load"]) + let v = native_list_append(v, ["scriþan", "verb", "sċrīþe", "sċrāþ", "", "", "to move glide"]) + let v = native_list_append(v, ["frignan", "verb", "friġne", "fræġn", "", "", "to ask pray"]) + let v = native_list_append(v, ["niman", "verb", "nime", "nam", "", "", "with accusative to"]) + let v = native_list_append(v, ["þwean", "verb", "þwēa", "þwōg", "", "", "to wash"]) + let v = native_list_append(v, ["cempa", "verb", "cempa", "", "", "", ""]) + let v = native_list_append(v, ["wite", "verb", "wite", "", "", "", "inflection of witan"]) + let v = native_list_append(v, ["nipan", "verb", "nīpe", "nāp", "", "", "to grow dark"]) + let v = native_list_append(v, ["bindan", "verb", "binde", "band", "", "", "to bind constrain"]) + let v = native_list_append(v, ["durran", "verb", "dearr", "dorste", "", "", "to dare"]) + let v = native_list_append(v, ["sculan", "verb", "sċeal", "sċeolde", "", "", "should"]) + let v = native_list_append(v, ["scinan", "verb", "sċīne", "sċān", "", "", "to shine"]) + let v = native_list_append(v, ["ceosan", "verb", "ċēose", "ċēas", "", "", "to choose select"]) + let v = native_list_append(v, ["fleon", "verb", "flēo", "flēah", "", "", "to flee"]) + let v = native_list_append(v, ["brucan", "verb", "brūce", "brēac", "", "", "to use"]) + let v = native_list_append(v, ["helpan", "verb", "helpe", "healp", "", "", "to help"]) + let v = native_list_append(v, ["beran", "verb", "bere", "bær", "", "", "to carry bear"]) + let v = native_list_append(v, ["seon", "verb", "sēo", "seah", "", "", "to see look"]) + let v = native_list_append(v, ["sittan", "verb", "sitte", "sæt", "", "", "to sit"]) + let v = native_list_append(v, ["standan", "verb", "stande", "stōd", "", "", "to stand"]) + let v = native_list_append(v, ["slæpan", "verb", "slǣpe", "slēp", "", "", "to sleep"]) + let v = native_list_append(v, ["lufian", "verb", "lufiġe", "lufode", "", "", "to love"]) + let v = native_list_append(v, ["deman", "verb", "dēme", "dēmde", "", "", "to judge"]) + let v = native_list_append(v, ["þencan", "verb", "þenċe", "þōhte", "", "", "to think"]) + let v = native_list_append(v, ["þyncan", "verb", "þynċe", "þūhte", "", "", "to seem impersonal"]) + let v = native_list_append(v, ["unnan", "verb", "ann", "ūþe", "", "", "to grant or"]) + let v = native_list_append(v, ["weorpan", "verb", "weorpe", "wearp", "", "", "to throw"]) + let v = native_list_append(v, ["swican", "verb", "swīce", "swāc", "", "", "to wander to"]) + let v = native_list_append(v, ["hweorfan", "verb", "hweorfe", "hwearf", "", "", "to turn change"]) + let v = native_list_append(v, ["monaþ", "verb", "monaþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bidon", "verb", "bidon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["crincgan", "verb", "crinċġe", "crang", "", "", "alternative form of"]) + let v = native_list_append(v, ["þolian", "verb", "þoliġe", "þolode", "", "", "to suffer endure"]) + let v = native_list_append(v, ["leodan", "verb", "lēode", "lēad", "", "", "to grow"]) + let v = native_list_append(v, ["cweþan", "verb", "cweþe", "cwæþ", "", "", "to say"]) + let v = native_list_append(v, ["healdan", "verb", "healde", "hēold", "", "", "to keep watch"]) + let v = native_list_append(v, ["fon", "verb", "fō", "fēng", "", "", "to catch capture"]) + let v = native_list_append(v, ["hatan", "verb", "hāte", "hēt", "", "", "to call name"]) + let v = native_list_append(v, ["hycgan", "verb", "hyċġe", "hogde", "", "", "to think"]) + let v = native_list_append(v, ["stod", "verb", "stōd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["cara", "verb", "cara", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["rodfæstnian", "verb", "rōdfæstniġe", "rōdfæstnode", "", "", "to crucify"]) + let v = native_list_append(v, ["fæstnian", "verb", "fæstniġe", "fæstnode", "", "", "to fasten or"]) + let v = native_list_append(v, ["dagian", "verb", "dagiġe", "dagode", "", "", "to dawn"]) + let v = native_list_append(v, ["agan", "verb", "āh", "āhte", "", "", "to own possess"]) + let v = native_list_append(v, ["agen", "verb", "āgen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["agnian", "verb", "āgniġe", "āgnode", "", "", "to claim possession"]) + let v = native_list_append(v, ["slean", "verb", "slēa", "slōg", "", "", "to hit strike"]) + let v = native_list_append(v, ["bearn", "verb", "bearn", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["eam", "verb", "eom", "æm", "", "", "Mercian and Early"]) + let v = native_list_append(v, ["wurde", "verb", "wurde", "", "", "", "inflection of weorþan"]) + let v = native_list_append(v, ["drage", "verb", "drage", "", "", "", "inflection of dragan"]) + let v = native_list_append(v, ["mænan", "verb", "mǣne", "mǣnde", "", "", "to mean"]) + let v = native_list_append(v, ["donne", "verb", "dōnne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["endian", "verb", "endiġe", "endode", "", "", "to end"]) + let v = native_list_append(v, ["lyse", "verb", "lȳse", "", "", "", "inflection of lȳsan"]) + let v = native_list_append(v, ["lese", "verb", "lese", "", "", "", "inflection of lesan"]) + let v = native_list_append(v, ["stilled", "verb", "stilled", "", "", "", "past participle of"]) + let v = native_list_append(v, ["delfan", "verb", "delfe", "dealf", "", "", "to dig"]) + let v = native_list_append(v, ["cleofan", "verb", "clēofe", "clēaf", "", "", "to cleave split"]) + let v = native_list_append(v, ["ete", "verb", "ete", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["spille", "verb", "spille", "", "", "", "inflection of spillan"]) + let v = native_list_append(v, ["blent", "verb", "blent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["wefan", "verb", "wefe", "wæf", "", "", "to weave"]) + let v = native_list_append(v, ["brecan", "verb", "brece", "bræc", "", "", "to break"]) + let v = native_list_append(v, ["ongietan", "verb", "onġiete", "onġeat", "", "", "to understand recognize"]) + let v = native_list_append(v, ["oncweþan", "verb", "oncweþe", "oncwæþ", "", "", "to respond to"]) + let v = native_list_append(v, ["animan", "verb", "ānime", "ānam", "", "", "to take away"]) + let v = native_list_append(v, ["gefrignan", "verb", "ġefriġne", "ġefræġn", "", "", "to find out"]) + let v = native_list_append(v, ["biddan", "verb", "bidde", "bæd", "", "", "to ask +"]) + let v = native_list_append(v, ["beodan", "verb", "bēode", "bēad", "", "", "to offer give"]) + let v = native_list_append(v, ["gieldan", "verb", "ġielde", "ġeald", "", "", "to pay"]) + let v = native_list_append(v, ["forgieldan", "verb", "forġielde", "forġeald", "", "", "to pay for"]) + let v = native_list_append(v, ["bidan", "verb", "bīde", "bād", "", "", "to wait"]) + let v = native_list_append(v, ["gebidan", "verb", "ġebīde", "ġebād", "", "", "to wait bide"]) + let v = native_list_append(v, ["wunian", "verb", "wuniġe", "wunode", "", "", "to live somewhere"]) + let v = native_list_append(v, ["reced", "verb", "reċed", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["lacan", "verb", "lāce", "lēc", "", "", "to move about"]) + let v = native_list_append(v, ["gewunian", "verb", "ġewuniġe", "ġewunode", "", "", "to stand by"]) + let v = native_list_append(v, ["scieppan", "verb", "sċieppe", "sċōp", "", "", "to create"]) + let v = native_list_append(v, ["sacan", "verb", "sace", "sōc", "", "", "to fight"]) + let v = native_list_append(v, ["gelpan", "verb", "ġelpe", "ġealp", "", "", "alternative form of"]) + let v = native_list_append(v, ["siþian", "verb", "sīþiġe", "sīþode", "", "", "to travel journey"]) + let v = native_list_append(v, ["hnossian", "verb", "hnossiġe", "hnossode", "", "", "to strike or"]) + let v = native_list_append(v, ["abidan", "verb", "ābīde", "ābād", "", "", "to wait +genitive"]) + let v = native_list_append(v, ["buan", "verb", "būe", "būde", "", "", "to live or"]) + let v = native_list_append(v, ["agon", "verb", "āgon", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["blotan", "verb", "blōte", "blēot", "", "", "to sacrifice +"]) + let v = native_list_append(v, ["eacen", "verb", "ēacen", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["eacan", "verb", "ēace", "ēoc", "", "", "to increase or"]) + let v = native_list_append(v, ["ascian", "verb", "āsciġe", "āscode", "", "", "to ask +"]) + let v = native_list_append(v, ["hreosan", "verb", "hrēose", "hrēas", "", "", "to fall"]) + let v = native_list_append(v, ["geascian", "verb", "ġeāsciġe", "ġeāscode", "", "", "to discover to"]) + let v = native_list_append(v, ["weorþan", "verb", "weorþe", "wearþ", "", "", "to become"]) + let v = native_list_append(v, ["geweorþan", "verb", "ġeweorþe", "ġewearþ", "", "", "to become"]) + let v = native_list_append(v, ["forweorþan", "verb", "forweorþe", "forwearþ", "", "", "to perish"]) + let v = native_list_append(v, ["leoran", "verb", "lēore", "lēorde", "", "", "to pass away"]) + let v = native_list_append(v, ["dreosan", "verb", "drēose", "drēas", "", "", "to fall"]) + let v = native_list_append(v, ["gedreosan", "verb", "ġedrēose", "ġedrēas", "", "", "to fall"]) + let v = native_list_append(v, ["singen", "verb", "singen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["dec", "verb", "dēċ", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["wendan", "verb", "wende", "wende", "", "", "to turn"]) + let v = native_list_append(v, ["dragen", "verb", "dragen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wadan", "verb", "wade", "wōd", "", "", "to go to"]) + let v = native_list_append(v, ["witan", "verb", "wāt", "wisse", "", "", "to know be"]) + let v = native_list_append(v, ["carian", "verb", "cariġe", "carode", "", "", "to care about"]) + let v = native_list_append(v, ["dælan", "verb", "dǣle", "dǣlde", "", "", "to share"]) + let v = native_list_append(v, ["faran", "verb", "fare", "fōr", "", "", "to go used"]) + let v = native_list_append(v, ["feran", "verb", "fēre", "fērde", "", "", "to go to"]) + let v = native_list_append(v, ["willan", "verb", "wille", "wolde", "", "", "to want desire"]) + let v = native_list_append(v, ["freogan", "verb", "frēo", "frēode", "", "", "to free to"]) + let v = native_list_append(v, ["habban", "verb", "hæbbe", "hæfde", "", "", "to have possess"]) + let v = native_list_append(v, ["hebban", "verb", "hebbe", "hōf", "", "", "to lift raise"]) + let v = native_list_append(v, ["wundian", "verb", "wundiġe", "wundode", "", "", "to wound or"]) + let v = native_list_append(v, ["mengan", "verb", "menġe", "mengde", "", "", "to mix to"]) + let v = native_list_append(v, ["ondo", "verb", "ondō", "", "", "", "inflection of ondōn"]) + let v = native_list_append(v, ["sendan", "verb", "sende", "sende", "", "", "to send"]) + let v = native_list_append(v, ["wod", "verb", "wōd", "", "", "", "first/third-person preterite singular"]) + let v = native_list_append(v, ["licgan", "verb", "liċġe", "læġ", "", "", "to lie be"]) + let v = native_list_append(v, ["lecgan", "verb", "leċġe", "leġde", "", "", "to put or"]) + let v = native_list_append(v, ["stele", "verb", "stele", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["seng", "verb", "senġ", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hæman", "verb", "hǣme", "hǣmde", "", "", "to have sex"]) + let v = native_list_append(v, ["dugan", "verb", "dēag", "dohte", "", "", "to avail to"]) + let v = native_list_append(v, ["cunnan", "verb", "cann", "cūþe", "", "", "to know to"]) + let v = native_list_append(v, ["bende", "verb", "bende", "", "", "", "inflection of bendan"]) + let v = native_list_append(v, ["logian", "verb", "lōgiġe", "lōgode", "", "", "to lodge place"]) + let v = native_list_append(v, ["manian", "verb", "maniġe", "manode", "", "", "to bring to"]) + let v = native_list_append(v, ["bihreosan", "verb", "bihrēose", "bihrēas", "", "", "alternative form of"]) + let v = native_list_append(v, ["hydan", "verb", "hȳde", "hȳdde", "", "", "to hide or"]) + let v = native_list_append(v, ["lata", "verb", "lata", "", "", "", "imperative plural of"]) + let v = native_list_append(v, ["þennan", "verb", "þenne", "þenede", "", "", "to stretch stretch"]) + let v = native_list_append(v, ["bædan", "verb", "bǣde", "bǣdde", "", "", "to constrain incite"]) + let v = native_list_append(v, ["bannan", "verb", "banne", "bēonn", "", "", "to summon especially"]) + let v = native_list_append(v, ["bifian", "verb", "bifiġe", "bifode", "", "", "to tremble shake"]) + let v = native_list_append(v, ["drincan", "verb", "drince", "dranc", "", "", "to drink"]) + let v = native_list_append(v, ["cep", "verb", "cēp", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["alef", "verb", "ālēf", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["wop", "verb", "wōp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["etan", "verb", "ete", "ǣt", "", "", "to eat"]) + let v = native_list_append(v, ["feortan", "verb", "feorte", "feart", "", "", "to fart"]) + let v = native_list_append(v, ["cuman", "verb", "cume", "cōm", "", "", "to come"]) + let v = native_list_append(v, ["drogen", "verb", "ġedrogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["haten", "verb", "hāten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["willen", "verb", "willen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["gespannen", "verb", "ġespannen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["geboren", "verb", "ġeboren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grof", "verb", "grōf", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sete", "verb", "sete", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["wegen", "verb", "wegen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["rece", "verb", "rēċe", "", "", "", "inflection of rēċan"]) + let v = native_list_append(v, ["canst", "verb", "canst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["behangen", "verb", "behangen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hangen", "verb", "hangen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["awent", "verb", "āwent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["wes", "verb", "wæs", "uæs", "", "", "singular imperative of"]) + let v = native_list_append(v, ["swungen", "verb", "swungen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sungen", "verb", "sungen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["belge", "verb", "belge", "", "", "", "inflection of belgan"]) + let v = native_list_append(v, ["wah", "verb", "wāh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["nage", "verb", "nāge", "", "", "", "inflection of nāgan"]) + let v = native_list_append(v, ["rann", "verb", "rann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lære", "verb", "lǣre", "", "", "", "inflection of lǣran"]) + let v = native_list_append(v, ["brang", "verb", "brang", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["beotian", "verb", "bēotiġe", "bēotode", "", "", "to threaten"]) + let v = native_list_append(v, ["tele", "verb", "tele", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["inga", "verb", "ingā", "", "", "", "inflection of ingān"]) + let v = native_list_append(v, ["deh", "verb", "dēh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bollen", "verb", "bollen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hata", "verb", "hata", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["rit", "verb", "rīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["lett", "verb", "lett", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["aru", "verb", "earun", "earon", "", "", "Northumbrian form of"]) + let v = native_list_append(v, ["anam", "verb", "anām", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ras", "verb", "rās", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["meten", "verb", "meten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cyssan", "verb", "cysse", "cyste", "", "", "to kiss"]) + let v = native_list_append(v, ["gulden", "verb", "gulden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["tær", "verb", "tær", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["aho", "verb", "āhō", "", "", "", "inflection of āhōn"]) + let v = native_list_append(v, ["hwan", "verb", "hwān", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["geotan", "verb", "ġēote", "ġēat", "", "", "to pour"]) + let v = native_list_append(v, ["bestride", "verb", "bestrīde", "", "", "", "inflection of bestrīdan"]) + let v = native_list_append(v, ["abelgan", "verb", "ābelge", "ābealg", "", "", "to make angry"]) + let v = native_list_append(v, ["fretan", "verb", "frete", "frǣt", "", "", "to devour"]) + let v = native_list_append(v, ["wyrcan", "verb", "wyrċe", "worhte", "", "", "to make"]) + let v = native_list_append(v, ["redan", "verb", "rēde", "rēdde", "", "", "alternative form of"]) + let v = native_list_append(v, ["aþecgan", "verb", "āþeċġe", "āþeġde", "", "", "to take on"]) + let v = native_list_append(v, ["sien", "verb", "sīen", "sȳn", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["toslitan", "verb", "tōslīte", "tōslāt", "", "", "to tear apart"]) + let v = native_list_append(v, ["slitan", "verb", "slīte", "slāt", "", "", "to tear rend"]) + let v = native_list_append(v, ["slite", "verb", "slīte", "", "", "", "inflection of slītan"]) + let v = native_list_append(v, ["winnan", "verb", "winne", "wann", "", "", "to struggle suffer"]) + let v = native_list_append(v, ["gewitan", "verb", "ġewīte", "ġewāt", "", "", "to depart"]) + let v = native_list_append(v, ["secan", "verb", "sēċe", "sōhte", "", "", "to look for"]) + let v = native_list_append(v, ["todælan", "verb", "tōdǣle", "tōdǣlde", "", "", "to divide separate"]) + let v = native_list_append(v, ["dreogan", "verb", "drēoge", "drēag", "", "", "to do take"]) + let v = native_list_append(v, ["geworden", "verb", "ġeworden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["miþan", "verb", "mīþe", "māþ", "", "", "to hide conceal"]) + let v = native_list_append(v, ["gemetan", "verb", "ġemēte", "ġemētte", "", "", "to meet encounter"]) + let v = native_list_append(v, ["ofgiefan", "verb", "ofġiefe", "ofġeaf", "", "", "to give up"]) + let v = native_list_append(v, ["abeodan", "verb", "ābēode", "ābēad", "", "", "to proclaim announce"]) + let v = native_list_append(v, ["fundian", "verb", "fundiġe", "fundode", "", "", "to set out"]) + let v = native_list_append(v, ["tynan", "verb", "tȳne", "tȳnde", "", "", "to enclose fence"]) + let v = native_list_append(v, ["wyrgan", "verb", "wyrġe", "wyrġde", "", "", "to strangle"]) + let v = native_list_append(v, ["hlad", "verb", "hlad", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hlina", "verb", "hlina", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["gefrunon", "verb", "ġefrūnon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fremman", "verb", "fremme", "fremede", "", "", "to do accomplish"]) + let v = native_list_append(v, ["ofteon", "verb", "oftēo", "oftēah", "", "", "to take away"]) + let v = native_list_append(v, ["slep", "verb", "slēp", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["hloh", "verb", "hlōh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["metan", "verb", "mete", "mæt", "", "", "to measure"]) + let v = native_list_append(v, ["egesian", "verb", "eġesiġe", "eġesode", "", "", "to terrify"]) + let v = native_list_append(v, ["findan", "verb", "finde", "fand", "", "", "to find"]) + let v = native_list_append(v, ["warna", "verb", "warna", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["ofteah", "verb", "oftēah", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["temen", "verb", "tēmen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["þeon", "verb", "þēo", "þāh", "", "", "to flourish prosper"]) + let v = native_list_append(v, ["hyran", "verb", "hȳre", "hȳrde", "", "", "alternative form of"]) + let v = native_list_append(v, ["gyldan", "verb", "ġylde", "ġeald", "", "", "alternative form of"]) + let v = native_list_append(v, ["cennan", "verb", "cenne", "cende", "", "", "to make known"]) + let v = native_list_append(v, ["drugon", "verb", "drugon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["forgiefan", "verb", "forġiefe", "forġeaf", "", "", "to give +dative"]) + let v = native_list_append(v, ["wealdan", "verb", "wealde", "wēold", "", "", "to control +"]) + let v = native_list_append(v, ["gelæstan", "verb", "ġelǣste", "ġelǣste", "", "", "to perform fulfil"]) + let v = native_list_append(v, ["gewat", "verb", "ġewāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ætberan", "verb", "ætbere", "ætbær", "", "", "to bring carry"]) + let v = native_list_append(v, ["teon", "verb", "tēo", "tēah", "", "", "to drag draw"]) + let v = native_list_append(v, ["geafon", "verb", "ġēafon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["wæcnan", "verb", "wæcne", "wæcnde", "", "", "to wake up"]) + let v = native_list_append(v, ["felan", "verb", "fēle", "fēlde", "", "", "to feel"]) + let v = native_list_append(v, ["nagen", "verb", "nāgen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["biþ", "verb", "bioþ", "byþ", "byt", "", "third-person singular present"]) + let v = native_list_append(v, ["byþ", "verb", "biþ", "", "", "", "is third-person singular"]) + let v = native_list_append(v, ["cunnian", "verb", "cunniġe", "cunnode", "", "", "to experience learn"]) + let v = native_list_append(v, ["onwæcnan", "verb", "onwæcne", "onwæcnde", "", "", "to wake up"]) + let v = native_list_append(v, ["onwoc", "verb", "onwōc", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["cine", "verb", "ċīne", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fia", "verb", "fīa", "", "", "", "singular present imperative"]) + let v = native_list_append(v, ["rædan", "verb", "rǣde", "rēd", "", "", "to read"]) + let v = native_list_append(v, ["beirnan", "verb", "beirne", "bearn", "", "", "to run into/by"]) + let v = native_list_append(v, ["sellan", "verb", "selle", "sealde", "", "", "to give"]) + let v = native_list_append(v, ["gebannan", "verb", "ġebanne", "ġebēonn", "", "", "to order command"]) + let v = native_list_append(v, ["limpan", "verb", "limpe", "lamp", "", "", "to happen occur"]) + let v = native_list_append(v, ["hlifian", "verb", "hlifiġe", "hlifode", "", "", "to tower stand"]) + let v = native_list_append(v, ["swinge", "verb", "swinge", "", "", "", "inflection of swingan"]) + let v = native_list_append(v, ["aga", "verb", "āgā", "", "", "", "inflection of āgān"]) + let v = native_list_append(v, ["cuþ", "verb", "cūþ", "cūð", "", "", "past participle of"]) + let v = native_list_append(v, ["secgan", "verb", "seċġe", "sæġde", "", "", "to say tell"]) + let v = native_list_append(v, ["sægde", "verb", "sæġde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["cuþe", "verb", "cūþe", "", "", "", "inflection of cunnan"]) + let v = native_list_append(v, ["reccan", "verb", "reċċe", "reahte", "", "", "to explain"]) + let v = native_list_append(v, ["bebugan", "verb", "bebūge", "bebēag", "", "", "to surround encompass"]) + let v = native_list_append(v, ["settan", "verb", "sette", "sette", "", "", "to set establish"]) + let v = native_list_append(v, ["gefrætwian", "verb", "ġefrætwiġe", "ġefrætwode", "", "", "to adorn deck"]) + let v = native_list_append(v, ["blended", "verb", "blended", "", "", "", "past participle of"]) + let v = native_list_append(v, ["onginnan", "verb", "onġinne", "ongann", "", "", "to begin start"]) + let v = native_list_append(v, ["sawan", "verb", "sāwe", "sēow", "", "", "to sow seed"]) + let v = native_list_append(v, ["wenden", "verb", "wenden", "", "", "", "present subjunctive plural"]) + let v = native_list_append(v, ["weardian", "verb", "weardiġe", "weardode", "", "", "to guard protect"]) + let v = native_list_append(v, ["scrifan", "verb", "sċrīfe", "sċrāf", "", "", "to decree appoint"]) + let v = native_list_append(v, ["gewrecan", "verb", "ġewrece", "ġewræc", "", "", "to avenge wreak"]) + let v = native_list_append(v, ["gefeon", "verb", "ġefēo", "ġefeah", "", "", "to rejoice exult"]) + let v = native_list_append(v, ["beden", "verb", "beden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["neosian", "verb", "nēosiġe", "nēosode", "", "", "to seek go"]) + let v = native_list_append(v, ["swefan", "verb", "swefe", "swæf", "", "", "to sleep"]) + let v = native_list_append(v, ["drog", "verb", "drōg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["recce", "verb", "reċċe", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ridan", "verb", "rīde", "rād", "", "", "to ride"]) + let v = native_list_append(v, ["writan", "verb", "wrīte", "wrāt", "", "", "to write"]) + let v = native_list_append(v, ["sceotan", "verb", "sċēote", "sċēat", "", "", "to shoot throw"]) + let v = native_list_append(v, ["fleogan", "verb", "flēoge", "flēag", "", "", "to fly"]) + let v = native_list_append(v, ["scufan", "verb", "sċūfe", "sċēaf", "", "", "to push shove"]) + let v = native_list_append(v, ["sweltan", "verb", "swelte", "swealt", "", "", "to die"]) + let v = native_list_append(v, ["ceorfan", "verb", "ċeorfe", "ċearf", "", "", "to cut"]) + let v = native_list_append(v, ["feohtan", "verb", "feohte", "feaht", "", "", "to fight"]) + let v = native_list_append(v, ["berstan", "verb", "berste", "bærst", "", "", "to break shatter"]) + let v = native_list_append(v, ["scieran", "verb", "sċiere", "sċear", "", "", "to shave"]) + let v = native_list_append(v, ["sprecan", "verb", "sprece", "spræc", "", "", "to speak talk"]) + let v = native_list_append(v, ["feallan", "verb", "fealle", "fēoll", "", "", "to fall"]) + let v = native_list_append(v, ["cnawan", "verb", "cnāwe", "cnēow", "", "", "to know"]) + let v = native_list_append(v, ["growan", "verb", "grōwe", "grēow", "", "", "to grow"]) + let v = native_list_append(v, ["hleapan", "verb", "hlēape", "hlēop", "", "", "to jump"]) + let v = native_list_append(v, ["swerian", "verb", "swerie", "swōr", "", "", "to swear an"]) + let v = native_list_append(v, ["arian", "verb", "āriġe", "ārode", "", "", "to show mercy"]) + let v = native_list_append(v, ["beon", "verb", "bēo", "bēo", "", "", "to be exist"]) + let v = native_list_append(v, ["wesan", "verb", "eom", "wæs", "", "", "to be exist"]) + let v = native_list_append(v, ["hlihhan", "verb", "hlihhe", "hlōg", "", "", "alternative form of"]) + let v = native_list_append(v, ["magan", "verb", "mæġ", "meahte", "", "", "can to be"]) + let v = native_list_append(v, ["scamian", "verb", "sċamiġe", "sċamode", "", "", "to be ashamed"]) + let v = native_list_append(v, ["scieldan", "verb", "sċielde", "sċielde", "", "", "alternative form of"]) + let v = native_list_append(v, ["baþian", "verb", "baþiġe", "baþode", "", "", "to bathe"]) + let v = native_list_append(v, ["bereofan", "verb", "berēofe", "berēaf", "", "", "to bereave deprive"]) + let v = native_list_append(v, ["reafian", "verb", "rēafiġe", "rēafode", "", "", "to rob"]) + let v = native_list_append(v, ["bitan", "verb", "bīte", "bāt", "", "", "to bite"]) + let v = native_list_append(v, ["bletsian", "verb", "blētsiġe", "blētsode", "", "", "to bless to"]) + let v = native_list_append(v, ["borgian", "verb", "borgiġe", "borgode", "", "", "to borrow"]) + let v = native_list_append(v, ["bregdan", "verb", "breġde", "bræġd", "", "", "to move back"]) + let v = native_list_append(v, ["bringan", "verb", "bringe", "brōhte", "", "", "to bring"]) + let v = native_list_append(v, ["byldan", "verb", "bylde", "bylde", "", "", "alternative form of"]) + let v = native_list_append(v, ["brycgian", "verb", "bryċġiġe", "bryċġode", "", "", "to bridge"]) + let v = native_list_append(v, ["bycgan", "verb", "byċġe", "bohte", "", "", "to buy"]) + let v = native_list_append(v, ["byrgan", "verb", "byrġe", "byrġde", "", "", "to hide"]) + let v = native_list_append(v, ["biernan", "verb", "bierne", "barn", "", "", "to burn"]) + let v = native_list_append(v, ["colian", "verb", "cōliġe", "cōlode", "", "", "to cool"]) + let v = native_list_append(v, ["ceallian", "verb", "ċealliġe", "ċeallode", "", "", "to call"]) + let v = native_list_append(v, ["cepan", "verb", "cēpe", "cēpte", "", "", "to keep an"]) + let v = native_list_append(v, ["ceowan", "verb", "ċēowe", "ċēaw", "", "", "to chew"]) + let v = native_list_append(v, ["clænsian", "verb", "clǣnsiġe", "clǣnsode", "", "", "to clean cleanse"]) + let v = native_list_append(v, ["creopan", "verb", "crēope", "crēap", "", "", "to crawl"]) + let v = native_list_append(v, ["clyppan", "verb", "clyppe", "clypte", "", "", "to hug"]) + let v = native_list_append(v, ["crudan", "verb", "crūde", "crēad", "", "", "to drive"]) + let v = native_list_append(v, ["cwacian", "verb", "cwaciġe", "cwacode", "", "", "to quake"]) + let v = native_list_append(v, ["becweþan", "verb", "becweþe", "becwæþ", "", "", "to say or"]) + let v = native_list_append(v, ["dragan", "verb", "drage", "drōg", "", "", "to draw drag"]) + let v = native_list_append(v, ["drifan", "verb", "drīfe", "drāf", "", "", "to drive force"]) + let v = native_list_append(v, ["drencan", "verb", "drenċe", "drencte", "", "", "to give someone"]) + let v = native_list_append(v, ["drygan", "verb", "drȳġe", "drȳġde", "", "", "to dry make"]) + let v = native_list_append(v, ["dropian", "verb", "dropiġe", "dropode", "", "", "to drop"]) + let v = native_list_append(v, ["drusian", "verb", "drūsiġe", "drūsode", "", "", "to immerse sink"]) + let v = native_list_append(v, ["dyfan", "verb", "dȳfe", "dȳfde", "", "", "to dive"]) + let v = native_list_append(v, ["dyppan", "verb", "dyppe", "dypede", "", "", "to dip"]) + let v = native_list_append(v, ["earnian", "verb", "earniġe", "earnode", "", "", "to deserve"]) + let v = native_list_append(v, ["fæstan", "verb", "fæste", "fæste", "", "", "to fasten make"]) + let v = native_list_append(v, ["fealdan", "verb", "fealde", "fēold", "", "", "to fold"]) + let v = native_list_append(v, ["fedan", "verb", "fēde", "fēdde", "", "", "to feed"]) + let v = native_list_append(v, ["fiellan", "verb", "fielle", "fielde", "", "", "to fell"]) + let v = native_list_append(v, ["fiscian", "verb", "fisciġe", "fiscode", "", "", "to fish"]) + let v = native_list_append(v, ["fleotan", "verb", "flēote", "flēat", "", "", "to float"]) + let v = native_list_append(v, ["flowan", "verb", "flōwe", "flēow", "", "", "to flow"]) + let v = native_list_append(v, ["folgian", "verb", "folgiġe", "folgode", "", "", "to follow"]) + let v = native_list_append(v, ["forgietan", "verb", "forġiete", "forġeat", "", "", "to forget"]) + let v = native_list_append(v, ["begietan", "verb", "beġiete", "beġeat", "", "", "to get"]) + let v = native_list_append(v, ["gietan", "verb", "ġiete", "ġeat", "", "", "to get"]) + let v = native_list_append(v, ["freosan", "verb", "frēose", "frēas", "", "", "to freeze"]) + let v = native_list_append(v, ["fulian", "verb", "fūliġe", "fūlode", "", "", "to foul"]) + let v = native_list_append(v, ["læstan", "verb", "lǣste", "lǣste", "", "", "to follow pursue"]) + let v = native_list_append(v, ["cranc", "verb", "cranc", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["crincan", "verb", "crince", "cranc", "", "", "to curl"]) + let v = native_list_append(v, ["cringan", "verb", "cringe", "crang", "", "", "to fall yield"]) + let v = native_list_append(v, ["ginian", "verb", "ġiniġe", "ġinode", "", "", "to yawn"]) + let v = native_list_append(v, ["wundrian", "verb", "wundriġe", "wundrode", "", "", "to be amazed"]) + let v = native_list_append(v, ["gaderian", "verb", "gaderiġe", "gaderode", "", "", "to bring together"]) + let v = native_list_append(v, ["gielpan", "verb", "ġielpe", "ġealp", "", "", "to glory boast"]) + let v = native_list_append(v, ["glidan", "verb", "glīde", "glād", "", "", "to glide"]) + let v = native_list_append(v, ["gretan", "verb", "grēte", "grētte", "", "", "to greet address"]) + let v = native_list_append(v, ["greotan", "verb", "grēote", "grēat", "", "", "to weep cry"]) + let v = native_list_append(v, ["grindan", "verb", "grinde", "grand", "", "", "to destroy by"]) + let v = native_list_append(v, ["gripan", "verb", "grīpe", "grāp", "", "", "to gripe grip"]) + let v = native_list_append(v, ["grafan", "verb", "grafe", "grōf", "", "", "to dig dig"]) + let v = native_list_append(v, ["gyrdan", "verb", "gyrde", "gyrde", "", "", "to gird"]) + let v = native_list_append(v, ["giellan", "verb", "ġielle", "ġeall", "", "", "to yell"]) + let v = native_list_append(v, ["hangian", "verb", "hangiġe", "hangode", "", "", "to hang"]) + let v = native_list_append(v, ["hatian", "verb", "hatiġe", "hatode", "", "", "to hate"]) + let v = native_list_append(v, ["hælan", "verb", "hǣle", "hǣlde", "", "", "to heal"]) + let v = native_list_append(v, ["hætan", "verb", "hǣte", "hǣtte", "", "", "to heat"]) + let v = native_list_append(v, ["heawan", "verb", "hēawe", "hēow", "", "", "to strike smite"]) + let v = native_list_append(v, ["hedan", "verb", "hēde", "hēdde", "", "", "to pay attention"]) + let v = native_list_append(v, ["hlysnan", "verb", "hlysne", "hlysnde", "", "", "to listen"]) + let v = native_list_append(v, ["hopian", "verb", "hopiġe", "hopode", "", "", "to hope +genitive"]) + let v = native_list_append(v, ["hreowan", "verb", "hrēowan", "strong", "ang-conj", "", "to regret rue"]) + let v = native_list_append(v, ["hyngran", "verb", "hyngre", "hyngrede", "", "", "to be hungry"]) + let v = native_list_append(v, ["huntian", "verb", "huntiġe", "huntode", "", "", "to hunt"]) + let v = native_list_append(v, ["hwettan", "verb", "hwette", "hwette", "", "", "to sharpen"]) + let v = native_list_append(v, ["hwisprian", "verb", "hwispriġe", "hwisprode", "", "", "to whisper"]) + let v = native_list_append(v, ["iecan", "verb", "īeċe", "īehte", "", "", "to increase or"]) + let v = native_list_append(v, ["rinnan", "verb", "rinne", "rann", "", "", "to run"]) + let v = native_list_append(v, ["wara", "verb", "wara", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["hlowan", "verb", "hlōwe", "hlēow", "", "", "to moo low"]) + let v = native_list_append(v, ["rarian", "verb", "rāriġe", "rārode", "", "", "to roar bellow"]) + let v = native_list_append(v, ["ræran", "verb", "rǣre", "rǣrde", "", "", "to raise set"]) + let v = native_list_append(v, ["iernan", "verb", "ierne", "arn", "", "", "alternative form of"]) + let v = native_list_append(v, ["langian", "verb", "langiġe", "langode", "", "", "to get longer"]) + let v = native_list_append(v, ["læran", "verb", "lǣre", "lǣrde", "", "", "with accusative to"]) + let v = native_list_append(v, ["laþian", "verb", "laþiġe", "laþode", "", "", "to invite"]) + let v = native_list_append(v, ["læccan", "verb", "læċċe", "lǣhte", "", "", "to grab sometimes"]) + let v = native_list_append(v, ["lædan", "verb", "lǣde", "lǣdde", "", "", "to lead"]) + let v = native_list_append(v, ["læfan", "verb", "lǣfe", "lǣfde", "", "", "to leave"]) + let v = native_list_append(v, ["lefan", "verb", "lēfe", "lēfde", "", "", "to become weak"]) + let v = native_list_append(v, ["lænan", "verb", "lǣne", "lǣnde", "", "", "to lend grant"]) + let v = native_list_append(v, ["lætan", "verb", "lǣte", "lēt", "", "", "to let allow"]) + let v = native_list_append(v, ["lemian", "verb", "lemiġe", "lemode", "", "", "to lame"]) + let v = native_list_append(v, ["leogan", "verb", "lēoge", "lēag", "", "", "to lie tell"]) + let v = native_list_append(v, ["liehtan", "verb", "līehte", "līehte", "", "", "to shine illuminate"]) + let v = native_list_append(v, ["losian", "verb", "losiġe", "losode", "", "", "to be lost"]) + let v = native_list_append(v, ["leornian", "verb", "leorniġe", "leornode", "", "", "to learn"]) + let v = native_list_append(v, ["libban", "verb", "libbe", "lifde", "", "", "to live"]) + let v = native_list_append(v, ["lician", "verb", "līciġe", "līcode", "", "", "to like impersonal"]) + let v = native_list_append(v, ["liccian", "verb", "licciġe", "liccode", "", "", "to lick"]) + let v = native_list_append(v, ["locian", "verb", "lōciġe", "lōcode", "", "", "to look see"]) + let v = native_list_append(v, ["lucan", "verb", "lūce", "lēac", "", "", "to lock"]) + let v = native_list_append(v, ["macian", "verb", "maciġe", "macode", "", "", "to make or"]) + let v = native_list_append(v, ["meaht", "verb", "meaht", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["meahte", "verb", "meahte", "", "", "", "preterite subjunctive of"]) + let v = native_list_append(v, ["dwelian", "verb", "dweliġe", "dwelode", "", "", "to err to"]) + let v = native_list_append(v, ["mearcian", "verb", "mearciġe", "mearcode", "", "", "to mark"]) + let v = native_list_append(v, ["murnan", "verb", "murne", "mearn", "", "", "to care for"]) + let v = native_list_append(v, ["nacod", "verb", "strong", "ang-adecl", "nacodne", "", "past participle of"]) + let v = native_list_append(v, ["næglan", "verb", "næġle", "næġlde", "", "", "to nail"]) + let v = native_list_append(v, ["neodian", "verb", "nēodiġe", "nēodode", "", "", "to be necessary"]) + let v = native_list_append(v, ["geong", "verb", "ġēong", "", "", "", "First and third"]) + let v = native_list_append(v, ["offrian", "verb", "offriġe", "offrode", "", "", "to offer"]) + let v = native_list_append(v, ["beginnan", "verb", "beġinne", "begann", "", "", "to begin"]) + let v = native_list_append(v, ["openian", "verb", "openiġe", "openode", "", "", "to open"]) + let v = native_list_append(v, ["plegian", "verb", "plegiġe", "plegode", "", "", "to play"]) + let v = native_list_append(v, ["prician", "verb", "priciġe", "pricode", "", "", "to prick"]) + let v = native_list_append(v, ["pullian", "verb", "pulliġe", "pullode", "", "", "to pull"]) + let v = native_list_append(v, ["punian", "verb", "pūniġe", "pūnode", "", "", "to pound crush"]) + let v = native_list_append(v, ["ræcan", "verb", "rǣċe", "rǣhte", "", "", "to reach attain"]) + let v = native_list_append(v, ["restan", "verb", "reste", "reste", "", "", "to rest intransitive"]) + let v = native_list_append(v, ["reord", "verb", "rēd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["risan", "verb", "rīse", "rās", "", "", "to rise"]) + let v = native_list_append(v, ["sadolian", "verb", "sadoliġe", "sadolode", "", "", "to saddle"]) + let v = native_list_append(v, ["scafan", "verb", "sċafe", "sċōf", "", "", "to shave"]) + let v = native_list_append(v, ["sceaþian", "verb", "sċeaþiġe", "sċeaþode", "", "", "to hurt harm"]) + let v = native_list_append(v, ["sceadan", "verb", "sċeāde", "sċēd", "", "", "to separate divide"]) + let v = native_list_append(v, ["sceadwian", "verb", "sċeadwiġe", "sċeadwode", "", "", "to overshadow cover"]) + let v = native_list_append(v, ["sceawian", "verb", "sċēawiġe", "sċēawode", "", "", "to watch or"]) + let v = native_list_append(v, ["scyttan", "verb", "sċytte", "sċytte", "", "", "to shut"]) + let v = native_list_append(v, ["seoþan", "verb", "sēoþe", "sēaþ", "", "", "to cook"]) + let v = native_list_append(v, ["seglian", "verb", "seġliġe", "seġlode", "", "", "to sail"]) + let v = native_list_append(v, ["singan", "verb", "singe", "sang", "", "", "to sing chant"]) + let v = native_list_append(v, ["slaf", "verb", "slāf", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["slidan", "verb", "slīde", "slād", "", "", "to slide"]) + let v = native_list_append(v, ["smitan", "verb", "smīte", "smāt", "", "", "to daub smear"]) + let v = native_list_append(v, ["smeortan", "verb", "smeorte", "smeart", "", "", "to smart hurt"]) + let v = native_list_append(v, ["spannan", "verb", "spanne", "spēonn", "", "", "to span clasp"]) + let v = native_list_append(v, ["sparian", "verb", "spariġe", "sparode", "", "", "to spare"]) + let v = native_list_append(v, ["spelian", "verb", "speliġe", "spelode", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["spillan", "verb", "spille", "spilde", "", "", "with accusative to"]) + let v = native_list_append(v, ["spildan", "verb", "spilde", "spilde", "", "", "alternative form of"]) + let v = native_list_append(v, ["spinnan", "verb", "spinne", "spann", "", "", "to spin"]) + let v = native_list_append(v, ["spiwan", "verb", "spīwe", "spāw", "", "", "to vomit spew"]) + let v = native_list_append(v, ["spittan", "verb", "spitte", "spitte", "", "", "to spit"]) + let v = native_list_append(v, ["springan", "verb", "springe", "sprang", "", "", "to leap bound"]) + let v = native_list_append(v, ["stelan", "verb", "stele", "stæl", "", "", "to steal"]) + let v = native_list_append(v, ["starian", "verb", "stariġe", "starode", "", "", "to stare"]) + let v = native_list_append(v, ["strewian", "verb", "strēwiġe", "strēwode", "", "", "alternative form of"]) + let v = native_list_append(v, ["stincan", "verb", "stince", "stanc", "", "", "to smell give"]) + let v = native_list_append(v, ["stieran", "verb", "stīere", "stīerde", "", "", "to steer guide"]) + let v = native_list_append(v, ["steorfan", "verb", "steorfe", "stearf", "", "", "to die"]) + let v = native_list_append(v, ["steppan", "verb", "steppe", "stōp", "", "", "alternative form of"]) + let v = native_list_append(v, ["stician", "verb", "sticiġe", "sticode", "", "", "to pierce to"]) + let v = native_list_append(v, ["stillan", "verb", "stille", "stilde", "", "", "become calm abate"]) + let v = native_list_append(v, ["stingan", "verb", "stinge", "stang", "", "", "to stab"]) + let v = native_list_append(v, ["sincan", "verb", "since", "sanc", "", "", "to sink"]) + let v = native_list_append(v, ["stracian", "verb", "strāciġe", "strācode", "", "", "to stroke"]) + let v = native_list_append(v, ["styrian", "verb", "styrie", "styrede", "", "", "to move"]) + let v = native_list_append(v, ["sucan", "verb", "sūce", "sēac", "", "", "to suck"]) + let v = native_list_append(v, ["sugan", "verb", "sūge", "sēag", "", "", "to suck"]) + let v = native_list_append(v, ["swimman", "verb", "swimme", "swamm", "", "", "to swim"]) + let v = native_list_append(v, ["sundrian", "verb", "sundriġe", "sundrode", "", "", "to sunder"]) + let v = native_list_append(v, ["swelgan", "verb", "swelge", "swealg", "", "", "to swallow"]) + let v = native_list_append(v, ["swapan", "verb", "swāpe", "swēop", "", "", "to sweep"]) + let v = native_list_append(v, ["sweorfan", "verb", "sweorfe", "swearf", "", "", "to scour polish"]) + let v = native_list_append(v, ["swifan", "verb", "swīfe", "swāf", "", "", "to move in"]) + let v = native_list_append(v, ["swincan", "verb", "swince", "swanc", "", "", "to work hard"]) + let v = native_list_append(v, ["swingan", "verb", "swinge", "swang", "", "", "to swinge flog"]) + let v = native_list_append(v, ["swogan", "verb", "swōge", "swōg", "", "", "to resound sound"]) + let v = native_list_append(v, ["tacan", "verb", "tace", "tōc", "", "", "to take"]) + let v = native_list_append(v, ["tæcan", "verb", "tǣċe", "tǣhte", "", "", "to show point"]) + let v = native_list_append(v, ["tellan", "verb", "telle", "tealde", "", "", "to count calculate"]) + let v = native_list_append(v, ["togian", "verb", "togiġe", "togode", "", "", "to tow"]) + let v = native_list_append(v, ["tæsan", "verb", "tǣse", "tǣsde", "", "", "to tease fibres"]) + let v = native_list_append(v, ["tæppian", "verb", "tæppiġe", "tæppode", "", "", "to tap"]) + let v = native_list_append(v, ["teran", "verb", "tere", "tær", "", "", "to tear rend"]) + let v = native_list_append(v, ["tilian", "verb", "tiliġe", "tilode", "", "", "to obtain"]) + let v = native_list_append(v, ["trymman", "verb", "trymme", "trymede", "", "", "to strengthen make"]) + let v = native_list_append(v, ["tendan", "verb", "tende", "tende", "", "", "to kindle"]) + let v = native_list_append(v, ["þancian", "verb", "þanciġe", "þancode", "", "", "to thank +"]) + let v = native_list_append(v, ["þawian", "verb", "þāwiġe", "þāwode", "", "", "to thaw"]) + let v = native_list_append(v, ["þeccan", "verb", "þeċċe", "þeahte", "", "", "to cover"]) + let v = native_list_append(v, ["þrawan", "verb", "þrāwe", "þrēow", "", "", "to twist turn"]) + let v = native_list_append(v, ["þrea", "verb", "þrea", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["þreatian", "verb", "þrēatiġe", "þrēatode", "", "", "to threaten"]) + let v = native_list_append(v, ["þerscan", "verb", "þersċe", "þærsċ", "", "", "to thresh"]) + let v = native_list_append(v, ["wiste", "verb", "wiste", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wacian", "verb", "waciġe", "wacode", "", "", "to be/stay awake"]) + let v = native_list_append(v, ["wealcan", "verb", "wealce", "wēolc", "", "", "to move around"]) + let v = native_list_append(v, ["weodian", "verb", "wēodiġe", "wēodode", "", "", "to weed"]) + let v = native_list_append(v, ["wandrian", "verb", "wandriġe", "wandrode", "", "", "to wander"]) + let v = native_list_append(v, ["warian", "verb", "wariġe", "warode", "", "", "to beware"]) + let v = native_list_append(v, ["wafian", "verb", "wafiġe", "wafode", "", "", "to wave"]) + let v = native_list_append(v, ["wagian", "verb", "wagiġe", "wagode", "", "", "to move back"]) + let v = native_list_append(v, ["warnian", "verb", "warniġe", "warnode", "", "", "alternative form of"]) + let v = native_list_append(v, ["wascan", "verb", "wasce", "wōsc", "", "", "to wash"]) + let v = native_list_append(v, ["weallan", "verb", "wealle", "wēoll", "", "", "to boil well"]) + let v = native_list_append(v, ["wenan", "verb", "wēne", "wēnde", "", "", "to think be"]) + let v = native_list_append(v, ["wenian", "verb", "weniġe", "wenode", "", "", "to accustom"]) + let v = native_list_append(v, ["wepan", "verb", "wēpe", "wēop", "", "", "to weep"]) + let v = native_list_append(v, ["werian", "verb", "werie", "werede", "", "", "to use put"]) + let v = native_list_append(v, ["willian", "verb", "williġe", "willode", "", "", "to will"]) + let v = native_list_append(v, ["windan", "verb", "winde", "wand", "", "", "to twist wind"]) + let v = native_list_append(v, ["dreah", "verb", "drēah", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["fremede", "verb", "fremede", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wringan", "verb", "wringe", "wrang", "", "", "to wring"]) + let v = native_list_append(v, ["wrencan", "verb", "wrenċe", "wrencte", "", "", "to twist"]) + let v = native_list_append(v, ["wriþan", "verb", "wrīþe", "wrāþ", "", "", "to twist"]) + let v = native_list_append(v, ["weaxan", "verb", "weaxe", "wēox", "", "", "to grow"]) + let v = native_list_append(v, ["weddian", "verb", "weddiġe", "weddode", "", "", "to pledge to"]) + let v = native_list_append(v, ["wegan", "verb", "wege", "wæġ", "", "", "to carry bear"]) + let v = native_list_append(v, ["wyscan", "verb", "wȳsċe", "wȳsċte", "", "", "to wish +genitive"]) + let v = native_list_append(v, ["mearn", "verb", "mearn", "", "", "", "first/third-person preterite singular"]) + let v = native_list_append(v, ["erian", "verb", "erie", "erede", "", "", "to plough"]) + let v = native_list_append(v, ["taht", "verb", "tāht", "", "", "", "past participle of"]) + let v = native_list_append(v, ["telle", "verb", "telle", "", "", "", "inflection of tellan"]) + let v = native_list_append(v, ["bist", "verb", "bis", "beost", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hropan", "verb", "hrōpe", "hrēop", "", "", "to shout scream"]) + let v = native_list_append(v, ["arn", "verb", "arn", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["hyllan", "verb", "hylle", "hylede", "", "", "to cover"]) + let v = native_list_append(v, ["neotan", "verb", "nēote", "nēat", "", "", "to use make"]) + let v = native_list_append(v, ["willo", "verb", "willo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["letton", "verb", "letton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["fios", "verb", "fīos", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ætwindan", "verb", "ætwinde", "ætwand", "", "", "to escape"]) + let v = native_list_append(v, ["borgen", "verb", "borgen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dihton", "verb", "dihton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["bugan", "verb", "būge", "bēag", "", "", "to bend"]) + let v = native_list_append(v, ["borian", "verb", "boriġe", "borode", "", "", "to bore pierce"]) + let v = native_list_append(v, ["breowan", "verb", "brēowe", "brēaw", "", "", "to brew"]) + let v = native_list_append(v, ["þola", "verb", "þola", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fallan", "verb", "fallan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fehtan", "verb", "fehtan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æfnian", "verb", "ǣfniġe", "ǣfnode", "", "", "to become evening"]) + let v = native_list_append(v, ["geet", "verb", "ġeet", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fyllan", "verb", "fylle", "fylde", "", "", "to fill"]) + let v = native_list_append(v, ["ginen", "verb", "ġīnen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["sih", "verb", "sih", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["genesen", "verb", "ġenesen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["glowan", "verb", "glōwe", "glēow", "", "", "to glow"]) + let v = native_list_append(v, ["reocan", "verb", "rēoce", "rēac", "", "", "to smoke"]) + let v = native_list_append(v, ["fordon", "verb", "fordō", "fordyde", "", "", "to kill destroy"]) + let v = native_list_append(v, ["senden", "verb", "senden", "", "", "", "plural present/preterite subjunctive"]) + let v = native_list_append(v, ["gegangen", "verb", "ġegangen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["toren", "verb", "toren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["selle", "verb", "selle", "", "", "", "inflection of sellan"]) + let v = native_list_append(v, ["spilled", "verb", "spilled", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wett", "verb", "wētt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hele", "verb", "hele", "", "", "", "inflection of helan"]) + let v = native_list_append(v, ["gemeten", "verb", "ġemēten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["genom", "verb", "ġenom", "ġenōm", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrigian", "verb", "wrīġiġe", "wrīġode", "", "", "to move forward"]) + let v = native_list_append(v, ["ys", "verb", "ys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biged", "verb", "bīġed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lige", "verb", "liġe", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["swet", "verb", "swēt", "", "", "", "inflection of swētan"]) + let v = native_list_append(v, ["ingan", "verb", "ingā", "inēode", "", "", "to go in"]) + let v = native_list_append(v, ["tyne", "verb", "tȳne", "", "", "", "inflection of tȳnan"]) + let v = native_list_append(v, ["wæg", "verb", "wæġ", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["abite", "verb", "ābīte", "", "", "", "inflection of ābītan"]) + let v = native_list_append(v, ["feorran", "verb", "feorre", "feorde", "", "", "to remove withdraw"]) + let v = native_list_append(v, ["þingian", "verb", "þingiġe", "þingode", "", "", "to intercede supplicate"]) + let v = native_list_append(v, ["þorfte", "verb", "þorfte", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["feng", "verb", "fēng", "", "", "", "preterite of fōn"]) + let v = native_list_append(v, ["seomian", "verb", "seomiġe", "seomode", "", "", "to lie heavily"]) + let v = native_list_append(v, ["scriþaþ", "verb", "scrīþaþ", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["eardian", "verb", "eardiġe", "eardode", "", "", "to occupy settle"]) + let v = native_list_append(v, ["eahtian", "verb", "eahtiġe", "eahtode", "", "", "to deliberate hold"]) + let v = native_list_append(v, ["gehatan", "verb", "ġehāte", "ġehēt", "", "", "to promise vow"]) + let v = native_list_append(v, ["gemunan", "verb", "ġeman", "ġemunde", "", "", "to remember"]) + let v = native_list_append(v, ["comen", "verb", "cōmen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["agoten", "verb", "āgoten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["alisan", "verb", "ālīsan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anidan", "verb", "ānīdan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["animen", "verb", "ānimen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["aseo", "verb", "āsēo", "", "", "", "inflection of āsēon"]) + let v = native_list_append(v, ["asee", "verb", "āsē̆e", "", "", "", "singular present subjunctive"]) + let v = native_list_append(v, ["aseen", "verb", "āsē̆en", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["dwine", "verb", "dwīne", "", "", "", "inflection of dwīnan"]) + let v = native_list_append(v, ["broten", "verb", "broten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rimed", "verb", "rīmed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["calan", "verb", "strong", "ang-conj", "VI", "", "to be or"]) + let v = native_list_append(v, ["copian", "verb", "copiġe", "copode", "", "", "to plunder pillage"]) + let v = native_list_append(v, ["curen", "verb", "curen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["aswebban", "verb", "āswebbe", "āswefede", "", "", "to lull pacify"]) + let v = native_list_append(v, ["meres", "verb", "meres", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["floten", "verb", "floten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["funde", "verb", "funde", "", "", "", "inflection of findan"]) + let v = native_list_append(v, ["funden", "verb", "funden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["herede", "verb", "herede", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["herian", "verb", "herie", "herede", "", "", "to praise honor"]) + let v = native_list_append(v, ["bescufan", "verb", "besċūfe", "besċēaf", "", "", "to shove throw"]) + let v = native_list_append(v, ["wilnian", "verb", "wilniġe", "wilnode", "", "", "to desire"]) + let v = native_list_append(v, ["liman", "verb", "līman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acan", "verb", "ace", "ōc", "", "", "to ache"]) + let v = native_list_append(v, ["plagian", "verb", "plagian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meted", "verb", "mēted", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sacian", "verb", "saciġe", "sacode", "", "", "to strive brawl"]) + let v = native_list_append(v, ["riman", "verb", "rīme", "rīmde", "", "", "to count number"]) + let v = native_list_append(v, ["tasan", "verb", "tāse", "tēos", "", "", "to pull apart"]) + let v = native_list_append(v, ["temed", "verb", "tēmed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wended", "verb", "wended", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fria", "verb", "frīa", "", "", "", "singular present imperative"]) + let v = native_list_append(v, ["dere", "verb", "dere", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["derian", "verb", "derie", "derede", "", "", "to hurt injure"]) + let v = native_list_append(v, ["þrowian", "verb", "þrōwiġe", "þrōwode", "", "", "to suffer endure"]) + let v = native_list_append(v, ["fandian", "verb", "fandiġe", "fandode", "", "", "to try tempt"]) + let v = native_list_append(v, ["genomen", "verb", "ġenōmen", "ġenāmen", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["frio", "verb", "frīo", "", "", "", "singular present imperative"]) + let v = native_list_append(v, ["nim", "verb", "nim", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["recedes", "verb", "reċedes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["felled", "verb", "felled", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sann", "verb", "sann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["itt", "verb", "itt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["tige", "verb", "tīġe", "", "", "", "inflection of tīġan"]) + let v = native_list_append(v, ["diede", "verb", "dīede", "", "", "", "inflection of dīedan"]) + let v = native_list_append(v, ["libben", "verb", "libben", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["rinne", "verb", "rinne", "", "", "", "inflection of rinnan"]) + let v = native_list_append(v, ["flean", "verb", "flēa", "flōg", "", "", "to flay pull"]) + let v = native_list_append(v, ["latian", "verb", "latiġe", "latode", "", "", "to be slow"]) + let v = native_list_append(v, ["romian", "verb", "rōmiġe", "rōmode", "", "", "to strive after"]) + let v = native_list_append(v, ["died", "verb", "dīed", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["erede", "verb", "erede", "", "", "", "inflection of erian"]) + let v = native_list_append(v, ["wenst", "verb", "wēnst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gewenst", "verb", "ġewēnst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stonden", "verb", "stonden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["grist", "verb", "grīst", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["treden", "verb", "treden", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["holpen", "verb", "holpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cide", "verb", "ċīde", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["neart", "verb", "neart", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["losa", "verb", "losa", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["stel", "verb", "stel", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["nere", "verb", "nere", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["lann", "verb", "lann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wecgan", "verb", "weċġe", "weġde", "", "", "to move agitate"]) + let v = native_list_append(v, ["geng", "verb", "ġēng", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["wacan", "verb", "wace", "wōc", "", "", "to awake arise"]) + let v = native_list_append(v, ["slepen", "verb", "slēpen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["breac", "verb", "brēac", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["syndra", "verb", "syndra", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["heng", "verb", "hēng", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["cierre", "verb", "ċierre", "", "", "", "inflection of ċierran"]) + let v = native_list_append(v, ["onwendan", "verb", "onwende", "onwende", "", "", "to change"]) + let v = native_list_append(v, ["gierwan", "verb", "ġierwe", "ġierede", "", "", "to prepare make"]) + let v = native_list_append(v, ["þearf", "verb", "þearf", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["wisian", "verb", "wīsiġe", "wīsode", "", "", "to show the"]) + let v = native_list_append(v, ["stigan", "verb", "stīge", "stāg", "", "", "to go"]) + let v = native_list_append(v, ["bæron", "verb", "bǣron", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["fysan", "verb", "fȳse", "fȳsde", "", "", "to hasten make"]) + let v = native_list_append(v, ["logon", "verb", "lōgon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["melte", "verb", "melte", "", "", "", "inflection of meltan"]) + let v = native_list_append(v, ["synd", "verb", "synd", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["stope", "verb", "stōpe", "", "", "", "inflection of stæppan"]) + let v = native_list_append(v, ["stigon", "verb", "stigon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["sælan", "verb", "sǣle", "sǣlde", "", "", "to bind with"]) + let v = native_list_append(v, ["hrissan", "verb", "hrisse", "hrisede", "", "", "to shake"]) + let v = native_list_append(v, ["cweccan", "verb", "cweċċe", "cweahte", "", "", "to shake swing"]) + let v = native_list_append(v, ["frægn", "verb", "fræġn", "freġn", "freġen", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["cwomon", "verb", "cwōmon", "cuōmon", "cōmon", "", "plural preterite indicative"]) + let v = native_list_append(v, ["comon", "verb", "cōmon", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sceþþan", "verb", "sċeþþe", "sċōd", "", "", "to injure to"]) + let v = native_list_append(v, ["hæbbende", "verb", "hæbbende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["weorþian", "verb", "weorþiġe", "weorþode", "", "", "to honour"]) + let v = native_list_append(v, ["gecyþan", "verb", "ġecȳþe", "ġecȳþde", "", "", "to report to"]) + let v = native_list_append(v, ["gebad", "verb", "ġebād", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["geman", "verb", "ġeman", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["eowan", "verb", "ēowe", "ēowde", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelæran", "verb", "ġelǣre", "ġelǣrde", "", "", "to teach guide"]) + let v = native_list_append(v, ["oferswiþan", "verb", "oferswīþe", "oferswīþde", "", "", "to overcome"]) + let v = native_list_append(v, ["oferswyþan", "verb", "oferswȳþe", "oferswȳþde", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["stelle", "verb", "stelle", "", "", "", "inflection of stellan"]) + let v = native_list_append(v, ["fredde", "verb", "frēdde", "", "", "", "inflection of frēdan"]) + let v = native_list_append(v, ["gediegan", "verb", "ġedīeġe", "ġedīeġde", "", "", "to survive endure"]) + let v = native_list_append(v, ["fremedon", "verb", "fremedon", "", "", "", "preterite plural indicative"]) + let v = native_list_append(v, ["wearþ", "verb", "wearþ", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["weox", "verb", "wēox", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["þah", "verb", "þāh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sceolde", "verb", "sċeolde", "sċolde", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["scolde", "verb", "scolde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wæs", "verb", "wes", "was", "wæss", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sende", "verb", "sende", "", "", "", "inflection of sendan"]) + let v = native_list_append(v, ["ongitan", "verb", "onġitan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ongeat", "verb", "onġeat", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["forgeaf", "verb", "forġeaf", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["cenned", "verb", "cenned", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sceal", "verb", "sċeal", "sċæl", "sċal", "", "first/third-person singular present"]) + let v = native_list_append(v, ["gewyrcan", "verb", "ġewyrċe", "ġeworhte", "", "", "to do carry"]) + let v = native_list_append(v, ["gewyrcean", "verb", "ġewyrċe", "ġeworhte", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["geþeon", "verb", "ġeþēo", "ġeþāh", "", "", "to flourish prosper"]) + let v = native_list_append(v, ["fordo", "verb", "fordō", "", "", "", "inflection of fordōn"]) + let v = native_list_append(v, ["egsian", "verb", "eġsiġe", "eġsode", "", "", "alternative form of"]) + let v = native_list_append(v, ["egsode", "verb", "eġsode", "", "", "", "inflection of eġsian"]) + let v = native_list_append(v, ["gewunigen", "verb", "ġewuniġen", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["cume", "verb", "cume", "", "", "", "inflection of cuman"]) + let v = native_list_append(v, ["gelæsten", "verb", "ġelǣsten", "", "", "", "subjunctive present plural"]) + let v = native_list_append(v, ["wære", "verb", "wǣre", "", "", "", "inflection of bēon"]) + let v = native_list_append(v, ["ætbæron", "verb", "ætbǣron", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["bæd", "verb", "bæd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["weold", "verb", "wēold", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["ahte", "verb", "āhte", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["alecgan", "verb", "āleċġe", "āleġde", "", "", "to lay down"]) + let v = native_list_append(v, ["aledon", "verb", "ālēdon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alegdon", "verb", "āleġdon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["bryttan", "verb", "brytte", "brytte", "", "", "to break crumble"]) + let v = native_list_append(v, ["hreodan", "verb", "hrēode", "hrēad", "", "", "to adorn decorate"]) + let v = native_list_append(v, ["onettan", "verb", "ōnette", "ōnette", "", "", "to move quickly"]) + let v = native_list_append(v, ["ateo", "verb", "ātēo", "", "", "", "inflection of ātēon"]) + let v = native_list_append(v, ["gelæded", "verb", "ġelǣded", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wesende", "verb", "wesende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["murnende", "verb", "murnende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["asettan", "verb", "āsette", "āsette", "", "", "to set up"]) + let v = native_list_append(v, ["asetton", "verb", "āsetton", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["dydon", "verb", "dydon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["hyrde", "verb", "hȳrde", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["gilden", "verb", "ġilden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["cunnon", "verb", "cunnon", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["gegierwan", "verb", "ġeġierwe", "ġeġierede", "", "", "to equip make"]) + let v = native_list_append(v, ["læg", "verb", "læġ", "leġ", "leġe", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["onfon", "verb", "onfō", "onfēng", "", "", "to receive accept"]) + let v = native_list_append(v, ["onfeng", "verb", "onfēng", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["teodon", "verb", "tēodon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["teodan", "verb", "tēodan", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["fint", "verb", "fint", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gefrægn", "verb", "ġefræġn", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["forfore", "verb", "forfōre", "", "", "", "inflection of forfaran"]) + let v = native_list_append(v, ["beah", "verb", "bēah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["hwearf", "verb", "hwearf", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["driest", "verb", "drīest", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["beate", "verb", "bēate", "", "", "", "inflection of bēatan"]) + let v = native_list_append(v, ["blande", "verb", "blande", "", "", "", "inflection of blandan"]) + let v = native_list_append(v, ["gefed", "verb", "ġefēd", "", "", "", "past participle of"]) + let v = native_list_append(v, ["heold", "verb", "hēold", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mah", "verb", "māh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["swigian", "verb", "swīgiġe", "swīgode", "", "", "to be silent"]) + let v = native_list_append(v, ["þringan", "verb", "þringe", "þrang", "", "", "to press constrict"]) + let v = native_list_append(v, ["liesan", "verb", "līese", "līesde", "", "", "to set free"]) + let v = native_list_append(v, ["slupan", "verb", "slūpe", "slēap", "", "", "to slip slide"]) + let v = native_list_append(v, ["cleopian", "verb", "cleopian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clipian", "verb", "clipiġe", "clipode", "", "", "to make a"]) + let v = native_list_append(v, ["geclypod", "verb", "ġeclypod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geclipod", "verb", "ġeclipod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lifde", "verb", "lifde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["grimman", "verb", "grimme", "gramm", "", "", "to rage roar"]) + let v = native_list_append(v, ["grummon", "verb", "grummon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["sigan", "verb", "sīge", "sāg", "", "", "to sink fall"]) + let v = native_list_append(v, ["buende", "verb", "būende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["lixan", "verb", "līxe", "līxte", "", "", "to shine flash"]) + let v = native_list_append(v, ["ferian", "verb", "ferie", "ferede", "", "", "to take move"]) + let v = native_list_append(v, ["mette", "verb", "mētte", "", "", "", "inflection of mētan"]) + let v = native_list_append(v, ["magian", "verb", "magiġe", "magode", "", "", "to prevail"]) + let v = native_list_append(v, ["rasian", "verb", "rāsiġe", "rāsode", "", "", "to explore"]) + let v = native_list_append(v, ["deme", "verb", "dēme", "", "", "", "inflection of dēman"]) + let v = native_list_append(v, ["alen", "verb", "alen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spende", "verb", "spende", "", "", "", "inflection of spendan"]) + let v = native_list_append(v, ["olon", "verb", "ōlon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["sealtian", "verb", "sealtiġe", "sealtode", "", "", "to dance"]) + let v = native_list_append(v, ["stinge", "verb", "stinge", "", "", "", "inflection of stingan"]) + let v = native_list_append(v, ["scade", "verb", "sċāde", "", "", "", "inflection of sċādan"]) + let v = native_list_append(v, ["munan", "verb", "man", "munde", "", "", "to remember be"]) + let v = native_list_append(v, ["sint", "verb", "sint", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["leton", "verb", "lēton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["fulla", "verb", "fulla", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fette", "verb", "fette", "", "", "", "inflection of fetian"]) + let v = native_list_append(v, ["bestanden", "verb", "bestanden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["gefangen", "verb", "ġefangen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gewunden", "verb", "ġewunden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["nys", "verb", "nys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mostest", "verb", "mōstest", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["lette", "verb", "lette", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fulge", "verb", "fulge", "", "", "", "inflection of fēolan"]) + let v = native_list_append(v, ["bugon", "verb", "bugon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["geweorþod", "verb", "ġeweorþod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["geweorþad", "verb", "ġeweorþad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asecgan", "verb", "āseċġe", "āsæġde", "", "", "to tell utter"]) + let v = native_list_append(v, ["agifan", "verb", "āġife", "āġeaf", "", "", "alternative form of"]) + let v = native_list_append(v, ["bulle", "verb", "bulle", "", "", "", "inflection of bellan"]) + let v = native_list_append(v, ["gyred", "verb", "ġyred", "", "", "", "past participle of"]) + let v = native_list_append(v, ["geteon", "verb", "ġetēo", "ġetēah", "", "", "to draw pull"]) + let v = native_list_append(v, ["deah", "verb", "dēah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelegd", "verb", "ġeleġd", "", "", "", "past participle of"]) + let v = native_list_append(v, ["stond", "verb", "stond", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["bended", "verb", "bended", "", "", "", "past participle of"]) + let v = native_list_append(v, ["misdo", "verb", "misdō", "", "", "", "inflection of misdōn"]) + let v = native_list_append(v, ["legde", "verb", "leġde", "", "", "", "inflection of leċġan"]) + let v = native_list_append(v, ["hield", "verb", "hield", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["dryp", "verb", "dryp", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["suge", "verb", "sūge", "", "", "", "inflection of sūgan"]) + let v = native_list_append(v, ["wrixlan", "verb", "wrixle", "wrixlede", "", "", "to change"]) + let v = native_list_append(v, ["maþelian", "verb", "maþeliġe", "maþelode", "", "", "to speak declare"]) + let v = native_list_append(v, ["onsendan", "verb", "onsende", "onsende", "", "", "to send forth"]) + let v = native_list_append(v, ["onbidan", "verb", "onbīde", "onbād", "", "", "to wait to"]) + let v = native_list_append(v, ["aron", "verb", "earun", "earon", "", "", "Northumbrian form of"]) + let v = native_list_append(v, ["etten", "verb", "etten", "", "", "", "plural present/preterite subjunctive"]) + let v = native_list_append(v, ["gemere", "verb", "ġemere", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["gemete", "verb", "ġemēte", "", "", "", "inflection of ġemētan"]) + let v = native_list_append(v, ["gemette", "verb", "ġemētte", "", "", "", "inflection of ġemētan"]) + let v = native_list_append(v, ["fecce", "verb", "feċċe", "", "", "", "inflection of feċċan"]) + let v = native_list_append(v, ["tilien", "verb", "tilien", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["linnan", "verb", "linne", "lann", "", "", "to stop cease"]) + let v = native_list_append(v, ["gebogen", "verb", "ġebogen", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["bedragen", "verb", "bedragen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["ferie", "verb", "ferie", "", "", "", "inflection of ferian"]) + let v = native_list_append(v, ["teorian", "verb", "tēoriġe", "tēorode", "", "", "to tire faint"]) + let v = native_list_append(v, ["ahon", "verb", "āhō", "āhēng", "", "", "to hang suspend"]) + let v = native_list_append(v, ["grise", "verb", "grīse", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["griet", "verb", "grīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["dered", "verb", "dered", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bedon", "verb", "bedō", "bedyde", "", "", "to shut"]) + let v = native_list_append(v, ["gebit", "verb", "ġebīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sopen", "verb", "sopen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["briet", "verb", "brīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sægþ", "verb", "sæġþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["þyrla", "verb", "þȳrla", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["cit", "verb", "ċīt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["wroten", "verb", "wrōten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["blende", "verb", "blēnde", "", "", "", "inflection of blandan"]) + let v = native_list_append(v, ["byst", "verb", "bȳst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["bringe", "verb", "bringe", "", "", "", "inflection of bringan"]) + let v = native_list_append(v, ["dyd", "verb", "dȳd", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["lengan", "verb", "lenġe", "lengde", "", "", "to make or"]) + let v = native_list_append(v, ["bodie", "verb", "bodie", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["segon", "verb", "sēgon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["sitte", "verb", "sitte", "", "", "", "inflection of sittan"]) + let v = native_list_append(v, ["froren", "verb", "ġefroren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["moten", "verb", "mōten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["liest", "verb", "līest", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hindrian", "verb", "hindriġe", "hindrode", "", "", "to hinder obstruct"]) + let v = native_list_append(v, ["sendest", "verb", "sendest", "", "", "", "second-person singular present/preterite"]) + let v = native_list_append(v, ["settest", "verb", "settest", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["forþgerimed", "verb", "forþġerīmed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["forþgeriman", "verb", "forþġerīme", "forþġerīmde", "", "", "to count up"]) + let v = native_list_append(v, ["wocon", "verb", "wōcon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["wocun", "verb", "wōcun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ræswan", "verb", "rǣswe", "rǣswede", "", "", "to think consider"]) + let v = native_list_append(v, ["liþende", "verb", "līþende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["liþan", "verb", "līþe", "lāþ", "", "", "to go pass"]) + let v = native_list_append(v, ["helan", "verb", "hele", "hæl", "", "", "to hide conceal"]) + let v = native_list_append(v, ["hyrdon", "verb", "hȳrdon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["ieþan", "verb", "īeþe", "īeþde", "", "", "to destroy to"]) + let v = native_list_append(v, ["gehiegan", "verb", "ġehīeġe", "ġehīeġde", "", "", "to perform"]) + let v = native_list_append(v, ["wyrnan", "verb", "wyrne", "wyrnde", "", "", "alternative form of"]) + let v = native_list_append(v, ["fælsian", "verb", "fǣlsiġe", "fǣlsode", "", "", "to cleanse"]) + let v = native_list_append(v, ["geliefan", "verb", "ġelīefe", "ġelīefde", "", "", "to believe"]) + let v = native_list_append(v, ["beginne", "verb", "beġinne", "", "", "", "inflection of beġinnan"]) + let v = native_list_append(v, ["ytst", "verb", "ytst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["wrat", "verb", "wrāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["gute", "verb", "gute", "", "", "", "inflection of ġēotan"]) + let v = native_list_append(v, ["græde", "verb", "grǣde", "", "", "", "inflection of grǣdan"]) + let v = native_list_append(v, ["sorgian", "verb", "sorgiġe", "sorgode", "", "", "to worry"]) + let v = native_list_append(v, ["getwæfan", "verb", "ġetwǣfe", "ġetwǣfde", "", "", "to separate part"]) + let v = native_list_append(v, ["gebeotian", "verb", "ġebēotiġe", "ġebēotode", "", "", "to promise vow"]) + let v = native_list_append(v, ["bestyman", "verb", "bestȳme", "bestȳmde", "", "", "alternative form of"]) + let v = native_list_append(v, ["scencan", "verb", "sċenċe", "sċencte", "", "", "to pour out"]) + let v = native_list_append(v, ["geholpen", "verb", "ġeholpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["neþan", "verb", "nēþe", "nēþde", "", "", "to dare risk"]) + let v = native_list_append(v, ["maþelode", "verb", "maþelode", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wolde", "verb", "wolde", "", "", "", "inflection of willan"]) + let v = native_list_append(v, ["belean", "verb", "belēa", "belōg", "", "", "to censure reprove"]) + let v = native_list_append(v, ["þeccean", "verb", "þeċċe", "þeahte", "", "", "alternative form of"]) + let v = native_list_append(v, ["ofersceadwian", "verb", "ofersċeadwiġe", "ofersċeadwode", "", "", "to overshadow"]) + let v = native_list_append(v, ["flitan", "verb", "flīte", "flāt", "", "", "to argue fight"]) + let v = native_list_append(v, ["oferflitan", "verb", "oferflīte", "oferflāt", "", "", "to overcome get"]) + let v = native_list_append(v, ["dohte", "verb", "dohte", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["talian", "verb", "taliġe", "talode", "", "", "to suppose consider"]) + let v = native_list_append(v, ["todrifan", "verb", "tōdrīfe", "tōdrāf", "", "", "to drive apart"]) + let v = native_list_append(v, ["swaþrian", "verb", "swaþriġe", "swaþrode", "", "", "to retreat withdraw"]) + let v = native_list_append(v, ["bocian", "verb", "bōciġe", "bōcode", "", "", "to give by"]) + let v = native_list_append(v, ["onsittan", "verb", "onsitte", "onsæt", "", "", "to oppress assail"]) + let v = native_list_append(v, ["rist", "verb", "rīst", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["risende", "verb", "rīsende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["aginst", "verb", "āġinst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gebunden", "verb", "ġebunden", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["cierran", "verb", "ċierre", "ċierde", "", "", "to turn to"]) + let v = native_list_append(v, ["dihtan", "verb", "dihte", "dihte", "", "", "to dictate direct"]) + let v = native_list_append(v, ["binde", "verb", "binde", "", "", "", "inflection of bindan"]) + let v = native_list_append(v, ["bude", "verb", "bude", "", "", "", "inflection of bēodan"]) + let v = native_list_append(v, ["loten", "verb", "loten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["settenne", "verb", "settenne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["supe", "verb", "sūpe", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sepan", "verb", "sēpe", "sēpte", "", "", "to cause to"]) + let v = native_list_append(v, ["misse", "verb", "misse", "", "", "", "inflection of missan"]) + let v = native_list_append(v, ["tengan", "verb", "tenġe", "tengde", "", "", "to press harry"]) + let v = native_list_append(v, ["heran", "verb", "hēru", "hērde", "", "", "alternative form of"]) + let v = native_list_append(v, ["merran", "verb", "merru", "merde", "", "", "alternative form of"]) + let v = native_list_append(v, ["tieran", "verb", "tīere", "tīerde", "", "", "to tear or"]) + let v = native_list_append(v, ["piplian", "verb", "pipliġe", "piplode", "", "", "to grow pimply"]) + let v = native_list_append(v, ["fias", "verb", "fīas", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["lætt", "verb", "lǣtt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["supan", "verb", "sūpe", "sēap", "", "", "to sup take"]) + let v = native_list_append(v, ["rison", "verb", "rison", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["moton", "verb", "mōton", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["togan", "verb", "tōgā", "tōēode", "", "", "to go in"]) + let v = native_list_append(v, ["gereccan", "verb", "ġereċċe", "ġereahte", "", "", "to explain relate"]) + let v = native_list_append(v, ["magon", "verb", "magon", "", "", "", "present plural of"]) + let v = native_list_append(v, ["forsit", "verb", "forsit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["halsa", "verb", "hālsa", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["wunne", "verb", "wunne", "", "", "", "inflection of winnan"]) + let v = native_list_append(v, ["teah", "verb", "tēah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["þenian", "verb", "þēniġe", "þēnode", "", "", "alternative form of"]) + let v = native_list_append(v, ["bæt", "verb", "bǣt", "", "", "", "inflection of bǣtan"]) + let v = native_list_append(v, ["forbite", "verb", "forbīte", "", "", "", "inflection of forbītan"]) + let v = native_list_append(v, ["eode", "verb", "ēode", "eade", "", "", "inflection of gān"]) + let v = native_list_append(v, ["climban", "verb", "climbe", "clamb", "", "", "to climb"]) + let v = native_list_append(v, ["sinnan", "verb", "sinne", "sann", "", "", "to heed care"]) + let v = native_list_append(v, ["eom", "verb", "am", "eam", "æm", "", "first-person singular present"]) + let v = native_list_append(v, ["lignan", "verb", "līġne", "līġnede", "", "", "alternative form of"]) + let v = native_list_append(v, ["forleosan", "verb", "forlēose", "forlēas", "", "", "to lose"]) + let v = native_list_append(v, ["forlætan", "verb", "forlǣte", "forlēt", "", "", "to leave"]) + let v = native_list_append(v, ["onsite", "verb", "onsite", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["þicgan", "verb", "þiċġe", "þeah", "", "", "to receive take"]) + let v = native_list_append(v, ["þegon", "verb", "þēgon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["lettan", "verb", "lette", "lette", "", "", "to hinder obstruct"]) + let v = native_list_append(v, ["nerian", "verb", "nerie", "nerede", "", "", "to save rescue"]) + let v = native_list_append(v, ["gesælan", "verb", "ġesǣle", "ġesǣlde", "", "", "to happen take"]) + let v = native_list_append(v, ["cwæþ", "verb", "cuœð", "", "", "", "first/third-person preterite singular"]) + let v = native_list_append(v, ["hæfde", "verb", "hefde", "", "", "", "inflection of habban"]) + let v = native_list_append(v, ["scoldon", "verb", "sċoldon", "sċeoldon", "", "", "preterite plural of"]) + let v = native_list_append(v, ["onsendon", "verb", "onsendon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["gielpe", "verb", "ġielpe", "", "", "", "inflection of ġielpan"]) + let v = native_list_append(v, ["gehyran", "verb", "ġehȳre", "ġehȳrde", "", "", "alternative form of"]) + let v = native_list_append(v, ["sealde", "verb", "sæalde", "", "", "", "inflection of sellan"]) + let v = native_list_append(v, ["forgeald", "verb", "forġeald", "", "", "", "first/third-person preterite singular"]) + let v = native_list_append(v, ["wunnon", "verb", "wunnon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["gefeah", "verb", "ġefeah", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["nerede", "verb", "nerede", "", "", "", "inflection of nerian"]) + let v = native_list_append(v, ["geþicgan", "verb", "ġeþiċġe", "ġeþeah", "", "", "to receive accept"]) + let v = native_list_append(v, ["alimpan", "verb", "ālimpe", "ālamp", "", "", "to happen occur"]) + let v = native_list_append(v, ["gelimpan", "verb", "ġelimpe", "ġelamp", "", "", "to happen come"]) + let v = native_list_append(v, ["gieddian", "verb", "ġieddiġe", "ġieddode", "", "", "to sing to"]) + let v = native_list_append(v, ["hogode", "verb", "hogode", "", "", "", "inflection of hycgan"]) + let v = native_list_append(v, ["gestigan", "verb", "ġestīge", "ġestāg", "", "", "to climb ascend"]) + let v = native_list_append(v, ["gehyrde", "verb", "ġehȳrde", "", "", "", "inflection of gehyran"]) + let v = native_list_append(v, ["dælde", "verb", "dǣlde", "", "", "", "inflection of dǣlan"]) + let v = native_list_append(v, ["gedælan", "verb", "ġedǣle", "ġedǣlde", "", "", "to deal out"]) + let v = native_list_append(v, ["unlucan", "verb", "unlūce", "unlēac", "", "", "alternative form of"]) + let v = native_list_append(v, ["geondferan", "verb", "ġeondfēre", "ġeondfērde", "", "", "to travel through"]) + let v = native_list_append(v, ["styre", "verb", "stȳre", "", "", "", "inflection of stȳran"]) + let v = native_list_append(v, ["onwacan", "verb", "onwace", "onwōc", "", "", "to awake wake"]) + let v = native_list_append(v, ["gesecan", "verb", "ġesēċe", "ġesōhte", "", "", "to seek after"]) + let v = native_list_append(v, ["behealdan", "verb", "behealde", "behēold", "", "", "to hold occupy"]) + let v = native_list_append(v, ["truwian", "verb", "trūwiġe", "trūwode", "", "", "to trust have"]) + let v = native_list_append(v, ["hyrstan", "verb", "hyrste", "hyrste", "", "", "to decorate ornament"]) + let v = native_list_append(v, ["becuman", "verb", "becume", "becōm", "", "", "to come near"]) + let v = native_list_append(v, ["gesprecan", "verb", "ġesprece", "ġespræc", "", "", "to speak with"]) + let v = native_list_append(v, ["nillan", "verb", "nille", "nolde", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneotan", "verb", "benēote", "benēat", "", "", "to deprive of"]) + let v = native_list_append(v, ["hæfdon", "verb", "hæfdon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["becom", "verb", "becom", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["trede", "verb", "trede", "", "", "", "inflection of tredan"]) + let v = native_list_append(v, ["wawan", "verb", "wāwe", "wēow", "", "", "to blow be"]) + let v = native_list_append(v, ["nagon", "verb", "nāgon", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["nered", "verb", "nered", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rocettan", "verb", "roċette", "roċette", "", "", "to belch burp"]) + let v = native_list_append(v, ["receda", "verb", "reċeda", "", "", "", "inflection of reċed"]) + let v = native_list_append(v, ["nis", "verb", "nys", "", "", "", "contraction of ne"]) + let v = native_list_append(v, ["gefrugnon", "verb", "ġefrūġnon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["ymbstandan", "verb", "ymbstande", "ymbstōd", "", "", "to stand around"]) + let v = native_list_append(v, ["miswrite", "verb", "miswrīte", "", "", "", "inflection of miswrītan"]) + let v = native_list_append(v, ["potian", "verb", "potiġe", "potode", "", "", "to thrust push"]) + let v = native_list_append(v, ["maþolade", "verb", "maþolade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onleac", "verb", "onleac", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["unleac", "verb", "unleac", "", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["geondferde", "verb", "geondferde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wille", "verb", "wylle", "willo", "uillo", "", "inflection of willan"]) + let v = native_list_append(v, ["wylle", "verb", "wylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gemætan", "verb", "ġemǣtan", "weak", "ang-conj", "", "to dream to"]) + let v = native_list_append(v, ["gemætte", "verb", "gemætte", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["þuhte", "verb", "þūhte", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["geseon", "verb", "ġesēo", "ġeseah", "", "", "to see"]) + let v = native_list_append(v, ["gesawe", "verb", "ġesāwe", "ġesēġe", "ġisēġe", "", "inflection of ġesēon"]) + let v = native_list_append(v, ["mengde", "verb", "mengde", "", "", "", "inflection of menġan"]) + let v = native_list_append(v, ["stodon", "verb", "stodon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["licgende", "verb", "licgende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["geseah", "verb", "ġeseah", "ġesæh", "ġisæh", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["aheawan", "verb", "ahēawe", "ahēow", "", "", "to chop cut"]) + let v = native_list_append(v, ["aheawen", "verb", "ahēawen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["beheoldon", "verb", "behēoldon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["wreon", "verb", "wrēo", "wrāh", "", "", "to cover up"]) + let v = native_list_append(v, ["begeotan", "verb", "beġēote", "beġēat", "", "", "to pour over"]) + let v = native_list_append(v, ["begoten", "verb", "begoten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dorste", "verb", "dorste", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["drefan", "verb", "drēfe", "drēfde", "", "", "to stir up"]) + let v = native_list_append(v, ["gedrefed", "verb", "gedrefed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mihte", "verb", "mihte", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["astyrian", "verb", "āstyrie", "āstyrede", "", "", "to stir up"]) + let v = native_list_append(v, ["efstan", "verb", "efste", "efste", "", "", "alternative form of"]) + let v = native_list_append(v, ["stieman", "verb", "stīeme", "stīemde", "", "", "to give off"]) + let v = native_list_append(v, ["bestieman", "verb", "bestīeme", "bestīemde", "", "", "to make wet"]) + let v = native_list_append(v, ["astyred", "verb", "āstyred", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lysan", "verb", "lȳse", "lȳsde", "", "", "alternative form of"]) + let v = native_list_append(v, ["geworpen", "verb", "ġeworpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lec", "verb", "lēc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["siwian", "verb", "siwiġe", "siwode", "", "", "to sew"]) + let v = native_list_append(v, ["alies", "verb", "ālīes", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["pleon", "verb", "plēo", "pleah", "", "", "to endanger risk"]) + let v = native_list_append(v, ["plihtan", "verb", "plihte", "plihte", "", "", "to endanger compromise"]) + let v = native_list_append(v, ["gebeden", "verb", "ġebeden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tredan", "verb", "trede", "træd", "", "", "to tread"]) + let v = native_list_append(v, ["strit", "verb", "strīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["foron", "verb", "fōron", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["foren", "verb", "fōren", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["stier", "verb", "stīer", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["stridon", "verb", "stridon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["atende", "verb", "ātende", "", "", "", "inflection of ātendan"]) + let v = native_list_append(v, ["slopen", "verb", "slopen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["feccan", "verb", "feċċe", "feahte", "", "", "to fetch bring"]) + let v = native_list_append(v, ["nedan", "verb", "nēdan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niton", "verb", "niton", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["gestolen", "verb", "ġestolen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["atended", "verb", "ātended", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sciet", "verb", "sċīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fiad", "verb", "fīad", "", "", "", "past participle of"]) + let v = native_list_append(v, ["acerre", "verb", "āċerre", "", "", "", "inflection of āċerran"]) + let v = native_list_append(v, ["hieran", "verb", "hīere", "hīerde", "", "", "to obey"]) + let v = native_list_append(v, ["rindan", "verb", "rinde", "rinde", "", "", "to bark remove"]) + let v = native_list_append(v, ["lacen", "verb", "lācen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["hinca", "verb", "hinca", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["giman", "verb", "ġīme", "ġīmde", "", "", "alternative form of"]) + let v = native_list_append(v, ["gime", "verb", "ġīme", "", "", "", "inflection of ġīman"]) + let v = native_list_append(v, ["meriende", "verb", "meriende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["celan", "verb", "cēle", "cēlde", "", "", "to cool make"]) + let v = native_list_append(v, ["gelent", "verb", "ġelent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["blandan", "verb", "blande", "blēnd", "", "", "to blend"]) + let v = native_list_append(v, ["blanden", "verb", "blanden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gestent", "verb", "ġestent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ahonde", "verb", "āhōnde", "", "", "", "present participle of"]) + let v = native_list_append(v, ["asciende", "verb", "asciende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["cyste", "verb", "cyste", "", "", "", "first-person singular prepositional"]) + let v = native_list_append(v, ["getreden", "verb", "ġetreden", "treden", "", "", "past participle of"]) + let v = native_list_append(v, ["ciegan", "verb", "ċīeġe", "ċīeġde", "", "", "to call name"]) + let v = native_list_append(v, ["hendan", "verb", "hende", "hende", "", "", "to take by"]) + let v = native_list_append(v, ["blet", "verb", "blēt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ingangen", "verb", "ingangen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["tawian", "verb", "tawiġe", "tawode", "", "", "to prepare make"]) + let v = native_list_append(v, ["gegolden", "verb", "ġegolden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grette", "verb", "grētte", "", "", "", "inflection of grētan"]) + let v = native_list_append(v, ["befon", "verb", "befō", "befēng", "", "", "to comprehend grasp"]) + let v = native_list_append(v, ["timbran", "verb", "timbre", "timbrede", "", "", "to build"]) + let v = native_list_append(v, ["timbren", "verb", "timbren", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["bestel", "verb", "bestel", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["dragende", "verb", "dragende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["beswican", "verb", "beswīce", "beswāc", "", "", "to deceive trick"]) + let v = native_list_append(v, ["dwinan", "verb", "dwīne", "dwān", "", "", "to waste away"]) + let v = native_list_append(v, ["belagen", "verb", "belagen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gelegen", "verb", "ġeleġen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["maca", "verb", "maca", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["slad", "verb", "slād", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["loccian", "verb", "locciġe", "loccode", "", "", "to allure or"]) + let v = native_list_append(v, ["ofset", "verb", "ofset", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gangen", "verb", "gangen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["geboden", "verb", "ġeboden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lysed", "verb", "lȳsed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gesungen", "verb", "ġesungen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["biddende", "verb", "biddende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["grunden", "verb", "grunden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grunde", "verb", "grunde", "", "", "", "inflection of grindan"]) + let v = native_list_append(v, ["styntan", "verb", "stynte", "stynte", "", "", "to blunt to"]) + let v = native_list_append(v, ["buge", "verb", "būge", "", "", "", "inflection of būgan"]) + let v = native_list_append(v, ["faren", "verb", "faren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wegende", "verb", "wegende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["besæt", "verb", "besæt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["hyt", "verb", "hȳt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["standen", "verb", "standen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["stande", "verb", "stande", "", "", "", "inflection of standan"]) + let v = native_list_append(v, ["striden", "verb", "strīden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["monodon", "verb", "monodon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["bestolen", "verb", "bestolen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["læge", "verb", "lǣge", "", "", "", "inflection of liċġan"]) + let v = native_list_append(v, ["belegen", "verb", "beleġen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bensian", "verb", "bēnsiġe", "bēnsode", "", "", "to pray"]) + let v = native_list_append(v, ["bedrog", "verb", "bedrōg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["irne", "verb", "irne", "", "", "", "inflection of irnan"]) + let v = native_list_append(v, ["stige", "verb", "stīge", "", "", "", "inflection of stīgan"]) + let v = native_list_append(v, ["acucian", "verb", "ācucian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afierran", "verb", "āfierre", "āfierede", "", "", "to remove"]) + let v = native_list_append(v, ["yt", "verb", "yt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["riden", "verb", "rīden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["fenge", "verb", "fēnge", "", "", "", "inflection of fōn"]) + let v = native_list_append(v, ["syg", "verb", "sȳġ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rym", "verb", "rȳm", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["soden", "verb", "soden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["stigen", "verb", "stīgen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["deag", "verb", "dēag", "dēah", "dēg", "", "first/third-person singular present"]) + let v = native_list_append(v, ["bete", "verb", "bete", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["gete", "verb", "ġēte", "", "", "", "inflection of ġētan"]) + let v = native_list_append(v, ["sion", "verb", "sīon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sient", "verb", "sient", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scien", "verb", "sċīe", "sċīede", "", "", "to be frightened"]) + let v = native_list_append(v, ["sice", "verb", "sīce", "", "", "", "inflection of sīcan"]) + let v = native_list_append(v, ["wenen", "verb", "wēnen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["spinne", "verb", "spinne", "", "", "", "inflection of spinnan"]) + let v = native_list_append(v, ["tytan", "verb", "tȳte", "tȳtte", "", "", "to be conspicuous"]) + let v = native_list_append(v, ["costian", "verb", "costiġe", "costode", "", "", "try tempt"]) + let v = native_list_append(v, ["smeagan", "verb", "smēaġe", "smēade", "", "", "consider think about"]) + let v = native_list_append(v, ["geniet", "verb", "ġenīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["stemde", "verb", "stēmde", "", "", "", "inflection of stēman"]) + let v = native_list_append(v, ["cepe", "verb", "cēpe", "", "", "", "inflection of cēpan"]) + let v = native_list_append(v, ["forspil", "verb", "forspil", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["borsten", "verb", "borsten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["andettan", "verb", "andette", "andette", "", "", "to admit confess"]) + let v = native_list_append(v, ["ricsian", "verb", "rīcsiġe", "rīcsode", "", "", "to rule govern"]) + let v = native_list_append(v, ["læcan", "verb", "lǣċe", "lǣhte", "", "", "to move quickly"]) + let v = native_list_append(v, ["miswent", "verb", "miswent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fricgan", "verb", "friċġe", "fræġ", "", "", "to inquire ask"]) + let v = native_list_append(v, ["fultumian", "verb", "fultumiġe", "fultumode", "", "", "to prop up"]) + let v = native_list_append(v, ["nealæcan", "verb", "nēalǣċe", "nēalǣhte", "", "", "to approach"]) + let v = native_list_append(v, ["cyþlæcan", "verb", "cȳþlǣċe", "cȳþlǣhte", "", "", "to become known"]) + let v = native_list_append(v, ["cyrtenlæcan", "verb", "cyrtenlǣċe", "cyrtenlǣhte", "", "", "to beautify make"]) + let v = native_list_append(v, ["cneordlæcan", "verb", "cneordlǣċe", "cneordlǣhte", "", "", "to be diligent"]) + let v = native_list_append(v, ["wieldan", "verb", "wielde", "wielde", "", "", "to control"]) + let v = native_list_append(v, ["spellian", "verb", "spelliġe", "spellode", "", "", "to talk converse"]) + let v = native_list_append(v, ["wiþcostian", "verb", "wiþcostiġe", "wiþcostode", "", "", "to disapprove condemn"]) + let v = native_list_append(v, ["goten", "verb", "goten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spilian", "verb", "spiliġe", "spilode", "", "", "to play to"]) + let v = native_list_append(v, ["andustrian", "verb", "andūstriġe", "andūstrode", "", "", "to deny by"]) + let v = native_list_append(v, ["swæslæcan", "verb", "swǣslǣċe", "swǣslǣhte", "", "", "to flatter talk"]) + let v = native_list_append(v, ["freod", "verb", "frēod", "ġefrēod", "", "", "past participle of"]) + let v = native_list_append(v, ["blowan", "verb", "blōwe", "blēow", "", "", "to flower blossom"]) + let v = native_list_append(v, ["blawan", "verb", "blāwe", "blēow", "", "", "to blow breathe"]) + let v = native_list_append(v, ["beladian", "verb", "belādiġe", "belādode", "", "", "to excuse clear"]) + let v = native_list_append(v, ["ladian", "verb", "lādiġe", "lādode", "", "", "to excuse or"]) + let v = native_list_append(v, ["onstellan", "verb", "onstelle", "onstealde", "", "", "to establish initiate"]) + let v = native_list_append(v, ["sacode", "verb", "sacode", "", "", "", "inflection of sacian"]) + let v = native_list_append(v, ["grillan", "verb", "grille", "grilde", "", "", "alternative form of"]) + let v = native_list_append(v, ["geall", "verb", "ġeall", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["forlet", "verb", "forlēt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["tucian", "verb", "tūciġe", "tūcode", "", "", "to disturb mistreat"]) + let v = native_list_append(v, ["trucian", "verb", "truciġe", "trucode", "", "", "to fail run"]) + let v = native_list_append(v, ["torfian", "verb", "torfiġe", "torfode", "", "", "to throw shoot"]) + let v = native_list_append(v, ["ehtan", "verb", "ēhte", "ēhte", "", "", "to chase +"]) + let v = native_list_append(v, ["miltsian", "verb", "miltsiġe", "miltsode", "", "", "to have mercy"]) + let v = native_list_append(v, ["fordeman", "verb", "fordēme", "fordēmde", "", "", "to condemn sentence"]) + let v = native_list_append(v, ["ceos", "verb", "ċēos", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["minsian", "verb", "minsiġe", "minsode", "", "", "to diminish lessen"]) + let v = native_list_append(v, ["fadian", "verb", "fadiġe", "fadode", "", "", "to direct guide"]) + let v = native_list_append(v, ["facian", "verb", "fāciġe", "fācode", "", "", "to obtain acquire"]) + let v = native_list_append(v, ["fagettan", "verb", "fāgette", "fāgette", "", "", "to change color"]) + let v = native_list_append(v, ["essian", "verb", "essiġe", "essode", "", "", "to waste consume"]) + let v = native_list_append(v, ["eþian", "verb", "ēþiġe", "ēþode", "", "", "to breathe"]) + let v = native_list_append(v, ["oþian", "verb", "ōþiġe", "ōþode", "", "", "alternative form of"]) + let v = native_list_append(v, ["frician", "verb", "friciġe", "fricode", "", "", "to desire seek"]) + let v = native_list_append(v, ["medemian", "verb", "medemiġe", "medemode", "", "", "alternative form of"]) + let v = native_list_append(v, ["anlæcan", "verb", "ānlǣċe", "ānlǣhte", "", "", "to unite"]) + let v = native_list_append(v, ["frefran", "verb", "frēfre", "frēfrede", "", "", "to comfort console"]) + let v = native_list_append(v, ["aliefan", "verb", "ālīefe", "ālīefde", "", "", "to allow"]) + let v = native_list_append(v, ["aliesan", "verb", "ālīese", "ālīesde", "", "", "to detach remove"]) + let v = native_list_append(v, ["liefan", "verb", "līefe", "līefde", "", "", "to give leave"]) + let v = native_list_append(v, ["ligen", "verb", "liġen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gemagian", "verb", "ġemagiġe", "ġemagode", "", "", "to recuperate recover"]) + let v = native_list_append(v, ["mecgan", "verb", "meċġe", "meġde", "", "", "to mix stir"]) + let v = native_list_append(v, ["leccan", "verb", "leċċe", "leahte", "", "", "to water irrigate"]) + let v = native_list_append(v, ["trit", "verb", "trit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["mamorian", "verb", "māmoriġe", "māmorode", "", "", "to deliberate think"]) + let v = native_list_append(v, ["missan", "verb", "misse", "miste", "", "", "to miss fail"]) + let v = native_list_append(v, ["andweardian", "verb", "andweardiġe", "andweardode", "", "", "to present to"]) + let v = native_list_append(v, ["midþolian", "verb", "midþoliġe", "midþolode", "", "", "to sympathize sympathize"]) + let v = native_list_append(v, ["galan", "verb", "gale", "gōl", "", "", "to sing enchant"]) + let v = native_list_append(v, ["forþgewiten", "verb", "forþġewiten", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["feorsian", "verb", "feorsiġe", "feorsode", "", "", "to exceed go"]) + let v = native_list_append(v, ["feormian", "verb", "feormiġe", "feormode", "", "", "to cleanse scour"]) + let v = native_list_append(v, ["fele", "verb", "fēle", "", "", "", "inflection of fēlan"]) + let v = native_list_append(v, ["ræfan", "verb", "rǣfe", "rǣfde", "", "", "to involve wrap"]) + let v = native_list_append(v, ["misfare", "verb", "misfare", "", "", "", "inflection of misfaran"]) + let v = native_list_append(v, ["wandian", "verb", "wandiġe", "wandode", "", "", "to hesitate with"]) + let v = native_list_append(v, ["westan", "verb", "wēste", "wēste", "", "", "to ravage spoil"]) + let v = native_list_append(v, ["wealcian", "verb", "wealciġe", "wealcode", "", "", "to roll up"]) + let v = native_list_append(v, ["ieldan", "verb", "ielde", "ielde", "", "", "to put off"]) + let v = native_list_append(v, ["iersian", "verb", "iersiġe", "iersode", "", "", "to rage be"]) + let v = native_list_append(v, ["iewan", "verb", "īewe", "īewde", "", "", "to show"]) + let v = native_list_append(v, ["inciegan", "verb", "inċīeġe", "inċīeġde", "", "", "to call upon"]) + let v = native_list_append(v, ["inferan", "verb", "infēre", "infērde", "", "", "to enter go"]) + let v = native_list_append(v, ["ingefeallan", "verb", "inġefealle", "inġefēoll", "", "", "to indicate point"]) + let v = native_list_append(v, ["geanlæcan", "verb", "ġeānlǣċe", "ġeānlǣhte", "", "", "to make one"]) + let v = native_list_append(v, ["spurnan", "verb", "spurne", "spearn", "", "", "to kick"]) + let v = native_list_append(v, ["þegnian", "verb", "þeġniġe", "þeġnode", "", "", "to serve +"]) + let v = native_list_append(v, ["getregian", "verb", "ġetregiġe", "ġetregode", "", "", "to abhor feel"]) + let v = native_list_append(v, ["dafenian", "verb", "dafeniġe", "dafenode", "", "", "to be fitting"]) + let v = native_list_append(v, ["wiþmetan", "verb", "wiþmete", "wiþmæt", "", "", "to compare +dative"]) + let v = native_list_append(v, ["nacian", "verb", "naciġe", "nacode", "", "", "to strip strip"]) + let v = native_list_append(v, ["stælan", "verb", "stǣle", "stǣlde", "", "", "to establish found"]) + let v = native_list_append(v, ["mesan", "verb", "mēse", "mēsde", "", "", "to eat feed"]) + let v = native_list_append(v, ["botettan", "verb", "bōtette", "bōtette", "", "", "to improve"]) + let v = native_list_append(v, ["lengde", "verb", "lengde", "", "", "", "inflection of lenġan"]) + let v = native_list_append(v, ["nemnian", "verb", "nemniġe", "nemnode", "", "", "alternative form of"]) + let v = native_list_append(v, ["hebbe", "verb", "hebbe", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["eglan", "verb", "eġle", "eġlde", "", "", "to trouble pain"]) + let v = native_list_append(v, ["understondan", "verb", "understonde", "understōd", "", "", "alternative form of"]) + let v = native_list_append(v, ["wedde", "verb", "wēdde", "", "", "", "inflection of wēdan"]) + let v = native_list_append(v, ["understandan", "verb", "understande", "understōd", "", "", "to understand"]) + let v = native_list_append(v, ["spil", "verb", "spil", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["tofore", "verb", "tōfōre", "", "", "", "inflection of tōfaran"]) + let v = native_list_append(v, ["berid", "verb", "berīd", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["efenmetan", "verb", "efenmete", "efenmæt", "", "", "alternative form of"]) + let v = native_list_append(v, ["blencan", "verb", "blenċe", "blencte", "", "", "to deceive"]) + let v = native_list_append(v, ["stelende", "verb", "stelende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["cysten", "verb", "cysten", "", "", "", "singular prepositional/preterite subjunctive"]) + let v = native_list_append(v, ["spilde", "verb", "spilde", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["cid", "verb", "ċīd", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["befo", "verb", "befō", "", "", "", "inflection of befōn"]) + let v = native_list_append(v, ["metende", "verb", "metende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["grætan", "verb", "grǣte", "grēt", "", "", "to weep cry"]) + let v = native_list_append(v, ["gemengde", "verb", "ġemengde", "", "", "", "inflection of ġemenġan"]) + let v = native_list_append(v, ["mynte", "verb", "mynte", "", "", "", "inflection of myntan"]) + let v = native_list_append(v, ["findest", "verb", "findest", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["finde", "verb", "finde", "", "", "", "inflection of findan"]) + let v = native_list_append(v, ["fylde", "verb", "fylde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["tidernes", "verb", "tidernes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winnende", "verb", "winnende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["smerige", "verb", "smeriġe", "", "", "", "inflection of smerian"]) + let v = native_list_append(v, ["behatan", "verb", "behāte", "behēt", "", "", "to promise"]) + let v = native_list_append(v, ["þeahtian", "verb", "þeahtiġe", "þeahtode", "", "", "to take counsel"]) + let v = native_list_append(v, ["styr", "verb", "stȳr", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["styrede", "verb", "styrede", "", "", "", "past of styrian"]) + let v = native_list_append(v, ["feled", "verb", "fēled", "", "", "", "past participle of"]) + let v = native_list_append(v, ["beatan", "verb", "bēate", "bēot", "", "", "to beat"]) + let v = native_list_append(v, ["miscian", "verb", "misciġe", "miscode", "", "", "to mix"]) + let v = native_list_append(v, ["mixian", "verb", "mixiġe", "mixode", "", "", "alternative form of"]) + let v = native_list_append(v, ["hierte", "verb", "hierte", "", "", "", "inflection of hiertan"]) + let v = native_list_append(v, ["nomon", "verb", "nōmon", "nāmon", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["ryme", "verb", "rȳme", "", "", "", "inflection of rȳman"]) + let v = native_list_append(v, ["ludon", "verb", "ludon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["þryccan", "verb", "þryċċe", "þryhte", "", "", "to press crush"]) + let v = native_list_append(v, ["merdes", "verb", "merdes", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["wiþceosan", "verb", "wiþċēose", "wiþċēas", "", "", "to choose against"]) + let v = native_list_append(v, ["mamrian", "verb", "māmriġe", "māmrode", "", "", "to think out"]) + let v = native_list_append(v, ["mimorian", "verb", "mimoriġe", "mimorode", "", "", "to remember keep"]) + let v = native_list_append(v, ["mymerian", "verb", "mymeriġe", "mymerode", "", "", "alternative form of"]) + let v = native_list_append(v, ["fige", "verb", "fīġe", "", "", "", "inflection of fīġan"]) + let v = native_list_append(v, ["beorgan", "verb", "beorge", "bearg", "", "", "to save deliver"]) + let v = native_list_append(v, ["cweman", "verb", "cwēme", "cwēmde", "", "", "to please satisfy"]) + let v = native_list_append(v, ["infare", "verb", "infare", "", "", "", "inflection of infaran"]) + let v = native_list_append(v, ["heht", "verb", "hēht", "hēt", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["stryndan", "verb", "strȳnde", "strȳnde", "", "", "to waste"]) + let v = native_list_append(v, ["framian", "verb", "framiġe", "framode", "", "", "to avail profit"]) + let v = native_list_append(v, ["adelfe", "verb", "ādelfe", "", "", "", "inflection of ādelfan"]) + let v = native_list_append(v, ["ræswian", "verb", "rǣswiġe", "rǣswode", "", "", "alternative form of"]) + let v = native_list_append(v, ["costnian", "verb", "costniġe", "costnode", "", "", "alternative form of"]) + let v = native_list_append(v, ["cystan", "verb", "cyste", "cyste", "", "", "to get procure"]) + let v = native_list_append(v, ["swamm", "verb", "swamm", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["blondan", "verb", "blondan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neote", "verb", "nēote", "", "", "", "inflection of nēotan"]) + let v = native_list_append(v, ["stilst", "verb", "stilst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["deog", "verb", "dēog", "dēoh", "dēg", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["tiergan", "verb", "tierġe", "tierġde", "", "", "to worry exasperate"]) + let v = native_list_append(v, ["befylan", "verb", "befȳle", "befȳlde", "", "", "to defile befoul"]) + let v = native_list_append(v, ["fylan", "verb", "fȳle", "fȳlde", "", "", "to defile pollute"]) + let v = native_list_append(v, ["bename", "verb", "benāme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bewent", "verb", "bewent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["linne", "verb", "linne", "", "", "", "inflection of linnan"]) + let v = native_list_append(v, ["geomrian", "verb", "ġeōmriġe", "ġeōmrode", "", "", "to complain"]) + let v = native_list_append(v, ["hreddan", "verb", "hredde", "hredde", "", "", "to save rescue"]) + let v = native_list_append(v, ["ondon", "verb", "ondō", "ondyde", "", "", "to undo"]) + let v = native_list_append(v, ["lafian", "verb", "lafiġe", "lafode", "", "", "to wet make"]) + let v = native_list_append(v, ["ligon", "verb", "ligon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["togen", "verb", "togen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gemon", "verb", "ġemon", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bannen", "verb", "bannen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gewaden", "verb", "ġewaden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["reston", "verb", "reston", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["bette", "verb", "bētte", "", "", "", "inflection of bētan"]) + let v = native_list_append(v, ["collen", "verb", "collen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gefroren", "verb", "ġefroren", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["circe", "verb", "ċirċe", "", "", "", "inflection of ċirċan"]) + let v = native_list_append(v, ["amasian", "verb", "āmasiġe", "āmasode", "", "", "to amaze"]) + let v = native_list_append(v, ["sanc", "verb", "sanc", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["getan", "verb", "ġētu", "ġētte", "", "", "alternative form of"]) + let v = native_list_append(v, ["gebet", "verb", "ġebēt", "", "", "", "inflection of ġebētan"]) + let v = native_list_append(v, ["fundon", "verb", "fundon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["hebbende", "verb", "hebbende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["cuþlæcan", "verb", "cūþlǣċe", "cūþlǣhte", "", "", "to make known"]) + let v = native_list_append(v, ["ytt", "verb", "ytt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["iht", "verb", "īht", "", "", "", "past participle of"]) + let v = native_list_append(v, ["scite", "verb", "sċīte", "", "", "", "inflection of sċītan"]) + let v = native_list_append(v, ["beleogan", "verb", "belēoge", "belēag", "", "", "to deceive by"]) + let v = native_list_append(v, ["belicgan", "verb", "beliċġe", "belæġ", "", "", "to lie by"]) + let v = native_list_append(v, ["cann", "verb", "can", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["sprenge", "verb", "sprenġe", "", "", "", "inflection of sprenġan"]) + let v = native_list_append(v, ["sprengst", "verb", "sprengst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["forcierest", "verb", "forċierest", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["siehst", "verb", "siehst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["seh", "verb", "seh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fielst", "verb", "fielst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["waden", "verb", "waden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["þreapian", "verb", "þrēapiġe", "þrēapode", "", "", "to reprove correct"]) + let v = native_list_append(v, ["ameres", "verb", "āmeres", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["amere", "verb", "āmere", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["frige", "verb", "friġe", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["flagen", "verb", "flagen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["notian", "verb", "notiġe", "notode", "", "", "to make use"]) + let v = native_list_append(v, ["hielde", "verb", "hielde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["stonde", "verb", "stonde", "", "", "", "inflection of stondan"]) + let v = native_list_append(v, ["sunge", "verb", "sunge", "", "", "", "inflection of singan"]) + let v = native_list_append(v, ["bedrage", "verb", "bedrage", "", "", "", "inflection of bedragan"]) + let v = native_list_append(v, ["bidde", "verb", "bidde", "", "", "", "inflection of biddan"]) + let v = native_list_append(v, ["gehangen", "verb", "ġehangen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["slape", "verb", "slāpe", "", "", "", "inflection of slāpan"]) + let v = native_list_append(v, ["gedropen", "verb", "ġedropen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dropen", "verb", "dropen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["giete", "verb", "ġiete", "", "", "", "inflection of ġietan"]) + let v = native_list_append(v, ["logen", "verb", "logen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gelde", "verb", "ġelde", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["wringe", "verb", "wringe", "", "", "", "inflection of wringan"]) + let v = native_list_append(v, ["slepe", "verb", "slēpe", "", "", "", "inflection of slǣpan"]) + let v = native_list_append(v, ["gebannen", "verb", "ġebannen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["berste", "verb", "berste", "", "", "", "inflection of berstan"]) + let v = native_list_append(v, ["brenge", "verb", "brenġe", "", "", "", "inflection of brenġan"]) + let v = native_list_append(v, ["deon", "verb", "dēo", "dēode", "", "", "to suck"]) + let v = native_list_append(v, ["wisse", "verb", "wisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gewit", "verb", "ġewīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["flogen", "verb", "flogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["geflogen", "verb", "ġeflogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hielt", "verb", "hielt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["belegd", "verb", "beleġd", "", "", "", "past participle of"]) + let v = native_list_append(v, ["belegde", "verb", "beleġde", "", "", "", "inflection of beleċġan"]) + let v = native_list_append(v, ["gesele", "verb", "ġesele", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["giere", "verb", "ġiere", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["sceon", "verb", "sċēo", "sċēode", "", "", "to fall to"]) + let v = native_list_append(v, ["forcippian", "verb", "forċippiġe", "forċippode", "", "", "to cut off"]) + let v = native_list_append(v, ["temde", "verb", "tēmde", "", "", "", "inflection of tēman"]) + let v = native_list_append(v, ["wende", "verb", "wende", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wene", "verb", "wēne", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["gefunden", "verb", "ġefunden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["drehtest", "verb", "dreahtes", "dreahtest", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["drehte", "verb", "drehte", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["gedreht", "verb", "ġedreht", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dreht", "verb", "dreht", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ritt", "verb", "rītt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["spired", "verb", "spired", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sawe", "verb", "sāwe", "", "", "", "inflection of sāwan"]) + let v = native_list_append(v, ["gehet", "verb", "ġehēt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["underberan", "verb", "underbere", "underbær", "", "", "to support"]) + let v = native_list_append(v, ["drepan", "verb", "drepe", "dræp", "", "", "to strike beat"]) + let v = native_list_append(v, ["ferien", "verb", "ferien", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["træde", "verb", "trǣde", "", "", "", "inflection of tredan"]) + let v = native_list_append(v, ["træd", "verb", "træd", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["gine", "verb", "ġīne", "", "", "", "inflection of ġīnan"]) + let v = native_list_append(v, ["barian", "verb", "bariġe", "barode", "", "", "to lay bare"]) + let v = native_list_append(v, ["fluton", "verb", "fluton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["gedrite", "verb", "ġedrīte", "", "", "", "inflection of ġedrītan"]) + let v = native_list_append(v, ["adihtan", "verb", "ādihte", "ādihte", "", "", "to edit compose"]) + let v = native_list_append(v, ["ofslean", "verb", "ofslēa", "ofslōg", "", "", "to kill"]) + let v = native_list_append(v, ["fulwihtian", "verb", "fulwihtiġe", "fulwihtode", "", "", "to baptize"]) + let v = native_list_append(v, ["wregan", "verb", "wrēġe", "wreġde", "", "", "to accuse impeach"]) + let v = native_list_append(v, ["þaccian", "verb", "þacciġe", "þaccode", "", "", "to touch softly"]) + let v = native_list_append(v, ["bruton", "verb", "bruton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["runnen", "verb", "runnen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["honne", "verb", "hōnne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["inlædan", "verb", "inlǣde", "inlǣdde", "", "", "to lead in"]) + let v = native_list_append(v, ["blinnan", "verb", "blinne", "blann", "", "", "to cease leave"]) + let v = native_list_append(v, ["specan", "verb", "spece", "spæc", "", "", "alternative form of"]) + let v = native_list_append(v, ["sceogan", "verb", "sċeōġe", "sċeōde", "", "", "alternative form of"]) + let v = native_list_append(v, ["scogan", "verb", "sċōġe", "sċōde", "", "", "to put shoes"]) + let v = native_list_append(v, ["þeowan", "verb", "þēowe", "þēowde", "", "", "to press impress"]) + let v = native_list_append(v, ["þywan", "verb", "þȳ", "þȳwde", "", "", "alternative form of"]) + let v = native_list_append(v, ["cropen", "verb", "cropen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["blonden", "verb", "blonden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grafen", "verb", "grafen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["decan", "verb", "dēċe", "dēcte", "", "", "to smear daub"]) + let v = native_list_append(v, ["sended", "verb", "sended", "", "", "", "past participle of"]) + let v = native_list_append(v, ["genugan", "verb", "ġeneah", "ġenohte", "", "", "to be sufficient"]) + let v = native_list_append(v, ["spowan", "verb", "spōwan", "strong", "ang-conj", "", "to succeed +"]) + let v = native_list_append(v, ["belea", "verb", "belēa", "", "", "", "inflection of belēan"]) + let v = native_list_append(v, ["onliest", "verb", "onlīest", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["fleat", "verb", "flēat", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["gælan", "verb", "gǣle", "gǣlde", "", "", "to hinder delay"]) + let v = native_list_append(v, ["beom", "verb", "bēom", "bīom", "", "", "first-person singular of"]) + let v = native_list_append(v, ["blatian", "verb", "blātiġe", "blātode", "", "", "to be pale"]) + let v = native_list_append(v, ["gebiden", "verb", "gebiden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cnossian", "verb", "cnossiġe", "cnossode", "", "", "to beat strike"]) + let v = native_list_append(v, ["geþrungen", "verb", "ġeþrungen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gliden", "verb", "glīden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["deþ", "verb", "dēþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["grison", "verb", "grīson", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["fetian", "verb", "fetiġe", "fetode", "", "", "to fetch bring"]) + let v = native_list_append(v, ["fatian", "verb", "fatiġe", "fatode", "", "", "alternative form of"]) + let v = native_list_append(v, ["herebeorgian", "verb", "herebeorgiġe", "herebeorgode", "", "", "to shelter"]) + let v = native_list_append(v, ["andswarian", "verb", "andswariġe", "andswarode", "", "", "to answer +dative"]) + let v = native_list_append(v, ["cracian", "verb", "craciġe", "cracode", "", "", "to resound"]) + let v = native_list_append(v, ["stode", "verb", "stōde", "", "", "", "inflection of standan"]) + let v = native_list_append(v, ["smocian", "verb", "smociġe", "smocode", "", "", "to smoke emit"]) + let v = native_list_append(v, ["bisgian", "verb", "bisgiġe", "bisgode", "", "", "to occupy busy"]) + let v = native_list_append(v, ["steartlian", "verb", "steartliġe", "steartlode", "", "", "to kick or"]) + let v = native_list_append(v, ["turnian", "verb", "turniġe", "turnode", "", "", "to turn on"]) + let v = native_list_append(v, ["gefan", "verb", "ġefu", "ġæf", "", "", "alternative form of"]) + let v = native_list_append(v, ["gefeoht", "verb", "gefeoht", "", "", "", ""]) + let v = native_list_append(v, ["ofercuman", "verb", "ofercume", "ofercōm", "", "", "to overcome or"]) + let v = native_list_append(v, ["frias", "verb", "frīas", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["wæron", "verb", "wǣron", "wǣran", "wǣrun", "", "preterite indicative plural"]) + let v = native_list_append(v, ["wunodon", "verb", "wunodon", "", "", "", "preterite plural of"]) + let v = native_list_append(v, ["bedecian", "verb", "bedeciġe", "bedecode", "", "", "to beg for"]) + let v = native_list_append(v, ["flugon", "verb", "flugon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["glada", "verb", "glada", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["gemeres", "verb", "ġemeres", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dryg", "verb", "drȳġ", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hettan", "verb", "hette", "hette", "", "", "to pursue as"]) + let v = native_list_append(v, ["ytan", "verb", "ȳte", "ȳtte", "", "", "to put out"]) + let v = native_list_append(v, ["ripan", "verb", "rīpe", "rāp", "", "", "to reap"]) + let v = native_list_append(v, ["stoden", "verb", "stōden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["gripen", "verb", "grīpen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["gripon", "verb", "gripon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["genam", "verb", "ġenam", "ġenom", "ġenōm", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["fran", "verb", "frān", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["recan", "verb", "rēċe", "rōhte", "", "", "to care"]) + let v = native_list_append(v, ["gadrian", "verb", "gadriġe", "gadrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelogian", "verb", "ġelōgiġe", "ġelōgode", "", "", "to place in"]) + let v = native_list_append(v, ["spece", "verb", "spece", "", "", "", "inflection of specan"]) + let v = native_list_append(v, ["liehst", "verb", "līehteþ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rogian", "verb", "rōgiġe", "rōgode", "", "", "to flourish"]) + let v = native_list_append(v, ["fegan", "verb", "fēġe", "fēġde", "", "", "to attach join"]) + let v = native_list_append(v, ["geanian", "verb", "ġeāniġe", "ġeānode", "", "", "to unite"]) + let v = native_list_append(v, ["belgan", "verb", "belge", "bealg", "", "", "to become angry"]) + let v = native_list_append(v, ["betogen", "verb", "betogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ænlæcan", "verb", "ǣnlǣċe", "ǣnlǣhte", "", "", "alternative form of"]) + let v = native_list_append(v, ["alyfan", "verb", "ālȳfe", "ālȳfde", "", "", "alternative form of"]) + let v = native_list_append(v, ["geholian", "verb", "ġeholiġe", "ġeholode", "", "", "to obtain"]) + let v = native_list_append(v, ["budon", "verb", "budon", "", "", "", "plural past indicative"]) + let v = native_list_append(v, ["bledsian", "verb", "blēdsiġe", "blēdsode", "", "", "alternative form of"]) + let v = native_list_append(v, ["griellan", "verb", "grielle", "grielde", "", "", "to annoy provoke"]) + let v = native_list_append(v, ["grellan", "verb", "grelle", "grelede", "", "", "alternative form of"]) + let v = native_list_append(v, ["forebodian", "verb", "forebodiġe", "forebodode", "", "", "to announce declare"]) + let v = native_list_append(v, ["bodian", "verb", "bodiġe", "bodode", "", "", "to tell proclaim"]) + let v = native_list_append(v, ["feon", "verb", "fēon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afare", "verb", "āfare", "", "", "", "inflection of āfaran"]) + let v = native_list_append(v, ["gelafian", "verb", "ġelafiġe", "ġelafode", "", "", "to refresh"]) + let v = native_list_append(v, ["heredon", "verb", "heredon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["stoppian", "verb", "stoppiġe", "stoppode", "", "", "to stop"]) + let v = native_list_append(v, ["forstoppian", "verb", "forstoppiġe", "forstoppode", "", "", "to stop up"]) + let v = native_list_append(v, ["clysan", "verb", "clȳse", "clȳsde", "", "", "to close shut"]) + let v = native_list_append(v, ["bield", "verb", "bield", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["helige", "verb", "heliġe", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["tidan", "verb", "tīde", "tīdde", "", "", "to betide befall"]) + let v = native_list_append(v, ["fregnan", "verb", "freġne", "fræġn", "", "", "alternative form of"]) + let v = native_list_append(v, ["frinan", "verb", "frīne", "frān", "", "", "alternative form of"]) + let v = native_list_append(v, ["eart", "verb", "earþ", "arþ", "æart", "", "second-person singular present"]) + let v = native_list_append(v, ["wlatian", "verb", "wlātiġe", "wlātode", "", "", "to gaze look"]) + let v = native_list_append(v, ["wyrcean", "verb", "wyrċe", "worhte", "", "", "alternative form of"]) + let v = native_list_append(v, ["fritt", "verb", "fritt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["wrixle", "verb", "wrixle", "", "", "", "inflection of wrixlan"]) + let v = native_list_append(v, ["wixlan", "verb", "wixle", "wixlede", "", "", "alternative form of"]) + let v = native_list_append(v, ["growe", "verb", "grōwe", "", "", "", "inflection of grōwan"]) + let v = native_list_append(v, ["ridon", "verb", "ridon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["profian", "verb", "prōfiġe", "prōfode", "", "", "to esteem regard"]) + let v = native_list_append(v, ["blowe", "verb", "blōwe", "", "", "", "inflection of blōwan"]) + let v = native_list_append(v, ["blote", "verb", "blōte", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["higian", "verb", "hīgiġe", "hīgode", "", "", "to strive exert"]) + let v = native_list_append(v, ["ferende", "verb", "fērende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["besis", "verb", "besīs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["frete", "verb", "frete", "", "", "", "inflection of fretan"]) + let v = native_list_append(v, ["biten", "verb", "bīten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["gullen", "verb", "gullen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["stopen", "verb", "stōpen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["friade", "verb", "frīade", "", "", "", "inflection of frīġan"]) + let v = native_list_append(v, ["barast", "verb", "barast", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ondfon", "verb", "ondfō", "ondfēng", "", "", "alternative form of"]) + let v = native_list_append(v, ["getogen", "verb", "ġetogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["figan", "verb", "fīġu", "fīode", "", "", "alternative form of"]) + let v = native_list_append(v, ["wæflian", "verb", "wæfliġe", "wæflode", "", "", "to talk or"]) + let v = native_list_append(v, ["ingiet", "verb", "inġīet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ingoten", "verb", "ingoten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["besee", "verb", "besē̆e", "", "", "", "singular present subjunctive"]) + let v = native_list_append(v, ["genimen", "verb", "ġenimen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["bestod", "verb", "bestōd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["gewealcan", "verb", "ġewealce", "ġewēolc", "", "", "to go traverse"]) + let v = native_list_append(v, ["sindon", "verb", "aron", "arun", "earun", "", "plural present indicative"]) + let v = native_list_append(v, ["biom", "verb", "bīom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aselle", "verb", "āselle", "", "", "", "inflection of āsellan"]) + let v = native_list_append(v, ["axian", "verb", "āxiġe", "āxode", "", "", "alternative form of"]) + let v = native_list_append(v, ["slapan", "verb", "slāpe", "slēop", "", "", "alternative form of"]) + let v = native_list_append(v, ["slepan", "verb", "slēpu", "slēp", "", "", "alternative form of"]) + let v = native_list_append(v, ["forloren", "verb", "strong", "ang-adecl", "forlorenne", "", "past participle of"]) + let v = native_list_append(v, ["earon", "verb", "earun", "arun", "aron", "", "third-person plural simple"]) + let v = native_list_append(v, ["fordwine", "verb", "fordwīne", "", "", "", "inflection of fordwīnan"]) + let v = native_list_append(v, ["nitan", "verb", "nāt", "nisse", "", "", "alternative form of"]) + let v = native_list_append(v, ["geworht", "verb", "ġeworht", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["hytt", "verb", "hȳtt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hyrt", "verb", "hyrt", "", "", "", "inflection of hyrtan"]) + let v = native_list_append(v, ["forfare", "verb", "forfare", "", "", "", "inflection of forfaran"]) + let v = native_list_append(v, ["wennan", "verb", "wenne", "wenede", "", "", "alternative form of"]) + let v = native_list_append(v, ["gebærde", "verb", "ġebǣrde", "", "", "", "inflection of ġebǣran"]) + let v = native_list_append(v, ["cealdian", "verb", "ċealdiġe", "ċealdode", "", "", "to become cold"]) + let v = native_list_append(v, ["fregna", "verb", "freġna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sniþan", "verb", "snīþe", "snāþ", "", "", "to cut make"]) + let v = native_list_append(v, ["behate", "verb", "behāte", "", "", "", "inflection of behātan"]) + let v = native_list_append(v, ["bemete", "verb", "bemete", "", "", "", "inflection of bemetan"]) + let v = native_list_append(v, ["dreccan", "verb", "dreċċe", "dreahte", "", "", "to annoy trouble"]) + let v = native_list_append(v, ["dreahtes", "verb", "dreahtest", "drehtest", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["dreahtest", "verb", "dreahtes", "drehtest", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["reat", "verb", "rēat", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["friades", "verb", "frīades", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["dyngan", "verb", "dynġe", "dyngde", "", "", "to dung"]) + let v = native_list_append(v, ["seten", "verb", "seten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["betan", "verb", "bēte", "bētte", "", "", "to improve"]) + let v = native_list_append(v, ["ettan", "verb", "ette", "ette", "", "", "to consume the"]) + let v = native_list_append(v, ["fyran", "verb", "fȳran", "", "", "", "to castrate"]) + let v = native_list_append(v, ["lutan", "verb", "lūte", "lēat", "", "", "to lout bow"]) + let v = native_list_append(v, ["syltan", "verb", "syltan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hreppan", "verb", "hreppe", "hrepede", "", "", "to touch treat"]) + let v = native_list_append(v, ["asis", "verb", "āsīs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["weman", "verb", "wēme", "wēmde", "", "", "to sound be"]) + let v = native_list_append(v, ["geten", "verb", "ġeten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nyste", "verb", "nyste", "", "", "", "inflection of nytan"]) + let v = native_list_append(v, ["styrde", "verb", "stȳrde", "", "", "", "inflection of stȳran"]) + let v = native_list_append(v, ["beslog", "verb", "beslōg", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["bunden", "verb", "bunden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["drif", "verb", "drīf", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["friad", "verb", "frīad", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fyll", "verb", "fyll", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["latast", "verb", "latast", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["liden", "verb", "liden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["sliten", "verb", "slīten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["sprungen", "verb", "sprungen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["stungen", "verb", "stungen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["forþgewitan", "verb", "forþġewīte", "forþġewāt", "", "", "to go forth"]) + let v = native_list_append(v, ["hæftan", "verb", "hæfte", "hæfte", "", "", "to seize make"]) + let v = native_list_append(v, ["beþian", "verb", "beþie", "beþede", "", "", "to heat warm"]) + let v = native_list_append(v, ["generian", "verb", "ġenerie", "ġenerede", "", "", "to save deliver"]) + let v = native_list_append(v, ["sniðan", "verb", "snīðe", "snāð", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["wringst", "verb", "wringst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gegræppian", "verb", "ġegræppiġe", "ġegræppode", "", "", "to seize"]) + let v = native_list_append(v, ["wanda", "verb", "wanda", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["birnan", "verb", "birne", "barn", "", "", "alternative form of"]) + let v = native_list_append(v, ["besitt", "verb", "besitt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["begann", "verb", "begann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["slingan", "verb", "slinge", "slang", "", "", "to wind twist"]) + let v = native_list_append(v, ["sprutan", "verb", "sprūte", "sprēat", "", "", "to sprout"]) + let v = native_list_append(v, ["septe", "verb", "sēpte", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["helian", "verb", "heliġe", "helode", "", "", "to hide conceal"]) + let v = native_list_append(v, ["gangan", "verb", "gange", "ġēng", "", "", "to go walk"]) + let v = native_list_append(v, ["witen", "verb", "witen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["scine", "verb", "sċīne", "", "", "", "inflection of sċīnan"]) + let v = native_list_append(v, ["dyden", "verb", "dyden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["batian", "verb", "batiġe", "batode", "", "", "to fatten to"]) + let v = native_list_append(v, ["abrecan", "verb", "ābrece", "ābræc", "", "", "to break break"]) + let v = native_list_append(v, ["abredwian", "verb", "ābredwiġe", "ābredwode", "", "", "to lay low"]) + let v = native_list_append(v, ["abugan", "verb", "ābūge", "ābēag", "", "", "to bow incline"]) + let v = native_list_append(v, ["afyllan", "verb", "āfylle", "āfylde", "", "", "to fill with"]) + let v = native_list_append(v, ["agangan", "verb", "āgange", "āġēng", "", "", "to come to"]) + let v = native_list_append(v, ["agalan", "verb", "āgale", "āgōl", "", "", "to sing"]) + let v = native_list_append(v, ["bewægnan", "verb", "bewæġne", "bewæġnde", "", "", "to offer"]) + let v = native_list_append(v, ["geiewan", "verb", "ġeīewe", "ġeīewde", "", "", "to show"]) + let v = native_list_append(v, ["ætwegan", "verb", "ætwege", "ætwæġ", "", "", "to carry off"]) + let v = native_list_append(v, ["ealgian", "verb", "ealgiġe", "ealgode", "", "", "to protect defend"]) + let v = native_list_append(v, ["feriende", "verb", "feriġende", "ferġende", "", "", "present participle of"]) + let v = native_list_append(v, ["figende", "verb", "fīġende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["smit", "verb", "smīt", "", "", "", "inflection of smītan"]) + let v = native_list_append(v, ["besit", "verb", "besit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["merru", "verb", "merru", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rigne", "verb", "riġne", "", "", "", "inflection of riġnan"]) + let v = native_list_append(v, ["rowen", "verb", "rōwen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["bocon", "verb", "bōcon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["tolies", "verb", "tōlīes", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["berit", "verb", "berīt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sielte", "verb", "sielte", "", "", "", "inflection of sieltan"]) + let v = native_list_append(v, ["siwen", "verb", "siwen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["blann", "verb", "blann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["beseen", "verb", "besē̆en", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["straca", "verb", "strāca", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["wiert", "verb", "wiert", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["wisan", "verb", "wīse", "wīsde", "", "", "to show"]) + let v = native_list_append(v, ["gesitt", "verb", "ġesitt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["flyman", "verb", "flȳman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelan", "verb", "ġele", "ġæl", "", "", "to pour"]) + let v = native_list_append(v, ["bace", "verb", "bace", "", "", "", "inflection of bacan"]) + let v = native_list_append(v, ["gewenden", "verb", "ġewēnden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["gewent", "verb", "ġewent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gewende", "verb", "ġewēnde", "", "", "", "inflection of ġewēnan"]) + let v = native_list_append(v, ["gewen", "verb", "ġewēn", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["biden", "verb", "biden", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gehelgod", "verb", "ġehelgod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aseenne", "verb", "āsē̆enne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["grinst", "verb", "grinst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["wæscan", "verb", "wæscan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["næs", "verb", "næs", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["acsian", "verb", "ācsiġe", "ācsode", "", "", "alternative form of"]) + let v = native_list_append(v, ["mæstan", "verb", "mæste", "mæste", "", "", "to fatten animals"]) + let v = native_list_append(v, ["wode", "verb", "wōde", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["gestanden", "verb", "ġestanden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["gestande", "verb", "ġestande", "", "", "", "inflection of ġestandan"]) + let v = native_list_append(v, ["icende", "verb", "īċende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sewen", "verb", "sewen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["figu", "verb", "fīġu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["bolgen", "verb", "bolgen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["myntan", "verb", "mynte", "mynte", "", "", "to mean intend"]) + let v = native_list_append(v, ["fonne", "verb", "fōnne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["besierwan", "verb", "besierwe", "besierede", "", "", "to entrap deceive"]) + let v = native_list_append(v, ["bedælan", "verb", "bedǣle", "bedǣlde", "", "", "to deprive +"]) + let v = native_list_append(v, ["onirnan", "verb", "onirne", "onarn", "", "", "to spring open"]) + let v = native_list_append(v, ["irnan", "verb", "irne", "arn", "", "", "alternative form of"]) + let v = native_list_append(v, ["rine", "verb", "rīne", "", "", "", "inflection of rīnan"]) + let v = native_list_append(v, ["gebolgen", "verb", "ġebolgen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hlehhan", "verb", "hlehhe", "hlōg", "", "", "alternative form of"]) + let v = native_list_append(v, ["ahliehhan", "verb", "āhliehhe", "āhlōg", "", "", "to laugh at"]) + let v = native_list_append(v, ["yldan", "verb", "ylde", "ylde", "", "", "alternative form of"]) + let v = native_list_append(v, ["astandan", "verb", "āstande", "āstōd", "", "", "to stand up"]) + let v = native_list_append(v, ["gewindan", "verb", "ġewinde", "ġewand", "", "", "to twist weave"]) + let v = native_list_append(v, ["hlynsian", "verb", "hlynsiġe", "hlynsode", "", "", "to resound"]) + let v = native_list_append(v, ["demende", "verb", "dēmende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["merdon", "verb", "merdon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["foh", "verb", "fōh", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["giltst", "verb", "ġiltst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gefielst", "verb", "ġefielst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["urnon", "verb", "urnon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["ridende", "verb", "rīdende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sunnon", "verb", "sunnon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["wissa", "verb", "wissa", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["frioþ", "verb", "frīoþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gebun", "verb", "ġebūn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wyllan", "verb", "wylle", "wylde", "", "", "alternative form of"]) + let v = native_list_append(v, ["gret", "verb", "grēt", "", "", "", "inflection of grētan"]) + let v = native_list_append(v, ["haldan", "verb", "haldu", "hēold", "", "", "alternative form of"]) + let v = native_list_append(v, ["swor", "verb", "swōr", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["wigan", "verb", "wīge", "wāg", "", "", "to fight make"]) + let v = native_list_append(v, ["lesan", "verb", "lese", "læs", "", "", "to gather collect"]) + let v = native_list_append(v, ["derigende", "verb", "deriġende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flowen", "verb", "flōwen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gemerdes", "verb", "ġemerdes", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["afo", "verb", "āfō", "", "", "", "inflection of āfōn"]) + let v = native_list_append(v, ["ferede", "verb", "ferede", "", "", "", "inflection of ferian"]) + let v = native_list_append(v, ["onlihtan", "verb", "onlīhte", "onlīhte", "", "", "alternative form of"]) + let v = native_list_append(v, ["inlihtan", "verb", "inlīhte", "inlīhte", "", "", "to illuminate make"]) + let v = native_list_append(v, ["orn", "verb", "orn", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["benamen", "verb", "benāmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benomen", "verb", "benōmen", "benāmen", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["benam", "verb", "benom", "benōm", "", "", "first/third-person preterite of"]) + let v = native_list_append(v, ["trahtian", "verb", "trahtiġe", "trahtode", "", "", "to treat comment"]) + let v = native_list_append(v, ["fullian", "verb", "fulliġe", "fullode", "", "", "to fulfill perfect"]) + let v = native_list_append(v, ["wanian", "verb", "waniġe", "wanode", "", "", "to shrink or"]) + let v = native_list_append(v, ["wopen", "verb", "wōpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fremed", "verb", "fremed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bærnan", "verb", "bærne", "bærnde", "", "", "to burn"]) + let v = native_list_append(v, ["niste", "verb", "niste", "", "", "", "inflection of nitan"]) + let v = native_list_append(v, ["cowen", "verb", "cowen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["frine", "verb", "frīne", "", "", "", "inflection of frīnan"]) + let v = native_list_append(v, ["flitst", "verb", "flītst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dreag", "verb", "drēag", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["giwa", "verb", "ġiwa", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["nolde", "verb", "nolde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["aheng", "verb", "āhēng", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["smeart", "verb", "smeart", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["burge", "verb", "burge", "", "", "", "inflection of beorgan"]) + let v = native_list_append(v, ["grete", "verb", "grēte", "", "", "", "inflection of grētan"]) + let v = native_list_append(v, ["edcwician", "verb", "edcwiciġe", "edcwicode", "", "", "to requicken revive"]) + let v = native_list_append(v, ["crang", "verb", "crang", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fremmen", "verb", "fremmen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["enlihtan", "verb", "enlīhte", "enlīhte", "", "", "alternative form of"]) + let v = native_list_append(v, ["seah", "verb", "sæh", "seh", "sih", "", "first/third-person singular past"]) + let v = native_list_append(v, ["agiefan", "verb", "āġiefe", "āġeaf", "", "", "to give up"]) + let v = native_list_append(v, ["brinnan", "verb", "brinne", "brann", "", "", "alternative form of"]) + let v = native_list_append(v, ["writen", "verb", "wrīten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["forboden", "verb", "strong", "ang-adecl", "forbodenne", "", "past participle of"]) + let v = native_list_append(v, ["forsite", "verb", "forsite", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["befæstan", "verb", "befæste", "befæste", "", "", "to fasten fix"]) + let v = native_list_append(v, ["alesan", "verb", "ālēsan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["racian", "verb", "raciġe", "racode", "", "", "to rule to"]) + let v = native_list_append(v, ["geldan", "verb", "ġeldu", "ġald", "", "", "alternative form of"]) + let v = native_list_append(v, ["domian", "verb", "dōmiġe", "dōmode", "", "", "to praise glorify"]) + let v = native_list_append(v, ["gelyfan", "verb", "ġelȳfe", "ġelȳfde", "", "", "alternative form of"]) + let v = native_list_append(v, ["foresend", "verb", "foresend", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["beride", "verb", "berīde", "", "", "", "inflection of berīdan"]) + let v = native_list_append(v, ["agute", "verb", "āgute", "", "", "", "inflection of āġēotan"]) + let v = native_list_append(v, ["tion", "verb", "tīon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brengan", "verb", "brenġe", "brōhte", "", "", "to bring lead"]) + let v = native_list_append(v, ["stridan", "verb", "strīde", "strād", "", "", "to stride straddle"]) + let v = native_list_append(v, ["ahton", "verb", "āhton", "", "", "", "first/second/third-person plural past"]) + let v = native_list_append(v, ["dwan", "verb", "dwan", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sceran", "verb", "sċere", "sċær", "", "", "alternative form of"]) + let v = native_list_append(v, ["grinde", "verb", "grinde", "", "", "", "inflection of grindan"]) + let v = native_list_append(v, ["growen", "verb", "grōwen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["solian", "verb", "soliġe", "solode", "", "", "to soil become"]) + let v = native_list_append(v, ["ceorian", "verb", "ċeoriġe", "ċeorode", "", "", "to murmur complain"]) + let v = native_list_append(v, ["frigu", "verb", "frīġu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["cered", "verb", "ċered", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fornumen", "verb", "fornumen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["amierran", "verb", "āmierre", "āmierde", "", "", "to lead astray"]) + let v = native_list_append(v, ["frecgan", "verb", "freċġe", "freġde", "", "", "to ask"]) + let v = native_list_append(v, ["eggian", "verb", "eggiġe", "eggode", "", "", "to excite egg"]) + let v = native_list_append(v, ["arod", "verb", "ārod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["plættan", "verb", "plætte", "plætte", "", "", "to buffet smack"]) + let v = native_list_append(v, ["hnigan", "verb", "hnīge", "hnāg", "", "", "to bow"]) + let v = native_list_append(v, ["hrinan", "verb", "hrīne", "hrān", "", "", "to touch"]) + let v = native_list_append(v, ["hwinan", "verb", "hwīne", "hwān", "", "", "to make a"]) + let v = native_list_append(v, ["nesan", "verb", "neom", "næs", "", "", "not to be"]) + let v = native_list_append(v, ["bigan", "verb", "bīġe", "bīġde", "", "", "alternative form of"]) + let v = native_list_append(v, ["screon", "verb", "sċrēo", "sċrāh", "", "", "to cry out"]) + let v = native_list_append(v, ["spaw", "verb", "spāw", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["scin", "verb", "sċīn", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["besinge", "verb", "besinge", "", "", "", "inflection of besingan"]) + let v = native_list_append(v, ["sceall", "verb", "sċeall", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["begretan", "verb", "begrētu", "begrēt", "", "", "alternative form of"]) + let v = native_list_append(v, ["begrætan", "verb", "begrǣte", "begrēt", "", "", "to lament bewail"]) + let v = native_list_append(v, ["slifan", "verb", "slīfe", "slāf", "", "", "to cut slip"]) + let v = native_list_append(v, ["tolet", "verb", "tōlēt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["scitan", "verb", "sċīte", "sċāt", "", "", "to defecate shit"]) + let v = native_list_append(v, ["fysian", "verb", "fȳsiġe", "fȳsode", "", "", "alternative form of"]) + let v = native_list_append(v, ["fesan", "verb", "fēse", "fēsde", "", "", "alternative form of"]) + let v = native_list_append(v, ["metgian", "verb", "metgiġe", "metgode", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceahhettan", "verb", "ċeahhette", "ċeahhette", "", "", "to laugh loudly"]) + let v = native_list_append(v, ["gewann", "verb", "ġewann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["milted", "verb", "milted", "", "", "", "past participle of"]) + let v = native_list_append(v, ["clyccan", "verb", "clyċċe", "clyhte", "", "", "to bend incurve"]) + let v = native_list_append(v, ["tumbian", "verb", "tumbiġe", "tumbode", "", "", "to tumble"]) + let v = native_list_append(v, ["cerran", "verb", "ċerru", "ċerde", "", "", "alternative form of"]) + let v = native_list_append(v, ["cyrran", "verb", "ċyrre", "cyrde", "", "", "alternative form of"]) + let v = native_list_append(v, ["asit", "verb", "āsit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["asitte", "verb", "āsitte", "", "", "", "inflection of āsittan"]) + let v = native_list_append(v, ["wiernan", "verb", "wierne", "wiernde", "", "", "to refuse deny"]) + let v = native_list_append(v, ["weornan", "verb", "weorne", "weornde", "", "", "alternative form of"]) + let v = native_list_append(v, ["wearnian", "verb", "wearniġe", "wearnode", "", "", "to be aware"]) + let v = native_list_append(v, ["byrnan", "verb", "byrne", "barn", "", "", "alternative form of"]) + let v = native_list_append(v, ["eht", "verb", "ēht", "", "", "", "inflection of ēhtan"]) + let v = native_list_append(v, ["scyle", "verb", "sċyle", "", "", "", "singular present subjunctive"]) + let v = native_list_append(v, ["scinen", "verb", "sċīnen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sciten", "verb", "sċīten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["smiten", "verb", "smīten", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["sniden", "verb", "sniden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["sigen", "verb", "sigen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["scrincan", "verb", "sċrince", "sċranc", "", "", "to shrink"]) + let v = native_list_append(v, ["yrn", "verb", "yrn", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["finst", "verb", "finst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gange", "verb", "gange", "", "", "", "inflection of gangan"]) + let v = native_list_append(v, ["staþolian", "verb", "staþoliġe", "staþolode", "", "", "to establish to"]) + let v = native_list_append(v, ["rinan", "verb", "rīne", "rīnde", "", "", "alternative form of"]) + let v = native_list_append(v, ["migan", "verb", "mīge", "māg", "", "", "to urinate piss"]) + let v = native_list_append(v, ["bebrecan", "verb", "bebrece", "bebræc", "", "", "to break off"]) + let v = native_list_append(v, ["fulgon", "verb", "fulgon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["befindan", "verb", "befinde", "befand", "", "", "to notice find"]) + let v = native_list_append(v, ["fleah", "verb", "flēah", "flēa", "flǣh", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["holian", "verb", "holiġe", "holode", "", "", "to hollow something"]) + let v = native_list_append(v, ["leten", "verb", "lēten", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["bið", "verb", "bið", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["blowen", "verb", "blōwen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["swinsian", "verb", "swinsiġe", "swinsode", "", "", "to sound melodiously"]) + let v = native_list_append(v, ["bygde", "verb", "bȳġde", "", "", "", "inflection of bȳġan"]) + let v = native_list_append(v, ["gedrogen", "verb", "ġedrogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gegiefen", "verb", "ġeġiefen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gecoren", "verb", "ġecoren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["onfindan", "verb", "onfinde", "onfand", "", "", "to find"]) + let v = native_list_append(v, ["tieme", "verb", "tīeme", "", "", "", "inflection of tīeman"]) + let v = native_list_append(v, ["efnan", "verb", "efne", "efnde", "", "", "to carry out"]) + let v = native_list_append(v, ["blican", "verb", "blīce", "blāc", "", "", "to shine glitter"]) + let v = native_list_append(v, ["bledan", "verb", "blēde", "blēdde", "", "", "to bleed"]) + let v = native_list_append(v, ["underlege", "verb", "underleġe", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["æwan", "verb", "ǣwe", "ǣwde", "", "", "to despise scorn"]) + let v = native_list_append(v, ["frios", "verb", "frīos", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["cancettan", "verb", "cancette", "cancette", "", "", "to cry out"]) + let v = native_list_append(v, ["acende", "verb", "ācende", "", "", "", "inflection of ācennan"]) + let v = native_list_append(v, ["bestele", "verb", "bestele", "", "", "", "inflection of bestelan"]) + let v = native_list_append(v, ["hringan", "verb", "hrinġe", "hringde", "", "", "to ring make"]) + let v = native_list_append(v, ["nabban", "verb", "næbbe", "næfde", "", "", "to not have"]) + let v = native_list_append(v, ["nagan", "verb", "nāh", "nāhte", "", "", "to not possess"]) + let v = native_list_append(v, ["beterian", "verb", "beteriġe", "beterode", "", "", "to improve to"]) + let v = native_list_append(v, ["biton", "verb", "biton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["ceapa", "verb", "ċēapa", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["gesit", "verb", "ġesit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gedritan", "verb", "ġedrīte", "ġedrāt", "", "", "to defecate"]) + let v = native_list_append(v, ["gedriten", "verb", "ġedriten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ceara", "verb", "ċeara", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["capian", "verb", "capiġe", "capode", "", "", "to look look"]) + let v = native_list_append(v, ["regnian", "verb", "reġniġe", "reġnode", "", "", "to prepare arrange"]) + let v = native_list_append(v, ["wincian", "verb", "winciġe", "wincode", "", "", "to close the"]) + let v = native_list_append(v, ["halian", "verb", "haliġe", "halode", "", "", "to fetch hale"]) + let v = native_list_append(v, ["clacian", "verb", "claciġe", "clacode", "", "", "to clack clap"]) + let v = native_list_append(v, ["hnitan", "verb", "hnīte", "hnāt", "", "", "to clash butt"]) + let v = native_list_append(v, ["dufe", "verb", "dūfe", "", "", "", "inflection of dūfan"]) + let v = native_list_append(v, ["sweorcan", "verb", "sweorce", "swearc", "", "", "to darken be"]) + let v = native_list_append(v, ["cerre", "verb", "ċerre", "", "", "", "inflection of ċerran"]) + let v = native_list_append(v, ["þrysmian", "verb", "þrysmiġe", "þrysmode", "", "", "alternative form of"]) + let v = native_list_append(v, ["þrysman", "verb", "þrysme", "þrysmde", "", "", "to choke"]) + let v = native_list_append(v, ["hworfen", "verb", "hworfen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["motian", "verb", "mōtiġe", "mōtode", "", "", "to address ones"]) + let v = native_list_append(v, ["weccan", "verb", "weċċe", "weahte", "", "", "to wake rouse"]) + let v = native_list_append(v, ["wæccan", "verb", "wæċċe", "wæhte", "", "", "to be or"]) + let v = native_list_append(v, ["fylgan", "verb", "fylġe", "fylġde", "", "", "synonym of folgian"]) + let v = native_list_append(v, ["andwyrdan", "verb", "andwyrde", "andwyrde", "", "", "to answer"]) + let v = native_list_append(v, ["andwirdan", "verb", "andwirde", "andwirde", "", "", "alternative form of"]) + let v = native_list_append(v, ["adustrian", "verb", "adūstriġe", "adūstrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["andustrigan", "verb", "andūstriġe", "andūstrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["amarian", "verb", "āmariġe", "āmarode", "", "", "to amaze"]) + let v = native_list_append(v, ["feolan", "verb", "fēole", "fealh", "", "", "to enter"]) + let v = native_list_append(v, ["wlitan", "verb", "wlīte", "wlāt", "", "", "to look"]) + let v = native_list_append(v, ["beall", "verb", "beall", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fneosan", "verb", "fnēose", "fnēas", "", "", "to sneeze"]) + let v = native_list_append(v, ["forhtian", "verb", "forhtiġe", "forhtode", "", "", "to be afraid"]) + let v = native_list_append(v, ["agnettan", "verb", "āgnette", "āgnette", "", "", "to appropriate usurp"]) + let v = native_list_append(v, ["adreogan", "verb", "ādrēoge", "ādrēag", "", "", "to act perform"]) + let v = native_list_append(v, ["glisnian", "verb", "glisniġe", "glisnode", "", "", "to glisten"]) + let v = native_list_append(v, ["seman", "verb", "sēme", "sēmde", "", "", "to bring to"]) + let v = native_list_append(v, ["drepen", "verb", "strong", "ang-adecl", "drepenne", "", "past participle of"]) + let v = native_list_append(v, ["wede", "verb", "wēde", "", "", "", "inflection of wēdan"]) + let v = native_list_append(v, ["reac", "verb", "rēac", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["hladen", "verb", "hladen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["mawe", "verb", "māwe", "", "", "", "inflection of māwan"]) + let v = native_list_append(v, ["arisan", "verb", "ārīse", "ārās", "", "", "to rise arise"]) + let v = native_list_append(v, ["hielded", "verb", "hielded", "", "", "", "past participle of"]) + let v = native_list_append(v, ["slungon", "verb", "slungon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["stæppan", "verb", "stæppe", "stōp", "", "", "to step"]) + let v = native_list_append(v, ["slapende", "verb", "slāpende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sittende", "verb", "strong", "ang-adecl", "sittendu", "", "present participle of"]) + let v = native_list_append(v, ["anginnan", "verb", "anġinne", "angann", "", "", "to begin undertake"]) + let v = native_list_append(v, ["refsan", "verb", "refse", "refsede", "", "", "to reprove rebuke"]) + let v = native_list_append(v, ["writon", "verb", "writon", "", "", "", "plural past indicative"]) + let v = native_list_append(v, ["writt", "verb", "wrītt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["undergan", "verb", "undergā", "underēode", "", "", "to ruin undermine"]) + let v = native_list_append(v, ["onlies", "verb", "onlīes", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["breotan", "verb", "brēote", "brēat", "", "", "to break bruise"]) + let v = native_list_append(v, ["smugan", "verb", "smūge", "smēag", "", "", "to creep crawl"]) + let v = native_list_append(v, ["ofrast", "verb", "ofrast", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["mencgan", "verb", "menċġe", "mengde", "", "", "alternative form of"]) + let v = native_list_append(v, ["behreosan", "verb", "behrēose", "behrēas", "", "", "to cover"]) + let v = native_list_append(v, ["nære", "verb", "nǣre", "", "", "", "inflection of nesan"]) + let v = native_list_append(v, ["hliehhan", "verb", "hliehhe", "hlōg", "", "", "to laugh +"]) + let v = native_list_append(v, ["streawian", "verb", "strēawiġe", "strēawode", "", "", "to strew"]) + let v = native_list_append(v, ["blacian", "verb", "blāciġe", "blācode", "", "", "to become pale"]) + let v = native_list_append(v, ["seted", "verb", "sett", "", "", "", "past participle of"]) + let v = native_list_append(v, ["alegd", "verb", "āleġd", "ālēd", "", "", "past participle of"]) + let v = native_list_append(v, ["forbindan", "verb", "forbinde", "forband", "", "", "to bind or"]) + let v = native_list_append(v, ["ontynan", "verb", "ontȳne", "ontȳnde", "", "", "to open to"]) + let v = native_list_append(v, ["behliden", "verb", "strong", "ang-adecl", "behlidenne", "", "past participle of"]) + let v = native_list_append(v, ["behlidan", "verb", "behlīde", "behlād", "", "", "to close to"]) + let v = native_list_append(v, ["bellan", "verb", "belle", "beall", "", "", "to roar bellow"]) + let v = native_list_append(v, ["beorcan", "verb", "beorce", "bearc", "", "", "to bark"]) + let v = native_list_append(v, ["breoþan", "verb", "brēoþe", "brēaþ", "", "", "to decay waste"]) + let v = native_list_append(v, ["ceorran", "verb", "ċeorre", "ċearr", "", "", "to creak"]) + let v = native_list_append(v, ["cwelan", "verb", "cwele", "cwæl", "", "", "to die"]) + let v = native_list_append(v, ["dreopan", "verb", "drēope", "drēap", "", "", "to drop drip"]) + let v = native_list_append(v, ["dufan", "verb", "dūfe", "dēaf", "", "", "to dive sink"]) + let v = native_list_append(v, ["deorfan", "verb", "deorfe", "dearf", "", "", "to labor"]) + let v = native_list_append(v, ["acwinan", "verb", "ācwīne", "ācwān", "", "", "to dwindle waste"]) + let v = native_list_append(v, ["acwincan", "verb", "ācwince", "ācwanc", "", "", "to become extinguished"]) + let v = native_list_append(v, ["acweorran", "verb", "ācweorre", "ācwearr", "", "", "to glut guzzle"]) + let v = native_list_append(v, ["sengan", "verb", "senġe", "sengde", "", "", "to singe scorch"]) + let v = native_list_append(v, ["gemanigfieldan", "verb", "ġemaniġfielde", "ġemaniġfielde", "", "", "to multiply enlarge"]) + let v = native_list_append(v, ["geþicfieldan", "verb", "ġeþicfielde", "ġeþicfielde", "", "", "to make dense"]) + let v = native_list_append(v, ["geþycfyldan", "verb", "ġeþycfylde", "ġeþycfylde", "", "", "alternative form of"]) + let v = native_list_append(v, ["gemanigfyldan", "verb", "gemanigfylde", "gemanigfylde", "", "", "alternative form of"]) + let v = native_list_append(v, ["gemanigfealdian", "verb", "ġemaniġfealdiġe", "ġemaniġfealdode", "", "", "to multiply"]) + let v = native_list_append(v, ["sæcgan", "verb", "sæċġan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiþsecgan", "verb", "wiþseċġe", "wiþsæġde", "", "", "to renounce to"]) + let v = native_list_append(v, ["wiðsæcgan", "verb", "wiðsæċġan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgenne", "verb", "seċġenne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["nistest", "verb", "nistest", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["wendest", "verb", "wendest", "", "", "", "second-person singular present/preterite"]) + let v = native_list_append(v, ["stiere", "verb", "stīere", "", "", "", "inflection of stīeran"]) + let v = native_list_append(v, ["stierest", "verb", "stīerest", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["befielst", "verb", "befielst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["birst", "verb", "birst", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["fliehst", "verb", "flīehst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["floh", "verb", "flōh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["innige", "verb", "inniġe", "", "", "", "inflection of innian"]) + let v = native_list_append(v, ["atent", "verb", "ātent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["begunnen", "verb", "begunnen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["guton", "verb", "guton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["begangen", "verb", "begangen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["bedroh", "verb", "bedrōh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["nahst", "verb", "nāhst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["nahte", "verb", "nāhte", "", "", "", "inflection of nāgan"]) + let v = native_list_append(v, ["nahtest", "verb", "nāhtest", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["sogen", "verb", "sogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mierde", "verb", "mierde", "", "", "", "inflection of mierran"]) + let v = native_list_append(v, ["undon", "verb", "undō", "undyde", "", "", "alternative form of"]) + let v = native_list_append(v, ["cegan", "verb", "ċēġu", "ċēġde", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunne", "verb", "cunne", "", "", "", "inflection of cunnan"]) + let v = native_list_append(v, ["deced", "verb", "dēċed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bloten", "verb", "blōten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["worpen", "verb", "worpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gulpen", "verb", "gulpen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["cidan", "verb", "ċīde", "ċīdde", "", "", "to chide rebuke"]) + let v = native_list_append(v, ["fluge", "verb", "fluge", "", "", "", "inflection of flēogan"]) + let v = native_list_append(v, ["henten", "verb", "henten", "", "", "", "plural present/preterite subjunctive"]) + let v = native_list_append(v, ["folen", "verb", "fōlen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["merren", "verb", "merren", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["ferde", "verb", "fērde", "", "", "", "inflection of fēran"]) + let v = native_list_append(v, ["myrred", "verb", "myrred", "", "", "", "past participle of"]) + let v = native_list_append(v, ["redon", "verb", "rēdon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["geunnan", "verb", "ġeann", "ġeūþe", "", "", "to allow grant"]) + let v = native_list_append(v, ["heton", "verb", "hēton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["semed", "verb", "sēmed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wiglian", "verb", "wiġliġe", "wiġlode", "", "", "to divine foretell"]) + let v = native_list_append(v, ["spillende", "verb", "spillende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["scoren", "verb", "sċoren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["strican", "verb", "strīce", "strāc", "", "", "to pass lightly"]) + let v = native_list_append(v, ["friest", "verb", "frīest", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["lete", "verb", "lēte", "", "", "", "inflection of lǣtan"]) + let v = native_list_append(v, ["wonn", "verb", "wonn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reotan", "verb", "rēote", "rēat", "", "", "to make a"]) + let v = native_list_append(v, ["aforen", "verb", "āfōren", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["farende", "verb", "farende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["nesen", "verb", "nesen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["septon", "verb", "sēpton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["wrecan", "verb", "wrece", "wræc", "", "", "to punish +"]) + let v = native_list_append(v, ["biergan", "verb", "bierġe", "bierġde", "", "", "to taste"]) + let v = native_list_append(v, ["fylle", "verb", "fylle", "", "", "", "inflection of fyllan"]) + let v = native_list_append(v, ["anwod", "verb", "anwōd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["silte", "verb", "silte", "", "", "", "inflection of siltan"]) + let v = native_list_append(v, ["drypte", "verb", "drypte", "", "", "", "inflection of drypan"]) + let v = native_list_append(v, ["bebaþian", "verb", "bebaþiġe", "bebaþode", "", "", "to bathe wash"]) + let v = native_list_append(v, ["sperrende", "verb", "sperrende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["mætan", "verb", "mǣtan", "weak", "ang-conj", "", "to dream +accusative"]) + let v = native_list_append(v, ["undergang", "verb", "undergang", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["undergangen", "verb", "undergangen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["tredenne", "verb", "tredenne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["sciere", "verb", "sċiere", "", "", "", "inflection of sċieran"]) + let v = native_list_append(v, ["sendende", "verb", "sendende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["styrende", "verb", "stȳrende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["settende", "verb", "settende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gorette", "verb", "gorette", "", "", "", "inflection of gorettan"]) + let v = native_list_append(v, ["tigde", "verb", "tīġde", "", "", "", "inflection of tīġan"]) + let v = native_list_append(v, ["gripende", "verb", "grīpende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["moste", "verb", "mōste", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sawen", "verb", "sāwen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spreng", "verb", "sprenġ", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["ofsete", "verb", "ofsete", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hyscan", "verb", "hysċe", "hysċte", "", "", "to mock deride"]) + let v = native_list_append(v, ["stigende", "verb", "stīgende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["hatende", "verb", "hātende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sielt", "verb", "sielt", "", "", "", "inflection of sieltan"]) + let v = native_list_append(v, ["abrastlian", "verb", "ābrastliġe", "ābrastlode", "", "", "to resound crash"]) + let v = native_list_append(v, ["brastlian", "verb", "brastliġe", "brastlode", "", "", "to brustle rustle"]) + let v = native_list_append(v, ["frede", "verb", "frēde", "", "", "", "inflection of frēdan"]) + let v = native_list_append(v, ["dwinen", "verb", "dwīnen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["wigen", "verb", "wīgen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["neom", "verb", "neom", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["gerann", "verb", "ġerann", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["linst", "verb", "linst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sprengende", "verb", "sprenġende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["menged", "verb", "menġed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["miscode", "verb", "miscode", "", "", "", "inflection of miscian"]) + let v = native_list_append(v, ["besang", "verb", "besang", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["bielded", "verb", "bielded", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ondest", "verb", "ondēst", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["tyned", "verb", "tȳned", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fnese", "verb", "fnese", "", "", "", "inflection of fnesan"]) + let v = native_list_append(v, ["bedelfan", "verb", "bedelfe", "bedealf", "", "", "to dig in"]) + let v = native_list_append(v, ["þoncian", "verb", "þonciġe", "þoncode", "", "", "alternative form of"]) + let v = native_list_append(v, ["hogde", "verb", "hogde", "", "", "", "indicative past singular"]) + let v = native_list_append(v, ["barod", "verb", "barod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lefe", "verb", "lēfe", "", "", "", "inflection of lēfan"]) + let v = native_list_append(v, ["hafo", "verb", "hafo", "", "", "", "inflection of habban"]) + let v = native_list_append(v, ["tober", "verb", "tōber", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["nyte", "verb", "nyte", "", "", "", "inflection of nytan"]) + let v = native_list_append(v, ["nytende", "verb", "nytende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["blissian", "verb", "blissiġe", "blissode", "", "", "to rejoice be"]) + let v = native_list_append(v, ["dyde", "verb", "dyde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["meltan", "verb", "melte", "mealt", "", "", "to melt"]) + let v = native_list_append(v, ["spætte", "verb", "spǣtte", "", "", "", "inflection of spǣtan"]) + let v = native_list_append(v, ["dred", "verb", "drēd", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["urnen", "verb", "urnen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gefe", "verb", "ġefe", "", "", "", "inflection of ġeofan"]) + let v = native_list_append(v, ["agrisan", "verb", "āgrīse", "āgrās", "", "", "to shudder to"]) + let v = native_list_append(v, ["harian", "verb", "hāriġe", "hārode", "", "", "to hoar have"]) + let v = native_list_append(v, ["acolad", "verb", "ācōlad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["arienne", "verb", "ārienne", "", "", "", "inflected infinitive of"]) + let v = native_list_append(v, ["hamettan", "verb", "hāmette", "hāmette", "", "", "to provide a"]) + let v = native_list_append(v, ["genap", "verb", "ġenāp", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["adilgian", "verb", "ādilgiġe", "ādilgode", "", "", "alternative form of"]) + let v = native_list_append(v, ["dilgian", "verb", "dilgiġe", "dilgode", "", "", "alternative form of"]) + let v = native_list_append(v, ["leosan", "verb", "lēose", "lēas", "", "", "to lose"]) + let v = native_list_append(v, ["gæstan", "verb", "gǣste", "gǣste", "", "", "to frighten gast"]) + let v = native_list_append(v, ["fremme", "verb", "fremme", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fremmende", "verb", "fremmende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gecocsian", "verb", "ġecōcsiġe", "ġecōcsode", "", "", "to cook"]) + let v = native_list_append(v, ["gecocnian", "verb", "ġecōcniġe", "ġecōcnode", "", "", "to season food"]) + let v = native_list_append(v, ["cocnian", "verb", "cōcniġe", "cōcnode", "", "", "to season food"]) + let v = native_list_append(v, ["þencean", "verb", "þenċe", "þōhte", "", "", "alternative form of"]) + let v = native_list_append(v, ["dynian", "verb", "dynie", "dynede", "", "", "alternative form of"]) + let v = native_list_append(v, ["lofian", "verb", "lofiġe", "lofode", "", "", "to praise exalt"]) + let v = native_list_append(v, ["forgyf", "verb", "forgyf", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fyhtan", "verb", "fȳhte", "fȳhte", "", "", "to moisten"]) + let v = native_list_append(v, ["scendan", "verb", "sċende", "sċende", "", "", "to put to"]) + let v = native_list_append(v, ["cnawelæcan", "verb", "cnāwelǣċe", "cnāwelǣhte", "", "", "to become known"]) + let v = native_list_append(v, ["slepende", "verb", "slēpende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["fægan", "verb", "fǣġe", "fǣġde", "", "", "to paint"]) + let v = native_list_append(v, ["belyrtan", "verb", "belyrte", "belyrte", "", "", "to deceive"]) + let v = native_list_append(v, ["sicerian", "verb", "siceriġe", "sicerode", "", "", "to ooze of"]) + let v = native_list_append(v, ["dofen", "verb", "dofen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["oþstandan", "verb", "oþstande", "oþstōd", "", "", "to stop in"]) + let v = native_list_append(v, ["hwopan", "verb", "hwōpe", "hwēop", "", "", "to threaten"]) + let v = native_list_append(v, ["sealten", "verb", "salten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flotian", "verb", "flotiġe", "flotode", "", "", "to float"]) + let v = native_list_append(v, ["grundon", "verb", "grundon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["belogen", "verb", "belogen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tyrie", "verb", "tyrie", "", "", "", "inflection of tyrian"]) + let v = native_list_append(v, ["fanda", "verb", "fanda", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["heofan", "verb", "hēofe", "hēofde", "", "", "to lament grieve"]) + let v = native_list_append(v, ["slitende", "verb", "slītende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pilian", "verb", "pīliġe", "pīlode", "", "", "to pound in"]) + let v = native_list_append(v, ["nitende", "verb", "nitende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sariende", "verb", "sāriende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["stridende", "verb", "strīdende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["terende", "verb", "terende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["erigende", "verb", "eriġende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frigende", "verb", "frīġende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["wiþerian", "verb", "wiþeriġe", "wiþerode", "", "", "to resist oppose"]) + let v = native_list_append(v, ["geciegan", "verb", "ġeċīeġe", "ġeċīeġde", "", "", "to call upon"]) + let v = native_list_append(v, ["amerre", "verb", "āmerre", "", "", "", "inflection of āmerran"]) + let v = native_list_append(v, ["mawen", "verb", "māwen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["færþ", "verb", "færþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["dihtian", "verb", "dihtiġe", "dihtode", "", "", "to set in"]) + let v = native_list_append(v, ["dihtnian", "verb", "dihtniġe", "dihtnode", "", "", "to order dispose"]) + let v = native_list_append(v, ["beþa", "verb", "beþa", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hwistlian", "verb", "hwistliġe", "hwistlode", "", "", "to whistle"]) + let v = native_list_append(v, ["þreotan", "verb", "þrēotan", "strong", "ang-conj", "", "to weary to"]) + let v = native_list_append(v, ["aþreotan", "verb", "āþrēotan", "strong", "ang-conj", "", "to be annoying"]) + let v = native_list_append(v, ["hawian", "verb", "hā̆wiġe", "hā̆wode", "", "", "to view to"]) + let v = native_list_append(v, ["tegan", "verb", "tēġu", "tēġde", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoppian", "verb", "hoppiġe", "hoppode", "", "", "to hop"]) + let v = native_list_append(v, ["brysan", "verb", "brȳse", "brȳsde", "", "", "to bruise crush"]) + let v = native_list_append(v, ["gearwian", "verb", "ġearwiġe", "ġearwode", "", "", "to prepare +dative"]) + let v = native_list_append(v, ["figen", "verb", "fīġen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["forborn", "verb", "forborn", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mengende", "verb", "menġende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["hatod", "verb", "hatod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["begreten", "verb", "begrēten", "", "", "", "plural present/preterite subjunctive"]) + let v = native_list_append(v, ["flowe", "verb", "flōwe", "", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["swind", "verb", "swind", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fulgen", "verb", "fulgen", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["cimban", "verb", "ċimbe", "camb", "", "", "to join"]) + let v = native_list_append(v, ["ripian", "verb", "ripiġe", "ripode", "", "", "to ripen"]) + let v = native_list_append(v, ["clingan", "verb", "clinge", "clang", "", "", "to wither pine"]) + let v = native_list_append(v, ["swellan", "verb", "swelle", "sweall", "", "", "to swell"]) + let v = native_list_append(v, ["murn", "verb", "murn", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ageng", "verb", "āġēng", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ducan", "verb", "dūce", "dēac", "", "", "to dive to"]) + let v = native_list_append(v, ["wierde", "verb", "wierde", "", "", "", "inflection of wierdan"]) + let v = native_list_append(v, ["gemeng", "verb", "ġemenġ", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fordruncnian", "verb", "fordruncniġe", "fordruncnode", "", "", "to make drunk"]) + let v = native_list_append(v, ["ætstandan", "verb", "ætstande", "ætstōd", "", "", "to stand stop"]) + let v = native_list_append(v, ["luton", "verb", "luton", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["cinan", "verb", "ċīne", "cān", "", "", "to burst split"]) + let v = native_list_append(v, ["etende", "verb", "etende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["hespan", "verb", "hespan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clæman", "verb", "clǣme", "clǣmde", "", "", "to smear"]) + let v = native_list_append(v, ["wæren", "verb", "wǣren", "", "", "", "preterite subjunctive plural"]) + let v = native_list_append(v, ["mæt", "verb", "mǣt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mætte", "verb", "mǣtte", "", "", "", "inflection of mǣtan"]) + let v = native_list_append(v, ["þeostrian", "verb", "þēostriġe", "þēostrode", "", "", "to darken to"]) + let v = native_list_append(v, ["scipian", "verb", "sċipiġe", "sċipode", "", "", "alternative form of"]) + let v = native_list_append(v, ["cwician", "verb", "cwiciġe", "cwicode", "", "", "to quicken"]) + let v = native_list_append(v, ["acwician", "verb", "ācwiciġe", "ācwicode", "", "", "to quicken"]) + let v = native_list_append(v, ["gecwician", "verb", "ġecwiciġe", "ġecwicode", "", "", "to quicken"]) + let v = native_list_append(v, ["ymbhweorfan", "verb", "ymbhweorfe", "ymbhwearf", "", "", "to turn around"]) + let v = native_list_append(v, ["behweorfan", "verb", "behweorfe", "behwearf", "", "", "to turn to"]) + let v = native_list_append(v, ["hwearfian", "verb", "hwearfiġe", "hwearfode", "", "", "to turn on"]) + let v = native_list_append(v, ["hwierfan", "verb", "hwierfe", "hwierfde", "", "", "to turn revolve"]) + let v = native_list_append(v, ["þafian", "verb", "þafiġe", "þafode", "", "", "to consent or"]) + let v = native_list_append(v, ["hryscan", "verb", "hrȳsċe", "hrȳsċte", "", "", "to make a"]) + let v = native_list_append(v, ["scrutnian", "verb", "sċrūtniġe", "sċrūtnode", "", "", "to examine carefully"]) + let v = native_list_append(v, ["þiedan", "verb", "þīede", "þīedde", "", "", "to join attach"]) + let v = native_list_append(v, ["geþiedan", "verb", "ġeþīede", "ġeþīedde", "", "", "to join unite"]) + let v = native_list_append(v, ["twiferlæcan", "verb", "twifērlǣċe", "twifērlǣhte", "", "", "to dissociate"]) + let v = native_list_append(v, ["aþiedan", "verb", "āþīede", "āþīedde", "", "", "to disjoin detach"]) + let v = native_list_append(v, ["oferteon", "verb", "ofertēo", "ofertēah", "", "", "to draw one"]) + let v = native_list_append(v, ["forþteon", "verb", "forþtēo", "forþtēah", "", "", "to lead forth"]) + let v = native_list_append(v, ["swindan", "verb", "swinde", "swand", "", "", "to waste away"]) + let v = native_list_append(v, ["trahtnian", "verb", "trahtniġe", "trahtnode", "", "", "synonym of trahtian"]) + let v = native_list_append(v, ["cnocian", "verb", "cnociġe", "cnocode", "", "", "to knock rap"]) + let v = native_list_append(v, ["roccian", "verb", "rocciġe", "roccode", "", "", "to rock"]) + let v = native_list_append(v, ["twiccian", "verb", "twicciġe", "twiccode", "", "", "to twitch"]) + let v = native_list_append(v, ["edstaþelian", "verb", "edstaþeliġe", "edstaþelode", "", "", "to establish again"]) + let v = native_list_append(v, ["gnagan", "verb", "gnage", "gnōg", "", "", "to gnaw"]) + let v = native_list_append(v, ["onlædan", "verb", "onlǣde", "onlǣdde", "", "", "to lead on"]) + let v = native_list_append(v, ["anlætan", "verb", "ānlǣte", "ānlēt", "", "", "to leave alone"]) + let v = native_list_append(v, ["lufa", "verb", "lufa", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["onælan", "verb", "onǣle", "onǣlde", "", "", "to set fire"]) + let v = native_list_append(v, ["onþracian", "verb", "onþraciġe", "onþracode", "", "", "to cause fear"]) + let v = native_list_append(v, ["timbred", "verb", "timbred", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bylde", "verb", "bylde", "", "", "", "inflection of byldan"]) + let v = native_list_append(v, ["feddest", "verb", "fēddest", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["grasian", "verb", "grasiġe", "grasode", "", "", "to graze"]) + let v = native_list_append(v, ["pusla", "verb", "pusla", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["hentan", "verb", "hente", "hente", "", "", "to pursue follow"]) + let v = native_list_append(v, ["belada", "verb", "belāda", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["besitte", "verb", "besitte", "", "", "", "inflection of besittan"]) + let v = native_list_append(v, ["rædde", "verb", "rǣdde", "", "", "", "inflection of rǣdan"]) + let v = native_list_append(v, ["besittende", "verb", "besittende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["drype", "verb", "drype", "", "", "", "inflection of drypan"]) + let v = native_list_append(v, ["onlys", "verb", "onlȳs", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["fiades", "verb", "fīades", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["synt", "verb", "synt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["temesian", "verb", "temesiġe", "temesode", "", "", "to sift"]) + let v = native_list_append(v, ["temsian", "verb", "temsiġe", "temsode", "", "", "alternative form of"]) + let v = native_list_append(v, ["stiellan", "verb", "stielle", "stielde", "", "", "to leap"]) + let v = native_list_append(v, ["leande", "verb", "lēande", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gehnycned", "verb", "ġehnycned", "", "", "", "drawn pinched wrinkled"]) + let v = native_list_append(v, ["plantian", "verb", "plantiġe", "plantode", "", "", "to plant"]) + let v = native_list_append(v, ["glengan", "verb", "glenġe", "glengde", "", "", "to adorn with"]) + let v = native_list_append(v, ["þefian", "verb", "þefiġe", "þefode", "", "", "to pant from"]) + let v = native_list_append(v, ["ofþefian", "verb", "ofþefiġe", "ofþefode", "", "", "to be exceedingly"]) + let v = native_list_append(v, ["gebyrian", "verb", "ġebyrie", "ġebyrede", "", "", "to happen"]) + let v = native_list_append(v, ["dwæscan", "verb", "dwǣsċe", "dwǣsċte", "", "", "to extinguish quench"]) + let v = native_list_append(v, ["stempan", "verb", "stempe", "stempte", "", "", "to stamp or"]) + let v = native_list_append(v, ["clæppan", "verb", "clæppe", "clæpede", "", "", "to throb"]) + let v = native_list_append(v, ["belæfan", "verb", "belǣfe", "belǣfde", "", "", "to be left"]) + let v = native_list_append(v, ["oferlæfan", "verb", "oferlǣfe", "oferlǣfde", "", "", "to leave over"]) + let v = native_list_append(v, ["stregdan", "verb", "streġde", "stræġd", "", "", "to strew spread"]) + let v = native_list_append(v, ["spended", "verb", "spended", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grippan", "verb", "grippe", "gripede", "", "", "to seize grip"]) + let v = native_list_append(v, ["snican", "verb", "snīce", "snāc", "", "", "to crawl"]) + let v = native_list_append(v, ["cyþan", "verb", "cȳþe", "cȳþde", "", "", "to make known"]) + let v = native_list_append(v, ["geþuxian", "verb", "ġeþuxiġe", "ġeþuxode", "", "", "to grow dark"]) + let v = native_list_append(v, ["becnyttan", "verb", "becnytte", "becnytte", "", "", "to knot"]) + let v = native_list_append(v, ["cnyttan", "verb", "cnytte", "cnytte", "", "", "to tie bind"]) + let v = native_list_append(v, ["hyrte", "verb", "hyrte", "", "", "", "inflection of hyrtan"]) + let v = native_list_append(v, ["hæbbe", "verb", "hæbbæ", "hafo", "hafu", "", "inflection of habban"]) + let v = native_list_append(v, ["hæfst", "verb", "hæfes", "hæfest", "hafast", "", "second-person singular present"]) + let v = native_list_append(v, ["hafast", "verb", "hafast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæfþ", "verb", "hæfþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hafaþ", "verb", "hafaþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hæfð", "verb", "hæfð", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hæfdest", "verb", "hæfdest", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["habbaþ", "verb", "habbað", "", "", "", "inflection of habban"]) + let v = native_list_append(v, ["hæbben", "verb", "hæbben", "", "", "", "subjunctive present plural"]) + let v = native_list_append(v, ["hæfden", "verb", "hæfden", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["gehæfd", "verb", "ġehæfd", "strong", "ang-adecl", "", "past participle of"]) + let v = native_list_append(v, ["hæfd", "verb", "strong", "ang-adecl", "hæfdne", "", "past participle of"]) + let v = native_list_append(v, ["pæcan", "verb", "pǣċe", "pǣhte", "", "", "to deceive"]) + let v = native_list_append(v, ["girdan", "verb", "girde", "girde", "", "", "alternative form of"]) + let v = native_list_append(v, ["beniman", "verb", "benime", "benam", "", "", "to deprive"]) + let v = native_list_append(v, ["darian", "verb", "darian", "", "", "", "to lurk"]) + let v = native_list_append(v, ["andian", "verb", "andiġe", "andode", "", "", "to envy"]) + let v = native_list_append(v, ["befangen", "verb", "befangen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["halgian", "verb", "hālgiġe", "hālgode", "", "", "to make holy"]) + let v = native_list_append(v, ["hlosnian", "verb", "hlosniġe", "hlosnode", "", "", "to listen be"]) + let v = native_list_append(v, ["afaren", "verb", "āfaren", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["sprengde", "verb", "sprengde", "", "", "", "inflection of sprenġan"]) + let v = native_list_append(v, ["gestille", "verb", "ġestille", "", "", "", "inflection of ġestillan"]) + let v = native_list_append(v, ["giwian", "verb", "ġiwiu", "ġiwade", "", "", "to ask for"]) + let v = native_list_append(v, ["forþgestigan", "verb", "forþġestīge", "forþġestāg", "", "", "to go forward"]) + let v = native_list_append(v, ["groten", "verb", "groten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["asawan", "verb", "āsāwe", "āsēow", "", "", "to sow"]) + let v = native_list_append(v, ["smat", "verb", "smāt", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["begeten", "verb", "beġeten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gemanian", "verb", "ġemaniġe", "ġemanode", "", "", "to admonish exhort"]) + let v = native_list_append(v, ["swinden", "verb", "swinden", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["ademan", "verb", "ādēme", "ādēmde", "", "", "to judge adjudge"]) + let v = native_list_append(v, ["hiert", "verb", "hiert", "", "", "", "inflection of hiertan"]) + let v = native_list_append(v, ["lærde", "verb", "lǣrde", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["draf", "verb", "drāf", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sege", "verb", "sēge", "", "", "", "inflection of sēon"]) + let v = native_list_append(v, ["somnian", "verb", "somniġe", "somnode", "", "", "alternative form of"]) + let v = native_list_append(v, ["gesomnian", "verb", "ġesomniġe", "ġesomnode", "", "", "alternative form of"]) + let v = native_list_append(v, ["samnian", "verb", "samniġe", "samnode", "", "", "to collect bring"]) + let v = native_list_append(v, ["gesamnian", "verb", "ġesamniġe", "ġesamnode", "", "", "to collect bring"]) + let v = native_list_append(v, ["cumen", "verb", "cumen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["nipen", "verb", "nīpen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["mundian", "verb", "mundiġe", "mundode", "", "", "to protect shelter"]) + let v = native_list_append(v, ["cigan", "verb", "ċīġe", "ċīġde", "", "", "alternative form of"]) + let v = native_list_append(v, ["steme", "verb", "stēme", "", "", "", "inflection of stēman"]) + let v = native_list_append(v, ["nemde", "verb", "nemde", "", "", "", "inflection of nemnan"]) + let v = native_list_append(v, ["burgon", "verb", "burgon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["fredan", "verb", "frēde", "frēdde", "", "", "to feel"]) + let v = native_list_append(v, ["gefredan", "verb", "ġefrēde", "ġefrēdde", "", "", "to feel"]) + let v = native_list_append(v, ["gebindan", "verb", "ġebinde", "ġeband", "", "", "to bind tie"]) + let v = native_list_append(v, ["gefangian", "verb", "ġefangiġe", "ġefangode", "", "", "to fasten together"]) + let v = native_list_append(v, ["gerinnan", "verb", "ġerinne", "ġerann", "", "", "to blend run"]) + let v = native_list_append(v, ["gehabban", "verb", "ġehæbbe", "ġehæfde", "", "", "to hold onto"]) + let v = native_list_append(v, ["gebringan", "verb", "ġebringe", "ġebrōhte", "", "", "to bring"]) + let v = native_list_append(v, ["gelædan", "verb", "ġelǣde", "ġelǣdde", "", "", "to lead"]) + let v = native_list_append(v, ["gewinnan", "verb", "ġewinne", "ġewann", "", "", "to conquer obtain"]) + let v = native_list_append(v, ["gecuman", "verb", "ġecume", "ġecōm", "", "", "to move toward"]) + let v = native_list_append(v, ["geniman", "verb", "ġenime", "ġenam", "", "", "to grasp comprehend"]) + let v = native_list_append(v, ["gerædan", "verb", "ġerǣde", "ġerēd", "", "", "to advise to"]) + let v = native_list_append(v, ["geberan", "verb", "ġebere", "ġebær", "", "", "to bear give"]) + let v = native_list_append(v, ["geblandan", "verb", "ġeblande", "ġeblēnd", "", "", "to blend mix"]) + let v = native_list_append(v, ["gebrecan", "verb", "ġebrece", "ġebræc", "", "", "to destroy break"]) + let v = native_list_append(v, ["swebban", "verb", "swebbe", "swefede", "", "", "to send to"]) + let v = native_list_append(v, ["geblissian", "verb", "ġeblissiġe", "ġeblissode", "", "", "to make happy"]) + let v = native_list_append(v, ["gehealdan", "verb", "ġehealde", "ġehēold", "", "", "to keep retain"]) + let v = native_list_append(v, ["gewyrtian", "verb", "ġewyrtiġe", "ġewyrtode", "", "", "to season with"]) + let v = native_list_append(v, ["wyrtian", "verb", "wyrtiġe", "wyrtode", "", "", "to season spice"]) + let v = native_list_append(v, ["gefyllan", "verb", "ġefylle", "ġefylde", "", "", "to complete finish"]) + let v = native_list_append(v, ["gefindan", "verb", "ġefinde", "ġefand", "", "", "to find to"]) + let v = native_list_append(v, ["gefeallan", "verb", "ġefealle", "ġefēoll", "", "", "to fall stumble"]) + let v = native_list_append(v, ["gemacian", "verb", "ġemaciġe", "ġemacode", "", "", "to make beget"]) + let v = native_list_append(v, ["gefon", "verb", "ġefō", "ġefēng", "", "", "to catch seize"]) + let v = native_list_append(v, ["gestandan", "verb", "ġestande", "ġestōd", "", "", "to remain last"]) + let v = native_list_append(v, ["gefæstnian", "verb", "ġefæstniġe", "ġefæstnode", "", "", "to fix confirm"]) + let v = native_list_append(v, ["gescufan", "verb", "ġesċūfe", "ġesċēaf", "", "", "to expel eject"]) + let v = native_list_append(v, ["gesettan", "verb", "ġesette", "ġesette", "", "", "to confirm restore"]) + let v = native_list_append(v, ["gefelan", "verb", "ġefēle", "ġefēlde", "", "", "to feel"]) + let v = native_list_append(v, ["gewegan", "verb", "ġewege", "ġewæġ", "", "", "to bear carry"]) + let v = native_list_append(v, ["gesceadan", "verb", "ġesċēade", "ġesċēd", "", "", "to distinguish discern"]) + let v = native_list_append(v, ["geswerian", "verb", "ġeswerie", "ġeswōr", "", "", "to swear an"]) + let v = native_list_append(v, ["gebeodan", "verb", "ġebēode", "ġebēad", "", "", "to command order"]) + let v = native_list_append(v, ["gesceawian", "verb", "ġesċēawiġe", "ġesċēawode", "", "", "to exhibit manifest"]) + let v = native_list_append(v, ["geþryccan", "verb", "ġeþryċċe", "ġeþryhte", "", "", "to compress repress"]) + let v = native_list_append(v, ["gestillan", "verb", "ġestille", "ġestilde", "", "", "to rest cease"]) + let v = native_list_append(v, ["gebrucan", "verb", "ġebrūce", "ġebrēac", "", "", "to enjoy eat"]) + let v = native_list_append(v, ["gewanian", "verb", "ġewaniġe", "ġewanode", "", "", "to shrink or"]) + let v = native_list_append(v, ["geþencan", "verb", "ġeþenċe", "ġeþōhte", "", "", "to remember bethink"]) + let v = native_list_append(v, ["gewendan", "verb", "ġewende", "ġewende", "", "", "to change turn"]) + let v = native_list_append(v, ["gerihtan", "verb", "ġerihte", "ġerihte", "", "", "to correct reform"]) + let v = native_list_append(v, ["gehweorfan", "verb", "ġehweorfe", "ġehwearf", "", "", "to turn go"]) + let v = native_list_append(v, ["geþringan", "verb", "ġeþringe", "ġeþrang", "", "", "to press thring"]) + let v = native_list_append(v, ["gesundrian", "verb", "ġesundriġe", "ġesundrode", "", "", "to sunder separate"]) + let v = native_list_append(v, ["gescieppan", "verb", "ġesċieppe", "ġesċōp", "", "", "to create"]) + let v = native_list_append(v, ["gehebban", "verb", "ġehebbe", "ġehōf", "", "", "to heave or"]) + let v = native_list_append(v, ["geswincan", "verb", "ġeswince", "ġeswanc", "", "", "to work hard"]) + let v = native_list_append(v, ["gemengan", "verb", "ġemenġe", "ġemengde", "", "", "to mingle confuse"]) + let v = native_list_append(v, ["gemædan", "verb", "ġemǣde", "ġemǣdde", "", "", "to madden make"]) + let v = native_list_append(v, ["gegangan", "verb", "ġegange", "ġeġēng", "", "", "to go happen"]) + let v = native_list_append(v, ["steoran", "verb", "stēore", "stēorde", "", "", "alternative form of"]) + let v = native_list_append(v, ["styran", "verb", "stȳre", "stȳrde", "", "", "alternative form of"]) + let v = native_list_append(v, ["geagnian", "verb", "ġeāgniġe", "ġeāgnode", "", "", "to own possess"]) + let v = native_list_append(v, ["gesacan", "verb", "ġesace", "ġesōc", "", "", "to strive against"]) + let v = native_list_append(v, ["gemyntan", "verb", "ġemynte", "ġemynte", "", "", "to determine resolve"]) + let v = native_list_append(v, ["gehrinan", "verb", "ġehrīne", "ġehrān", "", "", "to touch affect"]) + let v = native_list_append(v, ["gebodian", "verb", "ġebodiġe", "ġebodode", "", "", "to announce proclaim"]) + let v = native_list_append(v, ["tosend", "verb", "tōsend", "", "", "", "singular imperative of"]) + let v = native_list_append(v, ["toset", "verb", "tōset", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gebeterian", "verb", "ġebeteriġe", "ġebeterode", "", "", "to better make"]) + let v = native_list_append(v, ["gefaran", "verb", "ġefare", "ġefōr", "", "", "to reach by"]) + let v = native_list_append(v, ["genesan", "verb", "ġenese", "ġenæs", "", "", "to preserve save"]) + let v = native_list_append(v, ["gehælan", "verb", "ġehǣle", "ġehǣlde", "", "", "to heal"]) + let v = native_list_append(v, ["geþolian", "verb", "ġeþoliġe", "ġeþolode", "", "", "to be subjected"]) + let v = native_list_append(v, ["aberan", "verb", "ābere", "ābær", "", "", "to bear carry"]) + let v = native_list_append(v, ["getellan", "verb", "ġetelle", "ġetealde", "", "", "to tell number"]) + let v = native_list_append(v, ["gesittan", "verb", "ġesitte", "ġesæt", "", "", "to sit"]) + let v = native_list_append(v, ["geþingan", "verb", "ġeþinge", "ġeþingde", "", "", "to determine fix"]) + let v = native_list_append(v, ["þingan", "verb", "þinge", "þingde", "", "", "to invite address"]) + let v = native_list_append(v, ["untynan", "verb", "untȳne", "untȳnde", "", "", "alternative form of"]) + let v = native_list_append(v, ["fician", "verb", "ficiġe", "ficode", "", "", "to deceive bewile"]) + let v = native_list_append(v, ["forteon", "verb", "fortēo", "fortēah", "", "", "to draw away"]) + let v = native_list_append(v, ["forlædan", "verb", "forlǣde", "forlǣdde", "", "", "to seduce mislead"]) + let v = native_list_append(v, ["forscrincan", "verb", "forsċrince", "forsċranc", "", "", "to shrink up"]) + let v = native_list_append(v, ["forberan", "verb", "forbere", "forbær", "", "", "to abstain refrain"]) + let v = native_list_append(v, ["forstelan", "verb", "forstele", "forstæl", "", "", "to steal"]) + let v = native_list_append(v, ["forbrecan", "verb", "forbrece", "forbræc", "", "", "to break up"]) + let v = native_list_append(v, ["forwyrcan", "verb", "forwyrċe", "forworhte", "", "", "to do wrong"]) + let v = native_list_append(v, ["belædan", "verb", "belǣde", "belǣdde", "", "", "to lead into"]) + let v = native_list_append(v, ["gedon", "verb", "ġedō", "ġedyde", "", "", "to do make"]) + let v = native_list_append(v, ["gelæfan", "verb", "ġelǣfe", "ġelǣfde", "", "", "to leave"]) + let v = native_list_append(v, ["forsecgan", "verb", "forseċġe", "forsæġde", "", "", "to say wrongly"]) + let v = native_list_append(v, ["wiþsprecan", "verb", "wiþsprece", "wiþspræc", "", "", "to speak against"]) + let v = native_list_append(v, ["forgan", "verb", "forgā", "forēode", "", "", "to abstain from"]) + let v = native_list_append(v, ["foregan", "verb", "foregā", "foreēode", "", "", "to precede stand"]) + let v = native_list_append(v, ["wiþgan", "verb", "wiþgā", "wiþēode", "", "", "to go against"]) + let v = native_list_append(v, ["forswerian", "verb", "forswerie", "forswōr", "", "", "to commit perjury"]) + let v = native_list_append(v, ["ymbgan", "verb", "ymbgā", "ymbēode", "", "", "to go around"]) + let v = native_list_append(v, ["ymbhealdan", "verb", "ymbhealde", "ymbhēold", "", "", "to encompass hold"]) + let v = native_list_append(v, ["ymbfaran", "verb", "ymbfare", "ymbfōr", "", "", "to surround"]) + let v = native_list_append(v, ["wiþstandan", "verb", "wiþstande", "wiþstōd", "", "", "to stand against"]) + let v = native_list_append(v, ["ymbbindan", "verb", "ymbbinde", "ymbband", "", "", "to bind about"]) + let v = native_list_append(v, ["ymbfon", "verb", "ymbfō", "ymbfēng", "", "", "to grasp clasp"]) + let v = native_list_append(v, ["ymbhringan", "verb", "ymbhrinġe", "ymbhringde", "", "", "to surround encompass"]) + let v = native_list_append(v, ["ymbþencan", "verb", "ymbþenċe", "ymbþōhte", "", "", "to consider bethink"]) + let v = native_list_append(v, ["beornan", "verb", "beorne", "bearn", "", "", "alternative form of"]) + let v = native_list_append(v, ["forbiernan", "verb", "forbierne", "forbarn", "", "", "alternative form of"]) + let v = native_list_append(v, ["forsacan", "verb", "forsace", "forsōc", "", "", "to oppose give"]) + let v = native_list_append(v, ["forhealdan", "verb", "forhealde", "forhēold", "", "", "to keep or"]) + let v = native_list_append(v, ["forberstan", "verb", "forberste", "forbærst", "", "", "to burst asunder"]) + let v = native_list_append(v, ["fordrifan", "verb", "fordrīfe", "fordrāf", "", "", "to drive away"]) + let v = native_list_append(v, ["forfaran", "verb", "forfare", "forfōr", "", "", "to go or"]) + let v = native_list_append(v, ["formeltan", "verb", "formelte", "formealt", "", "", "to melt completely"]) + let v = native_list_append(v, ["forseoþan", "verb", "forsēoþe", "forsēaþ", "", "", "to boil away"]) + let v = native_list_append(v, ["forbeodan", "verb", "forbēode", "forbēad", "", "", "to forbid prohibit"]) + let v = native_list_append(v, ["foreberan", "verb", "forebere", "forebær", "", "", "to bear before"]) + let v = native_list_append(v, ["forblawan", "verb", "forblāwe", "forblēow", "", "", "to blow away"]) + let v = native_list_append(v, ["gegaderian", "verb", "ġegaderiġe", "ġegaderode", "", "", "to gather set"]) + let v = native_list_append(v, ["ofersendan", "verb", "ofersende", "ofersende", "", "", "to transmit send"]) + let v = native_list_append(v, ["bewendan", "verb", "bewende", "bewende", "", "", "to turn around"]) + let v = native_list_append(v, ["oferlibban", "verb", "oferlibbe", "oferlifde", "", "", "to outlive survive"]) + let v = native_list_append(v, ["ymblicgan", "verb", "ymbliċġe", "ymblæġ", "", "", "to lie round"]) + let v = native_list_append(v, ["freolsian", "verb", "frēolsiġe", "frēolsode", "", "", "to observe or"]) + let v = native_list_append(v, ["besettan", "verb", "besette", "besette", "", "", "to set near"]) + let v = native_list_append(v, ["besittan", "verb", "besitte", "besæt", "", "", "to sit near"]) + let v = native_list_append(v, ["ofersettan", "verb", "ofersette", "ofersette", "", "", "to set over"]) + let v = native_list_append(v, ["forlicgan", "verb", "forliċġe", "forlæġ", "", "", "to lie wrongly"]) + let v = native_list_append(v, ["fordælan", "verb", "fordǣle", "fordǣlde", "", "", "to deal out"]) + let v = native_list_append(v, ["bereafian", "verb", "berēafiġe", "berēafode", "", "", "to deprive +"]) + let v = native_list_append(v, ["misdon", "verb", "misdō", "misdyde", "", "", "to offend transgress"]) + let v = native_list_append(v, ["belecgan", "verb", "beleċġe", "beleġde", "", "", "to lay upon"]) + let v = native_list_append(v, ["gelecgan", "verb", "ġeleċġe", "ġeleġde", "", "", "to lay set"]) + let v = native_list_append(v, ["bestandan", "verb", "bestande", "bestōd", "", "", "to stand by"]) + let v = native_list_append(v, ["bestelan", "verb", "bestele", "bestæl", "", "", "to steal away"]) + let v = native_list_append(v, ["forstandan", "verb", "forstande", "forstōd", "", "", "to stand for"]) + let v = native_list_append(v, ["foresettan", "verb", "foresette", "foresette", "", "", "to set or"]) + let v = native_list_append(v, ["forebisgian", "verb", "forebisġiġe", "forebisġode", "", "", "to preoccupy forebusy"]) + let v = native_list_append(v, ["foredeman", "verb", "foredēme", "foredēmde", "", "", "to prejudge assume"]) + let v = native_list_append(v, ["ancuman", "verb", "ancume", "ancōm", "", "", "to come arrive"]) + let v = native_list_append(v, ["beclysan", "verb", "beclȳse", "beclȳsde", "", "", "to close shut"]) + let v = native_list_append(v, ["smæccan", "verb", "smæċċe", "smæhte", "", "", "to taste"]) + let v = native_list_append(v, ["bedrifan", "verb", "bedrīfe", "bedrāf", "", "", "to drive or"]) + let v = native_list_append(v, ["foresecgan", "verb", "foreseċġe", "foresæġde", "", "", "to say beforehand"]) + let v = native_list_append(v, ["befeallan", "verb", "befealle", "befēoll", "", "", "to fall fall"]) + let v = native_list_append(v, ["underwritan", "verb", "underwrīte", "underwrāt", "", "", "to write under"]) + let v = native_list_append(v, ["beseon", "verb", "besēo", "beseah", "", "", "to see or"]) + let v = native_list_append(v, ["undersecan", "verb", "undersēċe", "undersōhte", "", "", "to investigate"]) + let v = native_list_append(v, ["foreseon", "verb", "foresēo", "foreseah", "", "", "to see beforehand"]) + let v = native_list_append(v, ["geweaxan", "verb", "ġeweaxe", "ġewōx", "", "", "to grow wax"]) + let v = native_list_append(v, ["forweaxan", "verb", "forweaxe", "forwōx", "", "", "to overgrow swell"]) + let v = native_list_append(v, ["forsendan", "verb", "forsende", "forsende", "", "", "to send away"]) + let v = native_list_append(v, ["gesendan", "verb", "ġesende", "ġesende", "", "", "to send dispatch"]) + let v = native_list_append(v, ["besendan", "verb", "besende", "besende", "", "", "to send"]) + let v = native_list_append(v, ["foresendan", "verb", "foresende", "foresende", "", "", "to send before"]) + let v = native_list_append(v, ["insendan", "verb", "insende", "insende", "", "", "to send in"]) + let v = native_list_append(v, ["forþsprecan", "verb", "forþsprece", "forþspræc", "", "", "to speak forth"]) + let v = native_list_append(v, ["forsprecan", "verb", "forsprece", "forspræc", "", "", "to speak against"]) + let v = native_list_append(v, ["geceosan", "verb", "ġeċēose", "ġeċēas", "", "", "to choose select"]) + let v = native_list_append(v, ["gecidan", "verb", "ġeċīde", "ġeċīdde", "", "", "to chide reprove"]) + let v = native_list_append(v, ["geetan", "verb", "ġeete", "ġeǣt", "", "", "to eat together"]) + let v = native_list_append(v, ["gefealdan", "verb", "ġefealde", "ġefēold", "", "", "to fold up"]) + let v = native_list_append(v, ["forlæran", "verb", "forlǣre", "forlǣrde", "", "", "to misteach teach"]) + let v = native_list_append(v, ["gewritan", "verb", "ġewrīte", "ġewrāt", "", "", "to write give"]) + let v = native_list_append(v, ["bewritan", "verb", "bewrīte", "bewrāt", "", "", "to write down"]) + let v = native_list_append(v, ["oferhealdan", "verb", "oferhealde", "oferhēold", "", "", "to hold over"]) + let v = native_list_append(v, ["anhealdan", "verb", "anhealde", "anhēold", "", "", "to hold keep"]) + let v = native_list_append(v, ["befreogan", "verb", "befrēo", "befrēode", "", "", "to free make"]) + let v = native_list_append(v, ["besprecan", "verb", "besprece", "bespræc", "", "", "to speak about"]) + let v = native_list_append(v, ["besecgan", "verb", "beseċġe", "besæġde", "", "", "to announce"]) + let v = native_list_append(v, ["beþencan", "verb", "beþenċe", "beþōhte", "", "", "to think about"]) + let v = native_list_append(v, ["foreþencan", "verb", "foreþenċe", "foreþōhte", "", "", "to think beforehand"]) + let v = native_list_append(v, ["gelibban", "verb", "ġelibbe", "ġelifde", "", "", "to live be"]) + let v = native_list_append(v, ["beteon", "verb", "betēo", "betēah", "", "", "to draw over"]) + let v = native_list_append(v, ["forsecan", "verb", "forsēċe", "forsōhte", "", "", "to punish afflict"]) + let v = native_list_append(v, ["ofergan", "verb", "ofergā", "oferēode", "", "", "to overspread overrun"]) + let v = native_list_append(v, ["oferfeallan", "verb", "oferfealle", "oferfēoll", "", "", "to fall upon"]) + let v = native_list_append(v, ["bewyrcan", "verb", "bewyrċe", "beworhte", "", "", "to work inset"]) + let v = native_list_append(v, ["mislædan", "verb", "mislǣde", "mislǣdde", "", "", "to mislead lead"]) + let v = native_list_append(v, ["oferlædan", "verb", "oferlǣde", "oferlǣdde", "", "", "to oppress"]) + let v = native_list_append(v, ["ofersprædan", "verb", "ofersprǣde", "ofersprǣdde", "", "", "to overspread cover"]) + let v = native_list_append(v, ["sprædan", "verb", "sprǣde", "sprǣdde", "", "", "to spread expand"]) + let v = native_list_append(v, ["wiþsettan", "verb", "wiþsette", "wiþsette", "", "", "to set against"]) + let v = native_list_append(v, ["ymbsettan", "verb", "ymbsette", "ymbsette", "", "", "to set or"]) + let v = native_list_append(v, ["forseon", "verb", "forsēo", "forseah", "", "", "to despise"]) + let v = native_list_append(v, ["forweorpan", "verb", "forweorpe", "forwearp", "", "", "to cast away"]) + let v = native_list_append(v, ["forniman", "verb", "fornime", "fornam", "", "", "to take away"]) + let v = native_list_append(v, ["forscieppan", "verb", "forsċieppe", "forsċōp", "", "", "to transform shape"]) + let v = native_list_append(v, ["fordrugian", "verb", "fordrūgiġe", "fordrūgode", "", "", "to dry up"]) + let v = native_list_append(v, ["bedrincan", "verb", "bedrince", "bedranc", "", "", "to drink in"]) + let v = native_list_append(v, ["forswelgan", "verb", "forswelge", "forswealg", "", "", "to swallow up"]) + let v = native_list_append(v, ["forewarnian", "verb", "forewarniġe", "forewarnode", "", "", "to forewarn warn"]) + let v = native_list_append(v, ["begrafan", "verb", "begrafe", "begrōf", "", "", "to bury"]) + let v = native_list_append(v, ["forhelan", "verb", "forhele", "forhæl", "", "", "to hide away"]) + let v = native_list_append(v, ["befeolan", "verb", "befēole", "befealh", "", "", "to commit commend"]) + let v = native_list_append(v, ["bescinan", "verb", "besċīne", "besċān", "", "", "to shine upon"]) + let v = native_list_append(v, ["betellan", "verb", "betelle", "betealde", "", "", "to speak or"]) + let v = native_list_append(v, ["becnawan", "verb", "becnāwe", "becnēow", "", "", "to know"]) + let v = native_list_append(v, ["besingan", "verb", "besinge", "besang", "", "", "to sing about"]) + let v = native_list_append(v, ["behlæstan", "verb", "behlæste", "behlæste", "", "", "to load a"]) + let v = native_list_append(v, ["besorgian", "verb", "besorgiġe", "besorgode", "", "", "to be sorry"]) + let v = native_list_append(v, ["forscyttan", "verb", "forsċytte", "forsċytte", "", "", "to shut off"]) + let v = native_list_append(v, ["forwundian", "verb", "forwundiġe", "forwundode", "", "", "to wound badly"]) + let v = native_list_append(v, ["gewundian", "verb", "ġewundiġe", "ġewundode", "", "", "to wound"]) + let v = native_list_append(v, ["behofian", "verb", "behōfiġe", "behōfode", "", "", "to have need"]) + let v = native_list_append(v, ["begripan", "verb", "begrīpe", "begrāp", "", "", "to chide chasten"]) + let v = native_list_append(v, ["gegripan", "verb", "ġegrīpe", "ġegrāp", "", "", "to gripe grab"]) + let v = native_list_append(v, ["forscrihan", "verb", "forsċrīhe", "forsċrāh", "", "", "to resign give"]) + let v = native_list_append(v, ["greosan", "verb", "grēose", "grēas", "", "", "to frighten scare"]) + let v = native_list_append(v, ["begreosan", "verb", "begrēose", "begrēas", "", "", "to overwhelm with"]) + let v = native_list_append(v, ["þeotan", "verb", "þēote", "þēat", "", "", "to howl like"]) + let v = native_list_append(v, ["aþeotan", "verb", "āþēote", "āþēat", "", "", "to wind sound"]) + let v = native_list_append(v, ["cnyllan", "verb", "cnylle", "cnylde", "", "", "to strike knock"]) + let v = native_list_append(v, ["scrihan", "verb", "sċrīhe", "sċrāh", "", "", "alternative form of"]) + let v = native_list_append(v, ["rahte", "verb", "rāhte", "", "", "", "inflection of rǣċan"]) + let v = native_list_append(v, ["stunian", "verb", "stuniġe", "stunode", "", "", "to make a"]) + let v = native_list_append(v, ["bescitan", "verb", "bescīte", "bescāt", "", "", "to smear or"]) + let v = native_list_append(v, ["ahycgan", "verb", "āhyċġe", "āhogde", "", "", "to devise invent"]) + let v = native_list_append(v, ["behycgan", "verb", "behyċġe", "behogde", "", "", "to think something"]) + let v = native_list_append(v, ["forhycgan", "verb", "forhyċġe", "forhogde", "", "", "to despise scorn"]) + let v = native_list_append(v, ["gehycgan", "verb", "ġehyċġe", "ġehogde", "", "", "to think of"]) + let v = native_list_append(v, ["oferhycgan", "verb", "oferhyċġe", "oferhogde", "", "", "to despise scorn"]) + let v = native_list_append(v, ["onhycgan", "verb", "onhyċġe", "onhogde", "", "", "to consider"]) + let v = native_list_append(v, ["twihycgan", "verb", "twihyċġe", "twihogde", "", "", "to think differently"]) + let v = native_list_append(v, ["wiþhycgan", "verb", "wiþhyċġe", "wiþhogde", "", "", "to have contrary"]) + let v = native_list_append(v, ["forspendan", "verb", "forspende", "forspende", "", "", "to spend utterly"]) + let v = native_list_append(v, ["spendan", "verb", "spende", "spende", "", "", "to spend"]) + let v = native_list_append(v, ["bewindan", "verb", "bewinde", "bewand", "", "", "to wind around"]) + let v = native_list_append(v, ["unwindan", "verb", "unwinde", "unwand", "", "", "to unwind unwrap"]) + let v = native_list_append(v, ["ymbhycgan", "verb", "ymbhyċġe", "ymbhogde", "", "", "to think about"]) + let v = native_list_append(v, ["foresceawian", "verb", "foresċēawiġe", "foresċēawode", "", "", "to foresee observe"]) + let v = native_list_append(v, ["forspillan", "verb", "forspille", "forspilde", "", "", "with accusative to"]) + let v = native_list_append(v, ["bewepan", "verb", "bewēpe", "bewēop", "", "", "to weep weep"]) + let v = native_list_append(v, ["utlædan", "verb", "ūtlǣde", "ūtlǣdde", "", "", "to lead out"]) + let v = native_list_append(v, ["ofersteppan", "verb", "ofersteppe", "oferstōp", "", "", "to overstep cross"]) + let v = native_list_append(v, ["ofersittan", "verb", "ofersitte", "ofersæt", "", "", "to sit upon"]) + let v = native_list_append(v, ["ofergangan", "verb", "ofergange", "oferġēng", "", "", "to go over"]) + let v = native_list_append(v, ["ymbgangan", "verb", "ymbgange", "ymbġēng", "", "", "to go around"]) + let v = native_list_append(v, ["forgangan", "verb", "forgange", "forġēng", "", "", "to forgo go"]) + let v = native_list_append(v, ["cipan", "verb", "ċīpan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["undergangan", "verb", "undergange", "underġēng", "", "", "to undergo bear"]) + let v = native_list_append(v, ["oferhyran", "verb", "oferhȳre", "oferhȳrde", "", "", "alternative form of"]) + let v = native_list_append(v, ["foregangan", "verb", "foregange", "foreġēng", "", "", "to forego go"]) + let v = native_list_append(v, ["forsettan", "verb", "forsette", "forsette", "", "", "to stop up"]) + let v = native_list_append(v, ["bestrican", "verb", "bestrīce", "bestrāc", "", "", "to make a"]) + let v = native_list_append(v, ["mislician", "verb", "mislīciġe", "mislīcode", "", "", "to displease"]) + let v = native_list_append(v, ["gelician", "verb", "ġelīciġe", "ġelīcode", "", "", "to delight please"]) + let v = native_list_append(v, ["bemænan", "verb", "bemǣne", "bemǣnde", "", "", "to bemoan bewail"]) + let v = native_list_append(v, ["forcuman", "verb", "forcume", "forcōm", "", "", "to overcome surpass"]) + let v = native_list_append(v, ["forecuman", "verb", "forecume", "forecōm", "", "", "to come forth"]) + let v = native_list_append(v, ["besteppan", "verb", "besteppe", "bestōp", "", "", "to tread or"]) + let v = native_list_append(v, ["forbitan", "verb", "forbīte", "forbāt", "", "", "to bite up"]) + let v = native_list_append(v, ["bestyrian", "verb", "bestyrie", "bestyrede", "", "", "to heap or"]) + let v = native_list_append(v, ["bewacian", "verb", "bewaciġe", "bewacode", "", "", "to keep watch"]) + let v = native_list_append(v, ["beceorfan", "verb", "beċeorfe", "beċearf", "", "", "to becarve cut"]) + let v = native_list_append(v, ["forceorfan", "verb", "forċeorfe", "forċearf", "", "", "to cut or"]) + let v = native_list_append(v, ["ingangan", "verb", "ingange", "inġēng", "", "", "to go in"]) + let v = native_list_append(v, ["utgan", "verb", "ūtgā", "ūtēode", "", "", "to go out"]) + let v = native_list_append(v, ["gewadan", "verb", "ġewade", "ġewōd", "", "", "to proceed fully"]) + let v = native_list_append(v, ["onwadan", "verb", "onwade", "onwōd", "", "", "to wade into"]) + let v = native_list_append(v, ["geondwadan", "verb", "ġeondwade", "ġeondwōd", "", "", "to wade thoroughly"]) + let v = native_list_append(v, ["oferwadan", "verb", "oferwade", "oferwōd", "", "", "to cross over"]) + let v = native_list_append(v, ["þurhwadan", "verb", "þurhwade", "þurhwōd", "", "", "to pass through"]) + let v = native_list_append(v, ["anwadan", "verb", "anwade", "anwōd", "", "", "alternative form of"]) + let v = native_list_append(v, ["þurhsmugan", "verb", "þurhsmūge", "þurhsmēag", "", "", "to creep or"]) + let v = native_list_append(v, ["þurhteon", "verb", "þurhtēo", "þurhtēah", "", "", "to grant a"]) + let v = native_list_append(v, ["þurhwunian", "verb", "þurhwuniġe", "þurhwunode", "", "", "to continue"]) + let v = native_list_append(v, ["þurhdreogan", "verb", "þurhdrēoge", "þurhdrēag", "", "", "to carry through"]) + let v = native_list_append(v, ["forþgan", "verb", "forþgā", "forþēode", "", "", "to go forth"]) + let v = native_list_append(v, ["geriman", "verb", "ġerīme", "ġerīmde", "", "", "to number reckon"]) + let v = native_list_append(v, ["forþcuman", "verb", "forþcume", "forþcōm", "", "", "to come forth"]) + let v = native_list_append(v, ["forþbringan", "verb", "forþbringe", "forþbrōhte", "", "", "to bring forth"]) + let v = native_list_append(v, ["forþfaran", "verb", "forþfare", "forþfōr", "", "", "to go or"]) + let v = native_list_append(v, ["forþlædan", "verb", "forþlǣde", "forþlǣdde", "", "", "to lead or"]) + let v = native_list_append(v, ["forþberan", "verb", "forþbere", "forþbær", "", "", "to carry or"]) + let v = native_list_append(v, ["ymbsittan", "verb", "ymbsitte", "ymbsæt", "", "", "to sit or"]) + let v = native_list_append(v, ["anælan", "verb", "anǣle", "anǣlde", "", "", "alternative form of"]) + let v = native_list_append(v, ["bedragan", "verb", "bedrage", "bedrōg", "", "", "to draw aside"]) + let v = native_list_append(v, ["beweardian", "verb", "beweardiġe", "beweardode", "", "", "to ward keep"]) + let v = native_list_append(v, ["læte", "verb", "lǣte", "", "", "", "inflection of lǣtan"]) + let v = native_list_append(v, ["beweddian", "verb", "beweddiġe", "beweddode", "", "", "to wed betroth"]) + let v = native_list_append(v, ["gecennan", "verb", "ġecenne", "ġecende", "", "", "to beget bear"]) + let v = native_list_append(v, ["gorian", "verb", "goriġe", "gorode", "", "", "to gaze look."]) + let v = native_list_append(v, ["bewealwian", "verb", "bewealwiġe", "bewealwode", "", "", "to roll around"]) + let v = native_list_append(v, ["benotian", "verb", "benotiġe", "benotode", "", "", "to use consume"]) + let v = native_list_append(v, ["gecnawan", "verb", "ġecnāwe", "ġecnēow", "", "", "to know perceive"]) + let v = native_list_append(v, ["beridan", "verb", "berīde", "berād", "", "", "to ride around"]) + let v = native_list_append(v, ["forwenan", "verb", "forwēne", "forwēnde", "", "", "to overween think"]) + let v = native_list_append(v, ["brece", "verb", "brece", "", "", "", "inflection of brecan"]) + let v = native_list_append(v, ["beslæpan", "verb", "beslǣpe", "beslēp", "", "", "to sleep sleep"]) + let v = native_list_append(v, ["forhydan", "verb", "forhȳde", "forhȳdde", "", "", "to hide hide"]) + let v = native_list_append(v, ["slapian", "verb", "slāpiġe", "slāpode", "", "", "to cause to"]) + let v = native_list_append(v, ["bescieran", "verb", "besċiere", "besċear", "", "", "to shear cut"]) + let v = native_list_append(v, ["bestreawian", "verb", "bestrēawiġe", "bestrēawode", "", "", "to bestrew strew"]) + let v = native_list_append(v, ["bestridan", "verb", "bestrīde", "bestrād", "", "", "to bestride"]) + let v = native_list_append(v, ["forcweþan", "verb", "forcweþe", "forcwæþ", "", "", "to rebuke reprove"]) + let v = native_list_append(v, ["beþrawan", "verb", "beþrāwe", "beþrēow", "", "", "to twist"]) + let v = native_list_append(v, ["beþringan", "verb", "beþringe", "beþrang", "", "", "to throng or"]) + let v = native_list_append(v, ["betredan", "verb", "betrede", "betræd", "", "", "to tread upon"]) + let v = native_list_append(v, ["þuxian", "verb", "þuxiġe", "þuxode", "", "", "to make misty"]) + let v = native_list_append(v, ["gorettan", "verb", "gorette", "gorette", "", "", "to let ones"]) + let v = native_list_append(v, ["besawan", "verb", "besāwe", "besēow", "", "", "to sow sow"]) + let v = native_list_append(v, ["befeohtan", "verb", "befeohte", "befeaht", "", "", "to take or"]) + let v = native_list_append(v, ["beflowan", "verb", "beflōwe", "beflēow", "", "", "to overflow"]) + let v = native_list_append(v, ["befealdan", "verb", "befealde", "befēold", "", "", "to fold infold"]) + let v = native_list_append(v, ["oferflowan", "verb", "oferflōwe", "oferflēow", "", "", "to overflow cover"]) + let v = native_list_append(v, ["geflowan", "verb", "ġeflōwe", "ġeflēow", "", "", "to overflow"]) + let v = native_list_append(v, ["forþflowan", "verb", "forþflōwe", "forþflēow", "", "", "to flow forth"]) + let v = native_list_append(v, ["begnagan", "verb", "begnage", "begnōg", "", "", "to begnaw gnaw"]) + let v = native_list_append(v, ["forgnagan", "verb", "forgnage", "forgnōg", "", "", "to gnaw or"]) + let v = native_list_append(v, ["forgrowan", "verb", "forgrōwe", "forgrēow", "", "", "to grow up"]) + let v = native_list_append(v, ["fortredan", "verb", "fortrede", "fortræd", "", "", "to tread upon"]) + let v = native_list_append(v, ["forelædan", "verb", "forelǣde", "forelǣdde", "", "", "to lead forth"]) + let v = native_list_append(v, ["fordwinan", "verb", "fordwīne", "fordwān", "", "", "to disappear"]) + let v = native_list_append(v, ["fordrencan", "verb", "fordrenċe", "fordrencte", "", "", "to get someone"]) + let v = native_list_append(v, ["oferhleapan", "verb", "oferhlēape", "oferhlēop", "", "", "to jump over"]) + let v = native_list_append(v, ["behleapan", "verb", "behlēape", "behlēop", "", "", "to leap upon"]) + let v = native_list_append(v, ["mistæcan", "verb", "mistǣċe", "mistǣhte", "", "", "to teach wrongly"]) + let v = native_list_append(v, ["behon", "verb", "behō", "behēng", "", "", "to behang hang"]) + let v = native_list_append(v, ["gehon", "verb", "ġehō", "ġehēng", "", "", "to hang hang"]) + let v = native_list_append(v, ["befrignan", "verb", "befriġne", "befræġn", "", "", "to ask ask"]) + let v = native_list_append(v, ["behliehhan", "verb", "behliehhe", "behlōg", "", "", "to laugh at"]) + let v = native_list_append(v, ["ofstandan", "verb", "ofstande", "ofstōd", "", "", "to stop in"]) + let v = native_list_append(v, ["bemurnan", "verb", "bemurne", "bemearn", "", "", "to bemoan mourn"]) + let v = native_list_append(v, ["begangan", "verb", "begange", "beġēng", "", "", "to go by"]) + let v = native_list_append(v, ["beheawan", "verb", "behēawe", "behēow", "", "", "to beat bruise"]) + let v = native_list_append(v, ["bemiþan", "verb", "bemīþe", "bemāþ", "", "", "to hide conceal"]) + let v = native_list_append(v, ["hergian", "verb", "hergiġe", "hergode", "", "", "to pillage plunder"]) + let v = native_list_append(v, ["belimpan", "verb", "belimpe", "belamp", "", "", "to happen"]) + let v = native_list_append(v, ["belucan", "verb", "belūce", "belēac", "", "", "to shut in"]) + let v = native_list_append(v, ["begyrdan", "verb", "begyrde", "begyrde", "", "", "to begird gird"]) + let v = native_list_append(v, ["forgyrdan", "verb", "forgyrde", "forgyrde", "", "", "to girdle enclose"]) + let v = native_list_append(v, ["gegyrdan", "verb", "ġegyrde", "ġegyrde", "", "", "to gird"]) + let v = native_list_append(v, ["ymbgyrdan", "verb", "ymbgyrde", "ymbgyrde", "", "", "to gird about"]) + let v = native_list_append(v, ["onbindan", "verb", "onbinde", "onband", "", "", "to unbind set"]) + let v = native_list_append(v, ["oflecgan", "verb", "ofleċġe", "ofleġde", "", "", "to lay down"]) + let v = native_list_append(v, ["ymblocian", "verb", "ymblōciġe", "ymblōcode", "", "", "to look around"]) + let v = native_list_append(v, ["ymbceorfan", "verb", "ymbċeorfe", "ymbċearf", "", "", "to circumcise"]) + let v = native_list_append(v, ["wogian", "verb", "wōgiġe", "wōgode", "", "", "to woo court"]) + let v = native_list_append(v, ["timbrian", "verb", "timbriġe", "timbrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["oferwinnan", "verb", "oferwinne", "oferwann", "", "", "to conquer vanquish"]) + let v = native_list_append(v, ["ymbsniþan", "verb", "ymbsnīþe", "ymbsnāþ", "", "", "to circumcise cut"]) + let v = native_list_append(v, ["ymbþringan", "verb", "ymbþringe", "ymbþrang", "", "", "to throng or"]) + let v = native_list_append(v, ["ymbsceawian", "verb", "ymbsċēawiġe", "ymbsċēawode", "", "", "to look around"]) + let v = native_list_append(v, ["ymbscinan", "verb", "ymbsċīne", "ymbsċān", "", "", "to shine around"]) + let v = native_list_append(v, ["ymbhon", "verb", "ymbhō", "ymbhēng", "", "", "to hang around"]) + let v = native_list_append(v, ["behydan", "verb", "behȳde", "behȳdde", "", "", "to hide conceal"]) + let v = native_list_append(v, ["bebindan", "verb", "bebinde", "beband", "", "", "to bind in"]) + let v = native_list_append(v, ["tobrecan", "verb", "tōbrece", "tōbræc", "", "", "to break asunder"]) + let v = native_list_append(v, ["tofeallan", "verb", "tōfealle", "tōfēoll", "", "", "to fall to"]) + let v = native_list_append(v, ["ungyrdan", "verb", "ungyrde", "ungyrde", "", "", "to ungird take"]) + let v = native_list_append(v, ["bedyppan", "verb", "bedyppe", "bedypede", "", "", "to dip immerse"]) + let v = native_list_append(v, ["berædan", "verb", "berǣde", "berǣdde", "", "", "to deprive of"]) + let v = native_list_append(v, ["besmierwan", "verb", "besmierwe", "besmierede", "", "", "to besmear to"]) + let v = native_list_append(v, ["betynan", "verb", "betȳne", "betȳnde", "", "", "to shut shut"]) + let v = native_list_append(v, ["forhabban", "verb", "forhæbbe", "forhæfde", "", "", "to hold in"]) + let v = native_list_append(v, ["ahabban", "verb", "āhæbbe", "āhæfde", "", "", "to restrain ones"]) + let v = native_list_append(v, ["behabban", "verb", "behæbbe", "behæfde", "", "", "to surround or"]) + let v = native_list_append(v, ["oferhabban", "verb", "oferhæbbe", "oferhæfde", "", "", "to command govern"]) + let v = native_list_append(v, ["ofhabban", "verb", "ofhæbbe", "ofhæfde", "", "", "to keep from"]) + let v = native_list_append(v, ["onhabban", "verb", "onhæbbe", "onhæfde", "", "", "alternative form of"]) + let v = native_list_append(v, ["becreopan", "verb", "becrēope", "becrēap", "", "", "to creep creep"]) + let v = native_list_append(v, ["wiþhabban", "verb", "wiþhæbbe", "wiþhæfde", "", "", "to hold out"]) + let v = native_list_append(v, ["beclyppan", "verb", "beclyppe", "beclypte", "", "", "to clasp embrace"]) + let v = native_list_append(v, ["wiþerhabban", "verb", "wiþerhæbbe", "wiþerhæfde", "", "", "alternative form of"]) + let v = native_list_append(v, ["ymbhabban", "verb", "ymbhæbbe", "ymbhæfde", "", "", "to surround encompass"]) + let v = native_list_append(v, ["æthabban", "verb", "æthæbbe", "æthæfde", "", "", "to retain"]) + let v = native_list_append(v, ["wiþfaran", "verb", "wiþfare", "wiþfōr", "", "", "to come off"]) + let v = native_list_append(v, ["wiþblawan", "verb", "wiþblāwe", "wiþblēow", "", "", "to blow away"]) + let v = native_list_append(v, ["wiþsacan", "verb", "wiþsace", "wiþsōc", "", "", "to deny"]) + let v = native_list_append(v, ["beswincan", "verb", "beswince", "beswanc", "", "", "to labour for"]) + let v = native_list_append(v, ["befleogan", "verb", "beflēoge", "beflēag", "", "", "to fly about"]) + let v = native_list_append(v, ["befleon", "verb", "beflēo", "beflēah", "", "", "to flee flee"]) + let v = native_list_append(v, ["bemetan", "verb", "bemete", "bemæt", "", "", "to measure by"]) + let v = native_list_append(v, ["ametan", "verb", "āmete", "āmæt", "", "", "to measure"]) + let v = native_list_append(v, ["beblawan", "verb", "beblāwe", "beblēow", "", "", "to blow upon"]) + let v = native_list_append(v, ["forsceadan", "verb", "forsċeāde", "forsċēd", "", "", "to scatter disperse"]) + let v = native_list_append(v, ["scadan", "verb", "sċāde", "sċēd", "", "", "alternative form of"]) + let v = native_list_append(v, ["oferfaran", "verb", "oferfare", "oferfōr", "", "", "to go off"]) + let v = native_list_append(v, ["blodgian", "verb", "blōdgiġe", "blōdgode", "", "", "to make or"]) + let v = native_list_append(v, ["gefeohtan", "verb", "ġefeohte", "ġefeaht", "", "", "to fight"]) + let v = native_list_append(v, ["behropan", "verb", "behrōpe", "behrēop", "", "", "to scoff at"]) + let v = native_list_append(v, ["geblowan", "verb", "ġeblōwe", "ġeblēow", "", "", "to flower blossom"]) + let v = native_list_append(v, ["brædan", "verb", "brǣde", "brǣdde", "", "", "to make broad"]) + let v = native_list_append(v, ["geondblawan", "verb", "ġeondblāwe", "ġeondblēow", "", "", "to breathe upon"]) + let v = native_list_append(v, ["geondbrædan", "verb", "ġeondbrǣde", "ġeondbrǣdde", "", "", "to overspread extend"]) + let v = native_list_append(v, ["geonddrencan", "verb", "ġeonddrenċe", "ġeonddrencte", "", "", "to saturate with"]) + let v = native_list_append(v, ["geondfaran", "verb", "ġeondfare", "ġeondfōr", "", "", "to go through"]) + let v = native_list_append(v, ["geondfeolan", "verb", "ġeondfēole", "ġeondfealh", "", "", "to fill throughout"]) + let v = native_list_append(v, ["geondflowan", "verb", "ġeondflōwe", "ġeondflēow", "", "", "to flow through"]) + let v = native_list_append(v, ["geondgangan", "verb", "ġeondgange", "ġeondġēng", "", "", "to go through"]) + let v = native_list_append(v, ["geondgeotan", "verb", "ġeondġēote", "ġeondġēat", "", "", "to cover by"]) + let v = native_list_append(v, ["geondhweorfan", "verb", "ġeondhweorfe", "ġeondhwearf", "", "", "to turn or"]) + let v = native_list_append(v, ["hierdan", "verb", "hierde", "hierde", "", "", "to make hard"]) + let v = native_list_append(v, ["afaran", "verb", "āfare", "āfōr", "", "", "to depart march"]) + let v = native_list_append(v, ["geondhierdan", "verb", "ġeondhierde", "ġeondhierde", "", "", "to harden or"]) + let v = native_list_append(v, ["geondyrnan", "verb", "ġeondyrne", "ġeondarn", "", "", "to run over"]) + let v = native_list_append(v, ["yrnan", "verb", "yrne", "arn", "", "", "alternative form of"]) + let v = native_list_append(v, ["geondlacan", "verb", "ġeondlāce", "ġeondlēc", "", "", "to move through"]) + let v = native_list_append(v, ["geondleccan", "verb", "ġeondleċċe", "ġeondleahte", "", "", "to water irrigate"]) + let v = native_list_append(v, ["geondlihtan", "verb", "ġeondlīhte", "ġeondlīhte", "", "", "to enlighten illuminate"]) + let v = native_list_append(v, ["geondmengan", "verb", "ġeondmenġe", "ġeondmengde", "", "", "to mingle throughout"]) + let v = native_list_append(v, ["geondrecan", "verb", "ġeondrēċe", "ġeondrēhte", "", "", "to smoke thoroughly"]) + let v = native_list_append(v, ["geondsawan", "verb", "ġeondsāwe", "ġeondsēow", "", "", "to sow scatter"]) + let v = native_list_append(v, ["geondsceawian", "verb", "ġeondscēawiġe", "ġeondscēawode", "", "", "to look through"]) + let v = native_list_append(v, ["geondscinan", "verb", "ġeondscīne", "ġeondscān", "", "", "to shine upon"]) + let v = native_list_append(v, ["geondscriþan", "verb", "ġeondsċrīþe", "ġeondsċrāþ", "", "", "to go through"]) + let v = native_list_append(v, ["wesaþ", "verb", "wesaþ", "", "", "", "second-person plural imperative"]) + let v = native_list_append(v, ["wesanne", "verb", "wesanne", "", "", "", "supine infinitive of"]) + let v = native_list_append(v, ["gespannan", "verb", "ġespanne", "ġespēonn", "", "", "to span clasp"]) + let v = native_list_append(v, ["tugon", "verb", "tugon", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["spearca", "verb", "spærca", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["geondsecan", "verb", "ġeondsēċe", "ġeondsōhte", "", "", "to search thoroughly"]) + let v = native_list_append(v, ["geondsendan", "verb", "ġeondsende", "ġeondsende", "", "", "to overspread"]) + let v = native_list_append(v, ["geondseon", "verb", "ġeondsēo", "ġeondseah", "", "", "to see beyond"]) + let v = native_list_append(v, ["geondsmeagan", "verb", "ġeondsmēaġe", "ġeondsmēade", "", "", "to search through"]) + let v = native_list_append(v, ["spætan", "verb", "spǣte", "spǣtte", "", "", "to spit"]) + let v = native_list_append(v, ["geondspætan", "verb", "ġeondspǣte", "ġeondspǣtte", "", "", "to spit squirt"]) + let v = native_list_append(v, ["sprengan", "verb", "sprenġe", "sprengde", "", "", "to scatter something"]) + let v = native_list_append(v, ["geondsprengan", "verb", "ġeondsprenġe", "ġeondsprengde", "", "", "to sprinkle over"]) + let v = native_list_append(v, ["geondspringan", "verb", "ġeondspringe", "ġeondsprang", "", "", "to become diffuse"]) + let v = native_list_append(v, ["stredan", "verb", "strēde", "strēdde", "", "", "alternative form of"]) + let v = native_list_append(v, ["geondstredan", "verb", "ġeondstrēde", "ġeondstrēdde", "", "", "to scatter about"]) + let v = native_list_append(v, ["geondstregdan", "verb", "ġeondstreġde", "ġeondstræġd", "", "", "alternative form of"]) + let v = native_list_append(v, ["geondstyrian", "verb", "ġeondstyrie", "ġeondstyrede", "", "", "to move or"]) + let v = native_list_append(v, ["geondswogan", "verb", "ġeondswōge", "ġeondswōg", "", "", "to rush through"]) + let v = native_list_append(v, ["geondþencan", "verb", "ġeondþenċe", "ġeondþōhte", "", "", "to think over"]) + let v = native_list_append(v, ["geondwlitan", "verb", "ġeondwlīte", "ġeondwlāt", "", "", "to look or"]) + let v = native_list_append(v, ["underniman", "verb", "undernime", "undernam", "", "", "to steal"]) + let v = native_list_append(v, ["þurhblawan", "verb", "þurhblāwe", "þurhblēow", "", "", "to inspire"]) + let v = native_list_append(v, ["þurhborian", "verb", "þurhboriġe", "þurhborode", "", "", "to bore through"]) + let v = native_list_append(v, ["þurhbrecan", "verb", "þurhbrece", "þurhbræc", "", "", "to break through"]) + let v = native_list_append(v, ["þurhbrengan", "verb", "þurhbrenġe", "þurhbrōhte", "", "", "to bring bear"]) + let v = native_list_append(v, ["þurhbregdan", "verb", "þurhbreġde", "þurhbræġd", "", "", "to transport to"]) + let v = native_list_append(v, ["þurhbrucan", "verb", "þurhbrūce", "þurhbrēac", "", "", "to enjoy thoroughly"]) + let v = native_list_append(v, ["þurhbirnan", "verb", "þurhbirne", "þurhbarn", "", "", "to burn through"]) + let v = native_list_append(v, ["þurhclænsian", "verb", "þurhclǣnsiġe", "þurhclǣnsode", "", "", "to cleanse thoroughly"]) + let v = native_list_append(v, ["þurhcreopan", "verb", "þurhcrēope", "þurhcrēap", "", "", "to creep through"]) + let v = native_list_append(v, ["þurhdelfan", "verb", "þurhdelfe", "þurhdealf", "", "", "to dig or"]) + let v = native_list_append(v, ["þurhdrifan", "verb", "þurhdrīfe", "þurhdrāf", "", "", "to drive through"]) + let v = native_list_append(v, ["þurhdufan", "verb", "þurhdūfe", "þurhdēaf", "", "", "to dive through"]) + let v = native_list_append(v, ["þurhetan", "verb", "þurhete", "þurhǣt", "", "", "to eat through"]) + let v = native_list_append(v, ["þurhfæstnian", "verb", "þurhfæstniġe", "þurhfæstnode", "", "", "to transfix"]) + let v = native_list_append(v, ["betæcan", "verb", "betǣċe", "betǣhte", "", "", "to show point"]) + let v = native_list_append(v, ["gefolgian", "verb", "ġefolgiġe", "ġefolgode", "", "", "to follow reach"]) + let v = native_list_append(v, ["æfterfolgian", "verb", "æfterfolgiġe", "æfterfolgode", "", "", "to follow after"]) + let v = native_list_append(v, ["þurhfaran", "verb", "þurhfare", "þurhfōr", "", "", "to go over"]) + let v = native_list_append(v, ["þurhsecan", "verb", "þurhsēċe", "þurhsōhte", "", "", "to seek out"]) + let v = native_list_append(v, ["þurhgan", "verb", "þurhgā", "þurhēode", "", "", "to go over"]) + let v = native_list_append(v, ["þurhseon", "verb", "þurhsēo", "þurhseah", "", "", "to see through"]) + let v = native_list_append(v, ["bedufan", "verb", "bedūfe", "bedēaf", "", "", "to put under"]) + let v = native_list_append(v, ["anbugan", "verb", "anbūgan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onbugan", "verb", "onbūge", "onbēag", "", "", "to bend"]) + let v = native_list_append(v, ["forbugan", "verb", "forbūge", "forbēag", "", "", "to avoid abstain"]) + let v = native_list_append(v, ["frambugan", "verb", "frambūge", "frambēag", "", "", "to turn from"]) + let v = native_list_append(v, ["gebugan", "verb", "ġebūge", "ġebēag", "", "", "to bend bow"]) + let v = native_list_append(v, ["oferbugan", "verb", "oferbūge", "oferbēag", "", "", "to avoid shun"]) + let v = native_list_append(v, ["underbugan", "verb", "underbūge", "underbēag", "", "", "to submit"]) + let v = native_list_append(v, ["þurhgangan", "verb", "þurhgange", "þurhġēng", "", "", "to go over"]) + let v = native_list_append(v, ["gefegan", "verb", "ġefēġe", "ġefēġde", "", "", "to join attach"]) + let v = native_list_append(v, ["þurhsceotan", "verb", "þurhsċēote", "þurhsċēat", "", "", "to shoot through"]) + let v = native_list_append(v, ["infaran", "verb", "infare", "infōr", "", "", "to go in"]) + let v = native_list_append(v, ["ahweorfan", "verb", "āhweorfe", "āhwearf", "", "", "to turn or"]) + let v = native_list_append(v, ["æthweorfan", "verb", "æthweorfe", "æthwearf", "", "", "to turn"]) + let v = native_list_append(v, ["efthweorfan", "verb", "efthweorfe", "efthwearf", "", "", "to turn back"]) + let v = native_list_append(v, ["forhweorfan", "verb", "forhweorfe", "forhwearf", "", "", "to pass away"]) + let v = native_list_append(v, ["agengehweorfan", "verb", "aġēnġehweorfe", "aġēnġehwearf", "", "", "to turn back"]) + let v = native_list_append(v, ["geanhweorfan", "verb", "ġēanhweorfe", "ġēanhwearf", "", "", "to turn again"]) + let v = native_list_append(v, ["mishweorfan", "verb", "mishweorfe", "mishwearf", "", "", "to pervert"]) + let v = native_list_append(v, ["inbringan", "verb", "inbringe", "inbrōhte", "", "", "to bring in"]) + let v = native_list_append(v, ["ongeanhweorfan", "verb", "onġēanhweorfe", "onġēanhwearf", "", "", "to turn or"]) + let v = native_list_append(v, ["onhweorfan", "verb", "onhweorfe", "onhwearf", "", "", "to change reverse"]) + let v = native_list_append(v, ["andhweorfan", "verb", "andhweorfe", "andhwearf", "", "", "alternative form of"]) + let v = native_list_append(v, ["sinhweorfan", "verb", "sinhweorfe", "sinhwearf", "", "", "to turn or"]) + let v = native_list_append(v, ["tohweorfan", "verb", "tōhweorfe", "tōhwearf", "", "", "to go in"]) + let v = native_list_append(v, ["framhweorfan", "verb", "framhweorfe", "framhwearf", "", "", "to turn from"]) + let v = native_list_append(v, ["incuman", "verb", "incume", "incōm", "", "", "to come in"]) + let v = native_list_append(v, ["utdragan", "verb", "ūtdrage", "ūtdrōg", "", "", "to remove draw"]) + let v = native_list_append(v, ["inblawan", "verb", "inblāwe", "inblēow", "", "", "to inspire breathe"]) + let v = native_list_append(v, ["andwlitan", "verb", "andwlīte", "andwlāt", "", "", "to look upon"]) + let v = native_list_append(v, ["bewlitan", "verb", "bewlīte", "bewlāt", "", "", "to look behold"]) + let v = native_list_append(v, ["þurhwlitan", "verb", "þurhwlīte", "þurhwlāt", "", "", "to look through"]) + let v = native_list_append(v, ["bewlatian", "verb", "bewlātiġe", "bewlātode", "", "", "to see look"]) + let v = native_list_append(v, ["ymbwlatian", "verb", "ymbwlātiġe", "ymbwlātode", "", "", "to contemplate"]) + let v = native_list_append(v, ["embwlatian", "verb", "embwlātiġe", "embwlātode", "", "", "alternative form of"]) + let v = native_list_append(v, ["wlancian", "verb", "wlanciġe", "wlancode", "", "", "to grow proud"]) + let v = native_list_append(v, ["awlancian", "verb", "āwlanciġe", "āwlancode", "", "", "to be proud"]) + let v = native_list_append(v, ["wlencan", "verb", "wlenċe", "wlencte", "", "", "to make proud"]) + let v = native_list_append(v, ["awlencan", "verb", "āwlenċe", "āwlencte", "", "", "to make splendid"]) + let v = native_list_append(v, ["forwlencan", "verb", "forwlenċe", "forwlencte", "", "", "to exalt fill"]) + let v = native_list_append(v, ["gewlencan", "verb", "ġewlenċe", "ġewlencte", "", "", "to make proud"]) + let v = native_list_append(v, ["behegian", "verb", "behegiġe", "behegode", "", "", "to hedge around"]) + let v = native_list_append(v, ["unfealdan", "verb", "unfealde", "unfēold", "", "", "to unfold unroll"]) + let v = native_list_append(v, ["oferbrecan", "verb", "oferbrece", "oferbræc", "", "", "to infringe violate"]) + let v = native_list_append(v, ["oferbidan", "verb", "oferbīde", "oferbād", "", "", "to outlive outlast"]) + let v = native_list_append(v, ["inbrecan", "verb", "inbrece", "inbræc", "", "", "to break into"]) + let v = native_list_append(v, ["oferdon", "verb", "oferdō", "oferdyde", "", "", "to overdo do"]) + let v = native_list_append(v, ["fuldon", "verb", "fuldō", "fuldyde", "", "", "to do fully"]) + let v = native_list_append(v, ["upcuman", "verb", "upcume", "upcōm", "", "", "to come up"]) + let v = native_list_append(v, ["upgan", "verb", "upgā", "upēode", "", "", "to go up"]) + let v = native_list_append(v, ["adælan", "verb", "ādǣle", "ādǣlde", "", "", "to part divide"]) + let v = native_list_append(v, ["asceadan", "verb", "āsċeāde", "āsċēd", "", "", "to separate dissociate"]) + let v = native_list_append(v, ["besceadan", "verb", "besċeāde", "besċēd", "", "", "to separate or"]) + let v = native_list_append(v, ["ofsceadan", "verb", "ofsċeāde", "ofsċēd", "", "", "to divide off"]) + let v = native_list_append(v, ["tosceadan", "verb", "tōsċeāde", "tōsċēd", "", "", "to divide into"]) + let v = native_list_append(v, ["ofersceadan", "verb", "ofersċeāde", "ofersċēd", "", "", "to sprinkle over"]) + let v = native_list_append(v, ["togesceadan", "verb", "tōġesċeāde", "tōġesċēd", "", "", "to expound interpret"]) + let v = native_list_append(v, ["upbregdan", "verb", "upbreġde", "upbræġd", "", "", "to reproach upbraid"]) + let v = native_list_append(v, ["ahebban", "verb", "āhebbe", "āhōf", "", "", "to heave or"]) + let v = native_list_append(v, ["oferclimban", "verb", "oferclimbe", "oferclamb", "", "", "to climb over"]) + let v = native_list_append(v, ["fullfyllan", "verb", "fullfylle", "fullfylde", "", "", "to fulfill accomplish"]) + let v = native_list_append(v, ["oferlecgan", "verb", "oferleċġe", "oferleġde", "", "", "to lay over"]) + let v = native_list_append(v, ["bestingan", "verb", "bestinge", "bestang", "", "", "to thrust in"]) + let v = native_list_append(v, ["oferridan", "verb", "oferrīde", "oferrād", "", "", "to ride across"]) + let v = native_list_append(v, ["missprecan", "verb", "missprece", "misspræc", "", "", "to murmur grumble"]) + let v = native_list_append(v, ["oferfyllan", "verb", "oferfylle", "oferfylde", "", "", "to fill to"]) + let v = native_list_append(v, ["bebycgan", "verb", "bebyċġe", "bebohte", "", "", "to sell set"]) + let v = native_list_append(v, ["beclipian", "verb", "beclipiġe", "beclipode", "", "", "to challenge"]) + let v = native_list_append(v, ["beþiedan", "verb", "beþīede", "beþīedde", "", "", "to join attach"]) + let v = native_list_append(v, ["oþþeodan", "verb", "oþþēode", "oþþēodde", "", "", "to disjoin detach"]) + let v = native_list_append(v, ["underþeodan", "verb", "underþēode", "underþēodde", "", "", "to subjugate make"]) + let v = native_list_append(v, ["geunderþeodan", "verb", "ġeunderþēode", "ġeunderþēodde", "", "", "to subject"]) + let v = native_list_append(v, ["twæman", "verb", "twǣme", "twǣmde", "", "", "to divide separate"]) + let v = native_list_append(v, ["totwæman", "verb", "tōtwǣme", "tōtwǣmde", "", "", "to divide stand"]) + let v = native_list_append(v, ["geferlæcan", "verb", "ġefērlǣċe", "ġefērlǣhte", "", "", "to keep somebodys"]) + let v = native_list_append(v, ["tosamnian", "verb", "tōsamniġe", "tōsamnode", "", "", "to assemble collect"]) + let v = native_list_append(v, ["þweran", "verb", "þwere", "þwær", "", "", "to twirl"]) + let v = native_list_append(v, ["aþweran", "verb", "āþwere", "āþwær", "", "", "to churn"]) + let v = native_list_append(v, ["geþweran", "verb", "ġeþwere", "ġeþwær", "", "", "to churn to"]) + let v = native_list_append(v, ["acwelan", "verb", "ācwele", "ācwæl", "", "", "to die perish"]) + let v = native_list_append(v, ["becwelan", "verb", "becwele", "becwæl", "", "", "to die"]) + let v = native_list_append(v, ["oþcwelan", "verb", "oþcwele", "oþcwæl", "", "", "to die"]) + let v = native_list_append(v, ["mishieran", "verb", "mishīere", "mishīerde", "", "", "to disobey hear"]) + let v = native_list_append(v, ["beheafdian", "verb", "behēafdiġe", "behēafdode", "", "", "to behead"]) + let v = native_list_append(v, ["ofgan", "verb", "ofgā", "ofēode", "", "", "to require demand"]) + let v = native_list_append(v, ["awrecan", "verb", "āwrece", "āwræc", "", "", "to drive away"]) + let v = native_list_append(v, ["bewrecan", "verb", "bewrece", "bewræc", "", "", "to exile send"]) + let v = native_list_append(v, ["biwrecan", "verb", "biwrece", "biwræc", "", "", "alternative form of"]) + let v = native_list_append(v, ["forwrecan", "verb", "forwrece", "forwræc", "", "", "to drive out"]) + let v = native_list_append(v, ["goldwrecan", "verb", "goldwrece", "goldwræc", "", "", "to inlay with"]) + let v = native_list_append(v, ["oferwrecan", "verb", "oferwrece", "oferwræc", "", "", "to overwhelm"]) + let v = native_list_append(v, ["onwrecan", "verb", "onwrece", "onwræc", "", "", "to avenge"]) + let v = native_list_append(v, ["towrecan", "verb", "tōwrece", "tōwræc", "", "", "to drive in"]) + let v = native_list_append(v, ["þeodwrecan", "verb", "þēodwrece", "þēodwræc", "", "", "to avenge thoroughly"]) + let v = native_list_append(v, ["þurhwrecan", "verb", "þurhwrece", "þurhwræc", "", "", "to thrust through"]) + let v = native_list_append(v, ["ærendwreccan", "verb", "ǣrendwreċċe", "ǣrendwrehte", "", "", "to send a"]) + let v = native_list_append(v, ["gecweþan", "verb", "ġecweþe", "ġecwæþ", "", "", "to speak"]) + let v = native_list_append(v, ["beforancweþan", "verb", "beforancweþe", "beforancwæþ", "", "", "to foretell"]) + let v = native_list_append(v, ["hearmcweþan", "verb", "hearmcweþe", "hearmcwæþ", "", "", "to revile to"]) + let v = native_list_append(v, ["miscweþan", "verb", "miscweþe", "miscwæþ", "", "", "to speak amiss"]) + let v = native_list_append(v, ["tocweþan", "verb", "tōcweþe", "tōcwæþ", "", "", "to forbid"]) + let v = native_list_append(v, ["weargcweþan", "verb", "weargcweþe", "weargcwæþ", "", "", "to curse"]) + let v = native_list_append(v, ["wiþcweþan", "verb", "wiþcweþe", "wiþcwæþ", "", "", "to contradict"]) + let v = native_list_append(v, ["wiþercweþan", "verb", "wiþercweþe", "wiþercwæþ", "", "", "alternative form of"]) + let v = native_list_append(v, ["yfelcweþan", "verb", "yfelcweþe", "yfelcwæþ", "", "", "to curse"]) + let v = native_list_append(v, ["æftercweþan", "verb", "æftercweþe", "æftercwæþ", "", "", "to speak after"]) + let v = native_list_append(v, ["andcweþan", "verb", "andcweþe", "andcwæþ", "", "", "alternative form of"]) + let v = native_list_append(v, ["bicweþan", "verb", "bicweþe", "bicwæþ", "", "", "alternative form of"]) + let v = native_list_append(v, ["forecweþan", "verb", "forecweþe", "forecwæþ", "", "", "to foretell predict"]) + let v = native_list_append(v, ["acweþan", "verb", "ācweþe", "ācwæþ", "", "", "to say"]) + let v = native_list_append(v, ["forrædan", "verb", "forrǣde", "forrǣdde", "", "", "to deprive of"]) + let v = native_list_append(v, ["oferwyrcan", "verb", "oferwyrċe", "oferworhte", "", "", "to cover by"]) + let v = native_list_append(v, ["misrædan", "verb", "misrǣde", "misrǣdde", "", "", "to counsel amiss"]) + let v = native_list_append(v, ["behelmian", "verb", "behelmiġe", "behelmode", "", "", "to cover over"]) + let v = native_list_append(v, ["oferdrifan", "verb", "oferdrīfe", "oferdrāf", "", "", "to overcome defeat"]) + let v = native_list_append(v, ["bitende", "verb", "bītende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["tosyndrian", "verb", "tōsyndriġe", "tōsyndrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["tosundrian", "verb", "tōsundriġe", "tōsundrode", "", "", "to separate distinguish"]) + let v = native_list_append(v, ["onsundrian", "verb", "onsundriġe", "onsundrode", "", "", "to separate take"]) + let v = native_list_append(v, ["gesyndrian", "verb", "ġesyndriġe", "ġesyndrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["asyndrian", "verb", "āsyndriġe", "āsyndrode", "", "", "alternative form of"]) + let v = native_list_append(v, ["asundrian", "verb", "āsundriġe", "āsundrode", "", "", "to separate"]) + let v = native_list_append(v, ["syndrian", "verb", "syndriġe", "syndrode", "", "", "to sunder separate"]) + let v = native_list_append(v, ["nemnan", "verb", "nemne", "nemde", "", "", "to name call"]) + let v = native_list_append(v, ["anemnan", "verb", "ānemne", "ānemde", "", "", "to declare"]) + let v = native_list_append(v, ["benemnan", "verb", "benemne", "benemde", "", "", "to affirm"]) + let v = native_list_append(v, ["genemnan", "verb", "ġenemne", "ġenemde", "", "", "to give somebody"]) + let v = native_list_append(v, ["tonemnan", "verb", "tōnemne", "tōnemde", "", "", "to name separately"]) + let v = native_list_append(v, ["cenne", "verb", "cenne", "", "", "", "inflection of cennan"]) + let v = native_list_append(v, ["wiþbregdan", "verb", "wiþbreġde", "wiþbræġd", "", "", "to withhold hold"]) + let v = native_list_append(v, ["wiþlædan", "verb", "wiþlǣde", "wiþlǣdde", "", "", "to lead away"]) + let v = native_list_append(v, ["ætlædan", "verb", "ætlǣde", "ætlǣdde", "", "", "to lead out"]) + let v = native_list_append(v, ["æthrinan", "verb", "æthrīne", "æthrān", "", "", "to take move"]) + let v = native_list_append(v, ["ætfleon", "verb", "ætflēo", "ætflēah", "", "", "to flee away"]) + let v = native_list_append(v, ["ætspringan", "verb", "ætspringe", "ætsprang", "", "", "to spring out"]) + let v = native_list_append(v, ["æthealdan", "verb", "æthealde", "æthēold", "", "", "to withhold"]) + let v = native_list_append(v, ["forefon", "verb", "forefō", "forefēng", "", "", "to anticipate take"]) + let v = native_list_append(v, ["forewitan", "verb", "forewāt", "forewisse", "", "", "to foreknow"]) + let v = native_list_append(v, ["foreceorfan", "verb", "foreċeorfe", "foreċearf", "", "", "to cut off"]) + let v = native_list_append(v, ["beþeccan", "verb", "beþeċċe", "beþeahte", "", "", "to cover"]) + let v = native_list_append(v, ["forscyldigian", "verb", "forsċyldigiġe", "forsċyldigode", "", "", "to make guilty"]) + let v = native_list_append(v, ["amearcian", "verb", "āmearciġe", "āmearcode", "", "", "to describe"]) + let v = native_list_append(v, ["gemearcian", "verb", "ġemearciġe", "ġemearcode", "", "", "to mark to"]) + let v = native_list_append(v, ["tomearcian", "verb", "tōmearciġe", "tōmearcode", "", "", "to distinguish"]) + let v = native_list_append(v, ["forþsendan", "verb", "forþsende", "forþsende", "", "", "to send forth"]) + let v = native_list_append(v, ["foresteppan", "verb", "foresteppe", "forestōp", "", "", "to step or"]) + let v = native_list_append(v, ["forestandan", "verb", "forestande", "forestōd", "", "", "to stand before"]) + let v = native_list_append(v, ["fiþerian", "verb", "fiþeriġe", "fiþerode", "", "", "alternative form of"]) + let v = native_list_append(v, ["wuldorfullian", "verb", "wuldorfulliġe", "wuldorfullode", "", "", "to glorify to"]) + let v = native_list_append(v, ["gewuldorfullian", "verb", "ġewuldorfulliġe", "ġewuldorfullode", "", "", "to glorify to"]) + let v = native_list_append(v, ["deal", "adj", "deal", "", "dalu", "", "proud eminent"]) + let v = native_list_append(v, ["fa", "adj", "fa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fere", "adj", "fere", "", "fēru", "", "passable able to"]) + let v = native_list_append(v, ["open", "adj", "open", "", "opene", "", "open"]) + let v = native_list_append(v, ["scarp", "adj", "scarp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["false", "adj", "false", "", "", "", "inflection of fals"]) + let v = native_list_append(v, ["purple", "adj", "purple", "", "", "", "inflection of purpul"]) + let v = native_list_append(v, ["sol", "adj", "sol", "", "solu", "", "dark dirty soiled"]) + let v = native_list_append(v, ["an", "adj", "an", "", "ān", "", "only"]) + let v = native_list_append(v, ["lama", "adj", "lama", "", "lame", "", "lame"]) + let v = native_list_append(v, ["all", "adj", "all", "", "alle", "", "alternative form of"]) + let v = native_list_append(v, ["east", "adj", "ēastra", "ēastemest", "ēast", "", "eastern easterly"]) + let v = native_list_append(v, ["rice", "adj", "rice", "riċost", "rīċu", "", "rich"]) + let v = native_list_append(v, ["god", "adj", "betera", "betest", "gōd", "", "good"]) + let v = native_list_append(v, ["from", "adj", "from", "frommast", "fromu", "", "bold firm resolute"]) + let v = native_list_append(v, ["read", "adj", "read", "", "rēad", "", "red"]) + let v = native_list_append(v, ["wilde", "adj", "wilde", "", "wildu", "", "wild savage"]) + let v = native_list_append(v, ["cost", "adj", "cost", "", "coste", "", "chosen choice"]) + let v = native_list_append(v, ["heard", "adj", "heardra", "heardest", "hearde", "", "hard harsh austere"]) + let v = native_list_append(v, ["hold", "adj", "holdra", "holdost", "holde", "", "gracious loyal kind"]) + let v = native_list_append(v, ["torn", "adj", "torn", "tornost", "torne", "", "bitter painful severe"]) + let v = native_list_append(v, ["won", "adj", "won", "", "wonu", "", "alternative form of"]) + let v = native_list_append(v, ["sot", "adj", "sot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitter", "adj", "bitter", "", "bitteru", "", "alternative form of"]) + let v = native_list_append(v, ["dead", "adj", "dead", "", "dēad", "", "dead"]) + let v = native_list_append(v, ["long", "adj", "long", "", "longe", "", "alternative form of"]) + let v = native_list_append(v, ["near", "adj", "near", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["full", "adj", "full", "", "fulle", "", "full"]) + let v = native_list_append(v, ["gram", "adj", "gram", "", "gramu", "", "angry hostile"]) + let v = native_list_append(v, ["fri", "adj", "fri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rot", "adj", "rōtra", "rōtost", "rōt", "", "glad cheerful"]) + let v = native_list_append(v, ["fag", "adj", "fag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pis", "adj", "pis", "", "pīs", "", "heavy weighty"]) + let v = native_list_append(v, ["half", "adj", "half", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drie", "adj", "drie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tile", "adj", "tile", "", "", "", "inflection of til"]) + let v = native_list_append(v, ["strange", "adj", "strange", "", "", "", "inflection of strang"]) + let v = native_list_append(v, ["mast", "adj", "mast", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["bald", "adj", "bald", "", "balde", "", "alternative form of"]) + let v = native_list_append(v, ["pisa", "adj", "pisa", "", "", "", "inflection of pīs"]) + let v = native_list_append(v, ["strong", "adj", "strong", "", "stronge", "", "alternative form of"]) + let v = native_list_append(v, ["sel", "adj", "sēlra", "sēlest", "sēl", "", "good noble"]) + let v = native_list_append(v, ["linen", "adj", "linen", "", "līnenu", "", "linen"]) + let v = native_list_append(v, ["great", "adj", "grīetra", "grīetest", "grēat", "", "great massive"]) + let v = native_list_append(v, ["bare", "adj", "bare", "", "", "", "inflection of bær"]) + let v = native_list_append(v, ["ton", "adj", "ton", "", "", "", "inflection of tōh"]) + let v = native_list_append(v, ["fah", "adj", "fah", "", "fā", "", "guilty criminal"]) + let v = native_list_append(v, ["tom", "adj", "tom", "", "tōm", "", "empty"]) + let v = native_list_append(v, ["bleat", "adj", "bleat", "", "blēat", "", "wretched miserable"]) + let v = native_list_append(v, ["nytt", "adj", "nyttra", "nyttost", "nytte", "", "useful"]) + let v = native_list_append(v, ["angelic", "adj", "angelic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crumb", "adj", "crumb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ane", "adj", "ane", "", "", "", "inflection of ān"]) + let v = native_list_append(v, ["ruma", "adj", "ruma", "", "", "", "inflection of rūm"]) + let v = native_list_append(v, ["hat", "adj", "hātra", "hātost", "hāt", "", "hot"]) + let v = native_list_append(v, ["wanna", "adj", "wanna", "", "", "", "inflection of wann"]) + let v = native_list_append(v, ["dale", "adj", "dale", "", "", "", "inflection of deal"]) + let v = native_list_append(v, ["has", "adj", "has", "", "hās", "", "hoarse"]) + let v = native_list_append(v, ["ellen", "adj", "ellen", "", "elnu", "", "elder tree elder"]) + let v = native_list_append(v, ["longa", "adj", "longa", "", "", "", "inflection of long"]) + let v = native_list_append(v, ["rote", "adj", "rote", "", "", "", "inflection of rōt"]) + let v = native_list_append(v, ["blanc", "adj", "blanc", "", "blance", "", "white"]) + let v = native_list_append(v, ["ma", "adj", "ma", "", "", "", "more often +"]) + let v = native_list_append(v, ["sec", "adj", "sec", "", "sēc", "", "alternative form of"]) + let v = native_list_append(v, ["nest", "adj", "nest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brada", "adj", "brada", "", "", "", "inflection of brād"]) + let v = native_list_append(v, ["Englisc", "adj", "Englisc", "", "Englisċ", "", "English"]) + let v = native_list_append(v, ["sealt", "adj", "sealt", "", "sealte", "", "salt salty salted"]) + let v = native_list_append(v, ["snawig", "adj", "snawig", "", "snāwiġu", "", "snowy"]) + let v = native_list_append(v, ["deaf", "adj", "deaf", "", "dēaf", "", "deaf"]) + let v = native_list_append(v, ["ange", "adj", "ange", "", "angu", "", "narrow confined tight"]) + let v = native_list_append(v, ["cucu", "adj", "cucu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tam", "adj", "tam", "", "tamu", "", "tame"]) + let v = native_list_append(v, ["tame", "adj", "tame", "", "", "", "inflection of tam"]) + let v = native_list_append(v, ["æwlic", "adj", "æwlic", "", "ǣwlīċ", "", "legal lawful"]) + let v = native_list_append(v, ["scire", "adj", "scire", "", "", "", "inflection of sċīr"]) + let v = native_list_append(v, ["acne", "adj", "acne", "", "", "", "inflection of ācen"]) + let v = native_list_append(v, ["col", "adj", "cōlra", "cōlost", "cōl", "", "cool not hot"]) + let v = native_list_append(v, ["ceorlboren", "adj", "ceorlboren", "", "ċeorlboren", "", "low-born not noble"]) + let v = native_list_append(v, ["þegenboren", "adj", "þegenboren", "", "þeġenboren", "", "alternative form of"]) + let v = native_list_append(v, ["mest", "adj", "mest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swift", "adj", "swiftra", "swiftost", "swifte", "", "swift quick"]) + let v = native_list_append(v, ["cena", "adj", "cena", "", "", "", "inflection of cēne"]) + let v = native_list_append(v, ["wid", "adj", "wid", "", "wīd", "", "wide far"]) + let v = native_list_append(v, ["blind", "adj", "blindra", "blindost", "blinde", "", "blind"]) + let v = native_list_append(v, ["ana", "adj", "ana", "", "āne", "", "sole"]) + let v = native_list_append(v, ["blat", "adj", "blātra", "blātast", "blāt", "", "pale livid ghastly"]) + let v = native_list_append(v, ["brad", "adj", "brādre", "brādost", "brād", "", "wide broad"]) + let v = native_list_append(v, ["brant", "adj", "brant", "", "brante", "", "tall high steep"]) + let v = native_list_append(v, ["crump", "adj", "crump", "", "", "", "bent stooped crooked"]) + let v = native_list_append(v, ["dun", "adj", "dun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hogan", "adj", "hogan", "", "", "", "inflection of hoga"]) + let v = native_list_append(v, ["saran", "adj", "saran", "", "", "", "inflection of sār"]) + let v = native_list_append(v, ["snell", "adj", "snelra", "", "snelle", "", "lively quick rapid"]) + let v = native_list_append(v, ["tat", "adj", "tat", "", "", "", "glad cheerful"]) + let v = native_list_append(v, ["weald", "adj", "weald", "", "wealde", "", "powerful mighty"]) + let v = native_list_append(v, ["fuse", "adj", "fuse", "", "", "", "inflection of fūs"]) + let v = native_list_append(v, ["crisp", "adj", "crisp", "", "", "", "curly"]) + let v = native_list_append(v, ["glade", "adj", "glade", "", "", "", "inflection of glæd"]) + let v = native_list_append(v, ["hale", "adj", "hale", "", "", "", "inflection of hāl"]) + let v = native_list_append(v, ["lease", "adj", "lease", "", "", "", "inflection of lēas"]) + let v = native_list_append(v, ["ripe", "adj", "ripe", "", "rīpu", "", "ripe"]) + let v = native_list_append(v, ["scene", "adj", "scene", "", "sċēnu", "", "alternative form of"]) + let v = native_list_append(v, ["unripe", "adj", "unripe", "", "unrīpu", "", "unripe"]) + let v = native_list_append(v, ["wane", "adj", "wane", "", "", "", "inflection of wana"]) + let v = native_list_append(v, ["cis", "adj", "cis", "", "ċīs", "", "alternative form of"]) + let v = native_list_append(v, ["sade", "adj", "sade", "", "", "", "inflection of sæd"]) + let v = native_list_append(v, ["mage", "adj", "mage", "", "", "", "inflection of maga"]) + let v = native_list_append(v, ["blæc", "adj", "blæc", "", "blacu", "", "black"]) + let v = native_list_append(v, ["cald", "adj", "caldra", "caldast", "calde", "", "alternative form of"]) + let v = native_list_append(v, ["dim", "adj", "dim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rum", "adj", "rum", "", "rūm", "", "spacious roomy"]) + let v = native_list_append(v, ["freo", "adj", "frēora", "", "frēo", "", "free at liberty"]) + let v = native_list_append(v, ["fara", "adj", "fara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hal", "adj", "hal", "", "hāl", "", "sound healthy intact"]) + let v = native_list_append(v, ["maga", "adj", "maga", "", "mage", "", "capable"]) + let v = native_list_append(v, ["brun", "adj", "brun", "", "brūn", "", "brown color/colour"]) + let v = native_list_append(v, ["twin", "adj", "twin", "", "twinne", "", "alternative form of"]) + let v = native_list_append(v, ["melc", "adj", "melc", "", "melce", "", "giving milk"]) + let v = native_list_append(v, ["blinda", "adj", "blinda", "", "", "", "inflection of blind"]) + let v = native_list_append(v, ["stor", "adj", "stor", "", "stōr", "", "great"]) + let v = native_list_append(v, ["sur", "adj", "sur", "", "sūr", "", "sour"]) + let v = native_list_append(v, ["sear", "adj", "sear", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merge", "adj", "merge", "", "merġu", "", "alternative form of"]) + let v = native_list_append(v, ["forma", "adj", "forma", "", "forme", "", "first"]) + let v = native_list_append(v, ["min", "adj", "min", "", "minne", "", "small"]) + let v = native_list_append(v, ["wog", "adj", "wog", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gal", "adj", "gālra", "gālost", "gāl", "", "wanton lustful wicked"]) + let v = native_list_append(v, ["sarge", "adj", "sarge", "", "", "", "inflection of sāriġ"]) + let v = native_list_append(v, ["heh", "adj", "heh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stunt", "adj", "stunt", "", "stunte", "", "stupid foolish"]) + let v = native_list_append(v, ["wo", "adj", "wo", "", "", "", "inflection of wōh"]) + let v = native_list_append(v, ["wann", "adj", "wann", "", "wanne", "", "dark"]) + let v = native_list_append(v, ["lang", "adj", "lengra", "lenġest", "lange", "", "long"]) + let v = native_list_append(v, ["sola", "adj", "sola", "", "", "", "inflection of sol"]) + let v = native_list_append(v, ["regnig", "adj", "regnig", "", "reġniġu", "", "rainy"]) + let v = native_list_append(v, ["ligne", "adj", "ligne", "", "", "", "inflection of līġen"]) + let v = native_list_append(v, ["dumb", "adj", "dumb", "", "dumbe", "", "mute dumb unable"]) + let v = native_list_append(v, ["grim", "adj", "grim", "grimmest", "grimme", "", "alternative form of"]) + let v = native_list_append(v, ["heist", "adj", "heist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brune", "adj", "brune", "", "", "", "inflection of brūn"]) + let v = native_list_append(v, ["grædig", "adj", "grædig", "grǣdgost", "grǣdiġu", "", "hungry ravenous"]) + let v = native_list_append(v, ["ner", "adj", "ner", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["biter", "adj", "biterra", "biterest", "bitere", "", "bitter taste etc."]) + let v = native_list_append(v, ["swot", "adj", "swot", "", "", "", "synonym of swēte"]) + let v = native_list_append(v, ["fula", "adj", "fula", "", "", "", "inflection of fūl"]) + let v = native_list_append(v, ["anne", "adj", "anne", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["wald", "adj", "wald", "", "walde", "", "alternative form of"]) + let v = native_list_append(v, ["sura", "adj", "sura", "", "", "", "inflection of sūr"]) + let v = native_list_append(v, ["toh", "adj", "toh", "", "tō", "", "tough"]) + let v = native_list_append(v, ["har", "adj", "har", "", "hār", "", "grey"]) + let v = native_list_append(v, ["slaw", "adj", "slaw", "", "slāw", "", "lazy"]) + let v = native_list_append(v, ["fremde", "adj", "fremdra", "fremdest", "fremdu", "", "strange"]) + let v = native_list_append(v, ["friþ", "adj", "friþ", "", "frīþ", "", "splendid beautiful"]) + let v = native_list_append(v, ["wlanc", "adj", "wlanc", "", "wlance", "", "proud boastful"]) + let v = native_list_append(v, ["hwæt", "adj", "hwætra", "hwatost", "hwatu", "", "quick"]) + let v = native_list_append(v, ["westen", "adj", "westen", "", "wēstenu", "", "desolate waste"]) + let v = native_list_append(v, ["rug", "adj", "rug", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bara", "adj", "bara", "", "", "", "inflection of bær"]) + let v = native_list_append(v, ["bær", "adj", "bær", "", "baru", "", "bare naked unconcealed"]) + let v = native_list_append(v, ["hnot", "adj", "hnot", "", "hnotte", "", "bald"]) + let v = native_list_append(v, ["til", "adj", "til", "", "tilu", "", "good morally good"]) + let v = native_list_append(v, ["fyrst", "adj", "fyrst", "", "fyrste", "", "alternative form of"]) + let v = native_list_append(v, ["fealu", "adj", "fealu", "", "fealo", "", "yellow dusky grey"]) + let v = native_list_append(v, ["deor", "adj", "deor", "", "dēor", "", "brave bold as"]) + let v = native_list_append(v, ["gleaw", "adj", "glēawra", "glēawast", "glēaw", "", "wise prudent"]) + let v = native_list_append(v, ["snotor", "adj", "snoterra", "snoterost", "snotore", "", "wise clever prudent"]) + let v = native_list_append(v, ["earm", "adj", "earm", "", "earme", "", "poor miserable"]) + let v = native_list_append(v, ["earh", "adj", "earh", "", "earge", "", "alternative form of"]) + let v = native_list_append(v, ["fremda", "adj", "fremda", "", "", "", "inflection of fremde"]) + let v = native_list_append(v, ["ald", "adj", "ældra", "ældest", "alde", "", "alternative form of"]) + let v = native_list_append(v, ["isern", "adj", "isern", "", "īsern", "", "consisting or made"]) + let v = native_list_append(v, ["scir", "adj", "scir", "", "sċīr", "", "bright shining"]) + let v = native_list_append(v, ["geolo", "adj", "geolo", "", "ġeolo", "", "yellow"]) + let v = native_list_append(v, ["ær", "adj", "ǣrra", "ǣrest", "ǣr", "", "early previous former"]) + let v = native_list_append(v, ["agen", "adj", "agen", "", "āgenu", "", "own"]) + let v = native_list_append(v, ["bealo", "adj", "bealo", "", "bealu", "", "alternative form of"]) + let v = native_list_append(v, ["bearneacen", "adj", "bearneacen", "", "bearnēacenu", "", "pregnant"]) + let v = native_list_append(v, ["blac", "adj", "blācra", "blācost", "blāc", "", "pale"]) + let v = native_list_append(v, ["langa", "adj", "langa", "", "", "", "inflection of lang"]) + let v = native_list_append(v, ["siþ", "adj", "sīþra", "sīþmest", "sīþ", "", "late"]) + let v = native_list_append(v, ["ruh", "adj", "ruh", "", "rūh", "", "rough hairy"]) + let v = native_list_append(v, ["riht", "adj", "riht", "rihtost", "rihte", "", "right as opposed"]) + let v = native_list_append(v, ["hest", "adj", "hest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gen", "adj", "gen", "", "", "", "short direct near"]) + let v = native_list_append(v, ["minne", "adj", "minne", "", "", "", "inflection of min"]) + let v = native_list_append(v, ["dyrne", "adj", "dyrne", "", "dyrnu", "", "alternative form of"]) + let v = native_list_append(v, ["forme", "adj", "forme", "", "", "", "inflection of forma"]) + let v = native_list_append(v, ["earg", "adj", "eargra", "eargost", "earge", "", "cowardly"]) + let v = native_list_append(v, ["blaw", "adj", "blaw", "", "blāw", "", "blue"]) + let v = native_list_append(v, ["neah", "adj", "nēar", "nīehst", "nēa", "", "close near"]) + let v = native_list_append(v, ["halig", "adj", "hāliġra", "hālgost", "hāliġu", "", "holy sacred"]) + let v = native_list_append(v, ["eacen", "adj", "eacen", "", "ēacenu", "", "increased enlarged"]) + let v = native_list_append(v, ["geap", "adj", "ġeappre", "ġēapest", "ġēap", "", "crooked bent curved"]) + let v = native_list_append(v, ["dreorig", "adj", "dreorig", "", "drēoriġu", "", "sad"]) + let v = native_list_append(v, ["cwic", "adj", "cwic", "", "cwicu", "", "alive live living"]) + let v = native_list_append(v, ["cearig", "adj", "cearig", "", "ċeariġ", "", "alternative form of"]) + let v = native_list_append(v, ["linden", "adj", "linden", "", "lindenu", "", "made of lime-wood"]) + let v = native_list_append(v, ["hefig", "adj", "hefiġra", "hefiġost", "hefiġ", "", "heavy"]) + let v = native_list_append(v, ["wund", "adj", "wund", "", "wunde", "", "wounded injured sore"]) + let v = native_list_append(v, ["swæs", "adj", "swæs", "", "swǣs", "", "dear beloved"]) + let v = native_list_append(v, ["midd", "adj", "midd", "midmest", "midde", "", "middle"]) + let v = native_list_append(v, ["wod", "adj", "wod", "", "wōd", "", "crazy insane mad"]) + let v = native_list_append(v, ["unriht", "adj", "unriht", "", "unrihte", "", "not right wrong"]) + let v = native_list_append(v, ["forn", "adj", "forn", "", "", "", "old longstanding time-honoured"]) + let v = native_list_append(v, ["geþyldig", "adj", "geþyldig", "", "ġeþyldiġu", "", "patient"]) + let v = native_list_append(v, ["hatheort", "adj", "hātheortra", "", "hātheort", "", "furious enraged"]) + let v = native_list_append(v, ["eadig", "adj", "eadig", "ēadġest", "ēadiġu", "", "happy prosperous blessed"]) + let v = native_list_append(v, ["wynful", "adj", "wynful", "", "wynfulle", "", "joyful happy"]) + let v = native_list_append(v, ["bliþe", "adj", "blīþra", "blīþost", "blīþu", "", "happy"]) + let v = native_list_append(v, ["scenes", "adj", "scenes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["laþ", "adj", "lāþra", "lāþost", "lāþ", "", "loathsome hateful unpleasant"]) + let v = native_list_append(v, ["breme", "adj", "breme", "brēmest", "brēmu", "", "famous renowned glorious"]) + let v = native_list_append(v, ["geboren", "adj", "geboren", "", "ġeboren", "", "born"]) + let v = native_list_append(v, ["tinge", "adj", "tinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stores", "adj", "stores", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["grom", "adj", "grom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ful", "adj", "ful", "", "fulle", "", "alternative form of"]) + let v = native_list_append(v, ["frig", "adj", "frig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leaden", "adj", "leaden", "", "lēadenu", "", "alternative form of"]) + let v = native_list_append(v, ["dol", "adj", "dolra", "dolost", "dolu", "", "foolish"]) + let v = native_list_append(v, ["sid", "adj", "sid", "", "sīd", "", "wide spacious vast"]) + let v = native_list_append(v, ["blonc", "adj", "blonc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rance", "adj", "rance", "", "", "", "inflection of ranc"]) + let v = native_list_append(v, ["cel", "adj", "cel", "", "", "", "synonym of cōl"]) + let v = native_list_append(v, ["hara", "adj", "hara", "", "", "", "inflection of hār"]) + let v = native_list_append(v, ["rica", "adj", "rica", "", "", "", "inflection of rīċe"]) + let v = native_list_append(v, ["gemet", "adj", "gemet", "", "ġemet", "", "fit proper meet"]) + let v = native_list_append(v, ["arg", "adj", "arg", "", "arge", "", "alternative form of"]) + let v = native_list_append(v, ["sare", "adj", "sare", "", "", "", "inflection of sār"]) + let v = native_list_append(v, ["ripa", "adj", "ripa", "", "", "", "inflection of rīpe"]) + let v = native_list_append(v, ["sar", "adj", "sar", "", "sār", "", "painful"]) + let v = native_list_append(v, ["fala", "adj", "fala", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sella", "adj", "sella", "", "sēlle", "", "comparative degree of"]) + let v = native_list_append(v, ["wæt", "adj", "wæt", "", "wǣt", "", "wet"]) + let v = native_list_append(v, ["ofermod", "adj", "ofermod", "", "ofermōd", "", "proud"]) + let v = native_list_append(v, ["twegen", "adj", "twegen", "", "twā", "", "two"]) + let v = native_list_append(v, ["middel", "adj", "middel", "midlest", "middelu", "", "middle in the"]) + let v = native_list_append(v, ["galfull", "adj", "galfull", "", "gālfull", "", "lustful lascivious"]) + let v = native_list_append(v, ["acene", "adj", "acene", "", "", "", "inflection of ācen"]) + let v = native_list_append(v, ["beorht", "adj", "beorhtra", "beorhtost", "beorhte", "", "bright clear"]) + let v = native_list_append(v, ["ungelic", "adj", "ungelic", "", "unġelīċ", "", "different"]) + let v = native_list_append(v, ["gelic", "adj", "ġelīcra", "ġelīċust", "ġelīċ", "", "like similar the"]) + let v = native_list_append(v, ["basu", "adj", "basu", "", "baso", "", "purple scarlet crimson"]) + let v = native_list_append(v, ["yppe", "adj", "yppe", "", "yppu", "", "known"]) + let v = native_list_append(v, ["geomor", "adj", "geomor", "", "ġeōmoru", "", "sad sorrowful mournful"]) + let v = native_list_append(v, ["weþe", "adj", "weþe", "", "wēþu", "", "mild pleasant"]) + let v = native_list_append(v, ["mara", "adj", "mara", "", "māre", "", "comparative degree of"]) + let v = native_list_append(v, ["feasceaft", "adj", "feasceaft", "", "fēasċeaft", "", "Having few things"]) + let v = native_list_append(v, ["æghwilc", "adj", "æghwilc", "", "ǣġhwilċ", "", "alternative form of"]) + let v = native_list_append(v, ["felahror", "adj", "felahror", "", "felahrōr", "", "very active having"]) + let v = native_list_append(v, ["leof", "adj", "lēofra", "lēofest", "lēof", "", "dear beloved"]) + let v = native_list_append(v, ["rotan", "adj", "rotan", "", "", "", "inflection of rōt"]) + let v = native_list_append(v, ["lytel", "adj", "lǣssa", "lǣst", "lȳtelu", "", "small little"]) + let v = native_list_append(v, ["gefræge", "adj", "gefræge", "ġefrǣgost", "ġefrǣġu", "", "known celebrated remarkable"]) + let v = native_list_append(v, ["heah", "adj", "hīerra", "hīehst", "hēah", "", "high tall"]) + let v = native_list_append(v, ["gamol", "adj", "gamol", "", "gamole", "", "old ancient"]) + let v = native_list_append(v, ["weorþ", "adj", "weorþra", "weorþost", "weorþe", "", "worth deserving"]) + let v = native_list_append(v, ["wisest", "adj", "wisest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["idles", "adj", "idles", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["earfoþe", "adj", "earfoþra", "earfoþost", "earfoþu", "", "hard difficult"]) + let v = native_list_append(v, ["hlud", "adj", "hlūdra", "hlūdast", "hlūd", "", "loud"]) + let v = native_list_append(v, ["sweotol", "adj", "sweotol", "sweotolost", "sweotole", "", "clear intelligible evident"]) + let v = native_list_append(v, ["cuþ", "adj", "cūþra", "cūþost", "cūþ", "", "known"]) + let v = native_list_append(v, ["uncuþ", "adj", "uncuþ", "", "uncūþ", "", "unknown"]) + let v = native_list_append(v, ["cuþe", "adj", "cuþe", "", "", "", "inflection of cūþ"]) + let v = native_list_append(v, ["wlitebeorht", "adj", "wlitebeorht", "", "wlitebeorhte", "", "beautiful"]) + let v = native_list_append(v, ["sigehreþig", "adj", "sigehreþig", "", "siġehrēþiġu", "", "triumphant"]) + let v = native_list_append(v, ["mære", "adj", "mǣrra", "mǣrost", "mǣru", "", "great excellent splendid"]) + let v = native_list_append(v, ["wansælig", "adj", "wansælig", "", "wansǣliġu", "", "unhappy"]) + let v = native_list_append(v, ["forliger", "adj", "forliger", "", "forliġer", "", "adulterous immoral"]) + let v = native_list_append(v, ["hæþen", "adj", "hæþen", "", "hǣþenu", "", "pagan heathen"]) + let v = native_list_append(v, ["niwe", "adj", "niwe", "", "nīwu", "", "alternative form of"]) + let v = native_list_append(v, ["nearu", "adj", "nearora", "nearwost", "nearo", "", "narrow"]) + let v = native_list_append(v, ["eall", "adj", "eall", "", "ealle", "", "all"]) + let v = native_list_append(v, ["efen", "adj", "efen", "", "efene", "", "alternative form of"]) + let v = native_list_append(v, ["ænlic", "adj", "ǣnlīcra", "ǣnlīcost", "ǣnlīċ", "", "only sole"]) + let v = native_list_append(v, ["swete", "adj", "swētra", "swētest", "swētu", "", "sweet of smell"]) + let v = native_list_append(v, ["betera", "adj", "betera", "", "betere", "", "comparative degree of"]) + let v = native_list_append(v, ["betest", "adj", "betest", "", "beteste", "", "superlative degree of"]) + let v = native_list_append(v, ["bisig", "adj", "bisig", "", "bisiġ", "", "busy"]) + let v = native_list_append(v, ["cene", "adj", "cene", "", "cēnu", "", "bold"]) + let v = native_list_append(v, ["clæne", "adj", "clæne", "", "clǣnu", "", "clean"]) + let v = native_list_append(v, ["cynde", "adj", "cynde", "", "cyndu", "", "innate"]) + let v = native_list_append(v, ["dæfte", "adj", "dæfte", "", "dæftu", "", "accommodating meek mild"]) + let v = native_list_append(v, ["dafen", "adj", "dafen", "", "dafene", "", "becoming fit suitable"]) + let v = native_list_append(v, ["deop", "adj", "dēopra", "dēopost", "dēop", "", "deep"]) + let v = native_list_append(v, ["deorc", "adj", "deorcra", "deorcost", "deorce", "", "dark"]) + let v = native_list_append(v, ["deore", "adj", "deore", "", "dēoru", "", "alternative form of"]) + let v = native_list_append(v, ["dimm", "adj", "dimm", "", "dimme", "", "dim"]) + let v = native_list_append(v, ["dryge", "adj", "dryge", "", "drȳġu", "", "dry"]) + let v = native_list_append(v, ["dysig", "adj", "dysigra", "dysigast", "dysiġ", "", "stupid or foolish"]) + let v = native_list_append(v, ["fæger", "adj", "fæġerra", "fæġerost", "fæġer", "", "beautiful"]) + let v = native_list_append(v, ["ficol", "adj", "ficol", "", "ficole", "", "deceitful"]) + let v = native_list_append(v, ["fæst", "adj", "fæst", "fæstost", "fæste", "", "firm stable constant"]) + let v = native_list_append(v, ["feaw", "adj", "feaw", "fēawost", "fēaw", "", "few"]) + let v = native_list_append(v, ["feor", "adj", "feor", "", "feorre", "", "alternative form of"]) + let v = native_list_append(v, ["fram", "adj", "fram", "", "framu", "", "forward firm bold"]) + let v = native_list_append(v, ["cranc", "adj", "cranc", "", "crance", "", "weak"]) + let v = native_list_append(v, ["glæd", "adj", "glædra", "gladost", "gladu", "", "glad"]) + let v = native_list_append(v, ["græg", "adj", "græg", "", "grǣġ", "", "grey"]) + let v = native_list_append(v, ["grene", "adj", "grene", "", "grēnu", "", "green"]) + let v = native_list_append(v, ["geolu", "adj", "geolu", "", "ġeolu", "", "yellow"]) + let v = native_list_append(v, ["healf", "adj", "healf", "", "healfe", "", "half"]) + let v = native_list_append(v, ["hræd", "adj", "hrædra", "hradost", "hradu", "", "fast quick"]) + let v = native_list_append(v, ["hreaw", "adj", "hreaw", "", "hrēaw", "", "raw"]) + let v = native_list_append(v, ["hreow", "adj", "hreow", "", "hrēow", "", "sad"]) + let v = native_list_append(v, ["fifta", "adj", "fifta", "", "fīfte", "", "fifth"]) + let v = native_list_append(v, ["feorþa", "adj", "feorþa", "", "fēorþe", "", "fourth"]) + let v = native_list_append(v, ["þridda", "adj", "þridda", "", "þridde", "", "third"]) + let v = native_list_append(v, ["eahtoþa", "adj", "eahtoþa", "", "eahtoþe", "", "eighth"]) + let v = native_list_append(v, ["seofoþa", "adj", "seofoþa", "", "seofoþe", "", "seventh"]) + let v = native_list_append(v, ["nigoþa", "adj", "nigoþa", "", "nigoþe", "", "ninth"]) + let v = native_list_append(v, ["oþer", "adj", "oþer", "", "ōþru", "", "other"]) + let v = native_list_append(v, ["teoþa", "adj", "teoþa", "", "tēoþe", "", "tenth"]) + let v = native_list_append(v, ["hwit", "adj", "hwītra", "hwīttost", "hwīt", "", "white"]) + let v = native_list_append(v, ["idel", "adj", "idel", "īdelst", "īdelu", "", "empty void bereft"]) + let v = native_list_append(v, ["læt", "adj", "lætra", "latost", "latu", "", "slow"]) + let v = native_list_append(v, ["latost", "adj", "latost", "", "latoste", "", "superlative degree of"]) + let v = native_list_append(v, ["lænan", "adj", "lænan", "", "", "", "inflection of lǣne"]) + let v = native_list_append(v, ["leoht", "adj", "lēohtra", "lēohtest", "lēoht", "", "light bright clear"]) + let v = native_list_append(v, ["liþe", "adj", "līþra", "līþost", "līþu", "", "gentle mild pleasant"]) + let v = native_list_append(v, ["manig", "adj", "manig", "", "maniġ", "", "many"]) + let v = native_list_append(v, ["miht", "adj", "miht", "", "", "", "mighty powerful"]) + let v = native_list_append(v, ["mæne", "adj", "mæne", "", "mǣnu", "", "common"]) + let v = native_list_append(v, ["mæst", "adj", "mæst", "", "mǣst", "", "superlative degree of"]) + let v = native_list_append(v, ["mihtig", "adj", "mihtig", "mihtigost", "mihtiġu", "", "powerful mighty able"]) + let v = native_list_append(v, ["milde", "adj", "milde", "mildust", "mildu", "", "mild gentle kind"]) + let v = native_list_append(v, ["mycel", "adj", "mycel", "", "myċel", "", "alternative form of"]) + let v = native_list_append(v, ["myrige", "adj", "myrige", "", "myriġu", "", "alternative form of"]) + let v = native_list_append(v, ["nacod", "adj", "nacod", "", "nacode", "", "naked"]) + let v = native_list_append(v, ["genog", "adj", "genog", "", "ġenōg", "", "enough sufficient"]) + let v = native_list_append(v, ["norþ", "adj", "norþerra", "norþmest", "norþe", "", "north"]) + let v = native_list_append(v, ["nehst", "adj", "nehst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neh", "adj", "neh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geon", "adj", "geon", "", "ġeonu", "", "that yon"]) + let v = native_list_append(v, ["geong", "adj", "ġingra", "ġinġest", "ġeong", "", "young"]) + let v = native_list_append(v, ["prud", "adj", "prud", "", "prūd", "", "proud"]) + let v = native_list_append(v, ["sweart", "adj", "sweart", "sweartest", "swearte", "", "black"]) + let v = native_list_append(v, ["ranc", "adj", "ranc", "", "rance", "", "proud haughty arrogant"]) + let v = native_list_append(v, ["sarig", "adj", "sarig", "sāriġest", "sāriġu", "", "sad sorrowful distressed"]) + let v = native_list_append(v, ["sæd", "adj", "sæd", "", "sadu", "", "full sated"]) + let v = native_list_append(v, ["sælig", "adj", "sælig", "", "sǣliġu", "", "lucky fortunate prosperous"]) + let v = native_list_append(v, ["scearp", "adj", "sċearpre", "sċearpest", "sċearp", "", "sharp"]) + let v = native_list_append(v, ["scort", "adj", "sċiertra", "sċiertest", "sċort", "", "short"]) + let v = native_list_append(v, ["salu", "adj", "salu", "", "salo", "", "dusky"]) + let v = native_list_append(v, ["sefte", "adj", "sefte", "", "sēftu", "", "soft luxurious"]) + let v = native_list_append(v, ["seoc", "adj", "seoc", "", "sēoc", "", "sick"]) + let v = native_list_append(v, ["smæl", "adj", "smælra", "smælest", "smalu", "", "narrow slim not"]) + let v = native_list_append(v, ["smeþe", "adj", "smeþe", "", "smēþu", "", "smooth"]) + let v = native_list_append(v, ["soþ", "adj", "soþ", "sōþest", "sōþ", "", "true real"]) + let v = native_list_append(v, ["spær", "adj", "spær", "", "sparu", "", "scanty"]) + let v = native_list_append(v, ["steap", "adj", "steap", "", "stēap", "", "steep"]) + let v = native_list_append(v, ["stearc", "adj", "stearc", "", "stearce", "", "severe stern harsh"]) + let v = native_list_append(v, ["stille", "adj", "stille", "", "stillu", "", "still"]) + let v = native_list_append(v, ["strang", "adj", "strengra", "strenġest", "strange", "", "strong"]) + let v = native_list_append(v, ["suþ", "adj", "sūþra", "sūþmest", "sūþ", "", "south"]) + let v = native_list_append(v, ["toweard", "adj", "toweard", "", "tōweard", "", "future"]) + let v = native_list_append(v, ["treowe", "adj", "treowe", "trēowest", "trēowu", "", "alternative form of"]) + let v = native_list_append(v, ["þicce", "adj", "þicce", "", "þiccu", "", "thick"]) + let v = native_list_append(v, ["reþe", "adj", "reþe", "", "rēþu", "", "fierce cruel savage"]) + let v = native_list_append(v, ["hremig", "adj", "hrēmiġra", "hrēmigost", "hrēmiġu", "", "loud with emotion"]) + let v = native_list_append(v, ["þynne", "adj", "þynra", "þynnest", "þynnu", "", "thin"]) + let v = native_list_append(v, ["wac", "adj", "wācra", "", "wāc", "", "pliant"]) + let v = native_list_append(v, ["gewær", "adj", "gewær", "", "ġewaru", "", "aware +genitive of"]) + let v = native_list_append(v, ["wær", "adj", "wær", "", "waru", "", "cautious on guard"]) + let v = native_list_append(v, ["werig", "adj", "werig", "", "wēriġu", "", "weary tired exhausted"]) + let v = native_list_append(v, ["wis", "adj", "wīsra", "wīsest", "wīs", "", "wise"]) + let v = native_list_append(v, ["ærgod", "adj", "ærgod", "", "ǣrgōd", "", "good of old"]) + let v = native_list_append(v, ["þryþswiþ", "adj", "þryþswiþ", "", "þrȳþswīþ", "", "mighty"]) + let v = native_list_append(v, ["fremede", "adj", "fremede", "", "fremedu", "", "alternative form of"]) + let v = native_list_append(v, ["wrang", "adj", "wrang", "", "wrange", "", "rough uneven"]) + let v = native_list_append(v, ["wraþ", "adj", "wraþ", "", "wrāþ", "", "very angry irate"]) + let v = native_list_append(v, ["wearm", "adj", "wearm", "", "wearme", "", "warm"]) + let v = native_list_append(v, ["wynsum", "adj", "wynsum", "wynsumast", "wynsumu", "", "pleasant"]) + let v = native_list_append(v, ["wyrsa", "adj", "wyrsa", "", "wyrse", "", "alternative form of"]) + let v = native_list_append(v, ["yfel", "adj", "wiersa", "wierrest", "yfele", "", "bad"]) + let v = native_list_append(v, ["fyren", "adj", "fyren", "", "fȳrenu", "", "fiery"]) + let v = native_list_append(v, ["soþlic", "adj", "soþlic", "", "sōþlīċ", "", "true sincere"]) + let v = native_list_append(v, ["eldra", "adj", "eldra", "", "eldre", "", "alternative form of"]) + let v = native_list_append(v, ["fersc", "adj", "fersc", "", "fersċ", "", "fresh"]) + let v = native_list_append(v, ["eaþ", "adj", "eaþ", "", "ēaþ", "", "alternative form of"]) + let v = native_list_append(v, ["georn", "adj", "ġeornra", "ġeornast", "ġeorn", "", "eager"]) + let v = native_list_append(v, ["hean", "adj", "hean", "", "hēan", "", "low mean abject"]) + let v = native_list_append(v, ["gesund", "adj", "ġesundra", "", "ġesund", "", "healthy"]) + let v = native_list_append(v, ["swar", "adj", "swar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reht", "adj", "reht", "", "rehte", "", "alternative form of"]) + let v = native_list_append(v, ["blodi", "adj", "blodi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["liht", "adj", "liht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fuht", "adj", "fuht", "", "fūht", "", "moist damp"]) + let v = native_list_append(v, ["sceoh", "adj", "sceoh", "", "sċēoh", "", "shy"]) + let v = native_list_append(v, ["fæge", "adj", "fæge", "", "fǣġu", "", "fey doomed to"]) + let v = native_list_append(v, ["forhta", "adj", "forhta", "", "", "", "inflection of forht"]) + let v = native_list_append(v, ["hræþ", "adj", "hræþ", "", "hraþu", "", "alternative form of"]) + let v = native_list_append(v, ["Norn", "adj", "Norn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calo", "adj", "calo", "", "", "", "inflection of calu"]) + let v = native_list_append(v, ["soles", "adj", "soles", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["bærlic", "adj", "bærlic", "", "bærlīċ", "", "barley-like"]) + let v = native_list_append(v, ["fela", "adj", "fela", "", "", "", "many"]) + let v = native_list_append(v, ["singal", "adj", "singal", "", "singalu", "", "constant continuous perpetual"]) + let v = native_list_append(v, ["atol", "adj", "atol", "", "atole", "", "terrible dire hideous"]) + let v = native_list_append(v, ["sincfag", "adj", "sincfag", "", "sincfāg", "", "adorned with treasure"]) + let v = native_list_append(v, ["wited", "adj", "wited", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smolt", "adj", "smolt", "", "", "", "serene quiet peaceful"]) + let v = native_list_append(v, ["nep", "adj", "nep", "", "", "", "scanty lacking"]) + let v = native_list_append(v, ["swiþferhþ", "adj", "swiþferhþ", "", "swīþferhþ", "", "strong-hearted brave daring"]) + let v = native_list_append(v, ["swiþ", "adj", "swiþ", "swīþust", "swīþ", "", "strong mighty"]) + let v = native_list_append(v, ["baso", "adj", "baso", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cenes", "adj", "cenes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["acenes", "adj", "acenes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["forman", "adj", "forman", "", "", "", "inflection of forma"]) + let v = native_list_append(v, ["hunden", "adj", "hunden", "", "hundenu", "", "dog canine"]) + let v = native_list_append(v, ["sliþe", "adj", "slīþra", "slīþost", "slīþu", "", "formed moulded shaped"]) + let v = native_list_append(v, ["laman", "adj", "laman", "", "", "", "inflection of lama"]) + let v = native_list_append(v, ["medren", "adj", "medren", "", "mēdrenu", "", "maternal of lineage"]) + let v = native_list_append(v, ["torna", "adj", "torna", "", "", "", "inflection of torn"]) + let v = native_list_append(v, ["torne", "adj", "torne", "", "", "", "inflection of torn"]) + let v = native_list_append(v, ["tornes", "adj", "tornes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["gehende", "adj", "gehende", "", "ġehendu", "", "close near nearby"]) + let v = native_list_append(v, ["gaf", "adj", "gaf", "", "", "", "base vile lewd"]) + let v = native_list_append(v, ["tiles", "adj", "tiles", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["gales", "adj", "gales", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["scena", "adj", "scena", "", "", "", "inflection of sċēne"]) + let v = native_list_append(v, ["scortum", "adj", "scortum", "", "", "", "inflection of sċort"]) + let v = native_list_append(v, ["rustig", "adj", "rustig", "", "rustiġu", "", "rusty"]) + let v = native_list_append(v, ["leases", "adj", "leases", "", "", "", "strong genitive masculine/feminine"]) + let v = native_list_append(v, ["manful", "adj", "manful", "", "mānful", "", "wicked evil dire"]) + let v = native_list_append(v, ["renig", "adj", "renig", "", "rēniġu", "", "alternative form of"]) + let v = native_list_append(v, ["sixte", "adj", "sixte", "", "", "", "inflection of sixta"]) + let v = native_list_append(v, ["þeodenleas", "adj", "þeodenleas", "", "þēodenlēas", "", "leaderless without leadership"]) + let v = native_list_append(v, ["anum", "adj", "anum", "", "", "", "inflection of ān"]) + let v = native_list_append(v, ["merges", "adj", "merges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["woh", "adj", "woh", "", "wōh", "", "wrong"]) + let v = native_list_append(v, ["nytta", "adj", "nytta", "", "", "", "inflection of nytt"]) + let v = native_list_append(v, ["grimmest", "adj", "grimmest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["fus", "adj", "fus", "", "fūs", "", "ready eager striving"]) + let v = native_list_append(v, ["longan", "adj", "longan", "", "", "", "inflection of long"]) + let v = native_list_append(v, ["wlitig", "adj", "wlitiġra", "wlitegost", "wlitiġ", "", "beautiful"]) + let v = native_list_append(v, ["swyþ", "adj", "swyþ", "", "swȳþ", "", "alternative spelling of"]) + let v = native_list_append(v, ["niþgrimm", "adj", "niþgrimm", "", "nīþgrimm", "", "hostile battle-fierce"]) + let v = native_list_append(v, ["prut", "adj", "prut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hygerof", "adj", "hygerof", "", "hyġerōf", "", "strong-minded magnanimous"]) + let v = native_list_append(v, ["hæl", "adj", "hæl", "", "hǣl", "", "alternative form of"]) + let v = native_list_append(v, ["lagucræftig", "adj", "lagucræftig", "", "lagucræftiġu", "", "skilled at seamanship"]) + let v = native_list_append(v, ["geatolic", "adj", "geatolic", "", "ġeatolīċ", "", "splendid adorned"]) + let v = native_list_append(v, ["dimma", "adj", "dimma", "", "", "", "inflection of dimm"]) + let v = native_list_append(v, ["eaþe", "adj", "eaþe", "", "ēaþu", "", "alternative form of"]) + let v = native_list_append(v, ["sceard", "adj", "sceard", "", "sċeard", "", "notched chipped broken"]) + let v = native_list_append(v, ["deogol", "adj", "deogol", "", "dēogolu", "", "alternative form of"]) + let v = native_list_append(v, ["frod", "adj", "frōdra", "", "frōd", "", "wise experienced"]) + let v = native_list_append(v, ["bealu", "adj", "bealu", "", "bealo", "", "baleful deadly dangerous"]) + let v = native_list_append(v, ["unforht", "adj", "unforhtra", "unforhtost", "unforhte", "", "unafraid fearless"]) + let v = native_list_append(v, ["gifeþe", "adj", "gifeþe", "", "ġifeþu", "", "granted"]) + let v = native_list_append(v, ["sidfæþmed", "adj", "sidfæþmed", "", "sīdfæþmedu", "", "broad-beamed broad-bosomed"]) + let v = native_list_append(v, ["ealdorleas", "adj", "ealdorleas", "", "ealdorlēas", "", "leaderless lacking a"]) + let v = native_list_append(v, ["ealdorlease", "adj", "ealdorlease", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["aldorleas", "adj", "aldorleas", "", "aldorlēas", "", "alternative form of"]) + let v = native_list_append(v, ["fromum", "adj", "fromum", "", "", "", "inflection of from"]) + let v = native_list_append(v, ["ærest", "adj", "ærest", "", "ǣrest", "", "superlative degree of"]) + let v = native_list_append(v, ["manegum", "adj", "manegum", "", "", "", "inflection of maniġ"]) + let v = native_list_append(v, ["monegum", "adj", "monegum", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["swæse", "adj", "swæse", "", "", "", "inflection of swǣs"]) + let v = native_list_append(v, ["isig", "adj", "isig", "", "īsiġu", "", "icy"]) + let v = native_list_append(v, ["utfus", "adj", "utfus", "", "ūtfūs", "", "eager to leave"]) + let v = native_list_append(v, ["selfa", "adj", "selfa", "", "", "", "inflection of self"]) + let v = native_list_append(v, ["leofne", "adj", "leofne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["mærne", "adj", "mærne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["mæste", "adj", "mæste", "", "", "", "inflection of mǣst"]) + let v = native_list_append(v, ["guþmod", "adj", "guþmod", "", "gūþmōd", "", "having a heart"]) + let v = native_list_append(v, ["læssa", "adj", "læssa", "", "lǣsse", "", "comparative degree of"]) + let v = native_list_append(v, ["gylden", "adj", "gylden", "", "gyldenu", "", "golden relational gold"]) + let v = native_list_append(v, ["ænne", "adj", "ænne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["soþe", "adj", "soþe", "", "", "", "inflection of sōþ"]) + let v = native_list_append(v, ["calde", "adj", "calde", "", "", "", "inflection of cald"]) + let v = native_list_append(v, ["brade", "adj", "brade", "", "", "", "inflection of brād"]) + let v = native_list_append(v, ["goldfah", "adj", "goldfah", "", "goldfāh", "", "ornamented or adorned"]) + let v = native_list_append(v, ["tila", "adj", "tila", "", "", "", "inflection of til"]) + let v = native_list_append(v, ["hildedeor", "adj", "hildedeor", "", "hildedēor", "", "brave in battle"]) + let v = native_list_append(v, ["modig", "adj", "modig", "mōdgast", "mōdiġu", "", "proud"]) + let v = native_list_append(v, ["torht", "adj", "torhtra", "torhtost", "torhte", "", "bright shiny radiant"]) + let v = native_list_append(v, ["stanfah", "adj", "stanfah", "", "stānfāh", "", "worked with stones"]) + let v = native_list_append(v, ["sæmeþe", "adj", "sæmeþe", "", "sǣmēþu", "", "sea-weary"]) + let v = native_list_append(v, ["modiglic", "adj", "modiglic", "", "mōdiġlīċ", "", "brave-looking"]) + let v = native_list_append(v, ["elþeodig", "adj", "elþeodig", "", "elþēodiġu", "", "foreign strange"]) + let v = native_list_append(v, ["ruman", "adj", "ruman", "", "", "", "inflection of rūm"]) + let v = native_list_append(v, ["maran", "adj", "maran", "", "", "", "inflection of māra"]) + let v = native_list_append(v, ["frode", "adj", "frode", "", "", "", "inflection of frōd"]) + let v = native_list_append(v, ["froda", "adj", "froda", "", "", "", "inflection of frōd"]) + let v = native_list_append(v, ["glid", "adj", "glid", "", "", "", "slippery"]) + let v = native_list_append(v, ["leas", "adj", "lēasra", "lēasost", "lēas", "", "false"]) + let v = native_list_append(v, ["sarges", "adj", "sarges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["tilan", "adj", "tilan", "", "", "", "inflection of til"]) + let v = native_list_append(v, ["merga", "adj", "merga", "", "", "", "inflection of merġe"]) + let v = native_list_append(v, ["eald", "adj", "ieldra", "ieldest", "ealde", "", "old"]) + let v = native_list_append(v, ["wone", "adj", "wone", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["scorta", "adj", "scorta", "", "", "", "inflection of sċort"]) + let v = native_list_append(v, ["scorte", "adj", "scorte", "", "", "", "inflection of sċort"]) + let v = native_list_append(v, ["gewiss", "adj", "gewiss", "ġewissost", "ġewiss", "", "sure + genitive"]) + let v = native_list_append(v, ["ungewiss", "adj", "ungewiss", "", "unġewiss", "", "ignorant + genitive"]) + let v = native_list_append(v, ["lef", "adj", "lef", "", "lēf", "", "weak frail sick"]) + let v = native_list_append(v, ["dyhtig", "adj", "dyhtig", "", "dyhtiġu", "", "doughty strong valiant"]) + let v = native_list_append(v, ["glædman", "adj", "glædmanra", "glædmanost", "glædmanu", "", "gracious kind"]) + let v = native_list_append(v, ["wyrþe", "adj", "wyrþra", "wyrþost", "wyrþu", "", "alternative form of"]) + let v = native_list_append(v, ["cnihtwesende", "adj", "cnihtwesende", "", "cnihtwesendu", "", "young boyish"]) + let v = native_list_append(v, ["micel", "adj", "māra", "mǣst", "miċel", "", "big large great"]) + let v = native_list_append(v, ["rosen", "adj", "rosen", "", "rōsenu", "", "rose rosy"]) + let v = native_list_append(v, ["ecu", "adj", "ecu", "", "", "", "inflection of ēċe"]) + let v = native_list_append(v, ["mæna", "adj", "mæna", "", "", "", "inflection of mǣne"]) + let v = native_list_append(v, ["linnen", "adj", "linnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holdne", "adj", "holdne", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["glades", "adj", "glades", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["gebogen", "adj", "gebogen", "", "ġebogen", "", "bent curved"]) + let v = native_list_append(v, ["fea", "adj", "fea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lieden", "adj", "lieden", "", "līedenu", "", "lead"]) + let v = native_list_append(v, ["atelic", "adj", "atelic", "", "", "", "horrible horrid"]) + let v = native_list_append(v, ["horige", "adj", "horige", "", "", "", "inflection of horiġ"]) + let v = native_list_append(v, ["freme", "adj", "freme", "", "fremu", "", "vigorous flourishing"]) + let v = native_list_append(v, ["acnes", "adj", "acnes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["heare", "adj", "heare", "", "", "", "strong feminine genitive/dative"]) + let v = native_list_append(v, ["deade", "adj", "deade", "", "", "", "inflection of dēad"]) + let v = native_list_append(v, ["fals", "adj", "fals", "", "false", "", "false"]) + let v = native_list_append(v, ["hamel", "adj", "hamel", "", "hamele", "", "broken rugged"]) + let v = native_list_append(v, ["hea", "adj", "hea", "", "", "", "inflection of hēah"]) + let v = native_list_append(v, ["caldre", "adj", "caldre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["hungrig", "adj", "hungrig", "", "hungriġu", "", "hungry"]) + let v = native_list_append(v, ["glæde", "adj", "glæde", "", "", "", "inflection of glæd"]) + let v = native_list_append(v, ["wana", "adj", "wana", "", "wane", "", "want of necessaries"]) + let v = native_list_append(v, ["frec", "adj", "frec", "", "frecu", "", "greedy bold"]) + let v = native_list_append(v, ["sandig", "adj", "sandig", "", "sandiġu", "", "sandy"]) + let v = native_list_append(v, ["findig", "adj", "findig", "", "findiġu", "", "capable"]) + let v = native_list_append(v, ["reade", "adj", "reade", "", "", "", "inflection of rēad"]) + let v = native_list_append(v, ["sara", "adj", "sara", "", "", "", "inflection of sār"]) + let v = native_list_append(v, ["gedefe", "adj", "gedefe", "ġedēfust", "ġedēfu", "", "appropriate fitting seemly"]) + let v = native_list_append(v, ["hwealf", "adj", "hwealf", "", "hwealfe", "", "arched vaulted hollow"]) + let v = native_list_append(v, ["guþrof", "adj", "guþrof", "", "gūþrōf", "", "battle-famous"]) + let v = native_list_append(v, ["blinde", "adj", "blinde", "", "", "", "inflection of blind"]) + let v = native_list_append(v, ["rices", "adj", "rices", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["diere", "adj", "diere", "", "dīeru", "", "costly expensive"]) + let v = native_list_append(v, ["langan", "adj", "langan", "", "", "", "inflection of lang"]) + let v = native_list_append(v, ["sieran", "adj", "sieran", "", "", "", "inflection of sīere"]) + let v = native_list_append(v, ["opena", "adj", "opena", "", "", "", "inflection of open"]) + let v = native_list_append(v, ["hundene", "adj", "hundene", "", "", "", "inflection of hunden"]) + let v = native_list_append(v, ["brunes", "adj", "brunes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["deadlic", "adj", "deadlic", "dēadlīċust", "dēadlīċ", "", "mortal"]) + let v = native_list_append(v, ["gemyndig", "adj", "gemyndig", "", "ġemyndiġu", "", "mindful"]) + let v = native_list_append(v, ["nyten", "adj", "nyten", "", "nytene", "", "ignorant"]) + let v = native_list_append(v, ["mirige", "adj", "mirige", "", "miriġu", "", "alternative form of"]) + let v = native_list_append(v, ["myrge", "adj", "myrge", "", "myrġu", "", "pleasant attractive enjoyable"]) + let v = native_list_append(v, ["wælreow", "adj", "wælreow", "", "wælrēow", "", "fierce in slaughter"]) + let v = native_list_append(v, ["rof", "adj", "rof", "", "rōf", "", "vigorous strong valiant"]) + let v = native_list_append(v, ["untime", "adj", "untime", "", "untīmu", "", "untimely"]) + let v = native_list_append(v, ["mynelic", "adj", "mynelic", "", "mynelīċ", "", "desirable pleasing"]) + let v = native_list_append(v, ["swær", "adj", "swǣrra", "swǣrost", "swǣr", "", "heavy"]) + let v = native_list_append(v, ["æþel", "adj", "æþel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæle", "adj", "fæle", "", "fǣlu", "", "faithful trusty good"]) + let v = native_list_append(v, ["hnah", "adj", "hnāgra", "", "hnāh", "", "humble lowly"]) + let v = native_list_append(v, ["anga", "adj", "anga", "", "ānge", "", "one and no"]) + let v = native_list_append(v, ["gladan", "adj", "gladan", "", "", "", "inflection of glæd"]) + let v = native_list_append(v, ["bradan", "adj", "bradan", "", "", "", "inflection of brād"]) + let v = native_list_append(v, ["midre", "adj", "midre", "", "", "", "strong genitive/dative singular"]) + let v = native_list_append(v, ["beorhtost", "adj", "beorhtost", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["sellic", "adj", "sellic", "", "sellīċ", "", "strange fantastic marvellous"]) + let v = native_list_append(v, ["syllic", "adj", "syllic", "", "syllīċ", "", "alternative form of"]) + let v = native_list_append(v, ["fægere", "adj", "fægere", "", "", "", "Inflected form of"]) + let v = native_list_append(v, ["halige", "adj", "halige", "", "", "", "form of hāliġ"]) + let v = native_list_append(v, ["cyma", "adj", "cyma", "", "", "", "inflection of cȳme"]) + let v = native_list_append(v, ["wanan", "adj", "wanan", "", "", "", "inflection of wana"]) + let v = native_list_append(v, ["bleo", "adj", "bleo", "", "", "", "blue"]) + let v = native_list_append(v, ["lec", "adj", "lec", "", "lecu", "", "sweet"]) + let v = native_list_append(v, ["sellicre", "adj", "sellicre", "", "", "", "strong genitive/dative feminine"]) + let v = native_list_append(v, ["syllicre", "adj", "syllicre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winstre", "adj", "winstre", "", "winstru", "", "left opposite right"]) + let v = native_list_append(v, ["tamu", "adj", "tamu", "", "", "", "inflection of tam"]) + let v = native_list_append(v, ["frum", "adj", "frum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deades", "adj", "deades", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["fixen", "adj", "fixen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faga", "adj", "faga", "", "", "", "inflection of fāh"]) + let v = native_list_append(v, ["fagan", "adj", "fagan", "", "", "", "inflection of fāh"]) + let v = native_list_append(v, ["cyme", "adj", "cyme", "", "cȳmu", "", "comely lovely splendid"]) + let v = native_list_append(v, ["recen", "adj", "recen", "", "reċen", "", "ready"]) + let v = native_list_append(v, ["snella", "adj", "snella", "", "", "", "inflection of snell"]) + let v = native_list_append(v, ["snelle", "adj", "snelle", "", "", "", "inflection of snell"]) + let v = native_list_append(v, ["halan", "adj", "halan", "", "", "", "inflection of hāl"]) + let v = native_list_append(v, ["blindan", "adj", "blindan", "", "", "", "inflection of blind"]) + let v = native_list_append(v, ["blindes", "adj", "blindes", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["hierra", "adj", "hierra", "", "hīerre", "", "higher"]) + let v = native_list_append(v, ["beren", "adj", "beren", "", "berene", "", "barley"]) + let v = native_list_append(v, ["ruges", "adj", "ruges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["ruge", "adj", "ruge", "", "", "", "inflection of rūh"]) + let v = native_list_append(v, ["fætt", "adj", "fǣttra", "fǣttest", "fǣtt", "", "fat"]) + let v = native_list_append(v, ["byn", "adj", "byn", "", "bȳn", "", "inhabited occupied"]) + let v = native_list_append(v, ["waran", "adj", "waran", "", "", "", "inflection of wær"]) + let v = native_list_append(v, ["longes", "adj", "longes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["æghwylcum", "adj", "æghwylcum", "", "", "", "inflection of æghwylc"]) + let v = native_list_append(v, ["andlang", "adj", "andlang", "", "andlange", "", "livelong throughout all"]) + let v = native_list_append(v, ["ceald", "adj", "ċealdra", "ċealdost", "ċeald", "", "cold"]) + let v = native_list_append(v, ["ieldra", "adj", "ieldra", "", "ieldre", "", "older comparative degree"]) + let v = native_list_append(v, ["fifte", "adj", "fifte", "", "", "", "inflection of fīfta"]) + let v = native_list_append(v, ["grimma", "adj", "grimma", "", "", "", "inflection of grimm"]) + let v = native_list_append(v, ["enge", "adj", "enge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sottes", "adj", "sottes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["ligene", "adj", "ligene", "", "", "", "inflection of līġen"]) + let v = native_list_append(v, ["rume", "adj", "rume", "", "", "", "inflection of rūm"]) + let v = native_list_append(v, ["ungod", "adj", "ungod", "", "ungōd", "", "not good bad"]) + let v = native_list_append(v, ["strenge", "adj", "strenge", "", "strenġu", "", "severe hard strict"]) + let v = native_list_append(v, ["hæren", "adj", "hæren", "", "hǣrenu", "", "made of hair"]) + let v = native_list_append(v, ["gilde", "adj", "gilde", "", "ġildu", "", "valuable precious"]) + let v = native_list_append(v, ["carful", "adj", "carful", "", "carfulle", "", "anxious"]) + let v = native_list_append(v, ["læge", "adj", "læge", "", "lǣġu", "", "low low-lying"]) + let v = native_list_append(v, ["læst", "adj", "læst", "", "lǣst", "", "superlative degree of"]) + let v = native_list_append(v, ["aldra", "adj", "aldra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["agna", "adj", "agna", "", "", "", "inflection of āgen"]) + let v = native_list_append(v, ["welig", "adj", "welig", "weliġost", "weliġ", "", "wealthy rich"]) + let v = native_list_append(v, ["adlig", "adj", "adlig", "", "ādliġu", "", "sick ill diseased"]) + let v = native_list_append(v, ["grei", "adj", "grei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["falses", "adj", "falses", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["deagol", "adj", "deagol", "", "dēagolu", "", "secret"]) + let v = native_list_append(v, ["afor", "adj", "afor", "", "āforu", "", "bitter acidic sour"]) + let v = native_list_append(v, ["aceno", "adj", "aceno", "", "", "", "inflection of ācen"]) + let v = native_list_append(v, ["cwedol", "adj", "cwedol", "", "cwedole", "", "eloquent"]) + let v = native_list_append(v, ["þweorh", "adj", "þweorh", "", "þwēore", "", "cross transverse"]) + let v = native_list_append(v, ["foreward", "adj", "foreward", "", "forewarde", "", "alternative form of"]) + let v = native_list_append(v, ["æþele", "adj", "æþelra", "æþelest", "æþelu", "", "noble"]) + let v = native_list_append(v, ["tunggelælle", "adj", "tunggelælle", "", "tungġelællu", "", "talkative verbose"]) + let v = native_list_append(v, ["minlic", "adj", "minlic", "", "minlīċ", "", "petty"]) + let v = native_list_append(v, ["fæderen", "adj", "fæderen", "", "fæderene", "", "paternal relational father"]) + let v = native_list_append(v, ["medeme", "adj", "medemra", "medemest", "medemu", "", "alternative form of"]) + let v = native_list_append(v, ["anliepig", "adj", "anliepig", "", "ānlīepiġu", "", "single sole only"]) + let v = native_list_append(v, ["ligen", "adj", "ligen", "", "līġenu", "", "flaming fiery"]) + let v = native_list_append(v, ["mihtlic", "adj", "mihtlic", "", "mihtlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["andweard", "adj", "andweard", "", "andwearde", "", "present current"]) + let v = native_list_append(v, ["forþgewiten", "adj", "forþgewiten", "", "forþġewiten", "", "past"]) + let v = native_list_append(v, ["ræde", "adj", "ræde", "", "rǣdu", "", "ready prompt prepared"]) + let v = native_list_append(v, ["wacor", "adj", "wacor", "", "wacore", "", "watchful vigilant alert"]) + let v = native_list_append(v, ["wese", "adj", "wese", "", "wēsu", "", "moist"]) + let v = native_list_append(v, ["weste", "adj", "weste", "", "wēstu", "", "desolate waste barren"]) + let v = native_list_append(v, ["wealcol", "adj", "wealcol", "", "wealcolu", "", "mobile"]) + let v = native_list_append(v, ["gescierpt", "adj", "gescierpt", "", "ġesċierpt", "", "acute"]) + let v = native_list_append(v, ["gifol", "adj", "gifol", "", "ġifol", "", "liberal generous"]) + let v = native_list_append(v, ["dwæs", "adj", "dwæs", "", "dwǣs", "", "stupid foolish dull"]) + let v = native_list_append(v, ["swige", "adj", "swige", "", "swīġu", "", "silent"]) + let v = native_list_append(v, ["ormæte", "adj", "ormæte", "", "ormǣtu", "", "huge excessive enormous"]) + let v = native_list_append(v, ["yfemest", "adj", "yferra", "", "yfemeste", "", "uppermost highest"]) + let v = native_list_append(v, ["niþera", "adj", "niþera", "niþemest", "niþere", "", "lower lowest under"]) + let v = native_list_append(v, ["pretti", "adj", "pretti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["andgiete", "adj", "andgiete", "", "andġietu", "", "obvious plain"]) + let v = native_list_append(v, ["andgietol", "adj", "andgietol", "", "andġietol", "", "intelligent sensible reasonable"]) + let v = native_list_append(v, ["stæflic", "adj", "stæflic", "", "stæflīċ", "", "literal"]) + let v = native_list_append(v, ["stæfwis", "adj", "stæfwis", "", "stæfwīs", "", "literate"]) + let v = native_list_append(v, ["lyften", "adj", "lyften", "", "lyftenu", "", "air aerial"]) + let v = native_list_append(v, ["stæger", "adj", "stæger", "", "stægere", "", "steep"]) + let v = native_list_append(v, ["forgifendlic", "adj", "forgifendlic", "", "forġifendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["nemniendlic", "adj", "nemniendlic", "", "nemniendlīċ", "", "naming calling addressing"]) + let v = native_list_append(v, ["gestrienendlic", "adj", "gestrienendlic", "", "ġestrīenendlīċ", "", "begetting"]) + let v = native_list_append(v, ["geagniendlic", "adj", "geagniendlic", "", "ġeāgniendlīċ", "", "owning possessive"]) + let v = native_list_append(v, ["wregendlic", "adj", "wregendlic", "", "wrēġendlīċ", "", "accusative"]) + let v = native_list_append(v, ["ætbregdendlic", "adj", "ætbregdendlic", "", "ætbreġdendlīċ", "", "ablative indicating what"]) + let v = native_list_append(v, ["clipiendlic", "adj", "clipiendlic", "", "clipiendlīċ", "", "vocalic"]) + let v = native_list_append(v, ["clipol", "adj", "clipol", "", "clipole", "", "sounding"]) + let v = native_list_append(v, ["geciegendlic", "adj", "geciegendlic", "", "ġeċīeġendlīċ", "", "calling"]) + let v = native_list_append(v, ["greno", "adj", "greno", "", "", "", "inflection of grēne"]) + let v = native_list_append(v, ["fule", "adj", "fule", "", "", "", "inflection of fūl"]) + let v = native_list_append(v, ["greate", "adj", "greate", "", "", "", "inflection of grēat"]) + let v = native_list_append(v, ["blodig", "adj", "blodig", "", "blōdiġu", "", "bloody"]) + let v = native_list_append(v, ["grega", "adj", "grega", "", "", "", "inflection of grēġ"]) + let v = native_list_append(v, ["fyrenes", "adj", "fyrenes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["grenes", "adj", "grenes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["rædfæst", "adj", "rædfæst", "", "rǣdfæst", "", "resolute prudent wise"]) + let v = native_list_append(v, ["selden", "adj", "selden", "", "seldenu", "", "rare infrequent"]) + let v = native_list_append(v, ["niehst", "adj", "niehst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["mimor", "adj", "mimor", "", "mimore", "", "mindful"]) + let v = native_list_append(v, ["gemimor", "adj", "gemimor", "", "ġemimor", "", "existing in the"]) + let v = native_list_append(v, ["unhold", "adj", "unhold", "", "", "", "unfriendly hostile"]) + let v = native_list_append(v, ["wrað", "adj", "wrað", "", "wrāð", "", "alternative spelling of"]) + let v = native_list_append(v, ["brunan", "adj", "brunan", "", "", "", "inflection of brūn"]) + let v = native_list_append(v, ["emnes", "adj", "emnes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["godne", "adj", "godne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["gemæne", "adj", "gemæne", "", "ġemǣnu", "", "common mutual"]) + let v = native_list_append(v, ["cystig", "adj", "cystig", "", "cystiġu", "", "choice preferred select"]) + let v = native_list_append(v, ["heore", "adj", "heore", "", "hēoru", "", "pleasant secure"]) + let v = native_list_append(v, ["calu", "adj", "calu", "", "calo", "", "bald"]) + let v = native_list_append(v, ["þeodisc", "adj", "þeodisc", "", "þēodisċ", "", "national"]) + let v = native_list_append(v, ["soð", "adj", "soð", "", "sōð", "", "alternative spelling of"]) + let v = native_list_append(v, ["fremdan", "adj", "fremdan", "", "", "", "inflection of fremde"]) + let v = native_list_append(v, ["reoc", "adj", "reoc", "", "rēoc", "", "fierce savage furious"]) + let v = native_list_append(v, ["blæwen", "adj", "blæwen", "", "blǣwenu", "", "alternative form of"]) + let v = native_list_append(v, ["blæhæwen", "adj", "blæhæwen", "", "blǣhǣwenu", "", "light blue"]) + let v = native_list_append(v, ["hæst", "adj", "hæst", "", "hǣst", "", "violent"]) + let v = native_list_append(v, ["byrde", "adj", "byrde", "", "byrdu", "", "born well-born noble"]) + let v = native_list_append(v, ["synga", "adj", "synga", "", "", "", "inflection of synniġ"]) + let v = native_list_append(v, ["sinceald", "adj", "sinceald", "", "sinċeald", "", "very cold frigid"]) + let v = native_list_append(v, ["ruwe", "adj", "ruwe", "", "", "", "inflection of rūh"]) + let v = native_list_append(v, ["gefroren", "adj", "gefroren", "", "ġefroren", "", "frozen in a"]) + let v = native_list_append(v, ["dunne", "adj", "dunne", "", "", "", "inflection of dunn"]) + let v = native_list_append(v, ["mistig", "adj", "mistig", "", "mistiġu", "", "misty"]) + let v = native_list_append(v, ["egle", "adj", "egle", "", "eġlu", "", "hideous loathsome hateful"]) + let v = native_list_append(v, ["cnæwe", "adj", "cnæwe", "", "cnǣwu", "", "knowing cognizant"]) + let v = native_list_append(v, ["cnawe", "adj", "cnawe", "", "cnāwu", "", "alternative form of"]) + let v = native_list_append(v, ["dimme", "adj", "dimme", "", "", "", "inflection of dimm"]) + let v = native_list_append(v, ["agene", "adj", "agene", "", "", "", "inflection of āgen"]) + let v = native_list_append(v, ["inhold", "adj", "inhold", "", "inholde", "", "utterly loyal loyal"]) + let v = native_list_append(v, ["opene", "adj", "opene", "", "", "", "inflection of open"]) + let v = native_list_append(v, ["rumes", "adj", "rumes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["stealc", "adj", "stealc", "", "stealce", "", "lofty"]) + let v = native_list_append(v, ["wonne", "adj", "wonne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["betast", "adj", "betast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wildre", "adj", "wildre", "", "", "", "strong feminine genitive/dative/instrumental"]) + let v = native_list_append(v, ["siere", "adj", "siere", "", "sīeru", "", "dry withered barren"]) + let v = native_list_append(v, ["lysu", "adj", "lysu", "", "lyso", "", "evil base corrupt"]) + let v = native_list_append(v, ["gingest", "adj", "gingest", "", "ġinġest", "", "superlative degree of"]) + let v = native_list_append(v, ["cweme", "adj", "cweme", "", "cwēmu", "", "pleasant agreeable acceptable"]) + let v = native_list_append(v, ["gelang", "adj", "gelang", "", "ġelang", "", "along of"]) + let v = native_list_append(v, ["flacor", "adj", "flacor", "", "flacore", "", "flying"]) + let v = native_list_append(v, ["heardest", "adj", "heardest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["blondenfeax", "adj", "blondenfeax", "", "blondenfaxe", "", "grey-haired grizzly-haired"]) + let v = native_list_append(v, ["hagosteald", "adj", "hagosteald", "", "hagostealde", "", "unmarried"]) + let v = native_list_append(v, ["oðer", "adj", "oðer", "", "ōðru", "", "alternative form of"]) + let v = native_list_append(v, ["defe", "adj", "defe", "", "dēfu", "", "suitable befitting proper"]) + let v = native_list_append(v, ["dohtig", "adj", "dohtig", "", "dohtiġu", "", "alternative form of"]) + let v = native_list_append(v, ["halga", "adj", "halga", "", "", "", "strong nominative feminine"]) + let v = native_list_append(v, ["adligo", "adj", "adligo", "", "", "", "inflection of ādliġ"]) + let v = native_list_append(v, ["hæles", "adj", "hæles", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["clane", "adj", "clane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eal", "adj", "eal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gewis", "adj", "gewis", "", "ġewis", "", "alternative form of"]) + let v = native_list_append(v, ["longum", "adj", "longum", "", "", "", "inflection of long"]) + let v = native_list_append(v, ["grenu", "adj", "grenu", "", "", "", "inflection of grēne"]) + let v = native_list_append(v, ["caf", "adj", "caf", "", "cāf", "", "quick sharp prompt"]) + let v = native_list_append(v, ["heald", "adj", "heald", "", "healde", "", "bent inclined"]) + let v = native_list_append(v, ["softe", "adj", "softe", "", "sōftu", "", "alternative form of"]) + let v = native_list_append(v, ["nearo", "adj", "nearo", "", "nearu", "", "narrow confined"]) + let v = native_list_append(v, ["isceald", "adj", "isceald", "", "īsċeald", "", "ice-cold"]) + let v = native_list_append(v, ["earmcearig", "adj", "earmcearig", "", "earmċeariġ", "", "wretched careworn sad"]) + let v = native_list_append(v, ["bilewit", "adj", "bilewit", "bilewitust", "bilewitu", "", "innocent simple"]) + let v = native_list_append(v, ["bilehwit", "adj", "bilehwit", "", "bilehwīt", "", "pure sincere honest"]) + let v = native_list_append(v, ["lygen", "adj", "lygen", "", "lyġen", "", "lying false"]) + let v = native_list_append(v, ["feorr", "adj", "feorr", "", "feorre", "", "far at a"]) + let v = native_list_append(v, ["fellen", "adj", "fellen", "", "fellenu", "", "made of skin"]) + let v = native_list_append(v, ["norþerne", "adj", "norþerne", "", "norþernu", "", "northern"]) + let v = native_list_append(v, ["adliges", "adj", "adliges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["adliga", "adj", "adliga", "", "", "", "inflection of ādliġ"]) + let v = native_list_append(v, ["neor", "adj", "neor", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["cies", "adj", "cies", "", "ċīes", "", "choosy dainty or"]) + let v = native_list_append(v, ["anan", "adj", "anan", "", "", "", "inflection of ān"]) + let v = native_list_append(v, ["mergum", "adj", "mergum", "", "", "", "inflection of merġe"]) + let v = native_list_append(v, ["fagum", "adj", "fagum", "", "", "", "inflection of fāh"]) + let v = native_list_append(v, ["fage", "adj", "fage", "", "", "", "inflection of fāh"]) + let v = native_list_append(v, ["marum", "adj", "marum", "", "", "", "dative/instrumental plural of"]) + let v = native_list_append(v, ["grege", "adj", "grege", "", "", "", "inflection of grēġ"]) + let v = native_list_append(v, ["fusum", "adj", "fusum", "", "", "", "inflection of fūs"]) + let v = native_list_append(v, ["caldum", "adj", "caldum", "", "", "", "inflection of cald"]) + let v = native_list_append(v, ["strangan", "adj", "strangan", "", "", "", "inflection of strang"]) + let v = native_list_append(v, ["læden", "adj", "læden", "", "lǣdenu", "", "alternative letter-case form"]) + let v = native_list_append(v, ["agnum", "adj", "agnum", "", "", "", "inflection of āgen"]) + let v = native_list_append(v, ["agne", "adj", "agne", "", "", "", "inflection of āgen"]) + let v = native_list_append(v, ["nytlic", "adj", "nytlic", "", "nytlīċ", "", "useful"]) + let v = native_list_append(v, ["heam", "adj", "heam", "", "", "", "strong dative/instrumental plural"]) + let v = native_list_append(v, ["ginn", "adj", "ginn", "", "ġinn", "", "wide spacious vast"]) + let v = native_list_append(v, ["deorum", "adj", "deorum", "", "", "", "inflection of dēor"]) + let v = native_list_append(v, ["fulles", "adj", "fulles", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["neowe", "adj", "neowe", "", "nēowu", "", "alternative form of"]) + let v = native_list_append(v, ["betst", "adj", "betst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leasan", "adj", "leasan", "", "", "", "inflection of lēas"]) + let v = native_list_append(v, ["adlige", "adj", "adlige", "", "", "", "inflection of ādliġ"]) + let v = native_list_append(v, ["fulle", "adj", "fulle", "", "", "", "inflection of full"]) + let v = native_list_append(v, ["dyre", "adj", "dyre", "", "dȳru", "", "alternative form of"]) + let v = native_list_append(v, ["modige", "adj", "modige", "", "", "", "inflection of mōdiġ"]) + let v = native_list_append(v, ["modiga", "adj", "modiga", "", "", "", "inflection of mōdiġ"]) + let v = native_list_append(v, ["dryga", "adj", "dryga", "", "", "", "inflection of drȳġe"]) + let v = native_list_append(v, ["mæres", "adj", "mæres", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["utera", "adj", "utera", "ūtemest", "ūtere", "", "outer exterior"]) + let v = native_list_append(v, ["æst", "adj", "æst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fremeþe", "adj", "fremeþe", "", "fremeþu", "", "alternative form of"]) + let v = native_list_append(v, ["forloren", "adj", "forloren", "", "forlorene", "", "lost"]) + let v = native_list_append(v, ["deoplic", "adj", "deoplic", "", "dēoplīċ", "", "deeply"]) + let v = native_list_append(v, ["lengra", "adj", "lengra", "", "lengre", "", "comparative degree of"]) + let v = native_list_append(v, ["hrimig", "adj", "hrimig", "hrīmigost", "hrīmiġu", "", "rimy frosty"]) + let v = native_list_append(v, ["ælmihtig", "adj", "ælmihtig", "", "ælmihtiġu", "", "all-powerful"]) + let v = native_list_append(v, ["hext", "adj", "hext", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stræc", "adj", "stræc", "", "stracu", "", "strict severe firm"]) + let v = native_list_append(v, ["dox", "adj", "dox", "", "doxe", "", "dark swarthy"]) + let v = native_list_append(v, ["cearful", "adj", "cearful", "", "ċearful", "", "alternative form of"]) + let v = native_list_append(v, ["fægen", "adj", "fægen", "", "fæġen", "", "joyful rejoicing fain"]) + let v = native_list_append(v, ["reades", "adj", "reades", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["dimman", "adj", "dimman", "", "", "", "inflection of dimm"]) + let v = native_list_append(v, ["lungor", "adj", "lungor", "", "", "", "quick to act"]) + let v = native_list_append(v, ["nyttan", "adj", "nyttan", "", "", "", "inflection of nytt"]) + let v = native_list_append(v, ["slidor", "adj", "slidor", "", "slidore", "", "slippery"]) + let v = native_list_append(v, ["hwon", "adj", "hwon", "", "", "", "few little"]) + let v = native_list_append(v, ["weriga", "adj", "weriga", "", "", "", "inflection of wēriġ"]) + let v = native_list_append(v, ["brunne", "adj", "brunne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["emn", "adj", "emn", "", "emne", "", "alternative form of"]) + let v = native_list_append(v, ["gifre", "adj", "gifre", "ġīfrost", "ġīfru", "", "greedy"]) + let v = native_list_append(v, ["þyrel", "adj", "þyrel", "", "þȳrelu", "", "pierced perforated"]) + let v = native_list_append(v, ["carig", "adj", "carig", "", "cariġ", "", "careworn strained anxious"]) + let v = native_list_append(v, ["waccor", "adj", "waccor", "", "waccoru", "", "alternative form of"]) + let v = native_list_append(v, ["sciene", "adj", "sċīenra", "sċīenost", "sċīenu", "", "beautiful fair bright"]) + let v = native_list_append(v, ["feolo", "adj", "feolo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gearu", "adj", "ġearora", "ġearwost", "ġearu", "", "ready prepared +"]) + let v = native_list_append(v, ["ansund", "adj", "ansund", "", "ansunde", "", "sound healthy uninjured"]) + let v = native_list_append(v, ["ginnan", "adj", "ginnan", "", "", "", "inflection of ġinn"]) + let v = native_list_append(v, ["langtwidig", "adj", "langtwidig", "", "langtwīdiġu", "", "granted for a"]) + let v = native_list_append(v, ["blodreow", "adj", "blodreow", "", "blōdrēow", "", "bloodthirsty"]) + let v = native_list_append(v, ["haleg", "adj", "haleg", "", "hāleġu", "", "alternative form of"]) + let v = native_list_append(v, ["æce", "adj", "æce", "", "ǣċu", "", "alternative form of"]) + let v = native_list_append(v, ["ece", "adj", "ece", "", "ēċu", "", "eternal"]) + let v = native_list_append(v, ["ginna", "adj", "ginna", "", "", "", "inflection of ġinn"]) + let v = native_list_append(v, ["eca", "adj", "eca", "", "", "", "inflection of ēċe"]) + let v = native_list_append(v, ["gesine", "adj", "gesine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["godra", "adj", "godra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["gladu", "adj", "gladu", "", "", "", "inflection of glæd"]) + let v = native_list_append(v, ["windig", "adj", "windig", "", "windiġu", "", "windy"]) + let v = native_list_append(v, ["leht", "adj", "leht", "", "lēht", "", "light"]) + let v = native_list_append(v, ["stielen", "adj", "stielen", "", "stīelenu", "", "made of steel"]) + let v = native_list_append(v, ["seofonnihte", "adj", "seofonnihte", "", "seofonnihtu", "", "seven days old"]) + let v = native_list_append(v, ["dunn", "adj", "dunn", "", "dunne", "", "dark dun brown"]) + let v = native_list_append(v, ["lustfull", "adj", "lustfull", "", "", "", "desirous"]) + let v = native_list_append(v, ["mildre", "adj", "mildre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["grammatic", "adj", "grammatic", "", "grammatiċ", "", "grammatical of grammar"]) + let v = native_list_append(v, ["bolgenmod", "adj", "bolgenmod", "", "bolgenmōd", "", "enraged"]) + let v = native_list_append(v, ["ierre", "adj", "ierre", "", "ierru", "", "angry wrathful fierce"]) + let v = native_list_append(v, ["bealohydig", "adj", "bealohydig", "", "bealohȳdiġu", "", "alternative form of"]) + let v = native_list_append(v, ["orped", "adj", "orped", "", "orpedu", "", "grown up at"]) + let v = native_list_append(v, ["ælc", "adj", "ælc", "", "ǣlċ", "", "every each"]) + let v = native_list_append(v, ["þan", "adj", "þan", "", "þān", "", "moist"]) + let v = native_list_append(v, ["unsar", "adj", "unsar", "", "unsār", "", "not sore"]) + let v = native_list_append(v, ["þrim", "adj", "þrim", "", "", "", "dative/instrumental of þrī"]) + let v = native_list_append(v, ["wilda", "adj", "wilda", "", "", "", "inflection of wilda"]) + let v = native_list_append(v, ["fulan", "adj", "fulan", "", "", "", "inflection of fūl"]) + let v = native_list_append(v, ["liþum", "adj", "liþum", "", "", "", "inflection of līþe"]) + let v = native_list_append(v, ["soþa", "adj", "soþa", "", "", "", "inflection of sōþ"]) + let v = native_list_append(v, ["wodan", "adj", "wodan", "", "", "", "inflection of wōd"]) + let v = native_list_append(v, ["scyne", "adj", "sċȳnra", "sċȳnost", "sċȳnu", "", "alternative form of"]) + let v = native_list_append(v, ["blates", "adj", "blates", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["cræftig", "adj", "cræftiġra", "cræftgast", "cræftiġu", "", "strong powerful"]) + let v = native_list_append(v, ["hersum", "adj", "hersum", "", "hērsumu", "", "alternative form of"]) + let v = native_list_append(v, ["grame", "adj", "grame", "", "", "", "inflection of gram"]) + let v = native_list_append(v, ["smeart", "adj", "smeart", "", "smearte", "", "painful smarting"]) + let v = native_list_append(v, ["fremful", "adj", "fremful", "", "fremfulle", "", "profitable beneficial"]) + let v = native_list_append(v, ["fyrwit", "adj", "fyrwit", "", "fyrwitte", "", "alternative form of"]) + let v = native_list_append(v, ["anfald", "adj", "anfald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forboden", "adj", "forboden", "", "forbodene", "", "forbidden"]) + let v = native_list_append(v, ["eorcnan", "adj", "eorcnan", "", "eorcnanu", "", "precious noble true?"]) + let v = native_list_append(v, ["diop", "adj", "diop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giung", "adj", "giung", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bleoread", "adj", "bleoread", "", "blēorēad", "", "purple blue-red"]) + let v = native_list_append(v, ["idele", "adj", "idele", "", "", "", "inflection of īdel"]) + let v = native_list_append(v, ["entisc", "adj", "entisc", "", "entisċ", "", "giant of a"]) + let v = native_list_append(v, ["gerad", "adj", "gerad", "", "ġerād", "", "skilful wise clever"]) + let v = native_list_append(v, ["wrætlic", "adj", "wrǣtlīcra", "", "wrǣtlīċ", "", "wondrous curious interesting"]) + let v = native_list_append(v, ["botleas", "adj", "botleas", "", "bōtlēas", "", "bootless unpardonable what"]) + let v = native_list_append(v, ["bleaþ", "adj", "blēaþra", "", "blēaþ", "", "gentle shy cowardly"]) + let v = native_list_append(v, ["cuð", "adj", "cuð", "", "cūð", "", "alternative form of"]) + let v = native_list_append(v, ["healfdead", "adj", "healfdead", "", "healfdēad", "", "halfdead"]) + let v = native_list_append(v, ["afigen", "adj", "afigen", "", "āfiġen", "", "fried"]) + let v = native_list_append(v, ["lufsum", "adj", "lufsum", "", "lufsumu", "", "loving amiable pleasant"]) + let v = native_list_append(v, ["sarre", "adj", "sarre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["wona", "adj", "wona", "", "", "", "inflection of won"]) + let v = native_list_append(v, ["angsum", "adj", "angsum", "", "angsumu", "", "anxious"]) + let v = native_list_append(v, ["wunda", "adj", "wunda", "", "", "", "inflection of wund"]) + let v = native_list_append(v, ["wancol", "adj", "wancol", "", "wancolu", "", "unstable unsteady uncertain"]) + let v = native_list_append(v, ["edcwic", "adj", "edcwic", "", "edcwicu", "", "restored to life"]) + let v = native_list_append(v, ["gæsne", "adj", "gæsne", "", "gǣsnu", "", "deprived of void"]) + let v = native_list_append(v, ["getreowe", "adj", "getreowe", "", "ġetrēowu", "", "alternative form of"]) + let v = native_list_append(v, ["scaf", "adj", "scaf", "", "sċāf", "", "skewed aslant"]) + let v = native_list_append(v, ["neist", "adj", "neist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fremdes", "adj", "fremdes", "", "", "", "strong genitive masculine"]) + let v = native_list_append(v, ["gewisse", "adj", "gewisse", "", "", "", "inflection of ġewiss"]) + let v = native_list_append(v, ["gewisses", "adj", "gewisses", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["feola", "adj", "feola", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wildes", "adj", "wildes", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["bittor", "adj", "bittor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gesunde", "adj", "gesunde", "", "", "", "inflection of ġesund"]) + let v = native_list_append(v, ["weoh", "adj", "weoh", "", "wēo", "", "sacred holy"]) + let v = native_list_append(v, ["ælfsciene", "adj", "ælfsciene", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["welisc", "adj", "welisc", "", "wēlisċ", "", "alternative form of"]) + let v = native_list_append(v, ["wilisc", "adj", "wilisc", "", "wīlisċ", "", "alternative form of"]) + let v = native_list_append(v, ["smicer", "adj", "smicer", "smicerest", "smicere", "", "beauteous beautiful elegant"]) + let v = native_list_append(v, ["smicor", "adj", "smicor", "", "smicore", "", "alternative form of"]) + let v = native_list_append(v, ["beald", "adj", "bealdra", "", "bealde", "", "brave bold"]) + let v = native_list_append(v, ["murga", "adj", "murga", "", "", "", "inflection of murġe"]) + let v = native_list_append(v, ["sargu", "adj", "sargu", "", "", "", "inflection of sāriġ"]) + let v = native_list_append(v, ["æwisc", "adj", "æwisc", "", "ǣwisċ", "", "disgraced shameless foul"]) + let v = native_list_append(v, ["hasu", "adj", "hasu", "", "haso", "", "dusky grey ashen"]) + let v = native_list_append(v, ["swicol", "adj", "swicol", "swicolost", "swicole", "", "deceitful false treacherous"]) + let v = native_list_append(v, ["wacol", "adj", "wacol", "", "wacole", "", "watchful vigilant"]) + let v = native_list_append(v, ["flugol", "adj", "flugol", "", "flugole", "", "tending to fly"]) + let v = native_list_append(v, ["leassagol", "adj", "leassagol", "", "lēassagol", "", "lying false mendacious"]) + let v = native_list_append(v, ["wanne", "adj", "wanne", "", "", "", "inflection of wann"]) + let v = native_list_append(v, ["leasa", "adj", "leasa", "", "", "", "inflection of lēas"]) + let v = native_list_append(v, ["geoluread", "adj", "geoluread", "", "ġeolurēad", "", "the color orange"]) + let v = native_list_append(v, ["acena", "adj", "acena", "", "", "", "inflection of ācen"]) + let v = native_list_append(v, ["meteþearfende", "adj", "meteþearfende", "", "meteþearfendu", "", "wanting or needing"]) + let v = native_list_append(v, ["mæger", "adj", "mæger", "", "mæġer", "", "skinny meager lean"]) + let v = native_list_append(v, ["sciena", "adj", "sciena", "", "", "", "inflection of sċīene"]) + let v = native_list_append(v, ["wyrmread", "adj", "wyrmread", "", "wyrmrēad", "", "purple scarlet"]) + let v = native_list_append(v, ["swæc", "adj", "swæc", "", "", "", "weak feeble"]) + let v = native_list_append(v, ["hoga", "adj", "hoga", "", "hoge", "", "careful thoughtful prudent"]) + let v = native_list_append(v, ["wlæc", "adj", "wlæc", "", "wlacu", "", "lukewarm tepid"]) + let v = native_list_append(v, ["wlacu", "adj", "wlacu", "", "wlaco", "", "alternative form of"]) + let v = native_list_append(v, ["leodlic", "adj", "leodlic", "", "lēodlīċ", "", "people populace nation"]) + let v = native_list_append(v, ["suþerne", "adj", "suþerne", "", "sūþernu", "", "southern"]) + let v = native_list_append(v, ["westerne", "adj", "westerne", "", "westernu", "", "western"]) + let v = native_list_append(v, ["easterne", "adj", "easterne", "", "ēasternu", "", "eastern"]) + let v = native_list_append(v, ["acol", "adj", "acol", "", "ācolu", "", "frightened terrified scared"]) + let v = native_list_append(v, ["sprecol", "adj", "sprecol", "", "sprecole", "", "talkative"]) + let v = native_list_append(v, ["bicnol", "adj", "bicnol", "", "bīċnolu", "", "indicating indicative"]) + let v = native_list_append(v, ["beogol", "adj", "beogol", "", "bēogolu", "", "agreeing consenting"]) + let v = native_list_append(v, ["ælagol", "adj", "ælagol", "", "ǣlagol", "", "legislative"]) + let v = native_list_append(v, ["orþanc", "adj", "orþanc", "", "orþance", "", "creative cunning skillful"]) + let v = native_list_append(v, ["orðanc", "adj", "orðanc", "", "orðance", "", "alternative spelling of"]) + let v = native_list_append(v, ["orðonc", "adj", "orðonc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["afulic", "adj", "afulic", "", "afulīċ", "", "perverse"]) + let v = native_list_append(v, ["aberendlic", "adj", "aberendlic", "", "āberendlīċ", "", "bearable tolerable"]) + let v = native_list_append(v, ["acumendlic", "adj", "acumendlic", "", "ācumendlīċ", "", "tolerable"]) + let v = native_list_append(v, ["acennedlic", "adj", "acennedlic", "", "ācennedlīċ", "", "native"]) + let v = native_list_append(v, ["ametendlic", "adj", "ametendlic", "", "āmetendlīċ", "", "measurable limited brief"]) + let v = native_list_append(v, ["wiþmetenlic", "adj", "wiþmetenlic", "", "wiþmetenlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["wiþsacendlic", "adj", "wiþsacendlic", "", "wiþsacendlīċ", "", "negative expressing negation"]) + let v = native_list_append(v, ["æfæst", "adj", "æfæst", "", "ǣfæst", "", "firm in observing"]) + let v = native_list_append(v, ["ærendfæst", "adj", "ærendfæst", "", "ǣrendfæst", "", "bound on an"]) + let v = native_list_append(v, ["arfæst", "adj", "arfæst", "", "ārfæst", "", "honorable pious righteous"]) + let v = native_list_append(v, ["ætren", "adj", "ætren", "", "ǣtrenu", "", "poisonous"]) + let v = native_list_append(v, ["rihtwis", "adj", "rihtwīsra", "rihtwīsost", "rihtwīs", "", "just fair"]) + let v = native_list_append(v, ["medwis", "adj", "medwis", "", "medwīs", "", "not wise foolish"]) + let v = native_list_append(v, ["andwis", "adj", "andwis", "", "andwīs", "", "expert skillful"]) + let v = native_list_append(v, ["halwende", "adj", "halwende", "hālwendest", "hālwendu", "", "healing healthful salutary"]) + let v = native_list_append(v, ["hwilwende", "adj", "hwilwende", "", "hwīlwendu", "", "temporary not lasting"]) + let v = native_list_append(v, ["leofwende", "adj", "leofwende", "", "lēofwendu", "", "amiable gracious kind"]) + let v = native_list_append(v, ["wohsum", "adj", "wohsum", "", "wōhsumu", "", "evil wicked"]) + let v = native_list_append(v, ["weorcsum", "adj", "weorcsum", "", "weorcsumu", "", "painful grievous noxious"]) + let v = native_list_append(v, ["arleas", "adj", "arleas", "ārlēasest", "ārlēas", "", "honorless disgraceful wicked"]) + let v = native_list_append(v, ["dreamleas", "adj", "dreamleas", "", "drēamlēas", "", "joyless sad"]) + let v = native_list_append(v, ["domleas", "adj", "domleas", "", "dōmlēas", "", "inglorious powerless"]) + let v = native_list_append(v, ["freondleas", "adj", "freondleas", "", "frēondlēas", "", "friendless"]) + let v = native_list_append(v, ["beardleas", "adj", "beardleas", "", "beardlēas", "", "beardless"]) + let v = native_list_append(v, ["myndleas", "adj", "myndleas", "", "myndlēas", "", "senseless foolish"]) + let v = native_list_append(v, ["receleas", "adj", "receleas", "", "rēċelēas", "", "reckless careless"]) + let v = native_list_append(v, ["wordfæst", "adj", "wordfæst", "", "wordfæste", "", "true to ones"]) + let v = native_list_append(v, ["hiwfæst", "adj", "hiwfæst", "", "hīwfæst", "", "beautiful fair"]) + let v = native_list_append(v, ["wynfæst", "adj", "wynfæst", "", "wynfæste", "", "joyful joyous"]) + let v = native_list_append(v, ["Seaxisc", "adj", "Seaxisc", "", "Seaxisċ", "", "Saxon"]) + let v = native_list_append(v, ["godan", "adj", "godan", "", "", "", "inflection of gōd"]) + let v = native_list_append(v, ["leaslic", "adj", "leaslic", "", "lēaslīċ", "", "false vain"]) + let v = native_list_append(v, ["openlic", "adj", "openlic", "", "openlīċ", "", "public open"]) + let v = native_list_append(v, ["hlafordlic", "adj", "hlafordlic", "", "hlāfordlīċ", "", "lordly noble heroic"]) + let v = native_list_append(v, ["hlafordleas", "adj", "hlafordleas", "", "hlāfordlēas", "", "lordless without a"]) + let v = native_list_append(v, ["andelbære", "adj", "andelbære", "", "andelbǣru", "", "reversed inverted"]) + let v = native_list_append(v, ["cornbære", "adj", "cornbære", "", "cornbǣru", "", "corn-bearing"]) + let v = native_list_append(v, ["halbære", "adj", "halbære", "", "hālbǣru", "", "wholesome salutary"]) + let v = native_list_append(v, ["grambære", "adj", "grambære", "", "grambǣru", "", "angry passionate"]) + let v = native_list_append(v, ["æppelbære", "adj", "æppelbære", "", "æppelbǣru", "", "bearing apples apple-bearing"]) + let v = native_list_append(v, ["lustbære", "adj", "lustbære", "", "lustbǣru", "", "desirous desirable pleasant"]) + let v = native_list_append(v, ["mannbære", "adj", "mannbære", "", "mannbǣru", "", "alternative form of"]) + let v = native_list_append(v, ["wigbære", "adj", "wigbære", "", "wīġbǣru", "", "warlike martial eager"]) + let v = native_list_append(v, ["wæstmbære", "adj", "wæstmbære", "", "wæstmbǣru", "", "fruitful fertile productive"]) + let v = native_list_append(v, ["unwæstmbære", "adj", "unwæstmbære", "", "unwæstmbǣru", "", "barren sterile unproductive"]) + let v = native_list_append(v, ["hreþig", "adj", "hreþig", "", "hrēþiġu", "", "triumphant exultant"]) + let v = native_list_append(v, ["domeadig", "adj", "domeadig", "", "dōmēadiġu", "", "blessed with power"]) + let v = native_list_append(v, ["þufbære", "adj", "þufbære", "", "þūfbǣru", "", "bearing foliage leafy"]) + let v = native_list_append(v, ["ardæde", "adj", "ardæde", "", "ārdǣdu", "", "merciful"]) + let v = native_list_append(v, ["eaþdæde", "adj", "eaþdæde", "", "ēaþdǣdu", "", "easy to do"]) + let v = native_list_append(v, ["earfoþdæde", "adj", "earfoþdæde", "", "earfoþdǣdu", "", "hard to do"]) + let v = native_list_append(v, ["mildheortlic", "adj", "mildheortlic", "", "mildheortlīċ", "", "compassionate merciful"]) + let v = native_list_append(v, ["staniht", "adj", "staniht", "", "stāniht", "", "stony rocky"]) + let v = native_list_append(v, ["bogiht", "adj", "bogiht", "", "bogihte", "", "crooked full of"]) + let v = native_list_append(v, ["gebyrde", "adj", "gebyrde", "", "ġebyrdu", "", "inborn innate natural"]) + let v = native_list_append(v, ["adeliht", "adj", "adeliht", "", "adelihte", "", "filthy dirty"]) + let v = native_list_append(v, ["isiht", "adj", "isiht", "", "īsiht", "", "icy"]) + let v = native_list_append(v, ["ifiht", "adj", "ifiht", "", "īfiht", "", "covered with ivy"]) + let v = native_list_append(v, ["burbyrde", "adj", "burbyrde", "", "būrbyrdu", "", "of peasant birth"]) + let v = native_list_append(v, ["efenbyrde", "adj", "efenbyrde", "", "efenbyrdu", "", "alternative form of"]) + let v = native_list_append(v, ["welige", "adj", "welige", "", "", "", "inflection of weliġ"]) + let v = native_list_append(v, ["formest", "adj", "formest", "", "formeste", "", "first"]) + let v = native_list_append(v, ["hase", "adj", "hase", "", "", "", "inflection of hās"]) + let v = native_list_append(v, ["sunwlitig", "adj", "sunwlitig", "", "sunwlitiġ", "", "beautiful with the"]) + let v = native_list_append(v, ["sunwliteg", "adj", "sunwliteg", "", "sunwliteġ", "", "alternative form of"]) + let v = native_list_append(v, ["unligne", "adj", "unligne", "", "unlīġnu", "", "alternative form of"]) + let v = native_list_append(v, ["bryce", "adj", "bryce", "", "bryċu", "", "breakable frail fleeting"]) + let v = native_list_append(v, ["eaden", "adj", "eaden", "", "ēadenu", "", "granted given"]) + let v = native_list_append(v, ["eldre", "adj", "eldre", "", "", "", "inflection of eldra"]) + let v = native_list_append(v, ["lengre", "adj", "lengre", "", "", "", "inflection of lengra"]) + let v = native_list_append(v, ["lengst", "adj", "lengst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grena", "adj", "grena", "", "", "", "inflection of grēne"]) + let v = native_list_append(v, ["purpuren", "adj", "purpuren", "", "purpurene", "", "purple"]) + let v = native_list_append(v, ["bromig", "adj", "bromig", "", "brōmiġu", "", "broomy covered with"]) + let v = native_list_append(v, ["windige", "adj", "windige", "", "", "", "inflection of windiġ"]) + let v = native_list_append(v, ["sott", "adj", "sott", "", "sotte", "", "foolish stupid"]) + let v = native_list_append(v, ["bitra", "adj", "bitra", "", "", "", "inflection of bitor"]) + let v = native_list_append(v, ["hatra", "adj", "hatra", "", "hātre", "", "comparative degree of"]) + let v = native_list_append(v, ["hungri", "adj", "hungri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æren", "adj", "æren", "", "ǣrenu", "", "brass brazen"]) + let v = native_list_append(v, ["micela", "adj", "micela", "", "", "", "inflection of miċel"]) + let v = native_list_append(v, ["fellene", "adj", "fellene", "", "", "", "inflection of fellen"]) + let v = native_list_append(v, ["unsur", "adj", "unsur", "", "unsūr", "", "not sour"]) + let v = native_list_append(v, ["sares", "adj", "sares", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["wrec", "adj", "wrec", "", "wrecce", "", "miserable wretched"]) + let v = native_list_append(v, ["strengest", "adj", "strengest", "", "strenġest", "", "superlative degree of"]) + let v = native_list_append(v, ["uncamprof", "adj", "uncamprof", "", "uncamprōf", "", "unwarlike"]) + let v = native_list_append(v, ["heterof", "adj", "heterof", "", "heterōf", "", "full of hate"]) + let v = native_list_append(v, ["þeow", "adj", "þeow", "", "þēow", "", "servile"]) + let v = native_list_append(v, ["godcund", "adj", "godcund", "", "godcunde", "", "divine godlike heavenly"]) + let v = native_list_append(v, ["yfelum", "adj", "yfelum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["yfela", "adj", "yfela", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["nænig", "adj", "nænig", "", "", "", "not any none"]) + let v = native_list_append(v, ["lyge", "adj", "lyge", "", "lygu", "", "lying"]) + let v = native_list_append(v, ["æþelboren", "adj", "æþelborenra", "", "æþelborene", "", "born a noble"]) + let v = native_list_append(v, ["gung", "adj", "gung", "", "ġung", "", "alternative spelling of"]) + let v = native_list_append(v, ["Nazarenisc", "adj", "Nazarenisc", "", "Nazarenisċ", "", "Nazareth Nazarene"]) + let v = native_list_append(v, ["tilu", "adj", "tilu", "", "", "", "inflection of til"]) + let v = native_list_append(v, ["ealc", "adj", "ealc", "", "ealċ", "", "alternative form of"]) + let v = native_list_append(v, ["fæla", "adj", "fæla", "", "", "", "inflection of fǣle"]) + let v = native_list_append(v, ["unbryce", "adj", "unbryce", "", "unbryċu", "", "unbroken unbreakable inviolate"]) + let v = native_list_append(v, ["hwæs", "adj", "hwæs", "", "hwasu", "", "sharp keen"]) + let v = native_list_append(v, ["bitre", "adj", "bitre", "", "", "", "inflection of biter"]) + let v = native_list_append(v, ["maneg", "adj", "maneg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grames", "adj", "grames", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["cypren", "adj", "cypren", "", "cyprenu", "", "made of copper"]) + let v = native_list_append(v, ["bisæcc", "adj", "bisæcc", "", "bīsæċċ", "", "contested disputed"]) + let v = native_list_append(v, ["hlagol", "adj", "hlagol", "", "hlagole", "", "prone to laughter"]) + let v = native_list_append(v, ["isigan", "adj", "isigan", "", "", "", "inflection of īsiġ"]) + let v = native_list_append(v, ["briden", "adj", "briden", "", "bridene", "", "made of boards"]) + let v = native_list_append(v, ["gelong", "adj", "gelong", "", "ġelong", "", "alternative form of"]) + let v = native_list_append(v, ["doxa", "adj", "doxa", "", "", "", "inflection of dox"]) + let v = native_list_append(v, ["þeorf", "adj", "þeorf", "", "þeorfe", "", "unleavened"]) + let v = native_list_append(v, ["sceone", "adj", "sceone", "", "sċēonu", "", "alternative form of"]) + let v = native_list_append(v, ["gehæp", "adj", "gehæp", "", "ġehapu", "", "suitable fitting proper"]) + let v = native_list_append(v, ["handtam", "adj", "handtam", "", "handtamu", "", "tame enough to"]) + let v = native_list_append(v, ["gefæd", "adj", "gefæd", "", "ġefadu", "", "orderly tidy well-regulated"]) + let v = native_list_append(v, ["leohtbære", "adj", "leohtbære", "", "lēohtbǣru", "", "luminous bright light-bearing"]) + let v = native_list_append(v, ["modcræftig", "adj", "modcræftig", "", "mōdcræftiġu", "", "possessing mental power"]) + let v = native_list_append(v, ["gæten", "adj", "gæten", "", "gǣtenu", "", "goat goaten"]) + let v = native_list_append(v, ["sifre", "adj", "sifre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anlipig", "adj", "anlipig", "", "ānlīpiġu", "", "alternative form of"]) + let v = native_list_append(v, ["heofonisc", "adj", "heofonisc", "", "heofonisċ", "", "heavenly"]) + let v = native_list_append(v, ["witleas", "adj", "witleas", "", "witlēas", "", "senseless witless"]) + let v = native_list_append(v, ["sealten", "adj", "sealten", "", "sealtenu", "", "salt salted salty"]) + let v = native_list_append(v, ["synnig", "adj", "synniġra", "", "synniġu", "", "sinful wicked"]) + let v = native_list_append(v, ["gydig", "adj", "gydig", "", "gydiġ", "", "possessed by an"]) + let v = native_list_append(v, ["miriga", "adj", "miriga", "", "", "", "inflection of miriġe"]) + let v = native_list_append(v, ["mirigan", "adj", "mirigan", "", "", "", "inflection of miriġe"]) + let v = native_list_append(v, ["gyltig", "adj", "gyltig", "", "gyltiġu", "", "guilty culpable"]) + let v = native_list_append(v, ["giltig", "adj", "giltig", "", "giltiġu", "", "alternative form of"]) + let v = native_list_append(v, ["dierne", "adj", "dierne", "", "diernu", "", "secret hidden"]) + let v = native_list_append(v, ["stægel", "adj", "stægel", "", "stǣġelu", "", "steep"]) + let v = native_list_append(v, ["stælwierþe", "adj", "stælwierþe", "", "stǣlwierþu", "", "able to stand"]) + let v = native_list_append(v, ["nytwierþe", "adj", "nytwierþe", "nytwierþost", "nytwierþu", "", "useful advantageous profitable"]) + let v = native_list_append(v, ["rofe", "adj", "rofe", "", "", "", "inflection of rōf"]) + let v = native_list_append(v, ["mandæde", "adj", "mandæde", "", "māndǣdu", "", "doing-evil wicked reprehensible"]) + let v = native_list_append(v, ["siþa", "adj", "siþa", "", "", "", "inflection of sīþ"]) + let v = native_list_append(v, ["bedul", "adj", "bedul", "", "bedule", "", "prone to or"]) + let v = native_list_append(v, ["þyrre", "adj", "þyrre", "", "þyrru", "", "not wet dry"]) + let v = native_list_append(v, ["clæcleas", "adj", "clæcleas", "", "clæclēas", "", "free exempt having"]) + let v = native_list_append(v, ["hetol", "adj", "hetol", "", "hetole", "", "hateful hostile malignant"]) + let v = native_list_append(v, ["stedefæst", "adj", "stedefæst", "", "stedefæste", "", "firmly fixed rooted"]) + let v = native_list_append(v, ["sceamfæst", "adj", "sceamfæst", "", "sċeamfæst", "", "alternative form of"]) + let v = native_list_append(v, ["scamfæst", "adj", "scamfæst", "", "sċamfæst", "", "modest"]) + let v = native_list_append(v, ["stænen", "adj", "stænen", "", "stǣnenu", "", "made of stone"]) + let v = native_list_append(v, ["glæsen", "adj", "glæsen", "", "glæsene", "", "glass made of"]) + let v = native_list_append(v, ["seolcen", "adj", "seolcen", "", "seolcenu", "", "silk"]) + let v = native_list_append(v, ["seolucen", "adj", "seolucen", "", "seolucene", "", "alternative form of"]) + let v = native_list_append(v, ["lireht", "adj", "lireht", "", "līreht", "", "brawny fleshy muscley"]) + let v = native_list_append(v, ["þeawleas", "adj", "þeawleas", "", "þēawlēas", "", "ill-mannered ill-conditioned"]) + let v = native_list_append(v, ["estig", "adj", "estig", "", "", "", "gracious"]) + let v = native_list_append(v, ["geriht", "adj", "geriht", "", "ġeriht", "", "right just"]) + let v = native_list_append(v, ["frostig", "adj", "frostig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murn", "adj", "murn", "", "murne", "", "mournful sorrowful troubled"]) + let v = native_list_append(v, ["driga", "adj", "driga", "", "", "", "inflection of drīġe"]) + let v = native_list_append(v, ["urig", "adj", "urig", "", "ūriġu", "", "watered wet"]) + let v = native_list_append(v, ["scotfreo", "adj", "scotfreo", "", "scotfrēo", "", "exempt from imposts"]) + let v = native_list_append(v, ["nifol", "adj", "nifol", "", "nifole", "", "alternative form of"]) + let v = native_list_append(v, ["ciepe", "adj", "ciepe", "", "ċīepu", "", "for sale"]) + let v = native_list_append(v, ["trum", "adj", "trum", "", "trumu", "", "strong firm stable"]) + let v = native_list_append(v, ["þiestre", "adj", "þīestra", "þīestrost", "þīestru", "", "dark"]) + let v = native_list_append(v, ["orsorg", "adj", "orsorg", "orsorgost", "orsorge", "", "free from care"]) + let v = native_list_append(v, ["orsorh", "adj", "orsorh", "", "orsorge", "", "alternative form of"]) + let v = native_list_append(v, ["twifere", "adj", "twifere", "", "twifēru", "", "accessible by two"]) + let v = native_list_append(v, ["fules", "adj", "fules", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["lætsum", "adj", "lætsum", "", "lætsumu", "", "slow late"]) + let v = native_list_append(v, ["edstaþelig", "adj", "edstaþelig", "", "edstaþeliġ", "", "strong firm"]) + let v = native_list_append(v, ["gemæte", "adj", "gemæte", "", "ġemǣtu", "", "meet of suitable"]) + let v = native_list_append(v, ["gingra", "adj", "gingra", "", "ġingre", "", "comparative degree of"]) + let v = native_list_append(v, ["wylfen", "adj", "wylfen", "", "wylfenu", "", "like a wolf"]) + let v = native_list_append(v, ["luflic", "adj", "luflic", "", "luflīċ", "", "worthy of love"]) + let v = native_list_append(v, ["hundteontigoþa", "adj", "hundteontigoþa", "", "hundtēontigoþe", "", "hundredth"]) + let v = native_list_append(v, ["þusendfeald", "adj", "þusendfeald", "", "þūsendfeald", "", "thousandfold a thousand"]) + let v = native_list_append(v, ["nytte", "adj", "nytte", "", "", "", "inflection of nytt"]) + let v = native_list_append(v, ["nyttes", "adj", "nyttes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["Norne", "adj", "Norne", "", "", "", "inflection of Norren"]) + let v = native_list_append(v, ["unwealt", "adj", "unwealtra", "", "unwealte", "", "steady stable"]) + let v = native_list_append(v, ["godwebben", "adj", "godwebben", "", "godwebbenu", "", "purple"]) + let v = native_list_append(v, ["seoslig", "adj", "seoslig", "", "sēosliġu", "", "afflicted troubled vexed"]) + let v = native_list_append(v, ["hreowcearig", "adj", "hreowcearig", "", "hrēowċeariġ", "", "troubled anxious sorrowful"]) + let v = native_list_append(v, ["tydre", "adj", "tydre", "", "tȳdru", "", "easily broken fragile"]) + let v = native_list_append(v, ["dumbe", "adj", "dumbe", "", "", "", "inflection of dumb"]) + let v = native_list_append(v, ["horig", "adj", "horig", "", "horiġ", "", "foul dirty defiled"]) + let v = native_list_append(v, ["horhig", "adj", "horhig", "", "horhiġu", "", "alternative form of"]) + let v = native_list_append(v, ["unclæne", "adj", "unclæne", "", "unclǣnu", "", "unclean dirty"]) + let v = native_list_append(v, ["unhalig", "adj", "unhalig", "", "unhāliġu", "", "unholy profane"]) + let v = native_list_append(v, ["uþmæte", "adj", "uþmæte", "", "ūþmǣtu", "", "immense very great"]) + let v = native_list_append(v, ["sigelic", "adj", "sigelic", "", "siġelīċ", "", "victorious"]) + let v = native_list_append(v, ["haswig", "adj", "haswig", "", "haswiġu", "", "grey greyish"]) + let v = native_list_append(v, ["hundlic", "adj", "hundlic", "", "hundlīċ", "", "doglike canine"]) + let v = native_list_append(v, ["anieged", "adj", "anieged", "", "ānīeġedu", "", "one-eyed"]) + let v = native_list_append(v, ["gripul", "adj", "gripul", "", "gripule", "", "able to grasp"]) + let v = native_list_append(v, ["þære", "adj", "þære", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["freondlic", "adj", "freondlic", "", "frēondlīċ", "", "friendly"]) + let v = native_list_append(v, ["gedæfte", "adj", "gedæfte", "", "ġedæftu", "", "mild gentle meek"]) + let v = native_list_append(v, ["mildne", "adj", "mildne", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hornbære", "adj", "hornbære", "", "hornbǣru", "", "equipped or fitted"]) + let v = native_list_append(v, ["twinn", "adj", "twinn", "", "twinne", "", "occurring as a"]) + let v = native_list_append(v, ["ortreowe", "adj", "ortreowe", "", "ortrēowu", "", "without confidence distrustful"]) + let v = native_list_append(v, ["deorf", "adj", "deorf", "", "deorfe", "", "working striving endeavouring"]) + let v = native_list_append(v, ["inlendisc", "adj", "inlendisc", "", "inlendisċ", "", "native indigenous"]) + let v = native_list_append(v, ["niewe", "adj", "niewe", "", "nīewu", "", "new"]) + let v = native_list_append(v, ["utlendisc", "adj", "utlendisc", "", "ūtlendisċ", "", "outlandish foreign strange"]) + let v = native_list_append(v, ["rugan", "adj", "rugan", "", "", "", "inflection of rūh"]) + let v = native_list_append(v, ["hearmascinnen", "adj", "hearmascinnen", "", "hearmasċinnenu", "", "ermine"]) + let v = native_list_append(v, ["edlesendlic", "adj", "edlesendlic", "", "edlesendlīċ", "", "reciprocal"]) + let v = native_list_append(v, ["hneaw", "adj", "hneaw", "", "hnēaw", "", "stingy niggardly miserly"]) + let v = native_list_append(v, ["deofolcund", "adj", "deofolcund", "", "dēofolcund", "", "diabolical fiendish"]) + let v = native_list_append(v, ["beddrida", "adj", "beddrida", "", "beddride", "", "bedridden"]) + let v = native_list_append(v, ["bræsen", "adj", "bræsen", "", "bræsene", "", "alternative form of"]) + let v = native_list_append(v, ["bysig", "adj", "bysig", "", "bysiġ", "", "alternative form of"]) + let v = native_list_append(v, ["fyrmest", "adj", "fyrmest", "", "fyrmeste", "", "alternative form of"]) + let v = native_list_append(v, ["fagne", "adj", "fagne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["fæcne", "adj", "fæcne", "", "fǣcnu", "", "deceitful fraudulent guileful"]) + let v = native_list_append(v, ["mennisc", "adj", "mennisc", "", "mennisċ", "", "human"]) + let v = native_list_append(v, ["hunigbære", "adj", "hunigbære", "", "huniġbǣru", "", "honied honey-bearing"]) + let v = native_list_append(v, ["blostmbære", "adj", "blostmbære", "", "blōstmbǣru", "", "blooming blossoming"]) + let v = native_list_append(v, ["cwealmbære", "adj", "cwealmbære", "", "cwealmbǣru", "", "deadly death-bearing"]) + let v = native_list_append(v, ["feþerbære", "adj", "feþerbære", "", "feþerbǣru", "", "feathered winged"]) + let v = native_list_append(v, ["atorbære", "adj", "atorbære", "", "ātorbǣru", "", "poisonous"]) + let v = native_list_append(v, ["sælic", "adj", "sælic", "", "sǣlīċ", "", "of the sea"]) + let v = native_list_append(v, ["rihta", "adj", "rihta", "", "", "", "inflection of riht"]) + let v = native_list_append(v, ["spræcleas", "adj", "spræcleas", "", "sprǣclēas", "", "speechless"]) + let v = native_list_append(v, ["endeleas", "adj", "endeleas", "", "endelēas", "", "endless"]) + let v = native_list_append(v, ["banleas", "adj", "banleas", "", "bānlēas", "", "boneless"]) + let v = native_list_append(v, ["blodleas", "adj", "blodleas", "", "blōdlēas", "", "bloodless"]) + let v = native_list_append(v, ["orblede", "adj", "orblede", "", "orblēdu", "", "lacking blood bloodless"]) + let v = native_list_append(v, ["mihtleas", "adj", "mihtleas", "", "mihtlēas", "", "mightless weak powerless"]) + let v = native_list_append(v, ["gescead", "adj", "gescead", "", "ġesċēad", "", "reasonable"]) + let v = native_list_append(v, ["ungescead", "adj", "ungescead", "", "unġesċēad", "", "indiscreet"]) + let v = native_list_append(v, ["rodorlic", "adj", "rodorlic", "", "rodorlīċ", "", "firmament celestial heavenly"]) + let v = native_list_append(v, ["unlæd", "adj", "unlæd", "", "unlǣd", "", "poor miserable unhappy"]) + let v = native_list_append(v, ["geliclic", "adj", "geliclic", "", "ġelīclīċ", "", "appropriate fit"]) + let v = native_list_append(v, ["synderlic", "adj", "synderlic", "", "synderlīċ", "", "special"]) + let v = native_list_append(v, ["gefere", "adj", "gefere", "", "ġefēru", "", "accessible passable"]) + let v = native_list_append(v, ["þwære", "adj", "þwære", "", "þwǣru", "", "gentle"]) + let v = native_list_append(v, ["gehyrsum", "adj", "gehyrsum", "", "ġehȳrsumu", "", "alternative form of"]) + let v = native_list_append(v, ["anfeald", "adj", "anfeald", "", "ānfeald", "", "simple"]) + let v = native_list_append(v, ["þrifeald", "adj", "þrifeald", "", "þrifealde", "", "threefold triple"]) + let v = native_list_append(v, ["feowerfeald", "adj", "feowerfeald", "", "fēowerfeald", "", "fourfold"]) + let v = native_list_append(v, ["fiffeald", "adj", "fiffeald", "", "fīffeald", "", "fivefold"]) + let v = native_list_append(v, ["sixfeald", "adj", "sixfeald", "", "sixfealde", "", "sixfold"]) + let v = native_list_append(v, ["seofonfeald", "adj", "seofonfeald", "", "seofonfealde", "", "sevenfold"]) + let v = native_list_append(v, ["feondlic", "adj", "feondlic", "", "fēondlīċ", "", "hostile"]) + let v = native_list_append(v, ["witer", "adj", "witer", "", "", "", "knowing wise"]) + let v = native_list_append(v, ["tienfeald", "adj", "tienfeald", "", "tīenfeald", "", "tenfold"]) + let v = native_list_append(v, ["twentigfeald", "adj", "twentigfeald", "", "twēntiġfeald", "", "twentyfold"]) + let v = native_list_append(v, ["hundfeald", "adj", "hundfeald", "", "hundfealde", "", "hundredfold"]) + let v = native_list_append(v, ["manigfeald", "adj", "manigfeald", "maniġfealdest", "maniġfeald", "", "manifold of many"]) + let v = native_list_append(v, ["manigfealdlic", "adj", "manigfealdlic", "", "maniġfealdlīċ", "", "manifold having many"]) + let v = native_list_append(v, ["sumorlic", "adj", "sumorlic", "", "sumorlīċ", "", "summer summerly summerlike"]) + let v = native_list_append(v, ["dæglic", "adj", "dæglic", "", "dæġlīċ", "", "daily"]) + let v = native_list_append(v, ["unasundrodlic", "adj", "unasundrodlic", "", "unāsundrodlīċ", "", "inseparable"]) + let v = native_list_append(v, ["asundrodlic", "adj", "asundrodlic", "", "āsundrodlīċ", "", "separable"]) + let v = native_list_append(v, ["heofonlic", "adj", "heofonlic", "", "heofonlīċ", "", "celestial heavenly"]) + let v = native_list_append(v, ["genemnendlic", "adj", "genemnendlic", "", "ġenemnendlīċ", "", "nameable knowable"]) + let v = native_list_append(v, ["ungenemnendlic", "adj", "ungenemnendlic", "", "unġenemnendlīċ", "", "unnameable unknowable"]) + let v = native_list_append(v, ["ærgenemned", "adj", "ærgenemned", "", "ǣrġenemnedu", "", "beforenamed"]) + let v = native_list_append(v, ["droflic", "adj", "droflic", "", "drōflīċ", "", "agitated disturbed irksome"]) + let v = native_list_append(v, ["drof", "adj", "drof", "", "drōf", "", "draffy dreggy dirty"]) + let v = native_list_append(v, ["weorþleas", "adj", "weorþleas", "", "weorþlēas", "", "worthless of no"]) + let v = native_list_append(v, ["hamleas", "adj", "hamleas", "", "hāmlēas", "", "homeless"]) + let v = native_list_append(v, ["scyldig", "adj", "scyldig", "", "sċyldiġu", "", "guilty + genitive"]) + let v = native_list_append(v, ["agenre", "adj", "agenre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["synful", "adj", "synfulra", "", "synfulle", "", "sinful"]) + let v = native_list_append(v, ["foremearcod", "adj", "foremearcod", "", "foremearcodu", "", "fore-noted"]) + let v = native_list_append(v, ["gemearcod", "adj", "gemearcod", "", "ġemearcodu", "", "marked noted"]) + let v = native_list_append(v, ["grundleas", "adj", "grundleas", "", "grundlēas", "", "bottomless"]) + let v = native_list_append(v, ["carleas", "adj", "carleas", "", "carlēas", "", "careless reckless without"]) + let v = native_list_append(v, ["cræftleas", "adj", "cræftleas", "", "cræftlēas", "", "artless unskillful skillless"]) + let v = native_list_append(v, ["sorhful", "adj", "sorhfulra", "", "sorhfulle", "", "full of care"]) + let v = native_list_append(v, ["sorhleas", "adj", "sorhleas", "", "sorhlēas", "", "free from care"]) + let v = native_list_append(v, ["synleas", "adj", "synleas", "", "synlēas", "", "without sin sinless"]) + let v = native_list_append(v, ["fiþerleas", "adj", "fiþerleas", "", "fiþerlēas", "", "wingless"]) + let v = native_list_append(v, ["modorleas", "adj", "modorleas", "", "mōdorlēas", "", "motherless"]) + let v = native_list_append(v, ["fæderleas", "adj", "fæderleas", "", "fæderlēas", "", "fatherless"]) + let v = native_list_append(v, ["fæderlic", "adj", "fæderlic", "", "fæderlīċ", "", "father fatherly paternal"]) + let v = native_list_append(v, ["modorlic", "adj", "modorlic", "", "mōdorlīċ", "", "motherly maternal"]) + let v = native_list_append(v, ["sunnlic", "adj", "sunnlic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monelic", "adj", "monelic", "", "mōnelīċ", "", "alternative form of"]) + let v = native_list_append(v, ["hærfestlic", "adj", "hærfestlic", "", "hærfestlīċ", "", "autumnal of harvest"]) + let v = native_list_append(v, ["eorþlic", "adj", "eorþlic", "", "eorþlīċ", "", "earthly terrestrial"]) + let v = native_list_append(v, ["wæterlic", "adj", "wæterlic", "", "wæterlīċ", "", "aquatic of water"]) + let v = native_list_append(v, ["cnihtlic", "adj", "cnihtlic", "", "cnihtlīċ", "", "boyish"]) + let v = native_list_append(v, ["broþorlic", "adj", "broþorlic", "", "brōþorlīċ", "", "brotherly"]) + let v = native_list_append(v, ["broþorleas", "adj", "broþorleas", "", "brōþorlēas", "", "brotherless"]) + let v = native_list_append(v, ["liflic", "adj", "liflic", "", "līflīċ", "", "life living causing"]) + let v = native_list_append(v, ["deaþlic", "adj", "deaþlic", "", "dēaþlīċ", "", "deadly mortal subject"]) + let v = native_list_append(v, ["atorlic", "adj", "atorlic", "", "ātorlīċ", "", "poisonlike bitter"]) + let v = native_list_append(v, ["wuldorfull", "adj", "wuldorfull", "wuldorfullost", "wuldorfulle", "", "glorious"]) + let v = native_list_append(v, ["wuldorlic", "adj", "wuldorlic", "", "wuldorlīċ", "", "glorious"]) + let v = native_list_append(v, ["wuldrig", "adj", "wuldrig", "", "wuldriġu", "", "glorious"]) + let v = native_list_append(v, ["fiþerbære", "adj", "fiþerbære", "", "fiþerbǣru", "", "bearing feathers feathered"]) + let v = native_list_append(v, ["oferhleoþor", "adj", "oferhleoþor", "", "oferhlēoþoru", "", "unhearing"]) + let v = native_list_append(v, ["woruldlic", "adj", "woruldlic", "", "woruldlīċ", "", "worldly earthly natural"]) + let v = native_list_append(v, ["gastlic", "adj", "gastlic", "", "gāstlīċ", "", "spiritual"]) + let v = native_list_append(v, ["gastleas", "adj", "gastleas", "", "gāstlēas", "", "lifeless dead"]) + let v = native_list_append(v, ["lifleas", "adj", "lifleas", "", "līflēas", "", "lifeless inanimate"]) + let v = native_list_append(v, ["heortleas", "adj", "heortleas", "", "heortlēas", "", "without courage or"]) + let v = native_list_append(v, ["cildlic", "adj", "cildlic", "", "ċildlīċ", "", "childish childlike"]) + let v = native_list_append(v, ["cildisc", "adj", "cildisc", "", "ċildisċ", "", "childish"]) + let v = native_list_append(v, ["heafodleas", "adj", "heafodleas", "", "hēafodlēas", "", "headless"]) + let v = native_list_append(v, ["heafodlic", "adj", "heafodlic", "", "hēafodlīċ", "", "top"]) + let v = native_list_append(v, ["fotlic", "adj", "fotlic", "", "fōtlīċ", "", "on foot that"]) + let v = native_list_append(v, ["boclic", "adj", "boclic", "", "bōclīċ", "", "books booklike bookish"]) + let v = native_list_append(v, ["landleas", "adj", "landleas", "", "landlēas", "", "landless not having"]) + let v = native_list_append(v, ["godleas", "adj", "godleas", "", "gōdlēas", "", "without good miserable"]) + let v = native_list_append(v, ["godlic", "adj", "gōdlīcra", "", "gōdlīċ", "", "goodly good"]) + let v = native_list_append(v, ["meteleas", "adj", "meteleas", "", "metelēas", "", "without food lacking"]) + let v = native_list_append(v, ["nihtlic", "adj", "nihtlic", "", "nihtlīċ", "", "nightly of the"]) + let v = native_list_append(v, ["unsawen", "adj", "unsawen", "", "unsāwenu", "", "unsown not sown"]) + let v = native_list_append(v, ["muþleas", "adj", "muþleas", "", "mūþlēas", "", "without a mouth"]) + let v = native_list_append(v, ["toþleas", "adj", "toþleas", "", "tōþlēas", "", "toothless"]) + let v = native_list_append(v, ["gemyndleas", "adj", "gemyndleas", "", "ġemyndlēas", "", "senseless witless"]) + let v = native_list_append(v, ["restleas", "adj", "restleas", "", "restlēas", "", "alternative form of"]) + let v = native_list_append(v, ["wæterleas", "adj", "wæterleas", "", "wæterlēas", "", "without water dry"]) + let v = native_list_append(v, ["scamleas", "adj", "scamleas", "", "sċamlēas", "", "shameless bold"]) + let v = native_list_append(v, ["scamlic", "adj", "scamlic", "", "sċamlīċ", "", "modest bashful"]) + let v = native_list_append(v, ["slæpleas", "adj", "slæpleas", "", "slǣplēas", "", "sleepless"]) + let v = native_list_append(v, ["wynlic", "adj", "wynlic", "", "wynlīċ", "", "delightful pleasing agreeable"]) + let v = native_list_append(v, ["folclic", "adj", "folclic", "", "folclīċ", "", "popular relating to"]) + let v = native_list_append(v, ["cymlic", "adj", "cymlic", "", "cȳmlīċ", "", "comely beautiful lovely"]) + let v = native_list_append(v, ["scandlic", "adj", "scandlic", "scandlīċest", "sċandlīċ", "", "disgraceful infamous vile"]) + let v = native_list_append(v, ["leoflic", "adj", "leoflic", "", "lēoflīċ", "", "worthy of love"]) + let v = native_list_append(v, ["clænlic", "adj", "clænlic", "", "clǣnlīċ", "", "cleanly pure excellent"]) + let v = native_list_append(v, ["hreowlic", "adj", "hreowlic", "", "hrēowlīċ", "", "grievous pitiful sad"]) + let v = native_list_append(v, ["unseald", "adj", "unseald", "", "unsealde", "", "ungiven"]) + let v = native_list_append(v, ["sellendlic", "adj", "sellendlic", "", "sellendlīċ", "", "being given givable"]) + let v = native_list_append(v, ["drihtenlic", "adj", "drihtenlic", "", "drihtenlīċ", "", "belonging to the"]) + let v = native_list_append(v, ["inlic", "adj", "inlic", "", "inlīċ", "", "inner inward internal"]) + let v = native_list_append(v, ["rudig", "adj", "rudig", "", "rudiġ", "", "ruddy"]) + let v = native_list_append(v, ["friþleas", "adj", "friþleas", "", "friþlēas", "", "peaceless outlawed not"]) + let v = native_list_append(v, ["friþlic", "adj", "friþlic", "", "friþlīċ", "", "peaceable gentle mild"]) + let v = native_list_append(v, ["ungemæte", "adj", "ungemæte", "", "unġemǣtu", "", "immeasurable immense excessive"]) + let v = native_list_append(v, ["unmæte", "adj", "unmæte", "", "unmǣtu", "", "alternative form of"]) + let v = native_list_append(v, ["selflic", "adj", "selflic", "", "selflīċ", "", "of ones own"]) + let v = native_list_append(v, ["wundorful", "adj", "wundorful", "", "wundorfulle", "", "wonderful glorious"]) + let v = native_list_append(v, ["wundorlic", "adj", "wundorlic", "", "wundorlīċ", "", "wonderful"]) + let v = native_list_append(v, ["mannleas", "adj", "mannleas", "", "mannlēas", "", "alternative form of"]) + let v = native_list_append(v, ["efenlic", "adj", "efenlic", "", "efenlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["unefen", "adj", "unefen", "", "unefene", "", "unequal unlike dissimilar"]) + let v = native_list_append(v, ["gesaweled", "adj", "gesaweled", "", "ġesāweled", "", "provided with soul"]) + let v = native_list_append(v, ["orsawle", "adj", "orsawle", "", "orsāwlu", "", "soulless"]) + let v = native_list_append(v, ["sawelleas", "adj", "sawelleas", "", "sāwellēas", "", "alternative form of"]) + let v = native_list_append(v, ["sawelcund", "adj", "sawelcund", "", "sāwelcund", "", "alternative form of"]) + let v = native_list_append(v, ["gastcund", "adj", "gastcund", "", "gāstcund", "", "spiritual"]) + let v = native_list_append(v, ["twelffeald", "adj", "twelffeald", "", "twelffealde", "", "twelvefold"]) + let v = native_list_append(v, ["þritigfeald", "adj", "þritigfeald", "", "þrītiġfeald", "", "thirtyfold"]) + let v = native_list_append(v, ["nigonfeald", "adj", "nigonfeald", "", "nigonfealde", "", "ninefold"]) + let v = native_list_append(v, ["sixtigfeald", "adj", "sixtigfeald", "", "sixtiġfeald", "", "sixtyfold"]) + let v = native_list_append(v, ["felafeald", "adj", "felafeald", "", "felafealde", "", "manifold"]) + let v = native_list_append(v, ["forscyldig", "adj", "forscyldig", "", "forsċyldiġu", "", "very guilty wicked"]) + let v = native_list_append(v, ["stanig", "adj", "stanig", "", "stāniġu", "", "stony rocky"]) + let v = native_list_append(v, ["eahtafeald", "adj", "eahtafeald", "", "eahtafealde", "", "eightfold"]) + let v = native_list_append(v, ["healfbrocen", "adj", "healfbrocen", "", "healfbrocene", "", "half-broken"]) + let v = native_list_append(v, ["brocen", "adj", "brocen", "", "brocene", "", "broken"]) + let v = native_list_append(v, ["witod", "adj", "witod", "", "witode", "", "appointed ordained assured"]) + let v = native_list_append(v, ["unwitod", "adj", "unwitod", "", "unwitode", "", "uncertain"]) + let v = native_list_append(v, ["witodlic", "adj", "witodlic", "", "witodlīċ", "", "certain"]) + let v = native_list_append(v, ["soþes", "adj", "soþes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["wiflic", "adj", "wiflic", "", "wīflīċ", "", "female feminine"]) + let v = native_list_append(v, ["wifleas", "adj", "wifleas", "", "wīflēas", "", "without a wife"]) + let v = native_list_append(v, ["healfcwic", "adj", "healfcwic", "", "healfcwicu", "", "halfdead"]) + let v = native_list_append(v, ["cyndelic", "adj", "cyndelic", "", "cyndelīċ", "", "natural"]) + let v = native_list_append(v, ["steorleas", "adj", "steorleas", "", "stēorlēas", "", "without restrain unruly"]) + let v = native_list_append(v, ["sicor", "adj", "sicor", "", "sicore", "", "secure free from"]) + let v = native_list_append(v, ["sacleas", "adj", "sacleas", "", "saclēas", "", "free from charge"]) + let v = native_list_append(v, ["freolic", "adj", "freolic", "frēolīcast", "frēolīċ", "", "free freeborn noble"]) + let v = native_list_append(v, ["unsælig", "adj", "unsælig", "", "unsǣliġu", "", "unhappy unblessed miserable"]) + let v = native_list_append(v, ["spedig", "adj", "spedig", "", "spēdiġu", "", "successful"]) + let v = native_list_append(v, ["wuldorspedig", "adj", "wuldorspedig", "", "wuldorspēdiġu", "", "rich in glory"]) + let v = native_list_append(v, ["giong", "adj", "giong", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["wæterig", "adj", "wæterig", "", "wæteriġu", "", "watery"]) + let v = native_list_append(v, ["unwæterig", "adj", "unwæterig", "", "unwæteriġu", "", "unwatery without water"]) + let v = native_list_append(v, ["unhal", "adj", "unhal", "", "unhāl", "", "in bad health"]) + let v = native_list_append(v, ["sceomfull", "adj", "sceomfull", "", "sċeomfull", "", "modest chaste"]) + let v = native_list_append(v, ["nyttol", "adj", "nyttol", "", "nyttolu", "", "useful"]) + let v = native_list_append(v, ["nytwyrþe", "adj", "nytwyrþe", "", "nytwyrþu", "", "alternative form of"]) + let v = native_list_append(v, ["unnytwierþe", "adj", "unnytwierþe", "", "unnytwierþu", "", "useless"]) + let v = native_list_append(v, ["unnytlic", "adj", "unnytlic", "", "unnytlīċ", "", "useless"]) + let v = native_list_append(v, ["gelær", "adj", "gelær", "", "ġelǣr", "", "unoccupied empty"]) + let v = native_list_append(v, ["langsum", "adj", "langsum", "langsumast", "langsumu", "", "long long-lasting"]) + let v = native_list_append(v, ["longsum", "adj", "longsum", "", "longsumu", "", "alternative form of"]) + let v = native_list_append(v, ["monaþlic", "adj", "monaþlic", "", "mōnaþlīċ", "", "monthly"]) + let v = native_list_append(v, ["wittig", "adj", "wittig", "", "wittiġu", "", "having knowledge wisdom"]) + let v = native_list_append(v, ["unwittig", "adj", "unwittig", "", "unwittiġu", "", "without understanding or"]) + let v = native_list_append(v, ["forewittig", "adj", "forewittig", "", "forewittiġu", "", "foreknowing sagacious presaging"]) + let v = native_list_append(v, ["twifeald", "adj", "twifeald", "", "twifealde", "", "double"]) + let v = native_list_append(v, ["twyfeald", "adj", "twyfeald", "", "twyfealde", "", "alternative form of"]) + let v = native_list_append(v, ["untwifeald", "adj", "untwifeald", "", "untwifealde", "", "not double honest"]) + let v = native_list_append(v, ["untwiefeald", "adj", "untwiefeald", "", "untwiefealde", "", "alternative form of"]) + let v = native_list_append(v, ["gemyndfull", "adj", "gemyndfull", "", "ġemyndfull", "", "of good memory"]) + let v = native_list_append(v, ["neodful", "adj", "neodful", "", "nēodful", "", "earnest zealous"]) + let v = native_list_append(v, ["bedofen", "adj", "bedofen", "", "bedofene", "", "drowned"]) + let v = native_list_append(v, ["gearlic", "adj", "gearlic", "", "ġēarlīċ", "", "annual yearly"]) + let v = native_list_append(v, ["ættrig", "adj", "ættrig", "", "ǣttriġu", "", "alternative form of"]) + let v = native_list_append(v, ["ætrig", "adj", "ætrig", "", "ǣtriġu", "", "poisonous venomous"]) + let v = native_list_append(v, ["besniwod", "adj", "besniwod", "", "besnīwodu", "", "covered with snow"]) + let v = native_list_append(v, ["weorþlic", "adj", "weorþlic", "weorþlīcost", "weorþliċ", "", "of worth or"]) + let v = native_list_append(v, ["unwis", "adj", "unwis", "", "unwīs", "", "unwise foolish stupid"]) + let v = native_list_append(v, ["unweorþlic", "adj", "unweorþlic", "unweorþlīcost", "unweorþlīċ", "", "of little worth"]) + let v = native_list_append(v, ["ungleaw", "adj", "unglēawra", "unglēawost", "unglēaw", "", "unwise without understanding"]) + let v = native_list_append(v, ["gleawlic", "adj", "gleawlic", "", "glēawlīċ", "", "wise wary astute"]) + let v = native_list_append(v, ["ungripendlic", "adj", "ungripendlic", "", "ungrīpendlīċ", "", "irreprehensible"]) + let v = native_list_append(v, ["giemeleas", "adj", "giemeleas", "", "ġīemelēas", "", "careless negligent"]) + let v = native_list_append(v, ["ceorlisc", "adj", "ceorlisc", "", "ċeorlisċ", "", "churlish rustic common"]) + let v = native_list_append(v, ["unmihtig", "adj", "unmihtig", "", "unmihtiġu", "", "not mighty unmighty"]) + let v = native_list_append(v, ["þornig", "adj", "þornig", "", "þorniġu", "", "thorny full of"]) + let v = native_list_append(v, ["wordig", "adj", "wordig", "", "wordiġu", "", "wordy verbose"]) + let v = native_list_append(v, ["fleaxen", "adj", "fleaxen", "", "fleaxenu", "", "flaxen of flax"]) + let v = native_list_append(v, ["windbære", "adj", "windbære", "", "windbǣru", "", "windy"]) + let v = native_list_append(v, ["engellic", "adj", "engellic", "", "enġellīċ", "", "angelic of angels"]) + let v = native_list_append(v, ["efel", "adj", "efel", "", "efele", "", "alternative form of"]) + let v = native_list_append(v, ["swiþlic", "adj", "swiþlic", "", "swīþlīċ", "", "immense great violent"]) + let v = native_list_append(v, ["freoh", "adj", "freoh", "", "frēo", "", "alternative form of"]) + let v = native_list_append(v, ["geleaffull", "adj", "geleaffull", "", "ġelēaffull", "", "faithful"]) + let v = native_list_append(v, ["gelæred", "adj", "gelæred", "ġelǣredest", "ġelǣredu", "", "instructed skilled knowledgeable"]) + let v = native_list_append(v, ["ungelæred", "adj", "ungelæred", "", "unġelǣredu", "", "unlearned ignorant unskilled"]) + let v = native_list_append(v, ["unmiltsiendlic", "adj", "unmiltsiendlic", "", "unmiltsiendlīċ", "", "unforgivable unpardonable"]) + let v = native_list_append(v, ["leohtlic", "adj", "leohtlic", "", "lēohtlīċ", "", "light of little"]) + let v = native_list_append(v, ["getæl", "adj", "getæl", "", "ġetalu", "", "quick ready active"]) + let v = native_list_append(v, ["getel", "adj", "getel", "", "ġetelu", "", "alternative form of"]) + let v = native_list_append(v, ["geteal", "adj", "geteal", "", "ġetalu", "", "alternative form of"]) + let v = native_list_append(v, ["medern", "adj", "medern", "", "mēdern", "", "alternative form of"]) + let v = native_list_append(v, ["meddern", "adj", "meddern", "", "mēddern", "", "alternative form of"]) + let v = native_list_append(v, ["sliht", "adj", "sliht", "", "slihte", "", "level smooth"]) + let v = native_list_append(v, ["nihterne", "adj", "nihterne", "", "", "", "nocturnal"]) + let v = native_list_append(v, ["purpul", "adj", "purpul", "", "purplu", "", "purple"]) + let v = native_list_append(v, ["Norrene", "adj", "Norrene", "", "", "", "inflection of Norren"]) + let v = native_list_append(v, ["friþe", "adj", "friþe", "", "", "", "inflection of frīþ"]) + let v = native_list_append(v, ["behefe", "adj", "behefe", "behēfost", "behēfu", "", "necessary"]) + let v = native_list_append(v, ["þinne", "adj", "þinra", "þinnost", "þinnu", "", "alternative form of"]) + let v = native_list_append(v, ["teart", "adj", "teartra", "teartest", "tearte", "", "tart"]) + let v = native_list_append(v, ["feawe", "adj", "feawe", "", "", "", "inflection of fēaw"]) + let v = native_list_append(v, ["stænene", "adj", "stænene", "", "", "", "inflection of stǣnen"]) + let v = native_list_append(v, ["rihtre", "adj", "rihtre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["strengra", "adj", "strengra", "", "strengre", "", "comparative degree of"]) + let v = native_list_append(v, ["caldra", "adj", "caldra", "", "caldre", "", "comparative degree of"]) + let v = native_list_append(v, ["fægerra", "adj", "fægerra", "", "fæġerre", "", "comparative degree of"]) + let v = native_list_append(v, ["fægerost", "adj", "fægerost", "", "fæġerost", "", "superlative degree of"]) + let v = native_list_append(v, ["inweardlice", "adj", "inweardlice", "", "", "", "inflection of inweardlīċ"]) + let v = native_list_append(v, ["sceolh", "adj", "sceolh", "", "sċēol", "", "squinting oblique slanted"]) + let v = native_list_append(v, ["ciriclic", "adj", "ciriclic", "", "ċiriċlīċ", "", "church ecclesiastical ecclesiastic"]) + let v = native_list_append(v, ["meru", "adj", "meru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crysten", "adj", "crysten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gyldene", "adj", "gyldene", "", "", "", "inflection of gylden"]) + let v = native_list_append(v, ["hæðen", "adj", "hæðen", "", "hǣðenu", "", "heathen pagan"]) + let v = native_list_append(v, ["hæðene", "adj", "hæðene", "", "", "", "inflection of hǣðen"]) + let v = native_list_append(v, ["cristen", "adj", "cristen", "cristenest", "cristenu", "", "Christian"]) + let v = native_list_append(v, ["leþeren", "adj", "leþeren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["læwede", "adj", "læwede", "", "lǣwedu", "", "lay non-clerical"]) + let v = native_list_append(v, ["treowene", "adj", "treowene", "", "", "", "inflection of trēowen"]) + let v = native_list_append(v, ["becen", "adj", "becen", "", "", "", "beechen made of"]) + let v = native_list_append(v, ["seldsene", "adj", "seldsene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["earfoþlic", "adj", "earfoþlic", "earfoþlīcost", "earfoþlīċ", "", "irksome"]) + let v = native_list_append(v, ["earfoðlice", "adj", "earfoðlice", "", "", "", "inflection of earfoðlīċ"]) + let v = native_list_append(v, ["orsorgleas", "adj", "orsorgleas", "", "orsorglēas", "", "without security anxious"]) + let v = native_list_append(v, ["wyrst", "adj", "wyrst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blaca", "adj", "blaca", "", "", "", "weak masculine singular"]) + let v = native_list_append(v, ["idlu", "adj", "idlu", "", "", "", "inflection of īdel"]) + let v = native_list_append(v, ["ufeweard", "adj", "ufeweard", "", "ufewearde", "", "upper part of"]) + let v = native_list_append(v, ["neoþeweard", "adj", "neoþeweard", "", "neoþewearde", "", "the bottom of"]) + let v = native_list_append(v, ["deope", "adj", "deope", "", "", "", "inflection of dēop"]) + let v = native_list_append(v, ["æfweard", "adj", "æfweard", "", "æfwearde", "", "absent"]) + let v = native_list_append(v, ["Iudeisc", "adj", "Iudeisc", "", "Iūdēisċ", "", "Jewish"]) + let v = native_list_append(v, ["æcen", "adj", "æcen", "", "ǣċenu", "", "oak"]) + let v = native_list_append(v, ["snawhwit", "adj", "snawhwit", "", "snāwhwīt", "", "snow-white"]) + let v = native_list_append(v, ["sinewealt", "adj", "sinewealt", "", "sinewealte", "", "round circular spherical"]) + let v = native_list_append(v, ["swearte", "adj", "swearte", "", "", "", "inflection of sweart"]) + let v = native_list_append(v, ["stif", "adj", "stif", "", "stīf", "", "Stiff firm hard"]) + let v = native_list_append(v, ["scienost", "adj", "scienost", "", "sċīenost", "", "superlative degree of"]) + let v = native_list_append(v, ["scenra", "adj", "scenra", "", "sċēnre", "", "alternative form of"]) + let v = native_list_append(v, ["scienra", "adj", "scienra", "", "sċīenre", "", "comparative degree of"]) + let v = native_list_append(v, ["cuwearm", "adj", "cuwearm", "", "cūwearm", "", "fresh from the"]) + let v = native_list_append(v, ["gehendes", "adj", "gehendes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["gehierendlic", "adj", "gehierendlic", "", "ġehīerendlīċ", "", "audible"]) + let v = native_list_append(v, ["gesewenlic", "adj", "gesewenlic", "", "ġesewenlīċ", "", "visible"]) + let v = native_list_append(v, ["ungesewenlic", "adj", "ungesewenlic", "", "unġesewenlīċ", "", "invisible"]) + let v = native_list_append(v, ["bærfot", "adj", "bærfot", "", "bærfōt", "", "barefoot"]) + let v = native_list_append(v, ["rofes", "adj", "rofes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["hwæten", "adj", "hwæten", "", "hwǣtenu", "", "wheat"]) + let v = native_list_append(v, ["gecyndelic", "adj", "gecyndelic", "", "ġecyndelīċ", "", "natural"]) + let v = native_list_append(v, ["cræftlic", "adj", "cræftlic", "", "cræftlīċ", "", "artificial synthetic"]) + let v = native_list_append(v, ["unfæger", "adj", "unfæger", "", "unfæġer", "", "ugly"]) + let v = native_list_append(v, ["elreordig", "adj", "elreordig", "elreordiġest", "elreordiġu", "", "foreign-speaking"]) + let v = native_list_append(v, ["elreord", "adj", "elreord", "", "elreorde", "", "foreign-speaking"]) + let v = native_list_append(v, ["halege", "adj", "halege", "", "", "", "inflection of hāleġ"]) + let v = native_list_append(v, ["meþe", "adj", "meþe", "", "mēþu", "", "weary exhausted tired"]) + let v = native_list_append(v, ["werlic", "adj", "werlic", "", "werlīċ", "", "male"]) + let v = native_list_append(v, ["Romanisc", "adj", "Romanisc", "", "Rōmānisċ", "", "Roman"]) + let v = native_list_append(v, ["caserlic", "adj", "caserlic", "", "cāserlīċ", "", "imperial"]) + let v = native_list_append(v, ["forgiefendlic", "adj", "forgiefendlic", "", "forġiefendlīċ", "", "forgivable"]) + let v = native_list_append(v, ["æscen", "adj", "æscen", "", "æsċenu", "", "ashen made of"]) + let v = native_list_append(v, ["fyxen", "adj", "fyxen", "", "fyxenu", "", "fox of or"]) + let v = native_list_append(v, ["Frencisc", "adj", "Frencisc", "", "Frencisċ", "", "Frankish"]) + let v = native_list_append(v, ["ealdbacen", "adj", "ealdbacen", "", "ealdbacene", "", "stale"]) + let v = native_list_append(v, ["sunlic", "adj", "sunlic", "", "sunlīċ", "", "solar of the"]) + let v = native_list_append(v, ["gewunelic", "adj", "gewunelic", "", "ġewunelīċ", "", "normal common ordinary"]) + let v = native_list_append(v, ["ungewunelic", "adj", "ungewunelic", "", "unġewunelīċ", "", "unusual abnormal"]) + let v = native_list_append(v, ["gesene", "adj", "gesene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Denisc", "adj", "Denisc", "", "Denisċ", "", "Danish Norse"]) + let v = native_list_append(v, ["healt", "adj", "healt", "", "healte", "", "lame limping"]) + let v = native_list_append(v, ["wlisp", "adj", "wlisp", "", "wlispe", "", "lisping"]) + let v = native_list_append(v, ["þroht", "adj", "þroht", "", "þrohte", "", "oppressive grievous"]) + let v = native_list_append(v, ["unrihtwis", "adj", "unrihtwis", "", "unrihtwīs", "", "unjust unfair"]) + let v = native_list_append(v, ["hlisful", "adj", "hlisful", "hlīsfullest", "hlīsful", "", "famous"]) + let v = native_list_append(v, ["westum", "adj", "westum", "", "", "", "inflection of wēste"]) + let v = native_list_append(v, ["slæc", "adj", "slæc", "", "slacu", "", "inactive slothful lazy"]) + let v = native_list_append(v, ["undeadlic", "adj", "undeadlic", "", "undēadlīċ", "", "immortal"]) + let v = native_list_append(v, ["fulfremed", "adj", "fulfremed", "", "fulfremede", "", "perfect"]) + let v = native_list_append(v, ["unfulfremed", "adj", "unfulfremed", "", "unfulfremede", "", "imperfect"]) + let v = native_list_append(v, ["sliefleas", "adj", "sliefleas", "", "slīeflēas", "", "sleeveless"]) + let v = native_list_append(v, ["gredig", "adj", "gredig", "", "grēdiġu", "", "alternative form of"]) + let v = native_list_append(v, ["hælig", "adj", "hælig", "", "hǣliġu", "", "inconsistent fickle unreliable"]) + let v = native_list_append(v, ["unscyldig", "adj", "unscyldig", "", "unsċyldiġu", "", "innocent"]) + let v = native_list_append(v, ["þeostre", "adj", "þēostra", "þēostrost", "þēostru", "", "alternative form of"]) + let v = native_list_append(v, ["wiþmetendlic", "adj", "wiþmetendlic", "", "wiþmetendlīċ", "", "comparable"]) + let v = native_list_append(v, ["unwiþmetendlic", "adj", "unwiþmetendlic", "", "unwiþmetendlīċ", "", "incomparable"]) + let v = native_list_append(v, ["oferstigendlic", "adj", "oferstigendlic", "", "oferstīgendlīċ", "", "superlative"]) + let v = native_list_append(v, ["stowlic", "adj", "stowlic", "", "stōwlīċ", "", "local"]) + let v = native_list_append(v, ["asciendlic", "adj", "asciendlic", "", "āsciendlīċ", "", "interrogative"]) + let v = native_list_append(v, ["geagnigendlic", "adj", "geagnigendlic", "", "ġeāgniġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["gewæpnod", "adj", "gewæpnod", "", "ġewǣpnod", "", "armed"]) + let v = native_list_append(v, ["ungewæpnod", "adj", "ungewæpnod", "", "unġewǣpnod", "", "unarmed"]) + let v = native_list_append(v, ["uþwitlic", "adj", "uþwitlic", "", "ūþwitlīċ", "", "philosophical"]) + let v = native_list_append(v, ["twifete", "adj", "twifete", "", "twifētu", "", "bipedal two-footed"]) + let v = native_list_append(v, ["lichamlic", "adj", "lichamlic", "", "līchamlīċ", "", "physical"]) + let v = native_list_append(v, ["cumliþe", "adj", "cumliþe", "", "cumlīþu", "", "hospitable"]) + let v = native_list_append(v, ["uncumliþe", "adj", "uncumliþe", "", "uncumlīþu", "", "inhospitable"]) + let v = native_list_append(v, ["giestliþe", "adj", "giestliþe", "", "ġiestlīþu", "", "hospitable"]) + let v = native_list_append(v, ["twiecge", "adj", "twiecge", "", "twieċġu", "", "double-edged"]) + let v = native_list_append(v, ["Arabisc", "adj", "Arabisc", "", "Arabisċ", "", "Arabic Arabian"]) + let v = native_list_append(v, ["swiþra", "adj", "swiþra", "", "swīþre", "", "right direction"]) + let v = native_list_append(v, ["winestra", "adj", "winestra", "", "winestre", "", "left direction"]) + let v = native_list_append(v, ["togeiecendlic", "adj", "togeiecendlic", "", "tōġeīeċendlīċ", "", "adjectival adjective"]) + let v = native_list_append(v, ["laþlic", "adj", "laþlic", "", "lāþlīċ", "", "hateful loathsome disgusting"]) + let v = native_list_append(v, ["bitor", "adj", "bitor", "", "bitore", "", "alternative form of"]) + let v = native_list_append(v, ["mæte", "adj", "mæte", "", "mǣtu", "", "moderate mean between"]) + let v = native_list_append(v, ["steape", "adj", "steape", "", "", "", "inflection of stēap"]) + let v = native_list_append(v, ["elnes", "adj", "elnes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["æðelboren", "adj", "æðelboren", "", "æðelborene", "", "alternative spelling of"]) + let v = native_list_append(v, ["æðele", "adj", "æðele", "", "æðelu", "", "alternative spelling of"]) + let v = native_list_append(v, ["upcund", "adj", "upcund", "", "upcunde", "", "supernal celestial"]) + let v = native_list_append(v, ["mæseren", "adj", "mæseren", "", "mæserene", "", "maple maple wood"]) + let v = native_list_append(v, ["tinen", "adj", "tinen", "", "tinenu", "", "tin"]) + let v = native_list_append(v, ["andig", "adj", "andig", "", "andiġu", "", "envious"]) + let v = native_list_append(v, ["niþful", "adj", "niþful", "", "nīþful", "", "alternative form of"]) + let v = native_list_append(v, ["niþfull", "adj", "niþfull", "", "nīþfull", "", "full of jealousy"]) + let v = native_list_append(v, ["plegol", "adj", "plegol", "", "plegole", "", "given to playfulness"]) + let v = native_list_append(v, ["reþig", "adj", "reþig", "", "rēþiġu", "", "fierce savage cruel"]) + let v = native_list_append(v, ["waclic", "adj", "waclic", "", "wāclīċ", "", "poor of little"]) + let v = native_list_append(v, ["colre", "adj", "colre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["gehiersum", "adj", "gehiersum", "", "ġehīersumu", "", "obedient"]) + let v = native_list_append(v, ["ungehiersum", "adj", "ungehiersum", "", "unġehīersumu", "", "disobedient"]) + let v = native_list_append(v, ["wielisc", "adj", "wielisc", "", "wīelisċ", "", "Celtic narrow sense"]) + let v = native_list_append(v, ["Crecisc", "adj", "Crecisc", "", "Crēċisċ", "", "Greek"]) + let v = native_list_append(v, ["uneaþe", "adj", "uneaþe", "", "unēaþu", "", "alternative form of"]) + let v = native_list_append(v, ["forliden", "adj", "forliden", "", "forlidene", "", "shipwrecked"]) + let v = native_list_append(v, ["gewyscendlic", "adj", "gewyscendlic", "", "ġewȳsċendlīċ", "", "desirable"]) + let v = native_list_append(v, ["asprungen", "adj", "asprungen", "", "āsprungenu", "", "defunct deficient"]) + let v = native_list_append(v, ["scoplic", "adj", "scoplic", "", "sċoplīċ", "", "poetic"]) + let v = native_list_append(v, ["leoþlic", "adj", "leoþlic", "", "lēoþlīċ", "", "poetic"]) + let v = native_list_append(v, ["lyswen", "adj", "lyswen", "", "lyswenu", "", "full of pus"]) + let v = native_list_append(v, ["gefog", "adj", "gefog", "", "ġefōg", "", "fit suitable"]) + let v = native_list_append(v, ["halwœnde", "adj", "halwœnde", "", "hālwœndu", "", "alternative form of"]) + let v = native_list_append(v, ["moderlic", "adj", "moderlic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ytren", "adj", "ytren", "", "ytrenu", "", "otter of or"]) + let v = native_list_append(v, ["hlæne", "adj", "hlæne", "", "hlǣnu", "", "lean meager"]) + let v = native_list_append(v, ["hrurol", "adj", "hrurol", "", "hrurole", "", "deciduous"]) + let v = native_list_append(v, ["cylu", "adj", "cylu", "", "cylo", "", "spotted speckled"]) + let v = native_list_append(v, ["deaþwerig", "adj", "deaþwerig", "", "dēaþwēriġu", "", "death-weary"]) + let v = native_list_append(v, ["brœme", "adj", "brœme", "", "brœ̄mu", "", "alternative form of"]) + let v = native_list_append(v, ["Ebreisc", "adj", "Ebreisc", "", "Ebrēisċ", "", "Hebrew"]) + let v = native_list_append(v, ["welwillende", "adj", "welwillende", "", "welwillendu", "", "benevolent"]) + let v = native_list_append(v, ["hælendlic", "adj", "hælendlic", "", "hǣlendlīċ", "", "healthy salutary"]) + let v = native_list_append(v, ["andfenge", "adj", "andfenge", "", "andfenġu", "", "acceptable"]) + let v = native_list_append(v, ["cynelic", "adj", "cynelic", "", "cynelīċ", "", "royal kingly"]) + let v = native_list_append(v, ["anhende", "adj", "anhende", "", "ānhendu", "", "one-handed"]) + let v = native_list_append(v, ["bænen", "adj", "bænen", "", "bǣnenu", "", "bone"]) + let v = native_list_append(v, ["elpenbænen", "adj", "elpenbænen", "", "elpenbǣnenu", "", "alternative form of"]) + let v = native_list_append(v, ["tungolbære", "adj", "tungolbære", "", "tungolbǣru", "", "starry"]) + let v = native_list_append(v, ["tunglen", "adj", "tunglen", "", "tunglenu", "", "star sidereal"]) + let v = native_list_append(v, ["beacniendlic", "adj", "beacniendlic", "", "bēacniendlīċ", "", "allegorical"]) + let v = native_list_append(v, ["wohbogen", "adj", "wohbogen", "", "wōhbogen", "", "bent crooked"]) + let v = native_list_append(v, ["wohfotede", "adj", "wohfotede", "", "wōhfōtedu", "", "crook-footed"]) + let v = native_list_append(v, ["wohfremmende", "adj", "wohfremmende", "", "wōhfremmendu", "", "wrong-doing malfeasant"]) + let v = native_list_append(v, ["wohfull", "adj", "wohfull", "", "wōhfull", "", "wicked evil"]) + let v = native_list_append(v, ["wohgeorn", "adj", "wohgeorn", "", "wōhġeorn", "", "eager in wickedness"]) + let v = native_list_append(v, ["wohhæmende", "adj", "wohhæmende", "", "wōhhǣmendu", "", "adulterous"]) + let v = native_list_append(v, ["wohhandede", "adj", "wohhandede", "", "wōhhandedu", "", "crook-handed"]) + let v = native_list_append(v, ["wohlic", "adj", "wohlic", "", "wōhlīċ", "", "wrong"]) + let v = native_list_append(v, ["wolberende", "adj", "wolberende", "", "wōlberendu", "", "pestilential pestiferous"]) + let v = native_list_append(v, ["wolberendlic", "adj", "wolberendlic", "", "wōlberendlīċ", "", "pestilential"]) + let v = native_list_append(v, ["flicor", "adj", "flicor", "", "", "", "shaky wavering unsteady"]) + let v = native_list_append(v, ["swogen", "adj", "swogen", "", "swōgenu", "", "senseless overcome rushed"]) + let v = native_list_append(v, ["gedwol", "adj", "gedwol", "", "ġedwolu", "", "heretical"]) + let v = native_list_append(v, ["gedwolsum", "adj", "gedwolsum", "", "ġedwolsumu", "", "erroneous"]) + let v = native_list_append(v, ["crypel", "adj", "crypel", "", "crypele", "", "crippled disabled"]) + let v = native_list_append(v, ["sinwealt", "adj", "sinwealt", "", "sinwealte", "", "alternative form of"]) + let v = native_list_append(v, ["nihstig", "adj", "nihstig", "", "nihstiġu", "", "not partaking abstaining"]) + let v = native_list_append(v, ["trume", "adj", "trume", "", "", "", "inflection of trum"]) + let v = native_list_append(v, ["Ispanisc", "adj", "Ispanisc", "", "Ispānisċ", "", "Spanish"]) + let v = native_list_append(v, ["lengest", "adj", "lengest", "", "lenġest", "", "superlative degree of"]) + let v = native_list_append(v, ["wyrrest", "adj", "wyrrest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winterlic", "adj", "winterlic", "", "winterlīċ", "", "winter"]) + let v = native_list_append(v, ["gewintred", "adj", "gewintred", "", "ġewintredu", "", "full-grown"]) + let v = native_list_append(v, ["ungewintred", "adj", "ungewintred", "", "unġewintredu", "", "not full-grown"]) + let v = native_list_append(v, ["winterbiter", "adj", "winterbiter", "", "winterbitere", "", "bitter with winter"]) + let v = native_list_append(v, ["winterceald", "adj", "winterceald", "", "winterċeald", "", "winter-cold"]) + let v = native_list_append(v, ["wintercearig", "adj", "wintercearig", "", "winterċeariġ", "", "sad from old"]) + let v = native_list_append(v, ["wintrig", "adj", "wintrig", "", "wintriġu", "", "wintry"]) + let v = native_list_append(v, ["yfelwillende", "adj", "yfelwillende", "", "yfelwillendu", "", "malicious malevolent"]) + let v = native_list_append(v, ["læsest", "adj", "læsest", "", "lǣsest", "", "alternative form of"]) + let v = native_list_append(v, ["hnesce", "adj", "hnesċra", "hnesċest", "hnesċu", "", "soft delicate tender"]) + let v = native_list_append(v, ["leoþcræftig", "adj", "leoþcræftig", "", "lēoþcræftiġu", "", "skilled in poetry"]) + let v = native_list_append(v, ["hror", "adj", "hror", "", "hrōr", "", "stirring active"]) + let v = native_list_append(v, ["drige", "adj", "drige", "", "drīġu", "", "alternative form of"]) + let v = native_list_append(v, ["inweard", "adj", "inweard", "", "inwearde", "", "internal inward internal"]) + let v = native_list_append(v, ["incund", "adj", "incund", "", "incunde", "", "internal inward intimate"]) + let v = native_list_append(v, ["inneweard", "adj", "inneweard", "", "innewearde", "", "inward internal interior"]) + let v = native_list_append(v, ["innecund", "adj", "innecund", "", "innecunde", "", "inward internal"]) + let v = native_list_append(v, ["innanweard", "adj", "innanweard", "", "innanwearde", "", "inward internal interior"]) + let v = native_list_append(v, ["innancund", "adj", "innancund", "", "innancunde", "", "inward internal"]) + let v = native_list_append(v, ["innera", "adj", "innera", "innemest", "innere", "", "inner interior"]) + let v = native_list_append(v, ["þancweorþ", "adj", "þancweorþ", "", "þancweorþe", "", "thankworthy deserving of"]) + let v = native_list_append(v, ["cedrisc", "adj", "cedrisc", "", "ċedrisċ", "", "cedar"]) + let v = native_list_append(v, ["pintrywen", "adj", "pintrywen", "", "pīntrȳwenu", "", "alternative form of"]) + let v = native_list_append(v, ["pintreowen", "adj", "pintreowen", "", "pīntrēowenu", "", "pine tree"]) + let v = native_list_append(v, ["gehwæde", "adj", "gehwæde", "", "ġehwǣdu", "", "little moderate scanty"]) + let v = native_list_append(v, ["flanhræd", "adj", "flanhræd", "", "flānhradu", "", "arrow-fast as fast"]) + let v = native_list_append(v, ["flaniht", "adj", "flaniht", "", "flāniht", "", "dart arrow"]) + let v = native_list_append(v, ["ungeswenced", "adj", "ungeswenced", "", "unġeswenċedu", "", "unwearied unceasing"]) + let v = native_list_append(v, ["stearcmod", "adj", "stearcmod", "", "stearcmōd", "", "stubborn obstinate"]) + let v = native_list_append(v, ["getacniendlic", "adj", "getacniendlic", "", "ġetācniendlīċ", "", "indicative significant"]) + let v = native_list_append(v, ["godspellisc", "adj", "godspellisc", "", "gōdspellisċ", "", "evangelical"]) + let v = native_list_append(v, ["godspellic", "adj", "godspellic", "", "gōdspellīċ", "", "gospel"]) + let v = native_list_append(v, ["neowel", "adj", "neowel", "", "neowele", "", "alternative form of"]) + let v = native_list_append(v, ["niwel", "adj", "niwel", "", "niwele", "", "alternative form of"]) + let v = native_list_append(v, ["neol", "adj", "neol", "", "nēol", "", "alternative form of"]) + let v = native_list_append(v, ["neowellic", "adj", "neowellic", "", "neowellīċ", "", "alternative form of"]) + let v = native_list_append(v, ["niwellic", "adj", "niwellic", "", "niwellīċ", "", "alternative form of"]) + let v = native_list_append(v, ["basora", "adj", "basora", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["cwenlic", "adj", "cwenlic", "", "cwēnlīċ", "", "queenly"]) + let v = native_list_append(v, ["unforesceawod", "adj", "unforesceawod", "", "unforesċēawodu", "", "unforeseen unconsidered"]) + let v = native_list_append(v, ["bledhwæt", "adj", "bledhwæt", "", "blēdhwatu", "", "shoot growing quickly"]) + let v = native_list_append(v, ["seonoþlic", "adj", "seonoþlic", "", "seonoþlīċ", "", "synodal synodic"]) + let v = native_list_append(v, ["womm", "adj", "womm", "", "womme", "", "foul"]) + let v = native_list_append(v, ["ungewemmed", "adj", "ungewemmed", "", "unġewemmedu", "", "unspotted immaculate uncorrupted"]) + let v = native_list_append(v, ["unwemme", "adj", "unwemme", "", "unwemmu", "", "spotless without blemish"]) + let v = native_list_append(v, ["æber", "adj", "æber", "", "ǣbēr", "", "notorious"]) + let v = native_list_append(v, ["sæpig", "adj", "sæpig", "", "sæpiġ", "", "full of sap"]) + let v = native_list_append(v, ["fræfel", "adj", "fræfel", "", "fræfele", "", "saucy cunning crafty"]) + let v = native_list_append(v, ["nearwe", "adj", "nearwe", "", "", "", "inflection of nearu"]) + let v = native_list_append(v, ["eallic", "adj", "eallic", "", "eallīċ", "", "universal general catholic"]) + let v = native_list_append(v, ["allic", "adj", "allic", "", "allīċ", "", "alternative form of"]) + let v = native_list_append(v, ["þolemod", "adj", "þolemod", "", "þolemōd", "", "of a patient"]) + let v = native_list_append(v, ["palentlic", "adj", "palentlic", "", "palentlīċ", "", "palatial"]) + let v = native_list_append(v, ["anige", "adj", "anige", "", "ānīġu", "", "alternative form of"]) + let v = native_list_append(v, ["ancenned", "adj", "ancenned", "", "āncennedu", "", "only-begotten"]) + let v = native_list_append(v, ["handworht", "adj", "handworht", "", "handworhte", "", "handmade"]) + let v = native_list_append(v, ["windruncen", "adj", "windruncen", "", "wīndruncenu", "", "wine drunk drunk"]) + let v = native_list_append(v, ["druncen", "adj", "druncen", "", "druncenu", "", "drunk"]) + let v = native_list_append(v, ["lenctenlic", "adj", "lenctenlic", "", "lenctenlīċ", "", "vernal springlike"]) + let v = native_list_append(v, ["horsc", "adj", "horsc", "", "horsċ", "", "quick ready active"]) + let v = native_list_append(v, ["eorp", "adj", "eorp", "", "eorpe", "", "dark dusky"]) + let v = native_list_append(v, ["gesceadwis", "adj", "gesceadwis", "", "ġesċēadwīs", "", "logical rational reasonable"]) + let v = native_list_append(v, ["smeag", "adj", "smeag", "", "smēag", "", "creeping in penetrating"]) + let v = native_list_append(v, ["slipor", "adj", "slipor", "", "slipore", "", "slippery not easy"]) + let v = native_list_append(v, ["wælhreow", "adj", "wælhreow", "wælhrēowast", "wælhrēow", "", "cruel"]) + let v = native_list_append(v, ["mægdenlic", "adj", "mægdenlic", "", "mæġdenlīċ", "", "girlish girly"]) + let v = native_list_append(v, ["micellic", "adj", "micellic", "", "miċellīċ", "", "great grand magnificent"]) + let v = native_list_append(v, ["syngum", "adj", "syngum", "", "", "", "inflection of synniġ"]) + let v = native_list_append(v, ["mennisclic", "adj", "mennisclic", "", "mennisċlīċ", "", "humane"]) + let v = native_list_append(v, ["unmennisclic", "adj", "unmennisclic", "", "unmennisċlīċ", "", "inhumane inhuman"]) + let v = native_list_append(v, ["gecnæwe", "adj", "gecnæwe", "", "ġecnǣwu", "", "aware +genitive of"]) + let v = native_list_append(v, ["neowol", "adj", "neowol", "", "neowole", "", "prone lying face"]) + let v = native_list_append(v, ["niþerlic", "adj", "niþerlic", "", "niþerlīċ", "", "low"]) + let v = native_list_append(v, ["wæterseoc", "adj", "wæterseoc", "", "wætersēoc", "", "edematous dropsical"]) + let v = native_list_append(v, ["deofolseoc", "adj", "deofolseoc", "", "dēofolsēoc", "", "possessed by a"]) + let v = native_list_append(v, ["camplic", "adj", "camplic", "", "camplīċ", "", "military"]) + let v = native_list_append(v, ["upriht", "adj", "upriht", "", "uprihte", "", "upright erect"]) + let v = native_list_append(v, ["unmihtlic", "adj", "unmihtlic", "", "unmihtlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["deaþscyldig", "adj", "deaþscyldig", "", "dēaþsċyldiġu", "", "condemned to death"]) + let v = native_list_append(v, ["efenscyldig", "adj", "efenscyldig", "", "efensċyldiġu", "", "alternative form of"]) + let v = native_list_append(v, ["feorhscyldig", "adj", "feorhscyldig", "", "feorhsċyldiġu", "", "condemned to death"]) + let v = native_list_append(v, ["godscyldig", "adj", "godscyldig", "", "godsċyldiġu", "", "impious"]) + let v = native_list_append(v, ["handscyldig", "adj", "handscyldig", "", "hɑndsċyldiġu", "", "liable to lose"]) + let v = native_list_append(v, ["healfscyldig", "adj", "healfscyldig", "", "healfsċyldiġu", "", "half guilty"]) + let v = native_list_append(v, ["þurhscyldig", "adj", "þurhscyldig", "", "þurhsċyldiġu", "", "very guilty"]) + let v = native_list_append(v, ["þeofscyldig", "adj", "þeofscyldig", "", "þēofsċyldiġu", "", "theft guilty guilty"]) + let v = native_list_append(v, ["twiscyldig", "adj", "twiscyldig", "", "twisċyldiġu", "", "condemned to a"]) + let v = native_list_append(v, ["morþorscyldig", "adj", "morþorscyldig", "", "morþorsċyldiġu", "", "guilty of murder"]) + let v = native_list_append(v, ["manscyldig", "adj", "manscyldig", "", "mānsċyldiġu", "", "guilty of a"]) + let v = native_list_append(v, ["scyldleas", "adj", "scyldleas", "", "sċyldlēas", "", "guiltless"]) + let v = native_list_append(v, ["hiwcund", "adj", "hiwcund", "", "hīwcund", "", "domestic"]) + let v = native_list_append(v, ["æþelcund", "adj", "æþelcund", "", "æþelcunde", "", "of noble birth"]) + let v = native_list_append(v, ["sawolcund", "adj", "sawolcund", "", "sāwolcund", "", "spiritual"]) + let v = native_list_append(v, ["deoren", "adj", "deoren", "", "dēorenu", "", "of or belonging"]) + let v = native_list_append(v, ["sunnig", "adj", "sunnig", "", "sunnigu", "", "sunny"]) + let v = native_list_append(v, ["stulor", "adj", "stulor", "", "stulore", "", "furtive secretive clandestine"]) + let v = native_list_append(v, ["samcwic", "adj", "samcwic", "", "sāmcwicu", "", "half-dead"]) + let v = native_list_append(v, ["fultumleas", "adj", "fultumleas", "", "fultumlēas", "", "without help helpless"]) + let v = native_list_append(v, ["gesundfull", "adj", "gesundfull", "", "ġesundfull", "", "sound whole healthy"]) + let v = native_list_append(v, ["sæmra", "adj", "sæmra", "sǣmest", "sǣmre", "", "worse inferior weaker"]) + let v = native_list_append(v, ["sæmest", "adj", "sǣmra", "", "sǣmest", "", "worst most inferior"]) + let v = native_list_append(v, ["singrene", "adj", "singrene", "", "singrēnu", "", "evergreen"]) + let v = native_list_append(v, ["Sodomisc", "adj", "Sodomisc", "", "Sodomisċ", "", "Sodom sodomitic"]) + let v = native_list_append(v, ["sodomitisc", "adj", "sodomitisc", "", "sodomitisċ", "", "alternative form of"]) + let v = native_list_append(v, ["undeop", "adj", "undeop", "", "undēop", "", "shallow literally and"]) + let v = native_list_append(v, ["uterra", "adj", "uterra", "ūtemest", "ūterre", "", "alternative form of"]) + let v = native_list_append(v, ["þryþswyþ", "adj", "þryþswyþ", "", "þrȳþswȳþ", "", "alternative spelling of"]) + let v = native_list_append(v, ["bisæc", "adj", "bisæc", "", "bīsæċ", "", "alternative form of"]) + let v = native_list_append(v, ["gesundful", "adj", "gesundful", "", "ġesundful", "", "alternative form of"]) + let v = native_list_append(v, ["endlefta", "adj", "endlefta", "", "endlefte", "", "eleventh"]) + let v = native_list_append(v, ["twelfta", "adj", "twelfta", "", "twelfte", "", "twelfth"]) + let v = native_list_append(v, ["geleaful", "adj", "geleaful", "", "ġelēaful", "", "alternative form of"]) + let v = native_list_append(v, ["gemyndful", "adj", "gemyndful", "", "ġemyndful", "", "alternative form of"]) + let v = native_list_append(v, ["genoh", "adj", "genoh", "", "ġenōh", "", "alternative form of"]) + let v = native_list_append(v, ["þreotteoþa", "adj", "þreotteoþa", "", "þrēottēoþe", "", "thirteenth"]) + let v = native_list_append(v, ["feowerteoþa", "adj", "feowerteoþa", "", "fēowertēoþe", "", "fourteenth"]) + let v = native_list_append(v, ["twentigoþa", "adj", "twentigoþa", "", "twēntigoþe", "", "twentieth"]) + let v = native_list_append(v, ["cyperen", "adj", "cyperen", "", "cyperenu", "", "alternative form of"]) + let v = native_list_append(v, ["blodge", "adj", "blodge", "", "", "", "inflection of blōdiġ"]) + let v = native_list_append(v, ["fifteoþa", "adj", "fifteoþa", "", "fīftēoþe", "", "fifteenth"]) + let v = native_list_append(v, ["seofonteoþa", "adj", "seofonteoþa", "", "seofontēoþe", "", "seventeenth"]) + let v = native_list_append(v, ["eahtateoþa", "adj", "eahtateoþa", "", "eahtatēoþe", "", "eighteenth"]) + let v = native_list_append(v, ["nigonteoþa", "adj", "nigonteoþa", "", "nigontēoþe", "", "nineteenth"]) + let v = native_list_append(v, ["siextigfeald", "adj", "siextigfeald", "", "siextiġfeald", "", "alternative form of"]) + let v = native_list_append(v, ["bedreda", "adj", "bedreda", "", "bedrede", "", "alternative form of"]) + let v = native_list_append(v, ["gelom", "adj", "gelom", "", "ġelōm", "", "often frequent"]) + let v = native_list_append(v, ["wohful", "adj", "wohful", "", "wōhful", "", "alternative form of"]) + let v = native_list_append(v, ["yferra", "adj", "yferra", "yfemest", "yferre", "", "upper higher"]) + let v = native_list_append(v, ["fiþerfete", "adj", "fiþerfete", "", "fiþerfētu", "", "four-footed quadrupedal"]) + let v = native_list_append(v, ["mealmiht", "adj", "mealmiht", "", "mealmihte", "", "sandy chalky"]) + let v = native_list_append(v, ["spræcful", "adj", "spræcful", "", "sprǣcfulu", "", "talkative loquacious"]) + let v = native_list_append(v, ["acen", "adj", "acen", "", "ācenu", "", "alternative form of"]) + let v = native_list_append(v, ["axigendlic", "adj", "axigendlic", "", "āxiġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["clipigendlic", "adj", "clipigendlic", "", "clipiġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["gecigendlic", "adj", "gecigendlic", "", "ġeċīġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["getacnigendlic", "adj", "getacnigendlic", "", "ġetācniġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["gymeleas", "adj", "gymeleas", "", "ġȳmelēas", "", "alternative form of"]) + let v = native_list_append(v, ["nemnigendlic", "adj", "nemnigendlic", "", "nemniġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["orþonc", "adj", "orþonc", "", "orþonce", "", "alternative form of"]) + let v = native_list_append(v, ["unmyltsiendlic", "adj", "unmyltsiendlic", "", "unmyltsiendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["unnytwyrþe", "adj", "unnytwyrþe", "", "unnytwyrþu", "", "alternative form of"]) + let v = native_list_append(v, ["þystre", "adj", "þȳstra", "þȳstrost", "þȳstru", "", "alternative form of"]) + let v = native_list_append(v, ["æghwylc", "adj", "æghwylc", "", "ǣġhwylċ", "", "alternative form of"]) + let v = native_list_append(v, ["wynfull", "adj", "wynfull", "", "wynfulle", "", "alternative form of"]) + let v = native_list_append(v, ["deorfellen", "adj", "deorfellen", "", "dēorfellenu", "", "made of beast"]) + let v = native_list_append(v, ["friþsum", "adj", "friþsum", "", "friþsumu", "", "peaceful"]) + let v = native_list_append(v, ["fyrn", "adj", "fyrn", "", "fyrne", "", "former"]) + let v = native_list_append(v, ["foreweard", "adj", "foreweard", "", "forewearde", "", "forward fore former"]) + let v = native_list_append(v, ["smeah", "adj", "smeah", "", "smēah", "", "alternative form of"]) + let v = native_list_append(v, ["þriste", "adj", "þriste", "", "þrīstu", "", "bold brave"]) + let v = native_list_append(v, ["cærsiht", "adj", "cærsiht", "", "cærsihte", "", "cressy"]) + let v = native_list_append(v, ["clifiht", "adj", "clifiht", "", "clifihte", "", "cliffy steep"]) + let v = native_list_append(v, ["wulfheort", "adj", "wulfheort", "", "wulfheorte", "", "vicious savage"]) + let v = native_list_append(v, ["cealdheort", "adj", "cealdheort", "", "ċealdheort", "", "coldhearted"]) + let v = native_list_append(v, ["heardheort", "adj", "heardheort", "", "heardheorte", "", "hardhearted"]) + let v = native_list_append(v, ["wearriht", "adj", "wearriht", "", "wearrihte", "", "calloused of trees"]) + let v = native_list_append(v, ["triwen", "adj", "triwen", "", "trīwenu", "", "alternative form of"]) + let v = native_list_append(v, ["wyllen", "adj", "wyllen", "", "wyllenu", "", "made of wool"]) + let v = native_list_append(v, ["edgeong", "adj", "edgeong", "", "edġeong", "", "young again rejuvenated"]) + let v = native_list_append(v, ["aniege", "adj", "aniege", "", "ānīeġu", "", "one-eyed"]) + let v = native_list_append(v, ["grimm", "adj", "grimm", "", "grimme", "", "fierce savage terrible"]) + let v = native_list_append(v, ["sceoliege", "adj", "sceoliege", "", "sċēolīeġu", "", "alternative form of"]) + let v = native_list_append(v, ["Sicilisc", "adj", "Sicilisc", "", "Sicilisċ", "", "Sicilian"]) + let v = native_list_append(v, ["undiere", "adj", "undiere", "", "undīeru", "", "cheap"]) + let v = native_list_append(v, ["undruncen", "adj", "undruncen", "", "undruncenu", "", "sober not drunk"]) + let v = native_list_append(v, ["gesliefed", "adj", "gesliefed", "", "ġeslīefedu", "", "sleeved"]) + let v = native_list_append(v, ["berht", "adj", "berht", "", "berhte", "", "alternative form of"]) + let v = native_list_append(v, ["sweflen", "adj", "sweflen", "", "sweflenu", "", "sulfurous brimstony"]) + let v = native_list_append(v, ["sweflenum", "adj", "sweflenum", "", "", "", "inflection of sweflen"]) + let v = native_list_append(v, ["earmheort", "adj", "earmheort", "", "earmheorte", "", "faint-hearted"]) + let v = native_list_append(v, ["deofollic", "adj", "deofollic", "", "dēofollīċ", "", "demonic"]) + let v = native_list_append(v, ["liþu", "adj", "liþu", "", "", "", "inflection of līþe"]) + let v = native_list_append(v, ["smalan", "adj", "smalan", "", "", "", "inflection of smæl"]) + let v = native_list_append(v, ["smalum", "adj", "smalum", "", "", "", "inflection of smæl"]) + let v = native_list_append(v, ["smales", "adj", "smales", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["clæna", "adj", "clæna", "", "", "", "inflection of clǣne"]) + let v = native_list_append(v, ["clænes", "adj", "clænes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["clænum", "adj", "clænum", "", "", "", "inflection of clǣne"]) + let v = native_list_append(v, ["clænan", "adj", "clænan", "", "", "", "inflection of clǣne"]) + let v = native_list_append(v, ["clænne", "adj", "clænne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["bærne", "adj", "bærne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["barum", "adj", "barum", "", "", "", "inflection of bær"]) + let v = native_list_append(v, ["byna", "adj", "byna", "", "", "", "inflection of bȳn"]) + let v = native_list_append(v, ["hlutor", "adj", "hlutor", "", "hlūtoru", "", "clear pure bright"]) + let v = native_list_append(v, ["forht", "adj", "forht", "", "forhte", "", "fearful afraid timid"]) + let v = native_list_append(v, ["firenfull", "adj", "firenfull", "", "firenfulle", "", "sinful"]) + let v = native_list_append(v, ["firengeorn", "adj", "firengeorn", "", "firenġeorn", "", "sinful"]) + let v = native_list_append(v, ["firenlic", "adj", "firenlic", "", "firenlīċ", "", "sinful wicked"]) + let v = native_list_append(v, ["firensynnig", "adj", "firensynnig", "", "firensynniġu", "", "sinful"]) + let v = native_list_append(v, ["syfre", "adj", "syfre", "sȳfrust", "sȳfru", "", "sober pure temperate"]) + let v = native_list_append(v, ["unsyfre", "adj", "unsyfre", "", "unsȳfru", "", "impure unclean foul"]) + let v = native_list_append(v, ["wilddeorlic", "adj", "wilddeorlic", "", "wilddēorlīċ", "", "like a wild"]) + let v = native_list_append(v, ["blostmig", "adj", "blostmig", "", "blōstmiġu", "", "flowery floral"]) + let v = native_list_append(v, ["unforbugendlic", "adj", "unforbugendlic", "", "", "", "inevitable unavoidable"]) + let v = native_list_append(v, ["wiþcoren", "adj", "wiþcoren", "", "wiþcorene", "", "reprobate wicked"]) + let v = native_list_append(v, ["syferæte", "adj", "syferæte", "", "sȳferǣtu", "", "moderate in eating"]) + let v = native_list_append(v, ["syferlic", "adj", "syferlic", "", "sȳferlīċ", "", "sober moderate"]) + let v = native_list_append(v, ["unsyferlic", "adj", "unsyferlic", "", "unsȳferlīċ", "", "impure unclean"]) + let v = native_list_append(v, ["ceorlleas", "adj", "ceorlleas", "", "ċeorllēas", "", "without a husband"]) + let v = native_list_append(v, ["werleas", "adj", "werleas", "", "werlēas", "", "without a husband"]) + let v = native_list_append(v, ["ofgangende", "adj", "ofgangende", "", "ofgangendu", "", "derivative"]) + let v = native_list_append(v, ["ofgangendlic", "adj", "ofgangendlic", "", "ofgangendlīċ", "", "synonym of ofgangende"]) + let v = native_list_append(v, ["setlgangende", "adj", "setlgangende", "", "setlgangendu", "", "setting of heavenly"]) + let v = native_list_append(v, ["wudulic", "adj", "wudulic", "", "wudulīċ", "", "of a wood"]) + let v = native_list_append(v, ["wudig", "adj", "wudig", "", "wudiġ", "", "woody full of"]) + let v = native_list_append(v, ["wudubære", "adj", "wudubære", "", "wudubǣru", "", "woody"]) + let v = native_list_append(v, ["wudiht", "adj", "wudiht", "", "wudihte", "", "woody full of"]) + let v = native_list_append(v, ["samodwyrcende", "adj", "samodwyrcende", "", "samodwyrċendu", "", "working together cooperating"]) + let v = native_list_append(v, ["larsum", "adj", "larsum", "", "lārsumu", "", "ready to learn"]) + let v = native_list_append(v, ["lareowlic", "adj", "lareowlic", "", "lārēowlīċ", "", "after the manner"]) + let v = native_list_append(v, ["larlic", "adj", "larlic", "", "lārlīċ", "", "under instruction in"]) + let v = native_list_append(v, ["deriendlic", "adj", "deriendlic", "", "deriendlīċ", "", "noxious nocent harmful"]) + let v = native_list_append(v, ["underiendlic", "adj", "underiendlic", "", "underiendlīċ", "", "innoxious innocent harmless"]) + let v = native_list_append(v, ["ungeendiendlic", "adj", "ungeendiendlic", "", "unġeendiendlīċ", "", "indefinite"]) + let v = native_list_append(v, ["wliteleas", "adj", "wliteleas", "", "wlitelēas", "", "ugly uncomely hideous"]) + let v = native_list_append(v, ["fenlic", "adj", "fenlic", "", "fenlīċ", "", "fenlike fenny"]) + let v = native_list_append(v, ["fennig", "adj", "fennig", "", "fenniġu", "", "fenny"]) + let v = native_list_append(v, ["feldlic", "adj", "feldlic", "", "feldlīċ", "", "fieldlike"]) + let v = native_list_append(v, ["genihtful", "adj", "genihtful", "", "ġenihtful", "", "plentiful profuse"]) + let v = native_list_append(v, ["genihtsum", "adj", "genihtsum", "ġenihtsumest", "ġenihtsumu", "", "abundant plentiful fruitful"]) + let v = native_list_append(v, ["fulgenihtsum", "adj", "fulgenihtsum", "", "fulġenihtsumu", "", "very abundant"]) + let v = native_list_append(v, ["nihtsum", "adj", "nihtsum", "nihtsumest", "nihtsumu", "", "abundant"]) + let v = native_list_append(v, ["micelmod", "adj", "micelmod", "", "miċelmōd", "", "magnanimous"]) + let v = native_list_append(v, ["geþogen", "adj", "geþogen", "", "ġeþogen", "", "grown up"]) + let v = native_list_append(v, ["unfrod", "adj", "unfrod", "", "unfrōd", "", "not old"]) + let v = native_list_append(v, ["eþelleas", "adj", "eþelleas", "", "ēþellēas", "", "countryless homeless"]) + let v = native_list_append(v, ["staþolfæst", "adj", "staþolfæst", "", "staþolfæste", "", "steadfast stable firm"]) + let v = native_list_append(v, ["unstaþolfæst", "adj", "unstaþolfæst", "", "unstaþolfæste", "", "unsettled not stationary"]) + let v = native_list_append(v, ["staþolfæstlic", "adj", "staþolfæstlic", "", "staþolfæstlīċ", "", "steadfast firm"]) + let v = native_list_append(v, ["fusne", "adj", "fusne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["tyhtendlic", "adj", "tyhtendlic", "", "tyhtendlīċ", "", "able to urge"]) + let v = native_list_append(v, ["reod", "adj", "reod", "", "rēod", "", "red"]) + let v = native_list_append(v, ["eaþmod", "adj", "eaþmod", "", "ēaþmōd", "", "humble"]) + let v = native_list_append(v, ["eaþmodheort", "adj", "eaþmodheort", "", "ēaþmōdheort", "", "humble-minded humble at"]) + let v = native_list_append(v, ["eaþmodlic", "adj", "eaþmodlic", "", "ēaþmōdlīċ", "", "humble"]) + let v = native_list_append(v, ["toweorpendlic", "adj", "toweorpendlic", "", "tōweorpendlīċ", "", "destructible"]) + let v = native_list_append(v, ["merscig", "adj", "merscig", "", "mersċiġu", "", "marshy"]) + let v = native_list_append(v, ["þwerh", "adj", "þwerh", "", "þwēre", "", "alternative form of"]) + let v = native_list_append(v, ["eaþmodig", "adj", "eaþmodig", "", "ēaþmōdiġu", "", "humble"]) + let v = native_list_append(v, ["eaþbede", "adj", "eaþbede", "", "ēaþbēdu", "", "exorable"]) + let v = native_list_append(v, ["eaþbene", "adj", "eaþbene", "", "ēaþbēnu", "", "exorable"]) + let v = native_list_append(v, ["geræde", "adj", "geræde", "", "ġerǣdu", "", "ready prompt prepared"]) + let v = native_list_append(v, ["eardiendlic", "adj", "eardiendlic", "", "eardiendlīċ", "", "inhabitable"]) + let v = native_list_append(v, ["ymbeardiende", "adj", "ymbeardiende", "", "ymbeardiendu", "", "dwelling around"]) + let v = native_list_append(v, ["yþig", "adj", "yþig", "", "ȳþiġu", "", "fluctuating"]) + let v = native_list_append(v, ["woriende", "adj", "woriende", "", "wōriendu", "", "wandering"]) + let v = native_list_append(v, ["yþworiende", "adj", "yþworiende", "", "ȳþwōriendu", "", "wave-wandering"]) + let v = native_list_append(v, ["liegbære", "adj", "liegbære", "", "līeġbǣru", "", "flame-bearing flaming fiery"]) + let v = native_list_append(v, ["liegberende", "adj", "liegberende", "", "līeġberendu", "", "flame-bearing fiery"]) + let v = native_list_append(v, ["lieglocc", "adj", "lieglocc", "", "līeġlocc", "", "having flaming locks"]) + let v = native_list_append(v, ["liegloccod", "adj", "liegloccod", "", "līeġloccodu", "", "having flaming locks"]) + let v = native_list_append(v, ["liegspiwol", "adj", "liegspiwol", "", "līeġspīwolu", "", "flame-spewing"]) + let v = native_list_append(v, ["unoferswiþendlic", "adj", "unoferswiþendlic", "", "unoferswīþendlīċ", "", "invincible"]) + let v = native_list_append(v, ["unoferwinnendlic", "adj", "unoferwinnendlic", "", "unoferwinnendlīċ", "", "unbeatable invincible"]) + let v = native_list_append(v, ["fæmende", "adj", "fæmende", "", "fǣmendu", "", "foaming"]) + let v = native_list_append(v, ["liegfæmende", "adj", "liegfæmende", "", "līeġfǣmendu", "", "flame spewing"]) + let v = native_list_append(v, ["famblawende", "adj", "famblawende", "", "fāmblāwendu", "", "foaming"]) + let v = native_list_append(v, ["liegfamblawende", "adj", "liegfamblawende", "", "līeġfāmblāwendu", "", "flame spewing"]) + let v = native_list_append(v, ["geteorigendlic", "adj", "geteorigendlic", "", "ġetēoriġendlīċ", "", "defective imperfect"]) + let v = native_list_append(v, ["ciricgeorn", "adj", "ciricgeorn", "", "ċiriċġeorn", "", "diligent in attending"]) + let v = native_list_append(v, ["heafdeht", "adj", "heafdeht", "", "hēafdeht", "", "having a head"]) + let v = native_list_append(v, ["gesceadlic", "adj", "gesceadlic", "", "ġesċeadlīċ", "", "shadowy shady obscure"]) + let v = native_list_append(v, ["besceawod", "adj", "besceawod", "", "", "", "considerate thoughtful circumspect"]) + let v = native_list_append(v, ["unstæfwis", "adj", "unstæfwis", "", "unstæfwīs", "", "illiterate"]) + let v = native_list_append(v, ["dædlic", "adj", "dædlic", "", "dǣdlīċ", "", "active"]) + let v = native_list_append(v, ["gemyndelic", "adj", "gemyndelic", "", "ġemyndelīċ", "", "memorable"]) + let v = native_list_append(v, ["wierþe", "adj", "wierþe", "", "wierþu", "", "deserving +gen. of"]) + let v = native_list_append(v, ["widmære", "adj", "widmære", "", "wīdmǣru", "", "far-famed famous celebrated"]) + let v = native_list_append(v, ["mæran", "adj", "mæran", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["wærsagol", "adj", "wærsagol", "", "wærsagole", "", "cautious in speech"]) + let v = native_list_append(v, ["wærwyrde", "adj", "wærwyrde", "", "wærwyrdu", "", "cautious of speech"]) + let v = native_list_append(v, ["wæstmlic", "adj", "wæstmlic", "", "wæstmlīċ", "", "fruitful"]) + let v = native_list_append(v, ["wæstmleas", "adj", "wæstmleas", "", "wæstmlēas", "", "unfruitful fruitless"]) + let v = native_list_append(v, ["herigendlic", "adj", "herigendlic", "heriġendlīċest", "heriġendlīċ", "", "praiseworthy laudable"]) + let v = native_list_append(v, ["geherigendlic", "adj", "geherigendlic", "", "ġeheriġendlīċ", "", "alternative form of"]) + let v = native_list_append(v, ["gecynde", "adj", "gecynde", "", "ġecyndu", "", "natural"]) + let v = native_list_append(v, ["botwierþe", "adj", "botwierþe", "", "bōtwierþu", "", "pardonable expiable able"]) + let v = native_list_append(v, ["edniwe", "adj", "edniwe", "", "ednīwu", "", "alternative form of"]) + let v = native_list_append(v, ["ofersprecol", "adj", "ofersprecol", "", "ofersprecole", "", "overtalkative too loquacious"]) + let v = native_list_append(v, ["oferspræce", "adj", "oferspræce", "", "ofersprǣċu", "", "talkative loquacious"]) + let v = native_list_append(v, ["efenmære", "adj", "efenmære", "", "efenmǣru", "", "alternative form of"]) + let v = native_list_append(v, ["bearnleas", "adj", "bearnleas", "", "bearnlēas", "", "childless"]) + let v = native_list_append(v, ["liþig", "adj", "liþig", "", "liþiġ", "", "pliant supple flexible"]) + let v = native_list_append(v, ["famig", "adj", "famig", "", "fāmiġu", "", "foamy frothy"]) + let v = native_list_append(v, ["hræfnsweart", "adj", "hræfnsweart", "", "hræfnswearte", "", "raven-black black like"]) + let v = native_list_append(v, ["colsweart", "adj", "colsweart", "", "colswearte", "", "coal black as"]) + let v = native_list_append(v, ["gelimplic", "adj", "gelimplic", "", "ġelimplīċ", "", "of a happening"]) + let v = native_list_append(v, ["eftacenned", "adj", "eftacenned", "", "eftācennedu", "", "reborn born-again"]) + let v = native_list_append(v, ["eftgemyndig", "adj", "eftgemyndig", "", "eftġemyndiġu", "", "remembering"]) + let v = native_list_append(v, ["griþleas", "adj", "griþleas", "", "griþlēas", "", "unprotected without protection"]) + let v = native_list_append(v, ["duruleas", "adj", "duruleas", "", "dūrulēas", "", "doorless"]) + let v = native_list_append(v, ["Bulgarisc", "adj", "Bulgarisc", "", "Bulgarisċ", "", "Bulgarian"]) + let v = native_list_append(v, ["Egiptisc", "adj", "Egiptisc", "", "Egiptisċ", "", "alternative form of"]) + let v = native_list_append(v, ["Scottisc", "adj", "Scottisc", "", "Scottisċ", "", "alternative form of"]) + let v = native_list_append(v, ["Langbeardisc", "adj", "Langbeardisc", "", "Langbeardisċ", "", "Lombardic"]) + let v = native_list_append(v, ["þeowboren", "adj", "þeowboren", "", "þēowboren", "", "slaveborn"]) + let v = native_list_append(v, ["læne", "adj", "læne", "", "lǣnu", "", "transitory temporary fleeting"]) + let v = native_list_append(v, ["wæpned", "adj", "wæpned", "", "wǣpnedu", "", "male"]) + let v = native_list_append(v, ["biren", "adj", "biren", "", "birenu", "", "bear of or"]) + let v = native_list_append(v, ["blodga", "adj", "blodga", "", "", "", "inflection of blōdiġ"]) + let v = native_list_append(v, ["Athenisc", "adj", "Athenisc", "", "Athēnisċ", "", "Athenian"]) + let v = native_list_append(v, ["healdsum", "adj", "healdsum", "", "healdsumu", "", "protective"]) + let v = native_list_append(v, ["gehealdsum", "adj", "gehealdsum", "", "ġehealdsumu", "", "sparing frugal"]) + let v = native_list_append(v, ["unwynsum", "adj", "unwynsum", "", "unwynsumu", "", "unpleasant"]) + let v = native_list_append(v, ["wynleas", "adj", "wynlēasra", "", "wynlēas", "", "joyless dreary"]) + let v = native_list_append(v, ["læsse", "adj", "læsse", "", "", "", "inflection of lǣssa"]) + let v = native_list_append(v, ["gemænelic", "adj", "gemænelic", "", "ġemǣnelīċ", "", "common general"]) + let v = native_list_append(v, ["moþfreten", "adj", "moþfreten", "", "moþfretene", "", "moth-eaten"]) + let v = native_list_append(v, ["flæsclic", "adj", "flæsclic", "", "flǣsċlīċ", "", "fleshly carnal"]) + let v = native_list_append(v, ["ascirigendlic", "adj", "ascirigendlic", "", "āsċiriġendlīċ", "", "disjunctive"]) + let v = native_list_append(v, ["ascuniendlic", "adj", "ascuniendlic", "", "āsċuniendlīċ", "", "detestable abominable"]) + let v = native_list_append(v, ["geiecendlic", "adj", "geiecendlic", "", "", "", "adjective"]) + let v = native_list_append(v, ["æfest", "adj", "æfest", "", "ǣfest", "", "alternative form of"]) + let v = native_list_append(v, ["elc", "adj", "elc", "", "ēlċ", "", "alternative form of"]) + let v = native_list_append(v, ["sarra", "adj", "sarra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["anmod", "adj", "anmod", "", "ānmōd", "", "unanimous"]) + let v = native_list_append(v, ["fæste", "adj", "fæste", "", "", "", "inflection of fæst"]) + let v = native_list_append(v, ["eacniende", "adj", "eacniende", "", "ēacniendu", "", "pregnant"]) + let v = native_list_append(v, ["elpendbænen", "adj", "elpendbænen", "", "elpendbǣnenu", "", "ivory made of"]) + let v = native_list_append(v, ["fotadlig", "adj", "fotadlig", "", "fōtādliġu", "", "suffering from gout"]) + let v = native_list_append(v, ["Egyptisc", "adj", "Egyptisc", "", "Egyptisċ", "", "Egyptian"]) + let v = native_list_append(v, ["wegleas", "adj", "wegleas", "", "weġlēas", "", "without a road"]) + let v = native_list_append(v, ["unsoþ", "adj", "unsoþ", "", "unsōþ", "", "untrue false"]) + let v = native_list_append(v, ["ielfsciene", "adj", "ielfsciene", "", "ielfsċīenu", "", "gorgeous as beautiful"]) + let v = native_list_append(v, ["fielleseoc", "adj", "fielleseoc", "", "fiellesēoc", "", "epileptic"]) + let v = native_list_append(v, ["ieþe", "adj", "ieþe", "", "īeþu", "", "easy"]) + let v = native_list_append(v, ["ungeþyldig", "adj", "ungeþyldig", "", "unġeþyldiġu", "", "impatient"]) + let v = native_list_append(v, ["medume", "adj", "medume", "medumest", "medumu", "", "not extreme average"]) + let v = native_list_append(v, ["fyrest", "adj", "fyrest", "", "fyreste", "", "first"]) + let v = native_list_append(v, ["triewen", "adj", "triewen", "", "trīewenu", "", "wooden"]) + let v = native_list_append(v, ["frecne", "adj", "frēcenra", "frēcnost", "frēcnu", "", "dangerous"]) + let v = native_list_append(v, ["wædla", "adj", "wædla", "", "wǣdle", "", "poor in need"]) + let v = native_list_append(v, ["mildheort", "adj", "mildheortra", "mildheortost", "mildheorte", "", "kindhearted gentle"]) + let v = native_list_append(v, ["untrum", "adj", "untrum", "", "untrumu", "", "weak sick infirm"]) + let v = native_list_append(v, ["unnytt", "adj", "unnytt", "unnyttost", "unnytte", "", "useless"]) + let v = native_list_append(v, ["wealdende", "adj", "wealdende", "", "wealdendu", "", "powerful"]) + let v = native_list_append(v, ["wierrest", "adj", "wierrest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["wiersa", "adj", "wiersa", "", "wierse", "", "comparative degree of"]) + let v = native_list_append(v, ["nibacen", "adj", "nibacen", "", "nībacen", "", "fresh-baked"]) + let v = native_list_append(v, ["nicenned", "adj", "nicenned", "", "nīcennedu", "", "newborn"]) + let v = native_list_append(v, ["edniewe", "adj", "edniewe", "", "ednīewu", "", "new again renewed"]) + let v = native_list_append(v, ["triewe", "adj", "triewe", "", "trīewu", "", "loyal faithful trustworthy"]) + let v = native_list_append(v, ["getriewe", "adj", "getriewe", "", "ġetrīewu", "", "loyal faithful"]) + let v = native_list_append(v, ["neowollic", "adj", "neowollic", "", "neowollīċ", "", "profound"]) + let v = native_list_append(v, ["strangmod", "adj", "strangmod", "", "", "", "resolute"]) + let v = native_list_append(v, ["dæglang", "adj", "dæglang", "", "dæġlang", "", "lasting a day"]) + let v = native_list_append(v, ["seldcuþ", "adj", "seldcuþ", "", "seldcūþ", "", "weird strange"]) + let v = native_list_append(v, ["þurhsiene", "adj", "þurhsiene", "", "þurhsīenu", "", "see-through transparent"]) + let v = native_list_append(v, ["scearpsiene", "adj", "scearpsiene", "", "sċearpsīenu", "", "sharp-sighted"]) + let v = native_list_append(v, ["murge", "adj", "murge", "", "murġu", "", "alternative form of"]) + let v = native_list_append(v, ["hiwcuþ", "adj", "hiwcuþ", "", "hīwcūþ", "", "familiar + dative"]) + let v = native_list_append(v, ["midra", "adj", "midra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["acle", "adj", "acle", "", "", "", "inflection of ācol"]) + let v = native_list_append(v, ["astierred", "adj", "astierred", "", "āstierredu", "", "starry"]) + let v = native_list_append(v, ["siþmest", "adj", "siþmest", "", "sīþmest", "", "last final"]) + let v = native_list_append(v, ["wræne", "adj", "wræne", "", "wrǣnu", "", "horny lustful aroused"]) + let v = native_list_append(v, ["tigelen", "adj", "tigelen", "", "tiġelenu", "", "tile or brick"]) + let v = native_list_append(v, ["silfren", "adj", "silfren", "", "silfrenu", "", "alternative form of"]) + let v = native_list_append(v, ["ierþen", "adj", "ierþen", "", "ierþenu", "", "earthen relational dirt"]) + let v = native_list_append(v, ["liþren", "adj", "liþren", "", "liþrenu", "", "made of leather"]) + let v = native_list_append(v, ["silcen", "adj", "silcen", "", "silcenu", "", "alternative form of"]) + let v = native_list_append(v, ["bresen", "adj", "bresen", "", "bresenu", "", "brass"]) + let v = native_list_append(v, ["seolfren", "adj", "seolfren", "", "seolfrenu", "", "silver"]) + let v = native_list_append(v, ["brydlic", "adj", "brydlic", "", "brȳdlīċ", "", "bridal"]) + let v = native_list_append(v, ["folcisc", "adj", "folcisc", "", "folcisċ", "", "popular relating to"]) + let v = native_list_append(v, ["ierru", "adj", "ierru", "", "", "", "inflection of ierre"]) + let v = native_list_append(v, ["hulic", "adj", "hulic", "", "", "", "of what sort"]) + let v = native_list_append(v, ["monlic", "adj", "monlic", "", "mōnlīċ", "", "lunar"]) + let v = native_list_append(v, ["Læden", "adj", "Læden", "", "Lǣdenu", "", "Latin"]) + let v = native_list_append(v, ["unæþele", "adj", "unæþele", "", "unæþelu", "", "not noble ignoble"]) + let v = native_list_append(v, ["neane", "adj", "neane", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["sargan", "adj", "sargan", "", "", "", "inflection of sāriġ"]) + let v = native_list_append(v, ["godum", "adj", "godum", "", "", "", "inflection of gōd"]) + let v = native_list_append(v, ["æfestig", "adj", "æfestig", "", "æfestiġu", "", "jealous envious"]) + let v = native_list_append(v, ["mycela", "adj", "mycela", "", "", "", "inflection of myċel"]) + let v = native_list_append(v, ["ealdne", "adj", "ealdne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["ealdes", "adj", "ealdes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["ealdum", "adj", "ealdum", "", "", "", "inflection of eald"]) + let v = native_list_append(v, ["ealde", "adj", "ealde", "", "", "", "inflection of eald"]) + let v = native_list_append(v, ["ealdra", "adj", "ealdra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["ealdre", "adj", "ealdre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["ealda", "adj", "ealda", "", "", "", "inflection of eald"]) + let v = native_list_append(v, ["ealdan", "adj", "ealdan", "", "", "", "inflection of eald"]) + let v = native_list_append(v, ["ealdena", "adj", "ealdena", "", "", "", "weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["gomol", "adj", "gomol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syndrig", "adj", "syndrig", "", "syndriġu", "", "separate alone"]) + let v = native_list_append(v, ["Afrisc", "adj", "Afrisc", "", "Āfrisċ", "", "African"]) + let v = native_list_append(v, ["Africanisc", "adj", "Africanisc", "", "Āfricānisċ", "", "African"]) + let v = native_list_append(v, ["astyrred", "adj", "astyrred", "", "āstyrredu", "", "alternative form of"]) + let v = native_list_append(v, ["ofersælic", "adj", "ofersælic", "", "ofersǣlīċ", "", "transmarine"]) + let v = native_list_append(v, ["hunigswete", "adj", "hunigswete", "", "huniġswētu", "", "sweet as honey"]) + let v = native_list_append(v, ["anræd", "adj", "anræd", "ānrǣdest", "ānrǣd", "", "one-minded unanimous agreed"]) + let v = native_list_append(v, ["leohtleas", "adj", "leohtleas", "", "lēohtlēas", "", "without light lightless"]) + let v = native_list_append(v, ["walda", "adj", "walda", "", "", "", "inflection of wald"]) + let v = native_list_append(v, ["gefeaxen", "adj", "gefeaxen", "", "", "", "Having hair haired"]) + let v = native_list_append(v, ["gefeaxe", "adj", "gefeaxe", "", "", "", "Having hair haired"]) + let v = native_list_append(v, ["forod", "adj", "forod", "", "forode", "", "broken fractured"]) + let v = native_list_append(v, ["ormod", "adj", "ormod", "", "ormōd", "", "desperate in despair"]) + let v = native_list_append(v, ["halum", "adj", "halum", "", "", "", "inflection of hāl"]) + let v = native_list_append(v, ["sorig", "adj", "sorig", "", "soriġ", "", "sorry grieved"]) + let v = native_list_append(v, ["heahheort", "adj", "heahheort", "", "hēahheort", "", "high-hearted haughty proud"]) + let v = native_list_append(v, ["geaplic", "adj", "geaplic", "", "ġēaplīċ", "", "crafty cunning deceitful"]) + let v = native_list_append(v, ["lustbærlic", "adj", "lustbærlic", "", "lustbǣrlīċ", "", "desirable"]) + let v = native_list_append(v, ["gedwolen", "adj", "gedwolen", "", "ġedwolen", "", "iniquitous evil wrong"]) + let v = native_list_append(v, ["ielfisc", "adj", "ielfisc", "", "ielfisċ", "", "elvish elven"]) + let v = native_list_append(v, ["gebygle", "adj", "gebygle", "", "", "", "subject obedient"]) + let v = native_list_append(v, ["anre", "adj", "anre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["sigefæst", "adj", "sigefæst", "", "siġefæst", "", "victorious"]) + let v = native_list_append(v, ["eallhwit", "adj", "eallhwit", "", "eallhwīt", "", "alternative form of"]) + let v = native_list_append(v, ["forþgenge", "adj", "forþgenge", "", "forþgenġu", "", "moving forward advancing"]) + let v = native_list_append(v, ["hierdelic", "adj", "hierdelic", "", "hierdelīċ", "", "pastoral"]) + let v = native_list_append(v, ["deadboren", "adj", "deadboren", "", "dēadboren", "", "stillborn"]) + let v = native_list_append(v, ["ongeboren", "adj", "ongeboren", "", "onġeboren", "", "inborn innate"]) + let v = native_list_append(v, ["þegnboren", "adj", "þegnboren", "", "þeġnboren", "", "born a servant"]) + let v = native_list_append(v, ["cyneboren", "adj", "cyneboren", "", "cyneborene", "", "born into royalty"]) + let v = native_list_append(v, ["unboren", "adj", "unboren", "", "unborene", "", "unborn"]) + let v = native_list_append(v, ["siþboren", "adj", "siþboren", "", "sīþboren", "", "born late postmature"]) + let v = native_list_append(v, ["ælhwit", "adj", "ælhwit", "", "ælhwīt", "", "all-white"]) + let v = native_list_append(v, ["ælniewe", "adj", "ælniewe", "", "ælnīewu", "", "brand new"]) + let v = native_list_append(v, ["ælgylden", "adj", "ælgylden", "", "ælgyldenu", "", "made of pure"]) + let v = native_list_append(v, ["firwitt", "adj", "firwitt", "", "firwitte", "", "curious"]) + let v = native_list_append(v, ["firwitgeorn", "adj", "firwitgeorn", "", "firwitġeorn", "", "curious"]) + let v = native_list_append(v, ["aworpen", "adj", "aworpen", "", "āworpenu", "", "thrown out rejected"]) + let v = native_list_append(v, ["sundorboren", "adj", "sundorboren", "", "sundorborene", "", "born different or"]) + let v = native_list_append(v, ["numol", "adj", "numol", "", "numole", "", "capacious able to"]) + let v = native_list_append(v, ["þreofeald", "adj", "þreofeald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hlude", "adj", "hlude", "", "", "", "inflection of hlūd"]) + let v = native_list_append(v, ["sixta", "adj", "sixta", "", "sixte", "", "sixth"]) + let v = native_list_append(v, ["sixteoþa", "adj", "sixteoþa", "", "sixtēoþe", "", "sixteenth"]) + let v = native_list_append(v, ["sixtienefeald", "adj", "sixtienefeald", "", "sixtīenefeald", "", "sixteenfold"]) + let v = native_list_append(v, ["sixtigoþa", "adj", "sixtigoþa", "", "sixtigoþe", "", "sixtieth"]) + let v = native_list_append(v, ["anwille", "adj", "anwille", "", "ānwillu", "", "stubborn"]) + let v = native_list_append(v, ["anwintre", "adj", "anwintre", "", "ānwintru", "", "one year old"]) + let v = native_list_append(v, ["sceolhiege", "adj", "sceolhiege", "", "sċeolhīeġu", "", "cross-eyed"]) + let v = native_list_append(v, ["twelfwintre", "adj", "twelfwintre", "", "twelfwintru", "", "twelve years old"]) + let v = native_list_append(v, ["twiwintre", "adj", "twiwintre", "", "twiwintru", "", "two years old"]) + let v = native_list_append(v, ["þriwintre", "adj", "þriwintre", "", "þriwintru", "", "three years old"]) + let v = native_list_append(v, ["grægne", "adj", "grægne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["fiþerfeald", "adj", "fiþerfeald", "", "fiþerfealde", "", "fourfold"]) + let v = native_list_append(v, ["idelhende", "adj", "idelhende", "", "īdelhendu", "", "empty-handed"]) + let v = native_list_append(v, ["spærhende", "adj", "spærhende", "", "spærhendu", "", "frugal"]) + let v = native_list_append(v, ["twistrenge", "adj", "twistrenge", "", "twistrenġu", "", "two-stringed"]) + let v = native_list_append(v, ["þristrenge", "adj", "þristrenge", "", "þristrenġu", "", "three-stringed"]) + let v = native_list_append(v, ["tienstrenge", "adj", "tienstrenge", "", "tīenstrenġu", "", "ten-stringed"]) + let v = native_list_append(v, ["oriege", "adj", "oriege", "", "orīeġu", "", "out of sight"]) + let v = native_list_append(v, ["morgenlic", "adj", "morgenlic", "", "morgenlīċ", "", "morning"]) + let v = native_list_append(v, ["stranghende", "adj", "stranghende", "", "stranghendu", "", "strong-handed"]) + let v = native_list_append(v, ["handcræftig", "adj", "handcræftig", "", "handcræftiġu", "", "dexterous"]) + let v = native_list_append(v, ["manbære", "adj", "manbære", "", "manbǣru", "", "producing people"]) + let v = native_list_append(v, ["manleas", "adj", "manleas", "", "manlēas", "", "without people uninhabited"]) + let v = native_list_append(v, ["sawolleas", "adj", "sawolleas", "", "sāwollēas", "", "soulless"]) + let v = native_list_append(v, ["styriende", "adj", "styriende", "", "styriendu", "", "moving"]) + let v = native_list_append(v, ["unstyriende", "adj", "unstyriende", "", "unstyriendu", "", "motionless stationary immobile"]) + let v = native_list_append(v, ["selfwille", "adj", "selfwille", "", "selfwillu", "", "voluntary"]) + let v = native_list_append(v, ["ætealdod", "adj", "ætealdod", "", "ætealdodu", "", "too aged too"]) + let v = native_list_append(v, ["bront", "adj", "bront", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Mæcedonisc", "adj", "Mæcedonisc", "", "Mæcedonisċ", "", "Macedonian of Macedonia"]) + let v = native_list_append(v, ["unciepe", "adj", "unciepe", "", "unċīepu", "", "free without cost"]) + let v = native_list_append(v, ["surum", "adj", "surum", "", "", "", "inflection of sūr"]) + let v = native_list_append(v, ["blacu", "adj", "blacu", "", "", "", "inflection of blæc"]) + let v = native_list_append(v, ["blace", "adj", "blace", "", "", "", "inflection of blæc"]) + let v = native_list_append(v, ["blacena", "adj", "blacena", "", "", "", "weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["blacan", "adj", "blacan", "", "", "", "inflection of blæc"]) + let v = native_list_append(v, ["blacum", "adj", "blacum", "", "", "", "inflection of blæc"]) + let v = native_list_append(v, ["blæcne", "adj", "blæcne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["smælra", "adj", "smælra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["smalo", "adj", "smalo", "", "", "", "inflection of smæl"]) + let v = native_list_append(v, ["niwre", "adj", "niwre", "", "", "", "inflection of nīwe"]) + let v = native_list_append(v, ["deafne", "adj", "deafne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["deafe", "adj", "deafe", "", "", "", "inflection of dēaf"]) + let v = native_list_append(v, ["deafa", "adj", "deafa", "", "", "", "inflection of dēaf"]) + let v = native_list_append(v, ["deafum", "adj", "deafum", "", "", "", "inflection of dēaf"]) + let v = native_list_append(v, ["deafan", "adj", "deafan", "", "", "", "inflection of dēaf"]) + let v = native_list_append(v, ["deafra", "adj", "deafra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["deafre", "adj", "deafre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["deadne", "adj", "deadne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["deadum", "adj", "deadum", "", "", "", "inflection of dēad"]) + let v = native_list_append(v, ["deadra", "adj", "deadra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["deadre", "adj", "deadre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["deada", "adj", "deada", "", "", "", "inflection of dēad"]) + let v = native_list_append(v, ["deadan", "adj", "deadan", "", "", "", "inflection of dēad"]) + let v = native_list_append(v, ["Indisc", "adj", "Indisc", "", "Indisċ", "", "Indian"]) + let v = native_list_append(v, ["þroh", "adj", "þroh", "", "þrō", "", "rancid"]) + let v = native_list_append(v, ["A", "other", "A", "", "", "", "A letter of"]) + let v = native_list_append(v, ["f", "other", "f", "", "", "", "A letter of"]) + let v = native_list_append(v, ["a-", "other", "a-", "", "", "", "from away off"]) + let v = native_list_append(v, ["y", "other", "y", "", "", "", "A letter of"]) + let v = native_list_append(v, ["six", "other", "six", "", "", "", "six"]) + let v = native_list_append(v, ["ten", "other", "ten", "", "", "", "ten"]) + let v = native_list_append(v, ["hundred", "other", "hundred", "", "", "", "hundred"]) + let v = native_list_append(v, ["an", "other", "an", "", "", "", "one"]) + let v = native_list_append(v, ["self-", "other", "self-", "", "", "", "self"]) + let v = native_list_append(v, ["e", "other", "e", "", "", "", "A letter of"]) + let v = native_list_append(v, ["c", "other", "c", "", "", "", "A letter of"]) + let v = native_list_append(v, ["d", "other", "d", "", "", "", "A letter of"]) + let v = native_list_append(v, ["l", "other", "l", "", "", "", "A letter of"]) + let v = native_list_append(v, ["s", "other", "s", "", "", "", "A letter of"]) + let v = native_list_append(v, ["u", "other", "u", "", "", "", "a letter of"]) + let v = native_list_append(v, ["w", "other", "w", "", "", "", "A letter of"]) + let v = native_list_append(v, ["un-", "other", "un-", "", "", "", "negation or absence"]) + let v = native_list_append(v, ["la", "other", "la", "", "", "", "lo! oh! ah!"]) + let v = native_list_append(v, ["ho", "other", "ho", "", "", "", "Call of attention."]) + let v = native_list_append(v, ["tu", "other", "tu", "", "", "", "neuter nominative/accusative of"]) + let v = native_list_append(v, ["tien", "other", "tien", "", "", "", "ten"]) + let v = native_list_append(v, ["ea", "other", "ea", "", "", "", "oh alas"]) + let v = native_list_append(v, ["-um", "other", "-um", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-ian", "other", "-ian", "", "", "", "Forms verbs from"]) + let v = native_list_append(v, ["in-", "other", "in-", "", "", "", "in into"]) + let v = native_list_append(v, ["-ist", "other", "-ist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tea", "other", "tea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fewer", "other", "fewer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-est", "other", "-est", "", "", "", "suffix forming feminine"]) + let v = native_list_append(v, ["-er", "other", "-er", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amen", "other", "amen", "", "", "", "amen so be"]) + let v = native_list_append(v, ["-ie", "other", "-ie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bi-", "other", "bi-", "", "", "", "near around compare"]) + let v = native_list_append(v, ["an-", "other", "an-", "", "", "", "one mono- uni-"]) + let v = native_list_append(v, ["-ing", "other", "-ing", "", "", "", "Forming nouns from"]) + let v = native_list_append(v, ["em-", "other", "em-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["for-", "other", "for-", "", "", "", "wrongly away from"]) + let v = native_list_append(v, ["fore-", "other", "fore-", "", "", "", "before in front"]) + let v = native_list_append(v, ["-ette", "other", "-ette", "", "", "", "inflection of -ettan"]) + let v = native_list_append(v, ["-ed", "other", "-ed", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-or", "other", "-or", "", "", "", "suffix forming adjectives"]) + let v = native_list_append(v, ["æ", "other", "æ", "", "", "", "The twenty-fourth and"]) + let v = native_list_append(v, ["-ade", "other", "-ade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-a", "other", "-a", "", "", "", "nominative masculine n-stem"]) + let v = native_list_append(v, ["ƿ", "other", "ƿ", "", "", "", "wynn a letter"]) + let v = native_list_append(v, ["þ", "other", "þ", "", "", "", "thorn a letter"]) + let v = native_list_append(v, ["ð", "other", "ð", "", "", "", "eth a letter"]) + let v = native_list_append(v, ["ᚠ", "other", "ᚠ", "", "", "", "the first letter"]) + let v = native_list_append(v, ["ᛋ", "other", "ᛋ", "", "", "", "the sixteenth letter"]) + let v = native_list_append(v, ["-an", "other", "-an", "", "", "", "used to form"]) + let v = native_list_append(v, ["-s", "other", "-s", "", "", "", "Feminine noun suffix"]) + let v = native_list_append(v, ["-na", "other", "-na", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["-u", "other", "-u", "", "", "", "ending used to"]) + let v = native_list_append(v, ["-en", "other", "-en", "", "", "", "used to create"]) + let v = native_list_append(v, ["-on", "other", "-on", "", "", "", "Marks the plural"]) + let v = native_list_append(v, ["-un", "other", "-un", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-o", "other", "-o", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fife", "other", "fife", "", "", "", "nominative/accusative of fif"]) + let v = native_list_append(v, ["twa", "other", "twa", "", "", "", "nominative/accusative feminine/neuter of"]) + let v = native_list_append(v, ["mid-", "other", "mid-", "", "", "", "with in conjunction"]) + let v = native_list_append(v, ["-t", "other", "-t", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-as", "other", "-as", "", "", "", "Plural ending of"]) + let v = native_list_append(v, ["-e", "other", "-e", "", "", "", "forming adverbs from"]) + let v = native_list_append(v, ["ge-", "other", "ge-", "", "", "", "used as an"]) + let v = native_list_append(v, ["-i", "other", "-i", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["on-", "other", "on-", "", "", "", "forming verbs and"]) + let v = native_list_append(v, ["forma", "other", "forma", "", "", "", "first"]) + let v = native_list_append(v, ["-re", "other", "-re", "", "", "", "masculine agent suffix"]) + let v = native_list_append(v, ["twi-", "other", "twi-", "", "", "", "two double"]) + let v = native_list_append(v, ["-ad", "other", "-ad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ful", "other", "-ful", "", "", "", "full of -ful"]) + let v = native_list_append(v, ["-wise", "other", "-wise", "", "", "", "state of manner"]) + let v = native_list_append(v, ["-ness", "other", "-ness", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ast", "other", "-ast", "", "", "", "Used to form"]) + let v = native_list_append(v, ["þreo", "other", "þreo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þrie", "other", "þrie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-et", "other", "-et", "", "", "", "suffix forming nouns"]) + let v = native_list_append(v, ["-ode", "other", "-ode", "", "", "", "Forms the first"]) + let v = native_list_append(v, ["uu", "other", "uu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["B", "other", "B", "", "", "", "A letter of"]) + let v = native_list_append(v, ["C", "other", "C", "", "", "", "A letter of"]) + let v = native_list_append(v, ["D", "other", "D", "", "", "", "A letter of"]) + let v = native_list_append(v, ["E", "other", "E", "", "", "", "A letter of"]) + let v = native_list_append(v, ["F", "other", "F", "", "", "", "A letter of"]) + let v = native_list_append(v, ["H", "other", "H", "", "", "", "A letter of"]) + let v = native_list_append(v, ["L", "other", "L", "", "", "", "A letter of"]) + let v = native_list_append(v, ["M", "other", "M", "", "", "", "A letter of"]) + let v = native_list_append(v, ["S", "other", "S", "", "", "", "A letter of"]) + let v = native_list_append(v, ["U", "other", "U", "", "", "", "A letter of"]) + let v = native_list_append(v, ["W", "other", "W", "", "", "", "A letter of"]) + let v = native_list_append(v, ["Y", "other", "Y", "", "", "", "A letter of"]) + let v = native_list_append(v, ["Ð", "other", "Ð", "", "", "", "a letter of"]) + let v = native_list_append(v, ["Þ", "other", "Þ", "", "", "", "thorn a letter"]) + let v = native_list_append(v, ["Ƿ", "other", "Ƿ", "", "", "", "wynn a letter"]) + let v = native_list_append(v, ["Œ", "other", "Œ", "", "", "", "A combined form"]) + let v = native_list_append(v, ["ne-", "other", "ne-", "", "", "", "not"]) + let v = native_list_append(v, ["mis-", "other", "mis-", "", "", "", "bad badly wrong"]) + let v = native_list_append(v, ["feower", "other", "feower", "", "", "", "four"]) + let v = native_list_append(v, ["fif", "other", "fif", "", "", "", "five"]) + let v = native_list_append(v, ["siex", "other", "siex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seofon", "other", "seofon", "", "", "", "seven"]) + let v = native_list_append(v, ["eahta", "other", "eahta", "", "", "", "eight"]) + let v = native_list_append(v, ["nigon", "other", "nigon", "", "", "", "nine"]) + let v = native_list_append(v, ["tela", "other", "tela", "", "", "", "well! good!"]) + let v = native_list_append(v, ["hela", "other", "hela", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ung", "other", "-ung", "", "", "", "forming nouns from"]) + let v = native_list_append(v, ["-þ", "other", "-þ", "", "", "", "forming abstract nouns"]) + let v = native_list_append(v, ["-had", "other", "-had", "", "", "", "forming nouns of"]) + let v = native_list_append(v, ["agen", "other", "agen", "", "", "", "again eft back"]) + let v = native_list_append(v, ["ᛗ", "other", "ᛗ", "", "", "", "the twentieth letter"]) + let v = native_list_append(v, ["-ig", "other", "-ig", "", "", "", "-y forms adjectives"]) + let v = native_list_append(v, ["eow", "other", "eow", "", "", "", "Expression of grief"]) + let v = native_list_append(v, ["eala", "other", "eala", "", "", "", "oh hey good"]) + let v = native_list_append(v, ["-st", "other", "-st", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-ware", "other", "-ware", "", "", "", "suffix denoting inhabitants"]) + let v = native_list_append(v, ["-ling", "other", "-ling", "", "", "", "adverbial suffix denoting"]) + let v = native_list_append(v, ["-ienne", "other", "-ienne", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-dom", "other", "-dom", "", "", "", "used to derive"]) + let v = native_list_append(v, ["-ol", "other", "-ol", "", "", "", "Used to form"]) + let v = native_list_append(v, ["wa", "other", "wa", "", "", "", "woe! alas! expression"]) + let v = native_list_append(v, ["-ane", "other", "-ane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ene", "other", "-ene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ana", "other", "-ana", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ac", "other", "-ac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-cene", "other", "-cene", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["-el", "other", "-el", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-es", "other", "-es", "", "", "", "genitive case/possessive marker"]) + let v = native_list_append(v, ["loca", "other", "loca", "", "", "", "look see here"]) + let v = native_list_append(v, ["wan-", "other", "wan-", "", "", "", "lacking without un-"]) + let v = native_list_append(v, ["i-", "other", "i-", "", "", "", "same selfsame"]) + let v = native_list_append(v, ["ᚢ", "other", "ᚢ", "", "", "", "the second letter"]) + let v = native_list_append(v, ["ᚦ", "other", "ᚦ", "", "", "", "the third letter"]) + let v = native_list_append(v, ["ᚩ", "other", "ᚩ", "", "", "", "the fourth letter"]) + let v = native_list_append(v, ["ᚫ", "other", "ᚫ", "", "", "", "the twenty-sixth letter"]) + let v = native_list_append(v, ["ᚱ", "other", "ᚱ", "", "", "", "the fifth letter"]) + let v = native_list_append(v, ["ᚳ", "other", "ᚳ", "", "", "", "the sixth letter"]) + let v = native_list_append(v, ["ᚷ", "other", "ᚷ", "", "", "", "the seventh letter"]) + let v = native_list_append(v, ["ᚹ", "other", "ᚹ", "", "", "", "the eighth letter"]) + let v = native_list_append(v, ["ᚻ", "other", "ᚻ", "", "", "", "the ninth letter"]) + let v = native_list_append(v, ["ᚾ", "other", "ᚾ", "", "", "", "the tenth letter"]) + let v = native_list_append(v, ["ᛁ", "other", "ᛁ", "", "", "", "the eleventh letter"]) + let v = native_list_append(v, ["ᛄ", "other", "ᛄ", "", "", "", "the twelfth letter"]) + let v = native_list_append(v, ["ᛇ", "other", "ᛇ", "", "", "", "the thirteenth letter"]) + let v = native_list_append(v, ["to-", "other", "to-", "", "", "", "verbal prefix with"]) + let v = native_list_append(v, ["of-", "other", "of-", "", "", "", "off away from"]) + let v = native_list_append(v, ["geþyld byþ middes eades", "other", "geþyld byþ middes eades", "", "", "", "patience is half"]) + let v = native_list_append(v, ["æt þearfe man sceal freonda cunnian", "other", "æt þearfe man sceal freonda cunnian", "", "", "", "a friend in"]) + let v = native_list_append(v, ["el-", "other", "el-", "", "", "", "foreign strange"]) + let v = native_list_append(v, ["þri", "other", "þri", "", "", "", "three"]) + let v = native_list_append(v, ["syxta", "other", "syxta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fifta", "other", "fifta", "", "", "", "fifth"]) + let v = native_list_append(v, ["feorþa", "other", "feorþa", "", "", "", "fourth"]) + let v = native_list_append(v, ["þridda", "other", "þridda", "", "", "", "third"]) + let v = native_list_append(v, ["eahtoþa", "other", "eahtoþa", "", "", "", "eighth"]) + let v = native_list_append(v, ["seofoþa", "other", "seofoþa", "", "", "", "seventh"]) + let v = native_list_append(v, ["nigoþa", "other", "nigoþa", "", "", "", "ninth"]) + let v = native_list_append(v, ["oþer", "other", "oþer", "", "", "", "second"]) + let v = native_list_append(v, ["teoþa", "other", "teoþa", "", "", "", "tenth"]) + let v = native_list_append(v, ["endleofan", "other", "endleofan", "", "", "", "eleven"]) + let v = native_list_append(v, ["twelf", "other", "twelf", "", "", "", "twelve"]) + let v = native_list_append(v, ["þusend", "other", "þusend", "", "", "", "thousand"]) + let v = native_list_append(v, ["twentig", "other", "twentig", "", "", "", "twenty"]) + let v = native_list_append(v, ["loc", "other", "loc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sixtig", "other", "sixtig", "", "", "", "sixty"]) + let v = native_list_append(v, ["fiftig", "other", "fiftig", "", "", "", "fifty"]) + let v = native_list_append(v, ["þritig", "other", "þritig", "", "", "", "thirty"]) + let v = native_list_append(v, ["sin-", "other", "sin-", "", "", "", "ever- continual perpetual"]) + let v = native_list_append(v, ["-isc", "other", "-isc", "", "", "", "of or relating"]) + let v = native_list_append(v, ["al-", "other", "al-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["te-", "other", "te-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ere", "other", "-ere", "", "", "", "masculine agent suffix"]) + let v = native_list_append(v, ["æla", "other", "æla", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ic", "other", "-ic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-te", "other", "-te", "", "", "", "Alternative form of"]) + let v = native_list_append(v, ["ſ", "other", "ſ", "", "", "", "An alternative form"]) + let v = native_list_append(v, ["-ema", "other", "-ema", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iendo", "other", "-iendo", "", "", "", "inflection of -iende"]) + let v = native_list_append(v, ["tiene", "other", "tiene", "", "", "", "nominative/accusative of tien"]) + let v = native_list_append(v, ["ᛏ", "other", "ᛏ", "", "", "", "the seveneteenth letter"]) + let v = native_list_append(v, ["ed-", "other", "ed-", "", "", "", "again"]) + let v = native_list_append(v, ["Æ", "other", "Æ", "", "", "", "uppercase version of"]) + let v = native_list_append(v, ["-lic", "other", "-lic", "", "", "", "adjective-forming suffix meaning"]) + let v = native_list_append(v, ["ġ", "other", "ġ", "", "", "", "A modified version"]) + let v = native_list_append(v, ["ehta", "other", "ehta", "", "", "", "eight"]) + let v = native_list_append(v, ["gegn-", "other", "gegn-", "", "", "", "opposition reversal against"]) + let v = native_list_append(v, ["under-", "other", "under-", "", "", "", "between among"]) + let v = native_list_append(v, ["be-", "other", "be-", "", "", "", "a productive prefix"]) + let v = native_list_append(v, ["-ne", "other", "-ne", "", "", "", "Forms the strong"]) + let v = native_list_append(v, ["or-", "other", "or-", "", "", "", "original"]) + let v = native_list_append(v, ["-lac", "other", "-lac", "", "", "", "noun suffix denoting"]) + let v = native_list_append(v, ["-ca", "other", "-ca", "", "", "", "Creates masculine concrete"]) + let v = native_list_append(v, ["-lica", "other", "-lica", "", "", "", "inflection of -līċ"]) + let v = native_list_append(v, ["-ost", "other", "-ost", "", "", "", "Used to form"]) + let v = native_list_append(v, ["af-", "other", "af-", "", "", "", "away off from"]) + let v = native_list_append(v, ["sesta", "other", "sesta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ul", "other", "-ul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hin-", "other", "hin-", "", "", "", "hence from here"]) + let v = native_list_append(v, ["-ra", "other", "-ra", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-nis", "other", "-nis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-endo", "other", "-endo", "", "", "", "inflection of -ende"]) + let v = native_list_append(v, ["-este", "other", "-este", "", "", "", "inflection of -est"]) + let v = native_list_append(v, ["-isca", "other", "-isca", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["-isce", "other", "-isce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-isse", "other", "-isse", "", "", "", "Forms nouns referring"]) + let v = native_list_append(v, ["-la", "other", "-la", "", "", "", "imperative singular of"]) + let v = native_list_append(v, ["-ma", "other", "-ma", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huig", "other", "huig", "", "", "", "hey"]) + let v = native_list_append(v, ["-ande", "other", "-ande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ende", "other", "-ende", "", "", "", "equivalent of English"]) + let v = native_list_append(v, ["ᛟ", "other", "ᛟ", "", "", "", "the twenty-third/fourth letter"]) + let v = native_list_append(v, ["-end", "other", "-end", "", "", "", "suffix denoting the"]) + let v = native_list_append(v, ["ofer-", "other", "ofer-", "", "", "", "used to form"]) + let v = native_list_append(v, ["-linge", "other", "-linge", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fifa", "other", "fifa", "", "", "", "genitive of fif"]) + let v = native_list_append(v, ["up-", "other", "up-", "", "", "", "up upward"]) + let v = native_list_append(v, ["-tun", "other", "-tun", "", "", "", "homestead village town"]) + let v = native_list_append(v, ["sam-", "other", "sam-", "", "", "", "half-"]) + let v = native_list_append(v, ["-od", "other", "-od", "", "", "", "Used to form"]) + let v = native_list_append(v, ["◌̄", "other", "◌̄", "", "", "", "Written on a"]) + let v = native_list_append(v, ["Ċ", "other", "Ċ", "", "", "", "A modified version"]) + let v = native_list_append(v, ["ċ", "other", "ċ", "", "", "", "A modified version"]) + let v = native_list_append(v, ["-era", "other", "-era", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["and-", "other", "and-", "", "", "", "against opposing"]) + let v = native_list_append(v, ["-lice", "other", "-lice", "", "", "", "-ly adverbial suffix"]) + let v = native_list_append(v, ["na-", "other", "na-", "", "", "", "Denotes absence or"]) + let v = native_list_append(v, ["-sa", "other", "-sa", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["-se", "other", "-se", "", "", "", "inflection of -s"]) + let v = native_list_append(v, ["-de", "other", "-de", "", "", "", "used to form"]) + let v = native_list_append(v, ["-eno", "other", "-eno", "", "", "", "inflection of -en"]) + let v = native_list_append(v, ["wa la wa", "other", "wa la wa", "", "", "", "alas oh woe"]) + let v = native_list_append(v, ["-ot", "other", "-ot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-erna", "other", "-erna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hundrede", "other", "hundrede", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["-cum", "other", "-cum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["-endlic", "other", "-endlic", "", "", "", "forming adjectives from"]) + let v = native_list_append(v, ["-weard", "other", "-weard", "", "", "", "Forming adjectives and"]) + let v = native_list_append(v, ["oþ-", "other", "oþ-", "", "", "", "separation or departure"]) + let v = native_list_append(v, ["æ-", "other", "æ-", "", "", "", "without lacking usually"]) + let v = native_list_append(v, ["geond-", "other", "geond-", "", "", "", "beyond exceeding entirely"]) + let v = native_list_append(v, ["regn-", "other", "regn-", "", "", "", "very"]) + let v = native_list_append(v, ["-estre", "other", "-estre", "", "", "", "female agent suffix"]) + let v = native_list_append(v, ["-wierþe", "other", "-wierþe", "", "", "", "worthy of"]) + let v = native_list_append(v, ["ut-", "other", "ut-", "", "", "", "out"]) + let v = native_list_append(v, ["utan-", "other", "utan-", "", "", "", "on the outside"]) + let v = native_list_append(v, ["wiþ-", "other", "wiþ-", "", "", "", "against opposed to"]) + let v = native_list_append(v, ["-leas", "other", "-leas", "", "", "", "without free from"]) + let v = native_list_append(v, ["-cund", "other", "-cund", "", "", "", "suffix denoting origin"]) + let v = native_list_append(v, ["-oc", "other", "-oc", "", "", "", "noun suffix used"]) + let v = native_list_append(v, ["-sum", "other", "-sum", "", "", "", "characterized by some"]) + let v = native_list_append(v, ["-unga", "other", "-unga", "", "", "", "used to form"]) + let v = native_list_append(v, ["-iht", "other", "-iht", "", "", "", "having bearing possessing"]) + let v = native_list_append(v, ["-bære", "other", "-bære", "", "", "", "bearing having"]) + let v = native_list_append(v, ["-þor", "other", "-þor", "", "", "", "instrumental suffix creating"]) + let v = native_list_append(v, ["fram-", "other", "fram-", "", "", "", "from forth away"]) + let v = native_list_append(v, ["-enda", "other", "-enda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["-sian", "other", "-sian", "", "", "", "verbal suffix added"]) + let v = native_list_append(v, ["æfter-", "other", "æfter-", "", "", "", "after behind"]) + let v = native_list_append(v, ["-læcan", "other", "-læcan", "", "", "", "verbal suffix combining"]) + let v = native_list_append(v, ["-nes", "other", "-nes", "", "", "", "Used to form"]) + let v = native_list_append(v, ["þurh-", "other", "þurh-", "", "", "", "through over with"]) + let v = native_list_append(v, ["-linga", "other", "-linga", "", "", "", "adverbial suffix"]) + let v = native_list_append(v, ["forþ-", "other", "forþ-", "", "", "", "forth forward away"]) + let v = native_list_append(v, ["wiþer-", "other", "wiþer-", "", "", "", "against contrary opposed"]) + let v = native_list_append(v, ["niþer-", "other", "niþer-", "", "", "", "below beneath situated"]) + let v = native_list_append(v, ["-sciepe", "other", "-sciepe", "", "", "", "noun-forming suffix -ship"]) + let v = native_list_append(v, ["-els", "other", "-els", "", "", "", "suffix creating nouns"]) + let v = native_list_append(v, ["-else", "other", "-else", "", "", "", "suffix creating nouns"]) + let v = native_list_append(v, ["-ern", "other", "-ern", "", "", "", "Suffix meaning a"]) + let v = native_list_append(v, ["-gal", "other", "-gal", "", "", "", "suffix meaning perpetual"]) + let v = native_list_append(v, ["-icge", "other", "-icge", "", "", "", "noun suffix denoting"]) + let v = native_list_append(v, ["-incel", "other", "-incel", "", "", "", "diminutive noun suffix"]) + let v = native_list_append(v, ["æf-", "other", "æf-", "", "", "", "away off from"]) + let v = native_list_append(v, ["-ræden", "other", "-ræden", "", "", "", "noun suffix denoting"]) + let v = native_list_append(v, ["-red", "other", "-red", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["full-", "other", "full-", "", "", "", "full fully completely"]) + let v = native_list_append(v, ["seld-", "other", "seld-", "", "", "", "rare infrequent unusual"]) + let v = native_list_append(v, ["manig-", "other", "manig-", "", "", "", "many multiple multi-"]) + let v = native_list_append(v, ["æt-", "other", "æt-", "", "", "", "at near toward"]) + let v = native_list_append(v, ["fela-", "other", "fela-", "", "", "", "many multi-"]) + let v = native_list_append(v, ["-uma", "other", "-uma", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ede", "other", "-ede", "", "", "", "suffix applied to"]) + let v = native_list_append(v, ["-oþ", "other", "-oþ", "", "", "", "used to form"]) + let v = native_list_append(v, ["-rice", "other", "-rice", "", "", "", "suffix appended to"]) + let v = native_list_append(v, ["ongean-", "other", "ongean-", "", "", "", "towards against opposite"]) + let v = native_list_append(v, ["eall-", "other", "eall-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lian", "other", "-lian", "", "", "", "frequentative verbal suffix"]) + let v = native_list_append(v, ["eft-", "other", "eft-", "", "", "", "again afterwards back"]) + let v = native_list_append(v, ["æg-", "other", "æg-", "", "", "", "ever every each"]) + let v = native_list_append(v, ["-lum", "other", "-lum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["-las", "other", "-las", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["-ettan", "other", "-ettan", "", "", "", "used to form"]) + let v = native_list_append(v, ["-nian", "other", "-nian", "", "", "", "suffix applied to"]) + let v = native_list_append(v, ["efen-", "other", "efen-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-erian", "other", "-erian", "", "", "", "A frequentative suffix"]) + let v = native_list_append(v, ["-orian", "other", "-orian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-erne", "other", "-erne", "", "", "", "Adjective suffix occurring"]) + let v = native_list_append(v, ["med-", "other", "med-", "", "", "", "middle mediocre average"]) + let v = native_list_append(v, ["-wis", "other", "-wis", "", "", "", "denoting a specified"]) + let v = native_list_append(v, ["ymb-", "other", "ymb-", "", "", "", "around"]) + let v = native_list_append(v, ["-eht", "other", "-eht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-den", "other", "-den", "", "", "", "plural preterite subjunctive"]) + let v = native_list_append(v, ["-wist", "other", "-wist", "", "", "", "being state condition"]) + let v = native_list_append(v, ["uþ-", "other", "uþ-", "", "", "", "from away"]) + let v = native_list_append(v, ["fer-", "other", "fer-", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["wel-", "other", "wel-", "", "", "", "well good abundantly"]) + let v = native_list_append(v, ["dune-", "other", "dune-", "", "", "", "down downward"]) + let v = native_list_append(v, ["sundor-", "other", "sundor-", "", "", "", "separate"]) + let v = native_list_append(v, ["hinder-", "other", "hinder-", "", "", "", "behind after"]) + let v = native_list_append(v, ["ær-", "other", "ær-", "", "", "", "before early former"]) + let v = native_list_append(v, ["steop-", "other", "steop-", "", "", "", "deprived of a"]) + let v = native_list_append(v, ["foran-", "other", "foran-", "", "", "", "front forward part"]) + let v = native_list_append(v, ["cyne-", "other", "cyne-", "", "", "", "royal of a"]) + let v = native_list_append(v, ["-rof", "other", "-rof", "", "", "", "suffix meaning full"]) + let v = native_list_append(v, ["-feald", "other", "-feald", "", "", "", "suffix denoting multiplication"]) + let v = native_list_append(v, ["fea-", "other", "fea-", "", "", "", "little small poor"]) + let v = native_list_append(v, ["-eld", "other", "-eld", "", "", "", "suffix forming nouns"]) + let v = native_list_append(v, ["-ett", "other", "-ett", "", "", "", "inflection of -ettan"]) + let v = native_list_append(v, ["-liest", "other", "-liest", "", "", "", "suffix denoting lack"]) + let v = native_list_append(v, ["middan-", "other", "middan-", "", "", "", "between in the"]) + let v = native_list_append(v, ["micel-", "other", "micel-", "", "", "", "large great magni-"]) + let v = native_list_append(v, ["betwux-", "other", "betwux-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betweon-", "other", "betweon-", "", "", "", "between among inter-"]) + let v = native_list_append(v, ["ang-", "other", "ang-", "", "", "", "narrow tight constrained"]) + let v = native_list_append(v, ["hund-", "other", "hund-", "", "", "", "prefix used at"]) + let v = native_list_append(v, ["aweg-", "other", "aweg-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onweg-", "other", "onweg-", "", "", "", "away"]) + let v = native_list_append(v, ["gean-", "other", "gean-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sæta", "other", "-sæta", "", "", "", "a resident or"]) + let v = native_list_append(v, ["-tig", "other", "-tig", "", "", "", "-ty used to"]) + let v = native_list_append(v, ["-raþ", "other", "-raþ", "", "", "", "count of"]) + let v = native_list_append(v, ["weas-", "other", "weas-", "", "", "", "chance"]) + let v = native_list_append(v, ["weden-", "other", "weden-", "", "", "", "insanity madness"]) + let v = native_list_append(v, ["-eg", "other", "-eg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["samod-", "other", "samod-", "", "", "", "together with co-"]) + let v = native_list_append(v, ["-stow", "other", "-stow", "", "", "", "suffix found in"]) + let v = native_list_append(v, ["þri-", "other", "þri-", "", "", "", "three tri- combining"]) + let v = native_list_append(v, ["-wende", "other", "-wende", "", "", "", "suffix meaning tending"]) + let v = native_list_append(v, ["-heald", "other", "-heald", "", "", "", "bent inclined toward"]) + let v = native_list_append(v, ["-fæst", "other", "-fæst", "", "", "", "firm secure"]) + let v = native_list_append(v, ["fiþer-", "other", "fiþer-", "", "", "", "four quadri- tetra-"]) + let v = native_list_append(v, ["þrim-", "other", "þrim-", "", "", "", "three"]) + let v = native_list_append(v, ["sifu", "other", "sifu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ẏ", "other", "ẏ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-g", "other", "-g", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-elle", "other", "-elle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gen-", "other", "gen-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ga", "other", "-ga", "", "", "", "Diminutive suffix used"]) + let v = native_list_append(v, ["-nod", "other", "-nod", "", "", "", "past participle of"]) + let v = native_list_append(v, ["-ge", "other", "-ge", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["sixe", "other", "sixe", "", "", "", "nominative/accusative of six"]) + let v = native_list_append(v, ["-uc", "other", "-uc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-æ", "other", "-æ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oðer", "other", "oðer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-aþ", "other", "-aþ", "", "", "", "Third person singular"]) + let v = native_list_append(v, ["-etta", "other", "-etta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["UU", "other", "UU", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nesse", "other", "-nesse", "", "", "", "inflection of -nes"]) + let v = native_list_append(v, ["-enne", "other", "-enne", "", "", "", "Forms the inflected"]) + let v = native_list_append(v, ["bile-", "other", "bile-", "", "", "", "kind appropriate"]) + let v = native_list_append(v, ["-cræft", "other", "-cræft", "", "", "", "denoting an art"]) + let v = native_list_append(v, ["ᚨ", "other", "ᚨ", "", "", "", "the rune ᚫ"]) + let v = native_list_append(v, ["ᵹ", "other", "ᵹ", "", "", "", "Insular script form"]) + let v = native_list_append(v, ["sel-", "other", "sel-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ander-", "other", "ander-", "", "", "", "denoting reversal or"]) + let v = native_list_append(v, ["eal-", "other", "eal-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gi-", "other", "gi-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["far-", "other", "far-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-tene", "other", "-tene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-le", "other", "-le", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["frea-", "other", "frea-", "", "", "", "an intensifying prefix"]) + let v = native_list_append(v, ["ful-", "other", "ful-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erce", "other", "erce", "", "", "", "holy"]) + let v = native_list_append(v, ["ᚸ", "other", "ᚸ", "", "", "", "a letter of"]) + let v = native_list_append(v, ["ie-", "other", "ie-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ele", "other", "-ele", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ni-", "other", "ni-", "", "", "", "new- newly"]) + let v = native_list_append(v, ["-ela", "other", "-ela", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nigen", "other", "nigen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þreotiene", "other", "þreotiene", "", "", "", "thirteen"]) + let v = native_list_append(v, ["feowertiene", "other", "feowertiene", "", "", "", "fourteen"]) + let v = native_list_append(v, ["fiftiene", "other", "fiftiene", "", "", "", "fifteen"]) + let v = native_list_append(v, ["siextiene", "other", "siextiene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seofontiene", "other", "seofontiene", "", "", "", "seventeen"]) + let v = native_list_append(v, ["eahtatiene", "other", "eahtatiene", "", "", "", "eighteen"]) + let v = native_list_append(v, ["nigontiene", "other", "nigontiene", "", "", "", "nineteen"]) + let v = native_list_append(v, ["nigan", "other", "nigan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyr-", "other", "fyr-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-igo", "other", "-igo", "", "", "", "inflection of -iġ"]) + let v = native_list_append(v, ["-ige", "other", "-ige", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-fald", "other", "-fald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-weardes", "other", "-weardes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iscum", "other", "-iscum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["-igen", "other", "-igen", "", "", "", "plural present subjunctive"]) + let v = native_list_append(v, ["twelfe", "other", "twelfe", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["-no", "other", "-no", "", "", "", "inflection of -en"]) + let v = native_list_append(v, ["-can", "other", "-can", "", "", "", "inflection of -ca"]) + let v = native_list_append(v, ["-full", "other", "-full", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-oda", "other", "-oda", "", "", "", "inflection of -od"]) + let v = native_list_append(v, ["-cen", "other", "-cen", "", "", "", "suffix forming diminutives"]) + let v = native_list_append(v, ["-ih", "other", "-ih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sne", "other", "-sne", "", "", "", "inflection of -sn"]) + let v = native_list_append(v, ["-enu", "other", "-enu", "", "", "", "inflection of -en"]) + let v = native_list_append(v, ["seolf-", "other", "seolf-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ut", "other", "-ut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["from-", "other", "from-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nu", "other", "-nu", "", "", "", "inflection of -en"]) + let v = native_list_append(v, ["-þu", "other", "-þu", "", "", "", "forming abstract nouns"]) + let v = native_list_append(v, ["syx", "other", "syx", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-elas", "other", "-elas", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ii-", "other", "ii-", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["ᛒ", "other", "ᛒ", "", "", "", "the eighteenth letter"]) + let v = native_list_append(v, ["arce-", "other", "arce-", "", "", "", "arch-"]) + let v = native_list_append(v, ["hundteontigoþa", "other", "hundteontigoþa", "", "", "", "hundredth"]) + let v = native_list_append(v, ["hundteontig", "other", "hundteontig", "", "", "", "hundred"]) + let v = native_list_append(v, ["hundtwelftig", "other", "hundtwelftig", "", "", "", "120 one hundred"]) + let v = native_list_append(v, ["feorða", "other", "feorða", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þridde", "other", "þridde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seofoða", "other", "seofoða", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᛞ", "other", "ᛞ", "", "", "", "the twenty-third/fourth letter"]) + let v = native_list_append(v, ["-sna", "other", "-sna", "", "", "", "nominative/accusative/genitive plural of"]) + let v = native_list_append(v, ["-sn", "other", "-sn", "", "", "", "Forms feminine ō-stem"]) + let v = native_list_append(v, ["-nan", "other", "-nan", "", "", "", "inflection of -en"]) + let v = native_list_append(v, ["tyn", "other", "tyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["siexta", "other", "siexta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꞅ", "other", "ꞅ", "", "", "", "Insular script form"]) + let v = native_list_append(v, ["-nys", "other", "-nys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seox", "other", "seox", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æhta", "other", "æhta", "", "", "", "eight"]) + let v = native_list_append(v, ["wæfer-", "other", "wæfer-", "", "", "", "show spectacle"]) + let v = native_list_append(v, ["-les", "other", "-les", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["-lease", "other", "-lease", "", "", "", "inflection of -lēas"]) + let v = native_list_append(v, ["wæ", "other", "wæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ysc", "other", "-ysc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ege", "other", "-ege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-don", "other", "-don", "", "", "", "plural preterite indicative"]) + let v = native_list_append(v, ["-hade", "other", "-hade", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["-scipe", "other", "-scipe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-scip", "other", "-scip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-scype", "other", "-scype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᚪ", "other", "ᚪ", "", "", "", "the twenty-fifth letter"]) + let v = native_list_append(v, ["-fulle", "other", "-fulle", "", "", "", "inflection of -ful"]) + let v = native_list_append(v, ["-inge", "other", "-inge", "", "", "", "inflection of -ing"]) + let v = native_list_append(v, ["-unge", "other", "-unge", "", "", "", "inflection of -ung"]) + let v = native_list_append(v, ["eala gif", "other", "eala gif", "", "", "", "if only"]) + let v = native_list_append(v, ["and swa forþ", "other", "and swa forþ", "", "", "", "et cetera and"]) + let v = native_list_append(v, ["hu færst þu", "other", "hu færst þu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-wintre", "other", "-wintre", "", "", "", "years old"]) + let v = native_list_append(v, ["cyn-", "other", "cyn-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᛥ", "other", "ᛥ", "", "", "", "a manuscript only"]) + let v = native_list_append(v, ["ᛢ", "other", "ᛢ", "", "", "", "a manuscript only"]) + let v = native_list_append(v, ["ᛣ", "other", "ᛣ", "", "", "", "a letter of"]) + let v = native_list_append(v, ["ᛤ", "other", "ᛤ", "", "", "", "a letter of"]) + let v = native_list_append(v, ["hu eald eart þu", "other", "hu eald eart þu", "", "", "", "how old are"]) + let v = native_list_append(v, ["hwæt eart þu", "other", "hwæt eart þu", "", "", "", "who are you"]) + let v = native_list_append(v, ["hwanon eart þu", "other", "hwanon eart þu", "", "", "", "where are you"]) + let v = native_list_append(v, ["hwær eart þu", "other", "hwær eart þu", "", "", "", "where are you"]) + let v = native_list_append(v, ["hu micel sceal ic þe", "other", "hu micel sceal ic þe", "", "", "", "how much do"]) + let v = native_list_append(v, ["spricst þu Englisc", "other", "spricst þu Englisc", "", "", "", "do you speak"]) + let v = native_list_append(v, ["geliefst þu on God", "other", "geliefst þu on God", "", "", "", "do you believe"]) + let v = native_list_append(v, ["ic nat", "other", "ic nat", "", "", "", "I dont know"]) + let v = native_list_append(v, ["-ena", "other", "-ena", "", "", "", "forms the genitive"]) + let v = native_list_append(v, ["-enes", "other", "-enes", "", "", "", "inflection of -en"]) + let v = native_list_append(v, ["fiftene", "other", "fiftene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sixtene", "other", "sixtene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuelf", "other", "tuelf", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["twælf", "other", "twælf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-cast", "other", "-cast", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["þridda dæl", "other", "þridda dæl", "", "", "", "a third"]) + let v = native_list_append(v, ["twæde", "other", "twæde", "", "", "", "two thirds"]) + let v = native_list_append(v, ["ᛖ", "other", "ᛖ", "", "", "", "the nineteenth letter"]) + let v = native_list_append(v, ["ᚣ", "other", "ᚣ", "", "", "", "the twenty-seventh/eighth letter"]) + let v = native_list_append(v, ["ᛈ", "other", "ᛈ", "", "", "", "the fourteenth letter"]) + let v = native_list_append(v, ["ᛉ", "other", "ᛉ", "", "", "", "the fifteenth letter"]) + let v = native_list_append(v, ["ᛝ", "other", "ᛝ", "", "", "", "the twenty-second letter"]) + let v = native_list_append(v, ["ᛠ", "other", "ᛠ", "", "", "", "the twenty-seventh/eigth and"]) + let v = native_list_append(v, ["ᛡ", "other", "ᛡ", "", "", "", "a letter of"]) + let v = native_list_append(v, ["-mælum", "other", "-mælum", "", "", "", "used to denote"]) + let v = native_list_append(v, ["-inga", "other", "-inga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["endlefta", "other", "endlefta", "", "", "", "eleventh"]) + let v = native_list_append(v, ["twelfta", "other", "twelfta", "", "", "", "twelfth"]) + let v = native_list_append(v, ["þreotteoþa", "other", "þreotteoþa", "", "", "", "thirteenth"]) + let v = native_list_append(v, ["feowerteoþa", "other", "feowerteoþa", "", "", "", "fourteenth"]) + let v = native_list_append(v, ["an and twentig", "other", "an and twentig", "", "", "", "twenty-one"]) + let v = native_list_append(v, ["twentigoþa", "other", "twentigoþa", "", "", "", "twentieth"]) + let v = native_list_append(v, ["an and twentigoþa", "other", "an and twentigoþa", "", "", "", "twenty-first"]) + let v = native_list_append(v, ["twa and twentig", "other", "twa and twentig", "", "", "", "twenty-two"]) + let v = native_list_append(v, ["hundendleftig", "other", "hundendleftig", "", "", "", "one hundred and"]) + let v = native_list_append(v, ["hundnigontig", "other", "hundnigontig", "", "", "", "ninety"]) + let v = native_list_append(v, ["nigon and hundnigontig", "other", "nigon and hundnigontig", "", "", "", "ninety-nine"]) + let v = native_list_append(v, ["an and hundteontig", "other", "an and hundteontig", "", "", "", "one hundred and"]) + let v = native_list_append(v, ["fifteoþa", "other", "fifteoþa", "", "", "", "fifteenth"]) + let v = native_list_append(v, ["siexteoþa", "other", "siexteoþa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seofonteoþa", "other", "seofonteoþa", "", "", "", "seventeenth"]) + let v = native_list_append(v, ["eahtateoþa", "other", "eahtateoþa", "", "", "", "eighteenth"]) + let v = native_list_append(v, ["nigonteoþa", "other", "nigonteoþa", "", "", "", "nineteenth"]) + let v = native_list_append(v, ["twa and twentigoþa", "other", "twa and twentigoþa", "", "", "", "twenty-second"]) + let v = native_list_append(v, ["feowertig", "other", "feowertig", "", "", "", "forty"]) + let v = native_list_append(v, ["siextig", "other", "siextig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundseofontig", "other", "hundseofontig", "", "", "", "seventy"]) + let v = native_list_append(v, ["hundeahtatig", "other", "hundeahtatig", "", "", "", "eighty"]) + let v = native_list_append(v, ["on", "prep", "on", "", "", "", "on in at"]) + let v = native_list_append(v, ["te", "prep", "te", "", "", "", "to"]) + let v = native_list_append(v, ["in", "prep", "in", "", "", "", "in"]) + let v = native_list_append(v, ["be", "prep", "be", "", "", "", "about concerning"]) + let v = native_list_append(v, ["of", "prep", "of", "", "", "", "from"]) + let v = native_list_append(v, ["for", "prep", "for", "", "", "", "because of out"]) + let v = native_list_append(v, ["an", "prep", "an", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to", "prep", "to", "", "", "", "to into"]) + let v = native_list_append(v, ["bi", "prep", "bi", "", "", "", "about concerning"]) + let v = native_list_append(v, ["mit", "prep", "mit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ob", "prep", "ob", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["under", "prep", "under", "", "", "", "under beneath"]) + let v = native_list_append(v, ["into", "prep", "into", "", "", "", "into"]) + let v = native_list_append(v, ["fra", "prep", "fra", "", "", "", "fro from"]) + let v = native_list_append(v, ["upon", "prep", "upon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fore", "prep", "fore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mid", "prep", "mid", "", "", "", "with"]) + let v = native_list_append(v, ["butan", "prep", "butan", "", "", "", "without except for"]) + let v = native_list_append(v, ["ofer", "prep", "ofer", "", "", "", "over above"]) + let v = native_list_append(v, ["til", "prep", "til", "", "", "", "to until unto"]) + let v = native_list_append(v, ["efter", "prep", "efter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ær", "prep", "ær", "", "", "", "before in negative"]) + let v = native_list_append(v, ["agen", "prep", "agen", "", "", "", "against contra"]) + let v = native_list_append(v, ["siþ", "prep", "siþ", "", "", "", "after"]) + let v = native_list_append(v, ["ymb", "prep", "ymb", "", "", "", "around surrounding or"]) + let v = native_list_append(v, ["neah", "prep", "neah", "", "", "", "close near"]) + let v = native_list_append(v, ["gemang", "prep", "gemang", "", "", "", "among"]) + let v = native_list_append(v, ["wiþutan", "prep", "wiþutan", "", "", "", "outside of without"]) + let v = native_list_append(v, ["wiþ", "prep", "wiþ", "", "", "", "against opposite typically"]) + let v = native_list_append(v, ["oþ", "prep", "oþ", "", "", "", "until as far"]) + let v = native_list_append(v, ["middes", "prep", "middes", "", "", "", "halfway to"]) + let v = native_list_append(v, ["þurh", "prep", "þurh", "", "", "", "through"]) + let v = native_list_append(v, ["bufan", "prep", "bufan", "", "", "", "above Object takes"]) + let v = native_list_append(v, ["æfter", "prep", "æfter", "", "", "", "after"]) + let v = native_list_append(v, ["æt", "prep", "æt", "", "", "", "at a certain"]) + let v = native_list_append(v, ["betweonum", "prep", "betweonum", "", "", "", "between"]) + let v = native_list_append(v, ["betweox", "prep", "betweox", "", "", "", "between"]) + let v = native_list_append(v, ["fram", "prep", "fram", "", "", "", "from"]) + let v = native_list_append(v, ["behindan", "prep", "behindan", "", "", "", "behind"]) + let v = native_list_append(v, ["beforan", "prep", "beforan", "", "", "", "before in front"]) + let v = native_list_append(v, ["begeondan", "prep", "begeondan", "", "", "", "beyond on the"]) + let v = native_list_append(v, ["geond", "prep", "geond", "", "", "", "through throughout +accusative"]) + let v = native_list_append(v, ["bineoþan", "prep", "bineoþan", "", "", "", "beneath"]) + let v = native_list_append(v, ["binnan", "prep", "binnan", "", "", "", "within"]) + let v = native_list_append(v, ["innan", "prep", "innan", "", "", "", "within"]) + let v = native_list_append(v, ["eac", "prep", "eac", "", "", "", "along with together"]) + let v = native_list_append(v, ["onbutan", "prep", "onbutan", "", "", "", "on about round"]) + let v = native_list_append(v, ["ongean", "prep", "ongean", "", "", "", "against +dative"]) + let v = native_list_append(v, ["underneoþan", "prep", "underneoþan", "", "", "", "underneath"]) + let v = native_list_append(v, ["wiþinnan", "prep", "wiþinnan", "", "", "", "within"]) + let v = native_list_append(v, ["ongemang", "prep", "ongemang", "", "", "", "among"]) + let v = native_list_append(v, ["toweard", "prep", "toweard", "", "", "", "toward with genitive"]) + let v = native_list_append(v, ["æf", "prep", "æf", "", "", "", "of"]) + let v = native_list_append(v, ["gehende", "prep", "gehende", "", "", "", "close near"]) + let v = native_list_append(v, ["twih", "prep", "twih", "", "", "", "between"]) + let v = native_list_append(v, ["forþ", "prep", "forþ", "", "", "", "forward to up"]) + let v = native_list_append(v, ["uppon", "prep", "uppon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buton", "prep", "buton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togeanes", "prep", "togeanes", "", "", "", "against towards"]) + let v = native_list_append(v, ["andlang", "prep", "andlang", "", "", "", "along"]) + let v = native_list_append(v, ["ymbe", "prep", "ymbe", "", "", "", "around about"]) + let v = native_list_append(v, ["embe", "prep", "embe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ongegn", "prep", "ongegn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneoþan", "prep", "beneoþan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betweonan", "prep", "betweonan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miþ", "prep", "miþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["samod", "prep", "samod", "", "", "", "together with at"]) + let v = native_list_append(v, ["amang", "prep", "amang", "", "", "", "among"]) + let v = native_list_append(v, ["forð", "prep", "forð", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biforan", "prep", "biforan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uppan", "prep", "uppan", "", "", "", "on onto upon"]) + let v = native_list_append(v, ["ðurh", "prep", "ðurh", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["onmiddan", "prep", "onmiddan", "", "", "", "amid in the"]) + let v = native_list_append(v, ["agean", "prep", "agean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wið", "prep", "wið", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þuruh", "prep", "þuruh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᚨᚠᛏᛖᚱ", "prep", "ᚨᚠᛏᛖᚱ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["neoþan", "prep", "neoþan", "", "", "", "neath"]) + let v = native_list_append(v, ["ouer", "prep", "ouer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mið", "prep", "mið", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giend", "prep", "giend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforan", "prep", "toforan", "", "", "", "in front of"]) + let v = native_list_append(v, ["ðerh", "prep", "ðerh", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þorh", "prep", "þorh", "", "", "", "Mercian form of"]) + let v = native_list_append(v, ["abutan", "prep", "abutan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togean", "prep", "togean", "", "", "", "towards"]) + let v = native_list_append(v, ["toeacan", "prep", "toeacan", "", "", "", "in addition to"]) + let v = native_list_append(v, ["þerh", "prep", "þerh", "", "", "", "Northumbrian form of"]) + let v = native_list_append(v, ["neoðan", "prep", "neoðan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nioðan", "prep", "nioðan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nioþan", "prep", "nioþan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["abitweonum", "prep", "abitweonum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abetweonum", "prep", "abetweonum", "", "", "", "between"]) + let v = native_list_append(v, ["ꝧ", "prep", "ꝧ", "", "", "", "abbreviation of þurh"]) + let v = native_list_append(v, ["beheonan", "prep", "beheonan", "", "", "", "on this side"]) + let v = native_list_append(v, ["ðorh", "prep", "ðorh", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bæftan", "prep", "bæftan", "", "", "", "behind"]) + let v = native_list_append(v, ["betwux", "prep", "betwux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onlong", "prep", "onlong", "", "", "", "along"]) + let v = native_list_append(v, ["wiþer", "prep", "wiþer", "", "", "", "against +accusative"]) + let v = native_list_append(v, ["ᚩᚾ", "prep", "ᚩᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["æror", "prep", "æror", "", "", "", "before"]) + let v = native_list_append(v, ["ᛁᚾ", "prep", "ᛁᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᛏᛁᛚ", "prep", "ᛏᛁᛚ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["betwyh", "prep", "betwyh", "", "", "", "between"]) + let v = native_list_append(v, ["ongemong", "prep", "ongemong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ætforan", "prep", "ætforan", "", "", "", "before"]) + let v = native_list_append(v, ["onforan", "prep", "onforan", "", "", "", "before in front"]) + let v = native_list_append(v, ["somod", "prep", "somod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ymbutan", "prep", "ymbutan", "", "", "", "about around without"]) + let v = native_list_append(v, ["betweoh", "prep", "betweoh", "", "", "", "between among"]) + let v = native_list_append(v, ["ᚠᚩᚱᚨ", "prep", "ᚠᚩᚱᚨ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["uuiþ", "prep", "uuiþ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["oð", "prep", "oð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["betwyx", "prep", "betwyx", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eftyr", "prep", "eftyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æftyr", "prep", "æftyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betwuh", "prep", "betwuh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ofor", "prep", "ofor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onbufan", "prep", "onbufan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betwih", "prep", "betwih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ondlong", "prep", "ondlong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["a/languages M to Z", "prep", "a/languages M to Z", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þurg", "prep", "þurg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biheonan", "prep", "biheonan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behienan", "prep", "behienan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behionan", "prep", "behionan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behinon", "prep", "behinon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["begeondon", "prep", "begeondon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["begondon", "prep", "begondon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bigeonda", "prep", "bigeonda", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onuppan", "prep", "onuppan", "", "", "", "upon on"]) + let v = native_list_append(v, ["on", "adv", "on", "", "", "", "from"]) + let v = native_list_append(v, ["nu", "adv", "nu", "", "", "", "now"]) + let v = native_list_append(v, ["in", "adv", "in", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["o", "adv", "o", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["and", "adv", "and", "", "", "", "even also"]) + let v = native_list_append(v, ["an", "adv", "an", "", "", "", "only"]) + let v = native_list_append(v, ["to", "adv", "to", "", "", "", "besides"]) + let v = native_list_append(v, ["her", "adv", "her", "", "", "", "here"]) + let v = native_list_append(v, ["all", "adv", "all", "", "", "", "Anglian form of"]) + let v = native_list_append(v, ["east", "adv", "east", "", "", "", "from the east"]) + let v = native_list_append(v, ["west", "adv", "west", "", "", "", "west"]) + let v = native_list_append(v, ["ia", "adv", "ia", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sama", "adv", "sama", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bet", "adv", "bet", "", "", "", "better"]) + let v = native_list_append(v, ["get", "adv", "get", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wide", "adv", "wide", "", "", "", "widely afar far"]) + let v = native_list_append(v, ["ham", "adv", "ham", "", "", "", "home homeward"]) + let v = native_list_append(v, ["ne", "adv", "ne", "", "", "", "not"]) + let v = native_list_append(v, ["na", "adv", "na", "", "", "", "not"]) + let v = native_list_append(v, ["side", "adv", "side", "", "", "", "widely"]) + let v = native_list_append(v, ["same", "adv", "same", "", "", "", "in the same"]) + let v = native_list_append(v, ["giet", "adv", "giet", "", "", "", "still"]) + let v = native_list_append(v, ["up", "adv", "up", "", "", "", "up"]) + let v = native_list_append(v, ["dune", "adv", "dune", "", "", "", "down"]) + let v = native_list_append(v, ["ane", "adv", "ane", "", "", "", "alone only"]) + let v = native_list_append(v, ["næse", "adv", "næse", "", "", "", "no"]) + let v = native_list_append(v, ["ut", "adv", "ut", "", "", "", "out"]) + let v = native_list_append(v, ["inn", "adv", "inn", "", "", "", "in with allative"]) + let v = native_list_append(v, ["ma", "adv", "ma", "", "", "", "more"]) + let v = native_list_append(v, ["brytmælum", "adv", "brytmælum", "", "", "", "piecemeal"]) + let v = native_list_append(v, ["ange", "adv", "ange", "", "", "", "sadly anxiously"]) + let v = native_list_append(v, ["ædre", "adv", "ædre", "", "", "", "directly instantly at"]) + let v = native_list_append(v, ["æwlice", "adv", "æwlice", "", "", "", "legally lawfully"]) + let v = native_list_append(v, ["geta", "adv", "geta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["late", "adv", "late", "", "", "", "slowly"]) + let v = native_list_append(v, ["latest", "adv", "latest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["gea", "adv", "gea", "", "", "", "yes yeah yea"]) + let v = native_list_append(v, ["hwy", "adv", "hwy", "", "", "", "why"]) + let v = native_list_append(v, ["mest", "adv", "mest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gee", "adv", "gee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eft", "adv", "eft", "", "", "", "again"]) + let v = native_list_append(v, ["oft", "adv", "oft", "", "", "", "often oft"]) + let v = native_list_append(v, ["hinder", "adv", "hinder", "", "", "", "back behind down"]) + let v = native_list_append(v, ["git", "adv", "git", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nuna", "adv", "nuna", "", "", "", "synonym of nū"]) + let v = native_list_append(v, ["gi", "adv", "gi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ute", "adv", "ute", "", "", "", "outside outdoors"]) + let v = native_list_append(v, ["samen", "adv", "samen", "", "", "", "together"]) + let v = native_list_append(v, ["elles", "adv", "elles", "", "", "", "else otherwise in"]) + let v = native_list_append(v, ["sunder", "adv", "sunder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["butan", "adv", "butan", "", "", "", "merely only just"]) + let v = native_list_append(v, ["hu", "adv", "hu", "", "", "", "how in all"]) + let v = native_list_append(v, ["iu", "adv", "iu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ofer", "adv", "ofer", "", "", "", "over above"]) + let v = native_list_append(v, ["hwæt", "adv", "hwæt", "", "", "", "indeed how exclamative"]) + let v = native_list_append(v, ["inne", "adv", "inne", "", "", "", "inside in indoors"]) + let v = native_list_append(v, ["þær", "adv", "þær", "", "", "", "there"]) + let v = native_list_append(v, ["þar", "adv", "þar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tela", "adv", "tela", "", "", "", "well rightly"]) + let v = native_list_append(v, ["fyr", "adv", "fyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ær", "adv", "ær", "", "", "", "previously"]) + let v = native_list_append(v, ["agen", "adv", "agen", "", "", "", "again anew"]) + let v = native_list_append(v, ["siþ", "adv", "siþ", "", "", "", "late"]) + let v = native_list_append(v, ["nese", "adv", "nese", "", "", "", "no"]) + let v = native_list_append(v, ["gen", "adv", "gen", "", "", "", "still yet"]) + let v = native_list_append(v, ["awa", "adv", "awa", "", "", "", "always ever forever"]) + let v = native_list_append(v, ["neah", "adv", "neah", "", "", "", "close near"]) + let v = native_list_append(v, ["swa", "adv", "swa", "", "", "", "in that way"]) + let v = native_list_append(v, ["lyt", "adv", "lyt", "", "", "", "little few"]) + let v = native_list_append(v, ["þæs", "adv", "þæs", "", "", "", "afterwards"]) + let v = native_list_append(v, ["þy", "adv", "þy", "", "", "", "therefore for this"]) + let v = native_list_append(v, ["þon", "adv", "þon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þa", "adv", "þa", "", "", "", "then"]) + let v = native_list_append(v, ["forn", "adv", "forn", "", "", "", "before in front"]) + let v = native_list_append(v, ["gean", "adv", "gean", "", "", "", "again"]) + let v = native_list_append(v, ["geara", "adv", "geara", "", "", "", "long ago"]) + let v = native_list_append(v, ["lange", "adv", "lange", "", "", "", "long for a"]) + let v = native_list_append(v, ["ful", "adv", "ful", "", "", "", "very well"]) + let v = native_list_append(v, ["wa", "adv", "wa", "", "", "", "woe ill"]) + let v = native_list_append(v, ["wel", "adv", "wel", "", "", "", "well"]) + let v = native_list_append(v, ["stund", "adv", "stund", "", "", "", "at once forthwith"]) + let v = native_list_append(v, ["utan", "adv", "utan", "", "", "", "from without outside"]) + let v = native_list_append(v, ["sare", "adv", "sare", "", "", "", "sorely grievously bitterly"]) + let v = native_list_append(v, ["dæges", "adv", "dæges", "", "", "", "by day during"]) + let v = native_list_append(v, ["wiþutan", "adv", "wiþutan", "", "", "", "outside"]) + let v = native_list_append(v, ["wiþ", "adv", "wiþ", "", "", "", "with it together"]) + let v = native_list_append(v, ["telo", "adv", "telo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ellor", "adv", "ellor", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["huru", "adv", "huru", "", "", "", "anyway at any"]) + let v = native_list_append(v, ["cuþe", "adv", "cuþe", "", "", "", "clearly"]) + let v = native_list_append(v, ["ufan", "adv", "ufan", "", "", "", "above"]) + let v = native_list_append(v, ["þonne", "adv", "þonne", "", "", "", "then at that"]) + let v = native_list_append(v, ["eall", "adv", "eall", "", "", "", "completely"]) + let v = native_list_append(v, ["anes", "adv", "anes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["æfre", "adv", "æfre", "", "", "", "ever"]) + let v = native_list_append(v, ["æfter", "adv", "æfter", "", "", "", "after"]) + let v = native_list_append(v, ["efen", "adv", "efen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deore", "adv", "deore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feor", "adv", "feor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fram", "adv", "fram", "", "", "", "forward"]) + let v = native_list_append(v, ["healf", "adv", "healf", "", "", "", "half"]) + let v = native_list_append(v, ["behindan", "adv", "behindan", "", "", "", "behind"]) + let v = native_list_append(v, ["hindan", "adv", "hindan", "", "", "", "from behind"]) + let v = native_list_append(v, ["hraþor", "adv", "hraþor", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["hræþe", "adv", "hræþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwæder", "adv", "hwæder", "", "", "", "where to what"]) + let v = native_list_append(v, ["hwænne", "adv", "hwænne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwær", "adv", "hwær", "", "", "", "where"]) + let v = native_list_append(v, ["to dæge", "adv", "to dæge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["latost", "adv", "latost", "", "", "", "recently. lately"]) + let v = native_list_append(v, ["læs", "adv", "læs", "", "", "", "less"]) + let v = native_list_append(v, ["mæst", "adv", "mæst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["nowiht", "adv", "nowiht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["awiht", "adv", "awiht", "", "", "", "at all"]) + let v = native_list_append(v, ["næfre", "adv", "næfre", "", "", "", "never"]) + let v = native_list_append(v, ["naht", "adv", "naht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niþer", "adv", "niþer", "", "", "", "down downwards"]) + let v = native_list_append(v, ["genog", "adv", "genog", "", "", "", "enough sufficiently"]) + let v = native_list_append(v, ["norþ", "adv", "norþ", "", "", "", "north northward"]) + let v = native_list_append(v, ["beforan", "adv", "beforan", "", "", "", "in front"]) + let v = native_list_append(v, ["foran", "adv", "foran", "", "", "", "before"]) + let v = native_list_append(v, ["begeondan", "adv", "begeondan", "", "", "", "beyond on the"]) + let v = native_list_append(v, ["geond", "adv", "geond", "", "", "", "yonder"]) + let v = native_list_append(v, ["innan", "adv", "innan", "", "", "", "within"]) + let v = native_list_append(v, ["eac", "adv", "eac", "", "", "", "also too"]) + let v = native_list_append(v, ["abufan", "adv", "abufan", "", "", "", "above"]) + let v = native_list_append(v, ["ongean", "adv", "ongean", "", "", "", "opposite"]) + let v = native_list_append(v, ["gægn", "adv", "gægn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gegn", "adv", "gegn", "", "", "", "again"]) + let v = native_list_append(v, ["wiþinnan", "adv", "wiþinnan", "", "", "", "within"]) + let v = native_list_append(v, ["onweg", "adv", "onweg", "", "", "", "away"]) + let v = native_list_append(v, ["seldan", "adv", "seldan", "", "", "", "not often seldom"]) + let v = native_list_append(v, ["sona", "adv", "sona", "", "", "", "immediately straightaway"]) + let v = native_list_append(v, ["togædere", "adv", "togædere", "", "", "", "together"]) + let v = native_list_append(v, ["gædere", "adv", "gædere", "", "", "", "together"]) + let v = native_list_append(v, ["þeah", "adv", "þeah", "", "", "", "for all that"]) + let v = native_list_append(v, ["þider", "adv", "þider", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þus", "adv", "þus", "", "", "", "in this way"]) + let v = native_list_append(v, ["upp", "adv", "upp", "", "", "", "up"]) + let v = native_list_append(v, ["eaþ", "adv", "eaþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twiga", "adv", "twiga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fela", "adv", "fela", "", "", "", "much very"]) + let v = native_list_append(v, ["feorran", "adv", "feorran", "", "", "", "from far away"]) + let v = native_list_append(v, ["hwilum", "adv", "hwilum", "", "", "", "sometimes"]) + let v = native_list_append(v, ["gehende", "adv", "gehende", "", "", "", "close near at"]) + let v = native_list_append(v, ["no", "adv", "no", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gie", "adv", "gie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gita", "adv", "gita", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["longe", "adv", "longe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["leng", "adv", "leng", "", "", "", "longer comparative degree"]) + let v = native_list_append(v, ["lythwon", "adv", "lythwon", "", "", "", "little very little"]) + let v = native_list_append(v, ["hraþe", "adv", "hraþe", "", "", "", "fast quickly"]) + let v = native_list_append(v, ["þanan", "adv", "þanan", "", "", "", "thence from there"]) + let v = native_list_append(v, ["eaþe", "adv", "eaþe", "", "", "", "easily"]) + let v = native_list_append(v, ["cuþlice", "adv", "cuþlice", "", "", "", "clearly certainly"]) + let v = native_list_append(v, ["heonan", "adv", "heonan", "", "", "", "from here hence"]) + let v = native_list_append(v, ["siþþan", "adv", "siþþan", "", "", "", "afterwards subsequently"]) + let v = native_list_append(v, ["þenden", "adv", "þenden", "", "", "", "then"]) + let v = native_list_append(v, ["syþþan", "adv", "syþþan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þara", "adv", "þara", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ærest", "adv", "ærest", "", "", "", "at first"]) + let v = native_list_append(v, ["forþ", "adv", "forþ", "", "", "", "expresses the continuation"]) + let v = native_list_append(v, ["soþe", "adv", "soþe", "", "", "", "truly genuinely really"]) + let v = native_list_append(v, ["gegnum", "adv", "gegnum", "", "", "", "straight directly"]) + let v = native_list_append(v, ["furþum", "adv", "furþum", "", "", "", "even marking an"]) + let v = native_list_append(v, ["nealles", "adv", "nealles", "", "", "", "not at all"]) + let v = native_list_append(v, ["hrædlice", "adv", "hrædlice", "", "", "", "quickly"]) + let v = native_list_append(v, ["gewiss", "adv", "gewiss", "", "", "", "for sure certainly"]) + let v = native_list_append(v, ["hider", "adv", "hider", "", "", "", "to here hither"]) + let v = native_list_append(v, ["uppe", "adv", "uppe", "", "", "", "up"]) + let v = native_list_append(v, ["gena", "adv", "gena", "", "", "", "yet"]) + let v = native_list_append(v, ["noht", "adv", "noht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diere", "adv", "diere", "", "", "", "expensively for a"]) + let v = native_list_append(v, ["gehwær", "adv", "gehwær", "", "", "", "everywhere"]) + let v = native_list_append(v, ["oftast", "adv", "oftast", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["færinga", "adv", "færinga", "", "", "", "suddenly by chance"]) + let v = native_list_append(v, ["gelome", "adv", "gelome", "", "", "", "frequently often"]) + let v = native_list_append(v, ["þearle", "adv", "þearle", "", "", "", "very hard keenly"]) + let v = native_list_append(v, ["hwæþre", "adv", "hwæþre", "", "", "", "yet however nevertheless"]) + let v = native_list_append(v, ["swilce", "adv", "swilce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swylce", "adv", "swylce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæle", "adv", "fæle", "", "", "", "truly well pleasantly"]) + let v = native_list_append(v, ["eastan", "adv", "eastan", "", "", "", "from the east"]) + let v = native_list_append(v, ["togeanes", "adv", "togeanes", "", "", "", "towards"]) + let v = native_list_append(v, ["georne", "adv", "georne", "", "", "", "eagerly keenly willingly"]) + let v = native_list_append(v, ["synder", "adv", "synder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beorhtost", "adv", "beorhtost", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["to niht", "adv", "to niht", "", "", "", "tonight"]) + let v = native_list_append(v, ["geo", "adv", "geo", "", "", "", "at some former"]) + let v = native_list_append(v, ["geornlice", "adv", "geornlice", "", "", "", "eagerly readily earnestly"]) + let v = native_list_append(v, ["adun", "adv", "adun", "", "", "", "down downward"]) + let v = native_list_append(v, ["ærlice", "adv", "ærlice", "", "", "", "early"]) + let v = native_list_append(v, ["swe", "adv", "swe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emne", "adv", "emne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["læst", "adv", "læst", "", "", "", "least"]) + let v = native_list_append(v, ["tiolo", "adv", "tiolo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elcor", "adv", "elcor", "", "", "", "elsewhere besides except"]) + let v = native_list_append(v, ["westan", "adv", "westan", "", "", "", "from the west"]) + let v = native_list_append(v, ["ormæte", "adv", "ormæte", "", "", "", "immensely excessively"]) + let v = native_list_append(v, ["þanecan", "adv", "þanecan", "", "", "", "whenever as soon"]) + let v = native_list_append(v, ["lome", "adv", "lome", "", "", "", "frequently often"]) + let v = native_list_append(v, ["ec", "adv", "ec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gese", "adv", "gese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lator", "adv", "lator", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["a to feore", "adv", "a to feore", "", "", "", "for evermore"]) + let v = native_list_append(v, ["ealswa", "adv", "ealswa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eallswa", "adv", "eallswa", "", "", "", "just as just"]) + let v = native_list_append(v, ["defe", "adv", "defe", "", "", "", "kindly"]) + let v = native_list_append(v, ["eal", "adv", "eal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["handlinga", "adv", "handlinga", "", "", "", "with the hands"]) + let v = native_list_append(v, ["softe", "adv", "softe", "", "", "", "softly"]) + let v = native_list_append(v, ["feorr", "adv", "feorr", "", "", "", "far distant"]) + let v = native_list_append(v, ["sundor", "adv", "sundor", "", "", "", "apart alone by"]) + let v = native_list_append(v, ["ealneg", "adv", "ealneg", "", "", "", "always perpetually"]) + let v = native_list_append(v, ["ongegn", "adv", "ongegn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þanne", "adv", "þanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þænne", "adv", "þænne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nedes", "adv", "nedes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betweonan", "adv", "betweonan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwon", "adv", "hwon", "", "", "", "slightly a little"]) + let v = native_list_append(v, ["to hwon", "adv", "to hwon", "", "", "", "why"]) + let v = native_list_append(v, ["for hwon", "adv", "for hwon", "", "", "", "why"]) + let v = native_list_append(v, ["bi hwon", "adv", "bi hwon", "", "", "", "how"]) + let v = native_list_append(v, ["inlice", "adv", "inlice", "", "", "", "inwardly internally thoroughly"]) + let v = native_list_append(v, ["nalles", "adv", "nalles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emn", "adv", "emn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwar", "adv", "hwar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feolo", "adv", "feolo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gearu", "adv", "gearu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ece", "adv", "ece", "", "", "", "eternally ever evermore"]) + let v = native_list_append(v, ["wiers", "adv", "wiers", "", "", "", "worse comparative degree"]) + let v = native_list_append(v, ["næs", "adv", "næs", "", "", "", "not not at"]) + let v = native_list_append(v, ["raþe", "adv", "raþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["awo", "adv", "awo", "", "", "", "always ever"]) + let v = native_list_append(v, ["simle", "adv", "simle", "", "", "", "always constantly"]) + let v = native_list_append(v, ["gise", "adv", "gise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["samod", "adv", "samod", "", "", "", "simultaneously at the"]) + let v = native_list_append(v, ["gearwe", "adv", "gearwe", "", "", "", "entirely well enough"]) + let v = native_list_append(v, ["forð", "adv", "forð", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwi", "adv", "hwi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biforan", "adv", "biforan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feola", "adv", "feola", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wirs", "adv", "wirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["formest", "adv", "formest", "", "", "", "first"]) + let v = native_list_append(v, ["lengst", "adv", "lengst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uton", "adv", "uton", "", "", "", "lets"]) + let v = native_list_append(v, ["nean", "adv", "nean", "", "", "", "almost"]) + let v = native_list_append(v, ["þærmid", "adv", "þærmid", "", "", "", "theremid therewith with"]) + let v = native_list_append(v, ["þærwiþ", "adv", "þærwiþ", "", "", "", "therewith in return"]) + let v = native_list_append(v, ["bitre", "adv", "bitre", "", "", "", "bitterly cruelly"]) + let v = native_list_append(v, ["hwara", "adv", "hwara", "", "", "", "where"]) + let v = native_list_append(v, ["geare", "adv", "geare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwergen", "adv", "hwergen", "", "", "", "somewhere"]) + let v = native_list_append(v, ["heodæg", "adv", "heodæg", "", "", "", "on this day"]) + let v = native_list_append(v, ["todæg", "adv", "todæg", "", "", "", "today"]) + let v = native_list_append(v, ["aweg", "adv", "aweg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gedreohlice", "adv", "gedreohlice", "", "", "", "discreetly modestly cautiously"]) + let v = native_list_append(v, ["ða", "adv", "ða", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["geonre", "adv", "geonre", "", "", "", "to that place"]) + let v = native_list_append(v, ["neoþan", "adv", "neoþan", "", "", "", "beneath"]) + let v = native_list_append(v, ["gio", "adv", "gio", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tulge", "adv", "tulge", "", "", "", "strongly firmly"]) + let v = native_list_append(v, ["fyrmest", "adv", "fyrmest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæcne", "adv", "fæcne", "", "", "", "maliciously"]) + let v = native_list_append(v, ["tuwa", "adv", "tuwa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ofdune", "adv", "ofdune", "", "", "", "down"]) + let v = native_list_append(v, ["on ecnesse", "adv", "on ecnesse", "", "", "", "forever"]) + let v = native_list_append(v, ["nalas", "adv", "nalas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fotmælum", "adv", "fotmælum", "", "", "", "by footsteps step"]) + let v = native_list_append(v, ["stundmælum", "adv", "stundmælum", "", "", "", "little by little"]) + let v = native_list_append(v, ["styccemælum", "adv", "styccemælum", "", "", "", "piece by piece"]) + let v = native_list_append(v, ["dropmælum", "adv", "dropmælum", "", "", "", "drop by drop"]) + let v = native_list_append(v, ["wuldorfullice", "adv", "wuldorfullice", "", "", "", "gloriously"]) + let v = native_list_append(v, ["wuldorlice", "adv", "wuldorlice", "", "", "", "gloriously"]) + let v = native_list_append(v, ["biterlice", "adv", "biterlice", "", "", "", "bitterly"]) + let v = native_list_append(v, ["bliþelice", "adv", "bliþelice", "", "", "", "happily"]) + let v = native_list_append(v, ["glædlice", "adv", "glædlice", "", "", "", "gladly pleasantly kindly"]) + let v = native_list_append(v, ["clænlice", "adv", "clænlice", "", "", "", "purely cleanly"]) + let v = native_list_append(v, ["deoplice", "adv", "deoplice", "", "", "", "deeply thoroughly profoundly"]) + let v = native_list_append(v, ["heardlice", "adv", "heardlice", "", "", "", "boldly bravely hardily"]) + let v = native_list_append(v, ["healice", "adv", "healice", "", "", "", "highly on high"]) + let v = native_list_append(v, ["hreowlice", "adv", "hreowlice", "", "", "", "miserably cruelly grievously"]) + let v = native_list_append(v, ["lustfullice", "adv", "lustfullice", "", "", "", "with joy or"]) + let v = native_list_append(v, ["leohtlice", "adv", "leohtlice", "", "", "", "lightly slightly gently"]) + let v = native_list_append(v, ["bealdlice", "adv", "bealdlice", "", "", "", "boldly confidently earnestly"]) + let v = native_list_append(v, ["cræftiglice", "adv", "cræftiglice", "", "", "", "workmanlike craftily skillfully"]) + let v = native_list_append(v, ["deorlice", "adv", "deorlice", "", "", "", "preciously dearly worthily"]) + let v = native_list_append(v, ["drihtenlice", "adv", "drihtenlice", "", "", "", "according to the"]) + let v = native_list_append(v, ["hefiglice", "adv", "hefiglice", "", "", "", "heavily grievously sluggishly"]) + let v = native_list_append(v, ["liflice", "adv", "liflice", "", "", "", "vitally in such"]) + let v = native_list_append(v, ["mildelice", "adv", "mildelice", "", "", "", "graciously kindly mercifully"]) + let v = native_list_append(v, ["neodlice", "adv", "neodlice", "", "", "", "diligently eagerly earnestly"]) + let v = native_list_append(v, ["friþlice", "adv", "friþlice", "", "", "", "peaceably quietly"]) + let v = native_list_append(v, ["mihtlice", "adv", "mihtlice", "", "", "", "mightily powerfully in"]) + let v = native_list_append(v, ["swetlice", "adv", "swetlice", "", "", "", "sweetly"]) + let v = native_list_append(v, ["carfullice", "adv", "carfullice", "", "", "", "carefully diligently"]) + let v = native_list_append(v, ["cearfullice", "adv", "cearfullice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wundorlice", "adv", "wundorlice", "", "", "", "wonderfully"]) + let v = native_list_append(v, ["treowlice", "adv", "treowlice", "", "", "", "faithfully truly"]) + let v = native_list_append(v, ["efenlice", "adv", "efenlice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eornostlice", "adv", "eornostlice", "", "", "", "earnestly strictly truly"]) + let v = native_list_append(v, ["mannlice", "adv", "mannlice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forneah", "adv", "forneah", "", "", "", "almost"]) + let v = native_list_append(v, ["witod", "adv", "witod", "", "", "", "certainly assuredly"]) + let v = native_list_append(v, ["witodlice", "adv", "witodlice", "", "", "", "certainly"]) + let v = native_list_append(v, ["soþlice", "adv", "soþlice", "", "", "", "truly really certainly"]) + let v = native_list_append(v, ["soþes", "adv", "soþes", "", "", "", "truly really forsooth"]) + let v = native_list_append(v, ["slawlice", "adv", "slawlice", "", "", "", "slowly sluggishly"]) + let v = native_list_append(v, ["freolice", "adv", "freolice", "", "", "", "freely without hindrance"]) + let v = native_list_append(v, ["sicorlice", "adv", "sicorlice", "", "", "", "with full certainty"]) + let v = native_list_append(v, ["stæpmælum", "adv", "stæpmælum", "", "", "", "step by step"]) + let v = native_list_append(v, ["floccmælum", "adv", "floccmælum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["limmælum", "adv", "limmælum", "", "", "", "limb by limb"]) + let v = native_list_append(v, ["heapmælum", "adv", "heapmælum", "", "", "", "by groups"]) + let v = native_list_append(v, ["scearplice", "adv", "scearplice", "", "", "", "sharply keenly smartly"]) + let v = native_list_append(v, ["cenlice", "adv", "cenlice", "", "", "", "keenly boldly notably"]) + let v = native_list_append(v, ["fullice", "adv", "fullice", "", "", "", "fully perfectly completely"]) + let v = native_list_append(v, ["fæstlice", "adv", "fæstlice", "", "", "", "firmly constantly fast"]) + let v = native_list_append(v, ["dreoriglice", "adv", "dreoriglice", "", "", "", "sadly"]) + let v = native_list_append(v, ["langsumlice", "adv", "langsumlice", "", "", "", "long during or"]) + let v = native_list_append(v, ["scortlice", "adv", "scortlice", "", "", "", "shortly before long"]) + let v = native_list_append(v, ["idæges", "adv", "idæges", "", "", "", "on the same"]) + let v = native_list_append(v, ["isiþes", "adv", "isiþes", "", "", "", "at the same"]) + let v = native_list_append(v, ["nihtes", "adv", "nihtes", "", "", "", "at night"]) + let v = native_list_append(v, ["niwlice", "adv", "niwlice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beorhtlice", "adv", "beorhtlice", "", "", "", "splendidly"]) + let v = native_list_append(v, ["gleawe", "adv", "gleawe", "", "", "", "wisely prudently well"]) + let v = native_list_append(v, ["gleawlice", "adv", "gleawlice", "", "", "", "prudently wisely clearly"]) + let v = native_list_append(v, ["ungleawlice", "adv", "ungleawlice", "", "", "", "without understanding unwisely"]) + let v = native_list_append(v, ["tidlice", "adv", "tidlice", "", "", "", "for a time"]) + let v = native_list_append(v, ["wislice", "adv", "wislice", "", "", "", "wisely with wisdom"]) + let v = native_list_append(v, ["unwislice", "adv", "unwislice", "", "", "", "unwisely foolishly"]) + let v = native_list_append(v, ["swiftlice", "adv", "swiftlice", "", "", "", "swiftly"]) + let v = native_list_append(v, ["swyftlice", "adv", "swyftlice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["timlice", "adv", "timlice", "", "", "", "in good time"]) + let v = native_list_append(v, ["oferheafod", "adv", "oferheafod", "", "", "", "generally in general"]) + let v = native_list_append(v, ["þer", "adv", "þer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þieder", "adv", "þieder", "", "", "", "thither"]) + let v = native_list_append(v, ["ætgædere", "adv", "ætgædere", "", "", "", "together"]) + let v = native_list_append(v, ["geador", "adv", "geador", "", "", "", "together in a"]) + let v = native_list_append(v, ["swiþe", "adv", "swiþe", "", "", "", "very"]) + let v = native_list_append(v, ["swyþe", "adv", "swyþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["andgitfullice", "adv", "andgitfullice", "", "", "", "clearly intelligently sensibly"]) + let v = native_list_append(v, ["manigfealdlice", "adv", "manigfealdlice", "", "", "", "manifoldly in many"]) + let v = native_list_append(v, ["anfealdlice", "adv", "anfealdlice", "", "", "", "simply"]) + let v = native_list_append(v, ["to dæi", "adv", "to dæi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hamweard", "adv", "hamweard", "", "", "", "homeward in the"]) + let v = native_list_append(v, ["inweardlice", "adv", "inweardlice", "", "", "", "inwardly"]) + let v = native_list_append(v, ["tosamne", "adv", "tosamne", "", "", "", "together"]) + let v = native_list_append(v, ["seldum", "adv", "seldum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orsorglice", "adv", "orsorglice", "", "", "", "without anxiety"]) + let v = native_list_append(v, ["deope", "adv", "deope", "", "", "", "deeply"]) + let v = native_list_append(v, ["hindanweard", "adv", "hindanweard", "", "", "", "at the further"]) + let v = native_list_append(v, ["sarlice", "adv", "sarlice", "", "", "", "causing pain sorrow"]) + let v = native_list_append(v, ["nahwær", "adv", "nahwær", "", "", "", "nowhere in no"]) + let v = native_list_append(v, ["hwanon", "adv", "hwanon", "", "", "", "where from whence"]) + let v = native_list_append(v, ["yfele", "adv", "yfele", "", "", "", "badly"]) + let v = native_list_append(v, ["ofer niht", "adv", "ofer niht", "", "", "", "overnight"]) + let v = native_list_append(v, ["hwider", "adv", "hwider", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hrere", "adv", "hrere", "", "", "", "quickly briefly lightly"]) + let v = native_list_append(v, ["gewunelice", "adv", "gewunelice", "", "", "", "usually normally ordinarily"]) + let v = native_list_append(v, ["oftust", "adv", "oftust", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["tweowa", "adv", "tweowa", "", "", "", "twice two times"]) + let v = native_list_append(v, ["þreowa", "adv", "þreowa", "", "", "", "three times thrice"]) + let v = native_list_append(v, ["æne", "adv", "æne", "", "", "", "once one time"]) + let v = native_list_append(v, ["swiþost", "adv", "swiþost", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["niwan", "adv", "niwan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stowlice", "adv", "stowlice", "", "", "", "locally"]) + let v = native_list_append(v, ["lichamlice", "adv", "lichamlice", "", "", "", "physically"]) + let v = native_list_append(v, ["gastlice", "adv", "gastlice", "", "", "", "spiritually"]) + let v = native_list_append(v, ["mæte", "adv", "mæte", "", "", "", "poorly badly"]) + let v = native_list_append(v, ["næfre ma", "adv", "næfre ma", "", "", "", "never again"]) + let v = native_list_append(v, ["næfre eft", "adv", "næfre eft", "", "", "", "never again"]) + let v = native_list_append(v, ["uneaþe", "adv", "uneaþe", "", "", "", "barely hardly"]) + let v = native_list_append(v, ["ætsamne", "adv", "ætsamne", "", "", "", "in a sum"]) + let v = native_list_append(v, ["freondlice", "adv", "freondlice", "", "", "", "kindly"]) + let v = native_list_append(v, ["heonan forþ", "adv", "heonan forþ", "", "", "", "from now on"]) + let v = native_list_append(v, ["welwillendlice", "adv", "welwillendlice", "", "", "", "benevolently"]) + let v = native_list_append(v, ["underbæc", "adv", "underbæc", "", "", "", "backwards back"]) + let v = native_list_append(v, ["onbæc", "adv", "onbæc", "", "", "", "backwards back"]) + let v = native_list_append(v, ["wohlice", "adv", "wohlice", "", "", "", "wrongly unjustly"]) + let v = native_list_append(v, ["utanlandes", "adv", "utanlandes", "", "", "", "abroad"]) + let v = native_list_append(v, ["lengest", "adv", "lengest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["micele", "adv", "micele", "", "", "", "much"]) + let v = native_list_append(v, ["wyrs", "adv", "wyrs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyrrest", "adv", "wyrrest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hnesce", "adv", "hnesce", "", "", "", "softly"]) + let v = native_list_append(v, ["inweard", "adv", "inweard", "", "", "", "within"]) + let v = native_list_append(v, ["gehwæde", "adv", "gehwæde", "", "", "", "moderately scantily"]) + let v = native_list_append(v, ["getacniendlice", "adv", "getacniendlice", "", "", "", "figuratively"]) + let v = native_list_append(v, ["ufor", "adv", "ufor", "", "", "", "higher locally"]) + let v = native_list_append(v, ["uferor", "adv", "uferor", "", "", "", "higher"]) + let v = native_list_append(v, ["nallas", "adv", "nallas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wide and side", "adv", "wide and side", "", "", "", "far and wide"]) + let v = native_list_append(v, ["on fotum", "adv", "on fotum", "", "", "", "on foot"]) + let v = native_list_append(v, ["horsclice", "adv", "horsclice", "", "", "", "readily promptly"]) + let v = native_list_append(v, ["wælhreowlice", "adv", "wælhreowlice", "", "", "", "cruelly"]) + let v = native_list_append(v, ["micellice", "adv", "micellice", "", "", "", "greatly grandly splendidly"]) + let v = native_list_append(v, ["ær oþþe lator", "adv", "ær oþþe lator", "", "", "", "sooner or later"]) + let v = native_list_append(v, ["ealne dæg", "adv", "ealne dæg", "", "", "", "all day"]) + let v = native_list_append(v, ["ealle niht", "adv", "ealle niht", "", "", "", "all night"]) + let v = native_list_append(v, ["rihte", "adv", "rihte", "", "", "", "straight"]) + let v = native_list_append(v, ["nu rihte", "adv", "nu rihte", "", "", "", "right now"]) + let v = native_list_append(v, ["uprihte", "adv", "uprihte", "", "", "", "upright erect"]) + let v = native_list_append(v, ["swelce", "adv", "swelce", "", "", "", "also likewise"]) + let v = native_list_append(v, ["on idel", "adv", "on idel", "", "", "", "for nothing in"]) + let v = native_list_append(v, ["flocmælum", "adv", "flocmælum", "", "", "", "in flocks figuratively"]) + let v = native_list_append(v, ["siððan", "adv", "siððan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["untweolice", "adv", "untweolice", "", "", "", "undoubtedly"]) + let v = native_list_append(v, ["pislice", "adv", "pislice", "", "", "", "heavily"]) + let v = native_list_append(v, ["gæ", "adv", "gæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giese", "adv", "giese", "", "", "", "yes"]) + let v = native_list_append(v, ["getacnigendlice", "adv", "getacnigendlice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fierr", "adv", "fierr", "", "", "", "further"]) + let v = native_list_append(v, ["gador", "adv", "gador", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geostra", "adv", "geostra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giestran", "adv", "giestran", "", "", "", "yester- of the"]) + let v = native_list_append(v, ["simble", "adv", "simble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þriste", "adv", "þriste", "", "", "", "boldly confidently"]) + let v = native_list_append(v, ["simbel", "adv", "simbel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weas", "adv", "weas", "", "", "", "by chance by"]) + let v = native_list_append(v, ["openlice", "adv", "openlice", "", "", "", "openly publicly"]) + let v = native_list_append(v, ["swote", "adv", "swote", "", "", "", "sweetly"]) + let v = native_list_append(v, ["æghwær", "adv", "æghwær", "", "", "", "everywhere"]) + let v = native_list_append(v, ["firenlice", "adv", "firenlice", "", "", "", "vehemently rashy"]) + let v = native_list_append(v, ["firenum", "adv", "firenum", "", "", "", "excessively"]) + let v = native_list_append(v, ["hwer", "adv", "hwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hlutorlice", "adv", "hlutorlice", "", "", "", "clearly plainly simply"]) + let v = native_list_append(v, ["syferlice", "adv", "syferlice", "", "", "", "cleanly purely"]) + let v = native_list_append(v, ["ofostlice", "adv", "ofostlice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togean", "adv", "togean", "", "", "", "towards"]) + let v = native_list_append(v, ["þærtogeanes", "adv", "þærtogeanes", "", "", "", "opposite"]) + let v = native_list_append(v, ["toeacan", "adv", "toeacan", "", "", "", "in addition besides"]) + let v = native_list_append(v, ["þærtoeacan", "adv", "þærtoeacan", "", "", "", "besides moreover"]) + let v = native_list_append(v, ["togædre", "adv", "togædre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["genihtlice", "adv", "genihtlice", "", "", "", "abundantly"]) + let v = native_list_append(v, ["genihtsumlice", "adv", "genihtsumlice", "", "", "", "abundantly plentifully"]) + let v = native_list_append(v, ["nawiht", "adv", "nawiht", "", "", "", "not used to"]) + let v = native_list_append(v, ["staþolfæstlice", "adv", "staþolfæstlice", "", "", "", "steadfastly firmly"]) + let v = native_list_append(v, ["ealles", "adv", "ealles", "", "", "", "completely wholly entirely"]) + let v = native_list_append(v, ["gyta", "adv", "gyta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eaþmodlice", "adv", "eaþmodlice", "", "", "", "humbly"]) + let v = native_list_append(v, ["herigendlice", "adv", "herigendlice", "", "", "", "praiseworthily laudably"]) + let v = native_list_append(v, ["yfle", "adv", "yfle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["edniwe", "adv", "edniwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["edniwinga", "adv", "edniwinga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["edniwan", "adv", "edniwan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelimplice", "adv", "gelimplice", "", "", "", "fitly suitably"]) + let v = native_list_append(v, ["gewyrdelice", "adv", "gewyrdelice", "", "", "", "eloquently verbatim"]) + let v = native_list_append(v, ["on godes naman", "adv", "on godes naman", "", "", "", "alternative letter-case form"]) + let v = native_list_append(v, ["fæste", "adv", "fæste", "", "", "", "firmly fastly tightly"]) + let v = native_list_append(v, ["sceafmælum", "adv", "sceafmælum", "", "", "", "Sheaf by sheaf"]) + let v = native_list_append(v, ["seft", "adv", "seft", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["weninga", "adv", "weninga", "", "", "", "possibly perchance maybe"]) + let v = native_list_append(v, ["wenunga", "adv", "wenunga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niþre", "adv", "niþre", "", "", "", "down"]) + let v = native_list_append(v, ["unforbugendlice", "adv", "unforbugendlice", "", "", "", "inevitably"]) + let v = native_list_append(v, ["hwæt gif", "adv", "hwæt gif", "", "", "", "what if"]) + let v = native_list_append(v, ["miceles to", "adv", "miceles to", "", "", "", "way too far"]) + let v = native_list_append(v, ["mildheortlice", "adv", "mildheortlice", "", "", "", "kindly compassionately mercifully"]) + let v = native_list_append(v, ["nytlice", "adv", "nytlice", "", "", "", "usefully"]) + let v = native_list_append(v, ["unnytlice", "adv", "unnytlice", "", "", "", "uselessly"]) + let v = native_list_append(v, ["wierrest", "adv", "wierrest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["niewan", "adv", "niewan", "", "", "", "lately recently"]) + let v = native_list_append(v, ["niewlice", "adv", "niewlice", "", "", "", "recently lately"]) + let v = native_list_append(v, ["edniewe", "adv", "edniewe", "", "", "", "anew"]) + let v = native_list_append(v, ["edniewan", "adv", "edniewan", "", "", "", "anew"]) + let v = native_list_append(v, ["edniewinga", "adv", "edniewinga", "", "", "", "anew"]) + let v = native_list_append(v, ["hwærhwugu", "adv", "hwærhwugu", "", "", "", "somewhere"]) + let v = native_list_append(v, ["dæglanges", "adv", "dæglanges", "", "", "", "during one day"]) + let v = native_list_append(v, ["hiwcuþlice", "adv", "hiwcuþlice", "", "", "", "familiarly"]) + let v = native_list_append(v, ["on Godes naman", "adv", "on Godes naman", "", "", "", "in Gods name"]) + let v = native_list_append(v, ["hwæthwugu", "adv", "hwæthwugu", "", "", "", "somewhat"]) + let v = native_list_append(v, ["singallice", "adv", "singallice", "", "", "", "constantly continuously"]) + let v = native_list_append(v, ["ofermodlice", "adv", "ofermodlice", "", "", "", "proudly"]) + let v = native_list_append(v, ["þæder", "adv", "þæder", "", "", "", "there to that"]) + let v = native_list_append(v, ["hwæderhwugu", "adv", "hwæderhwugu", "", "", "", "somewhere to some"]) + let v = native_list_append(v, ["æt ham", "adv", "æt ham", "", "", "", "at home"]) + let v = native_list_append(v, ["forþ rihte", "adv", "forþ rihte", "", "", "", "straight ahead straight"]) + let v = native_list_append(v, ["hearde", "adv", "hearde", "", "", "", "severely greatly very"]) + let v = native_list_append(v, ["aninga", "adv", "aninga", "", "", "", "entirely altogether"]) + let v = native_list_append(v, ["on gemynd", "adv", "on gemynd", "", "", "", "in memory of"]) + let v = native_list_append(v, ["on weg", "adv", "on weg", "", "", "", "on the/ones way"]) + let v = native_list_append(v, ["ieþ", "adv", "ieþ", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["ieþest", "adv", "ieþest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["ænes", "adv", "ænes", "", "", "", "once"]) + let v = native_list_append(v, ["hlude", "adv", "hlude", "", "", "", "loudly"]) + let v = native_list_append(v, ["anwillice", "adv", "anwillice", "", "", "", "stubbornly"]) + let v = native_list_append(v, ["to morgne", "adv", "to morgne", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["manlice", "adv", "manlice", "", "", "", "courageously nobly in"]) + let v = native_list_append(v, ["anmodlice", "adv", "anmodlice", "", "", "", "unanimously"]) + let v = native_list_append(v, ["þria", "adv", "þria", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["færlice", "adv", "færlice", "", "", "", "suddenly"]) + let v = native_list_append(v, ["efn", "adv", "efn", "", "", "", "together"]) + let v = native_list_append(v, ["efnlice", "adv", "efnlice", "", "", "", "evenly"]) + let v = native_list_append(v, ["leofre", "adv", "leofre", "", "", "", "used to specify"]) + let v = native_list_append(v, ["fulneah", "adv", "fulneah", "", "", "", "almost"]) + let v = native_list_append(v, ["fierrest", "adv", "fierrest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["beorhte", "adv", "beorhte", "", "", "", "brightly"]) + let v = native_list_append(v, ["ealle hwile", "adv", "ealle hwile", "", "", "", "the whole time"]) + let v = native_list_append(v, ["nu", "conj", "nu", "", "", "", "now that"]) + let v = native_list_append(v, ["and", "conj", "and", "", "", "", "and"]) + let v = native_list_append(v, ["end", "conj", "end", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ah", "conj", "ah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ne", "conj", "ne", "", "", "", "or and not"]) + let v = native_list_append(v, ["na", "conj", "na", "", "", "", "not"]) + let v = native_list_append(v, ["ge", "conj", "ge", "", "", "", "and often doubled"]) + let v = native_list_append(v, ["ac", "conj", "ac", "", "", "", "but"]) + let v = native_list_append(v, ["⁊", "conj", "⁊", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["þe", "conj", "þe", "", "", "", "or correlated to"]) + let v = native_list_append(v, ["ond", "conj", "ond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["butan", "conj", "butan", "", "", "", "unless"]) + let v = native_list_append(v, ["sam", "conj", "sam", "", "", "", "whether or"]) + let v = native_list_append(v, ["hu", "conj", "hu", "", "", "", "how in all"]) + let v = native_list_append(v, ["ær", "conj", "ær", "", "", "", "before in negative"]) + let v = native_list_append(v, ["siþ", "conj", "siþ", "", "", "", "after"]) + let v = native_list_append(v, ["swa", "conj", "swa", "", "", "", "like as the"]) + let v = native_list_append(v, ["þæt", "conj", "þæt", "", "", "", "that"]) + let v = native_list_append(v, ["þæs", "conj", "þæs", "", "", "", "as because"]) + let v = native_list_append(v, ["þy", "conj", "þy", "", "", "", "for the reason"]) + let v = native_list_append(v, ["þon", "conj", "þon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þa", "conj", "þa", "", "", "", "when since because"]) + let v = native_list_append(v, ["eala", "conj", "eala", "", "", "", "if only"]) + let v = native_list_append(v, ["gif", "conj", "gif", "", "", "", "if"]) + let v = native_list_append(v, ["oþ", "conj", "oþ", "", "", "", "until"]) + let v = native_list_append(v, ["þonne", "conj", "þonne", "", "", "", "than"]) + let v = native_list_append(v, ["hwæþer", "conj", "hwæþer", "", "", "", "whether"]) + let v = native_list_append(v, ["oþþe", "conj", "oþþe", "", "", "", "or"]) + let v = native_list_append(v, ["þeah", "conj", "þeah", "", "", "", "though notwithstanding that"]) + let v = native_list_append(v, ["oc", "conj", "oc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["siþþan", "conj", "siþþan", "", "", "", "after since"]) + let v = native_list_append(v, ["þenden", "conj", "þenden", "", "", "", "meanwhile while"]) + let v = native_list_append(v, ["syþþan", "conj", "syþþan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["oþþæt", "conj", "oþþæt", "", "", "", "until"]) + let v = native_list_append(v, ["þæs þe", "conj", "þæs þe", "", "", "", "as to the"]) + let v = native_list_append(v, ["swilce", "conj", "swilce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swylce", "conj", "swylce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buton", "conj", "buton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ł", "conj", "ł", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["ealswa", "conj", "ealswa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eallswa", "conj", "eallswa", "", "", "", "as just as"]) + let v = native_list_append(v, ["þanne", "conj", "þanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þænne", "conj", "þænne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oððe", "conj", "oððe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["næs", "conj", "næs", "", "", "", "not"]) + let v = native_list_append(v, ["oþþon", "conj", "oþþon", "", "", "", "or either"]) + let v = native_list_append(v, ["ða", "conj", "ða", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nymþe", "conj", "nymþe", "", "", "", "unless"]) + let v = native_list_append(v, ["nefne", "conj", "nefne", "", "", "", "unless"]) + let v = native_list_append(v, ["soþlice", "conj", "soþlice", "", "", "", "now then for"]) + let v = native_list_append(v, ["þy læs þe", "conj", "þy læs þe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["for þon þe", "conj", "for þon þe", "", "", "", "because"]) + let v = native_list_append(v, ["þa hwile þe", "conj", "þa hwile þe", "", "", "", "while"]) + let v = native_list_append(v, ["swelce", "conj", "swelce", "", "", "", "like"]) + let v = native_list_append(v, ["siððan", "conj", "siððan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["syððan", "conj", "syððan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nemne", "conj", "nemne", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þætte", "conj", "þætte", "", "", "", "that"]) + let v = native_list_append(v, ["þy læs", "conj", "þy læs", "", "", "", "so that ..."]) + let v = native_list_append(v, ["na þæt", "conj", "na þæt", "", "", "", "not that +"]) + let v = native_list_append(v, ["forþy", "conj", "forþy", "", "", "", "For that because"]) + let v = native_list_append(v, ["swa swa", "conj", "swa swa", "", "", "", "just as"]) + let v = native_list_append(v, ["gelice", "conj", "gelice", "", "", "", "in the same"]) + let v = native_list_append(v, ["nahwæþer", "conj", "nahwæþer", "", "", "", "neither"]) + let v = native_list_append(v, ["ær þon þe", "conj", "ær þon þe", "", "", "", "before"]) + let v = native_list_append(v, ["ᚪᚾᛞ", "conj", "ᚪᚾᛞ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᛖᚾᛞ", "conj", "ᛖᚾᛞ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["mid þy", "conj", "mid þy", "", "", "", "by that"]) + let v = native_list_append(v, ["forþon", "conj", "forþon", "", "", "", "for that for"]) + let v = native_list_append(v, ["eþþa", "conj", "eþþa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gyf", "conj", "gyf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forðon", "conj", "forðon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðonne", "conj", "ðonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forþan", "conj", "forþan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forþam", "conj", "forþam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æfter þam þe", "conj", "æfter þam þe", "", "", "", "after"]) + let v = native_list_append(v, ["oþ þæt", "conj", "oþ þæt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forþamþe", "conj", "forþamþe", "", "", "", "because"]) + let v = native_list_append(v, ["næfne", "conj", "næfne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oð", "conj", "oð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["forþæm", "conj", "forþæm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mid þy þe", "conj", "mid þy þe", "", "", "", "when since seeing"]) + let v = native_list_append(v, ["oðþe", "conj", "oðþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oþðe", "conj", "oþðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forþi", "conj", "forþi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forðy", "conj", "forðy", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["othte", "conj", "othte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oðþo", "conj", "oðþo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forðæm", "conj", "forðæm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["for ðæm", "conj", "for ðæm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forðan", "conj", "forðan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðeah", "conj", "ðeah", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["swe swe", "conj", "swe swe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["man", "pron", "man", "", "", "", "one you indefinite"]) + let v = native_list_append(v, ["inc", "pron", "inc", "", "", "", "accusative/dative of ġit"]) + let v = native_list_append(v, ["his", "pron", "his", "", "", "", "genitive of hē"]) + let v = native_list_append(v, ["hi", "pron", "hi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["us", "pron", "us", "", "", "", "accusative/dative of wē"]) + let v = native_list_append(v, ["we", "pron", "we", "", "", "", "we nominative plural"]) + let v = native_list_append(v, ["he", "pron", "he", "", "", "", "he"]) + let v = native_list_append(v, ["me", "pron", "me", "", "", "", "accusative/dative of iċ"]) + let v = native_list_append(v, ["him", "pron", "him", "", "", "", "dative of hē"]) + let v = native_list_append(v, ["hit", "pron", "hit", "", "", "", "it"]) + let v = native_list_append(v, ["sic", "pron", "sic", "", "", "", "Reflexive pronoun of"]) + let v = native_list_append(v, ["sin", "pron", "sin", "", "", "", "his her its"]) + let v = native_list_append(v, ["self", "pron", "self", "", "", "", "self oneself personally"]) + let v = native_list_append(v, ["ge", "pron", "ge", "", "", "", "you plural nominative"]) + let v = native_list_append(v, ["se", "pron", "se", "", "", "", "that"]) + let v = native_list_append(v, ["sine", "pron", "sine", "", "", "", "inflection of sīn"]) + let v = native_list_append(v, ["user", "pron", "user", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sum", "pron", "sum", "", "", "", "some"]) + let v = native_list_append(v, ["wit", "pron", "wit", "", "", "", "we two"]) + let v = native_list_append(v, ["wise", "pron", "wise", "", "", "", "inflection of wīs"]) + let v = native_list_append(v, ["hwy", "pron", "hwy", "", "", "", "instrumental of hwā"]) + let v = native_list_append(v, ["þe", "pron", "þe", "", "", "", "accusative/dative of þū"]) + let v = native_list_append(v, ["hire", "pron", "hire", "", "", "", "genitive/dative of hēo"]) + let v = native_list_append(v, ["nan", "pron", "nan", "", "", "", "no one nobody"]) + let v = native_list_append(v, ["hie", "pron", "hie", "", "", "", "they"]) + let v = native_list_append(v, ["git", "pron", "git", "", "", "", "you two"]) + let v = native_list_append(v, ["mec", "pron", "mec", "", "", "", "accusative of iċ"]) + let v = native_list_append(v, ["min", "pron", "min", "", "", "", "genitive of iċ"]) + let v = native_list_append(v, ["sig", "pron", "sig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sina", "pron", "sina", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["hwæt", "pron", "hwæt", "", "", "", "what"]) + let v = native_list_append(v, ["ic", "pron", "ic", "", "", "", "I"]) + let v = native_list_append(v, ["swa", "pron", "swa", "", "", "", "that of that"]) + let v = native_list_append(v, ["seo", "pron", "seo", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["þæt", "pron", "þæt", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["þone", "pron", "þone", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þæs", "pron", "þæs", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["þæm", "pron", "þæm", "", "", "", "inflection of sē"]) + let v = native_list_append(v, ["þy", "pron", "þy", "", "", "", "instrumental masculine/neuter singular"]) + let v = native_list_append(v, ["þon", "pron", "þon", "", "", "", "instrumental masculine/neuter singular"]) + let v = native_list_append(v, ["þa", "pron", "þa", "", "", "", "inflection of sē"]) + let v = native_list_append(v, ["þes", "pron", "þes", "", "", "", "this"]) + let v = native_list_append(v, ["þeos", "pron", "þeos", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["þis", "pron", "þis", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["þisses", "pron", "þisses", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["þissum", "pron", "þissum", "", "", "", "inflection of þes"]) + let v = native_list_append(v, ["þas", "pron", "þas", "", "", "", "inflection of þes"]) + let v = native_list_append(v, ["unc", "pron", "unc", "", "", "", "accusative/dative of wit"]) + let v = native_list_append(v, ["þu", "pron", "þu", "", "", "", "you thou nominative"]) + let v = native_list_append(v, ["eow", "pron", "eow", "", "", "", "accusative/dative of ġē"]) + let v = native_list_append(v, ["alles", "pron", "alles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hia", "pron", "hia", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nic", "pron", "nic", "", "", "", "not I not"]) + let v = native_list_append(v, ["sinne", "pron", "sinne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["æghwilc", "pron", "æghwilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hine", "pron", "hine", "", "", "", "accusative of hē"]) + let v = native_list_append(v, ["hiu", "pron", "hiu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gehwa", "pron", "gehwa", "", "", "", "each every everyone"]) + let v = native_list_append(v, ["hig", "pron", "hig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eall", "pron", "eall", "", "", "", "everything"]) + let v = native_list_append(v, ["ænig", "pron", "ænig", "", "", "", "any"]) + let v = native_list_append(v, ["eower", "pron", "eower", "", "", "", "genitive of ġē"]) + let v = native_list_append(v, ["hwa", "pron", "hwa", "", "", "", "who interrogative"]) + let v = native_list_append(v, ["hwæþer", "pron", "hwæþer", "", "", "", "who or what"]) + let v = native_list_append(v, ["hwilc", "pron", "hwilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilca", "pron", "ilca", "", "", "", "the same"]) + let v = native_list_append(v, ["ure", "pron", "ure", "", "", "", "genitive of wē"]) + let v = native_list_append(v, ["manig", "pron", "manig", "", "", "", "many"]) + let v = native_list_append(v, ["owiht", "pron", "owiht", "", "", "", "aught anything"]) + let v = native_list_append(v, ["awiht", "pron", "awiht", "", "", "", "anything something"]) + let v = native_list_append(v, ["swilc", "pron", "swilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ih", "pron", "ih", "", "", "", "I"]) + let v = native_list_append(v, ["þin", "pron", "þin", "", "", "", "genitive of þū"]) + let v = native_list_append(v, ["fela", "pron", "fela", "", "", "", "many"]) + let v = native_list_append(v, ["hy", "pron", "hy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suma", "pron", "suma", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["sume", "pron", "sume", "", "", "", "inflection of sum"]) + let v = native_list_append(v, ["sumes", "pron", "sumes", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["sumu", "pron", "sumu", "", "", "", "inflection of sum"]) + let v = native_list_append(v, ["ussa", "pron", "ussa", "", "", "", "inflection of usser"]) + let v = native_list_append(v, ["sines", "pron", "sines", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["æghwæþer", "pron", "æghwæþer", "", "", "", "each of two"]) + let v = native_list_append(v, ["gehwone", "pron", "gehwone", "", "", "", "accusative of ġehwā"]) + let v = native_list_append(v, ["þara", "pron", "þara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gehwære", "pron", "gehwære", "", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["hyne", "pron", "hyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nane", "pron", "nane", "", "", "", "inflection of nān"]) + let v = native_list_append(v, ["hys", "pron", "hys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heo", "pron", "heo", "", "", "", "she"]) + let v = native_list_append(v, ["hio", "pron", "hio", "", "", "", "she"]) + let v = native_list_append(v, ["swæþer", "pron", "swæþer", "", "", "", "whichever of two"]) + let v = native_list_append(v, ["eom", "pron", "eom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["incer", "pron", "incer", "", "", "", "genitive of ġit"]) + let v = native_list_append(v, ["hiera", "pron", "hiera", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiere", "pron", "hiere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uncer", "pron", "uncer", "", "", "", "genitive of wit"]) + let v = native_list_append(v, ["usic", "pron", "usic", "", "", "", "accusative of wē"]) + let v = native_list_append(v, ["hyra", "pron", "hyra", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nanne", "pron", "nanne", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["uncit", "pron", "uncit", "", "", "", "us two accusative"]) + let v = native_list_append(v, ["incit", "pron", "incit", "", "", "", "you two accusative"]) + let v = native_list_append(v, ["þec", "pron", "þec", "", "", "", "accusative of þū"]) + let v = native_list_append(v, ["eowic", "pron", "eowic", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["þæge", "pron", "þæge", "", "", "", "they these those"]) + let v = native_list_append(v, ["aht", "pron", "aht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hym", "pron", "hym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nænne", "pron", "nænne", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["eal", "pron", "eal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sylf", "pron", "sylf", "", "", "", "self oneself"]) + let v = native_list_append(v, ["nanum", "pron", "nanum", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["sinum", "pron", "sinum", "", "", "", "inflection of sīn"]) + let v = native_list_append(v, ["iow", "pron", "iow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꝥ", "pron", "ꝥ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["sylfum", "pron", "sylfum", "", "", "", "dative singular/plural of"]) + let v = native_list_append(v, ["hwon", "pron", "hwon", "", "", "", "instrumental of hwā"]) + let v = native_list_append(v, ["feolo", "pron", "feolo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elra", "pron", "elra", "", "", "", "another"]) + let v = native_list_append(v, ["þeo", "pron", "þeo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðæt", "pron", "ðæt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gehwylc", "pron", "gehwylc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minre", "pron", "minre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["nih", "pron", "nih", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þane", "pron", "þane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hira", "pron", "hira", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heora", "pron", "heora", "", "", "", "genitive of hīe"]) + let v = native_list_append(v, ["þys", "pron", "þys", "", "", "", "instrumental masculine/neuter singular"]) + let v = native_list_append(v, ["feola", "pron", "feola", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nanes", "pron", "nanes", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["nænig", "pron", "nænig", "", "", "", "no one none"]) + let v = native_list_append(v, ["hwam", "pron", "hwam", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hwæm", "pron", "hwæm", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hwæs", "pron", "hwæs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hwone", "pron", "hwone", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hwæne", "pron", "hwæne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ða", "pron", "ða", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þære", "pron", "þære", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þæra", "pron", "þæra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["huuæt", "pron", "huuæt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["seolf", "pron", "seolf", "", "", "", "self"]) + let v = native_list_append(v, ["swylc", "pron", "swylc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swelc", "pron", "swelc", "", "", "", "such like that"]) + let v = native_list_append(v, ["þi", "pron", "þi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usse", "pron", "usse", "", "", "", "inflection of usser"]) + let v = native_list_append(v, ["gehwæs", "pron", "gehwæs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sumra", "pron", "sumra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þam", "pron", "þam", "", "", "", "inflection of sē"]) + let v = native_list_append(v, ["heom", "pron", "heom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nan mann", "pron", "nan mann", "", "", "", "no one nobody"]) + let v = native_list_append(v, ["hwelca", "pron", "hwelca", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["þisne", "pron", "þisne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þisse", "pron", "þisse", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þisre", "pron", "þisre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þisra", "pron", "þisra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["nicc", "pron", "nicc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["æghwylc", "pron", "æghwylc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwelc", "pron", "hwelc", "", "", "", "which one"]) + let v = native_list_append(v, ["nawiht", "pron", "nawiht", "", "", "", "nothing"]) + let v = native_list_append(v, ["hwylc", "pron", "hwylc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwet", "pron", "hwet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðu", "pron", "ðu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þætte", "pron", "þætte", "", "", "", "what that which"]) + let v = native_list_append(v, ["hwæthwugu", "pron", "hwæthwugu", "", "", "", "something"]) + let v = native_list_append(v, ["sinra", "pron", "sinra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["sumum", "pron", "sumum", "", "", "", "inflection of sum"]) + let v = native_list_append(v, ["þio", "pron", "þio", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þyslic", "pron", "þyslic", "", "", "", "like this this"]) + let v = native_list_append(v, ["æghwelc", "pron", "æghwelc", "", "", "", "each one"]) + let v = native_list_append(v, ["gehwelc", "pron", "gehwelc", "", "", "", "each one"]) + let v = native_list_append(v, ["usær", "pron", "usær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ægþer", "pron", "ægþer", "", "", "", "each of two"]) + let v = native_list_append(v, ["nan þing", "pron", "nan þing", "", "", "", "nothing"]) + let v = native_list_append(v, ["heara", "pron", "heara", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þissa", "pron", "þissa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þisera", "pron", "þisera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þeossa", "pron", "þeossa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þisum", "pron", "þisum", "", "", "", "inflection of þēs"]) + let v = native_list_append(v, ["þysum", "pron", "þysum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þyssum", "pron", "þyssum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þeosum", "pron", "þeosum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þeossum", "pron", "þeossum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þises", "pron", "þises", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["iower", "pron", "iower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þios", "pron", "þios", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["usses", "pron", "usses", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["usser", "pron", "usser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sinre", "pron", "sinre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["æniges", "pron", "æniges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["ænigum", "pron", "ænigum", "", "", "", "inflection of ǣniġ"]) + let v = native_list_append(v, ["ængum", "pron", "ængum", "", "", "", "inflection of ǣniġ"]) + let v = native_list_append(v, ["ænges", "pron", "ænges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["ænigre", "pron", "ænigre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["ænigo", "pron", "ænigo", "", "", "", "inflection of ǣniġ"]) + let v = native_list_append(v, ["ænigu", "pron", "ænigu", "", "", "", "inflection of ǣniġ"]) + let v = native_list_append(v, ["ænigra", "pron", "ænigra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["ænigne", "pron", "ænigne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["ænige", "pron", "ænige", "", "", "", "inflection of ǣniġ"]) + let v = native_list_append(v, ["gehwæþer", "pron", "gehwæþer", "", "", "", "both"]) + let v = native_list_append(v, ["awihte", "pron", "awihte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["awihtes", "pron", "awihtes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nawihte", "pron", "nawihte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["nawihtes", "pron", "nawihtes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gehwilc", "pron", "gehwilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gehwelce", "pron", "gehwelce", "", "", "", "inflection of ġehwelċ"]) + let v = native_list_append(v, ["gehwilce", "pron", "gehwilce", "", "", "", "inflection of ġehwilċ"]) + let v = native_list_append(v, ["gehwelcre", "pron", "gehwelcre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["gehwelcum", "pron", "gehwelcum", "", "", "", "inflection of ġehwelċ"]) + let v = native_list_append(v, ["gehwilcre", "pron", "gehwilcre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["gehwilcum", "pron", "gehwilcum", "", "", "", "inflection of ġehwilċ"]) + let v = native_list_append(v, ["gehwilces", "pron", "gehwilces", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["gehwilcan", "pron", "gehwilcan", "", "", "", "inflection of ġehwilċ"]) + let v = native_list_append(v, ["gehwilcne", "pron", "gehwilcne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["gehwilcra", "pron", "gehwilcra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["ylca", "pron", "ylca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nanwiht", "pron", "nanwiht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æghwa", "pron", "æghwa", "", "", "", "everyone everything"]) + let v = native_list_append(v, ["nahwæþer", "pron", "nahwæþer", "", "", "", "neither"]) + let v = native_list_append(v, ["naþor", "pron", "naþor", "", "", "", "contraction of nāhwæþer"]) + let v = native_list_append(v, ["naþer", "pron", "naþer", "", "", "", "contraction of nāhwæþer"]) + let v = native_list_append(v, ["ᛁᚳ", "pron", "ᛁᚳ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᚦᚫᛏ", "pron", "ᚦᚫᛏ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᚻᛁᚫ", "pron", "ᚻᛁᚫ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["þislic", "pron", "þislic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þyllic", "pron", "þyllic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["edwihte", "pron", "edwihte", "", "", "", "anything something"]) + let v = native_list_append(v, ["ilce", "pron", "ilce", "", "", "", "inflection of ilca"]) + let v = native_list_append(v, ["ilcra", "pron", "ilcra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["ilcan", "pron", "ilcan", "", "", "", "inflection of ilca"]) + let v = native_list_append(v, ["ilcum", "pron", "ilcum", "", "", "", "dative/instrumental masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["naþing", "pron", "naþing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monig", "pron", "monig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gehwylce", "pron", "gehwylce", "", "", "", "inflection of ġehwylċ"]) + let v = native_list_append(v, ["ylcan", "pron", "ylcan", "", "", "", "inflection of ylca"]) + let v = native_list_append(v, ["aþor", "pron", "aþor", "", "", "", "either"]) + let v = native_list_append(v, ["ahwæþer", "pron", "ahwæþer", "", "", "", "anyone anything"]) + let v = native_list_append(v, ["awþer", "pron", "awþer", "", "", "", "either"]) + let v = native_list_append(v, ["sumne", "pron", "sumne", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["þyssera", "pron", "þyssera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gehwam", "pron", "gehwam", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hwelcre", "pron", "hwelcre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["hwelcne", "pron", "hwelcne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["hwelce", "pron", "hwelce", "", "", "", "inflection of hwelċ"]) + let v = native_list_append(v, ["hwelces", "pron", "hwelces", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["hwelcum", "pron", "hwelcum", "", "", "", "inflection of hwelċ"]) + let v = native_list_append(v, ["selfne", "pron", "selfne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["selfum", "pron", "selfum", "", "", "", "inflection of self"]) + let v = native_list_append(v, ["selfra", "pron", "selfra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["selfre", "pron", "selfre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["selfan", "pron", "selfan", "", "", "", "inflection of self"]) + let v = native_list_append(v, ["selfes", "pron", "selfes", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["æghwæs", "pron", "æghwæs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["æghwam", "pron", "æghwam", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["æghwæt", "pron", "æghwæt", "", "", "", "whatever"]) + let v = native_list_append(v, ["gehwæt", "pron", "gehwæt", "", "", "", "neuter nominative/accusative of"]) + let v = native_list_append(v, ["gehwæm", "pron", "gehwæm", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sumre", "pron", "sumre", "", "", "", "feminine genitive/dative/instrumental singular"]) + let v = native_list_append(v, ["hwelcra", "pron", "hwelcra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["sielf", "pron", "sielf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiore", "pron", "hiore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᛗᛖᚴ", "pron", "ᛗᛖᚴ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᛁᚴ", "pron", "ᛁᚴ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["huæt", "pron", "huæt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hiora", "pron", "hiora", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylce", "pron", "ylce", "", "", "", "inflection of ylca"]) + let v = native_list_append(v, ["nanre", "pron", "nanre", "", "", "", "feminine genitive/dative/instrumental singular"]) + let v = native_list_append(v, ["ðam", "pron", "ðam", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðara", "pron", "ðara", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðæs", "pron", "ðæs", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðæm", "pron", "ðæm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sylfne", "pron", "sylfne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["sylfes", "pron", "sylfes", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["sylfe", "pron", "sylfe", "", "", "", "inflection of sylf"]) + let v = native_list_append(v, ["auht", "pron", "auht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sylfa", "pron", "sylfa", "", "", "", "inflection of sylf"]) + let v = native_list_append(v, ["ðære", "pron", "ðære", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þæne", "pron", "þæne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðæne", "pron", "ðæne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æghwæm", "pron", "æghwæm", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["æghwone", "pron", "æghwone", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["aþer", "pron", "aþer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sylfre", "pron", "sylfre", "", "", "", "strong genitive/dative/instrumental feminine"]) + let v = native_list_append(v, ["sylfra", "pron", "sylfra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["þage", "pron", "þage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þysses", "pron", "þysses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwylce", "pron", "hwylce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gehwylcra", "pron", "gehwylcra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["gehwylcne", "pron", "gehwylcne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["gehwylcum", "pron", "gehwylcum", "", "", "", "inflection of ġehwylċ"]) + let v = native_list_append(v, ["þylc", "pron", "þylc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þylic", "pron", "þylic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þissere", "pron", "þissere", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þæ", "pron", "þæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swelcne", "pron", "swelcne", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["swelces", "pron", "swelces", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["swelcum", "pron", "swelcum", "", "", "", "inflection of swelċ"]) + let v = native_list_append(v, ["swelcra", "pron", "swelcra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["swelca", "pron", "swelca", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["ægðer", "pron", "ægðer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilcena", "pron", "ilcena", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["æghwon", "pron", "æghwon", "", "", "", "instrumental of ǣġhwā"]) + let v = native_list_append(v, ["æghwy", "pron", "æghwy", "", "", "", "instrumental of ǣġhwā"]) + let v = native_list_append(v, ["ðec", "pron", "ðec", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["usserne", "pron", "usserne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["ussum", "pron", "ussum", "", "", "", "inflection of usser"]) + let v = native_list_append(v, ["userra", "pron", "userra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["ussera", "pron", "ussera", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["hwylcne", "pron", "hwylcne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["hwylcum", "pron", "hwylcum", "", "", "", "inflection of hwylċ"]) + let v = native_list_append(v, ["hwylcre", "pron", "hwylcre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["hwylcra", "pron", "hwylcra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["hwylces", "pron", "hwylces", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["ðy", "pron", "ðy", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["swylcne", "pron", "swylcne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["swylcum", "pron", "swylcum", "", "", "", "inflection of swylċ"]) + let v = native_list_append(v, ["swylcra", "pron", "swylcra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["swilcum", "pron", "swilcum", "", "", "", "inflection of swilċ"]) + let v = native_list_append(v, ["swilcne", "pron", "swilcne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["swylca", "pron", "swylca", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["swilca", "pron", "swilca", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["an", "det", "an", "", "", "", "a certain"]) + let v = native_list_append(v, ["mine", "det", "mine", "", "", "", "inflection of mīn"]) + let v = native_list_append(v, ["ba", "det", "ba", "", "", "", "neuter/feminine nominative/accusative singular"]) + let v = native_list_append(v, ["bam", "det", "bam", "", "", "", "dative/instrumental masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["se", "det", "se", "", "", "", "the"]) + let v = native_list_append(v, ["bu", "det", "bu", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["þe", "det", "þe", "", "", "", "the he late"]) + let v = native_list_append(v, ["nan", "det", "nan", "", "", "", "no not a"]) + let v = native_list_append(v, ["min", "det", "min", "", "", "", "my"]) + let v = native_list_append(v, ["ura", "det", "ura", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["urne", "det", "urne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["mines", "det", "mines", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["minne", "det", "minne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["seo", "det", "seo", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["þæt", "det", "þæt", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["þone", "det", "þone", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þæs", "det", "þæs", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["þæm", "det", "þæm", "", "", "", "inflection of se"]) + let v = native_list_append(v, ["þy", "det", "þy", "", "", "", "instrumental masculine/neuter singular"]) + let v = native_list_append(v, ["þon", "det", "þon", "", "", "", "instrumental masculine/neuter singular"]) + let v = native_list_append(v, ["þa", "det", "þa", "", "", "", "inflection of se"]) + let v = native_list_append(v, ["þes", "det", "þes", "", "", "", "this"]) + let v = native_list_append(v, ["þeos", "det", "þeos", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["þis", "det", "þis", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["þisses", "det", "þisses", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["þissum", "det", "þissum", "", "", "", "inflection of þes"]) + let v = native_list_append(v, ["þas", "det", "þas", "", "", "", "inflection of þes"]) + let v = native_list_append(v, ["minum", "det", "minum", "", "", "", "inflection of mīn"]) + let v = native_list_append(v, ["eower", "det", "eower", "", "", "", "your plural"]) + let v = native_list_append(v, ["ure", "det", "ure", "", "", "", "our"]) + let v = native_list_append(v, ["þin", "det", "þin", "", "", "", "your singular thy"]) + let v = native_list_append(v, ["bega", "det", "bega", "", "", "", "genitive of beġen"]) + let v = native_list_append(v, ["enig", "det", "enig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["urum", "det", "urum", "", "", "", "inflection of ūre"]) + let v = native_list_append(v, ["þara", "det", "þara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["incer", "det", "incer", "", "", "", "your referring to"]) + let v = native_list_append(v, ["uncer", "det", "uncer", "", "", "", "our referring to"]) + let v = native_list_append(v, ["ures", "det", "ures", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["urra", "det", "urra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["incerne", "det", "incerne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þane", "det", "þane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þys", "det", "þys", "", "", "", "instrumental masculine/neuter singular"]) + let v = native_list_append(v, ["enges", "det", "enges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["sio", "det", "sio", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["begen", "det", "begen", "", "", "", "both"]) + let v = native_list_append(v, ["þære", "det", "þære", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þæra", "det", "þæra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["begra", "det", "begra", "", "", "", "genitive of beġen"]) + let v = native_list_append(v, ["þinne", "det", "þinne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þi", "det", "þi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þine", "det", "þine", "", "", "", "inflection of þīn"]) + let v = native_list_append(v, ["þam", "det", "þam", "", "", "", "inflection of sē"]) + let v = native_list_append(v, ["þisne", "det", "þisne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þisse", "det", "þisse", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þisre", "det", "þisre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þisra", "det", "þisra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hwelc", "det", "hwelc", "", "", "", "which"]) + let v = native_list_append(v, ["engum", "det", "engum", "", "", "", "inflection of ēniġ"]) + let v = native_list_append(v, ["incre", "det", "incre", "", "", "", "inflection of incer"]) + let v = native_list_append(v, ["nawþer", "det", "nawþer", "", "", "", "neither"]) + let v = native_list_append(v, ["þissa", "det", "þissa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þisera", "det", "þisera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þeossa", "det", "þeossa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þisum", "det", "þisum", "", "", "", "inflection of þēs"]) + let v = native_list_append(v, ["þysum", "det", "þysum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þyssum", "det", "þyssum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þeosum", "det", "þeosum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þeossum", "det", "þeossum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þises", "det", "þises", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["þios", "det", "þios", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["minra", "det", "minra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["þines", "det", "þines", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["þinum", "det", "þinum", "", "", "", "inflection of þīn"]) + let v = native_list_append(v, ["þinre", "det", "þinre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þina", "det", "þina", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["þinra", "det", "þinra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["hu micel", "det", "hu micel", "", "", "", "how much used"]) + let v = native_list_append(v, ["hu manig", "det", "hu manig", "", "", "", "how many used"]) + let v = native_list_append(v, ["hu fela", "det", "hu fela", "", "", "", "how many how"]) + let v = native_list_append(v, ["eowre", "det", "eowre", "", "", "", "inflection of ēower"]) + let v = native_list_append(v, ["eowru", "det", "eowru", "", "", "", "inflection of ēower"]) + let v = native_list_append(v, ["eoweres", "det", "eoweres", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["eowerre", "det", "eowerre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["eowerum", "det", "eowerum", "", "", "", "inflection of ēower"]) + let v = native_list_append(v, ["eowerra", "det", "eowerra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["eowerne", "det", "eowerne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["eowres", "det", "eowres", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["uncera", "det", "uncera", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["uncru", "det", "uncru", "", "", "", "inflection of uncer"]) + let v = native_list_append(v, ["uncres", "det", "uncres", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["uncerne", "det", "uncerne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["uncre", "det", "uncre", "", "", "", "inflection of uncer"]) + let v = native_list_append(v, ["uncerum", "det", "uncerum", "", "", "", "inflection of uncer"]) + let v = native_list_append(v, ["uncrum", "det", "uncrum", "", "", "", "inflection of uncer"]) + let v = native_list_append(v, ["eowrum", "det", "eowrum", "", "", "", "inflection of ēower"]) + let v = native_list_append(v, ["eowra", "det", "eowra", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["þyssera", "det", "þyssera", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bæm", "det", "bæm", "", "", "", "dative/instrumental masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["incrum", "det", "incrum", "", "", "", "inflection of incer"]) + let v = native_list_append(v, ["ᚦᛁᛋ", "det", "ᚦᛁᛋ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ðam", "det", "ðam", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðara", "det", "ðara", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðæs", "det", "ðæs", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðæm", "det", "ðæm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["eowere", "det", "eowere", "", "", "", "inflection of ēower"]) + let v = native_list_append(v, ["ðære", "det", "ðære", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þæne", "det", "þæne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðæne", "det", "ðæne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["userne", "det", "userne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["þysses", "det", "þysses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þissere", "det", "þissere", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["þæ", "det", "þæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eniges", "det", "eniges", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["enigum", "det", "enigum", "", "", "", "inflection of ēniġ"]) + let v = native_list_append(v, ["enigne", "det", "enigne", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["enigra", "det", "enigra", "", "", "", "strong/weak genitive masculine/feminine/neuter"]) + let v = native_list_append(v, ["þon̄", "det", "þon̄", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["ðin", "det", "ðin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ðinre", "det", "ðinre", "", "", "", "genitive/dative/instrumental feminine singular"]) + let v = native_list_append(v, ["ðine", "det", "ðine", "", "", "", "inflection of ðīn"]) + let v = native_list_append(v, ["ðina", "det", "ðina", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["ðinra", "det", "ðinra", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["ðines", "det", "ðines", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["ðinum", "det", "ðinum", "", "", "", "inflection of ðīn"]) + let v = native_list_append(v, ["ðinne", "det", "ðinne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["ðy", "det", "ðy", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þe", "particle", "þe", "", "", "", "that who which"]) + let v = native_list_append(v, ["ðe", "particle", "ðe", "", "", "", "alternative spelling of"]) + return v +} + +fn vocab_ang_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_ang_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-cop.el b/elp/src/vocabulary-cop.el new file mode 100644 index 0000000..3bd546a --- /dev/null +++ b/elp/src/vocabulary-cop.el @@ -0,0 +1,3159 @@ +// vocabulary-cop.el — Coptic vocabulary seed +// 3138 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 3138 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_cop_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["ϧⲁⲗⲕⲓⲛ", "noun", "ϧⲁⲗⲕⲓⲛ", "", "", "", "copper coin"]) + let v = native_list_append(v, ["ⲉⲙⲟⲩ", "noun", "ⲉⲙⲟⲟⲩⲉ (emooue)", "", "", "", "cat"]) + let v = native_list_append(v, ["ⲥⲁϫⲓ", "noun", "ⲥⲁϫⲓ", "", "", "", "word"]) + let v = native_list_append(v, ["ⲙⲱⲟⲩ", "noun", "ⲙⲱⲟⲩ", "", "", "", "water"]) + let v = native_list_append(v, ["ⲃⲉⲣⲉϭⲱⲟⲩⲧⲥ", "noun", "ⲃⲉⲣⲉϭⲱⲟⲩⲧⲥ", "", "", "", "chariot"]) + let v = native_list_append(v, ["ⲓⲁⲣⲟ", "noun", "ⲓⲁⲣⲱⲟⲩ", "", "", "", "river"]) + let v = native_list_append(v, ["ϭⲟⲓⲥ", "noun", "ϭⲓⲥⲉⲩ", "", "", "", "master"]) + let v = native_list_append(v, ["ϩⲙⲟⲧ", "noun", "ϩⲙⲟⲧ", "", "", "", "grace"]) + let v = native_list_append(v, ["ⲓⲱⲧ", "noun", "ⲓⲟϯ", "", "", "", "father"]) + let v = native_list_append(v, ["ⲧⲱⲃⲉ", "noun", "ⲧⲱⲃⲉ", "", "", "", "brick adobe"]) + let v = native_list_append(v, ["ⲏⲣⲡ", "noun", "ⲏⲣⲡ̄", "", "", "", "wine"]) + let v = native_list_append(v, ["ϩⲧⲟ", "noun", "ϩⲧⲱⲱⲣ", "", "", "", "horse"]) + let v = native_list_append(v, ["ⲙⲟⲩⲓ", "noun", "ⲙⲱⲟⲩⲓ", "", "", "", "lion"]) + let v = native_list_append(v, ["ⲙⲥⲁϩ", "noun", "ⲙⲥⲟⲟϩ", "", "", "", "crocodile"]) + let v = native_list_append(v, ["ⲧⲟⲟⲩ", "noun", "ⲧⲟⲩⲓⲏ", "", "", "", "mountain"]) + let v = native_list_append(v, ["ⲁϧⲱⲙ", "noun", "ⲁϧⲱⲙ", "", "", "", "eagle"]) + let v = native_list_append(v, ["ⲁⲧⲟⲟⲩⲓ", "noun", "ⲁⲧⲟⲟⲩⲓ", "", "", "", "dawn morning"]) + let v = native_list_append(v, ["ⲉϩⲟⲟⲩ", "noun", "ⲉϩⲟⲟⲩ", "", "", "", "day"]) + let v = native_list_append(v, ["ⲣⲟⲩϩⲓ", "noun", "ⲣⲟⲩϩⲓ", "", "", "", "evening"]) + let v = native_list_append(v, ["ⲉϫⲱⲣϩ", "noun", "ⲉϫⲱⲣϩ", "", "", "", "night"]) + let v = native_list_append(v, ["ⲣⲱⲙⲓ", "noun", "ⲣⲱⲙⲓ", "", "", "", "human human being"]) + let v = native_list_append(v, ["ⲙⲉⲛⲣⲓⲧ", "noun", "ⲙⲉⲛⲣⲁϯ", "", "", "", "beloved friend"]) + let v = native_list_append(v, ["ⲁⲛϣⲁϣϥ", "noun", "ⲁⲛϣⲁϣϥ", "", "", "", "weekonly attested in"]) + let v = native_list_append(v, ["ⲣⲁⲛ", "noun", "ⲣⲁⲛ", "", "", "", "name."]) + let v = native_list_append(v, ["ⲛⲏⲃ", "noun", "ⲛⲏⲃ", "", "", "", "lord"]) + let v = native_list_append(v, ["ⲙⲁⲛϣⲁⲓ", "noun", "ⲙⲁⲛϣⲁⲓ", "", "", "", "East"]) + let v = native_list_append(v, ["ⲉⲙⲉⲛⲧ", "noun", "ⲉⲙⲉⲛⲧ", "", "", "", "West"]) + let v = native_list_append(v, ["ⲣⲉϥϯⲥⲃⲱ", "noun", "ⲣⲉϥϯⲥⲃⲱ", "", "", "", "teacher"]) + let v = native_list_append(v, ["ⲙⲟⲟⲩ", "noun", "ⲙⲟⲟⲩ", "", "", "", "water"]) + let v = native_list_append(v, ["ⲙⲁⲩ", "noun", "ⲙⲁⲩ", "", "", "", "mother"]) + let v = native_list_append(v, ["ⲙⲁⲟⲩ", "noun", "ⲙⲁⲟⲩ", "", "", "", "water"]) + let v = native_list_append(v, ["ⲛⲟⲩϯ", "noun", "ⲛⲑⲏⲣ", "", "", "", "a god"]) + let v = native_list_append(v, ["ⲛⲟⲩⲛⲧⲉ", "noun", "ⲛⲟⲩⲛⲧⲉ", "", "", "", "god"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲉ", "noun", "ⲉⲛⲧⲏⲣ", "", "", "", "god"]) + let v = native_list_append(v, ["ϣⲉⲣⲓ", "noun", "ϣⲉⲣⲓ", "", "", "", "girl"]) + let v = native_list_append(v, ["ϣⲉⲉⲣⲉ", "noun", "ϣⲉⲉⲣⲉ", "", "", "", "daughter"]) + let v = native_list_append(v, ["ϣⲱⲡⲓ", "noun", "ϣⲱⲡⲓ", "", "", "", "cucumber fruit"]) + let v = native_list_append(v, ["ϣⲱⲡⲉ", "noun", "ϣⲱⲡⲉ", "", "", "", "cucumber fruit"]) + let v = native_list_append(v, ["ϩⲉⲓ", "noun", "ϩⲉⲓ", "", "", "", "husband"]) + let v = native_list_append(v, ["ϩⲁⲓ", "noun", "ϩⲁⲓ", "", "", "", "husband"]) + let v = native_list_append(v, ["ⲏⲗⲡ", "noun", "ⲏⲗⲡ", "", "", "", "wine"]) + let v = native_list_append(v, ["ⲕⲏⲙⲉ", "noun", "ⲕⲏⲙⲉ", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["ⲭⲏⲙⲓ", "noun", "ⲭⲏⲙⲓ", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["ϫⲁϥ", "noun", "ϫⲁϥ", "", "", "", "frost"]) + let v = native_list_append(v, ["ϫⲁⲃ", "noun", "ϫⲁⲃ", "", "", "", "frost"]) + let v = native_list_append(v, ["ⲭⲓⲱⲛ", "noun", "ⲭⲓⲱⲛ", "", "", "", "snow ice"]) + let v = native_list_append(v, ["ϩⲣⲟϣ", "noun", "ϩⲣⲟϣ", "", "", "", "coldness"]) + let v = native_list_append(v, ["ⲁⲗⲟϫ", "noun", "ⲁⲗⲟϫ", "", "", "", "thigh"]) + let v = native_list_append(v, ["ⲁⲗⲟϭ", "noun", "ⲁⲗⲟϭ", "", "", "", "thigh"]) + let v = native_list_append(v, ["ⲙⲏⲣⲟⲥ", "noun", "ⲙⲏⲣⲟⲥ", "", "", "", "thigh"]) + let v = native_list_append(v, ["ⲥϩⲓⲙⲉ", "noun", "ϩⲓⲟⲙⲉ", "", "", "", "woman"]) + let v = native_list_append(v, ["ϩⲓⲙⲉ", "noun", "ϩⲓⲟⲙⲉ", "", "", "", "wife"]) + let v = native_list_append(v, ["ⲉⲓⲱⲧ", "noun", "ⲉⲓⲟⲧⲉ (eiote)", "", "", "", "father"]) + let v = native_list_append(v, ["ⲙⲁⲁⲩ", "noun", "ⲙⲁⲁⲩ", "", "", "", "mother"]) + let v = native_list_append(v, ["ⲓⲟϩ", "noun", "ⲓⲟϩ", "", "", "", "the moon."]) + let v = native_list_append(v, ["ⲟⲟϩ", "noun", "ⲟⲟϩ", "", "", "", "moon"]) + let v = native_list_append(v, ["ϩⲣⲏⲣⲓ", "noun", "ϩⲣⲏⲣⲓ", "", "", "", "flower"]) + let v = native_list_append(v, ["ϩⲣⲏⲣⲉ", "noun", "ϩⲣⲏⲣⲉ", "", "", "", "flower"]) + let v = native_list_append(v, ["ϩⲗⲏⲣⲓ", "noun", "ϩⲗⲏⲣⲓ", "", "", "", "flower"]) + let v = native_list_append(v, ["ⲁϩⲓ", "noun", "ⲁϩⲓ", "", "", "", "lifetime lifespan"]) + let v = native_list_append(v, ["ⲁϩⲉ", "noun", "ⲁϩⲉ", "", "", "", "lifetime lifespan"]) + let v = native_list_append(v, ["ⲙⲟⲩⲉ", "noun", "ⲙⲟⲩⲉ", "", "", "", "island"]) + let v = native_list_append(v, ["ⲛⲏⲥⲟⲥ", "noun", "ⲛⲏⲥⲟⲥ", "", "", "", "island"]) + let v = native_list_append(v, ["ⲃⲁⲗ", "noun", "ⲃⲁⲗ", "", "", "", "eye."]) + let v = native_list_append(v, ["ⲓⲉⲣ", "noun", "ⲓⲉⲣ", "", "", "", "eye"]) + let v = native_list_append(v, ["ⲉⲓⲉⲣ", "noun", "ⲉⲓⲉⲣ", "", "", "", "eye"]) + let v = native_list_append(v, ["ⲓⲁⲧ", "noun", "ⲓⲁⲧ", "", "", "", "eye"]) + let v = native_list_append(v, ["ⲉⲓⲁⲧ", "noun", "ⲉⲓⲁⲧ", "", "", "", "eye"]) + let v = native_list_append(v, ["ⲁⲫⲉ", "noun", "ⲁⲫⲏⲟⲩⲓ", "", "", "", "anatomy head part"]) + let v = native_list_append(v, ["ⲁⲡⲉ", "noun", "ⲁⲡⲏⲩⲉ", "", "", "", "head"]) + let v = native_list_append(v, ["ϫⲁϫ", "noun", "ϫⲁϫ", "", "", "", "head"]) + let v = native_list_append(v, ["ϫⲱ", "noun", "ϫⲱⲟⲩⲓ (jōoui)", "", "", "", "song singing"]) + let v = native_list_append(v, ["ⲕⲁⲣⲁ", "noun", "ⲕⲁⲣⲁ", "", "", "", "head"]) + let v = native_list_append(v, ["ⲕⲉⲫⲁⲗⲏ", "noun", "ⲕⲉⲫⲁⲗⲏ", "", "", "", "head"]) + let v = native_list_append(v, ["ⲑⲱⲟⲩⲓ", "noun", "ⲑⲱⲟⲩⲓ", "", "", "", "shoe sandal"]) + let v = native_list_append(v, ["ⲧⲟⲟⲩⲉ", "noun", "ⲧⲟⲟⲩⲉ", "", "", "", "sandal shoe"]) + let v = native_list_append(v, ["ϧⲏⲧ", "noun", "ϧⲏⲧ", "", "", "", "north"]) + let v = native_list_append(v, ["ϩⲏⲧ", "noun", "ϩⲉⲧⲉ (hete)", "", "", "", "heart mind"]) + let v = native_list_append(v, ["ⲙⲟⲩⲉⲓ", "noun", "ⲙⲟⲩⲉⲓ", "", "", "", "lion"]) + let v = native_list_append(v, ["ⲗⲁⲃⲟ", "noun", "ⲗⲁⲃⲟ", "", "", "", "lion"]) + let v = native_list_append(v, ["ⲃⲉⲗⲑⲱⲛ", "noun", "ⲃⲉⲗⲑⲱⲛ", "", "", "", "lion"]) + let v = native_list_append(v, ["ⲗⲉⲱⲛ", "noun", "ⲗⲉⲱⲛ", "", "", "", "lion"]) + let v = native_list_append(v, ["ⲙⲁϣϫ", "noun", "ⲙⲁϣϫ", "", "", "", "ear"]) + let v = native_list_append(v, ["ⲙⲁⲁϫⲉ", "noun", "ⲙⲁⲁϫⲉ", "", "", "", "ear"]) + let v = native_list_append(v, ["ⲣⲣⲟ", "noun", "ⲣ̄ⲣⲱⲟⲩ", "", "", "", "king"]) + let v = native_list_append(v, ["ⲟⲩⲣⲟ", "noun", "ⲟⲩⲣⲱⲟⲩ", "", "", "", "king"]) + let v = native_list_append(v, ["ⲃⲁⲥⲓⲗⲉⲩⲥ", "noun", "ⲃⲁⲥⲓⲗⲉⲩⲥ", "", "", "", "king"]) + let v = native_list_append(v, ["ⲉⲛ", "noun", "ⲉⲛ", "", "", "", "baboon"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁϭⲱⲟⲩϣ", "noun", "ⲥⲁⲣⲁϭⲱⲟⲩϣ", "", "", "", "hare"]) + let v = native_list_append(v, ["ⲧⲟⲡⲟⲥ", "noun", "ⲧⲟⲡⲟⲥ", "", "", "", "shrine chapel"]) + let v = native_list_append(v, ["ⲣⲣⲱ", "noun", "ⲣ̄ⲣⲱⲟⲩ", "", "", "", "queen"]) + let v = native_list_append(v, ["ⲣⲟ", "noun", "ⲣⲱⲟⲩ", "", "", "", "mouth"]) + let v = native_list_append(v, ["ⲕⲁⲓⲥⲁⲣ", "noun", "ⲕⲁⲓⲥⲁⲣ", "", "", "", "emperor Caesar"]) + let v = native_list_append(v, ["ϫⲟⲓ", "noun", "ⲉϫⲏⲩ (ejēu)", "", "", "", "boat ship"]) + let v = native_list_append(v, ["ϫⲱⲱⲙⲉ", "noun", "ϫⲱⲱⲙⲉ", "", "", "", "scroll book"]) + let v = native_list_append(v, ["ⲙⲟⲛⲁⲭⲟⲥ", "noun", "ⲙⲟⲛⲁⲭⲟⲥ", "", "", "", "monk"]) + let v = native_list_append(v, ["ⲁⲡⲟⲧ", "noun", "ⲁⲡⲏⲧ", "", "", "", "cup drinking vessel"]) + let v = native_list_append(v, ["ϩⲱⲧⲃ", "noun", "ϩⲱⲧⲃ", "", "", "", "murder"]) + let v = native_list_append(v, ["ⲣⲓⲣ", "noun", "ⲣⲓⲣ", "", "", "", "pig"]) + let v = native_list_append(v, ["ⲣⲁⲁⲣ", "noun", "ⲣⲁⲁⲣ", "", "", "", "piglet"]) + let v = native_list_append(v, ["ⲗⲓⲗ", "noun", "ⲗⲓⲗ", "", "", "", "pig"]) + let v = native_list_append(v, ["ϭⲁⲙⲟⲩⲗ", "noun", "ϭⲁⲙⲁⲩⲗⲉ", "", "", "", "camel"]) + let v = native_list_append(v, ["ⲟⲩⲱⲙ", "noun", "ⲟⲩⲱⲙ", "", "", "", "the activity of"]) + let v = native_list_append(v, ["ⲣⲱⲙⲉ", "noun", "ⲣⲱⲙⲉ", "", "", "", "human person"]) + let v = native_list_append(v, ["ⲫⲁⲣⲁⲱ", "noun", "ⲫⲁⲣⲁⲱ", "", "", "", "Pharaoh"]) + let v = native_list_append(v, ["ⲉⲣⲏⲙⲟⲥ", "noun", "ⲉⲣⲏⲙⲟⲥ", "", "", "", "desert"]) + let v = native_list_append(v, ["ϫⲁⲓⲉ", "noun", "ϫⲁⲓⲉ", "", "", "", "desert"]) + let v = native_list_append(v, ["ⲁⲣⲭⲏ", "noun", "ⲁⲣⲭⲏ", "", "", "", "beginning start origin"]) + let v = native_list_append(v, ["ϩⲟⲟⲩⲧ", "noun", "ϩⲟⲟⲩⲧ", "", "", "", "man male human"]) + let v = native_list_append(v, ["ⲉⲩⲁⲅⲅⲉⲗⲓⲟⲛ", "noun", "ⲉⲩⲁⲅⲅⲉⲗⲓⲟⲛ", "", "", "", "gospel"]) + let v = native_list_append(v, ["ⲡⲣⲟⲫⲏⲧⲏⲥ", "noun", "ⲡⲣⲟⲫⲏⲧⲏⲥ", "", "", "", "prophet"]) + let v = native_list_append(v, ["ⲁⲅⲅⲉⲗⲟⲥ", "noun", "ⲁⲅⲅⲉⲗⲟⲥ", "", "", "", "messenger"]) + let v = native_list_append(v, ["ⲃⲁⲡⲧⲓⲥⲙⲁ", "noun", "ⲃⲁⲡⲧⲓⲥⲙⲁ", "", "", "", "baptism"]) + let v = native_list_append(v, ["ⲑⲁⲗⲁⲥⲥⲁ", "noun", "ⲑⲁⲗⲁⲥⲥⲁ", "", "", "", "sea"]) + let v = native_list_append(v, ["ϩⲁⲗⲁⲥⲥⲁ", "noun", "ϩⲁⲗⲁⲥⲥⲁ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲙⲉⲧⲁⲛⲟⲓⲁ", "noun", "ⲙⲉⲧⲁⲛⲟⲓⲁ", "", "", "", "repentance contrition"]) + let v = native_list_append(v, ["ⲕⲱ ⲉⲃⲟⲗ", "noun", "ⲕⲱ ⲉⲃⲟⲗ", "", "", "", "forgiveness pardon"]) + let v = native_list_append(v, ["ⲛⲟⲃⲉ", "noun", "ⲛⲟⲃⲉ", "", "", "", "sin transgression"]) + let v = native_list_append(v, ["ⲭⲱⲣⲁ", "noun", "ⲭⲱⲣⲁ", "", "", "", "region territory"]) + let v = native_list_append(v, ["ⲉⲃⲓⲱ", "noun", "ⲉⲃⲓⲱ", "", "", "", "honey"]) + let v = native_list_append(v, ["ϯⲡⲉ", "noun", "ϯⲡⲉ", "", "", "", "taste"]) + let v = native_list_append(v, ["ϣϫⲉ", "noun", "ϣϫⲏⲩ", "", "", "", "locust"]) + let v = native_list_append(v, ["ϥⲛⲧ", "noun", "ϥⲛⲧ", "", "", "", "worm"]) + let v = native_list_append(v, ["ⲱⲛⲉ", "noun", "ⲱⲛⲉ", "", "", "", "stone"]) + let v = native_list_append(v, ["ⲙⲁⲧⲟⲓ", "noun", "ⲙⲁⲧⲟⲓ", "", "", "", "soldier"]) + let v = native_list_append(v, ["ⲙⲁⲧⲟⲉⲓ", "noun", "ⲙⲁⲧⲟⲉⲓ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲥⲱⲛⲉ", "noun", "ⲥⲱⲛⲉ", "", "", "", "sister"]) + let v = native_list_append(v, ["ⲥⲱⲛⲓ", "noun", "ⲥⲛⲏⲟⲩ", "", "", "", "sister"]) + let v = native_list_append(v, ["ⲥⲟⲛ", "noun", "ⲥⲛⲏⲩ (snēu)", "", "", "", "brother"]) + let v = native_list_append(v, ["ⲟⲉⲓⲕ", "noun", "ⲟⲉⲓⲕ", "", "", "", "a loaf of"]) + let v = native_list_append(v, ["ⲯⲩⲭⲏ", "noun", "ⲯⲩⲭⲱⲟⲩⲓ (psukhōoui)", "", "", "", "soul"]) + let v = native_list_append(v, ["ⲱⲛϩ", "noun", "ⲱⲛϩ", "", "", "", "life state of"]) + let v = native_list_append(v, ["ϯⲙⲉ", "noun", "ⲧⲙⲉ", "", "", "", "village"]) + let v = native_list_append(v, ["ⲁⲣⲝ", "noun", "ⲁⲣⲝ", "", "", "", "bear"]) + let v = native_list_append(v, ["ⲥⲱⲙⲁ", "noun", "ⲥⲱⲙⲁ", "", "", "", "body"]) + let v = native_list_append(v, ["ⲇⲁⲓⲙⲟⲛⲓⲟⲛ", "noun", "ⲇⲁⲓⲙⲟⲛⲓⲟⲛ", "", "", "", "demon"]) + let v = native_list_append(v, ["ⲉⲃⲟⲧ", "noun", "ⲉⲃⲟⲧ", "", "", "", "month"]) + let v = native_list_append(v, ["ⲱⲛⲓ", "noun", "ⲱⲛⲓ", "", "", "", "stone"]) + let v = native_list_append(v, ["ⲙⲉ", "noun", "ⲙⲉ", "", "", "", "truth justice"]) + let v = native_list_append(v, ["ⲙⲉⲓ", "noun", "ⲙⲉⲓ", "", "", "", "truth"]) + let v = native_list_append(v, ["ⲑⲏⲣⲓⲟⲛ", "noun", "ⲑⲏⲣⲓⲟⲛ", "", "", "", "beast wild animal"]) + let v = native_list_append(v, ["ϩⲉⲑⲛⲟⲥ", "noun", "ϩⲉⲑⲛⲟⲥ", "", "", "", "people"]) + let v = native_list_append(v, ["ⲣⲟⲙⲡⲉ", "noun", "ⲣⲙⲡⲟⲟⲩⲉ", "", "", "", "year"]) + let v = native_list_append(v, ["ⲟⲩⲛⲟⲩ", "noun", "ⲟⲩⲛⲟⲟⲩⲉ", "", "", "", "hour"]) + let v = native_list_append(v, ["ⲕⲱϩⲧ", "noun", "ⲕⲱϩⲧ", "", "", "", "fire"]) + let v = native_list_append(v, ["ϩⲱⲃ", "noun", "ϩⲃⲏⲩⲉ (hbēue)", "", "", "", "thing work matter"]) + let v = native_list_append(v, ["ⲧⲱⲣⲉ", "noun", "ⲧⲱⲣⲉ", "", "", "", "hand"]) + let v = native_list_append(v, ["ⲛⲟⲩⲃ", "noun", "ⲛⲟⲩⲃ", "", "", "", "gold"]) + let v = native_list_append(v, ["ⲟⲩϣⲏ", "noun", "ⲟⲩϣⲟⲟⲩⲉ", "", "", "", "night"]) + let v = native_list_append(v, ["ϩⲟⲟⲩ", "noun", "ϩⲟⲟⲩ", "", "", "", "day"]) + let v = native_list_append(v, ["ⲥⲛⲟϥ", "noun", "ⲥⲛⲟϥ", "", "", "", "blood"]) + let v = native_list_append(v, ["ⲗⲁ", "noun", "ⲗⲱⲟⲩ", "", "", "", "mouth"]) + let v = native_list_append(v, ["ⲗⲉⲛ", "noun", "ⲗⲉⲛ", "", "", "", "name"]) + let v = native_list_append(v, ["ⲕⲁϩ", "noun", "ⲕⲁϩ", "", "", "", "Earth as opposed"]) + let v = native_list_append(v, ["ⲙⲛⲧⲉⲣⲟ", "noun", "ⲙⲛⲧⲉⲣⲱⲟⲩ", "", "", "", "kingdom territory ruled"]) + let v = native_list_append(v, ["ϫⲟⲉⲓⲥ", "noun", "ϫⲓⲥⲟⲟⲩⲉ", "", "", "", "master"]) + let v = native_list_append(v, ["ⲧⲣⲁⲡⲉⲍⲁ", "noun", "ⲧⲣⲁⲡⲉⲍⲁ", "", "", "", "table"]) + let v = native_list_append(v, ["ϩⲁⲗⲩⲥⲓⲥ", "noun", "ϩⲁⲗⲩⲥⲓⲥ", "", "", "", "chain"]) + let v = native_list_append(v, ["ⲅⲣⲁⲫⲏ", "noun", "ⲅⲣⲁⲫⲏ", "", "", "", "Scripture Holy Writ"]) + let v = native_list_append(v, ["ⲛⲟⲙⲟⲥ", "noun", "ⲛⲟⲙⲟⲥ", "", "", "", "law"]) + let v = native_list_append(v, ["ⲉⲛⲧⲟⲗⲏ", "noun", "ⲉⲛⲧⲟⲗⲏ", "", "", "", "commandment particularly one"]) + let v = native_list_append(v, ["ⲑⲩⲥⲓⲁ", "noun", "ⲑⲩⲥⲓⲁ", "", "", "", "sacrifice"]) + let v = native_list_append(v, ["ϣⲁϫⲉ", "noun", "ϣⲁϫⲉ", "", "", "", "word saying"]) + let v = native_list_append(v, ["ⲙⲏⲏϣⲉ", "noun", "ⲙⲏⲏϣⲉ", "", "", "", "multitude crowd throng"]) + let v = native_list_append(v, ["ⲕⲁⲣⲡⲟⲥ", "noun", "ⲕⲁⲣⲡⲟⲥ", "", "", "", "fruit crop produce"]) + let v = native_list_append(v, ["ⲕⲟⲥⲙⲟⲥ", "noun", "ⲕⲟⲥⲙⲟⲥ", "", "", "", "world universe"]) + let v = native_list_append(v, ["ⲉⲡⲓⲥⲧⲟⲗⲏ", "noun", "ⲉⲡⲓⲥⲧⲟⲗⲟⲟⲩⲉ", "", "", "", "letter epistle"]) + let v = native_list_append(v, ["ϭⲟⲙ", "noun", "ϭⲟⲙ", "", "", "", "power might"]) + let v = native_list_append(v, ["ⲃⲛⲛⲉ", "noun", "ⲃⲛⲛⲉ", "", "", "", "date fruit"]) + let v = native_list_append(v, ["ϩⲁⲧ", "noun", "ϩⲁⲧ", "", "", "", "silver"]) + let v = native_list_append(v, ["ⲗⲱⲙⲓ", "noun", "ⲗⲱⲙⲓ", "", "", "", "human"]) + let v = native_list_append(v, ["ⲁⲡⲟⲗⲗⲱⲛ", "noun", "ⲁⲡⲟⲗⲗⲱⲛ", "", "", "", "Apollo the Greco-Roman"]) + let v = native_list_append(v, ["ⲁⲣⲧⲉⲙⲓⲥ", "noun", "ⲁⲣⲧⲉⲙⲓⲥ", "", "", "", "Artemis"]) + let v = native_list_append(v, ["ⲁⲅⲁⲡⲏ", "noun", "ⲁⲅⲁⲡⲏ", "", "", "", "love altruism agape."]) + let v = native_list_append(v, ["ⲙⲁⲅⲟⲥ", "noun", "ⲙⲁⲅⲟⲥ", "", "", "", "mage magician sorcerer"]) + let v = native_list_append(v, ["ⲙⲛⲧⲙⲁⲅⲟⲥ", "noun", "ⲙⲛⲧⲙⲁⲅⲟⲥ", "", "", "", "magic magical powers"]) + let v = native_list_append(v, ["ⲙⲁⲅⲓⲁ", "noun", "ⲙⲁⲅⲓⲁ", "", "", "", "magic magic feats"]) + let v = native_list_append(v, ["ϩⲏⲅⲉⲙⲱⲛ", "noun", "ϩⲏⲅⲉⲙⲱⲛ", "", "", "", "hegemon leader rank"]) + let v = native_list_append(v, ["ⲁⲗⲟⲩ", "noun", "ⲁⲗⲟⲟⲩⲉ", "", "", "", "pupil eye"]) + let v = native_list_append(v, ["ⲕⲟⲩⲙⲡⲟⲥ", "noun", "ⲕⲟⲩⲙⲡⲟⲥ", "", "", "", "strap whip"]) + let v = native_list_append(v, ["ⲥⲧⲟⲁ", "noun", "ⲥⲧⲟⲁ", "", "", "", "portico stoa colonnade"]) + let v = native_list_append(v, ["ⲉⲝⲟⲩⲥⲓⲁ", "noun", "ⲉⲝⲟⲩⲥⲓⲁ", "", "", "", "authority power"]) + let v = native_list_append(v, ["ⲥⲱⲧⲏⲣ", "noun", "ⲥⲱⲧⲏⲣ", "", "", "", "Saviour Savior."]) + let v = native_list_append(v, ["ⲭⲣⲓⲥⲧⲓⲁⲛⲟⲥ", "noun", "ⲭⲣⲓⲥⲧⲓⲁⲛⲟⲥ", "", "", "", "Christian adherent of"]) + let v = native_list_append(v, ["ⲯⲁⲗⲙⲟⲥ", "noun", "ⲯⲁⲗⲙⲟⲥ", "", "", "", "psalm chapter from"]) + let v = native_list_append(v, ["ⲡⲁⲣⲑⲉⲛⲟⲥ", "noun", "ⲡⲁⲣⲑⲉⲛⲟⲥ", "", "", "", "virgin"]) + let v = native_list_append(v, ["ⲙⲛⲧⲙⲟⲛⲁⲭⲟⲥ", "noun", "ⲙⲛⲧⲙⲟⲛⲁⲭⲟⲥ", "", "", "", "monastery"]) + let v = native_list_append(v, ["ⲥⲧⲣⲁⲧⲏⲗⲁⲧⲏⲥ", "noun", "ⲥⲧⲣⲁⲧⲏⲗⲁⲧⲏⲥ", "", "", "", "commander general warlord"]) + let v = native_list_append(v, ["ⲕⲉⲥⲧⲱⲛⲁⲣⲓⲟⲥ", "noun", "ⲕⲉⲥⲧⲱⲛⲁⲣⲓⲟⲥ", "", "", "", "junior torturer executioner"]) + let v = native_list_append(v, ["ⲇⲟⲩⲝ", "noun", "ⲇⲟⲩⲝ", "", "", "", "office holder"]) + let v = native_list_append(v, ["ⲃⲁⲥⲁⲛⲟⲥ", "noun", "ⲃⲁⲥⲁⲛⲟⲥ", "", "", "", "torture torment"]) + let v = native_list_append(v, ["ϩⲗⲗⲟ", "noun", "ϩⲗ̄ⲗⲟⲓ", "", "", "", "old man elder"]) + let v = native_list_append(v, ["ⲇⲣⲁⲕⲱⲛ", "noun", "ⲇⲣⲁⲕⲱⲛ", "", "", "", "dragon serpent"]) + let v = native_list_append(v, ["ϩⲱⲣ", "noun", "ϩⲱⲣ", "", "", "", "Horus the Egyptian"]) + let v = native_list_append(v, ["ⲅⲁⲃⲣⲓⲏⲗ", "noun", "ⲅⲁⲃⲣⲓⲏⲗ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲙⲓⲭⲁⲏⲗ", "noun", "ⲙⲓⲭⲁⲏⲗ", "", "", "", "Michael archangel"]) + let v = native_list_append(v, ["ϩⲏⲣⲱⲇⲏⲥ", "noun", "ϩⲏⲣⲱⲇⲏⲥ", "", "", "", "Herod name of"]) + let v = native_list_append(v, ["ⲧⲩⲣⲁⲛⲟⲥ", "noun", "ⲧⲩⲣⲁⲛⲟⲥ", "", "", "", "tyrant despot"]) + let v = native_list_append(v, ["ⲭⲣⲓⲥⲧⲟⲥ", "noun", "ⲭⲣⲓⲥⲧⲟⲥ", "", "", "", "Christ"]) + let v = native_list_append(v, ["ⲥⲏϥⲉ", "noun", "ⲥⲏϥⲉ", "", "", "", "sword"]) + let v = native_list_append(v, ["ⲭⲁⲗⲕⲓⲟⲛ", "noun", "ⲭⲁⲗⲕⲓⲟⲛ", "", "", "", "copper piece copper"]) + let v = native_list_append(v, ["ⲭⲁⲗⲭⲓⲛ", "noun", "ⲭⲁⲗⲭⲓⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲓⲏⲥⲟⲩⲥ", "noun", "ⲓⲏⲥⲟⲩⲥ", "", "", "", "Jesus of Nazareth"]) + let v = native_list_append(v, ["ⲥⲟⲫⲓⲁ", "noun", "ⲥⲟⲫⲓⲁ", "", "", "", "wisdom"]) + let v = native_list_append(v, ["ⲥⲟⲫⲟⲥ", "noun", "ⲥⲟⲫⲟⲥ", "", "", "", "wise man"]) + let v = native_list_append(v, ["ⲫⲩⲗⲏ", "noun", "ⲫⲩⲗⲏ", "", "", "", "tribe"]) + let v = native_list_append(v, ["ⲥⲡⲉⲣⲙⲁ", "noun", "ⲥⲡⲉⲣⲙⲁ", "", "", "", "sperm semen"]) + let v = native_list_append(v, ["ϭⲟⲗ", "noun", "ϭⲟⲗ", "", "", "", "lie falsehood"]) + let v = native_list_append(v, ["ϭⲁⲗ", "noun", "ϭⲁⲗ", "", "", "", "lie falsehood"]) + let v = native_list_append(v, ["ⲗⲁⲟⲥ", "noun", "ⲗⲁⲟⲥ", "", "", "", "people"]) + let v = native_list_append(v, ["ⲉⲓⲇⲱⲗⲟⲛ", "noun", "ⲉⲓⲇⲱⲗⲟⲛ", "", "", "", "idol image or"]) + let v = native_list_append(v, ["ⲑⲣⲟⲛⲟⲥ", "noun", "ⲑⲣⲟⲛⲟⲥ", "", "", "", "throne seat of"]) + let v = native_list_append(v, ["ⲉⲣⲏⲙⲓⲁ", "noun", "ⲉⲣⲏⲙⲓⲁ", "", "", "", "desert"]) + let v = native_list_append(v, ["ⲁⲅⲟⲣⲁ", "noun", "ⲁⲅⲟⲣⲁ", "", "", "", "agora marketplace and"]) + let v = native_list_append(v, ["ⲉⲡⲓⲥⲕⲟⲡⲟⲥ", "noun", "ⲉⲡⲓⲥⲕⲟⲡⲟⲥ", "", "", "", "overseer inspector"]) + let v = native_list_append(v, ["ⲅⲛⲱⲥⲓⲥ", "noun", "ⲅⲛⲱⲥⲓⲥ", "", "", "", "gnosis"]) + let v = native_list_append(v, ["ⲁⲣⲉⲧⲏ", "noun", "ⲁⲣⲉⲧⲏ", "", "", "", "virtue good quality"]) + let v = native_list_append(v, ["ⲕⲣⲓⲥⲓⲥ", "noun", "ⲕⲣⲓⲥⲓⲥ", "", "", "", "verdict judgement"]) + let v = native_list_append(v, ["ⲕⲟⲗⲁⲥⲓⲥ", "noun", "ⲕⲟⲗⲁⲥⲓⲥ", "", "", "", "punishment torment"]) + let v = native_list_append(v, ["ⲡⲁⲧⲣⲓⲁⲣⲭⲏⲥ", "noun", "ⲡⲁⲧⲣⲓⲁⲣⲭⲏⲥ", "", "", "", "patriarch biblical characters"]) + let v = native_list_append(v, ["ⲟⲓⲕⲟⲩⲙⲉⲛⲏ", "noun", "ⲟⲓⲕⲟⲩⲙⲉⲛⲏ", "", "", "", "world"]) + let v = native_list_append(v, ["ⲉⲓⲣⲏⲛⲏ", "noun", "ⲉⲓⲣⲏⲛⲏ", "", "", "", "peace"]) + let v = native_list_append(v, ["ⲍⲱⲟⲛ", "noun", "ⲍⲱⲟⲛ", "", "", "", "animal"]) + let v = native_list_append(v, ["ⲕⲣⲓⲧⲏⲥ", "noun", "ⲕⲣⲓⲧⲏⲥ", "", "", "", "judge"]) + let v = native_list_append(v, ["ⲛⲟⲙⲓⲥⲙⲁ", "noun", "ⲛⲟⲙⲓⲥⲙⲁ", "", "", "", "nomisma solidus"]) + let v = native_list_append(v, ["ϩⲟⲗⲟⲕⲟⲧⲧⲓⲛⲟⲥ", "noun", "ϩⲟⲗⲟⲕⲟⲧⲧⲓⲛⲟⲥ", "", "", "", "nomisma solidus"]) + let v = native_list_append(v, ["ⲡⲟⲗⲓⲥ", "noun", "ⲡⲟⲗⲓⲥ", "", "", "", "city polis"]) + let v = native_list_append(v, ["ⲥⲓⲟⲩⲣ", "noun", "ⲥⲓⲟⲩⲣ", "", "", "", "eunuch"]) + let v = native_list_append(v, ["ⲥⲓⲟⲩ", "noun", "ⲥⲓⲟⲩ", "", "", "", "star"]) + let v = native_list_append(v, ["ⲉⲕⲕⲗⲏⲥⲓⲁ", "noun", "ⲉⲕⲕⲗⲏⲥⲓⲁ", "", "", "", "church building"]) + let v = native_list_append(v, ["ⲙⲟⲛⲁⲭⲏ", "noun", "ⲙⲟⲛⲁⲭⲏ", "", "", "", "nun"]) + let v = native_list_append(v, ["ⲥⲩⲛⲁⲝⲓⲥ", "noun", "ⲥⲩⲛⲁⲝⲓⲥ", "", "", "", "mass"]) + let v = native_list_append(v, ["ⲁⲡⲟⲥⲧⲟⲗⲟⲥ", "noun", "ⲁⲡⲟⲥⲧⲟⲗⲟⲥ", "", "", "", "apostle Apostle"]) + let v = native_list_append(v, ["ⲫⲩⲥⲓⲥ", "noun", "ⲫⲩⲥⲓⲥ", "", "", "", "nature identity"]) + let v = native_list_append(v, ["ⲧⲓⲙⲱⲣⲓⲁ", "noun", "ⲧⲓⲙⲱⲣⲓⲁ", "", "", "", "punishment torture"]) + let v = native_list_append(v, ["ϯⲙⲱⲣⲓⲁ", "noun", "ϯⲙⲱⲣⲓⲁ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲗⲓⲃⲁⲛⲟⲥ", "noun", "ⲗⲓⲃⲁⲛⲟⲥ", "", "", "", "incense"]) + let v = native_list_append(v, ["ⲭⲁⲣⲓⲥ", "noun", "ⲭⲁⲣⲓⲥ", "", "", "", "favour grace"]) + let v = native_list_append(v, ["ⲭⲁⲣⲓⲥⲙⲁ", "noun", "ⲭⲁⲣⲓⲥⲙⲁ", "", "", "", "gift token of"]) + let v = native_list_append(v, ["ⲡⲉ", "noun", "ⲡⲏⲩⲉ", "", "", "", "heaven sky"]) + let v = native_list_append(v, ["ⲥⲁⲃⲃⲁⲧⲟⲛ", "noun", "ⲥⲁⲃⲃⲁⲧⲟⲛ", "", "", "", "Sabbath"]) + let v = native_list_append(v, ["ⲥⲁⲣⲝ", "noun", "ⲥⲁⲣⲝ", "", "", "", "flesh body"]) + let v = native_list_append(v, ["ⲫⲓⲗⲟⲥⲟⲫⲟⲥ", "noun", "ⲫⲓⲗⲟⲥⲟⲫⲟⲥ", "", "", "", "philosopher"]) + let v = native_list_append(v, ["ϩⲉⲗⲡⲓⲥ", "noun", "ϩⲉⲗⲡⲓⲥ", "", "", "", "hope expectation"]) + let v = native_list_append(v, ["ⲁⲩⲅⲟⲩⲥⲧⲟⲥ", "noun", "ⲁⲩⲅⲟⲩⲥⲧⲟⲥ", "", "", "", "August."]) + let v = native_list_append(v, ["ϩⲩⲗⲏ", "noun", "ϩⲩⲗⲏ", "", "", "", "wood timber"]) + let v = native_list_append(v, ["ⲙⲁⲑⲏⲧⲏⲥ", "noun", "ⲙⲁⲑⲏⲧⲏⲥ", "", "", "", "disciple"]) + let v = native_list_append(v, ["ⲉⲡⲓⲑⲩⲙⲓⲁ", "noun", "ⲉⲡⲓⲑⲩⲙⲓⲁ", "", "", "", "desire yearning"]) + let v = native_list_append(v, ["ⲧⲃⲧ", "noun", "ⲧⲃ̄ⲧ", "", "", "", "fish"]) + let v = native_list_append(v, ["ⲇⲁⲓⲙⲱⲛⲓⲟⲛ", "noun", "ⲇⲁⲓⲙⲱⲛⲓⲟⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲇⲉⲙⲟⲛⲓⲟⲛ", "noun", "ⲇⲉⲙⲟⲛⲓⲟⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲇⲁⲓⲙⲱⲛ", "noun", "ⲇⲁⲓⲙⲱⲛ", "", "", "", "demon"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲏⲛⲉⲓⲁ", "noun", "ϩⲉⲣⲙⲏⲛⲉⲓⲁ", "", "", "", "sense meaning"]) + let v = native_list_append(v, ["ⲓⲟⲩⲇⲁⲓ", "noun", "ⲓⲟⲩⲇⲁⲓ", "", "", "", "Jew"]) + let v = native_list_append(v, ["ϯⲥⲩⲣⲓⲁ", "noun", "ϯⲥⲩⲣⲓⲁ", "", "", "", "Syria a country"]) + let v = native_list_append(v, ["ⲥⲕⲩⲛⲏ", "noun", "ⲥⲕⲩⲛⲏ", "", "", "", "tent"]) + let v = native_list_append(v, ["ⲡⲁⲛϩⲟⲡⲗⲓⲁ", "noun", "ⲡⲁⲛϩⲟⲡⲗⲓⲁ", "", "", "", "set of armour"]) + let v = native_list_append(v, ["ϩⲙϩⲁⲗ", "noun", "ϩⲙ̄ϩⲁⲗ", "", "", "", "slave servant"]) + let v = native_list_append(v, ["ⲣⲁⲕⲟⲧⲉ", "noun", "ⲣⲁⲕⲟⲧⲉ", "", "", "", "a town near"]) + let v = native_list_append(v, ["ⲓⲟⲣⲇⲁⲛⲏⲥ", "noun", "ⲓⲟⲣⲇⲁⲛⲏⲥ", "", "", "", "River Jordan a"]) + let v = native_list_append(v, ["ⲇⲉⲙⲱⲛ", "noun", "ⲇⲉⲙⲱⲛ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲙⲛⲧⲣⲣⲟ", "noun", "ⲙⲛⲧⲣⲣⲱⲟⲩ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲁϥ", "noun", "ⲁϥ", "", "", "", "meat flesh"]) + let v = native_list_append(v, ["ⲡⲣⲁⲝⲓⲥ", "noun", "ⲡⲣⲁⲝⲓⲥ", "", "", "", "deed action work"]) + let v = native_list_append(v, ["ⲕⲟⲩⲣⲥⲱⲣ", "noun", "ⲕⲟⲩⲣⲥⲱⲣ", "", "", "", "messenger courier runner"]) + let v = native_list_append(v, ["ⲥⲩⲛⲁⲅⲱⲅⲏ", "noun", "ⲥⲩⲛⲁⲅⲱⲅⲏ", "", "", "", "synagogue"]) + let v = native_list_append(v, ["ⲁⲗⲉⲕⲧⲱⲣ", "noun", "ⲁⲗⲉⲕⲧⲱⲣ", "", "", "", "rooster cock"]) + let v = native_list_append(v, ["ⲁⲛⲁⲭⲱⲣⲏⲧⲏⲥ", "noun", "ⲁⲛⲁⲭⲱⲣⲏⲧⲏⲥ", "", "", "", "anachorite hermit"]) + let v = native_list_append(v, ["ⲓⲣⲏⲛⲏ", "noun", "ⲓⲣⲏⲛⲏ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲁⲅⲱⲛ", "noun", "ⲁⲅⲱⲛ", "", "", "", "contest race"]) + let v = native_list_append(v, ["ⲥⲏϥⲓ", "noun", "ⲥⲏϥⲓ", "", "", "", "sword knife"]) + let v = native_list_append(v, ["ⲕⲩⲣⲓⲁⲕⲏ", "noun", "ⲕⲩⲣⲓⲁⲕⲏ", "", "", "", "Sunday"]) + let v = native_list_append(v, ["ⲁⲣⲭⲁⲅⲅⲉⲗⲟⲥ", "noun", "ⲁⲣⲭⲁⲅⲅⲉⲗⲟⲥ", "", "", "", "archangel"]) + let v = native_list_append(v, ["ⲡⲁⲣⲁⲇⲓⲥⲟⲥ", "noun", "ⲡⲁⲣⲁⲇⲓⲥⲟⲥ", "", "", "", "paradise"]) + let v = native_list_append(v, ["ⲁⲣⲭⲓⲥⲩⲛⲁⲅⲱⲅⲟⲥ", "noun", "ⲁⲣⲭⲓⲥⲩⲛⲁⲅⲱⲅⲟⲥ", "", "", "", "archisynagogue head of"]) + let v = native_list_append(v, ["ⲗⲁⲥ", "noun", "ⲗⲁⲥ", "", "", "", "tongue"]) + let v = native_list_append(v, ["ⲑⲩⲣⲱⲛ", "noun", "ⲑⲩⲣⲱⲛ", "", "", "", "shield"]) + let v = native_list_append(v, ["ϩⲓⲡⲡⲉⲩⲥ", "noun", "ϩⲓⲡⲡⲉⲩⲥ", "", "", "", "horseman cavalryman"]) + let v = native_list_append(v, ["ⲫⲑⲟⲛⲟⲥ", "noun", "ⲫⲑⲟⲛⲟⲥ", "", "", "", "jealousy envy"]) + let v = native_list_append(v, ["ⲛⲉϩ", "noun", "ⲛⲉϩ", "", "", "", "oil"]) + let v = native_list_append(v, ["ⲃⲏⲙⲁ", "noun", "ⲃⲏⲙⲁ", "", "", "", "bema"]) + let v = native_list_append(v, ["ⲙⲁⲥⲉ", "noun", "ⲙⲁⲥⲉ", "", "", "", "calf"]) + let v = native_list_append(v, ["ⲕⲣⲟ", "noun", "ⲕⲣⲱⲟⲩ", "", "", "", "waterside shore bank"]) + let v = native_list_append(v, ["ϫⲟⲉⲓⲧ", "noun", "ϫⲟⲉⲓⲧ", "", "", "", "olive"]) + let v = native_list_append(v, ["ⲍⲉⲩⲥ", "noun", "ⲍⲉⲩⲥ", "", "", "", "Zeus king of"]) + let v = native_list_append(v, ["ⲉⲣⲙⲏⲥ", "noun", "ⲉⲣⲙⲏⲥ", "", "", "", "Hermes the Greek"]) + let v = native_list_append(v, ["ⲁⲙⲣⲉ", "noun", "ⲁⲙⲣⲏⲟⲩ (amrēou)", "", "", "", "baker"]) + let v = native_list_append(v, ["ϫⲱⲙ", "noun", "ϫⲱⲙ", "", "", "", "scroll book"]) + let v = native_list_append(v, ["ⲟⲩⲱⲧⲉⲃ", "noun", "ⲟⲩⲱⲧⲉⲃ", "", "", "", "transmigration emigration"]) + let v = native_list_append(v, ["ϯ", "noun", "ϯ", "", "", "", "ti the name"]) + let v = native_list_append(v, ["ϣⲁⲩ", "noun", "ϣⲁⲩ", "", "", "", "male cat tomcat"]) + let v = native_list_append(v, ["ϩⲃⲟⲩⲣ", "noun", "ϩⲃⲟⲩⲣ", "", "", "", "left hand"]) + let v = native_list_append(v, ["ⲕⲃⲓⲣ", "noun", "ⲕⲃⲓⲣ", "", "", "", "left hand the"]) + let v = native_list_append(v, ["ⲙⲁϣⲧⲁ", "noun", "ⲙⲁϣⲧⲁ", "", "", "", "ear"]) + let v = native_list_append(v, ["ϩⲓⲉⲣⲟⲩⲥⲁⲗⲏⲙ", "noun", "ϩⲓⲉⲣⲟⲩⲥⲁⲗⲏⲙ", "", "", "", "Jerusalem a city"]) + let v = native_list_append(v, ["ⲥⲓⲧ", "noun", "ⲥⲓⲧ", "", "", "", "basilisk"]) + let v = native_list_append(v, ["ⲧⲟⲧⲥ", "noun", "ⲧⲟⲧⲥ", "", "", "", "chair"]) + let v = native_list_append(v, ["ⲕⲁϣ", "noun", "ⲕⲁϣ", "", "", "", "reed rush particularly"]) + let v = native_list_append(v, ["ⲱϣ", "noun", "ⲱϣ", "", "", "", "reading lesson"]) + let v = native_list_append(v, ["ⲁϫⲡ", "noun", "ⲁϫⲡ", "", "", "", "hour time"]) + let v = native_list_append(v, ["ⲕⲁϩⲓ", "noun", "ⲕⲁϩⲓ", "", "", "", "earth land country"]) + let v = native_list_append(v, ["ⲏⲓ", "noun", "ⲏⲟⲩ", "", "", "", "house"]) + let v = native_list_append(v, ["ⲣⲏ", "noun", "ⲣⲏ", "", "", "", "sun"]) + let v = native_list_append(v, ["ⲥϩⲓⲙⲓ", "noun", "ϩⲓⲟⲙⲓ", "", "", "", "woman"]) + let v = native_list_append(v, ["ⲟⲩⲣⲱ", "noun", "ⲟⲩⲣⲱ", "", "", "", "queen"]) + let v = native_list_append(v, ["ϣⲟⲩⲣⲓ", "noun", "ϣⲟⲩⲣⲓ", "", "", "", "censer"]) + let v = native_list_append(v, ["ⲣⲓ", "noun", "ⲣⲓ", "", "", "", "room cell monks"]) + let v = native_list_append(v, ["ⲫⲟⲣϣⲓ", "noun", "ⲫⲟⲣϣⲓ", "", "", "", "spread table"]) + let v = native_list_append(v, ["ⲫⲉ", "noun", "ⲫⲏⲟⲩⲓ", "", "", "", "the sky"]) + let v = native_list_append(v, ["ⲓⲟϯ", "noun", "ⲓⲟϯ", "", "", "", "plural of ⲓⲱⲧ"]) + let v = native_list_append(v, ["ⲁⲗⲱⲟⲩⲓ", "noun", "ⲁⲗⲱⲟⲩⲓ", "", "", "", "plural of ⲁⲗⲟⲩ"]) + let v = native_list_append(v, ["ⲟⲩⲣⲱⲟⲩ", "noun", "ⲟⲩⲣⲱⲟⲩ", "", "", "", "plural of ⲟⲩⲣⲟ"]) + let v = native_list_append(v, ["ⲣⲱⲟⲩ", "noun", "ⲣⲱⲟⲩ", "", "", "", "plural of ⲣⲟ"]) + let v = native_list_append(v, ["ⲥⲛⲏⲟⲩ", "noun", "ⲥⲛⲏⲟⲩ", "", "", "", "plural of ⲥⲱⲛⲓ"]) + let v = native_list_append(v, ["ϩⲓⲟⲙⲓ", "noun", "ϩⲓⲟⲙⲓ", "", "", "", "plural of ⲥϩⲓⲙⲓ"]) + let v = native_list_append(v, ["ⲫⲏⲟⲩⲓ", "noun", "ⲫⲏⲟⲩⲓ", "", "", "", "plural of ⲫⲉ"]) + let v = native_list_append(v, ["ⲕⲁϩⲓⲣⲏ", "noun", "ⲕⲁϩⲓⲣⲏ", "", "", "", "Cairo"]) + let v = native_list_append(v, ["ⲥⲁⲛ", "noun", "ⲥⲛⲏⲩ", "", "", "", "brother"]) + let v = native_list_append(v, ["ϩⲓⲁⲙⲓ", "noun", "ϩⲓⲁⲙⲓ", "", "", "", "plural of ⲥϩⲓⲙⲓ"]) + let v = native_list_append(v, ["ⲱⲓⲕ", "noun", "ⲱⲓⲕ", "", "", "", "a loaf of"]) + let v = native_list_append(v, ["ⲁⲗⲱⲙ", "noun", "ⲁⲗⲱⲙ", "", "", "", "cheese"]) + let v = native_list_append(v, ["ⲉⲣⲱϯ", "noun", "ⲉⲣⲱϯ", "", "", "", "milk"]) + let v = native_list_append(v, ["ⲧⲉⲃⲧ", "noun", "ⲧⲉⲃⲧ", "", "", "", "fish"]) + let v = native_list_append(v, ["ϩⲟⲡ", "noun", "ϩⲟⲡ", "", "", "", "wedding"]) + let v = native_list_append(v, ["ϩⲩⲇⲣⲓⲁ", "noun", "ϩⲩⲇⲣⲓⲁ", "", "", "", "waterpot pitcher urn"]) + let v = native_list_append(v, ["ⲁⲫⲟⲧ", "noun", "ⲁⲫⲟⲧ", "", "", "", "cup"]) + let v = native_list_append(v, ["ⲙⲁⲣⲧⲩⲣⲟⲥ", "noun", "ⲙⲁⲣⲧⲩⲣⲟⲥ", "", "", "", "martyr"]) + let v = native_list_append(v, ["ⲁⲛⲍⲏⲃ", "noun", "ⲁⲛⲍⲏⲃ", "", "", "", "school"]) + let v = native_list_append(v, ["ϭⲱⲙ", "noun", "ϭⲟⲟⲙ (čoom)", "", "", "", "garden vineyard property"]) + let v = native_list_append(v, ["ⲧⲉⲥⲓ", "noun", "ⲧⲉⲥⲓ", "", "", "", "hour"]) + let v = native_list_append(v, ["ⲱⲛϧ", "noun", "ⲱⲛϧ", "", "", "", "life ankh"]) + let v = native_list_append(v, ["ⲃⲱ", "noun", "ⲃⲱ", "", "", "", "bush"]) + let v = native_list_append(v, ["ⲕⲉⲛⲧⲉ", "noun", "ⲕⲉⲛⲧⲉ", "", "", "", "fig"]) + let v = native_list_append(v, ["ⲃⲁⲕⲓ", "noun", "ⲃⲁⲕⲓ", "", "", "", "city"]) + let v = native_list_append(v, ["ⲙⲉⲥⲓⲁⲥ", "noun", "ⲙⲉⲥⲓⲁⲥ", "", "", "", "messiah"]) + let v = native_list_append(v, ["ϭⲣⲟⲙⲡⲓ", "noun", "ϭⲣⲟⲙⲡⲓ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ⲛⲟⲃⲓ", "noun", "ⲛⲟⲃⲓ", "", "", "", "sin transgression"]) + let v = native_list_append(v, ["ϩⲓⲏⲃ", "noun", "ϩⲓⲏⲃ", "", "", "", "lamb"]) + let v = native_list_append(v, ["ⲫⲁⲣⲓⲥⲉⲟⲥ", "noun", "ⲫⲁⲣⲓⲥⲉⲟⲥ", "", "", "", "Pharisee"]) + let v = native_list_append(v, ["ⲗⲉⲩⲓⲧⲏⲥ", "noun", "ⲗⲉⲩⲓⲧⲏⲥ", "", "", "", "Levite"]) + let v = native_list_append(v, ["ⲕⲉⲛ⸗", "noun", "ⲕⲉⲛ⸗", "", "", "", "bosom"]) + let v = native_list_append(v, ["ⲙⲉⲑⲙⲏⲓ", "noun", "ⲙⲉⲑⲙⲏⲓ", "", "", "", "truth"]) + let v = native_list_append(v, ["ⲟⲩⲱⲓⲛⲓ", "noun", "ⲟⲩⲱⲓⲛⲓ", "", "", "", "light"]) + let v = native_list_append(v, ["ⲭⲁⲕⲓ", "noun", "ⲭⲁⲕⲓ", "", "", "", "darkness"]) + let v = native_list_append(v, ["ⲟⲩⲱϣ", "noun", "ⲟⲩⲱϣ", "", "", "", "desire love"]) + let v = native_list_append(v, ["ⲱⲟⲩ", "noun", "ⲱⲟⲩ", "", "", "", "glory"]) + let v = native_list_append(v, ["ⲙⲉⲧⲙⲉⲑⲣⲉ", "noun", "ⲙⲉⲧⲙⲉⲑⲣⲉ", "", "", "", "testimony"]) + let v = native_list_append(v, ["ⲟⲩⲏⲃ", "noun", "ⲟⲩⲏⲃ", "", "", "", "priest"]) + let v = native_list_append(v, ["ϣⲕⲉⲗⲕⲓⲗ", "noun", "ϣⲕⲉⲗⲕⲓⲗ", "", "", "", "bell"]) + let v = native_list_append(v, ["ϫⲓϫ", "noun", "ϫⲓϫ", "", "", "", "hand"]) + let v = native_list_append(v, ["ϫⲱⲙⲛⲥϧⲁⲓ", "noun", "ϫⲱⲙⲛⲥϧⲁⲓ", "", "", "", "notebook"]) + let v = native_list_append(v, ["ⲛⲁⲓ", "noun", "ⲛⲁⲓ", "", "", "", "mercy charity"]) + let v = native_list_append(v, ["ϣⲁⲓ", "noun", "ϣⲁⲓ", "", "", "", "feast"]) + let v = native_list_append(v, ["ϩⲓⲣⲏⲛⲏ", "noun", "ϩⲓⲣⲏⲛⲏ", "", "", "", "peace"]) + let v = native_list_append(v, ["ⲁⲛⲁⲥⲧⲁⲥⲓⲥ", "noun", "ⲁⲛⲁⲥⲧⲁⲥⲓⲥ", "", "", "", "resurrection"]) + let v = native_list_append(v, ["ⲣⲉϥⲛⲁⲩ", "noun", "ⲣⲉϥⲛⲁⲩ", "", "", "", "seer overseer"]) + let v = native_list_append(v, ["ⲣⲉϥϯⲱⲙⲥ", "noun", "ⲣⲉϥϯⲱⲙⲥ", "", "", "", "baptizer"]) + let v = native_list_append(v, ["ⲣⲉϥⲥϧⲁⲓ", "noun", "ⲣⲉϥⲥϧⲁⲓ", "", "", "", "writer"]) + let v = native_list_append(v, ["ⲣⲉϥⲉⲣⲛⲟⲃⲓ", "noun", "ⲣⲉϥⲉⲣⲛⲟⲃⲓ", "", "", "", "sinner"]) + let v = native_list_append(v, ["ⲣⲉϥⲙⲱⲟⲩⲧ", "noun", "ⲣⲉϥⲙⲱⲟⲩⲧ", "", "", "", "someone deceased"]) + let v = native_list_append(v, ["ⲣⲉϥϣⲉⲙϣⲓ", "noun", "ⲣⲉϥϣⲉⲙϣⲓ", "", "", "", "worshiper"]) + let v = native_list_append(v, ["ⲣⲉϥⲛⲟϩⲉⲙ", "noun", "ⲣⲉϥⲛⲟϩⲉⲙ", "", "", "", "savior"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲱⲙⲓ", "noun", "ⲙⲉⲧⲣⲱⲙⲓ", "", "", "", "humanity mankind"]) + let v = native_list_append(v, ["ⲙⲉⲧⲥⲁⲃⲉ", "noun", "ⲙⲉⲧⲥⲁⲃⲉ", "", "", "", "wisdom"]) + let v = native_list_append(v, ["ⲙⲉⲧⲟⲩⲣⲟ", "noun", "ⲙⲉⲧⲟⲩⲣⲟ", "", "", "", "kingdom"]) + let v = native_list_append(v, ["ⲙⲉⲧⲛⲓϣϯ", "noun", "ⲙⲉⲧⲛⲓϣϯ", "", "", "", "greatness"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲁⲙⲁⲟ", "noun", "ⲙⲉⲧⲣⲁⲙⲁⲟ", "", "", "", "wealth"]) + let v = native_list_append(v, ["ⲣⲉⲙⲙⲃⲁⲕⲓ", "noun", "ⲣⲉⲙⲙⲃⲁⲕⲓ", "", "", "", "citizen"]) + let v = native_list_append(v, ["ⲣⲉⲙⲁⲛⲍⲏⲃ", "noun", "ⲣⲉⲙⲁⲛⲍⲏⲃ", "", "", "", "pupil student"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛϫⲱⲓⲗⲓ", "noun", "ⲣⲉⲙⲛϫⲱⲓⲗⲓ", "", "", "", "guest sojourner"]) + let v = native_list_append(v, ["ⲙⲁⲛⲫⲓⲥⲓ", "noun", "ⲙⲁⲛⲫⲓⲥⲓ", "", "", "", "kitchen"]) + let v = native_list_append(v, ["ⲙⲁⲛϣⲱⲡⲓ", "noun", "ⲙⲁⲛϣⲱⲡⲓ", "", "", "", "dwelling home"]) + let v = native_list_append(v, ["ⲙⲁⲛⲉⲛⲕⲟⲧ", "noun", "ⲙⲁⲛⲉⲛⲕⲟⲧ", "", "", "", "bed"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛⲏⲓ", "noun", "ⲣⲉⲙⲛⲏⲓ", "", "", "", "family member"]) + let v = native_list_append(v, ["ϩⲁⲗⲁϯ", "noun", "ϩⲁⲗⲁϯ", "", "", "", "plural of ϩⲁⲗⲏⲧ"]) + let v = native_list_append(v, ["ⲕⲉⲣⲙⲁ", "noun", "ⲕⲉⲣⲙⲁ", "", "", "", "money"]) + let v = native_list_append(v, ["ϣⲱⲧ", "noun", "ϣⲱⲧ", "", "", "", "trader merchant"]) + let v = native_list_append(v, ["ϥⲁⲓⲕⲉⲣⲙⲁ", "noun", "ϥⲁⲓⲕⲉⲣⲙⲁ", "", "", "", "moneychanger"]) + let v = native_list_append(v, ["ⲉⲥⲱⲟⲩ", "noun", "ⲉⲥⲱⲟⲩ", "", "", "", "sheep"]) + let v = native_list_append(v, ["ⲫⲣⲁⲅⲉⲗⲗⲓⲟⲛ", "noun", "ⲫⲣⲁⲅⲉⲗⲗⲓⲟⲛ", "", "", "", "a whip"]) + let v = native_list_append(v, ["ⲧⲟⲩⲃⲟ", "noun", "ⲧⲟⲩⲃⲟ", "", "", "", "purification"]) + let v = native_list_append(v, ["ⲭⲟϩ", "noun", "ⲭⲟϩ", "", "", "", "zeal"]) + let v = native_list_append(v, ["ⲉⲣⲫⲉⲓ", "noun", "ⲉⲣⲫⲏⲟⲩⲓ", "", "", "", "temple"]) + let v = native_list_append(v, ["ⲣⲟⲙⲡⲓ", "noun", "ⲣⲟⲙⲡⲓ", "", "", "", "year"]) + let v = native_list_append(v, ["ⲛⲟϩ", "noun", "ⲛⲟϩ", "", "", "", "cord rope"]) + let v = native_list_append(v, ["ⲇⲓⲁⲕⲱⲛ", "noun", "ⲇⲓⲁⲕⲱⲛ", "", "", "", "servant"]) + let v = native_list_append(v, ["ⲁⲣⲭⲏⲧⲣⲓⲕⲗⲓⲛⲟⲥ", "noun", "ⲁⲣⲭⲏⲧⲣⲓⲕⲗⲓⲛⲟⲥ", "", "", "", "master of a"]) + let v = native_list_append(v, ["ⲁⲣⲭⲱⲛ", "noun", "ⲁⲣⲭⲱⲛ", "", "", "", "ruler a sovereign"]) + let v = native_list_append(v, ["ⲙⲏⲓⲛⲓ", "noun", "ⲙⲏⲓⲛⲓ", "", "", "", "sign"]) + let v = native_list_append(v, ["ⲕⲟⲗⲩⲙⲃⲏⲑⲣⲁ", "noun", "ⲕⲟⲗⲩⲙⲃⲏⲑⲣⲁ", "", "", "", "pool"]) + let v = native_list_append(v, ["ⲥⲑⲟⲓ", "noun", "ⲥⲑⲟⲓ", "", "", "", "fragrance"]) + let v = native_list_append(v, ["ⲥⲟϫⲉⲛ", "noun", "ⲥⲟϫⲉⲛ", "", "", "", "ointment oil"]) + let v = native_list_append(v, ["ⲉⲱ", "noun", "ⲉⲱ", "", "", "", "donkey"]) + let v = native_list_append(v, ["ⲡⲣⲟⲃⲁⲧⲓⲕⲏ", "noun", "ⲡⲣⲟⲃⲁⲧⲓⲕⲏ", "", "", "", "Sheep Gate gate"]) + let v = native_list_append(v, ["ϧⲏⲃⲥ", "noun", "ϧⲏⲃⲥ", "", "", "", "lamp"]) + let v = native_list_append(v, ["ⲉⲛⲉϩ", "noun", "ⲉⲛⲉϩ", "", "", "", "eternity"]) + let v = native_list_append(v, ["ⲓⲟⲙ", "noun", "ⲁⲙⲁⲓⲟⲩ", "", "", "", "sea"]) + let v = native_list_append(v, ["ⲙⲏϣ", "noun", "ⲙⲏϣ", "", "", "", "multitude crowd throng"]) + let v = native_list_append(v, ["ⲧⲱⲟⲩ", "noun", "ⲧⲱⲟⲩ", "", "", "", "mountain"]) + let v = native_list_append(v, ["ⲥⲁⲑⲉⲣⲓ", "noun", "ⲥⲁⲑⲉⲣⲓ", "", "", "", "stater a type"]) + let v = native_list_append(v, ["ϣⲁϥⲉ", "noun", "ϣⲁϥⲉ", "", "", "", "wilderness"]) + let v = native_list_append(v, ["ⲥⲃⲱ", "noun", "ⲥⲃⲟⲟⲩⲉ (sbooue)", "", "", "", "teaching doctrine"]) + let v = native_list_append(v, ["ⲇⲓⲁⲃⲟⲗⲟⲥ", "noun", "ⲇⲓⲁⲃⲟⲗⲟⲥ", "", "", "", "devil"]) + let v = native_list_append(v, ["ϩⲁⲡ", "noun", "ϩⲁⲡ", "", "", "", "judgement"]) + let v = native_list_append(v, ["ⲁⲣⲭⲓⲉⲣⲉⲩⲥ", "noun", "ⲁⲣⲭⲓⲉⲣⲉⲩⲥ", "", "", "", "high priest"]) + let v = native_list_append(v, ["ϩⲩⲡⲏⲣⲉⲧⲏⲥ", "noun", "ϩⲩⲡⲏⲣⲉⲧⲏⲥ", "", "", "", "officer."]) + let v = native_list_append(v, ["ⲓⲁⲣⲱⲟⲩ", "noun", "ⲓⲁⲣⲱⲟⲩ", "", "", "", "plural of ⲓⲁⲣⲟ"]) + let v = native_list_append(v, ["ⲃⲉⲗⲗⲉ", "noun", "ⲃⲉⲗⲗⲉⲩ", "", "", "", "a blind person"]) + let v = native_list_append(v, ["ⲑⲁϥ", "noun", "ⲑⲁϥ", "", "", "", "spit saliva"]) + let v = native_list_append(v, ["ⲑⲉϣⲉ", "noun", "ⲑⲉϣⲉⲩ", "", "", "", "neighbor"]) + let v = native_list_append(v, ["ⲟⲙⲓ", "noun", "ⲟⲙⲓ", "", "", "", "clay mud"]) + let v = native_list_append(v, ["ⲉⲙⲛⲟⲩϯ", "noun", "ⲉⲙⲛⲟⲩϯ", "", "", "", "doorkeeper porter"]) + let v = native_list_append(v, ["ϣⲉⲙⲙⲟ", "noun", "ϣⲉⲙⲙⲟ", "", "", "", "stranger"]) + let v = native_list_append(v, ["ⲥⲟⲛⲓ", "noun", "ⲥⲓⲛⲱⲟⲩⲓ", "", "", "", "robber thief"]) + let v = native_list_append(v, ["ⲣⲉϥϭⲓⲟⲩⲓ", "noun", "ⲣⲉϥϭⲓⲟⲩⲓ", "", "", "", "thief"]) + let v = native_list_append(v, ["ⲟⲩⲱⲛϣ", "noun", "ⲟⲩⲱⲛϣ", "", "", "", "wolf"]) + let v = native_list_append(v, ["ⲣⲉⲙⲃⲉⲭⲉ", "noun", "ⲣⲉⲙⲃⲉⲭⲉ", "", "", "", "mercenary"]) + let v = native_list_append(v, ["ⲥⲭⲓⲥⲙⲁ", "noun", "ⲥⲭⲓⲥⲙⲁ", "", "", "", "schism division"]) + let v = native_list_append(v, ["ⲫⲣⲱ", "noun", "ⲫⲣⲱ", "", "", "", "winter"]) + let v = native_list_append(v, ["ⲙϩⲁⲩ", "noun", "ⲙϩⲁⲩ", "", "", "", "tomb"]) + let v = native_list_append(v, ["ⲃⲏⲃ", "noun", "ⲃⲏⲃ", "", "", "", "cave hole"]) + let v = native_list_append(v, ["ϣⲗⲟⲗ", "noun", "ϣⲗⲟⲗ", "", "", "", "people folk nation"]) + let v = native_list_append(v, ["ⲣⲱⲙⲉⲟⲥ", "noun", "ⲣⲱⲙⲉⲟⲥ", "", "", "", "a Roman"]) + let v = native_list_append(v, ["ⲉⲑⲛⲟⲥ", "noun", "ⲉⲑⲛⲟⲥ", "", "", "", "people"]) + let v = native_list_append(v, ["ⲕⲱⲥ", "noun", "ⲕⲱⲥ", "", "", "", "burial"]) + let v = native_list_append(v, ["ⲃⲁⲓ", "noun", "ⲃⲁⲓ", "", "", "", "date palm branch"]) + let v = native_list_append(v, ["ⲃⲉⲛⲓ", "noun", "ⲃⲉⲛⲓ", "", "", "", "date palm tree"]) + let v = native_list_append(v, ["ⲟⲩⲉⲓⲛⲓⲛ", "noun", "ⲟⲩⲉⲓⲛⲓⲛ", "", "", "", "a Greek"]) + let v = native_list_append(v, ["ⲗⲉⲛⲧⲓⲟⲛ", "noun", "ⲗⲉⲛⲧⲓⲟⲛ", "", "", "", "towel"]) + let v = native_list_append(v, ["ϭⲁⲗⲁⲩϫ", "noun", "ϭⲁⲗⲁⲩϫ", "", "", "", "feet"]) + let v = native_list_append(v, ["ϩⲃⲱⲥ", "noun", "ϩⲃⲱⲥ", "", "", "", "robe"]) + let v = native_list_append(v, ["ⲃⲱⲕ", "noun", "ⲃⲱⲕ", "", "", "", "male servant male"]) + let v = native_list_append(v, ["ⲟⲣⲫⲁⲛⲟⲥ", "noun", "ⲟⲣⲫⲁⲛⲟⲥ", "", "", "", "orphan"]) + let v = native_list_append(v, ["ⲡⲁⲣⲁⲕⲗⲏⲧⲟⲥ", "noun", "ⲡⲁⲣⲁⲕⲗⲏⲧⲟⲥ", "", "", "", "helper"]) + let v = native_list_append(v, ["ⲭⲣⲱⲙ", "noun", "ⲭⲣⲱⲙ", "", "", "", "fire"]) + let v = native_list_append(v, ["ⲡⲁⲣⲟⲓⲙⲓⲁ", "noun", "ⲡⲁⲣⲟⲓⲙⲓⲁ", "", "", "", "a byword saying"]) + let v = native_list_append(v, ["ⲣⲁϣⲓ", "noun", "ⲣⲁϣⲓ", "", "", "", "joy"]) + let v = native_list_append(v, ["ϩⲟϫϩⲉϫ", "noun", "ϩⲟϫϩⲉϫ", "", "", "", "distress tribulation need"]) + let v = native_list_append(v, ["ⲁⲛⲇⲣⲉⲁⲥ", "noun", "ⲁⲛⲇⲣⲉⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϣⲛⲉ", "noun", "ϣⲛⲉ", "", "", "", "net"]) + let v = native_list_append(v, ["ⲣⲁⲕϩⲓ", "noun", "ⲣⲁⲕϩⲓ", "", "", "", "firepit"]) + let v = native_list_append(v, ["ⲥⲑⲟⲓⲛⲟⲩϥⲓ", "noun", "ⲥⲑⲟⲓⲛⲟⲩϥⲓ", "", "", "", "a pleasant smell"]) + let v = native_list_append(v, ["ⲛⲁϩϯ", "noun", "ⲛⲁϩϯ", "", "", "", "belief faith"]) + let v = native_list_append(v, ["ⲛⲁⲩ", "noun", "ⲛⲁⲩ", "", "", "", "vision"]) + let v = native_list_append(v, ["ⲁⲣⲉϩ", "noun", "ⲁⲣⲉϩ", "", "", "", "watch guard"]) + let v = native_list_append(v, ["ⲙⲟϣⲓ", "noun", "ⲙⲟϣⲓ", "", "", "", "trip travel journey"]) + let v = native_list_append(v, ["ⲙⲟⲩ", "noun", "ⲙⲟⲩ", "", "", "", "death."]) + let v = native_list_append(v, ["ⲁⲥⲡⲓ", "noun", "ⲁⲥⲡⲓ", "", "", "", "language"]) + let v = native_list_append(v, ["ⲣⲱ", "noun", "ⲣⲱ", "", "", "", "mouth"]) + let v = native_list_append(v, ["ⲙⲉⲛⲉⲛⲥⲁⲙⲉⲣⲓ", "noun", "ⲙⲉⲛⲉⲛⲥⲁⲙⲉⲣⲓ", "", "", "", "afternoon"]) + let v = native_list_append(v, ["ⲝⲟⲙⲏ", "noun", "ⲝⲟⲙⲏ", "", "", "", "ruler"]) + let v = native_list_append(v, ["ϩⲁⲗⲱⲙ", "noun", "ϩⲁⲗⲱⲙ", "", "", "", "cheese"]) + let v = native_list_append(v, ["ⲉⲣⲱⲧⲉ", "noun", "ⲉⲣⲱⲧⲉ", "", "", "", "milk"]) + let v = native_list_append(v, ["ϯⲙⲓ", "noun", "ϯⲙⲓ", "", "", "", "village"]) + let v = native_list_append(v, ["ⲧⲓⲙⲓ", "noun", "ⲧⲓⲙⲓ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲧⲓⲙⲉ", "noun", "ⲧⲙⲉ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ϭⲁϫ", "noun", "ϭⲁϫ", "", "", "", "sparrow"]) + let v = native_list_append(v, ["ϫⲁⲙⲟⲩⲗ", "noun", "ϫⲁⲙⲁⲩⲗⲓ", "", "", "", "camel"]) + let v = native_list_append(v, ["ϩⲁⲗⲏⲧ", "noun", "ϩⲁⲗⲁϯ (halati)", "", "", "", "bird"]) + let v = native_list_append(v, ["ⲣⲉⲙϩⲉⲩ", "noun", "ⲣⲉⲙϩⲉⲩ", "", "", "", "freeman"]) + let v = native_list_append(v, ["ϩⲑⲱⲣ", "noun", "ϩⲑⲱⲣ", "", "", "", "plural of ϩⲑⲟ"]) + let v = native_list_append(v, ["ϩⲟϥ", "noun", "ϩⲃⲟⲩⲓ", "", "", "", "snake serpent"]) + let v = native_list_append(v, ["ⲕⲏⲧⲟⲥ", "noun", "ⲕⲏⲧⲟⲥ", "", "", "", "sea monster"]) + let v = native_list_append(v, ["ⲁⲃⲱⲕ", "noun", "ⲁⲃⲟⲕⲓ (aboki)", "", "", "", "crow raven"]) + let v = native_list_append(v, ["ϥⲁⲓ", "noun", "ϥⲁⲓ", "", "", "", "fai the name"]) + let v = native_list_append(v, ["ϧⲁⲓ", "noun", "ϧⲁⲓ", "", "", "", "khai the name"]) + let v = native_list_append(v, ["ϩⲟⲣⲓ", "noun", "ϩⲟⲣⲓ", "", "", "", "hori the name"]) + let v = native_list_append(v, ["ϫⲁⲛϫⲓⲁ", "noun", "ϫⲁⲛϫⲓⲁ", "", "", "", "janjia the name"]) + let v = native_list_append(v, ["ϭⲓⲙⲁ", "noun", "ϭⲓⲙⲁ", "", "", "", "The name of"]) + let v = native_list_append(v, ["ⲟⲩϩⲱⲣ", "noun", "ⲟⲩϩⲱⲣ", "", "", "", "plural of ⲟⲩϩⲟⲣ"]) + let v = native_list_append(v, ["ⲉϩⲉ", "noun", "ⲉϩⲱⲟⲩ", "", "", "", "ox"]) + let v = native_list_append(v, ["ⲉϩⲱⲟⲩ", "noun", "ⲉϩⲱⲟⲩ", "", "", "", "plural of ⲉϩⲉ"]) + let v = native_list_append(v, ["ⲃⲁϣⲟⲣ", "noun", "ⲃⲁϣⲟⲣ", "", "", "", "fox"]) + let v = native_list_append(v, ["ϭⲣⲟⲙⲡϣⲁⲗ", "noun", "ϭⲣⲟⲙⲡϣⲁⲗ", "", "", "", "turtle dove"]) + let v = native_list_append(v, ["ⲗⲁⲃⲟⲓ", "noun", "ⲗⲁⲃⲟⲓ", "", "", "", "lioness"]) + let v = native_list_append(v, ["ⲡⲁⲣⲇⲁⲗⲓⲥ", "noun", "ⲡⲁⲣⲇⲁⲗⲓⲥ", "", "", "", "leopard"]) + let v = native_list_append(v, ["ⲣⲉϥϧⲱⲧⲉⲃ", "noun", "ⲣⲉϥϧⲱⲧⲉⲃ", "", "", "", "murderer"]) + let v = native_list_append(v, ["ⲫⲁⲣⲙⲁⲅⲟⲥ", "noun", "ⲫⲁⲣⲙⲁⲅⲟⲥ", "", "", "", "sorcerer"]) + let v = native_list_append(v, ["ⲙⲁ", "noun", "ⲙⲁ", "", "", "", "place"]) + let v = native_list_append(v, ["ⲥⲁⲛⲱⲓⲕ", "noun", "ⲥⲁⲛⲱⲓⲕ", "", "", "", "baker"]) + let v = native_list_append(v, ["ⲥⲁⲛⲑⲱⲟⲩⲓ", "noun", "ⲥⲁⲛⲑⲱⲟⲩⲓ", "", "", "", "shoemaker"]) + let v = native_list_append(v, ["ⲥⲁⲛⲁϥ", "noun", "ⲥⲁⲛⲁϥ", "", "", "", "butcher"]) + let v = native_list_append(v, ["ⲥⲁⲙⲡⲉⲧϩⲱⲟⲩ", "noun", "ⲥⲁⲙⲡⲉⲧϩⲱⲟⲩ", "", "", "", "evil-doer"]) + let v = native_list_append(v, ["ⲙⲁⲛⲓⲉϧⲟⲩⲛ", "noun", "ⲙⲁⲛⲓⲉϧⲟⲩⲛ", "", "", "", "entrance"]) + let v = native_list_append(v, ["ϫⲓⲛϯⲥⲃⲱ", "noun", "ϫⲓⲛϯⲥⲃⲱ", "", "", "", "teaching"]) + let v = native_list_append(v, ["ϫⲓⲛⲙⲓⲥⲓ", "noun", "ϫⲓⲛⲙⲓⲥⲓ", "", "", "", "birth"]) + let v = native_list_append(v, ["ϫⲓⲛⲥⲱⲧⲉⲙ", "noun", "ϫⲓⲛⲥⲱⲧⲉⲙ", "", "", "", "hearing"]) + let v = native_list_append(v, ["ϫⲓⲛⲓ", "noun", "ϫⲓⲛⲓ", "", "", "", "coming"]) + let v = native_list_append(v, ["ⲁⲗⲟⲗⲓ", "noun", "ⲁⲗⲟⲗⲓ", "", "", "", "grape"]) + let v = native_list_append(v, ["ⲕⲩⲧⲟⲥ", "noun", "ⲕⲩⲧⲟⲥ", "", "", "", "whale"]) + let v = native_list_append(v, ["ⲙⲁⲥⲓ", "noun", "ⲙⲁⲥⲓ", "", "", "", "calf"]) + let v = native_list_append(v, ["ⲱⲡ", "noun", "ⲱⲡ", "", "", "", "reckoning calculation"]) + let v = native_list_append(v, ["ϫⲱⲃⲓ", "noun", "ϫⲱⲃⲓ", "", "", "", "sheet of paper"]) + let v = native_list_append(v, ["ϭⲓⲥⲓ", "noun", "ϭⲓⲥⲓ", "", "", "", "back"]) + let v = native_list_append(v, ["ϯⲡⲓ", "noun", "ϯⲡⲓ", "", "", "", "taste"]) + let v = native_list_append(v, ["ϣⲫⲏⲣ", "noun", "ϣⲫⲏⲣ", "", "", "", "friend"]) + let v = native_list_append(v, ["ϣⲑⲉϩ", "noun", "ϣⲑⲉϩ", "", "", "", "street"]) + let v = native_list_append(v, ["ⲥⲁϧ", "noun", "ⲥϧⲟⲩⲓ", "", "", "", "teacher scribe"]) + let v = native_list_append(v, ["ⲧⲏⲃ", "noun", "ⲧⲏⲃ", "", "", "", "finger"]) + let v = native_list_append(v, ["ⲥⲓϯ", "noun", "ⲥⲓϯ", "", "", "", "basilisk"]) + let v = native_list_append(v, ["ϣϫⲏⲟⲩ", "noun", "ϣϫⲏⲟⲩ", "", "", "", "plural of ϣϫⲉ"]) + let v = native_list_append(v, ["ϭⲗⲏ", "noun", "ϭⲗⲏ", "", "", "", "scorpion"]) + let v = native_list_append(v, ["ⲃⲁⲉⲙⲡⲓ", "noun", "ⲃⲁⲉⲙⲡⲓ", "", "", "", "goat"]) + let v = native_list_append(v, ["ϫⲓⲛϩⲱⲥ", "noun", "ϫⲓⲛϩⲱⲥ", "", "", "", "singing"]) + let v = native_list_append(v, ["ϣⲫⲏⲣ ⲙⲙⲟϣⲓ", "noun", "ϣⲫⲏⲣ ⲙⲙⲟϣⲓ", "", "", "", "travelling companion"]) + let v = native_list_append(v, ["ⲉⲡϣⲓ", "noun", "ⲉⲡϣⲓ", "", "", "", "beetle"]) + let v = native_list_append(v, ["ⲉⲡϣⲉ", "noun", "ⲉⲡϣⲉ", "", "", "", "beetle"]) + let v = native_list_append(v, ["ϩⲑⲟⲣ", "noun", "ϩⲑⲟⲣ", "", "", "", "plural of ϩⲑⲟ"]) + let v = native_list_append(v, ["ϩⲑⲟ", "noun", "ϩⲑⲱⲣ", "", "", "", "horse"]) + let v = native_list_append(v, ["ⲥⲁⲛⲣⲓⲣ", "noun", "ⲥⲁⲛⲣⲓⲣ", "", "", "", "pig-seller"]) + let v = native_list_append(v, ["ⲭⲁⲣⲟⲩⲕⲓ", "noun", "ⲭⲁⲣⲟⲩⲕⲓ", "", "", "", "lizard"]) + let v = native_list_append(v, ["ⲍⲉⲛⲍⲉⲛ", "noun", "ⲍⲉⲛⲍⲉⲛ", "", "", "", "chameleon"]) + let v = native_list_append(v, ["ⲥⲧⲁϫⲟⲩⲗ", "noun", "ⲥⲧⲁϫⲟⲩⲗ", "", "", "", "spider"]) + let v = native_list_append(v, ["ϭⲁϫⲓϥ", "noun", "ϭⲁϫⲓϥ", "", "", "", "ant"]) + let v = native_list_append(v, ["ϫⲉⲕϫⲓⲕ", "noun", "ϫⲉⲕϫⲓⲕ", "", "", "", "insect bug"]) + let v = native_list_append(v, ["ⲟⲩϩⲱⲣⲓ", "noun", "ⲟⲩϩⲱⲣⲓ", "", "", "", "female dog bitch"]) + let v = native_list_append(v, ["ⲟⲩϩⲱⲣⲉ", "noun", "ⲟⲩϩⲟⲟⲣⲉ", "", "", "", "female dog bitch"]) + let v = native_list_append(v, ["ⲟⲩϩⲟⲣ", "noun", "ⲟⲩϩⲱⲣ", "", "", "", "dog"]) + let v = native_list_append(v, ["ϣⲃⲏⲣ", "noun", "ϣⲃⲉⲉⲣ", "", "", "", "friend"]) + let v = native_list_append(v, ["ⲁϥⲛⲉⲃⲓⲱ", "noun", "ⲁϥⲛⲉⲃⲓⲱ", "", "", "", "bee"]) + let v = native_list_append(v, ["ϧⲉⲗⲓⲃϣ", "noun", "ϧⲉⲗⲓⲃϣ", "", "", "", "breastplate"]) + let v = native_list_append(v, ["ϣⲉ", "noun", "ϣⲉ", "", "", "", "wood"]) + let v = native_list_append(v, ["ⲙⲣⲱ", "noun", "ⲙ̄ⲣⲟⲟⲩⲉ", "", "", "", "harbor"]) + let v = native_list_append(v, ["ⲁⲙⲁⲓⲟⲩ", "noun", "ⲁⲙⲁⲓⲟⲩ", "", "", "", "plural of ⲓⲟⲙ"]) + let v = native_list_append(v, ["ϭⲁⲧϥⲓ", "noun", "ϭⲁⲧϥⲓ", "", "", "", "reptile"]) + let v = native_list_append(v, ["ⲭⲣⲟⲩⲣ", "noun", "ⲭⲣⲟⲩⲣ", "", "", "", "frog"]) + let v = native_list_append(v, ["ⲣⲁⲙⲉⲥⲥⲏ", "noun", "ⲣⲁⲙⲉⲥⲥⲏ", "", "", "", "City of pi-Ramesses"]) + let v = native_list_append(v, ["ⲣⲁⲕⲟϯ", "noun", "ⲣⲁⲕⲟϯ", "", "", "", "Alexandria a city"]) + let v = native_list_append(v, ["ⲣⲁⲥⲟⲩⲓ", "noun", "ⲣⲁⲥⲟⲩⲓ", "", "", "", "dream"]) + let v = native_list_append(v, ["ϩⲟⲣⲁⲙⲁ", "noun", "ϩⲟⲣⲁⲙⲁ", "", "", "", "a vision"]) + let v = native_list_append(v, ["ϣⲱⲙ", "noun", "ϣⲱⲙ", "", "", "", "summer"]) + let v = native_list_append(v, ["ϩⲏ ⲛϣⲱⲙ", "noun", "ϩⲏ ⲛϣⲱⲙ", "", "", "", "beginning of summer"]) + let v = native_list_append(v, ["ϩⲏ", "noun", "ϩⲏ", "", "", "", "beginning"]) + let v = native_list_append(v, ["ⲕⲟⲩϫⲓ", "noun", "ⲕⲟⲩϫⲓ", "", "", "", "a little"]) + let v = native_list_append(v, ["ⲣⲁⲙⲁⲟ", "noun", "ⲣⲁⲙⲁⲟⲓ", "", "", "", "rich man"]) + let v = native_list_append(v, ["ⲛⲓϣϯ", "noun", "ⲛⲓϣϯ", "", "", "", "a something or"]) + let v = native_list_append(v, ["ⲉⲣⲫⲙⲉⲩⲓ", "noun", "ⲉⲣⲫⲙⲉⲩⲓ", "", "", "", "a memorial"]) + let v = native_list_append(v, ["ⲫⲓ", "noun", "ⲫⲓ", "", "", "", "kiss."]) + let v = native_list_append(v, ["ⲅⲩⲙⲛⲁⲥⲓⲁ", "noun", "ⲅⲩⲙⲛⲁⲥⲓⲁ", "", "", "", "bodily sport"]) + let v = native_list_append(v, ["ⲉⲙⲓ", "noun", "ⲉⲙⲓ", "", "", "", "knowledge science"]) + let v = native_list_append(v, ["ϫⲟⲙ", "noun", "ϫⲟⲙ", "", "", "", "strength"]) + let v = native_list_append(v, ["ⲕⲁⲗⲏ", "noun", "ⲕⲁⲗⲏ", "", "", "", "weasel"]) + let v = native_list_append(v, ["ϫⲓⲕⲣⲓⲥ", "noun", "ϫⲓⲕⲣⲓⲥ", "", "", "", "panther tiger"]) + let v = native_list_append(v, ["ⲏⲛ", "noun", "ⲏⲛ", "", "", "", "baboon"]) + let v = native_list_append(v, ["ⲁⲛⲁ", "noun", "ⲁⲛⲁ", "", "", "", "baboon"]) + let v = native_list_append(v, ["ⲭⲗⲟⲙ", "noun", "ⲭⲗⲟⲙ", "", "", "", "crown"]) + let v = native_list_append(v, ["ϩⲃⲟⲥ", "noun", "ϩⲃⲟⲥ", "", "", "", "robe"]) + let v = native_list_append(v, ["ⲥⲟⲩⲣⲓ", "noun", "ⲥⲟⲩⲣⲓ", "", "", "", "thorn"]) + let v = native_list_append(v, ["ϭⲏϫⲓ", "noun", "ϭⲏϫⲓ", "", "", "", "purple color purple"]) + let v = native_list_append(v, ["ϩⲉⲙϫ", "noun", "ϩⲉⲙϫ", "", "", "", "sour wine"]) + let v = native_list_append(v, ["ⲑⲉϣⲉⲩ", "noun", "ⲑⲉϣⲉⲩ", "", "", "", "plural of ⲑⲉϣⲉ"]) + let v = native_list_append(v, ["ⲙⲁⲓ", "noun", "ⲙⲁⲓ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲙⲁⲛⲛⲕⲟⲧⲕ", "noun", "ⲙⲁⲛⲛⲕⲟⲧⲕ", "", "", "", "place of lying"]) + let v = native_list_append(v, ["ϩⲱⲗ", "noun", "ϩⲱⲗ", "", "", "", "Horus the Egyptian"]) + let v = native_list_append(v, ["ϭⲟⲧ", "noun", "ϭⲟⲧ", "", "", "", "size age form"]) + let v = native_list_append(v, ["ϭⲟⲣⲧⲉ", "noun", "ϭⲟⲣⲧⲉ", "", "", "", "knife sword"]) + let v = native_list_append(v, ["ⲉⲃⲣⲏϭⲉ", "noun", "ⲉⲃⲣⲏϭⲉ", "", "", "", "lightning"]) + let v = native_list_append(v, ["ⲏϭⲉ", "noun", "ⲏϭⲉ", "", "", "", "leek"]) + let v = native_list_append(v, ["ⲉⲓⲟⲩⲗ", "noun", "ⲉⲓⲟⲩⲗ", "", "", "", "stag hart hind"]) + let v = native_list_append(v, ["ⲙϫⲱⲗ", "noun", "ⲙϫⲱⲗ", "", "", "", "onion"]) + let v = native_list_append(v, ["ⲙⲓⲥⲓ", "noun", "ⲙⲓⲥⲓ", "", "", "", "brood kind genus"]) + let v = native_list_append(v, ["ϫⲁϥϫⲓϥ", "noun", "ϫⲁϥϫⲓϥ", "", "", "", "ant"]) + let v = native_list_append(v, ["ⲡⲓⲛ", "noun", "ⲡⲓⲛ", "", "", "", "mouse"]) + let v = native_list_append(v, ["ⲡⲓⲧⲉ", "noun", "ⲡⲓⲧⲉ", "", "", "", "bow"]) + let v = native_list_append(v, ["ⲁⲛⲧⲁϣ", "noun", "ⲁⲛⲧⲁϣ", "", "", "", "sneeze"]) + let v = native_list_append(v, ["ⲁⲥⲫⲟⲩⲓ", "noun", "ⲁⲥⲫⲟⲩⲓ", "", "", "", "first year of"]) + let v = native_list_append(v, ["ⲃⲏ", "noun", "ⲃⲏ", "", "", "", "grave"]) + let v = native_list_append(v, ["ⲃⲁⲁⲙⲡⲉ", "noun", "ⲃⲁⲁⲙⲡⲉ", "", "", "", "goat"]) + let v = native_list_append(v, ["ⲃⲉⲛⲓⲡⲉ", "noun", "ⲃⲉⲛⲓⲡⲉ", "", "", "", "iron"]) + let v = native_list_append(v, ["ⲃⲁⲥⲛϭ", "noun", "ⲃⲁⲥⲛϭ", "", "", "", "tin"]) + let v = native_list_append(v, ["ⲑⲣⲁⲛ", "noun", "ⲑⲣⲁⲛ", "", "", "", "tin"]) + let v = native_list_append(v, ["ⲃⲁϣⲟⲩⲣ", "noun", "ⲃⲁϣⲟⲩⲣ", "", "", "", "saw"]) + let v = native_list_append(v, ["ⲫⲓϯ", "noun", "ⲫⲓϯ", "", "", "", "bow"]) + let v = native_list_append(v, ["ⲁⲛⲥⲏⲃⲉ", "noun", "ⲁⲛⲥⲏⲃⲉ", "", "", "", "school"]) + let v = native_list_append(v, ["ϩⲕⲟ", "noun", "ϩⲕⲟ", "", "", "", "hunger famine"]) + let v = native_list_append(v, ["ⲥⲁⲣⲡⲱⲧ", "noun", "ⲥⲁⲣⲡⲱⲧ", "", "", "", "lotus flower"]) + let v = native_list_append(v, ["ⲁⲛⲑⲁϣ", "noun", "ⲁⲛⲑⲁϣ", "", "", "", "sneeze"]) + let v = native_list_append(v, ["ϧⲱⲧⲉⲃ", "noun", "ϧⲱⲧⲉⲃ", "", "", "", "murder"]) + let v = native_list_append(v, ["ⲫⲓⲛ", "noun", "ⲫⲓⲛ", "", "", "", "mouse"]) + let v = native_list_append(v, ["ϣⲱϣⲉⲛ", "noun", "ϣⲱϣⲉⲛ", "", "", "", "lily waterlily lotus"]) + let v = native_list_append(v, ["ϩⲉⲃⲣⲁⲓⲟⲥ", "noun", "ϩⲉⲃⲣⲁⲓⲟⲥ", "", "", "", "Hebrew"]) + let v = native_list_append(v, ["ϩⲉⲃⲣⲉⲟⲥ", "noun", "ϩⲉⲃⲣⲉⲟⲥ", "", "", "", "Hebrew"]) + let v = native_list_append(v, ["ⲡⲓⲥⲛⲁⲩ", "noun", "ⲡⲓⲥⲛⲁⲩ", "", "", "", "Monday"]) + let v = native_list_append(v, ["ϫⲁϭⲏ", "noun", "ϫⲁϭⲏ", "", "", "", "left hand"]) + let v = native_list_append(v, ["ⲡⲁⲧϣⲉⲗⲉⲧ", "noun", "ⲡⲁⲧϣⲉⲗⲉⲧ", "", "", "", "bridegroom"]) + let v = native_list_append(v, ["ϣⲏⲣⲓ", "noun", "ϣⲏⲣⲓ", "", "", "", "boy"]) + let v = native_list_append(v, ["ⲥⲟⲩⲛⲟⲩϥⲉ", "noun", "ⲥⲟⲩⲛⲟⲩϥⲉ", "", "", "", "good star"]) + let v = native_list_append(v, ["ⲥⲟⲩϧⲁⲛ", "noun", "ⲥⲟⲩϧⲁⲛ", "", "", "", "agreeable star"]) + let v = native_list_append(v, ["ⲥⲟⲩⲃⲱⲛ", "noun", "ⲥⲟⲩⲃⲱⲛ", "", "", "", "evil star"]) + let v = native_list_append(v, ["ⲥⲟⲩϫⲁϫⲉ", "noun", "ⲥⲟⲩϫⲁϫⲉ", "", "", "", "hostile star"]) + let v = native_list_append(v, ["ϫⲉⲫⲣⲟ", "noun", "ϫⲉⲫⲣⲟ", "", "", "", "farm"]) + let v = native_list_append(v, ["ϣⲉⲙϣⲓ", "noun", "ϣⲉⲙϣⲓ", "", "", "", "worship"]) + let v = native_list_append(v, ["ⲗⲁⲙⲡⲓ", "noun", "ⲗⲁⲙⲡⲓ", "", "", "", "year"]) + let v = native_list_append(v, ["ⲣⲉ", "noun", "ⲣⲉ", "", "", "", "the sun"]) + let v = native_list_append(v, ["ⲗⲉⲧ⸗", "noun", "ⲗⲉⲧ⸗", "", "", "", "foot"]) + let v = native_list_append(v, ["ⲙⲁⲣⲓⲁ", "noun", "ⲙⲁⲣⲓⲁ", "", "", "", "Mary mother of"]) + let v = native_list_append(v, ["ⲣⲓⲙⲓ", "noun", "ⲣⲓⲙⲓ", "", "", "", "lamentation weeping"]) + let v = native_list_append(v, ["ϯⲕⲁϣⲣⲱⲙⲓ", "noun", "ϯⲕⲁϣⲣⲱⲙⲓ", "", "", "", "Cairo the capital"]) + let v = native_list_append(v, ["ⲡⲉⲓⲟⲙ", "noun", "ⲡⲉⲓⲟⲙ", "", "", "", "Faiyum"]) + let v = native_list_append(v, ["ⲁϫⲱ", "noun", "ⲁϫⲱ", "", "", "", "viper"]) + let v = native_list_append(v, ["ϣϣⲏⲛ", "noun", "ϣϣⲏⲛ", "", "", "", "tree"]) + let v = native_list_append(v, ["ⲟⲩⲧⲁϩ", "noun", "ⲟⲩⲧⲁⲩϩ", "", "", "", "fruit crop produce"]) + let v = native_list_append(v, ["ⲥⲟⲩⲟ", "noun", "ⲥⲟⲩⲟ", "", "", "", "wheat"]) + let v = native_list_append(v, ["ⲥⲙⲏ", "noun", "ⲥⲙⲏ", "", "", "", "voice of men"]) + let v = native_list_append(v, ["ⲕⲟⲓ", "noun", "ⲕⲟⲓ", "", "", "", "field pasture"]) + let v = native_list_append(v, ["ⲥⲟⲩ", "noun", "ⲥⲟⲩ", "", "", "", "star"]) + let v = native_list_append(v, ["ⲟⲩϫⲁⲓ", "noun", "ⲟⲩϫⲁⲓ", "", "", "", "health well-being"]) + let v = native_list_append(v, ["ϩⲉⲗⲗⲏⲛ", "noun", "ϩⲉⲗⲗⲏⲛ", "", "", "", "a Greek"]) + let v = native_list_append(v, ["ⲣⲱⲙⲁⲓⲟⲥ", "noun", "ⲣⲱⲙⲁⲓⲟⲥ", "", "", "", "a Roman"]) + let v = native_list_append(v, ["ⲃⲁⲣⲃⲁⲣⲟⲥ", "noun", "ⲃⲁⲣⲃⲁⲣⲟⲥ", "", "", "", "a foreigner"]) + let v = native_list_append(v, ["ⲥⲏϫ", "noun", "ⲥⲏϫ", "", "", "", "colt foal"]) + let v = native_list_append(v, ["ⲙⲉⲧⲙⲁⲓⲣⲱⲙⲓ", "noun", "ⲙⲉⲧⲙⲁⲓⲣⲱⲙⲓ", "", "", "", "kindness philanthropy"]) + let v = native_list_append(v, ["ⲫⲓⲟⲙ", "noun", "ⲫⲓⲟⲙ", "", "", "", "Fayum a region"]) + let v = native_list_append(v, ["ⲑⲱⲑ", "noun", "ⲑⲱⲑ", "", "", "", "Thoth the Egyptian"]) + let v = native_list_append(v, ["ⲑⲱⲟⲩⲧ", "noun", "ⲑⲱⲟⲩⲧ", "", "", "", "Thoth the Egyptian"]) + let v = native_list_append(v, ["ⲁⲃⲟⲧ", "noun", "ⲁⲃⲟⲧ", "", "", "", "month"]) + let v = native_list_append(v, ["ⲡⲁⲱⲡⲓ", "noun", "ⲡⲁⲱⲡⲓ", "", "", "", "February."]) + let v = native_list_append(v, ["ϩⲁⲑⲱⲣ", "noun", "ϩⲁⲑⲱⲣ", "", "", "", "Hathor the goddess"]) + let v = native_list_append(v, ["ⲭⲟⲓⲁⲕ", "noun", "ⲭⲟⲓⲁⲕ", "", "", "", "April."]) + let v = native_list_append(v, ["ⲧⲱⲃⲓ", "noun", "ⲧⲱⲃⲓ", "", "", "", "brick adobe"]) + let v = native_list_append(v, ["ⲙⲉⲭⲓⲣ", "noun", "ⲙⲉⲭⲓⲣ", "", "", "", "June."]) + let v = native_list_append(v, ["ⲙⲉϣⲓⲣ", "noun", "ⲙⲉϣⲓⲣ", "", "", "", "June."]) + let v = native_list_append(v, ["ⲡⲁⲱⲡⲉ", "noun", "ⲡⲁⲱⲡⲉ", "", "", "", "February."]) + let v = native_list_append(v, ["ⲕⲟⲓⲁⲕ", "noun", "ⲕⲟⲓⲁⲕ", "", "", "", "April."]) + let v = native_list_append(v, ["ⲫⲁⲙⲉⲛⲱⲑ", "noun", "ⲫⲁⲙⲉⲛⲱⲑ", "", "", "", "July."]) + let v = native_list_append(v, ["ⲡⲁⲣⲉⲙϩⲟⲧⲡ", "noun", "ⲡⲁⲣⲉⲙϩⲟⲧⲡ", "", "", "", "July."]) + let v = native_list_append(v, ["ⲡⲁⲣⲙⲟⲩⲑⲓ", "noun", "ⲡⲁⲣⲙⲟⲩⲑⲓ", "", "", "", "August."]) + let v = native_list_append(v, ["ⲡⲁϣⲟⲛⲥ", "noun", "ⲡⲁϣⲟⲛⲥ", "", "", "", "September."]) + let v = native_list_append(v, ["ⲡⲁⲱⲛⲓ", "noun", "ⲡⲁⲱⲛⲓ", "", "", "", "October."]) + let v = native_list_append(v, ["ⲉⲡⲏⲡ", "noun", "ⲉⲡⲏⲡ", "", "", "", "November eleventh month"]) + let v = native_list_append(v, ["ⲙⲉⲥⲱⲣⲓ", "noun", "ⲙⲉⲥⲱⲣⲓ", "", "", "", "December."]) + let v = native_list_append(v, ["ⲡⲓⲕⲟⲩϫⲓ ⲛⲁⲃⲟⲧ", "noun", "ⲡⲓⲕⲟⲩϫⲓ ⲛⲁⲃⲟⲧ", "", "", "", "Literally The Little"]) + let v = native_list_append(v, ["ⲡⲁⲟⲡⲓ", "noun", "ⲡⲁⲟⲡⲓ", "", "", "", "February."]) + let v = native_list_append(v, ["ⲓⲁⲛⲟⲩⲁⲣⲓⲟⲥ", "noun", "ⲓⲁⲛⲟⲩⲁⲣⲓⲟⲥ", "", "", "", "January."]) + let v = native_list_append(v, ["ⲫⲉⲃⲣⲟⲩⲁⲣⲓⲟⲥ", "noun", "ⲫⲉⲃⲣⲟⲩⲁⲣⲓⲟⲥ", "", "", "", "February."]) + let v = native_list_append(v, ["ⲙⲁⲣⲧⲓⲟⲥ", "noun", "ⲙⲁⲣⲧⲓⲟⲥ", "", "", "", "March."]) + let v = native_list_append(v, ["ⲁⲡⲣⲓⲗⲓⲟⲥ", "noun", "ⲁⲡⲣⲓⲗⲓⲟⲥ", "", "", "", "April."]) + let v = native_list_append(v, ["ⲙⲁⲓⲟⲥ", "noun", "ⲙⲁⲓⲟⲥ", "", "", "", "May."]) + let v = native_list_append(v, ["ⲓⲟⲩⲛⲓⲟⲥ", "noun", "ⲓⲟⲩⲛⲓⲟⲥ", "", "", "", "June."]) + let v = native_list_append(v, ["ⲓⲟⲩⲗⲓⲟⲥ", "noun", "ⲓⲟⲩⲗⲓⲟⲥ", "", "", "", "July."]) + let v = native_list_append(v, ["ⲥⲉⲡⲧⲉⲙⲃⲣⲓⲟⲥ", "noun", "ⲥⲉⲡⲧⲉⲙⲃⲣⲓⲟⲥ", "", "", "", "September."]) + let v = native_list_append(v, ["ⲟⲕⲧⲱⲃⲣⲓⲟⲥ", "noun", "ⲟⲕⲧⲱⲃⲣⲓⲟⲥ", "", "", "", "October."]) + let v = native_list_append(v, ["ⲛⲟⲉⲙⲃⲣⲓⲟⲥ", "noun", "ⲛⲟⲉⲙⲃⲣⲓⲟⲥ", "", "", "", "November."]) + let v = native_list_append(v, ["ⲇⲉⲕⲉⲙⲃⲣⲓⲟⲥ", "noun", "ⲇⲉⲕⲉⲙⲃⲣⲓⲟⲥ", "", "", "", "December."]) + let v = native_list_append(v, ["ⲟⲩⲥⲓⲣⲓ", "noun", "ⲟⲩⲥⲓⲣⲓ", "", "", "", "Osiris the Egyptian"]) + let v = native_list_append(v, ["ⲏⲥⲓ", "noun", "ⲏⲥⲓ", "", "", "", "Isis the Egyptian"]) + let v = native_list_append(v, ["ⲥⲟⲩⲕ", "noun", "ⲥⲟⲩⲕ", "", "", "", "Sobek the Egyptian"]) + let v = native_list_append(v, ["ⲡⲑⲁϩ", "noun", "ⲡⲑⲁϩ", "", "", "", "Ptah the Egyptian"]) + let v = native_list_append(v, ["ⲁⲙⲟⲩⲛ", "noun", "ⲁⲙⲟⲩⲛ", "", "", "", "Amun the hidden"]) + let v = native_list_append(v, ["ⲛⲏⲑ", "noun", "ⲛⲏⲑ", "", "", "", "Neith the Egyptian"]) + let v = native_list_append(v, ["ϣⲟⲛⲥ", "noun", "ϣⲟⲛⲥ", "", "", "", "Khonsu the Egyptian"]) + let v = native_list_append(v, ["ⲁⲛⲟⲩⲃ", "noun", "ⲁⲛⲟⲩⲃ", "", "", "", "Anubis the Egyptian"]) + let v = native_list_append(v, ["ⲥⲏⲧ", "noun", "ⲥⲏⲧ", "", "", "", "Set the Egyptian"]) + let v = native_list_append(v, ["ⲙⲏⲓ", "noun", "ⲙⲏⲓ", "", "", "", "truth"]) + let v = native_list_append(v, ["ⲥⲟⲩⲕⲏ", "noun", "ⲥⲟⲩⲕⲏ", "", "", "", "Sobek the Egyptian"]) + let v = native_list_append(v, ["ⲙⲟⲗⲟⲭ", "noun", "ⲙⲟⲗⲟⲭ", "", "", "", "the planet Mars."]) + let v = native_list_append(v, ["ⲣⲏⲫⲁⲛ", "noun", "ⲣⲏⲫⲁⲛ", "", "", "", "the god Remphan."]) + let v = native_list_append(v, ["ⲙⲉⲥⲟⲡⲟⲧⲁⲙⲓⲁ", "noun", "ⲙⲉⲥⲟⲡⲟⲧⲁⲙⲓⲁ", "", "", "", "Mesopotamia"]) + let v = native_list_append(v, ["ϩⲩⲅⲟⲩⲙⲉⲛⲟⲥ", "noun", "ϩⲩⲅⲟⲩⲙⲉⲛⲟⲥ", "", "", "", "hegemon ruler governor"]) + let v = native_list_append(v, ["ϩⲃⲱⲛ", "noun", "ϩⲃⲱⲛ", "", "", "", "trouble"]) + let v = native_list_append(v, ["ⲙⲉⲧⲓⲱⲧ", "noun", "ⲙⲉⲧⲓⲱⲧ", "", "", "", "family fatherhood"]) + let v = native_list_append(v, ["ⲧⲓⲙⲏⲛϩⲁⲧ", "noun", "ⲧⲓⲙⲏⲛϩⲁⲧ", "", "", "", "sum of money"]) + let v = native_list_append(v, ["ⲑⲗⲩⲯⲓⲥ", "noun", "ⲑⲗⲩⲯⲓⲥ", "", "", "", "trouble affliction"]) + let v = native_list_append(v, ["ⲥⲏⲟⲩ", "noun", "ⲥⲏⲟⲩ", "", "", "", "time season"]) + let v = native_list_append(v, ["ⲕⲟⲩϫⲓ ⲛⲁⲗⲟⲩ", "noun", "ⲕⲟⲩϫⲓ ⲛⲁⲗⲱⲟⲩⲓ", "", "", "", "baby"]) + let v = native_list_append(v, ["ϩⲱⲧⲡ", "noun", "ϩⲱⲧⲡ", "", "", "", "reconciliation peace"]) + let v = native_list_append(v, ["ϣⲁϩ", "noun", "ϣⲁϩ", "", "", "", "a flame"]) + let v = native_list_append(v, ["ⲃⲁⲧⲟⲥ", "noun", "ⲃⲁⲧⲟⲥ", "", "", "", "bush bramble"]) + let v = native_list_append(v, ["ⲣⲉϥϯϩⲁⲡ", "noun", "ⲣⲉϥϯϩⲁⲡ", "", "", "", "a judge"]) + let v = native_list_append(v, ["ⲫⲓⲟⲙ ⲛϣⲁⲣⲓ", "noun", "ⲫⲓⲟⲙ ⲛϣⲁⲣⲓ", "", "", "", "the Red Sea"]) + let v = native_list_append(v, ["ϣⲟⲩϣⲱⲟⲩϣⲓ", "noun", "ϣⲟⲩϣⲱⲟⲩϣⲓ", "", "", "", "a sacrifice"]) + let v = native_list_append(v, ["ⲁⲧⲕⲱⲃ", "noun", "ⲁⲧⲕⲱⲃ", "", "", "", "unleavened bread"]) + let v = native_list_append(v, ["ⲃⲱⲕⲓ", "noun", "ⲃⲱⲕⲓ", "", "", "", "female servant female"]) + let v = native_list_append(v, ["ⲁⲗⲟⲩ ⲙⲃⲱⲕⲓ", "noun", "ⲁⲗⲟⲩ ⲙⲃⲱⲕⲓ", "", "", "", "slave girl"]) + let v = native_list_append(v, ["ⲡⲩⲗⲱⲛ", "noun", "ⲡⲩⲗⲱⲛ", "", "", "", "gate"]) + let v = native_list_append(v, ["ⲇⲓⲱⲅⲙⲟⲥ", "noun", "ⲇⲓⲱⲅⲙⲟⲥ", "", "", "", "persecution"]) + let v = native_list_append(v, ["ⲣⲉϥⲉⲣϩⲟϯ", "noun", "ⲣⲉϥⲉⲣϩⲟϯ", "", "", "", "a fearing person"]) + let v = native_list_append(v, ["ⲭⲣⲏⲙⲁ", "noun", "ⲭⲣⲏⲙⲁ", "", "", "", "money"]) + let v = native_list_append(v, ["ⲙⲉⲩⲓ", "noun", "ⲙⲉⲩⲓ", "", "", "", "a thought"]) + let v = native_list_append(v, ["ⲓⲉⲃⲧ", "noun", "ⲓⲉⲃⲧ", "", "", "", "east"]) + let v = native_list_append(v, ["ⲙⲉⲣⲓ", "noun", "ⲙⲉⲣⲓ", "", "", "", "noon"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛϫⲟⲙ", "noun", "ⲣⲉⲙⲛϫⲟⲙ", "", "", "", "a powerful person"]) + let v = native_list_append(v, ["ⲉⲑⲁⲩϣ", "noun", "ⲉⲑⲁⲩϣ", "", "", "", "plural of ⲉⲑⲱϣ"]) + let v = native_list_append(v, ["ⲉⲑⲱϣ", "noun", "ⲉⲑⲁⲩϣ", "", "", "", "Ethiopian Nubian"]) + let v = native_list_append(v, ["ϩⲁⲣⲙⲁ", "noun", "ϩⲁⲣⲙⲁ", "", "", "", "chariot"]) + let v = native_list_append(v, ["ⲅⲁⲍⲁ", "noun", "ⲅⲁⲍⲁ", "", "", "", "treasury treasure"]) + let v = native_list_append(v, ["ⲙⲱⲓⲧ", "noun", "ⲙⲓⲧⲱⲟⲩⲓ", "", "", "", "road path way"]) + let v = native_list_append(v, ["ϫⲱⲛⲧ", "noun", "ϫⲱⲛⲧ", "", "", "", "threat"]) + let v = native_list_append(v, ["ϧⲓⲣ", "noun", "ϧⲓⲣ", "", "", "", "street"]) + let v = native_list_append(v, ["ⲃⲁⲕϣⲁⲣ", "noun", "ⲃⲁⲕϣⲁⲣ", "", "", "", "a tanner"]) + let v = native_list_append(v, ["ⲉⲕⲁⲧⲟⲛⲧⲁⲣⲭⲟⲥ", "noun", "ⲉⲕⲁⲧⲟⲛⲧⲁⲣⲭⲟⲥ", "", "", "", "a centurion"]) + let v = native_list_append(v, ["ⲙⲉⲧⲃⲱⲕ", "noun", "ⲙⲉⲧⲃⲱⲕ", "", "", "", "servitude"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲉⲙϩⲉ", "noun", "ⲙⲉⲧⲣⲉⲙϩⲉ", "", "", "", "freedom"]) + let v = native_list_append(v, ["ⲃⲱϣ", "noun", "ⲃⲱϣ", "", "", "", "nakedness"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛⲭⲏⲙⲓ", "noun", "ⲣⲉⲙⲛⲭⲏⲙⲓ", "", "", "", "an Egyptian"]) + let v = native_list_append(v, ["ⲃⲱⲧⲥ", "noun", "ⲃⲱⲧⲥ", "", "", "", "war"]) + let v = native_list_append(v, ["ⲥⲧⲣⲁⲧⲉⲩⲙⲁ", "noun", "ⲥⲧⲣⲁⲧⲉⲩⲙⲁ", "", "", "", "army"]) + let v = native_list_append(v, ["ⲣⲱⲇⲏ", "noun", "ⲣⲱⲇⲏ", "", "", "", "Rhoda a female"]) + let v = native_list_append(v, ["ⲡⲱⲡⲗⲓⲟⲥ", "noun", "ⲡⲱⲡⲗⲓⲟⲥ", "", "", "", "a Roman name"]) + let v = native_list_append(v, ["ⲫⲓⲗⲓⲡⲡⲟⲥ", "noun", "ⲫⲓⲗⲓⲡⲡⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲙⲉⲧϩⲉⲃⲣⲉⲟⲥ", "noun", "ⲙⲉⲧϩⲉⲃⲣⲉⲟⲥ", "", "", "", "the Hebrew language"]) + let v = native_list_append(v, ["ⲙⲉⲧⲟⲩⲉⲓⲛⲓⲛ", "noun", "ⲙⲉⲧⲟⲩⲉⲓⲛⲓⲛ", "", "", "", "Hellenism the Greek"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲉⲙⲛⲭⲏⲙⲓ", "noun", "ⲙⲉⲧⲣⲉⲙⲛⲭⲏⲙⲓ", "", "", "", "The Coptic language"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲱⲙⲉⲟⲥ", "noun", "ⲙⲉⲧⲣⲱⲙⲉⲟⲥ", "", "", "", "the Roman culture"]) + let v = native_list_append(v, ["ⲛⲁⲏⲧ", "noun", "ⲛⲁⲏⲧ", "", "", "", "meal"]) + let v = native_list_append(v, ["ⲣⲉⲙⲃⲁⲕⲓ", "noun", "ⲣⲉⲙⲃⲁⲕⲓ", "", "", "", "citizen"]) + let v = native_list_append(v, ["ⲛⲟⲩⲣⲓ", "noun", "ⲛⲟⲩⲣⲓ", "", "", "", "vulture"]) + let v = native_list_append(v, ["ϩⲓⲃⲱⲓ", "noun", "ϩⲓⲃⲱⲓ", "", "", "", "ibis"]) + let v = native_list_append(v, ["ⲙⲉⲧⲁⲭⲱ", "noun", "ⲙⲉⲧⲁⲭⲱ", "", "", "", "magic"]) + let v = native_list_append(v, ["ⲣⲉⲙϩⲉ", "noun", "ⲣⲙϩⲉⲩ", "", "", "", "freeman"]) + let v = native_list_append(v, ["ⲥⲟⲩⲣⲟⲧ", "noun", "ⲥⲟⲩⲣⲟⲧ", "", "", "", "the evening star"]) + let v = native_list_append(v, ["ⲥⲟⲩⲭⲓ", "noun", "ⲥⲟⲩⲭⲓ", "", "", "", "crocodile."]) + let v = native_list_append(v, ["ⲁⲛⲧⲱⲣⲓ", "noun", "ⲁⲛⲧⲱⲣⲓ", "", "", "", "an adult man"]) + let v = native_list_append(v, ["ⲙⲉⲛⲣⲁϯ", "noun", "ⲙⲉⲛⲣⲁϯ", "", "", "", "plural of ⲙⲉⲛⲣⲓⲧ"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲉϥⲉⲣϩⲱⲃ", "noun", "ⲙⲉⲧⲣⲉϥⲉⲣϩⲱⲃ", "", "", "", "culture"]) + let v = native_list_append(v, ["ⲣⲉϥⲉⲣⲫⲁϩⲣⲓ", "noun", "ⲣⲉϥⲉⲣⲫⲁϩⲣⲓ", "", "", "", "a medical doctor"]) + let v = native_list_append(v, ["ⲣⲉϥⲉⲙⲓ", "noun", "ⲣⲉϥⲉⲙⲓ", "", "", "", "knower one who"]) + let v = native_list_append(v, ["ⲣⲉϥⲉⲛⲕⲟⲧ", "noun", "ⲣⲉϥⲉⲛⲕⲟⲧ", "", "", "", "a concubine"]) + let v = native_list_append(v, ["ⲣⲉϥⲃⲱⲗ", "noun", "ⲣⲉϥⲃⲱⲗ", "", "", "", "an interpreter"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛⲣⲁⲧⲟⲩ", "noun", "ⲣⲉⲙⲛⲣⲁⲧⲟⲩ", "", "", "", "pedestrian"]) + let v = native_list_append(v, ["ⲣⲉⲙⲥⲙⲏ", "noun", "ⲣⲉⲙⲥⲙⲏ", "", "", "", "a famous person"]) + let v = native_list_append(v, ["ⲥⲱⲛⲧ", "noun", "ⲥⲱⲛⲧ", "", "", "", "creation"]) + let v = native_list_append(v, ["ⲣⲉϥⲥⲟⲡⲥⲉⲡ", "noun", "ⲣⲉϥⲥⲟⲡⲥⲉⲡ", "", "", "", "a seductor"]) + let v = native_list_append(v, ["ⲙⲉⲧⲁⲑⲙⲟⲩ", "noun", "ⲙⲉⲧⲁⲑⲙⲟⲩ", "", "", "", "immortality"]) + let v = native_list_append(v, ["ϫⲱϫ", "noun", "ϫⲱϫ", "", "", "", "baked bread"]) + let v = native_list_append(v, ["ⲥⲁⲉⲓⲣ", "noun", "ⲥⲁⲉⲓⲣ", "", "", "", "cheese"]) + let v = native_list_append(v, ["ⲥⲓⲱⲟⲩⲛⲓ", "noun", "ⲥⲓⲱⲟⲩⲛⲓ", "", "", "", "bath bathroom"]) + let v = native_list_append(v, ["ⲥⲓⲱⲑⲓ", "noun", "ⲥⲓⲱⲑⲓ", "", "", "", "Sirius A bluish-white"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛⲣⲁⲛ", "noun", "ⲣⲉⲙⲛⲣⲁⲛ", "", "", "", "a dignitary office"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛϩⲱⲃ", "noun", "ⲣⲉⲙⲛϩⲱⲃ", "", "", "", "a messenger"]) + let v = native_list_append(v, ["ⲣⲉⲙⲡⲓϣⲁϥⲉ", "noun", "ⲣⲉⲙⲡⲓϣⲁϥⲉ", "", "", "", "a desert inhabitant"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛⲧⲱⲟⲩ", "noun", "ⲣⲉⲙⲛⲧⲱⲟⲩ", "", "", "", "a mountain man"]) + let v = native_list_append(v, ["ⲣⲉⲙⲛⲕⲟⲓ", "noun", "ⲣⲉⲙⲛⲕⲟⲓ", "", "", "", "a country dweller"]) + let v = native_list_append(v, ["ⲣⲉϥⲥⲱⲛⲧ", "noun", "ⲣⲉϥⲥⲱⲛⲧ", "", "", "", "a creator"]) + let v = native_list_append(v, ["ⲉⲣⲃⲓⲥⲓ", "noun", "ⲉⲣⲃⲓⲥⲓ", "", "", "", "cannabis hemp"]) + let v = native_list_append(v, ["ⲥⲁⲓⲣⲉ", "noun", "ⲥⲁⲓⲣⲉ", "", "", "", "butter"]) + let v = native_list_append(v, ["ϭⲉⲗⲓ", "noun", "ϭⲉⲗⲓ", "", "", "", "butter"]) + let v = native_list_append(v, ["ⲛⲟϥⲣⲓ", "noun", "ⲛⲟϥⲣⲓ", "", "", "", "good benefit advantage"]) + let v = native_list_append(v, ["ⲉⲣϩⲱⲃ", "noun", "ⲉⲣϩⲱⲃ", "", "", "", "operation usage"]) + let v = native_list_append(v, ["ⲣⲉϥⲉⲣϩⲱⲃ", "noun", "ⲣⲉϥⲉⲣϩⲱⲃ", "", "", "", "an operator user"]) + let v = native_list_append(v, ["ϭⲱⲣ", "noun", "ϭⲱⲣ", "", "", "", "smoke"]) + let v = native_list_append(v, ["ⲙⲉⲗⲁ", "noun", "ⲙⲉⲗⲁ", "", "", "", "papyrus paper"]) + let v = native_list_append(v, ["ⲙⲁⲛⲥⲁϩϯ", "noun", "ⲙⲁⲛⲥⲁϩϯ", "", "", "", "kitchen"]) + let v = native_list_append(v, ["ⲙⲁⲛⲉⲣⲟⲩⲱⲓⲛⲓ", "noun", "ⲙⲁⲛⲉⲣⲟⲩⲱⲓⲛⲓ", "", "", "", "window"]) + let v = native_list_append(v, ["ⲙⲁⲛⲙⲟϣⲓ", "noun", "ⲙⲁⲛⲙⲟϣⲓ", "", "", "", "trip"]) + let v = native_list_append(v, ["ⲁⲙⲉⲛϯ", "noun", "ⲁⲙⲉⲛϯ", "", "", "", "the afterlife underworld"]) + let v = native_list_append(v, ["ⲣⲉϥⲥⲁϫⲓ", "noun", "ⲣⲉϥⲥⲁϫⲓ", "", "", "", "a speaker orator"]) + let v = native_list_append(v, ["ϩⲁϭⲉ", "noun", "ϩⲁϭⲉ", "", "", "", "snare"]) + let v = native_list_append(v, ["ϩⲁϫⲓ", "noun", "ϩⲁϫⲓ", "", "", "", "snare"]) + let v = native_list_append(v, ["ⲏϫⲓ", "noun", "ⲏϫⲓ", "", "", "", "leek"]) + let v = native_list_append(v, ["ⲟⲩⲁϩⲥⲟⲓ", "noun", "ⲟⲩⲁϩⲥⲟⲓ", "", "", "", "roof"]) + let v = native_list_append(v, ["ⲏⲡⲓ", "noun", "ⲏⲡⲓ", "", "", "", "number"]) + let v = native_list_append(v, ["ⲕⲗⲏ", "noun", "ⲕⲗⲏ", "", "", "", "cat"]) + let v = native_list_append(v, ["ⲙⲁϫⲉ ⲕⲗⲏ", "noun", "ⲙⲁϫⲉ ⲕⲗⲏ", "", "", "", "cats ear Hypochaeris"]) + let v = native_list_append(v, ["ⲟⲩⲁϩⲉ", "noun", "ⲟⲩⲁϩⲉ", "", "", "", "oasis"]) + let v = native_list_append(v, ["ⲟⲩⲟϯ", "noun", "ⲟⲩⲟϯ", "", "", "", "plant"]) + let v = native_list_append(v, ["ⲁϩⲟ", "noun", "ⲁϩⲱⲣ", "", "", "", "treasure"]) + let v = native_list_append(v, ["ⲓⲁϩⲁⲗⲟⲗⲓ", "noun", "ⲓⲁϩⲁⲗⲟⲗⲓ", "", "", "", "vineyard"]) + let v = native_list_append(v, ["ⲙⲁⲕⲓⲣⲟⲥ", "noun", "ⲙⲁⲕⲓⲣⲟⲥ", "", "", "", "a cook"]) + let v = native_list_append(v, ["ⲥⲃⲉ", "noun", "ⲥⲃⲉ", "", "", "", "atrium"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲱⲙⲁⲓⲟⲥ", "noun", "ⲙⲉⲧⲣⲱⲙⲁⲓⲟⲥ", "", "", "", "the Roman culture"]) + let v = native_list_append(v, ["ⲙⲛⲧⲕⲩⲡⲧⲁⲓⲟⲛ", "noun", "ⲙⲛⲧⲕⲩⲡⲧⲁⲓⲟⲛ", "", "", "", "the Coptic culture"]) + let v = native_list_append(v, ["ⲉⲓⲉⲃⲧ", "noun", "ⲉⲓⲉⲃⲧ", "", "", "", "east"]) + let v = native_list_append(v, ["ⲣⲏⲥ", "noun", "ⲣⲏⲥ", "", "", "", "south"]) + let v = native_list_append(v, ["ⲃⲟⲩⲗⲓⲁⲑⲏⲕⲏ", "noun", "ⲃⲟⲩⲗⲓⲁⲑⲏⲕⲏ", "", "", "", "library"]) + let v = native_list_append(v, ["ⲃⲁϣⲓ", "noun", "ⲃⲁϣⲓ", "", "", "", "cadaver"]) + let v = native_list_append(v, ["ⲕⲗⲉⲟⲡⲁⲧⲣⲁ", "noun", "ⲕⲗⲉⲟⲡⲁⲧⲣⲁ", "", "", "", "Cleopatra a female"]) + let v = native_list_append(v, ["ⲕⲗⲉⲟⲡⲁⲧⲣⲟⲥ", "noun", "ⲕⲗⲉⲟⲡⲁⲧⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϫⲟⲟⲩϥ", "noun", "ϫⲟⲟⲩϥ", "", "", "", "papyrus"]) + let v = native_list_append(v, ["ⲙⲏⲧⲉ", "noun", "ⲙⲏⲧⲉ", "", "", "", "middle midst"]) + let v = native_list_append(v, ["ⲁⲫⲱⲫ", "noun", "ⲁⲫⲱⲫⲓ", "", "", "", "giant"]) + let v = native_list_append(v, ["ⲕⲁϫⲱⲧ", "noun", "ⲕⲁϫⲱⲧ", "", "", "", "Gaza a city"]) + let v = native_list_append(v, ["ⲥⲱⲡⲉ", "noun", "ⲥⲱⲡⲉ", "", "", "", "edge"]) + let v = native_list_append(v, ["ⲗⲱⲃϣ", "noun", "ⲗⲱⲃϣ", "", "", "", "crown coping battlement"]) + let v = native_list_append(v, ["ⲙⲩⲥⲑⲏⲣ", "noun", "ⲙⲩⲥⲑⲏⲣ", "", "", "", "spoon"]) + let v = native_list_append(v, ["ⲙⲏⲭⲁⲛⲏ", "noun", "ⲙⲏⲭⲁⲛⲏ", "", "", "", "machine"]) + let v = native_list_append(v, ["ϩⲟⲓ", "noun", "ⲉϩⲏⲟⲩ (ehēou)", "", "", "", "field arable land"]) + let v = native_list_append(v, ["ⲥⲟⲃϯ", "noun", "ⲥⲟⲃϯ", "", "", "", "preparation furniture"]) + let v = native_list_append(v, ["ⲑⲏⲟⲩ", "noun", "ⲑⲏⲟⲩ", "", "", "", "wind breath"]) + let v = native_list_append(v, ["ⲧⲏⲩ", "noun", "ⲧⲏⲩ", "", "", "", "wind breath"]) + let v = native_list_append(v, ["ⲙⲉⲉⲣⲉ", "noun", "ⲙⲉⲉⲣⲉ", "", "", "", "noon midday"]) + let v = native_list_append(v, ["ϭⲃⲟⲓ", "noun", "ϭⲃⲟⲓ", "", "", "", "arm"]) + let v = native_list_append(v, ["ϧⲁ", "noun", "ϧⲁ", "", "", "", "heel"]) + let v = native_list_append(v, ["ⲟⲩⲟⲉⲓⲉ", "noun", "ⲟⲩⲉⲉⲓⲏ", "", "", "", "husbandman cultivator"]) + let v = native_list_append(v, ["ⲃⲁⲁⲣⲉ", "noun", "ⲃⲁⲁⲣⲉ", "", "", "", "boat barge"]) + let v = native_list_append(v, ["ⲃⲁⲣⲓ", "noun", "ⲃⲁⲣⲓ", "", "", "", "boat barge"]) + let v = native_list_append(v, ["ⲥⲁϩ", "noun", "ⲥⲁϩ", "", "", "", "teacher scribe"]) + let v = native_list_append(v, ["ⲥⲓⲛⲓ", "noun", "ⲥⲓⲛⲓ", "", "", "", "passing afternoon"]) + let v = native_list_append(v, ["ⲥⲓⲛⲉ", "noun", "ⲥⲓⲛⲉ", "", "", "", "passing afternoon"]) + let v = native_list_append(v, ["ⲧⲱⲣⲓ", "noun", "ⲧⲱⲣⲓ", "", "", "", "hand"]) + let v = native_list_append(v, ["ⲧⲟⲩⲱⲧ", "noun", "ⲧⲟⲩⲱⲧ", "", "", "", "idol pillar"]) + let v = native_list_append(v, ["ⲑⲟⲩⲱⲧ", "noun", "ⲑⲟⲩⲱⲧ", "", "", "", "idol pillar statue"]) + let v = native_list_append(v, ["ⲟⲩⲱϣⲧ", "noun", "ⲟⲩⲱϣⲧ", "", "", "", "salutation obeisance"]) + let v = native_list_append(v, ["ϫⲉⲙⲫⲉϩ", "noun", "ϫⲉⲙⲫⲉϩ", "", "", "", "apple"]) + let v = native_list_append(v, ["ϫⲙⲡⲉϩ", "noun", "ϫⲙ̄ⲡⲉϩ", "", "", "", "apple"]) + let v = native_list_append(v, ["ⲉⲣϫ", "noun", "ⲉⲣϫ", "", "", "", "chicken"]) + let v = native_list_append(v, ["ⲏⲣϫ", "noun", "ⲏⲣϫ", "", "", "", "chicken"]) + let v = native_list_append(v, ["ⲕⲉϣ", "noun", "ⲕⲉϣ", "", "", "", "reed rush particularly"]) + let v = native_list_append(v, ["ⲉⲙⲥⲁϩ", "noun", "ⲉⲙⲥⲁϩ", "", "", "", "crocodile"]) + let v = native_list_append(v, ["ⲕⲉⲙⲧⲟ", "noun", "ⲕⲉⲙⲧⲟ", "", "", "", "moving of the"]) + let v = native_list_append(v, ["ⲕⲙⲧⲟ", "noun", "ⲕⲙⲧⲟ", "", "", "", "moving of the"]) + let v = native_list_append(v, ["ⲕⲣⲁⲙⲃⲏ", "noun", "ⲕⲣⲁⲙⲃⲏ", "", "", "", "cabbage"]) + let v = native_list_append(v, ["ⲕⲣⲁⲙⲃⲉ", "noun", "ⲕⲣⲁⲙⲃⲉ", "", "", "", "cabbage"]) + let v = native_list_append(v, ["ⲥⲁ", "noun", "ⲥⲁ", "", "", "", "man"]) + let v = native_list_append(v, ["ϩⲧⲟⲟⲩⲉ", "noun", "ϩⲧⲟⲟⲩⲉ", "", "", "", "dawn morning"]) + let v = native_list_append(v, ["ϧⲣⲱⲟⲩ", "noun", "ϧⲣⲱⲟⲩ", "", "", "", "voice sound"]) + let v = native_list_append(v, ["ϩⲣⲟⲟⲩ", "noun", "ϩⲣⲟⲟⲩ", "", "", "", "voice sound"]) + let v = native_list_append(v, ["ϫⲓⲥⲉ", "noun", "ϫⲓⲥⲉ", "", "", "", "back"]) + let v = native_list_append(v, ["ϫⲫⲟⲓ", "noun", "ϫⲫⲟⲓ", "", "", "", "arm"]) + let v = native_list_append(v, ["ⲗⲉⲅⲉⲱⲛ", "noun", "ⲗⲉⲅⲉⲱⲛ", "", "", "", "legion"]) + let v = native_list_append(v, ["ⲗⲱⲓϩⲓ", "noun", "ⲗⲱⲓϩⲓ", "", "", "", "mud filth"]) + let v = native_list_append(v, ["ⲗⲟⲓϩⲉ", "noun", "ⲗⲟⲓϩⲉ", "", "", "", "mud filth"]) + let v = native_list_append(v, ["ⲡⲉⲓ", "noun", "ⲡⲉⲓ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲃⲁⲃⲩⲗⲱⲛ", "noun", "ⲃⲁⲃⲩⲗⲱⲛ", "", "", "", "Babylon a city"]) + let v = native_list_append(v, ["ⲁⲥⲡⲉ", "noun", "ⲁⲥⲡⲉ", "", "", "", "language"]) + let v = native_list_append(v, ["ⲉⲥⲡⲉ", "noun", "ⲉⲥⲡⲉ", "", "", "", "language"]) + let v = native_list_append(v, ["ⲧⲏⲏⲃⲉ", "noun", "ⲧⲏⲏⲃⲉ", "", "", "", "finger"]) + let v = native_list_append(v, ["ⲛⲟⲩⲣⲉ", "noun", "ⲛⲟⲩⲣⲉ", "", "", "", "vulture"]) + let v = native_list_append(v, ["ϫⲁⲛⲓ", "noun", "ϫⲁⲛⲓ", "", "", "", "Tanis a town"]) + let v = native_list_append(v, ["ϫⲁⲁⲛⲉ", "noun", "ϫⲁⲁⲛⲉ", "", "", "", "Tanis a city"]) + let v = native_list_append(v, ["ⲏⲥⲉ", "noun", "ⲏⲥⲉ", "", "", "", "Isis the Egyptian"]) + let v = native_list_append(v, ["ⲓϧ", "noun", "ⲓϧ", "", "", "", "demon"]) + let v = native_list_append(v, ["ⲣⲱϧⲓ", "noun", "ⲣⲱϧⲓ", "", "", "", "cleansing"]) + let v = native_list_append(v, ["ⲣⲱϩⲉ", "noun", "ⲣⲱϩⲉ", "", "", "", "cleansing"]) + let v = native_list_append(v, ["ϫⲏϭⲉ", "noun", "ϫⲏϭⲉ", "", "", "", "purple color purple"]) + let v = native_list_append(v, ["ⲙⲓⲥⲉ", "noun", "ⲙⲓⲥⲉ", "", "", "", "brood kind genus"]) + let v = native_list_append(v, ["ⲃⲁⲥⲓⲗⲓⲥⲕⲟⲥ", "noun", "ⲃⲁⲥⲓⲗⲓⲥⲕⲟⲥ", "", "", "", "basilisk serpent"]) + let v = native_list_append(v, ["ϧⲟⲩⲛ", "noun", "ϧⲟⲩⲛ", "", "", "", "inside interior"]) + let v = native_list_append(v, ["ϩⲟⲩⲛ", "noun", "ϩⲟⲩⲛ", "", "", "", "inside interior"]) + let v = native_list_append(v, ["ⲥⲓⲧⲉ", "noun", "ⲥⲓⲧⲉ", "", "", "", "basilisk"]) + let v = native_list_append(v, ["ⲁⲛⲁϣ", "noun", "ⲁⲛⲁⲩϣ", "", "", "", "oath"]) + let v = native_list_append(v, ["ⲁⲛⲁⳉ", "noun", "ⲁⲛⲁⳉ", "", "", "", "oath"]) + let v = native_list_append(v, ["ϩⲟⲣⲧϥ", "noun", "ϩⲟⲣⲧϥ", "", "", "", "phantasm ghost"]) + let v = native_list_append(v, ["ⲁ̀ⲥⲓⲗⲱⲛ", "noun", "ⲁ̀ⲥⲓⲗⲱⲛ", "", "", "", "a blue"]) + let v = native_list_append(v, ["ⲥⲉⲣⲃⲁⲣⲁ", "noun", "ⲥⲉⲣⲃⲁⲣⲁ", "", "", "", "pants trousers"]) + let v = native_list_append(v, ["ϧⲁⲣⲁϭⲱⲟⲩⲧⲥ", "noun", "ϧⲁⲣⲁϭⲱⲟⲩⲧⲥ", "", "", "", "hare rabbit"]) + let v = native_list_append(v, ["ⲕⲁϣⲁⲃⲉⲗ", "noun", "ⲕⲁϣⲁⲃⲉⲗ", "", "", "", "earring"]) + let v = native_list_append(v, ["ⲁⲃⲁϫⲏⲓⲛⲓ", "noun", "ⲁⲃⲁϫⲏⲓⲛⲓ", "", "", "", "glass"]) + let v = native_list_append(v, ["ϩⲉⲛⲧⲟⲩ", "noun", "ϩⲉⲛⲧⲟⲩ", "", "", "", "India a country"]) + let v = native_list_append(v, ["ⲧⲟⲟⲩⲓ", "noun", "ⲧⲟⲟⲩⲓ", "", "", "", "dawn morning"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁⲕⲱϯ", "noun", "ⲥⲁⲣⲁⲕⲱϯ", "", "", "", "traveler vagabond"]) + let v = native_list_append(v, ["ⲃⲏⲗⲗⲁ", "noun", "ⲃⲏⲗⲗⲁ", "", "", "", "letter"]) + let v = native_list_append(v, ["ⲡⲟⲛ", "noun", "ⲡⲟⲛ", "", "", "", "coffee"]) + let v = native_list_append(v, ["ϣⲱⲙⲓⲱⲓ", "noun", "ϣⲱⲙⲓⲱⲓ", "", "", "", "soap"]) + let v = native_list_append(v, ["ⲭⲣⲉⲙⲧⲥ", "noun", "ⲭⲣⲉⲙⲧⲥ", "", "", "", "smoke mist obscurity"]) + let v = native_list_append(v, ["ⲛⲉϩⲱⲛⲓ", "noun", "ⲛⲉϩⲱⲛⲓ", "", "", "", "petroleum"]) + let v = native_list_append(v, ["ϣⲓⲏ", "noun", "ϣⲓⲏ", "", "", "", "a length"]) + let v = native_list_append(v, ["ⲓⲁϩϣⲏⲛ", "noun", "ⲓⲁϩϣⲏⲛ", "", "", "", "forest"]) + let v = native_list_append(v, ["ϣⲃⲱⲧ", "noun", "ϣⲃⲟϯ (šboti)", "", "", "", "stick rod"]) + let v = native_list_append(v, ["ⲗⲉϩⲗⲏⲙ", "noun", "ⲗⲉϩⲗⲏⲙ", "", "", "", "louse flea"]) + let v = native_list_append(v, ["ⲛⲉϥ", "noun", "ⲛⲉϥ", "", "", "", "sailor boatman"]) + let v = native_list_append(v, ["ⲙⲛⲟⲧ", "noun", "ⲙⲛⲟϯ", "", "", "", "breast"]) + let v = native_list_append(v, ["ϫⲱⲓⲗⲓ", "noun", "ϫⲱⲓⲗⲓ", "", "", "", "deposit"]) + let v = native_list_append(v, ["ϣⲉⲃϣⲓ", "noun", "ϣⲉⲃϣⲓ", "", "", "", "shield"]) + let v = native_list_append(v, ["ⲁⲟⲩⲓⲛ", "noun", "ⲁⲟⲩⲓⲛ", "", "", "", "cargo of a"]) + let v = native_list_append(v, ["ⲧⲁⲝⲓⲥ", "noun", "ⲧⲁⲝⲓⲥ", "", "", "", "rank class position"]) + let v = native_list_append(v, ["ⲡⲉⲣⲥⲏⲥ", "noun", "ⲡⲉⲣⲥⲏⲥ", "", "", "", "Persian"]) + let v = native_list_append(v, ["ⲕⲗⲁϥⲧ", "noun", "ⲕⲗⲁϥⲧ", "", "", "", "hood cowl"]) + let v = native_list_append(v, ["ⲕⲉⲡⲓⲧⲱ", "noun", "ⲕⲉⲡⲓⲧⲱ", "", "", "", "dome cupola"]) + let v = native_list_append(v, ["ⲇⲩⲛ", "noun", "ⲇⲩⲛ", "", "", "", "debt of money"]) + let v = native_list_append(v, ["ⲡⲓⲡⲉⲣ", "noun", "ⲡⲓⲡⲉⲣ", "", "", "", "pepper"]) + let v = native_list_append(v, ["ⲁⲗⲃⲟⲩⲗⲃⲟⲩⲗ", "noun", "ⲁⲗⲃⲟⲩⲗⲃⲟⲩⲗ", "", "", "", "pepper"]) + let v = native_list_append(v, ["ⲕⲁⲙⲓⲥⲓ", "noun", "ⲕⲁⲙⲓⲥⲓ", "", "", "", "a shirt"]) + let v = native_list_append(v, ["ⲙⲣⲱⲙ", "noun", "ⲙⲣⲱⲙ", "", "", "", "pillow"]) + let v = native_list_append(v, ["ϩⲱⲃⲥ", "noun", "ϩⲱⲃⲥ", "", "", "", "covering lid blanket"]) + let v = native_list_append(v, ["ⲥⲡⲉⲗⲉⲱⲛ", "noun", "ⲥⲡⲉⲗⲉⲱⲛ", "", "", "", "cave"]) + let v = native_list_append(v, ["ⲕⲉⲣⲕⲏ", "noun", "ⲕⲣⲕⲏⲟⲩ", "", "", "", "a settlement"]) + let v = native_list_append(v, ["ⲕⲟⲩⲧⲱⲛ", "noun", "ⲕⲟⲩⲧⲱⲛ", "", "", "", "cotton"]) + let v = native_list_append(v, ["ⲗⲁϩⲙⲓ", "noun", "ⲗⲁϩⲙⲓ", "", "", "", "Muslim"]) + let v = native_list_append(v, ["ⲙⲁⲛⲉⲣϣⲓϣⲓ", "noun", "ⲙⲁⲛⲉⲣϣⲓϣⲓ", "", "", "", "government"]) + let v = native_list_append(v, ["ⲡⲁⲣⲉⲙⲃⲟⲗⲏ", "noun", "ⲡⲁⲣⲉⲙⲃⲟⲗⲏ", "", "", "", "camp encampment military"]) + let v = native_list_append(v, ["ⲛⲏⲉⲧϣⲟⲡ", "noun", "ⲛⲏⲉⲧϣⲟⲡ", "", "", "", "the present"]) + let v = native_list_append(v, ["ϩⲟ", "noun", "ϩⲟ", "", "", "", "face"]) + let v = native_list_append(v, ["ⲡⲉⲃⲓϫ", "noun", "ⲡⲉⲃⲓϫ", "", "", "", "Babig a town"]) + let v = native_list_append(v, ["ϭⲣⲏϫⲓ", "noun", "ϭⲣⲏϫⲓ", "", "", "", "dowry"]) + let v = native_list_append(v, ["ϭⲣⲏϭⲉ", "noun", "ϭⲣⲏϭⲉ", "", "", "", "dowry"]) + let v = native_list_append(v, ["ⲑⲟ", "noun", "ⲑⲟ", "", "", "", "a multitude"]) + let v = native_list_append(v, ["ⲟⲩⲥⲓⲣⲉ", "noun", "ⲟⲩⲥⲓⲣⲉ", "", "", "", "Osiris the Egyptian"]) + let v = native_list_append(v, ["ⲁⲃⲣⲁⲥⲁⲝ", "noun", "ⲁⲃⲣⲁⲥⲁⲝ", "", "", "", "Abrasax"]) + let v = native_list_append(v, ["ⲉⲃⲣⲏϫ", "noun", "ⲉⲃⲣⲏϫ", "", "", "", "lightning"]) + let v = native_list_append(v, ["ⲉⲕⲓⲃⲉ", "noun", "ⲉⲕⲓⲃⲉ", "", "", "", "breast nipple"]) + let v = native_list_append(v, ["ⲕⲓⲃⲉ", "noun", "ⲕⲓⲃⲉ", "", "", "", "breast nipple"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲉⲙ", "noun", "ⲛⲟⲩⲧⲉⲙ", "", "", "", "sweetness"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲙ", "noun", "ⲛⲟⲩⲧⲙ", "", "", "", "sweetness"]) + let v = native_list_append(v, ["ϩⲗⲟϫ", "noun", "ϩⲗⲟϫ", "", "", "", "sweetness"]) + let v = native_list_append(v, ["ϩⲗⲟϭ", "noun", "ϩⲗⲟϭ", "", "", "", "sweetness"]) + let v = native_list_append(v, ["ⲙⲟⲩⲕⲓ", "noun", "ⲙⲟⲩⲕⲓ", "", "", "", "ladder"]) + let v = native_list_append(v, ["ⲛⲁϫϩⲓ", "noun", "ⲛⲁϫϩⲓ", "", "", "", "tooth"]) + let v = native_list_append(v, ["ⲛⲁϫϩⲉ", "noun", "ⲛⲁϫϩⲉ", "", "", "", "tooth"]) + let v = native_list_append(v, ["ϫⲱⲧ", "noun", "ϫⲱⲧ", "", "", "", "pillar column"]) + let v = native_list_append(v, ["ϣⲏⲣⲉ", "noun", "ϣⲣⲏⲩ (šrēu)", "", "", "", "son"]) + let v = native_list_append(v, ["ⲧⲟ", "noun", "ⲧⲟ", "", "", "", "a multitude"]) + let v = native_list_append(v, ["ⲛⲟⲩⲛ", "noun", "ⲛⲟⲩⲛ", "", "", "", "abyss of hell"]) + let v = native_list_append(v, ["ϯϩⲉ", "noun", "ϯϩⲉ", "", "", "", "drunkenness"]) + let v = native_list_append(v, ["ⲑⲓϧⲓ", "noun", "ⲑⲓϧⲓ", "", "", "", "drunkenness"]) + let v = native_list_append(v, ["ⲛⲟⲩϩⲙ", "noun", "ⲛⲟⲩϩⲙ", "", "", "", "safety"]) + let v = native_list_append(v, ["ⲥⲓⲙ", "noun", "ⲥⲓⲙ", "", "", "", "grass fodder herbs"]) + let v = native_list_append(v, ["ϩⲟⲛⲃⲉ", "noun", "ϩⲟⲛⲃⲉ", "", "", "", "well"]) + let v = native_list_append(v, ["ⲥⲟⲕ", "noun", "ⲥⲟⲕ", "", "", "", "sackcloth"]) + let v = native_list_append(v, ["ϩⲓⲟⲙⲉ", "noun", "ϩⲓⲟⲙⲉ", "", "", "", "plural of ⲥϩⲓⲙⲉ"]) + let v = native_list_append(v, ["ϩⲓⲁⲙⲉ", "noun", "ϩⲓⲁⲙⲉ", "", "", "", "plural of ⲥϩⲓⲙⲉ"]) + let v = native_list_append(v, ["ϩⲓⲁⲁⲙⲉ", "noun", "ϩⲓⲁⲁⲙⲉ", "", "", "", "plural of ⲥϩⲓⲙⲉ"]) + let v = native_list_append(v, ["ⲥϩⲓⲁⲙⲉ", "noun", "ⲥϩⲓⲁⲙⲉ", "", "", "", "plural of ⲥϩⲓⲙⲉ"]) + let v = native_list_append(v, ["ϩⲁⲗ", "noun", "ϩⲁⲗ", "", "", "", "slave servant"]) + let v = native_list_append(v, ["ⲉⲓⲟⲧⲉ", "noun", "ⲉⲓⲟⲧⲉ", "", "", "", "plural of ⲉⲓⲱⲧ"]) + let v = native_list_append(v, ["ⲉⲓⲁⲧⲉ", "noun", "ⲉⲓⲁⲧⲉ", "", "", "", "plural of ⲉⲓⲱⲧ"]) + let v = native_list_append(v, ["ⲉⲓⲁϯ", "noun", "ⲉⲓⲁϯ", "", "", "", "plural of ⲉⲓⲱⲧ"]) + let v = native_list_append(v, ["ϭⲁⲙⲁⲩⲗⲉ", "noun", "ϭⲁⲙⲁⲩⲗⲉ", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["ⲃⲁⲡϯⲥⲙⲁ", "noun", "ⲃⲁⲡϯⲥⲙⲁ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ⲃⲁⲥⲓⲗⲓⲕⲟⲥ", "noun", "ⲃⲁⲥⲓⲗⲓⲕⲟⲥ", "", "", "", "royal official"]) + let v = native_list_append(v, ["ⲁⲡⲁ", "noun", "ⲁⲡⲁ", "", "", "", "apa a title"]) + let v = native_list_append(v, ["ⲁⲃⲃⲁ", "noun", "ⲁⲃⲃⲁ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲁⲙⲁ", "noun", "ⲁⲙⲁ", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["ⲟⲩⲣⲧ", "noun", "ⲟⲩⲣⲧ", "", "", "", "rose flower"]) + let v = native_list_append(v, ["ϩⲗⲗⲱ", "noun", "ϩⲗ̄ⲗⲱ", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["ϩⲓⲏ", "noun", "ϩⲓⲟⲟⲩⲉ (hiooue)", "", "", "", "road way path"]) + let v = native_list_append(v, ["ⲉⲓⲉⲣⲟ", "noun", "ⲉⲓⲉⲣⲱⲟⲩ", "", "", "", "river"]) + let v = native_list_append(v, ["ϩⲉⲙⲕⲓ", "noun", "ϩⲉⲙⲕⲓ", "", "", "", "Egyptian beer bosa"]) + let v = native_list_append(v, ["ⲓⲏⲗⲓⲟⲡⲟⲛ", "noun", "ⲓⲏⲗⲓⲟⲡⲟⲛ", "", "", "", "Japan a country"]) + let v = native_list_append(v, ["ⲫⲓⲗⲟⲥⲟⲫⲓⲁ", "noun", "ⲫⲓⲗⲟⲥⲟⲫⲓⲁ", "", "", "", "philosophy"]) + let v = native_list_append(v, ["ⲃⲓⲟⲥ", "noun", "ⲃⲓⲟⲥ", "", "", "", "way of life"]) + let v = native_list_append(v, ["ⲛⲟⲃⲁⲇⲓⲁ", "noun", "ⲛⲟⲃⲁⲇⲓⲁ", "", "", "", "Nubia the region"]) + let v = native_list_append(v, ["ϣⲉⲛⲟⲩϯ", "noun", "ϣⲉⲛⲟⲩϯ", "", "", "", "Shenouda a male"]) + let v = native_list_append(v, ["ⲭⲁⲣⲕⲓⲛⲟⲥ", "noun", "ⲭⲁⲣⲕⲓⲛⲟⲥ", "", "", "", "crayfish"]) + let v = native_list_append(v, ["ⲥⲁⲣⲇⲱⲟⲛ", "noun", "ⲥⲁⲣⲇⲱⲟⲛ", "", "", "", "crab"]) + let v = native_list_append(v, ["ϭⲉⲣϭⲏ", "noun", "ϭⲉⲣϭⲟⲟⲩⲉ", "", "", "", "a settlement"]) + let v = native_list_append(v, ["ⲗϧⲏ", "noun", "ⲗϧⲏ", "", "", "", "commoners plebeians"]) + let v = native_list_append(v, ["ϣⲃⲏ", "noun", "ϣⲃⲏ", "", "", "", "majesty"]) + let v = native_list_append(v, ["ⲡⲏ", "noun", "ⲡⲏ", "", "", "", "patricians elite"]) + let v = native_list_append(v, ["ⲓⲧⲉⲛ", "noun", "ⲓⲧⲉⲛ", "", "", "", "ground earth dust"]) + let v = native_list_append(v, ["ϩⲁⲙⲉⲩ", "noun", "ϩⲁⲙⲉⲩ", "", "", "", "humankind"]) + let v = native_list_append(v, ["ⲫⲟⲓⲃⲁⲙⲙⲱⲛ", "noun", "ⲫⲟⲓⲃⲁⲙⲙⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲉⲗⲗⲟⲩϫ", "noun", "ⲕⲉⲗⲗⲟⲩϫ", "", "", "", "Kelluj a male"]) + let v = native_list_append(v, ["ⲡⲁϧⲱⲙ", "noun", "ⲡⲁϧⲱⲙ", "", "", "", "Pakhom a male"]) + let v = native_list_append(v, ["ⲡⲉⲧⲉⲫⲣⲏ", "noun", "ⲡⲉⲧⲉⲫⲣⲏ", "", "", "", "Potiphar a male"]) + let v = native_list_append(v, ["ⲃⲉⲛⲟϥⲉⲣ", "noun", "ⲃⲉⲛⲟϥⲉⲣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲟⲩⲉⲣϣⲉⲛⲟⲩϥⲓ", "noun", "ⲟⲩⲉⲣϣⲉⲛⲟⲩϥⲓ", "", "", "", "Barsanuphius a male"]) + let v = native_list_append(v, ["ⲡⲓϣⲱⲓ", "noun", "ⲡⲓϣⲱⲓ", "", "", "", "Pishoy a male"]) + let v = native_list_append(v, ["ⲙⲁⲣⲓⲁⲙ", "noun", "ⲙⲁⲣⲓⲁⲙ", "", "", "", "Mariam a female"]) + let v = native_list_append(v, ["ϩⲱⲣⲥⲓⲏⲥⲓ", "noun", "ϩⲱⲣⲥⲓⲏⲥⲓ", "", "", "", "Harsiesi a male"]) + let v = native_list_append(v, ["ⲃⲏⲥ", "noun", "ⲃⲏⲥ", "", "", "", "Bes an ancient"]) + let v = native_list_append(v, ["ϫⲉⲙⲙⲁϩⲱⲣ", "noun", "ϫⲉⲙⲙⲁϩⲱⲣ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲡⲁⲣⲥⲱⲙⲁ", "noun", "ⲡⲁⲣⲥⲱⲙⲁ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲫⲛⲟⲩϯ", "noun", "ⲡⲁⲫⲛⲟⲩϯ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲓⲇϩⲟⲙ", "noun", "ⲥⲓⲇϩⲟⲙ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲩⲗⲟⲥ", "noun", "ⲡⲁⲩⲗⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲩⲗⲏ", "noun", "ⲡⲁⲩⲗⲏ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲡⲁⲥⲭⲩⲣⲟⲛ", "noun", "ⲁⲡⲁⲥⲭⲩⲣⲟⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲩⲇⲁⲓⲙⲱⲛ", "noun", "ⲉⲩⲇⲁⲓⲙⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲟⲧⲁⲙⲓⲁⲛⲁ", "noun", "ⲡⲟⲧⲁⲙⲓⲁⲛⲁ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲡⲁⲙⲃⲱ", "noun", "ⲡⲁⲙⲃⲱ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲓϣⲉⲛⲛⲟⲩϥⲓ", "noun", "ⲡⲓϣⲉⲛⲛⲟⲩϥⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲓϫⲱⲗ", "noun", "ⲡⲓϫⲱⲗ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲓϫⲓⲙⲓ", "noun", "ⲡⲓϫⲓⲙⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁⲡⲁⲙⲱⲛ", "noun", "ⲥⲁⲣⲁⲡⲁⲙⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϫⲓϭⲱⲓ", "noun", "ϫⲓϭⲱⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁϣⲟⲛϯ", "noun", "ⲡⲁϣⲟⲛϯ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲟⲩⲗⲱϫⲉ", "noun", "ⲕⲟⲩⲗⲱϫⲉ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲙⲏⲛⲁ", "noun", "ⲙⲏⲛⲁ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲧⲁⲡⲏ", "noun", "ⲡⲁⲧⲁⲡⲏ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲏⲥⲓ", "noun", "ⲡⲁⲏⲥⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲁⲏⲥⲓ", "noun", "ⲫⲁⲏⲥⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲥⲕⲗⲁ", "noun", "ⲁⲥⲕⲗⲁ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲯⲁϯ", "noun", "ⲯⲁϯ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲧⲁⲫⲁⲙⲟⲩⲛ", "noun", "ⲧⲁⲫⲁⲙⲟⲩⲛ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲑⲉⲟⲇⲱⲣⲟⲥ", "noun", "ⲑⲉⲟⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲩⲣⲓⲁⲕⲟⲥ", "noun", "ⲕⲩⲣⲓⲁⲕⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ⲙⲁⲣⲕⲟⲥ", "noun", "Ⲙⲁⲣⲕⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲉⲛⲓⲡⲓ", "noun", "ⲃⲉⲛⲓⲡⲓ", "", "", "", "iron"]) + let v = native_list_append(v, ["ⲑⲉⲕⲗⲁ", "noun", "ⲑⲉⲕⲗⲁ", "", "", "", "a male or"]) + let v = native_list_append(v, ["ϩⲁⲣⲙⲓⲛⲏ", "noun", "ϩⲁⲣⲙⲓⲛⲏ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲉⲣⲟⲩⲱϫ", "noun", "ϩⲉⲣⲟⲩⲱϫ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲑⲁⲇⲁⲙⲱⲣ", "noun", "ⲑⲁⲇⲁⲙⲱⲣ", "", "", "", "Palmyra a town"]) + let v = native_list_append(v, ["ⲡⲁⲛⲓⲕⲩⲣⲟⲥ", "noun", "ⲡⲁⲛⲓⲕⲩⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲛⲁϫⲓⲧ", "noun", "ⲁⲛⲁϫⲓⲧ", "", "", "", "a town of"]) + let v = native_list_append(v, ["ⲃⲁⲛⲉ", "noun", "ⲃⲁⲛⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲧⲉⲣⲙⲟⲩⲧⲉ", "noun", "ⲡⲁⲧⲉⲣⲙⲟⲩⲧⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲓⲣⲱⲟⲩ", "noun", "ⲡⲓⲣⲱⲟⲩ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲛⲁϩⲣⲱⲟⲩ", "noun", "ⲛⲁϩⲣⲱⲟⲩ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲑⲱⲙ", "noun", "ⲁⲑⲱⲙ", "", "", "", "Atum the Egyptian"]) + let v = native_list_append(v, ["ⲁⲡⲁⲧⲏⲣ", "noun", "ⲁⲡⲁⲧⲏⲣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϭⲱⲣϩ", "noun", "ϭⲱⲣϩ", "", "", "", "night"]) + let v = native_list_append(v, ["ⲫⲣⲉⲧⲁ", "noun", "ⲫⲣⲉⲧⲁ", "", "", "", "loot booty"]) + let v = native_list_append(v, ["ⲫⲓⲃ", "noun", "ⲫⲓⲃ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲟⲩⲁⲛ", "noun", "ⲁⲟⲩⲁⲛ", "", "", "", "color"]) + let v = native_list_append(v, ["ⲡⲁⲛⲧⲟⲭⲓⲟⲛ", "noun", "ⲡⲁⲛⲧⲟⲭⲓⲟⲛ", "", "", "", "inn tavern"]) + let v = native_list_append(v, ["ⲧⲁⲃⲓⲣⲛⲟⲛ", "noun", "ⲧⲁⲃⲓⲣⲛⲟⲛ", "", "", "", "tavern"]) + let v = native_list_append(v, ["ⲙⲛⲓⲙⲓⲟⲛ", "noun", "ⲙⲛⲓⲙⲓⲟⲛ", "", "", "", "tomb memorial"]) + let v = native_list_append(v, ["ⲥⲧⲩⲗⲏ", "noun", "ⲥⲧⲩⲗⲏ", "", "", "", "column"]) + let v = native_list_append(v, ["ⲉⲣⲃⲓ", "noun", "ⲉⲣⲃⲓ", "", "", "", "enclosure pen"]) + let v = native_list_append(v, ["ⲑⲟⲩⲣⲏⲥ", "noun", "ⲑⲟⲩⲣⲏⲥ", "", "", "", "southern wind"]) + let v = native_list_append(v, ["ⲙⲁⲟⲩⲥⲉ", "noun", "ⲙⲁⲟⲩⲥⲉ", "", "", "", "liver probably meaning"]) + let v = native_list_append(v, ["ϯⲉⲗⲗⲁⲥ", "noun", "ϯⲉⲗⲗⲁⲥ", "", "", "", "Greece a country"]) + let v = native_list_append(v, ["ⲡⲁⲑⲟⲩⲣⲏⲥ", "noun", "ⲡⲁⲑⲟⲩⲣⲏⲥ", "", "", "", "Pathros a part"]) + let v = native_list_append(v, ["ⲃⲉⲣⲧ", "noun", "ⲃⲉⲣⲧ", "", "", "", "rose flower"]) + let v = native_list_append(v, ["ⲁⲙⲓⲛⲁⲕⲟⲩ", "noun", "ⲁⲙⲓⲛⲁⲕⲟⲩ", "", "", "", "styrax"]) + let v = native_list_append(v, ["ⲉⲡⲟⲓⲕⲓⲟⲛ", "noun", "ⲉⲡⲟⲓⲕⲓⲟⲛ", "", "", "", "hamlet farmstead"]) + let v = native_list_append(v, ["ⲙⲁⲛⲙⲟⲛ", "noun", "ⲙⲁⲛⲙⲟⲛ", "", "", "", "orange"]) + let v = native_list_append(v, ["ⲕⲟⲣⲧⲓⲙⲟⲥ", "noun", "ⲕⲟⲣⲧⲓⲙⲟⲥ", "", "", "", "lemon"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲟⲡⲟⲗⲓⲥ", "noun", "ⲙⲉⲧⲣⲟⲡⲟⲗⲓⲥ", "", "", "", "capital city"]) + let v = native_list_append(v, ["ⲕⲁⲩⲕⲟⲥ", "noun", "ⲕⲁⲩⲕⲟⲥ", "", "", "", "Caucasian a native"]) + let v = native_list_append(v, ["ⲧⲟⲩⲝ", "noun", "ⲧⲟⲩⲝ", "", "", "", "Turk of Turkish"]) + let v = native_list_append(v, ["ⲙⲁⲣⲏⲥ", "noun", "ⲙⲁⲣⲏⲥ", "", "", "", "Upper Egypt."]) + let v = native_list_append(v, ["ⲟⲃⲓⲟⲛ", "noun", "ⲟⲃⲓⲟⲛ", "", "", "", "serpent snake"]) + let v = native_list_append(v, ["ϭⲉⲗϭⲏ", "noun", "ϭⲉⲗϭⲏ", "", "", "", "a settlement"]) + let v = native_list_append(v, ["ⲧⲥⲁϧⲏⲧ", "noun", "ⲧⲥⲁϧⲏⲧ", "", "", "", "Lower Egypt a"]) + let v = native_list_append(v, ["ⲁⲙⲓⲧⲱⲛ", "noun", "ⲁⲙⲓⲧⲱⲛ", "", "", "", "China a large"]) + let v = native_list_append(v, ["ϯⲁⲣⲁⲃⲓⲁ", "noun", "ϯⲁⲣⲁⲃⲓⲁ", "", "", "", "Arabia"]) + let v = native_list_append(v, ["ⲗⲓⲟⲩⲓ", "noun", "ⲗⲓⲟⲩⲓ", "", "", "", "Heliopolis a city"]) + let v = native_list_append(v, ["ⲙⲁⲩⲣⲏⲥ", "noun", "ⲙⲁⲩⲣⲏⲥ", "", "", "", "dark-skinned negro"]) + let v = native_list_append(v, ["ⲕⲟⲛⲧⲓⲟⲛ", "noun", "ⲕⲟⲛⲧⲓⲟⲛ", "", "", "", "cotton"]) + let v = native_list_append(v, ["ϣⲉⲉⲣⲉⲛ̀ⲣⲣⲱ", "noun", "ϣⲉⲉⲣⲉⲛ̀ⲣⲣⲱ", "", "", "", "princess."]) + let v = native_list_append(v, ["ϣⲉⲣⲓⲛ̀ⲟⲩⲣⲱ", "noun", "ϣⲉⲣⲓⲛ̀ⲟⲩⲣⲱ", "", "", "", "princess."]) + let v = native_list_append(v, ["ϫⲟⲩϥ ⲛϩⲏⲧ", "noun", "ϫⲟⲩϥ ⲛϩⲏⲧ", "", "", "", "emotion passion."]) + let v = native_list_append(v, ["ⲗⲁⲩⲣⲁ", "noun", "ⲗⲁⲩⲣⲁ", "", "", "", "alley"]) + let v = native_list_append(v, ["ⲃⲗⲗⲉ", "noun", "ⲃⲗ̄ⲗⲉⲉⲩ", "", "", "", "a blind person"]) + let v = native_list_append(v, ["ⲃⲗⲗⲉⲉⲩ", "noun", "ⲃⲗ̄ⲗⲉⲉⲩ", "", "", "", "plural of ⲃⲗ̄ⲗⲉ"]) + let v = native_list_append(v, ["ⲃⲗⲗⲏ", "noun", "ⲃⲗⲗⲏ", "", "", "", "feminine of ⲃⲗ̄ⲗⲉ"]) + let v = native_list_append(v, ["ⲉϣⲟⲩⲣ", "noun", "*ⲉϣⲁⲩⲣ", "", "", "", "Assyrian"]) + let v = native_list_append(v, ["ⲛⲓⲫⲁⲓⲁⲧ", "noun", "ⲛⲓⲫⲁⲓⲁⲧ", "", "", "", "Libya a country"]) + let v = native_list_append(v, ["ϯⲡⲉⲣⲥⲏⲥ", "noun", "ϯⲡⲉⲣⲥⲏⲥ", "", "", "", "Giza a city"]) + let v = native_list_append(v, ["ⲥⲁⲡⲣⲟ ϩⲃⲱ", "noun", "ⲥⲁⲡⲣⲟ ϩⲃⲱ", "", "", "", "Shubra el-Kheima a"]) + let v = native_list_append(v, ["ⲥⲟⲩⲁⲛ", "noun", "ⲥⲟⲩⲁⲛ", "", "", "", "Aswan a city"]) + let v = native_list_append(v, ["ⲧⲉⲣⲧⲟⲩⲣⲟⲥ", "noun", "ⲧⲉⲣⲧⲟⲩⲣⲟⲥ", "", "", "", "Tatar of Tatar"]) + let v = native_list_append(v, ["ⲙⲁⲕⲁ", "noun", "ⲙⲁⲕⲁ", "", "", "", "Mecca a city"]) + let v = native_list_append(v, ["ⲃⲁⲕⲧⲁⲛ", "noun", "ⲃⲁⲕⲧⲁⲛ", "", "", "", "Baghdad the capital"]) + let v = native_list_append(v, ["ⲕⲟⲩⲫⲁ", "noun", "ⲕⲟⲩⲫⲁ", "", "", "", "Kufa a city"]) + let v = native_list_append(v, ["ⲭⲱⲃⲁ", "noun", "ⲭⲱⲃⲁ", "", "", "", "Kufa a city"]) + let v = native_list_append(v, ["ⲧⲥⲁⲣⲅⲁⲛⲓⲁ", "noun", "ⲧⲥⲁⲣⲅⲁⲛⲓⲁ", "", "", "", "Ghana a region"]) + let v = native_list_append(v, ["ⲕⲁⲗⲁϣⲓⲣⲉ", "noun", "ⲕⲁⲗⲁϣⲓⲣⲉ", "", "", "", "strong man giant"]) + let v = native_list_append(v, ["ⲁⲗⲕⲓⲣⲓⲃⲉⲛ", "noun", "ⲁⲗⲕⲓⲣⲓⲃⲉⲛ", "", "", "", "Kairouan a city"]) + let v = native_list_append(v, ["ⲇⲁⲙⲁⲥⲕⲟⲥ", "noun", "ⲇⲁⲙⲁⲥⲕⲟⲥ", "", "", "", "Damascus the capital"]) + let v = native_list_append(v, ["ⲁⲑⲏⲛⲛⲁⲥ", "noun", "ⲁⲑⲏⲛⲛⲁⲥ", "", "", "", "Athens the capital"]) + let v = native_list_append(v, ["ⲑⲣⲓⲡⲟⲗⲓⲥ", "noun", "ⲑⲣⲓⲡⲟⲗⲓⲥ", "", "", "", "Tripoli the capital"]) + let v = native_list_append(v, ["ⲙⲟⲛⲏ", "noun", "ⲙⲟⲛⲱⲟⲩⲓ", "", "", "", "dwelling station on"]) + let v = native_list_append(v, ["ⲑⲙⲟⲛⲏ", "noun", "ⲑⲙⲟⲛⲏ", "", "", "", "Minya a city"]) + let v = native_list_append(v, ["ϣⲁⲓⲣⲓ", "noun", "ϣⲁⲓⲣⲓ", "", "", "", "couch resting place"]) + let v = native_list_append(v, ["ϯϣⲁⲓⲣⲓ", "noun", "ϯϣⲁⲓⲣⲓ", "", "", "", "El-Mahalla El-Kubra a"]) + let v = native_list_append(v, ["ⲥⲓⲱⲟⲩⲧ", "noun", "ⲥⲓⲱⲟⲩⲧ", "", "", "", "Asyut a city"]) + let v = native_list_append(v, ["ⲧⲁⲛⲧⲁⲑⲟ", "noun", "ⲧⲁⲛⲧⲁⲑⲟ", "", "", "", "Tanta a city"]) + let v = native_list_append(v, ["ⲫⲱⲥⲧⲏⲣ", "noun", "ⲫⲱⲥⲧⲏⲣ", "", "", "", "planet"]) + let v = native_list_append(v, ["ϭⲗⲟϫ", "noun", "ϭⲗⲟϫ", "", "", "", "bed bier"]) + let v = native_list_append(v, ["ⲕⲓⲙⲉⲛⲁⲥⲓⲟⲛ", "noun", "ⲕⲓⲙⲉⲛⲁⲥⲓⲟⲛ", "", "", "", "town square forum"]) + let v = native_list_append(v, ["ϩⲟⲩⲑⲙⲉⲛ", "noun", "ϩⲟⲩⲑⲙⲉⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲉⲣⲉϭⲉⲣⲁⲧ", "noun", "ⲃⲉⲣⲉϭⲉⲣⲁⲧ", "", "", "", "bicycle"]) + let v = native_list_append(v, ["ⲧⲉⲭⲛⲓⲧⲏⲥ", "noun", "ⲧⲉⲭⲛⲓⲧⲏⲥ", "", "", "", "artisan craftsman"]) + let v = native_list_append(v, ["ⲫⲟⲣⲓ", "noun", "ⲫⲟⲣⲓ", "", "", "", "mullet Mugil cephalus"]) + let v = native_list_append(v, ["ⲉⲕⲱⲧ", "noun", "ⲉⲕⲟϯ (ekoti)", "", "", "", "builder mason"]) + let v = native_list_append(v, ["ϩⲁⲙϣⲉ", "noun", "ϩⲁⲙϣⲏⲟⲩⲉ (hamšēoue)", "", "", "", "carpenter"]) + let v = native_list_append(v, ["ϩⲁⲙ", "noun", "ϩⲙⲏⲩ (hmēu)", "", "", "", "craftsman"]) + let v = native_list_append(v, ["ⲥⲁⲭⲟ", "noun", "ⲥⲁⲭⲟ", "", "", "", "dignified esteemed person"]) + let v = native_list_append(v, ["ⲓⲱⲥⲏⲫ", "noun", "ⲓⲱⲥⲏⲫ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲉⲧⲣⲟⲥ", "noun", "ⲡⲉⲧⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲡⲓⲫⲁⲛⲓⲟⲥ", "noun", "ⲉⲡⲓⲫⲁⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲁⲛⲓⲟⲥ", "noun", "ⲫⲁⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲩⲣⲓⲗⲗⲟⲥ", "noun", "ⲕⲩⲣⲓⲗⲗⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲉⲥⲩⲛⲑⲓⲟⲥ", "noun", "ⲡⲉⲥⲩⲛⲑⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ⲁⲑⲩⲛⲁ", "noun", "Ⲁⲑⲩⲛⲁ", "", "", "", "Athena Greek goddess"]) + let v = native_list_append(v, ["ⲇⲓⲟⲛⲩⲥⲟⲥ", "noun", "ⲇⲓⲟⲛⲩⲥⲟⲥ", "", "", "", "Dionysus Greek god"]) + let v = native_list_append(v, ["ⲏⲣⲁ", "noun", "ⲏⲣⲁ", "", "", "", "Hera queen of"]) + let v = native_list_append(v, ["ⲁⲛⲧⲱⲛⲓⲟⲥ", "noun", "ⲁⲛⲧⲱⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲟⲓⲙⲏⲛ", "noun", "ⲡⲟⲓⲙⲏⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁ", "noun", "ⲥⲁⲣⲁ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲡⲁⲥⲭⲁ", "noun", "ⲡⲁⲥⲭⲁ", "", "", "", "Easter"]) + let v = native_list_append(v, ["ⲥⲱⲟⲩϩⲓ", "noun", "ⲥⲱⲟⲩϩⲓ", "", "", "", "egg"]) + let v = native_list_append(v, ["ϩⲱⲓϯ", "noun", "ϩⲱⲓϯ", "", "", "", "hyena"]) + let v = native_list_append(v, ["ⲡⲟⲥⲓⲇⲱⲛ", "noun", "ⲡⲟⲥⲓⲇⲱⲛ", "", "", "", "Poseidon Greek god"]) + let v = native_list_append(v, ["ϯϩⲩⲧⲁⲗⲓⲁ", "noun", "ϯϩⲩⲧⲁⲗⲓⲁ", "", "", "", "Italy a country"]) + let v = native_list_append(v, ["ϯⲥⲡⲁⲛⲓⲁ", "noun", "ϯⲥⲡⲁⲛⲓⲁ", "", "", "", "Spain a country"]) + let v = native_list_append(v, ["ⲁⲥⲥⲩⲣⲓⲟⲥ", "noun", "ⲁⲥⲥⲩⲣⲓⲟⲥ", "", "", "", "Assyrian Syriac"]) + let v = native_list_append(v, ["ⲗⲟⲕⲟϫⲓ", "noun", "ⲗⲟⲕⲟϫⲓ", "", "", "", "dinar solidus"]) + let v = native_list_append(v, ["ⲡⲓⲥⲣⲁⲏⲗ", "noun", "ⲡⲓⲥⲣⲁⲏⲗ", "", "", "", "Israel a country"]) + let v = native_list_append(v, ["ⲁⲇⲟⲩⲣⲃⲁⲇⲁⲅⲁⲛ", "noun", "ⲁⲇⲟⲩⲣⲃⲁⲇⲁⲅⲁⲛ", "", "", "", "Azerbaijan a region"]) + let v = native_list_append(v, ["ⲥⲉⲣⲁⲡⲓⲥ", "noun", "ⲥⲉⲣⲁⲡⲓⲥ", "", "", "", "Serapis Graeco-Egyptian god"]) + let v = native_list_append(v, ["ⲑⲉⲛⲧⲓⲕⲏ", "noun", "ⲑⲉⲛⲧⲓⲕⲏ", "", "", "", "India a country"]) + let v = native_list_append(v, ["ⲃⲉⲣⲟⲥ", "noun", "ⲃⲉⲣⲟⲥ", "", "", "", "Armenian"]) + let v = native_list_append(v, ["ϯⲧⲟⲩⲉ", "noun", "ϯⲧⲟⲩⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϭⲁⲥⲓϩⲑⲟ", "noun", "ϭⲁⲥⲓϩⲑⲟ", "", "", "", "rider horseman"]) + let v = native_list_append(v, ["ⲁⲃⲱⲛⲁϩ", "noun", "ⲁⲃⲱⲛⲁϩ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉϥⲱⲛϧ", "noun", "ⲉϥⲱⲛϧ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲏⲥ ⲡⲧⲣⲓⲥⲙⲉⲅⲓⲥⲑⲟⲥ", "noun", "ϩⲉⲣⲙⲏⲥ ⲡⲧⲣⲓⲥⲙⲉⲅⲓⲥⲑⲟⲥ", "", "", "", "Hermes Trismegistus a"]) + let v = native_list_append(v, ["ⲑⲁⲣⲙⲉⲛⲓⲁ", "noun", "ⲑⲁⲣⲙⲉⲛⲓⲁ", "", "", "", "Armenia a country"]) + let v = native_list_append(v, ["ⲥⲧⲁⲩⲣⲟⲥ", "noun", "ⲥⲧⲁⲩⲣⲟⲥ", "", "", "", "cross"]) + let v = native_list_append(v, ["ⲭⲁⲙⲉ", "noun", "ⲭⲁⲙⲉⲩ", "", "", "", "black"]) + let v = native_list_append(v, ["ϭⲟϩ", "noun", "ϭⲟϩ", "", "", "", "touch"]) + let v = native_list_append(v, ["ⲏⲣⲁⲕⲗⲁⲥ", "noun", "ⲏⲣⲁⲕⲗⲁⲥ", "", "", "", "Heracles a Greek"]) + let v = native_list_append(v, ["ⲁⲡⲟⲗⲗⲟⲇⲱⲣⲟⲥ", "noun", "ⲁⲡⲟⲗⲗⲟⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲁⲕⲭⲟⲥ", "noun", "ⲃⲁⲕⲭⲟⲥ", "", "", "", "Dionysus Greco-Roman god"]) + let v = native_list_append(v, ["ⲧⲉϫⲓ", "noun", "ⲧⲉϫⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲁⲛⲟⲥ", "noun", "ⲫⲁⲛⲟⲥ", "", "", "", "torch."]) + let v = native_list_append(v, ["ⲇⲏⲙⲏⲧⲏⲣ", "noun", "ⲇⲏⲙⲏⲧⲏⲣ", "", "", "", "Demeter Greek goddess"]) + let v = native_list_append(v, ["ⲁⲣⲏⲥ", "noun", "ⲁⲣⲏⲥ", "", "", "", "Ares the Greek"]) + let v = native_list_append(v, ["ⲁⲗⲉⲝⲁⲛⲇⲣⲟⲥ", "noun", "ⲁⲗⲉⲝⲁⲛⲇⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲧⲟⲗⲉⲙⲁⲓⲟⲥ", "noun", "ⲡⲧⲟⲗⲉⲙⲁⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲗⲁⲟⲩⲓⲟⲥ", "noun", "ⲫⲗⲁⲟⲩⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲗⲁⲩⲇⲓⲟⲥ", "noun", "ⲕⲗⲁⲩⲇⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁϭⲓⲛ", "noun", "ⲁϭⲓⲛ", "", "", "", "a green"]) + let v = native_list_append(v, ["ⲓⲟⲩⲗⲓⲁⲛⲟⲥ", "noun", "ⲓⲟⲩⲗⲓⲁⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲅⲁⲓⲟⲥ", "noun", "ⲅⲁⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲑⲉⲟⲫⲓⲗⲟⲥ", "noun", "ⲑⲉⲟⲫⲓⲗⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲍⲏⲛⲱⲛ", "noun", "ⲍⲏⲛⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲑⲁⲛⲁⲥⲓⲟⲥ", "noun", "ⲁⲑⲁⲛⲁⲥⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲩⲣⲟⲥ", "noun", "ⲕⲩⲣⲟⲥ", "", "", "", "lord master"]) + let v = native_list_append(v, ["ⲕⲱⲛⲥⲧⲁⲛⲧⲓⲛⲟⲥ", "noun", "ⲕⲱⲛⲥⲧⲁⲛⲧⲓⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲏⲙⲏⲧⲣⲓⲟⲥ", "noun", "ⲇⲏⲙⲏⲧⲣⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲣⲙⲟⲕⲣⲁⲧⲏⲥ", "noun", "ⲉⲣⲙⲟⲕⲣⲁⲧⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲓⲗⲟⲡⲁⲧⲱⲣ", "noun", "ⲫⲓⲗⲟⲡⲁⲧⲱⲣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲉⲣⲉⲛⲓⲕⲏ", "noun", "ⲃⲉⲣⲉⲛⲓⲕⲏ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲁⲣⲓⲥⲟⲛⲏ", "noun", "ⲁⲣⲓⲥⲟⲛⲏ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲑⲉⲧⲙⲟⲥⲓ", "noun", "ⲑⲉⲧⲙⲟⲥⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϫⲓⲡⲟⲩⲥ", "noun", "ϫⲓⲡⲟⲩⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϫⲓⲙⲟⲩⲥ", "noun", "ϫⲓⲙⲟⲩⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲁⲡⲉ", "noun", "ϩⲁⲡⲉ", "", "", "", "the Apis bull"]) + let v = native_list_append(v, ["ⲫⲩⲗⲁⲝ", "noun", "ⲫⲩⲗⲁⲝ", "", "", "", "guard"]) + let v = native_list_append(v, ["ϩⲉⲕⲁⲧⲟⲛⲧⲁⲣⲭⲟⲥ", "noun", "ϩⲉⲕⲁⲧⲟⲛⲧⲁⲣⲭⲟⲥ", "", "", "", "centurion."]) + let v = native_list_append(v, ["ⲓⲉⲣⲁⲝ", "noun", "ⲓⲉⲣⲁⲝ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲛⲓⲣⲁⲛ", "noun", "ⲛⲓⲣⲁⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲛⲓⲣⲁⲛ", "noun", "ⲡⲁⲛⲓⲣⲁⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϣⲟⲛϯ", "noun", "ϣⲟⲛϯ", "", "", "", "acacia thorn tree"]) + let v = native_list_append(v, ["ⲁⲛϩⲟⲩⲣⲓ", "noun", "ⲁⲛϩⲟⲩⲣⲓ", "", "", "", "Anhur the Egyptian"]) + let v = native_list_append(v, ["ⲁⲛⲟⲩⲕⲓ", "noun", "ⲁⲛⲟⲩⲕⲓ", "", "", "", "Anuket an Ancient"]) + let v = native_list_append(v, ["ϩⲁⲇⲏⲥ", "noun", "ϩⲁⲇⲏⲥ", "", "", "", "Hades the Greek"]) + let v = native_list_append(v, ["ⲕⲓⲑⲁⲣⲁ", "noun", "ⲕⲓⲑⲁⲣⲁ", "", "", "", "lyre"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲏⲥ", "noun", "ϩⲉⲣⲙⲏⲥ", "", "", "", "Hermes the Greek"]) + let v = native_list_append(v, ["ⲁⲩⲧⲟⲕⲣⲁⲧⲱⲣ", "noun", "ⲁⲩⲧⲟⲕⲣⲁⲧⲱⲣ", "", "", "", "emperor autocrat"]) + let v = native_list_append(v, ["ϣⲟⲟⲩ", "noun", "ϣⲟⲟⲩ", "", "", "", "perfume"]) + let v = native_list_append(v, ["ⲭⲓⲧⲱⲛ", "noun", "ⲭⲓⲧⲱⲛ", "", "", "", "tunic"]) + let v = native_list_append(v, ["ⲉⲩⲇⲱⲣⲟⲥ", "noun", "ⲉⲩⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲗⲉⲟⲙⲉⲛⲏⲥ", "noun", "ⲕⲗⲉⲟⲙⲉⲛⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲁⲡⲓ", "noun", "ϩⲁⲡⲓ", "", "", "", "the Apis bull"]) + let v = native_list_append(v, ["ⲟⲩⲃⲁⲥⲧⲉ", "noun", "ⲟⲩⲃⲁⲥⲧⲉ", "", "", "", "Bastet the Egyptian"]) + let v = native_list_append(v, ["ϣⲱⲓ", "noun", "ϣⲱⲓ", "", "", "", "Shu the Egyptian"]) + let v = native_list_append(v, ["ϩⲟⲩⲧ ⲥϩⲓⲙⲉ", "noun", "ϩⲟⲩⲧ ⲥϩⲓⲙⲉ", "", "", "", "A person who"]) + let v = native_list_append(v, ["ⲧⲁϩⲟ", "noun", "ⲧⲁϩⲟ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲗⲉⲓϥⲓ", "noun", "ⲗⲉⲓϥⲓ", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ⲣⲁⲙⲉ", "noun", "ⲣⲁⲙⲉ", "", "", "", "tilapia Tilapia nilotica"]) + let v = native_list_append(v, ["ⲃⲉϩⲱⲗ", "noun", "ⲃⲉϩⲱⲗ", "", "", "", "date palm"]) + let v = native_list_append(v, ["ⲕⲉⲣⲃⲟⲩ", "noun", "ⲕⲉⲣⲃⲟⲩ", "", "", "", "Cerberus the three-headed"]) + let v = native_list_append(v, ["ⲕⲟⲛⲧⲁⲣⲓⲟⲛ", "noun", "ⲕⲟⲛⲧⲁⲣⲓⲟⲛ", "", "", "", "spear"]) + let v = native_list_append(v, ["ⲗⲟⲅⲭⲏ", "noun", "ⲗⲟⲅⲭⲏ", "", "", "", "spear"]) + let v = native_list_append(v, ["ⲅⲩⲡⲧⲓⲟⲥ", "noun", "ⲅⲩⲡⲧⲓⲟⲥ", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["ⲁⲗⲉⲝⲁⲛⲇⲣⲓⲁ", "noun", "ⲁⲗⲉⲝⲁⲛⲇⲣⲓⲁ", "", "", "", "Alexandria."]) + let v = native_list_append(v, ["ⲇⲱⲣⲟⲛ", "noun", "ⲇⲱⲣⲟⲛ", "", "", "", "gift"]) + let v = native_list_append(v, ["ⲑⲉⲃⲁⲓⲥ", "noun", "ⲑⲉⲃⲁⲓⲥ", "", "", "", "Thebaid a region"]) + let v = native_list_append(v, ["ⲡⲧⲁϩ", "noun", "ⲡⲧⲁϩ", "", "", "", "Ptah the Egyptian"]) + let v = native_list_append(v, ["ⲁⲫⲣⲟⲇⲓⲧⲏ", "noun", "ⲁⲫⲣⲟⲇⲓⲧⲏ", "", "", "", "Aphrodite greek goddess"]) + let v = native_list_append(v, ["ⲃⲛ̄", "noun", "ⲃⲛ̄", "", "", "", "phoenix"]) + let v = native_list_append(v, ["ⲁⲅⲣⲓⲡⲡⲓⲛⲟⲥ", "noun", "ⲁⲅⲣⲓⲡⲡⲓⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲏⲗⲓⲟⲥ", "noun", "ϩⲏⲗⲓⲟⲥ", "", "", "", "sun"]) + let v = native_list_append(v, ["ⲙⲟⲩⲥⲁ", "noun", "ⲙⲟⲩⲥⲁ", "", "", "", "Muse greek goddesses"]) + let v = native_list_append(v, ["ϩⲁⲣⲡⲉϩⲣⲟⲧ", "noun", "ϩⲁⲣⲡⲉϩⲣⲟⲧ", "", "", "", "Harpocrates Graeco-Egyptian god"]) + let v = native_list_append(v, ["ϩⲁⲣⲡⲟⲕⲣⲁⲧⲏⲥ", "noun", "ϩⲁⲣⲡⲟⲕⲣⲁⲧⲏⲥ", "", "", "", "Harpocrates Graeco-Egyptian god"]) + let v = native_list_append(v, ["ⲛⲟϥⲣⲉ", "noun", "ⲛⲟϥⲣⲉ", "", "", "", "good benefit advantage"]) + let v = native_list_append(v, ["ⲛⲧⲱⲣⲉ", "noun", "ⲉⲛⲧⲏⲣ", "", "", "", "goddess"]) + let v = native_list_append(v, ["ⲛⲉⲃⲑⲱ", "noun", "ⲛⲉⲃⲑⲱ", "", "", "", "Nephthys"]) + let v = native_list_append(v, ["ⲓⲱⲁⲛⲛⲏⲥ", "noun", "ⲓⲱⲁⲛⲛⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲛⲇⲣⲟⲛⲓⲕⲟⲥ", "noun", "ⲁⲛⲇⲣⲟⲛⲓⲕⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲙⲱⲣⲓⲥ", "noun", "ⲙⲱⲣⲓⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲓⲁⲛⲏ", "noun", "ⲇⲓⲁⲛⲏ", "", "", "", "Diana the Roman"]) + let v = native_list_append(v, ["ⲅⲉⲣⲙⲁⲛⲓⲕⲟⲥ", "noun", "ⲅⲉⲣⲙⲁⲛⲓⲕⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲓⲩⲛⲟ", "noun", "ⲓⲩⲛⲟ", "", "", "", "Juno the Roman"]) + let v = native_list_append(v, ["ⲃⲁϩⲁⲗ", "noun", "ⲃⲁϩⲁⲗ", "", "", "", "Baal king of"]) + let v = native_list_append(v, ["ⲓⲟⲩⲥⲧⲓⲛⲓⲁⲛⲟⲥ", "noun", "ⲓⲟⲩⲥⲧⲓⲛⲓⲁⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲣⲱⲙⲁⲛⲟⲥ", "noun", "ⲣⲱⲙⲁⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲣⲱⲙⲟⲩⲗⲟⲥ", "noun", "ⲣⲱⲙⲟⲩⲗⲟⲥ", "", "", "", "Romulus the legendary"]) + let v = native_list_append(v, ["ⲁⲧⲟⲩⲙ", "noun", "ⲁⲧⲟⲩⲙ", "", "", "", "Atum the Egyptian"]) + let v = native_list_append(v, ["ⲁⲙⲱⲛ", "noun", "ⲁⲙⲱⲛ", "", "", "", "Amun the hidden"]) + let v = native_list_append(v, ["ⲓⲱϩⲁⲛⲛⲏⲥ", "noun", "ⲓⲱϩⲁⲛⲛⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲧⲏ", "noun", "ⲧⲏ", "", "", "", "The Duat the"]) + let v = native_list_append(v, ["ⲁⲣⲕⲁⲇⲓⲁ", "noun", "ⲁⲣⲕⲁⲇⲓⲁ", "", "", "", "Arcadia a region"]) + let v = native_list_append(v, ["ⲧⲓⲃⲉⲣⲓⲟⲥ", "noun", "ⲧⲓⲃⲉⲣⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲟⲅⲉⲛⲏⲥ", "noun", "ϩⲉⲣⲙⲟⲅⲉⲛⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲁⲩⲱⲥ", "noun", "ϩⲉⲣⲙⲁⲩⲱⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲁⲣⲛⲁⲃⲁⲥ", "noun", "ⲃⲁⲣⲛⲁⲃⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲫⲉⲥⲟⲥ", "noun", "ⲉⲫⲉⲥⲟⲥ", "", "", "", "Ephesus an Ionian"]) + let v = native_list_append(v, ["ⲁⲣⲧⲩⲙⲓⲥ", "noun", "ⲁⲣⲧⲩⲙⲓⲥ", "", "", "", "Artemis"]) + let v = native_list_append(v, ["ⲁⲣⲇⲩⲙⲓⲥ", "noun", "ⲁⲣⲇⲩⲙⲓⲥ", "", "", "", "Artemis"]) + let v = native_list_append(v, ["ϩⲱⲣⲥⲓⲏⲥⲉ", "noun", "ϩⲱⲣⲥⲓⲏⲥⲉ", "", "", "", "Harsiesi a male"]) + let v = native_list_append(v, ["ⲉⲣⲱⲥ", "noun", "ⲉⲣⲱⲥ", "", "", "", "sexual love."]) + let v = native_list_append(v, ["ⲓⲣⲓⲥ", "noun", "ⲓⲣⲓⲥ", "", "", "", "Iris messenger of"]) + let v = native_list_append(v, ["ⲧⲟⲟⲩⲧⲉ", "noun", "ⲧⲟⲟⲩⲧⲉ", "", "", "", "Tutu the Egyptian"]) + let v = native_list_append(v, ["ⲍⲉⲟⲥ", "noun", "ⲍⲉⲟⲥ", "", "", "", "Zeus king of"]) + let v = native_list_append(v, ["ⲁⲛϩⲟⲩⲣⲉ", "noun", "ⲁⲛϩⲟⲩⲣⲉ", "", "", "", "Anhur the Egyptian"]) + let v = native_list_append(v, ["ⲁⲛⲟⲩⲡ", "noun", "ⲁⲛⲟⲩⲡ", "", "", "", "Anubis the Egyptian"]) + let v = native_list_append(v, ["ⲟⲩⲃⲁⲥϯ", "noun", "ⲟⲩⲃⲁⲥϯ", "", "", "", "Bastet the Egyptian"]) + let v = native_list_append(v, ["ⲇⲓⲟⲇⲱⲣⲟⲥ", "noun", "ⲇⲓⲟⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲑⲏⲛⲟⲇⲱⲣⲟⲥ", "noun", "ⲁⲑⲏⲛⲟⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϫⲓϫⲱⲓ", "noun", "ϫⲓϫⲱⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϭⲓϫⲱⲓ", "noun", "ϭⲓϫⲱⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϭⲓϣϣⲱⲓ", "noun", "ϭⲓϣϣⲱⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲉϧ", "noun", "ⲫⲉϧ", "", "", "", "melon"]) + let v = native_list_append(v, ["ⲥⲧⲟⲓⲕⲟⲥ", "noun", "ⲥⲧⲟⲓⲕⲟⲥ", "", "", "", "Stoic"]) + let v = native_list_append(v, ["ⲡⲟⲥⲓⲧⲱⲛ", "noun", "ⲡⲟⲥⲓⲧⲱⲛ", "", "", "", "Poseidon Greek god"]) + let v = native_list_append(v, ["ⲗⲁⲃⲟⲧⲉ", "noun", "ⲗⲁⲃⲟⲧⲉ", "", "", "", "sodomite"]) + let v = native_list_append(v, ["ⲃⲁϩ", "noun", "ⲃⲁϩ", "", "", "", "penis"]) + let v = native_list_append(v, ["ⲗⲁⲃⲟϯ", "noun", "ⲗⲁⲃⲟϯ", "", "", "", "sodomite"]) + let v = native_list_append(v, ["ⲙⲁⲗⲁⲕⲟⲥ", "noun", "ⲙⲁⲗⲁⲕⲟⲥ", "", "", "", "catamite bottom passive"]) + let v = native_list_append(v, ["ⲛⲟⲉⲓⲕ", "noun", "ⲛⲟⲉⲓⲕ", "", "", "", "fornicator adulterer."]) + let v = native_list_append(v, ["ⲁⲑⲏⲛⲁ", "noun", "ⲁⲑⲏⲛⲁ", "", "", "", "Athena Greek goddess"]) + let v = native_list_append(v, ["ⲁⲑⲱⲣ", "noun", "ⲁⲑⲱⲣ", "", "", "", "Hathor the Egyptian"]) + let v = native_list_append(v, ["ⲧⲣⲓⲥⲙⲉⲅⲓⲥⲑⲟⲥ", "noun", "ⲧⲣⲓⲥⲙⲉⲅⲓⲥⲑⲟⲥ", "", "", "", "An epithet of"]) + let v = native_list_append(v, ["ⲫⲟⲓⲃⲟⲥ", "noun", "ⲫⲟⲓⲃⲟⲥ", "", "", "", "Phoebus an epithet"]) + let v = native_list_append(v, ["ⲡⲣⲟⲙⲁⲭⲟⲥ", "noun", "ⲡⲣⲟⲙⲁⲭⲟⲥ", "", "", "", "An epithet of"]) + let v = native_list_append(v, ["ⲙⲓⲟⲥ", "noun", "ⲙⲓⲟⲥ", "", "", "", "Maahes Egyptian lion-headed"]) + let v = native_list_append(v, ["ⲁⲛⲟⲩⲕⲉ", "noun", "ⲁⲛⲟⲩⲕⲉ", "", "", "", "Anuket an Ancient"]) + let v = native_list_append(v, ["ⲙⲓⲛ", "noun", "ⲙⲓⲛ", "", "", "", "Min the Egyptian"]) + let v = native_list_append(v, ["ⲅⲉⲣⲙⲁⲛⲟⲥ", "noun", "ⲅⲉⲣⲙⲁⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲅⲉⲛⲛⲁⲇⲓⲟⲥ", "noun", "ⲅⲉⲛⲛⲁⲇⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲓⲥⲓⲇⲱⲣⲟⲥ", "noun", "ⲓⲥⲓⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲣⲙⲟⲕⲗⲁⲥ", "noun", "ⲉⲣⲙⲟⲕⲗⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲱⲕⲣⲁⲧⲏⲥ", "noun", "ⲥⲱⲕⲣⲁⲧⲏⲥ", "", "", "", "A classical Greek"]) + let v = native_list_append(v, ["ⲃⲓⲕⲧⲱⲣ", "noun", "ⲃⲓⲕⲧⲱⲣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲧⲣⲁⲓⲁⲛⲉ", "noun", "ⲧⲣⲁⲓⲁⲛⲉ", "", "", "", "Name of a"]) + let v = native_list_append(v, ["ⲕⲟⲣⲛⲏⲗⲓⲟⲥ", "noun", "ⲕⲟⲣⲛⲏⲗⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲁⲣⲑⲟⲗⲟⲙⲁⲓⲟⲥ", "noun", "ⲃⲁⲣⲑⲟⲗⲟⲙⲁⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲕⲉⲓⲡⲓⲱⲛ", "noun", "ⲥⲕⲉⲓⲡⲓⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲗⲩⲣⲁ", "noun", "ⲗⲩⲣⲁ", "", "", "", "lyre"]) + let v = native_list_append(v, ["ⲉⲣⲙⲁⲫⲣⲟⲇⲓⲧⲟⲥ", "noun", "ⲉⲣⲙⲁⲫⲣⲟⲇⲓⲧⲟⲥ", "", "", "", "Hermaphroditus greek god"]) + let v = native_list_append(v, ["ⲡⲉⲣⲓⲇⲱⲛ", "noun", "ⲡⲉⲣⲓⲇⲱⲛ", "", "", "", "Muse greek goddesses"]) + let v = native_list_append(v, ["ⲫⲟⲃⲟⲥ", "noun", "ⲫⲟⲃⲟⲥ", "", "", "", "fear"]) + let v = native_list_append(v, ["ⲏⲫⲁⲓⲥⲧⲟⲥ", "noun", "ⲏⲫⲁⲓⲥⲧⲟⲥ", "", "", "", "Hephaestus Greek god"]) + let v = native_list_append(v, ["ⲉⲥⲧⲓⲁ", "noun", "ⲉⲥⲧⲓⲁ", "", "", "", "Hestia Greek goddess"]) + let v = native_list_append(v, ["ⲟⲩⲱⲧⲛ", "noun", "ⲟⲩⲱⲧⲛ", "", "", "", "offering"]) + let v = native_list_append(v, ["ⲡⲁⲩⲥⲓⲣⲉ", "noun", "ⲡⲁⲩⲥⲓⲣⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲁⲡⲉ", "noun", "ⲡⲁⲁⲡⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲓⲟⲕⲗⲁⲥ", "noun", "ⲇⲓⲟⲕⲗⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲓⲟⲙⲏⲧⲏⲥ", "noun", "ⲇⲓⲟⲙⲏⲧⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲓⲟⲥ", "noun", "ⲇⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲁⲭⲙⲓ", "noun", "ⲥⲁⲭⲙⲓ", "", "", "", "Sekhmet the Egyptian"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁⲡⲓⲥ", "noun", "ⲥⲁⲣⲁⲡⲓⲥ", "", "", "", "Serapis Graeco-Egyptian god"]) + let v = native_list_append(v, ["ⲡⲟⲥⲓⲇⲱⲛⲓⲟⲥ", "noun", "ⲡⲟⲥⲓⲇⲱⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲥⲕⲗⲏⲡⲓⲟⲥ", "noun", "ⲁⲥⲕⲗⲏⲡⲓⲟⲥ", "", "", "", "Asclepius Greek god"]) + let v = native_list_append(v, ["ⲡⲁⲗⲗⲁⲥ", "noun", "ⲡⲁⲗⲗⲁⲥ", "", "", "", "An epithet of"]) + let v = native_list_append(v, ["ⲁⲛⲧⲓⲛⲟⲟⲥ", "noun", "ⲁⲛⲧⲓⲛⲟⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲣⲙⲟⲇⲱⲣⲟⲥ", "noun", "ⲉⲣⲙⲟⲇⲱⲣⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲙⲁⲕⲉⲇⲟⲛⲓⲁ", "noun", "ⲙⲁⲕⲉⲇⲟⲛⲓⲁ", "", "", "", "Macedonia a land"]) + let v = native_list_append(v, ["ⲁⲭⲓⲗⲗⲉⲩⲉ", "noun", "ⲁⲭⲓⲗⲗⲉⲩⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲛⲟⲩⲙ", "noun", "ϩⲛⲟⲩⲙ", "", "", "", "Khnum the Egyptian"]) + let v = native_list_append(v, ["ⲅⲉⲃ", "noun", "ⲅⲉⲃ", "", "", "", "Geb the Egyptian"]) + let v = native_list_append(v, ["ⲁⲡⲟⲗⲗⲱⲛⲓⲟⲥ", "noun", "ⲁⲡⲟⲗⲗⲱⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲛⲓⲕⲟⲗⲁⲟⲥ", "noun", "ⲛⲓⲕⲟⲗⲁⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲩⲇⲟⲝⲓⲁ", "noun", "ⲉⲩⲇⲟⲝⲓⲁ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲧⲃⲁⲓⲧⲱⲟⲩ", "noun", "ⲧⲃⲁⲓⲧⲱⲟⲩ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ⲟⲩⲉⲛⲟϥⲣⲉ", "noun", "ⲟⲩⲉⲛⲟϥⲣⲉ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ⲡⲉⲧⲃⲉ", "noun", "ⲡⲉⲧⲃⲉ", "", "", "", "Petbe the Egyptian"]) + let v = native_list_append(v, ["ⲥⲧⲩⲣⲁⲝ", "noun", "ⲥⲧⲩⲣⲁⲝ", "", "", "", "storax"]) + let v = native_list_append(v, ["ⲙⲁⲥϯⲭⲉ", "noun", "ⲙⲁⲥϯⲭⲉ", "", "", "", "mastic"]) + let v = native_list_append(v, ["ⲕⲉⲛⲛⲁⲃⲉⲣⲉⲟⲥ", "noun", "ⲕⲉⲛⲛⲁⲃⲉⲣⲉⲟⲥ", "", "", "", "cinnabar"]) + let v = native_list_append(v, ["ⲗⲓⲃⲁⲛⲟⲩ", "noun", "ⲗⲓⲃⲁⲛⲟⲩ", "", "", "", "frankincense"]) + let v = native_list_append(v, ["ⲇⲁⲃⲛⲏⲥ", "noun", "ⲇⲁⲃⲛⲏⲥ", "", "", "", "sweet bay"]) + let v = native_list_append(v, ["ⲥⲧⲉⲫⲁⲛⲟⲥ", "noun", "ⲥⲧⲉⲫⲁⲛⲟⲥ", "", "", "", "crown laurel wreath"]) + let v = native_list_append(v, ["ⲧⲁⲓⲛⲓⲁ", "noun", "ⲧⲁⲓⲛⲓⲁ", "", "", "", "band fillet"]) + let v = native_list_append(v, ["ⲃⲏⲥⲁⲙⲱⲛ", "noun", "ⲃⲏⲥⲁⲙⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲙⲙⲱⲛ", "noun", "ⲁⲙⲙⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲣⲕⲁⲇⲓⲟⲥ", "noun", "ⲁⲣⲕⲁⲇⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲟⲛⲟⲣⲓⲟⲥ", "noun", "ⲟⲛⲟⲣⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲩⲣⲏⲗⲓⲟⲥ", "noun", "ⲁⲩⲣⲏⲗⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲣⲓⲥⲧⲟⲥ", "noun", "ⲁⲣⲓⲥⲧⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲣⲓⲥⲧⲟⲫⲁⲛⲏⲥ", "noun", "ⲁⲣⲓⲥⲧⲟⲫⲁⲛⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲑⲉⲱⲛ", "noun", "ⲑⲉⲱⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲩⲡⲁⲧⲉⲓⲁ", "noun", "ⲩⲡⲁⲧⲉⲓⲁ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲛⲓⲕⲏ", "noun", "ⲛⲓⲕⲏ", "", "", "", "Nike Greek goddess"]) + let v = native_list_append(v, ["ⲓⲟⲩⲥⲧⲓⲛⲟⲥ", "noun", "ⲓⲟⲩⲥⲧⲓⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲁⲩⲥⲧⲟⲥ", "noun", "ⲫⲁⲩⲥⲧⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲕⲱⲡⲓⲥ", "noun", "ⲕⲱⲡⲓⲥ", "", "", "", "sword knife"]) + let v = native_list_append(v, ["ⲧⲣⲓⲕⲟⲛ", "noun", "ⲧⲣⲓⲕⲟⲛ", "", "", "", "turtle dove"]) + let v = native_list_append(v, ["ⲁⲡⲟⲗⲗⲟⲧⲱⲣⲉ", "noun", "ⲁⲡⲟⲗⲗⲟⲧⲱⲣⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲓⲱⲛⲏⲥⲓⲟⲥ", "noun", "ⲇⲓⲱⲛⲏⲥⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲙⲁⲣⲅⲁⲣⲓⲧⲏⲥ", "noun", "ⲙⲁⲣⲅⲁⲣⲓⲧⲏⲥ", "", "", "", "pearl"]) + let v = native_list_append(v, ["ⲕⲟⲕⲕⲟⲥ", "noun", "ⲕⲟⲕⲕⲟⲥ", "", "", "", "a scarlet"]) + let v = native_list_append(v, ["ⲑⲱⲟⲩⲧ ⲡⲓⲟ ⲡⲓⲟ", "noun", "ⲑⲱⲟⲩⲧ ⲡⲓⲟ ⲡⲓⲟ", "", "", "", "Thoth twice great."]) + let v = native_list_append(v, ["ⲁⲩⲗⲏ", "noun", "ⲁⲩⲗⲏ", "", "", "", "courtyard"]) + let v = native_list_append(v, ["ⲉⲝⲉⲇⲣⲁ", "noun", "ⲉⲝⲉⲇⲣⲁ", "", "", "", "veranda a hall"]) + let v = native_list_append(v, ["ⲗⲉⲃⲁⲛ", "noun", "ⲗⲉⲃⲁⲛ", "", "", "", "cable of a"]) + let v = native_list_append(v, ["ⲭⲁⲣⲁⲭⲧⲉ", "noun", "ⲭⲁⲣⲁⲭⲧⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲧⲁⲡ", "noun", "ⲧⲁⲡ", "", "", "", "horn tusk."]) + let v = native_list_append(v, ["ⲕⲱ ⲉϩⲣⲁⲓ", "noun", "ⲕⲱ ⲉϩⲣⲁⲓ", "", "", "", "provision"]) + let v = native_list_append(v, ["ⲍⲱⲏ", "noun", "ⲍⲱⲏ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲕⲗⲉⲩⲡⲁⲧⲣⲁ", "noun", "ⲕⲗⲉⲩⲡⲁⲧⲣⲁ", "", "", "", "Cleopatra a female"]) + let v = native_list_append(v, ["ⲁⲭⲓⲗⲗⲓⲟⲛ", "noun", "ⲁⲭⲓⲗⲗⲓⲟⲛ", "", "", "", "Temple of Achilles"]) + let v = native_list_append(v, ["ⲉⲑⲁⲛⲓⲟⲛ", "noun", "ⲉⲑⲁⲛⲓⲟⲛ", "", "", "", "Temple of Athena."]) + let v = native_list_append(v, ["ⲛⲁⲟⲥ", "noun", "ⲛⲁⲟⲥ", "", "", "", "temple"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁⲡⲓⲱⲛ", "noun", "ⲥⲁⲣⲁⲡⲓⲱⲛ", "", "", "", "Temple of Serapis"]) + let v = native_list_append(v, ["ⲃⲓⲃⲗⲓⲱⲑⲏⲕⲏ", "noun", "ⲃⲓⲃⲗⲓⲱⲑⲏⲕⲏ", "", "", "", "library"]) + let v = native_list_append(v, ["ⲟⲗⲩⲙⲡⲟⲥ", "noun", "ⲟⲗⲩⲙⲡⲟⲥ", "", "", "", "Olympus a mountain"]) + let v = native_list_append(v, ["ⲥⲧⲩⲗⲟⲥ", "noun", "ⲥⲧⲩⲗⲟⲥ", "", "", "", "pillar"]) + let v = native_list_append(v, ["ⲙⲉⲣⲕⲟⲩⲣⲓⲟⲥ", "noun", "ⲙⲉⲣⲕⲟⲩⲣⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲃⲉⲣϭⲱⲧ", "noun", "ⲃⲉⲣϭⲱⲧ", "", "", "", "pond"]) + let v = native_list_append(v, ["ⲡⲗⲟⲩⲧⲱⲛⲓⲟⲥ", "noun", "ⲡⲗⲟⲩⲧⲱⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲑⲉⲟⲥ", "noun", "ⲑⲉⲟⲓ", "", "", "", "god"]) + let v = native_list_append(v, ["ⲡⲁⲣⲁⲗⲓⲁ", "noun", "ⲡⲁⲣⲁⲗⲓⲁ", "", "", "", "coast seacoast"]) + let v = native_list_append(v, ["ⲉⲥⲟⲩⲏⲣⲉ", "noun", "ⲉⲥⲟⲩⲏⲣⲉ", "", "", "", "Isis the great."]) + let v = native_list_append(v, ["ⲑⲟⲩⲏⲣⲓ", "noun", "ⲑⲟⲩⲏⲣⲓ", "", "", "", "Tawaret goddess of"]) + let v = native_list_append(v, ["ⲗⲓⲙⲛⲏ", "noun", "ⲗⲓⲙⲛⲏ", "", "", "", "lake pool cistern"]) + let v = native_list_append(v, ["ⲱⲕⲉⲁⲛⲟⲥ", "noun", "ⲱⲕⲉⲁⲛⲟⲥ", "", "", "", "ocean"]) + let v = native_list_append(v, ["ⲭⲣⲟ", "noun", "ⲭⲣⲟ", "", "", "", "shore of sea"]) + let v = native_list_append(v, ["ⲁⲛⲧⲱⲟⲩ", "noun", "ⲁⲛⲧⲱⲟⲩ", "", "", "", "mountainous country highland"]) + let v = native_list_append(v, ["ⲕⲁⲡϣⲱ", "noun", "ⲕⲁⲡϣⲱ", "", "", "", "wasteland sandy land"]) + let v = native_list_append(v, ["ⲕⲁⲗⲁⲙⲫⲟ", "noun", "ⲕⲁⲗⲁⲙⲫⲱⲟⲩ", "", "", "", "hill"]) + let v = native_list_append(v, ["ⲑⲟⲗ", "noun", "ⲑⲟⲗ", "", "", "", "heap hillock"]) + let v = native_list_append(v, ["ⲙⲟⲛⲁⲥⲧⲏⲣⲓⲟⲛ", "noun", "ⲙⲟⲛⲁⲥⲧⲏⲣⲓⲟⲛ", "", "", "", "monastery"]) + let v = native_list_append(v, ["ⲕⲁⲧⲁⲣⲁⲕⲧⲏⲥ", "noun", "ⲕⲁⲧⲁⲣⲁⲕⲧⲏⲥ", "", "", "", "waterfall cataract"]) + let v = native_list_append(v, ["ⲙⲛⲧⲗⲁⲃⲟⲧⲉ", "noun", "ⲙⲛⲧⲗⲁⲃⲟⲧⲉ", "", "", "", "homosexuality"]) + let v = native_list_append(v, ["ⲉⲩⲧⲣⲟⲡⲓⲟⲥ", "noun", "ⲉⲩⲧⲣⲟⲡⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲁⲣⲙⲁϣⲓ", "noun", "ϩⲁⲣⲙⲁϣⲓ", "", "", "", "An epithet of"]) + let v = native_list_append(v, ["ⲁⲙⲛⲧⲉ", "noun", "ⲁⲙⲛⲧⲉ", "", "", "", "the afterlife underworld"]) + let v = native_list_append(v, ["ⲕⲁⲧⲁϩⲣⲁⲕⲧⲏⲥ", "noun", "ⲕⲁⲧⲁϩⲣⲁⲕⲧⲏⲥ", "", "", "", "waterfall cataract"]) + let v = native_list_append(v, ["ⲙⲟⲛⲁⲥⲧⲉⲣⲓⲟⲛ", "noun", "ⲙⲟⲛⲁⲥⲧⲉⲣⲓⲟⲛ", "", "", "", "monastery"]) + let v = native_list_append(v, ["ⲥⲡⲏⲗⲁⲓⲟⲛ", "noun", "ⲥⲡⲏⲗⲁⲓⲟⲛ", "", "", "", "cave"]) + let v = native_list_append(v, ["ϣⲟϣⲙⲓ", "noun", "ϣⲟϣⲙⲓ", "", "", "", "Sekhmet the Egyptian"]) + let v = native_list_append(v, ["ⲍⲉⲩⲥⲁⲙⲙⲱⲛ", "noun", "ⲍⲉⲩⲥⲁⲙⲙⲱⲛ", "", "", "", "Zeus Ammon the"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲁⲛⲟⲩⲡ", "noun", "ϩⲉⲣⲙⲁⲛⲟⲩⲡ", "", "", "", "Hermanubis the end"]) + let v = native_list_append(v, ["ϯⲕⲉϣⲣⲱⲙⲓ", "noun", "ϯⲕⲉϣⲣⲱⲙⲓ", "", "", "", "Cairo the capital"]) + let v = native_list_append(v, ["ⲭⲁⲓⲣⲟⲛ", "noun", "ⲭⲁⲓⲣⲟⲛ", "", "", "", "Cairo the capital"]) + let v = native_list_append(v, ["ⲁⲣⲏⲥⲁⲛϩⲟⲩⲣⲉ", "noun", "ⲁⲣⲏⲥⲁⲛϩⲟⲩⲣⲉ", "", "", "", "Ares Anhur the"]) + let v = native_list_append(v, ["ⲝⲓⲫⲟⲥ", "noun", "ⲝⲓⲫⲟⲥ", "", "", "", "xiphos"]) + let v = native_list_append(v, ["ⲧⲁⲩⲣⲟⲥ", "noun", "ⲧⲁⲩⲣⲟⲥ", "", "", "", "bull ox"]) + let v = native_list_append(v, ["ⲁⲛⲧⲱⲛⲉ", "noun", "ⲁⲛⲧⲱⲛⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲟⲥ", "noun", "ϩⲟⲥ", "", "", "", "feces excrement of"]) + let v = native_list_append(v, ["ⲧⲩⲭⲏ", "noun", "ⲧⲩⲭⲏ", "", "", "", "fortune"]) + let v = native_list_append(v, ["ⲛⲉⲧⲟ", "noun", "ⲛⲉⲧⲟ", "", "", "", "great god a"]) + let v = native_list_append(v, ["ϩⲉ", "noun", "ϩⲉ", "", "", "", "ibis"]) + let v = native_list_append(v, ["ⲟⲛⲟⲩⲣⲓⲥ", "noun", "ⲟⲛⲟⲩⲣⲓⲥ", "", "", "", "Anhur the Egyptian"]) + let v = native_list_append(v, ["ⲁⲡⲁⲧ", "noun", "ⲁⲡⲁⲧ", "", "", "", "cup drinking vessel"]) + let v = native_list_append(v, ["ⲁⲛⲁⲥⲧⲁⲥⲓⲟⲥ", "noun", "ⲁⲛⲁⲥⲧⲁⲥⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲑⲟⲟⲩⲧ", "noun", "ⲑⲟⲟⲩⲧ", "", "", "", "Thoth the Egyptian"]) + let v = native_list_append(v, ["ⲭⲓⲙⲁⲣⲣⲁⲓⲥ", "noun", "ⲭⲓⲙⲁⲣⲣⲁⲓⲥ", "", "", "", "Chimera a monstrous"]) + let v = native_list_append(v, ["ⲥⲧⲣⲁⲧⲏⲅⲟⲥ", "noun", "ⲥⲧⲣⲁⲧⲏⲅⲟⲥ", "", "", "", "strategos commander rank"]) + let v = native_list_append(v, ["ⲃⲏⲥⲁ", "noun", "ⲃⲏⲥⲁ", "", "", "", "Bes an ancient"]) + let v = native_list_append(v, ["ⲑⲱⲧⲑ", "noun", "ⲑⲱⲧⲑ", "", "", "", "Thoth the Egyptian"]) + let v = native_list_append(v, ["ⲁⲓⲅⲩⲡⲧⲓⲁⲕⲟⲛ", "noun", "ⲁⲓⲅⲩⲡⲧⲓⲁⲕⲟⲛ", "", "", "", "the Egyptian language"]) + let v = native_list_append(v, ["ⲥⲩⲛⲕⲗⲏⲧⲟⲥ", "noun", "ⲥⲩⲛⲕⲗⲏⲧⲟⲥ", "", "", "", "senate."]) + let v = native_list_append(v, ["ⲓⲉⲣⲁⲕⲗⲁⲥ", "noun", "ⲓⲉⲣⲁⲕⲗⲁⲥ", "", "", "", "Heracles a Greek"]) + let v = native_list_append(v, ["ⲭⲱⲣⲓⲟⲛ", "noun", "ⲭⲱⲣⲓⲟⲛ", "", "", "", "town district."]) + let v = native_list_append(v, ["ⲟⲩⲗⲏ", "noun", "ⲟⲩⲗⲏ", "", "", "", "courtyard"]) + let v = native_list_append(v, ["ⲇⲓⲕⲁⲥⲧⲏⲥ", "noun", "ⲇⲓⲕⲁⲥⲧⲏⲥ", "", "", "", "judge"]) + let v = native_list_append(v, ["ⲡⲁⲡⲉ", "noun", "ⲡⲁⲡⲉ", "", "", "", "Luxor a city"]) + let v = native_list_append(v, ["ⲑⲱϣ", "noun", "ⲑⲱϣ", "", "", "", "border limit"]) + let v = native_list_append(v, ["ⲧⲟϣ", "noun", "ⲧⲟϣ", "", "", "", "border limit"]) + let v = native_list_append(v, ["ⲁⲙⲙⲱⲛⲓⲟⲥ", "noun", "ⲁⲙⲙⲱⲛⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲟⲩⲧⲉϩ", "noun", "ⲟⲩⲧⲉϩ", "", "", "", "fruit crop produce"]) + let v = native_list_append(v, ["ⲧⲟⲩⲏⲣⲉ", "noun", "ⲧⲟⲩⲏⲣⲉ", "", "", "", "Tawaret goddess of"]) + let v = native_list_append(v, ["ⲅⲁⲣⲡⲟⲥ", "noun", "ⲅⲁⲣⲡⲟⲥ", "", "", "", "fruit crop produce"]) + let v = native_list_append(v, ["ⲃⲁⲅⲇⲁⲛ", "noun", "ⲃⲁⲅⲇⲁⲛ", "", "", "", "Baghdad the capital"]) + let v = native_list_append(v, ["ϫⲁⲉⲓⲥ", "noun", "ϫⲓⲥⲁⲁⲩⲉ", "", "", "", "master"]) + let v = native_list_append(v, ["ⲕⲣⲟⲕⲟⲥ", "noun", "ⲕⲣⲟⲕⲟⲓ", "", "", "", "saffron crocus"]) + let v = native_list_append(v, ["ⲥⲱⲟⲩϩ", "noun", "ⲥⲱⲟⲩϩ", "", "", "", "gathering meeting place"]) + let v = native_list_append(v, ["ⲕⲉⲫⲁⲗⲁⲓⲟⲛ", "noun", "ⲕⲉⲫⲁⲗⲁⲓⲟⲛ", "", "", "", "chapter"]) + let v = native_list_append(v, ["ⲁⲗⲉⲝⲓⲕⲁⲕⲱⲥ", "noun", "ⲁⲗⲉⲝⲓⲕⲁⲕⲱⲥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ⲭⲣⲩⲥⲁⲱⲣ", "noun", "ⲭⲣⲩⲥⲁⲱⲣ", "", "", "", "Chrysaor."]) + let v = native_list_append(v, ["ⲛⲉϥⲑⲏⲙ", "noun", "ⲛⲉϥⲑⲏⲙ", "", "", "", "The god Nefertum"]) + let v = native_list_append(v, ["ⲗⲉⲱⲛⲓⲇⲁⲥ", "noun", "ⲗⲉⲱⲛⲓⲇⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲉⲣⲓⲕⲗⲁⲥ", "noun", "ⲡⲉⲣⲓⲕⲗⲁⲥ", "", "", "", "An ancient Greek"]) + let v = native_list_append(v, ["ⲗⲁⲅⲉⲓⲟⲛ", "noun", "ⲗⲁⲅⲉⲓⲟⲛ", "", "", "", "The Lageion the"]) + let v = native_list_append(v, ["ⲙⲁⲛⲛⲟⲩⲧ", "noun", "ⲙⲁⲛⲛⲟⲩⲧ", "", "", "", "mill"]) + let v = native_list_append(v, ["ⲥⲏⲓⲛⲓ", "noun", "ⲥⲏⲓⲛⲓ", "", "", "", "granary bin"]) + let v = native_list_append(v, ["ⲟⲩⲱⲓ", "noun", "ⲟⲩⲓⲏ", "", "", "", "husbandman cultivator"]) + let v = native_list_append(v, ["ⲉⲩⲛⲓ", "noun", "ⲉⲩⲛⲓ", "", "", "", "mill"]) + let v = native_list_append(v, ["ⲫⲁⲣⲉϩ", "noun", "ⲫⲁⲣⲉϩ", "", "", "", "Pharos a former"]) + let v = native_list_append(v, ["ⲡⲁⲣⲑⲉⲛⲱⲛ", "noun", "ⲡⲁⲣⲑⲉⲛⲱⲛ", "", "", "", "Parthenon the famous"]) + let v = native_list_append(v, ["ⲑⲩⲥⲓⲁⲥⲧⲏⲣⲓⲟⲛ", "noun", "ⲑⲩⲥⲓⲁⲥⲧⲏⲣⲓⲟⲛ", "", "", "", "altar"]) + let v = native_list_append(v, ["ⲑⲉⲁⲧⲣⲟⲛ", "noun", "ⲑⲉⲁⲧⲣⲟⲛ", "", "", "", "theater"]) + let v = native_list_append(v, ["ϩⲣⲱⲙⲏ", "noun", "ϩⲣⲱⲙⲏ", "", "", "", "Rome a major"]) + let v = native_list_append(v, ["ⲕⲓⲗⲓⲕⲓⲁ", "noun", "ⲕⲓⲗⲓⲕⲓⲁ", "", "", "", "Cilicia a land"]) + let v = native_list_append(v, ["ⲇⲓⲟⲕⲗⲏϯⲁⲛⲟⲥ", "noun", "ⲇⲓⲟⲕⲗⲏϯⲁⲛⲟⲥ", "", "", "", "Diocletian a male"]) + let v = native_list_append(v, ["ⲕⲁⲓⲥⲁⲣⲓⲁ", "noun", "ⲕⲁⲓⲥⲁⲣⲓⲁ", "", "", "", "Caesarea the name"]) + let v = native_list_append(v, ["ⲁⲛⲧⲓⲟⲭⲟⲥ", "noun", "ⲁⲛⲧⲓⲟⲭⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲣⲱⲙⲏ", "noun", "ⲣⲱⲙⲏ", "", "", "", "Rome a major"]) + let v = native_list_append(v, ["ⲣⲉϥⲫⲱⲛⲕ", "noun", "ⲣⲉϥⲫⲱⲛⲕ", "", "", "", "sculptor"]) + let v = native_list_append(v, ["ⲕⲟⲩⲫⲁⲧ", "noun", "ⲕⲟⲩⲫⲁⲧ", "", "", "", "carpet mattress"]) + let v = native_list_append(v, ["ⲫⲁϯⲟⲩⲉⲣϣⲓ", "noun", "ⲫⲁϯⲟⲩⲉⲣϣⲓ", "", "", "", "watchman guard"]) + let v = native_list_append(v, ["ⲙⲛⲧⲥⲁⲉⲓⲉ", "noun", "ⲙⲛⲧⲥⲁⲉⲓⲉ", "", "", "", "beauty."]) + let v = native_list_append(v, ["ⲣⲉϥⲕⲱⲥ", "noun", "ⲣⲉϥⲕⲱⲥ", "", "", "", "embalmer"]) + let v = native_list_append(v, ["ⲕⲁⲡⲡⲁⲇⲟⲕⲓⲁ", "noun", "ⲕⲁⲡⲡⲁⲇⲟⲕⲓⲁ", "", "", "", "Cappadocia a historical"]) + let v = native_list_append(v, ["ⲡⲟⲛⲧⲟⲥ", "noun", "ⲡⲟⲛⲧⲟⲥ", "", "", "", "Pontus an ancient"]) + let v = native_list_append(v, ["ⲁⲥⲓⲁ", "noun", "ⲁⲥⲓⲁ", "", "", "", "Asia a continent"]) + let v = native_list_append(v, ["ⲙⲉⲥⲁⲡⲟⲇⲁⲙⲓⲁ", "noun", "ⲙⲉⲥⲁⲡⲟⲇⲁⲙⲓⲁ", "", "", "", "Mesopotamia"]) + let v = native_list_append(v, ["ⲙⲏⲇⲟⲥ", "noun", "ⲙⲏⲇⲟⲥ", "", "", "", "Mede person from"]) + let v = native_list_append(v, ["ⲙⲟⲩⲗϩ", "noun", "ⲙⲟⲗϩ (molh)", "", "", "", "wax"]) + let v = native_list_append(v, ["ϣⲟⲩⲣⲏ", "noun", "ϣⲟⲩⲣⲏ", "", "", "", "censer"]) + let v = native_list_append(v, ["ϩⲣⲱ", "noun", "ϩⲣⲱ", "", "", "", "furnace oven"]) + let v = native_list_append(v, ["ⲉⲣϣⲓϣ", "noun", "ⲉⲣϣⲓϣ", "", "", "", "chickpea"]) + let v = native_list_append(v, ["ⲉⲣⲃⲓⲛ", "noun", "ⲉⲣⲃⲓⲛ", "", "", "", "papyrus"]) + let v = native_list_append(v, ["ϭⲟⲙϥ", "noun", "ϭⲟⲙϥ", "", "", "", "papyrus plant"]) + let v = native_list_append(v, ["ⲡⲉⲣⲟⲩⲉ", "noun", "ⲡⲉⲣⲟⲩⲉ", "", "", "", "a former city"]) + let v = native_list_append(v, ["ⲕⲏⲣⲩⲝ", "noun", "ⲕⲏⲣⲩⲝ", "", "", "", "herald"]) + let v = native_list_append(v, ["ⲡⲣⲓⲥⲕⲟⲥ", "noun", "ⲡⲣⲓⲥⲕⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲟⲛⲧ", "noun", "ϩⲟⲛⲧ", "", "", "", "pagan priest."]) + let v = native_list_append(v, ["ϩⲓⲧⲁⲗⲓⲕⲏ", "noun", "ϩⲓⲧⲁⲗⲓⲕⲏ", "", "", "", "Italian name of"]) + let v = native_list_append(v, ["ⲡⲓⲗⲁⲧⲟⲥ", "noun", "ⲡⲓⲗⲁⲧⲟⲥ", "", "", "", "Pontius Pilate the"]) + let v = native_list_append(v, ["ⲇⲓⲟⲛⲏⲥⲟⲥ", "noun", "ⲇⲓⲟⲛⲏⲥⲟⲥ", "", "", "", "Dionysus Greek god"]) + let v = native_list_append(v, ["ⲧⲣⲁⲓⲁⲛⲟⲥ", "noun", "ⲧⲣⲁⲓⲁⲛⲟⲥ", "", "", "", "Name of a"]) + let v = native_list_append(v, ["ⲓⲉⲣⲁⲕⲟⲥ", "noun", "ⲓⲉⲣⲁⲕⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲣⲱⲙⲁⲓⲟⲥ", "noun", "ϩⲣⲱⲙⲁⲓⲟⲥ", "", "", "", "a Roman"]) + let v = native_list_append(v, ["ⲟⲩⲁⲓⲛⲓⲛ", "noun", "ⲟⲩⲁⲓⲛⲓⲛ", "", "", "", "a Greek"]) + let v = native_list_append(v, ["ⲉⲗⲗⲏⲛ", "noun", "ⲉⲗⲗⲏⲛ", "", "", "", "a Greek"]) + let v = native_list_append(v, ["ⲏⲛⲓⲟⲭⲟⲥ", "noun", "ⲏⲛⲓⲟⲭⲟⲥ", "", "", "", "charioteer"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁⲡⲓⲟⲛ", "noun", "ⲥⲁⲣⲁⲡⲓⲟⲛ", "", "", "", "Temple of Serapis"]) + let v = native_list_append(v, ["ⲡⲣⲁⲓⲧⲱⲣⲓⲟⲛ", "noun", "ⲡⲣⲁⲓⲧⲱⲣⲓⲟⲛ", "", "", "", "praetorium"]) + let v = native_list_append(v, ["ⲧⲁⲙⲁⲥⲕⲟⲥ", "noun", "ⲧⲁⲙⲁⲥⲕⲟⲥ", "", "", "", "Damascus the capital"]) + let v = native_list_append(v, ["ⲙⲓⲑⲣⲁⲥ", "noun", "ⲙⲓⲑⲣⲁⲥ", "", "", "", "Mithras an Iranian"]) + let v = native_list_append(v, ["ⲥⲉⲃⲏⲣⲓⲟⲛ", "noun", "ⲥⲉⲃⲏⲣⲓⲟⲛ", "", "", "", "Severium a building"]) + let v = native_list_append(v, ["ⲁⲛⲧⲱⲛⲓ", "noun", "ⲁⲛⲧⲱⲛⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲫⲗⲁⲩⲃⲓⲟⲥ", "noun", "ⲫⲗⲁⲩⲃⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲡⲁⲧⲣⲟⲕⲗⲁⲥ", "noun", "ⲡⲁⲧⲣⲟⲕⲗⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲛⲉⲁⲛⲓⲥⲕⲟⲥ", "noun", "ⲛⲉⲁⲛⲓⲥⲕⲟⲥ", "", "", "", "young man youth"]) + let v = native_list_append(v, ["ϫⲱ⸗", "noun", "ϫⲱ⸗", "", "", "", "head of."]) + let v = native_list_append(v, ["ⲥⲕⲟⲣⲕⲉⲣ", "noun", "ⲥⲕⲟⲣⲕⲉⲣ", "", "", "", "a fermented drink"]) + let v = native_list_append(v, ["ⲃⲉⲗⲓⲥⲁⲣⲁⲓⲟⲥ", "noun", "ⲃⲉⲗⲓⲥⲁⲣⲁⲓⲟⲥ", "", "", "", "a general of"]) + let v = native_list_append(v, ["ⲁⲗⲉⲝⲁⲛⲇⲣⲟⲥ ⲡⲟ", "noun", "ⲁⲗⲉⲝⲁⲛⲇⲣⲟⲥ ⲡⲟ", "", "", "", "A king basileus"]) + let v = native_list_append(v, ["ⲥⲕⲟⲩⲣⲕⲟⲩⲣ", "noun", "ⲥⲕⲟⲩⲣⲕⲟⲩⲣ", "", "", "", "a fermented drink"]) + let v = native_list_append(v, ["ϩⲛⲕⲉ", "noun", "ϩⲛⲕⲉ", "", "", "", "beer"]) + let v = native_list_append(v, ["ⲫⲩⲛⲟⲥ", "noun", "ⲫⲩⲛⲟⲥ", "", "", "", "hedgehog"]) + let v = native_list_append(v, ["ⲁⲛⲑⲉⲣⲟⲥ", "noun", "ⲁⲛⲑⲉⲣⲟⲥ", "", "", "", "giraffe"]) + let v = native_list_append(v, ["ⲙⲉⲛⲇⲏⲥ", "noun", "ⲙⲉⲛⲇⲏⲥ", "", "", "", "Capricorn constellation of"]) + let v = native_list_append(v, ["ⲥⲧⲁⲇⲓⲟⲛ", "noun", "ⲥⲧⲁⲇⲓⲟⲛ", "", "", "", "stade 1/8 of"]) + let v = native_list_append(v, ["ⲕⲟⲓⲉ", "noun", "ⲕⲟⲓⲉ", "", "", "", "field pasture"]) + let v = native_list_append(v, ["ⲇⲓⲟⲙⲏⲇⲏⲥ", "noun", "ⲇⲓⲟⲙⲏⲇⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲑⲓⲧⲁⲗⲓⲁ", "noun", "ⲑⲓⲧⲁⲗⲓⲁ", "", "", "", "Italy a country"]) + let v = native_list_append(v, ["ϩⲉⲗⲗⲁⲥ", "noun", "ϩⲉⲗⲗⲁⲥ", "", "", "", "Greece a country"]) + let v = native_list_append(v, ["ⲧⲉⲥⲡⲁⲛⲓⲁ", "noun", "ⲧⲉⲥⲡⲁⲛⲓⲁ", "", "", "", "Spain a country"]) + let v = native_list_append(v, ["ⲁⲙⲓⲧⲟⲛ", "noun", "ⲁⲙⲓⲧⲟⲛ", "", "", "", "China a large"]) + let v = native_list_append(v, ["ⲡⲁⲧⲣⲟⲥ", "noun", "ⲡⲁⲧⲣⲟⲥ", "", "", "", "father"]) + let v = native_list_append(v, ["ϩⲉⲛⲉⲉⲧⲉ", "noun", "ϩⲉⲛⲉⲉⲧⲉ", "", "", "", "monastery"]) + let v = native_list_append(v, ["ⲡⲓⲥⲑⲁⲓ", "noun", "ⲡⲓⲥⲑⲁⲓ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲁⲇⲱⲛⲓⲥ", "noun", "ⲁⲇⲱⲛⲓⲥ", "", "", "", "Adonis a Greek"]) + let v = native_list_append(v, ["ⲡⲉⲣⲥⲉⲫⲟⲛⲏ", "noun", "ⲡⲉⲣⲥⲉⲫⲟⲛⲏ", "", "", "", "Persephone the Greek"]) + let v = native_list_append(v, ["ⲃⲣϭⲟⲟⲩⲧ", "noun", "ⲃⲣϭⲟⲟⲩⲧ", "", "", "", "chariot"]) + let v = native_list_append(v, ["ⲉⲟⲛⲓⲟⲭⲟⲥ", "noun", "ⲉⲟⲛⲓⲟⲭⲟⲥ", "", "", "", "charioteer"]) + let v = native_list_append(v, ["ϣⲃⲣ", "noun", "ϣⲃⲣ", "", "", "", "friend"]) + let v = native_list_append(v, ["ⲃⲉⲣϭⲟⲟⲩⲧ", "noun", "ⲃⲉⲣϭⲟⲟⲩⲧ", "", "", "", "pond"]) + let v = native_list_append(v, ["ⲉⲩⲉⲣⲅⲉⲧⲏⲥ", "noun", "ⲉⲩⲉⲣⲅⲉⲧⲏⲥ", "", "", "", "benefactor"]) + let v = native_list_append(v, ["ⲗⲟⲅⲟⲥ", "noun", "ⲗⲟⲅⲟⲥ", "", "", "", "The Word."]) + let v = native_list_append(v, ["ⲃⲣⲁⲭⲙⲁⲛⲏⲥ", "noun", "ⲃⲣⲁⲭⲙⲁⲛⲏⲥ", "", "", "", "Brahmin."]) + let v = native_list_append(v, ["ⲉⲙⲡⲣⲱ", "noun", "ⲉⲙ̄ⲡⲣⲟⲟⲩⲉ", "", "", "", "harbor"]) + let v = native_list_append(v, ["ⲅⲁⲗⲗⲓⲕⲟⲥ", "noun", "ⲅⲁⲗⲗⲓⲕⲟⲥ", "", "", "", "Gaulish"]) + let v = native_list_append(v, ["ⲟⲛⲛⲱⲫⲣⲓⲥ", "noun", "ⲟⲛⲛⲱⲫⲣⲓⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲅⲏ", "noun", "ⲅⲏ", "", "", "", "Gaia the greek"]) + let v = native_list_append(v, ["ⲡⲁⲛ", "noun", "ⲡⲁⲛ", "", "", "", "Pan the Greek"]) + let v = native_list_append(v, ["ⲛⲉⲓⲗⲟⲥ", "noun", "ⲛⲉⲓⲗⲟⲥ", "", "", "", "Nilus the god"]) + let v = native_list_append(v, ["ⲉⲁⲣ", "noun", "ⲉⲁⲣ", "", "", "", "spring"]) + let v = native_list_append(v, ["ϣⲉϫⲓ", "noun", "ϣⲉϫⲓ", "", "", "", "word saying"]) + let v = native_list_append(v, ["ⲟⲩⲏⲏⲃ", "noun", "ⲟⲩⲏⲏⲃ", "", "", "", "priest"]) + let v = native_list_append(v, ["ⲟⲩⲉϥ", "noun", "ⲟⲩⲉϥ", "", "", "", "priest"]) + let v = native_list_append(v, ["ⲟⲩⲉⲃ", "noun", "ⲟⲩⲉⲃ", "", "", "", "priest"]) + let v = native_list_append(v, ["ⲛⲟⲩϥ", "noun", "ⲛⲟⲩϥ", "", "", "", "gold"]) + let v = native_list_append(v, ["ⲁⲑⲉⲛⲛⲁⲥ", "noun", "ⲁⲑⲉⲛⲛⲁⲥ", "", "", "", "Athens the capital"]) + let v = native_list_append(v, ["ⲟⲩⲏⲉⲃ", "noun", "ⲟⲩⲏⲉⲃ", "", "", "", "priest"]) + let v = native_list_append(v, ["ⲁⲗⲁⲁⲗⲓ", "noun", "ⲁⲗⲁⲁⲗⲓ", "", "", "", "grape"]) + let v = native_list_append(v, ["ⲟⲩⲏⲗⲧ", "noun", "ⲟⲩⲏⲗⲧ", "", "", "", "rose flower"]) + let v = native_list_append(v, ["ⲛⲁⲓⲕ", "noun", "ⲛⲁⲓⲕ", "", "", "", "fornicator adulterer"]) + let v = native_list_append(v, ["ⲃⲁϣⲁⲣ", "noun", "ⲃⲁϣⲁⲣ", "", "", "", "fox"]) + let v = native_list_append(v, ["ⲓⲁⲙ", "noun", "ⲓⲁⲙ", "", "", "", "sea"]) + let v = native_list_append(v, ["ⲫⲓⲁⲙ", "noun", "ⲫⲓⲁⲙ", "", "", "", "Fayum a region"]) + let v = native_list_append(v, ["ⲥⲓⲙⲓ", "noun", "ⲥⲓⲙⲓ", "", "", "", "woman"]) + let v = native_list_append(v, ["ⲥⲓⲙⲉⲓ", "noun", "ⲥⲓⲙⲉⲓ", "", "", "", "woman"]) + let v = native_list_append(v, ["ϩⲁⲟⲩⲧ", "noun", "ϩⲁⲟⲩⲧ", "", "", "", "man male human"]) + let v = native_list_append(v, ["ⲇⲁϥⲛⲏⲥ", "noun", "ⲇⲁϥⲛⲏⲥ", "", "", "", "laurel the leaves."]) + let v = native_list_append(v, ["ⲕⲉϩⲓ", "noun", "ⲕⲉϩⲓ", "", "", "", "Earth as opposed"]) + let v = native_list_append(v, ["ϩⲁⲑⲱⲗ", "noun", "ϩⲁⲑⲱⲗ", "", "", "", "Hathor the Egyptian"]) + let v = native_list_append(v, ["ⲡⲁⲁⲡⲓ", "noun", "ⲡⲁⲁⲡⲓ", "", "", "", "February."]) + let v = native_list_append(v, ["ⲡⲁⲣⲙⲟⲩⲧⲓ", "noun", "ⲡⲁⲣⲙⲟⲩⲧⲓ", "", "", "", "August."]) + let v = native_list_append(v, ["ⲁⲗⲉϩ", "noun", "ⲁⲗⲉϩ", "", "", "", "watch guard"]) + let v = native_list_append(v, ["ⲟⲩⲁⲁⲓⲉ", "noun", "ⲟⲩⲁⲁⲓⲏ", "", "", "", "husbandman cultivator"]) + let v = native_list_append(v, ["ϩⲁⲩⲧ", "noun", "ϩⲁⲩⲧ", "", "", "", "man male human"]) + let v = native_list_append(v, ["ⲁⲃⲓϭⲉⲛⲓ", "noun", "ⲁⲃⲓϭⲉⲛⲓ", "", "", "", "glass"]) + let v = native_list_append(v, ["ϩⲟⲗ", "noun", "ϩⲟⲗ", "", "", "", "Horus the Egyptian"]) + let v = native_list_append(v, ["ⲕⲏⲙⲓ", "noun", "ⲕⲏⲙⲓ", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["ⲃⲏϭ", "noun", "ⲃⲏϭ", "", "", "", "falcon"]) + let v = native_list_append(v, ["ϩⲓⲉⲣⲁⲝ", "noun", "ϩⲓⲉⲣⲁⲝ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϭⲓⲑⲁⲣⲁ", "noun", "ϭⲓⲑⲁⲣⲁ", "", "", "", "lyre kithara"]) + let v = native_list_append(v, ["ⲕⲓⲑⲁⲣⲱⲧⲟⲥ", "noun", "ⲕⲓⲑⲁⲣⲱⲧⲟⲥ", "", "", "", "lyre-player guitarist"]) + let v = native_list_append(v, ["ϫⲣⲁⲙⲡⲓ", "noun", "ϫⲣⲁⲙⲡⲓ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ϩⲧⲁ", "noun", "ϩⲧⲱⲣ", "", "", "", "horse"]) + let v = native_list_append(v, ["ϩⲉⲓϯ", "noun", "ϩⲉⲓϯ", "", "", "", "hyena"]) + let v = native_list_append(v, ["ⲟⲩϩⲟⲗ", "noun", "ⲟⲩϩⲱⲗ", "", "", "", "dog"]) + let v = native_list_append(v, ["ϭⲉⲣⲁⲙⲡⲉ", "noun", "ϭⲉⲣⲁⲙⲡⲉ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ⲧⲏⲃⲉⲧ", "noun", "ⲧⲏⲃⲉⲧ", "", "", "", "fish"]) + let v = native_list_append(v, ["ⲓⲱ", "noun", "ⲓⲱ", "", "", "", "donkey"]) + let v = native_list_append(v, ["ϭⲉⲣⲁⲙⲡⲓ", "noun", "ϭⲉⲣⲁⲙⲡⲓ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ϭⲣⲁⲙⲡⲉ", "noun", "ϭⲣⲁⲙⲡⲉ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ⲥⲛⲁϥ", "noun", "ⲥⲛⲁϥ", "", "", "", "blood"]) + let v = native_list_append(v, ["ⲁⲙⲗⲏ", "noun", "ⲁⲙⲗⲏⲟⲩ", "", "", "", "baker"]) + let v = native_list_append(v, ["ⲁⲟⲩⲏⲛ", "noun", "ⲁⲟⲩⲏⲛ", "", "", "", "color"]) + let v = native_list_append(v, ["ⲁⲓⲡⲓ", "noun", "ⲁⲓⲡⲓ", "", "", "", "oipe a dry"]) + let v = native_list_append(v, ["ⲃⲉⲗⲗⲏ", "noun", "ⲃⲉⲗⲗⲏⲩ", "", "", "", "a blind person"]) + let v = native_list_append(v, ["ⲧⲁϣ", "noun", "ⲧⲁϣ", "", "", "", "border limit"]) + let v = native_list_append(v, ["ⲉⲙⲛⲟⲩⲧ", "noun", "ⲉⲙⲛⲟⲩⲧ", "", "", "", "doorkeeper porter"]) + let v = native_list_append(v, ["ϣⲏⲏⲗⲓ", "noun", "ϣⲏⲏⲗⲓ", "", "", "", "daughter"]) + let v = native_list_append(v, ["ϣⲏⲗⲓ", "noun", "ϣⲏⲗⲓ", "", "", "", "boy"]) + let v = native_list_append(v, ["ϭⲁⲓⲗⲓ", "noun", "ϭⲁⲓⲗⲓ", "", "", "", "deposit"]) + let v = native_list_append(v, ["ϫⲁⲓⲧ", "noun", "ϫⲁⲓⲧ", "", "", "", "olive"]) + let v = native_list_append(v, ["ⲥⲭⲟⲗⲏ", "noun", "ⲥⲭⲟⲗⲏ", "", "", "", "school"]) + let v = native_list_append(v, ["ⲥⲱⲟⲩⲁϩ", "noun", "ⲥⲱⲟⲩⲁϩ", "", "", "", "gathering meeting place"]) + let v = native_list_append(v, ["ⲕⲟⲣⲏ", "noun", "ⲕⲟⲣⲏ", "", "", "", "girl or maiden."]) + let v = native_list_append(v, ["ⲥⲉϩ", "noun", "ⲥϩⲟⲩⲓ", "", "", "", "teacher scribe"]) + let v = native_list_append(v, ["ⲥⲁϯ", "noun", "ⲥⲁϯ", "", "", "", "Sirius A bluish-white"]) + let v = native_list_append(v, ["ⲑⲁⲩⲇ", "noun", "ⲑⲁⲩⲇ", "", "", "", "Thoth the Egyptian"]) + let v = native_list_append(v, ["ⲃⲏⲧ", "noun", "ⲃⲏⲧ", "", "", "", "palm-leaf"]) + let v = native_list_append(v, ["ⲡⲣⲱⲫⲩⲧⲏⲥ", "noun", "ⲡⲣⲱⲫⲩⲧⲏⲥ", "", "", "", "prophet"]) + let v = native_list_append(v, ["ⲙⲁⲧⲁⲓ", "noun", "ⲙⲁⲧⲁⲓ", "", "", "", "soldier"]) + let v = native_list_append(v, ["ⲗⲁⲙⲓⲧⲏⲥ", "noun", "ⲗⲁⲙⲓⲧⲏⲥ", "", "", "", "Muslim"]) + let v = native_list_append(v, ["ⲙⲁⲓⲧ", "noun", "ⲙⲁⲓⲧ", "", "", "", "road path way"]) + let v = native_list_append(v, ["ⲙⲉⲉϫⲉ", "noun", "ⲙⲉⲉϫⲉ", "", "", "", "ear"]) + let v = native_list_append(v, ["ⲛⲁϥⲓ", "noun", "ⲛⲁϥⲓ", "", "", "", "sin transgression"]) + let v = native_list_append(v, ["ϫⲉⲡ", "noun", "ϫⲉⲡ", "", "", "", "hour time"]) + let v = native_list_append(v, ["ϩⲏⲃⲉⲥ", "noun", "ϩⲏⲃⲉⲥ", "", "", "", "lamp"]) + let v = native_list_append(v, ["ⲁⲉⲓⲕ", "noun", "ⲁⲉⲓⲕ", "", "", "", "consecration of a"]) + let v = native_list_append(v, ["ⲁⲓⲕ", "noun", "ⲁⲓⲕ", "", "", "", "consecration of a"]) + let v = native_list_append(v, ["ⲟⲩⲉϩⲓ", "noun", "ⲟⲩⲉϩⲓ", "", "", "", "oasis"]) + let v = native_list_append(v, ["ⲟⲅⲉⲁⲛⲟⲥ", "noun", "ⲟⲅⲉⲁⲛⲟⲥ", "", "", "", "ocean"]) + let v = native_list_append(v, ["ⲕⲣⲁ", "noun", "ⲕⲣⲁ", "", "", "", "shore of sea"]) + let v = native_list_append(v, ["ⲙⲏⲏϣⲓ", "noun", "ⲙⲏⲏϣⲓ", "", "", "", "multitude crowd throng"]) + let v = native_list_append(v, ["ϭⲁⲣⲧⲉ", "noun", "ϭⲁⲣⲧⲉ", "", "", "", "knife"]) + let v = native_list_append(v, ["ⲗⲉⲃⲉⲕⲏ", "noun", "ⲗⲉⲃⲉⲕⲏ", "", "", "", "mercenary"]) + let v = native_list_append(v, ["ϣⲓⲏⲉⲓ", "noun", "ϣⲓⲏⲉⲓ", "", "", "", "a length"]) + let v = native_list_append(v, ["ⲙⲉⲉⲓ", "noun", "ⲙⲉⲉⲓ", "", "", "", "truth"]) + let v = native_list_append(v, ["ⲡⲣⲱ", "noun", "ⲡⲣⲱ", "", "", "", "winter"]) + let v = native_list_append(v, ["ϩⲉⲗ", "noun", "ϩⲉⲗ", "", "", "", "slave servant"]) + let v = native_list_append(v, ["ⲡⲓⲙⲏⲛ", "noun", "ⲡⲓⲙⲏⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲛⲉⲡⲁⲓⲉⲧ", "noun", "ⲛⲉⲡⲁⲓⲉⲧ", "", "", "", "Libya a country"]) + let v = native_list_append(v, ["ϣⲁⲛϯ", "noun", "ϣⲁⲛϯ", "", "", "", "acacia thorn tree"]) + let v = native_list_append(v, ["ⲥⲓⲩ", "noun", "ⲥⲓⲩ", "", "", "", "star"]) + let v = native_list_append(v, ["ⲗⲉϣⲓ", "noun", "ⲗⲉϣⲓ", "", "", "", "joy"]) + let v = native_list_append(v, ["ϩⲙϩⲉⲗ", "noun", "ϩⲙϩⲉⲗ", "", "", "", "slave servant"]) + let v = native_list_append(v, ["ⲉⲣⲡⲏⲉⲓ", "noun", "ⲉⲣⲡⲏⲉⲓ", "", "", "", "temple"]) + let v = native_list_append(v, ["ϩⲗⲗⲁ", "noun", "ϩⲗ̄ⲗⲁⲓ", "", "", "", "old man elder"]) + let v = native_list_append(v, ["ⲕⲱⲱⲥⲓ", "noun", "ⲕⲱⲱⲥⲓ", "", "", "", "burial"]) + let v = native_list_append(v, ["ⲃⲟⲩϩⲱⲗ", "noun", "ⲃⲟⲩϩⲱⲗ", "", "", "", "Fayyumic form of"]) + let v = native_list_append(v, ["ⲕⲉⲙⲓ", "noun", "ⲕⲉⲙⲓⲩ", "", "", "", "black"]) + let v = native_list_append(v, ["ⲧⲁⲩ", "noun", "ⲧⲁⲩⲓⲏ", "", "", "", "mountain"]) + let v = native_list_append(v, ["ⲙⲉⲧⲙⲉⲧⲣⲏ", "noun", "ⲙⲉⲧⲙⲉⲧⲣⲏ", "", "", "", "testimony"]) + let v = native_list_append(v, ["ϫⲓⲙⲡⲉϩ", "noun", "ϫⲓⲙⲡⲉϩ", "", "", "", "apple"]) + let v = native_list_append(v, ["ϫⲉⲡⲉϩ", "noun", "ϫⲉⲡⲉϩ", "", "", "", "apple"]) + let v = native_list_append(v, ["ⲣⲙⲃⲉⲕⲉ", "noun", "ⲣⲙⲃⲉⲕⲉ", "", "", "", "mercenary"]) + let v = native_list_append(v, ["ϫⲏⲡⲉϩ", "noun", "ϫⲏⲡⲉϩ", "", "", "", "apple"]) + let v = native_list_append(v, ["ⲁⲁϥ", "noun", "ⲁⲁϥ", "", "", "", "meat flesh"]) + let v = native_list_append(v, ["ϭⲣⲟⲙⲡⲉ", "noun", "ϭⲣⲟⲙⲡⲉ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ϭⲣⲟⲟⲙⲡⲉ", "noun", "ϭⲣⲟⲟⲙⲡⲉ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["ⲁⲛϣⲉϣⲃ", "noun", "ⲁⲛϣⲉϣⲃ", "", "", "", "week"]) + let v = native_list_append(v, ["ⲕⲱ ⲉⲃⲁⲗ", "noun", "ⲕⲱ ⲉⲃⲁⲗ", "", "", "", "forgiveness pardon"]) + let v = native_list_append(v, ["ⲱⲛⳉ", "noun", "ⲱⲛⳉ", "", "", "", "life state of"]) + let v = native_list_append(v, ["ⲟⲩⲟⲉⲓⲛ", "noun", "ⲟⲩⲟⲉⲓⲛ", "", "", "", "light"]) + let v = native_list_append(v, ["ϫⲟⲟⲙⲉ", "noun", "ϫⲟⲟⲙⲉ", "", "", "", "scroll book"]) + let v = native_list_append(v, ["ϫⲱⲙⲓ", "noun", "ϫⲱⲙⲓ", "", "", "", "scroll book"]) + let v = native_list_append(v, ["ϭⲁⲗⲁϣⲓⲣⲉ", "noun", "ϭⲁⲗⲁϣⲓⲣⲉ", "", "", "", "strong man giant"]) + let v = native_list_append(v, ["ⲟⲩⲉⲣⲧ", "noun", "ⲟⲩⲉⲣⲧ", "", "", "", "rose flower"]) + let v = native_list_append(v, ["ⲡϣⲟⲙⲧ ⲛⲕⲁⲥⲧⲣⲟⲛ", "noun", "ⲡϣⲟⲙⲧ ⲛⲕⲁⲥⲧⲣⲟⲛ", "", "", "", "Luxor a city"]) + let v = native_list_append(v, ["ⲉⲑⲱⲙ", "noun", "ⲉⲑⲱⲙ", "", "", "", "Atum the Egyptian"]) + let v = native_list_append(v, ["ⲥⲁⲕ", "noun", "ⲥⲁⲕ", "", "", "", "sackcloth"]) + let v = native_list_append(v, ["ⲉⲗⲡⲏ", "noun", "ⲉⲗⲡⲏ", "", "", "", "temple"]) + let v = native_list_append(v, ["ⲉⲗⲡⲏⲓ", "noun", "ⲉⲗⲡⲏⲓ", "", "", "", "temple"]) + let v = native_list_append(v, ["ⲙⲏⲟⲩ", "noun", "ⲙⲏⲟⲩ", "", "", "", "mother"]) + let v = native_list_append(v, ["ϩⲉⲧ", "noun", "ϩⲉⲧ", "", "", "", "silver"]) + let v = native_list_append(v, ["ⲛⲁⲃⲓ", "noun", "ⲛⲁⲃⲓ", "", "", "", "sin transgression"]) + let v = native_list_append(v, ["ⲁⲣϣ", "noun", "ⲁⲣϣ", "", "", "", "coldness"]) + let v = native_list_append(v, ["ⲕⲉⲫⲁⲗⲉⲱⲛ", "noun", "ⲕⲉⲫⲁⲗⲉⲱⲛ", "", "", "", "chapter"]) + let v = native_list_append(v, ["ⲙⲉⲧⲉⲣⲣⲁ", "noun", "ⲙⲉⲧⲉⲣⲣⲁ", "", "", "", "kingdom territory ruled"]) + let v = native_list_append(v, ["ϭⲁⲗⲉϫ", "noun", "ϭⲁⲗⲉϫ", "", "", "", "bed bier"]) + let v = native_list_append(v, ["ϫⲓⲛ", "noun", "ϫⲓⲛ", "", "", "", "power capacity."]) + let v = native_list_append(v, ["ϩⲏⲙ", "noun", "ϩⲏⲙ", "", "", "", "woman"]) + let v = native_list_append(v, ["ⲗⲉⲥ", "noun", "ⲗⲉⲥ", "", "", "", "tongue"]) + let v = native_list_append(v, ["ⲟⲉⲓⲡⲉ", "noun", "ⲟⲉⲓⲡⲉ", "", "", "", "oipe a dry"]) + let v = native_list_append(v, ["ϩⲃⲁⲥ", "noun", "ϩⲃⲁⲥ", "", "", "", "robe"]) + let v = native_list_append(v, ["ⲥⲉⲩ", "noun", "ⲥⲉⲩ", "", "", "", "star"]) + let v = native_list_append(v, ["ⲥⲃⲏ", "noun", "ⲥⲃⲏ", "", "", "", "atrium"]) + let v = native_list_append(v, ["ϩⲉⲡ", "noun", "ϩⲉⲡ", "", "", "", "judgement"]) + let v = native_list_append(v, ["ⲛⲉϩⲃⲓ", "noun", "ⲛⲉϩⲃⲓ", "", "", "", "head"]) + let v = native_list_append(v, ["ⲕⲉⲙ", "noun", "ⲕⲉⲙ", "", "", "", "black"]) + let v = native_list_append(v, ["ϫⲁⲓ", "noun", "ϫⲁⲓ", "", "", "", "boat ship"]) + let v = native_list_append(v, ["ⲡⲉϩⲟⲩ", "noun", "ⲡⲉϩⲟⲩ", "", "", "", "end rear"]) + let v = native_list_append(v, ["ⲥⲧⲁⲓ", "noun", "ⲥⲧⲁⲓ", "", "", "", "fragrance"]) + let v = native_list_append(v, ["ϫⲉⲧϥⲓ", "noun", "ϫⲉⲧϥⲓ", "", "", "", "reptile"]) + let v = native_list_append(v, ["ϭⲱⲃⲓ", "noun", "ϭⲱⲃⲓ", "", "", "", "sheet of paper"]) + let v = native_list_append(v, ["ⲕⲉⲣⲥⲝ", "noun", "ⲕⲉⲣⲥⲝ", "", "", "", "herald"]) + let v = native_list_append(v, ["ⲡⲗⲏⲧⲱⲣⲓⲱⲛ", "noun", "ⲡⲗⲏⲧⲱⲣⲓⲱⲛ", "", "", "", "praetorium"]) + let v = native_list_append(v, ["ϣⲁϣⲙⲓ", "noun", "ϣⲁϣⲙⲓ", "", "", "", "Sekhmet the Egyptian"]) + let v = native_list_append(v, ["ⲥⲁϧⲙⲓ", "noun", "ⲥⲁϧⲙⲓ", "", "", "", "Sekhmet the Egyptian"]) + let v = native_list_append(v, ["ϭⲱⲱⲃⲉ", "noun", "ϭⲱⲱⲃⲉ", "", "", "", "sheet of paper"]) + let v = native_list_append(v, ["ϭⲱⲃⲉ", "noun", "ϭⲱⲃⲉ", "", "", "", "sheet of paper"]) + let v = native_list_append(v, ["ϩⲁⲣⲉϩ", "noun", "ϩⲁⲣⲉϩ", "", "", "", "watch guard"]) + let v = native_list_append(v, ["ⲉⲣⲃⲉ", "noun", "ⲉⲣⲃⲉ", "", "", "", "enclosure pen"]) + let v = native_list_append(v, ["ⲓⲱⲥⲏⲡ", "noun", "ⲓⲱⲥⲏⲡ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲙⲁⲛϣⲱⲡⲉ", "noun", "ⲙⲁⲛϣⲱⲡⲉ", "", "", "", "dwelling home"]) + let v = native_list_append(v, ["ⲙⲩⲥⲑⲏⲣⲓ", "noun", "ⲙⲩⲥⲑⲏⲣⲓ", "", "", "", "spoon"]) + let v = native_list_append(v, ["ⲗⲉϥⲃⲱⲗ", "noun", "ⲗⲉϥⲃⲱⲗ", "", "", "", "an interpreter"]) + let v = native_list_append(v, ["ⲗⲉϥⲓⲙⲓ", "noun", "ⲗⲉϥⲓⲙⲓ", "", "", "", "knower one who"]) + let v = native_list_append(v, ["ⲗⲟⲩⲕⲟϫⲓ", "noun", "ⲗⲟⲩⲕⲟϫⲓ", "", "", "", "dinar solidus"]) + let v = native_list_append(v, ["ⲙϩⲁⲁⲩ", "noun", "ⲙϩⲁⲁⲩ", "", "", "", "tomb"]) + let v = native_list_append(v, ["ⲉⲛⲉϩⲉ", "noun", "ⲉⲛⲉϩⲉ", "", "", "", "eternity"]) + let v = native_list_append(v, ["ⲉⲛⲏϩⲉ", "noun", "ⲉⲛⲏϩⲉ", "", "", "", "eternity"]) + let v = native_list_append(v, ["ⲉⲩⲙⲉⲛⲏⲥ", "noun", "ⲉⲩⲙⲉⲛⲏⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲗⲉϥⲉⲗⲛⲁⲃⲓ", "noun", "ⲗⲉϥⲉⲗⲛⲁⲃⲓ", "", "", "", "sinner"]) + let v = native_list_append(v, ["ⲗⲉϥϣⲉϫⲓ", "noun", "ⲗⲉϥϣⲉϫⲓ", "", "", "", "speaker orator"]) + let v = native_list_append(v, ["ⲗⲉϥⲥⲱⲛⲧ", "noun", "ⲗⲉϥⲥⲱⲛⲧ", "", "", "", "a creator"]) + let v = native_list_append(v, ["ⲗⲉϥⲕⲱⲱⲥⲓ", "noun", "ⲗⲉϥⲕⲱⲱⲥⲓ", "", "", "", "embalmer"]) + let v = native_list_append(v, ["ⲁⲁϥⲛⲉⲃⲓⲱ", "noun", "ⲁⲁϥⲛⲉⲃⲓⲱ", "", "", "", "bee"]) + let v = native_list_append(v, ["ⲗⲉϥϣⲉⲙϣⲓ", "noun", "ⲗⲉϥϣⲉⲙϣⲓ", "", "", "", "worshiper"]) + let v = native_list_append(v, ["ⲁⲛⲥⲁϣϥ", "noun", "ⲁⲛⲥⲁϣϥ", "", "", "", "week"]) + let v = native_list_append(v, ["ⲡⲁϣⲁⲛⲥ", "noun", "ⲡⲁϣⲁⲛⲥ", "", "", "", "September."]) + let v = native_list_append(v, ["ϣⲁⲛⲥ", "noun", "ϣⲁⲛⲥ", "", "", "", "Khonsu the Egyptian"]) + let v = native_list_append(v, ["ϣⲓⲏⲉ", "noun", "ϣⲓⲏⲉ", "", "", "", "a length"]) + let v = native_list_append(v, ["ⲁⲑⲗⲏⲧⲏⲥ", "noun", "ⲁⲑⲗⲏⲧⲏⲥ", "", "", "", "athlete."]) + let v = native_list_append(v, ["ⲥⲡⲏⲗⲩⲟⲛ", "noun", "ⲥⲡⲏⲗⲩⲟⲛ", "", "", "", "cave"]) + let v = native_list_append(v, ["ⲣⲙⲙⲃⲉⲕⲉ", "noun", "ⲣⲙⲙⲃⲉⲕⲉ", "", "", "", "mercenary"]) + let v = native_list_append(v, ["ⲣⲡⲉ", "noun", "ⲣⲡⲏⲩⲉ", "", "", "", "temple"]) + let v = native_list_append(v, ["ⲑⲉⲕⲗⲏ", "noun", "ⲑⲉⲕⲗⲏ", "", "", "", "a male or"]) + let v = native_list_append(v, ["ⲗⲉⲅⲓⲟⲛ", "noun", "ⲗⲉⲅⲓⲟⲛ", "", "", "", "legion"]) + let v = native_list_append(v, ["ⲗⲉⲅⲓⲱⲛ", "noun", "ⲗⲉⲅⲓⲱⲛ", "", "", "", "legion"]) + let v = native_list_append(v, ["ⲛⲟⲩⲃⲁⲇⲓⲁ", "noun", "ⲛⲟⲩⲃⲁⲇⲓⲁ", "", "", "", "Nubia Nobatia a"]) + let v = native_list_append(v, ["ⲙⲏⲧⲣⲟⲡⲟⲗⲓⲥ", "noun", "ⲙⲏⲧⲣⲟⲡⲟⲗⲓⲥ", "", "", "", "capital city"]) + let v = native_list_append(v, ["ⲣⲙϩⲉ", "noun", "ⲣⲙϩⲉⲉⲩⲉ", "", "", "", "freeman"]) + let v = native_list_append(v, ["ⲣⲉⲛ", "noun", "ⲣⲉⲛ", "", "", "", "name"]) + let v = native_list_append(v, ["ⲥⲁⲧⲉⲉⲣⲉ", "noun", "ⲥⲁⲧⲉⲉⲣⲉ", "", "", "", "stater a type"]) + let v = native_list_append(v, ["ϣⲃⲉ", "noun", "ϣⲃⲉ", "", "", "", "majesty"]) + let v = native_list_append(v, ["ⲛⲱⲓⲕ", "noun", "ⲛⲱⲓⲕ", "", "", "", "fornicator adulterer"]) + let v = native_list_append(v, ["ⲧⲥⲁϩⲏⲧ", "noun", "ⲧⲥⲁϩⲏⲧ", "", "", "", "Lower Egypt a"]) + let v = native_list_append(v, ["ⲥⲟϭⲛ", "noun", "ⲥⲟϭⲛ", "", "", "", "ointment oil"]) + let v = native_list_append(v, ["ⲱⲛϣ", "noun", "ⲱⲛϣ", "", "", "", "wolf"]) + let v = native_list_append(v, ["ϩⲏⲃⲥ", "noun", "ϩⲏⲃⲥ", "", "", "", "lamp"]) + let v = native_list_append(v, ["ⲕⲏⲣⲟⲥ", "noun", "ⲕⲏⲣⲟⲥ", "", "", "", "lord master"]) + let v = native_list_append(v, ["ⲥⲁⲣⲣⲁ", "noun", "ⲥⲁⲣⲣⲁ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲙⲏⲉ", "noun", "ⲙⲏⲉ", "", "", "", "truth"]) + let v = native_list_append(v, ["ⲁⲅⲱⲛⲟⲑⲉⲧⲏⲥ", "noun", "ⲁⲅⲱⲛⲟⲑⲉⲧⲏⲥ", "", "", "", "patron of a"]) + let v = native_list_append(v, ["ⲁⲙⲡⲟⲩⲗⲉ", "noun", "ⲁⲙⲡⲟⲩⲗⲉ", "", "", "", "flask"]) + let v = native_list_append(v, ["ⲙⲁⲅⲓⲣⲟⲥ", "noun", "ⲙⲁⲅⲓⲣⲟⲥ", "", "", "", "a butcher"]) + let v = native_list_append(v, ["ⲗⲉⲓⲧⲟⲩⲣⲅⲟⲥ", "noun", "ⲗⲉⲓⲧⲟⲩⲣⲅⲟⲥ", "", "", "", "a servant"]) + let v = native_list_append(v, ["ⲁⲣⲭⲏⲥⲩⲛⲁⲅⲱⲅⲟⲥ", "noun", "ⲁⲣⲭⲏⲥⲩⲛⲁⲅⲱⲅⲟⲥ", "", "", "", "archisynagogue head of"]) + let v = native_list_append(v, ["ϩⲩⲕⲁⲧⲟⲛⲧⲁⲣⲭⲟⲥ", "noun", "ϩⲩⲕⲁⲧⲟⲛⲧⲁⲣⲭⲟⲥ", "", "", "", "centurion."]) + let v = native_list_append(v, ["ⲥⲃⲟⲩ", "noun", "(A) ⲥⲃⲁⲩⲉ", "", "", "", "teaching doctrine"]) + let v = native_list_append(v, ["ϩⲗⲱⲙ", "noun", "ϩⲗⲱⲙ", "", "", "", "louse flea"]) + let v = native_list_append(v, ["ⲡⲣⲟⲥⲧⲁⲧⲏⲥ", "noun", "ⲡⲣⲟⲥⲧⲁⲧⲏⲥ", "", "", "", "protector"]) + let v = native_list_append(v, ["ⲥⲁⲭⲁ", "noun", "ⲥⲁⲭⲁ", "", "", "", "dignified esteemed person"]) + let v = native_list_append(v, ["ⲫⲁⲩⲥⲧⲁ", "noun", "ⲫⲁⲩⲥⲧⲁ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲣⲣⲟ", "noun", "ⲉⲣⲣⲱⲟⲩ", "", "", "", "king"]) + let v = native_list_append(v, ["ϫⲱⲙⲉ", "noun", "ϫⲱⲙⲉ", "", "", "", "scroll book"]) + let v = native_list_append(v, ["ⲁⲡⲱⲗⲗⲟⲛ", "noun", "ⲁⲡⲱⲗⲗⲟⲛ", "", "", "", "Apollo the Greco-Roman"]) + let v = native_list_append(v, ["ϥⲁϩ", "noun", "ϥⲁϩ", "", "", "", "penis"]) + let v = native_list_append(v, ["ϫⲟⲗ", "noun", "ϫⲟⲗ", "", "", "", "wave"]) + let v = native_list_append(v, ["ϫⲡ", "noun", "ϫⲡ", "", "", "", "hour time"]) + let v = native_list_append(v, ["ⲑⲟⲩⲙⲉ", "noun", "ⲑⲟⲩⲙⲉ", "", "", "", "Virgo"]) + let v = native_list_append(v, ["ⲁⲅⲣⲓⲡⲡⲁⲥ", "noun", "ⲁⲅⲣⲓⲡⲡⲁⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲩⲣⲱⲇⲏⲥ", "noun", "ϩⲩⲣⲱⲇⲏⲥ", "", "", "", "Herod name of"]) + let v = native_list_append(v, ["ⲥⲙⲟⲩ", "noun", "ⲥⲙⲟⲩ", "", "", "", "blessing thank favour."]) + let v = native_list_append(v, ["ϣϫⲏⲛ", "noun", "ϣϫⲏⲛ", "", "", "", "garlic"]) + let v = native_list_append(v, ["ⲁⲣⲓⲁⲇⲛⲏ", "noun", "ⲁⲣⲓⲁⲇⲛⲏ", "", "", "", "Ariadne wife of"]) + let v = native_list_append(v, ["ⲉⲃⲱⲛϩ", "noun", "ⲉⲃⲱⲛϩ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲛⲑⲱⲣⲓ", "noun", "ⲛⲑⲏⲣ", "", "", "", "goddess"]) + let v = native_list_append(v, ["ⲁⲛⲁⲑ", "noun", "ⲁⲛⲁⲑ", "", "", "", "Anat an ancient"]) + let v = native_list_append(v, ["ϣⲁⲗⲓⲟⲩ", "noun", "ϣⲁⲗⲓⲟⲩ", "", "", "", "administrative official"]) + let v = native_list_append(v, ["ⲇⲁⲅⲱⲛ", "noun", "ⲇⲁⲅⲱⲛ", "", "", "", "Dagon The main"]) + let v = native_list_append(v, ["ϣⲁⲗⲓⲩ", "noun", "ϣⲁⲗⲓⲩ", "", "", "", "an administrative official"]) + let v = native_list_append(v, ["ϣⲃⲏⲗ", "noun", "ϣⲃⲏⲗ", "", "", "", "friend"]) + let v = native_list_append(v, ["ⲉⲃⲱⲕ", "noun", "ⲉⲃⲱⲕ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲙⲉϫⲉ", "noun", "ⲙⲉϫⲉ", "", "", "", "ear"]) + let v = native_list_append(v, ["ⲕⲟⲩⲛ⸗", "noun", "ⲕⲟⲩⲛ⸗", "", "", "", "bosom"]) + let v = native_list_append(v, ["ⲃⲉⲣⲉϭⲱⲟⲩⲧ", "noun", "ⲃⲉⲣⲉϭⲱⲟⲩⲧ", "", "", "", "chariot"]) + let v = native_list_append(v, ["ⲕⲁⲥⲧⲣⲟⲛ", "noun", "ⲕⲁⲥⲧⲣⲟⲛ", "", "", "", "fortress camp."]) + let v = native_list_append(v, ["ⲥⲏⲛⲉ", "noun", "ⲥⲏⲛⲉ", "", "", "", "granary bin"]) + let v = native_list_append(v, ["ⲉⲩⲛⲓⲕⲏ", "noun", "ⲉⲩⲛⲓⲕⲏ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ⲯⲁⲧⲉ", "noun", "ⲯⲁⲧⲉ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲓⲁ", "noun", "ϩⲓⲁⲩⲓ", "", "", "", "road way path"]) + let v = native_list_append(v, ["ⲟⲃϩⲉ", "noun", "ⲟⲃϩⲉ", "", "", "", "tooth"]) + let v = native_list_append(v, ["ⲁⲃⲁϩ", "noun", "ⲁⲃⲁϩ", "", "", "", "tooth"]) + let v = native_list_append(v, ["ϩⲣⲙⲏⲥ", "noun", "ϩⲣⲙⲏⲥ", "", "", "", "Hermes the greek"]) + let v = native_list_append(v, ["ⲁⲣⲓⲥⲧⲟⲃⲟⲩⲗⲟⲥ", "noun", "ⲁⲣⲓⲥⲧⲟⲃⲟⲩⲗⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲅⲁⲗⲓⲗⲁⲓⲁ", "noun", "ⲅⲁⲗⲓⲗⲁⲓⲁ", "", "", "", "Galilee a mountainous"]) + let v = native_list_append(v, ["ⲁⲥⲕⲁⲗⲱⲛ", "noun", "ⲁⲥⲕⲁⲗⲱⲛ", "", "", "", "Ashkelon a city"]) + let v = native_list_append(v, ["ⲧⲩⲣⲟⲥ", "noun", "ⲧⲩⲣⲟⲥ", "", "", "", "Tyre a city"]) + let v = native_list_append(v, ["ⲧⲓⲃⲉⲣⲓⲁⲥ", "noun", "ⲧⲓⲃⲉⲣⲓⲁⲥ", "", "", "", "Tiberias a city."]) + let v = native_list_append(v, ["ⲕⲁⲫⲁⲣⲛⲁⲟⲩⲙ", "noun", "ⲕⲁⲫⲁⲣⲛⲁⲟⲩⲙ", "", "", "", "Capernaum a city."]) + let v = native_list_append(v, ["ⲁⲗⲉⲝⲁⲛⲇⲣⲁ", "noun", "ⲁⲗⲉⲝⲁⲛⲇⲣⲁ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲁⲗⲱⲙⲏ", "noun", "ⲥⲁⲗⲱⲙⲏ", "", "", "", "A name ascribed"]) + let v = native_list_append(v, ["ⲧⲕⲩⲣⲏⲛⲏ", "noun", "ⲧⲕⲩⲣⲏⲛⲏ", "", "", "", "Cyrene an ancient"]) + let v = native_list_append(v, ["ⲧⲓⲙⲏⲛϩⲉⲧ", "noun", "ⲧⲓⲙⲏⲛϩⲉⲧ", "", "", "", "sum of money"]) + let v = native_list_append(v, ["ⲁⲗⲁⲗⲓ", "noun", "ⲁⲗⲁⲗⲓ", "", "", "", "grape"]) + let v = native_list_append(v, ["ⲉⲗⲁⲁⲗⲓ", "noun", "ⲉⲗⲁⲁⲗⲓ", "", "", "", "grape"]) + let v = native_list_append(v, ["ⲕⲉⲛⲓ", "noun", "ⲕⲉⲛⲓ", "", "", "", "fat"]) + let v = native_list_append(v, ["ϣⲟⲛⲧ", "noun", "ϣⲟⲛⲧ", "", "", "", "a fight."]) + let v = native_list_append(v, ["ϭⲱⲛⲧ", "noun", "ϭⲱⲛⲧ", "", "", "", "a trial"]) + let v = native_list_append(v, ["ⲥⲁⲙⲃⲁⲑⲟⲛ", "noun", "ⲥⲁⲙⲃⲁⲑⲟⲛ", "", "", "", "Sabbath"]) + let v = native_list_append(v, ["ⲇⲓⲟⲥⲕⲟⲣⲟⲥ", "noun", "ⲇⲓⲟⲥⲕⲟⲣⲟⲥ", "", "", "", "The Dioscuri the"]) + let v = native_list_append(v, ["ⲡⲁⲧⲉⲣⲙⲟⲩⲑⲓⲟⲥ", "noun", "ⲡⲁⲧⲉⲣⲙⲟⲩⲑⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲇⲁⲙⲓⲁⲛⲟⲥ", "noun", "ⲇⲁⲙⲓⲁⲛⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲁⲙⲟⲑⲣⲁⲕⲏ", "noun", "ⲥⲁⲙⲟⲑⲣⲁⲕⲏ", "", "", "", "Samothrace an island"]) + let v = native_list_append(v, ["ⲧⲣⲱⲁⲥ", "noun", "ⲧⲣⲱⲁⲥ", "", "", "", "The Biga peninsula"]) + let v = native_list_append(v, ["ⲛⲉⲧⲁ", "noun", "ⲛⲉⲧⲁ", "", "", "", "great god a"]) + let v = native_list_append(v, ["ⲡⲗⲁⲧⲱⲛ", "noun", "ⲡⲗⲁⲧⲱⲛ", "", "", "", "Plato an Athenian"]) + let v = native_list_append(v, ["ⲁⲣⲓⲥⲧⲟⲧⲉⲗⲏⲥ", "noun", "ⲁⲣⲓⲥⲧⲟⲧⲉⲗⲏⲥ", "", "", "", "Aristotle a Greek"]) + let v = native_list_append(v, ["ⲉⲣⲙⲁⲛⲟⲩⲃⲓⲥ", "noun", "ⲉⲣⲙⲁⲛⲟⲩⲃⲓⲥ", "", "", "", "Hermanubis the end"]) + let v = native_list_append(v, ["ⲉⲣⲉϩ", "noun", "ⲉⲣⲉϩ", "", "", "", "watch guard."]) + let v = native_list_append(v, ["ⲣⲙⲟⲩⲧⲉ", "noun", "ⲣⲙⲟⲩⲧⲉ", "", "", "", "Renenutet the Egyptian"]) + let v = native_list_append(v, ["ⲣⲙⲟⲩϯ", "noun", "ⲣⲙⲟⲩϯ", "", "", "", "Renenutet the Egyptian"]) + let v = native_list_append(v, ["ⲉⲡⲓⲫⲁⲛⲉⲓⲟⲥ", "noun", "ⲉⲡⲓⲫⲁⲛⲉⲓⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϣⲉⲉⲣⲉⲛⲣⲣⲱ", "noun", "ϣⲉⲉⲣⲉⲛⲣⲣⲱ", "", "", "", "princess."]) + let v = native_list_append(v, ["ⲓⲗⲁⲗⲓ", "noun", "ⲓⲗⲁⲗⲓ", "", "", "", "grape"]) + let v = native_list_append(v, ["ⲉⲗⲟⲟⲗⲉ", "noun", "ⲉⲗⲟⲟⲗⲉ", "", "", "", "grape"]) + let v = native_list_append(v, ["ⲙⲏⲛ", "noun", "ⲙⲏⲛ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲉⲣⲏϩ", "noun", "ⲉⲣⲏϩ", "", "", "", "watch guard."]) + let v = native_list_append(v, ["ⲑⲁⲩⲧ", "noun", "ⲑⲁⲩⲧ", "", "", "", "Thoth the Egyptian"]) + let v = native_list_append(v, ["ⲥⲱⲧⲙ", "noun", "ⲥⲱⲧⲙ", "", "", "", "hearing obedience"]) + let v = native_list_append(v, ["ⲥⲱⲧⲙⲉ", "noun", "ⲥⲱⲧⲙⲉ", "", "", "", "hearing obedience"]) + let v = native_list_append(v, ["ϫⲱϩⲙ", "noun", "ϫⲱϩⲙ", "", "", "", "uncleanness pollution"]) + let v = native_list_append(v, ["ⲟⲩⲣⲓⲏⲗ", "noun", "ⲟⲩⲣⲓⲏⲗ", "", "", "", "The Archangel Uriel"]) + let v = native_list_append(v, ["ⲇⲁⲩⲓⲇ", "noun", "ⲇⲁⲩⲓⲇ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ⲥⲁⲣⲁⲕⲱⲧⲉ", "noun", "ⲥⲁⲣⲁⲕⲱⲧⲉ", "", "", "", "traveler vagabond"]) + let v = native_list_append(v, ["ⲃⲟⲛϯ", "noun", "ⲃⲟⲛϯ", "", "", "", "a gourd cucumber"]) + let v = native_list_append(v, ["ϫⲓϫⲓ", "noun", "ϫⲓϫⲓ", "", "", "", "a squash pumpkin"]) + let v = native_list_append(v, ["ⲥⲁϫⲓ ⲛⲥⲱⲃⲓ", "noun", "ⲥⲁϫⲓ ⲛ̀ⲥⲱⲃⲓ", "", "", "", "joke"]) + let v = native_list_append(v, ["ⲥⲱⲃⲓ", "noun", "ⲥⲱⲃⲓ", "", "", "", "laughter play"]) + let v = native_list_append(v, ["ⲥⲱⲃⲉ", "noun", "ⲥⲱⲃⲉ", "", "", "", "laughter play"]) + let v = native_list_append(v, ["ⲣⲙⲙⲁⲟ", "noun", "ⲣⲙ̄ⲙⲁⲟⲉⲓ", "", "", "", "rich man"]) + let v = native_list_append(v, ["ⲧⲁⲣⲕⲩⲛⲓⲟⲥ", "noun", "ⲧⲁⲣⲕⲩⲛⲓⲟⲥ", "", "", "", "Tarquinius"]) + let v = native_list_append(v, ["ⲡⲟⲥⲓⲇⲉⲱⲛ", "noun", "ⲡⲟⲥⲓⲇⲉⲱⲛ", "", "", "", "Posideon the sixth"]) + let v = native_list_append(v, ["ⲅⲁⲙⲏⲗⲓⲱⲛ", "noun", "ⲅⲁⲙⲏⲗⲓⲱⲛ", "", "", "", "Gamelion the seventh"]) + let v = native_list_append(v, ["ⲧⲁⲙⲙⲟⲩⲍ", "noun", "ⲧⲁⲙⲙⲟⲩⲍ", "", "", "", "The tenth month"]) + let v = native_list_append(v, ["ⲁⲃ", "noun", "ⲁⲃ", "", "", "", "The tenth month"]) + let v = native_list_append(v, ["ⲡⲉⲣⲥⲉⲩⲥ", "noun", "ⲡⲉⲣⲥⲉⲩⲥ", "", "", "", "The mythological Greek"]) + let v = native_list_append(v, ["ⲡⲁⲣⲙϩⲟⲧⲡ", "noun", "ⲡⲁⲣⲙϩⲟⲧⲡ", "", "", "", "name of the"]) + let v = native_list_append(v, ["ⲃⲁⲣⲑⲟⲗⲟⲙⲉⲟⲥ", "noun", "ⲃⲁⲣⲑⲟⲗⲟⲙⲉⲟⲥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ϩⲏⲇⲟⲛⲏ", "noun", "ϩⲏⲇⲟⲛⲏ", "", "", "", "pleasure"]) + let v = native_list_append(v, ["ϩⲓⲕⲱⲛ", "noun", "ϩⲓⲕⲱⲛ", "", "", "", "icon"]) + let v = native_list_append(v, ["ϩⲉⲓⲕⲱⲛ", "noun", "ϩⲉⲓⲕⲱⲛ", "", "", "", "icon"]) + let v = native_list_append(v, ["ⲛⲁϩⲃⲓ", "noun", "ⲛⲁϩⲃⲓ", "", "", "", "head"]) + let v = native_list_append(v, ["ⲡⲥⲗ", "noun", "ⲡⲥⲗ", "", "", "", "Israel a country"]) + let v = native_list_append(v, ["ⲏⲉⲓ", "noun", "ⲏⲉⲓ", "", "", "", "house"]) + let v = native_list_append(v, ["ⲱⲣϣ", "noun", "ⲱⲣϣ", "", "", "", "coldness"]) + let v = native_list_append(v, ["ⲙⲛⲟⲩⲧ", "noun", "ⲙⲛⲟⲩⲧ", "", "", "", "doorkeeper porter"]) + let v = native_list_append(v, ["ϣⲁⲣⲓⲟⲩ", "noun", "ϣⲁⲣⲓⲟⲩ", "", "", "", "administrative official"]) + let v = native_list_append(v, ["ⲕⲣⲱⲛⲟⲥ", "noun", "ⲕⲣⲱⲛⲟⲥ", "", "", "", "Cronus the Titan"]) + let v = native_list_append(v, ["ⲕⲓⲕⲓⲍⲱⲛ", "noun", "ⲕⲓⲕⲓⲍⲱⲛ", "", "", "", "licorice"]) + let v = native_list_append(v, ["ⲁⲃⲉⲗⲧⲓⲟⲛ", "noun", "ⲁⲃⲉⲗⲧⲓⲟⲛ", "", "", "", "pouch"]) + let v = native_list_append(v, ["ⲃⲟⲏⲑⲟⲥ", "noun", "ⲃⲟⲏⲑⲟⲥ", "", "", "", "supporter helper aide"]) + let v = native_list_append(v, ["ⲁⲏⲣ", "noun", "ⲁⲏⲣ", "", "", "", "air"]) + let v = native_list_append(v, ["ⲁϭⲟⲗⲧⲉ", "noun", "ⲁϭⲟⲗⲧⲉ", "", "", "", "wagon cart"]) + let v = native_list_append(v, ["ⲙⲉϭⲧⲱⲗ", "noun", "ⲙⲉϭⲧⲱⲗ", "", "", "", "tower"]) + let v = native_list_append(v, ["ϣϩⲓϭ", "noun", "ϣϩⲓϭ", "", "", "", "dust"]) + let v = native_list_append(v, ["ⲥⲟⲣⲧ", "noun", "ⲥⲟⲣⲧ", "", "", "", "wool"]) + let v = native_list_append(v, ["ⲅⲁⲗⲁⲧⲓⲁ", "noun", "ⲅⲁⲗⲁⲧⲓⲁ", "", "", "", "Galatia an ancient"]) + let v = native_list_append(v, ["ⲃⲟⲧⲉ", "noun", "ⲃⲟⲧⲉ", "", "", "", "abomination detestable thing"]) + let v = native_list_append(v, ["ⲡⲁⲑⲁⲙⲟⲩⲛ", "noun", "ⲡⲁⲑⲁⲙⲟⲩⲛ", "", "", "", "dodder Cuscuta"]) + let v = native_list_append(v, ["ⲗⲏⲅⲓⲟⲛ", "noun", "ⲗⲏⲅⲓⲟⲛ", "", "", "", "boxthorn Lycium"]) + let v = native_list_append(v, ["ⲕⲟⲩⲥⲧ", "noun", "ⲕⲟⲩⲥⲧ", "", "", "", "Costus spiral ginger"]) + let v = native_list_append(v, ["ⲛⲉϥⲧⲏⲙ", "noun", "ⲛⲉϥⲧⲏⲙ", "", "", "", "The god Nefertum"]) + let v = native_list_append(v, ["ⲕⲟⲩϣⲧ", "noun", "ⲕⲟⲩϣⲧ", "", "", "", "Costus spiral ginger"]) + let v = native_list_append(v, ["ϩⲟⲡⲗⲟⲛ", "noun", "ϩⲟⲡⲗⲟⲛ", "", "", "", "armor"]) + let v = native_list_append(v, ["ⲥⲱⲟⲩϩⲓⲧⲏⲥ", "noun", "ⲥⲱⲟⲩϩⲓⲧⲏⲥ", "", "", "", "Bohairic white of"]) + let v = native_list_append(v, ["ⲱⲡⲧ", "noun", "ⲱⲡⲧ", "", "", "", "goose"]) + let v = native_list_append(v, ["ⲕⲉⲛⲉⲥⲟⲥ", "noun", "ⲕⲉⲛⲉⲥⲟⲥ", "", "", "", "goose"]) + let v = native_list_append(v, ["ⲉⲓⲟⲟⲣ", "noun", "ⲉⲓⲟⲟⲣ", "", "", "", "canal"]) + let v = native_list_append(v, ["ⲧⲓⲙⲏ", "noun", "ⲧⲓⲙⲏ", "", "", "", "honor dignity"]) + let v = native_list_append(v, ["ⲇⲓⲕⲉⲟⲛ", "noun", "ⲇⲓⲕⲉⲟⲛ", "", "", "", "justice right appeal"]) + let v = native_list_append(v, ["ⲥⲩⲛⲏⲇⲉⲥⲓⲥ", "noun", "ⲥⲩⲛⲏⲇⲉⲥⲓⲥ", "", "", "", "conscience"]) + let v = native_list_append(v, ["ⲁⲗⲁⲥⲱϯ", "noun", "ⲁⲗⲁⲥⲱϯ", "", "", "", "army"]) + let v = native_list_append(v, ["ⲧⲃⲛⲏ", "noun", "ⲧⲃⲛⲟⲟⲩⲉ", "", "", "", "beast domestic animal"]) + let v = native_list_append(v, ["ⲁⲣϣⲓⲛ", "noun", "ⲁⲣϣⲓⲛ", "", "", "", "lentil"]) + let v = native_list_append(v, ["ⲕⲓⲛϩⲏⲣ", "noun", "ⲕⲓⲛϩⲏⲣ", "", "", "", "artichoke Cynara scolymus"]) + let v = native_list_append(v, ["ⲙⲛⲧⲣⲙⲛⲕⲏⲙⲉ", "noun", "ⲙⲛⲧⲣⲙⲛⲕⲏⲙⲉ", "", "", "", "The Coptic language"]) + let v = native_list_append(v, ["ϫⲁϫⲉ", "noun", "ϫⲓϫⲉⲉⲩ", "", "", "", "enemy"]) + let v = native_list_append(v, ["ⲟⲩⲟⲟϩⲉ", "noun", "ⲟⲩⲟⲟϩⲉ", "", "", "", "scorpion"]) + let v = native_list_append(v, ["ϣⲟⲩϣⲧ", "noun", "ϣⲟⲩϣⲧ̄", "", "", "", "window niche alcove"]) + let v = native_list_append(v, ["ϫⲁϫⲓ", "noun", "ϫⲓϫⲉⲉⲩ", "", "", "", "enemy"]) + let v = native_list_append(v, ["ⲙⲉⲉⲩⲉ", "noun", "ⲙⲉⲉⲩⲉ", "", "", "", "a thought"]) + let v = native_list_append(v, ["ⲙⲉⲗⲟⲥ", "noun", "ⲙⲉⲗⲟⲥ", "", "", "", "limb member"]) + let v = native_list_append(v, ["ⲛⲉⲕⲣⲟⲛ", "noun", "ⲛⲉⲕⲣⲟⲛ", "", "", "", "corpse"]) + let v = native_list_append(v, ["ⲥⲩⲅⲅⲉⲛⲉⲓⲁ", "noun", "ⲥⲩⲅⲅⲉⲛⲉⲓⲁ", "", "", "", "family kinship descent"]) + let v = native_list_append(v, ["ⲉⲙⲛⲁ", "noun", "ⲉⲙⲛⲁ", "", "", "", "faith"]) + let v = native_list_append(v, ["ⲥⲁⲓ", "noun", "ⲥⲁⲓ", "", "", "", "Saïs a city"]) + let v = native_list_append(v, ["ⲣⲟⲉⲓⲥ", "noun", "ⲣⲟⲉⲓⲥ", "", "", "", "watch guard"]) + let v = native_list_append(v, ["ⲉⲃⲓⲏⲛ", "noun", "ⲉⲃⲓⲏⲛ", "", "", "", "a poor wretched"]) + let v = native_list_append(v, ["ⲙⲣⲓⲥ", "noun", "ⲙⲣⲓⲥ", "", "", "", "new wine must"]) + let v = native_list_append(v, ["ⲗⲓⲙⲏⲛ", "noun", "ⲗⲓⲙⲏⲛ", "", "", "", "image portrait"]) + let v = native_list_append(v, ["Ⲣⲱⲥⲓⲁ", "noun", "Ⲣⲱⲥⲓⲁ", "", "", "", "Russia a transcontinental"]) + let v = native_list_append(v, ["ϭⲓⲛⲟⲩⲏⲗ", "noun", "ϭⲓⲛⲟⲩⲏⲗ", "", "", "", "boat ship"]) + let v = native_list_append(v, ["ϣⲙⲟⲩⲗ", "noun", "ϣⲙⲟⲩⲗ", "", "", "", "boundaries of land"]) + let v = native_list_append(v, ["ⲕⲉⲛⲉⲫⲓⲧⲉⲛ", "noun", "ⲕⲉⲛⲉⲫⲓⲧⲉⲛ", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ⲙⲏⲏⲣⲉ", "noun", "ⲙⲏⲏⲣⲉ", "", "", "", "noon midday"]) + let v = native_list_append(v, ["ⲉⲙⲛⲧ", "noun", "ⲉⲙⲛⲧ", "", "", "", "west"]) + let v = native_list_append(v, ["ⲙϩⲓⲧ", "noun", "ⲙϩⲓⲧ", "", "", "", "north"]) + let v = native_list_append(v, ["ⲉⲙϩⲓⲧ", "noun", "ⲉⲙϩⲓⲧ", "", "", "", "north"]) + let v = native_list_append(v, ["ⲥϩⲟ", "noun", "ⲥϩⲟ", "", "", "", "plough-handle"]) + let v = native_list_append(v, ["ⲥϧⲟ", "noun", "ⲥϧⲟ", "", "", "", "plough-handle"]) + let v = native_list_append(v, ["ϣⲟⲩⲱⲃⲉ", "noun", "ϣⲟⲩⲱⲃⲉ", "", "", "", "throat"]) + let v = native_list_append(v, ["ϣⲃⲱⲃⲓ", "noun", "ϣⲃⲱⲃⲓ", "", "", "", "throat"]) + let v = native_list_append(v, ["ⲛⲟⲩ", "noun", "ⲛⲟⲩ", "", "", "", "hour time"]) + let v = native_list_append(v, ["ϩⲟⲧⲉ", "noun", "ϩⲟⲧⲉ", "", "", "", "hour moment"]) + let v = native_list_append(v, ["ϩⲟϯ", "noun", "ϩⲟϯ", "", "", "", "hour moment"]) + let v = native_list_append(v, ["ϩⲙⲟⲩ", "noun", "ϩⲙⲟⲩ", "", "", "", "salt"]) + let v = native_list_append(v, ["ⲙⲗϩ", "noun", "ⲙⲗϩ", "", "", "", "salt"]) + let v = native_list_append(v, ["ⲙⲉⲗϩ", "noun", "ⲙⲉⲗϩ", "", "", "", "salt"]) + let v = native_list_append(v, ["ϣⲱϣⲓ", "noun", "ϣⲱϣⲓ", "", "", "", "field"]) + let v = native_list_append(v, ["ⲥⲱϣⲉ", "noun", "ⲥⲱϣⲉ", "", "", "", "field"]) + let v = native_list_append(v, ["ⲉⲙⲓⲙ", "noun", "ⲉⲙⲓⲙ", "", "", "", "shrew"]) + let v = native_list_append(v, ["ⲁⲗⲓⲗ", "noun", "ⲁⲗⲓⲗ", "", "", "", "field mouse mole"]) + let v = native_list_append(v, ["ⲁⲗⲓⲗⲓ", "noun", "ⲁⲗⲓⲗⲓ", "", "", "", "field mouse mole"]) + let v = native_list_append(v, ["ⲁⲛⲉϣ", "noun", "ⲁⲛⲏⲩϣ", "", "", "", "oath"]) + let v = native_list_append(v, ["ⲁⲛⲏϣ", "noun", "ⲁⲛⲏⲩϣ", "", "", "", "oath"]) + let v = native_list_append(v, ["ⳉⲱⲧⲃⲉ", "noun", "ⳉⲱⲧⲃⲉ", "", "", "", "murder"]) + let v = native_list_append(v, ["ⲣⲱⲓⲥ", "noun", "ⲣⲱⲓⲥ", "", "", "", "watch guard"]) + let v = native_list_append(v, ["ⲣⲁⲥⲟⲩ", "noun", "ⲣⲁⲥⲟⲩ", "", "", "", "dream"]) + let v = native_list_append(v, ["ⲣⲉⲥⲟⲩ", "noun", "ⲣⲉⲥⲟⲩ", "", "", "", "dream"]) + let v = native_list_append(v, ["ⲗⲉⲥⲃⲓ", "noun", "ⲗⲉⲥⲃⲓ", "", "", "", "dream"]) + let v = native_list_append(v, ["ⲣⲉⲥⲟⲩⲉ", "noun", "ⲣⲉⲥⲟⲩⲉ", "", "", "", "dream"]) + let v = native_list_append(v, ["ⲛⲉⲩ", "noun", "ⲛⲉⲩ", "", "", "", "hour time"]) + let v = native_list_append(v, ["ⲙⲁⲁⲛⲉ", "noun", "ⲙⲁⲁⲛⲉ", "", "", "", "nurse"]) + let v = native_list_append(v, ["ⲙⲟⲟⲛⲉ", "noun", "ⲙⲟⲟⲛⲉ", "", "", "", "nurse"]) + let v = native_list_append(v, ["ⲙⲟⲛⲓ", "noun", "ⲙⲟⲛⲓ", "", "", "", "nurse"]) + let v = native_list_append(v, ["ⲙⲁⲁⲛⲓ", "noun", "ⲙⲁⲁⲛⲓ", "", "", "", "nurse"]) + let v = native_list_append(v, ["ⲉⲓⲱϩⲉ", "noun", "ⲉⲓⲁϩⲟⲩⲉ", "", "", "", "field"]) + let v = native_list_append(v, ["ⲓⲟϩⲓ", "noun", "ⲓⲟϩⲓ", "", "", "", "field"]) + let v = native_list_append(v, ["ⲓⲱϩⲓ", "noun", "ⲓⲱϩⲓ", "", "", "", "field"]) + let v = native_list_append(v, ["ⲓⲱϩⲉ", "noun", "ⲓⲱϩⲉ", "", "", "", "field"]) + let v = native_list_append(v, ["ϫⲉⲧϥⲉ", "noun", "ϫⲉⲧϥⲉ", "", "", "", "reptile"]) + let v = native_list_append(v, ["ϫⲁⲧϥⲉ", "noun", "ϫⲁⲧϥⲉ", "", "", "", "reptile"]) + let v = native_list_append(v, ["ⲙⲁϣⲑⲱϯ", "noun", "ⲙⲁϣⲑⲱϯ", "", "", "", "comb"]) + let v = native_list_append(v, ["ⲙϣⲧⲱⲧⲉ", "noun", "ⲙϣⲧⲱⲧⲉ", "", "", "", "comb"]) + let v = native_list_append(v, ["ⲙⲓϣⲧⲱⲧⲉ", "noun", "ⲙⲓϣⲧⲱⲧⲉ", "", "", "", "comb"]) + let v = native_list_append(v, ["ⲧⲉϩⲛⲓ", "noun", "ⲧⲉϩⲛⲓ", "", "", "", "forehead"]) + let v = native_list_append(v, ["ⲧⲉϩⲛⲉ", "noun", "ⲧⲉϩⲛⲉ", "", "", "", "forehead"]) + let v = native_list_append(v, ["ⲗⲁⲓⲛ", "noun", "ⲗⲁⲓⲛ", "", "", "", "steel"]) + let v = native_list_append(v, ["ϩⲉⲣⲙⲁⲛ", "noun", "ϩⲉⲣⲙⲁⲛ", "", "", "", "pomegranate"]) + let v = native_list_append(v, ["ⲉⲣⲙⲁⲛ", "noun", "ⲉⲣⲙⲁⲛ", "", "", "", "pomegranate"]) + let v = native_list_append(v, ["ϥⲱ", "noun", "ϥⲱ", "", "", "", "hair"]) + let v = native_list_append(v, ["ⲥⲓⲣ", "noun", "ⲥⲓⲣ", "", "", "", "hair line stripe"]) + let v = native_list_append(v, ["ⲃⲏⲛⲓ", "noun", "ⲃⲏⲛⲓ", "", "", "", "date palm tree"]) + let v = native_list_append(v, ["ⲃⲏⲛⲛⲓ", "noun", "ⲃⲏⲛⲛⲓ", "", "", "", "date palm tree"]) + let v = native_list_append(v, ["ϣⲱⲧⲉ", "noun", "ϣⲱⲧⲉ", "", "", "", "flour dough"]) + let v = native_list_append(v, ["ϣⲱϯ", "noun", "ϣⲱϯ", "", "", "", "flour dough"]) + let v = native_list_append(v, ["ⲛⲱⲓⲧ", "noun", "ⲛⲱⲓⲧ", "", "", "", "meal"]) + let v = native_list_append(v, ["ⲛⲟⲉⲓⲧ", "noun", "ⲛⲟⲉⲓⲧ", "", "", "", "meal"]) + let v = native_list_append(v, ["ⲛⲁⲉⲓⲧ", "noun", "ⲛⲁⲉⲓⲧ", "", "", "", "meal"]) + let v = native_list_append(v, ["ⲛⲁⲓⲧ", "noun", "ⲛⲁⲓⲧ", "", "", "", "meal"]) + let v = native_list_append(v, ["ⲫⲁⲧ", "noun", "ⲫⲁⲧ", "", "", "", "knee"]) + let v = native_list_append(v, ["ⲡⲁⲧ", "noun", "ⲡⲁⲧ", "", "", "", "knee"]) + let v = native_list_append(v, ["ⲡⲉⲧ", "noun", "ⲡⲉⲧ", "", "", "", "knee"]) + let v = native_list_append(v, ["ⲑⲙⲟ", "noun", "ⲑⲙⲟ", "", "", "", "warmth"]) + let v = native_list_append(v, ["ⲑⲣⲏⲃ", "noun", "ⲑⲣⲏⲃ", "", "", "", "blow with a"]) + let v = native_list_append(v, ["ⲧⲃⲏⲣ", "noun", "ⲧⲃⲏⲣ", "", "", "", "blow with a"]) + let v = native_list_append(v, ["ⲣⲁⲧ⸗", "noun", "ⲣⲁⲧ⸗", "", "", "", "foot"]) + let v = native_list_append(v, ["ϩⲓⲕ", "noun", "ϩⲓⲕ", "", "", "", "magic charms potions"]) + let v = native_list_append(v, ["ϩⲁⲕⲟ", "noun", "ϩⲁⲕⲟ", "", "", "", "magician wizard"]) + let v = native_list_append(v, ["ⲁⲭⲱ", "noun", "ⲁⲭⲱⲟⲩⲓ", "", "", "", "magician wizard"]) + let v = native_list_append(v, ["ⲕⲓϥⲓ", "noun", "ⲕⲓϥⲓ", "", "", "", "breast"]) + let v = native_list_append(v, ["ϣⲧⲟⲣⲧⲣ", "noun", "ϣⲧⲟⲣⲧⲣ", "", "", "", "disturbance trouble haste"]) + let v = native_list_append(v, ["ⲧⲥⲱ", "noun", "ⲧⲥⲱ", "", "", "", "drink"]) + let v = native_list_append(v, ["ⲙⲉⲥⲧⲉⲛϩⲏⲧ", "noun", "ⲙⲉⲥⲧⲉⲛϩⲏⲧ", "", "", "", "breast thorax"]) + let v = native_list_append(v, ["ⲙⲟⲩϫϭ", "noun", "ⲙⲟⲩϫϭ", "", "", "", "mixture"]) + let v = native_list_append(v, ["ⲣⲉϥⲙⲟⲩϫ", "noun", "ⲣⲉϥⲙⲟⲩϫ", "", "", "", "mixer confuser disturber"]) + let v = native_list_append(v, ["ⲥⲏⲃ", "noun", "ⲥⲏⲃ", "", "", "", "enemy"]) + let v = native_list_append(v, ["ϣⲧⲣⲧⲓⲣ", "noun", "ϣⲧⲣⲧⲓⲣ", "", "", "", "hasty rash person"]) + let v = native_list_append(v, ["ϣⲟⲡ", "noun", "ϣⲟⲡ", "", "", "", "palm as measure"]) + let v = native_list_append(v, ["ⲥⲁⳉ", "noun", "ⲥⲁⳉ", "", "", "", "teacher scribe"]) + let v = native_list_append(v, ["ⲥⲉϥ", "noun", "ⲥⲉϥ", "", "", "", "yesterday"]) + let v = native_list_append(v, ["ⲥⲁϥ", "noun", "ⲥⲁϥ", "", "", "", "yesterday"]) + let v = native_list_append(v, ["ⲑⲃⲁ", "noun", "ⲑⲃⲁ", "", "", "", "ten thousand"]) + let v = native_list_append(v, ["ⲧⲃⲁ", "noun", "ⲧⲃⲁ", "", "", "", "ten thousand"]) + let v = native_list_append(v, ["ⲧⲃⲉ", "noun", "ⲧⲃⲉ", "", "", "", "ten thousand"]) + let v = native_list_append(v, ["ϯⲉⲓⲃⲉ", "noun", "ϯⲉⲓⲃⲉ", "", "", "", "finger"]) + let v = native_list_append(v, ["ⲧⲉⲉⲃⲉ", "noun", "ⲧⲉⲉⲃⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⳉⲧⲣⲧⲓⲣ", "noun", "ⳉⲧⲣⲧⲓⲣ", "", "", "", "hasty rash person"]) + let v = native_list_append(v, ["ⲟⲩⲁϣⲧⲉ", "noun", "ⲟⲩⲁϣⲧⲉ", "", "", "", "worship"]) + let v = native_list_append(v, ["ϣⲧⲉⲣⲧⲓⲣ", "noun", "ϣⲧⲉⲣⲧⲓⲣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϣⲏⲙϣⲓ", "noun", "ϣⲏⲙϣⲓ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲥⲟⲩ-", "noun", "ⲥⲟⲩ-", "", "", "", "day x with"]) + let v = native_list_append(v, ["ⲥⲏⲩ", "noun", "ⲥⲏⲩ", "", "", "", "time season"]) + let v = native_list_append(v, ["ⲥⲓⲃ", "noun", "ⲥⲓⲃ", "", "", "", "tick arachnid"]) + let v = native_list_append(v, ["ⲥⲓⲡ", "noun", "ⲥⲓⲡ", "", "", "", "tick arachnid"]) + let v = native_list_append(v, ["ⲕⲣⲟϥ", "noun", "ⲕⲣⲟϥ", "", "", "", "guile ambush"]) + let v = native_list_append(v, ["ⲕⲣⲁϥ", "noun", "ⲕⲣⲁϥ", "", "", "", "guile ambush"]) + let v = native_list_append(v, ["ⲕⲗⲁϥ", "noun", "ⲕⲗⲁϥ", "", "", "", "guile ambush"]) + let v = native_list_append(v, ["ⲭⲣⲟϥ", "noun", "ⲭⲣⲟϥ", "", "", "", "guile ambush"]) + let v = native_list_append(v, ["ⲃⲟⲩ", "noun", "ⲃⲟⲩ", "", "", "", "bush"]) + let v = native_list_append(v, ["ϣⲏⲛ", "noun", "ϣⲏⲛ", "", "", "", "tree"]) + let v = native_list_append(v, ["ⲥⲡⲟⲧⲟⲩ", "noun", "ⲥⲡⲟⲧⲟⲩ", "", "", "", "lips dual edge"]) + let v = native_list_append(v, ["ⲥⲫⲟⲧⲟⲩ", "noun", "ⲥⲫⲟⲧⲟⲩ", "", "", "", "lips dual edge"]) + let v = native_list_append(v, ["ⲥⲡⲁⲧⲟⲩ", "noun", "ⲥⲡⲁⲧⲟⲩ", "", "", "", "lips dual edge"]) + let v = native_list_append(v, ["ⲡⲓ", "noun", "ⲡⲓ", "", "", "", "kiss."]) + let v = native_list_append(v, ["ⲡⲓⲉⲓ", "noun", "ⲡⲓⲉⲓ", "", "", "", "kiss."]) + let v = native_list_append(v, ["ⲕⲣⲙⲉⲥ", "noun", "ⲕⲣⲙⲉⲥ", "", "", "", "ash soot dust"]) + let v = native_list_append(v, ["ⲕⲉⲣⲙⲓ", "noun", "ⲕⲉⲣⲙⲓ", "", "", "", "ash soot dust"]) + let v = native_list_append(v, ["ⲕⲩⲣⲙⲓ", "noun", "ⲕⲩⲣⲙⲓ", "", "", "", "ash soot dust"]) + let v = native_list_append(v, ["ⲕⲣⲙⲉ", "noun", "ⲕⲣⲙⲉ", "", "", "", "ash soot dust"]) + let v = native_list_append(v, ["ⲕⲉⲣⲙⲉ", "noun", "ⲕⲉⲣⲙⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϣⲟⲉⲓϣ", "noun", "ϣⲟⲉⲓϣ", "", "", "", "dust"]) + let v = native_list_append(v, ["ϣⲟⲓϣ", "noun", "ϣⲟⲓϣ", "", "", "", "dust"]) + let v = native_list_append(v, ["ϣⲱⲓϣ", "noun", "ϣⲱⲓϣ", "", "", "", "dust"]) + let v = native_list_append(v, ["ϣⲁⲓϣ", "noun", "ϣⲁⲓϣ", "", "", "", "dust"]) + let v = native_list_append(v, ["ⳉⲁⲉⲓⳉ", "noun", "ⳉⲁⲉⲓⳉ", "", "", "", "dust"]) + let v = native_list_append(v, ["ⲉⲓⲧⲛ", "noun", "ⲉⲓⲧⲛ", "", "", "", "ground earth dust"]) + let v = native_list_append(v, ["ϣϩⲓϫ", "noun", "ϣϩⲓϫ", "", "", "", "dust"]) + let v = native_list_append(v, ["ϫⲓⲛⲟⲩⲱϣⲧ", "noun", "ϫⲓⲛⲟⲩⲱϣⲧ", "", "", "", "worship"]) + let v = native_list_append(v, ["ⲣⲉϥⲟⲩⲱϣⲧ", "noun", "ⲣⲉϥⲟⲩⲱϣⲧ", "", "", "", "worshiper"]) + let v = native_list_append(v, ["ϣⲙϣⲉ", "noun", "ϣⲙϣⲉ", "", "", "", "service worship"]) + let v = native_list_append(v, ["ϣⲙϣⲓⲧ", "noun", "ϣⲙϣⲓⲧ", "", "", "", "servant"]) + let v = native_list_append(v, ["ⲣⲉϥⲡⲱϣⲛ", "noun", "ⲣⲉϥⲡⲱϣⲛ", "", "", "", "servant"]) + let v = native_list_append(v, ["ⲙⲁⲑⲟⲩⲓ", "noun", "ⲙⲁⲑⲟⲩⲓ", "", "", "", "poison venom"]) + let v = native_list_append(v, ["ⲙⲁⲧⲟⲩ", "noun", "ⲙⲁⲧⲟⲩ", "", "", "", "poison venom"]) + let v = native_list_append(v, ["ⲙⲉⲧⲃⲓ", "noun", "ⲙⲉⲧⲃⲓ", "", "", "", "poison venom"]) + let v = native_list_append(v, ["ⲙⲉⲧⲟⲩ", "noun", "ⲙⲉⲧⲟⲩ", "", "", "", "poison venom"]) + let v = native_list_append(v, ["ϩⲟⲟⲩⲉ", "noun", "ϩⲣⲉⲩ", "", "", "", "day"]) + let v = native_list_append(v, ["ⲙⲟⲩⲣ", "noun", "ⲙⲟⲩⲣ", "", "", "", "band girth strap"]) + let v = native_list_append(v, ["ⲑⲱⲣⲓ", "noun", "ⲑⲱⲣⲓ", "", "", "", "willow"]) + let v = native_list_append(v, ["ϣⲡⲏⲣⲉ", "noun", "ϣⲡⲏⲣⲉ", "", "", "", "wonder amazement"]) + let v = native_list_append(v, ["ϣⲫⲏⲣⲓ", "noun", "ϣⲫⲏⲣⲓ", "", "", "", "wonder amazement"]) + let v = native_list_append(v, ["ϣⲡⲏⲣⲓ", "noun", "ϣⲡⲏⲣⲓ", "", "", "", "wonder amazement"]) + let v = native_list_append(v, ["ⲣⲁⲙⲡⲉ", "noun", "(A) ⲣⲙⲡⲉⲟⲩⲉ", "", "", "", "year"]) + let v = native_list_append(v, ["ⲥⲱⲣⲙ", "noun", "ⲥⲱⲣⲙ", "", "", "", "error"]) + let v = native_list_append(v, ["ⲥⲱⲣⲉⲙ", "noun", "ⲥⲱⲣⲉⲙ", "", "", "", "error"]) + let v = native_list_append(v, ["ⲥⲱⲣⲙⲉ", "noun", "ⲥⲱⲣⲙⲉ", "", "", "", "error"]) + let v = native_list_append(v, ["ϭⲁⲙ", "noun", "ϭⲁⲙ", "", "", "", "strength"]) + let v = native_list_append(v, ["ϫⲁⲙ", "noun", "ϫⲁⲙ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲕⲛⲧⲉ", "noun", "ⲕⲛⲧⲉ", "", "", "", "fig"]) + let v = native_list_append(v, ["ⲕⲉⲛⲧⲏ", "noun", "ⲕⲉⲛⲧⲏ", "", "", "", "fig"]) + let v = native_list_append(v, ["ⲛⲟⲙϯ", "noun", "ⲛⲟⲙϯ", "", "", "", "strength power"]) + let v = native_list_append(v, ["ⲛⲟⲙⲧⲉ", "noun", "ⲛⲟⲙⲧⲉ", "", "", "", "strength power"]) + let v = native_list_append(v, ["ⲛⲁⲙϯ", "noun", "ⲛⲁⲙϯ", "", "", "", "strength power"]) + let v = native_list_append(v, ["ⲛⲁⲙⲧⲉ", "noun", "ⲛⲁⲙⲧⲉ", "", "", "", "strength power"]) + let v = native_list_append(v, ["ϩⲏⲟⲩ", "noun", "ϩⲏⲟⲩ", "", "", "", "profit usefulness"]) + let v = native_list_append(v, ["ϩⲏⲩ", "noun", "ϩⲏⲩ", "", "", "", "profit usefulness"]) + let v = native_list_append(v, ["ⲉϭⲱϣ", "noun", "ⲉϭⲟⲟϣ (ečooš)", "", "", "", "Ethiopian Nubian"]) + let v = native_list_append(v, ["ⲡⲟⲣϣⲥ", "noun", "ⲡⲟⲣϣⲥ", "", "", "", "spread table"]) + let v = native_list_append(v, ["ⲣⲉϥⲣϩⲓⲕ", "noun", "ⲣⲉϥⲣϩⲓⲕ", "", "", "", "wizard enchanter"]) + let v = native_list_append(v, ["ⲡⲱϣⲛ", "noun", "ⲡⲱϣⲛ", "", "", "", "service"]) + let v = native_list_append(v, ["ⲫⲱϣⲉⲛ", "noun", "ⲫⲱϣⲉⲛ", "", "", "", "service"]) + let v = native_list_append(v, ["ⲡⲁⲣϣⲥ", "noun", "ⲡⲁⲣϣⲥ", "", "", "", "spread table"]) + let v = native_list_append(v, ["ϩⲙⲟⲙ", "noun", "ϩⲙⲟⲙ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ϣⲙⲟⲙ", "noun", "ϣⲙⲟⲙ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϧⲙⲟⲙ", "noun", "ϧⲙⲟⲙ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ⳉⲙⲁⲙ", "noun", "ⳉⲙⲁⲙ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ϩⲙⲁⲙ", "noun", "ϩⲙⲁⲙ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ϩⲙⲙⲉ", "noun", "ϩⲙⲙⲉ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ⲣⲁⲙⲡⲓ", "noun", "ⲣⲁⲙⲡⲓ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲣⲟⲩϩⲉ", "noun", "ⲣⲟⲩϩⲉ", "", "", "", "evening"]) + let v = native_list_append(v, ["ⲗⲟⲩϩⲓ", "noun", "ⲗⲟⲩϩⲓ", "", "", "", "evening"]) + let v = native_list_append(v, ["ⲣⲁⲥϯ", "noun", "ⲣⲁⲥϯ", "", "", "", "morrow"]) + let v = native_list_append(v, ["ⲗⲉⲥϯ", "noun", "ⲗⲉⲥϯ", "", "", "", "morrow"]) + let v = native_list_append(v, ["ⲣⲉⲥⲧⲉ", "noun", "ⲣⲉⲥⲧⲉ", "", "", "", "morrow"]) + let v = native_list_append(v, ["ⲣⲁⲥⲧⲉ", "noun", "ⲣⲁⲥⲧⲉ", "", "", "", "morrow"]) + let v = native_list_append(v, ["ϣⲱ", "noun", "ϣⲱ", "", "", "", "sand"]) + let v = native_list_append(v, ["ϣⲟⲩ", "noun", "ϣⲟⲩ", "", "", "", "sand"]) + let v = native_list_append(v, ["ϣⲟⲩⲟⲩ", "noun", "ϣⲟⲩⲟⲩ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲙⲏ", "noun", "ⲙⲏ", "", "", "", "urine"]) + let v = native_list_append(v, ["ⲡϣⲱ ⲛⲙⲏ", "noun", "ⲡϣⲱ ⲛⲙⲏ", "", "", "", "urine stone calculus"]) + let v = native_list_append(v, ["ⲓϣ", "noun", "ⲓϣ", "", "", "", "urine"]) + let v = native_list_append(v, ["ⲙⲓ", "noun", "ⲙⲓ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϣⲱⲣⲡ", "noun", "ϣⲱⲣⲡ", "", "", "", "morning"]) + let v = native_list_append(v, ["ⳉⲱⲣⲡ", "noun", "ⳉⲱⲣⲡ", "", "", "", "morning"]) + let v = native_list_append(v, ["ϣⲱⲗⲡ", "noun", "ϣⲱⲗⲡ", "", "", "", "morning"]) + let v = native_list_append(v, ["ϣⲱⲗⲉⲡ", "noun", "ϣⲱⲗⲉⲡ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲣⲱⲥ", "noun", "ⲣⲱⲥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲣⲉϥⲭⲱⲗⲉⲙ", "noun", "ⲣⲉϥⲭⲱⲗⲉⲙ", "", "", "", "hasty man"]) + let v = native_list_append(v, ["ϫⲟ", "noun", "ϫⲟ", "", "", "", "planting sowing"]) + let v = native_list_append(v, ["ⲙⲛⲧϥⲓ", "noun", "ⲙⲛⲧϥⲓ", "", "", "", "patience"]) + let v = native_list_append(v, ["ⲥⲃⲃⲉ", "noun", "ⲥⲃⲃⲉ", "", "", "", "circumcision"]) + let v = native_list_append(v, ["ⲣⲉϥϫⲟ", "noun", "ⲣⲉϥϫⲟ", "", "", "", "sower"]) + let v = native_list_append(v, ["ϩⲁⲧⲃⲉⲥ", "noun", "ϩⲁⲧⲃⲉⲥ", "", "", "", "slaughter"]) + let v = native_list_append(v, ["ⳉⲁⲧⲃⲉⲥ", "noun", "ⳉⲁⲧⲃⲉⲥ", "", "", "", "slaughter"]) + let v = native_list_append(v, ["ⲣⲉϥϩⲱⲧⲃ", "noun", "ⲣⲉϥϩⲱⲧⲃ", "", "", "", "slayer murderer"]) + let v = native_list_append(v, ["ⲙⲣⲣⲉ", "noun", "ⲙⲣⲣⲉ", "", "", "", "chain bond joint"]) + let v = native_list_append(v, ["ⲙⲟⲣⲥ", "noun", "ⲙⲟⲣⲥ", "", "", "", "binding restriction of"]) + let v = native_list_append(v, ["ⲙⲉⲗⲗⲓ", "noun", "ⲙⲉⲗⲗⲓ", "", "", "", "chain bond joint"]) + let v = native_list_append(v, ["ⲥⲟⲡⲥⲡ", "noun", "ⲥⲟⲡⲥⲡ", "", "", "", "prayer entreaty consolation"]) + let v = native_list_append(v, ["ⲥⲟⲡⲥ", "noun", "ⲥⲟⲡⲥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲥⲟⲗⲥⲗ", "noun", "ⲥⲟⲗⲥⲗ", "", "", "", "consolation amusement"]) + let v = native_list_append(v, ["ⲥⲟⲗⲥⲉⲗ", "noun", "ⲥⲟⲗⲥⲉⲗ", "", "", "", "consolation amusement"]) + let v = native_list_append(v, ["ⲱⲛⲉ ⲙⲙⲉ", "noun", "ⲱⲛⲉ ⲙⲙⲉ", "", "", "", "precious stone pearl"]) + let v = native_list_append(v, ["ⲥⲟⲟⲩϩⲥ", "noun", "ⲥⲟⲟⲩϩⲥ", "", "", "", "congregation collection"]) + let v = native_list_append(v, ["ⲛⲁϩⲃⲉϥ", "noun", "ⲛⲁϩⲃⲉϥ", "", "", "", "yoke"]) + let v = native_list_append(v, ["ⲛⲉϩⲃⲉϥ", "noun", "ⲛⲉϩⲃⲉϥ", "", "", "", "yoke"]) + let v = native_list_append(v, ["ϣⲗϩϥ", "noun", "ϣⲗϩϥ", "", "", "", "fear"]) + let v = native_list_append(v, ["ϣⲉⲗϥ", "noun", "ϣⲉⲗϥ", "", "", "", "fear"]) + let v = native_list_append(v, ["ⲛⲉϩϣⲗϥ", "noun", "ⲛⲉϩϣⲗϥ", "", "", "", "terror"]) + let v = native_list_append(v, ["ϣⲗϥ", "noun", "ϣⲗϥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲛⲟⲩϩⲉ", "noun", "ⲛⲟⲩϩⲉ", "", "", "", "sycamore"]) + let v = native_list_append(v, ["ⲛⲁϩⲃϥ", "noun", "ⲛⲁϩⲃϥ", "", "", "", "yoke"]) + let v = native_list_append(v, ["ϥⲱϭⲉ", "noun", "ϥⲱϭⲉ", "", "", "", "impetuosity grasping greed"]) + let v = native_list_append(v, ["ⲣⲉϥϥⲱϭⲉ", "noun", "ⲣⲉϥϥⲱϭⲉ", "", "", "", "impetuous violent person"]) + let v = native_list_append(v, ["ϥⲟϭϥ", "noun", "ϥⲟϭϥ", "", "", "", "seizer robber"]) + let v = native_list_append(v, ["ⲣⲉϥϩⲱⲗⲉⲙ", "noun", "ⲣⲉϥϩⲱⲗⲉⲙ", "", "", "", "seizer robber"]) + let v = native_list_append(v, ["ϩⲱⲗⲉⲙ", "noun", "ϩⲱⲗⲉⲙ", "", "", "", "rapine spoil"]) + let v = native_list_append(v, ["ⲥⲟⲟⲛⲉ", "noun", "ⲥⲟⲟⲛⲉ", "", "", "", "robber"]) + let v = native_list_append(v, ["ⲥⲁⲁⲛⲓ", "noun", "ⲥⲁⲁⲛⲓ", "", "", "", "robber"]) + let v = native_list_append(v, ["ⲥⲁⲛⲉ", "noun", "ⲥⲁⲛⲉ", "", "", "", "robber"]) + let v = native_list_append(v, ["ⲥⲁⲛⲓ", "noun", "ⲥⲁⲛⲓ", "", "", "", "robber"]) + let v = native_list_append(v, ["ⲥⲟⲛⲉ", "noun", "ⲥⲟⲛⲉ", "", "", "", "robber"]) + let v = native_list_append(v, ["ⲣⲉϥⲃⲱϣ", "noun", "ⲣⲉϥⲃⲱϣ", "", "", "", "despoiler robber"]) + let v = native_list_append(v, ["ⲣⲉϥϫⲓϫⲓ", "noun", "ⲣⲉϥϫⲓϫⲓ", "", "", "", "robber"]) + let v = native_list_append(v, ["ϫⲡⲟ", "noun", "ϫⲡⲟ", "", "", "", "birth fathering"]) + let v = native_list_append(v, ["ϫⲫⲟ", "noun", "ϫⲫⲟ", "", "", "", "birth begetting"]) + let v = native_list_append(v, ["ϭⲱⲧⲡ", "noun", "ϭⲱⲧⲡ", "", "", "", "intimidation discouragement"]) + let v = native_list_append(v, ["ϫⲏⲗ", "noun", "ϫⲏⲗ", "", "", "", "a fish"]) + let v = native_list_append(v, ["ⲕⲱⲧ", "noun", "ⲕⲱⲧ", "", "", "", "act of building"]) + let v = native_list_append(v, ["ⲕⲱⲧⲉ", "noun", "ⲕⲱⲧⲉ", "", "", "", "turning round circuit"]) + let v = native_list_append(v, ["ⲕⲧⲟ", "noun", "ⲕⲧⲟ", "", "", "", "turning return what"]) + let v = native_list_append(v, ["ⲕⲧⲁ", "noun", "ⲕⲧⲁ", "", "", "", "turning return what"]) + let v = native_list_append(v, ["ϯⳉⲉ", "noun", "ϯⳉⲉ", "", "", "", "drunkenness"]) + let v = native_list_append(v, ["ϯϩⲓ", "noun", "ϯϩⲓ", "", "", "", "drunkenness"]) + let v = native_list_append(v, ["ϫⲓⲛϣⲧⲉⲙⲑⲓϧⲓ", "noun", "ϫⲓⲛϣⲧⲉⲙⲑⲓϧⲓ", "", "", "", "sobriety state of"]) + let v = native_list_append(v, ["ⲣⲱⲧ", "noun", "ⲣⲟϯ (roti)", "", "", "", "growth"]) + let v = native_list_append(v, ["ⲗⲉⲧ", "noun", "ⲗⲉⲧ", "", "", "", "parsley"]) + let v = native_list_append(v, ["ⲥⲁⲗⲥⲗⲉ", "noun", "ⲥⲁⲗⲥⲗⲉ", "", "", "", "consolation amusement"]) + let v = native_list_append(v, ["ⲥⲁⲗⲥⲗ", "noun", "ⲥⲁⲗⲥⲗ", "", "", "", "consolation amusement"]) + let v = native_list_append(v, ["ⲥⲁⲗⲥⲉⲗ", "noun", "ⲥⲁⲗⲥⲉⲗ", "", "", "", "consolation amusement"]) + let v = native_list_append(v, ["ϭⲟⲧⲡⲥ", "noun", "ϭⲟⲧⲡⲥ", "", "", "", "defeat"]) + let v = native_list_append(v, ["ϭⲧⲟⲡ", "noun", "ϭⲧⲟⲡ", "", "", "", "defeat"]) + let v = native_list_append(v, ["ⲧⲁⲙⲓⲟ", "noun", "ⲧⲁⲙⲓⲟ", "", "", "", "work creation"]) + let v = native_list_append(v, ["ⲑⲁⲙⲓⲟ", "noun", "ⲑⲁⲙⲓⲟ", "", "", "", "work creation"]) + let v = native_list_append(v, ["ⲧⲁⲙⲓⲁ", "noun", "ⲧⲁⲙⲓⲁ", "", "", "", "work creation"]) + let v = native_list_append(v, ["ⲙⲛⲧⲁⲧⲉⲓⲙⲉ", "noun", "ⲙⲛⲧⲁⲧⲉⲓⲙⲉ", "", "", "", "ignorance innocence"]) + let v = native_list_append(v, ["ⲙⲉⲧⲁⲧⲉⲙⲓ", "noun", "ⲙⲉⲧⲁⲧⲉⲙⲓ", "", "", "", "ignorance innocence"]) + let v = native_list_append(v, ["ⲙⲛⲧⲁⲧⲙⲟⲩ", "noun", "ⲙⲛⲧⲁⲧⲙⲟⲩ", "", "", "", "immortality"]) + let v = native_list_append(v, ["ⲥⲱϩ", "noun", "ⲥⲱϩ", "", "", "", "deaf person"]) + let v = native_list_append(v, ["ⲕⲟⲩⲣ", "noun", "ⲕⲟⲩⲣ", "", "", "", "deaf person"]) + let v = native_list_append(v, ["ⲕⲟⲩⲗ", "noun", "ⲕⲟⲩⲗ", "", "", "", "deaf person"]) + let v = native_list_append(v, ["ⲥⲱⳉ", "noun", "ⲥⲱⳉ", "", "", "", "deaf person"]) + let v = native_list_append(v, ["ⲕⲱⲫⲟⲥ", "noun", "ⲕⲱⲫⲟⲥ", "", "", "", "deaf one"]) + let v = native_list_append(v, ["ⲕⲟⲩⲫⲟⲥ", "noun", "ⲕⲟⲩⲫⲟⲥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲑⲱϩⲉⲙ", "noun", "ⲑⲱϩⲉⲙ", "", "", "", "calling convocation"]) + let v = native_list_append(v, ["ⲧⲱϩⲙ", "noun", "ⲧⲱϩⲙ", "", "", "", "calling convocation"]) + let v = native_list_append(v, ["ⲧⲱϩⲉⲙ", "noun", "ⲧⲱϩⲉⲙ", "", "", "", "calling convocation"]) + let v = native_list_append(v, ["ⲧⲱϩⲙⲉ", "noun", "ⲧⲱϩⲙⲉ", "", "", "", "calling convocation"]) + let v = native_list_append(v, ["ⲟⲩⲱϣⲥ", "noun", "ⲟⲩⲱϣⲥ", "", "", "", "breadth"]) + let v = native_list_append(v, ["ⲟⲩⲱⲥⳉ", "noun", "ⲟⲩⲱⲥⳉ", "", "", "", "breadth"]) + let v = native_list_append(v, ["ⲙⲟⲩⲧⲉ", "noun", "ⲙⲟⲩⲧⲉ", "", "", "", "magic spell incantation"]) + let v = native_list_append(v, ["ⲁⲗ", "noun", "ⲁⲗ", "", "", "", "pebble"]) + let v = native_list_append(v, ["ⲉⲗ", "noun", "ⲉⲗ", "", "", "", "pebble"]) + let v = native_list_append(v, ["ⲟⲩⲟⲡ", "noun", "ⲟⲩⲟⲡ", "", "", "", "purity"]) + let v = native_list_append(v, ["ⲟⲩⲁⲡ", "noun", "ⲟⲩⲁⲡ", "", "", "", "purity"]) + let v = native_list_append(v, ["ⲟⲩⲁⲃ", "noun", "ⲟⲩⲁⲃ", "", "", "", "purity"]) + let v = native_list_append(v, ["ⳉⳉⲧⲱⲣϣ", "noun", "ⳉⳉⲧⲱⲣϣ", "", "", "", "rust red blight"]) + let v = native_list_append(v, ["ⲉⲧⲏϣⲓ", "noun", "ⲉⲧⲏϣⲓ", "", "", "", "flamingo crane"]) + let v = native_list_append(v, ["ⲁϣⲁⲓ", "noun", "ⲁϣⲁⲓ", "", "", "", "multitude amount"]) + let v = native_list_append(v, ["ϫⲉϥ", "noun", "ϫⲉϥ", "", "", "", "frost"]) + let v = native_list_append(v, ["ⲟϭⲃⲥ", "noun", "ⲟϭⲃⲥ", "", "", "", "cold"]) + let v = native_list_append(v, ["ⲱϭⲃ", "noun", "ⲱϭⲃ", "", "", "", "cold frost"]) + let v = native_list_append(v, ["ⲱϫⲉⲃ", "noun", "ⲱϫⲉⲃ", "", "", "", "cold frost"]) + let v = native_list_append(v, ["ⲕⲁⲥ", "noun", "ⲕⲁⲁⲥ (kaas)", "", "", "", "bone"]) + let v = native_list_append(v, ["ⲕⲉⲉⲥ", "noun", "ⲕⲏⲏⲥ (kēēs)", "", "", "", "bone"]) + let v = native_list_append(v, ["ⲕⲉⲥ", "noun", "ⲕⲏⲏⲥ", "", "", "", "bone"]) + let v = native_list_append(v, ["ⲧⲁϥ", "noun", "ⲧⲁϥ", "", "", "", "spit saliva"]) + let v = native_list_append(v, ["ⲣⲉϥⲥⲱⲟⲩⲛ", "noun", "ⲣⲉϥⲥⲱⲟⲩⲛ", "", "", "", "knower one who"]) + let v = native_list_append(v, ["ⲧⲁⲓⲃⲉ", "noun", "ⲧⲁⲓⲃⲉ", "", "", "", "chest coffin pouch"]) + let v = native_list_append(v, ["ⲧⲁⲓⲃⲓ", "noun", "ⲧⲁⲓⲃⲓ", "", "", "", "chest coffin pouch"]) + let v = native_list_append(v, ["ⲗⲟⲉⲓϩⲉ", "noun", "ⲗⲟⲉⲓϩⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲗⲩϩϩⲉ", "noun", "ⲗⲩϩϩⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲙⲉ", "noun", "ⲟⲙⲉ", "", "", "", "clay mud"]) + let v = native_list_append(v, ["ⲁⲙⲡⲏⲣϣ", "noun", "ⲁⲙⲡⲏⲣϣ", "", "", "", "red clay"]) + let v = native_list_append(v, ["ⲁⲙϩⲁⲧ", "noun", "ⲁⲙϩⲁⲧ", "", "", "", "white clay"]) + let v = native_list_append(v, ["ⲫⲏⲣϣ", "noun", "ⲫⲏⲣϣ", "", "", "", "red-coloured substance"]) + let v = native_list_append(v, ["ⲡⲏⲣϣ", "noun", "ⲡⲏⲣϣ", "", "", "", "red-coloured substance"]) + let v = native_list_append(v, ["ⲟⲟⲙⲉ", "noun", "ⲟⲟⲙⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲁⲙⲧⲱϩ", "noun", "ⲁⲙⲧⲱϩ", "", "", "", "clay mixed with"]) + let v = native_list_append(v, ["ⲁⲁⲙⲉ", "noun", "ⲁⲁⲙⲉ", "", "", "", "clay mud"]) + let v = native_list_append(v, ["ⲁⲙⲉ", "noun", "ⲁⲙⲉ", "", "", "", "clay mud"]) + let v = native_list_append(v, ["ⲧⲱϩ", "noun", "ⲧⲱϩ", "", "", "", "chaff"]) + let v = native_list_append(v, ["ⲉⲙⲛⲧⲉ", "noun", "ⲉⲙⲛⲧⲉ", "", "", "", "west"]) + let v = native_list_append(v, ["ⲙⲁ ⲛϣⲁ", "noun", "ⲙⲁ ⲛϣⲁ", "", "", "", "east"]) + let v = native_list_append(v, ["ⲙⲁ ⲛⳉⲁⲉ", "noun", "ⲙⲁ ⲛⳉⲁⲉ", "", "", "", "east"]) + let v = native_list_append(v, ["ⲙⲁ ⲛϣⲉⲉⲓ", "noun", "ⲙⲁ ⲛϣⲉⲉⲓ", "", "", "", "east"]) + let v = native_list_append(v, ["ⲙⲉⲧⲣⲉϥϯⲑⲱϧ", "noun", "ⲙⲉⲧⲣⲉϥϯⲑⲱϧ", "", "", "", "confusion disturbance"]) + let v = native_list_append(v, ["ⲙⲛⲧⲣⲉϥⲧⲱϩ", "noun", "ⲙⲛⲧⲣⲉϥⲧⲱϩ", "", "", "", "confusion disturbance"]) + let v = native_list_append(v, ["ⲣⲉϥⲧⲱϩ", "noun", "ⲣⲉϥⲧⲱϩ", "", "", "", "mixer meddler person"]) + let v = native_list_append(v, ["ⲧⲁϩⲧϩ", "noun", "ⲧⲁϩⲧϩ", "", "", "", "mixture disturbance"]) + let v = native_list_append(v, ["ⲟⲗⲕⲥ", "noun", "ⲟⲗⲕⲥ", "", "", "", "bend corner"]) + let v = native_list_append(v, ["ⲉⲗⲕⲥ", "noun", "ⲉⲗⲕⲥ", "", "", "", "bend corner"]) + let v = native_list_append(v, ["ⲟⲗⲉⲕⲥ", "noun", "ⲟⲗⲉⲕⲥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲉⲗⲝ", "noun", "ⲉⲗⲝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲑⲱϧ", "noun", "ⲑⲱϧ", "", "", "", "mixture disturbance"]) + let v = native_list_append(v, ["ⲑⲟϧⲧⲉϧ", "noun", "ⲑⲟϧⲧⲉϧ", "", "", "", "mixture confusion"]) + let v = native_list_append(v, ["ⲧⲱϩⲥ", "noun", "ⲧⲱϩⲥ", "", "", "", "anointing"]) + let v = native_list_append(v, ["ⲑⲱϩⲥ", "noun", "ⲑⲱϩⲥ", "", "", "", "anointing"]) + let v = native_list_append(v, ["ⲣⲉϥⲧⲱϩⲥ", "noun", "ⲣⲉϥⲧⲱϩⲥ", "", "", "", "anointer"]) + let v = native_list_append(v, ["ⲣⲉϥϣⲙϣⲉ", "noun", "ⲣⲉϥϣⲙϣⲉ", "", "", "", "worshiper"]) + let v = native_list_append(v, ["ϩⲟⲧϩⲧ", "noun", "ϩⲟⲧϩⲧ", "", "", "", "inquiry question"]) + let v = native_list_append(v, ["ϧⲟⲧϧⲉⲧ", "noun", "ϧⲟⲧϧⲉⲧ", "", "", "", "inquiry question"]) + let v = native_list_append(v, ["ϧⲉⲙⲓ", "noun", "ϧⲉⲙⲓ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ⲑⲁⲣⲙⲟⲩⲥ", "noun", "ⲑⲁⲣⲙⲟⲩⲥ", "", "", "", "lupin"]) + let v = native_list_append(v, ["ⲧⲁⲣⲙⲟⲥ", "noun", "ⲧⲁⲣⲙⲟⲥ", "", "", "", "lupin"]) + let v = native_list_append(v, ["ⲧⲁⲡⲉⲛ", "noun", "ⲧⲁⲡⲉⲛ", "", "", "", "cumin"]) + let v = native_list_append(v, ["ⲑⲁⲡⲉⲛ", "noun", "ⲑⲁⲡⲉⲛ", "", "", "", "cumin"]) + let v = native_list_append(v, ["ⲧⲁⲡⲛ", "noun", "ⲧⲁⲡⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲧⲉⲡⲛ", "noun", "ⲧⲉⲡⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲧⲉⲡⲛⲉ", "noun", "ⲧⲉⲡⲛⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲕⲓⲙⲓⲛⲟⲩ", "noun", "ⲕⲓⲙⲓⲛⲟⲩ", "", "", "", "cumin"]) + let v = native_list_append(v, ["ϣⲱⲃϣ", "noun", "ϣⲱⲃϣ", "", "", "", "arm foreleg of"]) + let v = native_list_append(v, ["ϣⲱⲡϣ", "noun", "ϣⲱⲡϣ", "", "", "", "arm foreleg of"]) + let v = native_list_append(v, ["ⳉⲱⲡϣ", "noun", "ⳉⲱⲡϣ", "", "", "", "arm foreleg of"]) + let v = native_list_append(v, ["ⲫⲟⲓ", "noun", "ⲫⲟⲓ", "", "", "", "bench"]) + let v = native_list_append(v, ["ⲡⲟⲓ", "noun", "ⲡⲟⲓ", "", "", "", "bench"]) + let v = native_list_append(v, ["ⲃⲁⲕϣⲁⲁⲣ", "noun", "ⲃⲁⲕϣⲁⲁⲣ", "", "", "", "a tanner"]) + let v = native_list_append(v, ["ϣⲁⲁⲣ", "noun", "ϣⲁⲁⲣⲉ", "", "", "", "skin leather parchment?"]) + let v = native_list_append(v, ["ϣⲟⲣϣⲣ", "noun", "ϣⲟⲣϣⲣ", "", "", "", "overthrow destruction"]) + let v = native_list_append(v, ["ϣⲟⲣϣⲉⲣ", "noun", "ϣⲟⲣϣⲉⲣ", "", "", "", "overthrow destruction"]) + let v = native_list_append(v, ["ϣⲁⲗϣⲉⲗ", "noun", "ϣⲁⲗϣⲉⲗ", "", "", "", "overthrow destruction"]) + let v = native_list_append(v, ["ⳉⲁⲣⳉⲣⲉ", "noun", "ⳉⲁⲣⳉⲣⲉ", "", "", "", "overthrow destruction"]) + let v = native_list_append(v, ["ⲭⲣⲟⲛⲟⲥ", "noun", "ⲭⲣⲟⲛⲟⲥ", "", "", "", "time"]) + let v = native_list_append(v, ["ⲭⲣⲱⲛⲟⲥ", "noun", "ⲭⲣⲱⲛⲟⲥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲭⲣⲱⲛⲱⲥ", "noun", "ⲭⲣⲱⲛⲱⲥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲉϩⲓ", "noun", "ⲉϩⲓ", "", "", "", "lifetime lifespan"]) + let v = native_list_append(v, ["ⲱⲃⲉⲛ", "noun", "ⲱⲃⲉⲛ", "", "", "", "alum"]) + let v = native_list_append(v, ["ⲟⲃⲛ", "noun", "ⲟⲃⲛ", "", "", "", "alum"]) + let v = native_list_append(v, ["ⲟⲃⲉⲛ", "noun", "ⲟⲃⲉⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲃⲛⲉ", "noun", "ⲟⲃⲛⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲁⲃⲉⲛ", "noun", "ⲁⲃⲉⲛ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲧⲉⲃⲛⲏ", "noun", "ⲧⲃⲛⲱⲟⲩⲓ (tbnōoui)", "", "", "", "beast domestic animal"]) + let v = native_list_append(v, ["ⲧⲃⲛⲓ", "noun", "ⲧⲃⲛⲉⲩⲉ", "", "", "", "beast domestic animal"]) + let v = native_list_append(v, ["ⲃⲏⲛⲉ", "noun", "ⲃⲏⲛⲉ", "", "", "", "swallow"]) + let v = native_list_append(v, ["ⲃⲏⲛⲛⲉ", "noun", "ⲃⲏⲛⲛⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⳉⲓⲥⲉ", "noun", "ⳉⲓⲥⲉ", "", "", "", "labour weariness suffering"]) + let v = native_list_append(v, ["ϩⲓⲥⲉ", "noun", "ϩⲓⲥⲉ", "", "", "", "labour weariness suffering"]) + let v = native_list_append(v, ["ϧⲓⲥⲓ", "noun", "ϧⲓⲥⲓ", "", "", "", "labour weariness suffering"]) + let v = native_list_append(v, ["ϩⲓⲥⲓ", "noun", "ϩⲓⲥⲓ", "", "", "", "labour weariness suffering"]) + let v = native_list_append(v, ["ϩⲉⲙⲓ", "noun", "ϩⲉⲙⲓ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ϩⲉⲓⲙⲓ", "noun", "ϩⲉⲓⲙⲓ", "", "", "", "heat fever"]) + let v = native_list_append(v, ["ϣⲁ", "noun", "ϣⲁ", "", "", "", "nose"]) + let v = native_list_append(v, ["ⳉⲁⲁⲣⲉ", "noun", "ⳉⲁⲁⲣⲉ", "", "", "", "skin leather parchment?"]) + let v = native_list_append(v, ["ϣⲱϣ", "noun", "ϣⲱϣ", "", "", "", "equality sameness"]) + let v = native_list_append(v, ["ⳉⲱⳉ", "noun", "ⳉⲱⳉ", "", "", "", "equality sameness"]) + let v = native_list_append(v, ["ⲉⲓⲉϩⲉⲗⲟⲟⲗⲉ", "noun", "ⲉⲓⲉϩⲉⲗⲟⲟⲗⲉ", "", "", "", "vineyard"]) + let v = native_list_append(v, ["ϣⲟⲩϣⲟⲩ", "noun", "ϣⲟⲩϣⲟⲩ", "", "", "", "boast pride"]) + let v = native_list_append(v, ["ⲙⲛⲧⲃⲗⲗⲉ", "noun", "ⲙⲛⲧⲃⲗⲗⲉ", "", "", "", "blindness"]) + let v = native_list_append(v, ["ⲙⲉⲧⲃⲉⲗⲗⲉ", "noun", "ⲙⲉⲧⲃⲉⲗⲗⲉ", "", "", "", "blindness"]) + let v = native_list_append(v, ["ⲑⲙⲓⲥ", "noun", "ⲑⲙⲓⲥ", "", "", "", "dust"]) + let v = native_list_append(v, ["ⲟⲩⲟϩⲓ", "noun", "ⲟⲩⲟϩⲓ", "", "", "", "scorpion"]) + let v = native_list_append(v, ["ⳉⲁⲉ", "noun", "ⳉⲁⲉ", "", "", "", "festival"]) + let v = native_list_append(v, ["ⲁⲙϣⲉ", "noun", "ⲁⲙϣⲏⲟⲩⲓ", "", "", "", "carpenter"]) + let v = native_list_append(v, ["ϩⲁⲙϣⲓ", "noun", "ϩⲁⲙϣⲓ", "", "", "", "carpenter"]) + let v = native_list_append(v, ["ϩⲁⲙϣⲏ", "noun", "ϩⲁⲙϣⲏ", "", "", "", "carpenter"]) + let v = native_list_append(v, ["ϩⲁⲙⳉⲉ", "noun", "ϩⲁⲙⳉⲉ", "", "", "", "carpenter"]) + let v = native_list_append(v, ["ⲛⲉⲓ", "noun", "ⲛⲉⲓ", "", "", "", "time limit deadline"]) + let v = native_list_append(v, ["ⲗⲁⲧ", "noun", "ⲗⲁⲧ", "", "", "", "parsley"]) + let v = native_list_append(v, ["ⲙⲓⲧ", "noun", "ⲙⲓⲧ", "", "", "", "parsley celery"]) + let v = native_list_append(v, ["ⲉⲙⲓⲧ", "noun", "ⲉⲙⲓⲧ", "", "", "", "parsley celery"]) + let v = native_list_append(v, ["ϫⲛⲟϥ", "noun", "ϫⲛⲟϥ", "", "", "", "basket crate"]) + let v = native_list_append(v, ["ⲗⲁⲡⲧ", "noun", "ⲗⲁⲡⲧ", "", "", "", "turnip"]) + let v = native_list_append(v, ["ⲗⲁⲧⲡ", "noun", "ⲗⲁⲧⲡ", "", "", "", "turnip"]) + let v = native_list_append(v, ["ⲗⲉⲃⲧ", "noun", "ⲗⲉⲃⲧ", "", "", "", "turnip"]) + let v = native_list_append(v, ["ⲉⲓⲃⲉ", "noun", "ⲉⲓⲃⲉ", "", "", "", "thirst"]) + let v = native_list_append(v, ["ⲓⲃⲓ", "noun", "ⲓⲃⲓ", "", "", "", "thirst"]) + let v = native_list_append(v, ["ⲡⲱϩⲥ", "noun", "ⲡⲱϩⲥ", "", "", "", "a bite"]) + let v = native_list_append(v, ["ⲡⲱⲥϩ", "noun", "ⲡⲱⲥϩ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲡⲉϣⲉ", "noun", "ⲡⲉϣⲉ", "", "", "", "division half"]) + let v = native_list_append(v, ["ⲫⲁϣⲓ", "noun", "ⲫⲁϣⲓ", "", "", "", "division half"]) + let v = native_list_append(v, ["ⲡⲁϣⲉ", "noun", "ⲡⲁϣⲉ", "", "", "", "division half"]) + let v = native_list_append(v, ["ⲡⲉϣⲓ", "noun", "ⲡⲉϣⲓ", "", "", "", "division half"]) + let v = native_list_append(v, ["ⲡⲏϣⲉ", "noun", "ⲡⲏϣⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲡⲓϣⲉ", "noun", "ⲡⲓϣⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲫⲱϣ", "noun", "ⲫⲱϣ", "", "", "", "division"]) + let v = native_list_append(v, ["ⲡⲱϣ", "noun", "ⲡⲱϣ", "", "", "", "division"]) + let v = native_list_append(v, ["ϣϭⲏⲛ", "noun", "ϣϭⲏⲛ", "", "", "", "garlic"]) + let v = native_list_append(v, ["ⳉϫⲁⲛ", "noun", "ⳉϫⲁⲛ", "", "", "", "garlic"]) + let v = native_list_append(v, ["ⲥⲕⲁⲣⲧⲱⲛ", "noun", "ⲥⲕⲁⲣⲧⲱⲛ", "", "", "", "garlic"]) + let v = native_list_append(v, ["ⲁⲓⲃⲉ", "noun", "ⲁⲓⲃⲉ", "", "", "", "mark stamp blemish"]) + let v = native_list_append(v, ["ⲱϥ", "noun", "ⲱϥ", "", "", "", "lettuce"]) + let v = native_list_append(v, ["ⲱⲃ", "noun", "ⲱⲃ", "", "", "", "lettuce"]) + let v = native_list_append(v, ["ⲟⲩϥ", "noun", "ⲟⲩϥ", "", "", "", "Sahidic form of"]) + let v = native_list_append(v, ["ⲕⲗⲁⲩⲕⲓⲟⲩ", "noun", "ⲕⲗⲁⲩⲕⲓⲟⲩ", "", "", "", "juice of the"]) + let v = native_list_append(v, ["ϩⲟⲙⲛ̅ⲧ", "noun", "ϩⲟⲙⲛ̅ⲧ", "", "", "", "copper or bronze"]) + let v = native_list_append(v, ["ϩⲉⲃⲇⲟⲙⲁⲥ", "noun", "ϩⲉⲃⲇⲟⲙⲁⲥ", "", "", "", "week 7 days"]) + let v = native_list_append(v, ["ϩⲟⲉⲓⲧⲉ", "noun", "ϩⲟⲉⲓⲧⲉ", "", "", "", "clothing garment"]) + let v = native_list_append(v, ["ϣⲧⲏⲛ", "noun", "ϣⲧⲏⲛ", "", "", "", "garment tunic"]) + let v = native_list_append(v, ["ⲁⲛⲧⲓⲭⲣⲓⲥⲧⲟⲥ", "noun", "ⲁⲛⲧⲓⲭⲣⲓⲥⲧⲟⲥ", "", "", "", "antichrist"]) + let v = native_list_append(v, ["ⲛⲧⲏϭ", "noun", "ⲛⲧⲏϭ", "", "", "", "plant weed herb"]) + let v = native_list_append(v, ["ⲉⲛⲧⲏϭ", "noun", "ⲉⲛⲧⲏϭ", "", "", "", "plant weed herb"]) + let v = native_list_append(v, ["ⲉⲛⲧⲏϫ", "noun", "ⲉⲛⲧⲏϫ", "", "", "", "plant weed herb"]) + let v = native_list_append(v, ["ⲛⲧⲏϫ", "noun", "ⲛⲧⲏϫ", "", "", "", "plant weed herb"]) + let v = native_list_append(v, ["ⲕⲟⲙⲏⲥ", "noun", "ⲕⲟⲙⲏⲥ", "", "", "", "count earl"]) + let v = native_list_append(v, ["ⲥⲛⲁⲩϩ", "noun", "ⲥⲛⲁⲩϩ", "", "", "", ""]) + let v = native_list_append(v, ["ⲧⲁⲕⲟ", "noun", "ⲧⲁⲕⲟ", "", "", "", "destruction perdition."]) + let v = native_list_append(v, ["ⲁⲣⲓⲕⲉ", "noun", "ⲁⲣⲓⲕⲉ", "", "", "", "blame fault."]) + let v = native_list_append(v, ["ⲓⲇⲱⲗⲟⲛ", "noun", "ⲓⲇⲱⲗⲟⲛ", "", "", "", "idol image or"]) + let v = native_list_append(v, ["ⲩⲥ", "noun", "ⲩⲥ", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["ⲉⲣⲏⲩ", "noun", "ⲉⲣⲏⲩ", "", "", "", "plural of ⲏⲣ"]) + let v = native_list_append(v, ["ⲡⲁⲣⲣⲏⲥⲓⲁ", "noun", "ⲡⲁⲣⲣⲏⲥⲓⲁ", "", "", "", "openness frankness boldness"]) + let v = native_list_append(v, ["ϣⲙⲙⲟ", "noun", "ϣⲙⲙⲟ", "", "", "", "stranger."]) + let v = native_list_append(v, ["ⲥⲛⲏⲩ", "noun", "ⲥⲛⲏⲩ", "", "", "", "brothers brethren."]) + let v = native_list_append(v, ["ⲧⲱⲟⲩⲛ", "noun", "ⲧⲱⲟⲩⲛ", "", "", "", "rising resurrection"]) + let v = native_list_append(v, ["ⲕⲗⲟⲙ", "noun", "ⲕⲗⲟⲙ", "", "", "", "crown wreath."]) + let v = native_list_append(v, ["ⲕⲟⲩⲓ", "noun", "ⲕⲟⲩⲓ", "", "", "", "small person young"]) + let v = native_list_append(v, ["ⲥⲟⲡ", "noun", "ⲥⲟⲡ", "", "", "", "occasion time."]) + let v = native_list_append(v, ["ⲧⲱϣ", "noun", "(A) ⲧⲱⲱϣ", "", "", "", "ordinance."]) + let v = native_list_append(v, ["ⲟⲩⲛⲟϥ", "noun", "ⲟⲩⲛⲟϥ", "", "", "", "joy gladness"]) + let v = native_list_append(v, ["ⲣⲁϣⲉ", "noun", "ⲣⲁϣⲉ", "", "", "", "joy gladness."]) + let v = native_list_append(v, ["ⲡⲉⲧⲟⲩⲁⲁⲃ", "noun", "ⲛⲉⲧⲟⲩⲁⲁⲃ", "", "", "", "saint pure holy"]) + let v = native_list_append(v, ["ϭⲗⲏⲃ", "noun", "ϭⲗⲏⲃ", "", "", "", "muzzle"]) + let v = native_list_append(v, ["ⲁϥ ⲛⲉⲃⲓⲱ", "noun", "ⲁϥ ⲛⲉⲃⲓⲱ", "", "", "", "bee"]) + let v = native_list_append(v, ["ⲥⲓⲟⲟⲩⲧ", "noun", "ⲥⲓⲟⲟⲩⲧ", "", "", "", "Asyut a city"]) + let v = native_list_append(v, ["ⲉⲗϫⲱⲃ", "noun", "ⲉⲗϫⲱⲃ", "", "", "", "heron"]) + let v = native_list_append(v, ["ⲉⲗϭⲱⲃ", "noun", "ⲉⲗϭⲱⲃ", "", "", "", "heron"]) + let v = native_list_append(v, ["ⲙⲟⲛⲙⲉⲛ", "noun", "ⲙⲟⲛⲙⲉⲛ", "", "", "", "earthquake tempest"]) + let v = native_list_append(v, ["ⲡⲛⲉⲩⲙⲁ", "noun", "ⲡⲛⲉⲩⲙⲁ", "", "", "", "spirit"]) + let v = native_list_append(v, ["ⲁⲙⲏϣ", "noun", "ⲁⲙⲏϣ", "", "", "", "anvil"]) + let v = native_list_append(v, ["ⲉⲙⲏϣ", "noun", "ⲉⲙⲏϣ", "", "", "", "anvil"]) + let v = native_list_append(v, ["ⲥⲁϫⲓ", "verb", "ϯⲥⲁϫⲓ", "ⲛⲁⲓⲥⲁϫⲓ", "", "", "to speak"]) + let v = native_list_append(v, ["ϫⲓⲙⲓ", "verb", "ϯϫⲓⲙⲓ", "ⲛⲁⲓϫⲓⲙⲓ", "", "", "find"]) + let v = native_list_append(v, ["ⲧⲱⲃⲉ", "verb", "ϯⲧⲱⲃⲉ", "ⲛⲉⲓ̈ⲧⲱⲃⲉ", "", "", "to repay requite"]) + let v = native_list_append(v, ["ⲧⲟⲟⲩ", "verb", "ϯⲧⲟⲟⲩ", "ⲛⲉⲓ̈ⲧⲟⲟⲩ", "", "", "to buy"]) + let v = native_list_append(v, ["ϣⲗⲏⲗ", "verb", "ϯϣⲗⲏⲗ", "ⲛⲁⲓϣⲗⲏⲗ", "", "", "pray"]) + let v = native_list_append(v, ["ϣⲱⲡⲓ", "verb", "ϯϣⲱⲡⲓ", "ⲛⲁⲓϣⲱⲡⲓ", "", "", "to become befall"]) + let v = native_list_append(v, ["ϣⲱⲡⲉ", "verb", "ϯϣⲱⲡⲉ", "ⲛⲉⲓ̈ϣⲱⲡⲉ", "", "", "to become"]) + let v = native_list_append(v, ["ϫⲱ", "verb", "ϯϫⲱ", "ⲛⲁⲓϫⲱ", "", "", "to say speak"]) + let v = native_list_append(v, ["ⲓ", "verb", "ϯⲓ", "ⲛⲁⲓⲓ", "", "", "to come"]) + let v = native_list_append(v, ["ϩⲱⲧⲃ", "verb", "ϯϩⲱⲧⲃ", "ⲛⲉⲓ̈ϩⲱⲧⲃ", "", "", "to kill"]) + let v = native_list_append(v, ["ϭⲓⲛⲉ", "verb", "ϯϭⲓⲛⲉ", "ⲛⲉⲓ̈ϭⲓⲛⲉ", "", "", "find"]) + let v = native_list_append(v, ["ⲟⲩⲱⲙ", "verb", "ϯⲟⲩⲱⲙ", "ⲛⲁⲓ̈ⲟⲩⲱⲙ", "", "", "to eat"]) + let v = native_list_append(v, ["ⲃⲁⲡⲧⲓⲍⲉ", "verb", "baptize", "", "", "", "to baptize"]) + let v = native_list_append(v, ["ⲕⲏⲣⲩⲥⲥⲉ", "verb", "kērusse", "", "", "", "to preach to"]) + let v = native_list_append(v, ["ⲕⲱ ⲉⲃⲟⲗ", "verb", "ϯⲕⲱ ⲉⲃⲟⲗ", "ⲛⲁⲓⲕⲱ ⲉⲃⲟⲗ", "", "", "to dismiss"]) + let v = native_list_append(v, ["ⲱⲛϩ", "verb", "ϯⲱⲛϩ", "ⲛⲁⲓⲱⲛϩ", "", "", "to live"]) + let v = native_list_append(v, ["ⲙⲉ", "verb", "ϯⲙⲉ", "ⲛⲉⲓ̈ⲙⲉ", "", "", "to love"]) + let v = native_list_append(v, ["ⲙⲉⲓ", "verb", "ϯⲙⲉⲓ", "ⲛⲁⲓⲙⲉⲓ", "", "", "to love"]) + let v = native_list_append(v, ["ⲙⲉⲓⲉ", "verb", "meie", "ⲙⲣⲣⲉ-", "ⲙⲣⲣⲓⲧ⸗", "", "to love"]) + let v = native_list_append(v, ["ϩⲱⲃ", "verb", "ϯϩⲱⲃ", "ⲛⲁⲓϩⲱⲃ", "", "", "to send"]) + let v = native_list_append(v, ["ϩⲟⲟⲩ", "verb", "ϯϩⲟⲟⲩ", "ⲛⲉⲓ̈ϩⲟⲟⲩ", "", "", "to be evil"]) + let v = native_list_append(v, ["ϣⲁϫⲉ", "verb", "ϯϣⲁϫⲉ", "ⲛⲉⲓ̈ϣⲁϫⲉ", "", "", "to speak"]) + let v = native_list_append(v, ["ⲉⲓϣⲉ", "verb", "ϯⲉⲓϣⲉ", "ⲛⲉⲓ̈ⲉⲓϣⲉ", "", "", "to hang"]) + let v = native_list_append(v, ["ⲁϣⲉ", "verb", "aše", "", "", "", "to hang"]) + let v = native_list_append(v, ["ϩⲱⲣ", "verb", "ϯϩⲱⲣ", "ⲛⲁⲓ̈ϩⲱⲣ", "", "", "to milk"]) + let v = native_list_append(v, ["ϫⲓⲟⲩⲉ", "verb", "ϯϫⲓⲟⲩⲉ", "ⲛⲉⲓ̈ϫⲓⲟⲩⲉ", "", "", "to steal"]) + let v = native_list_append(v, ["ϭⲓⲟⲩⲓ", "verb", "ϯϭⲓⲟⲩⲓ", "ⲛⲁⲓϭⲓⲟⲩⲓ", "", "", "to steal"]) + let v = native_list_append(v, ["ⲃⲁⲥⲁⲛⲓⲍⲉ", "verb", "ϯⲃⲁⲥⲁⲛⲓⲍⲉ", "ⲛⲉⲓ̈ⲃⲁⲥⲁⲛⲓⲍⲉ", "", "", "to torture"]) + let v = native_list_append(v, ["ⲁⲛⲁⲭⲱⲣⲉⲓ", "verb", "anakhōrei", "", "", "", "to live as"]) + let v = native_list_append(v, ["ⲡⲁⲣⲁⲇⲓⲇⲟⲩ", "verb", "paradidou", "", "", "", "transitive to hand"]) + let v = native_list_append(v, ["ⲡⲓⲥⲧⲉⲩⲉ", "verb", "pisteue", "", "", "", "transitive intransitive to"]) + let v = native_list_append(v, ["ⲫⲟⲣⲉⲓ", "verb", "ϯⲫⲟⲣⲉⲓ", "ⲛⲉⲓ̈ⲫⲟⲣⲉⲓ", "", "", "to wear"]) + let v = native_list_append(v, ["ⲕⲱ", "verb", "ϯⲕⲱ", "ⲛⲉⲓ̈ⲕⲱ", "", "", "to put to"]) + let v = native_list_append(v, ["ⲟⲩⲱⲧⲉⲃ", "verb", "ϯⲟⲩⲱⲧⲉⲃ", "ⲛⲁⲓⲟⲩⲱⲧⲉⲃ", "", "", "to change be"]) + let v = native_list_append(v, ["ϯ", "verb", "ϯϯ", "ⲛⲁⲓ̈ϯ", "", "", "to give"]) + let v = native_list_append(v, ["ⲙⲉⳋⲏⲗ", "verb", "meçēl", "", "", "", "to cure"]) + let v = native_list_append(v, ["ⲱϣ", "verb", "ϯⲱϣ", "ⲛⲁⲓ̈ⲱϣ", "", "", "to announce to"]) + let v = native_list_append(v, ["ⲱⲛϧ", "verb", "ϯⲱⲛϧ", "ⲛⲁⲓⲱⲛϧ", "", "", "to live"]) + let v = native_list_append(v, ["ⲟⲩⲱϣ", "verb", "ϯⲟⲩⲱϣ", "ⲛⲁⲓⲟⲩⲱϣ", "", "", "to want to"]) + let v = native_list_append(v, ["ⲱⲟⲩ", "verb", "ōou", "", "", "", "to be long"]) + let v = native_list_append(v, ["ⲙⲉⲧⲙⲉⲑⲣⲉ", "verb", "ϯⲙⲉⲧⲙⲉⲑⲣⲉ", "ⲛⲁⲓⲙⲉⲧⲙⲉⲑⲣⲉ", "", "", "to testify"]) + let v = native_list_append(v, ["ⲛⲁⲓ", "verb", "ϯⲛⲁⲓ", "ⲛⲁⲓⲛⲁⲓ", "", "", "to have pity"]) + let v = native_list_append(v, ["ϣⲁⲓ", "verb", "ϯϣⲁⲓ", "ⲛⲁⲓϣⲁⲓ", "", "", "to rise of"]) + let v = native_list_append(v, ["ⲧⲟⲩⲃⲟ", "verb", "ϯⲧⲟⲩⲃⲟ", "ⲛⲁⲓⲧⲟⲩⲃⲟ", "", "", "to be pure"]) + let v = native_list_append(v, ["ⲥⲑⲟⲓ", "verb", "ϯⲥⲑⲟⲓ", "ⲛⲁⲓⲥⲑⲟⲓ", "", "", "to smell"]) + let v = native_list_append(v, ["ⲥⲉⲃⲓ", "verb", "ϯⲥⲉⲃⲓ", "ⲛⲁⲓⲥⲉⲃⲓ", "", "", "to circumcise"]) + let v = native_list_append(v, ["ⲕⲱⲥ", "verb", "ϯⲕⲱⲥ", "ⲛⲁⲓⲕⲱⲥ", "", "", "to bury"]) + let v = native_list_append(v, ["ⲣⲁϣⲓ", "verb", "ϯⲣⲁϣⲓ", "ⲛⲁⲓⲣⲁϣⲓ", "", "", "to rejoice"]) + let v = native_list_append(v, ["ϩⲟϫϩⲉϫ", "verb", "ϯϩⲟϫϩⲉϫ", "ⲛⲁⲓϩⲟϫϩⲉϫ", "", "", "to compel to"]) + let v = native_list_append(v, ["ⲛⲁϩϯ", "verb", "ϯⲛⲁϩϯ", "ⲛⲁⲓⲛⲁϩϯ", "", "", "to believe"]) + let v = native_list_append(v, ["ⲥϧⲁⲓ", "verb", "ϯⲥϧⲁⲓ", "ⲛⲁⲓⲥϧⲁⲓ", "", "", "to write"]) + let v = native_list_append(v, ["ⲥⲱ", "verb", "ϯⲥⲱ", "ⲛⲁⲓⲥⲱ", "", "", "to drink"]) + let v = native_list_append(v, ["ⲙⲉⲛⲣⲉ-", "verb", "ϯⲙⲉⲛⲣⲉ-", "ⲛⲁⲓⲙⲉⲛⲣⲉ-", "", "", "nominal state of"]) + let v = native_list_append(v, ["ⲙⲟⲥϯ", "verb", "ϯⲙⲟⲥϯ", "ⲛⲁⲓⲙⲟⲥϯ", "", "", "to hate"]) + let v = native_list_append(v, ["ϭⲓ", "verb", "ϯϭⲓ", "ⲛⲁⲓϭⲓ", "", "", "to receive take"]) + let v = native_list_append(v, ["ϩⲉⲙⲥⲓ", "verb", "ϯϩⲉⲙⲥⲓ", "ⲛⲁⲓϩⲉⲙⲥⲓ", "", "", "to sit"]) + let v = native_list_append(v, ["ⲛⲁⲩ", "verb", "ϯⲛⲁⲩ", "ⲛⲁⲓⲛⲁⲩ", "", "", "to look at"]) + let v = native_list_append(v, ["ϣⲁⲣⲓ", "verb", "ϯϣⲁⲣⲓ", "ⲛⲁⲓϣⲁⲣⲓ", "", "", "to hit to"]) + let v = native_list_append(v, ["ⲁⲣⲉϩ", "verb", "ϯⲁⲣⲉϩ", "ⲛⲁⲓⲁⲣⲉϩ", "", "", "to keep to"]) + let v = native_list_append(v, ["ⲥⲱⲧⲉⲙ", "verb", "ϯⲥⲱⲧⲉⲙ", "ⲛⲁⲓⲥⲱⲧⲉⲙ", "", "", "to hear"]) + let v = native_list_append(v, ["ⲕⲁϯ", "verb", "ϯⲕⲁϯ", "ⲛⲁⲓⲕⲁϯ", "", "", "to understand"]) + let v = native_list_append(v, ["ⲉⲛⲕⲟⲧ", "verb", "ϯⲉⲛⲕⲟⲧ", "ⲛⲁⲓⲉⲛⲕⲟⲧ", "", "", "to sleep"]) + let v = native_list_append(v, ["ⲛⲉϩⲥⲓ", "verb", "ϯⲛⲉϩⲥⲓ", "ⲛⲁⲓⲛⲉϩⲥⲓ", "", "", "to awaken"]) + let v = native_list_append(v, ["ⲙⲟϣⲓ", "verb", "ϯⲙⲟϣⲓ", "ⲛⲁⲓⲙⲟϣⲓ", "", "", "to walk"]) + let v = native_list_append(v, ["ⲙⲟⲩ", "verb", "ϯⲙⲟⲩ", "ⲛⲁⲓⲙⲟⲩ", "", "", "to die."]) + let v = native_list_append(v, ["ⲓ ⲉⲃⲟⲗ", "verb", "ϯⲓ ⲉⲃⲟⲗ", "ⲛⲁⲓⲓ ⲉⲃⲟⲗ", "", "", "to come out"]) + let v = native_list_append(v, ["ⲓ ⲉϧⲟⲩⲛ", "verb", "ϯⲓ ⲉϧⲟⲩⲛ", "ⲛⲁⲓⲓ ⲉϧⲟⲩⲛ", "", "", "to come in"]) + let v = native_list_append(v, ["ϫⲉⲣϫⲉⲣ", "verb", "ϯϫⲉⲣϫⲉⲣ", "ⲛⲁⲓϫⲉⲣϫⲉⲣ", "", "", "to play to"]) + let v = native_list_append(v, ["ϭⲓⲥⲃⲱ", "verb", "ϯϭⲓⲥⲃⲱ", "ⲛⲁⲓϭⲓⲥⲃⲱ", "", "", "to learn"]) + let v = native_list_append(v, ["ϯⲥⲃⲱ", "verb", "ϯϯⲥⲃⲱ", "ⲛⲁⲓϯⲥⲃⲱ", "", "", "to teach"]) + let v = native_list_append(v, ["ϣⲓⲛⲓ", "verb", "ϯϣⲓⲛⲓ", "ⲛⲁⲓϣⲓⲛⲓ", "", "", "to ask"]) + let v = native_list_append(v, ["ⲭⲱ", "verb", "ϯⲭⲱ", "ⲛⲁⲓⲭⲱ", "", "", "to put to"]) + let v = native_list_append(v, ["ⲥⲓ", "verb", "ϯⲥⲓ", "ⲛⲁⲓⲥⲓ", "", "", "to be full"]) + let v = native_list_append(v, ["ϣⲱⲡ", "verb", "ϯϣⲱⲡ", "ⲛⲁⲓϣⲱⲡ", "", "", "to receive to"]) + let v = native_list_append(v, ["ⲟⲩⲱⲛ", "verb", "ϯⲟⲩⲱⲛ", "ⲛⲁⲓⲟⲩⲱⲛ", "", "", "to open"]) + let v = native_list_append(v, ["ⲟⲩⲱⲛϩ", "verb", "ϯⲟⲩⲱⲛϩ", "ⲛⲁⲓⲟⲩⲱⲛϩ", "", "", "to appear"]) + let v = native_list_append(v, ["ⲟⲩⲱⲣⲡ", "verb", "ϯⲟⲩⲱⲣⲡ", "ⲛⲁⲓⲟⲩⲱⲣⲡ", "", "", "to send"]) + let v = native_list_append(v, ["ⲥⲱⲟⲩⲛ", "verb", "ϯⲥⲱⲟⲩⲛ", "ⲛⲁⲓⲥⲱⲟⲩⲛ", "", "", "to know"]) + let v = native_list_append(v, ["ϣⲱⲛⲓ", "verb", "ϯϣⲱⲛⲓ", "ⲛⲁⲓϣⲱⲛⲓ", "", "", "to become ill"]) + let v = native_list_append(v, ["ⲓⲣⲓ", "verb", "ϯⲓⲣⲓ", "ⲛⲁⲓⲓⲣⲓ", "", "", "to make"]) + let v = native_list_append(v, ["ⲓⲛⲓ", "verb", "ϯⲓⲛⲓ", "ⲛⲁⲓⲓⲛⲓ", "", "", "to bring"]) + let v = native_list_append(v, ["ϥⲁⲓ", "verb", "ϯϥⲁⲓ", "ⲛⲁⲓϥⲁⲓ", "", "", "to carry"]) + let v = native_list_append(v, ["ⲱⲡ", "verb", "ϯⲱⲡ", "ⲛⲁⲓ̈ⲱⲡ", "", "", "to count esteem"]) + let v = native_list_append(v, ["ϩⲱⲥ", "verb", "ϯϩⲱⲥ", "ⲛⲁⲓϩⲱⲥ", "", "", "to sing"]) + let v = native_list_append(v, ["ϭⲓⲥⲓ", "verb", "ϯϭⲓⲥⲓ", "ⲛⲁⲓϭⲓⲥⲓ", "", "", "to lift"]) + let v = native_list_append(v, ["ϯⲡⲓ", "verb", "ϯϯⲡⲓ", "ⲛⲁⲓϯⲡⲓ", "", "", "to taste"]) + let v = native_list_append(v, ["ϯϩⲟ", "verb", "ϯϯϩⲟ", "ⲛⲁⲓϯϩⲟ", "", "", "to ask"]) + let v = native_list_append(v, ["ϣⲑⲁⲙ", "verb", "ϯϣⲑⲁⲙ", "ⲛⲁⲓϣⲑⲁⲙ", "", "", "to close"]) + let v = native_list_append(v, ["ⲥⲓϯ", "verb", "ϯⲥⲓϯ", "ⲛⲁⲓⲥⲓϯ", "", "", "to throw to"]) + let v = native_list_append(v, ["ⲫⲓⲥⲓ", "verb", "ϯⲫⲓⲥⲓ", "ⲛⲁⲓⲫⲓⲥⲓ", "", "", "to cook"]) + let v = native_list_append(v, ["ⲙⲱⲟⲩⲧ", "verb", "mōout", "", "", "", "stative state of"]) + let v = native_list_append(v, ["ⲙⲟⲩϯ", "verb", "ϯⲙⲟⲩϯ", "ⲛⲁⲓⲙⲟⲩϯ", "", "", "to call"]) + let v = native_list_append(v, ["ⲉⲣⲣⲱⲙⲓ", "verb", "ϯⲉⲣⲣⲱⲙⲓ", "ⲛⲁⲓⲉⲣⲣⲱⲙⲓ", "", "", "to become a"]) + let v = native_list_append(v, ["ⲉⲣⲟⲩⲱⲓⲛⲓ", "verb", "ϯⲉⲣⲟⲩⲱⲓⲛⲓ", "ⲛⲁⲓⲉⲣⲟⲩⲱⲓⲛⲓ", "", "", "to shine"]) + let v = native_list_append(v, ["ⲉⲣϩⲟϯ", "verb", "ϯⲉⲣϩⲟϯ", "ⲛⲁⲓⲉⲣϩⲟϯ", "", "", "to fear"]) + let v = native_list_append(v, ["ⲉⲣⲫⲙⲉⲩⲓ", "verb", "ϯⲉⲣⲫⲙⲉⲩⲓ", "ⲛⲁⲓⲉⲣⲫⲙⲉⲩⲓ", "", "", "to remember"]) + let v = native_list_append(v, ["ⲉⲣⲛⲟⲃⲓ", "verb", "ϯⲉⲣⲛⲟⲃⲓ", "ⲛⲁⲓⲉⲣⲛⲟⲃⲓ", "", "", "to sin"]) + let v = native_list_append(v, ["ⲉⲣϩⲏⲧⲥ", "verb", "ϯⲉⲣϩⲏⲧⲥ", "ⲛⲁⲓⲉⲣϩⲏⲧⲥ", "", "", "to begin"]) + let v = native_list_append(v, ["ⲧⲁⲙⲟ", "verb", "ϯⲧⲁⲙⲟ", "ⲛⲁⲓⲧⲁⲙⲟ", "", "", "to show"]) + let v = native_list_append(v, ["ⲧⲁⲓⲟ", "verb", "ϯⲧⲁⲓⲟ", "ⲛⲁⲓⲧⲁⲓⲟ", "", "", "to honor"]) + let v = native_list_append(v, ["ϯⲁⲗϭⲟ", "verb", "ϯϯⲁⲗϭⲟ", "ⲛⲁⲓϯⲁⲗϭⲟ", "", "", "to heal to"]) + let v = native_list_append(v, ["ⲉⲣⲫⲁϧⲣⲓ", "verb", "ϯⲉⲣⲫⲁϧⲣⲓ", "ⲛⲁⲓⲉⲣⲫⲁϧⲣⲓ", "", "", "to heal to"]) + let v = native_list_append(v, ["ⲉⲣⲡⲉⲙⲡϣⲁ", "verb", "ϯⲉⲣⲡⲉⲙⲡϣⲁ", "ⲛⲁⲓⲉⲣⲡⲉⲙⲡϣⲁ", "", "", "to deserve"]) + let v = native_list_append(v, ["ⲉⲣϩⲟⲩⲟ", "verb", "ϯⲉⲣϩⲟⲩⲟ", "ⲛⲁⲓⲉⲣϩⲟⲩⲟ", "", "", "to increase"]) + let v = native_list_append(v, ["ⲉⲣϩⲙⲟⲧ", "verb", "ϯⲉⲣϩⲙⲟⲧ", "ⲛⲁⲓⲉⲣϩⲙⲟⲧ", "", "", "to give grace"]) + let v = native_list_append(v, ["ⲉⲣⲯⲁⲗⲓⲛ", "verb", "ϯⲉⲣⲯⲁⲗⲓⲛ", "ⲛⲁⲓⲉⲣⲯⲁⲗⲓⲛ", "", "", "to sing psalms"]) + let v = native_list_append(v, ["ϣⲉⲡ-", "verb", "ϯϣⲉⲡ-", "ⲛⲁⲓϣⲉⲡ-", "", "", "nominal state of"]) + let v = native_list_append(v, ["ϫⲉⲙϫⲟⲙ", "verb", "ϯϫⲉⲙϫⲟⲙ", "ⲛⲁⲓϫⲉⲙϫⲟⲙ", "", "", "to find strength"]) + let v = native_list_append(v, ["ϫⲉⲙⲛⲟⲙϯ", "verb", "ϯϫⲉⲙⲛⲟⲙϯ", "ⲛⲁⲓϫⲉⲙⲛⲟⲙϯ", "", "", "to find comfort"]) + let v = native_list_append(v, ["ϫⲉⲙϩⲏⲟⲩ", "verb", "ϯϫⲉⲙϩⲏⲟⲩ", "ⲛⲁⲓϫⲉⲙϩⲏⲟⲩ", "", "", "to find use"]) + let v = native_list_append(v, ["ϣⲉⲡϩⲙⲟⲧ", "verb", "ϯϣⲉⲡϩⲙⲟⲧ", "ⲛⲁⲓϣⲉⲡϩⲙⲟⲧ", "", "", "to receive grace"]) + let v = native_list_append(v, ["ϣⲉⲡⲙⲕⲁϩ", "verb", "ϯϣⲉⲡⲙⲕⲁϩ", "ⲛⲁⲓϣⲉⲡⲙⲕⲁϩ", "", "", "to receive pain"]) + let v = native_list_append(v, ["ϣⲉⲡϧⲓⲥⲓ", "verb", "ϯϣⲉⲡϧⲓⲥⲓ", "ⲛⲁⲓϣⲉⲡϧⲓⲥⲓ", "", "", "to tolerate"]) + let v = native_list_append(v, ["ϯⲱⲟⲩ", "verb", "ϯϯⲱⲟⲩ", "ⲛⲁⲓϯⲱⲟⲩ", "", "", "to glorify"]) + let v = native_list_append(v, ["ϯϫⲟⲙ", "verb", "ϯϯϫⲟⲙ", "ⲛⲁⲓϯϫⲟⲙ", "", "", "to strengthen"]) + let v = native_list_append(v, ["ϯⲕⲁϯ", "verb", "ϯϯⲕⲁϯ", "ⲛⲁⲓϯⲕⲁϯ", "", "", "to explain to"]) + let v = native_list_append(v, ["ϭⲓⲥⲙⲟⲩ", "verb", "ϯϭⲓⲥⲙⲟⲩ", "ⲛⲁⲓϭⲓⲥⲙⲟⲩ", "", "", "to take a"]) + let v = native_list_append(v, ["ϭⲓⲱⲟⲩ", "verb", "ϯϭⲓⲱⲟⲩ", "ⲛⲁⲓϭⲓⲱⲟⲩ", "", "", "to take glorification"]) + let v = native_list_append(v, ["ϭⲓϫⲟⲙ", "verb", "ϯϭⲓϫⲟⲙ", "ⲛⲁⲓϭⲓϫⲟⲙ", "", "", "to be strengthened."]) + let v = native_list_append(v, ["ⲉⲙⲓ", "verb", "ϯⲉⲙⲓ", "ⲛⲁⲓⲉⲙⲓ", "", "", "to know to"]) + let v = native_list_append(v, ["ϫⲟⲩϣⲧ", "verb", "ϯϫⲟⲩϣⲧ", "ⲛⲁⲓϫⲟⲩϣⲧ", "", "", "to look"]) + let v = native_list_append(v, ["ⲧⲉ", "verb", "te", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲩⲁϩⲟⲩ", "verb", "ϯⲟⲩⲁϩⲟⲩ", "ⲛⲁⲓⲟⲩⲁϩⲟⲩ", "", "", "to add"]) + let v = native_list_append(v, ["ϯϫⲓⲙⲓ", "verb", "tijimi", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ⲕϫⲓⲙⲓ", "verb", "kjimi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ϯϩⲁⲡ", "verb", "ϯϯϩⲁⲡ", "ⲛⲁⲓϯϩⲁⲡ", "", "", "to judge"]) + let v = native_list_append(v, ["ⲉⲣⲧⲓⲙⲁⲛ", "verb", "ϯⲉⲣⲧⲓⲙⲁⲛ", "ⲛⲁⲓⲉⲣⲧⲓⲙⲁⲛ", "", "", "to honor"]) + let v = native_list_append(v, ["ⲉⲣⲙⲁⲥⲧⲓⲅⲅⲟⲓⲛ", "verb", "ϯⲉⲣⲙⲁⲥⲧⲓⲅⲅⲟⲓⲛ", "ⲛⲁⲓⲉⲣⲙⲁⲥⲧⲓⲅⲅⲟⲓⲛ", "", "", "to scourge"]) + let v = native_list_append(v, ["ⲉⲣⲫⲟⲣⲓⲛ", "verb", "ϯⲉⲣⲫⲟⲣⲓⲛ", "ⲛⲁⲓⲉⲣⲫⲟⲣⲓⲛ", "", "", "to wear"]) + let v = native_list_append(v, ["ⲁⲓⲧⲟⲩ", "verb", "ϯⲁⲓⲧⲟⲩ", "ⲛⲁⲓⲁⲓⲧⲟⲩ", "", "", "to take"]) + let v = native_list_append(v, ["ϯⲱⲙⲥ", "verb", "ϯϯⲱⲙⲥ", "ⲛⲁⲓϯⲱⲙⲥ", "", "", "to baptize"]) + let v = native_list_append(v, ["ⲛⲕⲟⲧⲕ", "verb", "ϯⲛⲕⲟⲧⲕ", "ⲛⲉⲓ̈ⲛⲕⲟⲧⲕ", "", "", "to sleep"]) + let v = native_list_append(v, ["ϩⲱⲗ", "verb", "ϯϩⲱⲗ", "ⲛⲁⲓ̈ϩⲱⲗ", "", "", "to fly"]) + let v = native_list_append(v, ["ⲉⲓⲣⲉ", "verb", "ϯⲉⲓⲣⲉ", "ⲛⲁⲓ̈ⲉⲓⲣⲉ", "", "", "to make"]) + let v = native_list_append(v, ["ⲓⲗⲓ", "verb", "ϯⲓⲗⲓ", "ⲛⲁⲓⲓⲗⲓ", "", "", "to make"]) + let v = native_list_append(v, ["ϭⲟⲥϫⲉⲥ", "verb", "ϯϭⲟⲥϫⲉⲥ", "ⲛⲁⲓϭⲟⲥϫⲉⲥ", "", "", "to dance"]) + let v = native_list_append(v, ["ϫⲱⲕ", "verb", "ϯϫⲱⲕ", "ⲛⲁⲓϫⲱⲕ", "", "", "to finish to"]) + let v = native_list_append(v, ["ϫⲱⲣ", "verb", "ϯϫⲱⲣ", "ⲛⲁⲓϫⲱⲣ", "", "", "to scatter"]) + let v = native_list_append(v, ["ⲱⲗⲓ", "verb", "ϯⲱⲗⲓ", "ⲛⲁⲓⲱⲗⲓ", "", "", "to lift"]) + let v = native_list_append(v, ["ⲙⲓⲥⲓ", "verb", "ϯⲙⲓⲥⲓ", "ⲛⲁⲓⲙⲓⲥⲓ", "", "", "to give birth"]) + let v = native_list_append(v, ["ⲭⲁ-", "verb", "ϯⲭⲁ-", "ⲛⲁⲓⲭⲁ-", "", "", "nominal state of"]) + let v = native_list_append(v, ["ⲥϧⲉ-", "verb", "ϯⲥϧⲉ-", "ⲛⲁⲓⲥϧⲉ-", "", "", "nominal state of"]) + let v = native_list_append(v, ["ⲁⲛⲧⲁϣ", "verb", "ϯⲁⲛⲧⲁϣ", "ⲛⲉⲓ̈ⲁⲛⲧⲁϣ", "", "", "to sneeze"]) + let v = native_list_append(v, ["ϩⲕⲟ", "verb", "ϯϩⲕⲟ", "ⲛⲁⲓ̈ϩⲕⲟ", "", "", "to be hungry"]) + let v = native_list_append(v, ["ⲁⲛⲑⲁϣ", "verb", "ϯⲁⲛⲑⲁϣ", "ⲛⲁⲓⲁⲛⲑⲁϣ", "", "", "to sneeze"]) + let v = native_list_append(v, ["ϧⲱⲧⲉⲃ", "verb", "ϯϧⲱⲧⲉⲃ", "ⲛⲁⲓϧⲱⲧⲉⲃ", "", "", "to kill"]) + let v = native_list_append(v, ["ⲭⲱ ⲉⲃⲟⲗ", "verb", "ϯⲭⲱ ⲉⲃⲟⲗ", "ⲛⲁⲓⲭⲱ ⲉⲃⲟⲗ", "", "", "to dismiss"]) + let v = native_list_append(v, ["ϫⲉⲙϯⲡⲓ", "verb", "ϯϫⲉⲙϯⲡⲓ", "ⲛⲁⲓϫⲉⲙϯⲡⲓ", "", "", "to taste"]) + let v = native_list_append(v, ["ⲉⲣ", "verb", "ϯⲉⲣ", "ⲛⲁⲓⲉⲣ", "", "", "to be to"]) + let v = native_list_append(v, ["ⲉⲣⲙⲉⲑⲣⲉ", "verb", "ϯⲉⲣⲙⲉⲑⲣⲉ", "ⲛⲁⲓⲉⲣⲙⲉⲑⲣⲉ", "", "", "to be a"]) + let v = native_list_append(v, ["ϣⲟⲡϥ", "verb", "ϯϣⲟⲡϥ", "ⲛⲁⲓϣⲟⲡϥ", "", "", "to receive"]) + let v = native_list_append(v, ["ⲉⲣϣⲏⲣⲓ", "verb", "ϯⲉⲣϣⲏⲣⲓ", "ⲛⲁⲓⲉⲣϣⲏⲣⲓ", "", "", "to be a"]) + let v = native_list_append(v, ["ⲉⲣⲟⲩⲥⲁⲣⲝ", "verb", "ϯⲉⲣⲟⲩⲥⲁⲣⲝ", "ⲛⲁⲓⲉⲣⲟⲩⲥⲁⲣⲝ", "", "", "to become flesh"]) + let v = native_list_append(v, ["ⲭⲏ", "verb", "ϯⲭⲏ", "ⲛⲁⲓⲭⲏ", "", "", "to be to"]) + let v = native_list_append(v, ["ⲕⲗⲉⲙⲗⲉⲙ", "verb", "ϯⲕⲗⲉⲙⲗⲉⲙ", "ⲛⲁⲓⲕⲗⲉⲙⲗⲉⲙ", "", "", "to grumble murmur"]) + let v = native_list_append(v, ["ϩⲟⲧⲉⲃ", "verb", "ϯϩⲟⲧⲉⲃ", "ⲛⲁⲓϩⲟⲧⲉⲃ", "", "", "to kill"]) + let v = native_list_append(v, ["ⲉⲛⲕⲁⲧⲕ", "verb", "ϯⲉⲛⲕⲁⲧⲕ", "ⲛⲁⲓⲉⲛⲕⲁⲧⲕ", "", "", "to sleep"]) + let v = native_list_append(v, ["ⲇⲟⲉⲓⲙ", "verb", "doeim", "", "", "", "to help"]) + let v = native_list_append(v, ["ϣⲧⲁⲗⲧⲉⲗ", "verb", "ϯϣⲧⲁⲗⲧⲉⲗ", "ⲛⲁⲓϣⲧⲁⲗⲧⲉⲗ", "", "", "to be disturbed"]) + let v = native_list_append(v, ["ⲕⲓⲙ", "verb", "ϯⲕⲓⲙ", "ⲛⲁⲓⲕⲓⲙ", "", "", "to move"]) + let v = native_list_append(v, ["ⲙⲟⲩⲛ", "verb", "ϯⲙⲟⲩⲛ", "ⲛⲁⲓⲙⲟⲩⲛ", "", "", "to rest"]) + let v = native_list_append(v, ["ϣⲉⲉⲓ", "verb", "ϯϣⲉⲉⲓ", "ⲛⲁⲓϣⲉⲉⲓ", "", "", "to rise"]) + let v = native_list_append(v, ["ⲧⲁⲕⲁ", "verb", "ϯⲧⲁⲕⲁ", "ⲛⲁⲓⲧⲁⲕⲁ", "", "", "to destroy"]) + let v = native_list_append(v, ["ϣⲉⲙϣⲓ", "verb", "ϯϣⲉⲙϣⲓ", "ⲛⲁⲓϣⲉⲙϣⲓ", "", "", "to worship"]) + let v = native_list_append(v, ["ϩⲱⲧⲉⲃ", "verb", "ϯϩⲱⲧⲉⲃ", "ⲛⲁⲓϩⲱⲧⲉⲃ", "", "", "to kill"]) + let v = native_list_append(v, ["ϣⲑⲉⲣⲧⲉⲣ-", "verb", "ϯϣⲑⲉⲣⲧⲉⲣ-", "ⲛⲁⲓϣⲑⲉⲣⲧⲉⲣ-", "", "", "nominal state of"]) + let v = native_list_append(v, ["ⲣⲓⲙⲉ", "verb", "rime", "ⲗⲓⲙⲓ", "ⲣⲓⲙⲓ", "", "to cry to"]) + let v = native_list_append(v, ["ϣⲑⲟⲣⲧⲉⲣ", "verb", "ϯϣⲑⲟⲣⲧⲉⲣ", "ⲛⲁⲓϣⲑⲟⲣⲧⲉⲣ", "", "", "to be disturbed"]) + let v = native_list_append(v, ["ⲗⲓⲙⲓ", "verb", "ϯⲗⲓⲙⲓ", "ⲛⲁⲓⲗⲓⲙⲓ", "", "", "to cry to"]) + let v = native_list_append(v, ["ⲣⲓⲙⲓ", "verb", "ϯⲣⲓⲙⲓ", "ⲛⲁⲓⲣⲓⲙⲓ", "", "", "to cry to"]) + let v = native_list_append(v, ["ⲥϧⲏⲟⲩⲧ", "verb", "sxēout", "", "", "", "stative state of"]) + let v = native_list_append(v, ["ϩⲱⲡ", "verb", "ϯϩⲱⲡ", "ⲛⲁⲓϩⲱⲡ", "", "", "to hide to"]) + let v = native_list_append(v, ["ⲫⲱⲧ", "verb", "ϯⲫⲱⲧ", "ⲛⲁⲓⲫⲱⲧ", "", "", "to flee"]) + let v = native_list_append(v, ["ⲟⲩϫⲁⲓ", "verb", "ϯⲟⲩϫⲁⲓ", "ⲛⲁⲓⲟⲩϫⲁⲓ", "", "", "to be healthy"]) + let v = native_list_append(v, ["ⲧⲱⲃⲓ", "verb", "tōbi", "ⲧⲱⲃ", "ⲧⲱⲱⲃⲉ", "", "to seal"]) + let v = native_list_append(v, ["ⲥⲟⲩⲕ", "verb", "ϯⲥⲟⲩⲕ", "ⲛⲁⲓⲥⲟⲩⲕ", "", "", "to gather to"]) + let v = native_list_append(v, ["ⲙⲗⲁϧ", "verb", "ϯⲙⲗⲁϧ", "ⲛⲁⲓⲙⲗⲁϧ", "", "", "to fight"]) + let v = native_list_append(v, ["ϩⲱⲧⲡ", "verb", "ϯϩⲱⲧⲡ", "ⲛⲁⲓϩⲱⲧⲡ", "", "", "to reconcile to"]) + let v = native_list_append(v, ["ⲓⲛⲓ ⲛⲟⲩϣⲟⲩϣⲱⲟⲩϣⲓ", "verb", "ϯⲓⲛⲓ ⲛⲟⲩϣⲟⲩϣⲱⲟⲩϣⲓ", "ⲛⲁⲓⲓⲛⲓ ⲛⲟⲩϣⲟⲩϣⲱⲟⲩϣⲓ", "", "", "to offer a"]) + let v = native_list_append(v, ["ⲱⲣⲕ", "verb", "ϯⲱⲣⲕ", "ⲛⲁⲓⲱⲣⲕ", "", "", "to swear"]) + let v = native_list_append(v, ["ϩⲓⲱⲓϣ", "verb", "ϯϩⲓⲱⲓϣ", "ⲛⲁⲓϩⲓⲱⲓϣ", "", "", "to preach"]) + let v = native_list_append(v, ["ⲧⲱⲃϩ", "verb", "ϯⲧⲱⲃϩ", "ⲛⲁⲓⲧⲱⲃϩ", "", "", "to pray"]) + let v = native_list_append(v, ["ⲙⲉⲩⲓ", "verb", "ϯⲙⲉⲩⲓ", "ⲛⲁⲓⲙⲉⲩⲓ", "", "", "to think"]) + let v = native_list_append(v, ["ϭⲓⲙⲱⲓⲧ", "verb", "ϯϭⲓⲙⲱⲓⲧ", "ⲛⲁⲓϭⲓⲙⲱⲓⲧ", "", "", "to guide"]) + let v = native_list_append(v, ["ϫⲱⲛⲧ", "verb", "ϯϫⲱⲛⲧ", "ⲛⲁⲓϫⲱⲛⲧ", "", "", "to threaten"]) + let v = native_list_append(v, ["ⲙⲉϩ", "verb", "ϯⲙⲉϩ", "ⲛⲁⲓⲙⲉϩ", "", "", "to breathe"]) + let v = native_list_append(v, ["ϭⲟϫⲓ", "verb", "ϯϭⲟϫⲓ", "ⲛⲁⲓϭⲟϫⲓ", "", "", "to persecute"]) + let v = native_list_append(v, ["ⲁⲙⲁϩⲓ", "verb", "ϯⲁⲙⲁϩⲓ", "ⲛⲁⲓⲁⲙⲁϩⲓ", "", "", "to lead"]) + let v = native_list_append(v, ["ⲕⲱϯ", "verb", "ϯⲕⲱϯ", "ⲛⲁⲓⲕⲱϯ", "", "", "to turn to"]) + let v = native_list_append(v, ["ⲃⲱϣ", "verb", "ϯⲃⲱϣ", "ⲛⲁⲓ̈ⲃⲱϣ", "", "", "be loosened undone"]) + let v = native_list_append(v, ["ϣϫⲟⲙ", "verb", "šjom", "", "", "", "to be able"]) + let v = native_list_append(v, ["ⲉⲣⲛⲱⲓⲕ", "verb", "ϯⲉⲣⲛⲱⲓⲕ", "ⲛⲁⲓⲉⲣⲛⲱⲓⲕ", "", "", "to commit adultery"]) + let v = native_list_append(v, ["ⲥⲱⲛⲧ", "verb", "ϯⲥⲱⲛⲧ", "ⲛⲁⲓ̈ⲥⲱⲛⲧ", "", "", "to create to"]) + let v = native_list_append(v, ["ϫⲱϫ", "verb", "jōj", "ϫⲟϫ⸗", "ϫⲏϫ", "", "to roast bake"]) + let v = native_list_append(v, ["ⲉⲣ ⲉⲃⲟⲗ", "verb", "ϯⲉⲣ ⲉⲃⲟⲗ", "ⲛⲁⲓⲉⲣ ⲉⲃⲟⲗ", "", "", "to run away"]) + let v = native_list_append(v, ["ⲉⲣϩⲱⲃ", "verb", "ϯⲉⲣϩⲱⲃ", "ⲛⲁⲓⲉⲣϩⲱⲃ", "", "", "to operate to"]) + let v = native_list_append(v, ["ⲙⲕⲁϩ", "verb", "ϯⲙⲕⲁϩ", "ⲛⲁⲓ̈ⲙⲕⲁϩ", "", "", "to work to"]) + let v = native_list_append(v, ["ⲥⲱϥ", "verb", "ϯⲥⲱϥ", "ⲛⲁⲓⲥⲱϥ", "", "", "to violate"]) + let v = native_list_append(v, ["ⲗⲱⲃϣ", "verb", "ϯⲗⲱⲃϣ", "ⲛⲁⲓⲗⲱⲃϣ", "", "", "to set a"]) + let v = native_list_append(v, ["ⲥⲟⲃϯ", "verb", "ϯⲥⲟⲃϯ", "ⲛⲁⲓⲥⲟⲃϯ", "", "", "to be ready"]) + let v = native_list_append(v, ["ⲕⲃⲟ", "verb", "kbo", "ⲭⲃⲟⲃ", "ⲕⲃⲁ", "", "Sahidic to cool"]) + let v = native_list_append(v, ["ⲥⲓⲛⲓ", "verb", "ϯⲥⲓⲛⲓ", "ⲛⲁⲓⲥⲓⲛⲓ", "", "", "to pass"]) + let v = native_list_append(v, ["ⲥⲓⲛⲉ", "verb", "ϯⲥⲓⲛⲉ", "ⲛⲉⲓ̈ⲥⲓⲛⲉ", "", "", "to pass"]) + let v = native_list_append(v, ["ⲟⲩⲱϣⲧ", "verb", "ϯⲟⲩⲱϣⲧ", "ⲛⲁⲓⲟⲩⲱϣⲧ", "", "", "to worship to"]) + let v = native_list_append(v, ["ⲣⲱϧⲓ", "verb", "ϯⲣⲱϧⲓ", "ⲛⲁⲓⲣⲱϧⲓ", "", "", "to be clean"]) + let v = native_list_append(v, ["ⲣⲱϩⲉ", "verb", "ϯⲣⲱϩⲉ", "ⲛⲉⲓ̈ⲣⲱϩⲉ", "", "", "to be clean"]) + let v = native_list_append(v, ["ⲙⲓⲥⲉ", "verb", "ϯⲙⲓⲥⲉ", "ⲛⲉⲓ̈ⲙⲓⲥⲉ", "", "", "to give birth"]) + let v = native_list_append(v, ["ⲥⲓⲧⲉ", "verb", "ϯⲥⲓⲧⲉ", "ⲛⲉⲓ̈ⲥⲓⲧⲉ", "", "", "to throw to"]) + let v = native_list_append(v, ["ⲥⲱⲣ", "verb", "ϯⲥⲱⲣ", "ⲛⲁⲓⲥⲱⲣ", "", "", "to scatter to"]) + let v = native_list_append(v, ["ϫⲱⲓⲗⲓ", "verb", "ϯϫⲱⲓⲗⲓ", "ⲛⲁⲓϫⲱⲓⲗⲓ", "", "", "to dwell visit"]) + let v = native_list_append(v, ["ϩⲱⲃⲥ", "verb", "ϯϩⲱⲃⲥ", "ⲛⲁⲓϩⲱⲃⲥ", "", "", "to cover be"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲉⲙ", "verb", "ϯⲛⲟⲩⲧⲉⲙ", "ⲛⲁⲓⲛⲟⲩⲧⲉⲙ", "", "", "to be sweet"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲙ", "verb", "ϯⲛⲟⲩⲧⲙ", "ⲛⲉⲓ̈ⲛⲟⲩⲧⲙ", "", "", "to be sweet"]) + let v = native_list_append(v, ["ϩⲗⲟϫ", "verb", "ϯϩⲗⲟϫ", "ⲛⲁⲓϩⲗⲟϫ", "", "", "to be sweet"]) + let v = native_list_append(v, ["ϩⲗⲟϭ", "verb", "ϯϩⲗⲟϭ", "ⲛⲉⲓ̈ϩⲗⲟϭ", "", "", "to be sweet"]) + let v = native_list_append(v, ["ⲟⲩⲱϫⲉ", "verb", "ϯⲟⲩⲱϫⲉ", "ⲛⲉⲓ̈ⲟⲩⲱϫⲉ", "", "", "to cut to"]) + let v = native_list_append(v, ["ϯϩⲉ", "verb", "ϯϯϩⲉ", "ⲛⲉⲓ̈ϯϩⲉ", "", "", "to be drunk"]) + let v = native_list_append(v, ["ⲑⲓϧⲓ", "verb", "ϯⲑⲓϧⲓ", "ⲛⲁⲓⲑⲓϧⲓ", "", "", "to be drunk"]) + let v = native_list_append(v, ["ⲛⲟⲩϩⲙ", "verb", "nouhm", "", "", "", "to be saved"]) + let v = native_list_append(v, ["ϭⲟϩ", "verb", "ϯϭⲟϩ", "ⲛⲁⲓϭⲟϩ", "", "", "to touch"]) + let v = native_list_append(v, ["ⲟⲩⲁϩⲃⲉϩ", "verb", "ϯⲟⲩⲁϩⲃⲉϩ", "ⲛⲁⲓⲟⲩⲁϩⲃⲉϩ", "", "", "to bark growl"]) + let v = native_list_append(v, ["ⲱⲙⲕ", "verb", "ϯⲱⲙⲕ", "ⲛⲁⲓⲱⲙⲕ", "", "", "to swallow"]) + let v = native_list_append(v, ["ϧⲉⲣϧⲉⲣ", "verb", "ϯϧⲉⲣϧⲉⲣ", "ⲛⲁⲓϧⲉⲣϧⲉⲣ", "", "", "to snore"]) + let v = native_list_append(v, ["ⲛⲟⲩϩⲃ", "verb", "ϯⲛⲟⲩϩⲃ", "ⲛⲉⲓ̈ⲛⲟⲩϩⲃ", "", "", "to yoke beasts"]) + let v = native_list_append(v, ["ⲧⲟⲟⲩⲧⲉ", "verb", "ϯⲧⲟⲟⲩⲧⲉ", "ⲛⲉⲓ̈ⲧⲟⲟⲩⲧⲉ", "", "", "to gather collect"]) + let v = native_list_append(v, ["ⲟⲩⲱⲧⲛ", "verb", "ϯⲟⲩⲱⲧⲛ", "ⲛⲉⲓ̈ⲟⲩⲱⲧⲛ", "", "", "to give an"]) + let v = native_list_append(v, ["ⲕⲱ ⲉϩⲣⲁⲓ", "verb", "ϯⲕⲱ ⲉϩⲣⲁⲓ", "ⲛⲉⲓ̈ⲕⲱ ⲉϩⲣⲁⲓ", "", "", "to put down."]) + let v = native_list_append(v, ["ⲙⲟⲟϣⲉ", "verb", "ϯⲙⲟⲟϣⲉ", "ⲛⲉⲓ̈ⲙⲟⲟϣⲉ", "", "", "to walk"]) + let v = native_list_append(v, ["ϩⲉ", "verb", "ϯϩⲉ", "ⲛⲉⲓ̈ϩⲉ", "", "", "to fall."]) + let v = native_list_append(v, ["ⲥⲱⲟⲩϩ", "verb", "ϯⲥⲱⲟⲩϩ", "ⲛⲁⲓ̈ⲥⲱⲟⲩϩ", "", "", "to be gathered"]) + let v = native_list_append(v, ["ⲡⲗⲉⲁ", "verb", "ϯⲡⲗⲉⲁ", "ⲛⲉⲓ̈ⲡⲗⲉⲁ", "", "", "to sail"]) + let v = native_list_append(v, ["ⲅⲉⲛⲟⲓⲧⲟ", "verb", "ϯⲅⲉⲛⲟⲓⲧⲟ", "ⲛⲉⲓ̈ⲅⲉⲛⲟⲓⲧⲟ", "", "", "may it happen"]) + let v = native_list_append(v, ["ⲙⲟⲩⲗϩ", "verb", "ϯⲙⲟⲩⲗϩ", "ⲛⲁⲓ̈ⲙⲟⲩⲗϩ", "", "", "to make salt"]) + let v = native_list_append(v, ["ϣⲉϫⲓ", "verb", "ϯϣⲉϫⲓ", "ⲛⲁⲓϣⲉϫⲓ", "", "", "to speak"]) + let v = native_list_append(v, ["ⲁⲗⲉϩ", "verb", "ϯⲁⲗⲉϩ", "ⲛⲁⲓⲁⲗⲉϩ", "", "", "to keep to"]) + let v = native_list_append(v, ["ϭⲁⲓⲗⲓ", "verb", "ϯϭⲁⲓⲗⲓ", "ⲛⲁⲓϭⲁⲓⲗⲓ", "", "", "to dwell visit"]) + let v = native_list_append(v, ["ⲙⲓⲕⲓ", "verb", "ϯⲙⲓⲕⲓ", "ⲛⲁⲓⲙⲓⲕⲓ", "", "", "to protect"]) + let v = native_list_append(v, ["ⲓϣⲓ", "verb", "ϯⲓϣⲓ", "ⲛⲁⲓⲓϣⲓ", "", "", "to hang"]) + let v = native_list_append(v, ["ⲙⲉⲉⲓ", "verb", "ϯⲙⲉⲉⲓ", "ⲛⲁⲓⲙⲉⲉⲓ", "", "", "to love"]) + let v = native_list_append(v, ["ⲗⲉϣⲓ", "verb", "ϯⲗⲉϣⲓ", "ⲛⲁⲓⲗⲉϣⲓ", "", "", "to rejoice"]) + let v = native_list_append(v, ["ⲕⲱⲱⲥⲓ", "verb", "ϯⲕⲱⲱⲥⲓ", "ⲛⲁⲓⲕⲱⲱⲥⲓ", "", "", "to bury"]) + let v = native_list_append(v, ["ⲧⲁⲩ", "verb", "ϯⲧⲁⲩ", "ⲛⲁⲓⲧⲁⲩ", "", "", "to buy"]) + let v = native_list_append(v, ["ⲙⲉⲧⲙⲉⲧⲣⲏ", "verb", "ϯⲙⲉⲧⲙⲉⲧⲣⲏ", "ⲛⲁⲓⲙⲉⲧⲙⲉⲧⲣⲏ", "", "", "to testify"]) + let v = native_list_append(v, ["ⲕⲱ ⲉⲃⲁⲗ", "verb", "ϯⲕⲱ ⲉⲃⲁⲗ", "ⲛⲁⲓⲕⲱ ⲉⲃⲁⲗ", "", "", "to dismiss"]) + let v = native_list_append(v, ["ⲱⲛⳉ", "verb", "ϯⲱⲛⳉ", "ⲛⲁⲓ̈ⲱⲛⳉ", "", "", "to live"]) + let v = native_list_append(v, ["ⲉⲣⲟⲩⲟⲉⲓⲛ", "verb", "ϯⲉⲣⲟⲩⲟⲉⲓⲛ", "ⲛⲉⲓ̈ⲉⲣⲟⲩⲟⲉⲓⲛ", "", "", "to shine"]) + let v = native_list_append(v, ["ⲥⲧⲁⲓ", "verb", "ϯⲥⲧⲁⲓ", "ⲛⲁⲓ̈ⲥⲧⲁⲓ", "", "", "to smell"]) + let v = native_list_append(v, ["ϭⲛⲁⲛ", "verb", "ϯϭⲛⲁⲛ", "ⲛⲁⲓϭⲛⲁⲛ", "", "", "to become soft"]) + let v = native_list_append(v, ["ϩⲁⲣⲉϩ", "verb", "ϯϩⲁⲣⲉϩ", "ⲛⲉⲓ̈ϩⲁⲣⲉϩ", "", "", "to keep to"]) + let v = native_list_append(v, ["ⲉⲓⲛⲉ", "verb", "ϯⲉⲓⲛⲉ", "ⲛⲉⲓ̈ⲉⲓⲛⲉ", "", "", "to bring"]) + let v = native_list_append(v, ["ⲓⲣⲉ", "verb", "ϯⲓⲣⲉ", "ⲛⲉⲓ̈ⲓⲣⲉ", "", "", "to make"]) + let v = native_list_append(v, ["ⲥⲙⲟⲩ", "verb", "ϯⲥⲙⲟⲩ", "ⲛⲁⲓⲥⲙⲟⲩ", "", "", "to bless to"]) + let v = native_list_append(v, ["ϩⲙⲟⲟⲥ", "verb", "hmoos", "", "", "", "to sit"]) + let v = native_list_append(v, ["ⲁⲓⲁⲓ", "verb", "aiai", "ⲁⲓⲉⲩⲉ", "ⲁⲉⲓⲉⲩⲧⲉ", "", "to increase in"]) + let v = native_list_append(v, ["ⲃⲱⲗ", "verb", "ϯⲃⲱⲗ", "ⲛⲉⲓ̈ⲃⲱⲗ", "", "", "to loosen to"]) + let v = native_list_append(v, ["ⲧⲁⲓⲙ", "verb", "ϯⲧⲁⲓⲙ", "ⲛⲁⲓⲧⲁⲓⲙ", "", "", "to help"]) + let v = native_list_append(v, ["ϣⲟⲛⲧ", "verb", "šont", "", "", "", "to plait."]) + let v = native_list_append(v, ["ϭⲱⲛⲧ", "verb", "ϯϭⲱⲛⲧ", "ⲛⲁⲓϭⲱⲛⲧ", "", "", "to try"]) + let v = native_list_append(v, ["ⲙⲟ", "verb", "mo", "to male ⲙⲟ", "to female ⲙⲉ", "", "imperative form of"]) + let v = native_list_append(v, ["ⲉⲣⲉϩ", "verb", "ϯⲉⲣⲉϩ", "ⲛⲁⲓ̈ⲉⲣⲉϩ", "", "", "to keep to"]) + let v = native_list_append(v, ["ⲉⲣⲏϩ", "verb", "ϯⲉⲣⲏϩ", "ⲛⲁⲓ̈ⲉⲣⲏϩ", "", "", "to keep to"]) + let v = native_list_append(v, ["ⲥⲱⲧⲙ", "verb", "ϯⲥⲱⲧⲙ̄", "ⲛⲉⲓ̈ⲥⲱⲧⲙ̄", "", "", "to hear"]) + let v = native_list_append(v, ["ⲥⲱⲧⲙⲉ", "verb", "ϯⲥⲱⲧⲙⲉ", "ⲛⲁⲓ̈ⲥⲱⲧⲙⲉ", "", "", "to hear"]) + let v = native_list_append(v, ["ϫⲱϩⲙ", "verb", "ϯϫⲱϩⲙ̄", "ⲛⲉⲓ̈ϫⲱϩⲙ̄", "", "", "to be defiled"]) + let v = native_list_append(v, ["ⲥⲱⲃⲓ", "verb", "ϯⲥⲱⲃⲓ", "ⲛⲁⲓⲥⲱⲃⲓ", "", "", "to laugh to"]) + let v = native_list_append(v, ["ⲥⲱⲃⲉ", "verb", "ϯⲥⲱⲃⲉ", "ⲛⲉⲓ̈ⲥⲱⲃⲉ", "", "", "to laugh to"]) + let v = native_list_append(v, ["ϣⲁϣⲧ", "verb", "šašt", "", "", "", "to halt to"]) + let v = native_list_append(v, ["ⲡⲉϫⲉ-", "verb", "peje-", "ⲡⲉϫⲁ⸗", "ⲡⲉϫⲉ⸗", "", "said asked."]) + let v = native_list_append(v, ["ⲙⲉϣⲉ-", "verb", "meše-", "ⲙⲉϣⲁ⸗", "ⲙⲉⳉⲉ-", "", "not know"]) + let v = native_list_append(v, ["ⲡⲁⲣϩⲓⲥⲧⲁ", "verb", "parhista", "", "", "", "to guide"]) + let v = native_list_append(v, ["ⲙⲉⲉⲩⲉ", "verb", "ϯⲙⲉⲉⲩⲉ", "ⲛⲉⲓ̈ⲙⲉⲉⲩⲉ", "", "", "to think"]) + let v = native_list_append(v, ["ⲣⲟⲉⲓⲥ", "verb", "ϯⲣⲟⲉⲓⲥ", "ⲛⲉⲓ̈ⲣⲟⲉⲓⲥ", "", "", "to be awake"]) + let v = native_list_append(v, ["ⲥⲱϣⲉ", "verb", "ϯⲥⲱϣⲉ", "ⲛⲉⲓ̈ⲥⲱϣⲉ", "", "", "to weave"]) + let v = native_list_append(v, ["ⲥⲱϧⲓ", "verb", "ϯⲥⲱϧⲓ", "ⲛⲁⲓⲥⲱϧⲓ", "", "", "to weave"]) + let v = native_list_append(v, ["ⲥⲱϩⲉ", "verb", "ϯⲥⲱϩⲉ", "ⲛⲉⲓ̈ⲥⲱϩⲉ", "", "", "to weave"]) + let v = native_list_append(v, ["ⲟⲩⲱⳉⲉ", "verb", "ϯⲟⲩⲱⳉⲉ", "ⲛⲁⲓ̈ⲟⲩⲱⳉⲉ", "", "", "to want to"]) + let v = native_list_append(v, ["ⳉⲱⲡⲉ", "verb", "ϯⳉⲱⲡⲉ", "ⲛⲁⲓ̈ⳉⲱⲡⲉ", "", "", "to become befall"]) + let v = native_list_append(v, ["ⳉⲱⲧⲃⲉ", "verb", "ϯⳉⲱⲧⲃⲉ", "ⲛⲁⲓ̈ⳉⲱⲧⲃⲉ", "", "", "to kill"]) + let v = native_list_append(v, ["ϩⲱⲧⲃⲉ", "verb", "ϯϩⲱⲧⲃⲉ", "ⲛⲉⲓ̈ϩⲱⲧⲃⲉ", "", "", "to kill"]) + let v = native_list_append(v, ["ⲣⲱⲓⲥ", "verb", "ϯⲣⲱⲓⲥ", "ⲛⲁⲓⲣⲱⲓⲥ", "", "", "to be awake"]) + let v = native_list_append(v, ["ⲗⲁⲉⲓⲥ", "verb", "ϯⲗⲁⲉⲓⲥ", "ⲛⲁⲓⲗⲁⲉⲓⲥ", "", "", "to be awake"]) + let v = native_list_append(v, ["ⲣⲁⲉⲓⲥ", "verb", "ϯⲣⲁⲉⲓⲥ", "ⲛⲁⲓ̈ⲣⲁⲉⲓⲥ", "", "", "to be awake"]) + let v = native_list_append(v, ["ⲫⲱⲣ", "verb", "ϯⲫⲱⲣ", "ⲛⲁⲓⲫⲱⲣ", "", "", "to dream"]) + let v = native_list_append(v, ["ⲡⲱⲱⲣⲉ", "verb", "ϯⲡⲱⲱⲣⲉ", "ⲛⲉⲓ̈ⲡⲱⲱⲣⲉ", "", "", "to dream"]) + let v = native_list_append(v, ["ⲡⲟⲩⲣⲉ", "verb", "ϯⲡⲟⲩⲣⲉ", "ⲛⲁⲓ̈ⲡⲟⲩⲣⲉ", "", "", "to dream"]) + let v = native_list_append(v, ["ⲛⲉⲩ", "verb", "ϯⲛⲉⲩ", "ⲛⲁⲓⲛⲉⲩ", "", "", "to look at"]) + let v = native_list_append(v, ["ⲭⲙⲟⲙ", "verb", "ϯⲭⲙⲟⲙ", "ⲛⲁⲓⲭⲙⲟⲙ", "", "", "to become black"]) + let v = native_list_append(v, ["ⲕⲙⲟⲙ", "verb", "ϯⲕⲙⲟⲙ", "ⲛⲉⲓ̈ⲕⲙⲟⲙ", "", "", "to become black"]) + let v = native_list_append(v, ["ⲕⲙⲁⲙ", "verb", "ϯⲕⲙⲁⲙ", "ⲛⲁⲓⲕⲙⲁⲙ", "", "", "to become black"]) + let v = native_list_append(v, ["ⲟⲩⲃⲁⳉ", "verb", "ϯⲟⲩⲃⲁⳉ", "ⲛⲁⲓ̈ⲟⲩⲃⲁⳉ", "", "", "to be white"]) + let v = native_list_append(v, ["ⲟⲩⲃⲁϣ", "verb", "ϯⲟⲩⲃⲁϣ", "ⲛⲁⲓⲟⲩⲃⲁϣ", "", "", "to be white"]) + let v = native_list_append(v, ["ⲟⲩⲃⲉϣ", "verb", "ϯⲟⲩⲃⲉϣ", "ⲛⲁⲓⲟⲩⲃⲉϣ", "", "", "to be white"]) + let v = native_list_append(v, ["ⲟⲩⲱϣⲃⲉ", "verb", "ϯⲟⲩⲱϣⲃⲉ", "ⲛⲁⲓ̈ⲟⲩⲱϣⲃⲉ", "", "", "to answer"]) + let v = native_list_append(v, ["ⲟⲩⲱϣⲃ", "verb", "ϯⲟⲩⲱϣⲃ", "ⲛⲉⲓ̈ⲟⲩⲱϣⲃ", "", "", "to answer"]) + let v = native_list_append(v, ["ⲟⲩⲱϩⲙ", "verb", "ϯⲟⲩⲱϩⲙ", "ⲛⲁⲓⲟⲩⲱϩⲙ", "", "", "to repeat answer"]) + let v = native_list_append(v, ["ⲟⲩⲱϩⲉⲙ", "verb", "ϯⲟⲩⲱϩⲉⲙ", "ⲛⲁⲓⲟⲩⲱϩⲉⲙ", "", "", "to repeat answer"]) + let v = native_list_append(v, ["ⲟⲩⲱϩⲙⲉ", "verb", "ϯⲟⲩⲱϩⲙⲉ", "ⲛⲁⲓ̈ⲟⲩⲱϩⲙⲉ", "", "", "to repeat answer"]) + let v = native_list_append(v, ["ⲉⲓⲙⲉ", "verb", "ϯⲉⲓⲙⲉ", "ⲛⲉⲓ̈ⲉⲓⲙⲉ", "", "", "to know to"]) + let v = native_list_append(v, ["ⲉⲓⲙⲙⲉ", "verb", "ϯⲉⲓⲙⲙⲉ", "ⲛⲉⲓ̈ⲉⲓⲙⲙⲉ", "", "", "to know to"]) + let v = native_list_append(v, ["ⲙⲙⲉ", "verb", "ϯⲙⲙⲉ", "ⲛⲁⲓ̈ⲙⲙⲉ", "", "", "to know to"]) + let v = native_list_append(v, ["ⲉⲓⲙⲓ", "verb", "ϯⲉⲓⲙⲓ", "ⲛⲁⲓⲉⲓⲙⲓ", "", "", "to know to"]) + let v = native_list_append(v, ["ⲓⲙⲓ", "verb", "imi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲑⲙⲟ", "verb", "ϯⲑⲙⲟ", "ⲛⲉⲓ̈ⲑⲙⲟ", "", "", "to warm"]) + let v = native_list_append(v, ["ϣⲧⲟⲣⲧⲣ", "verb", "ϯϣⲧⲟⲣⲧⲣ", "ⲛⲉⲓ̈ϣⲧⲟⲣⲧⲣ", "", "", "to be disturbed"]) + let v = native_list_append(v, ["ⳉⲧⲁⲣⲧⲣⲉ", "verb", "ϯⳉⲧⲁⲣⲧⲣⲉ", "ⲛⲁⲓ̈ⳉⲧⲁⲣⲧⲣⲉ", "", "", "to be disturbed"]) + let v = native_list_append(v, ["ⲧⲥⲟ", "verb", "ϯⲧⲥⲟ", "ⲛⲁⲓ̈ⲧⲥⲟ", "", "", "to slake give"]) + let v = native_list_append(v, ["ⲙⲟⲩϫϭ", "verb", "ϯⲙⲟⲩϫϭ", "ⲛⲁⲓ̈ⲙⲟⲩϫϭ", "", "", "to mix"]) + let v = native_list_append(v, ["ϣⲏⲙϣⲓ", "verb", "šēmši", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲥϩⲁⲓ", "verb", "ϯⲥϩⲁⲓ", "ⲛⲉⲓ̈ⲥϩⲁⲓ", "", "", "to write"]) + let v = native_list_append(v, ["ⲥⳉⲉⲉⲓ", "verb", "ϯⲥⳉⲉⲉⲓ", "ⲛⲁⲓ̈ⲥⳉⲉⲉⲓ", "", "", "to write"]) + let v = native_list_append(v, ["ⲥϩⲉⲉⲓ", "verb", "ϯⲥϩⲉⲉⲓ", "ⲛⲉⲓ̈ⲥϩⲉⲉⲓ", "", "", "to write"]) + let v = native_list_append(v, ["ⲟⲩⲱⲧⲃ", "verb", "ϯⲟⲩⲱⲧⲃ", "ⲛⲉⲓ̈ⲟⲩⲱⲧⲃ", "", "", "to change be"]) + let v = native_list_append(v, ["ⲥⲟⲩ-", "verb", "sou-", "", "", "", "nominal state of"]) + let v = native_list_append(v, ["ϣⲙϣⲉ", "verb", "ϯϣⲙϣⲉ", "ⲛⲁⲓ̈ϣⲙϣⲉ", "", "", "to worship"]) + let v = native_list_append(v, ["ⲙⲟⲩⲣ", "verb", "ϯⲙⲟⲩⲣ", "ⲛⲁⲓⲙⲟⲩⲣ", "", "", "to bind gird"]) + let v = native_list_append(v, ["ϫⲓϯⲡⲉ", "verb", "ϯϫⲓϯⲡⲉ", "ⲛⲁⲓ̈ϫⲓϯⲡⲉ", "", "", "to taste"]) + let v = native_list_append(v, ["ⲧⲱⲡⲉ", "verb", "ϯⲧⲱⲡⲉ", "ⲛⲉⲓ̈ⲧⲱⲡⲉ", "", "", "to taste"]) + let v = native_list_append(v, ["ⲥⲱⲣⲙ", "verb", "ϯⲥⲱⲣⲙ", "ⲛⲉⲓ̈ⲥⲱⲣⲙ", "", "", "to go astray"]) + let v = native_list_append(v, ["ⲥⲱⲣⲉⲙ", "verb", "ϯⲥⲱⲣⲉⲙ", "ⲛⲉⲓ̈ⲥⲱⲣⲉⲙ", "", "", "to go astray"]) + let v = native_list_append(v, ["ⲥⲱⲣⲙⲉ", "verb", "ϯⲥⲱⲣⲙⲉ", "ⲛⲁⲓ̈ⲥⲱⲣⲙⲉ", "", "", "to go astray"]) + let v = native_list_append(v, ["ϭⲙϭⲟⲙ", "verb", "ϯϭⲙϭⲟⲙ", "ⲛⲉⲓ̈ϭⲙϭⲟⲙ", "", "", "to find strength"]) + let v = native_list_append(v, ["ⲫⲱⲣϣ", "verb", "ϯⲫⲱⲣϣ", "ⲛⲁⲓⲫⲱⲣϣ", "", "", "to be spread"]) + let v = native_list_append(v, ["ⲡⲱⲣϣ", "verb", "ϯⲡⲱⲣϣ", "ⲛⲁⲓⲡⲱⲣϣ", "", "", "to be spread"]) + let v = native_list_append(v, ["ⲡⲱⲣⳉ", "verb", "ϯⲡⲱⲣⳉ", "ⲛⲁⲓ̈ⲡⲱⲣⳉ", "", "", "to be spread"]) + let v = native_list_append(v, ["ϩⲣϩⲣ", "verb", "ϯϩⲣϩⲣ", "ⲛⲉⲓ̈ϩⲣϩⲣ", "", "", "to snore"]) + let v = native_list_append(v, ["ⳉⲣⳉⲣⲉ", "verb", "ϯⳉⲣⳉⲣⲉ", "ⲛⲁⲓ̈ⳉⲣⳉⲣⲉ", "", "", "to snore"]) + let v = native_list_append(v, ["ⲣϩⲓⲕ", "verb", "ϯⲣϩⲓⲕ", "ⲛⲉⲓ̈ⲣϩⲓⲕ", "", "", "to bewitch enchant"]) + let v = native_list_append(v, ["ϫⲓ", "verb", "ϯϫⲓ", "ⲛⲉⲓ̈ϫⲓ", "", "", "to receive take"]) + let v = native_list_append(v, ["ϭⲓϯⲡⲓ", "verb", "ϯϭⲓϯⲡⲓ", "ⲛⲁⲓϭⲓϯⲡⲓ", "", "", "to taste"]) + let v = native_list_append(v, ["ⲡⲱϣⲛ", "verb", "ϯⲡⲱϣⲛ", "ⲛⲉⲓ̈ⲡⲱϣⲛ", "", "", "to do service"]) + let v = native_list_append(v, ["ⲫⲱϣⲉⲛ", "verb", "ϯⲫⲱϣⲉⲛ", "ⲛⲁⲓⲫⲱϣⲉⲛ", "", "", "to do service"]) + let v = native_list_append(v, ["ⲡⲱϣⲉⲛ", "verb", "ϯⲡⲱϣⲉⲛ", "ⲛⲁⲓⲡⲱϣⲉⲛ", "", "", "to do service"]) + let v = native_list_append(v, ["ϩⲙⲟⲙ", "verb", "ϯϩⲙⲟⲙ", "ⲛⲉⲓ̈ϩⲙⲟⲙ", "", "", "to be hot"]) + let v = native_list_append(v, ["ϣⲙⲟⲙ", "verb", "šmom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϧⲙⲟⲙ", "verb", "ϯϧⲙⲟⲙ", "ⲛⲁⲓϧⲙⲟⲙ", "", "", "to be hot"]) + let v = native_list_append(v, ["ⳉⲙⲁⲙ", "verb", "ϯⳉⲙⲁⲙ", "ⲛⲉⲓ̈ⳉⲙⲁⲙ", "", "", "to be hot"]) + let v = native_list_append(v, ["ϩⲙⲁⲙ", "verb", "ϯϩⲙⲁⲙ", "ⲛⲁⲓϩⲙⲁⲙ", "", "", "to be hot"]) + let v = native_list_append(v, ["ϫⲓⲣⲟⲩϩⲉ", "verb", "jirouhe", "", "", "", "to spend the"]) + let v = native_list_append(v, ["ϣⲱⲣⲡ", "verb", "šōrp", "ϣⲉⲣⲡ-", "ϣⲟⲣⲡ⸗", "", "to be early"]) + let v = native_list_append(v, ["ⳉⲱⲣⲡ", "verb", "xōrp", "ⳉⲁⲣⲡ⸗", "ϣⲱⲣⲡ", "", "to be early"]) + let v = native_list_append(v, ["ϣⲱⲗⲡ", "verb", "šōlp", "ϣⲱⲣⲡ", "ϣⲱⲗⲉⲡ", "", "to be early"]) + let v = native_list_append(v, ["ϣⲱⲗⲉⲡ", "verb", "šōlep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲣⲱⲥ", "verb", "rōs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲕⲱⲗⲉⲙ", "verb", "ϯⲕⲱⲗⲉⲙ", "ⲛⲁⲓⲕⲱⲗⲉⲙ", "", "", "to hasten"]) + let v = native_list_append(v, ["ⲭⲱⲗⲉⲙ", "verb", "ϯⲭⲱⲗⲉⲙ", "ⲛⲁⲓⲭⲱⲗⲉⲙ", "", "", "to hasten"]) + let v = native_list_append(v, ["ϫⲟ", "verb", "ϯϫⲟ", "ⲛⲁⲓ̈ϫⲟ", "", "", "to sow plant"]) + let v = native_list_append(v, ["ϥⲓ", "verb", "ϯϥⲓ", "ⲛⲁⲓ̈ϥⲓ", "", "", "to bear carry"]) + let v = native_list_append(v, ["ⲥⲃⲃⲉ", "verb", "ϯⲥⲃⲃⲉ", "ⲛⲉⲓ̈ⲥⲃⲃⲉ", "", "", "to circumcise"]) + let v = native_list_append(v, ["ⲥⲏⲃⲃⲓ", "verb", "ϯⲥⲏⲃⲃⲓ", "ⲛⲁⲓⲥⲏⲃⲃⲓ", "", "", "to circumcise"]) + let v = native_list_append(v, ["ⲥⲟⲡⲥⲉⲡ", "verb", "ϯⲥⲟⲡⲥⲉⲡ", "ⲛⲁⲓⲥⲟⲡⲥⲉⲡ", "", "", "to pray entreat"]) + let v = native_list_append(v, ["ⲥⲟⲡⲥⲡ", "verb", "ϯⲥⲟⲡⲥⲡ", "ⲛⲉⲓ̈ⲥⲟⲡⲥⲡ", "", "", "to pray entreat"]) + let v = native_list_append(v, ["ⲥⲟⲡⲥ", "verb", "sops", "ⲥⲡⲥ-", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲥⲟⲗⲥⲗ", "verb", "ϯⲥⲟⲗⲥⲗ", "ⲛⲉⲓ̈ⲥⲟⲗⲥⲗ", "", "", "to be comforted"]) + let v = native_list_append(v, ["ⲥⲟⲗⲥⲉⲗ", "verb", "ϯⲥⲟⲗⲥⲉⲗ", "ⲛⲁⲓⲥⲟⲗⲥⲉⲗ", "", "", "to be comforted"]) + let v = native_list_append(v, ["ϩⲓⲟⲩⲉ", "verb", "ϯϩⲓⲟⲩⲉ", "ⲛⲁⲓ̈ϩⲓⲟⲩⲉ", "", "", "to be struck"]) + let v = native_list_append(v, ["ϩⲓⲟⲩⲓ", "verb", "ϯϩⲓⲟⲩⲓ", "ⲛⲁⲓϩⲓⲟⲩⲓ", "", "", "to be struck"]) + let v = native_list_append(v, ["ϩⲓⲱⲛⲉ", "verb", "ϯϩⲓⲱⲛⲉ", "ⲛⲁⲓϩⲓⲱⲛⲉ", "", "", "to throw stones"]) + let v = native_list_append(v, ["ϣⲗⲁϩ", "verb", "ϯϣⲗⲁϩ", "ⲛⲁⲓ̈ϣⲗⲁϩ", "", "", "to be afraid"]) + let v = native_list_append(v, ["ⲛⲉϩϣⲗϥ", "verb", "ϯⲛⲉϩϣⲗϥ", "ⲛⲉⲓ̈ⲛⲉϩϣⲗϥ", "", "", "to be terrified"]) + let v = native_list_append(v, ["ⲛⲟⲩϩⲉ", "verb", "ϯⲛⲟⲩϩⲉ", "ⲛⲉⲓ̈ⲛⲟⲩϩⲉ", "", "", "to shake cast"]) + let v = native_list_append(v, ["ϥⲱϭⲉ", "verb", "ϯϥⲱϭⲉ", "ⲛⲁⲓ̈ϥⲱϭⲉ", "", "", "to leap move"]) + let v = native_list_append(v, ["ϩⲱⲗⲉⲙ", "verb", "ϯϩⲱⲗⲉⲙ", "ⲛⲁⲓϩⲱⲗⲉⲙ", "", "", "to seize"]) + let v = native_list_append(v, ["ⲥⲱⲱⲣⲓ", "verb", "ϯⲥⲱⲱⲣⲓ", "ⲛⲁⲓⲥⲱⲱⲣⲓ", "", "", "to scatter to"]) + let v = native_list_append(v, ["ϥⲱϫⲓ", "verb", "ϯϥⲱϫⲓ", "ⲛⲁⲓϥⲱϫⲓ", "", "", "to leap move"]) + let v = native_list_append(v, ["ϫⲡⲟ", "verb", "ϯϫⲡⲟ", "ⲛⲉⲓ̈ϫⲡⲟ", "", "", "to beget bring"]) + let v = native_list_append(v, ["ϫⲫⲟ", "verb", "ϯϫⲫⲟ", "ⲛⲁⲓϫⲫⲟ", "", "", "to beget bring"]) + let v = native_list_append(v, ["ϭⲱⲧⲡ", "verb", "ϯϭⲱⲧⲡ", "ⲛⲁⲓϭⲱⲧⲡ", "", "", "to be defeated"]) + let v = native_list_append(v, ["ⲧⳉⲡⲟ", "verb", "ϯⲧⳉⲡⲟ", "ⲛⲁⲓ̈ⲧⳉⲡⲟ", "", "", "to beget bring"]) + let v = native_list_append(v, ["ϫⲡⲁ", "verb", "ϯϫⲡⲁ", "ⲛⲁⲓϫⲡⲁ", "", "", "to beget bring"]) + let v = native_list_append(v, ["ⲕⲱⲧ", "verb", "ϯⲕⲱⲧ", "ⲛⲁⲓ̈ⲕⲱⲧ", "", "", "to build to"]) + let v = native_list_append(v, ["ⲕⲱⲧⲉ", "verb", "ϯⲕⲱⲧⲉ", "ⲛⲁⲓ̈ⲕⲱⲧⲉ", "", "", "to turn go"]) + let v = native_list_append(v, ["ⲕⲧⲟ", "verb", "ϯⲕⲧⲟ", "ⲛⲁⲓ̈ⲕⲧⲟ", "", "", "to turn surround"]) + let v = native_list_append(v, ["ⲕⲧⲁ", "verb", "ϯⲕⲧⲁ", "ⲛⲁⲓⲕⲧⲁ", "", "", "to turn surround"]) + let v = native_list_append(v, ["ϯⳉⲉ", "verb", "ϯϯⳉⲉ", "ⲛⲁⲓ̈ϯⳉⲉ", "", "", "to be drunken"]) + let v = native_list_append(v, ["ϯϩⲓ", "verb", "ϯϯϩⲓ", "ⲛⲁⲓϯϩⲓ", "", "", "to be drunk"]) + let v = native_list_append(v, ["ⲣⲱⲧ", "verb", "ϯⲣⲱⲧ", "ⲛⲁⲓ̈ⲣⲱⲧ", "", "", "to grow sprout"]) + let v = native_list_append(v, ["ⲗⲱⲧ", "verb", "ϯⲗⲱⲧ", "ⲛⲁⲓⲗⲱⲧ", "", "", "to grow sprout"]) + let v = native_list_append(v, ["ⲥⲁⲗⲥⲗⲉ", "verb", "ϯⲥⲁⲗⲥⲗⲉ", "ⲛⲁⲓ̈ⲥⲁⲗⲥⲗⲉ", "", "", "to be comforted"]) + let v = native_list_append(v, ["ⲥⲁⲗⲥⲗ", "verb", "ϯⲥⲁⲗⲥⲗ", "ⲛⲉⲓ̈ⲥⲁⲗⲥⲗ", "", "", "to be comforted"]) + let v = native_list_append(v, ["ⲥⲁⲗⲥⲉⲗ", "verb", "ϯⲥⲁⲗⲥⲉⲗ", "ⲛⲁⲓⲥⲁⲗⲥⲉⲗ", "", "", "to be comforted"]) + let v = native_list_append(v, ["ⲉⲓⳉⲉ", "verb", "ϯⲉⲓⳉⲉ", "ⲛⲁⲓ̈ⲉⲓⳉⲉ", "", "", "to hang"]) + let v = native_list_append(v, ["ⲧⲁⲙⲓⲟ", "verb", "ϯⲧⲁⲙⲓⲟ", "ⲛⲁⲓ̈ⲧⲁⲙⲓⲟ", "", "", "to make create"]) + let v = native_list_append(v, ["ⲑⲁⲙⲓⲟ", "verb", "ϯⲑⲁⲙⲓⲟ", "ⲛⲁⲓⲑⲁⲙⲓⲟ", "", "", "to make create"]) + let v = native_list_append(v, ["ⲧⲁⲙⲓⲁ", "verb", "ϯⲧⲁⲙⲓⲁ", "ⲛⲁⲓⲧⲁⲙⲓⲁ", "", "", "to make create"]) + let v = native_list_append(v, ["ⲧⲁⲙⲁ", "verb", "ϯⲧⲁⲙⲁ", "ⲛⲁⲓⲧⲁⲙⲁ", "", "", "to tell inform"]) + let v = native_list_append(v, ["ⲑⲱϩⲉⲙ", "verb", "ϯⲑⲱϩⲉⲙ", "ⲛⲁⲓⲑⲱϩⲉⲙ", "", "", "to knock on"]) + let v = native_list_append(v, ["ⲧⲱϩⲙ", "verb", "ϯⲧⲱϩⲙ", "ⲛⲉⲓ̈ⲧⲱϩⲙ", "", "", "to knock on"]) + let v = native_list_append(v, ["ⲧⲱϩⲉⲙ", "verb", "ϯⲧⲱϩⲉⲙ", "ⲛⲁⲓⲧⲱϩⲉⲙ", "", "", "to knock on"]) + let v = native_list_append(v, ["ⲧⲱϩⲙⲉ", "verb", "ϯⲧⲱϩⲙⲉ", "ⲛⲁⲓ̈ⲧⲱϩⲙⲉ", "", "", "to knock on"]) + let v = native_list_append(v, ["ⲟⲩⲱϣⲥ", "verb", "ϯⲟⲩⲱϣⲥ", "ⲛⲁⲓⲟⲩⲱϣⲥ", "", "", "to become broad"]) + let v = native_list_append(v, ["ⲟⲩⲱⲥⳉ", "verb", "ϯⲟⲩⲱⲥⳉ", "ⲛⲁⲓ̈ⲟⲩⲱⲥⳉ", "", "", "to become broad"]) + let v = native_list_append(v, ["ⲙⲟⲩⲧⲉ", "verb", "ϯⲙⲟⲩⲧⲉ", "ⲛⲁⲓ̈ⲙⲟⲩⲧⲉ", "", "", "to speak call"]) + let v = native_list_append(v, ["ⲟⲩⲟⲡ", "verb", "ϯⲟⲩⲟⲡ", "ⲛⲉⲓ̈ⲟⲩⲟⲡ", "", "", "to be pure"]) + let v = native_list_append(v, ["ⲟⲩⲁⲡ", "verb", "ϯⲟⲩⲁⲡ", "ⲛⲁⲓ̈ⲟⲩⲁⲡ", "", "", "to be pure"]) + let v = native_list_append(v, ["ⲟⲩⲁⲃ", "verb", "ϯⲟⲩⲁⲃ", "ⲛⲁⲓⲟⲩⲁⲃ", "", "", "pure holy"]) + let v = native_list_append(v, ["ⲑⲱⲣϣ", "verb", "ϯⲑⲱⲣϣ", "ⲛⲁⲓⲑⲱⲣϣ", "", "", "to be red"]) + let v = native_list_append(v, ["ⲧⲱⲣϣ", "verb", "ϯⲧⲱⲣϣ", "ⲛⲁⲓ̈ⲧⲱⲣϣ", "", "", "to be red"]) + let v = native_list_append(v, ["ⲧⲣⲟϣ", "verb", "ϯⲧⲣⲟϣ", "ⲛⲉⲓ̈ⲧⲣⲟϣ", "", "", "to be red"]) + let v = native_list_append(v, ["ⲧⲁⲣϣ", "verb", "ϯⲧⲁⲣϣ", "ⲛⲁⲓⲧⲁⲣϣ", "", "", "to be red"]) + let v = native_list_append(v, ["ⲧⲟⲣϣ", "verb", "ϯⲧⲟⲣϣ", "ⲛⲁⲓⲧⲟⲣϣ", "", "", "to be red"]) + let v = native_list_append(v, ["ⲁϣⲁⲓ", "verb", "ϯⲁϣⲁⲓ", "ⲛⲁⲓⲁϣⲁⲓ", "", "", "to become many"]) + let v = native_list_append(v, ["ⲱϭⲃ", "verb", "ϯⲱϭⲃ", "ⲛⲉⲓ̈ⲱϭⲃ", "", "", "to become cold"]) + let v = native_list_append(v, ["ⲱϫⲉⲃ", "verb", "ϯⲱϫⲉⲃ", "ⲛⲁⲓⲱϫⲉⲃ", "", "", "to become cold"]) + let v = native_list_append(v, ["ϩⲓⲑⲁϥ", "verb", "ϯϩⲓⲑⲁϥ", "ⲛⲁⲓϩⲓⲑⲁϥ", "", "", "to spit"]) + let v = native_list_append(v, ["ⲛⲉϫⲧⲁϥ", "verb", "ϯⲛⲉϫⲧⲁϥ", "ⲛⲉⲓ̈ⲛⲉϫⲧⲁϥ", "", "", "to spit"]) + let v = native_list_append(v, ["ⲥⲉⲧⲧⲁϥ", "verb", "ϯⲥⲉⲧⲧⲁϥ", "ⲛⲉⲓ̈ⲥⲉⲧⲧⲁϥ", "", "", "to spit"]) + let v = native_list_append(v, ["ⲛⲉϫ-", "verb", "nej-", "", "", "", "nominal state of"]) + let v = native_list_append(v, ["ⲥⲉⲧ-", "verb", "set-", "", "", "", "nominal state of"]) + let v = native_list_append(v, ["ⲛⲟⲩϫⲉ", "verb", "ϯⲛⲟⲩϫⲉ", "ⲛⲉⲓ̈ⲛⲟⲩϫⲉ", "", "", "to throw cast"]) + let v = native_list_append(v, ["ⲛⲟⲩϫ", "verb", "ϯⲛⲟⲩϫ", "ⲛⲁⲓⲛⲟⲩϫ", "", "", "to throw cast"]) + let v = native_list_append(v, ["ⲥⲟⲟⲩⲛ", "verb", "ϯⲥⲟⲟⲩⲛ", "ⲛⲉⲓ̈ⲥⲟⲟⲩⲛ", "", "", "to know"]) + let v = native_list_append(v, ["ⲧⲟⲩⲟⲩⲃⲉ", "verb", "ϯⲧⲟⲩⲟⲩⲃⲉ", "ⲛⲁⲓ̈ⲧⲟⲩⲟⲩⲃⲉ", "", "", "to repay requite"]) + let v = native_list_append(v, ["ⲧⲱⲱⲃⲉ", "verb", "ϯⲧⲱⲱⲃⲉ", "ⲛⲉⲓ̈ⲧⲱⲱⲃⲉ", "", "", "to repay requite"]) + let v = native_list_append(v, ["ⲧⲱⲃ", "verb", "ϯⲧⲱⲃ", "ⲛⲁⲓⲧⲱⲃ", "", "", "to repay requite"]) + let v = native_list_append(v, ["ⲧⲱⲡ", "verb", "ϯⲧⲱⲡ", "ⲛⲁⲓⲧⲱⲡ", "", "", "to repay requite"]) + let v = native_list_append(v, ["ⲧⲱⲱⲃⲓ", "verb", "ϯⲧⲱⲱⲃⲓ", "ⲛⲁⲓⲧⲱⲱⲃⲓ", "", "", "to repay requite"]) + let v = native_list_append(v, ["ⲧⲟⲩⲃⲉ", "verb", "toube", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲧⲱϩ", "verb", "ϯⲧⲱϩ", "ⲛⲁⲓⲧⲱϩ", "", "", "to be mixed"]) + let v = native_list_append(v, ["ⲧⲁϩⲧϩ", "verb", "ϯⲧⲁϩⲧϩ", "ⲛⲁⲓⲧⲁϩⲧϩ", "", "", "to be mixed"]) + let v = native_list_append(v, ["ⲱⲗⲕ", "verb", "ϯⲱⲗⲕ", "ⲛⲁⲓ̈ⲱⲗⲕ", "", "", "to be bent"]) + let v = native_list_append(v, ["ϯⲫⲓ", "verb", "ϯϯⲫⲓ", "ⲛⲁⲓϯⲫⲓ", "", "", "to kiss"]) + let v = native_list_append(v, ["ϯⲡⲓⲉⲓ", "verb", "ϯϯⲡⲓⲉⲓ", "ⲛⲁⲓ̈ϯⲡⲓⲉⲓ", "", "", "to kiss"]) + let v = native_list_append(v, ["ⲑⲱϧ", "verb", "ϯⲑⲱϧ", "ⲛⲁⲓⲑⲱϧ", "", "", "to be mixed"]) + let v = native_list_append(v, ["ⲑⲟϧⲧⲉϧ", "verb", "ϯⲑⲟϧⲧⲉϧ", "ⲛⲁⲓⲑⲟϧⲧⲉϧ", "", "", "to mix confuse"]) + let v = native_list_append(v, ["ⲧⲱϩⲥ", "verb", "ϯⲧⲱϩⲥ", "ⲛⲁⲓ̈ⲧⲱϩⲥ", "", "", "to anoint"]) + let v = native_list_append(v, ["ⲑⲱϩⲥ", "verb", "ϯⲑⲱϩⲥ", "ⲛⲁⲓ̈ⲑⲱϩⲥ", "", "", "to anoint"]) + let v = native_list_append(v, ["ϩⲟⲧϩⲧ", "verb", "ϯϩⲟⲧϩⲧ", "ⲛⲉⲓ̈ϩⲟⲧϩⲧ", "", "", "to inquire examine"]) + let v = native_list_append(v, ["ϧⲟⲧϧⲉⲧ", "verb", "ϯϧⲟⲧϧⲉⲧ", "ⲛⲁⲓϧⲟⲧϧⲉⲧ", "", "", "to inquire examine"]) + let v = native_list_append(v, ["ϩⲁⲧϩⲉⲧ", "verb", "ϯϩⲁⲧϩⲉⲧ", "ⲛⲁⲓϩⲁⲧϩⲉⲧ", "", "", "to inquire examine"]) + let v = native_list_append(v, ["ϩⲁⲧϩⲧ", "verb", "ϯϩⲁⲧϩⲧ", "ⲛⲉⲓ̈ϩⲁⲧϩⲧ", "", "", "to inquire examine"]) + let v = native_list_append(v, ["ⳉⲁⲧⳉⲧ", "verb", "ϯⳉⲁⲧⳉⲧ", "ⲛⲁⲓ̈ⳉⲁⲧⳉⲧ", "", "", "to inquire examine"]) + let v = native_list_append(v, ["ⲥⲟⲃⲥⲉⲃ", "verb", "sobseb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲩⲟϣⲟⲩⲉϣ", "verb", "ϯⲟⲩⲟϣⲟⲩⲉϣ", "ⲛⲁⲓⲟⲩⲟϣⲟⲩⲉϣ", "", "", "to strike thresh"]) + let v = native_list_append(v, ["ⲃⲟϣⲃⲉϣ", "verb", "bošbeš", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲩⲉϣⲟⲩⲉϣ", "verb", "ouešoueš", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲩⲉϣⲟⲩⲱϣ", "verb", "ouešouōš", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϧⲱⲕⲓ", "verb", "ϯϧⲱⲕⲓ", "ⲛⲁⲓϧⲱⲕⲓ", "", "", "to scrape scratch"]) + let v = native_list_append(v, ["ⲃⲱⲕⲉ", "verb", "bōke", "ⲃⲁⲕ-", "", "", "to tan"]) + let v = native_list_append(v, ["ϣⲟⲣϣⲣ", "verb", "ϯϣⲟⲣϣⲣ", "ⲛⲉⲓ̈ϣⲟⲣϣⲣ", "", "", "to upset overturn"]) + let v = native_list_append(v, ["ϣⲟⲣϣⲉⲣ", "verb", "ϯϣⲟⲣϣⲉⲣ", "ⲛⲁⲓϣⲟⲣϣⲉⲣ", "", "", "to upset overturn"]) + let v = native_list_append(v, ["ϣⲁⲗϣⲉⲗ", "verb", "ϯϣⲁⲗϣⲉⲗ", "ⲛⲁⲓϣⲁⲗϣⲉⲗ", "", "", "to upset overturn"]) + let v = native_list_append(v, ["ϣⲁⲣϣⲣ", "verb", "ϯϣⲁⲣϣⲣ", "ⲛⲉⲓ̈ϣⲁⲣϣⲣ", "", "", "to upset overturn"]) + let v = native_list_append(v, ["ⳉⲁⲣⳉⲣⲉ", "verb", "ϯⳉⲁⲣⳉⲣⲉ", "ⲛⲁⲓ̈ⳉⲁⲣⳉⲣⲉ", "", "", "to upset overturn"]) + let v = native_list_append(v, ["ⳉⲓⲥⲉ", "verb", "ϯⳉⲓⲥⲉ", "ⲛⲁⲓ̈ⳉⲓⲥⲉ", "", "", "to toil be"]) + let v = native_list_append(v, ["ϩⲓⲥⲉ", "verb", "ϯϩⲓⲥⲉ", "ⲛⲉⲓ̈ϩⲓⲥⲉ", "", "", "to toil be"]) + let v = native_list_append(v, ["ϧⲓⲥⲓ", "verb", "ϯϧⲓⲥⲓ", "ⲛⲁⲓϧⲓⲥⲓ", "", "", "to toil be"]) + let v = native_list_append(v, ["ϩⲓⲥⲓ", "verb", "ϯϩⲓⲥⲓ", "ⲛⲁⲓϩⲓⲥⲓ", "", "", "to toil be"]) + let v = native_list_append(v, ["ⲥⲕⲟⲣⲕⲣ", "verb", "ϯⲥⲕⲟⲣⲕⲣ", "ⲛⲉⲓ̈ⲥⲕⲟⲣⲕⲣ", "", "", "to roll be"]) + let v = native_list_append(v, ["ⲥⲕⲉⲣⲕⲉⲣ", "verb", "ϯⲥⲕⲉⲣⲕⲉⲣ", "ⲛⲁⲓⲥⲕⲉⲣⲕⲉⲣ", "", "", "to roll be"]) + let v = native_list_append(v, ["ⲥⲕⲁⲗⲕⲗ", "verb", "ϯⲥⲕⲁⲗⲕⲗ", "ⲛⲁⲓⲥⲕⲁⲗⲕⲗ", "", "", "to roll be"]) + let v = native_list_append(v, ["ⲥⲕⲁⲣⲕⲣⲉ", "verb", "ϯⲥⲕⲁⲣⲕⲣⲉ", "ⲛⲁⲓ̈ⲥⲕⲁⲣⲕⲣⲉ", "", "", "to roll be"]) + let v = native_list_append(v, ["ⲥⲱϩⲣ", "verb", "ϯⲥⲱϩⲣ", "ⲛⲉⲓ̈ⲥⲱϩⲣ", "", "", "to sweep"]) + let v = native_list_append(v, ["ⲥⲱⲣϩ", "verb", "ϯⲥⲱⲣϩ", "ⲛⲁⲓⲥⲱⲣϩ", "", "", "to sweep"]) + let v = native_list_append(v, ["ⲥⲱϩⲣⲉ", "verb", "ϯⲥⲱϩⲣⲉ", "ⲛⲉⲓ̈ⲥⲱϩⲣⲉ", "", "", "to sweep"]) + let v = native_list_append(v, ["ϣⲁ", "verb", "ϯϣⲁ", "ⲛⲉⲓ̈ϣⲁ", "", "", "to rise of"]) + let v = native_list_append(v, ["ϣⲱϣ", "verb", "ϯϣⲱϣ", "ⲛⲁⲓϣⲱϣ", "", "", "to be despised"]) + let v = native_list_append(v, ["ⳉⲱⳉ", "verb", "ϯⳉⲱⳉ", "ⲛⲁⲓ̈ⳉⲱⳉ", "", "", "to scatter spread"]) + let v = native_list_append(v, ["ϣⲟⲩϣⲟⲩ", "verb", "ϯϣⲟⲩϣⲟⲩ", "ⲛⲁⲓϣⲟⲩϣⲟⲩ", "", "", "to boast"]) + let v = native_list_append(v, ["ⳉⲁⲉ", "verb", "ϯⳉⲁⲉ", "ⲛⲁⲓ̈ⳉⲁⲉ", "", "", "to rise of"]) + let v = native_list_append(v, ["ⲛⲉⲓ", "verb", "nei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲁⲗⲏⲓ", "verb", "ϯⲁⲗⲏⲓ", "ⲛⲁⲓⲁⲗⲏⲓ", "", "", "to mount board"]) + let v = native_list_append(v, ["ⲁⲗⲉ", "verb", "ϯⲁⲗⲉ", "ⲛⲉⲓ̈ⲁⲗⲉ", "", "", "to mount board"]) + let v = native_list_append(v, ["ⲁⲗⲏ", "verb", "ϯⲁⲗⲏ", "ⲛⲁⲓⲁⲗⲏ", "", "", "to mount board"]) + let v = native_list_append(v, ["ⲉⲓⲃⲉ", "verb", "ϯⲉⲓⲃⲉ", "ⲛⲁⲓ̈ⲉⲓⲃⲉ", "", "", "to thirst be"]) + let v = native_list_append(v, ["ⲓⲃⲓ", "verb", "ϯⲓⲃⲓ", "ⲛⲁⲓⲓⲃⲓ", "", "", "to thirst be"]) + let v = native_list_append(v, ["ⲡⲱϩⲥ", "verb", "ϯⲡⲱϩⲥ", "ⲛⲁⲓ̈ⲡⲱϩⲥ", "", "", "to bite"]) + let v = native_list_append(v, ["ⲡⲱⲥϩ", "verb", "pōsh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲫⲱϣ", "verb", "ϯⲫⲱϣ", "ⲛⲁⲓⲫⲱϣ", "", "", "to divide"]) + let v = native_list_append(v, ["ⲡⲱϣ", "verb", "ϯⲡⲱϣ", "ⲛⲁⲓ̈ⲡⲱϣ", "", "", "to divide"]) + let v = native_list_append(v, ["ⲡⲱϣⲉ", "verb", "pōše", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲱϥ", "verb", "ϯⲱϥ", "ⲛⲁⲓ̈ⲱϥ", "", "", "to press"]) + let v = native_list_append(v, ["ⲱⲃ", "verb", "ϯⲱⲃ", "ⲛⲉⲓ̈ⲱⲃ", "", "", "to press"]) + let v = native_list_append(v, ["ⲱϥⲓ", "verb", "ϯⲱϥⲓ", "ⲛⲁⲓⲱϥⲓ", "", "", "to press"]) + let v = native_list_append(v, ["ⲱϥⲉ", "verb", "ϯⲱϥⲉ", "ⲛⲉⲓ̈ⲱϥⲉ", "", "", "to press"]) + let v = native_list_append(v, ["ⲱⲃⲉ", "verb", "ϯⲱⲃⲉ", "ⲛⲉⲓ̈ⲱⲃⲉ", "", "", "to press"]) + let v = native_list_append(v, ["ⲧⲱⲙ", "verb", "ϯⲧⲱⲙ", "ⲛⲁⲓ̈ⲧⲱⲙ", "", "", "to shut"]) + let v = native_list_append(v, ["ⲑⲱⲙ", "verb", "ϯⲑⲱⲙ", "ⲛⲁⲓⲑⲱⲙ", "", "", "to shut"]) + let v = native_list_append(v, ["ⲓⲱⲥ", "verb", "ϯⲓⲱⲥ", "ⲛⲁⲓⲓⲱⲥ", "", "", "to hasten be"]) + let v = native_list_append(v, ["ⲛⲉϩⲡⲉ", "verb", "ϯⲛⲉϩⲡⲉ", "ⲛⲁⲓ̈ⲛⲉϩⲡⲉ", "", "", "to mourn"]) + let v = native_list_append(v, ["ⲛⲉϩⲡⲓ", "verb", "ϯⲛⲉϩⲡⲓ", "ⲛⲁⲓⲛⲉϩⲡⲓ", "", "", "to mourn"]) + let v = native_list_append(v, ["ⲑⲟϥⲧⲉϥ", "verb", "ϯⲑⲟϥⲧⲉϥ", "ⲛⲁⲓⲑⲟϥⲧⲉϥ", "", "", "to let fall"]) + let v = native_list_append(v, ["ⲥⲛⲁⲧ", "verb", "ϯⲥⲛⲁⲧ", "ⲛⲉⲓ̈ⲥⲛⲁⲧ", "", "", "to fear"]) + let v = native_list_append(v, ["ⲥⲁⲁⲛϣ", "verb", "saanš", "", "", "", "nourish"]) + let v = native_list_append(v, ["ⲧⲁⲕⲟ", "verb", "tako", "", "", "", "destroy"]) + let v = native_list_append(v, ["ⲙⲡϥⲥⲱⲧⲙ", "verb", "mpfsōtm", "", "", "", "he did not"]) + let v = native_list_append(v, ["ⲥⲧⲁⲥⲓⲁⲍⲉ", "verb", "ϯⲥⲧⲁⲥⲓⲁⲍⲉ", "ⲛⲉⲓ̈ⲥⲧⲁⲥⲓⲁⲍⲉ", "", "", "rebel rise up."]) + let v = native_list_append(v, ["ϭⲁϧⲉⲙ", "verb", "čaxem", "ϫⲱϩⲙ̄", "", "", "to be impure"]) + let v = native_list_append(v, ["ϣⲓⲛⲉ", "verb", "ϯϣⲓⲛⲉ", "ⲛⲉⲓ̈ϣⲓⲛⲉ", "", "", "to search for"]) + let v = native_list_append(v, ["ⲡⲉϫⲁ⸗", "verb", "ⲡⲉϫⲁ⸗", "", "", "", "said"]) + let v = native_list_append(v, ["ⲥⲱϣⲙ", "verb", "ϯⲥⲱϣⲙ", "ⲛⲉⲓ̈ⲥⲱϣⲙ", "", "", "to be hot"]) + let v = native_list_append(v, ["ⲁⲥⲡⲁⲍⲉ", "verb", "ϯⲁⲥⲡⲁⲍⲉ", "ⲛⲉⲓ̈ⲁⲥⲡⲁⲍⲉ", "", "", "to welcome to"]) + let v = native_list_append(v, ["ⲡⲱϩ", "verb", "ϯⲡⲱϩ", "ⲛⲉⲓ̈ⲡⲱϩ", "", "", "to reach to"]) + let v = native_list_append(v, ["ⲧⲱⲛ", "verb", "tōn", "of ⲧⲱⲟⲩⲛ", "", "", "to rise to"]) + let v = native_list_append(v, ["ⲧⲱⲟⲩⲛ", "verb", "ϯⲧⲱⲟⲩⲛ", "ⲛⲉⲓ̈ⲧⲱⲟⲩⲛ", "", "", "to rise to"]) + let v = native_list_append(v, ["ⲁⲡⲁⲛⲧⲁ", "verb", "ϯⲁⲡⲁⲛⲧⲁ", "ⲛⲉⲓ̈ⲁⲡⲁⲛⲧⲁ", "", "", "to meet to"]) + let v = native_list_append(v, ["ⲧⲱϣ", "verb", "ϯⲧⲱϣ", "ⲛⲁⲓⲧⲱϣ", "", "", "to be boundary"]) + let v = native_list_append(v, ["ⲟⲩⲛⲟϥ", "verb", "ϯⲟⲩⲛⲟϥ", "ⲛⲁⲓⲟⲩⲛⲟϥ", "", "", "to rejoice"]) + let v = native_list_append(v, ["ⲣⲁϣⲉ", "verb", "ϯⲣⲁϣⲉ", "ⲛⲉⲓ̈ⲣⲁϣⲉ", "", "", "to rejoice to"]) + let v = native_list_append(v, ["ⲁⲩϯ", "verb", "auti", "", "", "", "third person plural"]) + let v = native_list_append(v, ["ⲕⲉⲗⲉⲩⲉ", "verb", "ϯⲕⲉⲗⲉⲩⲉ", "ⲛⲉⲓ̈ⲕⲉⲗⲉⲩⲉ", "", "", "to command to"]) + let v = native_list_append(v, ["ϩⲩⲡⲟⲅⲓⲥⲑⲁⲓ", "verb", "hupogisthai", "ϩⲩⲡⲟⲕⲉⲓⲥⲑⲁⲓ", "ϩⲩⲡⲟⲕⲓⲥⲑⲉ", "", "to be subjected"]) + let v = native_list_append(v, ["ⲙⲟⲛⲙⲉⲛ", "verb", "ϯⲙⲟⲛⲙⲉⲛ", "ⲛⲁⲓⲙⲟⲛⲙⲉⲛ", "", "", "to shake be"]) + let v = native_list_append(v, ["ⲙⲉϣⲁⲕ", "verb", "mešak", "ⲙⲉⳉⲉ-", "ⲙⲉⳉⲉ⸗", "", "you sing. don’t"]) + let v = native_list_append(v, ["ⲥϩⲓⲙⲉ", "adj", "ⲥϩⲓⲙⲉ", "", "", "", "female"]) + let v = native_list_append(v, ["ⲣⲣⲟ", "adj", "ⲣⲣⲟ", "", "", "", "royal"]) + let v = native_list_append(v, ["ϩⲁⲅⲓⲟⲥ", "adj", "ϩⲁⲅⲓⲟⲥ", "", "", "", "holy sacred"]) + let v = native_list_append(v, ["ⲁⲛⲟⲙⲟⲥ", "adj", "ⲁⲛⲟⲙⲟⲥ", "", "", "", "lawless criminal illegal"]) + let v = native_list_append(v, ["ⲣⲱⲙⲉ", "adj", "ⲣⲱⲙⲉ", "", "", "", "human"]) + let v = native_list_append(v, ["ⲉⲣⲏⲙⲟⲥ", "adj", "ⲉⲣⲏⲙⲟⲥ", "", "", "", "deserted desolate desert"]) + let v = native_list_append(v, ["ϩⲟⲟⲩⲧ", "adj", "ϩⲟⲟⲩⲧ", "", "", "", "male"]) + let v = native_list_append(v, ["ⲙⲉ", "adj", "ⲙⲉ", "", "", "", "truthful righteous"]) + let v = native_list_append(v, ["ϭⲟⲙ", "adj", "ϭⲟⲙ", "", "", "", "powerful mighty strong"]) + let v = native_list_append(v, ["ϩⲁⲧ", "adj", "ϩⲁⲧ", "", "", "", "white"]) + let v = native_list_append(v, ["ⲗⲱⲙⲓ", "adj", "ⲗⲱⲙⲓ", "", "", "", "human"]) + let v = native_list_append(v, ["ϩⲓⲕⲁⲛⲟⲥ", "adj", "ϩⲓⲕⲁⲛⲟⲥ", "", "", "", "worthy deserving"]) + let v = native_list_append(v, ["ⲉⲩⲥⲉⲃⲏⲥ", "adj", "ⲉⲩⲥⲉⲃⲏⲥ", "", "", "", "pious devout."]) + let v = native_list_append(v, ["ⲁⲥⲉⲃⲏⲥ", "adj", "ⲁⲥⲉⲃⲏⲥ", "", "", "", "impious undevout."]) + let v = native_list_append(v, ["ⲥⲟⲫⲟⲥ", "adj", "ⲥⲟⲫⲟⲥ", "", "", "", "wise sage"]) + let v = native_list_append(v, ["ⲇⲓⲕⲁⲓⲟⲥ", "adj", "ⲇⲓⲕⲁⲓⲟⲥ", "", "", "", "just right righteous"]) + let v = native_list_append(v, ["ⲙⲁⲕⲁⲣⲓⲟⲥ", "adj", "ⲙⲁⲕⲁⲣⲓⲟⲥ", "", "", "", "blessed holy"]) + let v = native_list_append(v, ["ⲁⲯⲩⲭⲟⲛ", "adj", "ⲁⲯⲩⲭⲟⲛ", "", "", "", "inanimate"]) + let v = native_list_append(v, ["ⲁⲝⲓⲟⲥ", "adj", "ⲁⲝⲓⲟⲥ", "", "", "", "worthy"]) + let v = native_list_append(v, ["ⲓⲟⲩⲇⲁⲓ", "adj", "ⲓⲟⲩⲇⲁⲓ", "", "", "", "Jewish"]) + let v = native_list_append(v, ["ⲁⲅⲁⲑⲟⲥ", "adj", "ⲁⲅⲁⲑⲟⲥ", "", "", "", "good"]) + let v = native_list_append(v, ["ⲳⲕⲧⲟⲕ", "adj", "ⲳⲕⲧⲟⲕ", "", "", "", "premature"]) + let v = native_list_append(v, ["ⲫⲉ", "adj", "ⲫⲉ", "", "", "", "Of the colour"]) + let v = native_list_append(v, ["ⲉⲛⲉϩ", "adj", "ⲉⲛⲉϩ", "", "", "", "eternal"]) + let v = native_list_append(v, ["ϣⲉⲙⲙⲟ", "adj", "ϣⲉⲙⲙⲟ", "", "", "", "foreign"]) + let v = native_list_append(v, ["ϣⲁⲣⲓ", "adj", "ϣⲁⲣⲓ", "", "", "", "red"]) + let v = native_list_append(v, ["ⲁⲧⲥⲛⲟϥ", "adj", "ⲁⲧⲥⲛⲟϥ", "", "", "", "bloodless without blood"]) + let v = native_list_append(v, ["ⲕⲟⲩϫⲓ", "adj", "ⲕⲟⲩϫⲓ", "", "", "", "small"]) + let v = native_list_append(v, ["ⲣⲁⲙⲁⲟ", "adj", "ⲣⲁⲙⲁⲟ", "", "", "", "rich"]) + let v = native_list_append(v, ["ⲃⲉⲣⲓ", "adj", "ⲃⲉⲣⲓ", "", "", "", "new young"]) + let v = native_list_append(v, ["ⲥⲁⲃⲉ", "adj", "ⲥⲁⲃⲉ", "", "", "", "wise"]) + let v = native_list_append(v, ["ⲛⲁⲛⲉ", "adj", "ⲛⲁⲛⲉ", "", "", "", "good"]) + let v = native_list_append(v, ["ⲛⲓϣϯ", "adj", "ⲛⲓϣϯ", "", "", "", "big great."]) + let v = native_list_append(v, ["ϩⲏⲕⲓ", "adj", "ϩⲏⲕⲓ", "", "", "", "poor"]) + let v = native_list_append(v, ["ⲁⲡⲁⲥ", "adj", "ⲁⲡⲁⲥ", "", "", "", "old"]) + let v = native_list_append(v, ["ⲁϣⲓⲣⲓ", "adj", "ⲁϣⲓⲣⲓ", "", "", "", "diligent"]) + let v = native_list_append(v, ["ϫⲟⲙ", "adj", "ϫⲟⲙ", "", "", "", "powerful mighty strong"]) + let v = native_list_append(v, ["ϭⲏϫⲓ", "adj", "ϭⲏϫⲓ", "", "", "", "purple"]) + let v = native_list_append(v, ["ϣⲏⲙ", "adj", "ϣⲏⲙ", "", "", "", "small little placed"]) + let v = native_list_append(v, ["ⳉⲏⲙ", "adj", "ⳉⲏⲙ", "", "", "", "small little placed"]) + let v = native_list_append(v, ["ϩⲉⲃⲣⲁⲓⲟⲥ", "adj", "ϩⲉⲃⲣⲁⲓⲟⲥ", "", "", "", "Hebrew"]) + let v = native_list_append(v, ["ϩⲉⲃⲣⲉⲟⲥ", "adj", "ϩⲉⲃⲣⲉⲟⲥ", "", "", "", "Hebrew"]) + let v = native_list_append(v, ["ⲥⲙⲏ", "adj", "ⲥⲙⲏ", "", "", "", "famed"]) + let v = native_list_append(v, ["ⲉⲑⲱϣ", "adj", "ⲉⲑⲱϣ", "", "", "", "Ethiopian Nubian"]) + let v = native_list_append(v, ["ⲛⲁⲏⲧ", "adj", "ⲛⲁⲏⲧ", "", "", "", "merciful compassionate"]) + let v = native_list_append(v, ["ⲉⲧⲉ-", "adj", "ⲉⲧⲉ-", "", "", "", "who that which"]) + let v = native_list_append(v, ["ⲉⲧ-", "adj", "ⲉⲧ-", "", "", "", "who that which"]) + let v = native_list_append(v, ["ⲉⲑ-", "adj", "ⲉⲑ-", "", "", "", "who that which"]) + let v = native_list_append(v, ["ⲏϫⲓ", "adj", "ⲏϫⲓ", "", "", "", "green"]) + let v = native_list_append(v, ["ⲁⲑⲛⲁϩϯ", "adj", "ⲁⲑⲛⲁϩϯ", "", "", "", "nonbelieving"]) + let v = native_list_append(v, ["ⲁⲣⲭⲁⲓⲟⲥ", "adj", "ⲁⲣⲭⲁⲓⲟⲥ", "", "", "", "ancient"]) + let v = native_list_append(v, ["ⲛⲟⲩϥⲉ", "adj", "ⲛⲟⲩϥⲉ", "", "", "", "good"]) + let v = native_list_append(v, ["ⲛⲟⲩϥⲓ", "adj", "ⲛⲟⲩϥⲓ", "", "", "", "good"]) + let v = native_list_append(v, ["ⲃⲣⲣⲉ", "adj", "ⲃⲣⲣⲉ", "", "", "", "new young"]) + let v = native_list_append(v, ["ⲗⲱⲓϩⲓ", "adj", "ⲗⲱⲓϩⲓ", "", "", "", "muddy dirty"]) + let v = native_list_append(v, ["ⲗⲟⲓϩⲉ", "adj", "ⲗⲟⲓϩⲉ", "", "", "", "muddy dirty"]) + let v = native_list_append(v, ["ϫⲏϭⲉ", "adj", "ϫⲏϭⲉ", "", "", "", "purple"]) + let v = native_list_append(v, ["ⲁ̀ⲥⲓⲗⲱⲛ", "adj", "ⲁ̀ⲥⲓⲗⲱⲛ", "", "", "", "blue"]) + let v = native_list_append(v, ["ϩⲉⲛⲧⲟⲩ", "adj", "ϩⲉⲛⲧⲟⲩ", "", "", "", "Indian"]) + let v = native_list_append(v, ["ϣⲓⲏ", "adj", "ϣⲓⲏ", "", "", "", "long"]) + let v = native_list_append(v, ["ⲁⲟⲩⲓⲛ", "adj", "ⲁⲟⲩⲓⲛ", "", "", "", "yellow"]) + let v = native_list_append(v, ["ⲡⲉⲣⲥⲏⲥ", "adj", "ⲡⲉⲣⲥⲏⲥ", "", "", "", "Persian"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲉⲙ", "adj", "ⲛⲟⲩⲧⲉⲙ", "", "", "", "sweet"]) + let v = native_list_append(v, ["ⲛⲟⲩⲧⲙ", "adj", "ⲛⲟⲩⲧⲙ", "", "", "", "sweet"]) + let v = native_list_append(v, ["ⲓⲱⲓⲁⲥ", "adj", "ⲓⲱⲓⲁⲥ", "", "", "", "violet"]) + let v = native_list_append(v, ["ⲃⲉⲣⲧ", "adj", "ⲃⲉⲣⲧ", "", "", "", "pink"]) + let v = native_list_append(v, ["ⲙⲁⲛⲙⲟⲛ", "adj", "ⲙⲁⲛⲙⲟⲛ", "", "", "", "orange color"]) + let v = native_list_append(v, ["ⲕⲟⲣⲧⲓⲙⲟⲥ", "adj", "ⲕⲟⲣⲧⲓⲙⲟⲥ", "", "", "", "lime color"]) + let v = native_list_append(v, ["ⲕⲁⲩⲕⲟⲥ", "adj", "ⲕⲁⲩⲕⲟⲥ", "", "", "", "Caucasian"]) + let v = native_list_append(v, ["ⲧⲟⲩⲝ", "adj", "ⲧⲟⲩⲝ", "", "", "", "Turkish"]) + let v = native_list_append(v, ["ⲃⲗⲗⲉ", "adj", "ⲃⲗⲗⲉ", "", "", "", "blind"]) + let v = native_list_append(v, ["ⲉϣⲟⲩⲣ", "adj", "ⲉϣⲟⲩⲣ", "", "", "", "Assyrian"]) + let v = native_list_append(v, ["ⲫⲁⲓⲁⲧ", "adj", "ⲫⲁⲓⲁⲧ", "", "", "", "Libyan"]) + let v = native_list_append(v, ["ⲧⲉⲣⲧⲟⲩⲣⲟⲥ", "adj", "ⲧⲉⲣⲧⲟⲩⲣⲟⲥ", "", "", "", "Tatar"]) + let v = native_list_append(v, ["ⲁⲥⲥⲩⲣⲓⲟⲥ", "adj", "ⲁⲥⲥⲩⲣⲓⲟⲥ", "", "", "", "Assyrian Syriac"]) + let v = native_list_append(v, ["ⲃⲉⲣⲟⲥ", "adj", "ⲃⲉⲣⲟⲥ", "", "", "", "Armenian"]) + let v = native_list_append(v, ["ⲭⲁⲙⲉ", "adj", "ⲭⲁⲙⲉ", "", "", "", "black color"]) + let v = native_list_append(v, ["ⲁϭⲓⲛ", "adj", "ⲁϭⲓⲛ", "", "", "", "green"]) + let v = native_list_append(v, ["ϩⲟⲩⲧⲥϩⲓⲙⲉ", "adj", "ϩⲟⲩⲧⲥϩⲓⲙⲉ", "", "", "", "androgyne."]) + let v = native_list_append(v, ["ϩⲟⲩⲧ ⲥϩⲓⲙⲉ", "adj", "ϩⲟⲩⲧ ⲥϩⲓⲙⲉ", "", "", "", "androgyne."]) + let v = native_list_append(v, ["ⲟ", "adj", "ⲟ", "", "", "", "great important."]) + let v = native_list_append(v, ["ⲙⲁⲗⲁⲕⲟⲥ", "adj", "ⲙⲁⲗⲁⲕⲟⲥ", "", "", "", "effeminate"]) + let v = native_list_append(v, ["ⲕⲟⲕⲕⲟⲥ", "adj", "ⲕⲟⲕⲕⲟⲥ", "", "", "", "scarlet"]) + let v = native_list_append(v, ["ⲟⲩⲛⲁⲙ", "adj", "ⲟⲩⲛⲁⲙ", "", "", "", "right"]) + let v = native_list_append(v, ["ϭⲁϫⲏ", "adj", "ϭⲁϫⲏ", "", "", "", "left"]) + let v = native_list_append(v, ["ⲕⲁⲗⲗⲁⲉⲓⲛⲟⲥ", "adj", "ⲕⲁⲗⲗⲁⲉⲓⲛⲟⲥ", "", "", "", "Of the colour"]) + let v = native_list_append(v, ["ⲙⲏⲇⲟⲥ", "adj", "ⲙⲏⲇⲟⲥ", "", "", "", "Mede."]) + let v = native_list_append(v, ["ⲁⲧϭⲱⲧⲡ", "adj", "ⲁⲧϭⲱⲧⲡ", "", "", "", "unconquered invincible invictus"]) + let v = native_list_append(v, ["ⲓⲱⲭⲣⲱⲟⲛ", "adj", "ⲓⲱⲭⲣⲱⲟⲛ", "", "", "", "azure lapis lazuli"]) + let v = native_list_append(v, ["ⲁⲣⲭⲉⲟⲥ", "adj", "ⲁⲣⲭⲉⲟⲥ", "", "", "", "ancient"]) + let v = native_list_append(v, ["ⲅⲁⲗⲗⲓⲕⲟⲥ", "adj", "ⲅⲁⲗⲗⲓⲕⲟⲥ", "", "", "", "Gaulish"]) + let v = native_list_append(v, ["ⲥⲓⲙⲓ", "adj", "ⲥⲓⲙⲓ", "", "", "", "female"]) + let v = native_list_append(v, ["ⲥⲓⲙⲉⲓ", "adj", "ⲥⲓⲙⲉⲓ", "", "", "", "female"]) + let v = native_list_append(v, ["ϩⲁⲟⲩⲧ", "adj", "ϩⲁⲟⲩⲧ", "", "", "", "male"]) + let v = native_list_append(v, ["ϩⲁⲩⲧ", "adj", "ϩⲁⲩⲧ", "", "", "", "male"]) + let v = native_list_append(v, ["ⲁϣⲓⲗⲓ", "adj", "ⲁϣⲓⲗⲓ", "", "", "", "diligent"]) + let v = native_list_append(v, ["ϣⲓⲏⲉⲓ", "adj", "ϣⲓⲏⲉⲓ", "", "", "", "long"]) + let v = native_list_append(v, ["ⲕⲉⲙⲓ", "adj", "ⲕⲉⲙⲓ", "", "", "", "black color"]) + let v = native_list_append(v, ["ⲟⲩⲉⲣⲧ", "adj", "ⲟⲩⲉⲣⲧ", "", "", "", "pink"]) + let v = native_list_append(v, ["ϩⲉⲧ", "adj", "ϩⲉⲧ", "", "", "", "white"]) + let v = native_list_append(v, ["ϩⲏⲙ", "adj", "ϩⲏⲙ", "", "", "", "female"]) + let v = native_list_append(v, ["ⲡⲁⲓⲉⲧ", "adj", "ⲡⲁⲓⲉⲧ", "", "", "", "Libyan"]) + let v = native_list_append(v, ["ⲕⲉⲙ", "adj", "ⲕⲉⲙ", "", "", "", "black color"]) + let v = native_list_append(v, ["ⲁⲧⲥⲛⲁϥ", "adj", "ⲁⲧⲥⲛⲁϥ", "", "", "", "bloodless without blood"]) + let v = native_list_append(v, ["ⲁⲥ", "adj", "ⲁⲥ", "", "", "", "old."]) + let v = native_list_append(v, ["ⲉⲛⲉϩⲉ", "adj", "ⲉⲛⲉϩⲉ", "", "", "", "eternal"]) + let v = native_list_append(v, ["ⲉⲛⲏϩⲉ", "adj", "ⲉⲛⲏϩⲉ", "", "", "", "eternal"]) + let v = native_list_append(v, ["ϣⲓⲏⲉ", "adj", "ϣⲓⲏⲉ", "", "", "", "long"]) + let v = native_list_append(v, ["ⲉⲣⲣⲟ", "adj", "ⲉⲣⲣⲟ", "", "", "", "royal"]) + let v = native_list_append(v, ["ⲁϣⲓⲣⲉ", "adj", "ⲁϣⲓⲣⲉ", "", "", "", "diligent"]) + let v = native_list_append(v, ["ⲁⲃⲁⲥⲓⲗⲉⲩⲧⲟⲥ", "adj", "ⲁⲃⲁⲥⲓⲗⲉⲩⲧⲟⲥ", "", "", "", "unruled"]) + let v = native_list_append(v, ["ⲛⲉⲕⲣⲟⲛ", "adj", "ⲛⲉⲕⲣⲟⲛ", "", "", "", "dead"]) + let v = native_list_append(v, ["ⲉⲃⲓⲏⲛ", "adj", "ⲉⲃⲓⲏⲛ", "", "", "", "miserable wretched"]) + let v = native_list_append(v, ["ⲟⲩⲱⲃϣ", "adj", "ⲟⲩⲱⲃϣ", "", "", "", "white colour"]) + let v = native_list_append(v, ["ⲟⲩⲱⲃⳉ", "adj", "ⲟⲩⲱⲃⳉ", "", "", "", "white colour"]) + let v = native_list_append(v, ["ⲕⲣⲟϥ", "adj", "ⲕⲣⲟϥ", "", "", "", "guileful false"]) + let v = native_list_append(v, ["ⲕⲣⲁϥ", "adj", "ⲕⲣⲁϥ", "", "", "", "guileful false"]) + let v = native_list_append(v, ["ⲕⲗⲁϥ", "adj", "ⲕⲗⲁϥ", "", "", "", "guileful false"]) + let v = native_list_append(v, ["ⲭⲣⲟϥ", "adj", "ⲭⲣⲟϥ", "", "", "", "guileful false"]) + let v = native_list_append(v, ["ϭⲁⲙ", "adj", "ϭⲁⲙ", "", "", "", "powerful mighty strong"]) + let v = native_list_append(v, ["ϫⲁⲙ", "adj", "ϫⲁⲙ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲁⲧϫⲡⲟϥ", "adj", "ⲁⲧϫⲡⲟϥ", "", "", "", "unborn unbegotten"]) + let v = native_list_append(v, ["ⲁⲧⲉⲓⲙⲉ", "adj", "ⲁⲧⲉⲓⲙⲉ", "", "", "", "ignorant innocent"]) + let v = native_list_append(v, ["ⲁⲧⲉⲙⲓ", "adj", "ⲁⲧⲉⲙⲓ", "", "", "", "ignorant innocent"]) + let v = native_list_append(v, ["ⲁⲧⲓⲙⲓ", "adj", "ⲁⲧⲓⲙⲓ", "", "", "", "ignorant innocent"]) + let v = native_list_append(v, ["ⲁⲑⲙⲟⲩ", "adj", "ⲁⲑⲙⲟⲩ", "", "", "", "immortal"]) + let v = native_list_append(v, ["ⲁⲧⲙⲟⲩ", "adj", "ⲁⲧⲙⲟⲩ", "", "", "", "immortal"]) + let v = native_list_append(v, ["ⲕⲟⲩⲣ", "adj", "ⲕⲟⲩⲣ", "", "", "", "deaf"]) + let v = native_list_append(v, ["ⲕⲟⲩⲗ", "adj", "ⲕⲟⲩⲗ", "", "", "", "deaf"]) + let v = native_list_append(v, ["ⲁⲗ", "adj", "ⲁⲗ", "", "", "", "deaf"]) + let v = native_list_append(v, ["ⲑⲱⲣϣ", "adj", "ⲑⲱⲣϣ", "", "", "", "red"]) + let v = native_list_append(v, ["ⲧⲱⲣϣ", "adj", "ⲧⲱⲣϣ", "", "", "", "red"]) + let v = native_list_append(v, ["ⲁⲧⲥⲟⲩⲉⲛ", "adj", "ⲁⲧⲥⲟⲩⲉⲛ", "", "", "", "ignorant"]) + let v = native_list_append(v, ["ⲁⲧⲥⲟⲟⲩⲛ", "adj", "ⲁⲧⲥⲟⲟⲩⲛ", "", "", "", "ignorant"]) + let v = native_list_append(v, ["ⲗⲟⲉⲓϩⲉ", "adj", "ⲗⲟⲉⲓϩⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲗⲩϩϩⲉ", "adj", "ⲗⲩϩϩⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲛⲟϭ", "adj", "ⲛⲟϭ", "", "", "", "great large big"]) + let v = native_list_append(v, ["ⲉⲧⲛⲁⲛⲟⲩϥ", "adj", "ⲉⲧⲛⲁⲛⲟⲩϥ", "", "", "", "good fair."]) + let v = native_list_append(v, ["ⲕⲟⲩⲓ", "adj", "ⲕⲟⲩⲓ", "", "", "", "small little."]) + let v = native_list_append(v, ["ⲙⲟⲛⲙⲉⲛ", "adj", "ⲙⲟⲛⲙⲉⲛ", "", "", "", "twisted"]) + let v = native_list_append(v, ["◌̄", "other", "◌̄", "", "", "", "The supralinear stroke"]) + let v = native_list_append(v, ["ϣⲁϣϥ", "other", "ϣⲁϣϥ", "", "", "", "seven"]) + let v = native_list_append(v, ["ⲓ", "other", "ⲓ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["ⲥⲟⲟⲩ", "other", "ⲥⲟⲟⲩ", "", "", "", "six"]) + let v = native_list_append(v, ["ⲧⲓⲟⲩ", "other", "ⲧⲓⲟⲩ", "", "", "", "five"]) + let v = native_list_append(v, ["ϥⲧⲟⲩ", "other", "ϥⲧⲟⲩ", "", "", "", "four"]) + let v = native_list_append(v, ["ϣⲟⲙⲧ", "other", "ϣⲟⲙⲧ", "", "", "", "three"]) + let v = native_list_append(v, ["ⲥⲛⲁⲩ", "other", "ⲥⲛⲁⲩ", "", "", "", "two"]) + let v = native_list_append(v, ["ⲟⲩⲁⲓ", "other", "ⲟⲩⲁⲓ", "", "", "", "one"]) + let v = native_list_append(v, ["ϣⲙⲏⲛ", "other", "ϣⲙⲏⲛ", "", "", "", "eight"]) + let v = native_list_append(v, ["ⲯⲓⲧ", "other", "ⲯⲓⲧ", "", "", "", "nine"]) + let v = native_list_append(v, ["ⲙⲏⲧ", "other", "ⲙⲏⲧ", "", "", "", "ten."]) + let v = native_list_append(v, ["ⲟⲩⲁ", "other", "ⲟⲩⲁ", "", "", "", "one"]) + let v = native_list_append(v, ["ⲙⲛⲧ-", "other", "ⲙⲛⲧ-", "", "", "", "denominative prefix forming"]) + let v = native_list_append(v, ["ⲛ-", "other", "ⲛ-", "", "", "", "genitive marker for"]) + let v = native_list_append(v, ["ϯ-", "other", "ϯ-", "", "", "", "Nominal state of"]) + let v = native_list_append(v, ["ⲭⲉⲣⲉ", "other", "ⲭⲉⲣⲉ", "", "", "", "hello hail"]) + let v = native_list_append(v, ["Ϣ", "other", "Ϣ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ϣ", "other", "ϣ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ϥ", "other", "Ϥ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ϥ", "other", "ϥ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ϧ", "other", "Ϧ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ϧ", "other", "ϧ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["ϯ", "other", "ϯ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ϯ", "other", "Ϯ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ϭ", "other", "ϭ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ϩ", "other", "Ϩ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ϩ", "other", "ϩ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ϫ", "other", "Ϫ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ϫ", "other", "ϫ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ϭ", "other", "Ϭ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ⲑⲟⲩⲣⲉ-", "other", "ⲑⲟⲩⲣⲉ-", "", "", "", "more than"]) + let v = native_list_append(v, ["ⲏⲓ", "other", "ⲏⲓ", "", "", "", "O!"]) + let v = native_list_append(v, ["ⲓⲉ", "other", "ⲓⲉ", "", "", "", "surely"]) + let v = native_list_append(v, ["ⲉⲓⲥ", "other", "ⲉⲓⲥ", "", "", "", "lo behold"]) + let v = native_list_append(v, ["ⲓⲥ", "other", "ⲓⲥ", "", "", "", "lo behold"]) + let v = native_list_append(v, ["ⲙⲁ-", "other", "ⲙⲁ-", "", "", "", "place"]) + let v = native_list_append(v, ["ⲣⲉⲙ-", "other", "ⲣⲉⲙ-", "", "", "", "man of person"]) + let v = native_list_append(v, ["ⲣⲉϥ-", "other", "ⲣⲉϥ-", "", "", "", "forms agent nouns"]) + let v = native_list_append(v, ["ⲥⲁ-", "other", "ⲥⲁ-", "", "", "", "profession of"]) + let v = native_list_append(v, ["ϫⲓⲛ-", "other", "ϫⲓⲛ-", "", "", "", "Used to form"]) + let v = native_list_append(v, ["ⲙⲉⲧ-", "other", "ⲙⲉⲧ-", "", "", "", "denominative prefix forming"]) + let v = native_list_append(v, ["ϣⲉ", "other", "ϣⲉ", "", "", "", "one hundred"]) + let v = native_list_append(v, ["ⲉⲣ-", "other", "ⲉⲣ-", "", "", "", "Nominal state of"]) + let v = native_list_append(v, ["ϣ-", "other", "ϣ-", "", "", "", "Added to verbs"]) + let v = native_list_append(v, ["ϣⲉⲡ-", "other", "ϣⲉⲡ-", "", "", "", "Added to verbs"]) + let v = native_list_append(v, ["ϫⲉⲙ-", "other", "ϫⲉⲙ-", "", "", "", "Added to verbs"]) + let v = native_list_append(v, ["ϭⲓ-", "other", "ϭⲓ-", "", "", "", "Prefix formed from"]) + let v = native_list_append(v, ["ⲉⲃⲟⲗ-", "other", "ⲉⲃⲟⲗ-", "", "", "", "away"]) + let v = native_list_append(v, ["ⲁⲣⲉⲧⲉⲛⲉⲣ ⲟⲩ", "other", "ⲁⲣⲉⲧⲉⲛⲉⲣ ⲟⲩ", "", "", "", "how are you?"]) + let v = native_list_append(v, ["ⲁⲕⲉⲣ ⲟⲩ", "other", "ⲁⲕⲉⲣ ⲟⲩ", "", "", "", "how are you?"]) + let v = native_list_append(v, ["ⲁⲣⲉⲉⲣ ⲟⲩ", "other", "ⲁⲣⲉⲉⲣ ⲟⲩ", "", "", "", "how are you?"]) + let v = native_list_append(v, ["ϥⲁⲓ-", "other", "ϥⲁⲓ-", "", "", "", "Prefix formed from"]) + let v = native_list_append(v, ["ⲟⲩϫⲁⲓ", "other", "ⲟⲩϫⲁⲓ", "", "", "", "hello"]) + let v = native_list_append(v, ["ⲟⲩϫⲁⲓ ϧⲉⲛ ⲡϭⲟⲓⲥ", "other", "ⲟⲩϫⲁⲓ ϧⲉⲛ ⲡϭⲟⲓⲥ", "", "", "", "Literally well-being in"]) + let v = native_list_append(v, ["ⲁⲧϣ-", "other", "ⲁⲧϣ-", "", "", "", "Added to verbs"]) + let v = native_list_append(v, ["ⲁⲧ-", "other", "ⲁⲧ-", "", "", "", "without"]) + let v = native_list_append(v, ["ⲛⲟϥⲣⲓ", "other", "ⲛⲟϥⲣⲓ", "", "", "", "hello"]) + let v = native_list_append(v, ["ⲓⲥ ⲑⲛⲉⲓ", "other", "ⲓⲥ ⲑⲛⲉⲓ", "", "", "", "Meaning once upon"]) + let v = native_list_append(v, ["ⲭⲁⲓⲣⲉ", "other", "ⲭⲁⲓⲣⲉ", "", "", "", "hello hail"]) + let v = native_list_append(v, ["ϫⲟⲩⲱⲧ", "other", "ϫⲟⲩⲱⲧ", "", "", "", "twenty"]) + let v = native_list_append(v, ["ϣⲟ", "other", "ϣⲟ", "", "", "", "one thousand"]) + let v = native_list_append(v, ["ϥⲧⲟⲟⲩ", "other", "ϥⲧⲟⲟⲩ", "", "", "", "four"]) + let v = native_list_append(v, ["ⲁ", "other", "ⲁ", "", "", "", "The first letter"]) + let v = native_list_append(v, ["ϫⲱⲧ", "other", "ϫⲱⲧ", "", "", "", "twenty"]) + let v = native_list_append(v, ["⳥", "other", "⳥", "", "", "", "short for ⲙⲁⲣⲧⲩⲣⲓⲁ"]) + let v = native_list_append(v, ["⳧", "other", "⳧", "", "", "", "short for ⲥⲧⲁⲩⲣⲟⲥ"]) + let v = native_list_append(v, ["ϣⲉϣⲃ", "other", "ϣⲉϣⲃ", "", "", "", "seven"]) + let v = native_list_append(v, ["ϥⲧⲁⲩ", "other", "ϥⲧⲁⲩ", "", "", "", "four"]) + let v = native_list_append(v, ["ⲥⲛⲉⲩ", "other", "ⲥⲛⲉⲩ", "", "", "", "two"]) + let v = native_list_append(v, ["ⲟⲩⲉⲉⲓ", "other", "ⲟⲩⲉⲉⲓ", "", "", "", "one"]) + let v = native_list_append(v, ["ϣⲙⲟⲩⲛ", "other", "ϣⲙⲟⲩⲛ", "", "", "", "eight"]) + let v = native_list_append(v, ["ⲥⲁⲩ", "other", "ⲥⲁⲩ", "", "", "", "six"]) + let v = native_list_append(v, ["ⲥⲁϣϥ", "other", "ⲥⲁϣϥ", "", "", "", "seven"]) + let v = native_list_append(v, ["ϯⲟⲩ", "other", "ϯⲟⲩ", "", "", "", "five"]) + let v = native_list_append(v, ["ⲗⲉϥ-", "other", "ⲗⲉϥ-", "", "", "", "forms agent nouns"]) + let v = native_list_append(v, ["ⲥⲁⳉϥ", "other", "ⲥⲁⳉϥ", "", "", "", "seven"]) + let v = native_list_append(v, ["ⲛⲁⲛⲉ ⲧⲟⲟⲩⲓ", "other", "ⲛⲁⲛⲉ ⲧⲟⲟⲩⲓ", "", "", "", "ungrammatical good morning"]) + let v = native_list_append(v, ["ⲁ-", "other", "ⲁ-", "", "", "", "verbal prefix of"]) + let v = native_list_append(v, ["ⲁ⸗", "other", "ⲁ⸗", "", "", "", "verbal prefix of"]) + let v = native_list_append(v, ["ⲁϣ ⲡⲉ ⲡⲉⲕϩⲱⲃ", "other", "ⲁϣ ⲡⲉ ⲡⲉⲕϩⲱⲃ", "", "", "", "how are you?"]) + let v = native_list_append(v, ["ⲗⲁ-", "other", "ⲗⲁ-", "", "", "", "denominative prefix forming"]) + let v = native_list_append(v, ["ⲃ", "other", "ⲃ", "", "", "", "The second letter"]) + let v = native_list_append(v, ["Ⲁ", "other", "Ⲁ", "", "", "", "The first letter"]) + let v = native_list_append(v, ["Ⲃ", "other", "Ⲃ", "", "", "", "The second letter"]) + let v = native_list_append(v, ["Ⲅ", "other", "Ⲅ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ⲅ", "other", "ⲅ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ⲇ", "other", "Ⲇ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ⲇ", "other", "ⲇ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["ⲉ", "other", "ⲉ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ⲋ", "other", "Ⲋ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["Ⲉ", "other", "Ⲉ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ⲋ", "other", "ⲋ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ⲍ", "other", "Ⲍ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ⲍ", "other", "ⲍ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ⲏ", "other", "Ⲏ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["ⲏ", "other", "ⲏ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["ⲑ", "other", "ⲑ", "", "", "", "The lower case"]) + let v = native_list_append(v, ["Ⲑ", "other", "Ⲑ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["Ⲓ", "other", "Ⲓ", "", "", "", "The upper case"]) + let v = native_list_append(v, ["⳨", "other", "⳨", "", "", "", "short for ⲥⲧⲁⲩⲣⲟⲥ"]) + let v = native_list_append(v, ["ⲣ-", "other", "ⲣ-", "", "", "", "nominal state of"]) + let v = native_list_append(v, ["-ⲥ", "other", "-ⲥ", "", "", "", "3rd person singular"]) + let v = native_list_append(v, ["-ϥ", "other", "-ϥ", "", "", "", "3rd person singular"]) + let v = native_list_append(v, ["ϣⲁ", "other", "ϣⲁ", "", "", "", "one thousand"]) + let v = native_list_append(v, ["ⳉⲟ", "other", "ⳉⲟ", "", "", "", "one thousand"]) + let v = native_list_append(v, ["ⲛⲓⲙ ⲡⲉ ⲡⲉⲕⲣⲁⲛ", "other", "ⲛⲓⲙ ⲡⲉ ⲡⲉⲕⲣⲁⲛ", "", "", "", "what is your"]) + let v = native_list_append(v, ["ⲁⲛⲧⲓ-", "other", "ⲁⲛⲧⲓ-", "", "", "", "anti- against"]) + let v = native_list_append(v, ["ⲉⲓⲉ", "other", "ⲉⲓⲉ", "", "", "", "surely"]) + let v = native_list_append(v, ["ⲉⲉⲓⲉ", "other", "ⲉⲉⲓⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲉⲓⲁ", "other", "ⲉⲓⲁ", "", "", "", "surely"]) + let v = native_list_append(v, ["ϣⲟⲙⲛⲧ", "other", "ϣⲟⲙⲛⲧ", "", "", "", "three"]) + let v = native_list_append(v, ["ⲛⲥⲱϥ", "other", "ⲛⲥⲱϥ", "", "", "", "towards him."]) + let v = native_list_append(v, ["ⲛⲁⲕ", "other", "ⲛⲁⲕ", "", "", "", "pronominal phrase in"]) + let v = native_list_append(v, ["Ⲕ", "other", "Ⲕ", "", "", "", "The eleventh letter"]) + let v = native_list_append(v, ["ⲕ", "other", "ⲕ", "", "", "", "The eleventh letter"]) + let v = native_list_append(v, ["ⲛⲁⲛⲉ ⲡⲉⲕϫⲓⲛⲓ", "other", "ⲛⲁⲛⲉ ⲡⲉⲕϫⲓⲛⲓ", "", "", "", "welcome."]) + let v = native_list_append(v, ["ⲕⲁⲗⲱⲥ ⲁⲕⲓ", "other", "ⲕⲁⲗⲱⲥ ⲁⲕⲓ", "", "", "", "welcome"]) + let v = native_list_append(v, ["ⲁⲛⲟⲕ", "pron", "ⲁⲛⲟⲕ", "", "", "", "I first-person singular"]) + let v = native_list_append(v, ["ⲡⲉ", "pron", "ⲡⲉ", "", "", "", "he"]) + let v = native_list_append(v, ["ⲁⲛⲟⲛ", "pron", "ⲁⲛⲟⲛ", "", "", "", "we first-person plural"]) + let v = native_list_append(v, ["ⲛⲁⲓ", "pron", "ⲛⲁⲓ", "", "", "", "these"]) + let v = native_list_append(v, ["ⲛⲑⲟⲕ", "pron", "ⲛⲑⲟⲕ", "", "", "", "you second-person masculine"]) + let v = native_list_append(v, ["ⲛⲑⲟ", "pron", "ⲛⲑⲟ", "", "", "", "you second-person feminine"]) + let v = native_list_append(v, ["ⲛⲑⲱⲟⲩ", "pron", "ⲛⲑⲱⲟⲩ", "", "", "", "they third-person plural"]) + let v = native_list_append(v, ["ⲛⲑⲟⲥ", "pron", "ⲛⲑⲟⲥ", "", "", "", "she third-person feminine"]) + let v = native_list_append(v, ["ⲛⲑⲟϥ", "pron", "ⲛⲑⲟϥ", "", "", "", "he third-person masculine"]) + let v = native_list_append(v, ["ⲛⲑⲱⲧⲉⲛ", "pron", "ⲛⲑⲱⲧⲉⲛ", "", "", "", "you second-person plural"]) + let v = native_list_append(v, ["ⲫⲁⲓ", "pron", "ⲫⲁⲓ", "", "", "", "this"]) + let v = native_list_append(v, ["ⲑⲁⲓ", "pron", "ⲑⲁⲓ", "", "", "", "this"]) + let v = native_list_append(v, ["ⲛⲉ", "pron", "ⲛⲉ", "", "", "", "they"]) + let v = native_list_append(v, ["ⲧⲉ", "pron", "ⲧⲉ", "", "", "", "she"]) + let v = native_list_append(v, ["ⲡⲉⲓ", "pron", "ⲡⲉⲓ", "", "", "", "this"]) + let v = native_list_append(v, ["ⲑⲏⲛⲟⲩ", "pron", "ⲑⲏⲛⲟⲩ", "", "", "", "you extended version"]) + let v = native_list_append(v, ["ⲁⲛⲁⲕ", "pron", "ⲁⲛⲁⲕ", "", "", "", "I first-person singular"]) + let v = native_list_append(v, ["ⲁⲛⲁⲛ", "pron", "ⲁⲛⲁⲛ", "", "", "", "we first-person plural"]) + let v = native_list_append(v, ["ⲛⲧⲁⲕ", "pron", "ⲛⲧⲁⲕ", "", "", "", "you second-person masculine"]) + let v = native_list_append(v, ["ⲛⲧⲟⲕ", "pron", "ⲛⲧⲟⲕ", "", "", "", "you second-person masculine"]) + let v = native_list_append(v, ["ⲛⲧⲟ", "pron", "ⲛⲧⲟ", "", "", "", "you second-person feminine"]) + let v = native_list_append(v, ["ⲛⲧⲁ", "pron", "ⲛⲧⲁ", "", "", "", "you second-person feminine"]) + let v = native_list_append(v, ["ⲛⲧⲟϥ", "pron", "ⲛⲧⲟϥ", "", "", "", "he third-person masculine"]) + let v = native_list_append(v, ["ⲛⲧⲁϥ", "pron", "ⲛⲧⲁϥ", "", "", "", "he third-person masculine"]) + let v = native_list_append(v, ["ⲛⲧⲟⲥ", "pron", "ⲛⲧⲟⲥ", "", "", "", "she third-person feminine"]) + let v = native_list_append(v, ["ⲛⲧⲁⲥ", "pron", "ⲛⲧⲁⲥ", "", "", "", "she third-person feminine"]) + let v = native_list_append(v, ["ⲛⲧⲱⲧⲛ", "pron", "ⲛⲧⲱⲧⲛ", "", "", "", "you second-person plural"]) + let v = native_list_append(v, ["ⲛⲧⲱⲧⲛⲉ", "pron", "ⲛⲧⲱⲧⲛⲉ", "", "", "", "you second-person plural"]) + let v = native_list_append(v, ["ⲛⲧⲁⲧⲉⲛ", "pron", "ⲛⲧⲁⲧⲉⲛ", "", "", "", "you second-person plural"]) + let v = native_list_append(v, ["ⲛⲧⲟⲟⲩ", "pron", "ⲛⲧⲟⲟⲩ", "", "", "", "they third-person plural"]) + let v = native_list_append(v, ["ⲛⲧⲁⲩ", "pron", "ⲛⲧⲁⲩ", "", "", "", "they third-person plural"]) + let v = native_list_append(v, ["ⲛⲉⲓ", "pron", "ⲛⲉⲓ", "", "", "", "these"]) + let v = native_list_append(v, ["ⲣⲟⲩϩⲓ", "adv", "ⲣⲟⲩϩⲓ", "", "", "", "at evening"]) + let v = native_list_append(v, ["ⲉⲃⲟⲗ", "adv", "ⲉⲃⲟⲗ", "", "", "", "away"]) + let v = native_list_append(v, ["ϩⲁⲙⲏⲛ", "adv", "ϩⲁⲙⲏⲛ", "", "", "", "amen indeed truly"]) + let v = native_list_append(v, ["ⲡⲁⲗⲓⲛ", "adv", "ⲡⲁⲗⲓⲛ", "", "", "", "again once more"]) + let v = native_list_append(v, ["ϩⲟⲗⲱⲥ", "adv", "ϩⲟⲗⲱⲥ", "", "", "", "wholly entirely completely"]) + let v = native_list_append(v, ["ⲁⲙⲏⲛ", "adv", "ⲁⲙⲏⲛ", "", "", "", "amen indeed truly"]) + let v = native_list_append(v, ["ⲉⲛⲉϩ", "adv", "ⲉⲛⲉϩ", "", "", "", "forever eternally"]) + let v = native_list_append(v, ["ⲁϣ", "adv", "ⲁϣ", "", "", "", "who what?"]) + let v = native_list_append(v, ["ⲟⲩ", "adv", "ⲟⲩ", "", "", "", "what"]) + let v = native_list_append(v, ["ⲛⲓⲙ", "adv", "ⲛⲓⲙ", "", "", "", "who"]) + let v = native_list_append(v, ["ⲑⲱⲛ", "adv", "ⲑⲱⲛ", "", "", "", "where"]) + let v = native_list_append(v, ["ⲟⲩⲏⲣ", "adv", "ⲟⲩⲏⲣ", "", "", "", "how many"]) + let v = native_list_append(v, ["ⲛⲑⲛⲁⲩ", "adv", "ⲛⲑⲛⲁⲩ", "", "", "", "when"]) + let v = native_list_append(v, ["ϣⲁⲑⲛⲁⲩ", "adv", "ϣⲁⲑⲛⲁⲩ", "", "", "", "until when"]) + let v = native_list_append(v, ["ⲉⲑⲃⲉⲟⲩ", "adv", "ⲉⲑⲃⲉⲟⲩ", "", "", "", "why"]) + let v = native_list_append(v, ["ⲛⲁϣⲛⲣⲏϯ", "adv", "ⲛⲁϣⲛⲣⲏϯ", "", "", "", "how"]) + let v = native_list_append(v, ["ϯⲛⲟⲩ", "adv", "ϯⲛⲟⲩ", "", "", "", "now"]) + let v = native_list_append(v, ["ⲙⲉⲛⲉⲛⲥⲁ", "adv", "ⲙⲉⲛⲉⲛⲥⲁ", "", "", "", "after"]) + let v = native_list_append(v, ["ⲙⲛⲁⲓ", "adv", "ⲙⲛⲁⲓ", "", "", "", "here"]) + let v = native_list_append(v, ["ⲙⲙⲁⲩ", "adv", "ⲙⲙⲁⲩ", "", "", "", "there"]) + let v = native_list_append(v, ["ⲛⲥⲁϥ", "adv", "ⲛⲥⲁϥ", "", "", "", "yesterday"]) + let v = native_list_append(v, ["ⲛⲥⲁⲥⲁϥ", "adv", "ⲛⲥⲁⲥⲁϥ", "", "", "", "day before yesterday"]) + let v = native_list_append(v, ["ⲙⲫⲟⲟⲩ", "adv", "ⲙⲫⲟⲟⲩ", "", "", "", "today"]) + let v = native_list_append(v, ["ⲛⲣⲁⲥϯ", "adv", "ⲛⲣⲁⲥϯ", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["ⲛⲥⲁⲣⲁⲥϯ", "adv", "ⲛⲥⲁⲣⲁⲥϯ", "", "", "", "overmorrow day after"]) + let v = native_list_append(v, ["ⲣⲱ", "adv", "ⲣⲱ", "", "", "", "before"]) + let v = native_list_append(v, ["ⲉϩⲉ", "adv", "ⲉϩⲉ", "", "", "", "yes indeed"]) + let v = native_list_append(v, ["ⲧⲟⲧⲉ", "adv", "ⲧⲟⲧⲉ", "", "", "", "then"]) + let v = native_list_append(v, ["ϩⲱ", "adv", "ϩⲱ", "", "", "", "also"]) + let v = native_list_append(v, ["ⲙⲙⲁⲩⲁⲧ", "adv", "ⲙⲙⲁⲩⲁⲧ", "", "", "", "alone"]) + let v = native_list_append(v, ["ϧⲁϫⲉⲛ", "adv", "ϧⲁϫⲉⲛ", "", "", "", "before"]) + let v = native_list_append(v, ["ⲁⲣⲏⲩ", "adv", "ⲁⲣⲏⲩ", "", "", "", "perhaps maybe."]) + let v = native_list_append(v, ["ⲁϧⲟ", "adv", "ⲁϧⲟ", "", "", "", "why"]) + let v = native_list_append(v, ["ⲙⲡⲁⲓⲙⲁ", "adv", "ⲙⲡⲁⲓⲙⲁ", "", "", "", "here literally “at"]) + let v = native_list_append(v, ["ⲛⲥⲏⲟⲩ ⲛⲓⲃⲉⲛ", "adv", "ⲛⲥⲏⲟⲩ ⲛⲓⲃⲉⲛ", "", "", "", "always forever"]) + let v = native_list_append(v, ["ⲛⲛⲁⲩ ⲛⲓⲃⲉⲛ", "adv", "ⲛⲛⲁⲩ ⲛⲓⲃⲉⲛ", "", "", "", "always forever"]) + let v = native_list_append(v, ["ⲉⲡⲉⲥⲏⲧ", "adv", "ⲉⲡⲉⲥⲏⲧ", "", "", "", "downward"]) + let v = native_list_append(v, ["ⲉϩⲣⲁⲓ", "adv", "ⲉϩⲣⲁⲓ", "", "", "", "upward"]) + let v = native_list_append(v, ["ⲁϩⲁ", "adv", "ⲁϩⲁ", "", "", "", "yes indeed"]) + let v = native_list_append(v, ["ⲥⲉ", "adv", "ⲥⲉ", "", "", "", "yes indeed"]) + let v = native_list_append(v, ["ⲁϩⲏ", "adv", "ⲁϩⲏ", "", "", "", "yes indeed"]) + let v = native_list_append(v, ["ⲉⲃⲁⲗ", "adv", "ⲉⲃⲁⲗ", "", "", "", "away"]) + let v = native_list_append(v, ["ⲥⲏ", "adv", "ⲥⲏ", "", "", "", "yes indeed."]) + let v = native_list_append(v, ["ⲉⲛⲉϩⲉ", "adv", "ⲉⲛⲉϩⲉ", "", "", "", "forever eternally"]) + let v = native_list_append(v, ["ⲉⲛⲏϩⲉ", "adv", "ⲉⲛⲏϩⲉ", "", "", "", "forever eternally"]) + let v = native_list_append(v, ["ⲉⳉ", "adv", "ⲉⳉ", "", "", "", "who what?"]) + let v = native_list_append(v, ["ⲉϣ", "adv", "ⲉϣ", "", "", "", "who what?"]) + let v = native_list_append(v, ["ⲣⲟⲩϩⲉ", "adv", "ⲣⲟⲩϩⲉ", "", "", "", "at evening"]) + let v = native_list_append(v, ["ⲗⲟⲩϩⲓ", "adv", "ⲗⲟⲩϩⲓ", "", "", "", "at evening"]) + let v = native_list_append(v, ["ⲣⲁⲥϯ", "adv", "ⲣⲁⲥϯ", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["ⲗⲉⲥϯ", "adv", "ⲗⲉⲥϯ", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["ⲣⲉⲥⲧⲉ", "adv", "ⲣⲉⲥⲧⲉ", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["ⲣⲁⲥⲧⲉ", "adv", "ⲣⲁⲥⲧⲉ", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["ⲛⲣⲁⲥⲧⲉ", "adv", "ⲛⲣⲁⲥⲧⲉ", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["ⲉⲧⲃⲉⲟⲩ", "adv", "ⲉⲧⲃⲉⲟⲩ", "", "", "", "why?"]) + let v = native_list_append(v, ["ⲧⲱⲛ", "adv", "ⲧⲱⲛ", "", "", "", "where?"]) + let v = native_list_append(v, ["ⲉⲧⲱⲛ", "adv", "ⲉⲧⲱⲛ", "", "", "", "where? to what"]) + let v = native_list_append(v, ["ⲟⲛ", "adv", "ⲟⲛ", "", "", "", "again."]) + let v = native_list_append(v, ["ⲛⲥⲁⲧⲟⲟⲧ⸗", "adv", "ⲛⲥⲁⲧⲟⲟⲧ⸗", "", "", "", "immediately."]) + let v = native_list_append(v, ["ⲙⲉϣⲁⲕ", "adv", "ⲙⲉϣⲁⲕ", "", "", "", "perhaps"]) + let v = native_list_append(v, ["ⲕⲁⲗⲱⲥ", "adv", "ⲕⲁⲗⲱⲥ", "", "", "", "good well rightly"]) + let v = native_list_append(v, ["ⲅⲁⲣ", "conj", "ⲅⲁⲣ", "", "", "", "for because"]) + let v = native_list_append(v, ["ϩⲟⲧⲁⲛ", "conj", "ϩⲟⲧⲁⲛ", "", "", "", "when"]) + let v = native_list_append(v, ["ⲁⲗⲗⲁ", "conj", "ⲁⲗⲗⲁ", "", "", "", "but rather contrasting"]) + let v = native_list_append(v, ["ⲛⲉⲙ", "conj", "ⲛⲉⲙ", "", "", "", "and"]) + let v = native_list_append(v, ["ⲟⲩⲇⲉ", "conj", "ⲟⲩⲇⲉ", "", "", "", "nor neither"]) + let v = native_list_append(v, ["ⲓⲉ", "conj", "ⲓⲉ", "", "", "", "or whether...or"]) + let v = native_list_append(v, ["ⲟⲩⲟϩ", "conj", "ⲟⲩⲟϩ", "", "", "", "and"]) + let v = native_list_append(v, ["ⲁⲩⲱ", "conj", "ⲁⲩⲱ", "", "", "", "and"]) + let v = native_list_append(v, ["ⲕⲁⲓ", "conj", "ⲕⲁⲓ", "", "", "", "and"]) + let v = native_list_append(v, ["ⲉⲓⲉ", "conj", "ⲉⲓⲉ", "", "", "", "or whether...or"]) + let v = native_list_append(v, ["ⲉⲉⲓⲉ", "conj", "ⲉⲉⲓⲉ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲉⲓⲁ", "conj", "ⲉⲓⲁ", "", "", "", "or whether...or"]) + let v = native_list_append(v, ["ϫⲉ", "conj", "ϫⲉ", "", "", "", "that"]) + let v = native_list_append(v, ["Ⲡⲁⲣⲁ", "prep", "Ⲡⲁⲣⲁ", "", "", "", "beside."]) + let v = native_list_append(v, ["ⲛϭⲓ", "prep", "ⲛϭⲓ", "", "", "", "subject marker for"]) + let v = native_list_append(v, ["ⲛ-", "prep", "ⲛ-", "", "", "", "object marker"]) + let v = native_list_append(v, ["ⲛϫⲉ", "prep", "ⲛϫⲉ", "", "", "", "subject marker for"]) + let v = native_list_append(v, ["ⲓⲥϫⲉⲛ", "prep", "ⲓⲥϫⲉⲛ", "", "", "", "starting from since"]) + let v = native_list_append(v, ["ϣⲁ-", "prep", "ϣⲁ-", "", "", "", "to toward"]) + let v = native_list_append(v, ["ⲛⳤ", "prep", "ⲛⳤ", "", "", "", "subject marker for"]) + let v = native_list_append(v, ["ⲉⲙⲏⲣ", "prep", "ⲉⲙⲏⲣ", "", "", "", "to the other"]) + let v = native_list_append(v, ["ϩⲓⲙⲏⲣ", "prep", "ϩⲓⲙⲏⲣ", "", "", "", "on or at"]) + let v = native_list_append(v, ["ⲙⲉⲛⲉⲛⲥⲁ", "prep", "ⲙⲉⲛⲉⲛⲥⲁ", "", "", "", "after"]) + let v = native_list_append(v, ["ϩⲱⲥ", "prep", "ϩⲱⲥ", "", "", "", "like as if."]) + let v = native_list_append(v, ["ϧⲉⲛ", "prep", "ϧⲉⲛ", "", "", "", "in with instrumental"]) + let v = native_list_append(v, ["ⲉⲃⲟⲗϧⲉⲛ", "prep", "ⲉⲃⲟⲗϧⲉⲛ", "", "", "", "from"]) + let v = native_list_append(v, ["ⲉⲃⲟⲗϩⲓⲧⲉⲛ", "prep", "ⲉⲃⲟⲗϩⲓⲧⲉⲛ", "", "", "", "by through."]) + let v = native_list_append(v, ["ϩⲓϫⲉⲛ", "prep", "ϩⲓϫⲉⲛ", "", "", "", "on"]) + let v = native_list_append(v, ["ⲉϫⲉⲛ", "prep", "ⲉϫⲉⲛ", "", "", "", "on"]) + let v = native_list_append(v, ["ϩⲁ", "prep", "ϩⲁ", "", "", "", "to towards"]) + let v = native_list_append(v, ["ⲉⲃⲟⲗϩⲁ", "prep", "ⲉⲃⲟⲗϩⲁ", "", "", "", "away from"]) + let v = native_list_append(v, ["ⲉⲑⲃⲉ", "prep", "ⲉⲑⲃⲉ", "", "", "", "for about concerning"]) + let v = native_list_append(v, ["ⲟⲩⲃⲉ", "prep", "ⲟⲩⲃⲉ", "", "", "", "against"]) + let v = native_list_append(v, ["ⲛⲥⲁ-", "prep", "ⲛⲥⲁ-", "", "", "", "towards"]) + let v = native_list_append(v, ["ϧⲁϫⲉⲛ", "prep", "ϧⲁϫⲉⲛ", "", "", "", "before"]) + let v = native_list_append(v, ["ⲛⲁϩⲣⲉⲛ", "prep", "ⲛⲁϩⲣⲉⲛ", "", "", "", "at"]) + let v = native_list_append(v, ["ⲙⲡⲉⲙⲑⲟ", "prep", "ⲙⲡⲉⲙⲑⲟ", "", "", "", "in front of"]) + let v = native_list_append(v, ["ⲥⲁⲙⲉⲛⲉϩⲉ", "prep", "ⲥⲁⲙⲉⲛⲉϩⲉ", "", "", "", "behind"]) + let v = native_list_append(v, ["ⲁⲧϭⲛⲉ", "prep", "ⲁⲧϭⲛⲉ", "", "", "", "without"]) + let v = native_list_append(v, ["ϧⲁ", "prep", "ϧⲁ", "", "", "", "under from for"]) + let v = native_list_append(v, ["ϩⲛ", "prep", "ϩⲛ", "", "", "", "in within at"]) + let v = native_list_append(v, ["ⲉ-", "prep", "ⲉ-", "", "", "", "to toward"]) + let v = native_list_append(v, ["ⲁⲛⲧⲓ", "prep", "ⲁⲛⲧⲓ", "", "", "", "instead"]) + let v = native_list_append(v, ["ϩⲓ", "prep", "ϩⲓ", "", "", "", "on at in."]) + let v = native_list_append(v, ["ϫⲓⲛ", "prep", "ϫⲓⲛ", "", "", "", "starting from since."]) + let v = native_list_append(v, ["ϫⲉⲛ", "prep", "ϫⲉⲛ", "", "", "", "starting from since"]) + let v = native_list_append(v, ["ⲉⲡⲓ", "prep", "ⲉⲡⲓ", "", "", "", "for."]) + let v = native_list_append(v, ["ϩⲉⲱⲥ", "prep", "ϩⲉⲱⲥ", "", "", "", "until."]) + let v = native_list_append(v, ["ⲕⲁⲧⲁ", "prep", "ⲕⲁⲧⲁ", "", "", "", "according to"]) + let v = native_list_append(v, ["ⲛⲃⲗ-", "prep", "ⲛⲃⲗ-", "", "", "", "beyond"]) + let v = native_list_append(v, ["ⲉⲧⲃⲉ-", "prep", "ⲉⲧⲃⲉ-", "", "", "", "because of on"]) + let v = native_list_append(v, ["ⲕⲱⲧⲉ", "prep", "ⲕⲱⲧⲉ", "", "", "", "about concerning"]) + let v = native_list_append(v, ["ⲙⲛ-", "prep", "ⲙⲛ-", "", "", "", "with together with."]) + let v = native_list_append(v, ["ⲉⲣⲟ⸗", "prep", "ⲉⲣⲟ⸗", "", "", "", "to toward"]) + let v = native_list_append(v, ["ⲛⲁ⸗", "prep", "ⲛⲁ⸗", "", "", "", "to toward"]) + let v = native_list_append(v, ["ⲙⲙⲟ⸗", "prep", "ⲙⲙⲟ⸗", "", "", "", "object marker"]) + let v = native_list_append(v, ["ⲛⲥⲱ⸗", "prep", "ⲛⲥⲱ⸗", "", "", "", "towards"]) + let v = native_list_append(v, ["ⲙⲛⲛⲥⲁ-", "prep", "ⲙⲛⲛⲥⲁ-", "", "", "", "after."]) + let v = native_list_append(v, ["ⲡ-", "det", "ⲡ-", "", "", "", "masculine singular definite"]) + let v = native_list_append(v, ["ⲧ-", "det", "ⲧ-", "", "", "", "feminine singular definite"]) + let v = native_list_append(v, ["ⲛ-", "det", "ⲛ-", "", "", "", "common plural definite"]) + let v = native_list_append(v, ["ⲡⲓ-", "det", "ⲡⲓ-", "", "", "", "masculine singular definite"]) + let v = native_list_append(v, ["ϯ-", "det", "ϯ-", "", "", "", "feminine singular definite"]) + let v = native_list_append(v, ["ⲛⲓ-", "det", "ⲛⲓ-", "", "", "", "common plural definite"]) + let v = native_list_append(v, ["ⲛⲉ-", "det", "ⲛⲉ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲧⲉ-", "det", "ⲧⲉ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲡⲉ-", "det", "ⲡⲉ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ⲟⲩ-", "det", "ⲟⲩ-", "", "", "", "a an common"]) + let v = native_list_append(v, ["ϩⲁⲛ-", "det", "ϩⲁⲛ-", "", "", "", "common plural indefinite"]) + let v = native_list_append(v, ["ϩⲉⲛ-", "det", "ϩⲉⲛ-", "", "", "", "common plural indefinite"]) + let v = native_list_append(v, ["ϩⲛ-", "det", "ϩⲛ-", "", "", "", "reduced form of"]) + let v = native_list_append(v, ["ⲙⲏϣ", "det", "ⲙⲏϣ", "", "", "", "many a lot"]) + let v = native_list_append(v, ["ⲛⲓⲙ", "det", "ⲛⲓⲙ", "", "", "", "every all"]) + let v = native_list_append(v, ["ⲛⲓⲃⲉⲛ", "det", "ⲛⲓⲃⲉⲛ", "", "", "", "all every"]) + let v = native_list_append(v, ["ⲫ-", "det", "ⲫ-", "", "", "", "masculine singular definite"]) + let v = native_list_append(v, ["ⲑ-", "det", "ⲑ-", "", "", "", "feminine singular definite"]) + let v = native_list_append(v, ["ⲛⲧⲉ", "det", "ⲛⲧⲉ", "", "", "", "of."]) + let v = native_list_append(v, ["ⲇⲉ", "particle", "ⲇⲉ", "", "", "", "indicates a shift"]) + let v = native_list_append(v, ["ⲁ", "particle", "ⲁ", "", "", "", "indicates the affirmative"]) + let v = native_list_append(v, ["ⲙⲁⲣⲉ-", "particle", "ⲙⲁⲣⲉ-", "", "", "", "indicates the jussive"]) + let v = native_list_append(v, ["ϣⲁⲣⲉ-", "particle", "ϣⲁⲣⲉ-", "", "", "", "indicates the aorist"]) + let v = native_list_append(v, ["ⲙⲁⲗⲉ-", "particle", "ⲙⲁⲗⲉ-", "", "", "", "indicates the jussive"]) + let v = native_list_append(v, ["ϣⲁⲗⲉ-", "particle", "ϣⲁⲗⲉ-", "", "", "", "indicates the aorist"]) + let v = native_list_append(v, ["ⲉⲣⲉ-", "particle", "ⲉⲣⲉ-", "", "", "", "indicates the circumstantial"]) + let v = native_list_append(v, ["ⲉⲗⲉ-", "particle", "ⲉⲗⲉ-", "", "", "", "indicates the circumstantial"]) + let v = native_list_append(v, ["ⲛⲁⲣⲉ-", "particle", "ⲛⲁⲣⲉ-", "", "", "", "indicates the preterite"]) + let v = native_list_append(v, ["ⲛⲁⲗⲉ-", "particle", "ⲛⲁⲗⲉ-", "", "", "", "indicates the preterite"]) + let v = native_list_append(v, ["ⲁⲣⲉ-", "particle", "ⲁⲣⲉ-", "", "", "", "indicates the focalising"]) + let v = native_list_append(v, ["ⲁⲗⲉ-", "particle", "ⲁⲗⲉ-", "", "", "", "indicates the focalising"]) + let v = native_list_append(v, ["ⲧⲣⲉ", "particle", "ⲧⲣⲉ", "", "", "", "prefix of causative"]) + let v = native_list_append(v, ["ⲛⲉⲣⲉ-", "particle", "ⲛⲉⲣⲉ-", "", "", "", "indicates the preterite"]) + return v +} + +fn vocab_cop_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_cop_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-egy.el b/elp/src/vocabulary-egy.el new file mode 100644 index 0000000..06930bc --- /dev/null +++ b/elp/src/vocabulary-egy.el @@ -0,0 +1,3985 @@ +// vocabulary-egy.el — Egyptian vocabulary seed +// 3964 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 4535 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_egy_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["h", "noun", "hw", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["j", "noun", "j", "", "", "", "statement report word"]) + let v = native_list_append(v, ["p", "noun", "pw", "", "", "", "mat"]) + let v = native_list_append(v, ["r", "noun", "rw", "", "", "", "mouth of humans"]) + let v = native_list_append(v, ["s", "noun", "sw", "", "", "", "The object depicted"]) + let v = native_list_append(v, ["t", "noun", "tw", "", "", "", "bread"]) + let v = native_list_append(v, ["w", "noun", "ww", "", "", "", "area district"]) + let v = native_list_append(v, ["z", "noun", "zw", "", "", "", "door bolt of"]) + let v = native_list_append(v, ["rd", "noun", "rdw", "", "", "", "foot leg"]) + let v = native_list_append(v, ["sn", "noun", "snw", "", "", "", "brother"]) + let v = native_list_append(v, ["mt", "noun", "mwt", "", "", "", "vein artery muscle"]) + let v = native_list_append(v, ["ky", "noun", "k:y-w&y", "", "", "", "other another"]) + let v = native_list_append(v, ["py", "noun", "pyw", "", "", "", "flea"]) + let v = native_list_append(v, ["twr", "noun", "twr", "", "", "", "ritual purity or"]) + let v = native_list_append(v, ["st", "noun", "swt", "", "", "", "throne of the"]) + let v = native_list_append(v, ["ḫpr", "noun", "ḫpr", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["tp", "noun", "tpw", "", "", "", "head"]) + let v = native_list_append(v, ["mn", "noun", "mn", "", "", "", "substitute for an"]) + let v = native_list_append(v, ["zr", "noun", "zrw", "", "", "", "ram male sheep"]) + let v = native_list_append(v, ["db", "noun", "dbw", "", "", "", "hippopotamus"]) + let v = native_list_append(v, ["sr", "noun", "srw", "", "", "", "official magistrate"]) + let v = native_list_append(v, ["nb", "noun", "nbw", "", "", "", "lord master ruler"]) + let v = native_list_append(v, ["rn", "noun", "rnw", "", "", "", "name"]) + let v = native_list_append(v, ["tꜣ", "noun", "tꜣw", "", "", "", "land realm country"]) + let v = native_list_append(v, ["pr", "noun", "prw", "", "", "", "house"]) + let v = native_list_append(v, ["sm", "noun", "smw", "", "", "", "a type of"]) + let v = native_list_append(v, ["pt", "noun", "pwt", "", "", "", "the sky heavens"]) + let v = native_list_append(v, ["md", "noun", "md", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ds", "noun", "dsw", "", "", "", "flint"]) + let v = native_list_append(v, ["ms", "noun", "msw", "", "", "", "offspring child"]) + let v = native_list_append(v, ["tr", "noun", "trw", "", "", "", "point or span"]) + let v = native_list_append(v, ["sd", "noun", "sdw", "", "", "", "tail"]) + let v = native_list_append(v, ["bs", "noun", "bs", "", "", "", "Bes the god"]) + let v = native_list_append(v, ["sw", "noun", "sw", "", "", "", "used with an"]) + let v = native_list_append(v, ["sk", "noun", "sk", "", "", "", "Scythia an ancient"]) + let v = native_list_append(v, ["ḥrj", "noun", "ḥrjw", "", "", "", "supervisor boss"]) + let v = native_list_append(v, ["st-ꜥ", "noun", "st-ꜥ", "", "", "", "activity action"]) + let v = native_list_append(v, ["st-jb", "noun", "swt-jb", "", "", "", "favorite place"]) + let v = native_list_append(v, ["m ḫt", "noun", "m ḫt", "", "", "", "future later time"]) + let v = native_list_append(v, ["tp ꜥ", "noun", "tp ꜥ", "", "", "", "forebear ancestor"]) + let v = native_list_append(v, ["jtw", "noun", "M17-X1:I9-A1-Z3", "", "", "", "plural of jt"]) + let v = native_list_append(v, ["šs", "noun", "šs", "", "", "", "alabaster calcite"]) + let v = native_list_append(v, ["pꜣwt", "noun", "pꜣwwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜥwj", "noun", "ꜥwj", "", "", "", "dual of ꜥ"]) + let v = native_list_append(v, ["mšꜥ", "noun", "mšꜥw", "", "", "", "army"]) + let v = native_list_append(v, ["šsr", "noun", "šsrw", "", "", "", "arrow"]) + let v = native_list_append(v, ["ꜥꜣm", "noun", "T14-m-w", "", "", "", "A member of"]) + let v = native_list_append(v, ["ẖrj-ꜥ", "noun", "ẖrjw-ꜥ", "", "", "", "assistant also used"]) + let v = native_list_append(v, ["ꜥ-ẖnwtj", "noun", "ꜥ-ẖnwtj", "", "", "", "audience chamber"]) + let v = native_list_append(v, ["ḏꜣdw", "noun", "ḏꜣdw", "", "", "", "audience hall"]) + let v = native_list_append(v, ["mjnb", "noun", "mjnbw", "", "", "", "axe"]) + let v = native_list_append(v, ["sgr", "noun", "sgrw", "", "", "", "quiet silence"]) + let v = native_list_append(v, ["pr-ꜥꜣ", "noun", "pr:aA-w-Z3", "", "", "", "palace"]) + let v = native_list_append(v, ["hbnj", "noun", "hbnj", "", "", "", "ebony wood tree"]) + let v = native_list_append(v, ["šꜣq", "noun", "SA:q-w-F27-Z3", "", "", "", "a leather object"]) + let v = native_list_append(v, ["ym", "noun", "ymw", "", "", "", "sea lake"]) + let v = native_list_append(v, ["ns", "noun", "nsw", "", "", "", "tongue"]) + let v = native_list_append(v, ["hy", "noun", "hyw", "", "", "", "cry of joy"]) + let v = native_list_append(v, ["wrt", "noun", "wrwt", "", "", "", "great one common"]) + let v = native_list_append(v, ["gm", "noun", "gmw", "", "", "", "black ibis"]) + let v = native_list_append(v, ["nhw", "noun", "nhww", "", "", "", "need lack deficiency"]) + let v = native_list_append(v, ["snt", "noun", "snwt", "", "", "", "sister"]) + let v = native_list_append(v, ["š", "noun", "šw", "", "", "", "lake"]) + let v = native_list_append(v, ["hrm", "noun", "hrm", "", "", "", "Rome a major"]) + let v = native_list_append(v, ["sf", "noun", "sf", "", "", "", "yesterday"]) + let v = native_list_append(v, ["hp", "noun", "hpw", "", "", "", "cord used for"]) + let v = native_list_append(v, ["pwnt", "noun", "pwnt", "", "", "", "Punt an ancient"]) + let v = native_list_append(v, ["msḏr", "noun", "msḏrw", "", "", "", "ear"]) + let v = native_list_append(v, ["bjk", "noun", "bjkw", "", "", "", "falcon"]) + let v = native_list_append(v, ["jꜥḥ", "noun", "jꜥḥ", "", "", "", "the moon"]) + let v = native_list_append(v, ["fnḏ", "noun", "fnḏw", "", "", "", "nose"]) + let v = native_list_append(v, ["hrw", "noun", "h:r-w-ra:Z2", "", "", "", "day period of"]) + let v = native_list_append(v, ["gḥs", "noun", "gḥsw", "", "", "", "gazelle"]) + let v = native_list_append(v, ["rꜥ", "noun", "rꜥw", "", "", "", "sun"]) + let v = native_list_append(v, ["sḏm", "noun", "sḏm", "", "", "", "trial"]) + let v = native_list_append(v, ["ḥr", "noun", "ḥrw", "", "", "", "face of a"]) + let v = native_list_append(v, ["ḫꜣb", "noun", "ḫꜣbw", "", "", "", "hippopotamus"]) + let v = native_list_append(v, ["ḥꜣtj", "noun", "ḥꜣtjw", "", "", "", "heart"]) + let v = native_list_append(v, ["wnb", "noun", "wnbw", "", "", "", "flower"]) + let v = native_list_append(v, ["ḥmt", "noun", "ḥmwt", "", "", "", "woman"]) + let v = native_list_append(v, ["ḫprr", "noun", "ḫprrw", "", "", "", "scarab"]) + let v = native_list_append(v, ["ꜥnḫ", "noun", "ꜥnḫw", "", "", "", "life the state"]) + let v = native_list_append(v, ["zꜣ", "noun", "zꜣw", "", "", "", "son"]) + let v = native_list_append(v, ["zꜣt", "noun", "zꜣwt", "", "", "", "daughter"]) + let v = native_list_append(v, ["šn", "noun", "šnw", "", "", "", "tree"]) + let v = native_list_append(v, ["ḏꜣjs", "noun", "ḏꜣjsw", "", "", "", "argument"]) + let v = native_list_append(v, ["ꜥšꜣ", "noun", "ꜥšꜣ", "", "", "", "multitude"]) + let v = native_list_append(v, ["qs", "noun", "qsw", "", "", "", "bone"]) + let v = native_list_append(v, ["zꜣw", "noun", "zꜣww", "", "", "", "magician wizard sorcerer"]) + let v = native_list_append(v, ["wrḥ", "noun", "wrḥw", "", "", "", "ointment"]) + let v = native_list_append(v, ["sbꜣ", "noun", "sbꜣw", "", "", "", "star"]) + let v = native_list_append(v, ["mꜣꜣ", "noun", "mꜣꜣw", "", "", "", "sight vision"]) + let v = native_list_append(v, ["mjn", "noun", "mjn", "", "", "", "today"]) + let v = native_list_append(v, ["nḥbt", "noun", "nḥbwt", "", "", "", "neck"]) + let v = native_list_append(v, ["nfr", "noun", "nfrw", "", "", "", "fine or good"]) + let v = native_list_append(v, ["swḥt", "noun", "swḥwt", "", "", "", "egg"]) + let v = native_list_append(v, ["sbtj", "noun", "sbtjw", "", "", "", "fortification wall of"]) + let v = native_list_append(v, ["kmt", "noun", "kmt", "", "", "", "Egypt the Nile"]) + let v = native_list_append(v, ["nst", "noun", "nswt", "", "", "", "seat throne"]) + let v = native_list_append(v, ["ṯzm", "noun", "ṯzmw", "", "", "", "hound variously described"]) + let v = native_list_append(v, ["mr", "noun", "mrw", "", "", "", "ailment illness disease"]) + let v = native_list_append(v, ["ꜣm", "noun", "ꜣm", "", "", "", "the Seizer epithet"]) + let v = native_list_append(v, ["grḥ", "noun", "grḥw", "", "", "", "end ending"]) + let v = native_list_append(v, ["ẖt", "noun", "ẖwt", "", "", "", "abdomen belly"]) + let v = native_list_append(v, ["ꜥnḏw", "noun", "ꜥnḏw", "", "", "", "dawn"]) + let v = native_list_append(v, ["dpy", "noun", "dpyw", "", "", "", "crocodile"]) + let v = native_list_append(v, ["ḏꜥ", "noun", "ḏꜥw", "", "", "", "storm stormwind"]) + let v = native_list_append(v, ["mšrw", "noun", "mšrw", "", "", "", "evening"]) + let v = native_list_append(v, ["rm", "noun", "rmw", "", "", "", "fish"]) + let v = native_list_append(v, ["zt", "noun", "zwt", "", "", "", "woman"]) + let v = native_list_append(v, ["šmw", "noun", "šmww", "", "", "", "harvest"]) + let v = native_list_append(v, ["sꜥḥ", "noun", "sꜥḥw", "", "", "", "distinction rank dignity"]) + let v = native_list_append(v, ["bḥs", "noun", "bḥs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḫpš", "noun", "ḫpšw", "", "", "", "foreleg of an"]) + let v = native_list_append(v, ["ḏw", "noun", "ḏww", "", "", "", "mountain"]) + let v = native_list_append(v, ["ḥꜣt", "noun", "ḥꜣwt", "", "", "", "forepart front"]) + let v = native_list_append(v, ["ḫt", "noun", "jḫwt", "", "", "", "thing goods possession"]) + let v = native_list_append(v, ["ẖꜣrt", "noun", "ẖꜣrwt", "", "", "", "widow"]) + let v = native_list_append(v, ["qrs", "noun", "qrs", "", "", "", "sepulchre"]) + let v = native_list_append(v, ["jm", "noun", "jmw", "", "", "", "side side of"]) + let v = native_list_append(v, ["ḏs.f", "noun", "ḏs.f", "", "", "", "himself"]) + let v = native_list_append(v, ["ḏḥwtj", "noun", "ḏḥwtj", "", "", "", "Thoth god"]) + let v = native_list_append(v, ["jb", "noun", "jbw", "", "", "", "heart blood-pumping organ"]) + let v = native_list_append(v, ["tmt", "noun", "tmwt", "", "", "", "sledge"]) + let v = native_list_append(v, ["jnb", "noun", "jnbw", "", "", "", "wall"]) + let v = native_list_append(v, ["ḫꜥw", "noun", "ḫꜥw", "", "", "", "rising of a"]) + let v = native_list_append(v, ["bkꜣ", "noun", "bkꜣw", "", "", "", "tomorrow the next"]) + let v = native_list_append(v, ["jrj", "noun", "jrjw", "", "", "", "one pertaining to"]) + let v = native_list_append(v, ["jswr", "noun", "jswr", "", "", "", "Assur"]) + let v = native_list_append(v, ["hh", "noun", "hhw", "", "", "", "rush of hot"]) + let v = native_list_append(v, ["hj", "noun", "hjw", "", "", "", "husband"]) + let v = native_list_append(v, ["mnt", "noun", "mnt", "", "", "", "substitute for an"]) + let v = native_list_append(v, ["rw", "noun", "rww", "", "", "", "lion"]) + let v = native_list_append(v, ["nwy", "noun", "nwy", "", "", "", "water"]) + let v = native_list_append(v, ["mrw", "noun", "mrww", "", "", "", "desert"]) + let v = native_list_append(v, ["tfn", "noun", "tfnw", "", "", "", "orphan"]) + let v = native_list_append(v, ["ꜣḫt", "noun", "ꜣḫwt", "", "", "", "Akhet the region"]) + let v = native_list_append(v, ["dpt", "noun", "dpwt", "", "", "", "ship boat"]) + let v = native_list_append(v, ["wn", "noun", "wn", "", "", "", "opening of a"]) + let v = native_list_append(v, ["mkt", "noun", "mkwt", "", "", "", "protection especially magical"]) + let v = native_list_append(v, ["nt", "noun", "nt", "", "", "", "Neith a primeval"]) + let v = native_list_append(v, ["ḥwt", "noun", "ḥwwt", "", "", "", "large structure"]) + let v = native_list_append(v, ["ḥwt-kꜣ-ptḥ", "noun", "ḥwt-kꜣ-ptḥ", "", "", "", "The temple of"]) + let v = native_list_append(v, ["jwꜣ", "noun", "jwꜣw", "", "", "", "ox especially as"]) + let v = native_list_append(v, ["jḥw", "noun", "E1:Z2", "", "", "", "plural of jḥ"]) + let v = native_list_append(v, ["wnḏw", "noun", "wnḏw", "", "", "", "short-horned cattle"]) + let v = native_list_append(v, ["ḏrt", "noun", "ḏrwt", "", "", "", "hand"]) + let v = native_list_append(v, ["ḥḏt", "noun", "ḥḏwt", "", "", "", "hippopotamus"]) + let v = native_list_append(v, ["ḥtrj", "noun", "ḥtrj", "", "", "", "team or yoke"]) + let v = native_list_append(v, ["mnmnt", "noun", "mnmnwt", "", "", "", "herd of cattle"]) + let v = native_list_append(v, ["ꜥwt", "noun", "ꜥwt", "", "", "", "four-legged animals in"]) + let v = native_list_append(v, ["jdr", "noun", "jdrw", "", "", "", "herd flock generally"]) + let v = native_list_append(v, ["ssm", "noun", "ssmw", "", "", "", "horse stallion"]) + let v = native_list_append(v, ["ssmt", "noun", "ssmwt", "", "", "", "A horse especially"]) + let v = native_list_append(v, ["ḥzꜣt", "noun", "ḥzꜣt", "", "", "", "Hesat a sacred"]) + let v = native_list_append(v, ["mꜣj-ḥzꜣ", "noun", "mꜣjw-ḥzꜣw", "", "", "", "lion"]) + let v = native_list_append(v, ["mmj", "noun", "mmjw", "", "", "", "giraffe"]) + let v = native_list_append(v, ["zꜣb", "noun", "zꜣbw", "", "", "", "jackal"]) + let v = native_list_append(v, ["ꜣbw", "noun", "ꜣbww", "", "", "", "cessation + m"]) + let v = native_list_append(v, ["bꜣ", "noun", "bꜣw", "", "", "", "working power active"]) + let v = native_list_append(v, ["ngꜣw", "noun", "ngꜣww", "", "", "", "longhorned ox"]) + let v = native_list_append(v, ["mjw", "noun", "mi-i-w-w-E13-Z3", "", "", "", "cat tomcat"]) + let v = native_list_append(v, ["mꜣj", "noun", "mꜣjw", "", "", "", "lion"]) + let v = native_list_append(v, ["mꜣy", "noun", "mꜣyw", "", "", "", "foetus"]) + let v = native_list_append(v, ["kꜣ", "noun", "kꜣw", "", "", "", "ka Something like"]) + let v = native_list_append(v, ["gmt", "noun", "g-m-t:Z2", "", "", "", "black ibis"]) + let v = native_list_append(v, ["ḫnms", "noun", "ḫnmsw", "", "", "", "friend"]) + let v = native_list_append(v, ["jwnw", "noun", "jwnw", "", "", "", "Heliopolis"]) + let v = native_list_append(v, ["mꜣ-ḥḏ", "noun", "mꜣw-ḥḏw", "", "", "", "oryx"]) + let v = native_list_append(v, ["mꜣt", "noun", "mꜣwt", "", "", "", "lioness"]) + let v = native_list_append(v, ["mꜣtt", "noun", "mꜣtwt", "", "", "", "mandrake"]) + let v = native_list_append(v, ["sꜣbt", "noun", "sꜣbwt", "", "", "", "dappled cow"]) + let v = native_list_append(v, ["šꜣ", "noun", "šꜣw", "", "", "", "field"]) + let v = native_list_append(v, ["ꜣby", "noun", "Ab-b-i-i-w-E24:Z2", "", "", "", "a lithe spotted"]) + let v = native_list_append(v, ["ꜥꜣ", "noun", "ꜥꜣw", "", "", "", "greatness prestige and"]) + let v = native_list_append(v, ["ḥqꜣt", "noun", "ḥqꜣwt", "", "", "", "ruler"]) + let v = native_list_append(v, ["hnw", "noun", "hnww", "", "", "", "jar"]) + let v = native_list_append(v, ["jpt", "noun", "jpwt", "", "", "", "oipe a dry"]) + let v = native_list_append(v, ["ẖꜣr", "noun", "ẖꜣrw", "", "", "", "sack of cloth"]) + let v = native_list_append(v, ["šnꜥtj", "noun", "šnꜥtjw", "", "", "", "a measure of"]) + let v = native_list_append(v, ["qdt", "noun", "qdwt", "", "", "", "a qite a"]) + let v = native_list_append(v, ["dbn", "noun", "dbnw", "", "", "", "the metal counterweight"]) + let v = native_list_append(v, ["sṯꜣt", "noun", "sṯꜣwt", "", "", "", "an aroura a"]) + let v = native_list_append(v, ["mḥ", "noun", "mḥw", "", "", "", "forearm"]) + let v = native_list_append(v, ["mrrt", "noun", "mrrwt", "", "", "", "street"]) + let v = native_list_append(v, ["ḏbꜥ", "noun", "ḏbꜥw", "", "", "", "finger inclusive of"]) + let v = native_list_append(v, ["šsp", "noun", "šspw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["šꜣqb", "noun", "šꜣqbw", "", "", "", "rhinoceros"]) + let v = native_list_append(v, ["mḥ-tꜣ", "noun", "mḥw-tꜣ", "", "", "", "a centaroura a"]) + let v = native_list_append(v, ["ḫꜣ-tꜣ", "noun", "ḫꜣw-tꜣ", "", "", "", "a decaroura a"]) + let v = native_list_append(v, ["jtrw", "noun", "jtrww", "", "", "", "river"]) + let v = native_list_append(v, ["ḫmnw", "noun", "ḫmnw", "", "", "", "the city of"]) + let v = native_list_append(v, ["sfḫw", "noun", "sfḫw", "", "", "", "offerings"]) + let v = native_list_append(v, ["mꜥbꜣ", "noun", "mꜥbꜣw", "", "", "", "kind of hunting"]) + let v = native_list_append(v, ["ḥmw", "noun", "ḥmww", "", "", "", "rudder steering-oar"]) + let v = native_list_append(v, ["št", "noun", "šwt", "", "", "", "calculation and collection"]) + let v = native_list_append(v, ["ḫꜣ", "noun", "ḫꜣw", "", "", "", "government office"]) + let v = native_list_append(v, ["ḥḥ", "noun", "ḥḥ", "", "", "", "the floodwaters of"]) + let v = native_list_append(v, ["jbꜣr", "noun", "jbꜣrw", "", "", "", "stallion"]) + let v = native_list_append(v, ["jbḥ", "noun", "jbḥw", "", "", "", "tooth"]) + let v = native_list_append(v, ["jꜣqt", "noun", "jꜣqt", "", "", "", "leeks"]) + let v = native_list_append(v, ["jꜣrrt", "noun", "jꜣrrt", "", "", "", "grapes"]) + let v = native_list_append(v, ["jzr", "noun", "jzrw", "", "", "", "tamarisk"]) + let v = native_list_append(v, ["jspt", "noun", "jsptw", "", "", "", "quiver for archery"]) + let v = native_list_append(v, ["ꜣst", "noun", "ꜣst", "", "", "", "Isis an important"]) + let v = native_list_append(v, ["jꜣkbyt", "noun", "jꜣkbywt", "", "", "", "mourning-woman"]) + let v = native_list_append(v, ["jꜥn", "noun", "jꜥnw", "", "", "", "baboon"]) + let v = native_list_append(v, ["nnw", "noun", "nnw", "", "", "", "inertness rigor mortis"]) + let v = native_list_append(v, ["sbnw", "noun", "sbnww", "", "", "", "a type of"]) + let v = native_list_append(v, ["sbk", "noun", "sbk", "", "", "", "Sobek the crocodile-god"]) + let v = native_list_append(v, ["zpꜣ", "noun", "zpꜣw", "", "", "", "centipede"]) + let v = native_list_append(v, ["spdt", "noun", "spdt", "", "", "", "effectiveness"]) + let v = native_list_append(v, ["knꜥnw", "noun", "k:Z4:n-a:n-U19:nw", "", "", "", "Canaanites"]) + let v = native_list_append(v, ["bꜣst", "noun", "bꜣst", "", "", "", "Bubastis a city"]) + let v = native_list_append(v, ["bbr", "noun", "bbr", "", "", "", "Babylon an ancient"]) + let v = native_list_append(v, ["bnw", "noun", "b-n:nw*w-w-G31-Z3", "", "", "", "the Bennu or"]) + let v = native_list_append(v, ["ꜥꜣpp", "noun", "ꜥꜣpp", "", "", "", "Apep/Apophis the evil"]) + let v = native_list_append(v, ["wꜣst", "noun", "wꜣst", "", "", "", "Thebes ancient Egyptian"]) + let v = native_list_append(v, ["pnw", "noun", "pnww", "", "", "", "mouse"]) + let v = native_list_append(v, ["pꜣq", "noun", "pꜣqw", "", "", "", "wafer"]) + let v = native_list_append(v, ["bddw-kꜣ", "noun", "bddww-kꜣ", "", "", "", "watermelon"]) + let v = native_list_append(v, ["pwntjw", "noun", "p-wn:n-tyw-T14-A40-A40-A40", "", "", "", "plural of pwntj"]) + let v = native_list_append(v, ["mwt", "noun", "mwwt", "", "", "", "mother"]) + let v = native_list_append(v, ["qdtt", "noun", "qdtwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["kns", "noun", "knsw", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["kftjw", "noun", "kftjww", "", "", "", "sea-going ship"]) + let v = native_list_append(v, ["kꜣpw", "noun", "kꜣpww", "", "", "", "crocodile"]) + let v = native_list_append(v, ["kbn", "noun", "kbn", "", "", "", "Byblos a town"]) + let v = native_list_append(v, ["kꜣkꜣ", "noun", "kꜣkꜣw", "", "", "", "bush shrub"]) + let v = native_list_append(v, ["kꜣš", "noun", "kꜣš", "", "", "", "Cush a kingdom"]) + let v = native_list_append(v, ["tnṯ", "noun", "tnṯw", "", "", "", "spur-winged lapwing"]) + let v = native_list_append(v, ["ṯnḥr", "noun", "ṯnḥrw", "", "", "", "hawk"]) + let v = native_list_append(v, ["dwꜣ-mwt.f", "noun", "dwꜣ-mwt.f", "", "", "", "Duamutef a mortuary"]) + let v = native_list_append(v, ["qbḥ-snw.f", "noun", "qbḥ-snw.f", "", "", "", "Qebehsenuef a mortuary"]) + let v = native_list_append(v, ["wj", "noun", "wjw", "", "", "", "mummiform inner coffin"]) + let v = native_list_append(v, ["ntt", "noun", "ntt", "", "", "", "she who is"]) + let v = native_list_append(v, ["swt", "noun", "swwt", "", "", "", "joint of beef"]) + let v = native_list_append(v, ["jmn", "noun", "jmn", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ḥnn", "noun", "ḥnnw", "", "", "", "hoe"]) + let v = native_list_append(v, ["mšw", "noun", "mšww", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["jnm", "noun", "jnmw", "", "", "", "skin of a"]) + let v = native_list_append(v, ["jnpw", "noun", "jnpww", "", "", "", "prince princess child"]) + let v = native_list_append(v, ["jnt", "noun", "jnwt", "", "", "", "valley"]) + let v = native_list_append(v, ["ḥtpw", "noun", "ḥtpw", "", "", "", "peace calm submission"]) + let v = native_list_append(v, ["ḥtyt", "noun", "ḥtywt", "", "", "", "throat"]) + let v = native_list_append(v, ["rnpt-ḥsb", "noun", "rnpwt-ḥsb", "", "", "", "regnal year"]) + let v = native_list_append(v, ["mrkbt", "noun", "mrkbwt", "", "", "", "chariot"]) + let v = native_list_append(v, ["mrwryt", "noun", "mrwrywt", "", "", "", "black stork"]) + let v = native_list_append(v, ["rnpt", "noun", "rnpwt", "", "", "", "year"]) + let v = native_list_append(v, ["djw ḥrjw rnpt", "noun", "rnp-t:Z1*Z1*Z1*Z1*Z1-Hr:r-w-hrw", "", "", "", "the five epagomenal"]) + let v = native_list_append(v, ["wnwt", "noun", "wnwwt", "", "", "", "hour one twelfth"]) + let v = native_list_append(v, ["ntt jwtt", "noun", "ntt jwtt", "", "", "", "what is and"]) + let v = native_list_append(v, ["štꜣw", "noun", "štꜣww", "", "", "", "secret"]) + let v = native_list_append(v, ["ꜥnt", "noun", "ꜥnwt", "", "", "", "claw"]) + let v = native_list_append(v, ["ꜥmm", "noun", "ꜥmmw", "", "", "", "brain"]) + let v = native_list_append(v, ["ꜥnꜥn", "noun", "ꜥnꜥnw", "", "", "", "chin"]) + let v = native_list_append(v, ["jnꜥ", "noun", "jnꜥw", "", "", "", "chin"]) + let v = native_list_append(v, ["ꜥpšꜣy", "noun", "ꜥpšꜣyw", "", "", "", "beetle"]) + let v = native_list_append(v, ["ꜥff", "noun", "ꜥffw", "", "", "", "fly insect"]) + let v = native_list_append(v, ["mzḥ", "noun", "mzḥw", "", "", "", "crocodile"]) + let v = native_list_append(v, ["nṯryt", "noun", "nṯryt", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["nṯrj", "noun", "nṯrjw", "", "", "", "magic rope"]) + let v = native_list_append(v, ["nṯrtj", "noun", "nṯrtjw", "", "", "", "adze used in"]) + let v = native_list_append(v, ["ṯꜣtj", "noun", "ṯꜣtjw", "", "", "", "vizier the head"]) + let v = native_list_append(v, ["smr", "noun", "smrw", "", "", "", "a court title"]) + let v = native_list_append(v, ["ḫndw", "noun", "ḫndww", "", "", "", "throne or other"]) + let v = native_list_append(v, ["rḫyt", "noun", "rḫyt", "", "", "", "the common people"]) + let v = native_list_append(v, ["ḥfꜣw", "noun", "ḥfꜣww", "", "", "", "snake worm"]) + let v = native_list_append(v, ["ḥqꜣ", "noun", "ḥqꜣw", "", "", "", "ruler"]) + let v = native_list_append(v, ["ḥtt", "noun", "ḥtwt", "", "", "", "mine excavation"]) + let v = native_list_append(v, ["ḥnj", "noun", "ḥnjw", "", "", "", "bulrush"]) + let v = native_list_append(v, ["ḥnw", "noun", "ḥnww", "", "", "", "pot bowl"]) + let v = native_list_append(v, ["ḫprš", "noun", "ḫprš", "", "", "", "The Blue Crown"]) + let v = native_list_append(v, ["ptḥ", "noun", "ptḥ", "", "", "", "Ptah creator god"]) + let v = native_list_append(v, ["ḥwt-nṯr", "noun", "ḥwwt-nṯr", "", "", "", "temple"]) + let v = native_list_append(v, ["tf", "noun", "tfw", "", "", "", "spittle"]) + let v = native_list_append(v, ["nf", "noun", "nf", "", "", "", "wrong wrongdoing"]) + let v = native_list_append(v, ["nw", "noun", "nww", "", "", "", "time"]) + let v = native_list_append(v, ["jpw", "noun", "jpw", "", "", "", "Akhmim or Panopolis"]) + let v = native_list_append(v, ["ꜥt-sbꜣw", "noun", "ꜥwt-sbꜣw", "", "", "", "school"]) + let v = native_list_append(v, ["nhj", "noun", "nhj", "", "", "", "some a few"]) + let v = native_list_append(v, ["ṯnw", "noun", "ṯnw", "", "", "", "each one"]) + let v = native_list_append(v, ["qbḥ", "noun", "qbḥ", "", "", "", "death"]) + let v = native_list_append(v, ["jmḏr", "noun", "jmḏrw", "", "", "", "wall fortification"]) + let v = native_list_append(v, ["ḏryt", "noun", "ḏrywt", "", "", "", "kite falconiform bird"]) + let v = native_list_append(v, ["ḏfḏ", "noun", "ḏfḏw", "", "", "", "pupil of the"]) + let v = native_list_append(v, ["dšr", "noun", "dšrw", "", "", "", "flamingo"]) + let v = native_list_append(v, ["jw", "noun", "jww", "", "", "", "island"]) + let v = native_list_append(v, ["jsw", "noun", "jsww", "", "", "", "recompense remuneration"]) + let v = native_list_append(v, ["hbj", "noun", "h-b-y-w-G26-Z3", "", "", "", "ibis"]) + let v = native_list_append(v, ["mnḏ", "noun", "mnḏw", "", "", "", "breast of both"]) + let v = native_list_append(v, ["mnḏt", "noun", "mnḏwt", "", "", "", "cheek"]) + let v = native_list_append(v, ["ṯz", "noun", "ṯzw", "", "", "", "vertebra"]) + let v = native_list_append(v, ["ḥꜣ", "noun", "ḥꜣw", "", "", "", "back of the"]) + let v = native_list_append(v, ["ḏt", "noun", "ḏwt", "", "", "", "cobra"]) + let v = native_list_append(v, ["nḥḥ", "noun", "nḥḥ", "", "", "", "cyclical eternity"]) + let v = native_list_append(v, ["prt", "noun", "prwt", "", "", "", "‘Emergence’ the growing"]) + let v = native_list_append(v, ["ḏdw", "noun", "ḏdw", "", "", "", "an Old Kingdom"]) + let v = native_list_append(v, ["wnn-nfr", "noun", "wnn-nfr", "", "", "", "an epithet or"]) + let v = native_list_append(v, ["srw", "noun", "srww", "", "", "", "Egyptian goose Alopochen"]) + let v = native_list_append(v, ["ḥwt-ḥr", "noun", "ḥwt-ḥr", "", "", "", "Hathor the goddess"]) + let v = native_list_append(v, ["qrst", "noun", "qrswt", "", "", "", "burial"]) + let v = native_list_append(v, ["smḥ", "noun", "smḥw", "", "", "", "papyrus skiff"]) + let v = native_list_append(v, ["ḥrj-pr", "noun", "ḥrj-pr", "", "", "", "majordomo head domestic"]) + let v = native_list_append(v, ["ḥrt-pr", "noun", "ḥrt-pr", "", "", "", "majordomo head domestic"]) + let v = native_list_append(v, ["ḥrt", "noun", "ḥrwt", "", "", "", "sky"]) + let v = native_list_append(v, ["nfrt", "noun", "nfrwt", "", "", "", "something pleasing beautiful"]) + let v = native_list_append(v, ["zẖꜣ", "noun", "zẖꜣw", "", "", "", "writing record"]) + let v = native_list_append(v, ["hmhmt", "noun", "hmhmt", "", "", "", "roaring sound of"]) + let v = native_list_append(v, ["pḏt", "noun", "pḏwt", "", "", "", "bow weapon"]) + let v = native_list_append(v, ["dn", "noun", "dn", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["tꜣwj", "noun", "tꜣwj", "", "", "", "dual of tꜣ"]) + let v = native_list_append(v, ["snḏw", "noun", "snḏww", "", "", "", "fear"]) + let v = native_list_append(v, ["ḏꜥm", "noun", "ḏꜥm", "", "", "", "electrum"]) + let v = native_list_append(v, ["tꜣw", "noun", "N16:N16:N16", "", "", "", "plural of tꜣ"]) + let v = native_list_append(v, ["šnbt", "noun", "šnbwt", "", "", "", "The front of"]) + let v = native_list_append(v, ["jmꜣ", "noun", "jmꜣw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["psḏt pḏt", "noun", "psḏt pḏt", "", "", "", "The Nine Bows"]) + let v = native_list_append(v, ["jmn-rꜥ", "noun", "jmn-rꜥ", "", "", "", "the god Amun-Ra"]) + let v = native_list_append(v, ["ddw", "noun", "ddw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jt", "noun", "jtw", "", "", "", "father"]) + let v = native_list_append(v, ["ḏd", "noun", "ḏdw", "", "", "", "infinitive of ḏd"]) + let v = native_list_append(v, ["spꜣt", "noun", "spꜣwt", "", "", "", "nome district"]) + let v = native_list_append(v, ["r n kmt", "noun", "r n kmt", "", "", "", "the Egyptian language"]) + let v = native_list_append(v, ["wr", "noun", "wr", "", "", "", "greatness importance"]) + let v = native_list_append(v, ["ꜣbḏw", "noun", "ꜣbḏw", "", "", "", "the city of"]) + let v = native_list_append(v, ["šmꜥ", "noun", "šmꜥ", "", "", "", "Upper Egypt an"]) + let v = native_list_append(v, ["ḥtp", "noun", "ḥtp", "", "", "", "peace lack of"]) + let v = native_list_append(v, ["jwjt", "noun", "jwjt", "", "", "", "wrong"]) + let v = native_list_append(v, ["ṯꜣw", "noun", "ṯꜣww", "", "", "", "a wind"]) + let v = native_list_append(v, ["nwt", "noun", "nwwt", "", "", "", "town city"]) + let v = native_list_append(v, ["wḥm", "noun", "wḥmw", "", "", "", "a herald"]) + let v = native_list_append(v, ["bjnt", "noun", "bjnt", "", "", "", "badness evil"]) + let v = native_list_append(v, ["nḏs", "noun", "nḏsw", "", "", "", "person physically small"]) + let v = native_list_append(v, ["ḫw.f-wj", "noun", "ḫw.f-wj", "", "", "", "a throne name"]) + let v = native_list_append(v, ["snbj", "noun", "snbj", "", "", "", "a male given"]) + let v = native_list_append(v, ["rwd", "noun", "rwdw", "", "", "", "stairway"]) + let v = native_list_append(v, ["ḥꜣb", "noun", "ḥꜣbw", "", "", "", "festival"]) + let v = native_list_append(v, ["ḫw", "noun", "ḫw", "", "", "", "a male given"]) + let v = native_list_append(v, ["rꜥ-ms-sw", "noun", "rꜥ-ms-sw", "", "", "", "a male given"]) + let v = native_list_append(v, ["kꜣs", "noun", "kꜣs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kš", "noun", "kš", "", "", "", "18th Dynasty form"]) + let v = native_list_append(v, ["sqr", "noun", "sqrw", "", "", "", "a punch"]) + let v = native_list_append(v, ["grg", "noun", "grgw", "", "", "", "lie falsehood"]) + let v = native_list_append(v, ["ꜥḥꜣ", "noun", "ꜥḥꜣw", "", "", "", "fight battle"]) + let v = native_list_append(v, ["ꜣs", "noun", "ꜣsw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣpd", "noun", "ꜣpdw", "", "", "", "a bird in"]) + let v = native_list_append(v, ["wsr", "noun", "wsrw", "", "", "", "oar"]) + let v = native_list_append(v, ["jn-jt.f", "noun", "jn-jt.f", "", "", "", "a male given"]) + let v = native_list_append(v, ["jtn", "noun", "jtnw", "", "", "", "the disc of"]) + let v = native_list_append(v, ["spt", "noun", "spwt", "", "", "", "lip"]) + let v = native_list_append(v, ["šw", "noun", "šw", "", "", "", "the god Shu"]) + let v = native_list_append(v, ["jꜣr", "noun", "jꜣrw", "", "", "", "sorrow"]) + let v = native_list_append(v, ["ḥm-nṯr", "noun", "ḥmw-nṯr", "", "", "", "priest"]) + let v = native_list_append(v, ["ḏd-mdw", "noun", "ḏd-mdw", "", "", "", "recitation + jn"]) + let v = native_list_append(v, ["ḫ", "noun", "ḫw", "", "", "", "placenta"]) + let v = native_list_append(v, ["ḫꜣy", "noun", "ḫꜣyw", "", "", "", "plumb line"]) + let v = native_list_append(v, ["ḫꜣwt", "noun", "ḫꜣwwt", "", "", "", "altar"]) + let v = native_list_append(v, ["ḫt n ꜥnḫ", "noun", "ḫtw nw ꜥnḫ", "", "", "", "plant-based food often"]) + let v = native_list_append(v, ["bjt", "noun", "bjt", "", "", "", "honey bee"]) + let v = native_list_append(v, ["jkn", "noun", "jknw", "", "", "", "cup scoop small"]) + let v = native_list_append(v, ["ḥꜥpj", "noun", "ḥꜥpj", "", "", "", "the Nile River"]) + let v = native_list_append(v, ["mḥt", "noun", "mḥt", "", "", "", "The Nile Delta."]) + let v = native_list_append(v, ["ꜥnḫw", "noun", "ꜥnḫw", "", "", "", "plural of ꜥnḫ"]) + let v = native_list_append(v, ["nšt", "noun", "nšwt", "", "", "", "a hairdresser"]) + let v = native_list_append(v, ["ḥnqt", "noun", "ḥnqwt", "", "", "", "beer"]) + let v = native_list_append(v, ["jrp", "noun", "jrpw", "", "", "", "wine"]) + let v = native_list_append(v, ["mw", "noun", "mww", "", "", "", "water substance"]) + let v = native_list_append(v, ["ꜣt", "noun", "ꜣwt", "", "", "", "particular point in"]) + let v = native_list_append(v, ["ꜣꜣt", "noun", "ꜣꜣt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣjwj", "noun", "ꜣjwj", "", "", "", "pair of bandages"]) + let v = native_list_append(v, ["ꜣjs", "noun", "ꜣjsw", "", "", "", "viscera in general"]) + let v = native_list_append(v, ["ꜥꜣꜥ", "noun", "ꜥꜣꜥ", "", "", "", "semen"]) + let v = native_list_append(v, ["ꜣꜥꜥ", "noun", "ꜣꜥꜥw", "", "", "", "speaker of a"]) + let v = native_list_append(v, ["ꜣꜥꜥt", "noun", "ꜣꜥꜥwt", "", "", "", "vessel container jar"]) + let v = native_list_append(v, ["ꜣꜥꜥbw", "noun", "ꜣꜥꜥbw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣꜥꜥnj", "noun", "ꜣꜥꜥnjw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣꜥw", "noun", "ꜣꜥww", "", "", "", "storage case for"]) + let v = native_list_append(v, ["ꜣꜥbt", "noun", "ꜣꜥbwt", "", "", "", "harm oppression especially"]) + let v = native_list_append(v, ["swnt", "noun", "swnwt", "", "", "", "trade"]) + let v = native_list_append(v, ["ẖrd", "noun", "ẖrdw", "", "", "", "child"]) + let v = native_list_append(v, ["wꜣḏ", "noun", "wꜣḏw", "", "", "", "papyrus stem with"]) + let v = native_list_append(v, ["nb-ḫꜥw", "noun", "nb-ḫꜥw", "", "", "", "a common epithet"]) + let v = native_list_append(v, ["wꜥb", "noun", "wꜥbw", "", "", "", "the lowest level"]) + let v = native_list_append(v, ["jz", "noun", "jzw", "", "", "", "tomb including both"]) + let v = native_list_append(v, ["js", "noun", "js", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mr-wr", "noun", "mr-wr", "", "", "", "the main canal"]) + let v = native_list_append(v, ["gs", "noun", "gsw", "", "", "", "half"]) + let v = native_list_append(v, ["ws", "noun", "wsw", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ꜥḥꜥ", "noun", "ꜥḥꜥw", "", "", "", "stela"]) + let v = native_list_append(v, ["mꜥḥꜥt", "noun", "mꜥḥꜥwt", "", "", "", "tomb"]) + let v = native_list_append(v, ["wḥꜣt", "noun", "wḥꜣwt", "", "", "", "cauldron"]) + let v = native_list_append(v, ["nṯr", "noun", "nṯrw", "", "", "", "god"]) + let v = native_list_append(v, ["ꜣtp", "noun", "ꜣtp", "", "", "", "a kind of"]) + let v = native_list_append(v, ["kꜣnꜥnꜥ", "noun", "kꜣnꜥnꜥ", "", "", "", "Canaan"]) + let v = native_list_append(v, ["dšrt", "noun", "dšrt", "", "", "", "The desert that"]) + let v = native_list_append(v, ["ysrjꜣr", "noun", "ysrjꜣr", "", "", "", "a demonym probably"]) + let v = native_list_append(v, ["ptwꜣrwmys", "noun", "ptwꜣrwmys", "", "", "", "a male given"]) + let v = native_list_append(v, ["qrwjwꜣpꜣdrꜣ", "noun", "qrwjwꜣpꜣdrꜣ", "", "", "", "a female given"]) + let v = native_list_append(v, ["wsjr", "noun", "wsjr", "", "", "", "the god Osiris"]) + let v = native_list_append(v, ["ṯḥnw", "noun", "ṯḥnw", "", "", "", "Libya"]) + let v = native_list_append(v, ["ꜣš", "noun", "ꜣš", "", "", "", "the god Ash"]) + let v = native_list_append(v, ["mn-nfr", "noun", "mn-nfr", "", "", "", "Memphis"]) + let v = native_list_append(v, ["mry-n-ptḥ", "noun", "mry-n-ptḥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["jsqꜣrnj", "noun", "jsqꜣrnj", "", "", "", "Ashkelon"]) + let v = native_list_append(v, ["ṯzt", "noun", "ṯzwt", "", "", "", "knot"]) + let v = native_list_append(v, ["ꜣkr", "noun", "ꜣkr", "", "", "", "Aker the Egyptian"]) + let v = native_list_append(v, ["ꜥm-mwt", "noun", "ꜥm-mwt", "", "", "", "Ammit or Ammut"]) + let v = native_list_append(v, ["jmnt", "noun", "jmnt", "", "", "", "west the West"]) + let v = native_list_append(v, ["ꜥꜣm-myt", "noun", "ꜥꜣm-myt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥm-myt", "noun", "ꜥm-myt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥmt-mwt", "noun", "ꜥmt-mwt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥmꜣ-myt", "noun", "ꜥmꜣ-myt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jmn-ḥtp", "noun", "jmn-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["ꜥm-ḥḥ", "noun", "ꜥm-ḥḥ", "", "", "", "Am-heh an Egyptian"]) + let v = native_list_append(v, ["ꜥntjt", "noun", "ꜥntjt", "", "", "", "Anat an Egyptian"]) + let v = native_list_append(v, ["jn-ḥrt", "noun", "jn-ḥrt", "", "", "", "Anhur/Anhor/Onuris Egyptian god"]) + let v = native_list_append(v, ["ꜥntj", "noun", "ꜥntj", "", "", "", "Anti a falcon"]) + let v = native_list_append(v, ["nmtj", "noun", "nmtj", "", "", "", "Nemti or Nemty"]) + let v = native_list_append(v, ["ꜥnqt", "noun", "ꜥnqt", "", "", "", "the goddess Anuket"]) + let v = native_list_append(v, ["bḥz", "noun", "bḥzw", "", "", "", "calf"]) + let v = native_list_append(v, ["ḏꜣḏꜣ", "noun", "ḏꜣḏꜣ", "", "", "", "head"]) + let v = native_list_append(v, ["ꜣ", "noun", "A-w-Z3", "", "", "", "the Egyptian vulture"]) + let v = native_list_append(v, ["ꜥ", "noun", "ꜥw", "", "", "", "arm hand"]) + let v = native_list_append(v, ["wt", "noun", "wtw", "", "", "", "bandage"]) + let v = native_list_append(v, ["ꜥwꜣy", "noun", "a-V4-A-i-i-w-A24-Z3", "", "", "", "robber"]) + let v = native_list_append(v, ["twt", "noun", "twtw", "", "", "", "likeness image"]) + let v = native_list_append(v, ["ḫnsw", "noun", "ḫnsw", "", "", "", "Khonsu"]) + let v = native_list_append(v, ["hb", "noun", "hbw", "", "", "", "plough"]) + let v = native_list_append(v, ["znf", "noun", "znfw", "", "", "", "blood"]) + let v = native_list_append(v, ["stp", "noun", "stpw", "", "", "", "the choicest the"]) + let v = native_list_append(v, ["mdw-nṯr", "noun", "nTr-md-Z3", "", "", "", "sacred literature traditionally"]) + let v = native_list_append(v, ["kꜣmn", "noun", "kꜣmnw", "", "", "", "blind man"]) + let v = native_list_append(v, ["bwt", "noun", "bwwt", "", "", "", "abomination loathsome or"]) + let v = native_list_append(v, ["jꜣꜣt", "noun", "jꜣꜣwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["jꜣꜣyt", "noun", "jꜣꜣyt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜣjw", "noun", "i-A-i-w-", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["jꜣꜥ", "noun", "jꜣꜥw", "", "", "", "kilt"]) + let v = native_list_append(v, ["jꜥꜣ", "noun", "jꜥꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jry", "noun", "jryw", "", "", "", "A knife"]) + let v = native_list_append(v, ["ꜥꜣmt", "noun", "ꜥꜣmwt", "", "", "", "Asian woman Semitic"]) + let v = native_list_append(v, ["wfj", "noun", "wfjw", "", "", "", "a type of"]) + let v = native_list_append(v, ["ꜣꜥz", "noun", "ꜣꜥzw", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ꜣꜣ", "noun", "ꜣꜣw", "", "", "", "mound of ruins"]) + let v = native_list_append(v, ["ꜣd", "noun", "ꜣdw", "", "", "", "aggression rage fury"]) + let v = native_list_append(v, ["bꜣstt", "noun", "bꜣstt", "", "", "", "Bastet the cat-goddess"]) + let v = native_list_append(v, ["jsr", "noun", "jsr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mꜣ", "noun", "mꜣw", "", "", "", "stern"]) + let v = native_list_append(v, ["mdwt", "noun", "mdwt", "", "", "", "words speech things"]) + let v = native_list_append(v, ["nṯrt", "noun", "nTr-r:*t-I12-I12-I12", "", "", "", "goddess"]) + let v = native_list_append(v, ["nṯrw", "noun", "R8A", "", "", "", "plural of nṯr"]) + let v = native_list_append(v, ["mnj", "noun", "mnj", "", "", "", "a male given"]) + let v = native_list_append(v, ["mꜣꜥt", "noun", "mꜣꜥwt", "", "", "", "truth"]) + let v = native_list_append(v, ["msḥ", "noun", "msḥ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sꜣ", "noun", "sꜣw", "", "", "", "back"]) + let v = native_list_append(v, ["znt", "noun", "znwt", "", "", "", "senet a board"]) + let v = native_list_append(v, ["dwꜣt", "noun", "dwꜣt", "", "", "", "The Duat the"]) + let v = native_list_append(v, ["dꜣt", "noun", "dꜣt", "", "", "", "Later form of"]) + let v = native_list_append(v, ["wp-rnpt", "noun", "wp-rnpt", "", "", "", "‘New Year’s Day’"]) + let v = native_list_append(v, ["wprt", "noun", "wprwt", "", "", "", "a sidelock of"]) + let v = native_list_append(v, ["wp-hrw", "noun", "wp-hrw", "", "", "", "the beginning of"]) + let v = native_list_append(v, ["pꜣ-n-jpt", "noun", "pꜣ-n-jpt", "", "", "", "the month of"]) + let v = native_list_append(v, ["kꜣ-ḥr-kꜣ", "noun", "kꜣ-ḥr-kꜣ", "", "", "", "the month of"]) + let v = native_list_append(v, ["tꜣ-ꜥꜣbt", "noun", "tꜣ-ꜥꜣbt", "", "", "", "the month of"]) + let v = native_list_append(v, ["pꜣ-n-pꜣ-mḫrw", "noun", "pꜣ-n-pꜣ-mḫrw", "", "", "", "the month of"]) + let v = native_list_append(v, ["pꜣ-n-jmn-ḥtp", "noun", "pꜣ-n-jmn-ḥtp", "", "", "", "the month of"]) + let v = native_list_append(v, ["pꜣ-n-rnn-wtt", "noun", "pꜣ-n-rnn-wtt", "", "", "", "the month of"]) + let v = native_list_append(v, ["pꜣ-n-ḫnsw", "noun", "pꜣ-n-ḫnsw", "", "", "", "the month of"]) + let v = native_list_append(v, ["pꜣ-n-jnt", "noun", "pꜣ-n-jnt", "", "", "", "the month of"]) + let v = native_list_append(v, ["jpj-jpj", "noun", "jpj-jpj", "", "", "", "the month of"]) + let v = native_list_append(v, ["mswt-rꜥ", "noun", "mswt-rꜥ", "", "", "", "the month of"]) + let v = native_list_append(v, ["ḫꜣt", "noun", "ḫꜣwt", "", "", "", "disease illness"]) + let v = native_list_append(v, ["ꜥnḫwj", "noun", "ꜥnḫwj", "", "", "", "pair of ears"]) + let v = native_list_append(v, ["ṯnj", "noun", "ṯnj", "", "", "", "Thinis"]) + let v = native_list_append(v, ["msqt-sḥdw", "noun", "msqt-sḥdw", "", "", "", "a region of"]) + let v = native_list_append(v, ["sḥd", "noun", "sḥdw", "", "", "", "a type of"]) + let v = native_list_append(v, ["sḥdw", "noun", "s-H-d:F18-sbA-w", "", "", "", "plural of sḥd"]) + let v = native_list_append(v, ["ꜣḫ", "noun", "ꜣḫw", "", "", "", "akh"]) + let v = native_list_append(v, ["ꜥꜥw", "noun", "ꜥꜥw", "", "", "", "sleep"]) + let v = native_list_append(v, ["ꜥꜣdt", "noun", "ꜥꜣdwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ḥm", "noun", "ḥmw", "", "", "", "the king of"]) + let v = native_list_append(v, ["ṯꜣtt", "noun", "ṯꜣtwt", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["ḥqt", "noun", "ḥqt", "", "", "", "Heqet a frog-goddess"]) + let v = native_list_append(v, ["ḫftj", "noun", "ḫftjw", "", "", "", "enemy adversary"]) + let v = native_list_append(v, ["ḫftt", "noun", "ḫftwt", "", "", "", "enemy"]) + let v = native_list_append(v, ["ḥfꜣt", "noun", "ḥfꜣwt", "", "", "", "snake"]) + let v = native_list_append(v, ["jḫt", "noun", "jḫt", "", "", "", "Old Kingdom form"]) + let v = native_list_append(v, ["nfrw", "noun", "nfrw", "", "", "", "beauty"]) + let v = native_list_append(v, ["nwtkꜣrṯ", "noun", "nwtkꜣrṯ", "", "", "", "Naucratis"]) + let v = native_list_append(v, ["nwtj", "noun", "nwtj", "", "", "", "dual of nwt"]) + let v = native_list_append(v, ["mdw", "noun", "mdw", "", "", "", "spoken word"]) + let v = native_list_append(v, ["ḫprw", "noun", "ḫprww", "", "", "", "physical form shape"]) + let v = native_list_append(v, ["jḥ", "noun", "jḥw", "", "", "", "ox"]) + let v = native_list_append(v, ["rꜣ", "noun", "rꜣw", "", "", "", "goose"]) + let v = native_list_append(v, ["zẖꜣw", "noun", "zẖꜣww", "", "", "", "scribe"]) + let v = native_list_append(v, ["tꜣšj", "noun", "tꜣšjw", "", "", "", "neighbor"]) + let v = native_list_append(v, ["ꜣbd", "noun", "ꜣbdw", "", "", "", "month"]) + let v = native_list_append(v, ["šzp", "noun", "šzpw", "", "", "", "palm a measure"]) + let v = native_list_append(v, ["nswt", "noun", "njw-swt", "", "", "", "king of Upper"]) + let v = native_list_append(v, ["zꜣ-nswt", "noun", "zꜣw-nswt", "", "", "", "prince son of"]) + let v = native_list_append(v, ["zꜣt-nswt", "noun", "zꜣwt-nswt", "", "", "", "princess daughter of"]) + let v = native_list_append(v, ["ptḥ-wr", "noun", "ptḥ-wr", "", "", "", "a male given"]) + let v = native_list_append(v, ["zꜣ-ptḥ", "noun", "zꜣ-ptḥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["z-n-wsrt", "noun", "z-n-wsrt", "", "", "", "a male given"]) + let v = native_list_append(v, ["mry-rꜥ", "noun", "mry-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["mry-jmn", "noun", "mry-jmn", "", "", "", "a male given"]) + let v = native_list_append(v, ["nbt", "noun", "nbwt", "", "", "", "mistress lady woman"]) + let v = native_list_append(v, ["jnr", "noun", "jnrw", "", "", "", "stone"]) + let v = native_list_append(v, ["stt", "noun", "stwt", "", "", "", "secretions boil"]) + let v = native_list_append(v, ["mry", "noun", "mry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḥm-nṯr tpj", "noun", "ḥmw-nṯr tpjw", "", "", "", "high priest the"]) + let v = native_list_append(v, ["ꜣḥt", "noun", "ꜣḥwt", "", "", "", "field cultivated plot"]) + let v = native_list_append(v, ["sḫtj", "noun", "sḫtjw", "", "", "", "farmer peasant"]) + let v = native_list_append(v, ["sḫt", "noun", "sḫwt", "", "", "", "field marshland"]) + let v = native_list_append(v, ["wnjs", "noun", "wnjs", "", "", "", "a male given"]) + let v = native_list_append(v, ["jmj", "noun", "jmjw", "", "", "", "what is within"]) + let v = native_list_append(v, ["šnw", "noun", "šnww", "", "", "", "circle"]) + let v = native_list_append(v, ["bjtj", "noun", "bjtjw", "", "", "", "king of Lower"]) + let v = native_list_append(v, ["nswt-bjtj", "noun", "nswt-bjtj", "", "", "", "dual king of"]) + let v = native_list_append(v, ["zꜣ-rꜥ", "noun", "zꜣw-rꜥ", "", "", "", "Conventionally written before"]) + let v = native_list_append(v, ["jty", "noun", "jtyw", "", "", "", "sire sovereign"]) + let v = native_list_append(v, ["nb-tꜣwj", "noun", "nb-tꜣwj", "", "", "", "a common pharaonic"]) + let v = native_list_append(v, ["sḫr", "noun", "sḫrw", "", "", "", "plan"]) + let v = native_list_append(v, ["šwt", "noun", "šwwt", "", "", "", "shadow"]) + let v = native_list_append(v, ["jrt", "noun", "jrwt", "", "", "", "eye"]) + let v = native_list_append(v, ["ḫnt", "noun", "ḫntw", "", "", "", "jar stand"]) + let v = native_list_append(v, ["ḏr", "noun", "ḏrw", "", "", "", "limit end"]) + let v = native_list_append(v, ["ḥꜣtj-ꜥ", "noun", "ḥꜣtjw-ꜥ", "", "", "", "high official"]) + let v = native_list_append(v, ["mjtw", "noun", "mjtww", "", "", "", "one like equal"]) + let v = native_list_append(v, ["mjtj", "noun", "mjtjw", "", "", "", "the equal of"]) + let v = native_list_append(v, ["mjt", "noun", "mjwt", "", "", "", "similarity"]) + let v = native_list_append(v, ["ḫntj", "noun", "ḫntj", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ꜥt", "noun", "ꜥwt", "", "", "", "limb"]) + let v = native_list_append(v, ["jrj-ꜥt", "noun", "jrjw-ꜥt", "", "", "", "room-keeper"]) + let v = native_list_append(v, ["ẖrj-ḥꜣb", "noun", "ẖrjw-ḥꜣb", "", "", "", "lector priest"]) + let v = native_list_append(v, ["ḫntj-jmntjw", "noun", "ḫntj-jmntjw", "", "", "", "Foremost of the"]) + let v = native_list_append(v, ["tpj-ḏw.f", "noun", "tpj-ḏw.f", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ẖrj-nṯr", "noun", "ẖrj-nṯr", "", "", "", "necropolis cemetery"]) + let v = native_list_append(v, ["bw", "noun", "bww", "", "", "", "place location"]) + let v = native_list_append(v, ["jmt-pr", "noun", "jmwt-pr", "", "", "", "inventory of a"]) + let v = native_list_append(v, ["jmj-r", "noun", "jmjw-r", "", "", "", "overseer chief administrator"]) + let v = native_list_append(v, ["jmj-r-pr", "noun", "jmjw-r-pr", "", "", "", "steward administrator of"]) + let v = native_list_append(v, ["jmj-r-mšꜥ", "noun", "jmjw-r-mšꜥ", "", "", "", "general military leader"]) + let v = native_list_append(v, ["bꜣk jm", "noun", "bꜣk jm", "", "", "", "a humble reference"]) + let v = native_list_append(v, ["grw", "noun", "grww", "", "", "", "one who is"]) + let v = native_list_append(v, ["tnw", "noun", "tnww", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ḏs", "noun", "ḏsw", "", "", "", "self"]) + let v = native_list_append(v, ["snnw", "noun", "snnw", "", "", "", "companion fellow"]) + let v = native_list_append(v, ["zp", "noun", "zpw", "", "", "", "time as in"]) + let v = native_list_append(v, ["ꜥrqy", "noun", "ꜥrqyw", "", "", "", "last day of"]) + let v = native_list_append(v, ["msdmt", "noun", "msdmwt", "", "", "", "a black mineral"]) + let v = native_list_append(v, ["bꜣjr", "noun", "bꜣjrw", "", "", "", "baris a type"]) + let v = native_list_append(v, ["ḥrrt", "noun", "ḥrrwt", "", "", "", "flower blossom"]) + let v = native_list_append(v, ["ꜥḥꜣwtj", "noun", "ꜥḥꜣwtjw", "", "", "", "fighter warrior soldier"]) + let v = native_list_append(v, ["zpwj snwj", "noun", "zpwj snwj", "", "", "", "two times twice"]) + let v = native_list_append(v, ["pr-m-ws", "noun", "pr-m-ws", "", "", "", "height of a"]) + let v = native_list_append(v, ["swnw", "noun", "swnw", "", "", "", "the city of"]) + let v = native_list_append(v, ["zft", "noun", "zfwt", "", "", "", "metal sword"]) + let v = native_list_append(v, ["mryt", "noun", "mrywt", "", "", "", "shore or riverbank"]) + let v = native_list_append(v, ["sbn", "noun", "sbnw", "", "", "", "bandage especially as"]) + let v = native_list_append(v, ["šnḏwt", "noun", "šnḏwt", "", "", "", "shendyt a kind"]) + let v = native_list_append(v, ["jnst", "noun", "jnswt", "", "", "", "an edible plant"]) + let v = native_list_append(v, ["ꜣwšꜣmm", "noun", "ꜣwšꜣmm", "", "", "", "Jerusalem"]) + let v = native_list_append(v, ["mswt-wsjr", "noun", "mswt-wsjr", "", "", "", "The first of"]) + let v = native_list_append(v, ["mswt-ḥr", "noun", "mswt-ḥr", "", "", "", "The second of"]) + let v = native_list_append(v, ["mswt-stẖ", "noun", "mswt-stẖ", "", "", "", "The third of"]) + let v = native_list_append(v, ["mswt-ꜣst", "noun", "mswt-ꜣst", "", "", "", "The fourth of"]) + let v = native_list_append(v, ["mswt-nbt-ḥwt", "noun", "mswt-nbt-ḥwt", "", "", "", "The fifth and"]) + let v = native_list_append(v, ["wḏꜣt", "noun", "wḏꜣwt", "", "", "", "the dismembered and"]) + let v = native_list_append(v, ["tḫj", "noun", "tḫj", "", "", "", "the month of"]) + let v = native_list_append(v, ["mnḫt", "noun", "mnḫwt", "", "", "", "clothing garment"]) + let v = native_list_append(v, ["ẖnt-ḥwt-ḥr", "noun", "ẖnt-ḥwt-ḥr", "", "", "", "the month of"]) + let v = native_list_append(v, ["nḥb-kꜣw", "noun", "nḥb-kꜣw", "", "", "", "the month of"]) + let v = native_list_append(v, ["šf-bdt", "noun", "šf-bdt", "", "", "", "the month of"]) + let v = native_list_append(v, ["rkḥ-ꜥꜣ", "noun", "rkḥ-ꜥꜣ", "", "", "", "the month of"]) + let v = native_list_append(v, ["rkḥ-nḏs", "noun", "rkḥ-nḏs", "", "", "", "the month of"]) + let v = native_list_append(v, ["rnn-wtt", "noun", "rnn-wtt", "", "", "", "Renenutet a goddess"]) + let v = native_list_append(v, ["ḫnt-ẖty-prtj", "noun", "ḫnt-ẖty-prtj", "", "", "", "Khentakhtai-perti a god"]) + let v = native_list_append(v, ["jpt-ḥmt", "noun", "jpt-ḥmt", "", "", "", "the month of"]) + let v = native_list_append(v, ["ẖrw", "noun", "ẖrww", "", "", "", "belowness base bottom"]) + let v = native_list_append(v, ["ẖrt", "noun", "ẖrwt", "", "", "", "possession belonging"]) + let v = native_list_append(v, ["pꜥt", "noun", "pꜥt", "", "", "", "social stratum of"]) + let v = native_list_append(v, ["jmw", "noun", "jmww", "", "", "", "boat ship in"]) + let v = native_list_append(v, ["wrrt", "noun", "wrrt", "", "", "", "the White Crown"]) + let v = native_list_append(v, ["sbꜣyt", "noun", "sbꜣyt", "", "", "", "instruction teaching"]) + let v = native_list_append(v, ["ꜥꜣmw", "noun", "aA:a-A-im-T14-A1", "", "", "", "plural of ꜥꜣm"]) + let v = native_list_append(v, ["nmw", "noun", "nmww", "", "", "", "dwarf deformed person"]) + let v = native_list_append(v, ["nmj", "noun", "nmj", "", "", "", "Late Period form"]) + let v = native_list_append(v, ["ḏfd", "noun", "ḏfd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twt-ꜥnḫ-jmn", "noun", "twt-ꜥnḫ-jmn", "", "", "", "a male given"]) + let v = native_list_append(v, ["twt-ꜥnḫ-jmn-ḥqꜣ-jwnw-šmꜥw", "noun", "twt-ꜥnḫ-jmn-ḥqꜣ-jwnw-šmꜥw", "", "", "", "a male given"]) + let v = native_list_append(v, ["twt-ꜥnḫ-jtn", "noun", "twt-ꜥnḫ-jtn", "", "", "", "a male given"]) + let v = native_list_append(v, ["ꜣwt", "noun", "ꜣwt", "", "", "", "length duration of"]) + let v = native_list_append(v, ["ꜣb", "noun", "ꜣbw", "", "", "", "fingernail"]) + let v = native_list_append(v, ["ꜣbwt", "noun", "ꜣbwt", "", "", "", "extended family relatives"]) + let v = native_list_append(v, ["ꜣbt", "noun", "ꜣbwt", "", "", "", "brand branding iron"]) + let v = native_list_append(v, ["ꜣhw", "noun", "ꜣhw", "", "", "", "pain"]) + let v = native_list_append(v, ["špst", "noun", "špswt", "", "", "", "noblewoman"]) + let v = native_list_append(v, ["jdwmꜥ", "noun", "jdwmꜥ", "", "", "", "Edom land region"]) + let v = native_list_append(v, ["mwjbw", "noun", "mwjbw", "", "", "", "Moab"]) + let v = native_list_append(v, ["rbw", "noun", "rbw", "", "", "", "Libu a North"]) + let v = native_list_append(v, ["jsqꜣrwnj", "noun", "jsqꜣrwnj", "", "", "", "Alternative reading of"]) + let v = native_list_append(v, ["ḫtꜣ", "noun", "ḫtꜣ", "", "", "", "Hatti"]) + let v = native_list_append(v, ["ḏꜣhꜣ", "noun", "ḏꜣhꜣ", "", "", "", "Djahy"]) + let v = native_list_append(v, ["wꜣs", "noun", "wꜣsw", "", "", "", "dominion rule"]) + let v = native_list_append(v, ["dmj", "noun", "dmjw", "", "", "", "harbor mooring"]) + let v = native_list_append(v, ["jwms", "noun", "jwmsw", "", "", "", "exaggeration untruth nonsense"]) + let v = native_list_append(v, ["jzft", "noun", "jzfwt", "", "", "", "falsehood lie"]) + let v = native_list_append(v, ["mꜣꜥtj", "noun", "mꜣꜥtj", "", "", "", "two goddesses present"]) + let v = native_list_append(v, ["wsḫt", "noun", "wsḫwt", "", "", "", "breadth width"]) + let v = native_list_append(v, ["ṯms", "noun", "ṯms", "", "", "", "redness as a"]) + let v = native_list_append(v, ["wsḫ", "noun", "wsḫw", "", "", "", "breadth width"]) + let v = native_list_append(v, ["rmn", "noun", "rmnw", "", "", "", "shoulder arm"]) + let v = native_list_append(v, ["ḥwrw", "noun", "ḥwrww", "", "", "", "poor man wretch"]) + let v = native_list_append(v, ["mḫꜣt", "noun", "mḫꜣwt", "", "", "", "balance scales"]) + let v = native_list_append(v, ["ḫn", "noun", "ḫnw", "", "", "", "phrase utterance"]) + let v = native_list_append(v, ["wꜣt", "noun", "wꜣwt", "", "", "", "road path"]) + let v = native_list_append(v, ["qsnt", "noun", "qsnwt", "", "", "", "something difficult"]) + let v = native_list_append(v, ["ꜥntjw", "noun", "ꜥntjw", "", "", "", "myrrh"]) + let v = native_list_append(v, ["rk", "noun", "rkw", "", "", "", "time age era"]) + let v = native_list_append(v, ["jt-nṯrw", "noun", "jt-nṯrw", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["kkw", "noun", "kkw", "", "", "", "darkness"]) + let v = native_list_append(v, ["ḥḥw", "noun", "ḥḥw", "", "", "", "the god Heh"]) + let v = native_list_append(v, ["ṯnm", "noun", "ṯnmw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["tnmw", "noun", "tnmw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḫmnyw", "noun", "ḫmnyw", "", "", "", "the Ogdoad the"]) + let v = native_list_append(v, ["nfr-tm", "noun", "nfr-tm", "", "", "", "The god Nefertum"]) + let v = native_list_append(v, ["tꜣ-ṯnn", "noun", "tꜣ-ṯnn", "", "", "", "the god Tatenen"]) + let v = native_list_append(v, ["ntj", "noun", "ntj", "", "", "", "he who is"]) + let v = native_list_append(v, ["mrt", "noun", "mrwt", "", "", "", "ailment illness sickness"]) + let v = native_list_append(v, ["ẖntj", "noun", "ẖntjw", "", "", "", "statue"]) + let v = native_list_append(v, ["ꜥḥ", "noun", "ꜥḥw", "", "", "", "palace building housing"]) + let v = native_list_append(v, ["ḥnwt", "noun", "ḥnwwt", "", "", "", "mistress lady"]) + let v = native_list_append(v, ["rmṯ", "noun", "rmṯw", "", "", "", "human human being"]) + let v = native_list_append(v, ["ntj nb", "noun", "ntjw nbw", "", "", "", "whoever is anyone"]) + let v = native_list_append(v, ["ntj n.f", "noun", "ntjw n.sn", "", "", "", "one who has"]) + let v = native_list_append(v, ["ẖnw", "noun", "ẖnww", "", "", "", "interior inside of"]) + let v = native_list_append(v, ["jwtj", "noun", "jwtj", "", "", "", "he who is"]) + let v = native_list_append(v, ["jwtj-n.f", "noun", "jwtjw-n.sn", "", "", "", "one who has"]) + let v = native_list_append(v, ["jwtj-sw", "noun", "jwtjw-sn", "", "", "", "synonym of jwtj-n.f"]) + let v = native_list_append(v, ["mḏꜣt", "noun", "mḏꜣwt", "", "", "", "papyrus scroll"]) + let v = native_list_append(v, ["qrft", "noun", "qrfwt", "", "", "", "sack bag"]) + let v = native_list_append(v, ["nbw", "noun", "nbww", "", "", "", "gold"]) + let v = native_list_append(v, ["srt", "noun", "srwt", "", "", "", "thorn"]) + let v = native_list_append(v, ["ḥꜥw", "noun", "ḥꜥw", "", "", "", "flesh of a"]) + let v = native_list_append(v, ["rḫ", "noun", "rḫ", "", "", "", "knowledge"]) + let v = native_list_append(v, ["nrw", "noun", "nrww", "", "", "", "terror fear"]) + let v = native_list_append(v, ["nmḥ", "noun", "nmḥw", "", "", "", "orphan"]) + let v = native_list_append(v, ["šmsw", "noun", "šmsww", "", "", "", "follower retainer"]) + let v = native_list_append(v, ["prj", "noun", "prjw", "", "", "", "battlefield"]) + let v = native_list_append(v, ["jwꜥ", "noun", "jwꜥw", "", "", "", "haunch of beef"]) + let v = native_list_append(v, ["tm", "noun", "tmw", "", "", "", "everything totality completion"]) + let v = native_list_append(v, ["wꜣḏ-wr", "noun", "wꜣḏ-wr", "", "", "", "the Sea encompassing"]) + let v = native_list_append(v, ["ywd-hmꜥrwk", "noun", "ywd-hmꜥrwk", "", "", "", "a place hypothesized"]) + let v = native_list_append(v, ["tꜣ-šꜣsw-yhwꜣ", "noun", "tꜣ-šꜣsw-yhwꜣ", "", "", "", "a region near"]) + let v = native_list_append(v, ["šꜣsw", "noun", "šꜣsw", "", "", "", "the Shasu Semitic"]) + let v = native_list_append(v, ["tyts", "noun", "tyts", "", "", "", "a male given"]) + let v = native_list_append(v, ["snfr-wj", "noun", "snfr-wj", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḫꜥ.f-rꜥ", "noun", "ḫꜥ.f-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ꜣwtqrtr", "noun", "ꜣwtqrtr", "", "", "", "autocrator usually as"]) + let v = native_list_append(v, ["qysrs", "noun", "qysrs", "", "", "", "Caesar"]) + let v = native_list_append(v, ["qrwjwꜣpꜣdrꜣt", "noun", "qrwjwꜣpꜣdrꜣt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nb-r-ḏr", "noun", "nb-r-ḏr", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["psḏt", "noun", "psḏwt", "", "", "", "the Great Ennead"]) + let v = native_list_append(v, ["kꜣ-nḫt-ḫꜥ-m-wꜣst", "noun", "kꜣ-nḫt-ḫꜥ-m-wꜣst", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["wꜣḥ-nsyt-mj-rꜥ-m-pt", "noun", "wꜣḥ-nsyt-mj-rꜥ-m-pt", "", "", "", "a Two Ladies"]) + let v = native_list_append(v, ["sḫm-pḥtj-ḏsr-ḫꜥw", "noun", "sḫm-pḥtj-ḏsr-ḫꜥw", "", "", "", "a gold name"]) + let v = native_list_append(v, ["mn-ḫpr-rꜥ", "noun", "mn-ḫpr-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḏḥwtj-ms", "noun", "ḏḥwtj-ms", "", "", "", "a male given"]) + let v = native_list_append(v, ["nbtj", "noun", "nbtj", "", "", "", "dual of nbt"]) + let v = native_list_append(v, ["tfnwt", "noun", "tfnwt", "", "", "", "the goddess Tefnut"]) + let v = native_list_append(v, ["gꜣš", "noun", "gꜣšw", "", "", "", "reed rush"]) + let v = native_list_append(v, ["smn", "noun", "smnw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜣḫꜣḫ", "noun", "ꜣḫꜣḫ", "", "", "", "a constellation or"]) + let v = native_list_append(v, ["nb-tm", "noun", "nb-tm", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["nt-jqr.t", "noun", "nt-jqr.t", "", "", "", "a female given"]) + let v = native_list_append(v, ["nṯrj-kꜣ-rꜥ", "noun", "nṯrj-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḫpr-ḏs.f", "noun", "ḫpr-ḏs.f", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ꜣzḫ", "noun", "ꜣzḫw", "", "", "", "harvest yield what"]) + let v = native_list_append(v, ["tfnt", "noun", "tfnt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jšš", "noun", "jššw", "", "", "", "spittle"]) + let v = native_list_append(v, ["jꜣḫw", "noun", "jꜣḫww", "", "", "", "sunlight sunshine"]) + let v = native_list_append(v, ["gbb", "noun", "gbbw", "", "", "", "earth ground"]) + let v = native_list_append(v, ["stẖ", "noun", "stẖ", "", "", "", "the god Set"]) + let v = native_list_append(v, ["nbt-ḥwt", "noun", "nbt-ḥwt", "", "", "", "the goddess Nephthys"]) + let v = native_list_append(v, ["ḫprj", "noun", "ḫprj", "", "", "", "Khepri the god"]) + let v = native_list_append(v, ["ꜣḫtj", "noun", "ꜣḫtjw", "", "", "", "dweller of the"]) + let v = native_list_append(v, ["ḥr-ꜣḫtj", "noun", "ḥr-ꜣḫtj", "", "", "", "Horakhty an aspect"]) + let v = native_list_append(v, ["rꜥ-ḥr-ꜣḫtj", "noun", "rꜥ-ḥr-ꜣḫtj", "", "", "", "the god Ra-Horakhty"]) + let v = native_list_append(v, ["ꜣḫw", "noun", "ꜣḫw", "", "", "", "effectiveness usefulness capability"]) + let v = native_list_append(v, ["ḥkꜣ", "noun", "ḥkꜣw", "", "", "", "magic magic spell"]) + let v = native_list_append(v, ["sjꜣ", "noun", "sjꜣ", "", "", "", "perception particularly the"]) + let v = native_list_append(v, ["ḥw", "noun", "ḥw", "", "", "", "utterance annunciation"]) + let v = native_list_append(v, ["znḥm", "noun", "znḥmw", "", "", "", "locust"]) + let v = native_list_append(v, ["ḥḏ", "noun", "ḥḏw", "", "", "", "mace"]) + let v = native_list_append(v, ["jrṯt", "noun", "jrṯwt", "", "", "", "milk"]) + let v = native_list_append(v, ["pꜣ-jḥ-mw", "noun", "nꜣ-nj-jḥw-mw", "", "", "", "hippopotamus"]) + let v = native_list_append(v, ["ḥm-kꜣ", "noun", "ḥmw-kꜣ", "", "", "", "funerary priest priest"]) + let v = native_list_append(v, ["mꜣqꜣrꜣ", "noun", "mꜣqꜣrꜣw", "", "", "", "stick staff rod"]) + let v = native_list_append(v, ["mnw", "noun", "mn:nw*nw*nw-M1-M1-M1", "", "", "", "trees"]) + let v = native_list_append(v, ["zꜣṯ", "noun", "zꜣṯw", "", "", "", "libation of water"]) + let v = native_list_append(v, ["jꜣkb", "noun", "jꜣkbw", "", "", "", "mourning"]) + let v = native_list_append(v, ["mrḥt", "noun", "mrḥt", "", "", "", "oil"]) + let v = native_list_append(v, ["nsyt", "noun", "nsywt", "", "", "", "kingship of Egypt"]) + let v = native_list_append(v, ["ꜥḥꜥw", "noun", "ꜥḥꜥww", "", "", "", "station position"]) + let v = native_list_append(v, ["mrwt", "noun", "mrwwt", "", "", "", "love"]) + let v = native_list_append(v, ["kꜣt", "noun", "kꜣwt", "", "", "", "work labor"]) + let v = native_list_append(v, ["zꜣy", "noun", "zꜣy", "", "", "", "Late Egyptian form"]) + let v = native_list_append(v, ["rw nw prt m hrw", "noun", "r:Z1:N33A-nw-Z1-pr:r-t:D54-m-h:r-w-hrw:Z1", "", "", "", "Book of the"]) + let v = native_list_append(v, ["sꜣḥ", "noun", "sꜣḥw", "", "", "", "toe"]) + let v = native_list_append(v, ["ḫšꜣyꜣrwšꜣ", "noun", "ḫšꜣyꜣrwšꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["pẖrt", "noun", "pẖrwt", "", "", "", "prescription remedy"]) + let v = native_list_append(v, ["smꜣ", "noun", "smꜣw", "", "", "", "wild bull"]) + let v = native_list_append(v, ["wbꜣ", "noun", "wbꜣw", "", "", "", "butler cupbearer"]) + let v = native_list_append(v, ["rṯnw", "noun", "rṯnw", "", "", "", "Retjenu Canaan and"]) + let v = native_list_append(v, ["ꜥfꜣy", "noun", "ꜥfꜣyw", "", "", "", "encampment camp"]) + let v = native_list_append(v, ["zwr", "noun", "zwrw", "", "", "", "drinking bowl"]) + let v = native_list_append(v, ["snḏ", "noun", "snḏw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wḏ", "noun", "wḏw", "", "", "", "command"]) + let v = native_list_append(v, ["nḫt", "noun", "nḫtw", "", "", "", "victory"]) + let v = native_list_append(v, ["pšn", "noun", "pšnw", "", "", "", "bone fracture"]) + let v = native_list_append(v, ["ḏnnt", "noun", "ḏnnwt", "", "", "", "skull"]) + let v = native_list_append(v, ["pꜣqt", "noun", "pꜣqwt", "", "", "", "a flat piece"]) + let v = native_list_append(v, ["wḏꜣ", "noun", "wḏꜣ", "", "", "", "soundness well-being"]) + let v = native_list_append(v, ["wnm", "noun", "wnm", "", "", "", "eating consumption of"]) + let v = native_list_append(v, ["ꜣšr", "noun", "ꜣšrw", "", "", "", "roast meat including"]) + let v = native_list_append(v, ["sꜣgꜣ", "noun", "sꜣgꜣw", "", "", "", "an inferior kind"]) + let v = native_list_append(v, ["ꜣtf", "noun", "ꜣtfw", "", "", "", "the Atef a"]) + let v = native_list_append(v, ["ḥmwt", "noun", "ḥmwt", "", "", "", "craftsmanship skill artistry"]) + let v = native_list_append(v, ["wr-ḫrp-ḥmwt", "noun", "wr-ḫrp-ḥmwt", "", "", "", "the high priest"]) + let v = native_list_append(v, ["tjt", "noun", "tjwt", "", "", "", "image figure picture"]) + let v = native_list_append(v, ["ꜣꜣtꜣ", "noun", "ꜣꜣtꜣ", "", "", "", "name or epithet"]) + let v = native_list_append(v, ["ꜣjs n ḏnnt", "noun", "ꜣjs n ḏnnt", "", "", "", "brain"]) + let v = native_list_append(v, ["nb-ꜣꜥꜥw", "noun", "nb-ꜣꜥꜥw", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ꜣꜥꜥw", "noun", "ꜣꜥꜥw", "", "", "", "only used in"]) + let v = native_list_append(v, ["jꜥb", "noun", "jꜥbw", "", "", "", "bowl especially a"]) + let v = native_list_append(v, ["ḫnd", "noun", "ḫndw", "", "", "", "lower leg or"]) + let v = native_list_append(v, ["jꜥnt", "noun", "jꜥnwt", "", "", "", "female baboon"]) + let v = native_list_append(v, ["ꜣfꜥ", "noun", "ꜣfꜥw", "", "", "", "gluttony greed"]) + let v = native_list_append(v, ["ḫꜣst", "noun", "ḫꜣswt", "", "", "", "foreign land"]) + let v = native_list_append(v, ["jnj", "noun", "jnj", "", "", "", "a male given"]) + let v = native_list_append(v, ["ꜥqw", "noun", "ꜥqw", "", "", "", "monthly provisions of"]) + let v = native_list_append(v, ["pgꜣ", "noun", "pgꜣ", "", "", "", "open space field"]) + let v = native_list_append(v, ["wpwtj", "noun", "wpwtjw", "", "", "", "one entrusted with"]) + let v = native_list_append(v, ["sbḥ", "noun", "sbḥw", "", "", "", "cry scream shriek"]) + let v = native_list_append(v, ["rwt", "noun", "rwwt", "", "", "", "door gate"]) + let v = native_list_append(v, ["bꜣk", "noun", "bꜣkw", "", "", "", "servant"]) + let v = native_list_append(v, ["ḥr-nb", "noun", "ḥr-nb", "", "", "", "everyone"]) + let v = native_list_append(v, ["jꜣw", "noun", "jꜣw", "", "", "", "praise adoration"]) + let v = native_list_append(v, ["ꜥmꜥm", "noun", "ꜥmꜥmw", "", "", "", "a bread container"]) + let v = native_list_append(v, ["ḫrw", "noun", "ḫrww", "", "", "", "voice"]) + let v = native_list_append(v, ["ẖn-nḫn", "noun", "ẖn-nḫn", "", "", "", "Upper Egypt between"]) + let v = native_list_append(v, ["r-jb", "noun", "rw-jb", "", "", "", "the digestive tract"]) + let v = native_list_append(v, ["dwꜣw", "noun", "dwꜣww", "", "", "", "early morning"]) + let v = native_list_append(v, ["sḫry", "noun", "sḫryw", "", "", "", "captain of a"]) + let v = native_list_append(v, ["jmn-rn.f", "noun", "jmn-rn.f", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["nb-nswt-tꜣwj", "noun", "nb-nswt-tꜣwj", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["srḫ", "noun", "srḫw", "", "", "", "notoriety infamy bad"]) + let v = native_list_append(v, ["jfd", "noun", "jfdw", "", "", "", "rectangular block of"]) + let v = native_list_append(v, ["tꜣ-tmw", "noun", "tꜣ-tmw", "", "", "", "all of humankind"]) + let v = native_list_append(v, ["wḏꜥ", "noun", "wḏꜥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ḏs.k", "noun", "ḏs.k", "", "", "", "yourself"]) + let v = native_list_append(v, ["mww", "noun", "mww", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["rḥw", "noun", "r-H-w-A1-A1-A1", "", "", "", "companions comrades used"]) + let v = native_list_append(v, ["rḥwj", "noun", "rḥw", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ṯbwt", "noun", "ṯbwwt", "", "", "", "sandal"]) + let v = native_list_append(v, ["mꜣꜥ", "noun", "mꜣꜥw", "", "", "", "temple"]) + let v = native_list_append(v, ["ḥꜥꜥwt", "noun", "ḥꜥꜥwt", "", "", "", "excitement rejoicing"]) + let v = native_list_append(v, ["spr", "noun", "sprw", "", "", "", "rib of a"]) + let v = native_list_append(v, ["mjtt", "noun", "mjtwt", "", "", "", "likeness the like"]) + let v = native_list_append(v, ["ḥbs", "noun", "ḥbsw", "", "", "", "garment piece of"]) + let v = native_list_append(v, ["zꜣ-sbk", "noun", "zꜣ-sbk", "", "", "", "a male given"]) + let v = native_list_append(v, ["tjw", "noun", "tjw", "", "", "", "a male given"]) + let v = native_list_append(v, ["snb", "noun", "snb", "", "", "", "health"]) + let v = native_list_append(v, ["ꜣḫ-n-jtn", "noun", "ꜣḫ-n-jtn", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥꜣyt", "noun", "ḥꜣyt", "", "", "", "light"]) + let v = native_list_append(v, ["jꜥnw", "noun", "jꜥnw", "", "", "", "woe grief"]) + let v = native_list_append(v, ["wꜣw", "noun", "wꜣww", "", "", "", "wave"]) + let v = native_list_append(v, ["nfrt-jj.tj", "noun", "nfrt-jj.tj", "", "", "", "a female given"]) + let v = native_list_append(v, ["bꜣẖw", "noun", "bꜣẖw", "", "", "", "a mythical mountain"]) + let v = native_list_append(v, ["ṯb", "noun", "ṯbw", "", "", "", "crate or box"]) + let v = native_list_append(v, ["zkr", "noun", "zkr", "", "", "", "the god Sokar"]) + let v = native_list_append(v, ["mꜣꜥ-ḫrw", "noun", "mꜣꜥ-ḫrw", "", "", "", "rightness justification"]) + let v = native_list_append(v, ["jt-šmꜥ", "noun", "jt-šmꜥ", "", "", "", "Upper Egyptian barley"]) + let v = native_list_append(v, ["jw-m-jtrw", "noun", "jw-m-jtrw", "", "", "", "a settlement in"]) + let v = native_list_append(v, ["jwnj", "noun", "jwnj", "", "", "", "Hermonthis a settlement"]) + let v = native_list_append(v, ["skt", "noun", "skwt", "", "", "", "troopship"]) + let v = native_list_append(v, ["ꜥḥꜣw", "noun", "ꜥḥꜣww", "", "", "", "weapon"]) + let v = native_list_append(v, ["sḏr", "noun", "sḏrw", "", "", "", "sleeper"]) + let v = native_list_append(v, ["bnr", "noun", "bnrw", "", "", "", "date fruit"]) + let v = native_list_append(v, ["šꜥt", "noun", "šꜥwt", "", "", "", "slaughter"]) + let v = native_list_append(v, ["kꜣp", "noun", "kꜣpw", "", "", "", "shelter"]) + let v = native_list_append(v, ["ḥqr", "noun", "ḥqr", "", "", "", "hunger"]) + let v = native_list_append(v, ["jbj", "noun", "jbj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḫpr-kꜣ-rꜥ", "noun", "ḫpr-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["stp-zꜣ", "noun", "stpw-zꜣ", "", "", "", "a title used"]) + let v = native_list_append(v, ["pr-nswt", "noun", "pr-nswt", "", "", "", "royal palace"]) + let v = native_list_append(v, ["mdwt m ḥr", "noun", "mdwwt m ḥr", "", "", "", "a responsibility something"]) + let v = native_list_append(v, ["jzwt", "noun", "jzwwt", "", "", "", "work-gang team or"]) + let v = native_list_append(v, ["ꜣmm", "noun", "ꜣmmw", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["qnj", "noun", "qnjw", "", "", "", "sheaf bundle"]) + let v = native_list_append(v, ["ḥknw", "noun", "ḥknw", "", "", "", "praise"]) + let v = native_list_append(v, ["mnṯw", "noun", "mnṯw", "", "", "", "the war god"]) + let v = native_list_append(v, ["mṯn", "noun", "mṯnw", "", "", "", "way road path"]) + let v = native_list_append(v, ["jnw", "noun", "jnww", "", "", "", "cargo delivery produce"]) + let v = native_list_append(v, ["ḏwt", "noun", "ḏwt", "", "", "", "evil"]) + let v = native_list_append(v, ["sbjw", "noun", "sbjw", "", "", "", "rebellion revolt"]) + let v = native_list_append(v, ["wgg", "noun", "wgg", "", "", "", "feebleness weakness"]) + let v = native_list_append(v, ["ḥtpwt", "noun", "Htp:t*p-t:X4:Z2", "", "", "", "offerings"]) + let v = native_list_append(v, ["ḥwnt", "noun", "ḥwnwt", "", "", "", "girl"]) + let v = native_list_append(v, ["qd", "noun", "qdw", "", "", "", "form"]) + let v = native_list_append(v, ["ḏdj", "noun", "ḏdj", "", "", "", "a male given"]) + let v = native_list_append(v, ["msyt", "noun", "msywt", "", "", "", "supper"]) + let v = native_list_append(v, ["ḫꜣwj", "noun", "ḫꜣwjw", "", "", "", "evening"]) + let v = native_list_append(v, ["nfr-jb", "noun", "nfr-jb", "", "", "", "relaxation recreation"]) + let v = native_list_append(v, ["smj", "noun", "smjw", "", "", "", "report"]) + let v = native_list_append(v, ["sdb", "noun", "sdbw", "", "", "", "fringe of a"]) + let v = native_list_append(v, ["ꜥfḏt", "noun", "ꜥfḏwt", "", "", "", "box chest"]) + let v = native_list_append(v, ["ꜥrt", "noun", "ꜥrwt", "", "", "", "lower jaw jawbone"]) + let v = native_list_append(v, ["jwꜥt", "noun", "jwꜥwt", "", "", "", "inheritance heirdom"]) + let v = native_list_append(v, ["ṯnṯꜣt", "noun", "ṯnṯꜣwt", "", "", "", "throne dais of"]) + let v = native_list_append(v, ["ẖꜣyt", "noun", "ẖꜣyt", "", "", "", "heap of corpses"]) + let v = native_list_append(v, ["ḫnws", "noun", "ḫnwsw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jdw", "noun", "jdww", "", "", "", "boy youth young"]) + let v = native_list_append(v, ["jhm", "noun", "jhm", "", "", "", "sorrow suffering"]) + let v = native_list_append(v, ["mdwt nfrt", "noun", "mdwt nfrt", "", "", "", "literature"]) + let v = native_list_append(v, ["sbj", "noun", "sbjw", "", "", "", "rebel"]) + let v = native_list_append(v, ["zmꜣyt", "noun", "zmꜣyt", "", "", "", "gang band troop"]) + let v = native_list_append(v, ["ḫwd", "noun", "ḫwdw", "", "", "", "rich man"]) + let v = native_list_append(v, ["nꜥr", "noun", "nꜥrw", "", "", "", "the Nile catfish"]) + let v = native_list_append(v, ["nꜥr-mr", "noun", "nꜥr-mr", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["ḥzmn", "noun", "ḥzmn", "", "", "", "menstruation"]) + let v = native_list_append(v, ["jꜣt", "noun", "jꜣwt", "", "", "", "mound especially as"]) + let v = native_list_append(v, ["wdḥw", "noun", "wdḥww", "", "", "", "offering-table"]) + let v = native_list_append(v, ["šꜣqw", "noun", "šꜣqw", "", "", "", "rings or circles"]) + let v = native_list_append(v, ["tkꜣw", "noun", "tkꜣww", "", "", "", "flame"]) + let v = native_list_append(v, ["šsm", "noun", "šsmw", "", "", "", "lash blow"]) + let v = native_list_append(v, ["ḥwt-ꜥꜣt", "noun", "ḥwwt-ꜥꜣwt", "", "", "", "a significant building"]) + let v = native_list_append(v, ["ḫryt", "noun", "ḫryt", "", "", "", "slaughter butchery"]) + let v = native_list_append(v, ["jp", "noun", "jpw", "", "", "", "accounting"]) + let v = native_list_append(v, ["jrj-ꜥꜣ", "noun", "jrjw-ꜥꜣ", "", "", "", "doorkeeper"]) + let v = native_list_append(v, ["sqd", "noun", "sqdw", "", "", "", "sailor"]) + let v = native_list_append(v, ["bjꜣ", "noun", "bjꜣw", "", "", "", "mine place from"]) + let v = native_list_append(v, ["rsw", "noun", "rsw", "", "", "", "south"]) + let v = native_list_append(v, ["jt-mḥ", "noun", "jt-mḥ", "", "", "", "barley of some"]) + let v = native_list_append(v, ["dnjt", "noun", "dnjwt", "", "", "", "dam"]) + let v = native_list_append(v, ["mꜣr", "noun", "mꜣrw", "", "", "", "poor and powerless"]) + let v = native_list_append(v, ["nḏ", "noun", "nḏ", "", "", "", "flour"]) + let v = native_list_append(v, ["tꜣ-wr", "noun", "tꜣ-wr", "", "", "", "Ta-wer the eighth"]) + let v = native_list_append(v, ["ḏbꜥw", "noun", "ḏbꜥw", "", "", "", "reproach rebuke"]) + let v = native_list_append(v, ["njꜣj", "noun", "njꜣjw", "", "", "", "shelter"]) + let v = native_list_append(v, ["ḥs", "noun", "ḥs", "", "", "", "feces excrement of"]) + let v = native_list_append(v, ["kꜣwtj", "noun", "kꜣwtjw", "", "", "", "worker laborer"]) + let v = native_list_append(v, ["šmswt", "noun", "šmswt", "", "", "", "synonym of šmsw"]) + let v = native_list_append(v, ["wḫꜣ", "noun", "wḫꜣw", "", "", "", "fool"]) + let v = native_list_append(v, ["ṯmꜣ", "noun", "ṯmꜣw", "", "", "", "cadaster land registry"]) + let v = native_list_append(v, ["zš", "noun", "zšw", "", "", "", "nest"]) + let v = native_list_append(v, ["zẖꜣw-n-ṯmꜣ", "noun", "zẖꜣww-nw-ṯmꜣ", "", "", "", "an official in"]) + let v = native_list_append(v, ["wsrw", "noun", "wsrw", "", "", "", "might power"]) + let v = native_list_append(v, ["ḫntyt", "noun", "ḫntyt", "", "", "", "upstream or southward"]) + let v = native_list_append(v, ["ḏꜣyt", "noun", "ḏꜣyt", "", "", "", "wrongdoing"]) + let v = native_list_append(v, ["jꜣwj", "noun", "jꜣwj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜣbt", "noun", "jꜣbt", "", "", "", "east the East"]) + let v = native_list_append(v, ["jꜣbtj", "noun", "jꜣbtj", "", "", "", "east the East"]) + let v = native_list_append(v, ["mtt", "noun", "mtt", "", "", "", "correctness rectitude"]) + let v = native_list_append(v, ["ḥwt-wꜥrt", "noun", "ḥwt-wꜥrt", "", "", "", "Avaris a city"]) + let v = native_list_append(v, ["bjꜣt", "noun", "bjꜣwt", "", "", "", "character disposition"]) + let v = native_list_append(v, ["wdn", "noun", "wdnw", "", "", "", "offering"]) + let v = native_list_append(v, ["wnwt-ḥwt-nṯr", "noun", "wnwt-ḥwt-nṯr", "", "", "", "the hourly staff"]) + let v = native_list_append(v, ["mjktj", "noun", "mjktj", "", "", "", "Megiddo"]) + let v = native_list_append(v, ["qdš", "noun", "qdš", "", "", "", "Kadesh a city"]) + let v = native_list_append(v, ["ḫꜣz", "noun", "ḫꜣz", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["pḏtj", "noun", "pḏtjw", "", "", "", "bowman archer especially"]) + let v = native_list_append(v, ["ḏꜣyw", "noun", "ḏꜣyww", "", "", "", "opponent opposition"]) + let v = native_list_append(v, ["bdt", "noun", "bdwt", "", "", "", "emmer"]) + let v = native_list_append(v, ["ḥrj jb", "noun", "ḥrjw jb", "", "", "", "midst middle"]) + let v = native_list_append(v, ["jpt-swt", "noun", "jpt-swt", "", "", "", "the temple of"]) + let v = native_list_append(v, ["smw", "noun", "smw", "", "", "", "plant living organism"]) + let v = native_list_append(v, ["snwtt", "noun", "snwtwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["qꜣdt", "noun", "qꜣdwt", "", "", "", "a plant that"]) + let v = native_list_append(v, ["zšn", "noun", "zšnw", "", "", "", "lotus flower"]) + let v = native_list_append(v, ["jmꜣḫ", "noun", "jmꜣḫ", "", "", "", "worthiness of attention"]) + let v = native_list_append(v, ["jmꜣḫw", "noun", "jmꜣḫww", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["mnṯw-wsr", "noun", "mnṯw-wsr", "", "", "", "a male given"]) + let v = native_list_append(v, ["jnd", "noun", "jndw", "", "", "", "afflicted troubled or"]) + let v = native_list_append(v, ["jwf", "noun", "jwf", "", "", "", "flesh"]) + let v = native_list_append(v, ["jf", "noun", "jfw", "", "", "", "Old Egyptian form"]) + let v = native_list_append(v, ["ḥtpt", "noun", "ḥtpwt", "", "", "", "offering"]) + let v = native_list_append(v, ["jnjwbꜣ", "noun", "jnjwbꜣw", "", "", "", "carrying pole"]) + let v = native_list_append(v, ["ꜣw", "noun", "ꜣw", "", "", "", "extent length expanse"]) + let v = native_list_append(v, ["ꜣwt-jb", "noun", "ꜣwt-jb", "", "", "", "happiness joy"]) + let v = native_list_append(v, ["ꜣwt-ꜥ", "noun", "ꜣwt-ꜥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ꜣwšꜣ", "noun", "ꜣwšꜣ", "", "", "", "a plant-derived substance"]) + let v = native_list_append(v, ["ꜣw-ḥr", "noun", "ꜣw-ḥr", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["jwsw", "noun", "jwsww", "", "", "", "balance scales especially"]) + let v = native_list_append(v, ["ꜣwsw", "noun", "ꜣwsww", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wpt", "noun", "wpwt", "", "", "", "horns particularly of"]) + let v = native_list_append(v, ["ḫrwy", "noun", "ḫrwyw", "", "", "", "enemy"]) + let v = native_list_append(v, ["ꜥwn jb", "noun", "ꜥwnw jb", "", "", "", "greedy person"]) + let v = native_list_append(v, ["mḥtt", "noun", "mḥtt", "", "", "", "north"]) + let v = native_list_append(v, ["ḫnrt", "noun", "ḫnrwt", "", "", "", "prison"]) + let v = native_list_append(v, ["ḫnrtt", "noun", "ḫnrtwt", "", "", "", "criminality"]) + let v = native_list_append(v, ["znj mnt", "noun", "znj mnt", "", "", "", "great distress calamity"]) + let v = native_list_append(v, ["sbk-m-ḥꜣb", "noun", "sbk-m-ḥꜣb", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥm-nswt", "noun", "ḥmw-nswt", "", "", "", "an official title"]) + let v = native_list_append(v, ["wꜥr", "noun", "wꜥrw", "", "", "", "fugitive"]) + let v = native_list_append(v, ["ḫm", "noun", "ḫm", "", "", "", "Letopolis"]) + let v = native_list_append(v, ["hꜣw", "noun", "hꜣw", "", "", "", "vicinity surroundings neighborhood"]) + let v = native_list_append(v, ["ẖnnw", "noun", "ẖnnw", "", "", "", "disturbance tumult turmoil"]) + let v = native_list_append(v, ["ḫrpw", "noun", "ḫrpww", "", "", "", "wooden mallet for"]) + let v = native_list_append(v, ["mjnt", "noun", "mjnwt", "", "", "", "mooring post a"]) + let v = native_list_append(v, ["ḥꜣtt", "noun", "ḥꜣtwt", "", "", "", "best oil for"]) + let v = native_list_append(v, ["ḏs.j", "noun", "ḏs.j", "", "", "", "myself"]) + let v = native_list_append(v, ["swḏꜣ jb", "noun", "swḏꜣ jb", "", "", "", "communication message"]) + let v = native_list_append(v, ["qꜣb", "noun", "qꜣbw", "", "", "", "middle midst"]) + let v = native_list_append(v, ["šnwt", "noun", "šnwt", "", "", "", "court retinue and"]) + let v = native_list_append(v, ["ḫrt-jb", "noun", "ḫrt-jb", "", "", "", "wish desire"]) + let v = native_list_append(v, ["ꜥꜥb", "noun", "ꜥꜥbw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["šnj", "noun", "šnj", "", "", "", "hair"]) + let v = native_list_append(v, ["zmꜣ", "noun", "zmꜣw", "", "", "", "lung"]) + let v = native_list_append(v, ["ẖpꜣ", "noun", "ẖpꜣw", "", "", "", "umbilical cord"]) + let v = native_list_append(v, ["zḥ", "noun", "zḥw", "", "", "", "canopied structure made"]) + let v = native_list_append(v, ["r-pr", "noun", "rw-prw", "", "", "", "false door"]) + let v = native_list_append(v, ["jṯꜣ", "noun", "jṯꜣw", "", "", "", "thief"]) + let v = native_list_append(v, ["jmj-r-šnt", "noun", "jmjw-r-šnt", "", "", "", "sheriff"]) + let v = native_list_append(v, ["tꜣš", "noun", "tꜣšw", "", "", "", "border"]) + let v = native_list_append(v, ["ḥpt", "noun", "ḥpwt", "", "", "", "steering oar for"]) + let v = native_list_append(v, ["ꜣḫt-ḫw.f-wj", "noun", "ꜣḫt-ḫw.f-wj", "", "", "", "the Great Pyramid"]) + let v = native_list_append(v, ["bnbnt", "noun", "bnbnwt", "", "", "", "pyramidion"]) + let v = native_list_append(v, ["ḫt n šnj", "noun", "ḫt n šnj", "", "", "", "an unknown plant"]) + let v = native_list_append(v, ["gbꜣ", "noun", "gbꜣw", "", "", "", "side of a"]) + let v = native_list_append(v, ["wꜣḫj", "noun", "wꜣḫjw", "", "", "", "columned hall figuratively"]) + let v = native_list_append(v, ["jꜣrw", "noun", "jꜣrw", "", "", "", "rushes reeds"]) + let v = native_list_append(v, ["ḥsbwt", "noun", "H-s-b-t:Aa2-I14:Z2", "", "", "", "worms in the"]) + let v = native_list_append(v, ["sbq", "noun", "sbqw", "", "", "", "leg"]) + let v = native_list_append(v, ["mfkꜣt", "noun", "mfkꜣt", "", "", "", "turquoise"]) + let v = native_list_append(v, ["stpt", "noun", "stpwt", "", "", "", "choice cut of"]) + let v = native_list_append(v, ["wꜥrt", "noun", "wꜥrwt", "", "", "", "leg"]) + let v = native_list_append(v, ["jzkn", "noun", "jzkn", "", "", "", "a region of"]) + let v = native_list_append(v, ["nmt", "noun", "nmwt", "", "", "", "slaughterhouse"]) + let v = native_list_append(v, ["fnṯ", "noun", "fnṯw", "", "", "", "worm"]) + let v = native_list_append(v, ["qmꜣ", "noun", "qmꜣw", "", "", "", "form appearance nature"]) + let v = native_list_append(v, ["nb-wꜥ", "noun", "nb-wꜥ", "", "", "", "an epithet used"]) + let v = native_list_append(v, ["smr-wꜥtj", "noun", "smrw-wꜥtjw", "", "", "", "a court title"]) + let v = native_list_append(v, ["zꜣṯw", "noun", "zꜣṯww", "", "", "", "ground"]) + let v = native_list_append(v, ["thm", "noun", "thmw", "", "", "", "perforation"]) + let v = native_list_append(v, ["bꜣkꜣ", "noun", "bꜣkꜣw", "", "", "", "Late Egyptian form"]) + let v = native_list_append(v, ["jꜣtjw", "noun", "jꜣtjww", "", "", "", "mutilation"]) + let v = native_list_append(v, ["nḫt-ꜥ", "noun", "nḫt-ꜥ", "", "", "", "one who has"]) + let v = native_list_append(v, ["jmj-r-ḥwt-nṯr", "noun", "jmjw-r-ḥwt-nṯr", "", "", "", "a title ‘temple-overseer’"]) + let v = native_list_append(v, ["ttj", "noun", "ttj", "", "", "", "a male given"]) + let v = native_list_append(v, ["ppy", "noun", "ppy", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḏbꜣw", "noun", "ḏbꜣw", "", "", "", "replacement"]) + let v = native_list_append(v, ["jrt-ḥr", "noun", "jrt-ḥr", "", "", "", "the actual Eye"]) + let v = native_list_append(v, ["šꜥwt", "noun", "šꜥwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["wpt-r", "noun", "wpt-r", "", "", "", "the opening of"]) + let v = native_list_append(v, ["jmj-dwꜣt", "noun", "jmj-dwꜣt", "", "", "", "the Amduat a"]) + let v = native_list_append(v, ["sḏꜣ", "noun", "sḏꜣw", "", "", "", "cylinder seal typically"]) + let v = native_list_append(v, ["sḏmw", "noun", "sḏmww", "", "", "", "hearer"]) + let v = native_list_append(v, ["j.ḫm-sk", "noun", "j.ḫmw-sk", "", "", "", "circumpolar star"]) + let v = native_list_append(v, ["stwt", "noun", "s-t:sti-w-t-N8", "", "", "", "rays of the"]) + let v = native_list_append(v, ["zfṯ", "noun", "zfṯw", "", "", "", "butcher"]) + let v = native_list_append(v, ["sdyt", "noun", "sdywt", "", "", "", "one who breaks"]) + let v = native_list_append(v, ["ḥbsyt", "noun", "ḥbsywt", "", "", "", "wife"]) + let v = native_list_append(v, ["ꜥb", "noun", "ꜥbw", "", "", "", "horn"]) + let v = native_list_append(v, ["btj", "noun", "btj", "", "", "", "Middle and Late"]) + let v = native_list_append(v, ["nswtyw", "noun", "nswtyw", "", "", "", "tenant farmers of"]) + let v = native_list_append(v, ["ḥꜣw", "noun", "ḥꜣw", "", "", "", "abundance riches"]) + let v = native_list_append(v, ["ꜥrq", "noun", "ꜥrqw", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["wḥꜥ", "noun", "wḥꜥw", "", "", "", "fisher or fowler"]) + let v = native_list_append(v, ["ḥtrw", "noun", "ḥtrww", "", "", "", "yoke"]) + let v = native_list_append(v, ["ꜥwꜣ", "noun", "ꜥwꜣw", "", "", "", "robbery"]) + let v = native_list_append(v, ["jw-snb", "noun", "jw-snb", "", "", "", "a male given"]) + let v = native_list_append(v, ["šftw", "noun", "šftw", "", "", "", "a female given"]) + let v = native_list_append(v, ["gmḥt", "noun", "gmḥwt", "", "", "", "wick"]) + let v = native_list_append(v, ["ḏsr-kꜣ-rꜥ", "noun", "ḏsr-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḏj ꜥnḫ", "noun", "ḏj ꜥnḫ", "", "", "", "a state of"]) + let v = native_list_append(v, ["ḥrj-tp", "noun", "ḥrjw-tp", "", "", "", "chief head leader"]) + let v = native_list_append(v, ["jwnyt", "noun", "jwnyt", "", "", "", "hypostyle hall"]) + let v = native_list_append(v, ["zt-ḥmt", "noun", "zwt-ḥmwt", "", "", "", "woman"]) + let v = native_list_append(v, ["sšm", "noun", "sšmw", "", "", "", "guidance direction conduction"]) + let v = native_list_append(v, ["fnḫw", "noun", "f:n:x-w-V1:H_SPACE-A49:Z2", "", "", "", "a people in"]) + let v = native_list_append(v, ["skꜣ", "noun", "skꜣw", "", "", "", "ox for plowing"]) + let v = native_list_append(v, ["wr-mꜣw", "noun", "wr-mꜣw", "", "", "", "the title of"]) + let v = native_list_append(v, ["nḫꜣw", "noun", "nḫꜣww", "", "", "", "a fish-shaped pendant"]) + let v = native_list_append(v, ["ktt", "noun", "ktwt", "", "", "", "little girl"]) + let v = native_list_append(v, ["zšꜣ", "noun", "zšꜣw", "", "", "", "prayer"]) + let v = native_list_append(v, ["sḫmt", "noun", "sḫmt", "", "", "", "the goddess Sekhmet"]) + let v = native_list_append(v, ["ꜥš", "noun", "ꜥšw", "", "", "", "call summons"]) + let v = native_list_append(v, ["ꜥšꜣt", "noun", "ꜥšꜣt", "", "", "", "multitude crowd company"]) + let v = native_list_append(v, ["ḏḏt-jmn", "noun", "ḏḏt-jmn", "", "", "", "a female given"]) + let v = native_list_append(v, ["ḫw.n-jnpw", "noun", "ḫw.n-jnpw", "", "", "", "a male given"]) + let v = native_list_append(v, ["stp.n-rꜥ", "noun", "stp.n-rꜥ", "", "", "", "a common epithet"]) + let v = native_list_append(v, ["sbk-ḥtp", "noun", "sbk-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["snb-n.j", "noun", "snb-n.j", "", "", "", "a male given"]) + let v = native_list_append(v, ["rn.s-rs", "noun", "rn.s-rs", "", "", "", "a female given"]) + let v = native_list_append(v, ["nbw-kꜣw-rꜥ", "noun", "nbw-kꜣw-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḥtp ḏj nswt", "noun", "ḥtpw ḏjw nswt", "", "", "", "a funerary gift"]) + let v = native_list_append(v, ["ḏsr", "noun", "ḏsr", "", "", "", "a throne name"]) + let v = native_list_append(v, ["tꜣ-ḏsr", "noun", "tꜣw-ḏsr", "", "", "", "necropolis"]) + let v = native_list_append(v, ["nb-tꜣ-ḏsr", "noun", "nb-tꜣ-ḏsr", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["nb-ꜣbḏw", "noun", "nb-ꜣbḏw", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["nṯr-ꜥꜣ", "noun", "nṯr-ꜥꜣ", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["wp-wꜣwt", "noun", "wp-wꜣwt", "", "", "", "the god Wepwawet"]) + let v = native_list_append(v, ["prt-ḫrw", "noun", "prt-ḫrw", "", "", "", "a funerary offering"]) + let v = native_list_append(v, ["sšrw", "noun", "sšrww", "", "", "", "linen cloth"]) + let v = native_list_append(v, ["ḏfꜣ", "noun", "ḏfꜣw", "", "", "", "food provision"]) + let v = native_list_append(v, ["rḫ-nswt", "noun", "rḫ-nswt", "", "", "", "a court title"]) + let v = native_list_append(v, ["jwwj", "noun", "jwwj", "", "", "", "a female given"]) + let v = native_list_append(v, ["zmyt", "noun", "zmywt", "", "", "", "desert"]) + let v = native_list_append(v, ["t-ḥḏ", "noun", "t-ḥḏ", "", "", "", "white bread"]) + let v = native_list_append(v, ["ḥr-m-ḥꜣt", "noun", "ḥr-m-ḥꜣt", "", "", "", "a male given"]) + let v = native_list_append(v, ["špssw", "noun", "špssw", "", "", "", "finery luxuries riches"]) + let v = native_list_append(v, ["qsn", "noun", "qsnw", "", "", "", "ordeal pain"]) + let v = native_list_append(v, ["pḥwj", "noun", "pḥwjw", "", "", "", "rear back"]) + let v = native_list_append(v, ["sḫm", "noun", "sḫmw", "", "", "", "power capability especially"]) + let v = native_list_append(v, ["bẖbẖ", "noun", "bẖbẖ", "", "", "", "arrogance"]) + let v = native_list_append(v, ["šmmt", "noun", "šmmwt", "", "", "", "heat fever"]) + let v = native_list_append(v, ["šzpt", "noun", "šzpwt", "", "", "", "pavilion"]) + let v = native_list_append(v, ["mḏꜣy", "noun", "mḏꜣyw", "", "", "", "one of the"]) + let v = native_list_append(v, ["ẖnmt", "noun", "ẖnmwt", "", "", "", "well"]) + let v = native_list_append(v, ["jbhyt", "noun", "jbhyt", "", "", "", "Ibhyt a place"]) + let v = native_list_append(v, ["ḥwn", "noun", "ḥwn", "", "", "", "childhood youth"]) + let v = native_list_append(v, ["ꜥbꜣ", "noun", "ꜥbꜣw", "", "", "", "offering-stone"]) + let v = native_list_append(v, ["mtrt", "noun", "mtrwt", "", "", "", "noon"]) + let v = native_list_append(v, ["nrt", "noun", "nrwt", "", "", "", "vulture"]) + let v = native_list_append(v, ["ḏnḥ", "noun", "ḏnḥw", "", "", "", "wing"]) + let v = native_list_append(v, ["zꜣ-tꜣ", "noun", "zꜣ-tꜣ", "", "", "", "homage"]) + let v = native_list_append(v, ["prt-spdt", "noun", "prt-spdt", "", "", "", "the annual heliacal"]) + let v = native_list_append(v, ["zšj", "noun", "zšjw", "", "", "", "nestling small bird"]) + let v = native_list_append(v, ["gbtjw", "noun", "gbtjw", "", "", "", "Coptos a city"]) + let v = native_list_append(v, ["sꜣꜣ", "noun", "sꜣꜣw", "", "", "", "wise man"]) + let v = native_list_append(v, ["msw-nswt", "noun", "sw-t:n-ms-s-w-Xrd-A1*B1:Z2", "", "", "", "the royal children"]) + let v = native_list_append(v, ["jmn-m-ḥꜣt", "noun", "jmn-m-ḥꜣt", "", "", "", "a male given"]) + let v = native_list_append(v, ["kmyt", "noun", "kmyt", "", "", "", "a compendium of"]) + let v = native_list_append(v, ["ḥsb", "noun", "ḥsbw", "", "", "", "bone fracture"]) + let v = native_list_append(v, ["jꜣwt", "noun", "jꜣwt", "", "", "", "office dignity position"]) + let v = native_list_append(v, ["jꜥrt", "noun", "jꜥrwt", "", "", "", "uraeus"]) + let v = native_list_append(v, ["ḥzt", "noun", "ḥzwt", "", "", "", "blessing favour"]) + let v = native_list_append(v, ["snm", "noun", "snmw", "", "", "", "mourning grief sorrow"]) + let v = native_list_append(v, ["rḏw", "noun", "rḏww", "", "", "", "fluid liquid"]) + let v = native_list_append(v, ["tjsw", "noun", "tjsww", "", "", "", "staff of wood"]) + let v = native_list_append(v, ["pꜣḏ", "noun", "pꜣḏw", "", "", "", "ball"]) + let v = native_list_append(v, ["ḏꜣt", "noun", "ḏꜣwt", "", "", "", "ferry"]) + let v = native_list_append(v, ["jrw", "noun", "jrww", "", "", "", "rite ritual ceremony"]) + let v = native_list_append(v, ["pḥtj", "noun", "pḥtj", "", "", "", "strength might"]) + let v = native_list_append(v, ["sprw", "noun", "sprww", "", "", "", "petitioner"]) + let v = native_list_append(v, ["snḏm", "noun", "snḏmw", "", "", "", "residence"]) + let v = native_list_append(v, ["qnyt", "noun", "qnyt", "", "", "", "an elite unit"]) + let v = native_list_append(v, ["qnbt", "noun", "qnbwt", "", "", "", "council court"]) + let v = native_list_append(v, ["sḫt-ḥmꜣt", "noun", "sḫt-ḥmꜣt", "", "", "", "the Wadi El"]) + let v = native_list_append(v, ["ḥmꜣt", "noun", "ḥmꜣt", "", "", "", "salt"]) + let v = native_list_append(v, ["ẖnyt", "noun", "ẖnyt", "", "", "", "rowing crew of"]) + let v = native_list_append(v, ["mjwt", "noun", "mjwwt", "", "", "", "cat molly"]) + let v = native_list_append(v, ["mnjw", "noun", "mnjww", "", "", "", "herder herdsman"]) + let v = native_list_append(v, ["šmꜥyt", "noun", "šmꜥywt", "", "", "", "singer"]) + let v = native_list_append(v, ["ḫbzwt", "noun", "ḫbzwwt", "", "", "", "beard"]) + let v = native_list_append(v, ["ḏꜣr", "noun", "ḏꜣrw", "", "", "", "need"]) + let v = native_list_append(v, ["wnḏwt", "noun", "wnḏwt", "", "", "", "fellow humans people"]) + let v = native_list_append(v, ["dp", "noun", "dp", "", "", "", "a city in"]) + let v = native_list_append(v, ["jwꜥw", "noun", "jwꜥww", "", "", "", "heir"]) + let v = native_list_append(v, ["ꜥn", "noun", "ꜥnw", "", "", "", "writing tablet made"]) + let v = native_list_append(v, ["rwj", "noun", "rwj", "", "", "", "two thirds"]) + let v = native_list_append(v, ["ẖrdw", "noun", "ẖrdw", "", "", "", "childhood"]) + let v = native_list_append(v, ["pr-ḥḏ", "noun", "prw-ḥḏ", "", "", "", "treasury"]) + let v = native_list_append(v, ["sḫꜣw", "noun", "sḫꜣw", "", "", "", "remembrance memory"]) + let v = native_list_append(v, ["nmtj-nḫt", "noun", "nmtj-nḫt", "", "", "", "a male given"]) + let v = native_list_append(v, ["wjꜣ", "noun", "wjꜣw", "", "", "", "sacred barque"]) + let v = native_list_append(v, ["bꜣkt", "noun", "bꜣkwt", "", "", "", "servant"]) + let v = native_list_append(v, ["nbt-tꜣ", "noun", "nbt-tꜣ", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["ršwt", "noun", "ršwt", "", "", "", "joy"]) + let v = native_list_append(v, ["rmṯt", "noun", "rmṯt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḫꜣstjw", "noun", "xAst:t-tyw-T14-A1:Z2", "", "", "", "foreigners"]) + let v = native_list_append(v, ["jmj jb", "noun", "jmjw jb", "", "", "", "favorite or close"]) + let v = native_list_append(v, ["wḫt", "noun", "wḫwt", "", "", "", "darkness"]) + let v = native_list_append(v, ["wrryt", "noun", "wrrywt", "", "", "", "chariot"]) + let v = native_list_append(v, ["mꜣwt", "noun", "mꜣwwt", "", "", "", "a new thing"]) + let v = native_list_append(v, ["jmn-nḫt", "noun", "jmn-nḫt", "", "", "", "a male given"]) + let v = native_list_append(v, ["jꜣdw", "noun", "jꜣdww", "", "", "", "pestilence plague epidemic"]) + let v = native_list_append(v, ["wršy", "noun", "wršyw", "", "", "", "watchman"]) + let v = native_list_append(v, ["wḥyt", "noun", "wḥyt", "", "", "", "tribe"]) + let v = native_list_append(v, ["qdnw", "noun", "qdnw", "", "", "", "Qatna a Bronze"]) + let v = native_list_append(v, ["wmwt", "noun", "wmwt", "", "", "", "niche in a"]) + let v = native_list_append(v, ["nḥ", "noun", "nḥw", "", "", "", "prayer"]) + let v = native_list_append(v, ["bꜣkw", "noun", "bꜣkw", "", "", "", "work labor especially"]) + let v = native_list_append(v, ["mdw-jꜣw", "noun", "mdw-jꜣw", "", "", "", "a son who"]) + let v = native_list_append(v, ["nḥsj", "noun", "nḥsjw", "", "", "", "Nubian"]) + let v = native_list_append(v, ["hrw-ḥꜣb", "noun", "hrw-ḥꜣb", "", "", "", "feast or festival"]) + let v = native_list_append(v, ["wḏyt", "noun", "wḏywt", "", "", "", "expedition journey away"]) + let v = native_list_append(v, ["ḫmt-rw", "noun", "ḫmt-rw", "", "", "", "three fourths"]) + let v = native_list_append(v, ["wnmw", "noun", "wnmw", "", "", "", "food"]) + let v = native_list_append(v, ["ẖꜣt", "noun", "ẖꜣwt", "", "", "", "corpse"]) + let v = native_list_append(v, ["mḥyt", "noun", "mḥywt", "", "", "", "north wind"]) + let v = native_list_append(v, ["wꜥw", "noun", "wꜥww", "", "", "", "soldier"]) + let v = native_list_append(v, ["ꜥꜥft", "noun", "ꜥꜥfwt", "", "", "", "rate of payment"]) + let v = native_list_append(v, ["ḫsbḏ", "noun", "ḫsbḏ", "", "", "", "lapis lazuli"]) + let v = native_list_append(v, ["smsw", "noun", "smsww", "", "", "", "eldest one"]) + let v = native_list_append(v, ["wdpw", "noun", "wdpww", "", "", "", "butler waiter"]) + let v = native_list_append(v, ["rmyt", "noun", "rmyt", "", "", "", "tears"]) + let v = native_list_append(v, ["ꜥꜣt", "noun", "ꜥꜣwt", "", "", "", "precious stone or"]) + let v = native_list_append(v, ["ḥqꜣ-ḥwt", "noun", "ḥqꜣw-ḥwt", "", "", "", "local ruler mayor"]) + let v = native_list_append(v, ["wzfw", "noun", "wzfww", "", "", "", "neglectful or negligent"]) + let v = native_list_append(v, ["sbḫt", "noun", "sbḫwt", "", "", "", "barrier"]) + let v = native_list_append(v, ["ḏrw", "noun", "ḏrw", "", "", "", "limit end"]) + let v = native_list_append(v, ["ṯmḥ", "noun", "ṯmḥw", "", "", "", "Libyan"]) + let v = native_list_append(v, ["qbw", "noun", "qbw", "", "", "", "cool breeze"]) + let v = native_list_append(v, ["jꜣꜣ", "noun", "jꜣꜣw", "", "", "", "a type of"]) + let v = native_list_append(v, ["rš", "noun", "rš", "", "", "", "joy"]) + let v = native_list_append(v, ["mẖr", "noun", "mẖrw", "", "", "", "food-storehouse granary"]) + let v = native_list_append(v, ["jsry", "noun", "jsry", "", "", "", "a male given"]) + let v = native_list_append(v, ["jꜣbtt", "noun", "jꜣbtwt", "", "", "", "east the East"]) + let v = native_list_append(v, ["jyt", "noun", "jyt", "", "", "", "unfavorable occurrences mishap"]) + let v = native_list_append(v, ["jwntj", "noun", "jwntjw", "", "", "", "nomadic desert Nubian"]) + let v = native_list_append(v, ["jmntt", "noun", "jmntt", "", "", "", "the West regions"]) + let v = native_list_append(v, ["jmḥt", "noun", "jmḥt", "", "", "", "a mythological place"]) + let v = native_list_append(v, ["jkm", "noun", "jkmw", "", "", "", "shield"]) + let v = native_list_append(v, ["jtmw", "noun", "jtmw", "", "", "", "suffocation"]) + let v = native_list_append(v, ["jtnw", "noun", "jtnw", "", "", "", "dust ashes"]) + let v = native_list_append(v, ["jdyt", "noun", "jdywt", "", "", "", "girl"]) + let v = native_list_append(v, ["nt-ꜥ", "noun", "nt-ꜥ", "", "", "", "the way of"]) + let v = native_list_append(v, ["ꜥꜥj", "noun", "ꜥꜥjw", "", "", "", "child"]) + let v = native_list_append(v, ["wpwt", "noun", "wpwwt", "", "", "", "message"]) + let v = native_list_append(v, ["ḥr-ḏd.f", "noun", "ḥr-ḏd.f", "", "", "", "a male given"]) + let v = native_list_append(v, ["bꜣw", "noun", "G30", "", "", "", "plural of bꜣ"]) + let v = native_list_append(v, ["ḫt-ꜥꜣ", "noun", "ḫt-ꜥꜣ", "", "", "", "a kind of"]) + let v = native_list_append(v, ["qnjw", "noun", "qnjww", "", "", "", "palanquin"]) + let v = native_list_append(v, ["jmj ḥꜣt", "noun", "jmjw ḥꜣt", "", "", "", "person at the"]) + let v = native_list_append(v, ["jmj ḫt", "noun", "jmjw ḫt", "", "", "", "follower retainer attendant"]) + let v = native_list_append(v, ["jmj bꜣḥ", "noun", "jmjw bꜣḥ", "", "", "", "ancestor"]) + let v = native_list_append(v, ["jrj-pꜥt", "noun", "jrjw-pꜥt", "", "", "", "hereditary nobleman"]) + let v = native_list_append(v, ["ẖrj-qnj", "noun", "ẖrjw-qnj", "", "", "", "porter"]) + let v = native_list_append(v, ["ḏs.s", "noun", "ḏs.s", "", "", "", "herself"]) + let v = native_list_append(v, ["wḏt", "noun", "wḏwt", "", "", "", "order decree"]) + let v = native_list_append(v, ["qꜣqꜣw", "noun", "qꜣqꜣww", "", "", "", "a kind of"]) + let v = native_list_append(v, ["wḥmyt", "noun", "wḥmywt", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["pds", "noun", "pdsw", "", "", "", "box chest"]) + let v = native_list_append(v, ["nwyt", "noun", "nwywt", "", "", "", "wave or swell"]) + let v = native_list_append(v, ["zmꜣ tꜣ", "noun", "zmꜣ tꜣ", "", "", "", "burial interment"]) + let v = native_list_append(v, ["šmꜥw", "noun", "šmꜥww", "", "", "", "singer musician"]) + let v = native_list_append(v, ["šms wḏꜣ", "noun", "šms wḏꜣ", "", "", "", "funeral procession"]) + let v = native_list_append(v, ["sqbbwj", "noun", "sqqbwjw", "", "", "", "A room of"]) + let v = native_list_append(v, ["tpt", "noun", "tpwt", "", "", "", "fine oil"]) + let v = native_list_append(v, ["ḥnkyt", "noun", "ḥnkywt", "", "", "", "bed"]) + let v = native_list_append(v, ["nfrtj", "noun", "nfrtj", "", "", "", "a male given"]) + let v = native_list_append(v, ["bnš", "noun", "bnšw", "", "", "", "doorpost doorjamb"]) + let v = native_list_append(v, ["ntj jm", "noun", "n:t*y-i-m", "", "", "", "the dead"]) + let v = native_list_append(v, ["ḏꜣtt", "noun", "ḏꜣtwt", "", "", "", "estate"]) + let v = native_list_append(v, ["jnḥ", "noun", "jnḥw", "", "", "", "eyebrow"]) + let v = native_list_append(v, ["bjꜣ n pt", "noun", "bjꜣ n pt", "", "", "", "meteoric iron"]) + let v = native_list_append(v, ["tꜣ-mrj", "noun", "tꜣ-mrj", "", "", "", "Egypt"]) + let v = native_list_append(v, ["spdw", "noun", "spdw", "", "", "", "the god Sopdu"]) + let v = native_list_append(v, ["pẖr-wr", "noun", "pẖr-wr", "", "", "", "the river Euphrates"]) + let v = native_list_append(v, ["mḥtjw", "noun", "mH:t-tyw-Z3", "", "", "", "northerners"]) + let v = native_list_append(v, ["sšpt", "noun", "sšpt", "", "", "", "melons possibly muskmelons"]) + let v = native_list_append(v, ["tꜣ-nṯr", "noun", "tꜣ-nṯr", "", "", "", "alternative name for"]) + let v = native_list_append(v, ["snṯr", "noun", "snṯr", "", "", "", "incense"]) + let v = native_list_append(v, ["ḥwꜥ", "noun", "ḥwꜥw", "", "", "", "dwarf short person"]) + let v = native_list_append(v, ["nht", "noun", "nhwt", "", "", "", "sycamore"]) + let v = native_list_append(v, ["dqr", "noun", "dqr", "", "", "", "edible fruit"]) + let v = native_list_append(v, ["kmbjṯt", "noun", "kmbjṯt", "", "", "", "a male given"]) + let v = native_list_append(v, ["ꜣrwksjndrs", "noun", "ꜣrwksjndrs", "", "", "", "a male given"]) + let v = native_list_append(v, ["jntjrwywꜣšꜣ", "noun", "jntjrwywꜣšꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["jšdt", "noun", "jšdwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["gꜣbt", "noun", "gꜣbwt", "", "", "", "leaf of a"]) + let v = native_list_append(v, ["wꜣb", "noun", "wꜣbw", "", "", "", "root of a"]) + let v = native_list_append(v, ["mnyt", "noun", "mnywt", "", "", "", "root of a"]) + let v = native_list_append(v, ["qqtj", "noun", "qqtj", "", "", "", "tree bark used"]) + let v = native_list_append(v, ["prwypwsꜣ", "noun", "prwypwsꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["tybꜣrys", "noun", "tybꜣrys", "", "", "", "a male given"]) + let v = native_list_append(v, ["jwrꜣḥy", "noun", "jwrꜣḥy", "", "", "", "A settlement in"]) + let v = native_list_append(v, ["bꜥr", "noun", "bꜥr", "", "", "", "Baal a storm"]) + let v = native_list_append(v, ["ꜥkꜣ", "noun", "ꜥkꜣ", "", "", "", "Acre a city"]) + let v = native_list_append(v, ["wspjsyns", "noun", "wspjsyns", "", "", "", "a male given"]) + let v = native_list_append(v, ["hndwꜣy", "noun", "hndwꜣy", "", "", "", "India"]) + let v = native_list_append(v, ["sṯt", "noun", "sṯt", "", "", "", "the lands northeast"]) + let v = native_list_append(v, ["tjmsqw", "noun", "tjmsqw", "", "", "", "the ancient capital"]) + let v = native_list_append(v, ["yrdwnꜣ", "noun", "yrdwnꜣ", "", "", "", "Jordan a river"]) + let v = native_list_append(v, ["bꜣbꜣrw", "noun", "bꜣbꜣrw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥsṯrt", "noun", "ꜥsṯrt", "", "", "", "the goddess Astarte"]) + let v = native_list_append(v, ["ḥꜣw-nbwt", "noun", "HA-A-w-nb:t*Z2ss", "", "", "", "islanders particularly of"]) + let v = native_list_append(v, ["nḥrj", "noun", "nḥrj", "", "", "", "a male given"]) + let v = native_list_append(v, ["ṯꜣy", "noun", "ṯꜣyw", "", "", "", "male male person"]) + let v = native_list_append(v, ["dgm", "noun", "dgmw", "", "", "", "castor oil plant"]) + let v = native_list_append(v, ["jḫḫw", "noun", "jḫḫw", "", "", "", "twilight dawn or"]) + let v = native_list_append(v, ["wꜣg", "noun", "wꜣgw", "", "", "", "the Wag-festival a"]) + let v = native_list_append(v, ["jmj-rn.f", "noun", "jmjw-rn.f", "", "", "", "list of names"]) + let v = native_list_append(v, ["msdw", "noun", "msdww", "", "", "", "rival"]) + let v = native_list_append(v, ["jdb", "noun", "jdbw", "", "", "", "riverbank"]) + let v = native_list_append(v, ["jdbwj", "noun", "jdbwj", "", "", "", "dual of jdb"]) + let v = native_list_append(v, ["mtj", "noun", "mtj", "", "", "", "correctness exactness scrupulousness"]) + let v = native_list_append(v, ["ḥmww", "noun", "ḥmwww", "", "", "", "artisan"]) + let v = native_list_append(v, ["ẖnmw", "noun", "ẖnmw", "", "", "", "the god Khnum"]) + let v = native_list_append(v, ["sḏt", "noun", "sḏwt", "", "", "", "fire flame"]) + let v = native_list_append(v, ["zj n sḏt", "noun", "zj n sḏt", "", "", "", "burnt offering"]) + let v = native_list_append(v, ["ḏꜣ", "noun", "ḏꜣw", "", "", "", "fire drill tool"]) + let v = native_list_append(v, ["šwꜣw", "noun", "šwꜣww", "", "", "", "commoner poor man"]) + let v = native_list_append(v, ["wbꜣyt", "noun", "wbꜣywt", "", "", "", "butler or cupbearer"]) + let v = native_list_append(v, ["šsꜣw", "noun", "šsꜣw", "", "", "", "treatment prescription"]) + let v = native_list_append(v, ["mjgꜣdn", "noun", "mjgꜣdn", "", "", "", "Macedon Macedonia"]) + let v = native_list_append(v, ["ḫꜣjw", "noun", "ḫꜣjw", "", "", "", "a male given"]) + let v = native_list_append(v, ["ṯš", "noun", "ṯš", "", "", "", "a male given"]) + let v = native_list_append(v, ["n-hb", "noun", "n-hb", "", "", "", "a male given"]) + let v = native_list_append(v, ["wngbw", "noun", "wngbw", "", "", "", "a male given"]) + let v = native_list_append(v, ["mẖ", "noun", "mẖ", "", "", "", "a male given"]) + let v = native_list_append(v, ["mwt-mwt", "noun", "mwwt-mwt", "", "", "", "grandmother"]) + let v = native_list_append(v, ["ḥꜣt-ꜥ", "noun", "ḥꜣt-ꜥ", "", "", "", "beginning"]) + let v = native_list_append(v, ["sdm", "noun", "sdmw", "", "", "", "makeup especially for"]) + let v = native_list_append(v, ["gs-tp", "noun", "gs-tp", "", "", "", "migraine headache"]) + let v = native_list_append(v, ["ꜥḏ-jb", "noun", "ꜥḏ-jb", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["smr-ẖt", "noun", "smr-ẖt", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["qꜣ-ꜥ", "noun", "qꜣ-ꜥ", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["ꜣbḫt", "noun", "ꜣbḫt", "", "", "", "A type of"]) + let v = native_list_append(v, ["jꜣbj", "noun", "jꜣbj", "", "", "", "left direction"]) + let v = native_list_append(v, ["pn-ꜣbw", "noun", "pn-ꜣbw", "", "", "", "Alleged serekh name"]) + let v = native_list_append(v, ["jw.f ꜥꜣ.f", "noun", "jw.f ꜥꜣ.f", "", "", "", "man on the"]) + let v = native_list_append(v, ["j.zj ḥꜣq", "noun", "j.zj ḥꜣq", "", "", "", "easy pickings easy"]) + let v = native_list_append(v, ["jwyt", "noun", "jwywt", "", "", "", "house"]) + let v = native_list_append(v, ["jwtt", "noun", "jwtwt", "", "", "", "the nonexistent that"]) + let v = native_list_append(v, ["jwtt ntt", "noun", "jwtt ntt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḏrtj", "noun", "ḏrtj", "", "", "", "a town in"]) + let v = native_list_append(v, ["ḥtp-sḫmwj", "noun", "ḥtp-sḫmwj", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["nb-rꜥ", "noun", "nb-rꜥ", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["n-nṯr", "noun", "n-nṯr", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["wꜣḏ-ns", "noun", "wꜣḏ-ns", "", "", "", "a throne name"]) + let v = native_list_append(v, ["snd", "noun", "snd", "", "", "", "a throne name"]) + let v = native_list_append(v, ["sḫm-jb-pr.n-mꜣꜥt", "noun", "sḫm-jb-pr.n-mꜣꜥt", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["stẖ-pr-jb.sn", "noun", "stẖ-pr-jb.sn", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["nfr-kꜣ-rꜥ", "noun", "nfr-kꜣ-rꜥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["nfr-kꜣ-zkr", "noun", "nfr-kꜣ-zkr", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḫꜥ-sḫmwj", "noun", "ḫꜥ-sḫmwj", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["jwdnb", "noun", "jwdnb", "", "", "", "a kind of"]) + let v = native_list_append(v, ["sꜣngꜣr", "noun", "sꜣngꜣr", "", "", "", "Babylonia an ancient"]) + let v = native_list_append(v, ["ṯwfj", "noun", "ṯwfj", "", "", "", "papyrus plants"]) + let v = native_list_append(v, ["qꜥḥ", "noun", "qꜥḥw", "", "", "", "sheet of papyrus"]) + let v = native_list_append(v, ["ẖrt-ꜥ", "noun", "ẖrwt-ꜥ", "", "", "", "small wooden box"]) + let v = native_list_append(v, ["nꜣḏꜣrw", "noun", "nꜣḏꜣrww", "", "", "", "chip splinter of"]) + let v = native_list_append(v, ["qdšw", "noun", "qdšw", "", "", "", "Alternative form of"]) + let v = native_list_append(v, ["sꜣrꜣqw", "noun", "sꜣrꜣqw", "", "", "", "snow"]) + let v = native_list_append(v, ["ꜥnb", "noun", "ꜥnbw", "", "", "", "Egyptian halfa grass"]) + let v = native_list_append(v, ["nwḥ", "noun", "nwḥw", "", "", "", "rope cord"]) + let v = native_list_append(v, ["mẖtw", "noun", "mẖtw", "", "", "", "guts entrails especially"]) + let v = native_list_append(v, ["ḫḫ", "noun", "ḫḫw", "", "", "", "neck of a"]) + let v = native_list_append(v, ["ḫbzt", "noun", "ḫbzwt", "", "", "", "tail"]) + let v = native_list_append(v, ["nḥḏt", "noun", "nḥḏwt", "", "", "", "tooth"]) + let v = native_list_append(v, ["kꜣm", "noun", "kꜣmw", "", "", "", "vineyard"]) + let v = native_list_append(v, ["jwn", "noun", "jwnw", "", "", "", "color"]) + let v = native_list_append(v, ["jdmj", "noun", "jdmjw", "", "", "", "fine red linen"]) + let v = native_list_append(v, ["gstj", "noun", "gstjw", "", "", "", "scribal palette"]) + let v = native_list_append(v, ["ḏꜥnt", "noun", "ḏꜥnt", "", "", "", "Tanis a historical"]) + let v = native_list_append(v, ["ṯb-nṯr", "noun", "ṯb-nṯr", "", "", "", "Sebennytos a city"]) + let v = native_list_append(v, ["bꜣk-n-rn.f", "noun", "bꜣk-n-rn.f", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥp", "noun", "ḥp", "", "", "", "the god Apis"]) + let v = native_list_append(v, ["zꜣwtj", "noun", "zꜣwtj", "", "", "", "Asyut a city"]) + let v = native_list_append(v, ["ḥrj-pḏt", "noun", "ḥrjw-pḏt", "", "", "", "a high military"]) + let v = native_list_append(v, ["sḥḏw", "noun", "sḥḏw", "", "", "", "a bright discoloration"]) + let v = native_list_append(v, ["grgt", "noun", "grgwt", "", "", "", "dowry"]) + let v = native_list_append(v, ["ṯrt", "noun", "ṯrwt", "", "", "", "willow"]) + let v = native_list_append(v, ["ḏmꜥ", "noun", "ḏmꜥw", "", "", "", "sheet of papyrus"]) + let v = native_list_append(v, ["ḫꜣrw", "noun", "ḫꜣrww", "", "", "", "a Hurrian"]) + let v = native_list_append(v, ["zjnw", "noun", "zjnww", "", "", "", "physician"]) + let v = native_list_append(v, ["ẖn", "noun", "Xn:n-w-S28-Z3", "", "", "", "tent"]) + let v = native_list_append(v, ["nkt", "noun", "nktw", "", "", "", "some a little"]) + let v = native_list_append(v, ["kꜣmw", "noun", "kꜣmww", "", "", "", "vintner gardener"]) + let v = native_list_append(v, ["ḥṯṯt", "noun", "ḥṯṯwt", "", "", "", "armpit"]) + let v = native_list_append(v, ["ypw", "noun", "ypw", "", "", "", "Jaffa"]) + let v = native_list_append(v, ["dmꜣt", "noun", "dmꜣwt", "", "", "", "wing"]) + let v = native_list_append(v, ["ḥtj", "noun", "ḥtjw", "", "", "", "smoke"]) + let v = native_list_append(v, ["sjm", "noun", "sjmw", "", "", "", "fog"]) + let v = native_list_append(v, ["šꜥy", "noun", "šꜥy", "", "", "", "sand"]) + let v = native_list_append(v, ["ḫmw", "noun", "ḫmw", "", "", "", "dust"]) + let v = native_list_append(v, ["sꜣdjꜥmj", "noun", "sꜣdjꜥmj", "", "", "", "a male given"]) + let v = native_list_append(v, ["mjzt", "noun", "mjzwt", "", "", "", "liver of a"]) + let v = native_list_append(v, ["yꜥqb-hr", "noun", "yꜥqb-hr", "", "", "", "a throne name"]) + let v = native_list_append(v, ["zpyt", "noun", "zpyt", "", "", "", "rest remainder remnant"]) + let v = native_list_append(v, ["ywnj-ꜥꜣ", "noun", "ywnj-ꜥꜣ", "", "", "", "a region bordering"]) + let v = native_list_append(v, ["ywnj", "noun", "ywnj", "", "", "", "only used in"]) + let v = native_list_append(v, ["ꜣrwtꜣḫšꜣšꜣs", "noun", "ꜣrwtꜣḫšꜣšꜣs", "", "", "", "a male given"]) + let v = native_list_append(v, ["bjrwnygꜣt", "noun", "bjrwnygꜣt", "", "", "", "a female given"]) + let v = native_list_append(v, ["šꜣšꜣnq", "noun", "šꜣšꜣnq", "", "", "", "a male given"]) + let v = native_list_append(v, ["nfrw-rꜥ", "noun", "nfrw-rꜥ", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfr-ḥtp", "noun", "nfr-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["sn-n-mwt", "noun", "sn-n-mwt", "", "", "", "a male given"]) + let v = native_list_append(v, ["nfrt-jrj", "noun", "nfrt-jrj", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfr-mꜣꜥt", "noun", "nfr-mꜣꜥt", "", "", "", "a male given"]) + let v = native_list_append(v, ["mryt-jtn", "noun", "mryt-jtn", "", "", "", "a female given"]) + let v = native_list_append(v, ["mryt-jmn", "noun", "mryt-jmn", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfr-nfrw-jtn", "noun", "nfr-nfrw-jtn", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfr-nfrw-rꜥ", "noun", "nfr-nfrw-rꜥ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ꜥnḫ.s-n-jmn", "noun", "ꜥnḫ.s-n-jmn", "", "", "", "a female given"]) + let v = native_list_append(v, ["jrsjrnꜣt", "noun", "jrsjrnꜣt", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfrw-ptḥ", "noun", "nfrw-ptḥ", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfrw-bjtj", "noun", "nfrw-bjtj", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfrw-sbk", "noun", "nfrw-sbk", "", "", "", "a female given"]) + let v = native_list_append(v, ["rꜥ-ms", "noun", "rꜥ-ms", "", "", "", "a male given"]) + let v = native_list_append(v, ["ptḥ-ms", "noun", "ptḥ-ms", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥtp-ḥr.s", "noun", "ḥtp-ḥr.s", "", "", "", "a female given"]) + let v = native_list_append(v, ["jj-m-ḥtp", "noun", "jj-m-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥꜣt-špswt", "noun", "ḥꜣt-špswt", "", "", "", "a female given"]) + let v = native_list_append(v, ["nt-ḥtp", "noun", "nt-ḥtp", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfrt-jꜣbt", "noun", "nfrt-jꜣbt", "", "", "", "a female given"]) + let v = native_list_append(v, ["mrt-nbtj", "noun", "mrt-nbtj", "", "", "", "a female given"]) + let v = native_list_append(v, ["rꜥ-ḥtp", "noun", "rꜥ-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥqꜣ-ḫꜣst", "noun", "ḥqꜣw-ḫꜣst", "", "", "", "a foreign ruler"]) + let v = native_list_append(v, ["stẖj", "noun", "stẖj", "", "", "", "a male given"]) + let v = native_list_append(v, ["mryt-ptḥ", "noun", "mryt-ptḥ", "", "", "", "a female given"]) + let v = native_list_append(v, ["mryt-rꜥ", "noun", "mryt-rꜥ", "", "", "", "a female given"]) + let v = native_list_append(v, ["psšt", "noun", "psšwt", "", "", "", "share portion"]) + let v = native_list_append(v, ["ḥnwt-tꜣwj", "noun", "ḥnwt-tꜣwj", "", "", "", "a female given"]) + let v = native_list_append(v, ["mr.s-ꜥnḫ", "noun", "mr.s-ꜥnḫ", "", "", "", "a female given"]) + let v = native_list_append(v, ["mryt-jt.s", "noun", "mryt-jt.s", "", "", "", "a female given"]) + let v = native_list_append(v, ["ptḥ-špss", "noun", "ptḥ-špss", "", "", "", "a male given"]) + let v = native_list_append(v, ["nfr-ḥtp.s", "noun", "nfr-ḥtp.s", "", "", "", "a female given"]) + let v = native_list_append(v, ["mwt-nfr.t", "noun", "mwt-nfr.t", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfrt-ḥnwt", "noun", "nfrt-ḥnwt", "", "", "", "a female given"]) + let v = native_list_append(v, ["nfrt-kꜣw", "noun", "nfrt-kꜣw", "", "", "", "a female given"]) + let v = native_list_append(v, ["pꜣ-jḥjꜣ", "noun", "pꜣ-jḥjꜣ", "", "", "", "a female given"]) + let v = native_list_append(v, ["pwj-m-rꜥ", "noun", "pwj-m-rꜥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["pr-snt", "noun", "pr-snt", "", "", "", "a female given"]) + let v = native_list_append(v, ["tjꜥꜣ", "noun", "tjꜥꜣ", "", "", "", "a female given"]) + let v = native_list_append(v, ["pwrꜣsꜣtj", "noun", "pwrꜣsꜣtj", "", "", "", "one of the"]) + let v = native_list_append(v, ["pr-bꜣstt", "noun", "pr-bꜣstt", "", "", "", "Bubastis"]) + let v = native_list_append(v, ["sfsf", "noun", "sfsf", "", "", "", "ashes"]) + let v = native_list_append(v, ["nꜣy.f-ꜥꜣw-rwḏ", "noun", "nꜣy.f-ꜥꜣw-rwḏ", "", "", "", "a male given"]) + let v = native_list_append(v, ["hkr", "noun", "hkr", "", "", "", "a male given"]) + let v = native_list_append(v, ["nḫt-nb.f", "noun", "nḫt-nb.f", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḏd-ḥr", "noun", "ḏd-ḥr", "", "", "", "a male given"]) + let v = native_list_append(v, ["psmṯk", "noun", "psmṯk", "", "", "", "a male given"]) + let v = native_list_append(v, ["jꜥḥ-ms", "noun", "jꜥḥ-ms", "", "", "", "a male given"]) + let v = native_list_append(v, ["n-kꜣw", "noun", "n-kꜣw", "", "", "", "a male given"]) + let v = native_list_append(v, ["tꜣ.f-nḫt", "noun", "tꜣ.f-nḫt", "", "", "", "a male given"]) + let v = native_list_append(v, ["mꜣꜣt-ḥr-nfrw-rꜥ", "noun", "mꜣꜣt-ḥr-nfrw-rꜥ", "", "", "", "a female given"]) + let v = native_list_append(v, ["jꜥḥ-ḥtp", "noun", "jꜥḥ-ḥtp", "", "", "", "a female given"]) + let v = native_list_append(v, ["ꜣst-nfrt", "noun", "ꜣst-nfrt", "", "", "", "a female given"]) + let v = native_list_append(v, ["ḏḏw-ms", "noun", "ḏḏw-ms", "", "", "", "a male given"]) + let v = native_list_append(v, ["stẖ-nḫt", "noun", "stẖ-nḫt", "", "", "", "a male given"]) + let v = native_list_append(v, ["zꜣ-jmn", "noun", "zꜣ-jmn", "", "", "", "a male given"]) + let v = native_list_append(v, ["pꜣ-sbꜣ-ḫꜥ-n-nwt", "noun", "pꜣ-sbꜣ-ḫꜥ-n-nwt", "", "", "", "a male given"]) + let v = native_list_append(v, ["wꜣsꜣrkn", "noun", "wꜣsꜣrkn", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḫꜣbꜣbꜣšꜣ", "noun", "ḫꜣbꜣbꜣšꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["tꜣnwꜣtj-jmn", "noun", "tꜣnwꜣtj-jmn", "", "", "", "a male given"]) + let v = native_list_append(v, ["tꜣhꜣrqꜣ", "noun", "tꜣhꜣrqꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["šꜣbꜣkꜣ", "noun", "šꜣbꜣkꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["šꜣbꜣtꜣkꜣ", "noun", "šꜣbꜣtꜣkꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["kꜣštꜣ", "noun", "kꜣštꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["jrwrꜣ", "noun", "jrwrꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["nmꜣrṯ", "noun", "nmꜣrṯ", "", "", "", "a male given"]) + let v = native_list_append(v, ["tjkrṯ", "noun", "tjkrṯ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ḥr-zꜣ-ꜣst", "noun", "ḥr-zꜣ-ꜣst", "", "", "", "the god Harsiese"]) + let v = native_list_append(v, ["zꜣ-ꜣst", "noun", "zꜣ-ꜣst", "", "", "", "a male given"]) + let v = native_list_append(v, ["rwḏ-jmn", "noun", "rwḏ-jmn", "", "", "", "a male given"]) + let v = native_list_append(v, ["p.f-ṯꜣw-ꜥwj-bꜣstt", "noun", "p.f-ṯꜣw-ꜥwj-bꜣstt", "", "", "", "a male given"]) + let v = native_list_append(v, ["tꜣ-nt-jmn", "noun", "tꜣ-nt-jmn", "", "", "", "a female given"]) + let v = native_list_append(v, ["ꜣst-m-ꜣḫ-bjt", "noun", "ꜣst-m-ꜣḫ-bjt", "", "", "", "a female given"]) + let v = native_list_append(v, ["pꜣ-dj-bꜣstt", "noun", "pꜣ-dj-bꜣstt", "", "", "", "a male given"]) + let v = native_list_append(v, ["nfr-ḥḏt", "noun", "nfr-ḥḏt", "", "", "", "the White Crown"]) + let v = native_list_append(v, ["pꜣ-nḥsj", "noun", "pꜣ-nḥsj", "", "", "", "a male given"]) + let v = native_list_append(v, ["wsr-mnṯw", "noun", "wsr-mnṯw", "", "", "", "a male given"]) + let v = native_list_append(v, ["ẖnmt-nfr-ḥḏt", "noun", "ẖnmt-nfr-ḥḏt", "", "", "", "a female given"]) + let v = native_list_append(v, ["ḫꜥ-m-wꜣst", "noun", "ḫꜥ-m-wꜣst", "", "", "", "a male given"]) + let v = native_list_append(v, ["ꜣbyt", "noun", "ꜣbywt", "", "", "", "a female lithe"]) + let v = native_list_append(v, ["ꜣby-šmꜥ", "noun", "ꜣbyw-šmꜥ", "", "", "", "leopard Panthera pardus"]) + let v = native_list_append(v, ["ꜣby-mḥw", "noun", "ꜣbyw-mḥw", "", "", "", "cheetah Acinonyx jubatus"]) + let v = native_list_append(v, ["ꜣbw-nṯr", "noun", "ꜣbw-nṯr", "", "", "", "a type of"]) + let v = native_list_append(v, ["mḥw", "noun", "mḥw", "", "", "", "Lower Egypt an"]) + let v = native_list_append(v, ["ꜣbnn", "noun", "ꜣbnn", "", "", "", "a type of"]) + let v = native_list_append(v, ["ꜣbnjnj", "noun", "ꜣbnjnjw", "", "", "", "a type of"]) + let v = native_list_append(v, ["ꜣpꜣrwywsꜣ", "noun", "ꜣpꜣrwywsꜣ", "", "", "", "The month of"]) + let v = native_list_append(v, ["psḏ", "noun", "psḏw", "", "", "", "spine backbone"]) + let v = native_list_append(v, ["qjs", "noun", "qjsw", "", "", "", "vomit"]) + let v = native_list_append(v, ["ḫntj-š", "noun", "ḫntjw-š", "", "", "", "a title conventionally"]) + let v = native_list_append(v, ["ḥnt", "noun", "ḥnwt", "", "", "", "swampy lake or"]) + let v = native_list_append(v, ["ssf", "noun", "ssf", "", "", "", "ashes"]) + let v = native_list_append(v, ["sṯzw", "noun", "s-T:z-w-U39-Z3-N4", "", "", "", "clouds"]) + let v = native_list_append(v, ["smḥj", "noun", "smḥj", "", "", "", "left side"]) + let v = native_list_append(v, ["qnjt", "noun", "qnjt", "", "", "", "a yellow pigment"]) + let v = native_list_append(v, ["ꜣmꜥ", "noun", "ꜣmꜥw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜣmꜥt", "noun", "ꜣmꜥwt", "", "", "", "condyle or fork"]) + let v = native_list_append(v, ["ꜣmmt", "noun", "ꜣmmwt", "", "", "", "grip grasp fist"]) + let v = native_list_append(v, ["ꜣmmw", "noun", "ꜣmmw", "", "", "", "gripings or spasms"]) + let v = native_list_append(v, ["ꜣms", "noun", "ꜣmsw", "", "", "", "a type of"]) + let v = native_list_append(v, ["j.ḫm-wrḏ", "noun", "j.ḫmw-wrḏ", "", "", "", "noncircumpolar star a"]) + let v = native_list_append(v, ["jnb-ḥḏ", "noun", "jnb-ḥḏ", "", "", "", "Memphis"]) + let v = native_list_append(v, ["jbꜣ", "noun", "jbꜣw", "", "", "", "dance"]) + let v = native_list_append(v, ["jmj-ḫnt", "noun", "jmjw-ḫnt", "", "", "", "an official title"]) + let v = native_list_append(v, ["jbt", "noun", "jbt", "", "", "", "thirst"]) + let v = native_list_append(v, ["jmstj", "noun", "jmstj", "", "", "", "Imseti a mortuary"]) + let v = native_list_append(v, ["jzftj", "noun", "jzftjw", "", "", "", "evildoer villain"]) + let v = native_list_append(v, ["wnmt", "noun", "wnmt", "", "", "", "food for humans"]) + let v = native_list_append(v, ["wrs", "noun", "wrsw", "", "", "", "headrest for sleeping"]) + let v = native_list_append(v, ["wḥmt", "noun", "wḥmwt", "", "", "", "hoof"]) + let v = native_list_append(v, ["mnwt", "noun", "mnwwt", "", "", "", "pigeon"]) + let v = native_list_append(v, ["qrrt", "noun", "qrwt", "", "", "", "hole cavity"]) + let v = native_list_append(v, ["dꜣb", "noun", "dꜣbw", "", "", "", "fig fruit"]) + let v = native_list_append(v, ["njw", "noun", "njww", "", "", "", "ostrich"]) + let v = native_list_append(v, ["ḏsrt", "noun", "ḏsrt", "", "", "", "a strong ale"]) + let v = native_list_append(v, ["bꜣgsw", "noun", "bꜣgsww", "", "", "", "dagger"]) + let v = native_list_append(v, ["mꜣṯ", "noun", "mꜣṯ", "", "", "", "granite"]) + let v = native_list_append(v, ["ꜣḫt-jtn", "noun", "ꜣḫt-jtn", "", "", "", "Akhetaten Amarna the"]) + let v = native_list_append(v, ["qbḥw", "noun", "qbḥww", "", "", "", "cool water"]) + let v = native_list_append(v, ["bwtj", "noun", "bwtjw", "", "", "", "detested one abominable"]) + let v = native_list_append(v, ["ḫrwyw", "noun", "ḫrwyw", "", "", "", "strife war"]) + let v = native_list_append(v, ["jꜥw-r", "noun", "jꜥww-r", "", "", "", "breakfast"]) + let v = native_list_append(v, ["sṯ", "noun", "sṯw", "", "", "", "smell scent odor"]) + let v = native_list_append(v, ["rrj", "noun", "rrjw", "", "", "", "pig boar"]) + let v = native_list_append(v, ["nbt-pr", "noun", "nbwt-pr", "", "", "", "a title one"]) + let v = native_list_append(v, ["rnpwt", "noun", "rnpwt", "", "", "", "fresh plants and"]) + let v = native_list_append(v, ["nnšm", "noun", "nnšmw", "", "", "", "spleen"]) + let v = native_list_append(v, ["ḏbꜣt", "noun", "ḏbꜣwt", "", "", "", "sarcophagus in general"]) + let v = native_list_append(v, ["ṯꜣ", "noun", "ṯꜣw", "", "", "", "droplet drop"]) + let v = native_list_append(v, ["wḫdw", "noun", "wḫdw", "", "", "", "an agent of"]) + let v = native_list_append(v, ["mꜥnḏt", "noun", "mꜥnḏt", "", "", "", "the barque in"]) + let v = native_list_append(v, ["msktt", "noun", "msktt", "", "", "", "the barque in"]) + let v = native_list_append(v, ["ꜥḏt", "noun", "ꜥḏt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḥpy", "noun", "ḥpy", "", "", "", "Hapy a mortuary"]) + let v = native_list_append(v, ["ḏḥwtt", "noun", "ḏḥwtwt", "", "", "", "the festival of"]) + let v = native_list_append(v, ["wꜥꜥw", "noun", "wꜥꜥw", "", "", "", "solitude privacy"]) + let v = native_list_append(v, ["tḫn", "noun", "tḫnw", "", "", "", "obelisk"]) + let v = native_list_append(v, ["šꜣbw", "noun", "šꜣbw", "", "", "", "meals food"]) + let v = native_list_append(v, ["šfdw", "noun", "šfdww", "", "", "", "roll of papyrus"]) + let v = native_list_append(v, ["mswt", "noun", "mswwt", "", "", "", "birthing the process"]) + let v = native_list_append(v, ["ꜣsḫ", "noun", "ꜣsḫw", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bgs", "noun", "bgsw", "", "", "", "throat"]) + let v = native_list_append(v, ["ḏbt", "noun", "ḏbtw", "", "", "", "brick block ingot"]) + let v = native_list_append(v, ["ꜥẖm", "noun", "ꜥẖmw", "", "", "", "cultic image of"]) + let v = native_list_append(v, ["ꜥmꜥt", "noun", "ꜥmꜥt", "", "", "", "mud"]) + let v = native_list_append(v, ["mnty", "noun", "mntyw", "", "", "", "porter doorkeeper"]) + let v = native_list_append(v, ["bꜣt", "noun", "bꜣwt", "", "", "", "bush"]) + let v = native_list_append(v, ["ršrš", "noun", "ršršw", "", "", "", "joy"]) + let v = native_list_append(v, ["jky", "noun", "jkyw", "", "", "", "a type of"]) + let v = native_list_append(v, ["jtrt", "noun", "jtrwt", "", "", "", "row of people"]) + let v = native_list_append(v, ["ꜥftj", "noun", "ꜥftjw", "", "", "", "brewer"]) + let v = native_list_append(v, ["ẖkr", "noun", "ẖkrw", "", "", "", "adornment decoration"]) + let v = native_list_append(v, ["ꜥrrwt", "noun", "ꜥrrwyt", "", "", "", "gate"]) + let v = native_list_append(v, ["mskꜣ", "noun", "mskꜣw", "", "", "", "animal hide"]) + let v = native_list_append(v, ["nꜥrt", "noun", "nꜥrwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["sẖt", "noun", "sẖwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["ḏwjw", "noun", "ḏwjww", "", "", "", "clay jug or"]) + let v = native_list_append(v, ["rn nfr", "noun", "rnw nfrw", "", "", "", "common name of"]) + let v = native_list_append(v, ["ḏꜣḏꜣt", "noun", "ḏꜣḏꜣwt", "", "", "", "council assembly especially"]) + let v = native_list_append(v, ["pꜣwtj", "noun", "pꜣwtjw", "", "", "", "primaeval god"]) + let v = native_list_append(v, ["sḫt-jꜣrw", "noun", "sḫt-jꜣrw", "", "", "", "a region of"]) + let v = native_list_append(v, ["rswt", "noun", "rswwt", "", "", "", "dream"]) + let v = native_list_append(v, ["ṯztj", "noun", "ṯztjw", "", "", "", "one of the"]) + let v = native_list_append(v, ["ksw", "noun", "ksw", "", "", "", "bowing bow obeisance"]) + let v = native_list_append(v, ["ḏrtjw", "noun", "Dr:r-t-tyw-Z2ss", "", "", "", "ancestors"]) + let v = native_list_append(v, ["ṯḥw", "noun", "ṯḥw", "", "", "", "joy"]) + let v = native_list_append(v, ["ꜣryt", "noun", "ꜣrywt", "", "", "", "staff"]) + let v = native_list_append(v, ["ꜣšrt", "noun", "ꜣšrwt", "", "", "", "joint of roast"]) + let v = native_list_append(v, ["ꜣhmt", "noun", "ꜣhmt", "", "", "", "sorrow suffering"]) + let v = native_list_append(v, ["ꜣḥ", "noun", "ꜣḥ", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜣḫ-bjt", "noun", "ꜣḫ-bjt", "", "", "", "a mythological island"]) + let v = native_list_append(v, ["ꜣẖꜥt", "noun", "ꜣẖꜥt", "", "", "", "scratch scratch wound"]) + let v = native_list_append(v, ["ꜣḫf", "noun", "ꜣḫf", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["zpt", "noun", "zpwt", "", "", "", "threshing floor"]) + let v = native_list_append(v, ["zwt", "noun", "zwwt", "", "", "", "a type of"]) + let v = native_list_append(v, ["sšr", "noun", "sšrw", "", "", "", "grain corn"]) + let v = native_list_append(v, ["mtwt", "noun", "mtwt", "", "", "", "semen"]) + let v = native_list_append(v, ["qnt", "noun", "qnwt", "", "", "", "bravery valor"]) + let v = native_list_append(v, ["jḫmt", "noun", "jḫmwt", "", "", "", "bank embankment of"]) + let v = native_list_append(v, ["ꜥqyt", "noun", "ꜥqywt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ḥnmmt", "noun", "ḥnmmt", "", "", "", "a group of"]) + let v = native_list_append(v, ["ḥbsw", "noun", "ḥbsw", "", "", "", "clothing"]) + let v = native_list_append(v, ["wjꜣ-n-ḥḥw", "noun", "wjꜣ-n-ḥḥw", "", "", "", "the barque in"]) + let v = native_list_append(v, ["wbnw", "noun", "wbnww", "", "", "", "wound injury especially"]) + let v = native_list_append(v, ["nb-pt", "noun", "nb-pt", "", "", "", "a very common"]) + let v = native_list_append(v, ["nswt-nṯrw", "noun", "nswt-nṯrw", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["šns", "noun", "šnsw", "", "", "", "a type of"]) + let v = native_list_append(v, ["ḥr-bḥdtj", "noun", "ḥr-bḥdtj", "", "", "", "the god Horus-Behdeti"]) + let v = native_list_append(v, ["wꜣḥyt", "noun", "wꜣḥywt", "", "", "", "yield of the"]) + let v = native_list_append(v, ["jmꜣḫw-ḫr-nṯr-ꜥꜣ", "noun", "jmꜣḫww-ḫr-nṯr-ꜥꜣ", "", "", "", "epithet attached to"]) + let v = native_list_append(v, ["pzn", "noun", "pznw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["wꜣjwrjy", "noun", "wꜣjwrjy", "", "", "", "Troy Ilium"]) + let v = native_list_append(v, ["nḏt", "noun", "nḏwt", "", "", "", "subject servant especially"]) + let v = native_list_append(v, ["šnft", "noun", "šnfwt", "", "", "", "fish scale"]) + let v = native_list_append(v, ["mṯwn", "noun", "mṯwnw", "", "", "", "arena for bullfighting"]) + let v = native_list_append(v, ["sḫn", "noun", "sḫnw", "", "", "", "resting place for"]) + let v = native_list_append(v, ["msḫn", "noun", "msḫnw", "", "", "", "abode or resting-place"]) + let v = native_list_append(v, ["mꜣqt", "noun", "mꜣqwt", "", "", "", "ladder"]) + let v = native_list_append(v, ["mẖnt", "noun", "mẖnwt", "", "", "", "ferryboat especially in"]) + let v = native_list_append(v, ["nt-ḥsb", "noun", "nt-ḥsb", "", "", "", "accounting bookkeeping"]) + let v = native_list_append(v, ["mẖꜥqt", "noun", "mẖꜥqwt", "", "", "", "razor"]) + let v = native_list_append(v, ["nbs", "noun", "nbsw", "", "", "", "Christ’s thorn jujube"]) + let v = native_list_append(v, ["mnhz", "noun", "mnhzw", "", "", "", "guardian of the"]) + let v = native_list_append(v, ["msjꜣt", "noun", "msjꜣwt", "", "", "", "recognition"]) + let v = native_list_append(v, ["msꜣḏt", "noun", "msꜣḏwt", "", "", "", "nostril"]) + let v = native_list_append(v, ["msqt", "noun", "msqt", "", "", "", "a mythological region"]) + let v = native_list_append(v, ["mḥsḥs", "noun", "mḥsḥsw", "", "", "", "a swear word"]) + let v = native_list_append(v, ["mzwr", "noun", "mzwrw", "", "", "", "place to drink"]) + let v = native_list_append(v, ["jꜣt wꜥbt", "noun", "jꜣwt wꜥbwt", "", "", "", "any one of"]) + let v = native_list_append(v, ["šbw", "noun", "šbww", "", "", "", "food nourishment"]) + let v = native_list_append(v, ["ḥbnnwt", "noun", "ḥbnnwwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["wꜥḥ", "noun", "wꜥḥw", "", "", "", "chufa"]) + let v = native_list_append(v, ["šfyt", "noun", "šfyt", "", "", "", "respect"]) + let v = native_list_append(v, ["nmtt", "noun", "nmtt", "", "", "", "stride march walking"]) + let v = native_list_append(v, ["ḫrt", "noun", "ḫrt", "", "", "", "matters happenings affairs"]) + let v = native_list_append(v, ["mnꜥt", "noun", "mnꜥwt", "", "", "", "wet nurse"]) + let v = native_list_append(v, ["ḫbs", "noun", "ḫbsw", "", "", "", "ploughland"]) + let v = native_list_append(v, ["ꜥrf", "noun", "ꜥrfw", "", "", "", "bag sachet"]) + let v = native_list_append(v, ["mḏt", "noun", "mḏwt", "", "", "", "ointment or oil"]) + let v = native_list_append(v, ["wꜣḏw", "noun", "wꜣḏw", "", "", "", "a green mineral"]) + let v = native_list_append(v, ["ḥnkt", "noun", "ḥnkt", "", "", "", "offerings"]) + let v = native_list_append(v, ["nḫꜣḫꜣ", "noun", "nḫꜣḫꜣw", "", "", "", "flail as part"]) + let v = native_list_append(v, ["nḫn", "noun", "nḫnw", "", "", "", "shrine"]) + let v = native_list_append(v, ["nḫnt", "noun", "nḫnt", "", "", "", "youth childhood"]) + let v = native_list_append(v, ["nḫnw", "noun", "nḫnw", "", "", "", "childhood"]) + let v = native_list_append(v, ["wsrt", "noun", "wsrt", "", "", "", "the goddess Wosret"]) + let v = native_list_append(v, ["ky-ḏd", "noun", "ky-ḏd", "", "", "", "stands at the"]) + let v = native_list_append(v, ["ꜥbw", "noun", "ꜥbww", "", "", "", "cleanness purity"]) + let v = native_list_append(v, ["ꜥgt", "noun", "ꜥgt", "", "", "", "roasted grain"]) + let v = native_list_append(v, ["ḫnfw", "noun", "ḫnfww", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jrt-rꜥ", "noun", "jrt-rꜥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["t-rtḥ", "noun", "t-rtḥ", "", "", "", "a kind of"]) + let v = native_list_append(v, ["pr-ḏt", "noun", "prw-ḏt", "", "", "", "funerary estate foundation"]) + let v = native_list_append(v, ["mzwt", "noun", "mzwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ṯpḥt", "noun", "ṯpḥwt", "", "", "", "snake burrow"]) + let v = native_list_append(v, ["jꜣtt", "noun", "jꜣtwt", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ḥḏw", "noun", "ḥḏw", "", "", "", "any Allium species"]) + let v = native_list_append(v, ["kꜣr", "noun", "kꜣrw", "", "", "", "chapel shrine"]) + let v = native_list_append(v, ["ṯrp", "noun", "ṯrpw", "", "", "", "greater white-fronted goose"]) + let v = native_list_append(v, ["sfṯ", "noun", "sfṯ", "", "", "", "one of the"]) + let v = native_list_append(v, ["twꜣwt", "noun", "twꜣwt", "", "", "", "one of the"]) + let v = native_list_append(v, ["nẖnm", "noun", "nẖnm", "", "", "", "one of the"]) + let v = native_list_append(v, ["sṯ-ḥꜣb", "noun", "sṯ-ḥꜣb", "", "", "", "one of the"]) + let v = native_list_append(v, ["r-sṯꜣw", "noun", "r-sṯꜣw", "", "", "", "the necropolis of"]) + let v = native_list_append(v, ["nḫbt", "noun", "nḫbt", "", "", "", "the goddess Nekhbet"]) + let v = native_list_append(v, ["wꜣḏt", "noun", "wꜣḏt", "", "", "", "the goddess Wadjet"]) + let v = native_list_append(v, ["mnjt", "noun", "mnjwt", "", "", "", "a heavy beaded"]) + let v = native_list_append(v, ["nḥrw", "noun", "nḥrww", "", "", "", "a kind of"]) + let v = native_list_append(v, ["wnḫwj", "noun", "wnḫwj", "", "", "", "two strips of"]) + let v = native_list_append(v, ["mr.n-rꜥ", "noun", "mr.n-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["nmtj-m-zꜣ.f", "noun", "nmtj-m-zꜣ.f", "", "", "", "a male given"]) + let v = native_list_append(v, ["zḥ-nṯr", "noun", "zḥ-nṯr", "", "", "", "the mythological booth"]) + let v = native_list_append(v, ["ḫntj-zḥ-nṯr", "noun", "ḫntj-zḥ-nṯr", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ẖrj-tp-nswt", "noun", "ẖrjw-tp-nswt", "", "", "", "an Old Kingdom"]) + let v = native_list_append(v, ["nṯr-nfr", "noun", "nṯr-nfr", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["smdt", "noun", "smdt", "", "", "", "the half-month festival"]) + let v = native_list_append(v, ["dmḏ", "noun", "dmḏw", "", "", "", "union of several"]) + let v = native_list_append(v, ["ḫnmw", "noun", "ḫnmw", "", "", "", "smell aroma fragrance"]) + let v = native_list_append(v, ["ḫnmt", "noun", "ḫnmwt", "", "", "", "female nurse or"]) + let v = native_list_append(v, ["jrj-pḏt", "noun", "jrjw-pḏt", "", "", "", "bowman"]) + let v = native_list_append(v, ["jrj-nfr-ḥꜣt", "noun", "jrjw-nfr-ḥꜣt", "", "", "", "a court title"]) + let v = native_list_append(v, ["ḥꜣb-sd", "noun", "ḥꜣbw-sd", "", "", "", "the Sed festival"]) + let v = native_list_append(v, ["bḫnt", "noun", "bḫnwt", "", "", "", "pylon monumental gateway"]) + let v = native_list_append(v, ["qrsw", "noun", "qrsww", "", "", "", "coffin sarcophagus"]) + let v = native_list_append(v, ["ḫntš", "noun", "ḫntš", "", "", "", "joy"]) + let v = native_list_append(v, ["nḫwt", "noun", "nḫwt", "", "", "", "complaint"]) + let v = native_list_append(v, ["mꜣꜥw", "noun", "mꜣꜥw", "", "", "", "wind blowing in"]) + let v = native_list_append(v, ["nḏyt", "noun", "nḏyt", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["wfꜣ", "noun", "wfꜣw", "", "", "", "lung"]) + let v = native_list_append(v, ["nwdw", "noun", "nwdww", "", "", "", "inaccuracy deviation of"]) + let v = native_list_append(v, ["srf", "noun", "srfw", "", "", "", "warmth heat"]) + let v = native_list_append(v, ["fdq", "noun", "fdqw", "", "", "", "piece slice portion"]) + let v = native_list_append(v, ["snmyt", "noun", "snmywt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["dhnt", "noun", "dhnwt", "", "", "", "forehead"]) + let v = native_list_append(v, ["thw", "noun", "thww", "", "", "", "transgressor"]) + let v = native_list_append(v, ["ḥzp", "noun", "ḥzpw", "", "", "", "garden"]) + let v = native_list_append(v, ["ḏdꜣ", "noun", "ḏdꜣw", "", "", "", "fat"]) + let v = native_list_append(v, ["rtḥ", "noun", "rtḥw", "", "", "", "baker"]) + let v = native_list_append(v, ["rtḥtj", "noun", "rtḥtjw", "", "", "", "baker"]) + let v = native_list_append(v, ["jmn-ms", "noun", "jmn-ms", "", "", "", "a male given"]) + let v = native_list_append(v, ["zfṯyw", "noun", "z:f:T-i-i-w-T30-A40-Z3", "", "", "", "a group of"]) + let v = native_list_append(v, ["ḫnr", "noun", "ḫnrw", "", "", "", "prisoner restrained enemy"]) + let v = native_list_append(v, ["njk", "noun", "njkw", "", "", "", "a supernatural evil"]) + let v = native_list_append(v, ["jwnt", "noun", "jwnwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ḫnm", "noun", "ḫnmw", "", "", "", "friend"]) + let v = native_list_append(v, ["ẖrwj", "noun", "ẖrwj", "", "", "", "testicles"]) + let v = native_list_append(v, ["znb", "noun", "znbw", "", "", "", "battlement or parapet"]) + let v = native_list_append(v, ["bjꜣyt", "noun", "bjꜣywt", "", "", "", "miracle marvel"]) + let v = native_list_append(v, ["mnḥ", "noun", "mnḥ", "", "", "", "beeswax"]) + let v = native_list_append(v, ["ḫfꜣꜣt", "noun", "ḫfꜣꜣwt", "", "", "", "bank waterside"]) + let v = native_list_append(v, ["ḫmꜥt", "noun", "ḫmꜥwt", "", "", "", "butt grip"]) + let v = native_list_append(v, ["zp tpj", "noun", "zp tpj", "", "", "", "the beginning of"]) + let v = native_list_append(v, ["npnpt", "noun", "npnpwt", "", "", "", "smooth selvage or"]) + let v = native_list_append(v, ["bntwt", "noun", "bntwt", "", "", "", "deep-bosomedness big-breastedness of"]) + let v = native_list_append(v, ["ꜥt nt ḫt", "noun", "ꜥwt nwt ḫt", "", "", "", "orchard arbor"]) + let v = native_list_append(v, ["bꜣḥ", "noun", "bꜣḥw", "", "", "", "penis glans"]) + let v = native_list_append(v, ["štjw", "noun", "štjww", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snṯ", "noun", "snṯw", "", "", "", "foundation of a"]) + let v = native_list_append(v, ["kf", "noun", "kf", "", "", "", "obsidian"]) + let v = native_list_append(v, ["psš", "noun", "psšw", "", "", "", "ritual instrument for"]) + let v = native_list_append(v, ["psš-kꜣf", "noun", "psš-kꜣf", "", "", "", "Peseshkef a ritual"]) + let v = native_list_append(v, ["npꜣw", "noun", "npꜣww", "", "", "", "umbilical cord"]) + let v = native_list_append(v, ["mḥn", "noun", "mḥn", "", "", "", "the Coiled One"]) + let v = native_list_append(v, ["wr-ḥkꜣw", "noun", "wrw-ḥkꜣw", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["msḫtjw", "noun", "msḫtjww", "", "", "", "adze used as"]) + let v = native_list_append(v, ["nwꜣ", "noun", "nwꜣw", "", "", "", "‘adze of Wepwawet’"]) + let v = native_list_append(v, ["jrtjw", "noun", "jrtjw", "", "", "", "blue a blue"]) + let v = native_list_append(v, ["dng", "noun", "dngw", "", "", "", "dwarf pygmy"]) + let v = native_list_append(v, ["jnswj", "noun", "jnswj", "", "", "", "testicles"]) + let v = native_list_append(v, ["bntj", "noun", "bntj", "", "", "", "pair of nipples"]) + let v = native_list_append(v, ["jdt", "noun", "jdwt", "", "", "", "womb uterus"]) + let v = native_list_append(v, ["ṯꜣm", "noun", "ṯꜣmw", "", "", "", "bandage"]) + let v = native_list_append(v, ["ꜥmr", "noun", "ꜥmrw", "", "", "", "temple bakery"]) + let v = native_list_append(v, ["jwjw", "noun", "jwjww", "", "", "", "dog"]) + let v = native_list_append(v, ["mnḏr", "noun", "mnḏrw", "", "", "", "stomach"]) + let v = native_list_append(v, ["mnḏm", "noun", "mnḏmw", "", "", "", "basket"]) + let v = native_list_append(v, ["ꜥꜣnbpꜣjr", "noun", "ꜥꜣnbpꜣjrw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜥꜣb", "noun", "ꜥꜣbw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["wḫdt", "noun", "wḫdt", "", "", "", "pain"]) + let v = native_list_append(v, ["šntt", "noun", "šntwt", "", "", "", "enclosure?"]) + let v = native_list_append(v, ["wbnt", "noun", "wbnt", "", "", "", "the east land"]) + let v = native_list_append(v, ["dbnt", "noun", "dbnwt", "", "", "", "a sidelock of"]) + let v = native_list_append(v, ["zšy", "noun", "zšy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ššy", "noun", "ššy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nkw", "noun", "nkww", "", "", "", "fornicator adulterer"]) + let v = native_list_append(v, ["nwdt", "noun", "nwdwt", "", "", "", "swaddling clothes of"]) + let v = native_list_append(v, ["ḥwꜣꜣt", "noun", "ḥwꜣꜣt", "", "", "", "putrefaction"]) + let v = native_list_append(v, ["ꜣṯt", "noun", "ꜣṯwt", "", "", "", "bed"]) + let v = native_list_append(v, ["ꜣṯyt", "noun", "ꜣṯywt", "", "", "", "child caretaker nanny"]) + let v = native_list_append(v, ["ꜣṯwt", "noun", "ꜣṯwwt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nḏꜣw", "noun", "nḏꜣw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nḏꜣ", "noun", "nḏꜣ", "", "", "", "thirst"]) + let v = native_list_append(v, ["nꜣḏꜣ", "noun", "nꜣḏꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥmꜥꜣt", "noun", "ꜥmꜥꜣwt", "", "", "", "throwing stick"]) + let v = native_list_append(v, ["ꜥbḫn", "noun", "ꜥbḫnw", "", "", "", "frog"]) + let v = native_list_append(v, ["qrr", "noun", "qrrw", "", "", "", "storm"]) + let v = native_list_append(v, ["ꜥbnḫ", "noun", "ꜥbnḫ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḥꜥt", "noun", "ḥꜥwt", "", "", "", "wick"]) + let v = native_list_append(v, ["bbwt", "noun", "bbwwt", "", "", "", "wig shoulder length"]) + let v = native_list_append(v, ["fḫt", "noun", "fḫwt", "", "", "", "wig ?"]) + let v = native_list_append(v, ["sbꜣtj", "noun", "sbꜣtjw", "", "", "", "pupil"]) + let v = native_list_append(v, ["ẖkrw", "noun", "ẖkrw", "", "", "", "panoply insignia"]) + let v = native_list_append(v, ["wzf", "noun", "wzf", "", "", "", "neglectfulness dereliction"]) + let v = native_list_append(v, ["jnpwt", "noun", "jnpwt", "", "", "", "the goddess Anput"]) + let v = native_list_append(v, ["sṯjt", "noun", "sṯjt", "", "", "", "Satis a war"]) + let v = native_list_append(v, ["krtj", "noun", "krtj", "", "", "", "the two horns"]) + let v = native_list_append(v, ["jmwr", "noun", "jmwr", "", "", "", "Amurru the land"]) + let v = native_list_append(v, ["qdšt-ꜥꜣsṯrt-ꜥnṯjt", "noun", "qdšt-ꜥꜣsṯrt-ꜥnṯjt", "", "", "", "epithet of Qetesh"]) + let v = native_list_append(v, ["ḥbw", "noun", "ḥbww", "", "", "", "archery target"]) + let v = native_list_append(v, ["šzpw", "noun", "šzpw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḥr-m-ꜣḫt-ḫprj-rꜥ-tm", "noun", "ḥr-m-ꜣḫt-ḫprj-rꜥ-tm", "", "", "", "the epithet of"]) + let v = native_list_append(v, ["rnp", "noun", "rnpw", "", "", "", "young man youth"]) + let v = native_list_append(v, ["sḏm ꜥš", "noun", "sḏmw ꜥš", "", "", "", "servant + genitive"]) + let v = native_list_append(v, ["kꜣry", "noun", "kꜣryw", "", "", "", "gardener"]) + let v = native_list_append(v, ["njnj", "noun", "njnj", "", "", "", "greeting"]) + let v = native_list_append(v, ["mꜣnw", "noun", "mꜣnw", "", "", "", "the Western mountain"]) + let v = native_list_append(v, ["ḏnjt", "noun", "ḏnjt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qꜣs", "noun", "qꜣsw", "", "", "", "rope ladder"]) + let v = native_list_append(v, ["ḥmy", "noun", "ḥmyw", "", "", "", "helmsman"]) + let v = native_list_append(v, ["hmy", "noun", "hmy", "", "", "", "shouting and cheering"]) + let v = native_list_append(v, ["ḥr-m-ꜣḫt", "noun", "ḥr-m-ꜣḫt", "", "", "", "Harmachis or Horemakhet"]) + let v = native_list_append(v, ["jgrt", "noun", "jgrt", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["ḫsbd", "noun", "ḫsbd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["btꜣ", "noun", "btꜣw", "", "", "", "immoral act wrongdoing"]) + let v = native_list_append(v, ["nšnj", "noun", "nšnj", "", "", "", "thunderstorm rage disaster"]) + let v = native_list_append(v, ["ṯnwt", "noun", "ṯnwt", "", "", "", "census count"]) + let v = native_list_append(v, ["msn", "noun", "msn", "", "", "", "a toponym of"]) + let v = native_list_append(v, ["bḥdt", "noun", "bḥdt", "", "", "", "the city of"]) + let v = native_list_append(v, ["sḏrt", "noun", "sḏrt", "", "", "", "confinement to bed"]) + let v = native_list_append(v, ["dbḥt-ḥtp", "noun", "dbḥt-ḥtp", "", "", "", "funerary meal offered"]) + let v = native_list_append(v, ["ḫꜣyt", "noun", "ḫꜣyt", "", "", "", "disease suffering"]) + let v = native_list_append(v, ["tp-rnpt", "noun", "tp-rnpt", "", "", "", "‘New Year’s Day’"]) + let v = native_list_append(v, ["šr", "noun", "šrw", "", "", "", "boy child"]) + let v = native_list_append(v, ["nt-ḥtrj", "noun", "nwt-ḥtrj", "", "", "", "warrior who fights"]) + let v = native_list_append(v, ["ḥzy", "noun", "ḥzyw", "", "", "", "favored one esteemed"]) + let v = native_list_append(v, ["tꜣ-mḥw", "noun", "tꜣ-mḥw", "", "", "", "Lower Egypt"]) + let v = native_list_append(v, ["psštj", "noun", "psštjw", "", "", "", "part division"]) + let v = native_list_append(v, ["ẖrt-hrw", "noun", "ẖrt-hrw", "", "", "", "daily needs"]) + let v = native_list_append(v, ["qꜣbt", "noun", "qꜣbt", "", "", "", "chest breast"]) + let v = native_list_append(v, ["ꜥbrꜥstjꜥks", "noun", "ꜥbrꜥstjꜥks", "", "", "", "Abrasax"]) + let v = native_list_append(v, ["sšd", "noun", "sšdw", "", "", "", "lightning bolt thunderbolt"]) + let v = native_list_append(v, ["wꜣyšꜣtjsꜣpy", "noun", "wꜣyšꜣtjsꜣpy", "", "", "", "a male given"]) + let v = native_list_append(v, ["jꜣḫmjnš", "noun", "jꜣḫmjnš", "", "", "", "Achaemenid"]) + let v = native_list_append(v, ["zwn", "noun", "zwnw", "", "", "", "arrow"]) + let v = native_list_append(v, ["sdꜣ", "noun", "sdꜣw", "", "", "", "Eurasian bittern Botaurus"]) + let v = native_list_append(v, ["nšmt", "noun", "nšmt", "", "", "", "neshmet-barque the sacred"]) + let v = native_list_append(v, ["ꜥšm", "noun", "ꜥšm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḥmt-nṯr", "noun", "ḥmwt-nṯr", "", "", "", "priestess"]) + let v = native_list_append(v, ["ḏdft", "noun", "ḏdfwt", "", "", "", "any crawling legless"]) + let v = native_list_append(v, ["ḏnd", "noun", "ḏndw", "", "", "", "rage wrath"]) + let v = native_list_append(v, ["qꜣꜣ", "noun", "qꜣꜣw", "", "", "", "hill mound raised"]) + let v = native_list_append(v, ["ꜣpḥ", "noun", "ꜣpḥ", "", "", "", "A kind of"]) + let v = native_list_append(v, ["jpḥ", "noun", "jpḥw", "", "", "", "pig as an"]) + let v = native_list_append(v, ["ꜣpdwt", "noun", "ꜣpdwt", "", "", "", "birds fowl"]) + let v = native_list_append(v, ["ꜣf", "noun", "ꜣfw", "", "", "", "Greco-Roman Period form"]) + let v = native_list_append(v, ["ꜣfjw", "noun", "ꜣfjw", "", "", "", "yield or catch"]) + let v = native_list_append(v, ["ꜣmw", "noun", "ꜣmw", "", "", "", "burning flame"]) + let v = native_list_append(v, ["ꜣmwt", "noun", "ꜣmwt", "", "", "", "burning"]) + let v = native_list_append(v, ["jw-n-ꜣmw-m-sḫt-sjsj", "noun", "jw-n-ꜣmw-m-sḫt-sjsj", "", "", "", "a mythical region"]) + let v = native_list_append(v, ["sḫw", "noun", "sḫww", "", "", "", "breadth width"]) + let v = native_list_append(v, ["ḏḥꜥ", "noun", "ḏḥꜥw", "", "", "", "leather lacing"]) + let v = native_list_append(v, ["ꜣḫyt", "noun", "ꜣḫywt", "", "", "", "A room of"]) + let v = native_list_append(v, ["nb-ꜥnḫ", "noun", "nbw-ꜥnḫ", "", "", "", "dead person who"]) + let v = native_list_append(v, ["šnꜥw", "noun", "šnꜥww", "", "", "", "forced labor camp"]) + let v = native_list_append(v, ["sjn", "noun", "sjn", "", "", "", "clay"]) + let v = native_list_append(v, ["nfrwt", "noun", "nfr-r:*t-E1-Z3", "", "", "", "cows cattle"]) + let v = native_list_append(v, ["šdw", "noun", "šdww", "", "", "", "leather waterskin"]) + let v = native_list_append(v, ["hꜣkr", "noun", "hꜣkr", "", "", "", "the Haker-festival a"]) + let v = native_list_append(v, ["ꜥḫḫw", "noun", "ꜥḫḫw", "", "", "", "Middle Kingdom form"]) + let v = native_list_append(v, ["wꜥbt", "noun", "wꜥbwt", "", "", "", "cleansing"]) + let v = native_list_append(v, ["štw", "noun", "štww", "", "", "", "turtle tortoise"]) + let v = native_list_append(v, ["znbt", "noun", "znbwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["šꜣwꜣbtj", "noun", "šꜣwꜣbtjw", "", "", "", "ushabti"]) + let v = native_list_append(v, ["jnr ḥḏ nfr n rwḏt", "noun", "jnr ḥḏ nfr n rwḏt", "", "", "", "sandstone"]) + let v = native_list_append(v, ["jnr ḥḏ mnḫ n rwḏt", "noun", "jnr ḥḏ mnḫ n rwḏt", "", "", "", "sandstone"]) + let v = native_list_append(v, ["rwḏt", "noun", "rwḏwt", "", "", "", "hard stone in"]) + let v = native_list_append(v, ["mnḥtj", "noun", "mnḥtj", "", "", "", "gift tribute"]) + let v = native_list_append(v, ["tmꜣ", "noun", "tmꜣw", "", "", "", "mat in general"]) + let v = native_list_append(v, ["ṯḥnt", "noun", "ṯḥnt", "", "", "", "faience"]) + let v = native_list_append(v, ["zꜣ-nht", "noun", "zꜣ-nht", "", "", "", "a male given"]) + let v = native_list_append(v, ["nms", "noun", "nmsw", "", "", "", "linen cloth used"]) + let v = native_list_append(v, ["ẖnmw-ḥtp", "noun", "ẖnmw-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["jqdw", "noun", "jqdww", "", "", "", "builder"]) + let v = native_list_append(v, ["jdḥw", "noun", "jdḥw", "", "", "", "marshlands of the"]) + let v = native_list_append(v, ["nmsw", "noun", "nmsw", "", "", "", "vaginal discharge"]) + let v = native_list_append(v, ["ẖpꜣw", "noun", "ẖpꜣw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ntb", "noun", "ntb", "", "", "", "to swelter to"]) + let v = native_list_append(v, ["mnṯw-ḥtp", "noun", "mnṯw-ḥtp", "", "", "", "a male given"]) + let v = native_list_append(v, ["bꜣs", "noun", "bꜣsw", "", "", "", "jar"]) + let v = native_list_append(v, ["psḏntjw", "noun", "psḏntjw", "", "", "", "new-moon festival"]) + let v = native_list_append(v, ["ḥts", "noun", "ḥtsw", "", "", "", "hetes-sceptre"]) + let v = native_list_append(v, ["ḏbꜥwt", "noun", "ḏbꜥwwt", "", "", "", "signet signet ring"]) + let v = native_list_append(v, ["ḥjpt", "noun", "ḥjpwt", "", "", "", "course"]) + let v = native_list_append(v, ["jmꜣt", "noun", "jmꜣwt", "", "", "", "kindness friendliness graciousness"]) + let v = native_list_append(v, ["špꜣ", "noun", "špꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḏꜣḏꜣw", "noun", "ḏꜣḏꜣw", "", "", "", "pot used for"]) + let v = native_list_append(v, ["ꜥẖmw nw ꜣḫt", "noun", "a:X-m-N33C*Z2ss:nw*Z1-Axt-t:pr", "", "", "", "Some sort of"]) + let v = native_list_append(v, ["tꜣ-ꜣḫtjw", "noun", "tꜣ-ꜣḫtjw", "", "", "", "a distant land"]) + let v = native_list_append(v, ["ꜣz", "noun", "ꜣzw", "", "", "", "bald-headed vulture"]) + let v = native_list_append(v, ["ꜣsbyw", "noun", "ꜣsbyw", "", "", "", "flames"]) + let v = native_list_append(v, ["t ꜣšr", "noun", "tw ꜣšrw", "", "", "", "toast toasted bread"]) + let v = native_list_append(v, ["ꜣqw", "noun", "ꜣqw", "", "", "", "ruin devastation destruction"]) + let v = native_list_append(v, ["jqḥw", "noun", "jqḥww", "", "", "", "battle axe"]) + let v = native_list_append(v, ["ꜣqḥw", "noun", "ꜣqḥw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sštꜣ", "noun", "sštꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣtjwt", "noun", "ꜣtjwwt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣtyt", "noun", "ꜣtywt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣṯpw", "noun", "ꜣṯpw", "", "", "", "cargo of a"]) + let v = native_list_append(v, ["qꜣr", "noun", "qꜣrw", "", "", "", "bag bundle"]) + let v = native_list_append(v, ["ꜣtpwt", "noun", "ꜣtpwwt", "", "", "", "cargo of a"]) + let v = native_list_append(v, ["wḏb", "noun", "wḏbw", "", "", "", "shore sandbank"]) + let v = native_list_append(v, ["ꜣdw", "noun", "ꜣdww", "", "", "", "crocodile"]) + let v = native_list_append(v, ["sšp", "noun", "sšpw", "", "", "", "light illumination"]) + let v = native_list_append(v, ["zḫn", "noun", "zḫnw", "", "", "", "chance occurrence"]) + let v = native_list_append(v, ["sḏb", "noun", "sḏb", "", "", "", "harm evil done"]) + let v = native_list_append(v, ["sšmw", "noun", "sšmww", "", "", "", "cultic image of"]) + let v = native_list_append(v, ["ḥꜣb-wr", "noun", "ḥꜣb-wr", "", "", "", "the Great Festival"]) + let v = native_list_append(v, ["bw-nb", "noun", "bw-nb", "", "", "", "everyone"]) + let v = native_list_append(v, ["hn", "noun", "hnw", "", "", "", "chest box"]) + let v = native_list_append(v, ["wrdw-jb", "noun", "wrdw-jb", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["nsrt", "noun", "nsrwt", "", "", "", "fire flame"]) + let v = native_list_append(v, ["šrt", "noun", "šrwt", "", "", "", "nostril"]) + let v = native_list_append(v, ["nḏt-ḥr", "noun", "nḏwt-ḥr", "", "", "", "offering gift for"]) + let v = native_list_append(v, ["šmt", "noun", "šmwt", "", "", "", "gait"]) + let v = native_list_append(v, ["wꜣwꜣt", "noun", "wꜣwꜣt", "", "", "", "Lower Nubia"]) + let v = native_list_append(v, ["jnbt", "noun", "jnbwt", "", "", "", "fence"]) + let v = native_list_append(v, ["jbṯt", "noun", "jbṯwt", "", "", "", "bird trap consisting"]) + let v = native_list_append(v, ["kꜣw", "noun", "kꜣw", "", "", "", "unripe sycamore figs"]) + let v = native_list_append(v, ["nqꜥwt", "noun", "nqꜥwt", "", "", "", "ripe sycamore figs"]) + let v = native_list_append(v, ["kfꜣ", "noun", "kfꜣw", "", "", "", "hindquarters butt"]) + let v = native_list_append(v, ["kꜣpt", "noun", "kꜣpt", "", "", "", "incense"]) + let v = native_list_append(v, ["kfꜣ-jb", "noun", "kfꜣ-jb", "", "", "", "confidant trusted person"]) + let v = native_list_append(v, ["bꜥḥw", "noun", "bꜥḥww", "", "", "", "inundation flood"]) + let v = native_list_append(v, ["šbb", "noun", "šbbw", "", "", "", "windpipe oesophagus gullet"]) + let v = native_list_append(v, ["zššt", "noun", "zššwt", "", "", "", "sistrum"]) + let v = native_list_append(v, ["smt", "noun", "smwt", "", "", "", "hammock?"]) + let v = native_list_append(v, ["wꜣr", "noun", "wꜣrw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["mgꜣ", "noun", "mgꜣw", "", "", "", "skirmisher"]) + let v = native_list_append(v, ["gwꜣwꜣ", "noun", "gwꜣwꜣ", "", "", "", "stranglehold"]) + let v = native_list_append(v, ["fꜣt", "noun", "fꜣwt", "", "", "", "making of an"]) + let v = native_list_append(v, ["sꜣg", "noun", "sꜣg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["šdšd", "noun", "šdšdw", "", "", "", "a bulbous curling"]) + let v = native_list_append(v, ["bꜣyt", "noun", "bꜣywt", "", "", "", "hole pit"]) + let v = native_list_append(v, ["bbt", "noun", "bbwt", "", "", "", "throat region of"]) + let v = native_list_append(v, ["ḏd-pꜣ-nṯr-jw.f-ꜥnḫ", "noun", "ḏd-pꜣ-nṯr-jw.f-ꜥnḫ", "", "", "", "a putative male"]) + let v = native_list_append(v, ["wsr-mꜣꜥt-rꜥ", "noun", "wsr-mꜣꜥt-rꜥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["šꜣrm", "noun", "šꜣrm", "", "", "", "peace"]) + let v = native_list_append(v, ["jbn", "noun", "jbnw", "", "", "", "knife"]) + let v = native_list_append(v, ["ꜣgbj", "noun", "ꜣgbj", "", "", "", "flood inundation"]) + let v = native_list_append(v, ["ꜣkwt", "noun", "ꜣkwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jmnḥ", "noun", "jmnḥw", "", "", "", "butcher"]) + let v = native_list_append(v, ["wst", "noun", "wst", "", "", "", "sawdust"]) + let v = native_list_append(v, ["jft", "noun", "jft", "", "", "", "bone marrow of"]) + let v = native_list_append(v, ["swḫꜣ", "noun", "swḫꜣw", "", "", "", "misspeaking or ineffectiveness"]) + let v = native_list_append(v, ["jmst", "noun", "jmst", "", "", "", "dill"]) + let v = native_list_append(v, ["jrwt", "noun", "i-ir:t-w", "", "", "", "women"]) + let v = native_list_append(v, ["sḥmyt", "noun", "sḥmyt", "", "", "", "flood"]) + let v = native_list_append(v, ["wrm", "noun", "wrmw", "", "", "", "flood high point"]) + let v = native_list_append(v, ["wrmt", "noun", "wrmwt", "", "", "", "canopy awning coverings"]) + let v = native_list_append(v, ["stš", "noun", "stš", "", "", "", "Old Kingdom form"]) + let v = native_list_append(v, ["jꜣft", "noun", "jꜣfwt", "", "", "", "claw talon"]) + let v = native_list_append(v, ["rmrmt", "noun", "rmrmwt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ḫpd", "noun", "ḫpdw", "", "", "", "buttocks butt rump"]) + let v = native_list_append(v, ["mṯꜣ", "noun", "mṯꜣw", "", "", "", "penis"]) + let v = native_list_append(v, ["pḏ šs", "noun", "pḏ šs", "", "", "", "the stretching the"]) + let v = native_list_append(v, ["bhꜣw", "noun", "bhꜣww", "", "", "", "person on the"]) + let v = native_list_append(v, ["rꜣ-ꜣw", "noun", "rꜣ-ꜣw", "", "", "", "Tura"]) + let v = native_list_append(v, ["jrkt", "noun", "jrkwt", "", "", "", "trunk"]) + let v = native_list_append(v, ["ḫpdwj", "noun", "ḫpdwj", "", "", "", "dual of ḫpd"]) + let v = native_list_append(v, ["ḥmt-nswt", "noun", "ḥmwt-nswt", "", "", "", "queen wife of"]) + let v = native_list_append(v, ["ḥmt-nswt-wrt", "noun", "ḥmwt-nswt-wrwt", "", "", "", "Great Royal Wife"]) + let v = native_list_append(v, ["jhb", "noun", "jhbw", "", "", "", "dance"]) + let v = native_list_append(v, ["wbḫt", "noun", "wbḫt", "", "", "", "brightness"]) + let v = native_list_append(v, ["ḥnzkt", "noun", "ḥnzkwt", "", "", "", "braided lock of"]) + let v = native_list_append(v, ["ꜥr", "noun", "ꜥrw", "", "", "", "rush reed"]) + let v = native_list_append(v, ["jꜣwtj", "noun", "jꜣwtjw", "", "", "", "officeholder dignitary"]) + let v = native_list_append(v, ["jmjw-jꜣwt.sn", "noun", "i-imi-m-Z3-w-iAt:t*N23-Z3-z:n:Z2-A40-Z3", "", "", "", "a group of"]) + let v = native_list_append(v, ["jꜣyt", "noun", "jꜣywt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜣbtjw", "noun", "iAb-t-tyw-Z3", "", "", "", "easterners"]) + let v = native_list_append(v, ["ḫpp", "noun", "ḫppw", "", "", "", "stranger"]) + let v = native_list_append(v, ["mḏꜣ", "noun", "mḏꜣw", "", "", "", "A unit of"]) + let v = native_list_append(v, ["ḥbbt", "noun", "ḥbbwt", "", "", "", "fresh river water"]) + let v = native_list_append(v, ["wꜥbw", "noun", "wꜥbww", "", "", "", "pure or sacred"]) + let v = native_list_append(v, ["jꜣṯw", "noun", "jꜣṯww", "", "", "", "place of execution"]) + let v = native_list_append(v, ["jꜣm", "noun", "jꜣm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sjp", "noun", "sjpw", "", "", "", "inspection check"]) + let v = native_list_append(v, ["znmwt", "noun", "znmwt", "", "", "", "Bigeh an island"]) + let v = native_list_append(v, ["nb-mꜣꜥt-rꜥ", "noun", "nb-mꜣꜥt-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ẖꜣk-jb", "noun", "ẖꜣkw-jb", "", "", "", "rebel malcontent"]) + let v = native_list_append(v, ["ḥꜣb-zkr", "noun", "ḥꜣb-zkr", "", "", "", "the Festival of"]) + let v = native_list_append(v, ["qꜣw", "noun", "qꜣww", "", "", "", "height distance above"]) + let v = native_list_append(v, ["jbs", "noun", "jbsw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["nnwt", "noun", "nnwt", "", "", "", "the goddess Naunet"]) + let v = native_list_append(v, ["ꜣꜥ", "noun", "ꜣꜥw", "", "", "", "interpreter dragoman"]) + let v = native_list_append(v, ["jtwnj-rꜥꜣ-yh", "noun", "jtwnj-rꜥꜣ-yh", "", "", "", "a male given"]) + let v = native_list_append(v, ["yhwꜣ", "noun", "yhwꜣ", "", "", "", "an unidentified place"]) + let v = native_list_append(v, ["ytwꜥw-bꜥr", "noun", "ytwꜥw-bꜥr", "", "", "", "a male given"]) + let v = native_list_append(v, ["ꜥꜣstjr", "noun", "ꜥꜣstjr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥꜣsjty", "noun", "ꜥꜣsjty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥsṯt", "noun", "ꜥsṯt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥsṯrdt", "noun", "ꜥsṯrdt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṯwpꜣjr", "noun", "ṯwpꜣjrw", "", "", "", "scribe"]) + let v = native_list_append(v, ["mn-pḥtj-rꜥ", "noun", "mn-pḥtj-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["jbšꜣ", "noun", "jbšꜣ", "", "", "", "a male given"]) + let v = native_list_append(v, ["jꜣb", "noun", "jꜣb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜣk", "noun", "jꜣkw", "", "", "", "old man particularly"]) + let v = native_list_append(v, ["jꜣkw", "noun", "jꜣkww", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jkw", "noun", "jkww", "", "", "", "stone quarry"]) + let v = native_list_append(v, ["jꜣkby", "noun", "jꜣkbyw", "", "", "", "mourner"]) + let v = native_list_append(v, ["jꜣd", "noun", "jꜣdw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜣdt", "noun", "jꜣdwt", "", "", "", "dew"]) + let v = native_list_append(v, ["jꜥ", "noun", "jꜥw", "", "", "", "tomb"]) + let v = native_list_append(v, ["wn mꜣꜥ", "noun", "wn mꜣꜥ", "", "", "", "reality true being"]) + let v = native_list_append(v, ["ḫww", "noun", "ḫww", "", "", "", "what is to"]) + let v = native_list_append(v, ["šww", "noun", "šww", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ḏꜣm", "noun", "ḏꜣmw", "", "", "", "male children or"]) + let v = native_list_append(v, ["zf", "noun", "zf", "", "", "", "gentleness mildness friendliness"]) + let v = native_list_append(v, ["tḫw", "noun", "tḫww", "", "", "", "drunkard"]) + let v = native_list_append(v, ["jdn", "noun", "jdnw", "", "", "", "ear"]) + let v = native_list_append(v, ["th-mtn", "noun", "th-mtn", "", "", "", "transgressor wrongdoer one"]) + let v = native_list_append(v, ["jkꜣnꜣ", "noun", "jkꜣnꜣw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ḫfꜣt", "noun", "ḫfꜣt", "", "", "", "food meal"]) + let v = native_list_append(v, ["bw nfr", "noun", "bw nfr", "", "", "", "good goodness fineness"]) + let v = native_list_append(v, ["bw ḏsr", "noun", "bw ḏsr", "", "", "", "sanctum sanctuary sacred"]) + let v = native_list_append(v, ["ḥntj", "noun", "ḥntj", "", "", "", "ends far reaches"]) + let v = native_list_append(v, ["ẖz", "noun", "ẖzw", "", "", "", "feeble man failing"]) + let v = native_list_append(v, ["mht", "noun", "mht", "", "", "", "forgetfulness negligence"]) + let v = native_list_append(v, ["pr.sn", "noun", "pr.sn", "", "", "", "home"]) + let v = native_list_append(v, ["pr ḥrj", "noun", "prw ḥrjw", "", "", "", "upper floor of"]) + let v = native_list_append(v, ["pr ẖrj", "noun", "pr ẖrj", "", "", "", "lower floor of"]) + let v = native_list_append(v, ["ḥr-m-pr.f", "noun", "ḥr-m-pr.f", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["pr nfr", "noun", "prw nfrw", "", "", "", "funerary workshop mortuary"]) + let v = native_list_append(v, ["pr n nḥḥ", "noun", "prw nw nḥḥ", "", "", "", "tomb"]) + let v = native_list_append(v, ["pr-ꜥnḫ", "noun", "prw-ꜥnḫ", "", "", "", "temple scriptorium"]) + let v = native_list_append(v, ["wḥꜣtjw", "noun", "Aa2:t-tyw-T14-A1*B1:Z2-N25", "", "", "", "oasis-dwellers"]) + let v = native_list_append(v, ["pr-mḏꜣt", "noun", "prw-mḏꜣt", "", "", "", "library archive"]) + let v = native_list_append(v, ["pr-nbw", "noun", "prw-nbw", "", "", "", "treasury"]) + let v = native_list_append(v, ["pr-bjtj", "noun", "pr-bjtj", "", "", "", "a kind of"]) + let v = native_list_append(v, ["smsw-pr", "noun", "smsww-pr", "", "", "", "an official title"]) + let v = native_list_append(v, ["pr-ꜥḥꜣw", "noun", "prw-ꜥḥꜣw", "", "", "", "armory arsenal"]) + let v = native_list_append(v, ["pr-šnꜥ", "noun", "prw-šnꜥ", "", "", "", "forced labor camp"]) + let v = native_list_append(v, ["jtnw n h", "noun", "jtnw n h", "", "", "", "a magical substance"]) + let v = native_list_append(v, ["pr-ḫnr", "noun", "prw-ḫnr", "", "", "", "harem"]) + let v = native_list_append(v, ["pr-ḫntj", "noun", "prw-ḫntj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pr-mꜣ", "noun", "prw-mꜣ", "", "", "", "villa country house"]) + let v = native_list_append(v, ["pr-ms", "noun", "prw-ms", "", "", "", "mammisi a subsidiary"]) + let v = native_list_append(v, ["zꜣ-pr", "noun", "zꜣw-pr", "", "", "", "watchman"]) + let v = native_list_append(v, ["pr-dwꜣt", "noun", "prw-dwꜣt", "", "", "", "room for performing"]) + let v = native_list_append(v, ["bhꜣ", "noun", "bhꜣw", "", "", "", "fan flabellum"]) + let v = native_list_append(v, ["pr-dšr", "noun", "pr-dšr", "", "", "", "treasury of Lower"]) + let v = native_list_append(v, ["pryt", "noun", "pryt", "", "", "", "collection of houses"]) + let v = native_list_append(v, ["ꜥt-jwf", "noun", "ꜥwt-jwf", "", "", "", "slaughterhouse abattoir meat"]) + let v = native_list_append(v, ["nṯrwj", "noun", "nṯrwj", "", "", "", "Horus and Set"]) + let v = native_list_append(v, ["mḏd", "noun", "mḏdw", "", "", "", "dues or obligations"]) + let v = native_list_append(v, ["prt-ꜥꜣt", "noun", "prt-ꜥꜣt", "", "", "", "the Great Procession"]) + let v = native_list_append(v, ["prt-tpt", "noun", "prt-tpt", "", "", "", "the First Procession"]) + let v = native_list_append(v, ["prt-wp-wꜣwt", "noun", "prt-wp-wꜣwt", "", "", "", "synonym of prt-tpt"]) + let v = native_list_append(v, ["prt-mnw", "noun", "prt-mnw", "", "", "", "the Procession of"]) + let v = native_list_append(v, ["sḫm-n-jnpw", "noun", "sḫmw-nw-jnpw", "", "", "", "standard crowned with"]) + let v = native_list_append(v, ["sḫm-n-rꜥ", "noun", "sḫm-n-rꜥ", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["sḫm-n-sḫmw", "noun", "sḫm-n-sḫmw", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["sḫm-nṯrw", "noun", "sḫm-nṯrw", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["sḫm-pt", "noun", "sḫm-pt", "", "", "", "one of the"]) + let v = native_list_append(v, ["sḫm-tꜣwj", "noun", "sḫm-tꜣwj", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["sḫm-ꜥnḫ-jmn", "noun", "sḫm-ꜥnḫ-jmn", "", "", "", "epithet used as"]) + let v = native_list_append(v, ["bht", "noun", "bhwt", "", "", "", "fan flabellum made"]) + let v = native_list_append(v, ["ḥbs bht", "noun", "ḥbsw bht", "", "", "", "fan-bearer"]) + let v = native_list_append(v, ["ḥbswt", "noun", "ḥbswwt", "", "", "", "cloth piece of"]) + let v = native_list_append(v, ["ḥbs-ḫprw", "noun", "ḥbsw-ḫprw", "", "", "", "title of a"]) + let v = native_list_append(v, ["ḥbs-bꜣg", "noun", "ḥbs-bꜣg", "", "", "", "a gate in"]) + let v = native_list_append(v, ["ḥbs-nṯr", "noun", "ḥbsw-nṯr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["mdw n š", "noun", "mdw n š", "", "", "", "a kind of"]) + let v = native_list_append(v, ["mdw-ḥr", "noun", "mdw-ḥr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["mdw šps", "noun", "mdww špsw", "", "", "", "sacred staff revered"]) + let v = native_list_append(v, ["mdw šps n spꜣt", "noun", "mdww špsw nw spꜣt", "", "", "", "sacred standard bearing"]) + let v = native_list_append(v, ["mdw-rḫyt", "noun", "mdww-rḫyt", "", "", "", "a title ‘staff"]) + let v = native_list_append(v, ["mdw-kꜣ-ḥḏ", "noun", "mdww-kꜣ-ḥḏ", "", "", "", "a priestly title"]) + let v = native_list_append(v, ["mdw-ḥp", "noun", "mdww-ḥp", "", "", "", "a priestly title"]) + let v = native_list_append(v, ["bhn", "noun", "bhnw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["bḥ", "noun", "bḥ", "", "", "", "an agent for"]) + let v = native_list_append(v, ["bḥw", "noun", "bḥw", "", "", "", "corvee labor"]) + let v = native_list_append(v, ["bḥn", "noun", "bḥn", "", "", "", "dismemberment act"]) + let v = native_list_append(v, ["bḥnt", "noun", "bḥnwt", "", "", "", "knife"]) + let v = native_list_append(v, ["nb-sḫm", "noun", "nb-sḫm", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["nbt-sḫm", "noun", "nbt-sḫm", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["zẖꜣw-mdw-nṯr", "noun", "zẖꜣw-mdw-nṯr", "", "", "", "Egyptian hieroglyphic writing"]) + let v = native_list_append(v, ["nb-mdw-nṯr", "noun", "nb-mdw-nṯr", "", "", "", "epithet of the"]) + let v = native_list_append(v, ["nṯrj-ẖt", "noun", "nṯrj-ẖt", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["sḫm-ẖt", "noun", "sḫm-ẖt", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["ḫꜥ-bꜣ", "noun", "ḫꜥ-bꜣ", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["zꜣ-nḫt", "noun", "zꜣ-nḫt", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["nb-kꜣ", "noun", "nb-kꜣ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["nswt-ḥw", "noun", "nswt-ḥw", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḥwnj", "noun", "ḥwnj", "", "", "", "a throne name"]) + let v = native_list_append(v, ["sḫm-jr.f", "noun", "sḫm-jr.f", "", "", "", "potentate very powerful"]) + let v = native_list_append(v, ["qꜣ-ḥḏt", "noun", "qꜣ-ḥḏt", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["nb-mꜣꜥt", "noun", "nbw-mꜣꜥt", "", "", "", "honest person one"]) + let v = native_list_append(v, ["nb-mꜣꜥt-snfr-wj", "noun", "nb-mꜣꜥt-snfr-wj", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["rnpt-mḏd-ꜥ", "noun", "rnpwt-mḏd-ꜥ", "", "", "", "year of hardship"]) + let v = native_list_append(v, ["st-r-mḏd", "noun", "st-r-mḏd", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["mḏdt", "noun", "mḏdwt", "", "", "", "share portion of"]) + let v = native_list_append(v, ["mḏdw", "noun", "mḏdw", "", "", "", "a serekh name"]) + let v = native_list_append(v, ["mḏd-r-nbtj", "noun", "mḏd-r-nbtj", "", "", "", "a Two Ladies"]) + let v = native_list_append(v, ["ẖnmw-ḫw.f-wj", "noun", "ẖnmw-ḫw.f-wj", "", "", "", "a throne name"]) + let v = native_list_append(v, ["rꜥ-ḏd.f", "noun", "rꜥ-ḏd.f", "", "", "", "a throne name"]) + let v = native_list_append(v, ["mn-kꜣw-rꜥ", "noun", "mn-kꜣw-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["špss-kꜣ.f", "noun", "špss-kꜣ.f", "", "", "", "a throne name"]) + let v = native_list_append(v, ["wsr-kꜣ.f", "noun", "wsr-kꜣ.f", "", "", "", "a male given"]) + let v = native_list_append(v, ["sꜣḥ-wj-rꜥ", "noun", "sꜣḥ-wj-rꜥ", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["nfr-jr-kꜣ-rꜥ", "noun", "nfr-jr-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["kꜣkꜣj", "noun", "kꜣkꜣj", "", "", "", "a male given"]) + let v = native_list_append(v, ["špss-kꜣ-rꜥ", "noun", "špss-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["nfr.f-rꜥ", "noun", "nfr.f-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["jzj", "noun", "jzj", "", "", "", "a male given"]) + let v = native_list_append(v, ["n-wsr-rꜥ", "noun", "n-wsr-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["mn-kꜣw-ḥr", "noun", "mn-kꜣw-ḥr", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḏd-kꜣ-ḥr", "noun", "ḏd-kꜣ-ḥr", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḏd-kꜣ-rꜥ", "noun", "ḏd-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["jkꜣw-ḥr", "noun", "jkꜣw-ḥr", "", "", "", "a male given"]) + let v = native_list_append(v, ["jkꜣw", "noun", "jkꜣw", "", "", "", "a male given"]) + let v = native_list_append(v, ["jzzj", "noun", "jzzj", "", "", "", "a male given"]) + let v = native_list_append(v, ["qḥqḥw", "noun", "qḥqḥw", "", "", "", "metalworkers"]) + let v = native_list_append(v, ["wsr-kꜣ-rꜥ", "noun", "wsr-kꜣ-rꜥ", "", "", "", "a throne name"]) + let v = native_list_append(v, ["ḥr-nb-ꜥḥ", "noun", "ḥr-nb-ꜥḥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["nb-ꜥḥ", "noun", "nb-ꜥḥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ḥr-m-ꜥḥ.f", "noun", "ḥr-m-ꜥḥ.f", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["jmj-ꜥḥ", "noun", "jmj-ꜥḥ", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["ꜥḥ-wr", "noun", "ꜥḥw-wrw", "", "", "", "temple"]) + let v = native_list_append(v, ["ꜥḥ-rmyt", "noun", "ꜥḥ-rmyt", "", "", "", "epithet for Osiris"]) + let v = native_list_append(v, ["ḥr-ḥrw", "noun", "ḥr-ḥrw", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["ḥwt-ḥr-ḥrw", "noun", "ḥwt-ḥr-ḥrw", "", "", "", "the temple at"]) + let v = native_list_append(v, ["ḥr-wr", "noun", "ḥr-wr", "", "", "", "the god Horus"]) + let v = native_list_append(v, ["ḥr-pꜣ-ẖrd", "noun", "ḥr-pꜣ-ẖrd", "", "", "", "the god Horus"]) + let v = native_list_append(v, ["ḥr-nḏ-jt.f", "noun", "ḥr-nḏ-jt.f", "", "", "", "the god Harendotes"]) + let v = native_list_append(v, ["ḥr-zmꜣ-tꜣwj", "noun", "ḥr-zmꜣ-tꜣwj", "", "", "", "the god Harsomtus"]) + let v = native_list_append(v, ["ḥrtj", "noun", "ḥrtj", "", "", "", "epithet for various"]) + let v = native_list_append(v, ["mꜣꜣt-ḥr-stẖ", "noun", "mꜣꜣt-ḥr-stẖ", "", "", "", "early title of"]) + let v = native_list_append(v, ["sꜣkꜣmꜣ", "noun", "sꜣkꜣmꜣ", "", "", "", "Shechem Sichem an"]) + let v = native_list_append(v, ["jpq", "noun", "jpq", "", "", "", "Aphek an ancient"]) + let v = native_list_append(v, ["brwgtj", "noun", "brwgtj", "", "", "", "A kind of"]) + let v = native_list_append(v, ["jbsꜣ", "noun", "jbsꜣw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜥqy", "noun", "ꜥqyw", "", "", "", "ceremonial entrance of"]) + let v = native_list_append(v, ["knj", "noun", "knj", "", "", "", "Gina an ancient"]) + let v = native_list_append(v, ["qꜣḏꜣr", "noun", "qꜣḏꜣr", "", "", "", "Gezer an ancient"]) + let v = native_list_append(v, ["ḥwḏꜣr", "noun", "ḥwḏꜣr", "", "", "", "Hazor an important"]) + let v = native_list_append(v, ["gꜣḏꜣty", "noun", "gꜣḏꜣty", "", "", "", "Gaza an ancient"]) + let v = native_list_append(v, ["bꜣtj-šꜣr", "noun", "bꜣtj-šꜣr", "", "", "", "Beit Shean an"]) + let v = native_list_append(v, ["rkjšꜣ", "noun", "rkjšꜣ", "", "", "", "Lachish an ancient"]) + let v = native_list_append(v, ["šꜣrḥꜣnꜣ", "noun", "šꜣrḥꜣnꜣ", "", "", "", "Sharuhen an ancient"]) + let v = native_list_append(v, ["sꜣwkꜣ", "noun", "sꜣwkꜣ", "", "", "", "Sokho an ancient"]) + let v = native_list_append(v, ["twjꜣr", "noun", "twjꜣr", "", "", "", "Dor an ancient"]) + let v = native_list_append(v, ["yḥm", "noun", "yḥm", "", "", "", "Yaham an ancient"]) + let v = native_list_append(v, ["ꜣqyt", "noun", "ꜣkywt", "", "", "", "loss"]) + let v = native_list_append(v, ["ꜥr n pt", "noun", "ꜥrw nw pt", "", "", "", "hailstone"]) + let v = native_list_append(v, ["wꜣrt", "noun", "wꜣrwt", "", "", "", "cord rope line"]) + let v = native_list_append(v, ["ꜥrq-rnpt", "noun", "ꜥrq-rnpt", "", "", "", "last day of"]) + let v = native_list_append(v, ["ꜥrꜥr", "noun", "ꜥrꜥrw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜣrr", "noun", "ꜣrr", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ꜣrwkt", "noun", "ꜣrwkt", "", "", "", "fuller’s earth or"]) + let v = native_list_append(v, ["ꜥꜥ", "noun", "ꜥꜥ", "", "", "", "spit spittle saliva"]) + let v = native_list_append(v, ["ꜥꜥt", "noun", "ꜥꜥt", "", "", "", "accusation"]) + let v = native_list_append(v, ["ꜥꜥꜣm", "noun", "ꜥꜥꜣm", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜥꜥjw", "noun", "ꜥꜥjw", "", "", "", "Something undesirable which"]) + let v = native_list_append(v, ["ꜥꜥwj n qdd", "noun", "ꜥꜥwj n qdd", "", "", "", "wave of sleep"]) + let v = native_list_append(v, ["ꜥꜥfs", "noun", "ꜥꜥfs", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ꜥꜣp", "noun", "ꜥꜣpw", "", "", "", "reproach"]) + let v = native_list_append(v, ["ꜥꜣbt", "noun", "ꜥꜣbt", "", "", "", "offerings especially a"]) + let v = native_list_append(v, ["ꜥꜣꜥy", "noun", "ꜥꜣꜥy", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["jꜥ-ḥr", "noun", "jꜥ-ḥr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jꜥw", "noun", "jꜥww", "", "", "", "breakfast"]) + let v = native_list_append(v, ["jꜥw n jb", "noun", "jꜥw n jb", "", "", "", "angry speech venting"]) + let v = native_list_append(v, ["jꜥryt", "noun", "jꜥrywt", "", "", "", "dwelling-place of a"]) + let v = native_list_append(v, ["rmnn", "noun", "rmnn", "", "", "", "Lebanon"]) + let v = native_list_append(v, ["ꜥš ḥꜣt", "noun", "ꜥšw ḥꜣt", "", "", "", "pilot of a"]) + let v = native_list_append(v, ["sḏmt ꜥš", "noun", "sḏmwt ꜥš", "", "", "", "servant"]) + let v = native_list_append(v, ["mrḥ", "noun", "mrḥ", "", "", "", "asphalt"]) + let v = native_list_append(v, ["mrḥt-jḥtjt", "noun", "mrḥt-jḥtjt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["mḫꜣ", "noun", "mḫꜣw", "", "", "", "binding rope"]) + let v = native_list_append(v, ["ꜥsṯjrṯt", "noun", "ꜥsṯjrṯt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥꜣ-n-mḏw", "noun", "ꜥꜣw-nw-mḏw", "", "", "", "foreman in charge"]) + let v = native_list_append(v, ["ꜥꜣ-dyw", "noun", "ꜥꜣw-dyw", "", "", "", "foreman in charge"]) + let v = native_list_append(v, ["jww-ḥrjw-jb", "noun", "N18-w-w-Y1:Z2-Hr:ib-Z3", "", "", "", "the stretches of"]) + let v = native_list_append(v, ["rww-ḏr-jꜣḫw", "noun", "rww-ḏr-jꜣḫw", "", "", "", "whole world whole"]) + let v = native_list_append(v, ["ḥntꜣsw", "noun", "ḥntꜣsww", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ꜥꜣt rwḏt", "noun", "ꜥꜣt rwḏt", "", "", "", "hard stone including"]) + let v = native_list_append(v, ["sbꜣw", "noun", "sbꜣww", "", "", "", "teacher tutor"]) + let v = native_list_append(v, ["jnḥw", "noun", "jnḥw", "", "", "", "picture frame"]) + let v = native_list_append(v, ["ẖrj-jw", "noun", "ẖrjw jw", "", "", "", "victim of wrong"]) + let v = native_list_append(v, ["jwꜣyt", "noun", "jwꜣywt", "", "", "", "female substitute worker"]) + let v = native_list_append(v, ["šꜣt", "noun", "šꜣt", "", "", "", "Shat"]) + let v = native_list_append(v, ["wšm", "noun", "wšm", "", "", "", "ear of grain-bearing"]) + let v = native_list_append(v, ["wsjr-ḥp", "noun", "wsjr-ḥp", "", "", "", "the god Serapis"]) + let v = native_list_append(v, ["rnw", "noun", "rnw", "", "", "", "plural of rn"]) + let v = native_list_append(v, ["ꜥꜣrwnꜣ", "noun", "ꜥꜣrwnꜣ", "", "", "", "Aruna an ancient"]) + let v = native_list_append(v, ["bꜣṯ-ꜥnṯ", "noun", "bꜣṯ-ꜥnṯ", "", "", "", "Beth-Anath an ancient"]) + let v = native_list_append(v, ["bꜣtj-ḥwꜣrwn", "noun", "bꜣtj-ḥwꜣrwn", "", "", "", "Bethoron an ancient"]) + let v = native_list_append(v, ["ḥwrwnꜣ", "noun", "ḥwrwnꜣ", "", "", "", "Hauron an Egyptian"]) + let v = native_list_append(v, ["qbꜥw", "noun", "qbꜥw", "", "", "", "Geba an ancient"]) + let v = native_list_append(v, ["rpwḥw", "noun", "rpwḥw", "", "", "", "Rafah an ancient"]) + let v = native_list_append(v, ["sẖꜥt", "noun", "sẖꜥwt", "", "", "", "hare particularly the"]) + let v = native_list_append(v, ["mḥꜥw", "noun", "mḥꜥw", "", "", "", "flax"]) + let v = native_list_append(v, ["zp3", "noun", "zp3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥjrꜣpw", "noun", "ḥjrꜣpww", "", "", "", "dagger short sword"]) + let v = native_list_append(v, ["ršpw", "noun", "ršpw", "", "", "", "The god Resheph"]) + let v = native_list_append(v, ["jmj-r-šnwt", "noun", "jmjw-r-šnwt", "", "", "", "an official title"]) + let v = native_list_append(v, ["mꜥšꜣdjdjt", "noun", "mꜥšꜣdjdjwt", "", "", "", "comb"]) + let v = native_list_append(v, ["jḥt", "noun", "jḥwt", "", "", "", "cow"]) + let v = native_list_append(v, ["ꜥrw", "noun", "ꜥrw", "", "", "", "nearby area vicinity"]) + let v = native_list_append(v, ["jꜥḥ wr", "noun", "jꜥḥ wr", "", "", "", "festival of the"]) + let v = native_list_append(v, ["jwꜣt", "noun", "jwꜣwt", "", "", "", "cow"]) + let v = native_list_append(v, ["ḫꜣbwsꜣ", "noun", "ḫꜣbwsꜣw", "", "", "", "lamp"]) + let v = native_list_append(v, ["jwꜥyt", "noun", "jwꜥyt", "", "", "", "garrison occupational force"]) + let v = native_list_append(v, ["jwbt", "noun", "jwbwt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jwn n fnḏ", "noun", "jwnw nw fnḏ", "", "", "", "nasal bone"]) + let v = native_list_append(v, ["jwn-wr", "noun", "jwn-wr", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["jwn-mwt.f", "noun", "jwn-mwt.f", "", "", "", "a priestly title"]) + let v = native_list_append(v, ["jwn-knmwt", "noun", "jwnw-knmwt", "", "", "", "a title of"]) + let v = native_list_append(v, ["jwnn", "noun", "jwnnw", "", "", "", "sanctuary of a"]) + let v = native_list_append(v, ["jwnw-šmꜥw", "noun", "jwnw-šmꜥw", "", "", "", "Thebes"]) + let v = native_list_append(v, ["jwryt", "noun", "jwryt", "", "", "", "beans"]) + let v = native_list_append(v, ["wrmtj", "noun", "wrmtj", "", "", "", "A pair of"]) + let v = native_list_append(v, ["jwḥw", "noun", "jwḥww", "", "", "", "inundation"]) + let v = native_list_append(v, ["jwšš", "noun", "jwššw", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jwgrt", "noun", "jwgrt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jwtj.f", "noun", "jwtj.f", "", "", "", "synonym of jwtj-n.f"]) + let v = native_list_append(v, ["jwtjw", "noun", "D35:t-tyw-nDs:Z2", "", "", "", "the dead"]) + let v = native_list_append(v, ["jwtn", "noun", "jwtn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jwdt", "noun", "jwdwt", "", "", "", "separation"]) + let v = native_list_append(v, ["jb-n-nswt", "noun", "jbw-nw-nswt", "", "", "", "an official title"]) + let v = native_list_append(v, ["jb-n-rꜥ", "noun", "jb-n-rꜥ", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["nj-jb", "noun", "njw-jb", "", "", "", "favored person favorite"]) + let v = native_list_append(v, ["n-st-jb", "noun", "nw-st-jb", "", "", "", "favored person favorite"]) + let v = native_list_append(v, ["st-jb-rꜥ", "noun", "st-jb-rꜥ", "", "", "", "the sun temple"]) + let v = native_list_append(v, ["ntt m jb", "noun", "ntwt m jb", "", "", "", "what is desired"]) + let v = native_list_append(v, ["jbꜣw-nṯr", "noun", "i-b-Y6-Y6-Y6-w-nTr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jbꜣw", "noun", "jbꜣww", "", "", "", "the Barbary sheep"]) + let v = native_list_append(v, ["jbw", "noun", "jbww", "", "", "", "refuge shelter place"]) + let v = native_list_append(v, ["jbwj", "noun", "jbwj", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jbnw", "noun", "jbnw", "", "", "", "alum"]) + let v = native_list_append(v, ["jbr", "noun", "jbr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jbht", "noun", "jbht", "", "", "", "Ibhat or Ibhet"]) + let v = native_list_append(v, ["jbhtj", "noun", "jbhtj", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jbḥw", "noun", "jbḥww", "", "", "", "a priestly title"]) + let v = native_list_append(v, ["ḥwt-jbṯt", "noun", "ḥwt-jbṯt", "", "", "", "a shrine of"]) + let v = native_list_append(v, ["jp-jb", "noun", "jp-jb", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["jpt-nswt", "noun", "jpt-nswt", "", "", "", "royal harem"]) + let v = native_list_append(v, ["jpꜣ", "noun", "jpꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jpꜣt", "noun", "jpꜣt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jpt-rst", "noun", "jpt-rst", "", "", "", "the temple of"]) + let v = native_list_append(v, ["ḫntj-jpt.f", "noun", "ḫntj-jpt.f", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["jmn-m-jpt", "noun", "jmn-m-jpt", "", "", "", "the form of"]) + let v = native_list_append(v, ["jmn-jpt", "noun", "jmn-jpt", "", "", "", "synonym of jmn-m-jpt"]) + let v = native_list_append(v, ["tḫtḫ", "noun", "tḫtḫ", "", "", "", "confusion disorder"]) + let v = native_list_append(v, ["jpdw", "noun", "jpdw", "", "", "", "furniture in general"]) + let v = native_list_append(v, ["jfdj", "noun", "jfdj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jfdt", "noun", "jfdwt", "", "", "", "tetrad foursome quartet"]) + let v = native_list_append(v, ["jfd-nṯr", "noun", "jfd-nṯr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["mt-jfd", "noun", "mtw-jfd", "", "", "", "rectangular strip of"]) + let v = native_list_append(v, ["z jm", "noun", "z jm", "", "", "", "said person this"]) + let v = native_list_append(v, ["ḥzy jm", "noun", "ḥzy jm", "", "", "", "said person this"]) + let v = native_list_append(v, ["jm-n-twt", "noun", "jm-n-twt", "", "", "", "a kind of"]) + let v = native_list_append(v, ["jmt", "noun", "jmt", "", "", "", "Buto a city"]) + let v = native_list_append(v, ["jmtj", "noun", "jmtjw", "", "", "", "a vintage of"]) + let v = native_list_append(v, ["jmyt", "noun", "jmyt", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["jmj-jz", "noun", "jmjw-jz", "", "", "", "an official title"]) + let v = native_list_append(v, ["jmj-ꜥ", "noun", "jmjw-ꜥ", "", "", "", "an official title"]) + let v = native_list_append(v, ["jmj wrt", "noun", "jmjw wrt", "", "", "", "starboard"]) + let v = native_list_append(v, ["jmt wrt", "noun", "jmt wrt", "", "", "", "synonym of jmj"]) + let v = native_list_append(v, ["jmj-wt", "noun", "jmj-wt", "", "", "", "epithet for the"]) + let v = native_list_append(v, ["ḥqꜣ-jmj-pr", "noun", "ḥqꜣ-jmj-pr", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["jmw-mw", "noun", "imi-m-mw-K5:I3-Z3", "", "", "", "water animals aquatic"]) + let v = native_list_append(v, ["jmt nḏst", "noun", "jmt nḏst", "", "", "", "stern of a"]) + let v = native_list_append(v, ["jmt-r", "noun", "jmwt-r", "", "", "", "overseer"]) + let v = native_list_append(v, ["qrḥ-mr", "noun", "qrḥw-mr", "", "", "", "vessel for holding"]) + let v = native_list_append(v, ["jmj-r-pr-wr", "noun", "jmjw-r-pr-wrw", "", "", "", "high steward"]) + let v = native_list_append(v, ["jmj-r-kꜣt", "noun", "jmjw-r-kꜣt", "", "", "", "an official title"]) + let v = native_list_append(v, ["jmj hrw.f", "noun", "jmjw hrw.f", "", "", "", "person on duty"]) + let v = native_list_append(v, ["jmw-ḥꜣt", "noun", "imi-m-w-HAt:t*Z1-A50-Z3", "", "", "", "forebears ancestors those"]) + let v = native_list_append(v, ["jmt ḥꜣt", "noun", "jmt ḥꜣt", "", "", "", "former state of"]) + let v = native_list_append(v, ["jmt-ḥꜣt.f", "noun", "jmt-ḥꜣt.f", "", "", "", "epithet of the"]) + let v = native_list_append(v, ["jmj-st-ꜥ", "noun", "jmjw-st-ꜥ", "", "", "", "helper acolyte functionary"]) + let v = native_list_append(v, ["jmj-sꜣ", "noun", "jmjw-sꜣ", "", "", "", "attendant guard"]) + let v = native_list_append(v, ["jmw tꜣ", "noun", "i-imi-m-w-Z3-tA:N23*Z1", "", "", "", "epithet for snakes"]) + let v = native_list_append(v, ["jmjw-tꜣ-mw", "noun", "imi-M:y-tA:N21*Z1-mw-I14:Z2", "", "", "", "epithet for snakes"]) + let v = native_list_append(v, ["jmj-tꜣ", "noun", "jmjw-tꜣ", "", "", "", "a priestly title"]) + let v = native_list_append(v, ["sḫt-jmꜣw", "noun", "sḫt-jmꜣw", "", "", "", "the oases found"]) + let v = native_list_append(v, ["nb-jmꜣt", "noun", "nbw-jmꜣt", "", "", "", "well-liked or charming"]) + let v = native_list_append(v, ["nbt-jmꜣt", "noun", "nbwt-jmꜣt", "", "", "", "well-liked or charming"]) + let v = native_list_append(v, ["wrt-jmꜣt", "noun", "wrt-jmꜣt", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["jmꜣw", "noun", "jmꜣww", "", "", "", "tent"]) + let v = native_list_append(v, ["nb-jmꜣḫ", "noun", "nbw-jmꜣḫ", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["nbt-jmꜣḫ", "noun", "nbwt-jmꜣḫ", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["ḥqꜣ-jmꜣḫ", "noun", "ḥqꜣ-jmꜣḫ", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["jmꜣḫt", "noun", "jmꜣḫt", "", "", "", "honor reverence"]) + let v = native_list_append(v, ["jmꜣḫwt", "noun", "jmꜣḫwwt", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["jmꜣḫyt", "noun", "jmꜣḫyt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jmn-ꜥ", "noun", "jmnw-ꜥ", "", "", "", "a priestly title"]) + let v = native_list_append(v, ["jmn-rn", "noun", "jmn-rn", "", "", "", "a minor god"]) + let v = native_list_append(v, ["jmn-nṯrw", "noun", "jmn-nṯrw", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["jmn-m-jpt-swt", "noun", "jmn-m-jpt-swt", "", "", "", "the form of"]) + let v = native_list_append(v, ["kꜣnywšꜣ", "noun", "kꜣnywšꜣ", "", "", "", "Knossos an ancient"]) + let v = native_list_append(v, ["tpnn", "noun", "tpnn", "", "", "", "cumin Cuminum cyminum"]) + let v = native_list_append(v, ["wꜣḥ-jb-rꜥ", "noun", "wꜣḥ-jb-rꜥ", "", "", "", "a male given"]) + let v = native_list_append(v, ["hpw", "noun", "hpw", "", "", "", "plural of hp"]) + let v = native_list_append(v, ["ḥqꜣwj", "noun", "ḥqꜣwj", "", "", "", "dual of ḥqꜣ"]) + let v = native_list_append(v, ["ḫftjwj", "noun", "ḫftjwj", "", "", "", "dual of ḫftj"]) + let v = native_list_append(v, ["ḥfꜣwwj", "noun", "ḥfꜣwwj", "", "", "", "dual of ḥfꜣw"]) + let v = native_list_append(v, ["sntj", "noun", "sntj", "", "", "", "dual of snt"]) + let v = native_list_append(v, ["snwt", "noun", "snwt", "", "", "", "plural of snt"]) + let v = native_list_append(v, ["ḥfꜣww", "noun", "ḥfꜣww", "", "", "", "plural of ḥfꜣw"]) + let v = native_list_append(v, ["ḫftjw", "noun", "ḫftjw", "", "", "", "plural of ḫftj"]) + let v = native_list_append(v, ["smrw", "noun", "smrw", "", "", "", "plural of smr"]) + let v = native_list_append(v, ["gp", "verb", "g:p-mw 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become cloudy"]) + let v = native_list_append(v, ["j", "verb", "i-A2", "", "", "", "to say"]) + let v = native_list_append(v, ["m", "verb", "m-D35", "", "", "", "imperative of jmj"]) + let v = native_list_append(v, ["km", "verb", "km-m 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to complete"]) + let v = native_list_append(v, ["rd", "verb", "r:d-M30 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to grow"]) + let v = native_list_append(v, ["gr", "verb", "g:r-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become silent"]) + let v = native_list_append(v, ["dm", "verb", "d-m-T30 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to pierce to"]) + let v = native_list_append(v, ["sn", "verb", "sn-n:D19 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to kiss"]) + let v = native_list_append(v, ["mt", "verb", "m-t:A14 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twr", "verb", "t-wr:r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to show respect"]) + let v = native_list_append(v, ["ḫpr", "verb", "xpr:r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to come into"]) + let v = native_list_append(v, ["mn", "verb", "mn:n 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become established"]) + let v = native_list_append(v, ["sr", "verb", "s-r-E27-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to predict to"]) + let v = native_list_append(v, ["sm", "verb", "s-m-M21 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to respect someone"]) + let v = native_list_append(v, ["ms", "verb", "ms-s", "", "", "", "perfective of msj"]) + let v = native_list_append(v, ["hr", "verb", "h:r-D40 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to milk"]) + let v = native_list_append(v, ["tr", "verb", "t:*r-tr-A30-Y1V 2-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dr", "verb", "d:r:D40 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to drive away"]) + let v = native_list_append(v, ["sd", "verb", "z:d-S28-a 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become clothed"]) + let v = native_list_append(v, ["sk", "verb", "s-sk-k:D40 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to wipe"]) + let v = native_list_append(v, ["ḥrj", "verb", "Hr:r-N31 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become distant"]) + let v = native_list_append(v, ["wšd", "verb", "w-Sd:d-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to address someone"]) + let v = native_list_append(v, ["sꜥꜣj", "verb", "s-aA:a-A-Y1 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to enlarge"]) + let v = native_list_append(v, ["bṯ", "verb", "b-T:D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to run"]) + let v = native_list_append(v, ["mšꜥ", "verb", "G20-S:a-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to march"]) + let v = native_list_append(v, ["sgr", "verb", "s-g:r-A2 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to silence"]) + let v = native_list_append(v, ["sḫntj", "verb", "s-xnt-n:t caus. 4ae inf.", "archaic perfect perfective", "egy-conj-caus-4ae-inf", "", "to promote to"]) + let v = native_list_append(v, ["fn", "verb", "f:n-nDs 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become miserable"]) + let v = native_list_append(v, ["ḥnk", "verb", "H-Hn:n-k:D39 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to offer"]) + let v = native_list_append(v, ["gm", "verb", "gm-m", "", "", "", "perfective of gmj"]) + let v = native_list_append(v, ["mwy", "verb", "mw-W-i-i", "", "", "", "to become watery"]) + let v = native_list_append(v, ["dnd", "verb", "d:n-d:T31 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to slaughter animals"]) + let v = native_list_append(v, ["fnḏ", "verb", "f:n:d-D19 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to be angry"]) + let v = native_list_append(v, ["hrw", "verb", "h:r-Y1V 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become calm"]) + let v = native_list_append(v, ["sḏm", "verb", "s-D:sDm-m 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hear"]) + let v = native_list_append(v, ["ḫꜣb", "verb", "x-xA-A-b-Z9 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become bent"]) + let v = native_list_append(v, ["ꜥnḫ", "verb", "anx-n:x 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to live to"]) + let v = native_list_append(v, ["zꜣ", "verb", "z:zA-A", "", "", "", "to fend off"]) + let v = native_list_append(v, ["ḏꜣjs", "verb", "DA-A-i-s-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "argue"]) + let v = native_list_append(v, ["ꜥšꜣ", "verb", "aSA:Z2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become many"]) + let v = native_list_append(v, ["zꜣw", "verb", "A47-A-w-A24 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to guard to"]) + let v = native_list_append(v, ["wrḥ", "verb", "wr:r-H-W23:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to anoint"]) + let v = native_list_append(v, ["sbꜣ", "verb", "s-b-sbA-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to teach"]) + let v = native_list_append(v, ["mꜣꜣ", "verb", "U2:D4-A-A 2ae gem.", "archaic perfect perfective", "egy-table entry", "", "to look at"]) + let v = native_list_append(v, ["nfr", "verb", "nfr-f:r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become of"]) + let v = native_list_append(v, ["mr", "verb", "U23-m-r:nDs 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become physically"]) + let v = native_list_append(v, ["ꜣm", "verb", "A-m-Q7 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to burn"]) + let v = native_list_append(v, ["grḥ", "verb", "g:r-H 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "be quiet be"]) + let v = native_list_append(v, ["ḏꜥ", "verb", "D:a-P5 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to fart"]) + let v = native_list_append(v, ["ḫbj", "verb", "x-b-A32 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to dance"]) + let v = native_list_append(v, ["rm", "verb", "r-m-D9", "", "", "", "perfective of rmj"]) + let v = native_list_append(v, ["wbn", "verb", "w-b-n:N8 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to shine"]) + let v = native_list_append(v, ["sꜥḥ", "verb", "s-a-H-S20 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to ennoble to"]) + let v = native_list_append(v, ["bḥs", "verb", "b-H-s-D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hunt"]) + let v = native_list_append(v, ["ꜥq", "verb", "aq-q:D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to enter +"]) + let v = native_list_append(v, ["qrs", "verb", "q:r-s-Q6 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bury"]) + let v = native_list_append(v, ["jm", "verb", "i-im-m-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to moan to"]) + let v = native_list_append(v, ["jb", "verb", "ib:Z1 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to wish to"]) + let v = native_list_append(v, ["jnb", "verb", "i-in:n-b-inb-D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to separate with"]) + let v = native_list_append(v, ["hꜣj", "verb", "h-A-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to descend"]) + let v = native_list_append(v, ["bkꜣ", "verb", "b-kA-B2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become pregnant"]) + let v = native_list_append(v, ["wsn", "verb", "w-s-n:D53 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to fertilize to"]) + let v = native_list_append(v, ["ḫꜣtb", "verb", "x-xA-A-t-b-D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to have mercy"]) + let v = native_list_append(v, ["jrj", "verb", "ir 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to do an"]) + let v = native_list_append(v, ["wnt", "verb", "wn:n-t", "", "", "", "terminative of wnn"]) + let v = native_list_append(v, ["ptr", "verb", "p*t:r-M4-D6 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to behold to"]) + let v = native_list_append(v, ["jnk", "verb", "i-n:k:D49 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hold in"]) + let v = native_list_append(v, ["wn", "verb", "wn-n:O31 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to open a"]) + let v = native_list_append(v, ["rs", "verb", "r-s-U40-ir 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become awake"]) + let v = native_list_append(v, ["jdr", "verb", "i-d:r-idr 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to stitch up"]) + let v = native_list_append(v, ["ꜣbw", "verb", "Ab-b-w-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to brand cattle"]) + let v = native_list_append(v, ["bꜣ", "verb", "bA 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become an"]) + let v = native_list_append(v, ["pꜣj", "verb", "p-pA-A-H5 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to fly"]) + let v = native_list_append(v, ["ꜥẖj", "verb", "a:X-H5 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to fly +"]) + let v = native_list_append(v, ["gmj", "verb", "gm-m 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "To seek and"]) + let v = native_list_append(v, ["gwš", "verb", "g-w-S:D4 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become twisted"]) + let v = native_list_append(v, ["ḫnms", "verb", "x:n-nm-m-s-A21-Y1 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to be friendly"]) + let v = native_list_append(v, ["šꜣ", "verb", "SA-A-Y1 2-lit.", "3ae inf.", "archaic perfect perfective", "", "to put in"]) + let v = native_list_append(v, ["dbn", "verb", "d-b-n:F47 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to go around"]) + let v = native_list_append(v, ["dsj", "verb", "d-s-i-A2", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mḥ", "verb", "mH:Y1 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to fill"]) + let v = native_list_append(v, ["ḏbꜥ", "verb", "Dba-a-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to point one’s"]) + let v = native_list_append(v, ["šsp", "verb", "O43-p-N8 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "alternative form of"]) + let v = native_list_append(v, ["qbb", "verb", "q-b-b-W15-N35A-Y1V 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to cool to"]) + let v = native_list_append(v, ["ḥmw", "verb", "U24-w-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become skilled"]) + let v = native_list_append(v, ["ḫꜣ", "verb", "M12-A-A17-G37 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to be young"]) + let v = native_list_append(v, ["jbḥ", "verb", "i-b-H-bH-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to laugh showing"]) + let v = native_list_append(v, ["mwt", "verb", "m-t-w 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to die"]) + let v = native_list_append(v, ["ntf", "verb", "n:t:f-mw 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to besprinkle to"]) + let v = native_list_append(v, ["jmn", "verb", "i-mn:n-A4 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hide to"]) + let v = native_list_append(v, ["ḥnn", "verb", "H-Hn-n:n 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to hack up"]) + let v = native_list_append(v, ["qꜣj sꜣ", "verb", "q-A-A28-Aa17-Z1 compound", "", "", "", "to become proud"]) + let v = native_list_append(v, ["ꜥnꜥn", "verb", "a:n-a:n-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to complain +"]) + let v = native_list_append(v, ["nṯrj", "verb", "nTr-T:r 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become divine"]) + let v = native_list_append(v, ["smr", "verb", "s-U23-m:r-nDs caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to inflict pain"]) + let v = native_list_append(v, ["ḥqꜣ", "verb", "HqA-q-A-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rule govern"]) + let v = native_list_append(v, ["ptḥ", "verb", "p:t-H 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to make to"]) + let v = native_list_append(v, ["tf", "verb", "t:f-D26 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to spit +"]) + let v = native_list_append(v, ["nw", "verb", "n:U19-nw-w-Hn:Z2ss", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["mj", "verb", "m-i-D54", "", "", "", "imperative of jj"]) + let v = native_list_append(v, ["qbḥ", "verb", "q-b-H-W15 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to purify"]) + let v = native_list_append(v, ["dšr", "verb", "d:S-r-G27 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become red"]) + let v = native_list_append(v, ["jw", "verb", "E9-w-T30 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to sever to"]) + let v = native_list_append(v, ["ṯz", "verb", "Tz:z-W:D40 2-lit.", "3-lit.", "archaic perfect perfective", "", "to tie to"]) + let v = native_list_append(v, ["jꜥr", "verb", "i-a:r-O41 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to ascend +"]) + let v = native_list_append(v, ["smḥ", "verb", "s-m-H caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "A verb relating"]) + let v = native_list_append(v, ["zẖꜣ", "verb", "Y3-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to write"]) + let v = native_list_append(v, ["swḏ", "verb", "s-wD-D:Y1 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to bequeath"]) + let v = native_list_append(v, ["dn", "verb", "d:n-T30 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to sever cut"]) + let v = native_list_append(v, ["wnn", "verb", "E34:n:n 2ae gem.", "archaic perfect perfective", "egy-table entry", "", "to exist to"]) + let v = native_list_append(v, ["nḏm", "verb", "nDm-m 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to taste sweet"]) + let v = native_list_append(v, ["jmꜣ", "verb", "i-mA-M1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become kindly"]) + let v = native_list_append(v, ["ḏd", "verb", "D:d 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to say to"]) + let v = native_list_append(v, ["spj", "verb", "s-p:V1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to tie with"]) + let v = native_list_append(v, ["bjn", "verb", "b-i-n:G37 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to acquire or"]) + let v = native_list_append(v, ["šmꜥ", "verb", "Sma-a:A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to chant to"]) + let v = native_list_append(v, ["ḥtp", "verb", "Htp:t*p 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become content"]) + let v = native_list_append(v, ["ṯꜣw", "verb", "TA-A-w-D51:D40 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to steal"]) + let v = native_list_append(v, ["wḥm", "verb", "wHm-m 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to repeat to"]) + let v = native_list_append(v, ["nḏs", "verb", "n:D-s-nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become small"]) + let v = native_list_append(v, ["sqr", "verb", "s-q:r-T30:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to strike to"]) + let v = native_list_append(v, ["grg", "verb", "g:r-grg 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to set in"]) + let v = native_list_append(v, ["ꜥḥꜣ", "verb", "aHA-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to fight or"]) + let v = native_list_append(v, ["ꜣs", "verb", "A-s-V2:D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to rush make"]) + let v = native_list_append(v, ["ꜣpd", "verb", "A-p:d-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to come hastening"]) + let v = native_list_append(v, ["ꜥmꜥꜣ", "verb", "a-m-a-A-T14 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to throw a"]) + let v = native_list_append(v, ["wsr", "verb", "wsr-s-r:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become mighty"]) + let v = native_list_append(v, ["jtn", "verb", "i-t:n-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to set oneself"]) + let v = native_list_append(v, ["spt", "verb", "s-p:t", "", "", "", "infinitive of spj"]) + let v = native_list_append(v, ["ḫꜣj", "verb", "xA-A-D40 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to measure"]) + let v = native_list_append(v, ["ḫꜣꜥ", "verb", "xA-A-a:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to throw down"]) + let v = native_list_append(v, ["jkn", "verb", "i-k:n-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to scoop out"]) + let v = native_list_append(v, ["hnn", "verb", "h:n:n-D41:D40 2ae gem.", "2-lit.", "archaic perfect perfective", "", "to load to"]) + let v = native_list_append(v, ["ꜣt", "verb", "A-t:I3", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣyt", "verb", "A-i-i-t:G37", "", "", "", "to blanch to"]) + let v = native_list_append(v, ["ꜥꜣꜥ", "verb", "aA:a-A-a:D53 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to spew to"]) + let v = native_list_append(v, ["ꜣꜥꜥ", "verb", "A-a:a-Y1-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to coat spread"]) + let v = native_list_append(v, ["ꜣꜥꜥwj", "verb", "A-a:a-W:y-D6", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜣꜥfj", "verb", "A-a:f-y-I3", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["šms", "verb", "Sms-s-D54 3-lit.", "4ae inf.", "archaic perfect perfective", "", "to follow"]) + let v = native_list_append(v, ["jqr", "verb", "i-q:r-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become excellent"]) + let v = native_list_append(v, ["wꜣḏ", "verb", "wAD-D:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become green"]) + let v = native_list_append(v, ["wꜥb", "verb", "wab-mw 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become pure"]) + let v = native_list_append(v, ["jz", "verb", "i-Hn:z 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become old"]) + let v = native_list_append(v, ["gs", "verb", "gs:z-W22:D40 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to oil to"]) + let v = native_list_append(v, ["ws", "verb", "w-s-G37 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to lack"]) + let v = native_list_append(v, ["mds", "verb", "m-d-s-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become sharp"]) + let v = native_list_append(v, ["ꜥḥꜥ", "verb", "aHa-a:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to stand up"]) + let v = native_list_append(v, ["ꜣṯp", "verb", "A-T:p-A9 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to put a"]) + let v = native_list_append(v, ["ꜣtp", "verb", "A-t:p-A9 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pḥ", "verb", "pH:D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to reach a"]) + let v = native_list_append(v, ["wdj", "verb", "w-d anom.", "", "", "", "to put to"]) + let v = native_list_append(v, ["ꜣ", "verb", "A-D56", "", "", "", "to enter or"]) + let v = native_list_append(v, ["wt", "verb", "w-t:Aa2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to bandage to"]) + let v = native_list_append(v, ["twt", "verb", "t-w&t-A53-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to resemble to"]) + let v = native_list_append(v, ["znf", "verb", "z:n:f-D26:Z2ss 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bleed"]) + let v = native_list_append(v, ["stp", "verb", "s-t:p-stp:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to choose to"]) + let v = native_list_append(v, ["kꜣmn", "verb", "k:A-mn:n-D6 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "To be blind."]) + let v = native_list_append(v, ["ḫsf ꜣt", "verb", "U35-A24-A-t:ra*Z1 compound", "", "", "", "to break someone’s"]) + let v = native_list_append(v, ["jꜣꜥ", "verb", "i-A-a:F16", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ꜣwj", "verb", "Aw-w 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become wide"]) + let v = native_list_append(v, ["ꜣd", "verb", "A-d:I3 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become aggressive"]) + let v = native_list_append(v, ["sš", "verb", "O34:N37-Z9:D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to open"]) + let v = native_list_append(v, ["ꜥm", "verb", "a-m-F10-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to swallow devour"]) + let v = native_list_append(v, ["ꜣwj-jb", "verb", "Aw:ib compound", "", "", "", "to become happy"]) + let v = native_list_append(v, ["wps", "verb", "wp:p-s-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to incinerate evil"]) + let v = native_list_append(v, ["ṯnj", "verb", "T:n-T14-G41-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to lift up"]) + let v = native_list_append(v, ["tnj", "verb", "t:n-i-A19 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become old"]) + let v = native_list_append(v, ["ꜣḫ", "verb", "Ax-x:H_SPACE 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become effective"]) + let v = native_list_append(v, ["ꜥꜥw", "verb", "a:a-w-D6 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to sleep"]) + let v = native_list_append(v, ["jḥ", "verb", "i-H-T24 2-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["šzp", "verb", "Szp-p:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to grasp to"]) + let v = native_list_append(v, ["zj", "verb", "O35 2ae inf.", "archaic perfect perfective", "egy-conj-2ae-inf", "", "to go"]) + let v = native_list_append(v, ["sḫt", "verb", "s-x:t-T26:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to trap to"]) + let v = native_list_append(v, ["jmj", "verb", "i-m-D35:H_SPACE 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to not be"]) + let v = native_list_append(v, ["sḫr", "verb", "s-x:r-xr caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to fell to"]) + let v = native_list_append(v, ["ḫr", "verb", "x:r-A15 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to fall"]) + let v = native_list_append(v, ["ḥꜣj", "verb", "HA-A-S28 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become naked"]) + let v = native_list_append(v, ["ḫntj", "verb", "xnt-n:t-P1 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to go forward"]) + let v = native_list_append(v, ["mrj", "verb", "U7:r-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to love someone"]) + let v = native_list_append(v, ["ꜥḥꜣwtj", "verb", "aHA-A-w-t:y-A24", "", "", "", "to become quarrelsome"]) + let v = native_list_append(v, ["sḫnt", "verb", "s-xnt-n:t", "", "", "", "perfective of sḫntj"]) + let v = native_list_append(v, ["hꜣ", "verb", "h-A-D54", "", "", "", "perfective of hꜣj"]) + let v = native_list_append(v, ["tḫj", "verb", "X1:Aa1-W22 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to get drunk"]) + let v = native_list_append(v, ["nmj", "verb", "n-nm-m-i-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to traverse"]) + let v = native_list_append(v, ["msj", "verb", "ms-s 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to give birth"]) + let v = native_list_append(v, ["ꜣb", "verb", "Ab-b-D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to stop to"]) + let v = native_list_append(v, ["mnḫ", "verb", "mn:n-x*U22:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to be effective"]) + let v = native_list_append(v, ["dmj", "verb", "d-mi-i-D41 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to touch"]) + let v = native_list_append(v, ["ṯms", "verb", "T-m-s-Y4 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become red"]) + let v = native_list_append(v, ["wsḫ", "verb", "w-s-x:W10 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become broad"]) + let v = native_list_append(v, ["nnj", "verb", "M22-M22-n:n-A7 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become inert"]) + let v = native_list_append(v, ["tnm", "verb", "t:n-nm-m-D55 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to go astray"]) + let v = native_list_append(v, ["ꜥḥ", "verb", "a-H-T24 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to snare to"]) + let v = native_list_append(v, ["rḫ", "verb", "r:x:Y1 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to learn to"]) + let v = native_list_append(v, ["štꜣ", "verb", "S:t*U30-A 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become hidden"]) + let v = native_list_append(v, ["prj", "verb", "pr:r-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to emerge to"]) + let v = native_list_append(v, ["ꜥpr", "verb", "apr-r:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to equip"]) + let v = native_list_append(v, ["jwꜥ", "verb", "E9:a-iwa 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become an"]) + let v = native_list_append(v, ["tm", "verb", "t:tm-m 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to be complete"]) + let v = native_list_append(v, ["wrr", "verb", "wr:r-r 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become physically"]) + let v = native_list_append(v, ["wꜣḥ", "verb", "wAH-H-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to lay down"]) + let v = native_list_append(v, ["šmj", "verb", "Sm-m-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to go to"]) + let v = native_list_append(v, ["snbb", "verb", "s-n:b*b-Y1 3ae gem.", "archaic perfect perfective", "egy-conj-3ae-gem", "", "to converse"]) + let v = native_list_append(v, ["wsṯn", "verb", "w-s-T:n-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to go freely"]) + let v = native_list_append(v, ["ptpt", "verb", "p:t-p:t-A24 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to trample"]) + let v = native_list_append(v, ["snsn", "verb", "sn:n-sn:n-D19 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to fraternize with"]) + let v = native_list_append(v, ["msḏj", "verb", "ms-s-D-A2 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to hate to"]) + let v = native_list_append(v, ["ḥmsj", "verb", "N42-s-A3 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to sit down"]) + let v = native_list_append(v, ["nhmhm", "verb", "n:h-m-h-m-A2 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to yell loudly"]) + let v = native_list_append(v, ["nḏdnḏd", "verb", "n:D&d-Dd-n:D&d-Dd 6-lit.", "archaic perfect perfective", "egy-conj-6-lit", "", "to endure"]) + let v = native_list_append(v, ["smn", "verb", "s-mn:n-Y1V caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to establish to"]) + let v = native_list_append(v, ["swsḫ", "verb", "s-w-s-x:W10 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to broaden to"]) + let v = native_list_append(v, ["ssḫ", "verb", "s-s-x:W10 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "Old Egyptian form"]) + let v = native_list_append(v, ["sqbb", "verb", "s-q-b-b-W15-mw caus. 2ae gem.", "archaic perfect perfective", "egy-conj-caus-2ae-gem", "", "to cool something"]) + let v = native_list_append(v, ["fk", "verb", "f:k-D3:nDs 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become desolate"]) + let v = native_list_append(v, ["sfkk", "verb", "s-f:k-k:nDs caus. 2ae gem.", "archaic perfect perfective", "egy-conj-caus-2ae-gem", "", "to devastate"]) + let v = native_list_append(v, ["sꜥnḫ", "verb", "s-anx-n:x caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to make live"]) + let v = native_list_append(v, ["ḫꜥj", "verb", "xa:a:Y1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to rise"]) + let v = native_list_append(v, ["ḫpj", "verb", "x*p:D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to travel to"]) + let v = native_list_append(v, ["sḫpj", "verb", "s-x*p:D54 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to lead"]) + let v = native_list_append(v, ["ꜣḫꜣḫ", "verb", "A-x:H_SPACE-A-x:H_SPACE-M15 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to become verdant"]) + let v = native_list_append(v, ["sꜣḫꜣḫ", "verb", "s-A-x:H_SPACE-A-x:H_SPACE-M15 caus. 4-lit.", "archaic perfect perfective", "egy-conj-caus-4-lit", "", "to make green"]) + let v = native_list_append(v, ["sḫd", "verb", "s-x:d-A29 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to invert"]) + let v = native_list_append(v, ["sḫdḫd", "verb", "s-x:d-x:d-A29 caus. 4-lit.", "archaic perfect perfective", "egy-conj-caus-4-lit", "", "to invert"]) + let v = native_list_append(v, ["bꜣgj", "verb", "b-bA-A-g-A7 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become weary"]) + let v = native_list_append(v, ["sbꜣgj", "verb", "s-b-bA-A-g-A7 caus. 4ae inf.", "archaic perfect perfective", "egy-conj-caus-4ae-inf", "", "to tire to"]) + let v = native_list_append(v, ["nḫbḫb", "verb", "n:x-b-x-b-A24 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to draw back"]) + let v = native_list_append(v, ["snḫbḫb", "verb", "s-n:x-b-x-b-A24 caus. 5-lit.", "archaic perfect perfective", "egy-conj-caus-5-lit", "", "to cause a"]) + let v = native_list_append(v, ["nšm", "verb", "n:S-m-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cut"]) + let v = native_list_append(v, ["snšmšm", "verb", "z:n:S-m-S-m-T30 caus. 5-lit.", "archaic perfect perfective", "egy-conj-caus-5-lit", "", "to sharpen to"]) + let v = native_list_append(v, ["šwj", "verb", "Sw-w-nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become physically"]) + let v = native_list_append(v, ["ꜣzḫ", "verb", "A-z:x-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to harvest or"]) + let v = native_list_append(v, ["jšš", "verb", "i-S:S-a 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to carry here"]) + let v = native_list_append(v, ["mz", "verb", "m-O35 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to bring in"]) + let v = native_list_append(v, ["rḏj", "verb", "r-di anom.", "archaic perfect perfective", "egy-table entry", "", "to give to"]) + let v = native_list_append(v, ["jwj", "verb", "D54-w anom.", "archaic perfect perfective", "egy-table entry", "", "to arrive to"]) + let v = native_list_append(v, ["jj", "verb", "ii-i-D54 anom.", "archaic perfect perfective", "egy-table entry", "", "to arrive to"]) + let v = native_list_append(v, ["qꜣj", "verb", "q-A-A28 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become high"]) + let v = native_list_append(v, ["šdj", "verb", "Sd:d-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to recite to"]) + let v = native_list_append(v, ["sjꜣ", "verb", "siA-A-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to perceive to"]) + let v = native_list_append(v, ["nḥm", "verb", "n:N42-m-D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to take away"]) + let v = native_list_append(v, ["pḥrr", "verb", "p-H-r:*r-D54 3ae gem.", "archaic perfect perfective", "egy-conj-3ae-gem", "", "to run"]) + let v = native_list_append(v, ["sḥtp", "verb", "s-Htp:t*p caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to make content"]) + let v = native_list_append(v, ["smꜣwj", "verb", "s-mA-A-w-Y1 caus. 4ae inf.", "archaic perfect perfective", "egy-conj-caus-4ae-inf", "", "to renew"]) + let v = native_list_append(v, ["nḥtj", "verb", "nH-H-t:y-A2 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to believe to"]) + let v = native_list_append(v, ["smsj", "verb", "s-ms-s-Z5 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to cause to"]) + let v = native_list_append(v, ["ḥzj", "verb", "H*Hz-z-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to praise to"]) + let v = native_list_append(v, ["ḥsj", "verb", "H-Hz-s-y-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to sing"]) + let v = native_list_append(v, ["nḥd", "verb", "nH-H-d:Z9-D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become strong"]) + let v = native_list_append(v, ["ḥḏ", "verb", "HD-D:ra 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become white"]) + let v = native_list_append(v, ["sḏ", "verb", "s-D:Z9 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to break into"]) + let v = native_list_append(v, ["nꜥj", "verb", "n:a-P1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to travel by"]) + let v = native_list_append(v, ["ḫdj", "verb", "x:d-P1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to go downstream"]) + let v = native_list_append(v, ["rwḏ", "verb", "r-wD-rwD 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become firm"]) + let v = native_list_append(v, ["zꜣṯ", "verb", "z-A-T- 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to make a"]) + let v = native_list_append(v, ["jꜣkb", "verb", "i-A-k-b-D3 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to mourn"]) + let v = native_list_append(v, ["ṯzj", "verb", "T:z-U39 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to raise to"]) + let v = native_list_append(v, ["sꜣḥ", "verb", "s-Aa18-A-H-D61-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to set foot"]) + let v = native_list_append(v, ["srwḫ", "verb", "s-r-w-x*Aa2:Y1 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to treat to"]) + let v = native_list_append(v, ["smꜣ", "verb", "s-mA-A-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to slaughter to"]) + let v = native_list_append(v, ["ꜥbꜥb", "verb", "ab-ab-F16:Y1 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to boast +"]) + let v = native_list_append(v, ["wbꜣ", "verb", "wbA-bA 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to open"]) + let v = native_list_append(v, ["wbꜣ jb", "verb", "wbA-bA-ib:Z1 compound", "", "", "", "to confide"]) + let v = native_list_append(v, ["nhm", "verb", "n:h-m-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to yell"]) + let v = native_list_append(v, ["r ḏd", "verb", "r-D:d", "", "", "", "periphrastic prospective of"]) + let v = native_list_append(v, ["zwr", "verb", "z:wr:r-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to drink something"]) + let v = native_list_append(v, ["ꜣbj", "verb", "Ab-b-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to desire to"]) + let v = native_list_append(v, ["snḏ", "verb", "snD-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become afraid"]) + let v = native_list_append(v, ["ḫmt", "verb", "x:mt-t:Z2ss-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to think to"]) + let v = native_list_append(v, ["kꜣj", "verb", "k-A-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to plan to"]) + let v = native_list_append(v, ["wḏ", "verb", "wD-w 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to command"]) + let v = native_list_append(v, ["šꜣꜥ", "verb", "SA-A-a:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to start to"]) + let v = native_list_append(v, ["ḥꜣq", "verb", "HA-A-q:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to plunder"]) + let v = native_list_append(v, ["nḫt", "verb", "n&xt-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become victorious"]) + let v = native_list_append(v, ["pšn", "verb", "p:S-n:Z9 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to split apart"]) + let v = native_list_append(v, ["jwd", "verb", "E9-w-d:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to part to"]) + let v = native_list_append(v, ["wḏꜣ", "verb", "w-DA-A-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become intact"]) + let v = native_list_append(v, ["skj", "verb", "s-sk-k:nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to perish to"]) + let v = native_list_append(v, ["ḫsf", "verb", "x-s-U35-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bar to"]) + let v = native_list_append(v, ["wšb", "verb", "w-S-b-Z9-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to answer"]) + let v = native_list_append(v, ["twꜣ", "verb", "t-wA-A 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to physically support"]) + let v = native_list_append(v, ["jṯj", "verb", "iTi 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to take to"]) + let v = native_list_append(v, ["mdwj", "verb", "md-d-w-A2 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to speak +"]) + let v = native_list_append(v, ["nwtwt", "verb", "nw-w-t-w-t 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to totter"]) + let v = native_list_append(v, ["sꜥr", "verb", "s-a:r-N31 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to make ascend"]) + let v = native_list_append(v, ["sḫpr", "verb", "s-xpr-r caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to bring about"]) + let v = native_list_append(v, ["sꜥšꜣ", "verb", "s-aSA:Z2 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to multiply to"]) + let v = native_list_append(v, ["wnm", "verb", "wn:n-m-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to eat something"]) + let v = native_list_append(v, ["psḏj", "verb", "p-s-D-N8 4ae inf.", "3-lit.", "archaic perfect perfective", "", "to shine"]) + let v = native_list_append(v, ["ꜣšr", "verb", "A-S:r-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become roasted"]) + let v = native_list_append(v, ["ꜣq", "verb", "A-q:nDs 2-lit.", "3ae inf.", "archaic perfect perfective", "", "to perish to"]) + let v = native_list_append(v, ["sꜣq", "verb", "s-Aa18-A-q-I5:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to gather or"]) + let v = native_list_append(v, ["ꜣtf", "verb", "A-t:f-S8 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to be crowned"]) + let v = native_list_append(v, ["ḫrp", "verb", "x:r-p:D44 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to oversee to"]) + let v = native_list_append(v, ["jrj ꜣ r gs", "verb", "ir-A-D56-N23-Z1-r-gs:Z1 compound", "", "", "", "to go off"]) + let v = native_list_append(v, ["jꜥb", "verb", "i-a:W10-b 3-lit.", "3ae inf.", "archaic perfect perfective", "", "to unite to"]) + let v = native_list_append(v, ["ḫnd", "verb", "x:n:d-rd-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tread"]) + let v = native_list_append(v, ["ꜣfj", "verb", "A-f-G38 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to gorge oneself"]) + let v = native_list_append(v, ["jnj", "verb", "ini:n 3ae inf.", "archaic perfect perfective", "egy-table entry", "", "to bring to"]) + let v = native_list_append(v, ["ṯḥn", "verb", "T-H-n:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to encounter to"]) + let v = native_list_append(v, ["ꜥḥꜥ.n", "verb", "aHa-a:n", "", "", "", "perfect of ꜥḥꜥ"]) + let v = native_list_append(v, ["wn.jn", "verb", "wn:n-i-n", "", "", "", "consecutive of wnn"]) + let v = native_list_append(v, ["wn.ḫr", "verb", "wn:n-x:r", "", "", "", "obligative of wnn"]) + let v = native_list_append(v, ["jꜣš", "verb", "i-A-S-A2", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pgꜣ", "verb", "p:g-A-D32:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to spread open"]) + let v = native_list_append(v, ["sbḥ", "verb", "s-b-H-bH-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cry out"]) + let v = native_list_append(v, ["bꜣk", "verb", "bA-k:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to work +"]) + let v = native_list_append(v, ["ꜥmꜥm", "verb", "a-m-a-m-D51:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to massage"]) + let v = native_list_append(v, ["zjn", "verb", "z:in:n-a 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rub"]) + let v = native_list_append(v, ["wṯz", "verb", "W-T:z-U39-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to lift up"]) + let v = native_list_append(v, ["ḥḏj", "verb", "HD-D-Z9 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to smash"]) + let v = native_list_append(v, ["spd", "verb", "s-p:d-M44 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become sharp"]) + let v = native_list_append(v, ["sspd", "verb", "s-s-p:d-M44-Y1 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to sharpen"]) + let v = native_list_append(v, ["ẖzj", "verb", "X:z-nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become feeble"]) + let v = native_list_append(v, ["nḏnḏ", "verb", "n:D-n:D-nD-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to consult to"]) + let v = native_list_append(v, ["nḏrj", "verb", "n:Dr:r-A24 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to grab hold"]) + let v = native_list_append(v, ["srḫ", "verb", "s-r:x-A2 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to make known"]) + let v = native_list_append(v, ["dgj", "verb", "d:g-D5 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to look"]) + let v = native_list_append(v, ["jtḥ", "verb", "i-t-H-V1:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to pull"]) + let v = native_list_append(v, ["jꜥj", "verb", "i-a:N35B 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to wash the"]) + let v = native_list_append(v, ["jfd", "verb", "i-f:d-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to flee or"]) + let v = native_list_append(v, ["wḏꜥ", "verb", "wDa-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to judge to"]) + let v = native_list_append(v, ["nwd", "verb", "n:U19:nw-d:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to deviate to"]) + let v = native_list_append(v, ["mḏrj", "verb", "m-Dr:r-inb 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to turn to"]) + let v = native_list_append(v, ["ḏꜣj", "verb", "DA-A-Z9:P1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to cross a"]) + let v = native_list_append(v, ["mꜣꜥ", "verb", "mA-mAa:a:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to direct to"]) + let v = native_list_append(v, ["spr", "verb", "spr:r-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to arrive +"]) + let v = native_list_append(v, ["ḥbs", "verb", "H-b-s-S28 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to clothe a"]) + let v = native_list_append(v, ["snb", "verb", "s-n:b 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become healthy"]) + let v = native_list_append(v, ["gnn", "verb", "g:n:n-A7 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become soft"]) + let v = native_list_append(v, ["špss", "verb", "Sps-s-s 3ae gem.", "archaic perfect perfective", "egy-conj-3ae-gem", "", "to be ennobled"]) + let v = native_list_append(v, ["pꜣḫd", "verb", "G41-A-x:d-A29 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to become turned"]) + let v = native_list_append(v, ["wꜣsj", "verb", "wA-A-s-wAs-nDs 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become ruined"]) + let v = native_list_append(v, ["nḏꜣḏꜣ", "verb", "n-DA-A-DA-A-mw 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to become runny"]) + let v = native_list_append(v, ["sꜥq", "verb", "s-aq-q:D54 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to bring in"]) + let v = native_list_append(v, ["sšmm", "verb", "s-S-m-m-Q7 caus. 2ae gem.", "archaic perfect perfective", "egy-conj-caus-2ae-gem", "", "to heat to"]) + let v = native_list_append(v, ["sṯnj", "verb", "s-T:n-G41 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to distinguish to"]) + let v = native_list_append(v, ["rhn", "verb", "r:h-n:D41 3-lit.", "4ae inf.", "archaic perfect perfective", "", "to lean to"]) + let v = native_list_append(v, ["ḥsq", "verb", "H-s-q:T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to behead"]) + let v = native_list_append(v, ["ḫb", "verb", "x-b-A32", "", "", "", "perfective of ḫbj"]) + let v = native_list_append(v, ["ṯb", "verb", "T-b-Tb 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to be sandaled"]) + let v = native_list_append(v, ["mꜣꜥ-ḫrw", "verb", "mA-a:mAa-xrw-w compound", "", "", "", "to be among"]) + let v = native_list_append(v, ["ḥꜥj", "verb", "H-a-A28 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become excited"]) + let v = native_list_append(v, ["šꜥd", "verb", "S:a:d-T30:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cut off"]) + let v = native_list_append(v, ["stj", "verb", "sti-t 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to light a"]) + let v = native_list_append(v, ["sḏr", "verb", "s-Dr:r-A55 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to lie down"]) + let v = native_list_append(v, ["bnr", "verb", "b-n:r-bnr 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become sweet"]) + let v = native_list_append(v, ["ꜥḏ", "verb", "a-D:aD-Y1 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become intact"]) + let v = native_list_append(v, ["ẖnm", "verb", "Xnm-m 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to join to"]) + let v = native_list_append(v, ["snwḫ", "verb", "s-n:U19-nw:W-x-Q7 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to boil"]) + let v = native_list_append(v, ["wꜥj", "verb", "wa:a-Z1-nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become alone"]) + let v = native_list_append(v, ["kꜣp", "verb", "R5:p-A5 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hide to"]) + let v = native_list_append(v, ["wrš", "verb", "wr:r-S:hrw", "", "", "", "to spend the"]) + let v = native_list_append(v, ["ḥqr", "verb", "H-q:r-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become hungry"]) + let v = native_list_append(v, ["jbj", "verb", "i-b-E8-mw-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become thirsty"]) + let v = native_list_append(v, ["dmḏj", "verb", "dmD:Y1 4ae inf.", "3-lit.", "archaic perfect perfective", "", "to join together"]) + let v = native_list_append(v, ["stp-zꜣ", "verb", "s-t*p:stp-V16 compound", "", "", "", "to protect"]) + let v = native_list_append(v, ["hꜣb", "verb", "h-A-b-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to send someone"]) + let v = native_list_append(v, ["ꜣmm", "verb", "A-m-m-D49 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to grasp to"]) + let v = native_list_append(v, ["sksk", "verb", "s-sk-k-s-sk-k:nDs 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to destroy"]) + let v = native_list_append(v, ["qnj", "verb", "q:n-i-D32 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to embrace"]) + let v = native_list_append(v, ["wꜣj", "verb", "wA-A-N31 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become distant"]) + let v = native_list_append(v, ["qd", "verb", "A35-D40 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to build"]) + let v = native_list_append(v, ["ḏdj", "verb", "Dd-d 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to endure to"]) + let v = native_list_append(v, ["ḫtj", "verb", "xt:x-t:D55 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to retreat"]) + let v = native_list_append(v, ["smj", "verb", "s-mi-i-A2 3-lit.", "caus. 2-lit.", "archaic perfect perfective", "", "to report something"]) + let v = native_list_append(v, ["wpj", "verb", "wp:p-Z9 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to split to"]) + let v = native_list_append(v, ["ḫnj", "verb", "x:n-G41-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to alight to"]) + let v = native_list_append(v, ["šrr", "verb", "S:r:r-nDs 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become little"]) + let v = native_list_append(v, ["jhm", "verb", "i-h-m-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to stall to"]) + let v = native_list_append(v, ["sbj", "verb", "s-b-i-T14 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rebel to"]) + let v = native_list_append(v, ["ḥtm", "verb", "H-t:tm-m-G38-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to provide or"]) + let v = native_list_append(v, ["nmꜥ", "verb", "nm-m-a-E20-D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become biased"]) + let v = native_list_append(v, ["wnf jb", "verb", "wn-n:f-S28-ib*Z1 compound", "", "", "", "to be frivolous"]) + let v = native_list_append(v, ["spr r dmj", "verb", "spr:r-D54-r:d-mi-i-N23-Z1 compound", "", "", "", "to succeed to"]) + let v = native_list_append(v, ["wšr", "verb", "W-S:r-nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become dried"]) + let v = native_list_append(v, ["jwr", "verb", "E9:r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to conceive a"]) + let v = native_list_append(v, ["ẖnj", "verb", "D33:n-P1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to row"]) + let v = native_list_append(v, ["ḫtḫt", "verb", "xt:x*t-xt:x*t-D55 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to reverse to"]) + let v = native_list_append(v, ["tkn", "verb", "t:k-n:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to approach"]) + let v = native_list_append(v, ["ḥzmn", "verb", "U32-D26 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to menstruate"]) + let v = native_list_append(v, ["fgn", "verb", "f:g:n- 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to defecate"]) + let v = native_list_append(v, ["mjnj", "verb", "mn:n-i-P11-P1 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to moor a"]) + let v = native_list_append(v, ["swꜣj", "verb", "s-wA-A-N31:D54 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to go past"]) + let v = native_list_append(v, ["rnpj", "verb", "r:n:p-rnp-A50-Y1 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become young"]) + let v = native_list_append(v, ["swꜥb", "verb", "s-wab-mw caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to clean to"]) + let v = native_list_append(v, ["sqꜣj", "verb", "s-q-A-A28 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to raise to"]) + let v = native_list_append(v, ["smnmn", "verb", "s-mn:n-mn:n-D54 caus. 4-lit.", "archaic perfect perfective", "egy-conj-caus-4-lit", "", "to cause to"]) + let v = native_list_append(v, ["njs", "verb", "n-i-s-A26 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to call to"]) + let v = native_list_append(v, ["stꜣ", "verb", "s-t:U30-Q7 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to light on"]) + let v = native_list_append(v, ["ḥwj", "verb", "H-w-A24 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to hit to"]) + let v = native_list_append(v, ["jp", "verb", "i-p:Y1 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to count"]) + let v = native_list_append(v, ["sꜣj", "verb", "s-Aa18-A-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become sated"]) + let v = native_list_append(v, ["drp", "verb", "d:r:p-A2:D39 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to offer"]) + let v = native_list_append(v, ["prj ẖr", "verb", "pr:r-D54-Xr:r compound", "", "", "", "to reveal"]) + let v = native_list_append(v, ["sjꜣt", "verb", "s-i-A-t:bH-rd caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to cut short"]) + let v = native_list_append(v, ["mḥj", "verb", "mH-H-mw 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to be in"]) + let v = native_list_append(v, ["nḏ", "verb", "nD-nw-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to inquire to"]) + let v = native_list_append(v, ["nḏ r", "verb", "nD-nw-r:Z1 compound", "", "", "", "to consult"]) + let v = native_list_append(v, ["ḏꜥr", "verb", "D-a:r-T14-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to seek out"]) + let v = native_list_append(v, ["shꜣj", "verb", "s-h-A-D54 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to cause to"]) + let v = native_list_append(v, ["ꜥqꜣ", "verb", "a:q-A-Dba-Dba-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become correct"]) + let v = native_list_append(v, ["ḥs", "verb", "H-s-P5 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become cold"]) + let v = native_list_append(v, ["kꜣhs", "verb", "k-A-h-s-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to become harsh"]) + let v = native_list_append(v, ["ꜥwꜣj", "verb", "a-wA-A-A24 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to rob"]) + let v = native_list_append(v, ["ḫwj", "verb", "x:D43-w-Y1V 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to protect to"]) + let v = native_list_append(v, ["mkj", "verb", "m-a:k-Y1V 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to protect"]) + let v = native_list_append(v, ["wḫꜣ", "verb", "G43-M12-G1-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to seek to"]) + let v = native_list_append(v, ["mꜥq", "verb", "m-a:q 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to roast on"]) + let v = native_list_append(v, ["pꜣw", "verb", "pA-A 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to have done"]) + let v = native_list_append(v, ["ḏwj", "verb", "Dw-w-G37 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become evil"]) + let v = native_list_append(v, ["mjnj zp", "verb", "mn:n-i-P11-P1-z:p*zp compound", "", "", "", "to successfully reach"]) + let v = native_list_append(v, ["jꜣwj", "verb", "i-A-w-A19 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become old"]) + let v = native_list_append(v, ["wtḫ", "verb", "w&t-x:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to flee"]) + let v = native_list_append(v, ["nš", "verb", "n:S-D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to drive forth"]) + let v = native_list_append(v, ["wdn", "verb", "w-d:n-wdn 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to set down"]) + let v = native_list_append(v, ["ẖꜥm", "verb", "X:a-m-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to engage an"]) + let v = native_list_append(v, ["ḥꜣbj", "verb", "H-b-W4 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to celebrate a"]) + let v = native_list_append(v, ["jrj ḥrrt", "verb", "ir-Hr:r-r:*t-Hn compound", "", "", "", "to flower to"]) + let v = native_list_append(v, ["sjzj", "verb", "s-i-z:nDs caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to lighten a"]) + let v = native_list_append(v, ["jmꜣḫ", "verb", "i-U2:x-imAx 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to be worthy"]) + let v = native_list_append(v, ["kj", "verb", "k-i-A2 2ae inf.", "archaic perfect perfective", "egy-conj-2ae-inf", "", "to clamor to"]) + let v = native_list_append(v, ["ꜣwj ḏrt", "verb", "Aw-d:t*Z1 compound", "", "", "", "to be generous"]) + let v = native_list_append(v, ["ꜣwj ḏrt r", "verb", "Aw-w-d:t*Z1-r compound", "", "", "", "to lay hands"]) + let v = native_list_append(v, ["ꜣwj-ꜥ", "verb", "Aw-w-a:Z1 compound", "", "", "", "to extend one’s"]) + let v = native_list_append(v, ["ꜣwḥ", "verb", "Aw-w-H-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "The meaning of"]) + let v = native_list_append(v, ["ꜣwr", "verb", "Aw-w-r-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tremble"]) + let v = native_list_append(v, ["ꜣwḫ", "verb", "Aw-w-x:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to serve"]) + let v = native_list_append(v, ["ꜥwn jb", "verb", "a-wn:n-D40:ib*Z1 compound", "", "", "", "to become greedy"]) + let v = native_list_append(v, ["bšṯ", "verb", "b-S:T-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rebel or"]) + let v = native_list_append(v, ["znj", "verb", "z:n-X5:D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to pass by"]) + let v = native_list_append(v, ["wꜥr", "verb", "w-a:r-rd-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to flee"]) + let v = native_list_append(v, ["ḫm", "verb", "x-m-D35 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to remain ignorant"]) + let v = native_list_append(v, ["gsꜣ", "verb", "g-s-sA-A-O37 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tilt"]) + let v = native_list_append(v, ["ḥwꜣ", "verb", "H-wA-Aa2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rot to"]) + let v = native_list_append(v, ["gmgm", "verb", "gm-m-gm-m-Z9 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to smash to"]) + let v = native_list_append(v, ["nznzn", "verb", "n:z:O47-z:n 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to burn up"]) + let v = native_list_append(v, ["smḫ", "verb", "s-m-x:D35 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to forget to"]) + let v = native_list_append(v, ["snq", "verb", "s-n:q-A2 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to suckle"]) + let v = native_list_append(v, ["ḫfꜥ", "verb", "x:f-a:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to grasp to"]) + let v = native_list_append(v, ["swḏꜣ", "verb", "s-w-DA-A-Y1 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to make sound"]) + let v = native_list_append(v, ["swḏꜣ jb", "verb", "s-W-DA-A-Y1:ib*Z1 compound", "", "", "", "to inform"]) + let v = native_list_append(v, ["ẖnn", "verb", "D33-n:n 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to trouble to"]) + let v = native_list_append(v, ["šꜥ", "verb", "S:a-T30 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to cut off"]) + let v = native_list_append(v, ["ḫwzj", "verb", "x-w-z-A34 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to pound"]) + let v = native_list_append(v, ["sꜥḥꜥ", "verb", "s-aHa-a:D54 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to set up"]) + let v = native_list_append(v, ["sḥrj", "verb", "s-Hr:r-A24 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to drive off"]) + let v = native_list_append(v, ["sḫꜥj", "verb", "s-xa:a-Y1V caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to make appear"]) + let v = native_list_append(v, ["ṯꜣj", "verb", "TA-A-D51:D40 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to take"]) + let v = native_list_append(v, ["ꜥꜥb", "verb", "a:a-b-db:D40", "", "", "", "to comb the"]) + let v = native_list_append(v, ["šnj", "verb", "Sn-n:V1-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to investigate to"]) + let v = native_list_append(v, ["zmꜣ", "verb", "z:U2-zmA-A-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to join to"]) + let v = native_list_append(v, ["zn", "verb", "z:X4:n 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to open"]) + let v = native_list_append(v, ["sṯꜣ", "verb", "V2:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to pull"]) + let v = native_list_append(v, ["jṯꜣ", "verb", "i-TA-A-D51:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to carry off"]) + let v = native_list_append(v, ["tmm", "verb", "t:tm-m-m 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to close"]) + let v = native_list_append(v, ["ḥpt", "verb", "H-p:t-D32:a 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to embrace"]) + let v = native_list_append(v, ["hbhb", "verb", "h-b-h-b-hb 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to knead"]) + let v = native_list_append(v, ["wꜣḫj", "verb", "wA-x 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become inundated"]) + let v = native_list_append(v, ["ḥbꜣbꜣ", "verb", "H-b-bA-A-b-bA-A-D54 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to waddle"]) + let v = native_list_append(v, ["ḫꜣḫꜣ", "verb", "xA-A-xA-A-TAw-a 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to winnow"]) + let v = native_list_append(v, ["wzš", "verb", "w-z:S-D53 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to urinate"]) + let v = native_list_append(v, ["pnꜥ", "verb", "p:n-a:P1A 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to overturn"]) + let v = native_list_append(v, ["sbq", "verb", "s-b-q-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become wise"]) + let v = native_list_append(v, ["wnwn", "verb", "wn:n-wn:n-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to move about"]) + let v = native_list_append(v, ["sḥḏ", "verb", "s-HD-D&ra caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to brighten"]) + let v = native_list_append(v, ["wdfj", "verb", "w-d:f-N31 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become late"]) + let v = native_list_append(v, ["ḫtm", "verb", "x:t-m-xtm 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to seal"]) + let v = native_list_append(v, ["ꜥnn", "verb", "a:n:n-D55 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to turn back"]) + let v = native_list_append(v, ["srd", "verb", "s-r:d-M32 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to cause to"]) + let v = native_list_append(v, ["snḫn", "verb", "s-n:x:n-Xrd caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to rear a"]) + let v = native_list_append(v, ["qmꜣ", "verb", "q:U2-A-T14 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to throw"]) + let v = native_list_append(v, ["wꜣ", "verb", "wA-A-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to brood over"]) + let v = native_list_append(v, ["bzj", "verb", "b-z:bz 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to emerge"]) + let v = native_list_append(v, ["ḥḥj", "verb", "H-H-D54 3ae inf.", "4ae inf.", "archaic perfect perfective", "", "to seek"]) + let v = native_list_append(v, ["sḏꜣ", "verb", "s-DA-A-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to transport"]) + let v = native_list_append(v, ["sgnn", "verb", "s-g:n:n-A7 caus. 2ae gem.", "archaic perfect perfective", "egy-conj-caus-2ae-gem", "", "to soften"]) + let v = native_list_append(v, ["stwt", "verb", "s-t:w-t-A53-Y1 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to reconcile to"]) + let v = native_list_append(v, ["sqdj", "verb", "s-qd-d:N33C-P1 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to travel by"]) + let v = native_list_append(v, ["sjdj", "verb", "s-i-d-A24 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to quell to"]) + let v = native_list_append(v, ["zfṯ", "verb", "z:f:T-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to slaughter to"]) + let v = native_list_append(v, ["sḫꜣj", "verb", "s-xA-A-A2 caus. 3ae inf.", "caus. 2-lit.", "archaic perfect perfective", "", "to recall to"]) + let v = native_list_append(v, ["wjn", "verb", "w-i-in:n-D41 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to spurn to"]) + let v = native_list_append(v, ["wꜥf", "verb", "W-a:f-V1:a 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to deflect"]) + let v = native_list_append(v, ["ꜥb", "verb", "a-b-F17-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to be dirty"]) + let v = native_list_append(v, ["šsꜣ", "verb", "S:z-Aa18-A-Z5:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become aware"]) + let v = native_list_append(v, ["ꜥrq", "verb", "a:r-q-arq:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bend"]) + let v = native_list_append(v, ["swꜣḏ", "verb", "s-M14 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to make green"]) + let v = native_list_append(v, ["ḫsr", "verb", "x-s-r:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to dispel to"]) + let v = native_list_append(v, ["wḥꜥ", "verb", "wHa:a-V1:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to loosen or"]) + let v = native_list_append(v, ["dꜣr", "verb", "d-A-r:T12 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to repulse or"]) + let v = native_list_append(v, ["ḥꜣp", "verb", "H-HA-A-p:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to conceal to"]) + let v = native_list_append(v, ["sḥꜣbj", "verb", "z-W4-t caus. 4ae inf.", "archaic perfect perfective", "egy-conj-caus-4ae-inf", "", "to make festive"]) + let v = native_list_append(v, ["tkk", "verb", "t:k:k-D40 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to violate to"]) + let v = native_list_append(v, ["ršw", "verb", "r:S-fnD:Y1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to rejoice"]) + let v = native_list_append(v, ["gmḥ", "verb", "gm-m-H-ir 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to observe"]) + let v = native_list_append(v, ["skꜣ", "verb", "s-kA-A-U13 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to plow"]) + let v = native_list_append(v, ["fḫ", "verb", "f:x-V12:D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to give up"]) + let v = native_list_append(v, ["dwꜣ", "verb", "dwA-A-A30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to worship to"]) + let v = native_list_append(v, ["sdmj", "verb", "s-d-mi-i caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to attach to"]) + let v = native_list_append(v, ["sbꜣqj", "verb", "s-b-bA-A-q:H_SPACE-Aa40-Y1 caus. 4ae inf.", "archaic perfect perfective", "egy-conj-caus-4ae-inf", "", "to brighten"]) + let v = native_list_append(v, ["sꜥsꜥ", "verb", "z:a-z:a-nDs 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to wreck"]) + let v = native_list_append(v, ["sꜥnj", "verb", "s-a:n-D5:Y1 caus. 3ae inf.", "caus. 2-lit.", "archaic perfect perfective", "", "to beautify"]) + let v = native_list_append(v, ["sḥꜣj", "verb", "s-HA-S28 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to strip to"]) + let v = native_list_append(v, ["ktt", "verb", "k:t*t-nDs 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become little"]) + let v = native_list_append(v, ["ꜥš", "verb", "a:S-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to summon someone"]) + let v = native_list_append(v, ["ḏsr", "verb", "Dsr:r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become sacred"]) + let v = native_list_append(v, ["swdfj", "verb", "s-W-d:D54-f caus. 4ae inf.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to delay"]) + let v = native_list_append(v, ["qsn", "verb", "q-qs-n:nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become physically"]) + let v = native_list_append(v, ["mhj", "verb", "m-D38:h-nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become forgetful"]) + let v = native_list_append(v, ["sḫm", "verb", "s-sxm-x-m 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become physically"]) + let v = native_list_append(v, ["qꜣj ḫrw", "verb", "q-A-A28-xrw-w compound", "", "", "", "to become boisterous"]) + let v = native_list_append(v, ["ḥwn", "verb", "H-M42:n-Xrd 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become young"]) + let v = native_list_append(v, ["sjhm", "verb", "s-i-h-m-D54 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to keep back"]) + let v = native_list_append(v, ["zpj", "verb", "z:p*zp 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to remain to"]) + let v = native_list_append(v, ["ꜥnḏ", "verb", "a:n-D:nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become few"]) + let v = native_list_append(v, ["nwj", "verb", "n:U19-nw*W:Y1-A24 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to gather"]) + let v = native_list_append(v, ["sꜣꜣ", "verb", "s-sA-A-A-A2 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become wise"]) + let v = native_list_append(v, ["ḥsb", "verb", "H-s-b-Z9 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to break apart"]) + let v = native_list_append(v, ["ꜣbḫ", "verb", "Ab-b-x:Z9 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to combine to"]) + let v = native_list_append(v, ["zbṯ", "verb", "z-b-T:D19 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to laugh"]) + let v = native_list_append(v, ["snm", "verb", "s-n:nm*m-G52-A2 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to feed someone"]) + let v = native_list_append(v, ["mꜣwj", "verb", "mA-A-w-Y1 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become new"]) + let v = native_list_append(v, ["mtr", "verb", "mt:t:r-Dba-Dba-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to witness"]) + let v = native_list_append(v, ["ḥzꜣ", "verb", "H-z:zA 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become wild"]) + let v = native_list_append(v, ["ḥns", "verb", "H-Hn:n-s-nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become narrow"]) + let v = native_list_append(v, ["ḫbꜣ", "verb", "x-b-bA-A-U7:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hack up"]) + let v = native_list_append(v, ["snḏm", "verb", "s-nDm-m-Y1 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to make pleasant"]) + let v = native_list_append(v, ["jtj", "verb", "iTi:t-A24 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "alternative form of"]) + let v = native_list_append(v, ["pẖr", "verb", "p:X-r:pXr 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to go around"]) + let v = native_list_append(v, ["ḥn", "verb", "H-Hn:n-V36-Y1V 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to bring a"]) + let v = native_list_append(v, ["mꜥkꜣ", "verb", "m-a:k-A-D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "The meaning of"]) + let v = native_list_append(v, ["dp", "verb", "d:p-ns 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to taste a"]) + let v = native_list_append(v, ["wmt", "verb", "w-mt:t-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become thick"]) + let v = native_list_append(v, ["dns", "verb", "d:n-s-U32-O39 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become physically"]) + let v = native_list_append(v, ["rwj", "verb", "r-w-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to get away"]) + let v = native_list_append(v, ["m ḏd", "verb", "m-D:d", "", "", "", "periphrastic imperfective of"]) + let v = native_list_append(v, ["sḏd", "verb", "s-D:d-A2 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to recount"]) + let v = native_list_append(v, ["sꜣsꜣ", "verb", "s-sA-A-s-sA-A-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to attack headlong"]) + let v = native_list_append(v, ["šfj", "verb", "S:f-F7 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to respect"]) + let v = native_list_append(v, ["zẖj", "verb", "z:X-sDm 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become deaf"]) + let v = native_list_append(v, ["snfj", "verb", "z:n:f-TAw-A24 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to let breathe"]) + let v = native_list_append(v, ["rḫs", "verb", "r:x-s-T30:a 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to butcher to"]) + let v = native_list_append(v, ["fꜣj", "verb", "f-A-A9 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to carry"]) + let v = native_list_append(v, ["njtjt", "verb", "n-i-t-i-t-A2 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to stammer"]) + let v = native_list_append(v, ["sꜣḫ", "verb", "s-Ax-x:Y1 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to make useful"]) + let v = native_list_append(v, ["spdḏ", "verb", "s-p:d-D-D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to prepare"]) + let v = native_list_append(v, ["sfḫḫ", "verb", "s-f:x*x-V12:D40 caus. 2ae gem.", "archaic perfect perfective", "egy-conj-caus-2ae-gem", "", "to loosen"]) + let v = native_list_append(v, ["smnḫ", "verb", "s-mn:n-x:Y1 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to make functional"]) + let v = native_list_append(v, ["srwj", "verb", "s-r-w-D54 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to remove"]) + let v = native_list_append(v, ["sšmj", "verb", "s-sSm-m-D54 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to lead to"]) + let v = native_list_append(v, ["qdd", "verb", "qd-d:d:N33C-D5 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to sleep"]) + let v = native_list_append(v, ["jp ḏt", "verb", "i-p:Y1-D:t*Z1 compound", "", "", "", "to collect oneself"]) + let v = native_list_append(v, ["jnq", "verb", "i-n:q-D32:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to embrace"]) + let v = native_list_append(v, ["ꜣbꜣb", "verb", "Ab-b-Ab-b-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "The meaning of"]) + let v = native_list_append(v, ["jdj", "verb", "i-d:sDm-Y1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become senseless"]) + let v = native_list_append(v, ["ꜥꜣj", "verb", "aA:a-A-Y1V 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become physically"]) + let v = native_list_append(v, ["ꜥꜣg", "verb", "aA:a-A-g-rd-a 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to thrash to"]) + let v = native_list_append(v, ["ꜥꜥj", "verb", "a:a-i-A2 3-lit.", "4-lit.", "archaic perfect perfective", "", "The meaning of"]) + let v = native_list_append(v, ["ꜥbj", "verb", "a-b-db:Y1 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥpj", "verb", "a:p*D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to pass through"]) + let v = native_list_append(v, ["ḥkn", "verb", "H-k:n:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cheer"]) + let v = native_list_append(v, ["zbj", "verb", "O35-b-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to lead"]) + let v = native_list_append(v, ["jmr", "verb", "i-U7:r-sDm 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become deaf"]) + let v = native_list_append(v, ["ḏbꜣ", "verb", "DbA-b-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to take someone"]) + let v = native_list_append(v, ["rḏj m ḥr", "verb", "r:D37-m-Hr:Z1 compound", "", "", "", "to call one’s"]) + let v = native_list_append(v, ["rmj", "verb", "r-m-rmi 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to cry to"]) + let v = native_list_append(v, ["zmꜣ tꜣ", "verb", "zmA-A-Y1:tA compound", "", "", "", "to unite the"]) + let v = native_list_append(v, ["sjnj", "verb", "s-i-in:n-D54 4ae inf.", "caus. 3ae inf.", "archaic perfect perfective", "", "to hesitate to"]) + let v = native_list_append(v, ["sḏwj", "verb", "s-Dw-w-nDs caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to slander"]) + let v = native_list_append(v, ["sḥqr", "verb", "s-H-q:r-nDs caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to starve someone"]) + let v = native_list_append(v, ["srmj", "verb", "s-r-m-D9 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to make someone"]) + let v = native_list_append(v, ["šnṯ", "verb", "S-Sn-n:T 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to denounce to"]) + let v = native_list_append(v, ["bdš", "verb", "b-d:S-A7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become weak"]) + let v = native_list_append(v, ["jnḥ", "verb", "i-in:n-H-V1:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to surround to"]) + let v = native_list_append(v, ["rḏj mꜣꜥ r", "verb", "r:D37-U2:mAa-a:H2-r compound", "", "", "", "to pay attention"]) + let v = native_list_append(v, ["mḏḥ", "verb", "T7-H-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hew wood"]) + let v = native_list_append(v, ["špsj", "verb", "Sps-s 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "synonym of špss"]) + let v = native_list_append(v, ["ḥwꜥ", "verb", "H-w-a:nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become short"]) + let v = native_list_append(v, ["gꜣw", "verb", "g-A-w-V32:nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become narrow"]) + let v = native_list_append(v, ["pꜣqj", "verb", "p:q-pAq 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become thin"]) + let v = native_list_append(v, ["ꜣfr", "verb", "A-f:r-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to boil to"]) + let v = native_list_append(v, ["ꜣj", "verb", "A-i-A2 2ae inf.", "archaic perfect perfective", "egy-conj-2ae-inf", "", "The meaning of"]) + let v = native_list_append(v, ["ꜣmj", "verb", "A-mi-i-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to mix +"]) + let v = native_list_append(v, ["ꜥm jb", "verb", "a-m-F10-A2-ib-Z1 compound", "", "", "", "to be neglectful"]) + let v = native_list_append(v, ["wꜣg", "verb", "wA-A-g-A2 3-lit.", "4ae inf.", "", "", "The meaning of"]) + let v = native_list_append(v, ["bꜥḥ", "verb", "b-a-H-K2-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to be detested"]) + let v = native_list_append(v, ["mtj", "verb", "mt:t*y-Dba-Dba-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become precise"]) + let v = native_list_append(v, ["ḥḏ ḥr", "verb", "HD-Hr compound", "", "", "", "to become cheerful"]) + let v = native_list_append(v, ["srwḏ", "verb", "s-r-wD-w-D:T12 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to strengthen"]) + let v = native_list_append(v, ["sḥtm", "verb", "s-H-tm-m-G38-nDs caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to destroy"]) + let v = native_list_append(v, ["sḥqꜣ", "verb", "z-HqA-q-A42 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to install as"]) + let v = native_list_append(v, ["ḏꜣj tꜣ", "verb", "DA-A-Z9-tA:N23*Z1-r compound", "", "", "", "to interfere +"]) + let v = native_list_append(v, ["šꜣs", "verb", "SA-A-z:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to travel to"]) + let v = native_list_append(v, ["sdm", "verb", "s-d-m-D7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to put makeup"]) + let v = native_list_append(v, ["jwḥ", "verb", "E9-w-H-mw-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to moisten to"]) + let v = native_list_append(v, ["nꜥꜥ", "verb", "n:a:a-Y4 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to be smooth"]) + let v = native_list_append(v, ["šmm", "verb", "S-m-m-Q7 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become hot"]) + let v = native_list_append(v, ["jwn", "verb", "E9:n-G49 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to unite something"]) + let v = native_list_append(v, ["dwn", "verb", "d-wn:n-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to stretch out"]) + let v = native_list_append(v, ["ḏnb", "verb", "D:n-b-Z9:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to turn off"]) + let v = native_list_append(v, ["wbḫ", "verb", "w-b-x-Z9:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become bright"]) + let v = native_list_append(v, ["ḏrj", "verb", "Dr:r-i-G41-nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "The meaning of"]) + let v = native_list_append(v, ["qrf", "verb", "q:r:f-V6-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bend together"]) + let v = native_list_append(v, ["ẖn", "verb", "Xn:n-D54 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to approach +"]) + let v = native_list_append(v, ["ḥꜥb", "verb", "H-a-b-Dba-Dba 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to play a"]) + let v = native_list_append(v, ["rkḥ", "verb", "r:k-H-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to light a"]) + let v = native_list_append(v, ["šꜣd", "verb", "SA-A-d-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to dig out"]) + let v = native_list_append(v, ["pzḥ", "verb", "p:z-H-bH-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bite"]) + let v = native_list_append(v, ["wtṯ", "verb", "w-t:T-D53 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to beget"]) + let v = native_list_append(v, ["nfj", "verb", "n:f-TAw-A24 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to exhale or"]) + let v = native_list_append(v, ["qꜣꜥ", "verb", "q-A-a-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to vomit to"]) + let v = native_list_append(v, ["ꜣẖꜥ", "verb", "A-X:a- 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to scratch with"]) + let v = native_list_append(v, ["ḏꜣf", "verb", "DA-A-f-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to burn"]) + let v = native_list_append(v, ["sfsf", "verb", "s-f:z:f-Q7 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to burn to"]) + let v = native_list_append(v, ["jrj ꜣbw", "verb", "ir-Ab-b-w-D54 compound", "", "", "", "to cease"]) + let v = native_list_append(v, ["ꜣbb", "verb", "Ab-b-b-Z5:D54 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to separate from"]) + let v = native_list_append(v, ["bšj", "verb", "b-S-D26 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to spit"]) + let v = native_list_append(v, ["psg", "verb", "p-s-g-D26 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to spit on"]) + let v = native_list_append(v, ["qjs", "verb", "q-i-s-D26-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to vomit"]) + let v = native_list_append(v, ["ssn", "verb", "s-s-sn-n:D19 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to breathe"]) + let v = native_list_append(v, ["tpr", "verb", "t*p:r-D19 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to breathe air"]) + let v = native_list_append(v, ["ẖdb", "verb", "X:d-b-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to kill a"]) + let v = native_list_append(v, ["zḫj", "verb", "z:x-A24 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to hit to"]) + let v = native_list_append(v, ["nqꜥ", "verb", "n:q-a:Z9-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to inscribe to"]) + let v = native_list_append(v, ["nbj", "verb", "n:nb-b- N36 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to swim"]) + let v = native_list_append(v, ["jꜥf", "verb", "i-a:f 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to wring out"]) + let v = native_list_append(v, ["ꜥnq", "verb", "a:n:q*D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to flow in"]) + let v = native_list_append(v, ["šfw", "verb", "S:f-Aa2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to swell up"]) + let v = native_list_append(v, ["mꜣẖ", "verb", "mA-A-X-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to burn up"]) + let v = native_list_append(v, ["ssf", "verb", "s-s-f-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to burn to"]) + let v = native_list_append(v, ["nẖs", "verb", "n:X-s- 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become rigid"]) + let v = native_list_append(v, ["bꜣj", "verb", "b-bA-A-mw 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to be damp"]) + let v = native_list_append(v, ["ꜣms", "verb", "A-ms-s-S44 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to wield the"]) + let v = native_list_append(v, ["sn-tꜣ", "verb", "z:n:fnD-N17:N21*Z1 compound", "", "", "", "to prostrate oneself"]) + let v = native_list_append(v, ["jbꜣ", "verb", "i-b-A-Y6 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to dance +"]) + let v = native_list_append(v, ["wḥꜣ", "verb", "w-HA-A-D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to separate by"]) + let v = native_list_append(v, ["dbḥ", "verb", "d:bH-b-H-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to need to"]) + let v = native_list_append(v, ["nhzj", "verb", "n:h:z-D5 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to become awake"]) + let v = native_list_append(v, ["zḫz", "verb", "z:x:z 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tear out"]) + let v = native_list_append(v, ["ꜣsḫ", "verb", "A-s-x:a 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "alternative spelling of"]) + let v = native_list_append(v, ["gnẖ", "verb", "g:n-X-N34 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to plate something"]) + let v = native_list_append(v, ["ršrš", "verb", "r:S-r:S-fnD 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to rejoice +"]) + let v = native_list_append(v, ["ẖkr", "verb", "X:k:r-Aa30-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become adorned"]) + let v = native_list_append(v, ["thj", "verb", "t:h-rd-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to transgress to"]) + let v = native_list_append(v, ["ftft", "verb", "f:t-f:t-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to leap to"]) + let v = native_list_append(v, ["ꜥḫm", "verb", "a:x-m-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to quench to"]) + let v = native_list_append(v, ["rḏj ḥr wꜣt", "verb", "r:D37-Hr:Z1-N31:t*Z1 compound", "", "", "", "to show the"]) + let v = native_list_append(v, ["sṯzj", "verb", "s-T:z-U39 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to raise to"]) + let v = native_list_append(v, ["ḫnp", "verb", "x:n-p:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to snatch to"]) + let v = native_list_append(v, ["swn", "verb", "s-M42:n 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to offer for"]) + let v = native_list_append(v, ["ksj", "verb", "k-s-A16 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to bow down"]) + let v = native_list_append(v, ["nrj", "verb", "n:r-mwt 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to fear to"]) + let v = native_list_append(v, ["ꜣr", "verb", "A-r:rwD-A24 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to drive off"]) + let v = native_list_append(v, ["wnj", "verb", "wn:n-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to rush to"]) + let v = native_list_append(v, ["ꜣhd", "verb", "A-h:d-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become weak"]) + let v = native_list_append(v, ["ꜣḫ jb", "verb", "Ax-x:H_SPACE-ib:Z1 compound", "", "", "", "to become well-disposed"]) + let v = native_list_append(v, ["sšr", "verb", "s-S:r-T11:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to coat to"]) + let v = native_list_append(v, ["sfḫ", "verb", "s-f:x-V12 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to loosen to"]) + let v = native_list_append(v, ["ḫꜣḫ", "verb", "xA-A-x:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become fast"]) + let v = native_list_append(v, ["ḫꜣm", "verb", "xA-A-m-D41 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bend one’s"]) + let v = native_list_append(v, ["rḏj wꜣt n", "verb", "r:D37-N31:t*Z1-n compound", "", "", "", "to give someone"]) + let v = native_list_append(v, ["wꜣḥ jb", "verb", "wAH-H-Y1V-ib:Z1 compound", "", "", "", "to be forbearing"]) + let v = native_list_append(v, ["ṯwn", "verb", "T-wn:n-F16 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to gore with"]) + let v = native_list_append(v, ["jꜣq", "verb", "i-A-HqA-q:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to climb up"]) + let v = native_list_append(v, ["ẖꜥq", "verb", "X:a-q:U37 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to shave"]) + let v = native_list_append(v, ["qdj", "verb", "qd-d:nw*D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "To go around."]) + let v = native_list_append(v, ["dḥr", "verb", "d-Hr:r-nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become bitter"]) + let v = native_list_append(v, ["ḫbs", "verb", "x-b-s-mr 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to break up"]) + let v = native_list_append(v, ["nqdd", "verb", "n-qd-d:d-D5 3ae gem.", "archaic perfect perfective", "egy-conj-3ae-gem", "", "to sleep"]) + let v = native_list_append(v, ["snfr", "verb", "s-nfr-f:r caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to beautify to"]) + let v = native_list_append(v, ["ḥww", "verb", "H-w-w 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to proclaim to"]) + let v = native_list_append(v, ["ḥꜣm", "verb", "HA-A-m- 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to catch a"]) + let v = native_list_append(v, ["ꜥrf", "verb", "a:r:f-V33 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to pack up"]) + let v = native_list_append(v, ["ḥmj", "verb", "N42-m-D55 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to give way"]) + let v = native_list_append(v, ["mꜥr", "verb", "m-a:r-Aa30-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become fortunate"]) + let v = native_list_append(v, ["nḫn", "verb", "n:x:n-Xrd 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become a"]) + let v = native_list_append(v, ["wš", "verb", "w-S:D3 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become bald"]) + let v = native_list_append(v, ["spḥ", "verb", "s-p-H-V1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to lasso animals"]) + let v = native_list_append(v, ["bꜥḥj", "verb", "b-a-H-G32-mw 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to flow"]) + let v = native_list_append(v, ["nḥr", "verb", "n-H-Hr:r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to match up"]) + let v = native_list_append(v, ["sjꜥr", "verb", "s-i-a:O41 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "Old Egyptian form"]) + let v = native_list_append(v, ["smꜣꜥ-ḫrw", "verb", "s-U5:a-Y1V-xrw-w-A2 compound", "", "", "", "to judge in"]) + let v = native_list_append(v, ["ḫntš", "verb", "x:n-t:S-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to walk about"]) + let v = native_list_append(v, ["ḥꜥḏꜣ", "verb", "H-a-DA-A-A24 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to rob someone"]) + let v = native_list_append(v, ["wfꜣ", "verb", "w-f-A-G38-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to discuss to"]) + let v = native_list_append(v, ["srf", "verb", "s-r:f-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become warm"]) + let v = native_list_append(v, ["nšp", "verb", "n:S-p:fnD-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to breathe"]) + let v = native_list_append(v, ["fdq", "verb", "f:d-q-Z9:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cut up"]) + let v = native_list_append(v, ["zfn", "verb", "z:f:n-fnD-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become gentle"]) + let v = native_list_append(v, ["skn", "verb", "s-k:n-I3 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become greedy"]) + let v = native_list_append(v, ["wrḏ", "verb", "wr:r-D-A7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become weary"]) + let v = native_list_append(v, ["ḏdꜣ", "verb", "D:d-A-Aa2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become fatty"]) + let v = native_list_append(v, ["rtḥ", "verb", "r:*t-H-U31 3-lit.", "", "", "", "to bake only"]) + let v = native_list_append(v, ["psj", "verb", "Q3:O34:I9-Q7 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to cook"]) + let v = native_list_append(v, ["nbnb", "verb", "nw:R7-nw:R7-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to bring forth"]) + let v = native_list_append(v, ["ḫnr", "verb", "x:n:r-U31:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to confine to"]) + let v = native_list_append(v, ["njk", "verb", "n-i-k:nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to punish especially"]) + let v = native_list_append(v, ["ḥnmnm", "verb", "H-n:nm*m-nm-m-D54 5-lit.", "", "", "", "to creep to"]) + let v = native_list_append(v, ["ḫnm", "verb", "x:n-nm-m-fnD 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to smell a"]) + let v = native_list_append(v, ["znb", "verb", "z:n-b- 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to break through"]) + let v = native_list_append(v, ["psš", "verb", "Q3:O34-N37:Z9-Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to divide to"]) + let v = native_list_append(v, ["mḥn", "verb", "mH:n-I12 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to encircle to"]) + let v = native_list_append(v, ["nk", "verb", "n:k-D53 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to copulate"]) + let v = native_list_append(v, ["dꜣdꜣ", "verb", "D46-G1-D46-G1-D53 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to copulate or"]) + let v = native_list_append(v, ["nhp", "verb", "n:h*p-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to leap +"]) + let v = native_list_append(v, ["dꜣ", "verb", "D46-G1-D53 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to copulate"]) + let v = native_list_append(v, ["ṯꜣm", "verb", "TA-A-m-S28 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cloak or"]) + let v = native_list_append(v, ["sꜥb", "verb", "S29-D36-D58-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to saw out"]) + let v = native_list_append(v, ["wšš", "verb", "W-S:S-D53 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rnn", "verb", "D21:N35:N35-B6 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to bring up"]) + let v = native_list_append(v, ["zbn", "verb", "O34-D58-N35:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to glide away"]) + let v = native_list_append(v, ["jwjw", "verb", "E9:W-E9:W-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to lament or"]) + let v = native_list_append(v, ["qnb", "verb", "q:n-b-W-O38-Y1-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bend to"]) + let v = native_list_append(v, ["ꜥꜣb", "verb", "aA:a-A-b-M19-Y1V 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become pleasing"]) + let v = native_list_append(v, ["wḫd", "verb", "G43-Aa1:D46-Aa2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to suffer something"]) + let v = native_list_append(v, ["ꜥnj", "verb", "a:n-D6 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to become beautiful"]) + let v = native_list_append(v, ["nwḫ", "verb", "N35:U19-W24:Z7-Aa1-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become scorched"]) + let v = native_list_append(v, ["bꜣẖ", "verb", "D58-F32:N25 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rise of"]) + let v = native_list_append(v, ["wḏj", "verb", "V25-w-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to depart"]) + let v = native_list_append(v, ["šfd", "verb", "S:f:d-Z9:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to grasp"]) + let v = native_list_append(v, ["nḏr", "verb", "n:Dr:r-U19 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to work wood"]) + let v = native_list_append(v, ["nḏꜣ", "verb", "n-DA-A-F10-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to be parched"]) + let v = native_list_append(v, ["qrr", "verb", "q:r:r-Q7 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to fire pottery"]) + let v = native_list_append(v, ["ḫrs", "verb", "x:r-s 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sẖkr", "verb", "S29-F32:V31-Aa30 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to decorate adorn"]) + let v = native_list_append(v, ["wzf", "verb", "w-z:f-G38-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to neglect to"]) + let v = native_list_append(v, ["sḏm ꜥš", "verb", "sDm:M-a:S-A2 compound", "", "", "", "to be a"]) + let v = native_list_append(v, ["qꜣs", "verb", "q-A-s-V1:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bind to"]) + let v = native_list_append(v, ["bḥnj", "verb", "b-H-n:T30 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to cut apart"]) + let v = native_list_append(v, ["sksj", "verb", "z:k:z-A16-D41:G37 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to make someone"]) + let v = native_list_append(v, ["ḥꜣḥꜣ", "verb", "M16-M16-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to stumble"]) + let v = native_list_append(v, ["rqj", "verb", "r:q-D41 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to turn aside"]) + let v = native_list_append(v, ["btꜣ", "verb", "b-t:U30-A-Z9:nDs 3-lit.", "", "", "", "to do wrong"]) + let v = native_list_append(v, ["ḏws", "verb", "Dw-w-s 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to falsely speak"]) + let v = native_list_append(v, ["pꜣz", "verb", "Q3-G40-A-O34:D12 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to suffer or"]) + let v = native_list_append(v, ["snḥ", "verb", "s-n-H-V1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tie up"]) + let v = native_list_append(v, ["sdwḫ", "verb", "s-d-w-x-Aa2:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to embalm"]) + let v = native_list_append(v, ["dgꜣj", "verb", "d-g-A-ir 3ae inf.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṯrm", "verb", "T:r-m-D6 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to wink to"]) + let v = native_list_append(v, ["šbn", "verb", "S-b-n:Z9 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to mix together"]) + let v = native_list_append(v, ["rḏj jn.tw", "verb", "D37-ini-n:t*W compound", "", "", "", "to send"]) + let v = native_list_append(v, ["smsm", "verb", "s-m-s-m-A19-A2 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to praise"]) + let v = native_list_append(v, ["wḏ-mdw", "verb", "wD-md-Y1:Z2 compound", "", "", "", "to command to"]) + let v = native_list_append(v, ["rḏj jwt", "verb", "D37:D54-w&t compound", "", "", "", "to send out"]) + let v = native_list_append(v, ["sšd", "verb", "s-Sd:d-I3 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to flash"]) + let v = native_list_append(v, ["dwꜣ nṯr n", "verb", "dwA-nTr-n compound", "", "", "", "to thank someone"]) + let v = native_list_append(v, ["sdꜣ", "verb", "s-d-A-G33-nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tremble to"]) + let v = native_list_append(v, ["ḫsfj", "verb", "x-s-U35-P2 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to sail upstream"]) + let v = native_list_append(v, ["skm", "verb", "s-km-m-Y1V caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to complete to"]) + let v = native_list_append(v, ["ḏnd", "verb", "D:n-d:F2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to rage to"]) + let v = native_list_append(v, ["ꜣfꜣf", "verb", "A:f-A:f-A30 4-lit.", "", "", "", "to acclaim to"]) + let v = native_list_append(v, ["swrd", "verb", "s-wr:r-d-Xrd-nDs caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to weary to"]) + let v = native_list_append(v, ["ꜣms-jb", "verb", "-ib:Z1 compound", "", "", "", "to become happy"]) + let v = native_list_append(v, ["sqbḥ", "verb", "s-q-b-H-W15 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to refresh the"]) + let v = native_list_append(v, ["ꜣḫ m jb", "verb", "Ax-x:Y1-m-ib*Z1 compound", "", "", "", "to find favour"]) + let v = native_list_append(v, ["sjn", "verb", "s-i-in:n-Aa2:N23 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to seal with"]) + let v = native_list_append(v, ["ꜥšꜣ-r", "verb", "aSA:Z2-r:Z1-A2 compound", "", "", "", "to become talkative"]) + let v = native_list_append(v, ["wꜥꜣ", "verb", "w-aA:a-A-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to speak evil"]) + let v = native_list_append(v, ["rqj jb", "verb", "r:q-D41:nDs-ib:Z1 compound", "", "", "", "to be oppositional"]) + let v = native_list_append(v, ["jwh", "verb", "E9-w-h-D41:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to load to"]) + let v = native_list_append(v, ["nms", "verb", "n:T34*m-s-D56-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to come to"]) + let v = native_list_append(v, ["tkꜣ", "verb", "t:kA-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to burn to"]) + let v = native_list_append(v, ["pzḫ", "verb", "p:z-x:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to be distraught"]) + let v = native_list_append(v, ["hd", "verb", "h:d-D41:D40 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to oppose to"]) + let v = native_list_append(v, ["tšꜣ", "verb", "t:SA-Z9:D36 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to smash heads"]) + let v = native_list_append(v, ["ḥjp", "verb", "Aa5:p-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hasten"]) + let v = native_list_append(v, ["tjtj", "verb", "t-i-t-i-D54 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to trample on"]) + let v = native_list_append(v, ["m-jr", "verb", "m-ir compound", "", "", "", "don’t forms the"]) + let v = native_list_append(v, ["m-dyt", "verb", "m-D37-i-i-t:Y1 compound", "", "", "", "don’t let …"]) + let v = native_list_append(v, ["m-jr-djt", "verb", "m-ir-D37:t compound", "", "", "", "don’t let …"]) + let v = native_list_append(v, ["ꜣḫfḫf", "verb", "A-x:f-x:f-Q7 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to be fiery"]) + let v = native_list_append(v, ["ꜣs jb", "verb", "A-s-V2:D54-ib:Z1 compound", "", "", "", "to be hasty"]) + let v = native_list_append(v, ["jꜣs", "verb", "i-A-s-A28 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become bald"]) + let v = native_list_append(v, ["ꜣzb", "verb", "A-z-b-F3 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to glow fiercely"]) + let v = native_list_append(v, ["ꜣk", "verb", "A-k:a 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become bent"]) + let v = native_list_append(v, ["wḏꜣ jb", "verb", "w-DA-A-Y1V-ib:Z1 compound", "", "", "", "to have one’s"]) + let v = native_list_append(v, ["ꜣṯj", "verb", "A-T-B5 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to nurse or"]) + let v = native_list_append(v, ["wḏb", "verb", "V24-b-F46:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to turn +"]) + let v = native_list_append(v, ["wbd", "verb", "w-b-d-Q7 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to burn to"]) + let v = native_list_append(v, ["ꜣd jb r", "verb", "A-d:I3-ib:Z1-r compound", "", "", "", "to rage at"]) + let v = native_list_append(v, ["ꜣdt", "verb", "A-d:t*Z5-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to prepare beds"]) + let v = native_list_append(v, ["kmm", "verb", "km-m 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to become black"]) + let v = native_list_append(v, ["nḫj", "verb", "n:x-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to lament ±"]) + let v = native_list_append(v, ["sšp", "verb", "s-S:p-N8 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become bright"]) + let v = native_list_append(v, ["ṯꜣr", "verb", "G47-G1-D21-V19 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to make fast"]) + let v = native_list_append(v, ["zḫn", "verb", "z:x:n-D32 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to happen by"]) + let v = native_list_append(v, ["sḏfꜣ", "verb", "s-D:f-A-G42-X4:Z2 caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to supply people"]) + let v = native_list_append(v, ["bhd", "verb", "b-h:d-fnD 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to inhale a"]) + let v = native_list_append(v, ["ssꜣj", "verb", "s-s-sA-A-A2 caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to sate +"]) + let v = native_list_append(v, ["ḏdb", "verb", "D:d-b-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to sting to"]) + let v = native_list_append(v, ["kfꜣ", "verb", "k:f-A-pH:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become discreet"]) + let v = native_list_append(v, ["mnmn", "verb", "mn:n-mn:n-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to move"]) + let v = native_list_append(v, ["nmnm", "verb", "n:nm*m-n:nm*m-D54 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to bestir oneself"]) + let v = native_list_append(v, ["kfj", "verb", "k:f-S28 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to remove clothing"]) + let v = native_list_append(v, ["sẖr", "verb", "s-X:r-T11:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "alternative form of"]) + let v = native_list_append(v, ["hwhw", "verb", "h-W-h-W-D54 4-lit.", "", "", "", "to scurry to"]) + let v = native_list_append(v, ["kfꜣ-jb", "verb", "k:f-A-pH:Y1-ib:Z1 compound", "", "", "", "to become trustworthy"]) + let v = native_list_append(v, ["ḫnz", "verb", "x:n-z:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to traverse to"]) + let v = native_list_append(v, ["šbb", "verb", "S-b-b-Z9-A24 2ae gem.", "archaic perfect perfective", "egy-conj-2ae-gem", "", "to knead to"]) + let v = native_list_append(v, ["ꜥtḫ", "verb", "a:t**x-A24 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to press a"]) + let v = native_list_append(v, ["ḥdb", "verb", "H-d-b-A15:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to overthrow to"]) + let v = native_list_append(v, ["smt", "verb", "s-D52:t-F21 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to hear to"]) + let v = native_list_append(v, ["wꜣr", "verb", "w-wA-A-r 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to tie up"]) + let v = native_list_append(v, ["šꜣrm", "verb", "SA-A-r:Z1-M:a-A30", "", "", "", "to sue for"]) + let v = native_list_append(v, ["dꜣjr", "verb", "d-A-i-r-T12-A24", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bjf", "verb", "b-i-f:D6 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to cry"]) + let v = native_list_append(v, ["jmḥ", "verb", "i-", "archaic perfect perfective", "egy-conj-3-lit", "", "to sip"]) + let v = native_list_append(v, ["wsj", "verb", "w-s-T30 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to saw to"]) + let v = native_list_append(v, ["swḫꜣ", "verb", "s-w-xA-A-nDs caus. 3-lit.", "archaic perfect perfective", "egy-conj-caus-3-lit", "", "to befool to"]) + let v = native_list_append(v, ["swḫ", "verb", "s-w-x-N2 caus. 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wšn", "verb", "w-S:n-H1:D40 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to wring the"]) + let v = native_list_append(v, ["jsbnbn", "verb", "i-s-b:n-b-N-D54", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["wrm", "verb", "wr:r-m 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to grow to"]) + let v = native_list_append(v, ["ḏrḏr", "verb", "Dr:r-Dr:r-i-A24-Y1V 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to become strange"]) + let v = native_list_append(v, ["jtp", "verb", "i-t:p-A9 3-lit.", "", "", "", "Greco-Roman Period form"]) + let v = native_list_append(v, ["dbꜣ", "verb", "d-b-A-D12:A15 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to fall to"]) + let v = native_list_append(v, ["rmrm", "verb", "r-m-r-m-Z9:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to chastise to"]) + let v = native_list_append(v, ["bns", "verb", "R7*W24:z-T30 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to pierce to"]) + let v = native_list_append(v, ["mṯꜣ", "verb", "m-TA-A-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to challenge to"]) + let v = native_list_append(v, ["qmd", "verb", "q-m-d-:A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to think of"]) + let v = native_list_append(v, ["ꜥmḏ", "verb", "a-G20-U28-D55 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to turn away"]) + let v = native_list_append(v, ["pḏ nmtt", "verb", "T9-D54:X1*Z1 compound", "", "", "", "to stride widely"]) + let v = native_list_append(v, ["pḏ", "verb", "p:D-T9 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to stretch out"]) + let v = native_list_append(v, ["dḫ", "verb", "d:x- 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to hide to"]) + let v = native_list_append(v, ["ḥnzk", "verb", "H-W10:n-z:k-V1:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to bind to"]) + let v = native_list_append(v, ["jꜣj", "verb", "i-A-A30 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to praise to"]) + let v = native_list_append(v, ["jꜣꜥš", "verb", "i-A-a:S-A2", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜣṯ", "verb", "i-A-T-D57 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become injured"]) + let v = native_list_append(v, ["jꜣm", "verb", "i-A-m-V1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bind cattle"]) + let v = native_list_append(v, ["šnꜥ", "verb", "Sn:n-a:D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to drive off"]) + let v = native_list_append(v, ["sjp", "verb", "s-i-p:Y1 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to deliver to"]) + let v = native_list_append(v, ["jrj ḫprw", "verb", "ir-xpr:r-w-A53-Y1:Z2 compound", "", "", "", "to take on"]) + let v = native_list_append(v, ["ẖꜣk", "verb", "XA-A-k 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to become cunning"]) + let v = native_list_append(v, ["jꜣrr", "verb", "i-A-r:*r-D7 3ae gem.", "archaic perfect perfective", "egy-conj-3ae-gem", "", "to become dim"]) + let v = native_list_append(v, ["jꜣd", "verb", "i-A-d:nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to suffer"]) + let v = native_list_append(v, ["jꜥ", "verb", "i- a 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["szf", "verb", "z:z-f-D20-A2 caus. 2-lit.", "archaic perfect perfective", "egy-conj-caus-2-lit", "", "to mollify to"]) + let v = native_list_append(v, ["zf", "verb", "z:f-D19-A2 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become gentle"]) + let v = native_list_append(v, ["jdn", "verb", "i-d:n-idn:Y1 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to serve in"]) + let v = native_list_append(v, ["dꜣr jb", "verb", "d-A-r:rwd-Y1-ib:Z1 compound", "", "", "", "to control oneself"]) + let v = native_list_append(v, ["ꜥḫj", "verb", "a:x- 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to raise something"]) + let v = native_list_append(v, ["mḥ rdwj", "verb", "mH-r:d-w&y-rd-rd compound", "", "", "", "to hurry up"]) + let v = native_list_append(v, ["nḏdḏd", "verb", "n-D:d-D:d 5-lit.", "archaic perfect perfective", "egy-conj-5-lit", "", "to endure"]) + let v = native_list_append(v, ["ḫfꜣj", "verb", "x:f-A-D54 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to illuminate something"]) + let v = native_list_append(v, ["ḫfꜣ", "verb", "x:f-A-A2 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to nourish oneself"]) + let v = native_list_append(v, ["ḥntj", "verb", "H-Hn:n-t:I3-A24 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to be greedy"]) + let v = native_list_append(v, ["whj", "verb", "w-h:nDs 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to escape to"]) + let v = native_list_append(v, ["nhnh", "verb", "n:h-n:h-A 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to quake with"]) + let v = native_list_append(v, ["grg pr", "verb", "g:r-grg-Y1V-pr:Z1 compound", "", "", "", "to establish a"]) + let v = native_list_append(v, ["bhꜣ", "verb", "b-h-A-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to flee to"]) + let v = native_list_append(v, ["sšwj", "verb", "s-Sw-w-nDs caus. 3ae inf.", "archaic perfect perfective", "egy-conj-caus-3ae-inf", "", "to deprive someone"]) + let v = native_list_append(v, ["mḏd", "verb", "m-D:d-Aa23 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to physically strike"]) + let v = native_list_append(v, ["ḥbs bht", "verb", "H-b-s-S28-D40-b-h:t-S35 compound", "", "", "", "to bear a"]) + let v = native_list_append(v, ["ḥbs bhn", "verb", "H-b-V6-s-b-h:n-S45\\ compound", "", "", "", "to protect"]) + let v = native_list_append(v, ["ḥbs ḥr r", "verb", "H-b-s-S28-Hr:Z1-r compound", "", "", "", "to not want"]) + let v = native_list_append(v, ["bḥ", "verb", "b-H-Y1-A24 2-lit.", "archaic perfect perfective", "egy-conj-2-lit", "", "to become obligated"]) + let v = native_list_append(v, ["ḥwnj", "verb", "H-A24-n:y", "", "", "", "to hit to"]) + let v = native_list_append(v, ["mḏd wꜣt", "verb", "Aa23-d-A24-wA-t:N31 compound", "", "", "", "to be loyal"]) + let v = native_list_append(v, ["mḏd mṯn", "verb", "G20-D:d-Aa23-m-a:T:n-T14-G41-N31 compound", "", "", "", "to be loyal"]) + let v = native_list_append(v, ["jqḥ", "verb", "i-q-H-D54 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to enter a"]) + let v = native_list_append(v, ["qḥqḥ", "verb", "q-H-q-H-D51:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to hammer to"]) + let v = native_list_append(v, ["ḥrtj", "verb", "Hr:r-t:y-D54 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to travel by"]) + let v = native_list_append(v, ["sdgꜣ", "verb", "S29-D46:W11-G1-A4-D54 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "& intransitive to"]) + let v = native_list_append(v, ["ꜥrꜥr", "verb", "a:r-a:r-Z9:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to carry out"]) + let v = native_list_append(v, ["rmnj", "verb", "r:mn-n:D41 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to carry to"]) + let v = native_list_append(v, ["jꜥj ḥr", "verb", "i-a:N35B-Hr:Z1 compound", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["jꜥj jb", "verb", "i-a:N35B-ib:Z1 compound", "", "", "", "to become happy"]) + let v = native_list_append(v, ["jꜥj nbw", "verb", "i-a:N35B-nbw:N33C*Z2ss compound", "", "", "", "to separate the"]) + let v = native_list_append(v, ["jꜥꜥw", "verb", "i-a:a-w:D40 3-lit.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jꜥb ẖꜣt", "verb", "i-a:W10-b-XA:t*Aa2 compound", "", "", "", "to bury a"]) + let v = native_list_append(v, ["ꜥb ḫt", "verb", "a:W10-b-x:t compound", "", "", "", "to make an"]) + let v = native_list_append(v, ["ꜥš ḥꜣt", "verb", "a:S-A2-HAt:t*Z1 compound", "", "", "", "to act as"]) + let v = native_list_append(v, ["ꜥšj", "verb", "a:S-Aa2-A2 3ae inf.", "archaic perfect perfective", "egy-conj-3ae-inf", "", "to moan to"]) + let v = native_list_append(v, ["mrḥ", "verb", "U7:r-H-nDs 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to fall to"]) + let v = native_list_append(v, ["mḫꜣ", "verb", "m-a:x-xA-A-U38 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to bring a"]) + let v = native_list_append(v, ["wšd r mdwt", "verb", "w-Sd:d-A2-r-md-d:t-A2 compound", "", "", "", "to invite to"]) + let v = native_list_append(v, ["ḫꜣbwsꜣ", "verb", "xA-A-b-W-Aa18:Z1-N8 3-lit.", "archaic perfect perfective", "egy-conj-3-lit", "", "to shine"]) + let v = native_list_append(v, ["jwḥ m zšn", "verb", "E9:bH-N36-", "", "", "", "to deck with"]) + let v = native_list_append(v, ["rḏj jb m sꜣ", "verb", "r:D37-ib:Z1-m-Aa18:Z1 compound", "", "", "", "to trouble oneself"]) + let v = native_list_append(v, ["rḏj m jb", "verb", "r:D37-m-ib:Z1 compound", "", "", "", "to come to"]) + let v = native_list_append(v, ["rḏj jb ḫnt", "verb", "r:D37-ib:Z1-xnt-n:t compound", "", "", "", "to attend to"]) + let v = native_list_append(v, ["rḏj jb n", "verb", "r:D37-ib:Z1-n compound", "", "", "", "to set one’s"]) + let v = native_list_append(v, ["rḏj jb", "verb", "D37-ib:Z1-D54 compound", "", "", "", "to go or"]) + let v = native_list_append(v, ["rḏj jp ḥr", "verb", "r-di-i-p-Hr:Z1 compound", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["tḫtḫ", "verb", "t:x-t:x-Z9:D40 4-lit.", "archaic perfect perfective", "egy-conj-4-lit", "", "to confuse to"]) + let v = native_list_append(v, ["jfdj", "verb", "i-f:d-D41:Z1*Z1*Z1*Z1 4ae inf.", "archaic perfect perfective", "egy-conj-4ae-inf", "", "to quadruple"]) + let v = native_list_append(v, ["jmꜣ-jb", "verb", "M1-m-ib:Z1 compound", "", "", "", "to become friendly"]) + let v = native_list_append(v, ["pḥ jmꜣḫ", "verb", "pH:D54-imAx:Z1 compound", "", "", "", "to attain venerable"]) + let v = native_list_append(v, ["jrj jmn", "verb", "ir-i-mn:n compound", "", "", "", "to make one’s"]) + let v = native_list_append(v, ["n", "adj", "n", "", "", "", "abbreviation of nj"]) + let v = native_list_append(v, ["km", "adj", "km", "", "kmt", "", "perfective active participle"]) + let v = native_list_append(v, ["jr", "adj", "jr", "", "", "", "abbreviation of jrj"]) + let v = native_list_append(v, ["ḥrj", "adj", "ḥrj", "", "ḥrt", "", "upper being above"]) + let v = native_list_append(v, ["ḥꜣtj", "adj", "ḥꜣtj", "", "ḥꜣtt", "", "frontal"]) + let v = native_list_append(v, ["ꜥšꜣ", "adj", "ꜥšꜣ", "", "ꜥšꜣt", "", "perfective active participle"]) + let v = native_list_append(v, ["nfr", "adj", "nfr", "", "nfrt", "", "perfective active participle"]) + let v = native_list_append(v, ["ḏw", "adj", "ḏw", "", "ḏwt", "", "perfective active participle"]) + let v = native_list_append(v, ["jm", "adj", "jm", "", "", "", "abbreviation of jmj"]) + let v = native_list_append(v, ["jrj", "adj", "jrj", "", "jrt", "", "pertaining to relating"]) + let v = native_list_append(v, ["nj", "adj", "nj", "", "n:t", "", "of belonging to"]) + let v = native_list_append(v, ["ꜥꜣ", "adj", "ꜥꜣ", "", "ꜥꜣt", "", "perfective active participle"]) + let v = native_list_append(v, ["wꜥ", "adj", "wꜥ", "", "wꜥt", "", "alone"]) + let v = native_list_append(v, ["ntt", "adj", "ntt", "", "n:*t*t", "", "feminine singular of"]) + let v = native_list_append(v, ["jmn", "adj", "jmn", "", "jmnt", "", "perfective active participle"]) + let v = native_list_append(v, ["nṯrj", "adj", "nṯrj", "", "nṯrt", "", "divine holy"]) + let v = native_list_append(v, ["dšr", "adj", "dšr", "", "dšrt", "", "perfective active participle"]) + let v = native_list_append(v, ["jw", "adj", "jw", "", "jwt", "", "perfective passive participle"]) + let v = native_list_append(v, ["ḥrt", "adj", "ḥrt", "", "Hr:r-t:pt", "", "feminine singular of"]) + let v = native_list_append(v, ["nfrt", "adj", "nfrt", "", "nfr-f:r:t", "", "feminine singular of"]) + let v = native_list_append(v, ["nḏm", "adj", "nḏm", "", "nḏmt", "", "perfective active participle"]) + let v = native_list_append(v, ["jmꜣ", "adj", "jmꜣ", "", "jmꜣt", "", "perfective active participle"]) + let v = native_list_append(v, ["bjn", "adj", "bjn", "", "bjnt", "", "perfective active participle"]) + let v = native_list_append(v, ["wr", "adj", "wr", "", "wrt", "", "perfective active participle"]) + let v = native_list_append(v, ["nḏs", "adj", "nḏs", "", "nḏst", "", "perfective active participle"]) + let v = native_list_append(v, ["wsr", "adj", "wsr", "", "wsrt", "", "perfective active participle"]) + let v = native_list_append(v, ["šw", "adj", "šw", "", "šwt", "", "perfective active participle"]) + let v = native_list_append(v, ["rsj", "adj", "rsj", "", "rst", "", "southern"]) + let v = native_list_append(v, ["jqr", "adj", "jqr", "", "jqrt", "", "perfective active participle"]) + let v = native_list_append(v, ["wꜣḏ", "adj", "wꜣḏ", "", "wꜣḏt", "", "perfective active participle"]) + let v = native_list_append(v, ["wꜥb", "adj", "wꜥb", "", "wꜥbt", "", "perfective active participle"]) + let v = native_list_append(v, ["ḫftj", "adj", "ḫftj", "", "ḫftt", "", "opposing"]) + let v = native_list_append(v, ["ḫftt", "adj", "ḫftt", "", "x:f:t*t", "", "feminine singular of"]) + let v = native_list_append(v, ["nfrw", "adj", "nfrw", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["nwtj", "adj", "nwtj", "", "nwtt", "", "local municipal"]) + let v = native_list_append(v, ["mry", "adj", "mry", "", "mrt", "", "perfective passive participle"]) + let v = native_list_append(v, ["jmj", "adj", "jmj", "", "jmt", "", "being in inherent"]) + let v = native_list_append(v, ["ẖrj", "adj", "ẖrj", "", "ẖrt", "", "lower lying under"]) + let v = native_list_append(v, ["mjtj", "adj", "mjtj", "", "mjtt", "", "similar equal"]) + let v = native_list_append(v, ["mjt", "adj", "mjt", "", "", "", "abbreviation of mjtj"]) + let v = native_list_append(v, ["ḥꜣj", "adj", "ḥꜣj", "", "ḥꜣt", "", "surrounding"]) + let v = native_list_append(v, ["ḥnꜥj", "adj", "ḥnꜥj", "", "ḥnꜥt", "", "accompanying"]) + let v = native_list_append(v, ["ḫntj", "adj", "ḫntj", "", "ḫntt", "", "foremost"]) + let v = native_list_append(v, ["ḫrj", "adj", "ḫrj", "", "ḫrt", "", "present in the"]) + let v = native_list_append(v, ["tpj", "adj", "tpj", "", "tpt", "", "being on top"]) + let v = native_list_append(v, ["jmy", "adj", "jmy", "", "", "", "of belonging to"]) + let v = native_list_append(v, ["snnw", "adj", "snnw", "", "snnwt", "", "second"]) + let v = native_list_append(v, ["ḫmtnw", "adj", "ḫmtnw", "", "ḫmtnwt", "", "third"]) + let v = native_list_append(v, ["jfdnw", "adj", "jfdnw", "", "jfdnwt", "", "fourth"]) + let v = native_list_append(v, ["djnw", "adj", "djnw", "", "djnwt", "", "fifth"]) + let v = native_list_append(v, ["sjsnw", "adj", "sjsnw", "", "sjsnwt", "", "sixth"]) + let v = native_list_append(v, ["sfḫnw", "adj", "sfḫnw", "", "sfḫnwt", "", "seventh"]) + let v = native_list_append(v, ["ḫmnnw", "adj", "ḫmnnw", "", "ḫmnnwt", "", "eighth"]) + let v = native_list_append(v, ["psḏnw", "adj", "psḏnw", "", "psḏnwt", "", "ninth"]) + let v = native_list_append(v, ["wꜥ wꜥ", "adj", "wꜥ wꜥ", "", "", "", "one each singly"]) + let v = native_list_append(v, ["mnḫ", "adj", "mnḫ", "", "mnḫt", "", "perfective active participle"]) + let v = native_list_append(v, ["mḥtj", "adj", "mḥtj", "", "mḥtt", "", "northern"]) + let v = native_list_append(v, ["mꜣꜥtj", "adj", "mꜣꜥtj", "", "mꜣꜥtt", "", "righteous"]) + let v = native_list_append(v, ["wsḫ", "adj", "wsḫ", "", "wsḫt", "", "perfective active participle"]) + let v = native_list_append(v, ["ntj", "adj", "ntj", "", "ntt", "", "the relative adjective"]) + let v = native_list_append(v, ["ntjw", "adj", "ntjw", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["jwtj", "adj", "jwtj", "", "jwtt", "", "the negative relative"]) + let v = native_list_append(v, ["štꜣ", "adj", "štꜣ", "", "štꜣt", "", "perfective active participle"]) + let v = native_list_append(v, ["ꜣḫtj", "adj", "ꜣḫtj", "", "ꜣḫtt", "", "of relating to"]) + let v = native_list_append(v, ["mꜣꜥ-ḫrw", "adj", "mꜣꜥ-ḫrw", "", "mꜣꜥt-ḫrw", "", "said after mentioning"]) + let v = native_list_append(v, ["wnmj", "adj", "wnmj", "", "wnmt", "", "right direction"]) + let v = native_list_append(v, ["jꜣbtj", "adj", "jꜣbtj", "", "jꜣbtt", "", "eastern"]) + let v = native_list_append(v, ["šps", "adj", "šps", "", "špst", "", "perfective active participle"]) + let v = native_list_append(v, ["ḥrj jb", "adj", "ḥrj jb", "", "ḥrt jb", "", "being in the"]) + let v = native_list_append(v, ["jmntj", "adj", "jmntj", "", "jmntt", "", "western"]) + let v = native_list_append(v, ["ḥrj-tp", "adj", "ḥrj-tp", "", "ḥrt-tp", "", "being atop"]) + let v = native_list_append(v, ["dwꜣtj", "adj", "dwꜣtj", "", "dwꜣtt", "", "belonging to the"]) + let v = native_list_append(v, ["mjwj", "adj", "mjwj", "", "mjwt", "", "analogous"]) + let v = native_list_append(v, ["nḫ", "adj", "nḫ", "", "nḫt", "", "perfective active participle"]) + let v = native_list_append(v, ["smsw", "adj", "smsw", "", "smswt", "", "eldest"]) + let v = native_list_append(v, ["jmj ḥꜣt", "adj", "jmj ḥꜣt", "", "jmt ḥꜣt", "", "forward anterior being"]) + let v = native_list_append(v, ["jmj ḫt", "adj", "jmj ḫt", "", "jmt ḫt", "", "being behind spatially"]) + let v = native_list_append(v, ["jmj bꜣḥ", "adj", "jmj bꜣḥ", "", "jmt bꜣḥ", "", "being in the"]) + let v = native_list_append(v, ["jꜣbj", "adj", "jꜣbj", "", "jꜣbt", "", "eastern"]) + let v = native_list_append(v, ["smḥj", "adj", "smḥj", "", "smḥt", "", "left direction"]) + let v = native_list_append(v, ["wꜥtj", "adj", "wꜥtj", "", "wꜥtt", "", "sole single only"]) + let v = native_list_append(v, ["pꜣwtj", "adj", "pꜣwtj", "", "pꜣwtt", "", "primaeval especially of"]) + let v = native_list_append(v, ["qnw", "adj", "qnw", "", "", "", "numerous many"]) + let v = native_list_append(v, ["bꜣẖ", "adj", "bꜣẖ", "", "bꜣẖt", "", "bright light"]) + let v = native_list_append(v, ["ḏrḏr", "adj", "ḏrḏr", "", "ḏrḏrt", "", "perfective active participle"]) + let v = native_list_append(v, ["ḫpp", "adj", "ḫpp", "", "ḫppt", "", "strange weird unfamiliar"]) + let v = native_list_append(v, ["n wn mꜣꜥ", "adj", "n wn mꜣꜥ", "", "nt wn mꜣꜥ", "", "real proper true"]) + let v = native_list_append(v, ["jp-jb", "adj", "jp-jb", "", "jpt-jb", "", "shrewd judicious discerning"]) + let v = native_list_append(v, ["jp m jb", "adj", "jp m jb", "", "jpt m jb", "", "synonym of jp-jb"]) + let v = native_list_append(v, ["mr-snm", "adj", "mr-snm", "", "", "", "very sad +"]) + let v = native_list_append(v, ["A", "other", "A", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mi", "other", "mi", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["at", "other", "at", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["an", "other", "an", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ant", "other", "ant", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sy", "other", "sy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j", "other", "j", "", "", "", "O! vocative interjection"]) + let v = native_list_append(v, ["s", "other", "s", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["dy", "other", "dy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ra", "other", "ra", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sg", "other", "sg", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3", "other", "3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["-y", "other", "-y", "", "", "", "Forms the plural"]) + let v = native_list_append(v, ["33", "other", "33", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["bin", "other", "bin", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["bint", "other", "bint", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["-t", "other", "-t", "", "", "", "Used to form"]) + let v = native_list_append(v, ["pH", "other", "pH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["wi", "other", "wi", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["s-", "other", "s-", "", "", "", "Used to form"]) + let v = native_list_append(v, ["st", "other", "st", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["-j", "other", "-j", "", "", "", "Marks the dual"]) + let v = native_list_append(v, ["swab", "other", "swab", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["HD", "other", "HD", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Am", "other", "Am", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["As", "other", "As", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["At", "other", "At", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mA", "other", "mA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sr", "other", "sr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["nb", "other", "nb", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["wA", "other", "wA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["jr", "other", "jr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["zH", "other", "zH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sA", "other", "sA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["bf", "other", "bf", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3d", "other", "3d", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["rx", "other", "rx", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["iwa", "other", "iwa", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["wa", "other", "wa", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["nar", "other", "nar", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Axt", "other", "Axt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Ast", "other", "Ast", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["m wHm-a", "other", "m wHm-a", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["𓅔", "other", "𓅔", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["imn", "other", "imn", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["wrH", "other", "wrH", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["inpw", "other", "inpw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["iar", "other", "iar", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["aA", "other", "aA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, [".fi", "other", ".fi", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, [".in", "other", ".in", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, [".ki", "other", ".ki", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, [".ni", "other", ".ni", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, [".si", "other", ".si", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, [".tw", "other", ".tw", "", "", "", "forms the passive"]) + let v = native_list_append(v, ["hy", "other", "hy", "", "", "", "O hey hail"]) + let v = native_list_append(v, ["nTr", "other", "nTr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["pA", "other", "pA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["bik", "other", "bik", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ḥfn", "other", "ḥfn", "", "", "", "hundred thousand"]) + let v = native_list_append(v, ["maq", "other", "maq", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["snt", "other", "snt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["hA", "other", "hA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["kA", "other", "kA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["n-", "other", "n-", "", "", "", "forms intransitive or"]) + let v = native_list_append(v, ["nxt", "other", "nxt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["aS", "other", "aS", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["kS", "other", "kS", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["aH", "other", "aH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mH", "other", "mH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["xai", "other", "xai", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["HA", "other", "HA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ṯst", "other", "ṯst", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["nfr", "other", "nfr", "", "", "", "good sure fine"]) + let v = native_list_append(v, ["𓀀", "other", "𓀀", "", "", "", "Logogram for z"]) + let v = native_list_append(v, ["m3", "other", "m3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["𓀁", "other", "𓀁", "", "", "", "Determinative for eating"]) + let v = native_list_append(v, ["bA", "other", "bA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["𓅡", "other", "𓅡", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓃀", "other", "𓃀", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["𓅄", "other", "𓅄", "", "", "", "Determinative in bjk"]) + let v = native_list_append(v, ["𓊛", "other", "𓊛", "", "", "", "Logogram for jmw"]) + let v = native_list_append(v, ["ptr", "other", "ptr", "", "", "", "behold lo look"]) + let v = native_list_append(v, ["Say", "other", "Say", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["𓉗", "other", "𓉗", "", "", "", "Triliteral phonogram for"]) + let v = native_list_append(v, ["𓊁", "other", "𓊁", "", "", "", "Used to mark"]) + let v = native_list_append(v, ["zA", "other", "zA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["m-", "other", "m-", "", "", "", "forms masculine abstract"]) + let v = native_list_append(v, ["𓄈", "other", "𓄈", "", "", "", "Logogram for ꜥm"]) + let v = native_list_append(v, ["jd", "other", "jd", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, [".nj", "other", ".nj", "", "", "", "Sometimes used to"]) + let v = native_list_append(v, [".n", "other", ".n", "", "", "", "Forms the perfect"]) + let v = native_list_append(v, ["mḥ-t3", "other", "mḥ-t3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3-t3", "other", "ḫ3-t3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mḥ", "other", "mḥ", "", "", "", "Forms ordinal numbers"]) + let v = native_list_append(v, ["ḏbꜥ", "other", "ḏbꜥ", "", "", "", "ten thousand"]) + let v = native_list_append(v, ["šsp", "other", "šsp", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["wꜥ", "other", "wꜥ", "", "", "", "one"]) + let v = native_list_append(v, ["snwj", "other", "snwj", "", "", "", "two"]) + let v = native_list_append(v, ["ḫmtw", "other", "ḫmtw", "", "", "", "three"]) + let v = native_list_append(v, ["ḫmnw", "other", "ḫmnw", "", "", "", "eight"]) + let v = native_list_append(v, ["jfdw", "other", "jfdw", "", "", "", "four"]) + let v = native_list_append(v, ["djw", "other", "djw", "", "", "", "five"]) + let v = native_list_append(v, ["sjsw", "other", "sjsw", "", "", "", "six"]) + let v = native_list_append(v, ["sfḫw", "other", "sfḫw", "", "", "", "seven"]) + let v = native_list_append(v, ["psḏw", "other", "psḏw", "", "", "", "nine"]) + let v = native_list_append(v, ["mḏw", "other", "mḏw", "", "", "", "ten"]) + let v = native_list_append(v, ["mḏwtj", "other", "mḏwtj", "", "", "", "twenty"]) + let v = native_list_append(v, ["mꜥbꜣ", "other", "mꜥbꜣ", "", "", "", "thirty"]) + let v = native_list_append(v, ["dyw", "other", "dyw", "", "", "", "fifty"]) + let v = native_list_append(v, ["ḥmw", "other", "ḥmw", "", "", "", "forty"]) + let v = native_list_append(v, ["sjsjw", "other", "sjsjw", "", "", "", "sixty"]) + let v = native_list_append(v, ["sfḫjw", "other", "sfḫjw", "", "", "", "seventy"]) + let v = native_list_append(v, ["ḫmnjw", "other", "ḫmnjw", "", "", "", "eighty"]) + let v = native_list_append(v, ["psḏjw", "other", "psḏjw", "", "", "", "ninety"]) + let v = native_list_append(v, ["št", "other", "št", "", "", "", "one hundred"]) + let v = native_list_append(v, ["štj", "other", "štj", "", "", "", "two hundred"]) + let v = native_list_append(v, ["ḫꜣ", "other", "ḫꜣ", "", "", "", "one thousand"]) + let v = native_list_append(v, ["ḥḥ", "other", "ḥḥ", "", "", "", "million"]) + let v = native_list_append(v, ["bꜣstjt", "other", "bꜣstjt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["kftyw", "other", "kftyw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ntk", "other", "ntk", "", "", "", "contraction of nj"]) + let v = native_list_append(v, ["nw", "other", "nw", "", "", "", "contraction of nj"]) + let v = native_list_append(v, ["n3", "other", "n3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["r ḏr", "other", "r ḏr", "", "", "", "whole entire"]) + let v = native_list_append(v, ["r ꜣw", "other", "r ꜣw", "", "", "", "whole entire"]) + let v = native_list_append(v, ["mj qd", "other", "mj qd", "", "", "", "whole entire"]) + let v = native_list_append(v, ["mj qj", "other", "mj qj", "", "", "", "whole entire"]) + let v = native_list_append(v, ["pr-aA", "other", "pr-aA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mSa", "other", "mSa", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["qbH-snwf", "other", "qbH-snwf", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["m-xt", "other", "m-xt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ʽnḫ", "other", "ʽnḫ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["pAt", "other", "pAt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sS", "other", "sS", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Hry", "other", "Hry", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["pḏt 9", "other", "pḏt 9", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["zʽḥ", "other", "zʽḥ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["bT", "other", "bT", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Hnk", "other", "Hnk", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["𓁹", "other", "𓁹", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓁶", "other", "𓁶", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["-wj", "other", "-wj", "", "", "", "Used to form"]) + let v = native_list_append(v, ["snDw", "other", "snDw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Ddw", "other", "Ddw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["pDt", "other", "pDt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["anx", "other", "anx", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Dam", "other", "Dam", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Hrt", "other", "Hrt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["tp-a", "other", "tp-a", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["st-a", "other", "st-a", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["-w", "other", "-w", "", "", "", "Used to form"]) + let v = native_list_append(v, ["Abw", "other", "Abw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["-wt", "other", "-wt", "", "", "", "Used to form"]) + let v = native_list_append(v, ["Snbt", "other", "Snbt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["nDm", "other", "nDm", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["jmꜣ", "other", "jmꜣ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["Dba", "other", "Dba", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["imA", "other", "imA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["xA", "other", "xA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Aby", "other", "Aby", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["bAstt", "other", "bAstt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["bAst", "other", "bAst", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["diw Hryw rnpt", "other", "diw Hryw rnpt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["bddw kA", "other", "bddw kA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["dSr", "other", "dSr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["rʽ", "other", "rʽ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["Dd", "other", "Dd", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["jˤḥ", "other", "jˤḥ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["iaH", "other", "iaH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Ss", "other", "Ss", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Sma", "other", "Sma", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mSrw", "other", "mSrw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["nHH", "other", "nHH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Dt", "other", "Dt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["it(w)", "other", "it(w)", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["nsw", "other", "nsw", "", "", "", "contraction of nj"]) + let v = native_list_append(v, ["wHm", "other", "wHm", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Htp", "other", "Htp", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["tA", "other", "tA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["minb", "other", "minb", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["swD", "other", "swD", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mnD", "other", "mnD", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mnDt", "other", "mnDt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["msH", "other", "msH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["msDr", "other", "msDr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["m Ht", "other", "m Ht", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mA-HsA", "other", "mA-HsA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mA-HD", "other", "mA-HD", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mAi", "other", "mAi", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mAt", "other", "mAt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mAtt", "other", "mAtt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["mAy", "other", "mAy", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["xwfw", "other", "xwfw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["snbi", "other", "snbi", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["iˤr", "other", "iˤr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["xw", "other", "xw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["rʽmss", "other", "rʽmss", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["gHs", "other", "gHs", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["grH", "other", "grH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["xpS", "other", "xpS", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["kAS", "other", "kAS", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sTAt", "other", "sTAt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["kAs", "other", "kAs", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["DHwty", "other", "DHwty", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["AbDw", "other", "AbDw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sDm", "other", "sDm", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["fnD", "other", "fnD", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Apd", "other", "Apd", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["itn", "other", "itn", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["spt", "other", "spt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["Hr", "other", "Hr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["smH", "other", "smH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Sw", "other", "Sw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["qbH", "other", "qbH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["m wHm a", "other", "m wHm a", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["pr aA", "other", "pr aA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["m xt", "other", "m xt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["iAr", "other", "iAr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["nHmn", "other", "nHmn", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Smw", "other", "Smw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sAw", "other", "sAw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["sbA", "other", "sbA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["spA", "other", "spA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["pDt psDt", "other", "pDt psDt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["imn ra", "other", "imn ra", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Dd-mdw", "other", "Dd-mdw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["xt", "other", "xt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ḳs", "other", "ḳs", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḳrs", "other", "ḳrs", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḳrst", "other", "ḳrst", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["iry", "other", "iry", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["Hapy", "other", "Hapy", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["iAqt", "other", "iAqt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["iArrt", "other", "iArrt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["nSt", "other", "nSt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["nDs", "other", "nDs", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["wSd", "other", "wSd", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ʽḳ", "other", "ʽḳ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sxnt", "other", "sxnt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["saA", "other", "saA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["jst", "other", "jst", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["Xrd", "other", "Xrd", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["wab", "other", "wab", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["kAkA", "other", "kAkA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["3sjr", "other", "3sjr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["rꜥmssw", "other", "rꜥmssw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["wsir", "other", "wsir", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["qljw3p3dr3", "other", "qljw3p3dr3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m mAwt", "other", "m mAwt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["SAa-r", "other", "SAa-r", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["st-ib", "other", "st-ib", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["iizriAr", "other", "iizriAr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ptwAlMiis", "other", "ptwAlMiis", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ptwArwMiis", "other", "ptwArwMiis", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["qrwiwApAdrA", "other", "qrwiwApAdrA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["qliwApAdrA", "other", "qliwApAdrA", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Akr", "other", "Akr", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["am-mwt", "other", "am-mwt", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["aAmmiit", "other", "aAmmiit", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["ammiit", "other", "ammiit", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["amtMtw", "other", "amtMtw", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["amAmiit", "other", "amAmiit", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["am HH", "other", "am HH", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["antit", "other", "antit", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["Ax", "other", "Ax", "", "", "", "Manuel de Codage"]) + let v = native_list_append(v, ["-yt", "other", "-yt", "", "", "", "Forms the complementary"]) + let v = native_list_append(v, ["j.", "other", "j.", "", "", "", "Forms the imperative"]) + let v = native_list_append(v, ["𓃹", "other", "𓃹", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓈖", "other", "𓈖", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["𓊃", "other", "𓊃", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["𓋴", "other", "𓋴", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["𓋹", "other", "𓋹", "", "", "", "Triliteral phonogram for"]) + let v = native_list_append(v, ["𓆈", "other", "𓆈", "", "", "", "Triliteral phonogram for"]) + let v = native_list_append(v, ["𓆉", "other", "𓆉", "", "", "", "Logogram for štw"]) + let v = native_list_append(v, ["𓆊", "other", "𓆊", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓆋", "other", "𓆋", "", "", "", "Logogram for sbk"]) + let v = native_list_append(v, ["𓆌", "other", "𓆌", "", "", "", "Logogram for sꜣq"]) + let v = native_list_append(v, ["𓆎", "other", "𓆎", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓆏", "other", "𓆏", "", "", "", "Logogram for wḥm-ꜥnḫ"]) + let v = native_list_append(v, ["𓆐", "other", "𓆐", "", "", "", "Logogram for or"]) + let v = native_list_append(v, ["𓆑", "other", "𓆑", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["𓆓", "other", "𓆓", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["𓆕", "other", "𓆕", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓆗", "other", "𓆗", "", "", "", "Determinative in jꜥrt"]) + let v = native_list_append(v, ["𓆘", "other", "𓆘", "", "", "", "Determinative for goddesses."]) + let v = native_list_append(v, ["𓆙", "other", "𓆙", "", "", "", "Determinative for snakes"]) + let v = native_list_append(v, ["𓆚", "other", "𓆚", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𓆱", "other", "𓆱", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["𓇅", "other", "𓇅", "", "", "", "Triliteral phonogram for"]) + let v = native_list_append(v, ["𓇯", "other", "𓇯", "", "", "", "Triliteral or biliteral"]) + let v = native_list_append(v, ["𓇰", "other", "𓇰", "", "", "", "Logogram for grḥ"]) + let v = native_list_append(v, ["𓃭", "other", "𓃭", "", "", "", "Biliteral phonogram for"]) + let v = native_list_append(v, ["jꜣjw", "other", "jꜣjw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ꜥnḫ wḏꜣ snb", "other", "ꜥnḫ wḏꜣ snb", "", "", "", "an honorific phrase"]) + let v = native_list_append(v, ["jry", "other", "jry", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["t3wy", "other", "t3wy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["-wy", "other", "-wy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sbty", "other", "sbty", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤˤny", "other", "3ˤˤny", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤwy", "other", "ˤwy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥry", "other", "ḥry", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥry-pr", "other", "ḥry-pr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["djw ḥryw rnpt", "other", "djw ḥryw rnpt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥ3ty", "other", "ḥ3ty", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḏḥwty", "other", "ḏḥwty", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["pwntyw", "other", "pwntyw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ntry", "other", "ntry", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ntrj", "other", "ntrj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ntryt", "other", "ntryt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mmy", "other", "mmy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["hby", "other", "hby", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤˤwy", "other", "3ˤˤwy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ẖry-ꜥ", "other", "ẖry-ꜥ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnḫ", "other", "ˤnḫ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnḫ wḏ3 snb", "other", "ˤnḫ wḏ3 snb", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ptw3rwmys", "other", "ptw3rwmys", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnḫw", "other", "ˤnḫw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫt n ˤnḫ", "other", "ḫt n ˤnḫ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["33t", "other", "33t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤˤ", "other", "3ˤˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤḥˤ", "other", "ˤḥˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3bw", "other", "3bw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3by", "other", "3by", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3bḏw", "other", "3bḏw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3js", "other", "3js", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3s", "other", "3s", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3kr", "other", "3kr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3m", "other", "3m", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3pd", "other", "3pd", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3st", "other", "3st", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3t", "other", "3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3tp", "other", "3tp", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3yt", "other", "3yt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3š", "other", "3š", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤbt", "other", "3ˤbt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤw", "other", "3ˤw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤˤnj", "other", "3ˤˤnj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤˤt", "other", "3ˤˤt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ˤˤwj", "other", "3ˤˤwj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["3ṯp", "other", "3ṯp", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["b3", "other", "b3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["b3k3", "other", "b3k3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["b3st", "other", "b3st", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["b3stt", "other", "b3stt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["bddw k3", "other", "bddw k3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["dw3 mwt.f", "other", "dw3 mwt.f", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["h3", "other", "h3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥ3", "other", "ḥ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3", "other", "ḫ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j33t", "other", "j33t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j33yt", "other", "j33yt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j3jw", "other", "j3jw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j3kbyt", "other", "j3kbyt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j3qt", "other", "j3qt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j3r", "other", "j3r", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j3rrt", "other", "j3rrt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["j3ˤ", "other", "j3ˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jm3", "other", "jm3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jmn rˤ", "other", "jmn rˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jnˤ", "other", "jnˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jr 3t", "other", "jr 3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jsq3rnj", "other", "jsq3rnj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jw3", "other", "jw3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jˤ3", "other", "jˤ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jˤn", "other", "jˤn", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["jˤr", "other", "jˤr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3", "other", "k3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3k3", "other", "k3k3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3mn", "other", "k3mn", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3nˤnˤ", "other", "k3nˤnˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3pw", "other", "k3pw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3s", "other", "k3s", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["k3š", "other", "k3š", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["knˤnw", "other", "knˤnw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m 3t", "other", "m 3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m 3t nt", "other", "m 3t nt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m 3t r 3t", "other", "m 3t r 3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m km n 3t", "other", "m km n 3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m m3wt", "other", "m m3wt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m t3 3t", "other", "m t3 3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["snf", "other", "snf", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["𓁐", "other", "𓁐", "", "", "", "Logogram for .j"]) + let v = native_list_append(v, ["𓇋", "other", "𓇋", "", "", "", "Uniliteral phonogram for"]) + let v = native_list_append(v, ["m wḥm ˤ", "other", "m wḥm ˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3-ḥs3", "other", "m3-ḥs3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3-ḥḏ", "other", "m3-ḥḏ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3j", "other", "m3j", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3t", "other", "m3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3tt", "other", "m3tt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3y", "other", "m3y", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mrwr", "other", "mrwr", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mšˤ", "other", "mšˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mˤb3", "other", "mˤb3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mˤḥˤt", "other", "mˤḥˤt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["m3ˤt", "other", "m3ˤt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["mḥ t3", "other", "mḥ t3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["n3y", "other", "n3y", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["nb ḫˤw", "other", "nb ḫˤw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["nf3", "other", "nf3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ng3w", "other", "ng3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ẖ3rt", "other", "ẖ3rt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ẖ3r", "other", "ẖ3r", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ṯs", "other", "ṯs", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ṯ3w", "other", "ṯ3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ṯ3ty", "other", "ṯ3ty", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫˤw", "other", "ḫˤw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫsf 3t", "other", "ḫsf 3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3ˤ", "other", "ḫ3ˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3y", "other", "ḫ3y", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3wt", "other", "ḫ3wt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3j", "other", "ḫ3j", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3b", "other", "ḫ3b", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḫ3 t3", "other", "ḫ3 t3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["q3 s3", "other", "q3 s3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["qrwjw3p3dr3", "other", "qrwjw3p3dr3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["r 3w", "other", "r 3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["rˤ", "other", "rˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["rˤmss", "other", "rˤmss", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["rˤmssw", "other", "rˤmssw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["s3", "other", "s3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sꜣ", "other", "sꜣ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["s3t", "other", "s3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sꜣt", "other", "sꜣt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["s3b", "other", "s3b", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sꜣb", "other", "sꜣb", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["s3bt", "other", "s3bt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["s3w", "other", "s3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sꜣw", "other", "sꜣw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sb3", "other", "sb3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ysrj3r", "other", "ysrj3r", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥˤpy", "other", "ḥˤpy", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥwt k3 ptḥ", "other", "ḥwt k3 ptḥ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥs3t", "other", "ḥs3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥsꜣt", "other", "ḥsꜣt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥq3t", "other", "ḥq3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥq3", "other", "ḥq3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥnˤ", "other", "ḥnˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥf3w", "other", "ḥf3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥ3tj", "other", "ḥ3tj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḥ3t", "other", "ḥ3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḏˤm", "other", "ḏˤm", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḏˤ", "other", "ḏˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḏbˤ", "other", "ḏbˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḏ3ḏ3", "other", "ḏ3ḏ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ḏ3js", "other", "ḏ3js", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["š3", "other", "š3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["š3q", "other", "š3q", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["š3qb", "other", "š3qb", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["š3ˤ-r", "other", "š3ˤ-r", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["šmˤ", "other", "šmˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["šnˤtj", "other", "šnˤtj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["št3w", "other", "št3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤẖj", "other", "ˤẖj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤḥ3", "other", "ˤḥ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˁw3y", "other", "ˁw3y", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˁntj", "other", "ˁntj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˁ3mmyt", "other", "ˁ3mmyt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˁm3myt", "other", "ˁm3myt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˁmmyt", "other", "ˁmmyt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˁmtmtw", "other", "ˁmtmtw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤ3", "other", "ˤ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤff", "other", "ˤff", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤmˤ3", "other", "ˤmˤ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤpš3y", "other", "ˤpš3y", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤ3m", "other", "ˤ3m", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤ3mt", "other", "ˤ3mt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤ-ẖnwtj", "other", "ˤ-ẖnwtj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤ3pp", "other", "ˤ3pp", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤm ḥḥ", "other", "ˤm ḥḥ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤmm", "other", "ˤmm", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnqt", "other", "ˤnqt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤq", "other", "ˤq", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnt", "other", "ˤnt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤntjt", "other", "ˤntjt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnˤn", "other", "ˤnˤn", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤnḏw", "other", "ˤnḏw", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤt sb3w", "other", "ˤt sb3w", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤwj", "other", "ˤwj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["ˤwt", "other", "ˤwt", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["pr ˤ3", "other", "pr ˤ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["t3", "other", "t3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["t3(w)", "other", "t3(w)", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["t3wj", "other", "t3wj", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["t3y", "other", "t3y", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["tf3", "other", "tf3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["tp-ˤ", "other", "tp-ˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["wḥ3t", "other", "wḥ3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["wˤb", "other", "wˤb", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["wˤ", "other", "wˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sp3", "other", "sp3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["spꜣ", "other", "spꜣ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sp3t", "other", "sp3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["st-ˤ", "other", "st-ˤ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sš", "other", "sš", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sˤ3", "other", "sˤ3", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sˤḥ", "other", "sˤḥ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["sṯ3t", "other", "sṯ3t", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["w3st", "other", "w3st", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["w3ḏ", "other", "w3ḏ", "", "", "", "Alternative transliteration of"]) + let v = native_list_append(v, ["my", "adv", "my", "", "", "", "likewise"]) + let v = native_list_append(v, ["gr", "adv", "gr", "", "", "", "abbreviation of grw"]) + let v = native_list_append(v, ["mm", "adv", "mm", "", "", "", "among them therein"]) + let v = native_list_append(v, ["jr", "adv", "jr", "", "", "", "abbreviation of jrj"]) + let v = native_list_append(v, ["m ḫt", "adv", "m ḫt", "", "", "", "afterwards"]) + let v = native_list_append(v, ["m mꜣwt", "adv", "m mꜣwt", "", "", "", "anew again"]) + let v = native_list_append(v, ["wrt", "adv", "wrt", "", "", "", "very"]) + let v = native_list_append(v, ["sf", "adv", "sf", "", "", "", "yesterday"]) + let v = native_list_append(v, ["ꜥšꜣ", "adv", "ꜥšꜣ", "", "", "", "often many times"]) + let v = native_list_append(v, ["mjn", "adv", "mjn", "", "", "", "today"]) + let v = native_list_append(v, ["nfr", "adv", "nfr", "", "", "", "well"]) + let v = native_list_append(v, ["jm", "adv", "jm", "", "", "", "therein in it"]) + let v = native_list_append(v, ["ḏs.f", "adv", "ḏs.f", "", "", "", "by himself"]) + let v = native_list_append(v, ["jrj", "adv", "jrj", "", "", "", "regarding it with"]) + let v = native_list_append(v, ["nj", "adv", "nj", "", "", "", "for it to"]) + let v = native_list_append(v, ["dj", "adv", "dj", "", "", "", "here there"]) + let v = native_list_append(v, ["mmj", "adv", "mmj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꜥꜣ", "adv", "ꜥꜣ", "", "", "", "here"]) + let v = native_list_append(v, ["m wḥm ꜥ", "adv", "m wḥm ꜥ", "", "", "", "again"]) + let v = native_list_append(v, ["m wḥm", "adv", "m wḥm", "", "", "", "again"]) + let v = native_list_append(v, ["ḥnꜥ", "adv", "ḥnꜥ", "", "", "", "Abbreviated form of"]) + let v = native_list_append(v, ["ḏt", "adv", "ḏt", "", "", "", "forever"]) + let v = native_list_append(v, ["wr", "adv", "wr", "", "", "", "much very"]) + let v = native_list_append(v, ["ꜣs", "adv", "ꜣs", "", "", "", "quickly hurriedly"]) + let v = native_list_append(v, ["rsj", "adv", "rsj", "", "", "", "entirely"]) + let v = native_list_append(v, ["jqr", "adv", "jqr", "", "", "", "very exceedingly"]) + let v = native_list_append(v, ["m ꜣt", "adv", "m ꜣt", "", "", "", "instantly immediately"]) + let v = native_list_append(v, ["m ꜣt.f", "adv", "m ꜣt.f", "", "", "", "in the act"]) + let v = native_list_append(v, ["m km n ꜣt", "adv", "m km n ꜣt", "", "", "", "in an instant"]) + let v = native_list_append(v, ["m tꜣ ꜣt", "adv", "m tꜣ ꜣt", "", "", "", "right now this"]) + let v = native_list_append(v, ["m ꜣt r ꜣt", "adv", "m ꜣt r ꜣt", "", "", "", "always at all"]) + let v = native_list_append(v, ["m ꜣt nt", "adv", "m ꜣt nt", "", "", "", "in the same"]) + let v = native_list_append(v, ["ṯnj", "adv", "ṯnj", "", "", "", "where?"]) + let v = native_list_append(v, ["tnj", "adv", "tnj", "", "", "", "Variant spelling of"]) + let v = native_list_append(v, ["jmjtw-nj", "adv", "jmjtw-nj", "", "", "", "between them"]) + let v = native_list_append(v, ["ḥnꜥw", "adv", "ḥnꜥw", "", "", "", "along with them"]) + let v = native_list_append(v, ["ḫft", "adv", "ḫft", "", "", "", "Abbreviated form of"]) + let v = native_list_append(v, ["ḫftw", "adv", "ḫftw", "", "", "", "accordingly"]) + let v = native_list_append(v, ["ḫnt", "adv", "ḫnt", "", "", "", "Abbreviated form of"]) + let v = native_list_append(v, ["ḫntw", "adv", "ḫntw", "", "", "", "previously before"]) + let v = native_list_append(v, ["ẖrj", "adv", "ẖrj", "", "", "", "under it under"]) + let v = native_list_append(v, ["ḏr", "adv", "ḏr", "", "", "", "done over finished"]) + let v = native_list_append(v, ["grw", "adv", "grw", "", "", "", "also furthermore"]) + let v = native_list_append(v, ["tnw", "adv", "tnw", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ꜥꜣw", "adv", "ꜥꜣw", "", "", "", "greatly"]) + let v = native_list_append(v, ["ḏs", "adv", "ḏs", "", "", "", "-self"]) + let v = native_list_append(v, ["mm jrj", "adv", "mm jrj", "", "", "", "among them therein"]) + let v = native_list_append(v, ["ḫft jrj", "adv", "ḫft jrj", "", "", "", "accordingly"]) + let v = native_list_append(v, ["dwꜣw", "adv", "dwꜣw", "", "", "", "in the morning"]) + let v = native_list_append(v, ["ḏs.k", "adv", "ḏs.k", "", "", "", "by yourself"]) + let v = native_list_append(v, ["mjtt", "adv", "mjtt", "", "", "", "as well also"]) + let v = native_list_append(v, ["m ḫd", "adv", "m ḫd", "", "", "", "downstream northward"]) + let v = native_list_append(v, ["m ẖrt-hrw", "adv", "m ẖrt-hrw", "", "", "", "daily"]) + let v = native_list_append(v, ["ḏwj", "adv", "ḏwj", "", "", "", "badly wickedly"]) + let v = native_list_append(v, ["m ꜣwt ḏt", "adv", "m ꜣwt ḏt", "", "", "", "eternally for eternity"]) + let v = native_list_append(v, ["ḏs.j", "adv", "ḏs.j", "", "", "", "by myself"]) + let v = native_list_append(v, ["ḥr ꜥ", "adv", "ḥr ꜥ", "", "", "", "immediately"]) + let v = native_list_append(v, ["ḥr ꜥwj", "adv", "ḥr ꜥwj", "", "", "", "immediately"]) + let v = native_list_append(v, ["ḏr bꜣḥ", "adv", "ḏr bꜣḥ", "", "", "", "previously before"]) + let v = native_list_append(v, ["rꜥ nb", "adv", "rꜥ nb", "", "", "", "daily"]) + let v = native_list_append(v, ["zy nw", "adv", "zy nw", "", "", "", "when?"]) + let v = native_list_append(v, ["mj mj", "adv", "mj mj", "", "", "", "how?"]) + let v = native_list_append(v, ["ḥr mj", "adv", "ḥr mj", "", "", "", "why?"]) + let v = native_list_append(v, ["mj jḫ", "adv", "mj jḫ", "", "", "", "how?"]) + let v = native_list_append(v, ["r mj", "adv", "r mj", "", "", "", "why?"]) + let v = native_list_append(v, ["ꜥn", "adv", "ꜥn", "", "", "", "again once more"]) + let v = native_list_append(v, ["ꜥf", "adv", "ꜥf", "", "", "", "there"]) + let v = native_list_append(v, ["m ḥtp", "adv", "m ḥtp", "", "", "", "safely"]) + let v = native_list_append(v, ["ḥr zj jšst", "adv", "ḥr zj jšst", "", "", "", "why?"]) + let v = native_list_append(v, ["ḏs.s", "adv", "ḏs.s", "", "", "", "by herself"]) + let v = native_list_append(v, ["m ḫnt", "adv", "m ḫnt", "", "", "", "in front"]) + let v = native_list_append(v, ["n ꜣbb", "adv", "n ꜣbb", "", "", "", "at one’s pleasure"]) + let v = native_list_append(v, ["r ꜣbb", "adv", "r ꜣbb", "", "", "", "at one’s pleasure"]) + let v = native_list_append(v, ["m zp", "adv", "m zp", "", "", "", "all at the"]) + let v = native_list_append(v, ["r ꜥꜣt", "adv", "r ꜥꜣt", "", "", "", "greatly"]) + let v = native_list_append(v, ["r nḥḥ", "adv", "r nḥḥ", "", "", "", "forever"]) + let v = native_list_append(v, ["m mjtt", "adv", "m mjtt", "", "", "", "likewise similarly equally"]) + let v = native_list_append(v, ["r ḥꜣt", "adv", "r ḥꜣt", "", "", "", "to the front"]) + let v = native_list_append(v, ["ḥr sꜣ", "adv", "ḥr sꜣ", "", "", "", "afterward later"]) + let v = native_list_append(v, ["m mnt", "adv", "m mnt", "", "", "", "daily"]) + let v = native_list_append(v, ["r ẖnw", "adv", "r ẖnw", "", "", "", "inside"]) + let v = native_list_append(v, ["r jqr", "adv", "r jqr", "", "", "", "very exceedingly"]) + let v = native_list_append(v, ["m wsṯn", "adv", "m wsṯn", "", "", "", "freely unhindered unobstructed"]) + let v = native_list_append(v, ["m sḫm", "adv", "m sḫm", "", "", "", "violently"]) + let v = native_list_append(v, ["n ḥrt", "adv", "n ḥrt", "", "", "", "upward above"]) + let v = native_list_append(v, ["m ḥrt", "adv", "m ḥrt", "", "", "", "from above"]) + let v = native_list_append(v, ["tp rmn", "adv", "tp rmn", "", "", "", "‘upon the shoulder’"]) + let v = native_list_append(v, ["zp n jwtt", "adv", "zp n jwtt", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["m jfd", "adv", "m jfd", "", "", "", "hastily speedily in"]) + let v = native_list_append(v, ["jmj wrt", "adv", "jmj wrt", "", "", "", "to the starboard"]) + let v = native_list_append(v, ["r-jmjtw-nj", "adv", "r-jmjtw-nj", "", "", "", "synonym of jmjtw-nj"]) + let v = native_list_append(v, ["m-jmjtw-nj", "adv", "m-jmjtw-nj", "", "", "", "synonym of jmjtw-nj"]) + let v = native_list_append(v, ["m", "prep", "m", "", "", "", "in"]) + let v = native_list_append(v, ["n", "prep", "n", "", "", "", "to for dative"]) + let v = native_list_append(v, ["r", "prep", "r", "", "", "", "regarding with respect"]) + let v = native_list_append(v, ["mm", "prep", "mm", "", "", "", "among"]) + let v = native_list_append(v, ["tp", "prep", "tp", "", "", "", "on top of"]) + let v = native_list_append(v, ["jr", "prep", "jr", "", "", "", "Sentence-initial form of"]) + let v = native_list_append(v, ["m ḫt", "prep", "m ḫt", "", "", "", "after of time"]) + let v = native_list_append(v, ["tp ꜥ", "prep", "tp ꜥ", "", "", "", "before"]) + let v = native_list_append(v, ["šꜣꜥ r", "prep", "šꜣꜥ r", "", "", "", "from … until"]) + let v = native_list_append(v, ["ḥr", "prep", "ḥr", "", "", "", "upon on on"]) + let v = native_list_append(v, ["ḫt", "prep", "ḫt", "", "", "", "throughout"]) + let v = native_list_append(v, ["jm", "prep", "jm", "", "", "", "form of m"]) + let v = native_list_append(v, ["m ḫm", "prep", "m ḫm", "", "", "", "without knowing in"]) + let v = native_list_append(v, ["m-dj", "prep", "m-dj", "", "", "", "with"]) + let v = native_list_append(v, ["nj", "prep", "nj", "", "", "", "Alternative form before"]) + let v = native_list_append(v, ["mmj", "prep", "mmj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["m ẖnw", "prep", "m ẖnw", "", "", "", "inside"]) + let v = native_list_append(v, ["mj", "prep", "mj", "", "", "", "like just as"]) + let v = native_list_append(v, ["jn", "prep", "jn", "", "", "", "introduces the agent"]) + let v = native_list_append(v, ["jmjtw", "prep", "jmjtw", "", "", "", "between"]) + let v = native_list_append(v, ["ḥꜣ", "prep", "ḥꜣ", "", "", "", "behind"]) + let v = native_list_append(v, ["ḥnꜥ", "prep", "ḥnꜥ", "", "", "", "along with with"]) + let v = native_list_append(v, ["r-jmjtw", "prep", "r-jmjtw", "", "", "", "synonym of jmjtw"]) + let v = native_list_append(v, ["ḫft", "prep", "ḫft", "", "", "", "across from opposite"]) + let v = native_list_append(v, ["ḫnt", "prep", "ḫnt", "", "", "", "in front of"]) + let v = native_list_append(v, ["ḫr", "prep", "ḫr", "", "", "", "in the presence"]) + let v = native_list_append(v, ["ẖr", "prep", "ẖr", "", "", "", "under spatially beneath"]) + let v = native_list_append(v, ["ḏr", "prep", "ḏr", "", "", "", "since from the"]) + let v = native_list_append(v, ["ẖr ḥꜣt", "prep", "ẖr ḥꜣt", "", "", "", "at the front"]) + let v = native_list_append(v, ["r ḏbꜣ", "prep", "r ḏbꜣ", "", "", "", "in exchange for"]) + let v = native_list_append(v, ["ḥrw r", "prep", "ḥrw r", "", "", "", "as well as"]) + let v = native_list_append(v, ["r šꜣꜥ", "prep", "r šꜣꜥ", "", "", "", "up to as"]) + let v = native_list_append(v, ["m-ꜥ", "prep", "m-ꜥ", "", "", "", "in the possession"]) + let v = native_list_append(v, ["m ḥꜣt", "prep", "m ḥꜣt", "", "", "", "in front of"]) + let v = native_list_append(v, ["m sꜣ", "prep", "m sꜣ", "", "", "", "behind following after"]) + let v = native_list_append(v, ["jwd", "prep", "jwd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["m bꜣḥ", "prep", "m bꜣḥ", "", "", "", "in front of"]) + let v = native_list_append(v, ["r sꜣ", "prep", "r sꜣ", "", "", "", "behind following after"]) + let v = native_list_append(v, ["wpw", "prep", "wpw", "", "", "", "except"]) + let v = native_list_append(v, ["r gs", "prep", "r gs", "", "", "", "beside"]) + let v = native_list_append(v, ["r mn m", "prep", "r mn m", "", "", "", "until"]) + let v = native_list_append(v, ["n mrwt", "prep", "n mrwt", "", "", "", "for the purpose"]) + let v = native_list_append(v, ["ḥr tp", "prep", "ḥr tp", "", "", "", "on top of"]) + let v = native_list_append(v, ["ḥr jb", "prep", "ḥr jb", "", "", "", "in the midst"]) + let v = native_list_append(v, ["ḫft ḥr", "prep", "ḫft ḥr", "", "", "", "in front of"]) + let v = native_list_append(v, ["m ḥr", "prep", "m ḥr", "", "", "", "before someone in"]) + let v = native_list_append(v, ["m qꜣb", "prep", "m qꜣb", "", "", "", "amidst"]) + let v = native_list_append(v, ["m ḫnt", "prep", "m ḫnt", "", "", "", "in front of"]) + let v = native_list_append(v, ["ẖr st ḥr", "prep", "ẖr st ḥr", "", "", "", "under the care"]) + let v = native_list_append(v, ["n ꜣbw", "prep", "n ꜣbw", "", "", "", "in order to"]) + let v = native_list_append(v, ["m mjtt", "prep", "m mjtt", "", "", "", "as well as"]) + let v = native_list_append(v, ["r ḥꜣt", "prep", "r ḥꜣt", "", "", "", "in front of"]) + let v = native_list_append(v, ["m ꜥb", "prep", "m ꜥb", "", "", "", "along with together"]) + let v = native_list_append(v, ["ḥr sꜣ", "prep", "ḥr sꜣ", "", "", "", "behind"]) + let v = native_list_append(v, ["n jb n", "prep", "n jb n", "", "", "", "for the sake"]) + let v = native_list_append(v, ["r ẖnw", "prep", "r ẖnw", "", "", "", "into"]) + let v = native_list_append(v, ["r ꜥ", "prep", "r ꜥ", "", "", "", "beside next to"]) + let v = native_list_append(v, ["jrm", "prep", "jrm", "", "", "", "together with along"]) + let v = native_list_append(v, ["nfryt r", "prep", "nfryt r", "", "", "", "until a time"]) + let v = native_list_append(v, ["m-ḏr", "prep", "m-ḏr", "", "", "", "because of"]) + let v = native_list_append(v, ["wpw ḥr", "prep", "wpw ḥr", "", "", "", "except"]) + let v = native_list_append(v, ["r mḏdw n jb n", "prep", "r mḏdw n jb n", "", "", "", "according to the"]) + let v = native_list_append(v, ["tp rmn", "prep", "tp rmn", "", "", "", "before in front"]) + let v = native_list_append(v, ["n ꜥꜣt nt", "prep", "n ꜥꜣt nt", "", "", "", "inasmuch as"]) + let v = native_list_append(v, ["r jwd", "prep", "r jwd", "", "", "", "between + r"]) + let v = native_list_append(v, ["ḥr jb n", "prep", "ḥr jb n", "", "", "", "synonym of ḥr"]) + let v = native_list_append(v, ["r ḏr jb", "prep", "r ḏr jb", "", "", "", "just as someone"]) + let v = native_list_append(v, ["ḥr mr", "prep", "ḥr mr", "", "", "", "devoted or loyal"]) + let v = native_list_append(v, ["ḥr mw", "prep", "ḥr mw", "", "", "", "devoted or loyal"]) + let v = native_list_append(v, ["ḥr mw n", "prep", "ḥr mw n", "", "", "", "devoted or loyal"]) + let v = native_list_append(v, ["jmwtj", "prep", "jmwtj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["m-jmjtw", "prep", "m-jmjtw", "", "", "", "synonym of jmjtw"]) + let v = native_list_append(v, ["m", "particle", "m", "", "", "", "behold lo look"]) + let v = native_list_append(v, ["r", "particle", "r", "", "", "", "so regarding that"]) + let v = native_list_append(v, ["w", "particle", "w", "", "", "", "not used to"]) + let v = native_list_append(v, ["gr", "particle", "gr", "", "", "", "also furthermore moreover"]) + let v = native_list_append(v, ["jr", "particle", "jr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ms", "particle", "ms", "", "", "", "surely can connote"]) + let v = native_list_append(v, ["tr", "particle", "tr", "", "", "", "Interrogative particle indicates"]) + let v = native_list_append(v, ["bn", "particle", "bn", "", "", "", "not negates the"]) + let v = native_list_append(v, ["nḥmn", "particle", "nḥmn", "", "", "", "a particle used"]) + let v = native_list_append(v, ["tj", "particle", "tj", "", "", "", "converts a sentence"]) + let v = native_list_append(v, ["jwt", "particle", "jwt", "", "", "", "introduces a negated"]) + let v = native_list_append(v, ["nn", "particle", "nn", "", "", "", "there is no"]) + let v = native_list_append(v, ["nfr", "particle", "nfr", "", "", "", "not even not"]) + let v = native_list_append(v, ["nj", "particle", "nj", "", "", "", "there is no"]) + let v = native_list_append(v, ["wnt", "particle", "wnt", "", "", "", "serves as a"]) + let v = native_list_append(v, ["kꜣ", "particle", "kꜣ", "", "", "", "so then as"]) + let v = native_list_append(v, ["wj", "particle", "wj", "", "", "", "An admirative particle"]) + let v = native_list_append(v, ["swt", "particle", "swt", "", "", "", "but indicates contrast"]) + let v = native_list_append(v, ["mj", "particle", "mj", "", "", "", "strengthens an imperative"]) + let v = native_list_append(v, ["jḫ", "particle", "jḫ", "", "", "", "then thus introduces"]) + let v = native_list_append(v, ["jw", "particle", "jw", "", "", "", "asserts the reality"]) + let v = native_list_append(v, ["jn", "particle", "jn", "", "", "", "indicates interrogativity"]) + let v = native_list_append(v, ["jsw", "particle", "jsw", "", "", "", "lo behold"]) + let v = native_list_append(v, ["jsṯ", "particle", "jsṯ", "", "", "", "converts a nonverbal"]) + let v = native_list_append(v, ["ḥꜣ", "particle", "ḥꜣ", "", "", "", "if only would"]) + let v = native_list_append(v, ["jst", "particle", "jst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["js", "particle", "js", "", "", "", "used in conjunction"]) + let v = native_list_append(v, ["ꜣ", "particle", "ꜣ", "", "", "", "intensifying or emphasizing"]) + let v = native_list_append(v, ["ḥm", "particle", "ḥm", "", "", "", "moreover and in"]) + let v = native_list_append(v, ["ḫr", "particle", "ḫr", "", "", "", "then and then"]) + let v = native_list_append(v, ["bw", "particle", "bw", "", "", "", "not forms the"]) + let v = native_list_append(v, ["ḥꜣ ꜣ", "particle", "ḥꜣ ꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ḥwj ꜣ", "particle", "ḥwj ꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nj js", "particle", "nj js", "", "", "", "and not but"]) + let v = native_list_append(v, ["smwn", "particle", "smwn", "", "", "", "probably perhaps maybe"]) + let v = native_list_append(v, ["wnnt", "particle", "wnnt", "", "", "", "indeed truly really"]) + let v = native_list_append(v, ["grt", "particle", "grt", "", "", "", "moreover now but"]) + let v = native_list_append(v, ["yꜣ", "particle", "yꜣ", "", "", "", "affirmative particle really"]) + let v = native_list_append(v, ["ḫrw.fj", "particle", "ḫrw.fj", "", "", "", "marks a non-future"]) + let v = native_list_append(v, ["mtw", "particle", "mtw", "", "", "", "forms the conjunctive"]) + let v = native_list_append(v, ["ḥnꜥ-ḏd", "particle", "ḥnꜥ-ḏd", "", "", "", "and furthermore introduces"]) + let v = native_list_append(v, ["jḫr", "particle", "jḫr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jwnꜣ", "particle", "jwnꜣ", "", "", "", "accompanies bn to"]) + let v = native_list_append(v, ["n", "pron", "n", "", "", "", "we us see"]) + let v = native_list_append(v, ["s", "pron", "s", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["w", "pron", "w", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sn", "pron", "sn", "", "", "", "they them see"]) + let v = native_list_append(v, ["zy", "pron", "zy", "", "", "", "which?"]) + let v = native_list_append(v, ["st", "pron", "st", "", "", "", "she her it"]) + let v = native_list_append(v, ["sw", "pron", "sw", "", "", "", "he him see"]) + let v = native_list_append(v, [".fj", "pron", ".fj", "", "", "", "form of .f"]) + let v = native_list_append(v, [".kw", "pron", ".kw", "", "", "", "I me"]) + let v = native_list_append(v, [".sj", "pron", ".sj", "", "", "", "form of .s"]) + let v = native_list_append(v, [".sn", "pron", ".sn", "", "", "", "they them their"]) + let v = native_list_append(v, [".st", "pron", ".st", "", "", "", "Late Egyptian variant"]) + let v = native_list_append(v, [".tj", "pron", ".tj", "", "", "", "you"]) + let v = native_list_append(v, [".tn", "pron", ".tn", "", "", "", "alternative form of"]) + let v = native_list_append(v, [".tw", "pron", ".tw", "", "", "", "used as the"]) + let v = native_list_append(v, ["tj", "pron", "tj", "", "", "", "Late Egyptian variant"]) + let v = native_list_append(v, ["nn", "pron", "nn", "", "", "", "this that"]) + let v = native_list_append(v, ["tw", "pron", "tw", "", "", "", "used as the"]) + let v = native_list_append(v, ["tn", "pron", "tn", "", "", "", "Variant spelling of"]) + let v = native_list_append(v, ["kw", "pron", "kw", "", "", "", "you see usage"]) + let v = native_list_append(v, ["pw", "pron", "pw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ptr", "pron", "ptr", "", "", "", "who? what?"]) + let v = native_list_append(v, ["jnk", "pron", "jnk", "", "", "", "I me see"]) + let v = native_list_append(v, ["wn", "pron", "wn", "", "", "", "Late Egyptian variant"]) + let v = native_list_append(v, [".j", "pron", ".j", "", "", "", "I me my"]) + let v = native_list_append(v, [".k", "pron", ".k", "", "", "", "you your see"]) + let v = native_list_append(v, [".f", "pron", ".f", "", "", "", "he him his"]) + let v = native_list_append(v, [".s", "pron", ".s", "", "", "", "she her hers"]) + let v = native_list_append(v, [".ṯ", "pron", ".ṯ", "", "", "", "you your see"]) + let v = native_list_append(v, [".ṯn", "pron", ".ṯn", "", "", "", "you your see"]) + let v = native_list_append(v, [".t", "pron", ".t", "", "", "", "alternative form of"]) + let v = native_list_append(v, [".nj", "pron", ".nj", "", "", "", "we two us"]) + let v = native_list_append(v, [".ṯnj", "pron", ".ṯnj", "", "", "", "you two your/you"]) + let v = native_list_append(v, [".snj", "pron", ".snj", "", "", "", "the two of"]) + let v = native_list_append(v, [".n", "pron", ".n", "", "", "", "we us our"]) + let v = native_list_append(v, [".w", "pron", ".w", "", "", "", "they them their"]) + let v = native_list_append(v, ["wj", "pron", "wj", "", "", "", "I me see"]) + let v = native_list_append(v, ["ṯw", "pron", "ṯw", "", "", "", "you see usage"]) + let v = native_list_append(v, ["ṯn", "pron", "ṯn", "", "", "", "you see usage"]) + let v = native_list_append(v, ["sj", "pron", "sj", "", "", "", "she her see"]) + let v = native_list_append(v, ["ntk", "pron", "ntk", "", "", "", "you see usage"]) + let v = native_list_append(v, ["ntṯ", "pron", "ntṯ", "", "", "", "you see usage"]) + let v = native_list_append(v, ["ntf", "pron", "ntf", "", "", "", "he him see"]) + let v = native_list_append(v, ["nts", "pron", "nts", "", "", "", "she her see"]) + let v = native_list_append(v, ["jnn", "pron", "jnn", "", "", "", "we us see"]) + let v = native_list_append(v, ["ntṯn", "pron", "ntṯn", "", "", "", "you see usage"]) + let v = native_list_append(v, ["ntsn", "pron", "ntsn", "", "", "", "they them see"]) + let v = native_list_append(v, ["ntt", "pron", "ntt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nttn", "pron", "nttn", "", "", "", "Alternative spelling of"]) + let v = native_list_append(v, ["ṯwt", "pron", "ṯwt", "", "", "", "you see usage"]) + let v = native_list_append(v, ["swt", "pron", "swt", "", "", "", "he him see"]) + let v = native_list_append(v, ["nf", "pron", "nf", "", "", "", "that"]) + let v = native_list_append(v, ["nfꜣ", "pron", "nfꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nw", "pron", "nw", "", "", "", "this that"]) + let v = native_list_append(v, ["mj", "pron", "mj", "", "", "", "who? what? a"]) + let v = native_list_append(v, ["jḫ", "pron", "jḫ", "", "", "", "what?"]) + let v = native_list_append(v, ["jšst", "pron", "jšst", "", "", "", "what?"]) + let v = native_list_append(v, ["nꜣ", "pron", "nꜣ", "", "", "", "Used for vocative"]) + let v = native_list_append(v, [".tnj", "pron", ".tnj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṯm", "pron", "ṯm", "", "", "", "you see usage"]) + let v = native_list_append(v, ["ṯnj", "pron", "ṯnj", "", "", "", "you two see"]) + let v = native_list_append(v, ["tnj", "pron", "tnj", "", "", "", "Variant spelling of"]) + let v = native_list_append(v, ["snj", "pron", "snj", "", "", "", "the two of"]) + let v = native_list_append(v, ["ṯmt", "pron", "ṯmt", "", "", "", "you see usage"]) + let v = native_list_append(v, ["stt", "pron", "stt", "", "", "", "she her see"]) + let v = native_list_append(v, ["ntsnj", "pron", "ntsnj", "", "", "", "you see usage"]) + let v = native_list_append(v, ["pw-tr", "pron", "pw-tr", "", "", "", "Uncontracted form of"]) + let v = native_list_append(v, ["zj", "pron", "zj", "", "", "", "Variant spelling of"]) + let v = native_list_append(v, ["tw.j", "pron", "tw.j", "", "", "", "I"]) + let v = native_list_append(v, ["tw.k", "pron", "tw.k", "", "", "", "you"]) + let v = native_list_append(v, ["tw.t", "pron", "tw.t", "", "", "", "you"]) + let v = native_list_append(v, ["tw.n", "pron", "tw.n", "", "", "", "we"]) + let v = native_list_append(v, ["tw.tn", "pron", "tw.tn", "", "", "", "you plural"]) + let v = native_list_append(v, [".kj", "pron", ".kj", "", "", "", "I me"]) + let v = native_list_append(v, [".wn", "pron", ".wn", "", "", "", "we us"]) + let v = native_list_append(v, [".nw", "pron", ".nw", "", "", "", "we us"]) + let v = native_list_append(v, [".wjn", "pron", ".wjn", "", "", "", "alternative form of"]) + let v = native_list_append(v, [".tjwn", "pron", ".tjwn", "", "", "", "you"]) + let v = native_list_append(v, [".tjwnj", "pron", ".tjwnj", "", "", "", "alternative form of"]) + let v = native_list_append(v, [".y", "pron", ".y", "", "", "", "they them"]) + let v = native_list_append(v, [".wy", "pron", ".wy", "", "", "", "they them"]) + let v = native_list_append(v, [".ty", "pron", ".ty", "", "", "", "the two of"]) + let v = native_list_append(v, [".wj", "pron", ".wj", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ntw", "pron", "ntw", "", "", "", "they them see"]) + let v = native_list_append(v, ["tw.tw", "pron", "tw.tw", "", "", "", "used as the"]) + let v = native_list_append(v, ["pꜣw", "pron", "pꜣw", "", "", "", "this that these"]) + let v = native_list_append(v, [".sw", "pron", ".sw", "", "", "", "Late Egyptian variant"]) + let v = native_list_append(v, [".twn", "pron", ".twn", "", "", "", "Late Egyptian variant"]) + let v = native_list_append(v, ["p-n", "pron", "p-n", "", "", "", "he of this"]) + let v = native_list_append(v, ["t-nt", "pron", "t-nt", "", "", "", "she of this"]) + let v = native_list_append(v, ["nꜣyw", "pron", "nꜣyw", "", "", "", "they of these"]) + let v = native_list_append(v, ["twn", "pron", "twn", "", "", "", "Late Egyptian variant"]) + let v = native_list_append(v, ["p", "det", "p", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["py", "det", "py", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nb", "det", "nb", "", "", "", "all every"]) + let v = native_list_append(v, ["tꜣ", "det", "tꜣ", "", "", "", "O vocative reference"]) + let v = native_list_append(v, ["tj", "det", "tj", "", "", "", "this"]) + let v = native_list_append(v, ["pwy", "det", "pwy", "", "", "", "this is…"]) + let v = native_list_append(v, ["tw", "det", "tw", "", "", "", "this"]) + let v = native_list_append(v, ["tn", "det", "tn", "", "", "", "this that"]) + let v = native_list_append(v, ["pw", "det", "pw", "", "", "", "this"]) + let v = native_list_append(v, ["pꜣj", "det", "pꜣj", "", "", "", "this that"]) + let v = native_list_append(v, ["wꜥ", "det", "wꜥ", "", "", "", "the singular indefinite"]) + let v = native_list_append(v, ["pn", "det", "pn", "", "", "", "this that"]) + let v = native_list_append(v, ["pf", "det", "pf", "", "", "", "that"]) + let v = native_list_append(v, ["tf", "det", "tf", "", "", "", "that"]) + let v = native_list_append(v, ["tfꜣ", "det", "tfꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pfꜣ", "det", "pfꜣ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pꜣ", "det", "pꜣ", "", "", "", "O vocative reference"]) + let v = native_list_append(v, ["twy", "det", "twy", "", "", "", "this is…"]) + let v = native_list_append(v, ["jpw", "det", "jpw", "", "", "", "these"]) + let v = native_list_append(v, ["jptw", "det", "jptw", "", "", "", "these"]) + let v = native_list_append(v, ["jpn", "det", "jpn", "", "", "", "these those"]) + let v = native_list_append(v, ["jptn", "det", "jptn", "", "", "", "these those"]) + let v = native_list_append(v, ["nꜣy", "det", "nꜣy", "", "", "", "forms possessives my"]) + let v = native_list_append(v, ["tꜣy", "det", "tꜣy", "", "", "", "forms possessives my"]) + let v = native_list_append(v, ["pꜣy", "det", "pꜣy", "", "", "", "forms possessives my"]) + let v = native_list_append(v, ["jtn", "det", "jtn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jpf", "det", "jpf", "", "", "", "those"]) + let v = native_list_append(v, ["jptf", "det", "jptf", "", "", "", "those"]) + let v = native_list_append(v, ["pj", "det", "pj", "", "", "", "this"]) + let v = native_list_append(v, ["jpwj", "det", "jpwj", "", "", "", "these two"]) + let v = native_list_append(v, ["tꜣj", "det", "tꜣj", "", "", "", "this that"]) + let v = native_list_append(v, ["nꜣj", "det", "nꜣj", "", "", "", "these those"]) + let v = native_list_append(v, ["nhꜣy", "det", "nhꜣy", "", "", "", "the plural indefinite"]) + let v = native_list_append(v, ["ptn", "det", "ptn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jptwt", "det", "jptwt", "", "", "", "these"]) + let v = native_list_append(v, ["jtjw", "det", "jtjw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jptwj", "det", "jptwj", "", "", "", "these two"]) + let v = native_list_append(v, ["jptwtj", "det", "jptwtj", "", "", "", "these two"]) + let v = native_list_append(v, ["jptnj", "det", "jptnj", "", "", "", "these two those"]) + let v = native_list_append(v, ["jptntj", "det", "jptntj", "", "", "", "these two those"]) + let v = native_list_append(v, ["jtjn", "det", "jtjn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ptnt", "det", "ptnt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ntt", "conj", "ntt", "", "", "", "serves as a"]) + let v = native_list_append(v, ["m-ꜥ ntt", "conj", "m-ꜥ ntt", "", "", "", "seeing that"]) + let v = native_list_append(v, ["n ntt", "conj", "n ntt", "", "", "", "because for"]) + let v = native_list_append(v, ["r ntt", "conj", "r ntt", "", "", "", "to wit as"]) + let v = native_list_append(v, ["ḏr ntt", "conj", "ḏr ntt", "", "", "", "since"]) + let v = native_list_append(v, ["ḥr ntt", "conj", "ḥr ntt", "", "", "", "because for"]) + let v = native_list_append(v, ["ḫft ntt", "conj", "ḫft ntt", "", "", "", "considering that in"]) + let v = native_list_append(v, ["r-ntj", "conj", "r-ntj", "", "", "", "introduces direct speech"]) + let v = native_list_append(v, ["m-ḏr", "conj", "m-ḏr", "", "", "", "makes a subjunctive-prospective"]) + let v = native_list_append(v, ["ḥr jwtt", "conj", "ḥr jwtt", "", "", "", "because … not"]) + return v +} + +fn vocab_egy_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_egy_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-enm.el b/elp/src/vocabulary-enm.el new file mode 100644 index 0000000..f534383 --- /dev/null +++ b/elp/src/vocabulary-enm.el @@ -0,0 +1,12317 @@ +// vocabulary-enm.el — Middle English vocabulary seed +// 12296 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 49389 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_enm_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["cat", "noun", "cattes", "", "", "", "cat feline"]) + let v = native_list_append(v, ["word", "noun", "wordes", "", "", "", "A word separable"]) + let v = native_list_append(v, ["livre", "noun", "livre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["book", "noun", "book", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pound", "noun", "poundes", "", "", "", "A measurement for"]) + let v = native_list_append(v, ["pie", "noun", "pie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crow", "noun", "crow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["month", "noun", "month", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["may", "noun", "mayn", "", "", "", "woman"]) + let v = native_list_append(v, ["June", "noun", "June", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["day", "noun", "dayes", "dayes", "daye", "", "A day a"]) + let v = native_list_append(v, ["Monday", "noun", "*Mondayes", "", "", "", "Monday second day"]) + let v = native_list_append(v, ["Tuesday", "noun", "Tuesday", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Wednesday", "noun", "Wednesday", "", "", "", "Wednesday fourth day"]) + let v = native_list_append(v, ["Thursday", "noun", "Thursday", "", "", "", "Thursday fifth day"]) + let v = native_list_append(v, ["Friday", "noun", "Friday", "", "", "", "Friday sixth day"]) + let v = native_list_append(v, ["Saturday", "noun", "Saturday", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noun", "noun", "nounes", "", "", "", "noun part of"]) + let v = native_list_append(v, ["hour", "noun", "hour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minute", "noun", "minute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["craft", "noun", "craftes", "", "", "", "trade union or"]) + let v = native_list_append(v, ["patronage", "noun", "patronagis", "", "", "", "The privilege of"]) + let v = native_list_append(v, ["deal", "noun", "deal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["name", "noun", "names", "", "", "", "name"]) + let v = native_list_append(v, ["fa", "noun", "fa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abacus", "noun", "abacus", "", "", "", "abacus"]) + let v = native_list_append(v, ["abay", "noun", "abay", "", "", "", "The state of"]) + let v = native_list_append(v, ["abbey", "noun", "abbeyes", "", "", "", "An abbey a"]) + let v = native_list_append(v, ["on", "noun", "on", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kun", "noun", "kun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["week", "noun", "week", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winter", "noun", "wintres", "", "", "", "winter"]) + let v = native_list_append(v, ["bone", "noun", "bone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["servant", "noun", "servant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["accidie", "noun", "accidie", "", "", "", "sloth slothfulness"]) + let v = native_list_append(v, ["accompt", "noun", "accompt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alien", "noun", "aliens", "", "", "", "An outsider or"]) + let v = native_list_append(v, ["season", "noun", "season", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spring", "noun", "spring", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["de", "noun", "de", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["het", "noun", "het", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in", "noun", "innes", "", "", "", "Any kind of"]) + let v = native_list_append(v, ["debt", "noun", "debt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orange", "noun", "orange", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seven", "noun", "seven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wolf", "noun", "wolves", "", "", "", "wolf Canis lupus"]) + let v = native_list_append(v, ["planet", "noun", "planet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["star", "noun", "star", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sky", "noun", "skyes", "", "", "", "The atmosphere or"]) + let v = native_list_append(v, ["can", "noun", "can", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["number", "noun", "number", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quarter", "noun", "quarters", "", "", "", "A quarter fourth"]) + let v = native_list_append(v, ["one", "noun", "one", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seme", "noun", "seme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["letter", "noun", "letter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tables", "noun", "tables", "", "", "", "plural of table"]) + let v = native_list_append(v, ["Irish", "noun", "Irish", "", "", "", "Irish"]) + let v = native_list_append(v, ["second", "noun", "second", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bit", "noun", "bit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sun", "noun", "sun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["man", "noun", "men", "mannes", "manne", "", "man male human"]) + let v = native_list_append(v, ["be", "noun", "be", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["is", "noun", "is", "", "", "", "ice frozen water"]) + let v = native_list_append(v, ["are", "noun", "are", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunt", "noun", "cunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fart", "noun", "fart", "", "", "", "fart"]) + let v = native_list_append(v, ["rape", "noun", "rape", "", "", "", "haste hurry"]) + let v = native_list_append(v, ["port", "noun", "ports", "", "", "", "behaviour bearing"]) + let v = native_list_append(v, ["cod", "noun", "coddes", "", "", "", "A seedpod a"]) + let v = native_list_append(v, ["Edward", "noun", "Edward", "", "", "", "a male given"]) + let v = native_list_append(v, ["hund", "noun", "hund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["language", "noun", "language", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bot", "noun", "botes", "", "", "", "A seafaring vessel"]) + let v = native_list_append(v, ["ten", "noun", "ten", "", "", "", "plural of toth"]) + let v = native_list_append(v, ["crap", "noun", "crap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musician", "noun", "musician", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weapon", "noun", "weapon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hell", "noun", "hell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["music", "noun", "music", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["most", "noun", "most", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fere", "noun", "feris", "", "", "", "fear"]) + let v = native_list_append(v, ["war", "noun", "war", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["and", "noun", "and", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Israel", "noun", "Israel", "", "", "", "The Land of"]) + let v = native_list_append(v, ["wage", "noun", "wages", "", "", "", "A wage earnings."]) + let v = native_list_append(v, ["bank", "noun", "banks", "", "", "", "the bank of"]) + let v = native_list_append(v, ["tax", "noun", "tax", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apple", "noun", "apple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fruit", "noun", "fruit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["husband", "noun", "husband", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wall", "noun", "wall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morning", "noun", "morning", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["send", "noun", "send", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["market", "noun", "marketes", "", "markete", "", "A market periodic"]) + let v = native_list_append(v, ["world", "noun", "worldes", "", "", "", "The world the"]) + let v = native_list_append(v, ["take", "noun", "takes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["but", "noun", "but", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["say", "noun", "say", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yesterday", "noun", "yesterday", "", "", "", "The preceding day"]) + let v = native_list_append(v, ["company", "noun", "company", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["work", "noun", "work", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["first", "noun", "first", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["time", "noun", "time", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sect", "noun", "sect", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blood", "noun", "bloods", "", "", "", "blood"]) + let v = native_list_append(v, ["new", "noun", "new", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mars", "noun", "mars", "", "", "", "The blackish magnetic"]) + let v = native_list_append(v, ["love", "noun", "loves", "", "", "", "Love strong and"]) + let v = native_list_append(v, ["standard", "noun", "standards", "", "", "", "A standard a"]) + let v = native_list_append(v, ["feature", "noun", "feature", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mortar", "noun", "mortar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["absence", "noun", "absences", "", "", "", "Being away or"]) + let v = native_list_append(v, ["abstract", "noun", "abstract", "", "", "", "abstract synopsis"]) + let v = native_list_append(v, ["accent", "noun", "accents", "", "", "", "accent modulation of"]) + let v = native_list_append(v, ["ache", "noun", "aches", "", "", "", "Aching long-lasting hurting"]) + let v = native_list_append(v, ["poison", "noun", "poison", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["general", "noun", "generals", "", "", "", "genus class group"]) + let v = native_list_append(v, ["Wales", "noun", "Wales", "", "", "", "Wales a medieval"]) + let v = native_list_append(v, ["storm", "noun", "stormes", "", "", "", "A storm an"]) + let v = native_list_append(v, ["money", "noun", "money", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["night", "noun", "night", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["win", "noun", "win", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cow", "noun", "ky", "cowes", "", "", "A cow female"]) + let v = native_list_append(v, ["Jupiter", "noun", "Jupiter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baby", "noun", "baby", "", "", "", "A child or"]) + let v = native_list_append(v, ["yes", "noun", "yes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ground", "noun", "groundes", "", "grounde", "", "ground"]) + let v = native_list_append(v, ["close", "noun", "close", "", "", "", "plural of cloth"]) + let v = native_list_append(v, ["know", "noun", "know", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["here", "noun", "here", "", "", "", "a military force"]) + let v = native_list_append(v, ["plant", "noun", "plant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tiger", "noun", "tiger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tigre", "noun", "tigre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["England", "noun", "England", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pulpit", "noun", "pulpit", "", "", "", "A pulpit podium"]) + let v = native_list_append(v, ["church", "noun", "church", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gold", "noun", "golds", "", "", "", "gold metal"]) + let v = native_list_append(v, ["grey", "noun", "grey", "", "", "", "grey colour"]) + let v = native_list_append(v, ["purple", "noun", "purple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["red", "noun", "redes", "", "", "", "counsel advice recommendation"]) + let v = native_list_append(v, ["silver", "noun", "silvers", "", "", "", "silver metal"]) + let v = native_list_append(v, ["violet", "noun", "violet", "", "", "", "violet plant in"]) + let v = native_list_append(v, ["third", "noun", "third", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trumpet", "noun", "trumpetes", "", "", "", "A trumpet a"]) + let v = native_list_append(v, ["cane", "noun", "canes", "", "", "", "bamboo sugar cane"]) + let v = native_list_append(v, ["tenth", "noun", "tenth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["football", "noun", "football", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrote", "noun", "wrote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrong", "noun", "wronges", "", "", "", "A wrong injustice"]) + let v = native_list_append(v, ["writer", "noun", "writers", "", "", "", "A draughtsman or"]) + let v = native_list_append(v, ["worst", "noun", "worst", "", "", "", "Something or someone"]) + let v = native_list_append(v, ["throne", "noun", "throne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woman", "noun", "women", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["women", "noun", "women", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laugh", "noun", "laugh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twig", "noun", "twigges", "", "", "", "Any part of"]) + let v = native_list_append(v, ["king", "noun", "kinges", "kinges", "kinge", "", "king monarch"]) + let v = native_list_append(v, ["queen", "noun", "queen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["see", "noun", "sees", "", "", "", "sea ocean"]) + let v = native_list_append(v, ["mouse", "noun", "mouse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["age", "noun", "ages", "", "", "", "The age of"]) + let v = native_list_append(v, ["been", "noun", "been", "", "", "", "ben moringa tree"]) + let v = native_list_append(v, ["penny", "noun", "penny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nature", "noun", "natures", "", "", "", "the Universe existence"]) + let v = native_list_append(v, ["latin", "noun", "latin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["or", "noun", "or", "", "", "", "beginning start"]) + let v = native_list_append(v, ["square", "noun", "squares", "", "", "", "A square tool"]) + let v = native_list_append(v, ["hundred", "noun", "hundredes", "", "", "", "A hundredweight."]) + let v = native_list_append(v, ["stye", "noun", "styes", "", "", "", "A path track"]) + let v = native_list_append(v, ["sol", "noun", "sol", "", "", "", "The brightest and"]) + let v = native_list_append(v, ["humor", "noun", "humor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compass", "noun", "compass", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knight", "noun", "knight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skew", "noun", "skewes", "", "", "", "sky air"]) + let v = native_list_append(v, ["ass", "noun", "ass", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cock", "noun", "cock", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hand", "noun", "hand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coin", "noun", "coin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["animal", "noun", "animales", "", "", "", "An animal considered"]) + let v = native_list_append(v, ["naff", "noun", "naff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["el", "noun", "eles", "", "", "", "eel"]) + let v = native_list_append(v, ["deer", "noun", "deer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ostrich", "noun", "ostriches", "", "", "", "ostrich Struthio camelus"]) + let v = native_list_append(v, ["elk", "noun", "elk", "", "", "", "elk moose Alces"]) + let v = native_list_append(v, ["tonight", "noun", "tonight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feet", "noun", "feet", "", "", "", "plural of fot"]) + let v = native_list_append(v, ["to", "noun", "tos", "", "", "", "toe"]) + let v = native_list_append(v, ["tree", "noun", "tree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ate", "noun", "ate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boy", "noun", "boy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["her", "noun", "heres", "", "", "", "a hair follicular"]) + let v = native_list_append(v, ["our", "noun", "our", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["action", "noun", "action", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vowel", "noun", "voweles", "", "", "", "A vowel sound"]) + let v = native_list_append(v, ["case", "noun", "cases", "", "", "", "box chest casket"]) + let v = native_list_append(v, ["future", "noun", "futures", "", "", "", "A future action"]) + let v = native_list_append(v, ["stem", "noun", "stem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ending", "noun", "ending", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fish", "noun", "fish", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qualm", "noun", "qualm", "", "", "", "Plague disease or"]) + let v = native_list_append(v, ["answer", "noun", "answer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["any", "noun", "any", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arm", "noun", "arms", "", "", "", "arm"]) + let v = native_list_append(v, ["art", "noun", "artes", "", "", "", "Knowledge about a"]) + let v = native_list_append(v, ["as", "noun", "as", "", "", "", "ace single spot"]) + let v = native_list_append(v, ["adamant", "noun", "adamants", "", "", "", "adamant adamantine valuable"]) + let v = native_list_append(v, ["north", "noun", "north", "", "", "", "north northernness"]) + let v = native_list_append(v, ["south", "noun", "south", "", "", "", "south southernness"]) + let v = native_list_append(v, ["west", "noun", "west", "", "", "", "west compass point"]) + let v = native_list_append(v, ["snake", "noun", "snakes", "", "", "", "snake"]) + let v = native_list_append(v, ["wax", "noun", "waxes", "", "", "", "wax beeswax sealing"]) + let v = native_list_append(v, ["what", "noun", "what", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["right", "noun", "rightes", "", "", "", "A good deed"]) + let v = native_list_append(v, ["father", "noun", "father", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mother", "noun", "mother", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brother", "noun", "bretheren", "brotheres", "", "", "A brother or"]) + let v = native_list_append(v, ["sister", "noun", "sister", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["child", "noun", "children", "childes", "childe", "", "A child person"]) + let v = native_list_append(v, ["son", "noun", "son", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uncle", "noun", "uncles", "", "", "", "uncle brother of"]) + let v = native_list_append(v, ["aunt", "noun", "aunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nephew", "noun", "nephew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bee", "noun", "been", "", "", "", "A bee insect"]) + let v = native_list_append(v, ["wing", "noun", "wing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cold", "noun", "cold", "", "", "", "Coldness the state"]) + let v = native_list_append(v, ["hot", "noun", "hot", "", "", "", "hotness"]) + let v = native_list_append(v, ["warm", "noun", "warm", "", "", "", "warmness heat"]) + let v = native_list_append(v, ["rainbow", "noun", "rainbow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["not", "noun", "not", "", "", "", "nothing nought"]) + let v = native_list_append(v, ["finger", "noun", "finger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flower", "noun", "flower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["men", "noun", "men", "", "", "", "plural of man"]) + let v = native_list_append(v, ["male", "noun", "males", "", "", "", "A man a"]) + let v = native_list_append(v, ["female", "noun", "female", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thumb", "noun", "thumb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duck", "noun", "duck", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rue", "noun", "rue", "", "", "", "A kind of"]) + let v = native_list_append(v, ["hers", "noun", "hers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kingdom", "noun", "kingdoms", "", "", "", "dominion lordship rulership"]) + let v = native_list_append(v, ["both", "noun", "both", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hole", "noun", "holes", "", "", "", "hole"]) + let v = native_list_append(v, ["how", "noun", "how", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["azure", "noun", "azure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bombard", "noun", "bombardes", "", "", "", "cannon bombard"]) + let v = native_list_append(v, ["pigment", "noun", "pigmentes", "", "", "", "A spice or"]) + let v = native_list_append(v, ["dye", "noun", "dye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rat", "noun", "rat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ivory", "noun", "ivory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tan", "noun", "tannes", "", "", "", "oak bark"]) + let v = native_list_append(v, ["lob", "noun", "lob", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lavender", "noun", "lavenderes", "", "", "", "A washer one"]) + let v = native_list_append(v, ["tide", "noun", "tide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["olive", "noun", "olive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plum", "noun", "plum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saffron", "noun", "saffron", "", "", "", "saffron the plant"]) + let v = native_list_append(v, ["pen", "noun", "pen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["copper", "noun", "copper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salmon", "noun", "salmon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rose", "noun", "roses", "", "", "", "rose plant belonging"]) + let v = native_list_append(v, ["tin", "noun", "tin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gun", "noun", "gun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["city", "noun", "city", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minister", "noun", "minister", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["priest", "noun", "priest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mustard", "noun", "mustard", "", "", "", "A mustard plant"]) + let v = native_list_append(v, ["rice", "noun", "rice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["egg", "noun", "egg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colour", "noun", "colours", "", "", "", "colour hue shade"]) + let v = native_list_append(v, ["ruby", "noun", "rubies", "", "", "", "A ruby red"]) + let v = native_list_append(v, ["fortune", "noun", "fortunes", "", "", "", "fortune fate chance"]) + let v = native_list_append(v, ["palace", "noun", "palace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["al", "noun", "alles", "", "", "", "A tool or"]) + let v = native_list_append(v, ["del", "noun", "deles", "", "", "", "A part proportion"]) + let v = native_list_append(v, ["wei", "noun", "wei", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["haar", "noun", "haar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["god", "noun", "goddes", "goddes", "", "", "A god or"]) + let v = native_list_append(v, ["friend", "noun", "friend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gripe", "noun", "grippes", "", "", "", "Gripping or grabbing"]) + let v = native_list_append(v, ["kind", "noun", "kind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bal", "noun", "balles", "", "", "", "A ball an"]) + let v = native_list_append(v, ["ban", "noun", "ban", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["basin", "noun", "basin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bat", "noun", "battes", "", "", "", "A mace bat"]) + let v = native_list_append(v, ["bed", "noun", "beddes", "beddes", "bedde", "", "A place of"]) + let v = native_list_append(v, ["bite", "noun", "bites", "", "", "", "A bite the"]) + let v = native_list_append(v, ["song", "noun", "songes", "songes", "songe", "", "A song lyrical"]) + let v = native_list_append(v, ["cry", "noun", "cries", "", "", "", "A shout or"]) + let v = native_list_append(v, ["tear", "noun", "tear", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eye", "noun", "eyen", "", "", "", "The eye the"]) + let v = native_list_append(v, ["bef", "noun", "bef", "beves", "", "", "Beef the meat"]) + let v = native_list_append(v, ["beit", "noun", "beit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sound", "noun", "sound", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bran", "noun", "bran", "", "", "", "The ground husk"]) + let v = native_list_append(v, ["voice", "noun", "voice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acre", "noun", "acre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ver", "noun", "ver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vers", "noun", "verses", "", "", "", "A line or"]) + let v = native_list_append(v, ["verre", "noun", "verre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vert", "noun", "vert", "", "", "", "Any plant having"]) + let v = native_list_append(v, ["jargon", "noun", "jargon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["we", "noun", "we", "", "", "", "woe grief sadness"]) + let v = native_list_append(v, ["he", "noun", "he", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["they", "noun", "þeies", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["them", "noun", "them", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["talent", "noun", "talentes", "", "", "", "A talent ancient"]) + let v = native_list_append(v, ["tooth", "noun", "tooth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hair", "noun", "hair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ear", "noun", "ear", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nose", "noun", "noses", "", "", "", "nose protrusion of"]) + let v = native_list_append(v, ["mouth", "noun", "mouths", "", "", "", "mouth"]) + let v = native_list_append(v, ["elbow", "noun", "elbow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leg", "noun", "legges", "", "", "", "leg limb"]) + let v = native_list_append(v, ["foot", "noun", "foot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knee", "noun", "knee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snail", "noun", "snail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angel", "noun", "angel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clause", "noun", "clauses", "", "", "", "sentence clause"]) + let v = native_list_append(v, ["face", "noun", "faces", "", "", "", "face"]) + let v = native_list_append(v, ["smell", "noun", "smell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heel", "noun", "heel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swan", "noun", "swannes", "", "", "", "swan bird of"]) + let v = native_list_append(v, ["street", "noun", "street", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["path", "noun", "pathes", "", "", "", "An informal or"]) + let v = native_list_append(v, ["lane", "noun", "lanes", "", "", "", "lane alley narrow"]) + let v = native_list_append(v, ["do", "noun", "dos", "", "", "", "A female fallow"]) + let v = native_list_append(v, ["womb", "noun", "womb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["virtue", "noun", "virtue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axe", "noun", "axe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rain", "noun", "rain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["voir", "noun", "voir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sy", "noun", "sy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hay", "noun", "hay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungry", "noun", "hungry", "", "", "", "Those who are"]) + let v = native_list_append(v, ["musik", "noun", "musik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tak", "noun", "takes", "", "", "", "clasp"]) + let v = native_list_append(v, ["while", "noun", "while", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leche", "noun", "leches", "", "", "", "an infusion"]) + let v = native_list_append(v, ["ail", "noun", "ail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["law", "noun", "law", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boke", "noun", "boke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wife", "noun", "wife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wilde", "noun", "wilde", "", "", "", "An unsettled chaotic"]) + let v = native_list_append(v, ["Scotland", "noun", "Scotland", "", "", "", "Scotland a medieval"]) + let v = native_list_append(v, ["pin", "noun", "pin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maid", "noun", "maid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maiden", "noun", "maiden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["braid", "noun", "braid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["science", "noun", "sciences", "", "", "", "facts knowledge that"]) + let v = native_list_append(v, ["oil", "noun", "oil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nurse", "noun", "nurse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foe", "noun", "foe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ber", "noun", "ber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vapor", "noun", "vapor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tribe", "noun", "tribus", "", "", "", "One of the"]) + let v = native_list_append(v, ["hier", "noun", "hier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["er", "noun", "er", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lead", "noun", "lead", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["were", "noun", "were", "", "", "", "wearing"]) + let v = native_list_append(v, ["bore", "noun", "bores", "", "", "", "A bore hole"]) + let v = native_list_append(v, ["borne", "noun", "borne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bet", "noun", "bet", "", "", "", "Something or someone"]) + let v = native_list_append(v, ["bound", "noun", "bound", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bled", "noun", "bled", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blow", "noun", "blowes", "", "", "", "A blast of"]) + let v = native_list_append(v, ["blew", "noun", "blew", "", "", "", "blue"]) + let v = native_list_append(v, ["breed", "noun", "breed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bred", "noun", "bred", "", "", "", "bread pastry"]) + let v = native_list_append(v, ["burn", "noun", "burn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burst", "noun", "burstes", "", "", "", "loss destruction"]) + let v = native_list_append(v, ["chose", "noun", "chose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["come", "noun", "comes", "", "", "", "arrival coming"]) + let v = native_list_append(v, ["dug", "noun", "dug", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dove", "noun", "dove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["done", "noun", "done", "", "", "", "gift present"]) + let v = native_list_append(v, ["dream", "noun", "dream", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fell", "noun", "fell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fed", "noun", "fed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["felt", "noun", "feltes", "", "", "", "Felted fabric or"]) + let v = native_list_append(v, ["fight", "noun", "fightes", "", "", "", "A fight a"]) + let v = native_list_append(v, ["flesh", "noun", "flesh", "", "", "", "flesh especially that"]) + let v = native_list_append(v, ["find", "noun", "find", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flee", "noun", "flee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dart", "noun", "dartes", "", "", "", "A hand-thrown spear"]) + let v = native_list_append(v, ["get", "noun", "get", "", "", "", "jet hardened coal"]) + let v = native_list_append(v, ["got", "noun", "gotes", "", "", "", "goat especially a"]) + let v = native_list_append(v, ["gone", "noun", "gone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["held", "noun", "held", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grind", "noun", "grindes", "", "", "", "The function of"]) + let v = native_list_append(v, ["have", "noun", "have", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["had", "noun", "had", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hide", "noun", "hides", "", "", "", "hide unit of"]) + let v = native_list_append(v, ["hid", "noun", "hid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hold", "noun", "hold", "", "", "", "carcass flesh"]) + let v = native_list_append(v, ["hurt", "noun", "hurtes", "", "", "", "Injury harm or"]) + let v = native_list_append(v, ["keep", "noun", "keep", "", "", "", "heed notice note"]) + let v = native_list_append(v, ["knew", "noun", "knew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["led", "noun", "led", "", "", "", "lead element Pl"]) + let v = native_list_append(v, ["light", "noun", "lightes", "", "", "", "The radiation which"]) + let v = native_list_append(v, ["lit", "noun", "lit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["make", "noun", "makes", "", "", "", "A bride or"]) + let v = native_list_append(v, ["made", "noun", "made", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meet", "noun", "meet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["back", "noun", "back", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sheep", "noun", "sheep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rod", "noun", "rod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mal", "noun", "mal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wine", "noun", "wines", "", "", "", "friend"]) + let v = native_list_append(v, ["actor", "noun", "actor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cable", "noun", "cables", "", "", "", "A cable or"]) + let v = native_list_append(v, ["shirt", "noun", "shirt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skirt", "noun", "skirt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["substance", "noun", "substance", "", "", "", "essence"]) + let v = native_list_append(v, ["thunder", "noun", "thunder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ye", "noun", "yën", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thy", "noun", "thy", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["where", "noun", "where", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mow", "noun", "mow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boot", "noun", "boot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brush", "noun", "brush", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cough", "noun", "cough", "", "", "", "coughing"]) + let v = native_list_append(v, ["cheese", "noun", "cheese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crime", "noun", "crime", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sin", "noun", "sin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chin", "noun", "chin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thing", "noun", "thinges", "", "", "", "thing"]) + let v = native_list_append(v, ["simple", "noun", "simple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["self", "noun", "selfs", "", "", "", "same thing the"]) + let v = native_list_append(v, ["button", "noun", "button", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chance", "noun", "chance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bread", "noun", "bread", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chalk", "noun", "chalk", "", "", "", "chalk"]) + let v = native_list_append(v, ["basket", "noun", "baskettes", "", "", "", "A basket a"]) + let v = native_list_append(v, ["butter", "noun", "butter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["branch", "noun", "branch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cell", "noun", "cell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleep", "noun", "sleep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stay", "noun", "stayes", "", "", "", "A stay rope."]) + let v = native_list_append(v, ["reset", "noun", "reset", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rode", "noun", "rodes", "", "", "", "A cross or"]) + let v = native_list_append(v, ["ring", "noun", "ring", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["run", "noun", "run", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saw", "noun", "saw", "", "", "", "saw"]) + let v = native_list_append(v, ["sent", "noun", "sent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sew", "noun", "sew", "", "", "", "broth gravy liquid"]) + let v = native_list_append(v, ["shake", "noun", "shake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shine", "noun", "shine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shoot", "noun", "shoot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sang", "noun", "sang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sat", "noun", "sat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slay", "noun", "slayes", "", "", "", "A sley or"]) + let v = native_list_append(v, ["sling", "noun", "sling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spoke", "noun", "spokes", "", "", "", "A spoke a"]) + let v = native_list_append(v, ["smelt", "noun", "smelt", "", "", "", "smelt fish"]) + let v = native_list_append(v, ["spoken", "noun", "spoken", "", "", "", "plural of spoke"]) + let v = native_list_append(v, ["speed", "noun", "speed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sped", "noun", "sped", "", "spede", "", "fortune luck especially"]) + let v = native_list_append(v, ["spin", "noun", "spin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spun", "noun", "spun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprung", "noun", "sprung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sting", "noun", "sting", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stink", "noun", "stink", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strew", "noun", "strew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swore", "noun", "swore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taken", "noun", "takenes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tore", "noun", "tore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thought", "noun", "thoughtes", "", "", "", "product of mental"]) + let v = native_list_append(v, ["thrust", "noun", "thrust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wake", "noun", "wakes", "", "", "", "sleeplessness wakefulness"]) + let v = native_list_append(v, ["woke", "noun", "woke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wore", "noun", "wore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wet", "noun", "wetes", "", "", "", "Water or another"]) + let v = native_list_append(v, ["won", "noun", "wones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wind", "noun", "wind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["round", "noun", "roundes", "", "", "", "A round circular"]) + let v = native_list_append(v, ["sot", "noun", "sottes", "", "", "", "One who lacks"]) + let v = native_list_append(v, ["cause", "noun", "causes", "", "", "", "cause"]) + let v = native_list_append(v, ["cook", "noun", "cookes", "", "", "", "cook chef restaurateur"]) + let v = native_list_append(v, ["cotton", "noun", "cotton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["change", "noun", "change", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cloth", "noun", "clothes", "", "", "", "Cloth fabric or"]) + let v = native_list_append(v, ["comb", "noun", "combes", "", "", "", "A comb toothed"]) + let v = native_list_append(v, ["box", "noun", "boxes", "", "", "", "box tree the"]) + let v = native_list_append(v, ["cloud", "noun", "cloudes", "", "", "", "A cloud mass"]) + let v = native_list_append(v, ["brain", "noun", "brain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anchor", "noun", "anchor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cement", "noun", "cement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mallard", "noun", "mallard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heron", "noun", "herons", "", "", "", "the grey heron"]) + let v = native_list_append(v, ["act", "noun", "act", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["balance", "noun", "balance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ball", "noun", "ball", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cake", "noun", "cakes", "", "", "", "A cake any"]) + let v = native_list_append(v, ["care", "noun", "cares", "", "", "", "grief sorrow"]) + let v = native_list_append(v, ["base", "noun", "bases", "", "", "", "A foundation or"]) + let v = native_list_append(v, ["agreement", "noun", "agreement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cover", "noun", "covers", "", "", "", "Something that covers."]) + let v = native_list_append(v, ["stork", "noun", "storkes", "", "", "", "stork"]) + let v = native_list_append(v, ["journey", "noun", "journey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venom", "noun", "venom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ven", "noun", "ven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ice", "noun", "ice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["decline", "noun", "decline", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acorn", "noun", "acorn", "", "", "", "An acorn oak"]) + let v = native_list_append(v, ["difference", "noun", "differences", "", "", "", "Difference the state"]) + let v = native_list_append(v, ["drawer", "noun", "drawers", "", "", "", "One who pulls."]) + let v = native_list_append(v, ["end", "noun", "end", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["falcon", "noun", "falcon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jay", "noun", "jayes", "", "", "", "jay bird"]) + let v = native_list_append(v, ["nightingale", "noun", "nightingale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["power", "noun", "power", "", "", "", "Ability power or"]) + let v = native_list_append(v, ["camel", "noun", "cameles", "", "", "", "camel mammal of"]) + let v = native_list_append(v, ["hare", "noun", "hares", "", "", "", "A hare or"]) + let v = native_list_append(v, ["otter", "noun", "otter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lynx", "noun", "lenxis", "", "", "", "lynx"]) + let v = native_list_append(v, ["ermine", "noun", "ermine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mole", "noun", "mole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fox", "noun", "foxes", "", "", "", "A fox or"]) + let v = native_list_append(v, ["ram", "noun", "rammes", "", "", "", "male sheep ram"]) + let v = native_list_append(v, ["bir", "noun", "birs", "", "", "", "A strong or"]) + let v = native_list_append(v, ["lem", "noun", "lem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rood", "noun", "rood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sap", "noun", "sap", "", "", "", "sap plant juices"]) + let v = native_list_append(v, ["castle", "noun", "castle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pawn", "noun", "pawn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jewel", "noun", "jewel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["low", "noun", "low", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["life", "noun", "life", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["house", "noun", "house", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hospital", "noun", "hospitals", "", "", "", "A hostel or"]) + let v = native_list_append(v, ["knife", "noun", "knife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["metal", "noun", "metalles", "", "", "", "metal class of"]) + let v = native_list_append(v, ["mountain", "noun", "mountain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salt", "noun", "salt", "", "", "", "salt sodium chloride"]) + let v = native_list_append(v, ["tail", "noun", "tail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blade", "noun", "blade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sword", "noun", "sword", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brass", "noun", "brass", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liver", "noun", "liver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["far", "noun", "far", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["old", "noun", "old", "", "", "", "A moon in"]) + let v = native_list_append(v, ["river", "noun", "river", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stomach", "noun", "stomach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["count", "noun", "count", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["play", "noun", "play", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dust", "noun", "dust", "", "", "", "dust powder"]) + let v = native_list_append(v, ["sand", "noun", "sand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stone", "noun", "stone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smoke", "noun", "smokes", "", "", "", "smoke"]) + let v = native_list_append(v, ["flame", "noun", "flame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ash", "noun", "ash", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["none", "noun", "none", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wow", "noun", "wow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snow", "noun", "snowes", "", "", "", "snow frozen water"]) + let v = native_list_append(v, ["fil", "noun", "fil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["key", "noun", "key", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["field", "noun", "field", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["e", "noun", "e", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heaven", "noun", "heaven", "", "", "", "rare form of"]) + let v = native_list_append(v, ["bible", "noun", "bible", "", "", "", "The Bible Christian"]) + let v = native_list_append(v, ["crown", "noun", "crown", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cute", "noun", "cute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Europe", "noun", "Europe", "", "", "", "Europe a continent"]) + let v = native_list_append(v, ["Jew", "noun", "Jewes", "Jewene", "", "", "Jew member of"]) + let v = native_list_append(v, ["vein", "noun", "vein", "", "", "", "something that is"]) + let v = native_list_append(v, ["sorry", "noun", "sorry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["empire", "noun", "empire", "", "", "", "emperorship rank or"]) + let v = native_list_append(v, ["baron", "noun", "baron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barony", "noun", "barony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duke", "noun", "duke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["county", "noun", "county", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["organ", "noun", "organ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tissue", "noun", "tissue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["people", "noun", "people", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hilt", "noun", "hilt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["u", "noun", "u", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chivalry", "noun", "chivalry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ese", "noun", "ese", "", "", "", "Physical comfort or"]) + let v = native_list_append(v, ["stroke", "noun", "strokes", "", "", "", "Any striking or"]) + let v = native_list_append(v, ["mare", "noun", "mares", "", "", "", "A horse member"]) + let v = native_list_append(v, ["colt", "noun", "coltes", "", "", "", "A juvenile equid"]) + let v = native_list_append(v, ["calf", "noun", "calvere", "", "", "", "calf cow that"]) + let v = native_list_append(v, ["vessel", "noun", "vessels", "", "", "", "A container or"]) + let v = native_list_append(v, ["syn", "noun", "syn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["powder", "noun", "powder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dew", "noun", "dewes", "", "", "", "Dew moisture present"]) + let v = native_list_append(v, ["blower", "noun", "blower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hammer", "noun", "hammer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewe", "noun", "ewes", "", "", "", "ewe female sheep"]) + let v = native_list_append(v, ["peer", "noun", "peer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perch", "noun", "perch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seem", "noun", "semes", "", "", "", "A seam in"]) + let v = native_list_append(v, ["brewer", "noun", "brewer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["home", "noun", "home", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gain", "noun", "gain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ore", "noun", "ores", "", "", "", "oar lever for"]) + let v = native_list_append(v, ["gem", "noun", "gem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kin", "noun", "kin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kith", "noun", "kith", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["band", "noun", "bandes", "", "", "", "That which obstructs"]) + let v = native_list_append(v, ["mock", "noun", "mock", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["governor", "noun", "governor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weer", "noun", "weer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moron", "noun", "moron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heet", "noun", "heet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mildew", "noun", "mildew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halm", "noun", "helmes", "", "", "", "The stalks remaining"]) + let v = native_list_append(v, ["note", "noun", "note", "", "", "", "note"]) + let v = native_list_append(v, ["floor", "noun", "floor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scrub", "noun", "scrub", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moisture", "noun", "moisture", "", "", "", "moistness wetness"]) + let v = native_list_append(v, ["wal", "noun", "walles", "", "", "", "wall"]) + let v = native_list_append(v, ["burden", "noun", "burden", "", "", "", "plural of berde"]) + let v = native_list_append(v, ["hem", "noun", "hem", "", "", "", "hem edge of"]) + let v = native_list_append(v, ["pipe", "noun", "pipes", "", "", "", "A pipe a"]) + let v = native_list_append(v, ["mase", "noun", "mases", "", "", "", "Something that causes"]) + let v = native_list_append(v, ["maselyn", "noun", "maselyn", "", "", "", "a vessel made"]) + let v = native_list_append(v, ["maser", "noun", "maser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unwisdom", "noun", "unwisdom", "", "", "", "idiocy stupidity"]) + let v = native_list_append(v, ["hun", "noun", "hun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["panier", "noun", "panier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aa", "noun", "aa", "", "", "", "river stream in"]) + let v = native_list_append(v, ["wee", "noun", "wee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brat", "noun", "brat", "", "", "", "a coarse cloak"]) + let v = native_list_append(v, ["information", "noun", "information", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cornet", "noun", "cornettes", "", "", "", "A cornet musical"]) + let v = native_list_append(v, ["game", "noun", "games", "", "", "", "Joy entertainment that"]) + let v = native_list_append(v, ["fighter", "noun", "fighter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["original", "noun", "originals", "", "", "", "the origin lineage"]) + let v = native_list_append(v, ["kernel", "noun", "kerneles", "", "", "", "The seed grain"]) + let v = native_list_append(v, ["garden", "noun", "garden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strokes", "noun", "strokes", "", "", "", "plural of stroke"]) + let v = native_list_append(v, ["paper", "noun", "papyres", "", "", "", "paper thin white"]) + let v = native_list_append(v, ["view", "noun", "view", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["image", "noun", "image", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["udder", "noun", "uddres", "", "", "", "udder mammary gland"]) + let v = native_list_append(v, ["queer", "noun", "queer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["las", "noun", "las", "", "", "", "lace"]) + let v = native_list_append(v, ["parliament", "noun", "parliament", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spider", "noun", "spider", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["damp", "noun", "damp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sense", "noun", "senses", "", "", "", "meaning signification interpretation"]) + let v = native_list_append(v, ["kerf", "noun", "kerves", "", "", "", "The act of"]) + let v = native_list_append(v, ["quest", "noun", "questes", "", "", "", "A legal inquest"]) + let v = native_list_append(v, ["hey", "noun", "hey", "", "", "", "hay"]) + let v = native_list_append(v, ["hanger", "noun", "hanger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ABC", "noun", "ABC", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bath", "noun", "bathes", "", "", "", "A bath body"]) + let v = native_list_append(v, ["rein", "noun", "rein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fier", "noun", "fier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sea", "noun", "sea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blod", "noun", "blod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wapen", "noun", "wapen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tare", "noun", "tares", "", "", "", "Vetch or tare"]) + let v = native_list_append(v, ["ham", "noun", "hammes", "", "", "", "An enclosed pasture."]) + let v = native_list_append(v, ["tres", "noun", "tres", "", "", "", "plural of tre"]) + let v = native_list_append(v, ["due", "noun", "due", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tre", "noun", "tres", "", "", "", "A tree or"]) + let v = native_list_append(v, ["sei", "noun", "sei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cop", "noun", "coppes", "", "", "", "summit of a"]) + let v = native_list_append(v, ["rot", "noun", "rot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["division", "noun", "division", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dame", "noun", "dames", "", "", "", "lady high-ranking or"]) + let v = native_list_append(v, ["sir", "noun", "sir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elf", "noun", "elves", "", "", "", "elf fairy"]) + let v = native_list_append(v, ["cord", "noun", "cord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["better", "noun", "better", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["locust", "noun", "locust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mot", "noun", "motes", "", "", "", "speck particle"]) + let v = native_list_append(v, ["flor", "noun", "flores", "", "", "", "floor bottom surface"]) + let v = native_list_append(v, ["fleur", "noun", "fleur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musique", "noun", "musique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boc", "noun", "boc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melle", "noun", "melle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coke", "noun", "coke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lavatory", "noun", "lavatory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lune", "noun", "lune", "", "", "", "The celestial body"]) + let v = native_list_append(v, ["universe", "noun", "universe", "", "", "", "The universe the"]) + let v = native_list_append(v, ["dawn", "noun", "dawn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Athens", "noun", "Athens", "", "", "", "Athens the capital"]) + let v = native_list_append(v, ["Paris", "noun", "Paris", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stud", "noun", "stud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["London", "noun", "London", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["munt", "noun", "munt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mint", "noun", "mint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["line", "noun", "lines", "", "", "", "rope cord"]) + let v = native_list_append(v, ["beverage", "noun", "beverages", "", "", "", "An alcoholic beverage"]) + let v = native_list_append(v, ["mer", "noun", "mer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tort", "noun", "tortes", "", "", "", "tort wrong"]) + let v = native_list_append(v, ["milk", "noun", "milks", "", "", "", "milk"]) + let v = native_list_append(v, ["flight", "noun", "flights", "", "", "", "flight act of"]) + let v = native_list_append(v, ["seconde", "noun", "seconde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["appel", "noun", "apples", "", "", "", "fruit nut"]) + let v = native_list_append(v, ["prune", "noun", "prunes", "", "", "", "A plum fruit"]) + let v = native_list_append(v, ["fuel", "noun", "fuel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dam", "noun", "dam", "", "", "", "dam structure to"]) + let v = native_list_append(v, ["mile", "noun", "mile", "", "", "", "millet grass used"]) + let v = native_list_append(v, ["mercury", "noun", "mercury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fe", "noun", "fe", "", "", "", "livestock cattle"]) + let v = native_list_append(v, ["em", "noun", "emes", "", "", "", "uncle brother of"]) + let v = native_list_append(v, ["ol", "noun", "ol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["personne", "noun", "personne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sex", "noun", "sex", "", "", "", "sex"]) + let v = native_list_append(v, ["au", "noun", "au", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ar", "noun", "ar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["se", "noun", "se", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pot", "noun", "pottes", "", "", "", "A pot a"]) + let v = native_list_append(v, ["universal", "noun", "universal", "", "", "", "A category class"]) + let v = native_list_append(v, ["pers", "noun", "pers", "", "", "", "blue blue-grey colour"]) + let v = native_list_append(v, ["tar", "noun", "tar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ce", "noun", "ce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eu", "noun", "eu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dy", "noun", "dy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ho", "noun", "ho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["po", "noun", "poos", "", "", "", "peacock"]) + let v = native_list_append(v, ["ra", "noun", "ra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pa", "noun", "pa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlement", "noun", "parlement", "", "", "", "A discussion or"]) + let v = native_list_append(v, ["pis", "noun", "pis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wan", "noun", "wan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["half", "noun", "halves", "", "", "", "half"]) + let v = native_list_append(v, ["envy", "noun", "envy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mus", "noun", "mus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pe", "noun", "pe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gut", "noun", "gut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["well", "noun", "well", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bonne", "noun", "bonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["louse", "noun", "louse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jet", "noun", "jet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inch", "noun", "inch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pik", "noun", "pik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spade", "noun", "spades", "", "", "", "tool for digging"]) + let v = native_list_append(v, ["tool", "noun", "toles", "", "", "", "A tool implement"]) + let v = native_list_append(v, ["der", "noun", "der", "", "", "", "A wild animal"]) + let v = native_list_append(v, ["town", "noun", "town", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surname", "noun", "surnames", "", "", "", "epithet nickname"]) + let v = native_list_append(v, ["champion", "noun", "champion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["real", "noun", "real", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dok", "noun", "dok", "", "", "", "Hair cut at"]) + let v = native_list_append(v, ["fork", "noun", "fork", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sonne", "noun", "sonnes", "", "", "", "The brightest and"]) + let v = native_list_append(v, ["lever", "noun", "lever", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Michael", "noun", "Michael", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lauriol", "noun", "lauriol", "", "", "", "spurge laurel Daphne"]) + let v = native_list_append(v, ["laurer", "noun", "laurers", "", "", "", "laurel"]) + let v = native_list_append(v, ["trash", "noun", "trash", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["launder", "noun", "launder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laund", "noun", "laund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["launcegaye", "noun", "launcegaye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["launce", "noun", "launces", "", "", "", "A lance long"]) + let v = native_list_append(v, ["laughter", "noun", "laughtres", "", "", "", "Laughter the production"]) + let v = native_list_append(v, ["gras", "noun", "grasses", "", "", "", "A grass A"]) + let v = native_list_append(v, ["dice", "noun", "dice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["problem", "noun", "problem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["langage", "noun", "langages", "", "", "", "language tongue speech"]) + let v = native_list_append(v, ["degree", "noun", "degree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["way", "noun", "way", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["will", "noun", "will", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["might", "noun", "might", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["must", "noun", "must", "", "", "", "must wine that"]) + let v = native_list_append(v, ["holy", "noun", "holies", "", "", "", "The state of"]) + let v = native_list_append(v, ["doom", "noun", "doom", "", "", "", "a judgement legal"]) + let v = native_list_append(v, ["Christ", "noun", "Christ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armor", "noun", "armor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weird", "noun", "weird", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forest", "noun", "forestes", "", "", "", "A forest or"]) + let v = native_list_append(v, ["grove", "noun", "groves", "", "", "", "grove small forest"]) + let v = native_list_append(v, ["muse", "noun", "muse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ea", "noun", "ea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ei", "noun", "ei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ele", "noun", "ele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["college", "noun", "collegis", "", "", "", "A group of"]) + let v = native_list_append(v, ["staff", "noun", "staff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["accusement", "noun", "accusement", "", "", "", "accusation"]) + let v = native_list_append(v, ["net", "noun", "net", "", "", "", "net a mesh"]) + let v = native_list_append(v, ["navel", "noun", "naveles", "", "", "", "navel of a"]) + let v = native_list_append(v, ["side", "noun", "side", "", "", "", "side"]) + let v = native_list_append(v, ["luff", "noun", "luff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["requiem", "noun", "requiem", "", "", "", "requiem mass for"]) + let v = native_list_append(v, ["ship", "noun", "ship", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["splinter", "noun", "splinter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["proctor", "noun", "proctor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mercurial", "noun", "mercurial", "", "", "", "A plant belonging"]) + let v = native_list_append(v, ["mate", "noun", "mates", "", "", "", "mate companion comrade"]) + let v = native_list_append(v, ["apron", "noun", "apron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waist", "noun", "waist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["almond", "noun", "almondes", "", "", "", "An almond tree"]) + let v = native_list_append(v, ["aqua", "noun", "aqua", "", "", "", "water"]) + let v = native_list_append(v, ["rust", "noun", "rust", "", "", "", "rust oxidisation of"]) + let v = native_list_append(v, ["pair", "noun", "pair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sine", "noun", "sines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mail", "noun", "mail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nail", "noun", "nail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matrix", "noun", "matrix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bar", "noun", "bar", "", "", "", "Northern form of"]) + let v = native_list_append(v, ["slave", "noun", "slave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["province", "noun", "province", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["damage", "noun", "damages", "", "", "", "damage harm injury"]) + let v = native_list_append(v, ["user", "noun", "user", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["share", "noun", "shares", "", "", "", "plowshare"]) + let v = native_list_append(v, ["solstice", "noun", "solstices", "", "", "", "solstice summer or"]) + let v = native_list_append(v, ["cross", "noun", "crosses", "", "", "", "A cross or"]) + let v = native_list_append(v, ["Normandy", "noun", "Normandy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flood", "noun", "flood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Rome", "noun", "Rome", "", "", "", "Rome a city"]) + let v = native_list_append(v, ["skin", "noun", "skin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clap", "noun", "clap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noise", "noun", "noise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["silence", "noun", "silence", "", "", "", "Silence the state"]) + let v = native_list_append(v, ["Venice", "noun", "Venice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sulphur", "noun", "sulphurs", "", "", "", "sulfur"]) + let v = native_list_append(v, ["koper", "noun", "koper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["believe", "noun", "believe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nem", "noun", "nem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nec", "noun", "nec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fan", "noun", "fannes", "", "", "", "A mechanism or"]) + let v = native_list_append(v, ["lad", "noun", "lad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glass", "noun", "glass", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Dane", "noun", "Danes", "", "", "", "Dane"]) + let v = native_list_append(v, ["Marche", "noun", "Marche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pole", "noun", "poles", "", "", "", "pole stake staff"]) + let v = native_list_append(v, ["sel", "noun", "sel", "", "", "", "Good fortune prosperity"]) + let v = native_list_append(v, ["length", "noun", "length", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wat", "noun", "wat", "", "", "", "A person."]) + let v = native_list_append(v, ["Nicolas", "noun", "Nicolas", "", "", "", "a male given"]) + let v = native_list_append(v, ["Nicholas", "noun", "Nicholas", "", "", "", "a male given"]) + let v = native_list_append(v, ["tie", "noun", "tie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parable", "noun", "parables", "", "", "", "A parable or"]) + let v = native_list_append(v, ["score", "noun", "scores", "", "", "", "score"]) + let v = native_list_append(v, ["pauper", "noun", "pauper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weber", "noun", "weber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shadow", "noun", "shadow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["violence", "noun", "violence", "", "", "", "Violence harmful manual"]) + let v = native_list_append(v, ["drone", "noun", "drone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wart", "noun", "wart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hype", "noun", "hype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hound", "noun", "houndes", "", "hounde", "", "dog hound The"]) + let v = native_list_append(v, ["lathe", "noun", "lathes", "", "", "", "a barn to"]) + let v = native_list_append(v, ["garlic", "noun", "garlic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["check", "noun", "check", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eel", "noun", "eel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cheque", "noun", "cheque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["namen", "noun", "namen", "", "", "", "plural of name"]) + let v = native_list_append(v, ["club", "noun", "club", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["los", "noun", "los", "", "", "", "loss"]) + let v = native_list_append(v, ["ruse", "noun", "ruse", "", "", "", "The evasive movements"]) + let v = native_list_append(v, ["fustian", "noun", "fustian", "", "", "", "A cloth made"]) + let v = native_list_append(v, ["ser", "noun", "ser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["achate", "noun", "achates", "", "", "", "Purchase bargaining."]) + let v = native_list_append(v, ["humour", "noun", "humours", "", "", "", "A cardinal humour"]) + let v = native_list_append(v, ["plover", "noun", "plovers", "", "", "", "plover bird of"]) + let v = native_list_append(v, ["collage", "noun", "collage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lawyer", "noun", "lawyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stepson", "noun", "stepson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axes", "noun", "axes", "", "", "", "plural of ax"]) + let v = native_list_append(v, ["ax", "noun", "axes", "", "", "", "An axe tool"]) + let v = native_list_append(v, ["wheel", "noun", "wheel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mule", "noun", "mules", "", "", "", "mule donkey-horse hybrid"]) + let v = native_list_append(v, ["cafe", "noun", "cafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["land", "noun", "land", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horn", "noun", "hornes", "", "", "", "A horn keratinous"]) + let v = native_list_append(v, ["antelope", "noun", "antelopes", "", "", "", "antelope"]) + let v = native_list_append(v, ["lion", "noun", "lion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scorpion", "noun", "scorpion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ape", "noun", "apes", "", "", "", "An ape or"]) + let v = native_list_append(v, ["fare", "noun", "fare", "", "", "", "A journey course"]) + let v = native_list_append(v, ["ox", "noun", "ox", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rind", "noun", "rindes", "", "", "", "The bark of"]) + let v = native_list_append(v, ["lizard", "noun", "lizard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cos", "noun", "cosses", "", "", "", "a kiss action"]) + let v = native_list_append(v, ["shelf", "noun", "shelf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["front", "noun", "front", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["code", "noun", "code", "", "", "", "Any kind of"]) + let v = native_list_append(v, ["vision", "noun", "vision", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["request", "noun", "requestes", "", "", "", "A request or"]) + let v = native_list_append(v, ["form", "noun", "form", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["history", "noun", "history", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waste", "noun", "waste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["don", "noun", "don", "", "", "", "plural of do"]) + let v = native_list_append(v, ["heater", "noun", "heater", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thong", "noun", "thonges", "", "", "", "A strip cut"]) + let v = native_list_append(v, ["awe", "noun", "awe", "", "", "", "awe wonder reverence"]) + let v = native_list_append(v, ["da", "noun", "da", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dis", "noun", "dis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fo", "noun", "fon", "", "", "", "A foe enemy"]) + let v = native_list_append(v, ["course", "noun", "course", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lite", "noun", "lite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brothers", "noun", "brothers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wont", "noun", "wontes", "", "", "", "mole Talpa europea"]) + let v = native_list_append(v, ["heir", "noun", "heires", "", "", "", "heir"]) + let v = native_list_append(v, ["main", "noun", "main", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mane", "noun", "manes", "", "", "", "A mane hair"]) + let v = native_list_append(v, ["hond", "noun", "hondes", "", "", "", "hand"]) + let v = native_list_append(v, ["hamer", "noun", "hamers", "", "", "", "A hammer tool"]) + let v = native_list_append(v, ["service", "noun", "service", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trust", "noun", "trust", "", "", "", "confidence reliance"]) + let v = native_list_append(v, ["wort", "noun", "wortes", "", "", "", "A plant not"]) + let v = native_list_append(v, ["autour", "noun", "autour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pope", "noun", "popes", "", "", "", "The pope Roman"]) + let v = native_list_append(v, ["seine", "noun", "seine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mote", "noun", "motes", "", "", "", "A natural or"]) + let v = native_list_append(v, ["brine", "noun", "brine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raw", "noun", "raw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["est", "noun", "est", "", "", "", "east easternness"]) + let v = native_list_append(v, ["ex", "noun", "ex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poo", "noun", "poo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lore", "noun", "lores", "", "", "", "Education or teaching"]) + let v = native_list_append(v, ["turf", "noun", "turfes", "", "", "", "soil earth"]) + let v = native_list_append(v, ["meine", "noun", "meine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ars", "noun", "ars", "", "", "", "arse anus"]) + let v = native_list_append(v, ["pool", "noun", "pool", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["more", "noun", "mores", "", "", "", "root of a"]) + let v = native_list_append(v, ["noose", "noun", "noose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drake", "noun", "drakes", "", "", "", "drake male duck"]) + let v = native_list_append(v, ["mater", "noun", "mater", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ros", "noun", "ros", "", "", "", "plural of ro"]) + let v = native_list_append(v, ["gast", "noun", "gast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fawn", "noun", "fawnes", "", "", "", "faun satyr"]) + let v = native_list_append(v, ["pudding", "noun", "pudding", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thief", "noun", "thief", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blad", "noun", "blades", "", "", "", "A leaf botanical"]) + let v = native_list_append(v, ["robber", "noun", "robber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flour", "noun", "floures", "", "", "", "A flower often"]) + let v = native_list_append(v, ["rope", "noun", "rope", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luft", "noun", "luft", "", "", "", "air"]) + let v = native_list_append(v, ["ee", "noun", "ee", "", "", "", "A body of"]) + let v = native_list_append(v, ["Egipt", "noun", "Egipt", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["table", "noun", "tables", "", "", "", "table furniture with"]) + let v = native_list_append(v, ["wen", "noun", "wen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorrow", "noun", "sorrow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Venus", "noun", "Venus", "", "", "", "The Roman goddess"]) + let v = native_list_append(v, ["diamond", "noun", "diamond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acte", "noun", "actes", "", "", "", "An act an"]) + let v = native_list_append(v, ["harpe", "noun", "harpes", "", "", "", "harp"]) + let v = native_list_append(v, ["lacerta", "noun", "lacerta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lex", "noun", "lex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berg", "noun", "berg", "", "", "", "protection shelter"]) + let v = native_list_append(v, ["braun", "noun", "braun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["metropolis", "noun", "metropolis", "", "", "", "plural of metropol"]) + let v = native_list_append(v, ["top", "noun", "toppes", "", "", "", "The summit or"]) + let v = native_list_append(v, ["spice", "noun", "spices", "", "", "", "spices powders used"]) + let v = native_list_append(v, ["placebo", "noun", "placeboes", "", "", "", "The vespers sung"]) + let v = native_list_append(v, ["drei", "noun", "drei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wag", "noun", "wag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clothes", "noun", "clothes", "", "", "", "plural of cloth"]) + let v = native_list_append(v, ["bare", "noun", "bare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naked", "noun", "naked", "", "", "", "An exposed part"]) + let v = native_list_append(v, ["ton", "noun", "ton", "", "", "", "plural of to"]) + let v = native_list_append(v, ["nymphe", "noun", "nymphe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["value", "noun", "value", "", "", "", "Material or monetary"]) + let v = native_list_append(v, ["mood", "noun", "mood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lady", "noun", "ladies", "ladies", "", "", "A woman with"]) + let v = native_list_append(v, ["vines", "noun", "vines", "", "", "", "plural of vine"]) + let v = native_list_append(v, ["vane", "noun", "vane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["keen", "noun", "keen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rob", "noun", "rob", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smith", "noun", "smith", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrench", "noun", "wrenches", "", "", "", "A trick or"]) + let v = native_list_append(v, ["desert", "noun", "desertes", "", "", "", "The situation of"]) + let v = native_list_append(v, ["surd", "noun", "surd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thorn", "noun", "thornes", "", "", "", "A thorn spine"]) + let v = native_list_append(v, ["draught", "noun", "draughtes", "", "", "", "draught"]) + let v = native_list_append(v, ["semester", "noun", "semester", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["per", "noun", "peres", "", "", "", "A peer one"]) + let v = native_list_append(v, ["ky", "noun", "ky", "", "", "", "plural of cow"]) + let v = native_list_append(v, ["py", "noun", "py", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ty", "noun", "ty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["same", "noun", "same", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beast", "noun", "beast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["best", "noun", "best", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lid", "noun", "liddis", "", "", "", "A lid a"]) + let v = native_list_append(v, ["unicorn", "noun", "unicorn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dragon", "noun", "dragon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gar", "noun", "gar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wafer", "noun", "wafer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["basilisk", "noun", "basilisk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beet", "noun", "beet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["canon", "noun", "canones", "", "", "", "cannon"]) + let v = native_list_append(v, ["culture", "noun", "culture", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wasp", "noun", "waspes", "", "", "", "wasp"]) + let v = native_list_append(v, ["sow", "noun", "sow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tom", "noun", "tom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tender", "noun", "tender", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sacrifice", "noun", "sacrifices", "", "", "", "a sacrifice"]) + let v = native_list_append(v, ["arch", "noun", "arches", "", "", "", "arch"]) + let v = native_list_append(v, ["mode", "noun", "modes", "", "", "", "Activity within ones"]) + let v = native_list_append(v, ["scale", "noun", "scales", "", "", "", "flake"]) + let v = native_list_append(v, ["ovin", "noun", "ovin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wit", "noun", "wittes", "", "", "", "mind sanity"]) + let v = native_list_append(v, ["hen", "noun", "hennes", "hennes", "", "", "hen chicken"]) + let v = native_list_append(v, ["gosling", "noun", "gosling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["storc", "noun", "storc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poke", "noun", "pokes", "", "", "", "sack pouch bag"]) + let v = native_list_append(v, ["foo", "noun", "foo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worm", "noun", "wormes", "wormes", "", "", "A worm or"]) + let v = native_list_append(v, ["spirit", "noun", "spirites", "", "", "", "life vital breath"]) + let v = native_list_append(v, ["eles", "noun", "eles", "", "", "", "plural of el"]) + let v = native_list_append(v, ["voce", "noun", "voce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seed", "noun", "sedes", "", "", "", "seed ovule or"]) + let v = native_list_append(v, ["root", "noun", "root", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bark", "noun", "barkes", "", "", "", "bark a trees"]) + let v = native_list_append(v, ["walk", "noun", "walk", "", "", "", "turning tossing"]) + let v = native_list_append(v, ["nos", "noun", "nos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chest", "noun", "chestes", "", "", "", "fighting strife battle"]) + let v = native_list_append(v, ["chief", "noun", "chief", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clue", "noun", "clue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blame", "noun", "blame", "", "", "", "criticism condemnation"]) + let v = native_list_append(v, ["childhood", "noun", "childhood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neighbour", "noun", "neighbour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passion", "noun", "passion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["children", "noun", "children", "", "", "", "plural of child"]) + let v = native_list_append(v, ["glasses", "noun", "glasses", "", "", "", "plural of glas"]) + let v = native_list_append(v, ["comfort", "noun", "comforts", "", "", "", "encouragement assurance"]) + let v = native_list_append(v, ["leveret", "noun", "leverets", "", "", "", "a young hare"]) + let v = native_list_append(v, ["lamb", "noun", "lambren", "", "", "", "A lamb its"]) + let v = native_list_append(v, ["steward", "noun", "stewardes", "", "", "", "The administrator of"]) + let v = native_list_append(v, ["fool", "noun", "fool", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snore", "noun", "snore", "", "", "", "snorting"]) + let v = native_list_append(v, ["figure", "noun", "figures", "", "", "", "shape form appearance"]) + let v = native_list_append(v, ["desire", "noun", "desire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["receipt", "noun", "receipt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["token", "noun", "tokenes", "", "", "", "token a physical"]) + let v = native_list_append(v, ["source", "noun", "source", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauce", "noun", "sauces", "", "", "", "A sauce or"]) + let v = native_list_append(v, ["peg", "noun", "peg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leger", "noun", "leger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleeve", "noun", "sleeve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["portal", "noun", "portal", "", "", "", "a portal"]) + let v = native_list_append(v, ["frost", "noun", "frostes", "", "", "", "Cold or freezing"]) + let v = native_list_append(v, ["hai", "noun", "hai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ymne", "noun", "ymnes", "", "", "", "hymn a song"]) + let v = native_list_append(v, ["ter", "noun", "ter", "", "", "", "Tar or a"]) + let v = native_list_append(v, ["luna", "noun", "luna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trap", "noun", "trap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tor", "noun", "tor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ren", "noun", "ren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ken", "noun", "ken", "", "", "", "recognition"]) + let v = native_list_append(v, ["bon", "noun", "bones", "", "", "", "bone"]) + let v = native_list_append(v, ["bok", "noun", "bokes", "", "", "", "A document especially"]) + let v = native_list_append(v, ["mos", "noun", "mos", "", "", "", "moss"]) + let v = native_list_append(v, ["den", "noun", "dennes", "", "", "", "A cave or"]) + let v = native_list_append(v, ["fout", "noun", "fout", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rik", "noun", "rik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heg", "noun", "heg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eend", "noun", "eend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ook", "noun", "ook", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oor", "noun", "oor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boor", "noun", "boor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vijs", "noun", "vijs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baas", "noun", "baas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rent", "noun", "rent", "", "", "", "rent income revenue"]) + let v = native_list_append(v, ["snare", "noun", "snares", "", "", "", "A trap for"]) + let v = native_list_append(v, ["soul", "noun", "soul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tape", "noun", "tapes", "", "", "", "band ribbon tape"]) + let v = native_list_append(v, ["hus", "noun", "hus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["husen", "noun", "husen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barnen", "noun", "barnen", "", "", "", "plural of barn"]) + let v = native_list_append(v, ["barn", "noun", "barnes", "", "", "", "A member of"]) + let v = native_list_append(v, ["tale", "noun", "tales", "", "", "", "personal narrative account"]) + let v = native_list_append(v, ["instrument", "noun", "instrumentes", "", "", "", "A tool or"]) + let v = native_list_append(v, ["active", "noun", "active", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gris", "noun", "grises", "", "", "", "A young pig"]) + let v = native_list_append(v, ["stale", "noun", "stale", "", "", "", "urine"]) + let v = native_list_append(v, ["admiral", "noun", "admiral", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neve", "noun", "neves", "", "", "", "A nephew offspring"]) + let v = native_list_append(v, ["halve", "noun", "halve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["od", "noun", "od", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gos", "noun", "ges", "", "", "", "A goose especially"]) + let v = native_list_append(v, ["whey", "noun", "whey", "", "", "", "The leftovers from"]) + let v = native_list_append(v, ["bride", "noun", "brides", "", "", "", "a bride a"]) + let v = native_list_append(v, ["spear", "noun", "spear", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pepper", "noun", "pepper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["phage", "noun", "phage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["concubine", "noun", "concubines", "", "", "", "A concubine a"]) + let v = native_list_append(v, ["luxury", "noun", "luxury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wisdom", "noun", "wisdomes", "", "", "", "wisdom"]) + let v = native_list_append(v, ["monk", "noun", "monkes", "monkes", "monke", "", "A monk a"]) + let v = native_list_append(v, ["ale", "noun", "ales", "", "", "", "ale beverage"]) + let v = native_list_append(v, ["alliance", "noun", "alliance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chip", "noun", "chip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shark", "noun", "shark", "", "", "", "shark"]) + let v = native_list_append(v, ["whale", "noun", "whales", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knot", "noun", "knot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["annoy", "noun", "annoy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buffet", "noun", "buffettes", "", "", "", "A buffet strike"]) + let v = native_list_append(v, ["dung", "noun", "dung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doo", "noun", "doo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trench", "noun", "trench", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trace", "noun", "traces", "", "", "", "A trail track"]) + let v = native_list_append(v, ["beli", "noun", "beli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drought", "noun", "drought", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demon", "noun", "demones", "", "", "", "demon devil malicious"]) + let v = native_list_append(v, ["mau", "noun", "mau", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bab", "noun", "bab", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dan", "noun", "dan", "", "", "", "A respectful term"]) + let v = native_list_append(v, ["choice", "noun", "choice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tow", "noun", "tow", "", "", "", "Unprepared flax especially"]) + let v = native_list_append(v, ["ancle", "noun", "ancles", "", "", "", "The ankle or"]) + let v = native_list_append(v, ["anger", "noun", "angers", "", "", "", "Grief painfulness or"]) + let v = native_list_append(v, ["redemption", "noun", "redemption", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bord", "noun", "bordes", "", "", "", "A board or"]) + let v = native_list_append(v, ["steer", "noun", "steres", "", "", "", "steer young bull"]) + let v = native_list_append(v, ["yard", "noun", "yard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["infant", "noun", "infant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enemy", "noun", "enemys", "", "", "", "An enemy foe"]) + let v = native_list_append(v, ["torch", "noun", "torch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["junk", "noun", "junk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ante", "noun", "ante", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apes", "noun", "apes", "", "", "", "plural of ape"]) + let v = native_list_append(v, ["muscle", "noun", "muscles", "", "", "", "mussel bivalve"]) + let v = native_list_append(v, ["step", "noun", "step", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steppe", "noun", "steppes", "", "", "", "A step pace"]) + let v = native_list_append(v, ["ski", "noun", "ski", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dune", "noun", "dune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roof", "noun", "roof", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oven", "noun", "ovenes", "", "ovene", "", "An oven an"]) + let v = native_list_append(v, ["fee", "noun", "fee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manage", "noun", "manage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gele", "noun", "gelees", "", "", "", "A jelly made"]) + let v = native_list_append(v, ["snot", "noun", "snot", "", "", "", "Snot mucus matter"]) + let v = native_list_append(v, ["bastard", "noun", "bastardes", "", "", "", "an illegitimate child"]) + let v = native_list_append(v, ["drop", "noun", "drop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cucumber", "noun", "cucumber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["futur", "noun", "futur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["even", "noun", "evenes", "", "", "", "eve"]) + let v = native_list_append(v, ["hostel", "noun", "hosteles", "", "", "", "A hostel or"]) + let v = native_list_append(v, ["di", "noun", "di", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gum", "noun", "gum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sa", "noun", "sa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crucifix", "noun", "crucifixes", "", "", "", "Christ on the"]) + let v = native_list_append(v, ["shilling", "noun", "shilling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crag", "noun", "cragges", "", "", "", "cliff"]) + let v = native_list_append(v, ["sai", "noun", "sai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sapere", "noun", "sapere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holiday", "noun", "holiday", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wren", "noun", "wren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deluge", "noun", "deluge", "", "", "", "A deluge a"]) + let v = native_list_append(v, ["passive", "noun", "passive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leven", "noun", "leven", "", "", "", "lightning"]) + let v = native_list_append(v, ["lok", "noun", "lokkes", "", "", "", "lock"]) + let v = native_list_append(v, ["dier", "noun", "dier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hat", "noun", "hattes", "", "", "", "A hat or"]) + let v = native_list_append(v, ["sad", "noun", "sad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nap", "noun", "nappes", "", "", "", "A bowl for"]) + let v = native_list_append(v, ["broth", "noun", "brothes", "", "", "", "Water in which"]) + let v = native_list_append(v, ["gravy", "noun", "gravy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eg", "noun", "egges", "", "", "", "egg"]) + let v = native_list_append(v, ["dos", "noun", "dos", "", "", "", "plural of do"]) + let v = native_list_append(v, ["rime", "noun", "rimes", "", "", "", "number"]) + let v = native_list_append(v, ["lone", "noun", "lone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theme", "noun", "themes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fronte", "noun", "fronte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hail", "noun", "hail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleet", "noun", "sleet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["author", "noun", "author", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schade", "noun", "schades", "", "", "", "A shadow a"]) + let v = native_list_append(v, ["Thomas", "noun", "Thomas", "", "", "", "a male given"]) + let v = native_list_append(v, ["lord", "noun", "lordes", "lordes", "lorde", "", "lord important man"]) + let v = native_list_append(v, ["pane", "noun", "panes", "", "", "", "A piece of"]) + let v = native_list_append(v, ["taxation", "noun", "taxation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["furlong", "noun", "furlonges", "", "", "", "furlong unit of"]) + let v = native_list_append(v, ["chapter", "noun", "chapter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pap", "noun", "pap", "", "", "", "A gruel or"]) + let v = native_list_append(v, ["spoon", "noun", "spoon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blossom", "noun", "blossom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spinach", "noun", "spinoches", "", "", "", "spinach Spinacia oleracea"]) + let v = native_list_append(v, ["stage", "noun", "stages", "", "", "", "A tier of"]) + let v = native_list_append(v, ["tenure", "noun", "tenure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mattock", "noun", "mattock", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Pluto", "noun", "Pluto", "", "", "", "The Roman god"]) + let v = native_list_append(v, ["hunter", "noun", "hunter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carpet", "noun", "carpet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oxen", "noun", "oxen", "", "", "", "plural of oxe"]) + let v = native_list_append(v, ["fry", "noun", "fry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hatter", "noun", "hatter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glory", "noun", "glory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["malt", "noun", "malt", "", "", "", "malt malted grain"]) + let v = native_list_append(v, ["leek", "noun", "leek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patient", "noun", "patient", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["broom", "noun", "broom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["procurement", "noun", "procurement", "", "", "", "The act of"]) + let v = native_list_append(v, ["luk", "noun", "luckes", "", "", "", "good fortune gain"]) + let v = native_list_append(v, ["kale", "noun", "kale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corn", "noun", "cornes", "", "", "", "Any plant that"]) + let v = native_list_append(v, ["prophet", "noun", "prophet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cap", "noun", "cap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gamer", "noun", "gamers", "", "", "", "gamer gamester person"]) + let v = native_list_append(v, ["lover", "noun", "lovers", "", "", "", "louver type of"]) + let v = native_list_append(v, ["enchanting", "noun", "enchanting", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wonder", "noun", "wonders", "", "", "", "marvel wonder strange"]) + let v = native_list_append(v, ["novel", "noun", "novel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beef", "noun", "beef", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pro", "noun", "pro", "", "", "", "advantage benefit upside"]) + let v = native_list_append(v, ["grace", "noun", "graces", "", "", "", "various Christian theological"]) + let v = native_list_append(v, ["slon", "noun", "slon", "", "", "", "plural of slo"]) + let v = native_list_append(v, ["tong", "noun", "tong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rok", "noun", "rok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["utmost", "noun", "utmostes", "", "", "", "The extremities farthest"]) + let v = native_list_append(v, ["stern", "noun", "stern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taste", "noun", "taste", "", "", "", "perceived flavor"]) + let v = native_list_append(v, ["prude", "noun", "prude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cadenas", "noun", "cadenas", "", "", "", "In medieval times"]) + let v = native_list_append(v, ["devil", "noun", "devil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wise", "noun", "wise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honesty", "noun", "honesty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pax", "noun", "pax", "", "", "", "pax tablet with"]) + let v = native_list_append(v, ["colere", "noun", "colere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roost", "noun", "roost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fin", "noun", "fin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nox", "noun", "nox", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patron", "noun", "patron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pelican", "noun", "pelican", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["office", "noun", "offices", "", "", "", "The state of"]) + let v = native_list_append(v, ["tenor", "noun", "tenor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferre", "noun", "ferre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["babe", "noun", "babes", "", "", "", "baby infant"]) + let v = native_list_append(v, ["saint", "noun", "saint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dei", "noun", "dei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoxe", "noun", "hoxes", "", "", "", "hamstring"]) + let v = native_list_append(v, ["vale", "noun", "vales", "", "", "", "valley depression between"]) + let v = native_list_append(v, ["dale", "noun", "dales", "dales", "dalen", "", "A dale or"]) + let v = native_list_append(v, ["hol", "noun", "hols", "", "", "", "whole entirety"]) + let v = native_list_append(v, ["clothing", "noun", "clothinges", "", "", "", "What one wears"]) + let v = native_list_append(v, ["Alpes", "noun", "Alpes", "", "", "", "Alps a mountain"]) + let v = native_list_append(v, ["gnat", "noun", "gnattes", "", "", "", "A gnat or"]) + let v = native_list_append(v, ["cataract", "noun", "cateractes", "", "", "", "cataract"]) + let v = native_list_append(v, ["raise", "noun", "raise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fold", "noun", "foldes", "", "", "", "A pen enclosure"]) + let v = native_list_append(v, ["gong", "noun", "gonges", "", "", "", "An outhouse a"]) + let v = native_list_append(v, ["madam", "noun", "madam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["med", "noun", "med", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["madame", "noun", "madames", "", "", "", "madam polite term"]) + let v = native_list_append(v, ["chambre", "noun", "chambres", "", "", "", "room chamber"]) + let v = native_list_append(v, ["birch", "noun", "birch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tempest", "noun", "tempests", "", "", "", "tempest storm"]) + let v = native_list_append(v, ["scull", "noun", "scull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["homage", "noun", "homages", "", "", "", "An oath of"]) + let v = native_list_append(v, ["manger", "noun", "mangers", "", "", "", "manger"]) + let v = native_list_append(v, ["cage", "noun", "cages", "", "", "", "A cage or"]) + let v = native_list_append(v, ["crop", "noun", "crop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freedom", "noun", "freedom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["has", "noun", "has", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creature", "noun", "creatures", "", "", "", "Something that has"]) + let v = native_list_append(v, ["monstre", "noun", "monstres", "", "", "", "A monster or"]) + let v = native_list_append(v, ["reed", "noun", "reed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manere", "noun", "maneres", "", "", "", "The manner in"]) + let v = native_list_append(v, ["bane", "noun", "banes", "", "", "", "murderer slayer"]) + let v = native_list_append(v, ["dent", "noun", "dent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scip", "noun", "scip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stan", "noun", "stanes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tunge", "noun", "tunge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engel", "noun", "engles", "engles", "engle", "", "An angel a"]) + let v = native_list_append(v, ["heafod", "noun", "heafod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bene", "noun", "benes", "", "", "", "bean"]) + let v = native_list_append(v, ["bere", "noun", "beres", "", "", "", "A bear mammal"]) + let v = native_list_append(v, ["vice", "noun", "vices", "", "", "", "A fault or"]) + let v = native_list_append(v, ["calm", "noun", "calm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dell", "noun", "dell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ellen", "noun", "ellen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zed", "noun", "zed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["web", "noun", "webbes", "", "", "", "Woven fabric fabric"]) + let v = native_list_append(v, ["fund", "noun", "fund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dine", "noun", "dine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["royal", "noun", "royal", "", "", "", "A royal a"]) + let v = native_list_append(v, ["fleece", "noun", "fleece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ord", "noun", "ord", "", "", "", "a point"]) + let v = native_list_append(v, ["flan", "noun", "flan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rule", "noun", "rule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tei", "noun", "tei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["din", "noun", "din", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boef", "noun", "boef", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ire", "noun", "ire", "", "", "", "anger wrath"]) + let v = native_list_append(v, ["thrall", "noun", "thrall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quiver", "noun", "quivers", "", "", "", "A quiver a"]) + let v = native_list_append(v, ["fax", "noun", "faxes", "", "", "", "The hair of"]) + let v = native_list_append(v, ["tour", "noun", "toures", "", "", "", "tower"]) + let v = native_list_append(v, ["coupe", "noun", "coupes", "", "", "", "a large wicker"]) + let v = native_list_append(v, ["abbe", "noun", "abbe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brand", "noun", "brandes", "", "", "", "fire flame"]) + let v = native_list_append(v, ["mac", "noun", "mac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["les", "noun", "les", "", "", "", "falsehood a lie"]) + let v = native_list_append(v, ["refute", "noun", "refute", "", "", "", "refuge state of"]) + let v = native_list_append(v, ["fot", "noun", "feet", "", "", "", "A foot appendage"]) + let v = native_list_append(v, ["det", "noun", "det", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whelp", "noun", "whelpes", "", "", "", "A whelp a"]) + let v = native_list_append(v, ["swine", "noun", "swine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["visage", "noun", "visages", "", "", "", "face"]) + let v = native_list_append(v, ["dirge", "noun", "dirge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rancor", "noun", "rancor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gate", "noun", "gates", "", "", "", "An entryway or"]) + let v = native_list_append(v, ["breve", "noun", "breve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kai", "noun", "kai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wai", "noun", "wai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byte", "noun", "byte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spelunc", "noun", "spelunc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mel", "noun", "meles", "", "", "", "A time occasion"]) + let v = native_list_append(v, ["hate", "noun", "hates", "", "", "", "Hate hatred anger"]) + let v = native_list_append(v, ["bacon", "noun", "bacon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fragment", "noun", "fragment", "", "", "", "a small part"]) + let v = native_list_append(v, ["rote", "noun", "rotes", "", "", "", "The root submerged"]) + let v = native_list_append(v, ["morsel", "noun", "morsels", "", "", "", "A small piece"]) + let v = native_list_append(v, ["counsel", "noun", "counsel", "", "", "", "a secret opinion"]) + let v = native_list_append(v, ["confirmation", "noun", "confirmation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["purpose", "noun", "purpose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["credence", "noun", "credence", "", "", "", "Faith confidence having"]) + let v = native_list_append(v, ["magnate", "noun", "magnates", "", "", "", "a high official"]) + let v = native_list_append(v, ["forage", "noun", "forage", "", "", "", "forage especially dry"]) + let v = native_list_append(v, ["inn", "noun", "inn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["question", "noun", "question", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diner", "noun", "diner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paire", "noun", "paire", "", "", "", "A pair a"]) + let v = native_list_append(v, ["vapour", "noun", "vapours", "", "", "", "Fumes or vapour"]) + let v = native_list_append(v, ["aire", "noun", "aires", "", "", "", "air"]) + let v = native_list_append(v, ["lettre", "noun", "lettres", "", "", "", "letter of the"]) + let v = native_list_append(v, ["vue", "noun", "vue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trouble", "noun", "troubles", "", "", "", "A hardship disturbance"]) + let v = native_list_append(v, ["clou", "noun", "clou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cou", "noun", "cou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fou", "noun", "fous", "", "", "", "A kind of"]) + let v = native_list_append(v, ["folle", "noun", "folle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sue", "noun", "sue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Peter", "noun", "Peter", "Petres", "", "", "Peter"]) + let v = native_list_append(v, ["woruld", "noun", "woruld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jus", "noun", "jus", "", "", "", "A natural liquid"]) + let v = native_list_append(v, ["earn", "noun", "earn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mona", "noun", "mona", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steorra", "noun", "steorra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beo", "noun", "beo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loppestre", "noun", "loppestre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heorte", "noun", "heorte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muð", "noun", "muð", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwæl", "noun", "hwæl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stæf", "noun", "stæf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bake", "noun", "bake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["place", "noun", "places", "", "", "", "A place area"]) + let v = native_list_append(v, ["story", "noun", "storyes", "", "", "", "A level of"]) + let v = native_list_append(v, ["nerve", "noun", "nerves", "", "", "", "A nerve bundle"]) + let v = native_list_append(v, ["girth", "noun", "girth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["henge", "noun", "henges", "", "", "", "hinge device a"]) + let v = native_list_append(v, ["heme", "noun", "heamen", "", "", "", "inhabitant villager"]) + let v = native_list_append(v, ["mace", "noun", "maces", "", "", "", "A war club"]) + let v = native_list_append(v, ["trans", "noun", "trans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pile", "noun", "pile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trant", "noun", "trantes", "", "", "", "A stratagem trick"]) + let v = native_list_append(v, ["tren", "noun", "tren", "", "", "", "plural of tre"]) + let v = native_list_append(v, ["ode", "noun", "ode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["odor", "noun", "odor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pack", "noun", "pack", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["page", "noun", "page", "", "", "", "a boy child"]) + let v = native_list_append(v, ["park", "noun", "parks", "", "", "", "enclosure"]) + let v = native_list_append(v, ["penaunt", "noun", "penaunt", "", "", "", "A penitent."]) + let v = native_list_append(v, ["phial", "noun", "phial", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plaid", "noun", "plaid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plait", "noun", "plait", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queller", "noun", "queller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["impossible", "noun", "impossibles", "", "", "", "An act which"]) + let v = native_list_append(v, ["libel", "noun", "libel", "", "", "", "Any short and"]) + let v = native_list_append(v, ["bosom", "noun", "bosmes", "", "", "", "The enclosure formed"]) + let v = native_list_append(v, ["acton", "noun", "acton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["puke", "noun", "puke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Adam", "noun", "Adam", "", "", "", "Adam Biblical progenitor"]) + let v = native_list_append(v, ["paste", "noun", "pastes", "", "", "", "dough for the"]) + let v = native_list_append(v, ["part", "noun", "partes", "", "", "", "part"]) + let v = native_list_append(v, ["ay", "noun", "ay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aye", "noun", "aye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayle", "noun", "ayle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayme", "noun", "ayme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axtree", "noun", "axtree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axle", "noun", "axle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axil", "noun", "axils", "", "", "", "axle pole which"]) + let v = native_list_append(v, ["avauntour", "noun", "avauntours", "", "", "", "one who avaunts"]) + let v = native_list_append(v, ["aventure", "noun", "aventures", "", "", "", "fate chance"]) + let v = native_list_append(v, ["aver", "noun", "avers", "", "", "", "belongings possessions property"]) + let v = native_list_append(v, ["avision", "noun", "avision", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æ", "noun", "æ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meny", "noun", "meny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palate", "noun", "palate", "", "", "", "The palate the"]) + let v = native_list_append(v, ["palette", "noun", "palette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palais", "noun", "palais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ladies", "noun", "ladies", "", "", "", "plural of lady"]) + let v = native_list_append(v, ["glace", "noun", "glace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glazier", "noun", "glazier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["supper", "noun", "supper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fome", "noun", "fome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mese", "noun", "mese", "", "", "", "moss"]) + let v = native_list_append(v, ["piper", "noun", "pipers", "", "", "", "A piper one"]) + let v = native_list_append(v, ["maker", "noun", "makers", "", "", "", "God as creator"]) + let v = native_list_append(v, ["nome", "noun", "nomes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sac", "noun", "sac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gloire", "noun", "gloire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shrine", "noun", "shrines", "", "", "", "shrine"]) + let v = native_list_append(v, ["eyne", "noun", "eyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["godmother", "noun", "godmother", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["godson", "noun", "godson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mates", "noun", "mates", "", "", "", "plural of mate"]) + let v = native_list_append(v, ["theft", "noun", "theft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atrament", "noun", "atraments", "", "", "", "ink"]) + let v = native_list_append(v, ["lentil", "noun", "lentil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cousine", "noun", "cousine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pes", "noun", "pes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mat", "noun", "mat", "", "", "", "checkmate mate moment"]) + let v = native_list_append(v, ["cave", "noun", "caves", "", "", "", "A cave or"]) + let v = native_list_append(v, ["nest", "noun", "nestes", "", "", "", "nest"]) + let v = native_list_append(v, ["Iuppiter", "noun", "Iuppiter", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["Michal", "noun", "Michal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bladder", "noun", "bladder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bean", "noun", "bean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wench", "noun", "wench", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trist", "noun", "trist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Mercurius", "noun", "Mercurius", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["des", "noun", "des", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sealt", "noun", "sealt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barge", "noun", "barges", "", "", "", "A medium ship"]) + let v = native_list_append(v, ["crane", "noun", "cranes", "", "", "", "crane bird"]) + let v = native_list_append(v, ["finch", "noun", "finch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diaper", "noun", "diaper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crab", "noun", "crab", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stepchild", "noun", "stepchildren", "", "", "", "stepchild child of"]) + let v = native_list_append(v, ["nowt", "noun", "nowt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fen", "noun", "fennes", "", "", "", "fen bog swamp"]) + let v = native_list_append(v, ["herd", "noun", "herd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pork", "noun", "porkes", "", "", "", "pork pig meat"]) + let v = native_list_append(v, ["stake", "noun", "stakes", "", "", "", "A stake wood"]) + let v = native_list_append(v, ["sirup", "noun", "sirupes", "", "", "", "A syrup of"]) + let v = native_list_append(v, ["bargain", "noun", "bargain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grave", "noun", "graves", "", "", "", "grave burial"]) + let v = native_list_append(v, ["kite", "noun", "kite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["favor", "noun", "favor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["favour", "noun", "favour", "", "", "", "goodwill benevolent regard"]) + let v = native_list_append(v, ["dont", "noun", "dont", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ange", "noun", "anges", "", "", "", "vexation trouble pain"]) + let v = native_list_append(v, ["lace", "noun", "lace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["James", "noun", "James", "", "", "", "James the Greater"]) + let v = native_list_append(v, ["seder", "noun", "seder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twist", "noun", "twistes", "", "", "", "The flat part"]) + let v = native_list_append(v, ["murre", "noun", "murre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forward", "noun", "forward", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fowl", "noun", "fowl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glove", "noun", "gloves", "", "", "", "A glove or"]) + let v = native_list_append(v, ["grip", "noun", "grip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verse", "noun", "verse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esclave", "noun", "esclave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spake", "noun", "spake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hope", "noun", "hopes", "", "", "", "trust confidence wishful"]) + let v = native_list_append(v, ["vineyard", "noun", "vineyard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vine", "noun", "vines", "", "", "", "grapevine"]) + let v = native_list_append(v, ["creation", "noun", "creation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garbage", "noun", "garbagys", "", "", "", "bird dung"]) + let v = native_list_append(v, ["pine", "noun", "pine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nursery", "noun", "nursery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dolphin", "noun", "dolphin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strom", "noun", "strom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jak", "noun", "jak", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yell", "noun", "yell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tame", "noun", "tame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ok", "noun", "okes", "", "", "", "oak tree of"]) + let v = native_list_append(v, ["shade", "noun", "shade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrist", "noun", "wrystes", "", "", "", "wrist joint attaching"]) + let v = native_list_append(v, ["store", "noun", "store", "", "", "", "supplies provisions"]) + let v = native_list_append(v, ["prost", "noun", "prost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cure", "noun", "cure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herne", "noun", "hernes", "", "", "", "A hirn corner"]) + let v = native_list_append(v, ["vend", "noun", "vendes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spur", "noun", "spur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["camper", "noun", "camper", "", "", "", "A participant in"]) + let v = native_list_append(v, ["hip", "noun", "hip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thigh", "noun", "thighes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["pere", "noun", "peres", "", "", "", "A pear fruit"]) + let v = native_list_append(v, ["blast", "noun", "blastes", "", "", "", "A blast a"]) + let v = native_list_append(v, ["gist", "noun", "gist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rye", "noun", "ryes", "", "", "", "rye Secale cereale"]) + let v = native_list_append(v, ["fodder", "noun", "fodder", "", "", "", "fodder"]) + let v = native_list_append(v, ["hatred", "noun", "hatred", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garment", "noun", "garment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abece", "noun", "abece", "", "", "", "An alphabet the"]) + let v = native_list_append(v, ["pote", "noun", "potes", "", "", "", "An animals paws"]) + let v = native_list_append(v, ["pule", "noun", "pule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plough", "noun", "ploughs", "", "", "", "plow"]) + let v = native_list_append(v, ["autor", "noun", "autor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiend", "noun", "fiend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tun", "noun", "tun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wey", "noun", "weys", "", "", "", "way"]) + let v = native_list_append(v, ["chaldron", "noun", "chaldron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mett", "noun", "mett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fother", "noun", "fothres", "", "", "", "wagonload that which"]) + let v = native_list_append(v, ["clove", "noun", "cloves", "", "", "", "clove bulb of"]) + let v = native_list_append(v, ["tey", "noun", "tey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strake", "noun", "strakes", "", "", "", "strake"]) + let v = native_list_append(v, ["clout", "noun", "cloutes", "", "", "", "A smaller piece"]) + let v = native_list_append(v, ["garnish", "noun", "garnish", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barm", "noun", "barmes", "", "barme", "", "The lap The"]) + let v = native_list_append(v, ["ease", "noun", "ease", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gad", "noun", "gads", "", "", "", "gad"]) + let v = native_list_append(v, ["porter", "noun", "porters", "", "", "", "gatekeeper doorkeeper"]) + let v = native_list_append(v, ["prison", "noun", "prison", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strand", "noun", "strand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burel", "noun", "burelles", "", "", "", "burel coarse woolen"]) + let v = native_list_append(v, ["col", "noun", "coles", "", "", "", "cabbage kale colewort"]) + let v = native_list_append(v, ["straw", "noun", "strawes", "", "", "", "The remaining plant"]) + let v = native_list_append(v, ["pilgrimage", "noun", "pilgrimages", "", "", "", "pilgrimage"]) + let v = native_list_append(v, ["yelm", "noun", "yelmes", "", "", "", "yelm yealm sheaf"]) + let v = native_list_append(v, ["style", "noun", "style", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toll", "noun", "tolles", "", "", "", "A toll tax"]) + let v = native_list_append(v, ["these", "noun", "these", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["spay", "noun", "spayes", "", "", "", "sluice"]) + let v = native_list_append(v, ["wert", "noun", "wert", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wast", "noun", "wastes", "", "", "", "Uncultivated or deserted"]) + let v = native_list_append(v, ["rap", "noun", "rap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scarce", "noun", "scarce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bever", "noun", "bevers", "", "", "", "A beaver rodent"]) + let v = native_list_append(v, ["chapelle", "noun", "chapelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bacinet", "noun", "bacinet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["late", "noun", "late", "", "", "", "Manner behaviour outward"]) + let v = native_list_append(v, ["hauberk", "noun", "hauberkes", "", "", "", "hauberk coat of"]) + let v = native_list_append(v, ["haubergeon", "noun", "haubergeon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aketon", "noun", "aketon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heck", "noun", "heck", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nation", "noun", "nation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vambrace", "noun", "vambraces", "", "", "", "Lower arm armour"]) + let v = native_list_append(v, ["bard", "noun", "bard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armour", "noun", "armour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mist", "noun", "mist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bracer", "noun", "bracers", "", "", "", "Armour for the"]) + let v = native_list_append(v, ["mawle", "noun", "mawle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["malle", "noun", "malle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glaive", "noun", "glaive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tray", "noun", "tray", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calver", "noun", "calver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flavour", "noun", "flavour", "", "", "", "odour generally pleasing"]) + let v = native_list_append(v, ["ȝere", "noun", "ȝere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flavor", "noun", "flavor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hawberk", "noun", "hawberk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spark", "noun", "spark", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worse", "noun", "worse", "", "", "", "Something or someone"]) + let v = native_list_append(v, ["omission", "noun", "omission", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norman", "noun", "Normannes", "", "", "", "A member of"]) + let v = native_list_append(v, ["odour", "noun", "odours", "", "", "", "A smell or"]) + let v = native_list_append(v, ["musket", "noun", "musketes", "", "", "", "A sparrowhawk or"]) + let v = native_list_append(v, ["lance", "noun", "lance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lys", "noun", "lys", "", "", "", "plural of lous"]) + let v = native_list_append(v, ["mest", "noun", "mest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["magnet", "noun", "magnet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clay", "noun", "clay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ark", "noun", "arks", "", "", "", "The path of"]) + let v = native_list_append(v, ["curt", "noun", "curt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hemp", "noun", "hemp", "", "", "", "Hemp Cannabis sativa."]) + let v = native_list_append(v, ["artificers", "noun", "artificers", "", "", "", "plural of artificer"]) + let v = native_list_append(v, ["indignation", "noun", "indignation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beryl", "noun", "beryl", "", "", "", "beryl gemstone of"]) + let v = native_list_append(v, ["region", "noun", "region", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hire", "noun", "hires", "", "", "", "Ones salary wages."]) + let v = native_list_append(v, ["mazer", "noun", "mazer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sure", "noun", "sure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sight", "noun", "sight", "", "", "", "a great deal"]) + let v = native_list_append(v, ["helmet", "noun", "helmet", "", "", "", "A helmet an"]) + let v = native_list_append(v, ["spine", "noun", "spine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["team", "noun", "team", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flounder", "noun", "flounder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fill", "noun", "fill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fervour", "noun", "fervour", "", "", "", "fervour emotional passion"]) + let v = native_list_append(v, ["panel", "noun", "panelles", "", "", "", "A swatch or"]) + let v = native_list_append(v, ["scorn", "noun", "scorn", "", "", "", "Scorn contempt the"]) + let v = native_list_append(v, ["hir", "noun", "hir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rider", "noun", "rider", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wif", "noun", "wif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["obligation", "noun", "obligation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["collusion", "noun", "collusion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bor", "noun", "bores", "", "", "", "A wild or"]) + let v = native_list_append(v, ["hals", "noun", "hals", "", "", "", "neck throat"]) + let v = native_list_append(v, ["comp", "noun", "comp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sax", "noun", "saxes", "", "", "", "a knife tool"]) + let v = native_list_append(v, ["beggar", "noun", "beggar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brow", "noun", "brow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["voix", "noun", "voix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caff", "noun", "caff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coward", "noun", "coward", "", "", "", "coward knave"]) + let v = native_list_append(v, ["conquest", "noun", "conquestes", "", "", "", "A conquest or"]) + let v = native_list_append(v, ["conceit", "noun", "conceit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cheek", "noun", "cheek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceremony", "noun", "ceremony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["captive", "noun", "captive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Walter", "noun", "Walter", "", "", "", "a male given"]) + let v = native_list_append(v, ["wari", "noun", "wari", "", "", "", "criminal felon"]) + let v = native_list_append(v, ["haw", "noun", "haw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peril", "noun", "perilles", "", "", "", "Danger risk peril"]) + let v = native_list_append(v, ["shower", "noun", "shower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lave", "noun", "lave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marsh", "noun", "marsh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ref", "noun", "ref", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alum", "noun", "alum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alder", "noun", "alderes", "", "", "", "A leader or"]) + let v = native_list_append(v, ["assai", "noun", "assai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assay", "noun", "assayes", "", "", "", "Examining investigation looking"]) + let v = native_list_append(v, ["augur", "noun", "augur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barre", "noun", "barres", "", "", "", "barrier obstruction"]) + let v = native_list_append(v, ["baste", "noun", "baste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bate", "noun", "bate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["batt", "noun", "batt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bey", "noun", "bey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bode", "noun", "bode", "", "", "", "messenger"]) + let v = native_list_append(v, ["bole", "noun", "boles", "", "", "", "bull steer male"]) + let v = native_list_append(v, ["cite", "noun", "cites", "", "", "", "A city settlement"]) + let v = native_list_append(v, ["clot", "noun", "clottes", "", "", "", "A clod a"]) + let v = native_list_append(v, ["cog", "noun", "cog", "", "", "", "a ship of"]) + let v = native_list_append(v, ["cole", "noun", "cole", "", "", "", "coldness coolness"]) + let v = native_list_append(v, ["colter", "noun", "colter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coot", "noun", "coot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["craw", "noun", "craw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitt", "noun", "bitt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["culver", "noun", "culver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cur", "noun", "cur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curlew", "noun", "curlewes", "", "", "", "curlew"]) + let v = native_list_append(v, ["cyst", "noun", "cyst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dais", "noun", "dais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delver", "noun", "delver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dey", "noun", "dey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dint", "noun", "dintes", "", "", "", "The landing of"]) + let v = native_list_append(v, ["doer", "noun", "doers", "", "", "", "doer agent someone"]) + let v = native_list_append(v, ["dole", "noun", "doles", "", "", "", "grief sorrow"]) + let v = native_list_append(v, ["dor", "noun", "dor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dote", "noun", "dote", "", "", "", "An idiot or"]) + let v = native_list_append(v, ["dow", "noun", "dow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dyne", "noun", "dyne", "", "", "", "din loud noise"]) + let v = native_list_append(v, ["ere", "noun", "eren", "", "", "", "The ear organ"]) + let v = native_list_append(v, ["ewer", "noun", "ewers", "", "", "", "ewer"]) + let v = native_list_append(v, ["eyer", "noun", "eyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fay", "noun", "fay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flax", "noun", "flax", "", "", "", "Flax Linum usitatissimum"]) + let v = native_list_append(v, ["floc", "noun", "floc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gage", "noun", "gage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gager", "noun", "gager", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gait", "noun", "gait", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gam", "noun", "gam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gauger", "noun", "gauger", "", "", "", "A quality control"]) + let v = native_list_append(v, ["grippe", "noun", "grippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grout", "noun", "grout", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hap", "noun", "happes", "", "", "", "luck whether good"]) + let v = native_list_append(v, ["hod", "noun", "hodes", "", "", "", "Ones rank level"]) + let v = native_list_append(v, ["holt", "noun", "holtes", "", "", "", "A small piece"]) + let v = native_list_append(v, ["hone", "noun", "hone", "", "", "", "hone whetstone"]) + let v = native_list_append(v, ["hosier", "noun", "hosier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hove", "noun", "hove", "", "", "", "ground-ivy"]) + let v = native_list_append(v, ["hurst", "noun", "hurst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ibis", "noun", "ibis", "", "", "", "ibis any of"]) + let v = native_list_append(v, ["idol", "noun", "idol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idyll", "noun", "idyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imager", "noun", "imager", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kay", "noun", "kay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kemp", "noun", "kemp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lar", "noun", "lar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lien", "noun", "liens", "", "", "", "bond fetter"]) + let v = native_list_append(v, ["lop", "noun", "lop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["macer", "noun", "macers", "", "", "", "A macer a"]) + let v = native_list_append(v, ["macers", "noun", "macers", "", "", "", "plural of macer"]) + let v = native_list_append(v, ["maw", "noun", "maw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medlar", "noun", "medlar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meed", "noun", "meed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mere", "noun", "meres", "", "", "", "boundary border"]) + let v = native_list_append(v, ["merle", "noun", "merle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meson", "noun", "mesons", "", "", "", "a house"]) + let v = native_list_append(v, ["mete", "noun", "metes", "", "", "", "Food nourishment or"]) + let v = native_list_append(v, ["mew", "noun", "mew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mig", "noun", "mig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["milt", "noun", "milt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mir", "noun", "mir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mire", "noun", "mires", "", "", "", "Marshy or swampy"]) + let v = native_list_append(v, ["mitre", "noun", "mitre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mod", "noun", "mod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moline", "noun", "moline", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moll", "noun", "moll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mouser", "noun", "mouser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mull", "noun", "mull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nape", "noun", "napys", "", "", "", "The nape the"]) + let v = native_list_append(v, ["nave", "noun", "naves", "", "", "", "nave hub of"]) + let v = native_list_append(v, ["onyx", "noun", "onyx", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["penner", "noun", "penner", "", "", "", "pen case"]) + let v = native_list_append(v, ["pew", "noun", "pew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["piker", "noun", "pikers", "", "", "", "A robber or"]) + let v = native_list_append(v, ["pith", "noun", "pith", "", "", "", "The soft interior"]) + let v = native_list_append(v, ["pol", "noun", "poles", "", "", "", "A pool or"]) + let v = native_list_append(v, ["popper", "noun", "poppers", "", "", "", "dagger"]) + let v = native_list_append(v, ["ream", "noun", "ream", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rube", "noun", "rube", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rune", "noun", "rune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sage", "noun", "sages", "", "", "", "A sage a"]) + let v = native_list_append(v, ["shad", "noun", "shad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sire", "noun", "sires", "", "", "", "Used preceding the"]) + let v = native_list_append(v, ["sop", "noun", "soppes", "", "", "", "A sop a"]) + let v = native_list_append(v, ["spigot", "noun", "spigottes", "", "", "", "wooden stopper wooden"]) + let v = native_list_append(v, ["swag", "noun", "swag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swage", "noun", "swages", "", "", "", "An adornment surrounding"]) + let v = native_list_append(v, ["tad", "noun", "tad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tapir", "noun", "tapir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teem", "noun", "teem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tenon", "noun", "tenon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tercel", "noun", "tercelles", "", "", "", "tiercel male bird"]) + let v = native_list_append(v, ["tilth", "noun", "tilth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tome", "noun", "tome", "", "", "", "free time leisure"]) + let v = native_list_append(v, ["trompe", "noun", "trompe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wale", "noun", "wale", "", "", "", "An outsider a"]) + let v = native_list_append(v, ["whet", "noun", "whet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whit", "noun", "whit", "", "", "", "white colour"]) + let v = native_list_append(v, ["wile", "noun", "wile", "", "", "", "wile trick artifice"]) + let v = native_list_append(v, ["wisp", "noun", "wisp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiver", "noun", "wevres", "", "", "", "A support beam"]) + let v = native_list_append(v, ["wold", "noun", "*woldes", "", "", "", "wood wooded area"]) + let v = native_list_append(v, ["wrest", "noun", "wrest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yoke", "noun", "yoke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spume", "noun", "spume", "", "", "", "spume foam"]) + let v = native_list_append(v, ["philosophy", "noun", "philosophy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bait", "noun", "bait", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bale", "noun", "bales", "", "", "", "An evil or"]) + let v = native_list_append(v, ["beam", "noun", "beam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brace", "noun", "brace", "", "", "", "Vambrace armour which"]) + let v = native_list_append(v, ["bridal", "noun", "bridal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brink", "noun", "brink", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cape", "noun", "cape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chef", "noun", "chef", "", "", "", "A leader boss"]) + let v = native_list_append(v, ["communication", "noun", "communication", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["computation", "noun", "computation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crier", "noun", "crier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crisp", "noun", "crispes", "", "", "", "A kind of"]) + let v = native_list_append(v, ["crouch", "noun", "crouch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["disparage", "noun", "disparage", "", "", "", "Inequality in marriage"]) + let v = native_list_append(v, ["douse", "noun", "douse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fader", "noun", "fadres", "fadres", "", "", "A father male"]) + let v = native_list_append(v, ["fend", "noun", "fendes", "", "", "", "An enemy foe"]) + let v = native_list_append(v, ["firth", "noun", "firth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleet", "noun", "fleet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foul", "noun", "foules", "foules", "foule", "", "A bird especially"]) + let v = native_list_append(v, ["fret", "noun", "fret", "", "", "", "Eating up wearing"]) + let v = native_list_append(v, ["fright", "noun", "*frightes", "", "", "", "A fright or"]) + let v = native_list_append(v, ["gang", "noun", "gang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gauge", "noun", "gauge", "", "", "", "A customary measurement"]) + let v = native_list_append(v, ["gesticulation", "noun", "gesticulations", "", "", "", "gesticulation"]) + let v = native_list_append(v, ["core", "noun", "cores", "", "", "", "core centre of"]) + let v = native_list_append(v, ["couple", "noun", "couples", "", "", "", "A group of"]) + let v = native_list_append(v, ["glade", "noun", "glades", "", "", "", "A bright space"]) + let v = native_list_append(v, ["gown", "noun", "gown", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hake", "noun", "hakes", "", "", "", "hake gadoid fish"]) + let v = native_list_append(v, ["hale", "noun", "hales", "", "", "", "A corner of"]) + let v = native_list_append(v, ["harm", "noun", "harms", "", "", "", "harm injury ruination"]) + let v = native_list_append(v, ["hater", "noun", "hateren", "", "", "", "A piece of"]) + let v = native_list_append(v, ["hedge", "noun", "hedge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heed", "noun", "heedes", "", "", "", "The head top"]) + let v = native_list_append(v, ["horde", "noun", "horde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imagery", "noun", "imagery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["injury", "noun", "injury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["court", "noun", "courtes", "", "", "", "A courtyard an"]) + let v = native_list_append(v, ["jailer", "noun", "jailer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maladies", "noun", "maladies", "", "", "", "plural of maladie"]) + let v = native_list_append(v, ["malady", "noun", "malady", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jape", "noun", "japes", "", "", "", "trick deception fraud"]) + let v = native_list_append(v, ["player", "noun", "player", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knave", "noun", "knaves", "knaves", "", "", "son male child"]) + let v = native_list_append(v, ["ladder", "noun", "ladder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lard", "noun", "lard", "", "", "", "Bacon fatty cured"]) + let v = native_list_append(v, ["lease", "noun", "lease", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liege", "noun", "liege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lithe", "noun", "lithe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maze", "noun", "maze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mirth", "noun", "mirth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mound", "noun", "mound", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["node", "noun", "nodez", "", "", "", "lump swelling"]) + let v = native_list_append(v, ["nurture", "noun", "nurture", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["official", "noun", "officials", "", "", "", "An underling of"]) + let v = native_list_append(v, ["packer", "noun", "packer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pride", "noun", "pride", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["psalm", "noun", "psalm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rave", "noun", "rave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recover", "noun", "recover", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reeve", "noun", "reeve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riot", "noun", "riotes", "", "", "", "A riot or"]) + let v = native_list_append(v, ["route", "noun", "routes", "", "", "", "route"]) + let v = native_list_append(v, ["sanguine", "noun", "sanguynes", "", "", "", "A bloody red"]) + let v = native_list_append(v, ["sapling", "noun", "sapling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secondary", "noun", "secondary", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sheer", "noun", "sheer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shroud", "noun", "shroud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["site", "noun", "sites", "", "", "", "sorrow grief"]) + let v = native_list_append(v, ["sleight", "noun", "sleight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slight", "noun", "slight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snarl", "noun", "snarles", "", "", "", "A trap for"]) + let v = native_list_append(v, ["snout", "noun", "snout", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["span", "noun", "span", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spare", "noun", "spare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sparkle", "noun", "sparkle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spectacle", "noun", "spectacle", "", "", "", "something that helps"]) + let v = native_list_append(v, ["spire", "noun", "spire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stack", "noun", "stack", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stag", "noun", "stag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stang", "noun", "stanges", "", "", "", "A pole a"]) + let v = native_list_append(v, ["stave", "noun", "stave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steed", "noun", "steed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sty", "noun", "styes", "", "", "", "A pigsty pen"]) + let v = native_list_append(v, ["suite", "noun", "suite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surplus", "noun", "surplus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swain", "noun", "swain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swathe", "noun", "swathez", "", "", "", "A strip or"]) + let v = native_list_append(v, ["marl", "noun", "marl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tang", "noun", "tang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tart", "noun", "tart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tend", "noun", "tend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tent", "noun", "tent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thirst", "noun", "thirst", "", "", "", "Thirst a need"]) + let v = native_list_append(v, ["tithe", "noun", "tithes", "", "", "", "One of ten"]) + let v = native_list_append(v, ["towel", "noun", "towel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trice", "noun", "trices", "", "", "", "pulley windlass tackle"]) + let v = native_list_append(v, ["tripe", "noun", "tripes", "", "", "", "A portion of"]) + let v = native_list_append(v, ["vassal", "noun", "vassalles", "", "", "", "A feudal retainer"]) + let v = native_list_append(v, ["wager", "noun", "wager", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waif", "noun", "waif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wane", "noun", "wane", "", "", "", "penury deprivation neediness"]) + let v = native_list_append(v, ["waster", "noun", "waster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["youth", "noun", "youth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dowse", "noun", "dowse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clam", "noun", "clames", "", "", "", "plaster poultice"]) + let v = native_list_append(v, ["taper", "noun", "tapres", "", "", "", "taper thin candle"]) + let v = native_list_append(v, ["mansion", "noun", "mansion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["decree", "noun", "decree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fir", "noun", "fir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poet", "noun", "poet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behoove", "noun", "behoove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behove", "noun", "behove", "", "", "", "Benefit advantage."]) + let v = native_list_append(v, ["ypocras", "noun", "ypocrass", "", "", "", "Wine flavoured with"]) + let v = native_list_append(v, ["claree", "noun", "clarees", "", "", "", "A drink made"]) + let v = native_list_append(v, ["Derbyshire", "noun", "Derbyshire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["babi", "noun", "babi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trip", "noun", "trippus", "", "", "", "An action that"]) + let v = native_list_append(v, ["despect", "noun", "despect", "", "", "", "Despect “contempt derision”."]) + let v = native_list_append(v, ["tux", "noun", "tux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dowcet", "noun", "dowcet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jalousie", "noun", "jelousies", "", "", "", "Jealousness or jealousy"]) + let v = native_list_append(v, ["bush", "noun", "bushes", "", "", "", "Bush shrub low-lying"]) + let v = native_list_append(v, ["frosh", "noun", "frosh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honour", "noun", "honours", "", "", "", "honour"]) + let v = native_list_append(v, ["ordure", "noun", "ordures", "", "", "", "ordure excrement"]) + let v = native_list_append(v, ["augure", "noun", "augures", "", "", "", "augury"]) + let v = native_list_append(v, ["faucet", "noun", "faucet", "", "", "", "faucet"]) + let v = native_list_append(v, ["bac", "noun", "bac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fol", "noun", "fol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fern", "noun", "ferns", "", "", "", "fern"]) + let v = native_list_append(v, ["larder", "noun", "larder", "", "", "", "A stock of"]) + let v = native_list_append(v, ["temps", "noun", "temps", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remis", "noun", "remis", "", "", "", "plural of reme"]) + let v = native_list_append(v, ["waw", "noun", "waw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heth", "noun", "hethes", "", "", "", "A heath uncultivated"]) + let v = native_list_append(v, ["teth", "noun", "teth", "", "", "", "plural of toth"]) + let v = native_list_append(v, ["kaf", "noun", "kaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chine", "noun", "chine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["midwinter", "noun", "midwinter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["intelligence", "noun", "intelligence", "", "", "", "Comprehension intelligence the"]) + let v = native_list_append(v, ["Jove", "noun", "Jove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Iupiter", "noun", "Iupiter", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["Satan", "noun", "Satan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Jewry", "noun", "Jewry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waxing", "noun", "waxing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stature", "noun", "statures", "", "", "", "stature height tallness"]) + let v = native_list_append(v, ["Johan", "noun", "Johan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aw", "noun", "aw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gospel", "noun", "gospelles", "", "", "", "A gospel one"]) + let v = native_list_append(v, ["Lucifer", "noun", "Lucifer", "", "", "", "Satan the Devil"]) + let v = native_list_append(v, ["douce", "noun", "douce", "", "", "", "lover"]) + let v = native_list_append(v, ["gat", "noun", "gat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ennui", "noun", "ennui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pension", "noun", "pension", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rame", "noun", "rame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dogge", "noun", "dogges", "", "", "", "an ordinary dog"]) + let v = native_list_append(v, ["notte", "noun", "notte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tay", "noun", "tays", "", "", "", "The outer membrane"]) + let v = native_list_append(v, ["horen", "noun", "horen", "", "", "", "plural of hore"]) + let v = native_list_append(v, ["ege", "noun", "ege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mente", "noun", "mente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Inde", "noun", "Inde", "", "", "", "India a country"]) + let v = native_list_append(v, ["dente", "noun", "dente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["item", "noun", "item", "", "", "", "the same identical."]) + let v = native_list_append(v, ["vexation", "noun", "vexation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jury", "noun", "jury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebel", "noun", "rebels", "", "", "", "A sinner as"]) + let v = native_list_append(v, ["preceptor", "noun", "preceptors", "", "", "", "preceptor"]) + let v = native_list_append(v, ["sodomy", "noun", "sodomy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carpenter", "noun", "carpenteres", "", "", "", "carpenter"]) + let v = native_list_append(v, ["ku", "noun", "ku", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mon", "noun", "mon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lait", "noun", "lait", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ley", "noun", "ley", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mille", "noun", "mille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entry", "noun", "entry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creme", "noun", "creme", "", "", "", "chrism mixture of"]) + let v = native_list_append(v, ["blasphemy", "noun", "blasphemy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dialog", "noun", "dialogges", "", "", "", "A literary discussion"]) + let v = native_list_append(v, ["Howard", "noun", "Howard", "", "", "", "a surname originating"]) + let v = native_list_append(v, ["shave", "noun", "shave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schedule", "noun", "schedule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fore", "noun", "fore", "", "", "", "fore"]) + let v = native_list_append(v, ["woo", "noun", "woos", "", "", "", "woe torment anguish"]) + let v = native_list_append(v, ["hood", "noun", "hoodes", "", "", "", "hood part of"]) + let v = native_list_append(v, ["glue", "noun", "glue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["auctor", "noun", "auctor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flask", "noun", "flaskes", "", "", "", "A small barrel"]) + let v = native_list_append(v, ["lade", "noun", "lade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dai", "noun", "dai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["constable", "noun", "constables", "", "", "", "constable high commander"]) + let v = native_list_append(v, ["mount", "noun", "mountes", "", "", "", "A mountain a"]) + let v = native_list_append(v, ["philosopher", "noun", "philosopher", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helm", "noun", "helmes", "", "", "", "A helmet a"]) + let v = native_list_append(v, ["goner", "noun", "goner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["besom", "noun", "besom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sore", "noun", "sores", "", "", "", "The condition of"]) + let v = native_list_append(v, ["fist", "noun", "fistes", "", "", "", "fist"]) + let v = native_list_append(v, ["cloister", "noun", "cloister", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alienation", "noun", "alienation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blaspheme", "noun", "blaspheme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["binding", "noun", "binding", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noble", "noun", "noble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flod", "noun", "flodes", "", "", "", "A waterbody or"]) + let v = native_list_append(v, ["ponder", "noun", "ponders", "", "", "", "A fourteenth-century unit"]) + let v = native_list_append(v, ["chisel", "noun", "chisels", "", "", "", "Any of several"]) + let v = native_list_append(v, ["cloche", "noun", "cloche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chou", "noun", "chou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charter", "noun", "charter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swarm", "noun", "swarmes", "", "", "", "A swarm large"]) + let v = native_list_append(v, ["foder", "noun", "foder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sut", "noun", "sut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rudder", "noun", "rudder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorcery", "noun", "sorceries", "", "", "", "sorcery wizardry magic"]) + let v = native_list_append(v, ["ounce", "noun", "ounces", "", "", "", "An ounce unit"]) + let v = native_list_append(v, ["Elizabeth", "noun", "Elizabeth", "", "", "", "Elizabeth mother of"]) + let v = native_list_append(v, ["foster", "noun", "*fostres", "", "", "", "A child one"]) + let v = native_list_append(v, ["dome", "noun", "dome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poll", "noun", "poll", "", "", "", "A head particularly"]) + let v = native_list_append(v, ["ester", "noun", "esters", "", "", "", "Easter Christian holiday"]) + let v = native_list_append(v, ["bond", "noun", "bond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stench", "noun", "stenches", "", "", "", "A stench an"]) + let v = native_list_append(v, ["tusk", "noun", "tuskes", "", "", "", "A tusk protruding"]) + let v = native_list_append(v, ["halibut", "noun", "halibuttes", "", "", "", "A halibut."]) + let v = native_list_append(v, ["Yorkshire", "noun", "Yorkshire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Iuno", "noun", "Iuno", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["ages", "noun", "ages", "", "", "", "plural of age"]) + let v = native_list_append(v, ["clamour", "noun", "clamours", "", "", "", "shout cry clamor"]) + let v = native_list_append(v, ["obeisaunce", "noun", "obeisaunces", "", "", "", "obeisance"]) + let v = native_list_append(v, ["childer", "noun", "childer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["issue", "noun", "issues", "", "", "", "Exit departure the"]) + let v = native_list_append(v, ["digitus", "noun", "digitus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yarn", "noun", "yarn", "", "", "", "Yarn a length"]) + let v = native_list_append(v, ["stad", "noun", "stad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blase", "noun", "blases", "", "", "", "A blaze bright"]) + let v = native_list_append(v, ["chapel", "noun", "chapel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Pentecost", "noun", "Pentecost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stable", "noun", "stables", "", "", "", "stable building for"]) + let v = native_list_append(v, ["border", "noun", "border", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trance", "noun", "trance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bye", "noun", "bye", "", "", "", "A ring or"]) + let v = native_list_append(v, ["flint", "noun", "flint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mold", "noun", "mold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dyn", "noun", "dyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corner", "noun", "corneres", "", "", "", "A corner or"]) + let v = native_list_append(v, ["hal", "noun", "hal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["proposition", "noun", "proposition", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mister", "noun", "mysteres", "", "", "", "A station or"]) + let v = native_list_append(v, ["mystery", "noun", "mystery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["officer", "noun", "officers", "", "", "", "A hireling or"]) + let v = native_list_append(v, ["aile", "noun", "aile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ancre", "noun", "ancre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clever", "noun", "clever", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tune", "noun", "tune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Simon", "noun", "Simon", "", "", "", "a male given"]) + let v = native_list_append(v, ["prophecy", "noun", "prophecy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Dorset", "noun", "Dorset", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Herefordshire", "noun", "Herefordshire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Kent", "noun", "Kent", "", "", "", "Kent a county"]) + let v = native_list_append(v, ["Norfolk", "noun", "Norfolk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Somerset", "noun", "Somerset", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Suffolk", "noun", "Suffolk", "", "", "", "Suffolk a county"]) + let v = native_list_append(v, ["Wiltshire", "noun", "Wiltshire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["este", "noun", "estes", "", "", "", "grace est favour"]) + let v = native_list_append(v, ["climbing", "noun", "climbing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unhappy", "noun", "unhappy", "", "", "", "unhap"]) + let v = native_list_append(v, ["riding", "noun", "riding", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["custom", "noun", "custom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["makes", "noun", "makes", "", "", "", "plural of make"]) + let v = native_list_append(v, ["stranger", "noun", "stranger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dresser", "noun", "dresser", "", "", "", "leader guide"]) + let v = native_list_append(v, ["scullery", "noun", "scullery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coffin", "noun", "coffin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fairie", "noun", "fairie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soot", "noun", "soot", "", "", "", "soot"]) + let v = native_list_append(v, ["hunger", "noun", "hunger", "", "", "", "Hungriness the feeling"]) + let v = native_list_append(v, ["fond", "noun", "fond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["days", "noun", "days", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parler", "noun", "parler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twin", "noun", "twin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hinge", "noun", "hinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forge", "noun", "forge", "", "", "", "forge workshop"]) + let v = native_list_append(v, ["caraway", "noun", "caraway", "", "", "", "Caraway or its"]) + let v = native_list_append(v, ["licorice", "noun", "licorice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compassion", "noun", "compassion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Chaucer", "noun", "Chaucer", "", "", "", "a medieval English"]) + let v = native_list_append(v, ["prisoner", "noun", "prisoners", "", "", "", "one who imprisons"]) + let v = native_list_append(v, ["awyr", "noun", "awyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vin", "noun", "vin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doc", "noun", "doc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sergeant", "noun", "sergeant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cowardy", "noun", "cowardy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dungeon", "noun", "dungeon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ze", "noun", "ze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veer", "noun", "veer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["velvet", "noun", "veluettes", "", "", "", "velvet fine tufted"]) + let v = native_list_append(v, ["folk", "noun", "folkes", "", "", "", "people folk multiple"]) + let v = native_list_append(v, ["William", "noun", "William", "", "", "", "a male given"]) + let v = native_list_append(v, ["fuller", "noun", "fuller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haul", "noun", "haul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verdict", "noun", "verdicts", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parish", "noun", "parish", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quale", "noun", "quale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roo", "noun", "roo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyrant", "noun", "tyrant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyranny", "noun", "tyranny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lamp", "noun", "lamp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Phillip", "noun", "Phillip", "", "", "", "a male given"]) + let v = native_list_append(v, ["musk", "noun", "musk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cubit", "noun", "cubit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baban", "noun", "baban", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buc", "noun", "buc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gard", "noun", "gard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flit", "noun", "flit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garth", "noun", "garthis", "", "", "", "A garth yard"]) + let v = native_list_append(v, ["wight", "noun", "wightes", "", "", "", "A creature a"]) + let v = native_list_append(v, ["berm", "noun", "berm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roster", "noun", "roster", "", "", "", "A roaster a"]) + let v = native_list_append(v, ["spook", "noun", "spook", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jeopardy", "noun", "jeopardy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mariner", "noun", "mariners", "", "", "", "sailor individual working"]) + let v = native_list_append(v, ["tung", "noun", "tung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["places", "noun", "places", "", "", "", "plural of place"]) + let v = native_list_append(v, ["animale", "noun", "animale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veld", "noun", "veld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stor", "noun", "stor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surgery", "noun", "surgery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spoor", "noun", "spoor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gurner", "noun", "gurner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Saturnus", "noun", "Saturnus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burd", "noun", "burd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ridere", "noun", "ridere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shoo", "noun", "shoo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demure", "noun", "demure", "", "", "", "delay waiting stay"]) + let v = native_list_append(v, ["lantern", "noun", "lantern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["torment", "noun", "torments", "", "", "", "torment suffering pain"]) + let v = native_list_append(v, ["vex", "noun", "vex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dowry", "noun", "dowry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chill", "noun", "chill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suture", "noun", "suturez", "", "", "", "A suture a"]) + let v = native_list_append(v, ["mature", "noun", "mature", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Noel", "noun", "Noel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Geoffrey", "noun", "Geoffrey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Jeffrey", "noun", "Jeffrey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reine", "noun", "reine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salvation", "noun", "salvation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Judy", "noun", "Judy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["origine", "noun", "origine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rem", "noun", "remes", "", "", "", "A shout or"]) + let v = native_list_append(v, ["fagot", "noun", "fagotes", "", "", "", "A piece of"]) + let v = native_list_append(v, ["mor", "noun", "mores", "", "", "", "moor"]) + let v = native_list_append(v, ["stories", "noun", "stories", "", "", "", "plural of storie"]) + let v = native_list_append(v, ["spindel", "noun", "spindel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spindle", "noun", "spindle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["husk", "noun", "husk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knap", "noun", "knap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wharf", "noun", "wharves", "", "", "", "wharf"]) + let v = native_list_append(v, ["bagpipe", "noun", "bagpipe", "", "", "", "bagpipes"]) + let v = native_list_append(v, ["transgression", "noun", "transgression", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forger", "noun", "forgers", "", "", "", "creator maker fabricator"]) + let v = native_list_append(v, ["fury", "noun", "fury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fume", "noun", "fumes", "", "", "", "Visible gaseous emanations"]) + let v = native_list_append(v, ["mankind", "noun", "mankind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oblivion", "noun", "oblivion", "", "", "", "oblivion state of"]) + let v = native_list_append(v, ["Arthur", "noun", "Arthur", "", "", "", "Arthur"]) + let v = native_list_append(v, ["winning", "noun", "winning", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Russel", "noun", "Russel", "", "", "", "a surname"]) + let v = native_list_append(v, ["Russell", "noun", "Russell", "", "", "", "a surname variant"]) + let v = native_list_append(v, ["mutton", "noun", "mutton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chier", "noun", "chier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pisser", "noun", "pisser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flore", "noun", "flore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sermon", "noun", "sermon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Philip", "noun", "Philip", "", "", "", "a male given"]) + let v = native_list_append(v, ["yelp", "noun", "yelp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knob", "noun", "knob", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cypress", "noun", "cypress", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["piety", "noun", "piety", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marked", "noun", "marked", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["differences", "noun", "differences", "", "", "", "plural of difference"]) + let v = native_list_append(v, ["cope", "noun", "copes", "", "", "", "A cape or"]) + let v = native_list_append(v, ["bas", "noun", "bas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["devoir", "noun", "devoirs", "", "", "", "devoir"]) + let v = native_list_append(v, ["demande", "noun", "demande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trough", "noun", "trough", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Marie", "noun", "Marie", "", "", "", "Mary biblical figure"]) + let v = native_list_append(v, ["bitte", "noun", "bittes", "", "", "", "A flexible container"]) + let v = native_list_append(v, ["lyn", "noun", "lyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferme", "noun", "fermes", "", "", "", "A lease the"]) + let v = native_list_append(v, ["informer", "noun", "informer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hondel", "noun", "hondels", "", "", "", "handle device designed"]) + let v = native_list_append(v, ["ryot", "noun", "ryot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oracle", "noun", "oracles", "", "", "", "A shrine where"]) + let v = native_list_append(v, ["oratory", "noun", "oratory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Austin", "noun", "Austin", "", "", "", "Augustine"]) + let v = native_list_append(v, ["ligament", "noun", "ligamentes", "", "", "", "A ligament or"]) + let v = native_list_append(v, ["elm", "noun", "elmes", "", "", "", "elm tree"]) + let v = native_list_append(v, ["gore", "noun", "gores", "", "", "", "A triangle-shaped plot"]) + let v = native_list_append(v, ["tough", "noun", "tough", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lesson", "noun", "lesson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fut", "noun", "fut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["outward", "noun", "outward", "", "", "", "The outside the"]) + let v = native_list_append(v, ["aide", "noun", "aide", "", "", "", "Help given aid."]) + let v = native_list_append(v, ["ithe", "noun", "ithe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knitting", "noun", "knitting", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knell", "noun", "knell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["convent", "noun", "convent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axel", "noun", "axeles", "", "", "", "shoulder"]) + let v = native_list_append(v, ["wer", "noun", "wers", "", "", "", "a man a"]) + let v = native_list_append(v, ["ond", "noun", "ond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["messy", "noun", "messy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warden", "noun", "wardens", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hoser", "noun", "hoser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tomb", "noun", "tombes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parage", "noun", "parage", "", "", "", "Ones bloodline or"]) + let v = native_list_append(v, ["infancy", "noun", "infancy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["significance", "noun", "significance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fille", "noun", "fille", "", "", "", "A sufficient amount"]) + let v = native_list_append(v, ["elle", "noun", "elle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeoman", "noun", "yeoman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["washing", "noun", "washing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stunt", "noun", "stunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choke", "noun", "choke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["une", "noun", "une", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["filles", "noun", "filles", "", "", "", "plural of fille"]) + let v = native_list_append(v, ["aube", "noun", "aube", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riches", "noun", "riches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garget", "noun", "garget", "", "", "", "throat"]) + let v = native_list_append(v, ["sward", "noun", "sward", "", "", "", "Sward a location"]) + let v = native_list_append(v, ["swarth", "noun", "swarth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pancake", "noun", "pancake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bolster", "noun", "bolsters", "", "", "", "A soft stuffed"]) + let v = native_list_append(v, ["Patrick", "noun", "Patrick", "", "", "", "a male given"]) + let v = native_list_append(v, ["willow", "noun", "willow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wo", "noun", "wos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rothar", "noun", "rothar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ard", "noun", "ard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deise", "noun", "deise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["samen", "noun", "samen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verdure", "noun", "verdure", "", "", "", "Verdure greenery lush"]) + let v = native_list_append(v, ["tremor", "noun", "tremor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ro", "noun", "ros", "", "", "", "A roe deer"]) + let v = native_list_append(v, ["shire", "noun", "shire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lek", "noun", "lekes", "", "", "", "A plant in"]) + let v = native_list_append(v, ["glas", "noun", "glasses", "", "", "", "Glass substance made"]) + let v = native_list_append(v, ["Franklin", "noun", "Franklin", "", "", "", "A Middle English"]) + let v = native_list_append(v, ["fultum", "noun", "fultums", "", "", "", "help aid succour"]) + let v = native_list_append(v, ["heritage", "noun", "heritage", "", "", "", "An inheritance that"]) + let v = native_list_append(v, ["steden", "noun", "steden", "", "", "", "plural of stede"]) + let v = native_list_append(v, ["cubicle", "noun", "cubicle", "", "", "", "a bedchamber"]) + let v = native_list_append(v, ["robe", "noun", "robes", "", "", "", "robe long loose"]) + let v = native_list_append(v, ["stile", "noun", "styles", "", "", "", "stile set of"]) + let v = native_list_append(v, ["patience", "noun", "patience", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Constantinople", "noun", "Constantinople", "", "", "", "Constantinople the former"]) + let v = native_list_append(v, ["croup", "noun", "croup", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shaft", "noun", "shaft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poste", "noun", "poste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entre", "noun", "entres", "", "", "", "Entrance entry movement"]) + let v = native_list_append(v, ["nocturne", "noun", "nocturns", "", "", "", "nocturn"]) + let v = native_list_append(v, ["witchcraft", "noun", "witchcraft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["resolution", "noun", "resolution", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["limbo", "noun", "limbo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["terre", "noun", "terre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dwelling", "noun", "dwelling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corde", "noun", "cordes", "", "", "", "A long thick"]) + let v = native_list_append(v, ["tens", "noun", "tenses", "", "", "", "tense"]) + let v = native_list_append(v, ["walker", "noun", "walker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usury", "noun", "usury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caldron", "noun", "caldron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bridle", "noun", "bridle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["childe", "noun", "childe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verbe", "noun", "verbes", "", "", "", "verb"]) + let v = native_list_append(v, ["verbes", "noun", "verbes", "", "", "", "plural of verbe"]) + let v = native_list_append(v, ["wend", "noun", "wend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["groin", "noun", "groin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verde", "noun", "verde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ware", "noun", "ware", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wired", "noun", "wired", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trivet", "noun", "trivet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tablet", "noun", "tablettes", "", "", "", "A tablet especially"]) + let v = native_list_append(v, ["aller", "noun", "aller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vespers", "noun", "vespers", "", "", "", "The sixth of"]) + let v = native_list_append(v, ["doute", "noun", "doutes", "", "", "", "doubt"]) + let v = native_list_append(v, ["viciousness", "noun", "viciousness", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulsome", "noun", "fulsome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viewer", "noun", "viewer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["farthing", "noun", "farthing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amour", "noun", "amours", "", "", "", "love affection"]) + let v = native_list_append(v, ["iwan", "noun", "iwan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peche", "noun", "peches", "", "", "", "A peach fruit"]) + let v = native_list_append(v, ["juniper", "noun", "juniper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mugwort", "noun", "mugwort", "", "", "", "wormwood mugwort Artemisia"]) + let v = native_list_append(v, ["provision", "noun", "provision", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fane", "noun", "fane", "", "", "", "A particular kind"]) + let v = native_list_append(v, ["chevalier", "noun", "chevalier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chaff", "noun", "chaff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salve", "noun", "salves", "", "", "", "A salve a"]) + let v = native_list_append(v, ["paramour", "noun", "paramours", "", "", "", "A romantic or"]) + let v = native_list_append(v, ["brig", "noun", "brig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kaiser", "noun", "kaiser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yate", "noun", "yate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suerte", "noun", "suerte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morwenyng", "noun", "morwenyng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sith", "noun", "sithes", "", "", "", "a journey way"]) + let v = native_list_append(v, ["pike", "noun", "pike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mareschal", "noun", "mareschal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Maurice", "noun", "Maurice", "", "", "", "a male given"]) + let v = native_list_append(v, ["warp", "noun", "warp", "", "", "", "warp lengthwise threads"]) + let v = native_list_append(v, ["rebellion", "noun", "rebellion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burgage", "noun", "burgages", "", "", "", "Land held under"]) + let v = native_list_append(v, ["plage", "noun", "plages", "", "", "", "plague"]) + let v = native_list_append(v, ["heft", "noun", "heftis", "", "", "", "weight"]) + let v = native_list_append(v, ["parte", "noun", "parte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glide", "noun", "glide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theater", "noun", "theater", "", "", "", "A theatre open"]) + let v = native_list_append(v, ["usurer", "noun", "usurer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyrm", "noun", "wyrm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conscience", "noun", "consciences", "", "", "", "conscience"]) + let v = native_list_append(v, ["maple", "noun", "maple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frond", "noun", "frond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Margaret", "noun", "Margaret", "", "", "", "Margaret"]) + let v = native_list_append(v, ["singing", "noun", "singing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sonde", "noun", "sondes", "", "", "", "A message information"]) + let v = native_list_append(v, ["sone", "noun", "sones", "", "", "", "son"]) + let v = native_list_append(v, ["glede", "noun", "gledes", "", "", "", "kite bird of"]) + let v = native_list_append(v, ["customer", "noun", "customer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patente", "noun", "patente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riche", "noun", "riche", "", "", "", "The rich and"]) + let v = native_list_append(v, ["neste", "noun", "neste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bande", "noun", "bande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cornerstone", "noun", "cornerstone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rike", "noun", "rike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pene", "noun", "pene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fornace", "noun", "fornace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abc", "noun", "abc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mischief", "noun", "mischief", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patent", "noun", "patentes", "", "", "", "A letter conferring"]) + let v = native_list_append(v, ["lax", "noun", "laxes", "", "", "", "salmon"]) + let v = native_list_append(v, ["claw", "noun", "claw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kan", "noun", "kan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curd", "noun", "curd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["transgressor", "noun", "transgressor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treason", "noun", "treason", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murmure", "noun", "murmure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inward", "noun", "inwardes", "", "", "", "The interior of"]) + let v = native_list_append(v, ["ande", "noun", "ande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arte", "noun", "arte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naught", "noun", "naught", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remorse", "noun", "remorse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fodre", "noun", "fodre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delve", "noun", "delve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sem", "noun", "sem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flamme", "noun", "flamme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mysteries", "noun", "mysteries", "", "", "", "plural of mysterie"]) + let v = native_list_append(v, ["hane", "noun", "hane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coverage", "noun", "coverage", "", "", "", "a charge for"]) + let v = native_list_append(v, ["Germania", "noun", "Germania", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viene", "noun", "viene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["themes", "noun", "themes", "", "", "", "plural of them"]) + let v = native_list_append(v, ["Ron", "noun", "Ron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Marte", "noun", "Marte", "", "", "", "The Roman god"]) + let v = native_list_append(v, ["soper", "noun", "sopers", "", "", "", "Supper dinner the"]) + let v = native_list_append(v, ["cas", "noun", "箰", "", "", "", "case event happening"]) + let v = native_list_append(v, ["tol", "noun", "tol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murmur", "noun", "murmurs", "", "", "", "A whining protesting"]) + let v = native_list_append(v, ["quince", "noun", "quince", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fowler", "noun", "fowler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loving", "noun", "loving", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quiste", "noun", "questes", "", "", "", "Ones will and"]) + let v = native_list_append(v, ["trave", "noun", "traves", "", "", "", "A beam or"]) + let v = native_list_append(v, ["Vesta", "noun", "Vesta", "", "", "", "The Roman goddess"]) + let v = native_list_append(v, ["Diana", "noun", "Diana", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stronger", "noun", "stronger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asp", "noun", "asp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["livid", "noun", "livid", "", "", "", "livid blue color"]) + let v = native_list_append(v, ["tinder", "noun", "tinder", "", "", "", "tinder firestarters"]) + let v = native_list_append(v, ["perte", "noun", "perte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ardour", "noun", "ardours", "", "", "", "ardour emotional passion"]) + let v = native_list_append(v, ["baptize", "noun", "baptize", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["babes", "noun", "babes", "", "", "", "plural of babe"]) + let v = native_list_append(v, ["homme", "noun", "homme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lege", "noun", "leges", "", "", "", "league unit of"]) + let v = native_list_append(v, ["pier", "noun", "pier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saving", "noun", "saving", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stages", "noun", "stages", "", "", "", "plural of stage"]) + let v = native_list_append(v, ["pounce", "noun", "pounce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sape", "noun", "sape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quilt", "noun", "quilt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fuir", "noun", "fuir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["claret", "noun", "clarets", "", "", "", "clary Salvia sclarea"]) + let v = native_list_append(v, ["Abraham", "noun", "Abraham", "", "", "", "Abraham"]) + let v = native_list_append(v, ["bases", "noun", "bases", "", "", "", "plural of base"]) + let v = native_list_append(v, ["scrape", "noun", "scrapes", "", "", "", "scratching"]) + let v = native_list_append(v, ["diamant", "noun", "diamant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["citrine", "noun", "citrines", "", "", "", "citron Citrus medica"]) + let v = native_list_append(v, ["moule", "noun", "moule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hose", "noun", "hosen", "", "", "", "Stockings or tights"]) + let v = native_list_append(v, ["retinue", "noun", "retinue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ew", "noun", "ew", "", "", "", "yew Taxus baccata"]) + let v = native_list_append(v, ["anguis", "noun", "anguis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ordre", "noun", "ordre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chalice", "noun", "chalice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sallow", "noun", "sallow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hired", "noun", "hired", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sinful", "noun", "sinful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["submission", "noun", "submission", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fissure", "noun", "fissure", "", "", "", "fissure rupture"]) + let v = native_list_append(v, ["moder", "noun", "modres", "modres", "", "", "A mother a"]) + let v = native_list_append(v, ["Venise", "noun", "Venise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sexe", "noun", "sexe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meth", "noun", "meth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rond", "noun", "rond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faun", "noun", "faun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spense", "noun", "spense", "", "", "", "spence"]) + let v = native_list_append(v, ["dressing", "noun", "dressing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorcerer", "noun", "sorcerer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clothe", "noun", "clothe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stat", "noun", "stats", "", "", "", "condition"]) + let v = native_list_append(v, ["vader", "noun", "vader", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dirige", "noun", "dirige", "", "", "", "The portion of"]) + let v = native_list_append(v, ["brill", "noun", "brill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["robbery", "noun", "robbery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bast", "noun", "bastes", "", "", "", "A cord or"]) + let v = native_list_append(v, ["croft", "noun", "croftes", "", "", "", "croft small field"]) + let v = native_list_append(v, ["lozenge", "noun", "lozenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sande", "noun", "sande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dux", "noun", "dux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomancy", "noun", "geomancy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["confession", "noun", "confession", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["commune", "noun", "commune", "", "", "", "commons citizenry"]) + let v = native_list_append(v, ["perle", "noun", "perles", "", "", "", "A pearl bivalve"]) + let v = native_list_append(v, ["soupe", "noun", "soupes", "", "", "", "A meal consisting"]) + let v = native_list_append(v, ["tallow", "noun", "tallow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suet", "noun", "suet", "", "", "", "suet"]) + let v = native_list_append(v, ["Apollo", "noun", "Apollo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Avril", "noun", "Avril", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Bible", "noun", "Bible", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Butler", "noun", "Butler", "", "", "", "a surname"]) + let v = native_list_append(v, ["Dan", "noun", "Dan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Englisch", "noun", "Englisch", "", "", "", "The English people"]) + let v = native_list_append(v, ["Eve", "noun", "Eve", "", "", "", "Eve the first"]) + let v = native_list_append(v, ["God", "noun", "God", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ion", "noun", "Ion", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["Island", "noun", "Island", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Joan", "noun", "Joan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["John", "noun", "John", "", "", "", "a male given"]) + let v = native_list_append(v, ["Jon", "noun", "Jon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Latin", "noun", "Latin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Limbo", "noun", "Limbo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Lincoln", "noun", "Lincoln", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Lord", "noun", "Lord", "", "", "", "Lord the Abrahamic"]) + let v = native_list_append(v, ["Magi", "noun", "Magi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["March", "noun", "March", "", "", "", "March"]) + let v = native_list_append(v, ["Mars", "noun", "Mars", "", "", "", "The Roman god"]) + let v = native_list_append(v, ["Martin", "noun", "Martin", "", "", "", "a male given"]) + let v = native_list_append(v, ["Mercury", "noun", "Mercury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Muse", "noun", "Muses", "", "", "", "A Muse"]) + let v = native_list_append(v, ["Pan", "noun", "Pan", "", "", "", "Pan Greek god"]) + let v = native_list_append(v, ["Robin", "noun", "Robin", "", "", "", "a male given"]) + let v = native_list_append(v, ["Smith", "noun", "Smith", "", "", "", "a surname alternative"]) + let v = native_list_append(v, ["Sol", "noun", "Sol", "", "", "", "the Sun."]) + let v = native_list_append(v, ["White", "noun", "White", "", "", "", "a surname"]) + let v = native_list_append(v, ["York", "noun", "York", "", "", "", "York a city"]) + let v = native_list_append(v, ["Ypocras", "noun", "Ypocras", "", "", "", "Hippocrates"]) + let v = native_list_append(v, ["poon", "noun", "poon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marshall", "noun", "marshall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scot", "noun", "scotes", "", "", "", "payment"]) + let v = native_list_append(v, ["chile", "noun", "chile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cu", "noun", "cu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wales", "noun", "wales", "", "", "", "plural of wale"]) + let v = native_list_append(v, ["polen", "noun", "polen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["backe", "noun", "backe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berge", "noun", "berge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feder", "noun", "feders", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleisch", "noun", "fleisch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["braille", "noun", "braille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mach", "noun", "mach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venus", "noun", "venus", "", "", "", "The reddish-brown metal"]) + let v = native_list_append(v, ["bern", "noun", "bernes", "", "", "", "barn farm building"]) + let v = native_list_append(v, ["marche", "noun", "marche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mande", "noun", "mande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Venecia", "noun", "Venecia", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bali", "noun", "balis", "", "", "", "The Evil One"]) + let v = native_list_append(v, ["sors", "noun", "sors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rinde", "noun", "rinde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seneschal", "noun", "seneschals", "", "", "", "A steward in"]) + let v = native_list_append(v, ["pon", "noun", "pon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tim", "noun", "tim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wald", "noun", "wald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wurm", "noun", "wurm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dette", "noun", "dettes", "", "", "", "Debt money goods"]) + let v = native_list_append(v, ["dee", "noun", "dees", "", "", "", "A die or"]) + let v = native_list_append(v, ["dane", "noun", "dane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maine", "noun", "maine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lapis lazuli", "noun", "lapis lazuli", "", "", "", "lapis lazuli"]) + let v = native_list_append(v, ["hei", "noun", "hei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["canner", "noun", "canner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hog", "noun", "hogges", "hogges", "", "", "A pig or"]) + let v = native_list_append(v, ["injuries", "noun", "injuries", "", "", "", "plural of injurie"]) + let v = native_list_append(v, ["morn", "noun", "morn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tumour", "noun", "tumours", "", "", "", "tumour abnormal or"]) + let v = native_list_append(v, ["rie", "noun", "rie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hols", "noun", "hols", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taas", "noun", "tases", "", "", "", "heap"]) + let v = native_list_append(v, ["inde", "noun", "inde", "", "", "", "indigo dark blue-purple"]) + let v = native_list_append(v, ["tavern", "noun", "tavern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alderman", "noun", "aldermen", "", "", "", "A high official"]) + let v = native_list_append(v, ["eres", "noun", "eres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barker", "noun", "barkers", "", "", "", "tanner barker"]) + let v = native_list_append(v, ["faute", "noun", "fautes", "", "", "", "fault"]) + let v = native_list_append(v, ["staple", "noun", "staples", "", "", "", "staple official market"]) + let v = native_list_append(v, ["hoose", "noun", "hoose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berne", "noun", "berne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wayne", "noun", "wayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lint", "noun", "lint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oyes", "noun", "oyes", "", "", "", "a call for"]) + let v = native_list_append(v, ["salat", "noun", "salat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["groyne", "noun", "groyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weld", "noun", "weld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clew", "noun", "clew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["radish", "noun", "radish", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hostler", "noun", "hostler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meare", "noun", "meare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maim", "noun", "maim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fey", "noun", "fey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swelling", "noun", "swelling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mariage", "noun", "mariages", "", "", "", "marriage"]) + let v = native_list_append(v, ["assis", "noun", "assis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graf", "noun", "graf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ame", "noun", "ames", "", "", "", "evaluation guess opinion"]) + let v = native_list_append(v, ["kyn", "noun", "kyn", "", "", "", "Ones relations or"]) + let v = native_list_append(v, ["ebbe", "noun", "ebbe", "", "", "", "ebb low tide"]) + let v = native_list_append(v, ["gloves", "noun", "gloves", "", "", "", "plural of glove"]) + let v = native_list_append(v, ["nat", "noun", "nat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neil", "noun", "neil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["talon", "noun", "talon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garnison", "noun", "garnison", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["looking", "noun", "looking", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hosp", "noun", "hosps", "", "", "", "detraction blasphemy to"]) + let v = native_list_append(v, ["tapestry", "noun", "tapestry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leon", "noun", "leon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garde", "noun", "gardes", "", "", "", "guardianship safeguarding covering"]) + let v = native_list_append(v, ["flex", "noun", "flex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["papir", "noun", "papir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ponders", "noun", "ponders", "", "", "", "plural of ponder"]) + let v = native_list_append(v, ["dong", "noun", "dong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vise", "noun", "vise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlament", "noun", "parlament", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ferse", "noun", "Ferse", "", "", "", "a surname variant"]) + let v = native_list_append(v, ["hacken", "noun", "hacken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pisse", "noun", "pisse", "", "", "", "piss urine"]) + let v = native_list_append(v, ["matins", "noun", "matins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sext", "noun", "sext", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iva", "noun", "iva", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Irland", "noun", "Irland", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["donjon", "noun", "donjon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bree", "noun", "bree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauver", "noun", "sauver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["artificer", "noun", "artificers", "", "", "", "A crafter or"]) + let v = native_list_append(v, ["lohe", "noun", "lohe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seller", "noun", "seller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["receptacle", "noun", "receptacles", "", "", "", "receptacle container"]) + let v = native_list_append(v, ["ote", "noun", "otes", "", "", "", "The oat plant"]) + let v = native_list_append(v, ["cries", "noun", "cries", "", "", "", "plural of cry"]) + let v = native_list_append(v, ["gates", "noun", "gates", "", "", "", "plural of gate"]) + let v = native_list_append(v, ["quarters", "noun", "quarters", "", "", "", "plural of quarter"]) + let v = native_list_append(v, ["wives", "noun", "wives", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ecco", "noun", "ecco", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bote", "noun", "botes", "", "", "", "Help advantage benefit"]) + let v = native_list_append(v, ["malison", "noun", "malison", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stepdame", "noun", "stepdames", "", "", "", "stepmother wife of"]) + let v = native_list_append(v, ["juu", "noun", "juu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cerebrum", "noun", "cerebrum", "", "", "", "brain"]) + let v = native_list_append(v, ["shard", "noun", "shard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["homer", "noun", "homer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["refuge", "noun", "refuges", "", "", "", "refuge state or"]) + let v = native_list_append(v, ["har", "noun", "har", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shaking", "noun", "shaking", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melodies", "noun", "melodies", "", "", "", "plural of melodie"]) + let v = native_list_append(v, ["brawn", "noun", "brawn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grot", "noun", "grotes", "", "", "", "Hulled grain."]) + let v = native_list_append(v, ["schon", "noun", "schon", "", "", "", "plural of scho"]) + let v = native_list_append(v, ["sont", "noun", "sont", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["contre", "noun", "contrees", "", "", "", "A region domain"]) + let v = native_list_append(v, ["wird", "noun", "wird", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coroner", "noun", "coroners", "", "", "", "A medieval coroner"]) + let v = native_list_append(v, ["roust", "noun", "roust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lesen", "noun", "lesen", "", "", "", "plural of lese"]) + let v = native_list_append(v, ["sok", "noun", "sok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jok", "noun", "jok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bre", "noun", "bre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spore", "noun", "spores", "", "", "", "A spur a"]) + let v = native_list_append(v, ["fervor", "noun", "fervor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["penknife", "noun", "penknife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sed", "noun", "sed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kie", "noun", "kie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hight", "noun", "hight", "", "", "", "hopefulness expectedness"]) + let v = native_list_append(v, ["iel", "noun", "iel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zoster", "noun", "zoster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crosses", "noun", "crosses", "", "", "", "plural of cross"]) + let v = native_list_append(v, ["heid", "noun", "heid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agreements", "noun", "agreements", "", "", "", "plural of agrement"]) + let v = native_list_append(v, ["zinging", "noun", "zinging", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curfew", "noun", "curfew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haven", "noun", "haven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["juge", "noun", "juges", "", "", "", "judge"]) + let v = native_list_append(v, ["inheritance", "noun", "inheritance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nombre", "noun", "nombres", "", "", "", "A number entity"]) + let v = native_list_append(v, ["garner", "noun", "garner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flet", "noun", "flets", "", "", "", "the floor ground"]) + let v = native_list_append(v, ["friþ", "noun", "friþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oblation", "noun", "oblation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carbuncle", "noun", "carbuncles", "", "", "", "A carbuncle garnet"]) + let v = native_list_append(v, ["wurst", "noun", "wurst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["penance", "noun", "penance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destroyer", "noun", "destroyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leden", "noun", "leden", "", "", "", "Latin language"]) + let v = native_list_append(v, ["westen", "noun", "westen", "", "", "", "west cardinal direction"]) + let v = native_list_append(v, ["wein", "noun", "wein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teme", "noun", "temes", "", "", "", "topic focus matter"]) + let v = native_list_append(v, ["incision", "noun", "incision", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hon", "noun", "hon", "", "", "", "delay hesitation"]) + let v = native_list_append(v, ["hade", "noun", "hade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nek", "noun", "nek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jai", "noun", "jai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trestle", "noun", "trestle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cenacle", "noun", "cenacle", "", "", "", "An upper level"]) + let v = native_list_append(v, ["lede", "noun", "ledes", "", "", "", "A male human"]) + let v = native_list_append(v, ["waar", "noun", "waar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aldur", "noun", "aldur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sexte", "noun", "sexte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ey", "noun", "eyren", "", "", "", "egg especially of"]) + let v = native_list_append(v, ["legge", "noun", "legge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["legi", "noun", "legi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kalendar", "noun", "kalendar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mynt", "noun", "myntes", "", "", "", "money coin"]) + let v = native_list_append(v, ["ron", "noun", "rones", "", "", "", "A rowan-tree berry."]) + let v = native_list_append(v, ["duc", "noun", "duc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hatte", "noun", "hatte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mein", "noun", "mein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyf", "noun", "lyves", "", "lyve", "", "life"]) + let v = native_list_append(v, ["matur", "noun", "matur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perry", "noun", "perry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["habergeon", "noun", "habergeon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["systir", "noun", "systir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bras", "noun", "bras", "", "", "", "brass copper alloy"]) + let v = native_list_append(v, ["verses", "noun", "verses", "", "", "", "plural of vers"]) + let v = native_list_append(v, ["roses", "noun", "roses", "", "", "", "plural of rose"]) + let v = native_list_append(v, ["troubles", "noun", "troubles", "", "", "", "plural of trouble"]) + let v = native_list_append(v, ["damages", "noun", "damages", "", "", "", "plural of damage"]) + let v = native_list_append(v, ["wages", "noun", "wages", "", "", "", "plural of wage"]) + let v = native_list_append(v, ["lovers", "noun", "lovers", "", "", "", "plural of lover"]) + let v = native_list_append(v, ["nerves", "noun", "nerves", "", "", "", "plural of nerve"]) + let v = native_list_append(v, ["traces", "noun", "traces", "", "", "", "plural of trace"]) + let v = native_list_append(v, ["inne", "noun", "inne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ryk", "noun", "ryk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlour", "noun", "parlours", "", "", "", "A room for"]) + let v = native_list_append(v, ["arson", "noun", "arson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["messen", "noun", "messen", "", "", "", "plural of masse"]) + let v = native_list_append(v, ["bur", "noun", "bur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jake", "noun", "jake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wæl", "noun", "wæl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["griþ", "noun", "griþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deor", "noun", "deor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wæstm", "noun", "wæstmes", "wæstmes", "wæstme", "", "The crops produced"]) + let v = native_list_append(v, ["wite", "noun", "wites", "", "", "", "punishment retribution"]) + let v = native_list_append(v, ["neep", "noun", "neeps", "", "", "", "turnip"]) + let v = native_list_append(v, ["unnan", "noun", "unnan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mund", "noun", "moundes", "", "", "", "Might ability or"]) + let v = native_list_append(v, ["tither", "noun", "tither", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cniht", "noun", "cniht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ivan", "noun", "ivan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reformation", "noun", "reformation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hlaf", "noun", "hlaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þegn", "noun", "þegn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tima", "noun", "tima", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Derby", "noun", "Derby", "", "", "", "Derby a city"]) + let v = native_list_append(v, ["ære", "noun", "ære", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hors", "noun", "horses", "", "", "", "a horse especially"]) + let v = native_list_append(v, ["eorl", "noun", "eorl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyse", "noun", "hyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morgen", "noun", "morgen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folc", "noun", "folc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["castell", "noun", "castell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leode", "noun", "leode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leod", "noun", "leod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savour", "noun", "savour", "", "", "", "taste"]) + let v = native_list_append(v, ["fon", "noun", "fon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toþ", "noun", "toþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hord", "noun", "hordes", "", "", "", "A hoard or"]) + let v = native_list_append(v, ["targe", "noun", "targes", "", "", "", "targe"]) + let v = native_list_append(v, ["potent", "noun", "potentes", "", "", "", "staff crutch"]) + let v = native_list_append(v, ["taxes", "noun", "taxes", "", "", "", "plural of taxe"]) + let v = native_list_append(v, ["plaice", "noun", "plaice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þorn", "noun", "þorn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iw", "noun", "iw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweord", "noun", "sweord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holes", "noun", "holes", "", "", "", "plural of hole"]) + let v = native_list_append(v, ["muscles", "noun", "muscles", "", "", "", "plural of muscle"]) + let v = native_list_append(v, ["couche", "noun", "couches", "", "", "", "A bed flat"]) + let v = native_list_append(v, ["sapiens", "noun", "sapiens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sandal", "noun", "sandal", "", "", "", "sandal thong slip-on"]) + let v = native_list_append(v, ["boxes", "noun", "boxes", "", "", "", "plural of box"]) + let v = native_list_append(v, ["egging", "noun", "egging", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["olifant", "noun", "olifants", "", "", "", "elephant"]) + let v = native_list_append(v, ["peni", "noun", "peni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frosk", "noun", "frosk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stepping", "noun", "stepping", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trenches", "noun", "trenches", "", "", "", "plural of trenche"]) + let v = native_list_append(v, ["joys", "noun", "joys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["candles", "noun", "candles", "", "", "", "plural of candel"]) + let v = native_list_append(v, ["tope", "noun", "tope", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyr", "noun", "fyr", "", "", "", "fire"]) + let v = native_list_append(v, ["ase", "noun", "ase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fic", "noun", "fic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eche", "noun", "eche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æppel", "noun", "æppel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gurnard", "noun", "gurnardes", "", "", "", "gurnard"]) + let v = native_list_append(v, ["paunch", "noun", "paunch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alabaster", "noun", "alabaster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bearn", "noun", "bearn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cild", "noun", "cild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liverwort", "noun", "liverwort", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eam", "noun", "eam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vexing", "noun", "vexing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mantel", "noun", "mantles", "", "", "", "A mantle or"]) + let v = native_list_append(v, ["venu", "noun", "venues", "", "", "", "A fight or"]) + let v = native_list_append(v, ["celle", "noun", "celles", "", "", "", "cell dependent monastery"]) + let v = native_list_append(v, ["reste", "noun", "restes", "", "", "", "rest"]) + let v = native_list_append(v, ["matte", "noun", "mattes", "", "", "", "mat piece of"]) + let v = native_list_append(v, ["distaff", "noun", "distaff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pans", "noun", "pans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["robes", "noun", "robes", "", "", "", "plural of robe"]) + let v = native_list_append(v, ["mantle", "noun", "mantle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hunig", "noun", "hunig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brunet", "noun", "brunet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vo", "noun", "vo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crochet", "noun", "crochettes", "", "", "", "hook crook"]) + let v = native_list_append(v, ["ging", "noun", "ging", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waren", "noun", "waren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["macher", "noun", "macher", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nese", "noun", "neses", "", "", "", "nose"]) + let v = native_list_append(v, ["sted", "noun", "sted", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["historie", "noun", "histories", "", "", "", "A written narrative"]) + let v = native_list_append(v, ["gutt", "noun", "gutt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graces", "noun", "graces", "", "", "", "plural of grace"]) + let v = native_list_append(v, ["wines", "noun", "wines", "", "", "", "plural of wine"]) + let v = native_list_append(v, ["kalender", "noun", "kalenderes", "", "", "", "A year period"]) + let v = native_list_append(v, ["fantom", "noun", "fantom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pilgrim", "noun", "pilgrim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["groves", "noun", "groves", "", "", "", "plural of grove"]) + let v = native_list_append(v, ["entree", "noun", "entree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conventicle", "noun", "conventicles", "", "", "", "an assembly a"]) + let v = native_list_append(v, ["leve", "noun", "leves", "", "", "", "leave"]) + let v = native_list_append(v, ["lese", "noun", "leses", "", "", "", "Pasture land for"]) + let v = native_list_append(v, ["hos", "noun", "hos", "", "", "", "The state of"]) + let v = native_list_append(v, ["tollere", "noun", "tollere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unde", "noun", "undes", "", "", "", "wave"]) + let v = native_list_append(v, ["capere", "noun", "capere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stemme", "noun", "stemmes", "", "", "", "The main body"]) + let v = native_list_append(v, ["ete", "noun", "etes", "", "", "", "eating food meal"]) + let v = native_list_append(v, ["vanne", "noun", "vanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heort", "noun", "heort", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["potage", "noun", "potages", "", "", "", "pottage a stew"]) + let v = native_list_append(v, ["baptist", "noun", "baptist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horehound", "noun", "horehound", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saul", "noun", "saul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rede", "noun", "rede", "", "", "", "abomasum"]) + let v = native_list_append(v, ["bibel", "noun", "bibel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quoniam", "noun", "quoniam", "", "", "", "The vulva."]) + let v = native_list_append(v, ["rancour", "noun", "rancour", "", "", "", "Jealousy ire towards"]) + let v = native_list_append(v, ["dene", "noun", "dene", "", "", "", "valley"]) + let v = native_list_append(v, ["parishioner", "noun", "parishioner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lows", "noun", "lows", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medu", "noun", "medu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weft", "noun", "weft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snaca", "noun", "snaca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wulf", "noun", "wulf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dukedom", "noun", "dukedom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coupling", "noun", "coupling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chiri", "noun", "chiri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manar", "noun", "manar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gatt", "noun", "gatt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bala", "noun", "bala", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guerre", "noun", "guerre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["resisting", "noun", "resisting", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corte", "noun", "corte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coffer", "noun", "coffer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["copes", "noun", "copes", "", "", "", "plural of cope"]) + let v = native_list_append(v, ["dure", "noun", "dure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ine", "noun", "ine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eyes", "noun", "eyes", "", "", "", "plural of eye"]) + let v = native_list_append(v, ["letters", "noun", "letters", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lettres", "noun", "lettres", "", "", "", "plural of lettre"]) + let v = native_list_append(v, ["taille", "noun", "taille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forme", "noun", "formes", "", "", "", "Form the shape"]) + let v = native_list_append(v, ["blaw", "noun", "blaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schip", "noun", "schipes", "schipes", "schipe", "", "A ship large"]) + let v = native_list_append(v, ["beeld", "noun", "beeld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tumba", "noun", "tumbas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gibbet", "noun", "gibbet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pokes", "noun", "pokes", "", "", "", "plural of poke"]) + let v = native_list_append(v, ["swale", "noun", "swale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sodomite", "noun", "sodomite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whales", "noun", "whales", "", "", "", "plural of whal"]) + let v = native_list_append(v, ["gorgon", "noun", "gorgones", "", "", "", "gorgon"]) + let v = native_list_append(v, ["mas", "noun", "mas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cneo", "noun", "cneo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kne", "noun", "knes", "", "", "", "The knee or"]) + let v = native_list_append(v, ["curtilage", "noun", "curtilage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["augere", "noun", "augere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serves", "noun", "serves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mires", "noun", "mires", "", "", "", "plural of mire"]) + let v = native_list_append(v, ["dæl", "noun", "dæl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ores", "noun", "ores", "", "", "", "plural of ore"]) + let v = native_list_append(v, ["hoses", "noun", "hoses", "", "", "", "plural of hose"]) + let v = native_list_append(v, ["ligature", "noun", "ligatures", "", "", "", "bandage dressing"]) + let v = native_list_append(v, ["officers", "noun", "officers", "", "", "", "plural of officer"]) + let v = native_list_append(v, ["furs", "noun", "furs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hese", "noun", "hese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lich", "noun", "lichs", "", "", "", "A body."]) + let v = native_list_append(v, ["balle", "noun", "balle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garn", "noun", "garn", "", "", "", "Yarn a length"]) + let v = native_list_append(v, ["perseverance", "noun", "perseverance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seer", "noun", "seer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secg", "noun", "secg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freond", "noun", "freond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jubbe", "noun", "jubbis", "", "", "", "jubbe tankard that"]) + let v = native_list_append(v, ["nithe", "noun", "nithe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þy", "noun", "þyes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cwene", "noun", "cwene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feþer", "noun", "feþeres", "", "", "", "a feather"]) + let v = native_list_append(v, ["digression", "noun", "digression", "", "", "", "digression"]) + let v = native_list_append(v, ["gode", "noun", "godes", "", "", "", "goad"]) + let v = native_list_append(v, ["eard", "noun", "eard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dweller", "noun", "dwellers", "", "", "", "dweller inhabitant"]) + let v = native_list_append(v, ["pintel", "noun", "pintel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wodwo", "noun", "wodwo", "", "", "", "woodwose"]) + let v = native_list_append(v, ["translating", "noun", "translating", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holme", "noun", "holme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meir", "noun", "meir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stele", "noun", "stele", "", "", "", "steel"]) + let v = native_list_append(v, ["skyn", "noun", "skynnes", "", "", "", "The skin outer"]) + let v = native_list_append(v, ["bak", "noun", "bakkes", "", "", "", "The back hind"]) + let v = native_list_append(v, ["kinn", "noun", "kinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lind", "noun", "lind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hel", "noun", "hel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skinn", "noun", "skinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["korn", "noun", "korn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sekt", "noun", "sekt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foli", "noun", "foli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spor", "noun", "spor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grein", "noun", "grein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hawthorn", "noun", "hawthornes", "", "", "", "A hawthorn or"]) + let v = native_list_append(v, ["napkin", "noun", "napkin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recovery", "noun", "recovery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Neptunus", "noun", "Neptunus", "", "", "", "The Roman god"]) + let v = native_list_append(v, ["surplice", "noun", "surplice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houses", "noun", "houses", "", "", "", "plural of hous"]) + let v = native_list_append(v, ["harlot", "noun", "harlot", "", "", "", "a churl a"]) + let v = native_list_append(v, ["revel", "noun", "reveles", "", "", "", "Joyfulness entertainment celebration"]) + let v = native_list_append(v, ["writers", "noun", "writers", "", "", "", "plural of writer"]) + let v = native_list_append(v, ["cours", "noun", "courses", "", "", "", "A charge a"]) + let v = native_list_append(v, ["honte", "noun", "honte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jeweler", "noun", "jeweler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jeweller", "noun", "jeweller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sark", "noun", "sark", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["damson", "noun", "damson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lovage", "noun", "lovage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burnet", "noun", "burnet", "", "", "", "Brown woolen fabric."]) + let v = native_list_append(v, ["mue", "noun", "mue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["playing", "noun", "playinges", "", "", "", "playing having fun"]) + let v = native_list_append(v, ["asking", "noun", "asking", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["canape", "noun", "canape", "", "", "", "canopy covering over"]) + let v = native_list_append(v, ["flambe", "noun", "flambe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["procurer", "noun", "procurer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anker", "noun", "ankeres", "", "", "", "anchor"]) + let v = native_list_append(v, ["purgation", "noun", "purgation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrill", "noun", "thrill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rom", "noun", "rom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halter", "noun", "haltres", "", "", "", "A halter horse"]) + let v = native_list_append(v, ["þegen", "noun", "þegen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stones", "noun", "stones", "", "", "", "plural of ston"]) + let v = native_list_append(v, ["apple tree", "noun", "apple tree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["misword", "noun", "misword", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["endowment", "noun", "endowment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["penne", "noun", "pennes", "", "", "", "A pen or"]) + let v = native_list_append(v, ["thrift", "noun", "thrift", "", "", "", "growth"]) + let v = native_list_append(v, ["raising", "noun", "raising", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vessels", "noun", "vessels", "", "", "", "plural of vessel"]) + let v = native_list_append(v, ["garter", "noun", "garters", "", "", "", "garter"]) + let v = native_list_append(v, ["histoire", "noun", "histoire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cep", "noun", "cep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saucer", "noun", "saucers", "", "", "", "A small receptacle"]) + let v = native_list_append(v, ["malte", "noun", "malte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["offices", "noun", "offices", "", "", "", "plural of office"]) + let v = native_list_append(v, ["savior", "noun", "savior", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manas", "noun", "manas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæder", "noun", "fæder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nefa", "noun", "nefa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loves", "noun", "loves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["satchel", "noun", "satchel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["borden", "noun", "borden", "", "", "", "plural of bord"]) + let v = native_list_append(v, ["clod", "noun", "cloddes", "", "", "", "A clod a"]) + let v = native_list_append(v, ["brume", "noun", "brume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hache", "noun", "hachez", "", "", "", "A war axe"]) + let v = native_list_append(v, ["games", "noun", "games", "", "", "", "plural of game"]) + let v = native_list_append(v, ["bru", "noun", "bru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eare", "noun", "eare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gosse", "noun", "gosse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nosu", "noun", "nosan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salvage", "noun", "salvage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bones", "noun", "bones", "", "", "", "plural of bone"]) + let v = native_list_append(v, ["plays", "noun", "plays", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nought", "noun", "nought", "", "", "", "nothing nought"]) + let v = native_list_append(v, ["wop", "noun", "wopes", "", "", "", "Lamentation crying or"]) + let v = native_list_append(v, ["calves", "noun", "calves", "", "", "", "plural of calf"]) + let v = native_list_append(v, ["paun", "noun", "paun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doublet", "noun", "doublets", "", "", "", "doublet A man’s"]) + let v = native_list_append(v, ["butte", "noun", "buttes", "", "", "", "butt"]) + let v = native_list_append(v, ["fleam", "noun", "fleam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thew", "noun", "thewes", "", "", "", "aspect trait thew"]) + let v = native_list_append(v, ["sunne", "noun", "sunne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["macule", "noun", "macule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wars", "noun", "wars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lancet", "noun", "lancet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mary", "noun", "mary", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["franchise", "noun", "franchise", "", "", "", "freedom franchise."]) + let v = native_list_append(v, ["frangible", "noun", "frangible", "", "", "", "Able to be"]) + let v = native_list_append(v, ["tussu", "noun", "tussu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aiel", "noun", "aiel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gardener", "noun", "gardineris", "", "", "", "gardener one who"]) + let v = native_list_append(v, ["bobance", "noun", "bobance", "", "", "", "boasting"]) + let v = native_list_append(v, ["bourdon", "noun", "bourdon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brail", "noun", "brail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breme", "noun", "breme", "", "", "", "stormy tempestuous fierce"]) + let v = native_list_append(v, ["caple", "noun", "caples", "", "", "", "horse"]) + let v = native_list_append(v, ["cate", "noun", "cate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chaffer", "noun", "chaffer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hore", "noun", "hores", "", "", "", "A whore female"]) + let v = native_list_append(v, ["coign", "noun", "coign", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werk", "noun", "werkes", "", "", "", "An action or"]) + let v = native_list_append(v, ["ayenbite", "noun", "ayenbite", "", "", "", "remorse"]) + let v = native_list_append(v, ["woord", "noun", "woord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wereld", "noun", "wereld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wijn", "noun", "wijn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wolk", "noun", "*wolkes", "", "", "", "hawk"]) + let v = native_list_append(v, ["fles", "noun", "fles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Georgie", "noun", "Georgie", "", "", "", "Georgia a medieval"]) + let v = native_list_append(v, ["beest", "noun", "beest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honger", "noun", "honger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kok", "noun", "kok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dochter", "noun", "dochter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ster", "noun", "ster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peper", "noun", "peper", "", "", "", "pepper a spice"]) + let v = native_list_append(v, ["olie", "noun", "olie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["culverin", "noun", "culverin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beter", "noun", "beter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boord", "noun", "boord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deken", "noun", "deknes", "", "", "", "A deacon subordinate"]) + let v = native_list_append(v, ["vinger", "noun", "vinger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deel", "noun", "deel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smal", "noun", "smal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honderd", "noun", "honderd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kein", "noun", "kein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wollen", "noun", "wollen", "", "", "", "Woollen fabric fabric"]) + let v = native_list_append(v, ["hert", "noun", "hertes", "", "", "", "A hart red"]) + let v = native_list_append(v, ["kist", "noun", "kist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maat", "noun", "maat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stap", "noun", "stap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welke", "noun", "welke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grof", "noun", "grof", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geen", "noun", "geen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veel", "noun", "veles", "", "", "", "veal the meat"]) + let v = native_list_append(v, ["strut", "noun", "strut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verder", "noun", "verders", "", "", "", "A verderer a"]) + let v = native_list_append(v, ["doucet", "noun", "doucetes", "", "", "", "a sort of"]) + let v = native_list_append(v, ["dwale", "noun", "dwales", "", "", "", "A stupor or"]) + let v = native_list_append(v, ["Johannes", "noun", "Johannes", "", "", "", "a male given"]) + let v = native_list_append(v, ["ethel", "noun", "ethel", "", "", "", "homeland ancestral territory"]) + let v = native_list_append(v, ["maas", "noun", "maas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blis", "noun", "blis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fewter", "noun", "fewter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frith", "noun", "frith", "", "", "", "A state of"]) + let v = native_list_append(v, ["gree", "noun", "gree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helve", "noun", "helve", "", "", "", "helve grip of"]) + let v = native_list_append(v, ["hythe", "noun", "hythe", "", "", "", "hythe landing-place in"]) + let v = native_list_append(v, ["hough", "noun", "houghes", "", "", "", "The heel rear"]) + let v = native_list_append(v, ["housel", "noun", "housel", "", "", "", "The Eucharist bread"]) + let v = native_list_append(v, ["sete", "noun", "sete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inwit", "noun", "inwit", "", "", "", "reasoning mental acuity"]) + let v = native_list_append(v, ["kissing", "noun", "kissing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["homes", "noun", "homes", "", "", "", "plural of hom"]) + let v = native_list_append(v, ["instruments", "noun", "instruments", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armorer", "noun", "armorer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armourer", "noun", "armourer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyard", "noun", "lyard", "", "", "", "a horse which"]) + let v = native_list_append(v, ["revere", "noun", "reveres", "", "", "", "A robber or"]) + let v = native_list_append(v, ["almus", "noun", "almus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herbage", "noun", "herbage", "", "", "", "Herbage herbaceous plants"]) + let v = native_list_append(v, ["tote", "noun", "tote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nief", "noun", "nief", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orgone", "noun", "orgone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orpiment", "noun", "orpiment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["accents", "noun", "accents", "", "", "", "plural of accent"]) + let v = native_list_append(v, ["ader", "noun", "ader", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boter", "noun", "boter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paleis", "noun", "paleis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laten", "noun", "laten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tailed", "noun", "tailed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heten", "noun", "heten", "", "", "", "plural of hete"]) + let v = native_list_append(v, ["crome", "noun", "cromes", "", "", "", "a crumb a"]) + let v = native_list_append(v, ["cri", "noun", "cri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marin", "noun", "marin", "", "", "", "The seaside the"]) + let v = native_list_append(v, ["ake", "noun", "ake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["consul", "noun", "consules", "", "", "", "Roman consul"]) + let v = native_list_append(v, ["montane", "noun", "montane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["males", "noun", "males", "", "", "", "plural of male"]) + let v = native_list_append(v, ["courses", "noun", "courses", "", "", "", "plural of cours"]) + let v = native_list_append(v, ["governing", "noun", "governing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["answering", "noun", "answering", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Jude", "noun", "Jude", "", "", "", "Judea"]) + let v = native_list_append(v, ["bars", "noun", "bars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["panther", "noun", "panther", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maal", "noun", "maal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horseman", "noun", "horseman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steven", "noun", "stevens", "", "", "", "The voice of"]) + let v = native_list_append(v, ["spurn", "noun", "spurn", "", "", "", "A stumbling a"]) + let v = native_list_append(v, ["coronal", "noun", "coronales", "", "", "", "A tiara a"]) + let v = native_list_append(v, ["wharves", "noun", "wharves", "", "", "", "plural of wharf"]) + let v = native_list_append(v, ["blest", "noun", "blest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grom", "noun", "gromes", "gromes", "", "", "A boy a"]) + let v = native_list_append(v, ["tribune", "noun", "tribunes", "", "", "", "A Roman military"]) + let v = native_list_append(v, ["skene", "noun", "skenes", "", "", "", "skean kind of"]) + let v = native_list_append(v, ["chapman", "noun", "chapmen", "", "", "", "A merchant a"]) + let v = native_list_append(v, ["welt", "noun", "welt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haru", "noun", "haru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comune", "noun", "comunes", "", "", "", "common"]) + let v = native_list_append(v, ["bees", "noun", "bees", "", "", "", "plural of bee"]) + let v = native_list_append(v, ["offertory", "noun", "offertory", "", "", "", "offertory"]) + let v = native_list_append(v, ["vintre", "noun", "vintre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gatte", "noun", "gatte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vaut", "noun", "vaut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cenit", "noun", "cenit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helen", "noun", "helen", "", "", "", "plural of hele"]) + let v = native_list_append(v, ["purgatory", "noun", "purgatory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raton", "noun", "raton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebels", "noun", "rebels", "", "", "", "plural of rebel"]) + let v = native_list_append(v, ["hor", "noun", "hor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ful", "noun", "ful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boon", "noun", "boons", "", "", "", "prayer supplication request"]) + let v = native_list_append(v, ["swathing", "noun", "swathing", "", "", "", "swaddling"]) + let v = native_list_append(v, ["compte", "noun", "compte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crud", "noun", "crud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tansy", "noun", "tansy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hyades", "noun", "Hyades", "", "", "", "Hyades"]) + let v = native_list_append(v, ["governance", "noun", "governance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kake", "noun", "kake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baren", "noun", "baren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hame", "noun", "hames", "", "", "", "hame skin membrane"]) + let v = native_list_append(v, ["organum", "noun", "organum", "", "", "", "A device used"]) + let v = native_list_append(v, ["cal", "noun", "cal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chandler", "noun", "chandler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sis", "noun", "sis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crie", "noun", "crie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["probation", "noun", "probation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stinking", "noun", "stinking", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wy", "noun", "wy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pani", "noun", "pani", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dower", "noun", "dowers", "", "", "", "A dower a"]) + let v = native_list_append(v, ["pageant", "noun", "pageant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ole", "noun", "ole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["symphonie", "noun", "symphonies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ropes", "noun", "ropes", "", "", "", "plural of rop"]) + let v = native_list_append(v, ["lusk", "noun", "lusk", "", "", "", "lynx"]) + let v = native_list_append(v, ["ijs", "noun", "ijs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gon", "noun", "gon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swath", "noun", "swath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paynim", "noun", "paynim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onde", "noun", "onde", "", "", "", "Enmity hostility malice."]) + let v = native_list_append(v, ["pismire", "noun", "pismire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mede", "noun", "mede", "", "", "", "mead alcoholic beverage"]) + let v = native_list_append(v, ["pissemyre", "noun", "pissemyres", "", "", "", "a pismire an"]) + let v = native_list_append(v, ["chefe", "noun", "chefe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quern", "noun", "quern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nage", "noun", "nage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dol", "noun", "doles", "", "", "", "part share"]) + let v = native_list_append(v, ["officials", "noun", "officials", "", "", "", "plural of official"]) + let v = native_list_append(v, ["rother", "noun", "rothers", "", "", "", "A rudder or"]) + let v = native_list_append(v, ["roun", "noun", "roun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blowing", "noun", "blowing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sacre", "noun", "sacres", "", "", "", "A religious festival"]) + let v = native_list_append(v, ["sid", "noun", "sid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kunne", "noun", "kunne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fantasie", "noun", "fantasie", "", "", "", "the faculty of"]) + let v = native_list_append(v, ["lære", "noun", "lære", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sele", "noun", "sele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spurge", "noun", "spurge", "", "", "", "spurge"]) + let v = native_list_append(v, ["heil", "noun", "heil", "", "", "", "health welfare"]) + let v = native_list_append(v, ["brin", "noun", "brin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["absences", "noun", "absences", "", "", "", "plural of absence"]) + let v = native_list_append(v, ["fallow", "noun", "fallow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hating", "noun", "hating", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["couples", "noun", "couples", "", "", "", "plural of couple"]) + let v = native_list_append(v, ["grammer", "noun", "grammer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ethimologie", "noun", "ethimologie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["credo", "noun", "credo", "", "", "", "The Nicene Creed"]) + let v = native_list_append(v, ["snakes", "noun", "snakes", "", "", "", "plural of snake"]) + let v = native_list_append(v, ["glories", "noun", "glories", "", "", "", "plural of glorie"]) + let v = native_list_append(v, ["azur", "noun", "azur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ivi", "noun", "ivi", "", "", "", "ivy"]) + let v = native_list_append(v, ["inkhorn", "noun", "inkhorn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["purging", "noun", "purging", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flote", "noun", "flote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["capitan", "noun", "capitan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dur", "noun", "dur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tendre", "noun", "tendre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bourne", "noun", "bournes", "", "", "", "A stream or"]) + let v = native_list_append(v, ["hara", "noun", "hara", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hides", "noun", "hides", "", "", "", "plural of hide"]) + let v = native_list_append(v, ["mastic", "noun", "mastic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poles", "noun", "poles", "", "", "", "plural of pol"]) + let v = native_list_append(v, ["coucher", "noun", "couchers", "", "", "", "A worker of"]) + let v = native_list_append(v, ["goth", "noun", "goth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calender", "noun", "calender", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["racine", "noun", "racine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["birk", "noun", "birk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lin", "noun", "lin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauter", "noun", "sauters", "", "", "", "The Biblical book"]) + let v = native_list_append(v, ["sedes", "noun", "sedes", "", "", "", "plural of seed"]) + let v = native_list_append(v, ["canes", "noun", "canes", "", "", "", "plural of cane"]) + let v = native_list_append(v, ["wel", "noun", "wel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arany", "noun", "arany", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gravestone", "noun", "gravestone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shive", "noun", "shive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kuin", "noun", "kuin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pire", "noun", "pire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chasten", "noun", "chasten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baston", "noun", "bastons", "", "", "", "A staff or"]) + let v = native_list_append(v, ["tars", "noun", "tars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["artes", "noun", "artes", "", "", "", "plural of art"]) + let v = native_list_append(v, ["rak", "noun", "rakkes", "", "", "", "A rain cloud"]) + let v = native_list_append(v, ["leit", "noun", "leit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rost", "noun", "rost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halk", "noun", "halkes", "", "halke", "", "A nook a"]) + let v = native_list_append(v, ["teres", "noun", "teres", "", "", "", "plural of teer"]) + let v = native_list_append(v, ["sor", "noun", "sor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fal", "noun", "falles", "", "", "", "fall drop"]) + let v = native_list_append(v, ["fos", "noun", "fos", "", "", "", "plural of fo"]) + let v = native_list_append(v, ["tuwel", "noun", "tuwels", "", "", "", "tewel"]) + let v = native_list_append(v, ["vois", "noun", "vois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hunni", "noun", "hunni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cropp", "noun", "cropp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vices", "noun", "vices", "", "", "", "plural of vice"]) + let v = native_list_append(v, ["sinne", "noun", "sinne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kis", "noun", "kis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kur", "noun", "kur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["telt", "noun", "telts", "", "", "", "a cloth covering"]) + let v = native_list_append(v, ["Michel", "noun", "Michel", "", "", "", "a male given"]) + let v = native_list_append(v, ["leves", "noun", "leves", "", "", "", "plural of leef"]) + let v = native_list_append(v, ["magis", "noun", "magis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fardel", "noun", "fardeles", "", "", "", "pack bundle"]) + let v = native_list_append(v, ["hak", "noun", "hakkes", "", "", "", "A riding horse."]) + let v = native_list_append(v, ["mol", "noun", "mol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sek", "noun", "sek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mak", "noun", "mak", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["galingale", "noun", "galingale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sapp", "noun", "sapp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gom", "noun", "gom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stund", "noun", "stund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tribu", "noun", "tribu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vavasour", "noun", "vavasours", "", "", "", "vavasour subvassal"]) + let v = native_list_append(v, ["stomacher", "noun", "stomacher", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hatt", "noun", "hatt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curst", "noun", "curst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volk", "noun", "volk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aru", "noun", "aru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["karp", "noun", "karp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muir", "noun", "muir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plunket", "noun", "plunket", "", "", "", "light grey-blue"]) + let v = native_list_append(v, ["verst", "noun", "verst", "", "", "", "first"]) + let v = native_list_append(v, ["Chester", "noun", "Chester", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["auripigment", "noun", "auripigment", "", "", "", "orpiment as used"]) + let v = native_list_append(v, ["tonder", "noun", "tonder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musca", "noun", "musca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hatten", "noun", "hatten", "", "", "", "plural of hat"]) + let v = native_list_append(v, ["meten", "noun", "meten", "", "", "", "plural of mete"]) + let v = native_list_append(v, ["sauer", "noun", "sauer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trew", "noun", "trew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanhope", "noun", "wanhope", "", "", "", "despair"]) + let v = native_list_append(v, ["capon", "noun", "capon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Pasch", "noun", "Pasch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jupe", "noun", "jupe", "", "", "", "A coat or"]) + let v = native_list_append(v, ["chemise", "noun", "chemise", "", "", "", "A smock or"]) + let v = native_list_append(v, ["mont", "noun", "mont", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tenge", "noun", "tenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fasses", "noun", "fasses", "", "", "", "plural of fass"]) + let v = native_list_append(v, ["fis", "noun", "fis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schilling", "noun", "shillinges", "", "", "", "A shilling or"]) + let v = native_list_append(v, ["gourde", "noun", "gourdes", "", "", "", "A plant of"]) + let v = native_list_append(v, ["sucre", "noun", "sucre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halier", "noun", "haliers", "", "", "", "carrier porter"]) + let v = native_list_append(v, ["hode", "noun", "hode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muskel", "noun", "muskel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laver", "noun", "lavers", "", "", "", "A kind of"]) + let v = native_list_append(v, ["tær", "noun", "tær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erne", "noun", "erne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eme", "noun", "eme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aran", "noun", "aran", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beste", "noun", "bestes", "", "", "", "An animal or"]) + let v = native_list_append(v, ["molde", "noun", "molde", "", "", "", "dirt loose soil"]) + let v = native_list_append(v, ["reif", "noun", "reves", "", "", "", "A piece of"]) + let v = native_list_append(v, ["brewing", "noun", "brewing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pak", "noun", "pakkes", "", "", "", "A bundle or"]) + let v = native_list_append(v, ["issues", "noun", "issues", "", "", "", "plural of issue"]) + let v = native_list_append(v, ["talpa", "noun", "talpas", "", "", "", "growth abscess wen"]) + let v = native_list_append(v, ["biword", "noun", "biword", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aliens", "noun", "aliens", "", "", "", "plural of alien"]) + let v = native_list_append(v, ["sar", "noun", "sar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nue", "noun", "nue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aise", "noun", "aise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bryd", "noun", "bryd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neder", "noun", "neder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bonde", "noun", "bondes", "", "", "", "tenant farmer bond"]) + let v = native_list_append(v, ["doar", "noun", "doar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breu", "noun", "breu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiel", "noun", "fiel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lemman", "noun", "lemmans", "", "", "", "leman a lover"]) + let v = native_list_append(v, ["leite", "noun", "leite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pele", "noun", "peles", "", "", "", "shovel peel"]) + let v = native_list_append(v, ["toile", "noun", "toile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sede", "noun", "sede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suster", "noun", "sustren", "sustres", "", "", "A sister or"]) + let v = native_list_append(v, ["gor", "noun", "*gores", "", "", "", "A weapon especially"]) + let v = native_list_append(v, ["seax", "noun", "seax", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surnames", "noun", "surnames", "", "", "", "plural of surname"]) + let v = native_list_append(v, ["recovering", "noun", "recovering", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eile", "noun", "eile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["middel", "noun", "middeles", "", "", "", "The middle or"]) + let v = native_list_append(v, ["Diane", "noun", "Diane", "", "", "", "The Roman goddess"]) + let v = native_list_append(v, ["loof", "noun", "loof", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chapitre", "noun", "chapitres", "", "", "", "A chapter passage"]) + let v = native_list_append(v, ["weder", "noun", "weder", "", "", "", "weather condition of"]) + let v = native_list_append(v, ["gars", "noun", "gars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["annu", "noun", "annu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hawe", "noun", "hawes", "", "", "", "A field surrounded"]) + let v = native_list_append(v, ["pyn", "noun", "pyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ry", "noun", "ry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tere", "noun", "tere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apples", "noun", "apples", "", "", "", "plural of appel"]) + let v = native_list_append(v, ["fom", "noun", "fomes", "", "", "", "foam layer of"]) + let v = native_list_append(v, ["tur", "noun", "tur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["issu", "noun", "issu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brud", "noun", "brud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buk", "noun", "buk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lif", "noun", "lif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yel", "noun", "yelles", "", "", "", "A loud yell"]) + let v = native_list_append(v, ["lud", "noun", "lud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veder", "noun", "veder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minut", "noun", "minut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sliding", "noun", "sliding", "", "", "", "The act of"]) + let v = native_list_append(v, ["peters", "noun", "peters", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lep", "noun", "lepes", "", "", "", "A basket a"]) + let v = native_list_append(v, ["vesel", "noun", "vesel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gost", "noun", "gostes", "", "", "", "a spiritual being"]) + let v = native_list_append(v, ["ligger", "noun", "ligger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lim", "noun", "lim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wors", "noun", "wors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slep", "noun", "slep", "", "", "", "sleep restfulness"]) + let v = native_list_append(v, ["dwellers", "noun", "dwellers", "", "", "", "plural of dweller"]) + let v = native_list_append(v, ["zel", "noun", "zel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Pompey", "noun", "Pompey", "", "", "", "Pompey"]) + let v = native_list_append(v, ["lewe", "noun", "lewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bearm", "noun", "bearm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spina", "noun", "spina", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roa", "noun", "roa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["safer", "noun", "safer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lof", "noun", "lof", "", "", "", "praise glory"]) + let v = native_list_append(v, ["terr", "noun", "terr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lende", "noun", "lendes", "", "", "", "The human loins"]) + let v = native_list_append(v, ["dele", "noun", "deles", "", "", "", "plank"]) + let v = native_list_append(v, ["femerell", "noun", "femerell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bren", "noun", "bren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiche", "noun", "fiche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lym", "noun", "lym", "", "", "", "lime quicklime"]) + let v = native_list_append(v, ["mistel", "noun", "mistel", "", "", "", "mistletoe Viscum album"]) + let v = native_list_append(v, ["tallo", "noun", "tallo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mules", "noun", "mules", "", "", "", "plural of mule"]) + let v = native_list_append(v, ["schede", "noun", "schede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saus", "noun", "saus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carvi", "noun", "carvi", "", "", "", "Caraway or its"]) + let v = native_list_append(v, ["poos", "noun", "poos", "", "", "", "plural of po"]) + let v = native_list_append(v, ["gare", "noun", "gare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tromper", "noun", "tromper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leende", "noun", "leende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bedd", "noun", "bedd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ærn", "noun", "ærn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Eva", "noun", "Eva", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["allies", "noun", "allies", "", "", "", "plural of allie"]) + let v = native_list_append(v, ["fas", "noun", "fas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nobly", "noun", "nobly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sawer", "noun", "sawer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dames", "noun", "dames", "", "", "", "plural of dame"]) + let v = native_list_append(v, ["buke", "noun", "buke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["modes", "noun", "modes", "", "", "", "plural of mode"]) + let v = native_list_append(v, ["compter", "noun", "compter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swinge", "noun", "swinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chalices", "noun", "chalices", "", "", "", "plural of chalis"]) + let v = native_list_append(v, ["yerd", "noun", "yerd", "", "", "", "A fenced piece"]) + let v = native_list_append(v, ["binder", "noun", "binder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noblesse", "noun", "noblesse", "", "", "", "noblesse"]) + let v = native_list_append(v, ["broche", "noun", "broches", "", "", "", "A spear or"]) + let v = native_list_append(v, ["stables", "noun", "stables", "", "", "", "plural of stable"]) + let v = native_list_append(v, ["frumenty", "noun", "frumenty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cale", "noun", "cale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kunde", "noun", "kunde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buf", "noun", "buf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sceaft", "noun", "sceaft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wlite", "noun", "wlites", "", "", "", "The face or"]) + let v = native_list_append(v, ["styes", "noun", "styes", "", "", "", "plural of sty"]) + let v = native_list_append(v, ["originals", "noun", "originals", "", "", "", "plural of original"]) + let v = native_list_append(v, ["placeboes", "noun", "placeboes", "", "", "", "plural of placebo"]) + let v = native_list_append(v, ["snares", "noun", "snares", "", "", "", "plural of snare"]) + let v = native_list_append(v, ["dales", "noun", "dales", "", "", "", "plural of dale"]) + let v = native_list_append(v, ["makers", "noun", "makers", "", "", "", "plural of maker"]) + let v = native_list_append(v, ["barges", "noun", "barges", "", "", "", "plural of barge"]) + let v = native_list_append(v, ["stepchildren", "noun", "stepchildren", "", "", "", "plural of stepchild"]) + let v = native_list_append(v, ["naves", "noun", "naves", "", "", "", "plural of nave"]) + let v = native_list_append(v, ["knaves", "noun", "knaves", "", "", "", "plural of knave"]) + let v = native_list_append(v, ["ordures", "noun", "ordures", "", "", "", "plural of ordure"]) + let v = native_list_append(v, ["patents", "noun", "patents", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["refuges", "noun", "refuges", "", "", "", "plural of refuge"]) + let v = native_list_append(v, ["denes", "noun", "denes", "", "", "", "plural of den"]) + let v = native_list_append(v, ["rothers", "noun", "rothers", "", "", "", "plural of rother"]) + let v = native_list_append(v, ["tuwels", "noun", "tuwels", "", "", "", "plural of tuwel"]) + let v = native_list_append(v, ["vavasours", "noun", "vavasours", "", "", "", "plural of vavasour"]) + let v = native_list_append(v, ["sige", "noun", "sige", "", "", "", "urine"]) + let v = native_list_append(v, ["conte", "noun", "conte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spices", "noun", "spices", "", "", "", "plural of spice"]) + let v = native_list_append(v, ["muke", "noun", "muke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cort", "noun", "cort", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lume", "noun", "lume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oxe", "noun", "oxen", "oxes", "", "", "ox"]) + let v = native_list_append(v, ["blasen", "noun", "blasen", "", "", "", "plural of blase"]) + let v = native_list_append(v, ["spune", "noun", "spune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["puf", "noun", "puffes", "", "", "", "puff"]) + let v = native_list_append(v, ["vot", "noun", "vot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rufe", "noun", "rufe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sive", "noun", "sives", "", "", "", "sieve riddle sile"]) + let v = native_list_append(v, ["fei", "noun", "fei", "", "", "", "faith"]) + let v = native_list_append(v, ["staves", "noun", "staves", "", "", "", "plural of staf"]) + let v = native_list_append(v, ["prophecies", "noun", "prophecies", "", "", "", "plural of prophecie"]) + let v = native_list_append(v, ["peuple", "noun", "peuple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beden", "noun", "beden", "", "", "", "plural of bede"]) + let v = native_list_append(v, ["ketel", "noun", "ketels", "", "", "", "A pot used"]) + let v = native_list_append(v, ["tenses", "noun", "tenses", "", "", "", "plural of tens"]) + let v = native_list_append(v, ["raf", "noun", "raf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bem", "noun", "bem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smel", "noun", "smel", "", "", "", "Smell the scent"]) + let v = native_list_append(v, ["spet", "noun", "spets", "", "", "", "spittle"]) + let v = native_list_append(v, ["uvel", "noun", "uvel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beverages", "noun", "beverages", "", "", "", "plural of beverage"]) + let v = native_list_append(v, ["hernes", "noun", "hernes", "", "", "", "brains the mental"]) + let v = native_list_append(v, ["seeth", "noun", "seeth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["camb", "noun", "camb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charmer", "noun", "charmeres", "", "", "", "A mage or"]) + let v = native_list_append(v, ["marras", "noun", "marras", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smak", "noun", "smak", "", "", "", "The taste of"]) + let v = native_list_append(v, ["vax", "noun", "vax", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["souper", "noun", "souper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helle", "noun", "helle", "helles", "", "", "Hell the Christian"]) + let v = native_list_append(v, ["knopp", "noun", "knopp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Bethlehem", "noun", "Bethlehem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snaw", "noun", "snaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trompette", "noun", "trompette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beon", "noun", "beon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eorþe", "noun", "eorþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flæsc", "noun", "flæsc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["godspel", "noun", "godspel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Pentecoste", "noun", "Pentecoste", "", "", "", "Pentecost Christian holiday"]) + let v = native_list_append(v, ["shod", "noun", "shod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæte", "noun", "hæte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muþ", "noun", "muþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heofon", "noun", "heofon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Bethleem", "noun", "Bethleem", "", "", "", "Bethlehem a city"]) + let v = native_list_append(v, ["synn", "noun", "synn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niþ", "noun", "niþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þurst", "noun", "þurst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þistel", "noun", "þistel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeof", "noun", "þeof", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serge", "noun", "serges", "", "", "", "cierge candle used"]) + let v = native_list_append(v, ["palfrey", "noun", "palfreys", "", "", "", "palfrey"]) + let v = native_list_append(v, ["arwe", "noun", "arwes", "", "", "", "An arrow projectile"]) + let v = native_list_append(v, ["histories", "noun", "histories", "", "", "", "plural of historie"]) + let v = native_list_append(v, ["squares", "noun", "squares", "", "", "", "plural of square"]) + let v = native_list_append(v, ["anes", "noun", "anes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ende", "noun", "endes", "", "", "", "An end or"]) + let v = native_list_append(v, ["swete", "noun", "swetes", "", "", "", "sweetness in taste"]) + let v = native_list_append(v, ["Achab", "noun", "Achab", "", "", "", "Ahab Biblical character"]) + let v = native_list_append(v, ["concubines", "noun", "concubines", "", "", "", "plural of concubine"]) + let v = native_list_append(v, ["breost", "noun", "breost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bridel", "noun", "bridels", "", "", "", "A bridle reins"]) + let v = native_list_append(v, ["ling", "noun", "ling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caves", "noun", "caves", "", "", "", "plural of cave"]) + let v = native_list_append(v, ["butere", "noun", "butere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["candel", "noun", "candles", "", "", "", "candle"]) + let v = native_list_append(v, ["cele", "noun", "cele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beholder", "noun", "beholder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dynt", "noun", "dynt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forester", "noun", "foresters", "", "", "", "A forester a"]) + let v = native_list_append(v, ["eln", "noun", "eln", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feoht", "noun", "feoht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feond", "noun", "feond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleos", "noun", "fleos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wull", "noun", "wull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["græs", "noun", "græs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tarse", "noun", "tarse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houe", "noun", "houe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heorþ", "noun", "heorþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hierde", "noun", "hierde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungor", "noun", "hungor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwæte", "noun", "hwæte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyd", "noun", "hyd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wastes", "noun", "wastes", "", "", "", "plural of wast"]) + let v = native_list_append(v, ["ferm", "noun", "ferm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idel", "noun", "idel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ure", "noun", "ure", "", "", "", "use habit custom"]) + let v = native_list_append(v, ["leoht", "noun", "leoht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liþe", "noun", "liþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matrice", "noun", "matrice", "", "", "", "womb uterus"]) + let v = native_list_append(v, ["mæsse", "noun", "mæsse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["milde", "noun", "milde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Normandie", "noun", "Normandie", "", "", "", "Normandy an administrative"]) + let v = native_list_append(v, ["mylen", "noun", "mylen", "", "", "", "plural of myle"]) + let v = native_list_append(v, ["persil", "noun", "persil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niht", "noun", "niht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naht", "noun", "naht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ordal", "noun", "ordal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ploh", "noun", "ploh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["preost", "noun", "preost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pryte", "noun", "pryte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pund", "noun", "pund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swert", "noun", "swert", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reord", "noun", "reord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæ", "noun", "sæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæd", "noun", "sæd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scur", "noun", "scur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toiling", "noun", "toiling", "", "", "", "A fight strife"]) + let v = native_list_append(v, ["detour", "noun", "detour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salu", "noun", "salu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sefte", "noun", "sefte", "", "", "", "One of seven"]) + let v = native_list_append(v, ["mide", "noun", "mide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slæp", "noun", "slæp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smiþ", "noun", "smiþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spere", "noun", "speres", "", "", "", "A spear or"]) + let v = native_list_append(v, ["stede", "noun", "stedes", "", "", "", "A place area"]) + let v = native_list_append(v, ["streaw", "noun", "streaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stræt", "noun", "stræt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steor", "noun", "steor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stepe", "noun", "stepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stille", "noun", "stille", "", "", "", "calm after a"]) + let v = native_list_append(v, ["strang", "noun", "strang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["streng", "noun", "strenges", "", "", "", "string"]) + let v = native_list_append(v, ["herbe", "noun", "herbes", "", "", "", "A herbaceous plant"]) + let v = native_list_append(v, ["swin", "noun", "swin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["circumspection", "noun", "circumspection", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imposition", "noun", "imposition", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["exaction", "noun", "exaction", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destrier", "noun", "destrier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þorp", "noun", "þorp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þymel", "noun", "þymel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wær", "noun", "wær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["widewe", "noun", "widewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gewinn", "noun", "gewinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["webb", "noun", "webb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armur", "noun", "armur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungur", "noun", "hungur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leþer", "noun", "leþer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blæst", "noun", "blæst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Canterbury", "noun", "Canterbury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maladie", "noun", "maladies", "", "", "", "A malady disease"]) + let v = native_list_append(v, ["footman", "noun", "footman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werde", "noun", "werdes", "", "", "", "Destiny fate the"]) + let v = native_list_append(v, ["liþ", "noun", "liþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arn", "noun", "arn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delle", "noun", "delles", "", "", "", "A dale or"]) + let v = native_list_append(v, ["spis", "noun", "spis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conseil", "noun", "conseil", "", "", "", "counsel"]) + let v = native_list_append(v, ["coffre", "noun", "coffre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grasses", "noun", "grasses", "", "", "", "plural of gras"]) + let v = native_list_append(v, ["sunna", "noun", "sunna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duk", "noun", "dukes", "", "", "", "leader guide boss"]) + let v = native_list_append(v, ["poudre", "noun", "poudres", "", "", "", "powder a collection"]) + let v = native_list_append(v, ["scheu", "noun", "scheu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curtesy", "noun", "curtesy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fotbal", "noun", "fotbal", "", "", "", "football game played"]) + let v = native_list_append(v, ["kneo", "noun", "kneo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miter", "noun", "miter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thorp", "noun", "thorpes", "", "", "", "A small village"]) + let v = native_list_append(v, ["þrop", "noun", "þrop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tusche", "noun", "tusche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graal", "noun", "graal", "", "", "", "the Holy Grail"]) + let v = native_list_append(v, ["mone", "noun", "mones", "", "", "", "A lamentation a"]) + let v = native_list_append(v, ["rene", "noun", "rene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["malemort", "noun", "malemort", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haue", "noun", "haue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wollun", "noun", "wollun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luve", "noun", "luve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jument", "noun", "jument", "", "", "", "beast of burden"]) + let v = native_list_append(v, ["salade", "noun", "saladys", "", "", "", "salad dish made"]) + let v = native_list_append(v, ["Juno", "noun", "Juno", "", "", "", "Juno the queen"]) + let v = native_list_append(v, ["atter", "noun", "atter", "", "attre", "", "A poison or"]) + let v = native_list_append(v, ["sant", "noun", "sant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fouler", "noun", "fouler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["follare", "noun", "follare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ple", "noun", "plees", "", "", "", "disputation arguing debate"]) + let v = native_list_append(v, ["swar", "noun", "swar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wala", "noun", "wala", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weih", "noun", "weih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dotard", "noun", "dotardes", "", "", "", "A dotard someone"]) + let v = native_list_append(v, ["wellen", "noun", "wellen", "", "", "", "plural of welle"]) + let v = native_list_append(v, ["sær", "noun", "sær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mele", "noun", "mele", "", "", "", "Flour especially that"]) + let v = native_list_append(v, ["tumb", "noun", "tumbes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dese", "noun", "dese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liht", "noun", "liht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptistery", "noun", "baptistery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mero", "noun", "mero", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Carlyle", "noun", "Carlyle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laz", "noun", "laz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dukes", "noun", "dukes", "", "", "", "plural of duk"]) + let v = native_list_append(v, ["coude", "noun", "coude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bede", "noun", "bedes", "", "", "", "prayer the act"]) + let v = native_list_append(v, ["coth", "noun", "coth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calme", "noun", "calme", "", "", "", "calm time without"]) + let v = native_list_append(v, ["wesp", "noun", "wesp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["euer", "noun", "euer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bataille", "noun", "bataille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graver", "noun", "graver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ministre", "noun", "ministres", "", "", "", "A hireling or"]) + let v = native_list_append(v, ["Bedford", "noun", "Bedford", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geet", "noun", "geet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoo", "noun", "hoo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Calais", "noun", "Calais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tombe", "noun", "tombes", "", "", "", "sepulchre"]) + let v = native_list_append(v, ["stakes", "noun", "stakes", "", "", "", "plural of stake"]) + let v = native_list_append(v, ["lau", "noun", "lau", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holur", "noun", "holur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muk", "noun", "muk", "", "", "", "excrement whether human"]) + let v = native_list_append(v, ["fith", "noun", "fith", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shon", "noun", "shon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wor", "noun", "wor", "", "", "", "the seashore or"]) + let v = native_list_append(v, ["styles", "noun", "styles", "", "", "", "plural of stile"]) + let v = native_list_append(v, ["zep", "noun", "zep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wea", "noun", "wea", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Filip", "noun", "Filip", "", "", "", "Philip"]) + let v = native_list_append(v, ["liberte", "noun", "libertes", "", "", "", "freedom"]) + let v = native_list_append(v, ["kamel", "noun", "kamel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paternoster", "noun", "paternoster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylde", "noun", "ylde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hete", "noun", "hetes", "", "", "", "Heat thermal energy"]) + let v = native_list_append(v, ["quartier", "noun", "quartier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roden", "noun", "roden", "", "", "", "plural of rode"]) + let v = native_list_append(v, ["gær", "noun", "gær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["studie", "noun", "studies", "", "", "", "study act of"]) + let v = native_list_append(v, ["dreng", "noun", "drenges", "", "", "", "A warrior or"]) + let v = native_list_append(v, ["irin", "noun", "irin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neer", "noun", "neer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kirke", "noun", "kirke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ower", "noun", "ower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carpe", "noun", "carpes", "", "", "", "carp"]) + let v = native_list_append(v, ["molle", "noun", "molles", "", "", "", "mole Talpa europea"]) + let v = native_list_append(v, ["marchant", "noun", "marchants", "", "", "", "merchant trader seller"]) + let v = native_list_append(v, ["lasse", "noun", "lasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neveu", "noun", "neveu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["potager", "noun", "potagers", "", "", "", "A dish for"]) + let v = native_list_append(v, ["courte", "noun", "courte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maturing", "noun", "maturing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crone", "noun", "crone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conjurer", "noun", "conjurer", "", "", "", "conjurer magician"]) + let v = native_list_append(v, ["deu", "noun", "deu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trom", "noun", "trom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verte", "noun", "verte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paille", "noun", "paille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cites", "noun", "cites", "", "", "", "plural of cite"]) + let v = native_list_append(v, ["ligatures", "noun", "ligatures", "", "", "", "plural of ligature"]) + let v = native_list_append(v, ["boxe", "noun", "boxe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["humours", "noun", "humours", "", "", "", "plural of humour"]) + let v = native_list_append(v, ["worsted", "noun", "worsted", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["panne", "noun", "pannes", "", "", "", "A pan skillet"]) + let v = native_list_append(v, ["dotage", "noun", "dotage", "", "", "", "Behaviour that is"]) + let v = native_list_append(v, ["crede", "noun", "credes", "", "", "", "creed statement of"]) + let v = native_list_append(v, ["richesse", "noun", "richesses", "", "", "", "Wealth lucre valuables"]) + let v = native_list_append(v, ["cornel", "noun", "cornel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hereford", "noun", "Hereford", "", "", "", "Hereford a city"]) + let v = native_list_append(v, ["dise", "noun", "dise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calice", "noun", "calice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["canone", "noun", "canone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Galilee", "noun", "Galilee", "", "", "", "Galilee a mountainous"]) + let v = native_list_append(v, ["vair", "noun", "vair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gamin", "noun", "gamin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anis", "noun", "anis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kal", "noun", "kal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Humber", "noun", "Humber", "", "", "", "the Humber a"]) + let v = native_list_append(v, ["wringing", "noun", "wringing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glazing", "noun", "glazing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heaved", "noun", "heaved", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hates", "noun", "hates", "", "", "", "plural of hate"]) + let v = native_list_append(v, ["bastardy", "noun", "bastardy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morne", "noun", "morne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tirant", "noun", "tirant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blades", "noun", "blades", "", "", "", "plural of blad"]) + let v = native_list_append(v, ["pens", "noun", "pens", "", "", "", "plural of peny"]) + let v = native_list_append(v, ["robbing", "noun", "robbing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guid", "noun", "guids", "", "", "", "a flower"]) + let v = native_list_append(v, ["loue", "noun", "loue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hele", "noun", "hele", "", "", "", "Health or wellbeing"]) + let v = native_list_append(v, ["bites", "noun", "bites", "", "", "", "plural of bite"]) + let v = native_list_append(v, ["forging", "noun", "forging", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eventide", "noun", "eventide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mistell", "noun", "mistell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nappe", "noun", "nappe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraude", "noun", "fraudes", "", "", "", "Deceptiveness fraudulence a"]) + let v = native_list_append(v, ["lanterne", "noun", "lanternes", "", "", "", "A lantern or"]) + let v = native_list_append(v, ["linde", "noun", "linde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceder", "noun", "ceder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cipres", "noun", "cipresses", "", "", "", "A cypress the"]) + let v = native_list_append(v, ["Hertford", "noun", "Hertford", "", "", "", "Hertford a town"]) + let v = native_list_append(v, ["liste", "noun", "liste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alehouse", "noun", "alehouse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["couchant", "noun", "couchant", "", "", "", "Lying down couchant."]) + let v = native_list_append(v, ["mache", "noun", "mache", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conjuror", "noun", "conjuror", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thraldom", "noun", "thraldom", "", "", "", "Slavery domination the"]) + let v = native_list_append(v, ["garret", "noun", "garret", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Paske", "noun", "Paske", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gunners", "noun", "gunners", "", "", "", "plural of gunner"]) + let v = native_list_append(v, ["feller", "noun", "feller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scyte", "noun", "scyte", "", "", "", "shit shite rubbish"]) + let v = native_list_append(v, ["pees", "noun", "pees", "", "", "", "peace"]) + let v = native_list_append(v, ["tarte", "noun", "tartes", "", "", "", "A tart or"]) + let v = native_list_append(v, ["skarn", "noun", "skarn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ys", "noun", "ys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Denis", "noun", "Denis", "", "", "", "a male given"]) + let v = native_list_append(v, ["torches", "noun", "torches", "", "", "", "plural of torche"]) + let v = native_list_append(v, ["sak", "noun", "sakkes", "", "", "", "A sack large"]) + let v = native_list_append(v, ["ankel", "noun", "ankel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pottage", "noun", "pottage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["futures", "noun", "futures", "", "", "", "plural of future"]) + let v = native_list_append(v, ["folie", "noun", "folie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["songe", "noun", "songe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["broder", "noun", "broder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Mercure", "noun", "Mercure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Saturne", "noun", "Saturne", "", "", "", "The Roman god"]) + let v = native_list_append(v, ["wain", "noun", "wain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["multe", "noun", "multe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ounces", "noun", "ounces", "", "", "", "plural of ounce"]) + let v = native_list_append(v, ["cote", "noun", "cotes", "", "", "", "A coat especially"]) + let v = native_list_append(v, ["bodi", "noun", "bodies", "", "", "", "body physical structure"]) + let v = native_list_append(v, ["sistren", "noun", "sistren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swet", "noun", "swet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["combe", "noun", "combe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wifes", "noun", "wifes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angre", "noun", "angre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oliva", "noun", "oliva", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stane", "noun", "stanes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faders", "noun", "faders", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brether", "noun", "brether", "", "", "", "plural of brother"]) + let v = native_list_append(v, ["moders", "noun", "moders", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyne", "noun", "tyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marie", "noun", "marie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duchesse", "noun", "duchesses", "", "", "", "duchess female ruler"]) + let v = native_list_append(v, ["oncle", "noun", "oncle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colera", "noun", "colera", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lude", "noun", "luden", "", "", "", "sound noise clamor"]) + let v = native_list_append(v, ["sounder", "noun", "sounder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kage", "noun", "kage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["versifier", "noun", "versifier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palude", "noun", "paludes", "", "", "", "marsh"]) + let v = native_list_append(v, ["sores", "noun", "sores", "", "", "", "plural of sore"]) + let v = native_list_append(v, ["fela", "noun", "fela", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mægen", "noun", "mægen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewes", "noun", "ewes", "", "", "", "plural of ewe"]) + let v = native_list_append(v, ["wolken", "noun", "wolken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wifman", "noun", "wifman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæle", "noun", "hæle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cables", "noun", "cables", "", "", "", "plural of cable"]) + let v = native_list_append(v, ["laf", "noun", "laf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coltre", "noun", "coltre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kide", "noun", "kides", "", "", "", "kid young goat"]) + let v = native_list_append(v, ["yem", "noun", "yem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nard", "noun", "nard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tithes", "noun", "tithes", "", "", "", "plural of tithe"]) + let v = native_list_append(v, ["Charlemagne", "noun", "Charlemagne", "", "", "", "Charlemagne"]) + let v = native_list_append(v, ["nep", "noun", "nep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conies", "noun", "conies", "", "", "", "plural of coni"]) + let v = native_list_append(v, ["spilling", "noun", "spilling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kye", "noun", "kye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koren", "noun", "koren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["borde", "noun", "borde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clauses", "noun", "clauses", "", "", "", "plural of clause"]) + let v = native_list_append(v, ["robberies", "noun", "robberies", "", "", "", "plural of robberie"]) + let v = native_list_append(v, ["admirad", "noun", "admirad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salte", "noun", "salte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syre", "noun", "syre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tressure", "noun", "tressure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warld", "noun", "warld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["messes", "noun", "messes", "", "", "", "plural of messe"]) + let v = native_list_append(v, ["birches", "noun", "birches", "", "", "", "plural of birche"]) + let v = native_list_append(v, ["faxes", "noun", "faxes", "", "", "", "plural of fax"]) + let v = native_list_append(v, ["sties", "noun", "sties", "", "", "", "plural of stie"]) + let v = native_list_append(v, ["lamber", "noun", "lamber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kuchen", "noun", "kuchen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stape", "noun", "stape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["countesses", "noun", "countesses", "", "", "", "plural of countesse"]) + let v = native_list_append(v, ["sauces", "noun", "sauces", "", "", "", "plural of sauce"]) + let v = native_list_append(v, ["Samson", "noun", "Samson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koc", "noun", "koc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oracles", "noun", "oracles", "", "", "", "plural of oracle"]) + let v = native_list_append(v, ["hostesses", "noun", "hostesses", "", "", "", "plural of hostesse"]) + let v = native_list_append(v, ["alean", "noun", "alean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bakes", "noun", "bakes", "", "", "", "plural of bake"]) + let v = native_list_append(v, ["carbuncles", "noun", "carbuncles", "", "", "", "plural of carbuncle"]) + let v = native_list_append(v, ["leder", "noun", "leder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elven", "noun", "elvene", "", "", "", "A especially female"]) + let v = native_list_append(v, ["babee", "noun", "babee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bales", "noun", "bales", "", "", "", "plural of bale"]) + let v = native_list_append(v, ["basen", "noun", "basen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bastes", "noun", "bastes", "", "", "", "plural of bast"]) + let v = native_list_append(v, ["bordes", "noun", "bordes", "", "", "", "plural of bord"]) + let v = native_list_append(v, ["botes", "noun", "botes", "", "", "", "plural of bot"]) + let v = native_list_append(v, ["boten", "noun", "boten", "", "", "", "plural of bote"]) + let v = native_list_append(v, ["burles", "noun", "burles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["capacite", "noun", "capacite", "", "", "", "Ability competence capableness"]) + let v = native_list_append(v, ["casare", "noun", "casare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cemente", "noun", "cemente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chape", "noun", "chapes", "", "", "", "A metal cover"]) + let v = native_list_append(v, ["chapes", "noun", "chapes", "", "", "", "plural of chape"]) + let v = native_list_append(v, ["colee", "noun", "colees", "", "", "", "A stroke with"]) + let v = native_list_append(v, ["comande", "noun", "comande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["combes", "noun", "combes", "", "", "", "plural of comb"]) + let v = native_list_append(v, ["cometas", "noun", "cometas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conjurare", "noun", "conjurare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corone", "noun", "corone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crispe", "noun", "crispe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crispes", "noun", "crispes", "", "", "", "plural of crisp"]) + let v = native_list_append(v, ["cunde", "noun", "cunde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ske", "noun", "ske", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demore", "noun", "demore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desate", "noun", "desate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deserte", "noun", "deserte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desertes", "noun", "desertes", "", "", "", "plural of desert"]) + let v = native_list_append(v, ["bypath", "noun", "bypathes", "", "", "", "bypath byway"]) + let v = native_list_append(v, ["byword", "noun", "byword", "", "", "", "byword"]) + let v = native_list_append(v, ["dicte", "noun", "dictes", "", "", "", "saying"]) + let v = native_list_append(v, ["dictes", "noun", "dictes", "", "", "", "plural of dicte"]) + let v = native_list_append(v, ["diserte", "noun", "diserte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dore", "noun", "dores", "", "", "", "door"]) + let v = native_list_append(v, ["duche", "noun", "duche", "", "", "", "dukedom duchy"]) + let v = native_list_append(v, ["duches", "noun", "duches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Vesper", "noun", "Vesper", "", "", "", "The planet closely"]) + let v = native_list_append(v, ["hiena", "noun", "hiena", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adamants", "noun", "adamants", "", "", "", "plural of adamant"]) + let v = native_list_append(v, ["uncles", "noun", "uncles", "", "", "", "plural of uncle"]) + let v = native_list_append(v, ["bores", "noun", "bores", "", "", "", "plural of bore"]) + let v = native_list_append(v, ["mows", "noun", "mows", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saws", "noun", "saws", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spokes", "noun", "spokes", "", "", "", "plural of spoke"]) + let v = native_list_append(v, ["herons", "noun", "herons", "", "", "", "plural of heron"]) + let v = native_list_append(v, ["hares", "noun", "hares", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mares", "noun", "mares", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prunes", "noun", "prunes", "", "", "", "plural of prune"]) + let v = native_list_append(v, ["parables", "noun", "parables", "", "", "", "plural of parable"]) + let v = native_list_append(v, ["mangers", "noun", "mangers", "", "", "", "plural of manger"]) + let v = native_list_append(v, ["maces", "noun", "maces", "", "", "", "plural of mace"]) + let v = native_list_append(v, ["cranes", "noun", "cranes", "", "", "", "plural of crane"]) + let v = native_list_append(v, ["scars", "noun", "scars", "", "", "", "Deficiency rarity."]) + let v = native_list_append(v, ["bevers", "noun", "bevers", "", "", "", "plural of bever"]) + let v = native_list_append(v, ["metes", "noun", "metes", "", "", "", "plural of mete"]) + let v = native_list_append(v, ["pikers", "noun", "pikers", "", "", "", "plural of piker"]) + let v = native_list_append(v, ["yokes", "noun", "yokes", "", "", "", "plural of yok"]) + let v = native_list_append(v, ["swathes", "noun", "swathes", "", "", "", "plural of swathe"]) + let v = native_list_append(v, ["gospels", "noun", "gospels", "", "", "", "plural of gospel"]) + let v = native_list_append(v, ["shaves", "noun", "shaves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["openers", "noun", "openers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gores", "noun", "gores", "", "", "", "plural of gore"]) + let v = native_list_append(v, ["shires", "noun", "shires", "", "", "", "plural of shire"]) + let v = native_list_append(v, ["paramours", "noun", "paramours", "", "", "", "plural of paramour"]) + let v = native_list_append(v, ["gledes", "noun", "gledes", "", "", "", "plural of glede"]) + let v = native_list_append(v, ["traves", "noun", "traves", "", "", "", "plural of trave"]) + let v = native_list_append(v, ["coroners", "noun", "coroners", "", "", "", "plural of coroner"]) + let v = native_list_append(v, ["mantles", "noun", "mantles", "", "", "", "plural of mantel"]) + let v = native_list_append(v, ["jewelers", "noun", "jewelers", "", "", "", "plural of jueler"]) + let v = native_list_append(v, ["marys", "noun", "marys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bastons", "noun", "bastons", "", "", "", "plural of baston"]) + let v = native_list_append(v, ["herns", "noun", "herns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kirtles", "noun", "kirtles", "", "", "", "plural of kirtel"]) + let v = native_list_append(v, ["foresters", "noun", "foresters", "", "", "", "plural of forester"]) + let v = native_list_append(v, ["entres", "noun", "entres", "", "", "", "plural of entre"]) + let v = native_list_append(v, ["faculte", "noun", "facultes", "", "", "", "Power skill capability"]) + let v = native_list_append(v, ["facultes", "noun", "facultes", "", "", "", "plural of faculte"]) + let v = native_list_append(v, ["moues", "noun", "moues", "", "", "", "plural of moue"]) + let v = native_list_append(v, ["filme", "noun", "filme", "", "", "", "film membrane"]) + let v = native_list_append(v, ["flete", "noun", "flete", "", "", "", "A fleet a"]) + let v = native_list_append(v, ["flotes", "noun", "flotes", "", "", "", "plural of flote"]) + let v = native_list_append(v, ["formes", "noun", "formes", "", "", "", "plural of forme"]) + let v = native_list_append(v, ["fumes", "noun", "fumes", "", "", "", "plural of fume"]) + let v = native_list_append(v, ["guarde", "noun", "guarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halle", "noun", "halles", "", "", "", "hall manor house"]) + let v = native_list_append(v, ["halles", "noun", "halles", "", "", "", "plural of halle"]) + let v = native_list_append(v, ["harte", "noun", "harte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hile", "noun", "hile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiles", "noun", "hiles", "", "", "", "plural of hil"]) + let v = native_list_append(v, ["hipe", "noun", "hipes", "", "", "", "hip anatomical region"]) + let v = native_list_append(v, ["hunde", "noun", "hunde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurte", "noun", "hurte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurtes", "noun", "hurtes", "", "", "", "plural of hurt"]) + let v = native_list_append(v, ["hoor", "noun", "hoor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haring", "noun", "haring", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leef", "noun", "leves", "", "", "", "leaf"]) + let v = native_list_append(v, ["angers", "noun", "angers", "", "", "", "plural of anger"]) + let v = native_list_append(v, ["hauls", "noun", "hauls", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trays", "noun", "trayses", "", "", "", "A pair of"]) + let v = native_list_append(v, ["chisels", "noun", "chisels", "", "", "", "plural of chisel"]) + let v = native_list_append(v, ["verven", "noun", "verven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jale", "noun", "jale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jure", "noun", "jurees", "", "", "", "jury panel of"]) + let v = native_list_append(v, ["sliþe", "noun", "sliþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["signe", "noun", "signes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["signes", "noun", "signes", "", "", "", "plural of signe"]) + let v = native_list_append(v, ["ingang", "noun", "ingangs", "", "", "", "an entry entrance"]) + let v = native_list_append(v, ["sellar", "noun", "sellar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plum tree", "noun", "plum tree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["courser", "noun", "coursers", "", "", "", "A charger large"]) + let v = native_list_append(v, ["tounge", "noun", "tounge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hospitals", "noun", "hospitals", "", "", "", "plural of hospital"]) + let v = native_list_append(v, ["ladre", "noun", "ladre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lambes", "noun", "lambes", "", "", "", "plural of lamb"]) + let v = native_list_append(v, ["lambe", "noun", "lambe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlamente", "noun", "parlamente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["partes", "noun", "partes", "", "", "", "plural of part"]) + let v = native_list_append(v, ["patentes", "noun", "patentes", "", "", "", "plural of patent"]) + let v = native_list_append(v, ["pende", "noun", "pende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loare", "noun", "loare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pese", "noun", "pesen", "", "", "", "A pea seed"]) + let v = native_list_append(v, ["peses", "noun", "peses", "", "", "", "plural of pese"]) + let v = native_list_append(v, ["pesen", "noun", "pesen", "", "", "", "plural of pese"]) + let v = native_list_append(v, ["pisan", "noun", "pisans", "", "", "", "pisane armor collar"]) + let v = native_list_append(v, ["pise", "noun", "pise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pisen", "noun", "pisen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pite", "noun", "pite", "", "", "", "pity mercy"]) + let v = native_list_append(v, ["planten", "noun", "planten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["preste", "noun", "preste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prestes", "noun", "prestes", "", "", "", "plural of prest"]) + let v = native_list_append(v, ["pudre", "noun", "pudre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quede", "noun", "quede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queme", "noun", "queme", "", "", "", "satisfaction liking agreeability"]) + let v = native_list_append(v, ["manes", "noun", "manes", "", "", "", "plural of mane"]) + let v = native_list_append(v, ["maree", "noun", "maree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["margine", "noun", "margine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mesure", "noun", "mesure", "", "", "", ""]) + let v = native_list_append(v, ["modere", "noun", "modere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moderes", "noun", "moderes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nombres", "noun", "nombres", "", "", "", "plural of nombre"]) + let v = native_list_append(v, ["novele", "noun", "novele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reme", "noun", "reme", "", "", "", "cream ream"]) + let v = native_list_append(v, ["remes", "noun", "remes", "", "", "", "plural of rem"]) + let v = native_list_append(v, ["remedie", "noun", "remedie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reveles", "noun", "reveles", "", "", "", "plural of revel"]) + let v = native_list_append(v, ["salves", "noun", "salves", "", "", "", "plural of salve"]) + let v = native_list_append(v, ["rotes", "noun", "rotes", "", "", "", "plural of rote"]) + let v = native_list_append(v, ["roten", "noun", "roten", "", "", "", "plural of rote"]) + let v = native_list_append(v, ["secunde", "noun", "secundes", "", "", "", "Something that is"]) + let v = native_list_append(v, ["secundes", "noun", "secundes", "", "", "", "plural of secunde"]) + let v = native_list_append(v, ["sellare", "noun", "sellare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tapes", "noun", "tapes", "", "", "", "plural of tape"]) + let v = native_list_append(v, ["temes", "noun", "temes", "", "", "", "plural of tem"]) + let v = native_list_append(v, ["sondes", "noun", "sondes", "", "", "", "plural of sonde"]) + let v = native_list_append(v, ["sonden", "noun", "sonden", "", "", "", "plural of sonde"]) + let v = native_list_append(v, ["transe", "noun", "transe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sude", "noun", "sude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surte", "noun", "surte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tumbas", "noun", "tumbas", "", "", "", "plural of tumba"]) + let v = native_list_append(v, ["tumbe", "noun", "tumbes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tumbes", "noun", "tumbes", "", "", "", "plural of tumb"]) + let v = native_list_append(v, ["vare", "noun", "vare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vele", "noun", "vele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veles", "noun", "veles", "", "", "", "plural of veel"]) + let v = native_list_append(v, ["viole", "noun", "viole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vire", "noun", "vire", "", "", "", "an arrow having"]) + let v = native_list_append(v, ["hasard", "noun", "hasard", "", "", "", "hazard dice game"]) + let v = native_list_append(v, ["hewn", "noun", "hewn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mariners", "noun", "mariners", "", "", "", "plural of mariner"]) + let v = native_list_append(v, ["tresses", "noun", "tresses", "", "", "", "plural of tresse"]) + let v = native_list_append(v, ["hende", "noun", "hende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spores", "noun", "spores", "", "", "", "plural of spore"]) + let v = native_list_append(v, ["saumon", "noun", "saumon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charme", "noun", "charmes", "", "", "", "A phrase believed"]) + let v = native_list_append(v, ["geste", "noun", "gestes", "", "", "", "An epic work"]) + let v = native_list_append(v, ["gestes", "noun", "gestes", "", "", "", "plural of gest"]) + let v = native_list_append(v, ["magique", "noun", "magique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bagage", "noun", "bagages", "", "", "", "baggage luggage"]) + let v = native_list_append(v, ["brust", "noun", "brust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yliche", "noun", "yliches", "", "", "", "equal peer like"]) + let v = native_list_append(v, ["dettes", "noun", "dettes", "", "", "", "plural of dette"]) + let v = native_list_append(v, ["dere", "noun", "deres", "", "", "", "A harm or"]) + let v = native_list_append(v, ["glode", "noun", "glode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enchesoun", "noun", "enchesouns", "", "", "", "A motivation reason"]) + let v = native_list_append(v, ["ydromancy", "noun", "ydromancy", "", "", "", "hydromancy"]) + let v = native_list_append(v, ["tercelet", "noun", "tercelettes", "", "", "", "tercelet male bird"]) + let v = native_list_append(v, ["spied", "noun", "spied", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["panes", "noun", "panes", "", "", "", "plural of pane"]) + let v = native_list_append(v, ["moneymaker", "noun", "moneymaker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hornpipe", "noun", "hornpipe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Phebe", "noun", "Phebe", "", "", "", "The Greek Titan"]) + let v = native_list_append(v, ["vinter", "noun", "vinter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["potful", "noun", "potful", "", "", "", "potful"]) + let v = native_list_append(v, ["masse", "noun", "massez", "", "", "", "A lump blob"]) + let v = native_list_append(v, ["oc", "noun", "oc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tissu", "noun", "tissu", "", "", "", "tissue silk fabric"]) + let v = native_list_append(v, ["canne", "noun", "cannes", "", "", "", "A tub can"]) + let v = native_list_append(v, ["royaume", "noun", "royaume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mesel", "noun", "mesels", "", "", "", "A leper."]) + let v = native_list_append(v, ["branche", "noun", "branche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crisma", "noun", "crisma", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sti", "noun", "sti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kothe", "noun", "kothe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wive", "noun", "wive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boucher", "noun", "boucher", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sovel", "noun", "sovel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coller", "noun", "coller", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cidre", "noun", "cidre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["retenu", "noun", "retenu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spile", "noun", "spile", "", "", "", "amusement entertainment celebration"]) + let v = native_list_append(v, ["betel", "noun", "betels", "", "", "", "mallet maul hammer"]) + let v = native_list_append(v, ["handy dandy", "noun", "handy dandy", "", "", "", "A childrens game"]) + let v = native_list_append(v, ["ers", "noun", "ers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roper", "noun", "ropers", "", "", "", "A maker or"]) + let v = native_list_append(v, ["ert", "noun", "ert", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Stafford", "noun", "Stafford", "", "", "", "A placename"]) + let v = native_list_append(v, ["Hartford", "noun", "Hartford", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merk", "noun", "merk", "", "", "", "resemblance"]) + let v = native_list_append(v, ["rewe", "noun", "rewes", "", "", "", "pity sorrow rue"]) + let v = native_list_append(v, ["inpossible", "noun", "inpossible", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breyde", "noun", "breyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herberwe", "noun", "herberwes", "", "", "", "A place of"]) + let v = native_list_append(v, ["sursanure", "noun", "sursanures", "", "", "", "A scab or"]) + let v = native_list_append(v, ["mansioun", "noun", "mansiouns", "", "", "", "A place where"]) + let v = native_list_append(v, ["merch", "noun", "merch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hempen", "noun", "hempen", "", "", "", "hempen made of"]) + let v = native_list_append(v, ["aches", "noun", "aches", "", "", "", "plural of ache"]) + let v = native_list_append(v, ["sparkles", "noun", "sparkles", "", "", "", "plural of sparkel"]) + let v = native_list_append(v, ["barkers", "noun", "barkers", "", "", "", "plural of barker"]) + let v = native_list_append(v, ["coursers", "noun", "coursers", "", "", "", "plural of courser"]) + let v = native_list_append(v, ["enchesouns", "noun", "enchesouns", "", "", "", "plural of enchesoun"]) + let v = native_list_append(v, ["sursanures", "noun", "sursanures", "", "", "", "plural of sursanure"]) + let v = native_list_append(v, ["damping", "noun", "damping", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warping", "noun", "warping", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lends", "noun", "lends", "", "", "", "Loins"]) + let v = native_list_append(v, ["enchanter", "noun", "enchanter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["procurator", "noun", "procurator", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sapience", "noun", "sapience", "", "", "", "wisdom discernment especially"]) + let v = native_list_append(v, ["infante", "noun", "infante", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Yorke", "noun", "Yorke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gammon", "noun", "gammon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poot", "noun", "poot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lime", "noun", "lime", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["otur", "noun", "otur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tron", "noun", "tron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sker", "noun", "skers", "", "", "", "Terror fright."]) + let v = native_list_append(v, ["salver", "noun", "salver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horse", "noun", "horse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["green wax", "noun", "green wax", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tige", "noun", "tiges", "", "", "", "draught drink"]) + let v = native_list_append(v, ["saver", "noun", "saver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murmurs", "noun", "murmurs", "", "", "", "plural of murmur"]) + let v = native_list_append(v, ["horte", "noun", "horte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scorner", "noun", "scorner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorcerers", "noun", "sorcerers", "", "", "", "plural of sorcerere"]) + let v = native_list_append(v, ["sorceries", "noun", "sorceries", "", "", "", "plural of sorcery"]) + let v = native_list_append(v, ["sorceresses", "noun", "sorceresses", "", "", "", "plural of sorceresse"]) + let v = native_list_append(v, ["vini", "noun", "vini", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brewster", "noun", "brewster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desse", "noun", "desse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["balene", "noun", "balene", "", "", "", "whale"]) + let v = native_list_append(v, ["chele", "noun", "chele", "", "", "", "Coldness lack of"]) + let v = native_list_append(v, ["chiese", "noun", "chiese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bref", "noun", "brefes", "", "", "", "A message especially"]) + let v = native_list_append(v, ["contesse", "noun", "contesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["croste", "noun", "croste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crune", "noun", "crune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feste", "noun", "feste", "", "", "", "feast"]) + let v = native_list_append(v, ["hed", "noun", "hed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blench", "noun", "blench", "", "", "", "A deceit a"]) + let v = native_list_append(v, ["rubies", "noun", "rubies", "", "", "", "plural of ruby"]) + let v = native_list_append(v, ["breid", "noun", "breides", "", "", "", "An action done"]) + let v = native_list_append(v, ["spikenard", "noun", "spikenard", "", "", "", "Nard Nardostachys jatamansi"]) + let v = native_list_append(v, ["batte", "noun", "batte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volle", "noun", "volle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taxe", "noun", "taxes", "", "", "", "A tax or"]) + let v = native_list_append(v, ["myntes", "noun", "myntes", "", "", "", "plural of mynte"]) + let v = native_list_append(v, ["oer", "noun", "oer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stik", "noun", "stikkes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alve", "noun", "alve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swearer", "noun", "swearer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flees", "noun", "fleeses", "", "", "", "A sheepskin or"]) + let v = native_list_append(v, ["Damian", "noun", "Damian", "", "", "", "Damian"]) + let v = native_list_append(v, ["rade", "noun", "rade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pye", "noun", "pyes", "", "", "", "pie pastry dish"]) + let v = native_list_append(v, ["cresset", "noun", "cressettes", "", "", "", "cresset metal cup"]) + let v = native_list_append(v, ["gaten", "noun", "gaten", "", "", "", "plural of gate"]) + let v = native_list_append(v, ["lou", "noun", "lou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erbe", "noun", "erbe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surveyor", "noun", "surveyor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptise", "noun", "baptise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reaving", "noun", "reaving", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hames", "noun", "hames", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bisschop", "noun", "bisschop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diel", "noun", "diel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["storie", "noun", "stories", "", "", "", "The spoken or"]) + let v = native_list_append(v, ["cropper", "noun", "cropper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matris", "noun", "matris", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorelle", "noun", "sorelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["homages", "noun", "homages", "", "", "", "plural of homage"]) + let v = native_list_append(v, ["coupes", "noun", "coupes", "", "", "", "plural of cǒupe."]) + let v = native_list_append(v, ["venues", "noun", "venues", "", "", "", "plural of venu"]) + let v = native_list_append(v, ["pilgrimages", "noun", "pilgrimages", "", "", "", "plural of pilgrimage"]) + let v = native_list_append(v, ["bolsters", "noun", "bolsters", "", "", "", "plural of bolster"]) + let v = native_list_append(v, ["maples", "noun", "maples", "", "", "", "plural of mapel"]) + let v = native_list_append(v, ["tumours", "noun", "tumours", "", "", "", "plural of tumour"]) + let v = native_list_append(v, ["tost", "noun", "tostes", "", "", "", "toast bread that"]) + let v = native_list_append(v, ["cervice", "noun", "cervice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fedele", "noun", "fedele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fede", "noun", "fedes", "", "", "", "A severe hate"]) + let v = native_list_append(v, ["sannt", "noun", "sannt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recette", "noun", "recette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ensurance", "noun", "ensurances", "", "", "", "The action to"]) + let v = native_list_append(v, ["betters", "noun", "betters", "", "", "", "plural of bettre"]) + let v = native_list_append(v, ["okse", "noun", "okse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tragedies", "noun", "tragedies", "", "", "", "plural of tragedy"]) + let v = native_list_append(v, ["molen", "noun", "molen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thirl", "noun", "thirles", "", "", "", "An aperture or"]) + let v = native_list_append(v, ["ligt", "noun", "ligt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["potente", "noun", "potente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schild", "noun", "schild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theologie", "noun", "theologies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werd", "noun", "werd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sower", "noun", "sower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tunne", "noun", "tunnes", "", "", "", "cask barrel"]) + let v = native_list_append(v, ["forse", "noun", "forse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pan", "noun", "pan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heer", "noun", "heer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["modder", "noun", "modder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huswife", "noun", "huswife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seneschals", "noun", "seneschals", "", "", "", "plural of seneschal"]) + let v = native_list_append(v, ["gomme", "noun", "gomme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merce", "noun", "merce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sixte", "noun", "sixte", "", "", "", "A sixth something"]) + let v = native_list_append(v, ["wrt", "noun", "wrt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["astaat", "noun", "astaat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["metall", "noun", "metall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["couches", "noun", "couches", "", "", "", "plural of couche"]) + let v = native_list_append(v, ["gripes", "noun", "gripes", "", "", "", "plural of gripe"]) + let v = native_list_append(v, ["drakes", "noun", "drakes", "", "", "", "plural of drake"]) + let v = native_list_append(v, ["thorpes", "noun", "thorpes", "", "", "", "plural of thorp"]) + let v = native_list_append(v, ["mattes", "noun", "mattes", "", "", "", "plural of matte"]) + let v = native_list_append(v, ["pyes", "noun", "pyes", "", "", "", "plural of pye"]) + let v = native_list_append(v, ["ensurances", "noun", "ensurances", "", "", "", "plural of ensurance"]) + let v = native_list_append(v, ["fanon", "noun", "fanons", "", "", "", "maniple fanon"]) + let v = native_list_append(v, ["vaste", "noun", "vaste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kabel", "noun", "kabel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muste", "noun", "muste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wou", "noun", "wou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyly", "noun", "lyly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muc", "noun", "muc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treden", "noun", "treden", "", "", "", "plural of tred"]) + let v = native_list_append(v, ["miserie", "noun", "miseries", "", "", "", "misery"]) + let v = native_list_append(v, ["laite", "noun", "laite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qual", "noun", "qual", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hede", "noun", "hedes", "", "", "", "heed"]) + let v = native_list_append(v, ["leng", "noun", "leng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nosse", "noun", "nosse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zong", "noun", "zong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crosse", "noun", "crosse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["navegar", "noun", "navegar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sines", "noun", "sines", "", "", "", "plural of sine"]) + let v = native_list_append(v, ["jousts", "noun", "jousts", "", "", "", "a tournament an"]) + let v = native_list_append(v, ["goos", "noun", "goos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fanons", "noun", "fanons", "", "", "", "plural of fanon"]) + let v = native_list_append(v, ["murrey", "noun", "murrey", "", "", "", "purple-red magenta colour"]) + let v = native_list_append(v, ["jupon", "noun", "jupon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nol", "noun", "nolles", "", "", "", "head crown"]) + let v = native_list_append(v, ["tende", "noun", "tende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["basse", "noun", "basse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morue", "noun", "morue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["magnete", "noun", "magnetis", "", "", "", "lodestone a magnetic"]) + let v = native_list_append(v, ["chong", "noun", "chong", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coiner", "noun", "coiner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["collegian", "noun", "collegians", "", "", "", "One who is"]) + let v = native_list_append(v, ["hyve", "noun", "hyves", "", "", "", "hive structure housing"]) + let v = native_list_append(v, ["gamme", "noun", "gamme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compassing", "noun", "compassing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sho", "noun", "shon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pryde", "noun", "pryde", "", "", "", "Pride the state"]) + let v = native_list_append(v, ["pantera", "noun", "pantera", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brides", "noun", "brides", "", "", "", "plural of bride"]) + let v = native_list_append(v, ["lording", "noun", "lording", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weys", "noun", "weys", "", "", "", "plural of wey"]) + let v = native_list_append(v, ["clawing", "noun", "clawing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["receptacles", "noun", "receptacles", "", "", "", "plural of receptacle"]) + let v = native_list_append(v, ["nonne", "noun", "nonnes", "", "", "", "nun"]) + let v = native_list_append(v, ["nonnes", "noun", "nonnes", "", "", "", "plural of nonne"]) + let v = native_list_append(v, ["zang", "noun", "zang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conferment", "noun", "conferment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passione", "noun", "passione", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breche", "noun", "breche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coulter", "noun", "coulter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stel", "noun", "stel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sparke", "noun", "sparkes", "", "", "", "spark glowing particle"]) + let v = native_list_append(v, ["nere", "noun", "neres", "", "", "", "kidney an organ"]) + let v = native_list_append(v, ["twyndyllyng", "noun", "twyndyllyngs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twyndyllyngs", "noun", "twyndyllyngs", "", "", "", "plural of twyndyllyng"]) + let v = native_list_append(v, ["messe", "noun", "messes", "", "", "", "Mass service where"]) + let v = native_list_append(v, ["loos", "noun", "loos", "", "", "", "loos praise fame"]) + let v = native_list_append(v, ["fam", "noun", "fam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cages", "noun", "cages", "", "", "", "plural of cage"]) + let v = native_list_append(v, ["seel", "noun", "seel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["felle", "noun", "felle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cowherd", "noun", "cowherd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mulne", "noun", "mulne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kende", "noun", "kende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matrace", "noun", "matrace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blo", "noun", "blo", "", "", "", "bruise"]) + let v = native_list_append(v, ["personnes", "noun", "personnes", "", "", "", "plural of personne"]) + let v = native_list_append(v, ["bakke", "noun", "bakkes", "", "", "", "bat flying mammal"]) + let v = native_list_append(v, ["quene", "noun", "quenes", "", "", "", "A queen female"]) + let v = native_list_append(v, ["vales", "noun", "vales", "", "", "", "plural of vale"]) + let v = native_list_append(v, ["wegge", "noun", "wegges", "", "", "", "wedge"]) + let v = native_list_append(v, ["pegge", "noun", "pegges", "", "", "", "peg"]) + let v = native_list_append(v, ["geng", "noun", "geng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forestage", "noun", "forestage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baken", "noun", "baken", "", "", "", "A meal made"]) + let v = native_list_append(v, ["daa", "noun", "daa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coni", "noun", "conies", "", "", "", "coney cony rabbit"]) + let v = native_list_append(v, ["huswif", "noun", "huswif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["balke", "noun", "balkes", "", "", "", "balk ridge beam"]) + let v = native_list_append(v, ["bakere", "noun", "bakere", "", "", "", "baker"]) + let v = native_list_append(v, ["bakestere", "noun", "bakestere", "", "", "", "A baker especially"]) + let v = native_list_append(v, ["tribunes", "noun", "tribunes", "", "", "", "plural of tribune"]) + let v = native_list_append(v, ["nagge", "noun", "nagge", "", "", "", "A nag pony"]) + let v = native_list_append(v, ["hordes", "noun", "hordes", "", "", "", "plural of hord"]) + let v = native_list_append(v, ["woh", "noun", "woh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assaut", "noun", "assauts", "", "", "", "assault"]) + let v = native_list_append(v, ["bagge", "noun", "bagge", "", "", "", "A fabric container"]) + let v = native_list_append(v, ["cun", "noun", "cun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bage", "noun", "bage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baggue", "noun", "baggue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bagke", "noun", "bagke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bayge", "noun", "bayge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nai", "noun", "nais", "", "", "", "denial refusal"]) + let v = native_list_append(v, ["suan", "noun", "suan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vertu", "noun", "vertues", "", "", "", "An ability specialty"]) + let v = native_list_append(v, ["weike", "noun", "weike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stere", "noun", "steres", "", "", "", "rudder tiller steering"]) + let v = native_list_append(v, ["rys", "noun", "rys", "", "", "", "rice"]) + let v = native_list_append(v, ["ney", "noun", "ney", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["motes", "noun", "motes", "", "", "", "plural of mot"]) + let v = native_list_append(v, ["pols", "noun", "pols", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["collegians", "noun", "collegians", "", "", "", "plural of collegian"]) + let v = native_list_append(v, ["shos", "noun", "shos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assise", "noun", "assises", "", "", "", "A holding of"]) + let v = native_list_append(v, ["cheri", "noun", "cheries", "", "", "", "cherry fruit"]) + let v = native_list_append(v, ["goot", "noun", "goot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stok", "noun", "stokkes", "", "", "", "trunk of a"]) + let v = native_list_append(v, ["tosk", "noun", "tosk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reredos", "noun", "reredosis", "", "", "", "A reredos or"]) + let v = native_list_append(v, ["raser", "noun", "raser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["galoche", "noun", "galoche", "", "", "", "A clog or"]) + let v = native_list_append(v, ["weng", "noun", "weng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Israele", "noun", "Israele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hakken", "noun", "hakke", "", "", "", "To hack to"]) + let v = native_list_append(v, ["oure", "noun", "oure", "", "", "", "aurochs"]) + let v = native_list_append(v, ["palme", "noun", "palmes", "", "", "", "palm tree"]) + let v = native_list_append(v, ["menet", "noun", "menet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Japheth", "noun", "Japheth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rou", "noun", "rou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mou", "noun", "mou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["philosophie", "noun", "philosophie", "", "", "", "Knowledge the appreciation"]) + let v = native_list_append(v, ["peise", "noun", "peise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["phare", "noun", "phare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["actif", "noun", "actif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoond", "noun", "hoond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musicien", "noun", "musiciens", "", "", "", "A performer of"]) + let v = native_list_append(v, ["hek", "noun", "hek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musco", "noun", "musco", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apocalips", "noun", "apocalips", "", "", "", "The book of"]) + let v = native_list_append(v, ["memorie", "noun", "memories", "", "", "", "memory ability to"]) + let v = native_list_append(v, ["seghe", "noun", "seghe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strond", "noun", "strondes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trompet", "noun", "trompet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evne", "noun", "evne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seg", "noun", "seg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brede", "noun", "bredes", "", "", "", "Pieces of roasted"]) + let v = native_list_append(v, ["anatomie", "noun", "anatomies", "", "", "", "anatomy"]) + let v = native_list_append(v, ["volte", "noun", "volte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skie", "noun", "skie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hom", "noun", "homes", "", "", "", "home residence dwelling"]) + let v = native_list_append(v, ["lond", "noun", "londes", "londes", "londe", "", "An independent nation"]) + let v = native_list_append(v, ["sherd", "noun", "sherd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sherds", "noun", "sherds", "", "", "", "plural of sherd"]) + let v = native_list_append(v, ["pot-sherd", "noun", "pot-sherd", "", "", "", "pottery shard potsherd"]) + let v = native_list_append(v, ["trest", "noun", "trestes", "", "", "", "trestle support"]) + let v = native_list_append(v, ["queste", "noun", "queste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tapor", "noun", "tapor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brom", "noun", "bromes", "", "", "", "Broom shrub of"]) + let v = native_list_append(v, ["flouter", "noun", "flouters", "", "", "", "A musician who"]) + let v = native_list_append(v, ["asse", "noun", "assen", "asses", "", "", "An ass or"]) + let v = native_list_append(v, ["stelle", "noun", "stelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rokke", "noun", "rokkes", "", "", "", "rock stone"]) + let v = native_list_append(v, ["kafe", "noun", "kafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyrr", "noun", "fyrr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emot", "noun", "emot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["subtile", "noun", "subtile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erwigge", "noun", "erwigges", "", "", "", "earwig"]) + let v = native_list_append(v, ["gandur", "noun", "gandur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hous", "noun", "houses", "", "", "", "house residence"]) + let v = native_list_append(v, ["pretore", "noun", "pretore", "", "", "", "praetor"]) + let v = native_list_append(v, ["visione", "noun", "visione", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raat", "noun", "raat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seignory", "noun", "seignory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["keler", "noun", "kelers", "", "", "", "A vessel for"]) + let v = native_list_append(v, ["hwile", "noun", "hwile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ratt", "noun", "ratt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jurer", "noun", "jurer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dragun", "noun", "dragun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horder", "noun", "horder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["albe", "noun", "albe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["souder", "noun", "souder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vigne", "noun", "vigne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["springe", "noun", "springe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delves", "noun", "delves", "", "", "", "plural of delf"]) + let v = native_list_append(v, ["koule", "noun", "koule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["repere", "noun", "reperes", "", "", "", "reaper harvester"]) + let v = native_list_append(v, ["Simeon", "noun", "Simeon", "", "", "", "Simeon"]) + let v = native_list_append(v, ["bordure", "noun", "bordures", "", "", "", "An edge boundary"]) + let v = native_list_append(v, ["osel", "noun", "oseles", "", "", "", "blackbird"]) + let v = native_list_append(v, ["crowner", "noun", "crowner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spray", "noun", "sprayes", "", "", "", "branch shoot or"]) + let v = native_list_append(v, ["culter", "noun", "cultres", "", "", "", "A coulter of"]) + let v = native_list_append(v, ["bæd", "noun", "bæd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["napping", "noun", "napping", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ove", "noun", "ove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flodes", "noun", "flodes", "", "", "", "plural of flod"]) + let v = native_list_append(v, ["segen", "noun", "segen", "", "", "", "plural of sege"]) + let v = native_list_append(v, ["chiste", "noun", "chiste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coppeweb", "noun", "coppeweb", "", "", "", "spiderweb"]) + let v = native_list_append(v, ["maden", "noun", "maden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayse", "noun", "ayse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palmestrie", "noun", "palmestrie", "", "", "", "palmistry"]) + let v = native_list_append(v, ["pawmestry", "noun", "pawmestry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ospitale", "noun", "ospitale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyrde", "noun", "hyrde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["contasse", "noun", "contasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleo", "noun", "fleo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trow", "noun", "trow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wining", "noun", "wining", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yþe", "noun", "yþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soþe", "noun", "soþe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sauge", "noun", "sauge", "", "", "", "sage Salvia officinalis"]) + let v = native_list_append(v, ["materie", "noun", "materie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avene", "noun", "avene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glorie", "noun", "glories", "", "", "", "Distinction or recognition"]) + let v = native_list_append(v, ["maghe", "noun", "maghe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usure", "noun", "usures", "", "", "", "To lend money"]) + let v = native_list_append(v, ["tragedie", "noun", "tragedies", "", "", "", "tragedy type of"]) + let v = native_list_append(v, ["rotte", "noun", "rotte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spole", "noun", "spoles", "", "", "", "A bobbin or"]) + let v = native_list_append(v, ["grane", "noun", "grane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flot", "noun", "flot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pece", "noun", "peces", "", "", "", "piece morsel bit"]) + let v = native_list_append(v, ["macula", "noun", "maculas", "", "", "", "A lesion on"]) + let v = native_list_append(v, ["lampe", "noun", "lampe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nebule", "noun", "nebules", "", "", "", "A little cloud."]) + let v = native_list_append(v, ["gonne", "noun", "gonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bastarde", "noun", "bastarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["polle", "noun", "polles", "", "", "", "the head of"]) + let v = native_list_append(v, ["selve", "noun", "selve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cappe", "noun", "cappes", "", "", "", "cap hat covering"]) + let v = native_list_append(v, ["prede", "noun", "prede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spalle", "noun", "spalles", "", "", "", "chip splinter"]) + let v = native_list_append(v, ["staffe", "noun", "staffe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["furie", "noun", "furie", "", "", "", "fury ire rage"]) + let v = native_list_append(v, ["trippe", "noun", "trippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buche", "noun", "buche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bucce", "noun", "bucce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sterne", "noun", "sternes", "", "", "", "a luminous body"]) + let v = native_list_append(v, ["cornette", "noun", "cornette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mostarde", "noun", "mostarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maters", "noun", "maters", "", "", "", "plural of mater"]) + let v = native_list_append(v, ["matres", "noun", "matres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["filosofie", "noun", "filosofie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gite", "noun", "gites", "", "", "", "An outpouring shedding"]) + let v = native_list_append(v, ["cerimonie", "noun", "cerimonie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frette", "noun", "frette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foreste", "noun", "foreste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["periferie", "noun", "periferies", "", "", "", "one of three"]) + let v = native_list_append(v, ["pantere", "noun", "panteres", "", "", "", "A panther leopard"]) + let v = native_list_append(v, ["diete", "noun", "dietes", "", "", "", "diet consumption of"]) + let v = native_list_append(v, ["tappe", "noun", "tappes", "", "", "", "A spigot or"]) + let v = native_list_append(v, ["skole", "noun", "skole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["richen", "noun", "richen", "", "", "", "plural of riche"]) + let v = native_list_append(v, ["heie", "noun", "heie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heier", "noun", "heier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chete", "noun", "chete", "", "", "", "cottage"]) + let v = native_list_append(v, ["stene", "noun", "stenes", "", "", "", "An often clay"]) + let v = native_list_append(v, ["colte", "noun", "colte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cupe", "noun", "cupe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neva", "noun", "neva", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grasse", "noun", "grasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idiote", "noun", "idiote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lorde", "noun", "lorde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["macere", "noun", "macere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miste", "noun", "miste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nette", "noun", "nette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oneste", "noun", "oneste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schive", "noun", "schive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bost", "noun", "bosts", "", "", "", "brag boast"]) + let v = native_list_append(v, ["tranquille", "noun", "tranquille", "", "", "", "calmness tranquility"]) + let v = native_list_append(v, ["unicorne", "noun", "unicornes", "", "", "", "unicorn mythical one-horned"]) + let v = native_list_append(v, ["paciente", "noun", "paciente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ovet", "noun", "ovetes", "", "", "", "fruit"]) + let v = native_list_append(v, ["palat", "noun", "palat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["komp", "noun", "komp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["femelle", "noun", "femelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["polan", "noun", "polan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suon", "noun", "suon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pakat", "noun", "pakat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mahon", "noun", "mahon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flye", "noun", "flyes", "", "", "", "Any insect capable"]) + let v = native_list_append(v, ["flyes", "noun", "flyes", "", "", "", "plural of flye"]) + let v = native_list_append(v, ["wightes", "noun", "wightes", "", "", "", "plural of wight"]) + let v = native_list_append(v, ["glasse", "noun", "glasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arce", "noun", "arce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musiker", "noun", "musikers", "", "", "", "A performer of"]) + let v = native_list_append(v, ["voide", "noun", "voide", "", "", "", "drink taken before"]) + let v = native_list_append(v, ["meden", "noun", "meden", "", "", "", "plural of mede"]) + let v = native_list_append(v, ["maille", "noun", "maille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nye", "noun", "nye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melodie", "noun", "melodies", "", "", "", "Melodiousness the quality"]) + let v = native_list_append(v, ["mette", "noun", "mettes", "", "", "", "tablemate"]) + let v = native_list_append(v, ["tromp", "noun", "tromp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toden", "noun", "toden", "", "", "", "plural of tode"]) + let v = native_list_append(v, ["lough", "noun", "loughs", "", "", "", "lake"]) + let v = native_list_append(v, ["rodes", "noun", "rodes", "", "", "", "plural of rode"]) + let v = native_list_append(v, ["heals", "noun", "heals", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["constables", "noun", "constables", "", "", "", "plural of constable"]) + let v = native_list_append(v, ["assailing", "noun", "assailing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verges", "noun", "verges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forgers", "noun", "forgers", "", "", "", "plural of forger"]) + let v = native_list_append(v, ["nappes", "noun", "nappes", "", "", "", "plural of nap"]) + let v = native_list_append(v, ["sanders", "noun", "sanders", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assises", "noun", "assises", "", "", "", "plural of assise"]) + let v = native_list_append(v, ["zen", "noun", "zen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["campar", "noun", "campar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erwigges", "noun", "erwigges", "", "", "", "plural of erwigge"]) + let v = native_list_append(v, ["annesse", "noun", "annesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apen", "noun", "apen", "", "", "", "plural of ape"]) + let v = native_list_append(v, ["syke", "noun", "syke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eron", "noun", "eron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suin", "noun", "suin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syty", "noun", "syty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minte", "noun", "minte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faucon", "noun", "faucon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snede", "noun", "snedes", "", "", "", "scythe"]) + let v = native_list_append(v, ["chapiter", "noun", "chapiter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patrone", "noun", "patrone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tapper", "noun", "tapper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["munk", "noun", "munk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["therm", "noun", "therm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brygge", "noun", "brygge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["droppe", "noun", "droppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ostre", "noun", "ostre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sirop", "noun", "sirop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brou", "noun", "brou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myre", "noun", "myre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cerche", "noun", "cerche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knop", "noun", "knoppes", "", "", "", "A decorative or"]) + let v = native_list_append(v, ["canell", "noun", "canell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrid", "noun", "thrid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wynd", "noun", "wyndes", "", "", "", "wind"]) + let v = native_list_append(v, ["fritture", "noun", "fritture", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["violette", "noun", "violette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chantry", "noun", "chantry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elfe", "noun", "elfe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leofman", "noun", "leofman", "", "", "", "A lover sweetheart"]) + let v = native_list_append(v, ["latten", "noun", "latten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dowery", "noun", "dowery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trouse", "noun", "trouses", "", "", "", "brushwood"]) + let v = native_list_append(v, ["souter", "noun", "souter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salvator", "noun", "salvator", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mure", "noun", "mure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["madnesses", "noun", "madnesses", "", "", "", "plural of madnesse"]) + let v = native_list_append(v, ["sper", "noun", "sper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stenches", "noun", "stenches", "", "", "", "plural of stench"]) + let v = native_list_append(v, ["heritour", "noun", "heritour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["staven", "noun", "staven", "", "", "", "plural of staf"]) + let v = native_list_append(v, ["honden", "noun", "honden", "", "", "", "plural of hond"]) + let v = native_list_append(v, ["cloves", "noun", "cloves", "", "", "", "plural of clove"]) + let v = native_list_append(v, ["trey", "noun", "treyne", "", "", "", "affliction suffering pain"]) + let v = native_list_append(v, ["parlours", "noun", "parlours", "", "", "", "plural of parlour"]) + let v = native_list_append(v, ["grees", "noun", "grees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yn", "noun", "yn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clouting", "noun", "clouting", "", "", "", "patching fixing"]) + let v = native_list_append(v, ["figge", "noun", "figge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caverne", "noun", "cavernes", "", "", "", "cavern cave"]) + let v = native_list_append(v, ["lancette", "noun", "lancette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["terce", "noun", "terce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loppe", "noun", "loppes", "", "", "", "A spider or"]) + let v = native_list_append(v, ["vlo", "noun", "vlo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyran", "noun", "tyran", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tole", "noun", "tole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duole", "noun", "duole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lesse", "noun", "lesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hewer", "noun", "hewer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laton", "noun", "laton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sporge", "noun", "sporge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wone", "noun", "wones", "", "", "", "custom habit"]) + let v = native_list_append(v, ["menage", "noun", "menage", "", "", "", "A retinue or"]) + let v = native_list_append(v, ["kanon", "noun", "kanon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pyry", "noun", "pyry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verr", "noun", "verr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyn", "noun", "wynes", "", "", "", "wine in food"]) + let v = native_list_append(v, ["schilder", "noun", "schilder", "", "", "", "One who shields"]) + let v = native_list_append(v, ["sorse", "noun", "sorse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oost", "noun", "oost", "", "", "", "host army"]) + let v = native_list_append(v, ["cors", "noun", "cors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maculas", "noun", "maculas", "", "", "", "plural of macula"]) + let v = native_list_append(v, ["gelee", "noun", "gelee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelees", "noun", "gelees", "", "", "", "plural of gele"]) + let v = native_list_append(v, ["filozofie", "noun", "filozofie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pacient", "noun", "pacientes", "", "", "", "patient individual under"]) + let v = native_list_append(v, ["wye", "noun", "wyes", "", "", "", "A person a"]) + let v = native_list_append(v, ["chiromanty", "noun", "chiromanty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chiromantie", "noun", "chiromantie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chyromancie", "noun", "chyromancie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ciromanci", "noun", "ciromanci", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ciromancie", "noun", "ciromancie", "", "", "", "palmistry chiromancy divination"]) + let v = native_list_append(v, ["cyromancy", "noun", "cyromancy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cyromancye", "noun", "cyromancye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baronies", "noun", "baronies", "", "", "", "plural of baronie"]) + let v = native_list_append(v, ["clubber", "noun", "clubber", "", "", "", "Somebody who makes"]) + let v = native_list_append(v, ["bulle", "noun", "bulle", "", "", "", "papal bull"]) + let v = native_list_append(v, ["hosteler", "noun", "hosteler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cultur", "noun", "cultur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grype", "noun", "grype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mages", "noun", "mages", "", "", "", "Wizards occult scholars"]) + let v = native_list_append(v, ["axing", "noun", "axing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blowers", "noun", "blowers", "", "", "", "plural of blower"]) + let v = native_list_append(v, ["bathes", "noun", "bathes", "", "", "", "plural of bath"]) + let v = native_list_append(v, ["staking", "noun", "staking", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolling", "noun", "tollynges", "", "", "", "convincing attraction or"]) + let v = native_list_append(v, ["vambraces", "noun", "vambraces", "", "", "", "plural of vambrace"]) + let v = native_list_append(v, ["hires", "noun", "hires", "", "", "", "plural of hire"]) + let v = native_list_append(v, ["doers", "noun", "doers", "", "", "", "plural of doer"]) + let v = native_list_append(v, ["hales", "noun", "hales", "", "", "", "plural of hale"]) + let v = native_list_append(v, ["sones", "noun", "sones", "", "", "", "plural of sone"]) + let v = native_list_append(v, ["ors", "noun", "ors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treys", "noun", "treys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wones", "noun", "wones", "", "", "", "plural of wone"]) + let v = native_list_append(v, ["wyes", "noun", "wyes", "", "", "", "plural of wye"]) + let v = native_list_append(v, ["pouer", "noun", "pouer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mony", "noun", "mony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["munde", "noun", "munde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toste", "noun", "toste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyranne", "noun", "tyranne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cule", "noun", "cule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sowel", "noun", "sowel", "", "", "", "Food especially that"]) + let v = native_list_append(v, ["sauch", "noun", "sauch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deuk", "noun", "deuk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fecht", "noun", "fecht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laverock", "noun", "laverock", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rone", "noun", "rone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomancie", "noun", "geomancie", "", "", "", "geomancy divination involving"]) + let v = native_list_append(v, ["geomance", "noun", "geomance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomanci", "noun", "geomanci", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomansi", "noun", "geomansi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomansy", "noun", "geomansy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomanty", "noun", "geomanty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomensie", "noun", "geomensie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomensy", "noun", "geomensy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomensye", "noun", "geomensye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomese", "noun", "geomese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomesie", "noun", "geomesie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geomessie", "noun", "geomessie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gemensye", "noun", "gemensye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geemessye", "noun", "geemessye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deis", "noun", "deis", "", "", "", "podium dais"]) + let v = native_list_append(v, ["flei", "noun", "flei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleis", "noun", "fleis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rioter", "noun", "rioter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deies", "noun", "deies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deie", "noun", "deie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kri", "noun", "kri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["copre", "noun", "copre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wordes", "noun", "wordes", "", "", "", "plural of word"]) + let v = native_list_append(v, ["oficer", "noun", "oficer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sermone", "noun", "sermone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sute", "noun", "sutes", "", "", "", "Clothes or clothing"]) + let v = native_list_append(v, ["behoveth", "noun", "behoveth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoven", "noun", "hoven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treis", "noun", "treis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosen", "noun", "rosen", "", "", "", "plural of rose"]) + let v = native_list_append(v, ["chiar", "noun", "chiar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foeman", "noun", "foeman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["odours", "noun", "odours", "", "", "", "plural of odour"]) + let v = native_list_append(v, ["stalle", "noun", "stalles", "", "", "", "stall"]) + let v = native_list_append(v, ["sclave", "noun", "sclave", "", "", "", "slave individual held"]) + let v = native_list_append(v, ["wharfage", "noun", "wharfage", "", "", "", "utilisation of a"]) + let v = native_list_append(v, ["purgatori", "noun", "purgatori", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stert", "noun", "sterts", "", "", "", "start beginning"]) + let v = native_list_append(v, ["vyce", "noun", "vyce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["officiale", "noun", "officiale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pentecoste", "noun", "pentecoste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idolatre", "noun", "idolatre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hevi", "noun", "hevi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["selli", "noun", "selli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asker", "noun", "askers", "", "", "", "One who prays"]) + let v = native_list_append(v, ["leem", "noun", "leem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onyon", "noun", "onyon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dogges", "noun", "dogges", "", "", "", "plural of dogge"]) + let v = native_list_append(v, ["obeisaunces", "noun", "obeisaunces", "", "", "", "plural of obeisaunce"]) + let v = native_list_append(v, ["alom", "noun", "alom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kex", "noun", "kexis", "", "", "", "Any dried stem"]) + let v = native_list_append(v, ["compasses", "noun", "compasses", "", "", "", "plural of compas"]) + let v = native_list_append(v, ["halu", "noun", "halu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liquore", "noun", "liquore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vage", "noun", "vage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suge", "noun", "suge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herber", "noun", "herbers", "", "", "", "A garden or"]) + let v = native_list_append(v, ["ambre", "noun", "ambres", "", "", "", "A bucket a"]) + let v = native_list_append(v, ["plovers", "noun", "plovers", "", "", "", "plural of plover"]) + let v = native_list_append(v, ["Cesare", "noun", "Cesare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aghe", "noun", "aghe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leyes", "noun", "leyes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frere", "noun", "freres", "freres", "", "", "A male associate"]) + let v = native_list_append(v, ["harme", "noun", "harme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glades", "noun", "glades", "", "", "", "plural of glade"]) + let v = native_list_append(v, ["ruder", "noun", "ruder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pannes", "noun", "pannes", "", "", "", "plural of panne"]) + let v = native_list_append(v, ["herbers", "noun", "herbers", "", "", "", "plural of herber"]) + let v = native_list_append(v, ["brane", "noun", "brane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["infancia", "noun", "infancia", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wickednesses", "noun", "wickednesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["torche", "noun", "torches", "", "", "", "A long candle"]) + let v = native_list_append(v, ["toode", "noun", "toode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["historial", "noun", "historials", "", "", "", "A history a"]) + let v = native_list_append(v, ["aron", "noun", "arons", "", "", "", "cuckoopint wakerobin."]) + let v = native_list_append(v, ["stomak", "noun", "stomakes", "", "", "", "The stomach or"]) + let v = native_list_append(v, ["kude", "noun", "kude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aars", "noun", "aars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ridership", "noun", "ridership", "", "", "", "The position of"]) + let v = native_list_append(v, ["tye", "noun", "tye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aketons", "noun", "aketons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haters", "noun", "haters", "", "", "", "plural of hatere"]) + let v = native_list_append(v, ["fermes", "noun", "fermes", "", "", "", "plural of ferme"]) + let v = native_list_append(v, ["aker", "noun", "akers", "", "", "", "field piece of"]) + let v = native_list_append(v, ["kave", "noun", "kave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Poul", "noun", "Poul", "", "", "", "a male given"]) + let v = native_list_append(v, ["trais", "noun", "trais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quatter", "noun", "quatter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glover", "noun", "glover", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["markat", "noun", "markat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hostil", "noun", "hostil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perche", "noun", "perches", "", "", "", "perch kind of"]) + let v = native_list_append(v, ["towne", "noun", "towne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geme", "noun", "geme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brid", "noun", "briddes", "", "", "", "a young bird"]) + let v = native_list_append(v, ["digite", "noun", "digite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["astat", "noun", "astat", "", "", "", "estate rank"]) + let v = native_list_append(v, ["beril", "noun", "beril", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feith", "noun", "feiths", "", "", "", "faith"]) + let v = native_list_append(v, ["demaund", "noun", "demaund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demaunde", "noun", "demaundes", "", "", "", "question query"]) + let v = native_list_append(v, ["cifre", "noun", "cifre", "", "", "", "The mathematical symbol"]) + let v = native_list_append(v, ["collere", "noun", "collere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floes", "noun", "floes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rubriche", "noun", "rubriches", "", "", "", "A heading header"]) + let v = native_list_append(v, ["korner", "noun", "korner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shapte", "noun", "shapte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aere", "noun", "aere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welp", "noun", "welp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barante", "noun", "barante", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barche", "noun", "barche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beffe", "noun", "beffe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["limbus", "noun", "limbus", "", "", "", "limbo waiting place"]) + let v = native_list_append(v, ["creatore", "noun", "creatore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bassen", "noun", "bassen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferie", "noun", "feries", "", "", "", "A place where"]) + let v = native_list_append(v, ["panade", "noun", "panades", "", "", "", "A dagger."]) + let v = native_list_append(v, ["Juppiter", "noun", "Juppiter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monne", "noun", "monne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stabil", "noun", "stabil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["otre", "noun", "otre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ostesse", "noun", "ostesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ostriche", "noun", "ostriche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pacche", "noun", "pacches", "", "", "", "A cloth patch"]) + let v = native_list_append(v, ["thar", "noun", "thar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thain", "noun", "thain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palet", "noun", "palet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Picardie", "noun", "Picardie", "", "", "", "Picardy a historical"]) + let v = native_list_append(v, ["sauvage", "noun", "sauvage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kichin", "noun", "kichin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vinen", "noun", "vinen", "", "", "", "plural of vine"]) + let v = native_list_append(v, ["sacche", "noun", "sacche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["licor", "noun", "licor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envie", "noun", "envies", "", "", "", "ill-will hatred enmity"]) + let v = native_list_append(v, ["gunner", "noun", "gunners", "", "", "", "An operator of"]) + let v = native_list_append(v, ["seste", "noun", "seste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flores", "noun", "flores", "", "", "", "plural of flor"]) + let v = native_list_append(v, ["harras", "noun", "harras", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorde", "noun", "sorde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soudan", "noun", "soudans", "", "", "", "A sultan especially"]) + let v = native_list_append(v, ["marsch", "noun", "marsch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skalle", "noun", "skalle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["topp", "noun", "topp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["torde", "noun", "torde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toppe", "noun", "toppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yok", "noun", "yokes", "", "", "", "yoke attachment connecting"]) + let v = native_list_append(v, ["lilie", "noun", "lilies", "", "", "", "Lilium candidum its"]) + let v = native_list_append(v, ["biche", "noun", "biche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meid", "noun", "meid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strak", "noun", "strak", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syster", "noun", "syster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soru", "noun", "soru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["exen", "noun", "exen", "", "", "", "plural of oxe"]) + let v = native_list_append(v, ["nett", "noun", "nett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deres", "noun", "deres", "", "", "", "plural of dere"]) + let v = native_list_append(v, ["curs", "noun", "curs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stykke", "noun", "stykkes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teren", "noun", "teren", "", "", "", "plural of teer"]) + let v = native_list_append(v, ["melodi", "noun", "melodi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compas", "noun", "compasses", "", "", "", "Guile craft or"]) + let v = native_list_append(v, ["hylle", "noun", "hylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vermine", "noun", "vermine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spek", "noun", "spek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["resine", "noun", "resine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hengel", "noun", "hengeles", "", "", "", "hinge device a"]) + let v = native_list_append(v, ["wildernesses", "noun", "wildernesses", "", "", "", "plural of wildernesse"]) + let v = native_list_append(v, ["lourde", "noun", "lourde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blasfemie", "noun", "blasfemies", "", "", "", "Blasphemy insulting acts"]) + let v = native_list_append(v, ["blasfeme", "noun", "blasfemes", "", "", "", "blasphemer"]) + let v = native_list_append(v, ["gome", "noun", "gomes", "gomes", "gomen", "", "A man a"]) + let v = native_list_append(v, ["cataracte", "noun", "cataracte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saule", "noun", "saule", "", "", "", "Ones fill a"]) + let v = native_list_append(v, ["castel", "noun", "castels", "", "", "", "castle"]) + let v = native_list_append(v, ["coriandre", "noun", "coriandre", "", "", "", "Coriander Coriandrum sativum"]) + let v = native_list_append(v, ["safran", "noun", "safran", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crucche", "noun", "crucches", "", "", "", "crutch"]) + let v = native_list_append(v, ["kend", "noun", "kend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gravestones", "noun", "gravestones", "", "", "", "plural of graveston"]) + let v = native_list_append(v, ["sodomie", "noun", "sodomie", "", "", "", "sodomy sexual behaviour"]) + let v = native_list_append(v, ["byt", "noun", "byt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gouvernance", "noun", "gouvernance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freme", "noun", "fremes", "", "", "", "benefit profit advantage"]) + let v = native_list_append(v, ["greve", "noun", "greves", "", "", "", "thicket copse bush"]) + let v = native_list_append(v, ["lacche", "noun", "lacches", "", "", "", "latch of a"]) + let v = native_list_append(v, ["mansione", "noun", "mansione", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corne", "noun", "cornes", "", "", "", "callus"]) + let v = native_list_append(v, ["deler", "noun", "deler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cofre", "noun", "cofres", "", "", "", "A coffer box"]) + let v = native_list_append(v, ["doene", "noun", "doene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brasse", "noun", "brasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["napery", "noun", "napery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gers", "noun", "gers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pake", "noun", "pake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hars", "noun", "hars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toth", "noun", "teth", "", "", "", "A tooth projection"]) + let v = native_list_append(v, ["ketyl", "noun", "ketyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["squame", "noun", "squames", "", "", "", "Metal that flakes"]) + let v = native_list_append(v, ["rebelling", "noun", "rebelling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hosen", "noun", "hosen", "", "", "", "plural of hose"]) + let v = native_list_append(v, ["brewers", "noun", "brewers", "", "", "", "plural of brewere"]) + let v = native_list_append(v, ["pacientes", "noun", "pacientes", "", "", "", "plural of pacient"]) + let v = native_list_append(v, ["knyfe", "noun", "knyfe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wolfe", "noun", "wolfe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mornynge", "noun", "mornynge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bringe", "noun", "bringes", "", "", "", "gift"]) + let v = native_list_append(v, ["grounde", "noun", "grounde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blesse", "noun", "blesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seyde", "noun", "seyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shippe", "noun", "shippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heare", "noun", "heare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyghte", "noun", "lyghte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["businesse", "noun", "businesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reveling", "noun", "reveling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cherche", "noun", "cherche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houre", "noun", "houres", "", "", "", "hour a 60-minute"]) + let v = native_list_append(v, ["warner", "noun", "warner", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ste", "noun", "ste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saucers", "noun", "saucers", "", "", "", "plural of saucer"]) + let v = native_list_append(v, ["gendre", "noun", "gendres", "", "", "", "type class"]) + let v = native_list_append(v, ["tach", "noun", "tach", "", "", "", "touchwood tinder"]) + let v = native_list_append(v, ["dueling", "noun", "dueling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aske", "noun", "aske", "", "", "", "A newt or"]) + let v = native_list_append(v, ["clocke", "noun", "clocke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebell", "noun", "rebell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soule", "noun", "soules", "", "", "", "A soul or"]) + let v = native_list_append(v, ["ladie", "noun", "ladie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorrowe", "noun", "sorrowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brest", "noun", "brestes", "", "", "", "chest thorax"]) + let v = native_list_append(v, ["flowre", "noun", "flowre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maide", "noun", "maide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mynde", "noun", "myndes", "", "", "", "mind"]) + let v = native_list_append(v, ["haire", "noun", "haire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crowne", "noun", "crowne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["henges", "noun", "henges", "", "", "", "plural of henge"]) + let v = native_list_append(v, ["shriving", "noun", "shriving", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["groynes", "noun", "groynes", "", "", "", "plural of groyn"]) + let v = native_list_append(v, ["cedr", "noun", "cedr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duale", "noun", "duale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kalf", "noun", "kalf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knouleche", "noun", "knouleche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skift", "noun", "skifts", "", "", "", "share portion lot"]) + let v = native_list_append(v, ["rither", "noun", "rither", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lafe", "noun", "lafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sond", "noun", "sond", "", "", "", "sand finely ground"]) + let v = native_list_append(v, ["osele", "noun", "osele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["simplicite", "noun", "simplicite", "", "", "", "The nature of"]) + let v = native_list_append(v, ["vewe", "noun", "vewes", "", "", "", "An inspection checkup"]) + let v = native_list_append(v, ["organe", "noun", "organes", "", "", "", "A device used"]) + let v = native_list_append(v, ["naperon", "noun", "naperon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suhe", "noun", "suhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moten", "noun", "moten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["motene", "noun", "motene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kyst", "noun", "kyst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mirra", "noun", "mirra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptiste", "noun", "baptiste", "", "", "", "baptist one who"]) + let v = native_list_append(v, ["anemie", "noun", "anemie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kry", "noun", "kry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyme", "noun", "tymes", "", "", "", "The concept of"]) + let v = native_list_append(v, ["kinde", "noun", "kinde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lawe", "noun", "lawes", "", "", "", "An individual law"]) + let v = native_list_append(v, ["sleepe", "noun", "sleepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kynge", "noun", "kynge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beleeve", "noun", "beleeve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emperour", "noun", "emperours", "", "", "", "An emperor male"]) + let v = native_list_append(v, ["churche", "noun", "churche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weeke", "noun", "weeke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["storme", "noun", "storme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compasse", "noun", "compasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blossome", "noun", "blossome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moneth", "noun", "monethes", "", "", "", "month"]) + let v = native_list_append(v, ["batre", "noun", "batre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cisterne", "noun", "cisternes", "", "", "", "cistern water receptacle"]) + let v = native_list_append(v, ["petit jury", "noun", "petit jury", "", "", "", "petit jury"]) + let v = native_list_append(v, ["kanne", "noun", "kanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biscop", "noun", "biscop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syd", "noun", "syd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lere", "noun", "lere", "", "", "", "leer ones appearance"]) + let v = native_list_append(v, ["burgages", "noun", "burgages", "", "", "", "plural of burgage"]) + let v = native_list_append(v, ["sueth", "noun", "sueth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salme", "noun", "salme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sanguinarie", "noun", "sanguinarie", "", "", "", "shepherds purse Capsella"]) + let v = native_list_append(v, ["deare", "noun", "deare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ostriches", "noun", "ostriches", "", "", "", "plural of ostrich"]) + let v = native_list_append(v, ["gladder", "noun", "gladders", "", "", "", "One who makes"]) + let v = native_list_append(v, ["lepe", "noun", "lepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leep", "noun", "leep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tym", "noun", "tym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schering", "noun", "schering", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curde", "noun", "curde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tundir", "noun", "tundir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medo", "noun", "medo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["walkon", "noun", "walkon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["staaf", "noun", "staaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dragoun", "noun", "dragouns", "", "", "", "A dragon drake"]) + let v = native_list_append(v, ["mulle", "noun", "mulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolle", "noun", "tolle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["empereur", "noun", "empereur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["garson", "noun", "garson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["keton", "noun", "keton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mys", "noun", "mys", "", "", "", "plural of mous"]) + let v = native_list_append(v, ["spone", "noun", "spones", "", "", "", "A spoon or"]) + let v = native_list_append(v, ["starne", "noun", "starne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mangier", "noun", "mangier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stecche", "noun", "stecche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["segg", "noun", "segg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reven", "noun", "reven", "", "", "", "plural of reve"]) + let v = native_list_append(v, ["stuarde", "noun", "stuarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blamer", "noun", "blamers", "", "", "", "blamer accuser"]) + let v = native_list_append(v, ["blamers", "noun", "blamers", "", "", "", "plural of blamer"]) + let v = native_list_append(v, ["tabel", "noun", "tabel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cynk", "noun", "cynk", "", "", "", "Cinque the number"]) + let v = native_list_append(v, ["swages", "noun", "swages", "", "", "", "plural of swage"]) + let v = native_list_append(v, ["sotelte", "noun", "sotelte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fod", "noun", "fod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armerie", "noun", "armerie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Muses", "noun", "Muses", "", "", "", "plural of Muse"]) + let v = native_list_append(v, ["hoste", "noun", "hostes", "", "", "", "host"]) + let v = native_list_append(v, ["baite", "noun", "baite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cader", "noun", "*cadres", "", "", "", "A cradle."]) + let v = native_list_append(v, ["stithy", "noun", "stithies", "", "", "", "anvil iron block"]) + let v = native_list_append(v, ["sekte", "noun", "sekte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brist", "noun", "brist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wolde", "noun", "wolde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roosting", "noun", "roosting", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deys", "noun", "deys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dowers", "noun", "dowers", "", "", "", "plural of dower"]) + let v = native_list_append(v, ["cotes", "noun", "cotes", "", "", "", "plural of cote"]) + let v = native_list_append(v, ["soules", "noun", "soules", "", "", "", "plural of soule"]) + let v = native_list_append(v, ["haires", "noun", "haires", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lawes", "noun", "lawes", "", "", "", "plural of lawe"]) + let v = native_list_append(v, ["emperours", "noun", "emperours", "", "", "", "plural of emperour"]) + let v = native_list_append(v, ["stormes", "noun", "stormes", "", "", "", "plural of storm"]) + let v = native_list_append(v, ["betere", "noun", "betere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aand", "noun", "aand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hochepoche", "noun", "hochepoches", "", "", "", "hotchpotch soup figuratively"]) + let v = native_list_append(v, ["sewe", "noun", "sewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welken", "noun", "welken", "", "", "", "The atmosphere the"]) + let v = native_list_append(v, ["welk", "noun", "welkes", "", "", "", "whelk sea snail"]) + let v = native_list_append(v, ["hirs", "noun", "hirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["platter", "noun", "platter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grys", "noun", "gryses", "", "", "", "gray grey"]) + let v = native_list_append(v, ["shryne", "noun", "shrynes", "", "", "", "shrine"]) + let v = native_list_append(v, ["schep", "noun", "schep", "", "", "", "sheep"]) + let v = native_list_append(v, ["materas", "noun", "materases", "", "", "", "A mattress a"]) + let v = native_list_append(v, ["wys", "noun", "wyses", "", "", "", "A wise individual"]) + let v = native_list_append(v, ["gemen", "noun", "gemen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mantelle", "noun", "mantelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brome", "noun", "brome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mercure", "noun", "mercure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["girle", "noun", "girles", "", "", "", "A child a"]) + let v = native_list_append(v, ["ladye", "noun", "ladye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["necke", "noun", "necke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goddesse", "noun", "goddesses", "", "", "", "goddess"]) + let v = native_list_append(v, ["honestie", "noun", "honestie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anys", "noun", "anys", "", "", "", "anise"]) + let v = native_list_append(v, ["marne", "noun", "marne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fendis", "noun", "fendis", "", "", "", "plural of fend"]) + let v = native_list_append(v, ["fronce", "noun", "fronce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beaute", "noun", "beautes", "", "", "", "The quality of"]) + let v = native_list_append(v, ["chaunce", "noun", "chaunces", "", "", "", "An especially random"]) + let v = native_list_append(v, ["heire", "noun", "heire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noyse", "noun", "noyses", "", "", "", "A sound auditory"]) + let v = native_list_append(v, ["voyce", "noun", "voyce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monie", "noun", "monie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heate", "noun", "heate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["contree", "noun", "contree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blason", "noun", "blason", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worlde", "noun", "worlde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["speke", "noun", "speke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wente", "noun", "wentes", "", "", "", "A course a"]) + let v = native_list_append(v, ["hande", "noun", "hande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["daye", "noun", "daye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foole", "noun", "foole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crucifier", "noun", "crucifiers", "", "", "", "One who crucifies."]) + let v = native_list_append(v, ["wark", "noun", "wark", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tange", "noun", "tange", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["piere", "noun", "piere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["massez", "noun", "massez", "", "", "", "plural of masse"]) + let v = native_list_append(v, ["reveres", "noun", "reveres", "", "", "", "plural of revere"]) + let v = native_list_append(v, ["tombes", "noun", "tombes", "", "", "", "plural of tombe"]) + let v = native_list_append(v, ["redressing", "noun", "redressing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fruct", "noun", "fruct", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skratt", "noun", "skratt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bryde", "noun", "bryde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiele", "noun", "fieles", "", "", "", "A string instrument"]) + let v = native_list_append(v, ["tapster", "noun", "tapster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bandes", "noun", "bandes", "", "", "", "plural of band"]) + let v = native_list_append(v, ["magnes", "noun", "magnes", "", "", "", "lodestone a magnetic"]) + let v = native_list_append(v, ["magnas", "noun", "magnas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kund", "noun", "kund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sciens", "noun", "sciens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["binde", "noun", "binde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gardes", "noun", "gardes", "", "", "", "plural of garde"]) + let v = native_list_append(v, ["grippes", "noun", "grippes", "", "", "", "plural of gripe"]) + let v = native_list_append(v, ["coule", "noun", "coule", "", "", "", "A cowl a"]) + let v = native_list_append(v, ["musarde", "noun", "musarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musardes", "noun", "musardes", "", "", "", "plural of musard"]) + let v = native_list_append(v, ["foules", "noun", "foules", "", "", "", "plural of foul"]) + let v = native_list_append(v, ["ruine", "noun", "ruine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["profite", "noun", "profite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haches", "noun", "haches", "", "", "", "plural of hache"]) + let v = native_list_append(v, ["hachez", "noun", "hachez", "", "", "", "plural of hache"]) + let v = native_list_append(v, ["contas", "noun", "contas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaines", "noun", "gaines", "", "", "", "plural of gayn"]) + let v = native_list_append(v, ["douches", "noun", "douches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tresse", "noun", "tresses", "", "", "", "braid tress"]) + let v = native_list_append(v, ["flokk", "noun", "flokk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leese", "noun", "leese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bombardes", "noun", "bombardes", "", "", "", "plural of bombard"]) + let v = native_list_append(v, ["fiole", "noun", "fioles", "", "", "", "A receptacle vial"]) + let v = native_list_append(v, ["aventures", "noun", "aventures", "", "", "", "plural of aventure"]) + let v = native_list_append(v, ["dille", "noun", "dille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salter", "noun", "salter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorel", "noun", "sorel", "", "", "", "sorrel Rumex acetosa"]) + let v = native_list_append(v, ["seint", "noun", "seint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skall", "noun", "skall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knaw", "noun", "knaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ensample", "noun", "ensamples", "", "", "", "example"]) + let v = native_list_append(v, ["mangerie", "noun", "mangeries", "", "", "", "feast banquet"]) + let v = native_list_append(v, ["citie", "noun", "citie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eyen", "noun", "eyen", "", "", "", "plural of eye"]) + let v = native_list_append(v, ["frut", "noun", "frut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strook", "noun", "strookes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["juges", "noun", "juges", "", "", "", "plural of juge"]) + let v = native_list_append(v, ["songes", "noun", "songes", "", "", "", "plural of song"]) + let v = native_list_append(v, ["allie", "noun", "allies", "", "", "", "The state of"]) + let v = native_list_append(v, ["verdit", "noun", "verdites", "", "", "", "A verdict a"]) + let v = native_list_append(v, ["coker", "noun", "cokeres", "", "", "", "A kind of"]) + let v = native_list_append(v, ["flus", "noun", "flus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flumes", "noun", "flumes", "", "", "", "plural of flum"]) + let v = native_list_append(v, ["girles", "noun", "girles", "", "", "", "plural of girle"]) + let v = native_list_append(v, ["beautes", "noun", "beautes", "", "", "", "plural of beaute"]) + let v = native_list_append(v, ["chaunces", "noun", "chaunces", "", "", "", "plural of chaunce"]) + let v = native_list_append(v, ["heires", "noun", "heires", "", "", "", "plural of heir"]) + let v = native_list_append(v, ["noyses", "noun", "noyses", "", "", "", "plural of noyse"]) + let v = native_list_append(v, ["contrees", "noun", "contrees", "", "", "", "plural of contre"]) + let v = native_list_append(v, ["dayes", "noun", "dayes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tord", "noun", "tordes", "", "", "", "Feces or fecal"]) + let v = native_list_append(v, ["tordes", "noun", "tordes", "", "", "", "plural of tord"]) + let v = native_list_append(v, ["stapel", "noun", "stapels", "", "", "", "post staff stake"]) + let v = native_list_append(v, ["crevez", "noun", "crevez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hulle", "noun", "hulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sours", "noun", "sours", "", "", "", "A source or"]) + let v = native_list_append(v, ["oke", "noun", "oke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mettes", "noun", "mettes", "", "", "", "plural of mette"]) + let v = native_list_append(v, ["misse", "noun", "misse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["battes", "noun", "battes", "", "", "", "plural of bat"]) + let v = native_list_append(v, ["retenue", "noun", "retenues", "", "", "", "A small group"]) + let v = native_list_append(v, ["retenues", "noun", "retenues", "", "", "", "plural of retenue"]) + let v = native_list_append(v, ["teppe", "noun", "teppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alven", "noun", "alven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verveine", "noun", "verveine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["errer", "noun", "errer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tamarinde", "noun", "tamarinde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burde", "noun", "burde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dekin", "noun", "dekin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tribus", "noun", "tribus", "", "", "", "plural of tribe"]) + let v = native_list_append(v, ["magicien", "noun", "magiciens", "", "", "", "magician mage"]) + let v = native_list_append(v, ["percher", "noun", "perchers", "", "", "", "A percher kind"]) + let v = native_list_append(v, ["perches", "noun", "perches", "", "", "", "plural of perche"]) + let v = native_list_append(v, ["couvent", "noun", "couvent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yelow", "noun", "yelow", "", "", "", "yellow"]) + let v = native_list_append(v, ["croupe", "noun", "croupes", "", "", "", "The hindquarters or"]) + let v = native_list_append(v, ["plais", "noun", "plais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plue", "noun", "plue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blys", "noun", "blys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["balles", "noun", "balles", "", "", "", "plural of bal"]) + let v = native_list_append(v, ["bittes", "noun", "bittes", "", "", "", "plural of bitte"]) + let v = native_list_append(v, ["broches", "noun", "broches", "", "", "", "plural of broche"]) + let v = native_list_append(v, ["cornes", "noun", "cornes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herbes", "noun", "herbes", "", "", "", "plural of herbe"]) + let v = native_list_append(v, ["richesses", "noun", "richesses", "", "", "", "plural of richesse"]) + let v = native_list_append(v, ["logge", "noun", "logges", "", "", "", "large long stick"]) + let v = native_list_append(v, ["capitaines", "noun", "capitaines", "", "", "", "plural of capitain"]) + let v = native_list_append(v, ["chapitres", "noun", "chapitres", "", "", "", "plural of chapitre"]) + let v = native_list_append(v, ["couchers", "noun", "couchers", "", "", "", "plural of coucher"]) + let v = native_list_append(v, ["leme", "noun", "lemes", "", "", "", "Fire or an"]) + let v = native_list_append(v, ["godes", "noun", "godes", "", "", "", "plural of gode"]) + let v = native_list_append(v, ["magiciens", "noun", "magiciens", "", "", "", "plural of magicien"]) + let v = native_list_append(v, ["shet", "noun", "shet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyse", "noun", "wyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["newe", "noun", "newe", "", "", "", "The new moon."]) + let v = native_list_append(v, ["queene", "noun", "queene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holde", "noun", "holde", "", "", "", "fidelity"]) + let v = native_list_append(v, ["deere", "noun", "deere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deale", "noun", "deale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worde", "noun", "worde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unch", "noun", "unch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["standarde", "noun", "standarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["courtes", "noun", "courtes", "", "", "", "plural of court"]) + let v = native_list_append(v, ["surs", "noun", "surs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["purs", "noun", "purses", "", "", "", "bag sack pouch"]) + let v = native_list_append(v, ["mous", "noun", "mys", "", "", "", "mouse or shrew"]) + let v = native_list_append(v, ["tartes", "noun", "tartes", "", "", "", "plural of tarte"]) + let v = native_list_append(v, ["horsman", "noun", "horsmen", "", "", "", "horseman mounted soldier"]) + let v = native_list_append(v, ["gayn", "noun", "gaines", "", "", "", "edge advantage a"]) + let v = native_list_append(v, ["cirons", "noun", "cirons", "", "", "", "plural of ciron"]) + let v = native_list_append(v, ["assisse", "noun", "assisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warte", "noun", "wartes", "", "", "", "mole wart boil"]) + let v = native_list_append(v, ["kode", "noun", "kode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angele", "noun", "angele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esche", "noun", "esche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coper", "noun", "coper", "", "", "", "copper element and"]) + let v = native_list_append(v, ["celly", "noun", "celly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["semes", "noun", "semes", "", "", "", "plural of seem"]) + let v = native_list_append(v, ["mortes", "noun", "mortes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perel", "noun", "perel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suvel", "noun", "suvel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serow", "noun", "serow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helmen", "noun", "helmen", "", "", "", "plural of helm"]) + let v = native_list_append(v, ["swad", "noun", "swad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hengen", "noun", "hengen", "", "", "", "imprisonment"]) + let v = native_list_append(v, ["patin", "noun", "patin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moton", "noun", "moton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hevin", "noun", "hevin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saven", "noun", "saven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ariste", "noun", "ariste", "aristes", "", "", "The rising of"]) + let v = native_list_append(v, ["syr", "noun", "syr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eren", "noun", "eren", "", "", "", "plural of ere"]) + let v = native_list_append(v, ["officere", "noun", "officere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chamelle", "noun", "chamelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fat", "noun", "fattes", "", "", "", "vessel"]) + let v = native_list_append(v, ["brandire", "noun", "brandire", "", "", "", "gridiron trivet"]) + let v = native_list_append(v, ["serjeant", "noun", "serjeant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trone", "noun", "trones", "", "", "", "A throne a"]) + let v = native_list_append(v, ["armure", "noun", "armures", "", "", "", "Armaments weapons and"]) + let v = native_list_append(v, ["armures", "noun", "armures", "", "", "", "plural of armure"]) + let v = native_list_append(v, ["chambres", "noun", "chambres", "", "", "", "plural of chambre"]) + let v = native_list_append(v, ["ministres", "noun", "ministres", "", "", "", "plural of ministre"]) + let v = native_list_append(v, ["fowles", "noun", "fowles", "", "", "", "plural of fowl"]) + let v = native_list_append(v, ["stround", "noun", "stroundes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bery", "noun", "bery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["phane", "noun", "phane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palmer", "noun", "palmeres", "", "", "", "A pilgrim who"]) + let v = native_list_append(v, ["palmeres", "noun", "palmeres", "", "", "", "plural of palmer"]) + let v = native_list_append(v, ["ȝeres", "noun", "ȝeres", "", "", "", "plural of ȝere"]) + let v = native_list_append(v, ["freind", "noun", "freind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cordes", "noun", "cordes", "", "", "", "plural of corde"]) + let v = native_list_append(v, ["rosee", "noun", "rosees", "", "", "", "A meal incorporating"]) + let v = native_list_append(v, ["amiral", "noun", "amirales", "", "", "", "emir a Muslim"]) + let v = native_list_append(v, ["suger", "noun", "suger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vintere", "noun", "vintere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noe", "noun", "noe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rop", "noun", "ropes", "", "", "", "A cord or"]) + let v = native_list_append(v, ["wunne", "noun", "wunne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apocalipse", "noun", "apocalipse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["officier", "noun", "officier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warre", "noun", "warre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hange", "noun", "hange", "", "", "", "slope"]) + let v = native_list_append(v, ["eorðe", "noun", "eorðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gibet", "noun", "gibets", "", "", "", "An upright post"]) + let v = native_list_append(v, ["ayre", "noun", "ayre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calende", "noun", "calende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tabler", "noun", "tabelers", "", "", "", "Backgammon or a"]) + let v = native_list_append(v, ["spiller", "noun", "spiller", "", "", "", "destroyer"]) + let v = native_list_append(v, ["fetare", "noun", "fetare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["panter", "noun", "panters", "", "", "", "A pantler manager"]) + let v = native_list_append(v, ["panters", "noun", "panters", "", "", "", "plural of panter"]) + let v = native_list_append(v, ["rubrik", "noun", "rubrik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ahe", "noun", "ahe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ropers", "noun", "ropers", "", "", "", "plural of roper"]) + let v = native_list_append(v, ["treen", "noun", "treen", "", "", "", "items made of"]) + let v = native_list_append(v, ["tungol", "noun", "tunglen", "", "", "", "a planet a"]) + let v = native_list_append(v, ["barne", "noun", "barne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fley", "noun", "fley", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helden", "noun", "helden", "", "", "", "plural of helde"]) + let v = native_list_append(v, ["oratories", "noun", "oratories", "", "", "", "plural of oratory"]) + let v = native_list_append(v, ["eom", "noun", "eom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myln", "noun", "myln", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["extorsion", "noun", "extorsion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colmasse", "noun", "colmasse", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dunge", "noun", "dunge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parabole", "noun", "parabole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paunches", "noun", "paunches", "", "", "", "plural of paunche"]) + let v = native_list_append(v, ["dyner", "noun", "dyners", "", "", "", "lunch second meal"]) + let v = native_list_append(v, ["steppes", "noun", "steppes", "", "", "", "plural of steppe"]) + let v = native_list_append(v, ["vyene", "noun", "vyene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holo", "noun", "holo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spencer", "noun", "spencers", "", "", "", "One who works"]) + let v = native_list_append(v, ["sauveur", "noun", "sauveur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merveille", "noun", "merveille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ryby", "noun", "ryby", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stremare", "noun", "stremare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spanne", "noun", "spannes", "", "", "", "A span unit"]) + let v = native_list_append(v, ["feld", "noun", "feld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evel", "noun", "evel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fant", "noun", "fant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bason", "noun", "bason", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["differens", "noun", "differens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rof", "noun", "roves", "", "", "", "A roof top"]) + let v = native_list_append(v, ["chast", "noun", "chast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ramson", "noun", "ramsons", "", "", "", "ramsons Allium ursinum"]) + let v = native_list_append(v, ["ramsons", "noun", "ramsons", "", "", "", "plural of ramson"]) + let v = native_list_append(v, ["frounce", "noun", "frounces", "", "", "", "A wrinkle fold"]) + let v = native_list_append(v, ["faon", "noun", "faon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matras", "noun", "matras", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blom", "noun", "blom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grawe", "noun", "grawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swel", "noun", "swel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleg", "noun", "sleg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["binne", "noun", "binne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drihten", "noun", "drihten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caser", "noun", "caser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suette", "noun", "suette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweven", "noun", "swevenes", "", "", "", "dream especially a"]) + let v = native_list_append(v, ["Sampson", "noun", "Sampson", "", "", "", "Samson biblical character"]) + let v = native_list_append(v, ["flexe", "noun", "flexe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["may", "verb", "mai", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["abaist", "verb", "abaist", "", "", "", "past participle of"]) + let v = native_list_append(v, ["abate", "verb", "abate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abit", "verb", "abit", "", "", "", "third-person singular simple"]) + let v = native_list_append(v, ["abreggen", "verb", "abregged", "abregged", "abregged", "", "To lessen either"]) + let v = native_list_append(v, ["on", "verb", "on", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["the", "verb", "the", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["accompt", "verb", "accompt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alien", "verb", "alien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spring", "verb", "spring", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["de", "verb", "de", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["die", "verb", "die", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["can", "verb", "can", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["one", "verb", "one", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seme", "verb", "seme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crude", "verb", "crude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["man", "verb", "man", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["be", "verb", "be", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["is", "verb", "es", "ys", "us", "", "third-person singular present"]) + let v = native_list_append(v, ["are", "verb", "are", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ten", "verb", "tegh", "towen", "towen", "", "To draw lead."]) + let v = native_list_append(v, ["most", "verb", "most", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["wage", "verb", "wage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tax", "verb", "tax", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["send", "verb", "send", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["take", "verb", "toke", "taken", "taken", "", "alternative form of"]) + let v = native_list_append(v, ["love", "verb", "love", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pollute", "verb", "pollute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["win", "verb", "win", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["create", "verb", "create", "", "", "", "first-person/subjective/imperative singular present"]) + let v = native_list_append(v, ["here", "verb", "here", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["green", "verb", "gree", "greed", "greed", "", "To come to"]) + let v = native_list_append(v, ["wrote", "verb", "wrote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["write", "verb", "write", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wring", "verb", "wring", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["been", "verb", "was", "was", "be", "", "To be to"]) + let v = native_list_append(v, ["thee", "verb", "thee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shit", "verb", "shit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["an", "verb", "a", "ane", "o", "", "alternative form of"]) + let v = native_list_append(v, ["hunt", "verb", "hunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["her", "verb", "her", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quaver", "verb", "quaver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["any", "verb", "any", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["art", "verb", "eart", "ert", "", "", "second-person singular present"]) + let v = native_list_append(v, ["west", "verb", "west", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["was", "verb", "was", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["wax", "verb", "wax", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cold", "verb", "cold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quake", "verb", "quake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hers", "verb", "hers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["very", "verb", "very", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hole", "verb", "holn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dye", "verb", "dye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rose", "verb", "rose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minister", "verb", "minister", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruby", "verb", "ruby", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ba", "verb", "bā", "", "", "", "Imperative form of"]) + let v = native_list_append(v, ["gripe", "verb", "gripe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ban", "verb", "bān", "", "", "", "To kiss."]) + let v = native_list_append(v, ["bite", "verb", "bite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["think", "verb", "think", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cry", "verb", "cry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ben", "verb", "ben", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["safe", "verb", "safe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["save", "verb", "save", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["he", "verb", "he", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["them", "verb", "them", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foot", "verb", "foot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["translate", "verb", "translate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["path", "verb", "path", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["do", "verb", "do", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axe", "verb", "axe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["regnen", "verb", "regned", "", "regned", "", "to reign to"]) + let v = native_list_append(v, ["hay", "verb", "hay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teman", "verb", "teman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tak", "verb", "takked", "", "takked", "", "alternative form of"]) + let v = native_list_append(v, ["arisen", "verb", "arise", "aros", "arise", "", "arise"]) + let v = native_list_append(v, ["were", "verb", "weer", "weere", "wer", "", "inflection of been"]) + let v = native_list_append(v, ["bore", "verb", "bore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beaten", "verb", "beaten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bet", "verb", "bet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blow", "verb", "blow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bred", "verb", "bred", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bring", "verb", "bring", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cling", "verb", "cling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["driven", "verb", "drive", "drof", "drive", "", "to drive"]) + let v = native_list_append(v, ["dwell", "verb", "dwell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fell", "verb", "fell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fallen", "verb", "fel", "fel", "falle", "", "to fall"]) + let v = native_list_append(v, ["fight", "verb", "fight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["found", "verb", "found", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fling", "verb", "fling", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dart", "verb", "dart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["given", "verb", "gaf", "gifen", "geven", "", "alternative form of"]) + let v = native_list_append(v, ["gone", "verb", "gone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["held", "verb", "huld", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["go", "verb", "go", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grow", "verb", "grow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["have", "verb", "have", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hide", "verb", "hide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hid", "verb", "hid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hit", "verb", "hit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurt", "verb", "hurt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lay", "verb", "lay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lend", "verb", "lend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["make", "verb", "make", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["made", "verb", "made", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wine", "verb", "wine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ye", "verb", "yeyn", "yee", "ȝe", "", "Address a single"]) + let v = native_list_append(v, ["when", "verb", "when", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mow", "verb", "mow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cheese", "verb", "cheese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["attend", "verb", "attend", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["branch", "verb", "branch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reset", "verb", "reset", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ride", "verb", "ride", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ridden", "verb", "ridde", "ridded", "ridded", "", "to clear make"]) + let v = native_list_append(v, ["risen", "verb", "rise", "ros", "rise", "", "to rise"]) + let v = native_list_append(v, ["run", "verb", "run", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["said", "verb", "said", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seen", "verb", "saugh", "saugh", "yseen", "", "To see to"]) + let v = native_list_append(v, ["shake", "verb", "shake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shaken", "verb", "shaken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shine", "verb", "shine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shone", "verb", "shone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slide", "verb", "slide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sting", "verb", "sting", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["striven", "verb", "strive", "strof", "strive", "", "to strive"]) + let v = native_list_append(v, ["swell", "verb", "swell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taken", "verb", "tok", "tok", "take", "", "to take"]) + let v = native_list_append(v, ["thrust", "verb", "thrust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["undertaken", "verb", "undertok", "", "", "", "To pledge to"]) + let v = native_list_append(v, ["uphold", "verb", "uphold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woken", "verb", "woke", "woked", "woked", "", "To become weakened"]) + let v = native_list_append(v, ["worn", "verb", "worn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["won", "verb", "woned", "", "woned", "", "alternative form of"]) + let v = native_list_append(v, ["wind", "verb", "wind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shape", "verb", "shape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["change", "verb", "change", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["by", "verb", "by", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hebben", "verb", "hebben", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worden", "verb", "worde", "worded", "worded", "", "to speak about"]) + let v = native_list_append(v, ["decline", "verb", "decline", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["end", "verb", "end", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["et", "verb", "eet", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["low", "verb", "low", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melt", "verb", "melt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["house", "verb", "house", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liver", "verb", "liver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["live", "verb", "live", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["count", "verb", "count", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stone", "verb", "stone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flame", "verb", "flame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["full", "verb", "full", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rotten", "verb", "rotten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fil", "verb", "fil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duke", "verb", "duke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hilt", "verb", "hilt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["san", "verb", "sãn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stroke", "verb", "stroke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mare", "verb", "mare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["powder", "verb", "powder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brew", "verb", "brew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["home", "verb", "home", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gain", "verb", "gain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weer", "verb", "weer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["want", "verb", "want", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pipe", "verb", "pipe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mase", "verb", "mase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["han", "verb", "han", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["landen", "verb", "landen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["game", "verb", "game", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["up haf", "verb", "up haf", "", "", "", "past of upheven"]) + let v = native_list_append(v, ["dampen", "verb", "dampen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dampne", "verb", "dampne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hey", "verb", "hey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ha", "verb", "ha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rot", "verb", "rot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dame", "verb", "dame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["better", "verb", "better", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mot", "verb", "mot", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["munt", "verb", "munt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mint", "verb", "mint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stien", "verb", "stie", "stie", "stie", "", "To travel vertically"]) + let v = native_list_append(v, ["em", "verb", "em", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["si", "verb", "si", "", "", "", "singular present subjunctive"]) + let v = native_list_append(v, ["ga", "verb", "ga", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dy", "verb", "dy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["am", "verb", "ame", "em", "", "", "first-person singular present"]) + let v = native_list_append(v, ["es", "verb", "es", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wan", "verb", "wan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["way", "verb", "way", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bow", "verb", "bow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muse", "verb", "muse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kiss", "verb", "kiss", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crook", "verb", "crook", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mate", "verb", "mate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waist", "verb", "waist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rust", "verb", "rust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flue", "verb", "flue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clap", "verb", "clap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tap", "verb", "tap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noise", "verb", "noise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fan", "verb", "fan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sel", "verb", "sel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wat", "verb", "wat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shadow", "verb", "shadow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grain", "verb", "grain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tern", "verb", "tern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bergen", "verb", "bergen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruse", "verb", "ruse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fare", "verb", "fare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waste", "verb", "waste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["don", "verb", "dide", "dide", "do", "", "To do perform"]) + let v = native_list_append(v, ["mane", "verb", "mane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["purge", "verb", "purge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sein", "verb", "sein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seine", "verb", "seine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mote", "verb", "mote", "", "", "", "inflection of moten"]) + let v = native_list_append(v, ["bes", "verb", "bes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mourn", "verb", "mourn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ros", "verb", "ros", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rope", "verb", "rope", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wen", "verb", "wen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spew", "verb", "spew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bringen", "verb", "bringen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rude", "verb", "rude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nee", "verb", "nee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["semi", "verb", "semi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sow", "verb", "sow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bray", "verb", "bray", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["walk", "verb", "walk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wipe", "verb", "wipe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blame", "verb", "blame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deny", "verb", "deny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snore", "verb", "snore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adresse", "verb", "adresse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["token", "verb", "toke", "tok", "tokon", "", "simple past plural"]) + let v = native_list_append(v, ["sauce", "verb", "sauce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destroy", "verb", "destroy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hai", "verb", "hai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esse", "verb", "esse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snare", "verb", "snare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grisen", "verb", "grise", "grised", "grised", "", "to shudder quake"]) + let v = native_list_append(v, ["controllen", "verb", "controllen", "", "", "", "to restrain or"]) + let v = native_list_append(v, ["compare", "verb", "compare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grunt", "verb", "grunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agree", "verb", "agree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doo", "verb", "doo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trace", "verb", "trace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anger", "verb", "anger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bord", "verb", "bord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deceive", "verb", "deceive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drop", "verb", "drop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["follow", "verb", "follow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hostel", "verb", "hostel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eski", "verb", "eski", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whine", "verb", "whine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eggen", "verb", "egged", "egged", "egged", "", "To egg on"]) + let v = native_list_append(v, ["leven", "verb", "leve", "lefte", "left", "", "to leave"]) + let v = native_list_append(v, ["rennen", "verb", "ran", "yrunnen", "yrunnen", "", "to run go"]) + let v = native_list_append(v, ["sad", "verb", "sad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nap", "verb", "nap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nyen", "verb", "nyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crepe", "verb", "crepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["till", "verb", "till", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanton", "verb", "wanton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enchant", "verb", "enchant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pace", "verb", "pace", "", "", "", "proceed go forward"]) + let v = native_list_append(v, ["sour", "verb", "sour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wise", "verb", "wise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wave", "verb", "wave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assuage", "verb", "assuage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["office", "verb", "office", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["like", "verb", "like", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dei", "verb", "dei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoxe", "verb", "hoxe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vale", "verb", "vale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bathe", "verb", "bathe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hast", "verb", "havest", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["bere", "verb", "bere", "", "", "", "To pierce."]) + let v = native_list_append(v, ["wade", "verb", "wade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dude", "verb", "dude", "", "", "", "did"]) + let v = native_list_append(v, ["thrall", "verb", "thrall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["les", "verb", "les", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eten", "verb", "et", "et", "ete", "", "To eat devour."]) + let v = native_list_append(v, ["reave", "verb", "reave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byte", "verb", "byte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hate", "verb", "hate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rote", "verb", "rote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perceive", "verb", "perceive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vapour", "verb", "vapour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trouble", "verb", "trouble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bake", "verb", "bake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imbibe", "verb", "imbibe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["story", "verb", "story", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pant", "verb", "pant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quell", "verb", "quell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mad", "verb", "mad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avale", "verb", "avale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurl", "verb", "hurl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glace", "verb", "glace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fome", "verb", "fome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["camp", "verb", "camp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mat", "verb", "mat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cave", "verb", "cave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bean", "verb", "bean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["triste", "verb", "triste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diaper", "verb", "diaper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stake", "verb", "stake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grave", "verb", "grave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spake", "verb", "spake", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["speck", "verb", "speck", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pine", "verb", "pine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tame", "verb", "tamed", "", "tamed", "", "alternative form of"]) + let v = native_list_append(v, ["shade", "verb", "shade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delude", "verb", "delude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["solve", "verb", "solve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["resolve", "verb", "resolve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toke", "verb", "toke", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["clove", "verb", "clove", "", "", "", "simple past singular"]) + let v = native_list_append(v, ["tey", "verb", "tey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strake", "verb", "strake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clout", "verb", "clout", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laden", "verb", "lod", "lod", "lade", "", "To load an"]) + let v = native_list_append(v, ["charge", "verb", "charge", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["toll", "verb", "toll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spay", "verb", "spaied", "", "spaied", "", "alternative infinitive of"]) + let v = native_list_append(v, ["wast", "verb", "waste", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þe", "verb", "þe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glow", "verb", "glow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lance", "verb", "lance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recede", "verb", "recede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hire", "verb", "hire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sure", "verb", "sure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["receive", "verb", "receive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fill", "verb", "fill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scorn", "verb", "scorn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["semen", "verb", "semed", "semed", "semed", "", "To sort out"]) + let v = native_list_append(v, ["hals", "verb", "hals", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pic", "verb", "pic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barren", "verb", "barre", "barred", "barred", "", "to bar"]) + let v = native_list_append(v, ["crave", "verb", "crave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conquer", "verb", "conquer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carve", "verb", "carve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["redden", "verb", "redde", "redde", "red", "", "To save or"]) + let v = native_list_append(v, ["fulfill", "verb", "fulfill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulfil", "verb", "fulfil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lave", "verb", "lave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huse", "verb", "huse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ref", "verb", "ref", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assay", "verb", "assay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bate", "verb", "bate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chard", "verb", "chard", "", "", "", "I heard."]) + let v = native_list_append(v, ["daunt", "verb", "daunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dey", "verb", "dey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dote", "verb", "dote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dyne", "verb", "din", "dine", "dyn", "", "alternative form of"]) + let v = native_list_append(v, ["ere", "verb", "ere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurtle", "verb", "hurtle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lien", "verb", "leie", "leien", "leien", "", "to lie be"]) + let v = native_list_append(v, ["mere", "verb", "mere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nape", "verb", "nape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quod", "verb", "quod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rube", "verb", "rube", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rune", "verb", "rune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shunt", "verb", "shunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spar", "verb", "spar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trompe", "verb", "trompe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tulle", "verb", "tulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wale", "verb", "wale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wold", "verb", "wold", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["yoke", "verb", "yoke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brace", "verb", "brace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chafe", "verb", "chafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["disparage", "verb", "disparage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fader", "verb", "fader", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feign", "verb", "feign", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fest", "verb", "fest", "", "", "", "to feast"]) + let v = native_list_append(v, ["fret", "verb", "fret", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frighten", "verb", "frighte", "frighted", "frighted", "", "To frighten scare"]) + let v = native_list_append(v, ["gaze", "verb", "gaze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["couple", "verb", "couple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hale", "verb", "hale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heed", "verb", "heed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hie", "verb", "hie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horde", "verb", "horde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lame", "verb", "lame", "", "", "", "To shine."]) + let v = native_list_append(v, ["ledge", "verb", "ledge", "", "", "", "allege"]) + let v = native_list_append(v, ["maze", "verb", "maze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mirth", "verb", "mirth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pride", "verb", "pride", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recommend", "verb", "recommend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recover", "verb", "recover", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reeve", "verb", "reeve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relent", "verb", "relent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riot", "verb", "riot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["route", "verb", "route", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["shrive", "verb", "shrive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spare", "verb", "spare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["splay", "verb", "splay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stang", "verb", "stang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strengthen", "verb", "strengthe", "strengthed", "strengthed", "", "to strengthen fortify"]) + let v = native_list_append(v, ["swerve", "verb", "swerve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wane", "verb", "wane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["writhe", "verb", "writhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mai", "verb", "mai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["singe", "verb", "singe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wander", "verb", "wander", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maki", "verb", "maki", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["procure", "verb", "procure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assoyle", "verb", "assoyle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beth", "verb", "beþ", "", "", "", "plural present indicative"]) + let v = native_list_append(v, ["sade", "verb", "sade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chine", "verb", "chine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drupe", "verb", "drupe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conceive", "verb", "conceive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leren", "verb", "leren", "", "", "", "to teach or"]) + let v = native_list_append(v, ["praten", "verb", "prate", "prated", "prated", "", "to chatter inconsequentially"]) + let v = native_list_append(v, ["horen", "verb", "hore", "hored", "hored", "", "To develop grey"]) + let v = native_list_append(v, ["werken", "verb", "werken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drinken", "verb", "drinke", "drank", "drunken", "", "to drink"]) + let v = native_list_append(v, ["spelen", "verb", "spele", "speled", "speled", "", "to save hoard"]) + let v = native_list_append(v, ["vallen", "verb", "vallen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pray", "verb", "pray", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebel", "verb", "rebel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mon", "verb", "mon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creme", "verb", "creme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shave", "verb", "shave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aforesaid", "verb", "aforesaide", "a forsaid", "aforeseid", "", "aforesaid"]) + let v = native_list_append(v, ["glue", "verb", "glue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lade", "verb", "lade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wink", "verb", "wink", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sore", "verb", "sore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blaspheme", "verb", "blaspheme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mistrust", "verb", "mistrust", "", "", "", "To be wary"]) + let v = native_list_append(v, ["sewer", "verb", "sewer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foster", "verb", "fostre", "voster", "fostær", "", "alternative form of"]) + let v = native_list_append(v, ["vapore", "verb", "vapore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worsen", "verb", "worsed", "worseed", "worsed", "", "To worsen to"]) + let v = native_list_append(v, ["issue", "verb", "issue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blase", "verb", "blase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stable", "verb", "stabled", "", "stabled", "", "alternative form of"]) + let v = native_list_append(v, ["swyven", "verb", "swyved", "swyved", "swyved", "", "To have sexual"]) + let v = native_list_append(v, ["sulle", "verb", "sulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mold", "verb", "mold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hal", "verb", "hal", "", "", "", "simple past of"]) + let v = native_list_append(v, ["yoken", "verb", "yoked", "yoked", "yoked", "", "To yoke to"]) + let v = native_list_append(v, ["fond", "verb", "fond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forge", "verb", "forge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hath", "verb", "haþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["seren", "verb", "sere", "sered", "sered", "", "To shrivel to"]) + let v = native_list_append(v, ["decide", "verb", "decide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shoo", "verb", "shoo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demure", "verb", "demure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vex", "verb", "vex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dissolve", "verb", "dissolve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chill", "verb", "chill", "", "", "", "I will"]) + let v = native_list_append(v, ["mature", "verb", "mature", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moisten", "verb", "moiste", "moisted", "moisted", "", "to moisten make"]) + let v = native_list_append(v, ["enhance", "verb", "enhance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fume", "verb", "fume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fully", "verb", "fully", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lee", "verb", "lee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destroyed", "verb", "destroyed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sermon", "verb", "sermon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yiff", "verb", "ȝiff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyn", "verb", "lyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferme", "verb", "ferme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ryot", "verb", "ryot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bith", "verb", "biþ", "beth", "bis", "", "third-person singular present"]) + let v = native_list_append(v, ["sind", "verb", "sinden", "sunden", "syndan", "", "plural present indicative"]) + let v = native_list_append(v, ["seid", "verb", "seid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reden", "verb", "redde", "red", "red", "", "to counsel advise"]) + let v = native_list_append(v, ["wer", "verb", "wer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waken", "verb", "wake", "wook", "wake", "", "to wake cease"]) + let v = native_list_append(v, ["fille", "verb", "fille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warn", "verb", "warn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warren", "verb", "warren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["briste", "verb", "briste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buste", "verb", "buste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rince", "verb", "rince", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shire", "verb", "shire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steden", "verb", "stedde", "sted", "sted", "", "To put or"]) + let v = native_list_append(v, ["surmount", "verb", "surmount", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entre", "verb", "entre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salve", "verb", "salve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["survey", "verb", "survey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quoth", "verb", "quoth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["craven", "verb", "crave", "craved", "craved", "", "to ask or"]) + let v = native_list_append(v, ["dolven", "verb", "dolven", "", "", "", "past participle of"]) + let v = native_list_append(v, ["riche", "verb", "riche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nom", "verb", "nom", "", "", "", "third-person preterite of"]) + let v = native_list_append(v, ["goo", "verb", "goo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spill", "verb", "spill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kan", "verb", "kan", "", "", "", "to be able"]) + let v = native_list_append(v, ["tappen", "verb", "tappe", "tapped", "tapped", "", "To let fluids"]) + let v = native_list_append(v, ["lavi", "verb", "lavi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woot", "verb", "wot", "woth", "wit", "", "inflection of witen"]) + let v = native_list_append(v, ["delve", "verb", "delve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compere", "verb", "compere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bis", "verb", "bis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bidden", "verb", "bad", "beden", "beden", "", "To ask beseech"]) + let v = native_list_append(v, ["baptize", "verb", "baptize", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moule", "verb", "moule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hose", "verb", "hose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deve", "verb", "deve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mercy", "verb", "mercy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hired", "verb", "hirid", "hyrede", "hyrid", "", "inflection of hiren"]) + let v = native_list_append(v, ["clothe", "verb", "clothe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soupe", "verb", "soupe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mach", "verb", "mach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bern", "verb", "bern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loki", "verb", "loki", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fonde", "verb", "fonde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fand", "verb", "fand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dee", "verb", "dee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medi", "verb", "medi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hei", "verb", "hei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morn", "verb", "morn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chouchen", "verb", "chouchen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zyxt", "verb", "zyxte", "zixt", "zist", "", "second-person singular present"]) + let v = native_list_append(v, ["wayne", "verb", "wayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["groyne", "verb", "groyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["distingue", "verb", "to distingue", "", "", "", "To distinguish."]) + let v = native_list_append(v, ["haben", "verb", "haben", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scheren", "verb", "schere", "scher", "schere", "", "To cut to"]) + let v = native_list_append(v, ["pissen", "verb", "pisse", "pissed", "pissed", "", "To piss to"]) + let v = native_list_append(v, ["pisse", "verb", "pisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauve", "verb", "sauve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bote", "verb", "bote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dealen", "verb", "dealen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["har", "verb", "har", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slider", "verb", "slider", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schon", "verb", "schodde", "schodde", "schodde", "", "To shoe to"]) + let v = native_list_append(v, ["finden", "verb", "fand", "founden", "founden", "", "to find to"]) + let v = native_list_append(v, ["machen", "verb", "machen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beginnen", "verb", "beginne", "began", "begunnen", "", "to start begin"]) + let v = native_list_append(v, ["lesen", "verb", "les", "loren", "loren", "", "To lose to"]) + let v = native_list_append(v, ["mun", "verb", "mun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schaden", "verb", "schaded", "schaded", "schaded", "", "To shade to"]) + let v = native_list_append(v, ["falle", "verb", "falle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraynen", "verb", "frayned", "frayned", "frayned", "", "To ask or"]) + let v = native_list_append(v, ["wissen", "verb", "wissen", "", "", "", "To be familiar"]) + let v = native_list_append(v, ["beten", "verb", "bet", "bet", "bete", "", "To beat to"]) + let v = native_list_append(v, ["haven", "verb", "hadde", "had", "had", "", "to own to"]) + let v = native_list_append(v, ["nombre", "verb", "nombre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gan", "verb", "gan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leden", "verb", "lede", "ledde", "led", "", "To lead guide"]) + let v = native_list_append(v, ["goon", "verb", "goon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["westen", "verb", "wested", "wested", "wested", "", "To move westwards."]) + let v = native_list_append(v, ["teme", "verb", "teme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hon", "verb", "hon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tamen", "verb", "tamed", "", "tamed", "", "to tame domesticate"]) + let v = native_list_append(v, ["lede", "verb", "lede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rappen", "verb", "rappe", "rapped", "rapped", "", "to strike smite"]) + let v = native_list_append(v, ["ey", "verb", "ey", "", "", "", "to awe"]) + let v = native_list_append(v, ["waschen", "verb", "waschen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haf", "verb", "haf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["starf", "verb", "starf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bras", "verb", "bras", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tasten", "verb", "tasten", "", "", "", "To taste"]) + let v = native_list_append(v, ["messen", "verb", "messe", "messed", "messed", "", "To hold Mass"]) + let v = native_list_append(v, ["lufian", "verb", "lufian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["springen", "verb", "springen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houten", "verb", "houte", "houted", "houted", "", "To shout call"]) + let v = native_list_append(v, ["robben", "verb", "robbed", "robbed", "robbed", "", "To steal rob"]) + let v = native_list_append(v, ["luke", "verb", "luke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chad", "verb", "chad", "", "", "", "I had"]) + let v = native_list_append(v, ["cloven", "verb", "clove", "clofenn", "clovyn", "", "past participle of"]) + let v = native_list_append(v, ["conjure", "verb", "conjure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fon", "verb", "fon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stod", "verb", "stod", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["couche", "verb", "couche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["menace", "verb", "menace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welled", "verb", "wellede", "welleden", "welde", "", "simple past/past participle"]) + let v = native_list_append(v, ["liken", "verb", "liked", "liked", "liked", "", "To be appealing"]) + let v = native_list_append(v, ["daw", "verb", "daw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agen", "verb", "agen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["madden", "verb", "madde", "madded", "madded", "", "To be mad"]) + let v = native_list_append(v, ["stony", "verb", "stony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matin", "verb", "matin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waren", "verb", "ware", "wared", "wared", "", "to beware"]) + let v = native_list_append(v, ["sted", "verb", "sted", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bilde", "verb", "bilde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyse", "verb", "lyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leve", "verb", "leve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lese", "verb", "lese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delfan", "verb", "delfan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ete", "verb", "ete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vanne", "verb", "vanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spille", "verb", "spille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rede", "verb", "rede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dene", "verb", "dene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["magen", "verb", "magen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["informe", "verb", "informe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forme", "verb", "forme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agon", "verb", "ago", "ayede", "ago", "", "to go depart"]) + let v = native_list_append(v, ["singen", "verb", "singe", "song", "sungen", "", "To sing something"]) + let v = native_list_append(v, ["dragen", "verb", "dragen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faran", "verb", "faran", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thorny", "verb", "thorny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["synge", "verb", "synge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leigh", "verb", "leigh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dagen", "verb", "dagen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stele", "verb", "stele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["endi", "verb", "endi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cham", "verb", "cham", "", "", "", "I am"]) + let v = native_list_append(v, ["chave", "verb", "chave", "", "", "", "I have"]) + let v = native_list_append(v, ["chell", "verb", "chell", "", "", "", "I shall."]) + let v = native_list_append(v, ["chould", "verb", "chould", "", "", "", "I should."]) + let v = native_list_append(v, ["binden", "verb", "binde", "band", "bounden", "", "To bind fasten"]) + let v = native_list_append(v, ["revel", "verb", "revel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honte", "verb", "honte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ding", "verb", "ding", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mue", "verb", "mue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flambe", "verb", "flambe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrill", "verb", "thrill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sullen", "verb", "sullen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strangle", "verb", "strangle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["malte", "verb", "malte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fusen", "verb", "fūsed", "fused", "fūsed", "", "To send or"]) + let v = native_list_append(v, ["inspired", "verb", "inspired", "", "", "", "simple past/past participle"]) + let v = native_list_append(v, ["construe", "verb", "construe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aken", "verb", "ake", "ok", "aked", "", "To ache to"]) + let v = native_list_append(v, ["sunne", "verb", "sunne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asswage", "verb", "asswage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cleeve", "verb", "cleeve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hore", "verb", "hore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tras", "verb", "tras", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bouwen", "verb", "bouwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["branden", "verb", "brande", "brante", "brant", "", "To burn to"]) + let v = native_list_append(v, ["breken", "verb", "brak", "broken", "broken", "", "To break up"]) + let v = native_list_append(v, ["delen", "verb", "dele", "delte", "delt", "", "To separate or"]) + let v = native_list_append(v, ["haten", "verb", "hated", "hated", "hated", "", "To feel negative"]) + let v = native_list_append(v, ["winnen", "verb", "wan", "wonnen", "wonnen", "", "to exert effort"]) + let v = native_list_append(v, ["noot", "verb", "noot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["einde", "verb", "einde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tellen", "verb", "telle", "tolde", "told", "", "to count"]) + let v = native_list_append(v, ["stelen", "verb", "stal", "stolen", "stolen", "", "to steal"]) + let v = native_list_append(v, ["willen", "verb", "wolde", "wolde", "wolde", "", "to want something"]) + let v = native_list_append(v, ["maken", "verb", "made", "made", "made", "", "To make or"]) + let v = native_list_append(v, ["kennen", "verb", "kenne", "kenned", "kenned", "", "to make known"]) + let v = native_list_append(v, ["deel", "verb", "deel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lopen", "verb", "lope", "loped", "loped", "", "to jump leap"]) + let v = native_list_append(v, ["raken", "verb", "rake", "raked", "raked", "", "to rake"]) + let v = native_list_append(v, ["huren", "verb", "huren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haan", "verb", "haan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maat", "verb", "maat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stap", "verb", "stap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welke", "verb", "welke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strut", "verb", "strut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vullen", "verb", "vullen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naken", "verb", "nake", "naked", "naked", "", "To remove clothes"]) + let v = native_list_append(v, ["gree", "verb", "gree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halse", "verb", "halse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hythe", "verb", "hythe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["housel", "verb", "housel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kiþen", "verb", "kithen", "cuthen", "", "", "to kithe to"]) + let v = native_list_append(v, ["heten", "verb", "hette", "het", "het", "", "To heat to"]) + let v = native_list_append(v, ["hangen", "verb", "hange", "heng", "hange", "", "to hang"]) + let v = native_list_append(v, ["cri", "verb", "cri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ake", "verb", "ake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wagen", "verb", "wage", "waged", "waged", "", "To employ use"]) + let v = native_list_append(v, ["spurn", "verb", "spurn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comune", "verb", "comune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helen", "verb", "heleþ", "held", "held", "", "to cure heal"]) + let v = native_list_append(v, ["stoppen", "verb", "stopped", "stopped", "stopped", "", "to stop"]) + let v = native_list_append(v, ["smaken", "verb", "smake", "smaked", "smaked", "", "To have a"]) + let v = native_list_append(v, ["crie", "verb", "crie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wringen", "verb", "wringen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gon", "verb", "go", "yede", "go", "", "to go"]) + let v = native_list_append(v, ["swath", "verb", "swath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onde", "verb", "onde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mede", "verb", "mede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["massy", "verb", "massy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leaden", "verb", "leaden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roun", "verb", "roun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sain", "verb", "sain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honed", "verb", "honed", "", "", "", "simple past/past participle"]) + let v = native_list_append(v, ["semy", "verb", "semy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quelle", "verb", "quelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["timen", "verb", "timen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flote", "verb", "flote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goth", "verb", "goþ", "goeth", "goeþ", "", "third-person singular present"]) + let v = native_list_append(v, ["halten", "verb", "halted", "halted", "halted", "", "To limp to"]) + let v = native_list_append(v, ["rost", "verb", "rost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stoup", "verb", "stoup", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thole", "verb", "thole", "", "", "", "thole suffer"]) + let v = native_list_append(v, ["kis", "verb", "kis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ix", "verb", "ix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clepe", "verb", "clepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mech", "verb", "mech", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mak", "verb", "mak", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duine", "verb", "duine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ebben", "verb", "ebbe", "ebbed", "ebbed", "", "To ebb to"]) + let v = native_list_append(v, ["hatten", "verb", "hatte", "hatted", "hatted", "", "To hat to"]) + let v = native_list_append(v, ["meten", "verb", "mēten", "meeten", "", "", "to meet come"]) + let v = native_list_append(v, ["hitte", "verb", "hitte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["supercede", "verb", "supercede", "", "", "", "supersede"]) + let v = native_list_append(v, ["liven", "verb", "liven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hode", "verb", "hode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erne", "verb", "erne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["molde", "verb", "molde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helpen", "verb", "holp", "holpen", "holpen", "", "to help"]) + let v = native_list_append(v, ["openen", "verb", "opened", "opened", "opened", "", "to open"]) + let v = native_list_append(v, ["werpen", "verb", "warp", "worpen", "worpen", "", "To throw to"]) + let v = native_list_append(v, ["nue", "verb", "nue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blake", "verb", "blake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toile", "verb", "toile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sede", "verb", "sede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gor", "verb", "gor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["redan", "verb", "redan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wedden", "verb", "weddien", "", "", "", "to marry to"]) + let v = native_list_append(v, ["kiken", "verb", "kiked", "", "kiked", "", "to look steadfastly"]) + let v = native_list_append(v, ["hawe", "verb", "hawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sien", "verb", "sien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tere", "verb", "tere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yel", "verb", "ȝel", "ȝelle", "yell", "", "alternative form of"]) + let v = native_list_append(v, ["serce", "verb", "serce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stal", "verb", "stal", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["temen", "verb", "temed", "temed", "temed", "", "To bear young"]) + let v = native_list_append(v, ["tesen", "verb", "tesed", "tesed", "tesed", "", "To card straighten"]) + let v = native_list_append(v, ["brode", "verb", "brode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roti", "verb", "roti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lende", "verb", "lende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dele", "verb", "dele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bren", "verb", "bren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merr", "verb", "merr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biþ", "verb", "biþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schede", "verb", "schede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leende", "verb", "leende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bathed", "verb", "bathed", "", "", "", "simple past/past participle"]) + let v = native_list_append(v, ["wot", "verb", "wot", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["yerd", "verb", "yerded", "", "yerded", "", "to beat with"]) + let v = native_list_append(v, ["gamine", "verb", "gamine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["broche", "verb", "broche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgan", "verb", "secgan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folde", "verb", "folde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muke", "verb", "muke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blasen", "verb", "blase", "blased", "blased", "", "To blaze to"]) + let v = native_list_append(v, ["wenden", "verb", "wende", "wente", "went", "", "to travel to"]) + let v = native_list_append(v, ["rekenen", "verb", "rekenen", "", "", "", "Reckon."]) + let v = native_list_append(v, ["rupe", "verb", "rupe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beden", "verb", "bede", "boden", "boden", "", "To offer present"]) + let v = native_list_append(v, ["brennen", "verb", "brente", "brent", "brent", "", "To burn to"]) + let v = native_list_append(v, ["plesen", "verb", "plese", "plesed", "plesed", "", "to please"]) + let v = native_list_append(v, ["knoweth", "verb", "knowith", "knoweþ", "", "", "third-person singular present"]) + let v = native_list_append(v, ["seeth", "verb", "seeth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helmi", "verb", "helmi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ridan", "verb", "ridan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweltan", "verb", "sweltan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceorfan", "verb", "ceorfan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nappi", "verb", "nappi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knowest", "verb", "knowist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["snaw", "verb", "snaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tull", "verb", "tull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beon", "verb", "beon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serge", "verb", "serge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anes", "verb", "anes", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ende", "verb", "ende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hideth", "verb", "hideth", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hyd", "verb", "hyd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["macian", "verb", "macian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spere", "verb", "spere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spiwan", "verb", "spiwan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stede", "verb", "stede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stappen", "verb", "stappen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swingan", "verb", "swingan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parle", "verb", "parle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foule", "verb", "foule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bist", "verb", "beest", "best", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hauli", "verb", "hauli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bilden", "verb", "bilden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poudre", "verb", "poudre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sodden", "verb", "sodden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sperren", "verb", "sperren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mone", "verb", "mon", "monde", "", "", "Expresses futurity shall"]) + let v = native_list_append(v, ["luve", "verb", "luve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ple", "verb", "ple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wellen", "verb", "welled", "welled", "welled", "", "to boil to"]) + let v = native_list_append(v, ["bersten", "verb", "bersten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ministre", "verb", "ministre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fullen", "verb", "fulled", "fulled", "fulled", "", "To fill to"]) + let v = native_list_append(v, ["shon", "verb", "shon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tegen", "verb", "teged", "", "teged", "", "To ordain fix"]) + let v = native_list_append(v, ["faveur", "verb", "faveur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fordon", "verb", "fordone", "", "fordone", "", "to kill"]) + let v = native_list_append(v, ["hete", "verb", "hete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweren", "verb", "swor", "sworen", "sworen", "", "To swear to"]) + let v = native_list_append(v, ["schonen", "verb", "schoned", "schoned", "schoned", "", "To avoid spurn"]) + let v = native_list_append(v, ["senden", "verb", "sende", "send", "send", "", "to send"]) + let v = native_list_append(v, ["sengen", "verb", "senge", "senged", "senged", "", "to burn scorch"]) + let v = native_list_append(v, ["spannen", "verb", "spanne", "spanned", "spanned", "", "To tie around"]) + let v = native_list_append(v, ["sprengen", "verb", "sprenged", "spreynde", "sprenged", "", "To sprinkle or"]) + let v = native_list_append(v, ["spinnen", "verb", "spinne", "span", "spunnen", "", "To spin or"]) + let v = native_list_append(v, ["stinken", "verb", "stinken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winden", "verb", "winden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["selle", "verb", "selle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gamin", "verb", "gamin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carven", "verb", "carven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morne", "verb", "morne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nappe", "verb", "nappe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ys", "verb", "ys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ronde", "verb", "ronde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["damni", "verb", "damni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["multe", "verb", "multe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angre", "verb", "angre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stane", "verb", "stane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foten", "verb", "foted", "foted", "foted", "", "To move with"]) + let v = native_list_append(v, ["wolken", "verb", "wolken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sayd", "verb", "sayd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["borde", "verb", "borde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salte", "verb", "salte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salten", "verb", "salte", "salted", "salted", "", "To salt food"]) + let v = native_list_append(v, ["abusen", "verb", "abuse", "abused", "abused", "", "To misuse to"]) + let v = native_list_append(v, ["deciden", "verb", "decide", "decided", "decided", "", "To make a"]) + let v = native_list_append(v, ["comen", "verb", "cam", "cam", "come", "", "to come"]) + let v = native_list_append(v, ["abaten", "verb", "abate", "abated", "abated", "", "to beat down"]) + let v = native_list_append(v, ["administren", "verb", "administre", "administred", "administred", "", "to manage or"]) + let v = native_list_append(v, ["aliene", "verb", "aliene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alienen", "verb", "aliene", "aliened", "aliened", "", "To renounce or"]) + let v = native_list_append(v, ["amarren", "verb", "amarren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aren", "verb", "are", "ere", "eren", "", "plural present indicative"]) + let v = native_list_append(v, ["boun", "verb", "boun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avalen", "verb", "avale", "avaled", "avaled", "", "To cause to"]) + let v = native_list_append(v, ["avisen", "verb", "avise", "avised", "avised", "", "To consider review"]) + let v = native_list_append(v, ["baten", "verb", "bated", "bated", "bated", "", "To batter to"]) + let v = native_list_append(v, ["birlen", "verb", "birle", "birled", "birled", "", "to strike"]) + let v = native_list_append(v, ["boten", "verb", "bote", "boted", "boted", "", "To solve to"]) + let v = native_list_append(v, ["callen", "verb", "calle", "called", "called", "", "to call"]) + let v = native_list_append(v, ["causen", "verb", "cause", "caused", "caused", "", "to cause or"]) + let v = native_list_append(v, ["caven", "verb", "cave", "caved", "caved", "", "To hollow out."]) + let v = native_list_append(v, ["cesen", "verb", "cesen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comande", "verb", "comande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comanden", "verb", "comanden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comparen", "verb", "compare", "compared", "compared", "", "To give something"]) + let v = native_list_append(v, ["completen", "verb", "completen", "", "", "", "To complete finish"]) + let v = native_list_append(v, ["confirme", "verb", "confirme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conforme", "verb", "conforme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conformen", "verb", "conformed", "conformed", "conformed", "", "To obey or"]) + let v = native_list_append(v, ["congelen", "verb", "congele", "congeled", "congeled", "", "to freeze become"]) + let v = native_list_append(v, ["conjuren", "verb", "conjure", "conjured", "conjured", "", "To solemnly urge"]) + let v = native_list_append(v, ["consideren", "verb", "considered", "considered", "considered", "", "To consider."]) + let v = native_list_append(v, ["contenten", "verb", "contente", "contented", "contented", "", "to satisfy"]) + let v = native_list_append(v, ["copien", "verb", "copied", "copied", "copied", "", "to copy a"]) + let v = native_list_append(v, ["coronen", "verb", "coronen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crispen", "verb", "crispe", "crisped", "crisped", "", "To curl to"]) + let v = native_list_append(v, ["declinen", "verb", "declined", "declined", "declined", "", "To move or"]) + let v = native_list_append(v, ["deformen", "verb", "deformed", "deformed", "deformed", "", "To deform disfigure"]) + let v = native_list_append(v, ["demanden", "verb", "demanden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sitten", "verb", "zitten", "zitte", "", "", "to sit"]) + let v = native_list_append(v, ["devoren", "verb", "devoren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doten", "verb", "dote", "doted", "doted", "", "To be or"]) + let v = native_list_append(v, ["duren", "verb", "dure", "dured", "dured", "", "to last continue"]) + let v = native_list_append(v, ["engendren", "verb", "engendren", "", "", "", "to beget"]) + let v = native_list_append(v, ["leys", "verb", "leys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enrollen", "verb", "enrolled", "enrolled", "enrolled", "", "To enter a"]) + let v = native_list_append(v, ["entren", "verb", "entred", "entred", "entred", "", "To enter to"]) + let v = native_list_append(v, ["flete", "verb", "flete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleten", "verb", "flete", "fleted", "fleted", "", "To go or"]) + let v = native_list_append(v, ["floten", "verb", "flote", "floted", "floted", "", "To move in"]) + let v = native_list_append(v, ["fomenten", "verb", "fomente", "fomented", "fomented", "", "To apply a"]) + let v = native_list_append(v, ["formen", "verb", "formed", "formed", "formed", "", "To make or"]) + let v = native_list_append(v, ["fumen", "verb", "fume", "fumed", "fumed", "", "To emit fumes"]) + let v = native_list_append(v, ["gane", "verb", "gane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gasten", "verb", "gaste", "gasted", "gasted", "", "to frighten terrify"]) + let v = native_list_append(v, ["hilen", "verb", "hiled", "hylen", "hil", "", "to cover"]) + let v = native_list_append(v, ["pluke", "verb", "pluke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurte", "verb", "hurte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurten", "verb", "hurte", "hurt", "hurt", "", "To hurt cause"]) + let v = native_list_append(v, ["schoen", "verb", "schoen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onen", "verb", "onede", "ioned", "ioned", "", "to unify to"]) + let v = native_list_append(v, ["laven", "verb", "laved", "laved", "laved", "", "To clean with"]) + let v = native_list_append(v, ["parten", "verb", "parte", "parted", "parted", "", "to divide"]) + let v = native_list_append(v, ["pelen", "verb", "pele", "peled", "peled", "", "To beat or"]) + let v = native_list_append(v, ["preserven", "verb", "preserve", "presarve", "", "", "To keep safe"]) + let v = native_list_append(v, ["procede", "verb", "procede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["proceden", "verb", "proceded", "proceded", "proceded", "", "To proceed to"]) + let v = native_list_append(v, ["procuren", "verb", "procured", "procureed", "procured", "", "To bring about"]) + let v = native_list_append(v, ["queden", "verb", "queden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queme", "verb", "queme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quemen", "verb", "quemed", "quemed", "quemed", "", "To please or"]) + let v = native_list_append(v, ["manasen", "verb", "manasen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marre", "verb", "marre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maten", "verb", "mate", "mated", "mated", "", "To checkmate capture"]) + let v = native_list_append(v, ["molesten", "verb", "molested", "molested", "molested", "", "To harm disturb"]) + let v = native_list_append(v, ["nombren", "verb", "nombred", "nombred", "nombred", "", "To enumerate or"]) + let v = native_list_append(v, ["noten", "verb", "notien", "", "", "", "to use make"]) + let v = native_list_append(v, ["oren", "verb", "ore", "ored", "ored", "", "To treat mercifully."]) + let v = native_list_append(v, ["reforme", "verb", "reforme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reformen", "verb", "reformed", "reformed", "reformed", "", "To restore or"]) + let v = native_list_append(v, ["releven", "verb", "releve", "releved", "releved", "", "to relieve"]) + let v = native_list_append(v, ["reme", "verb", "reme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remen", "verb", "reme", "remed", "remed", "", "To lament to"]) + let v = native_list_append(v, ["reporten", "verb", "reported", "", "reported", "", "to report"]) + let v = native_list_append(v, ["resisten", "verb", "resisted", "resisted", "resisted", "", "To resist to"]) + let v = native_list_append(v, ["revele", "verb", "revele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["revelen", "verb", "reveled", "reveled", "reveled", "", "To revel to"]) + let v = native_list_append(v, ["rimen", "verb", "rimed", "rimed", "rimed", "", "to count enumerate"]) + let v = native_list_append(v, ["salven", "verb", "salvee", "salveed", "salveed", "", "To heal or"]) + let v = native_list_append(v, ["roben", "verb", "robe", "robed", "robed", "", "To dress to"]) + let v = native_list_append(v, ["roten", "verb", "roted", "roted", "roted", "", "To decompose to"]) + let v = native_list_append(v, ["seden", "verb", "seded", "seded", "seded", "", "To produce seed."]) + let v = native_list_append(v, ["sellen", "verb", "solde", "sold", "sold", "", "To grant to"]) + let v = native_list_append(v, ["techen", "verb", "taughte", "ytaught", "ytaught", "", "to teach"]) + let v = native_list_append(v, ["tiren", "verb", "tere", "tered", "tered", "", "to diminish weaken"]) + let v = native_list_append(v, ["tornen", "verb", "turnen", "", "", "", "to turn rotate"]) + let v = native_list_append(v, ["tose", "verb", "tose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tosen", "verb", "tosed", "tosed", "tosed", "", "To card straighten"]) + let v = native_list_append(v, ["transforme", "verb", "transforme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["transformen", "verb", "transformed", "transformed", "transformed", "", "To shapeshift to"]) + let v = native_list_append(v, ["trine", "verb", "trine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tumben", "verb", "tumbed", "", "tumbed", "", "to fall tumble"]) + let v = native_list_append(v, ["turnen", "verb", "turned", "turned", "turned", "", "to turn"]) + let v = native_list_append(v, ["usen", "verb", "us", "use", "usi", "", "Use."]) + let v = native_list_append(v, ["varen", "verb", "varen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veden", "verb", "veden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waxen", "verb", "waxe", "wex", "ywaxen", "", "To grow become"]) + let v = native_list_append(v, ["thriven", "verb", "thriven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charme", "verb", "charme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geste", "verb", "geste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whan", "verb", "whan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sownen", "verb", "sowned", "", "sowned", "", "to sound"]) + let v = native_list_append(v, ["dere", "verb", "dere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glood", "verb", "glood", "", "", "", "singular past of"]) + let v = native_list_append(v, ["twynne", "verb", "twynne", "", "", "", "twin"]) + let v = native_list_append(v, ["knowe", "verb", "knowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["craved", "verb", "craved", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["wonen", "verb", "woned", "", "woned", "", "to abide to"]) + let v = native_list_append(v, ["gaf", "verb", "gaf", "", "", "", "past of given"]) + let v = native_list_append(v, ["ert", "verb", "ert", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rewe", "verb", "rewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breyde", "verb", "breyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herberwe", "verb", "herberwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lisse", "verb", "lisse", "", "", "", "To relieve mitigate"]) + let v = native_list_append(v, ["horse", "verb", "horse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ethe", "verb", "ethe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chiese", "verb", "chiese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taxe", "verb", "taxe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["libben", "verb", "libben", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deferre", "verb", "deferre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chwas", "verb", "chwas", "", "", "", "I was."]) + let v = native_list_append(v, ["sarsen", "verb", "sarse", "sarsed", "sarsed", "", "To sieve filter"]) + let v = native_list_append(v, ["baptise", "verb", "baptise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reheat", "verb", "reheat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passen", "verb", "passed", "passed", "passed", "", "to pass"]) + let v = native_list_append(v, ["damne", "verb", "damne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["storie", "verb", "storie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leis", "verb", "leis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tost", "verb", "tost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fede", "verb", "fede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shriven", "verb", "shriven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recette", "verb", "recette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tamed", "verb", "tamed", "", "", "", "simple past and"]) + let v = native_list_append(v, ["thirl", "verb", "thirl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dingen", "verb", "dinge", "dong", "dungen", "", "To violently hit"]) + let v = native_list_append(v, ["suing", "verb", "suing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geest", "verb", "geest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pakken", "verb", "pakked", "pakked", "pakked", "", "To pack to"]) + let v = native_list_append(v, ["longen", "verb", "longed", "", "longed", "", "to long yearn"]) + let v = native_list_append(v, ["stonden", "verb", "stonde", "stod", "stonde", "", "to stand"]) + let v = native_list_append(v, ["theo", "verb", "theo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graven", "verb", "grave", "grof", "grave", "", "To dig or"]) + let v = native_list_append(v, ["seke", "verb", "seke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muste", "verb", "muste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delven", "verb", "delve", "dalf", "dolven", "", "To dig or"]) + let v = native_list_append(v, ["savi", "verb", "savi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deine", "verb", "deine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ette", "verb", "ette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treden", "verb", "trede", "trad", "trede", "", "To place ones"]) + let v = native_list_append(v, ["holpen", "verb", "holpen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nimen", "verb", "nom", "nomen", "nomen", "", "To take to"]) + let v = native_list_append(v, ["renne", "verb", "renne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gamme", "verb", "gamme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liki", "verb", "liki", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sho", "verb", "sho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pryde", "verb", "pryde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vanni", "verb", "vanni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nere", "verb", "nere", "", "", "", "werent"]) + let v = native_list_append(v, ["chuse", "verb", "chuse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["messe", "verb", "messe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["felle", "verb", "felle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wisten", "verb", "westen", "", "", "", "plural past of"]) + let v = native_list_append(v, ["baken", "verb", "book", "book", "bake", "", "To bake to"]) + let v = native_list_append(v, ["sipen", "verb", "siped", "", "siped", "", "To seep to"]) + let v = native_list_append(v, ["sippen", "verb", "sipped", "", "sipped", "", "to sip to"]) + let v = native_list_append(v, ["wox", "verb", "wox", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["beteren", "verb", "betere", "betered", "betered", "", "To better to"]) + let v = native_list_append(v, ["walken", "verb", "welk", "welk", "walke", "", "To roll toss"]) + let v = native_list_append(v, ["wakien", "verb", "wakie", "wakied", "wakied", "", "to watch awake"]) + let v = native_list_append(v, ["waknen", "verb", "wakne", "wakned", "wakned", "", "To waken."]) + let v = native_list_append(v, ["slepen", "verb", "sleped", "slep", "sleped", "", "To sleep to"]) + let v = native_list_append(v, ["belwen", "verb", "belwed", "belwed", "belwed", "", "To growl or"]) + let v = native_list_append(v, ["xun", "verb", "xun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waggen", "verb", "wagged", "", "wagged", "", "to move to"]) + let v = native_list_append(v, ["ney", "verb", "ney", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ked", "verb", "ked", "", "", "", "past participle of"]) + let v = native_list_append(v, ["eilen", "verb", "eile", "eiled", "eiled", "", "to trouble afflict"]) + let v = native_list_append(v, ["folu", "verb", "folu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brede", "verb", "brede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melte", "verb", "melte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waye", "verb", "waye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smarten", "verb", "smarten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lond", "verb", "lond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kisse", "verb", "kisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queste", "verb", "queste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asse", "verb", "asse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hild", "verb", "hild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eken", "verb", "eken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rese", "verb", "rese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warnen", "verb", "warne", "warned", "warned", "", "to warn admonish"]) + let v = native_list_append(v, ["whin", "verb", "whin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horden", "verb", "horde", "horded", "horded", "", "To secrete hoard"]) + let v = native_list_append(v, ["springe", "verb", "springe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wære", "verb", "wære", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["madde", "verb", "madde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["segen", "verb", "seged", "seged", "seged", "", "To siege to"]) + let v = native_list_append(v, ["entri", "verb", "entri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["confermi", "verb", "confermi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hitten", "verb", "hitte", "hit", "hit", "", "To hit to"]) + let v = native_list_append(v, ["nakne", "verb", "nakne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["procuri", "verb", "procuri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glorie", "verb", "glorie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pini", "verb", "pini", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rotte", "verb", "rotte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grane", "verb", "grane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cappe", "verb", "cappe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prede", "verb", "prede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trippe", "verb", "trippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brande", "verb", "brande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conferme", "verb", "conferme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tappe", "verb", "tappe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["richen", "verb", "riched", "riched", "riched", "", "To make richer"]) + let v = native_list_append(v, ["heiende", "verb", "heiende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["broughten", "verb", "broughten", "", "", "", "plural past of"]) + let v = native_list_append(v, ["thoughten", "verb", "thoghten", "þoghten", "þoughten", "", "plural past of"]) + let v = native_list_append(v, ["soughten", "verb", "soughten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["yborne", "verb", "yborne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yborn", "verb", "yborn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["suren", "verb", "sure", "sured", "sured", "", "To plead swear"]) + let v = native_list_append(v, ["flye", "verb", "flye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meden", "verb", "meded", "meded", "meded", "", "to reward gift"]) + let v = native_list_append(v, ["nye", "verb", "nye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tullen", "verb", "tullen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lolled", "verb", "ilolled", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hien", "verb", "hied", "", "hied", "", "alternative form of"]) + let v = native_list_append(v, ["sopi", "verb", "sopi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monen", "verb", "mone", "moned", "moned", "", "to remember be"]) + let v = native_list_append(v, ["stinge", "verb", "stinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["valui", "verb", "valui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lokin", "verb", "lokin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shewing", "verb", "shewing", "", "", "", "present participle of"]) + let v = native_list_append(v, ["maligne", "verb", "maligne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["droppe", "verb", "droppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myre", "verb", "myre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loven", "verb", "loved", "loved", "loved", "", "To love to"]) + let v = native_list_append(v, ["sterven", "verb", "sterve", "starf", "storven", "", "To die or"]) + let v = native_list_append(v, ["schap", "verb", "schap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wynd", "verb", "wynd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["disperge", "verb", "disperge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sper", "verb", "sper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spenden", "verb", "spende", "spended", "spended", "", "to spend"]) + let v = native_list_append(v, ["cresce", "verb", "cresce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grillen", "verb", "grullen", "", "", "", "to irritate annoy"]) + let v = native_list_append(v, ["oneth", "verb", "anes", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["mostest", "verb", "mustest", "", "", "", "second-person singular present/past"]) + let v = native_list_append(v, ["tole", "verb", "tole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lesse", "verb", "lesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porge", "verb", "porge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steren", "verb", "steren", "", "", "", "To incite to"]) + let v = native_list_append(v, ["wyn", "verb", "wyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wroughten", "verb", "wroughten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["differre", "verb", "differre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grype", "verb", "grype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wones", "verb", "wones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foond", "verb", "foond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corve", "verb", "corve", "", "", "", "inflection of kerven"]) + let v = native_list_append(v, ["toste", "verb", "toste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fecht", "verb", "fecht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rone", "verb", "rone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flei", "verb", "flei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deie", "verb", "deie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sermone", "verb", "sermone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosen", "verb", "rosed", "rosed", "rosed", "", "To boast to"]) + let v = native_list_append(v, ["musi", "verb", "musi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["falde", "verb", "falde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tippen", "verb", "tippe", "tipped", "tipped", "", "to fall be"]) + let v = native_list_append(v, ["quaken", "verb", "quake", "quaked", "quaked", "", "To tremble with"]) + let v = native_list_append(v, ["thinke", "verb", "thinke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herber", "verb", "herber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linnen", "verb", "linne", "lan", "", "", "To stop or"]) + let v = native_list_append(v, ["holden", "verb", "held", "held", "holde", "", "to hold"]) + let v = native_list_append(v, ["spurie", "verb", "spurie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brane", "verb", "brane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savun", "verb", "savun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tye", "verb", "tye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sille", "verb", "sille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ryve", "verb", "ryve", "", "", "", "rive"]) + let v = native_list_append(v, ["demaunde", "verb", "demaunde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barken", "verb", "barken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verien", "verb", "verien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tilien", "verb", "tilien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roven", "verb", "roven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luvan", "verb", "luvan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ponnen", "verb", "ponnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["synny", "verb", "synny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remi", "verb", "remi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unien", "verb", "unied", "", "unied", "", "to combine join"]) + let v = native_list_append(v, ["tulien", "verb", "tulien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["casten", "verb", "casten", "", "", "", "cast"]) + let v = native_list_append(v, ["soru", "verb", "soru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brai", "verb", "brai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teren", "verb", "tar", "torn", "torn", "", "To tear to"]) + let v = native_list_append(v, ["drepe", "verb", "drepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spek", "verb", "spek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atte", "verb", "atte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schakelen", "verb", "schok", "schaken", "schaken", "", "To shackle to"]) + let v = native_list_append(v, ["schaken", "verb", "schok", "schok", "schake", "", "To shake or"]) + let v = native_list_append(v, ["adressen", "verb", "adressed", "adressed", "adressed", "", "To aim or"]) + let v = native_list_append(v, ["blasfeme", "verb", "blasfeme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kussen", "verb", "kussen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stakur", "verb", "stakur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wroten", "verb", "wrooten", "", "", "", "plural past indicative"]) + let v = native_list_append(v, ["dalen", "verb", "dalen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dassen", "verb", "dassen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wisen", "verb", "wised", "wised", "wised", "", "To direct or"]) + let v = native_list_append(v, ["adrede", "verb", "adrede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hosen", "verb", "hose", "hosed", "hosed", "", "To equip with"]) + let v = native_list_append(v, ["burye", "verb", "burye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bringe", "verb", "bringe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blesse", "verb", "blesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beholde", "verb", "beholde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seyde", "verb", "seyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sayde", "verb", "sayde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saile", "verb", "saile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tach", "verb", "taught", "", "taught", "", "alternative form of"]) + let v = native_list_append(v, ["aski", "verb", "aski", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aske", "verb", "aske", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebell", "verb", "rebell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["telleth", "verb", "telleth", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["crowne", "verb", "crowne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duale", "verb", "duale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skift", "verb", "skifted", "skifted", "skifted", "", "to divide share"]) + let v = native_list_append(v, ["souple", "verb", "souple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shapen", "verb", "shapen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["froren", "verb", "froren", "", "", "", "past participle of"]) + let v = native_list_append(v, ["moten", "verb", "mot", "moste", "", "", "To have or"]) + let v = native_list_append(v, ["quellen", "verb", "quelled", "quelled", "quelled", "", "To kill or"]) + let v = native_list_append(v, ["voiden", "verb", "voiden", "", "", "", "To leave to"]) + let v = native_list_append(v, ["speake", "verb", "speake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyme", "verb", "tyme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saide", "verb", "saide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleete", "verb", "fleete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seeme", "verb", "seeme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compasse", "verb", "compasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saye", "verb", "saye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["batre", "verb", "batre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bekken", "verb", "bekken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hied", "verb", "hied", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berken", "verb", "bark", "borken", "borken", "", "To bark make"]) + let v = native_list_append(v, ["singeth", "verb", "singeth", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["deare", "verb", "deare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leep", "verb", "leep", "", "", "", "leap"]) + let v = native_list_append(v, ["tolle", "verb", "tolle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monin", "verb", "monin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebelle", "verb", "rebelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sode", "verb", "sode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reven", "verb", "refte", "reft", "reft", "", "To cause someone"]) + let v = native_list_append(v, ["astony", "verb", "astony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prikken", "verb", "prikked", "", "prikked", "", "to prick pierce"]) + let v = native_list_append(v, ["baite", "verb", "baite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brist", "verb", "brist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pikken", "verb", "pikken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wolde", "verb", "wolde", "", "", "", "inflection of willen"]) + let v = native_list_append(v, ["heilen", "verb", "heylen", "hailen", "haylen", "", "to hail greet"]) + let v = native_list_append(v, ["schone", "verb", "schone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sewe", "verb", "sewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welken", "verb", "welke", "welked", "welked", "", "To become dry"]) + let v = native_list_append(v, ["welk", "verb", "welk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hirs", "verb", "hirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scape", "verb", "scape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kysse", "verb", "kysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gemen", "verb", "gemen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mantelle", "verb", "mantelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leynd", "verb", "leynd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noyse", "verb", "noyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colde", "verb", "colde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["speke", "verb", "speke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wark", "verb", "wark", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["follen", "verb", "follen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dresse", "verb", "dresse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brenne", "verb", "brenne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["valen", "verb", "vale", "valed", "valed", "", "To cause to"]) + let v = native_list_append(v, ["gaine", "verb", "gaine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tresse", "verb", "tresse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surmonte", "verb", "surmonte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leese", "verb", "leese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perce", "verb", "perce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brynge", "verb", "brynge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dronken", "verb", "dronken", "", "", "", "past participle of"]) + let v = native_list_append(v, ["menen", "verb", "menen", "", "", "", "to intend to"]) + let v = native_list_append(v, ["shonen", "verb", "shonen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shet", "verb", "shet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyse", "verb", "wyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyke", "verb", "lyke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["newe", "verb", "newe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deere", "verb", "deere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deale", "verb", "deale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["begge", "verb", "begge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worde", "verb", "worde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saine", "verb", "saine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sourde", "verb", "sourde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esche", "verb", "esche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helmen", "verb", "helme", "helmed", "helmed", "", "To behelm to"]) + let v = native_list_append(v, ["lovin", "verb", "lovin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sinen", "verb", "sinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saven", "verb", "saved", "saved", "saved", "", "To save prevent"]) + let v = native_list_append(v, ["eren", "verb", "ere", "ered", "ered", "", "To plow/plough or"]) + let v = native_list_append(v, ["chauffe", "verb", "chauffe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lovien", "verb", "lovien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["putten", "verb", "putte", "putte", "put", "", "to put"]) + let v = native_list_append(v, ["creat", "verb", "create", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["buhen", "verb", "buhen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bery", "verb", "bery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["piken", "verb", "pike", "piked", "piked", "", "To pick at"]) + let v = native_list_append(v, ["tronen", "verb", "trone", "troned", "troned", "", "To enthrone to"]) + let v = native_list_append(v, ["astonie", "verb", "astonie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schapen", "verb", "schop", "schop", "schape", "", "To create or"]) + let v = native_list_append(v, ["swyve", "verb", "swyve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fley", "verb", "fley", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rusten", "verb", "rusted", "rusted", "rusted", "", "To rust to"]) + let v = native_list_append(v, ["helden", "verb", "helde", "helded", "helded", "", "to pour to"]) + let v = native_list_append(v, ["redde", "verb", "redde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dynen", "verb", "dyne", "dyned", "dyned", "", "To eat lunch"]) + let v = native_list_append(v, ["wonnen", "verb", "wonned", "", "wonned", "", "alternative form of"]) + let v = native_list_append(v, ["staren", "verb", "stare", "stared", "stared", "", "to look fixedly"]) + let v = native_list_append(v, ["placen", "verb", "placed", "placed", "placed", "", "To place or"]) + let v = native_list_append(v, ["stampen", "verb", "stampe", "stamped", "stamped", "", "To pound or"]) + let v = native_list_append(v, ["feld", "verb", "feld", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["loke", "verb", "loke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foulen", "verb", "fouled", "fouled", "fouled", "", "To dirty or"]) + let v = native_list_append(v, ["plukken", "verb", "plukked", "plukked", "plukked", "", "To pluck to"]) + let v = native_list_append(v, ["sweven", "verb", "sweve", "sweved", "sweved", "", "to put to"]) + let v = native_list_append(v, ["trede", "verb", "trede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["essu", "verb", "essu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["difforme", "verb", "difforme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gron", "verb", "gron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tombed", "verb", "tombed", "", "", "", "simple past/past participle"]) + let v = native_list_append(v, ["dissimile", "verb", "dissimile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suere", "verb", "suere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hette", "verb", "hette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ringen", "verb", "ringen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flyte", "verb", "flyte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lande", "verb", "lande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tiden", "verb", "tiden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deren", "verb", "dered", "dered", "dered", "", "To damage or"]) + let v = native_list_append(v, ["denen", "verb", "denen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reise", "verb", "reise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sware", "verb", "sware", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reisen", "verb", "reisen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hadde", "verb", "hadd", "had", "ad", "", "had"]) + let v = native_list_append(v, ["dorste", "verb", "dorste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fanne", "verb", "fanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belanden", "verb", "belanded", "", "belanded", "", "To bereave or"]) + let v = native_list_append(v, ["buske", "verb", "buske", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["likken", "verb", "likke", "likked", "likked", "", "to lick"]) + let v = native_list_append(v, ["staken", "verb", "stake", "staked", "staked", "", "To add stakes"]) + let v = native_list_append(v, ["pluk", "verb", "pluk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["daren", "verb", "dareed", "", "dareed", "", "to lie still"]) + let v = native_list_append(v, ["lyve", "verb", "lyve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hef", "verb", "hef", "", "", "", "past of heave"]) + let v = native_list_append(v, ["neden", "verb", "nede", "neded", "neded", "", "to force require"]) + let v = native_list_append(v, ["tep", "verb", "tep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wirk", "verb", "wirk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kwaken", "verb", "kwaken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envien", "verb", "envie", "envied", "envied", "", "To envy to"]) + let v = native_list_append(v, ["bicaren", "verb", "bicared", "", "bicared", "", "To care or"]) + let v = native_list_append(v, ["fite", "verb", "fite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ybanysshed", "verb", "ybanysshed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ybarred", "verb", "ybarred", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ybathed", "verb", "ybathed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ybedded", "verb", "ybedded", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ybegunne", "verb", "ybegunne", "", "", "", "past participle of"]) + let v = native_list_append(v, ["yblamed", "verb", "yblamed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["iblessed", "verb", "iblessed", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sople", "verb", "sople", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weven", "verb", "weve", "waf", "weve", "", "To interlace to"]) + let v = native_list_append(v, ["happenen", "verb", "happened", "happened", "happened", "", "to happen"]) + let v = native_list_append(v, ["hapnen", "verb", "hapnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snew", "verb", "snew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destruye", "verb", "destruye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crece", "verb", "crece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isse", "verb", "isse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chove", "verb", "chove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feden", "verb", "fedde", "fed", "fed", "", "to provide for"]) + let v = native_list_append(v, ["tracen", "verb", "trace", "traced", "traced", "", "To go along"]) + let v = native_list_append(v, ["decrece", "verb", "decrece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["munten", "verb", "munten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muren", "verb", "mure", "mured", "mured", "", "To enclose or"]) + let v = native_list_append(v, ["gesten", "verb", "geste", "gested", "gested", "", "To host a"]) + let v = native_list_append(v, ["beren", "verb", "bar", "born", "born", "", "to bear"]) + let v = native_list_append(v, ["bett", "verb", "bett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moke", "verb", "moke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heren", "verb", "hẹ̄ren", "her", "here", "", "to hear"]) + let v = native_list_append(v, ["donen", "verb", "donen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiede", "verb", "hiede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inspiren", "verb", "inspiren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marly", "verb", "marly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scorni", "verb", "scorni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nilt", "verb", "nilt", "", "", "", "Will not form"]) + let v = native_list_append(v, ["hure", "verb", "hure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kneden", "verb", "knad", "knad", "knoden", "", "To knead to"]) + let v = native_list_append(v, ["dwalen", "verb", "dwale", "dwaled", "dwaled", "", "to poison"]) + let v = native_list_append(v, ["scheten", "verb", "schet", "schoten", "schoten", "", "To dart fly"]) + let v = native_list_append(v, ["schoven", "verb", "schoven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["encres", "verb", "encres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mwen", "verb", "mwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sparren", "verb", "spare", "spared", "spared", "", "To close to"]) + let v = native_list_append(v, ["rais", "verb", "rais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["begynne", "verb", "begynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teer", "verb", "teer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dissave", "verb", "dissave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glasen", "verb", "glased", "glased", "glased", "", "To install glass"]) + let v = native_list_append(v, ["rouwen", "verb", "rouwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoken", "verb", "hoke", "hoked", "hoked", "", "to hook"]) + let v = native_list_append(v, ["ibeaten", "verb", "ibeaten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["frese", "verb", "frese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["icravet", "verb", "icravet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verye", "verb", "verye", "", "", "", "element of an"]) + let v = native_list_append(v, ["shode", "verb", "shode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morene", "verb", "morene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weren", "verb", "were", "wern", "weryn", "", "plural past indicative/subjunctive"]) + let v = native_list_append(v, ["mune", "verb", "mune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ise", "verb", "iseiȝ", "iseien", "iseien", "", "alternative form of"]) + let v = native_list_append(v, ["fostre", "verb", "fostre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nyght", "verb", "nyght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vellen", "verb", "vellen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manken", "verb", "manke", "manked", "manked", "", "to mangle to"]) + let v = native_list_append(v, ["byen", "verb", "bye", "boghte", "boght", "", "to buy"]) + let v = native_list_append(v, ["eggin", "verb", "eggin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["musen", "verb", "muse", "mused", "mused", "", "To muse to"]) + let v = native_list_append(v, ["anen", "verb", "anen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drengen", "verb", "drengen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drenge", "verb", "drenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["renden", "verb", "rende", "rente", "rent", "", "to tear rip"]) + let v = native_list_append(v, ["ræven", "verb", "ræven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enen", "verb", "ened", "ened", "ened", "", "To give birth"]) + let v = native_list_append(v, ["wanten", "verb", "wanted", "wanted", "wanted", "", "To lack to"]) + let v = native_list_append(v, ["agre", "verb", "agre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faren", "verb", "ferde", "ferd", "ferd", "", "To move go"]) + let v = native_list_append(v, ["felten", "verb", "felte", "felted", "felted", "", "To felt to"]) + let v = native_list_append(v, ["schalen", "verb", "schale", "schaled", "schaled", "", "to shell"]) + let v = native_list_append(v, ["eenden", "verb", "eenden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halsen", "verb", "halsed", "hawsid", "hals", "", "to embrace caress"]) + let v = native_list_append(v, ["hyt", "verb", "hyt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gamen", "verb", "gamed", "gamed", "gamed", "", "To joke play"]) + let v = native_list_append(v, ["mose", "verb", "mose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mustest", "verb", "mustest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurle", "verb", "hurle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["standen", "verb", "standen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stande", "verb", "stande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stangen", "verb", "stange", "stanged", "stanged", "", "To puncture with"]) + let v = native_list_append(v, ["striden", "verb", "stride", "strod", "stride", "", "to stride"]) + let v = native_list_append(v, ["toppen", "verb", "toppe", "topped", "topped", "", "To combat to"]) + let v = native_list_append(v, ["veine", "verb", "veined", "", "veined", "", "alternative form of"]) + let v = native_list_append(v, ["spisen", "verb", "spisen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myren", "verb", "myred", "myred", "myred", "", "To confound or"]) + let v = native_list_append(v, ["asken", "verb", "asked", "asked", "asked", "", "To ask someone"]) + let v = native_list_append(v, ["knappen", "verb", "knappe", "knapped", "knapped", "", "To hit land"]) + let v = native_list_append(v, ["bonden", "verb", "bonde", "bonded", "bonded", "", "To put in"]) + let v = native_list_append(v, ["freden", "verb", "fredde", "fred", "fred", "", "To experience a"]) + let v = native_list_append(v, ["swe", "verb", "swe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fonden", "verb", "fonded", "fonded", "fonded", "", "To test to"]) + let v = native_list_append(v, ["tryne", "verb", "tryne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trynen", "verb", "tryne", "tryned", "tryned", "", "to go to"]) + let v = native_list_append(v, ["bedelven", "verb", "bedelven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pennen", "verb", "penne", "penned", "penned", "", "To close in"]) + let v = native_list_append(v, ["wol", "verb", "wol", "", "", "", "will"]) + let v = native_list_append(v, ["stiched", "verb", "stiched", "", "", "", "inflection of stichen"]) + let v = native_list_append(v, ["scheve", "verb", "scheve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["balken", "verb", "balke", "balked", "balked", "", "to leave an"]) + let v = native_list_append(v, ["helte", "verb", "helte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beelden", "verb", "beelden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pinin", "verb", "pinin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fole", "verb", "fole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pakke", "verb", "pakke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forken", "verb", "forke", "forked", "forked", "", "To fork split"]) + let v = native_list_append(v, ["biggen", "verb", "beggen", "buggen", "", "", "build"]) + let v = native_list_append(v, ["twisten", "verb", "twiste", "twisted", "twisted", "", "To pressure or"]) + let v = native_list_append(v, ["ringe", "verb", "ringe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riden", "verb", "ride", "rod", "yriden", "", "To ride on"]) + let v = native_list_append(v, ["mouwen", "verb", "mouwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mul", "verb", "mul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arne", "verb", "arne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyver", "verb", "lyver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vreten", "verb", "vreten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sporen", "verb", "spore", "spored", "spored", "", "To spur prod"]) + let v = native_list_append(v, ["rusen", "verb", "rused", "rused", "rused", "", "To repel to"]) + let v = native_list_append(v, ["roste", "verb", "roste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruden", "verb", "ruded", "ruded", "ruded", "", "To redden to"]) + let v = native_list_append(v, ["lokke", "verb", "lokke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soden", "verb", "sodden", "sode", "ysode", "", "past participle of"]) + let v = native_list_append(v, ["hente", "verb", "hente", "", "", "", "hent"]) + let v = native_list_append(v, ["enden", "verb", "ended", "ended", "ended", "", "To stop or"]) + let v = native_list_append(v, ["sope", "verb", "sope", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bete", "verb", "bete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spinne", "verb", "spinne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaissen", "verb", "abaissen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["upholden", "verb", "upheld", "upheld", "upholde", "", "To hold up"]) + let v = native_list_append(v, ["kerven", "verb", "kerve", "carf", "corven", "", "To cut or"]) + let v = native_list_append(v, ["welpen", "verb", "welpen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herbergen", "verb", "herberged", "herberged", "herberged", "", "To supply or"]) + let v = native_list_append(v, ["seise", "verb", "seise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beote", "verb", "beote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoten", "verb", "hatte", "hot", "hotende", "", "to command enjoin"]) + let v = native_list_append(v, ["smake", "verb", "smake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alinen", "verb", "alined", "", "alined", "", "to copulate"]) + let v = native_list_append(v, ["lenden", "verb", "lende", "lente", "lent", "", "To come to"]) + let v = native_list_append(v, ["refe", "verb", "refe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaisshen", "verb", "abaisshen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["masen", "verb", "mase", "mased", "mased", "", "To bewilder amaze"]) + let v = native_list_append(v, ["unne", "verb", "unne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moun", "verb", "moun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forcoveren", "verb", "forcovere", "forcovered", "forcovered", "", "to cover completely"]) + let v = native_list_append(v, ["ræden", "verb", "ræden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feme", "verb", "feme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fele", "verb", "fele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seien", "verb", "seie", "seide", "seid", "", "To say that"]) + let v = native_list_append(v, ["weste", "verb", "weste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honti", "verb", "honti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["egre", "verb", "egre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demere", "verb", "demere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mangelen", "verb", "mengele", "mengeled", "mengeled", "", "alternative form of"]) + let v = native_list_append(v, ["hebbe", "verb", "hebbe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosti", "verb", "rosti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serven", "verb", "served", "served", "served", "", "to serve be"]) + let v = native_list_append(v, ["deyin", "verb", "deyin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stremen", "verb", "streme", "stremed", "stremed", "", "To bleed to"]) + let v = native_list_append(v, ["redresse", "verb", "redresse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spil", "verb", "spil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurkle", "verb", "hurkle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meve", "verb", "meve", "", "", "", "move"]) + let v = native_list_append(v, ["enchafe", "verb", "enchafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vexe", "verb", "vexe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dissimule", "verb", "dissimule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halte", "verb", "halte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scande", "verb", "scande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rynge", "verb", "rynge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["defoul", "verb", "defoul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cloute", "verb", "cloute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tillen", "verb", "tille", "tilled", "tilled", "", "To convince tempt"]) + let v = native_list_append(v, ["feigne", "verb", "feigne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smerte", "verb", "smerte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smerten", "verb", "smerte", "smart", "smorten", "", "To smart injure"]) + let v = native_list_append(v, ["byggen", "verb", "byggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mynte", "verb", "mynte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["krave", "verb", "krave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deche", "verb", "deche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleme", "verb", "fleme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fule", "verb", "fule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burton", "verb", "burton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abashen", "verb", "abashe", "abashed", "abashed", "", "to embarrass shame"]) + let v = native_list_append(v, ["gre", "verb", "gre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyl", "verb", "hyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tollen", "verb", "tolle", "tolled", "tolled", "", "To bring take"]) + let v = native_list_append(v, ["bouwe", "verb", "bouwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leze", "verb", "leze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winne", "verb", "winne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bihaten", "verb", "bihaten", "", "", "", "to promise"]) + let v = native_list_append(v, ["huld", "verb", "huld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perced", "verb", "perced", "", "", "", "simple past and"]) + let v = native_list_append(v, ["overhelen", "verb", "overheled", "", "overheled", "", "To cover to"]) + let v = native_list_append(v, ["tille", "verb", "tille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snaren", "verb", "snare", "snared", "snared", "", "To ensnare to"]) + let v = native_list_append(v, ["loggen", "verb", "logge", "logged", "logged", "", "to encamp"]) + let v = native_list_append(v, ["scanne", "verb", "scanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wernen", "verb", "werne", "werned", "werned", "", "To deny or"]) + let v = native_list_append(v, ["afrainen", "verb", "afrainen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frain", "verb", "frain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frainen", "verb", "frainen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blyn", "verb", "blyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wlappen", "verb", "lappen", "wrappen", "", "", "to wrap fold"]) + let v = native_list_append(v, ["lappen", "verb", "wlappen", "", "", "", "to wrap fold"]) + let v = native_list_append(v, ["takken", "verb", "takked", "", "takked", "", "to attach"]) + let v = native_list_append(v, ["wrappen", "verb", "wrappen", "", "", "", "to wrap wrap"]) + let v = native_list_append(v, ["cweman", "verb", "cweman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["overheled", "verb", "overheled", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["venum", "verb", "venum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["picken", "verb", "picken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boti", "verb", "boti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saugh", "verb", "saugh", "", "", "", "past of seen"]) + let v = native_list_append(v, ["skurn", "verb", "skurn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["englue", "verb", "englue", "", "", "", "join together as"]) + let v = native_list_append(v, ["blasfemen", "verb", "blasfeme", "blasfemed", "blasfemed", "", "to blaspheme to"]) + let v = native_list_append(v, ["chalenge", "verb", "chalenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linne", "verb", "linne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toost", "verb", "toost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charmen", "verb", "charme", "charmed", "charmed", "", "To cast a"]) + let v = native_list_append(v, ["yeven", "verb", "yaf", "iyeven", "iyeven", "", "alternative form of"]) + let v = native_list_append(v, ["schappen", "verb", "schappen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trukien", "verb", "truken", "troken", "trochen", "", "to barter trade"]) + let v = native_list_append(v, ["þolien", "verb", "þolien", "", "", "", "to suffer to"]) + let v = native_list_append(v, ["þarf", "verb", "þarf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shote", "verb", "shote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volden", "verb", "volden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volde", "verb", "volde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruston", "verb", "ruston", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ycleped", "verb", "ycleped", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hutte", "verb", "hutte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forholden", "verb", "forholde", "forheld", "forholde", "", "to detain hold"]) + let v = native_list_append(v, ["glorien", "verb", "glorie", "gloried", "gloried", "", "To brag to"]) + let v = native_list_append(v, ["mugen", "verb", "mugen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blome", "verb", "blome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hunte", "verb", "hunte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanen", "verb", "wanen", "", "", "", "to moan to"]) + let v = native_list_append(v, ["knowen", "verb", "knowe", "knew", "knowe", "", "to know possess"]) + let v = native_list_append(v, ["ringue", "verb", "ringue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amblen", "verb", "amble", "ambled", "ambled", "", "to walk at"]) + let v = native_list_append(v, ["conquerre", "verb", "conquerre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manglen", "verb", "mangle", "mangled", "mangled", "", "to mangle"]) + let v = native_list_append(v, ["glenten", "verb", "glented", "", "glented", "", "To move quickly."]) + let v = native_list_append(v, ["feble", "verb", "feble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["misten", "verb", "miste", "misted", "misted", "", "to grow misty"]) + let v = native_list_append(v, ["brase", "verb", "brase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fene", "verb", "fene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["staker", "verb", "staker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mouin", "verb", "mouin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["writhen", "verb", "writhe", "wroth", "writhe", "", "To form or"]) + let v = native_list_append(v, ["hekelen", "verb", "hekelen", "", "", "", "To comb hemp"]) + let v = native_list_append(v, ["squatte", "verb", "squatte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wagge", "verb", "wagge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saille", "verb", "saille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seede", "verb", "seede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pappen", "verb", "pappe", "papped", "papped", "", "to feed"]) + let v = native_list_append(v, ["blaken", "verb", "blaken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tythe", "verb", "tythe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprenge", "verb", "sprenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wirke", "verb", "wirke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["packe", "verb", "packe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rere", "verb", "rere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waden", "verb", "wade", "wod", "wade", "", "To move forth"]) + let v = native_list_append(v, ["threpe", "verb", "threpe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["darrayne", "verb", "darrayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glorifie", "verb", "glorifie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kremen", "verb", "kremen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twiste", "verb", "twiste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winke", "verb", "winke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blomen", "verb", "blomed", "blomed", "blomed", "", "To bloom or"]) + let v = native_list_append(v, ["herde", "verb", "herde", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["pouder", "verb", "pouder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crese", "verb", "crese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cresen", "verb", "cresed", "cresed", "cresed", "", "To grow to"]) + let v = native_list_append(v, ["tem", "verb", "tem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stonde", "verb", "stonde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sunge", "verb", "sunge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wete", "verb", "wete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heffe", "verb", "heffe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schere", "verb", "schere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sterve", "verb", "sterve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werp", "verb", "werp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werpe", "verb", "werpe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bevalle", "verb", "bevalle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wasse", "verb", "wasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wasten", "verb", "wasted", "wasted", "wasted", "", "To ruin or"]) + let v = native_list_append(v, ["drope", "verb", "drope", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schote", "verb", "schote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schove", "verb", "schove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kerve", "verb", "kerve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winde", "verb", "winde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wringe", "verb", "wringe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zinge", "verb", "zinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schete", "verb", "schete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schrede", "verb", "schrede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slepe", "verb", "slepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spete", "verb", "spete", "", "", "", "To spit"]) + let v = native_list_append(v, ["weve", "verb", "weve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brenge", "verb", "brenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zouke", "verb", "zouke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schold", "verb", "schold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scholde", "verb", "schold", "xuld", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["schond", "verb", "schond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schonde", "verb", "schonde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schonden", "verb", "schonde", "schonded", "schonded", "", "To injure or"]) + let v = native_list_append(v, ["gest", "verb", "gest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beft", "verb", "beft", "", "", "", "inflection of beten"]) + let v = native_list_append(v, ["hakke", "verb", "hakke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mokke", "verb", "mokke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nake", "verb", "nake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plukke", "verb", "plukke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruste", "verb", "ruste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schake", "verb", "schake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stappe", "verb", "stappe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tooste", "verb", "tooste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werke", "verb", "werke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wippe", "verb", "wippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungere", "verb", "hungere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungre", "verb", "hungre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belde", "verb", "belde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belden", "verb", "belded", "belded", "belded", "", "To promote motivate"]) + let v = native_list_append(v, ["bemin", "verb", "bemin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beende", "verb", "beand", "", "", "", "present participle of"]) + let v = native_list_append(v, ["boen", "verb", "boen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boorde", "verb", "boorde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breiden", "verb", "breide", "braid", "brouden", "", "To drag to"]) + let v = native_list_append(v, ["knelle", "verb", "knelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knel", "verb", "knel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herken", "verb", "herke", "herked", "herked", "", "to listen attentively"]) + let v = native_list_append(v, ["hult", "verb", "hult", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knede", "verb", "knede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["menden", "verb", "menden", "", "", "", "cure"]) + let v = native_list_append(v, ["spuwe", "verb", "spuwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wende", "verb", "wende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wene", "verb", "wene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weende", "verb", "weende", "", "", "", "wend"]) + let v = native_list_append(v, ["wandre", "verb", "wandre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sowen", "verb", "sowe", "sew", "sowe", "", "To sow seed"]) + let v = native_list_append(v, ["sowe", "verb", "sowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werry", "verb", "werry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ratelen", "verb", "ratele", "rateled", "rateled", "", "to rattle"]) + let v = native_list_append(v, ["busken", "verb", "busked", "busked", "busked", "", "To ready prepare"]) + let v = native_list_append(v, ["ches", "verb", "ches", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tomben", "verb", "tombed", "tombed", "tombed", "", "to inter entomb"]) + let v = native_list_append(v, ["schulen", "verb", "schal", "scholde", "", "", "to owe to"]) + let v = native_list_append(v, ["sawe", "verb", "sawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blin", "verb", "blin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spak", "verb", "spak", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["spede", "verb", "spede", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["cweme", "verb", "cweme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warne", "verb", "warne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferien", "verb", "ferie", "feried", "feried", "", "To carry to"]) + let v = native_list_append(v, ["andin", "verb", "andin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smorten", "verb", "ysmorte", "ismorte", "", "", "past participle of"]) + let v = native_list_append(v, ["ratten", "verb", "ratten", "", "", "", "to tear apart"]) + let v = native_list_append(v, ["smoren", "verb", "smore", "smored", "smored", "", "to suffocate"]) + let v = native_list_append(v, ["readen", "verb", "readen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corven", "verb", "corven", "", "", "", "past participle of"]) + let v = native_list_append(v, ["washen", "verb", "washen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["storven", "verb", "storven", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flite", "verb", "flite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["favere", "verb", "favere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schot", "verb", "schot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pleadeth", "verb", "pleadeth", "", "", "", "present of plead"]) + let v = native_list_append(v, ["loken", "verb", "loked", "loked", "loked", "", "to look at"]) + let v = native_list_append(v, ["freinen", "verb", "freinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cropen", "verb", "cropen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["yollen", "verb", "yollen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bikken", "verb", "bikken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bursten", "verb", "bursten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snesen", "verb", "snesed", "snesed", "snesed", "", "To sneeze"]) + let v = native_list_append(v, ["snese", "verb", "snese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maked", "verb", "maked", "", "", "", "past participle of"]) + let v = native_list_append(v, ["stalken", "verb", "stalke", "stalked", "stalked", "", "to stalk"]) + let v = native_list_append(v, ["ruwen", "verb", "ruwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyne", "verb", "lyn", "line", "lin", "", "alternative form of"]) + let v = native_list_append(v, ["saie", "verb", "saie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forsenden", "verb", "forsende", "forsend", "forsend", "", "to send away"]) + let v = native_list_append(v, ["forsend", "verb", "forsend", "", "", "", "inflection of forsenden"]) + let v = native_list_append(v, ["fornimen", "verb", "fornime", "fornom", "fornomen", "", "to take away"]) + let v = native_list_append(v, ["forwerpen", "verb", "forwerpe", "forwarp", "forworpen", "", "To expel or"]) + let v = native_list_append(v, ["tomelten", "verb", "tomelteth", "tomeltende", "tomolt", "", "to melt away"]) + let v = native_list_append(v, ["to sheden", "verb", "to sheden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poupen", "verb", "pouped", "", "pouped", "", "to make an"]) + let v = native_list_append(v, ["forcasten", "verb", "forcasten", "", "", "", "to reject cast"]) + let v = native_list_append(v, ["bourde", "verb", "bourde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["custume", "verb", "custume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schaven", "verb", "schof", "schof", "schave", "", "To scrape or"]) + let v = native_list_append(v, ["rosten", "verb", "roste", "rosted", "rosted", "", "To roast or"]) + let v = native_list_append(v, ["wannen", "verb", "wanned", "", "wanned", "", "to wane become"]) + let v = native_list_append(v, ["seken", "verb", "sought", "", "sought", "", "to seek"]) + let v = native_list_append(v, ["strengthe", "verb", "strengthe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herte", "verb", "herte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wepen", "verb", "wep", "wopen", "wopen", "", "To weep cry"]) + let v = native_list_append(v, ["chafer", "verb", "chafer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["munnen", "verb", "munnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prechen", "verb", "prechen", "", "", "", "to preach"]) + let v = native_list_append(v, ["drawen", "verb", "drogh", "drogh", "drawe", "", "To pull move"]) + let v = native_list_append(v, ["afered", "verb", "affered", "afert", "averd", "", "simple past/past participle"]) + let v = native_list_append(v, ["cheke", "verb", "cheek", "cheeke", "chike", "", "alternative form of"]) + let v = native_list_append(v, ["drynken", "verb", "drynken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["speken", "verb", "spak", "spak", "yspeken", "", "to speak communicate"]) + let v = native_list_append(v, ["toold", "verb", "toold", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vitaille", "verb", "vitaille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gliden", "verb", "glod", "glod", "glide", "", "to glide"]) + let v = native_list_append(v, ["seyn", "verb", "seyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mysspeken", "verb", "mysspak", "mysspoken", "mysspoken", "", "to misspeak make"]) + let v = native_list_append(v, ["forthcallen", "verb", "forthcalled", "", "forthcalled", "", "to provoke"]) + let v = native_list_append(v, ["coigne", "verb", "coigne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyvynge", "verb", "lyvynge", "", "", "", "present participle of"]) + let v = native_list_append(v, ["waymenten", "verb", "waymented", "waymented", "waymented", "", "To grieve or"]) + let v = native_list_append(v, ["enuye", "verb", "enuye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyven", "verb", "lyved", "lyved", "lyved", "", "To live be"]) + let v = native_list_append(v, ["synken", "verb", "sinke", "sank", "sunken", "", "to sink to"]) + let v = native_list_append(v, ["dwellen", "verb", "dwele", "dweled", "dweled", "", "To dwell to"]) + let v = native_list_append(v, ["floure", "verb", "floure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skapen", "verb", "skaped", "", "skaped", "", "to escape"]) + let v = native_list_append(v, ["teere", "verb", "teere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crien", "verb", "cried", "cried", "cried", "", "To cry out"]) + let v = native_list_append(v, ["waylen", "verb", "wayled", "", "wayled", "", "to sob to"]) + let v = native_list_append(v, ["volvelle", "verb", "volvelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quethen", "verb", "quath", "quath", "queden", "", "To speak talk"]) + let v = native_list_append(v, ["drede", "verb", "drede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frende", "verb", "frende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haþ", "verb", "hath", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["chaungen", "verb", "chaunged", "chaunged", "chaunged", "", "To change or"]) + let v = native_list_append(v, ["romen", "verb", "romed", "", "romed", "", "to roam move"]) + let v = native_list_append(v, ["deyen", "verb", "deyed", "deyde", "deyed", "", "To die to"]) + let v = native_list_append(v, ["enformen", "verb", "enformed", "enformed", "enformed", "", "To grant knowledge"]) + let v = native_list_append(v, ["gessen", "verb", "gessede", "ygessed", "ygessed", "", "to guess to"]) + let v = native_list_append(v, ["remembren", "verb", "remembred", "remembred", "remembred", "", "to remember"]) + let v = native_list_append(v, ["stode", "verb", "stode", "", "", "", "inflection of standen"]) + let v = native_list_append(v, ["requere", "verb", "requere", "", "", "", "to require"]) + let v = native_list_append(v, ["acqueren", "verb", "acquere", "acquered", "acquered", "", "To acquire obtain"]) + let v = native_list_append(v, ["fellen", "verb", "felled", "felled", "felled", "", "To cause to"]) + let v = native_list_append(v, ["sterten", "verb", "sterte", "sterte", "stert", "", "to leap"]) + let v = native_list_append(v, ["jugen", "verb", "juged", "", "juged", "", "to judge"]) + let v = native_list_append(v, ["dampnen", "verb", "dampned", "dampned", "dampned", "", "to condemn denounce"]) + let v = native_list_append(v, ["defende", "verb", "defende", "", "", "", "defend"]) + let v = native_list_append(v, ["seide", "verb", "said", "saide", "sayd", "", "first/third-person singular past"]) + let v = native_list_append(v, ["suppe", "verb", "suppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suppen", "verb", "suppen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haden", "verb", "haden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graunten", "verb", "graunted", "", "graunted", "", "to grant to"]) + let v = native_list_append(v, ["tolli", "verb", "tolli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fighten", "verb", "faught", "foghten", "foghten", "", "To fight engage"]) + let v = native_list_append(v, ["devisen", "verb", "devisen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["devysen", "verb", "devysed", "", "devysed", "", "to devise to"]) + let v = native_list_append(v, ["ȝiven", "verb", "ȝiven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foryiven", "verb", "foryive", "foryaf", "foryeven", "", "to forgive"]) + let v = native_list_append(v, ["remorde", "verb", "remorde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demeres", "verb", "demeres", "", "", "", "plural of demere"]) + let v = native_list_append(v, ["goþ", "verb", "gaþ", "goeth", "goeþ", "", "third-person singular present"]) + let v = native_list_append(v, ["accounte", "verb", "accounte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aknowen", "verb", "aknowe", "aknew", "aknowe", "", "To acknowledge to"]) + let v = native_list_append(v, ["crasen", "verb", "crased", "crased", "crased", "", "To break in"]) + let v = native_list_append(v, ["floryschen", "verb", "florysched", "florysched", "florysched", "", "To flourish such"]) + let v = native_list_append(v, ["yiven", "verb", "yaf", "yaf", "yeven", "", "to give"]) + let v = native_list_append(v, ["spayen", "verb", "spayed", "", "spayed", "", "to stab or"]) + let v = native_list_append(v, ["schrewen", "verb", "schrewen", "", "", "", "To curse."]) + let v = native_list_append(v, ["demar", "verb", "demar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destrue", "verb", "destrue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destrui", "verb", "destrui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ussit", "verb", "ussit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spue", "verb", "spue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strue", "verb", "strue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strui", "verb", "strui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conquire", "verb", "conquire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spyn", "verb", "spyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choken", "verb", "choke", "choked", "choked", "", "To asphyxiate or"]) + let v = native_list_append(v, ["stoden", "verb", "stooden", "", "", "", "plural past of"]) + let v = native_list_append(v, ["gripen", "verb", "gripe", "grop", "gripe", "", "To grip or"]) + let v = native_list_append(v, ["panten", "verb", "pante", "panted", "panted", "", "To pant to"]) + let v = native_list_append(v, ["droppen", "verb", "dropped", "dropped", "dropped", "", "To drip to"]) + let v = native_list_append(v, ["fage", "verb", "fage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gresse", "verb", "gresse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luse", "verb", "luse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tedde", "verb", "tedde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alie", "verb", "alie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heres", "verb", "heres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruson", "verb", "ruson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sparble", "verb", "sparble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferd", "verb", "feerd", "feerde", "ferde", "", "past participle of"]) + let v = native_list_append(v, ["tobursten", "verb", "tobresten", "tobrusten", "tobirsten", "", "to burst apart"]) + let v = native_list_append(v, ["vitaile", "verb", "fetayle", "vetaille", "vetel", "", "alternative form of"]) + let v = native_list_append(v, ["acten", "verb", "acte", "acted", "acted", "", "To act upon"]) + let v = native_list_append(v, ["hylen", "verb", "hylen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floter", "verb", "floter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["capen", "verb", "capen", "", "", "", "To look for"]) + let v = native_list_append(v, ["aȝeinen", "verb", "aȝeinen", "", "", "", "to encounter"]) + let v = native_list_append(v, ["forbrusen", "verb", "forbrused", "", "forbrused", "", "to bruise badly"]) + let v = native_list_append(v, ["kemen", "verb", "kemen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shere", "verb", "shere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fantasien", "verb", "fantasied", "fantasied", "fantasied", "", "to fantasize to"]) + let v = native_list_append(v, ["eart", "verb", "eart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flen", "verb", "fleon", "", "", "", "to flee"]) + let v = native_list_append(v, ["webben", "verb", "webbed", "webbed", "webbed", "", "to weave"]) + let v = native_list_append(v, ["omitte", "verb", "omitte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["growe", "verb", "growe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["growne", "verb", "growne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blowe", "verb", "blowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["temien", "verb", "temien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deien", "verb", "deien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mouen", "verb", "mouen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bateren", "verb", "batered", "batered", "batered", "", "To batter to"]) + let v = native_list_append(v, ["accepten", "verb", "accepted", "accepted", "accepted", "", "to accept"]) + let v = native_list_append(v, ["compten", "verb", "compten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["governen", "verb", "governe", "governed", "governed", "", "To lead a"]) + let v = native_list_append(v, ["frete", "verb", "frete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlen", "verb", "parle", "parled", "parled", "", "To talk or"]) + let v = native_list_append(v, ["remenen", "verb", "remene", "remened", "remened", "", "To interpret to"]) + let v = native_list_append(v, ["biten", "verb", "bite", "bot", "bite", "", "to bite"]) + let v = native_list_append(v, ["sillen", "verb", "sillen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kroken", "verb", "kroken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["supen", "verb", "supen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["showen", "verb", "showen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pipen", "verb", "piped", "piped", "piped", "", "To use a"]) + let v = native_list_append(v, ["stopen", "verb", "stopen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trollen", "verb", "trolle", "trolled", "trolled", "", "to roll"]) + let v = native_list_append(v, ["forten", "verb", "forteh", "fortogen", "fortogen", "", "To pull away"]) + let v = native_list_append(v, ["mynten", "verb", "mynte", "mynte", "mynt", "", "to intend envision"]) + let v = native_list_append(v, ["stupen", "verb", "stupen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["basken", "verb", "basked", "basked", "basked", "", "To bathe to"]) + let v = native_list_append(v, ["rebellen", "verb", "rebelle", "rebelled", "rebelled", "", "To rebel to"]) + let v = native_list_append(v, ["sparken", "verb", "sparke", "sparked", "sparked", "", "To spark emit"]) + let v = native_list_append(v, ["behoven", "verb", "behoved", "", "behoved", "", "to be necessary"]) + let v = native_list_append(v, ["ropen", "verb", "rope", "roped", "roped", "", "To form into"]) + let v = native_list_append(v, ["betten", "verb", "betten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riken", "verb", "riked", "", "riked", "", "to reign rule"]) + let v = native_list_append(v, ["studien", "verb", "studie", "studied", "studied", "", "to study"]) + let v = native_list_append(v, ["fulle", "verb", "fulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hacke", "verb", "hacke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["totorven", "verb", "totorved", "", "totorved", "", "To pelt someone"]) + let v = native_list_append(v, ["robbe", "verb", "robbe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thynken", "verb", "thynken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["revelle", "verb", "revelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mæren", "verb", "mæren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forthnimen", "verb", "forthnam", "forthnumen", "forthnumen", "", "to take away"]) + let v = native_list_append(v, ["enduren", "verb", "endured", "", "endured", "", "to endure to"]) + let v = native_list_append(v, ["beswiken", "verb", "biswike", "biswok", "biswiken", "", "to lure allure"]) + let v = native_list_append(v, ["freet", "verb", "freet", "", "", "", "alternative simple past"]) + let v = native_list_append(v, ["fretten", "verb", "fretten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beinge", "verb", "beinge", "", "", "", "present participle of"]) + let v = native_list_append(v, ["founde", "verb", "founde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["walke", "verb", "walke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drawe", "verb", "drawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hye", "verb", "hye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flem", "verb", "flem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foynen", "verb", "foyned", "", "foyned", "", "to foin"]) + let v = native_list_append(v, ["acompte", "verb", "acompte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baume", "verb", "baume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relaxen", "verb", "relaxen", "", "", "", "loosen make something"]) + let v = native_list_append(v, ["ryden", "verb", "ryden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schave", "verb", "schave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["destroyen", "verb", "destroyed", "destroyed", "destroyed", "", "To destroy or"]) + let v = native_list_append(v, ["swynken", "verb", "swinke", "swank", "swonken", "", "to labour to"]) + let v = native_list_append(v, ["fordwine", "verb", "fordwine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medlen", "verb", "medle", "medled", "medled", "", "to meddle"]) + let v = native_list_append(v, ["hytt", "verb", "hytt", "", "", "", "hit"]) + let v = native_list_append(v, ["forgen", "verb", "forged", "forged", "forged", "", "To make to"]) + let v = native_list_append(v, ["sheete", "verb", "sheete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seeren", "verb", "seeren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seere", "verb", "seere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noumbre", "verb", "noumbre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grece", "verb", "grece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whanne", "verb", "whanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyden", "verb", "tiden", "", "", "", "To befall to"]) + let v = native_list_append(v, ["dinen", "verb", "dinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suen", "verb", "sued", "sued", "sued", "", "to follow"]) + let v = native_list_append(v, ["feien", "verb", "feie", "feied", "feied", "", "To put or"]) + let v = native_list_append(v, ["housen", "verb", "housed", "housed", "housed", "", "To accommodate or"]) + let v = native_list_append(v, ["recetten", "verb", "recetted", "recetted", "recetted", "", "To shelter or"]) + let v = native_list_append(v, ["nappen", "verb", "nappe", "napped", "napped", "", "To nap or"]) + let v = native_list_append(v, ["platten", "verb", "pletten", "", "", "", "to strike with"]) + let v = native_list_append(v, ["gasen", "verb", "gase", "gased", "gased", "", "To gaze or"]) + let v = native_list_append(v, ["greven", "verb", "greve", "greved", "greved", "", "to grieve"]) + let v = native_list_append(v, ["kissen", "verb", "kiste", "kiste", "kiste", "", "to kiss"]) + let v = native_list_append(v, ["trippen", "verb", "trippe", "tripped", "tripped", "", "To walk rhythmically"]) + let v = native_list_append(v, ["attamen", "verb", "attamed", "", "attamed", "", "to cut pierce"]) + let v = native_list_append(v, ["moiste", "verb", "moiste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moysten", "verb", "moysten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feren", "verb", "fere", "fered", "fered", "", "to frighten terrify"]) + let v = native_list_append(v, ["knoppen", "verb", "knoppe", "knopped", "knopped", "", "To put on"]) + let v = native_list_append(v, ["luggen", "verb", "lugge", "lugged", "lugged", "", "to pull"]) + let v = native_list_append(v, ["duell", "verb", "duell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afferme", "verb", "afferme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["axen", "verb", "axen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fostren", "verb", "fostred", "fostred", "fostred", "", "To supply with"]) + let v = native_list_append(v, ["geten", "verb", "gete", "gat", "ygeten", "", "to get"]) + let v = native_list_append(v, ["musten", "verb", "musten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["syften", "verb", "syfted", "syfted", "syfted", "", "To sift strain"]) + let v = native_list_append(v, ["syllen", "verb", "syllen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tydde", "verb", "tidde", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bifallen", "verb", "bifel", "bifel", "bifalen", "", "To occur or"]) + let v = native_list_append(v, ["sugen", "verb", "sugen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sytt", "verb", "sytt", "", "", "", "sit"]) + let v = native_list_append(v, ["astonen", "verb", "astoned", "astoned", "astoned", "", "To stun daze"]) + let v = native_list_append(v, ["folden", "verb", "feld", "feld", "folde", "", "To bend to"]) + let v = native_list_append(v, ["mensk", "verb", "mensk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["underfongen", "verb", "underfangen", "undervongen", "", "", "to undertake"]) + let v = native_list_append(v, ["undergeten", "verb", "undergeten", "", "", "", "To overtake a"]) + let v = native_list_append(v, ["xuld", "verb", "xuld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forshrinken", "verb", "forshrank", "forshronken", "forshronken", "", "to shrink up"]) + let v = native_list_append(v, ["fornim", "verb", "fornim", "", "", "", "inflection of fornimen"]) + let v = native_list_append(v, ["thenken", "verb", "thoght", "ithoght", "ithoght", "", "alternative spelling of"]) + let v = native_list_append(v, ["revyn", "verb", "revyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["runan", "verb", "runan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teamen", "verb", "teamen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptis", "verb", "baptis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vaynquisshen", "verb", "vaynquisshen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spillen", "verb", "spille", "spilled", "spilled", "", "to slaughter eliminate"]) + let v = native_list_append(v, ["sacren", "verb", "sacred", "", "sacred", "", "To consecrate especially"]) + let v = native_list_append(v, ["groni", "verb", "groni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["draghen", "verb", "draghen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["derven", "verb", "darf", "ydorven", "ydorven", "", "To labour."]) + let v = native_list_append(v, ["setten", "verb", "sette", "sette", "set", "", "To seat cause"]) + let v = native_list_append(v, ["witen", "verb", "wiste", "wiste", "wite", "", "to know a"]) + let v = native_list_append(v, ["chafare", "verb", "chafare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chafen", "verb", "chafen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shouten", "verb", "shouted", "shouted", "shouted", "", "to shout communicate"]) + let v = native_list_append(v, ["losen", "verb", "lose", "losed", "losed", "", "to loose"]) + let v = native_list_append(v, ["gammen", "verb", "gammen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fisshen", "verb", "fisshed", "fisshed", "fisshed", "", "to fish"]) + let v = native_list_append(v, ["douwe", "verb", "douwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gleon", "verb", "gleon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["numbre", "verb", "numbre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["squatten", "verb", "squatted", "", "squatted", "", "to squat lower"]) + let v = native_list_append(v, ["mylken", "verb", "mylked", "mylked", "mylked", "", "to milk obtain"]) + let v = native_list_append(v, ["gase", "verb", "gase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mollen", "verb", "molled", "molled", "molled", "", "To soften to"]) + let v = native_list_append(v, ["readan", "verb", "readan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rowen", "verb", "rowe", "rew", "rowe", "", "To row paddle"]) + let v = native_list_append(v, ["inbland", "verb", "inbland", "", "", "", "To mingle blend."]) + let v = native_list_append(v, ["manace", "verb", "manace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weepe", "verb", "weepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyll", "verb", "wyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grase", "verb", "grase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["synne", "verb", "synne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝe", "verb", "ȝe", "", "", "", "to address a"]) + let v = native_list_append(v, ["laughe", "verb", "laughe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welden", "verb", "welded", "", "welded", "", "to reign rule"]) + let v = native_list_append(v, ["tolen", "verb", "tolen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolien", "verb", "tolien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breede", "verb", "breede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["souke", "verb", "souke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quook", "verb", "quook", "", "", "", "past of quaken"]) + let v = native_list_append(v, ["yronne", "verb", "yronne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ymaked", "verb", "ymaked", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ydrad", "verb", "ydred", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ydred", "verb", "ydred", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ybe", "verb", "ybe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ydo", "verb", "ydo", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ybeen", "verb", "ybeen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ypaid", "verb", "ypaid", "", "", "", "past participle of"]) + let v = native_list_append(v, ["yronge", "verb", "yronge", "", "", "", "past participle of"]) + let v = native_list_append(v, ["yblowe", "verb", "yblowe", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gaderen", "verb", "gadere", "gadered", "gadered", "", "to assemble congregate"]) + let v = native_list_append(v, ["yaf", "verb", "yaf", "", "", "", "past of yiven"]) + let v = native_list_append(v, ["fannen", "verb", "fanne", "fanned", "fanned", "", "To process grain"]) + let v = native_list_append(v, ["deen", "verb", "deen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quave", "verb", "quave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deelen", "verb", "deelen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fillen", "verb", "filde", "fild", "fild", "", "To make or"]) + let v = native_list_append(v, ["outnimen", "verb", "outnam", "outnomen", "outnomen", "", "to take out"]) + let v = native_list_append(v, ["straca", "verb", "straca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hil", "verb", "hil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeden", "verb", "ȝeden", "", "", "", "past plural of"]) + let v = native_list_append(v, ["ȝaf", "verb", "ȝaf", "", "", "", "past of ȝiven"]) + let v = native_list_append(v, ["undernimen", "verb", "undernam", "undernome", "undernome", "", "to seize catch"]) + let v = native_list_append(v, ["tocomen", "verb", "tocome", "tocam", "tocome", "", "To come to"]) + let v = native_list_append(v, ["hyer", "verb", "hyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulenden", "verb", "fulended", "", "fulended", "", "To finish achieve"]) + let v = native_list_append(v, ["biden", "verb", "bide", "bod", "bide", "", "to stay wait"]) + let v = native_list_append(v, ["heelen", "verb", "heelen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wunnen", "verb", "wunnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weye", "verb", "weye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stoupe", "verb", "stoupe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["makie", "verb", "makie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["besenden", "verb", "besende", "besend", "besend", "", "To send send"]) + let v = native_list_append(v, ["lowe", "verb", "lowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reched", "verb", "reched", "", "", "", "past of recchen"]) + let v = native_list_append(v, ["condemnen", "verb", "condemnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pyne", "verb", "pyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enhaunce", "verb", "enhaunce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitrenden", "verb", "bitrente", "bitrent", "bitrent", "", "To encircle or"]) + let v = native_list_append(v, ["laghe", "verb", "laghe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laughen", "verb", "laughe", "lough", "laughe", "", "To laugh to"]) + let v = native_list_append(v, ["bewreken", "verb", "bewroke", "bewroken", "", "", "To wreak avenge"]) + let v = native_list_append(v, ["bewrien", "verb", "bewrie", "bewried", "bewried", "", "To bury"]) + let v = native_list_append(v, ["aproven", "verb", "aproved", "aproved", "aproved", "", "to prove"]) + let v = native_list_append(v, ["wode", "verb", "no-table-tags", "enm-conj-wk", "woden", "", "To be or"]) + let v = native_list_append(v, ["whetten", "verb", "whetted", "whetted", "whetted", "", "To sharpen to"]) + let v = native_list_append(v, ["heigh", "verb", "heigh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spute", "verb", "spute", "", "", "", "to dispute to"]) + let v = native_list_append(v, ["unworship", "verb", "unworship", "", "", "", "To deprive of"]) + let v = native_list_append(v, ["schulde", "verb", "schulde", "", "", "", "should"]) + let v = native_list_append(v, ["fonne", "verb", "fonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wawe", "verb", "wawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kess", "verb", "kess", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schonten", "verb", "schonted", "schonte", "schonted", "", "To dodge evade"]) + let v = native_list_append(v, ["schonte", "verb", "schonte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wasti", "verb", "wasti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kempe", "verb", "kempe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feine", "verb", "feine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sokun", "verb", "sokun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lofe", "verb", "lofe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["havest", "verb", "hast", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["vernish", "verb", "vernished", "", "vernished", "", "to varnish"]) + let v = native_list_append(v, ["weive", "verb", "weive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snape", "verb", "snaped", "", "snaped", "", "To injure of"]) + let v = native_list_append(v, ["underpight", "verb", "underpight", "", "", "", "past of underpicchen"]) + let v = native_list_append(v, ["underpicchen", "verb", "underpight", "", "", "", "to fill underneath"]) + let v = native_list_append(v, ["swype", "verb", "swype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weyve", "verb", "weyve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remord", "verb", "remord", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flowen", "verb", "flowed", "flowed", "flowed", "", "To flow stream"]) + let v = native_list_append(v, ["foryetten", "verb", "foryetten", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dradde", "verb", "dradde", "", "", "", "past participle of"]) + let v = native_list_append(v, ["werre", "verb", "werre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belimpen", "verb", "belamp", "belumpen", "belumpen", "", "To happen occur"]) + let v = native_list_append(v, ["woxen", "verb", "woxen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["glew", "verb", "glew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reare", "verb", "reare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enquere", "verb", "enquere", "", "", "", "enquire inquire"]) + let v = native_list_append(v, ["folwe", "verb", "folwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prechinge", "verb", "prechinge", "", "", "", "proclaiming"]) + let v = native_list_append(v, ["evangelysinge", "verb", "evangelysinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jorney", "verb", "jorney", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laft", "verb", "y-laft", "ylaft", "", "", "past participle of"]) + let v = native_list_append(v, ["salvin", "verb", "salvin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brasen", "verb", "brased", "brased", "brased", "", "To cover with"]) + let v = native_list_append(v, ["misqueme", "verb", "misqueme", "", "", "", "to displease offend"]) + let v = native_list_append(v, ["hirte", "verb", "hirte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glasynge", "verb", "glacynge", "glasinge", "glasyng", "", "present participle of"]) + let v = native_list_append(v, ["bleynte", "verb", "bleynte", "", "", "", "past participle of"]) + let v = native_list_append(v, ["thornen", "verb", "thorne", "thorned", "thorned", "", "To thorn to"]) + let v = native_list_append(v, ["wern", "verb", "wern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["payen", "verb", "paye", "payed", "payed", "", "to pay"]) + let v = native_list_append(v, ["hegge", "verb", "hegge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clappe", "verb", "clappe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["screme", "verb", "screme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duelle", "verb", "duelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelen", "verb", "gele", "geled", "geled", "", "To solidify or"]) + let v = native_list_append(v, ["rafte", "verb", "rafte", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wopen", "verb", "wopen", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gleen", "verb", "gleen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schiften", "verb", "schifte", "schifted", "schifted", "", "To split cut"]) + let v = native_list_append(v, ["adweschen", "verb", "adwesched", "", "adwesched", "", "to quench extinguish"]) + let v = native_list_append(v, ["fiste", "verb", "fiste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["filst", "verb", "filsted", "", "filsted", "", "To help aid."]) + let v = native_list_append(v, ["hamle", "verb", "hamle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eyr", "verb", "eyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["impen", "verb", "impen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feyne", "verb", "feyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halp", "verb", "halp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pyke", "verb", "pyke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wharven", "verb", "warfte", "", "warfte", "", "to change convert"]) + let v = native_list_append(v, ["forleten", "verb", "forleteth", "forlette", "", "", "To forsake disregard"]) + let v = native_list_append(v, ["forblowen", "verb", "forblew", "forblowe", "forblowe", "", "to blow something"]) + let v = native_list_append(v, ["noy", "verb", "noy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woll", "verb", "woll", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["schewen", "verb", "schewed", "schewed", "schewed", "", "to show bring"]) + let v = native_list_append(v, ["mistrow", "verb", "mistrow", "", "", "", "To mistrust distrust"]) + let v = native_list_append(v, ["apaid", "verb", "apaid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyen", "verb", "hyed", "hyed", "hyed", "", "to hie travel"]) + let v = native_list_append(v, ["ypeynted", "verb", "ypeynted", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sayle", "verb", "sayle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drade", "verb", "drade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["londe", "verb", "londe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyss", "verb", "wyss", "", "", "", "was"]) + let v = native_list_append(v, ["aryse", "verb", "aryse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leuyd", "verb", "leuyd", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["tyll", "verb", "tyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assayle", "verb", "assayle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rywle", "verb", "rywle", "", "", "", "rule"]) + let v = native_list_append(v, ["deyde", "verb", "deyde", "", "", "", "died"]) + let v = native_list_append(v, ["byholde", "verb", "byholde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smot", "verb", "smot", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["hyw", "verb", "hyw", "", "", "", "hew"]) + let v = native_list_append(v, ["by-gan", "verb", "by-gan", "", "", "", "began"]) + let v = native_list_append(v, ["crye", "verb", "crye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worschup", "verb", "worschup", "", "", "", "worship"]) + let v = native_list_append(v, ["feede", "verb", "feede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creese", "verb", "creese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enbibe", "verb", "enbibe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thurst", "verb", "thurst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compt", "verb", "compt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mollifie", "verb", "mollifie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crooken", "verb", "crooken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cleve", "verb", "cleve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swithen", "verb", "swoth", "", "", "", "to burn scorch"]) + let v = native_list_append(v, ["forthristen", "verb", "forthristed", "", "forthristed", "", "to shatter smash"]) + let v = native_list_append(v, ["bicomsen", "verb", "bicomsed", "", "bicomsed", "", "to begin commence."]) + let v = native_list_append(v, ["biteon", "verb", "bitogh", "bitowen", "bitowen", "", "To draw over"]) + let v = native_list_append(v, ["fremmen", "verb", "fremmed", "", "fremmed", "", "To perform or"]) + let v = native_list_append(v, ["fulmaken", "verb", "fulmade", "", "fulmade", "", "complete perfect grow"]) + let v = native_list_append(v, ["forthclepen", "verb", "forthclepe", "forthclepte", "forthclept", "", "to call forth"]) + let v = native_list_append(v, ["undersechen", "verb", "undersought", "", "undersought", "", "to examine investigate"]) + let v = native_list_append(v, ["underloken", "verb", "underlōked", "", "underlōked", "", "a word of"]) + let v = native_list_append(v, ["enluted", "verb", "enluted", "", "", "", "past of enlute"]) + let v = native_list_append(v, ["attaste", "verb", "attaste", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["apair", "verb", "apair", "", "", "", "To impair or"]) + let v = native_list_append(v, ["darrein", "verb", "darrein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reve", "verb", "reve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorwe", "verb", "sorwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lifen", "verb", "lifen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stroy", "verb", "stroy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flotten", "verb", "flotten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ypunished", "verb", "ypunished", "", "", "", "past participle of"]) + let v = native_list_append(v, ["knewen", "verb", "knewen", "", "", "", "plural simple past"]) + let v = native_list_append(v, ["gesse", "verb", "gesse", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hyde", "verb", "hyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drowen", "verb", "drowen", "", "", "", "past of drawen"]) + let v = native_list_append(v, ["savouren", "verb", "sāvŏuren", "savour", "savoure", "", ""]) + let v = native_list_append(v, ["writen", "verb", "write", "wroot", "wreten", "", "To write draw"]) + let v = native_list_append(v, ["wroot", "verb", "wroot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enforcen", "verb", "enfōrcen", "enforse", "enfoarce", "", ""]) + let v = native_list_append(v, ["reulen", "verb", "reule", "reuled", "reuled", "", "To rule govern"]) + let v = native_list_append(v, ["myghte", "verb", "myghte", "", "", "", "inflection of mowen"]) + let v = native_list_append(v, ["enfourmen", "verb", "enfourmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyue", "verb", "lyue", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["gayne", "verb", "gayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tharf", "verb", "darf", "þarf", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["shoven", "verb", "shoven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["etin", "verb", "etin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wype", "verb", "wype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mourne", "verb", "mourne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dusken", "verb", "duske", "dusked", "dusked", "", "To become or"]) + let v = native_list_append(v, ["lafte", "verb", "lafte", "", "", "", "simple past of"]) + let v = native_list_append(v, ["stree", "verb", "stree", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nempne", "verb", "nempned", "nempnen", "nemnen", "", "to name or"]) + let v = native_list_append(v, ["nempned", "verb", "nempned", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bringue", "verb", "bringue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wep", "verb", "wep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heleth", "verb", "heleth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forfete", "verb", "forfete", "", "", "", "To incur a"]) + let v = native_list_append(v, ["swown", "verb", "swown", "", "", "", "swoon"]) + let v = native_list_append(v, ["lovon", "verb", "lovon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["distrouble", "verb", "distrouble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grucche", "verb", "grucched", "", "grucched", "", "To murmur to"]) + let v = native_list_append(v, ["grucches", "verb", "grucches", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["grucching", "verb", "grucching", "", "", "", "present participle of"]) + let v = native_list_append(v, ["slike", "verb", "slike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atsterten", "verb", "etsterten", "", "", "", "To start away"]) + let v = native_list_append(v, ["atend", "verb", "atend", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["overshaken", "verb", "overshaken", "", "", "", "to disperse to"]) + let v = native_list_append(v, ["dase", "verb", "dase", "", "", "", "daze"]) + let v = native_list_append(v, ["amenusen", "verb", "amenused", "", "amenused", "", "to lessen"]) + let v = native_list_append(v, ["amenused", "verb", "amenused", "", "", "", "past of amenusen"]) + let v = native_list_append(v, ["worne", "verb", "worne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forwerpe", "verb", "forwerpe", "", "", "", "inflection of forwerpen"]) + let v = native_list_append(v, ["bowne", "verb", "bowne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drenchen", "verb", "drenche", "dreynte", "dreynt", "", "To submerge to"]) + let v = native_list_append(v, ["forslouthen", "verb", "forslouthed", "", "forslouthed", "", "To delay to"]) + let v = native_list_append(v, ["forslouthed", "verb", "forslouthed", "", "", "", "first-/third-person singular past"]) + let v = native_list_append(v, ["fourme", "verb", "fourme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaincall", "verb", "gaincall", "", "", "", "to call to"]) + let v = native_list_append(v, ["withturnen", "verb", "withturned", "", "withturned", "", "To turn around"]) + let v = native_list_append(v, ["reyse", "verb", "reyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reneye", "verb", "reneye", "", "", "", "renay deny or"]) + let v = native_list_append(v, ["wlaten", "verb", "wlated", "", "wlated", "", "to feel disgust"]) + let v = native_list_append(v, ["supprise", "verb", "surprise", "", "", "", "surprise"]) + let v = native_list_append(v, ["waiment", "verb", "waiment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dumben", "verb", "dumbe", "dumbed", "dumbed", "", "To make no"]) + let v = native_list_append(v, ["forslyngren", "verb", "forslyngred", "", "forslyngred", "", "To beat belabour."]) + let v = native_list_append(v, ["forlong", "verb", "forlonged", "", "forlonged", "", "To keep or"]) + let v = native_list_append(v, ["halsed", "verb", "hawsid", "halyst", "ihalset", "", "simple past of"]) + let v = native_list_append(v, ["kolde", "verb", "kolde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biwreyen", "verb", "biwreye", "biwreyed", "biwreyed", "", "To bewray to"]) + let v = native_list_append(v, ["grone", "verb", "grone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["growen", "verb", "growe", "grew", "growe", "", "To grow usually"]) + let v = native_list_append(v, ["abrogen", "verb", "abrogen", "", "", "", "To abrogate."]) + let v = native_list_append(v, ["schifte", "verb", "schifte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["percen", "verb", "perced", "", "perced", "", "to pierce"]) + let v = native_list_append(v, ["umshaden", "verb", "umshaden", "", "", "", "to overshadow or"]) + let v = native_list_append(v, ["forcrempen", "verb", "forcremped", "", "forcremped", "", "To contract cramp"]) + let v = native_list_append(v, ["forclemmen", "verb", "forclemmed", "", "forclemmed", "", "To pinch with"]) + let v = native_list_append(v, ["syh", "verb", "syh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["attamed", "verb", "attamed", "", "", "", "simple past/past participle"]) + let v = native_list_append(v, ["halde", "verb", "halde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forgraith", "verb", "forgraith", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fornumen", "verb", "fornomen", "fornome", "fornomme", "", "past participle of"]) + let v = native_list_append(v, ["mithen", "verb", "mithed", "mithed", "mithed", "", "To avoid shun"]) + let v = native_list_append(v, ["gladen", "verb", "gladen", "", "", "", "to gladden"]) + let v = native_list_append(v, ["fulcomen", "verb", "fulcomen", "", "", "", "To finish perfect."]) + let v = native_list_append(v, ["clusen", "verb", "clused", "", "clused", "", "To close or"]) + let v = native_list_append(v, ["forsethen", "verb", "forsethe", "forseth", "forsoden", "", "To boil away"]) + let v = native_list_append(v, ["stonen", "verb", "stone", "stoned", "stoned", "", "To throw stones."]) + let v = native_list_append(v, ["schin", "verb", "schin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["florie", "verb", "florie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skleren", "verb", "sklered", "", "sklered", "", "to veil conceal"]) + let v = native_list_append(v, ["wimplen", "verb", "wimpled", "wimpled", "wimpled", "", "To conceal especially"]) + let v = native_list_append(v, ["trispast", "verb", "trispast", "", "", "", "past participle of"]) + let v = native_list_append(v, ["yeme", "verb", "yeme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crased", "verb", "crased", "", "", "", "past of crasen"]) + let v = native_list_append(v, ["quysen", "verb", "quysed", "", "quysed", "", "to squeeze press"]) + let v = native_list_append(v, ["draden", "verb", "draden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["browden", "verb", "browden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heven", "verb", "haf", "hoven", "hoven", "", "To raise or"]) + let v = native_list_append(v, ["pullen", "verb", "pulle", "pulled", "pulled", "", "to pull"]) + let v = native_list_append(v, ["swimmen", "verb", "swimmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swern", "verb", "swern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scap", "verb", "scap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kemmen", "verb", "kemmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feamin", "verb", "feamin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bliken", "verb", "blikien", "blikken", "", "", "To become pale"]) + let v = native_list_append(v, ["schinen", "verb", "schine", "schon", "schined", "", "To emit brightness"]) + let v = native_list_append(v, ["scinen", "verb", "scinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schiten", "verb", "schoot", "schoot", "schite", "", "To shit defecate"]) + let v = native_list_append(v, ["schriven", "verb", "schriven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smiten", "verb", "smite", "smot", "smite", "", "To fight enter"]) + let v = native_list_append(v, ["sigen", "verb", "sigen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sighen", "verb", "sighed", "sighed", "sighed", "", "to sigh to"]) + let v = native_list_append(v, ["chaunge", "verb", "change", "chaung", "chawnge", "", "alternative form of"]) + let v = native_list_append(v, ["oxi", "verb", "oxi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schalt", "verb", "shalt", "schelt", "shult", "", "second-person singular present"]) + let v = native_list_append(v, ["kempen", "verb", "kempe", "", "", "", "to go to"]) + let v = native_list_append(v, ["hegen", "verb", "hegen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vollen", "verb", "vollen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["with ioyne", "verb", "with ioyne", "", "", "", "To join together"]) + let v = native_list_append(v, ["herbere", "verb", "herbere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steten", "verb", "stette", "istett", "istett", "", "To make a"]) + let v = native_list_append(v, ["temse", "verb", "temes", "temeze", "temmes", "", "alternative form of"]) + let v = native_list_append(v, ["leten", "verb", "lete", "let", "lete", "", "to let"]) + let v = native_list_append(v, ["feinen", "verb", "feinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leson", "verb", "leson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blowen", "verb", "blowe", "blew", "blowe", "", "To blow produce"]) + let v = native_list_append(v, ["hiden", "verb", "hidde", "hid", "hid", "", "to conceal hide"]) + let v = native_list_append(v, ["harnas", "verb", "harnas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fresen", "verb", "fres", "frosen", "frosen", "", "To freeze to"]) + let v = native_list_append(v, ["entamen", "verb", "entamed", "", "entamed", "", "to wound injure"]) + let v = native_list_append(v, ["roote", "verb", "roote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veyne", "verb", "veyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dotie", "verb", "dotie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["croppe", "verb", "croppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["priden", "verb", "priden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ryde", "verb", "ryde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lepen", "verb", "leapen", "leopen", "leppen", "", "to leap"]) + let v = native_list_append(v, ["herye", "verb", "herye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["derve", "verb", "derve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["governe", "verb", "governe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanne", "verb", "wanned", "", "wanned", "", "alternative form of"]) + let v = native_list_append(v, ["brouke", "verb", "brouke", "", "", "", "singular past of"]) + let v = native_list_append(v, ["assotted", "verb", "assotted", "", "", "", "ed-form of assot"]) + let v = native_list_append(v, ["fremyssh", "verb", "fremyssh", "", "", "", "To shiver shudder."]) + let v = native_list_append(v, ["slideren", "verb", "slidere", "slidered", "slidered", "", "To skid or"]) + let v = native_list_append(v, ["aiden", "verb", "aide", "aided", "aided", "", "To aid."]) + let v = native_list_append(v, ["forarnen", "verb", "forarnen", "", "", "", "to ride hard"]) + let v = native_list_append(v, ["forbannen", "verb", "forbonnen", "", "", "", "to banish"]) + let v = native_list_append(v, ["forbarren", "verb", "forbarren", "", "", "", "to bar bar"]) + let v = native_list_append(v, ["forbeaten", "verb", "forbēten", "", "", "", "to beat down"]) + let v = native_list_append(v, ["forbeoden", "verb", "forbead", "forboden", "forboden", "", "to forbid"]) + let v = native_list_append(v, ["zelle", "verb", "zelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drepen", "verb", "drepe", "drap", "dropen", "", "To kill slay"]) + let v = native_list_append(v, ["frenden", "verb", "frende", "frended", "frended", "", "To have a"]) + let v = native_list_append(v, ["mawe", "verb", "mawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maad", "verb", "maad", "", "", "", "made"]) + let v = native_list_append(v, ["esed", "verb", "esed", "", "", "", "simple past/past participle"]) + let v = native_list_append(v, ["yellen", "verb", "yelled", "yal", "yelled", "", "To yell or"]) + let v = native_list_append(v, ["aferme", "verb", "aferme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crawe", "verb", "crawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scheden", "verb", "schedde", "sched", "sched", "", "To divide or"]) + let v = native_list_append(v, ["macen", "verb", "macen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["losenge", "verb", "losenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helth", "verb", "helth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suelt", "verb", "suelt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withnayen", "verb", "withnayen", "", "", "", "to say no"]) + let v = native_list_append(v, ["dewe", "verb", "dewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lykie", "verb", "lykie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stroken", "verb", "stroke", "stroked", "stroked", "", "To stroke to"]) + let v = native_list_append(v, ["steppen", "verb", "steppe", "stop", "stapen", "", "To step to"]) + let v = native_list_append(v, ["founden", "verb", "founde", "founded", "founded", "", "to mix ingredients"]) + let v = native_list_append(v, ["deynen", "verb", "deyned", "deyned", "deyned", "", "To consider worth"]) + let v = native_list_append(v, ["deyne", "verb", "deyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heylen", "verb", "heylen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ministere", "verb", "ministere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forbinden", "verb", "forband", "forbunden", "forbunden", "", "To bind up"]) + let v = native_list_append(v, ["suppon", "verb", "suppon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorou", "verb", "sorou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saien", "verb", "saien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skorne", "verb", "skorne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiþsede", "verb", "wiþsede", "", "", "", "past of wiþseyen"]) + let v = native_list_append(v, ["withseien", "verb", "withseyen", "wiþseyen", "wiðseyen", "", "to speak against"]) + let v = native_list_append(v, ["withsede", "verb", "withsede", "", "", "", "past of withseien"]) + let v = native_list_append(v, ["witseiden", "verb", "witseiden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiðsæid", "verb", "wiðsæid", "", "", "", "past of wiðseyen"]) + let v = native_list_append(v, ["whitsaide", "verb", "whitsaide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["witsed", "verb", "witsed", "", "", "", "past of witseiden"]) + let v = native_list_append(v, ["witseie", "verb", "witseie", "", "", "", "first-person indicative/subjunctive of"]) + let v = native_list_append(v, ["witsigge", "verb", "witsigge", "", "", "", "first-person indicative/subjunctive of"]) + let v = native_list_append(v, ["witheseine", "verb", "witheseine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["witheseie", "verb", "witheseie", "", "", "", "first-person indicative/subjunctive tense"]) + let v = native_list_append(v, ["withseide", "verb", "withseide", "", "", "", "first-person indicative/subjunctive of"]) + let v = native_list_append(v, ["withseid", "verb", "withseid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wissede", "verb", "wissede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withseiden", "verb", "withseiden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withseyen", "verb", "withseyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withseggen", "verb", "withseggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiþseye", "verb", "wiþseye", "", "", "", "first-person singular indicative/subjunctive"]) + let v = native_list_append(v, ["wiþseyen", "verb", "wiþseyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiðseyen", "verb", "wiðseyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["witsiggen", "verb", "witsiggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seyen", "verb", "seyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seggen", "verb", "seggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæcgan", "verb", "sæcgan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seȝȝen", "verb", "seȝȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seggon", "verb", "seggon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæin", "verb", "sæin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["segcean", "verb", "segcean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sucgen", "verb", "sucgen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seuggen", "verb", "seuggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seiȝen", "verb", "seiȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seigen", "verb", "seigen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seiȝn", "verb", "seiȝn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suggen", "verb", "suggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ziggen", "verb", "ziggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ziggene", "verb", "ziggene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seggane", "verb", "seggane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæcgen", "verb", "sæcgen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæcgene", "verb", "sæcgene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæcgæn", "verb", "sæcgæn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sægen", "verb", "sægen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sægenne", "verb", "sægenne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæggen", "verb", "sæggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæggene", "verb", "sæggene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgæn", "verb", "secgæn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgene", "verb", "secgene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgen", "verb", "secgen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgenne", "verb", "secgenne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secȝende", "verb", "secȝende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæcgenne", "verb", "sæcgenne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secgon", "verb", "secgon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seȝen", "verb", "seȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perceave", "verb", "perceave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["receave", "verb", "receave", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hege", "verb", "hege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["picke", "verb", "picke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["depe", "verb", "depe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kessen", "verb", "kessen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["befalle", "verb", "befalle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sotten", "verb", "sotte", "sotted", "sotted", "", "To cause to"]) + let v = native_list_append(v, ["wasche", "verb", "wasche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wasch", "verb", "wasch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faden", "verb", "fade", "faded", "faded", "", "to fade"]) + let v = native_list_append(v, ["rixigen", "verb", "rixigen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vengen", "verb", "vengen", "", "", "", "to avenge"]) + let v = native_list_append(v, ["thakked", "verb", "thakked", "", "", "", "Slapped struck"]) + let v = native_list_append(v, ["goren", "verb", "gore", "gored", "gored", "", "to gore to"]) + let v = native_list_append(v, ["behalde", "verb", "behalde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behald", "verb", "behald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perceve", "verb", "perceve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swarten", "verb", "swarte", "swarted", "swarted", "", "To blacken or"]) + let v = native_list_append(v, ["fumie", "verb", "fumie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hilled", "verb", "hilled", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["legges", "verb", "legges", "", "", "", "plural of leg"]) + let v = native_list_append(v, ["bifil", "verb", "bifil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["storve", "verb", "storve", "", "", "", "inflection of sterven"]) + let v = native_list_append(v, ["folen", "verb", "fole", "foled", "foled", "", "To foal to"]) + let v = native_list_append(v, ["merren", "verb", "merred", "merred", "merred", "", "To disturb hinder"]) + let v = native_list_append(v, ["massen", "verb", "massen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seisen", "verb", "seise", "seised", "seised", "", "To kidnap abduct"]) + let v = native_list_append(v, ["answere", "verb", "answere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assaile", "verb", "assaile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bruste", "verb", "bruste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clepen", "verb", "clepte", "yclept", "yclept", "", "to call out"]) + let v = native_list_append(v, ["anende", "verb", "anende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["snarken", "verb", "snarked", "snarked", "snarked", "", "to snort to"]) + let v = native_list_append(v, ["snoren", "verb", "snored", "snored", "snored", "", "to snore"]) + let v = native_list_append(v, ["robb", "verb", "robb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rounde", "verb", "rounde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schape", "verb", "schape", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["performe", "verb", "performe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mayen", "verb", "mayen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ymagen", "verb", "ymage", "ymaged", "ymaged", "", "to imagine think"]) + let v = native_list_append(v, ["obumbren", "verb", "obumbred", "obumbred", "obumbred", "", "to overshadow"]) + let v = native_list_append(v, ["aboumbren", "verb", "aboumbren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heve", "verb", "heve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sadel", "verb", "sadel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sadelen", "verb", "sadele", "sadeled", "sadeled", "", "To equip with"]) + let v = native_list_append(v, ["fylle", "verb", "fylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haav", "verb", "haav", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flyten", "verb", "flyte", "flot", "flyte", "", "To quarrel brawl"]) + let v = native_list_append(v, ["swellen", "verb", "swelle", "swal", "swollen", "", "To swell to"]) + let v = native_list_append(v, ["leie", "verb", "lei", "leiȝ", "leiȝe", "", "simple past of"]) + let v = native_list_append(v, ["flaumen", "verb", "flaumen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adighten", "verb", "adighte", "adight", "adight", "", "To set in"]) + let v = native_list_append(v, ["woth", "verb", "woth", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["flaten", "verb", "flated", "", "flated", "", "to feel nausea"]) + let v = native_list_append(v, ["swarmen", "verb", "swarme", "swarmed", "swarmed", "", "To swarm to"]) + let v = native_list_append(v, ["begalewen", "verb", "begalewed", "", "begalewed", "", "To frighten."]) + let v = native_list_append(v, ["gouten", "verb", "gouted", "gouted", "gouted", "", "to drip to"]) + let v = native_list_append(v, ["awen", "verb", "awe", "awed", "awed", "", "To scare horrify."]) + let v = native_list_append(v, ["caren", "verb", "care", "cared", "cared", "", "to care"]) + let v = native_list_append(v, ["demare", "verb", "demare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dinten", "verb", "dumbe", "dumbed", "dumbed", "", "To land a"]) + let v = native_list_append(v, ["dressen", "verb", "dressed", "dressed", "dressed", "", "To direct or"]) + let v = native_list_append(v, ["folien", "verb", "folien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angeren", "verb", "angeren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yntanglyd", "verb", "yntanglyd", "", "", "", "entangled ensnared mentally"]) + let v = native_list_append(v, ["yeye", "verb", "yeye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stingen", "verb", "stingen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foote", "verb", "foote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moste", "verb", "muste", "", "", "", "inflection of moten"]) + let v = native_list_append(v, ["seemen", "verb", "seemen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shrinke", "verb", "shrinke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shrinken", "verb", "shrinken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sawen", "verb", "sawen", "", "", "", "to saw"]) + let v = native_list_append(v, ["knytte", "verb", "knytte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heon", "verb", "heon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weien", "verb", "weien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["likin", "verb", "likin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scarcen", "verb", "scarcen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["purgen", "verb", "purge", "purged", "purged", "", "To cleanse or"]) + let v = native_list_append(v, ["enherite", "verb", "enherite", "", "", "", "to inherit"]) + let v = native_list_append(v, ["appenden", "verb", "appende", "appended", "appended", "", "to belong"]) + let v = native_list_append(v, ["angir", "verb", "angir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frede", "verb", "frede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dwinen", "verb", "dwinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cliven", "verb", "cliven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spruten", "verb", "sprute", "sprot", "sproten", "", "To emerge or"]) + let v = native_list_append(v, ["suken", "verb", "suken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bernen", "verb", "bernen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swelten", "verb", "swelte", "swalt", "swolten", "", "To die to"]) + let v = native_list_append(v, ["swemmen", "verb", "swemmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swingen", "verb", "swingen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werren", "verb", "werred", "werred", "werred", "", "To attack fight"]) + let v = native_list_append(v, ["ofsenden", "verb", "ofsenden", "", "", "", "To summon send"]) + let v = native_list_append(v, ["grasen", "verb", "grase", "grased", "grased", "", "To graze to"]) + let v = native_list_append(v, ["octroy", "verb", "octroy", "", "", "", "to octroy"]) + let v = native_list_append(v, ["feyn", "verb", "feyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuken", "verb", "tukked", "", "tukked", "", "to abuse mistreat"]) + let v = native_list_append(v, ["chuen", "verb", "chuen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flammen", "verb", "flammen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyed", "verb", "hyed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fnese", "verb", "fnese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lefe", "verb", "lefe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dasse", "verb", "dasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fukken", "verb", "fukke", "fukked", "fukked", "", "to fuck copulate"]) + let v = native_list_append(v, ["onden", "verb", "onded", "onded", "onded", "", "To breathe exhale."]) + let v = native_list_append(v, ["cheyne", "verb", "cheyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suld", "verb", "suld", "", "", "", "should"]) + let v = native_list_append(v, ["heien", "verb", "heied", "", "heied", "", "to raise lift"]) + let v = native_list_append(v, ["beleeue", "verb", "beleeue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barke", "verb", "barke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hafe", "verb", "hafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scorne", "verb", "scorne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gyue", "verb", "gyue", "", "", "", "give"]) + let v = native_list_append(v, ["denie", "verb", "denie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geuen", "verb", "geuen", "", "", "", "given"]) + let v = native_list_append(v, ["fowle", "verb", "fowle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dred", "verb", "dred", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rudden", "verb", "rudded", "rudded", "rudded", "", "To rub to"]) + let v = native_list_append(v, ["brayne", "verb", "brayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cromen", "verb", "crome", "cromed", "cromed", "", "To break up"]) + let v = native_list_append(v, ["enluten", "verb", "enluted", "", "enluted", "", "to coat with"]) + let v = native_list_append(v, ["robyn", "verb", "robyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gestene", "verb", "gestene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wadon", "verb", "wadon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["begg", "verb", "begg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slynge", "verb", "slenge", "sclynge", "sling", "", "alternative form of"]) + let v = native_list_append(v, ["slyng", "verb", "slyng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slyngen", "verb", "slynge", "slang", "slungen", "", "To sling hurl"]) + let v = native_list_append(v, ["knutten", "verb", "knutten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ransake", "verb", "ransake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stoney", "verb", "stoney", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ranson", "verb", "ranson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horsen", "verb", "horse", "horsed", "horsed", "", "To supply or"]) + let v = native_list_append(v, ["schun", "verb", "schin", "schone", "schune", "", "present indicative/subjunctive plural"]) + let v = native_list_append(v, ["assaille", "verb", "assaille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["derrain", "verb", "derrain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wynwyn", "verb", "wynwyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meynprisen", "verb", "meynprisen", "", "", "", "to mainprise"]) + let v = native_list_append(v, ["sparre", "verb", "sparre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bidelven", "verb", "bidalf", "bidolven", "bidolven", "", "To bury to"]) + let v = native_list_append(v, ["smellen", "verb", "smelle", "smelled", "smelled", "", "To sense a"]) + let v = native_list_append(v, ["blaste", "verb", "blaste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prophecie", "verb", "prophecie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["booten", "verb", "booten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["keme", "verb", "keme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["greine", "verb", "greine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heascen", "verb", "heasce", "heasced", "heasced", "", "To hate or"]) + let v = native_list_append(v, ["feynen", "verb", "feyne", "feyned", "feyned", "", "To make produce"]) + let v = native_list_append(v, ["fande", "verb", "fande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colden", "verb", "colded", "colded", "colded", "", "To become or"]) + let v = native_list_append(v, ["spyl", "verb", "spyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aquante", "verb", "aquante", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delite", "verb", "delite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dystre", "verb", "dystre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fote", "verb", "fote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amerre", "verb", "amerre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mawen", "verb", "mawen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraine", "verb", "fraine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seve", "verb", "seve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pakk", "verb", "pakk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soghe", "verb", "soghe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeyn", "verb", "yeyn", "", "", "", "present participle of"]) + let v = native_list_append(v, ["asche", "verb", "asche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["borken", "verb", "borken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honen", "verb", "honed", "", "honed", "", "to linger loiter"]) + let v = native_list_append(v, ["begreten", "verb", "begrēten", "", "", "", "To beweep regret"]) + let v = native_list_append(v, ["flowe", "verb", "flowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swind", "verb", "swand", "swund", "swund", "", "To languish waste"]) + let v = native_list_append(v, ["deluden", "verb", "delude", "deluded", "deluded", "", "To delude or"]) + let v = native_list_append(v, ["smoken", "verb", "smoken", "", "", "", "To perfume to"]) + let v = native_list_append(v, ["fornemen", "verb", "fornemen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lowen", "verb", "lowed", "lowed", "lowed", "", "To moo or"]) + let v = native_list_append(v, ["ympe", "verb", "ympe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fayne", "verb", "fayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murn", "verb", "murn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wonten", "verb", "wonten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ourlen", "verb", "ourled", "", "ourled", "", "to hem to"]) + let v = native_list_append(v, ["asay", "verb", "asay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bedende", "verb", "bedende", "", "", "", "present participle of"]) + let v = native_list_append(v, ["bleede", "verb", "bleede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sulte", "verb", "sulte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yemen", "verb", "yemed", "yemed", "yemed", "", "To pay attention"]) + let v = native_list_append(v, ["forgreithen", "verb", "forgreithed", "", "forgreithed", "", "To get ready"]) + let v = native_list_append(v, ["skewe", "verb", "skewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprent", "verb", "sprent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withfighten", "verb", "withfoughte", "withfoughten", "withfoughten", "", "To fight against"]) + let v = native_list_append(v, ["withdon", "verb", "withdide", "", "", "", "To deal with"]) + let v = native_list_append(v, ["withchaungen", "verb", "withchaungede", "withchaunged", "withchaunged", "", "To alter ones"]) + let v = native_list_append(v, ["withlaughen", "verb", "withlough", "", "", "", "To laugh with"]) + let v = native_list_append(v, ["withdeparten", "verb", "withdepartede", "withdeparted", "withdeparted", "", "To divide or"]) + let v = native_list_append(v, ["withscoren", "verb", "withscorede", "withscored", "withscored", "", "To curtail or"]) + let v = native_list_append(v, ["withscapen", "verb", "withscaped", "", "withscaped", "", "To get away"]) + let v = native_list_append(v, ["withslippen", "verb", "withslipped", "", "withslipped", "", "To escape the"]) + let v = native_list_append(v, ["withsetten", "verb", "withsette", "withset", "withset", "", "To block or"]) + let v = native_list_append(v, ["withspeken", "verb", "withspak", "withspoken", "withspoken", "", "To speak against"]) + let v = native_list_append(v, ["withsamen", "verb", "withsamed", "", "withsamed", "", "To assemble"]) + let v = native_list_append(v, ["withcallen", "verb", "withcalled", "", "withcalled", "", "To recall call"]) + let v = native_list_append(v, ["withlesen", "verb", "withlos", "withlosen", "withlosen", "", "To be taken"]) + let v = native_list_append(v, ["withsterten", "verb", "withstart", "withstorten", "withstorten", "", "To put up"]) + let v = native_list_append(v, ["tempten", "verb", "tempted", "tempted", "tempted", "", "to tempt"]) + let v = native_list_append(v, ["buffeten", "verb", "buffeted", "buffeted", "buffeted", "", "To strike with"]) + let v = native_list_append(v, ["manuren", "verb", "manuren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medde", "verb", "medde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stedde", "verb", "stedde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["munne", "verb", "munne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flemen", "verb", "flemed", "flemed", "flemed", "", "To drive away"]) + let v = native_list_append(v, ["luffe", "verb", "luffe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sayen", "verb", "sayen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assignen", "verb", "assignen", "", "", "", "to assign allot"]) + let v = native_list_append(v, ["vexen", "verb", "vexe", "vexed", "vexed", "", "To afflict to"]) + let v = native_list_append(v, ["sokke", "verb", "sokke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heggen", "verb", "hegged", "hegged", "hegged", "", "To hedge to"]) + let v = native_list_append(v, ["smacky", "verb", "smacky", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brinken", "verb", "brinken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breden", "verb", "brede", "bredde", "bred", "", "To grill to"]) + let v = native_list_append(v, ["spuen", "verb", "spuen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worschipen", "verb", "worschiped", "worschiped", "worschiped", "", "to worship"]) + let v = native_list_append(v, ["halwen", "verb", "halwed", "halwed", "halwed", "", "to hallow"]) + let v = native_list_append(v, ["clothen", "verb", "clothe", "cladde", "clad", "", "To clothe to"]) + let v = native_list_append(v, ["touchen", "verb", "touched", "touched", "touched", "", "to touch"]) + let v = native_list_append(v, ["neiyen", "verb", "neiyed", "neiyed", "neiyed", "", "to approach nigh"]) + let v = native_list_append(v, ["preien", "verb", "preied", "preied", "preied", "", "to pray ask"]) + let v = native_list_append(v, ["preyen", "verb", "preyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulfillen", "verb", "fulfilde", "fulfild", "fulfild", "", "To perform or"]) + let v = native_list_append(v, ["comaunden", "verb", "comaunded", "comaunded", "comaunded", "", "To command to"]) + let v = native_list_append(v, ["wondren", "verb", "wondred", "wondred", "wondred", "", "to wonder"]) + let v = native_list_append(v, ["folwen", "verb", "folwed", "folwed", "folwed", "", "To come after"]) + let v = native_list_append(v, ["wearen", "verb", "wearen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freese", "verb", "freese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hounden", "verb", "hounded", "", "hounded", "", "To copulate with"]) + let v = native_list_append(v, ["mirthe", "verb", "mirthe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bousen", "verb", "boused", "", "boused", "", "To drink to"]) + let v = native_list_append(v, ["abaishen", "verb", "abaishen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hyre", "verb", "hyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knokken", "verb", "knokked", "knokked", "knokked", "", "To pound to"]) + let v = native_list_append(v, ["stakken", "verb", "stakke", "stakked", "stakked", "", "To stack to"]) + let v = native_list_append(v, ["spreden", "verb", "spreden", "", "", "", "to spread"]) + let v = native_list_append(v, ["umbeclosen", "verb", "umbeclosed", "", "umbeclosed", "", "to close around"]) + let v = native_list_append(v, ["umbegon", "verb", "umbeyode", "", "", "", "to go around"]) + let v = native_list_append(v, ["umbedelven", "verb", "umbedolf", "umbedolven", "umbedolven", "", "to dig or"]) + let v = native_list_append(v, ["umbeloken", "verb", "umbeloked", "", "umbeloked", "", "to look around"]) + let v = native_list_append(v, ["umbelappen", "verb", "umbelapped", "", "umbelapped", "", "to clothe or"]) + let v = native_list_append(v, ["efflouren", "verb", "effloureth", "", "", "", "to shed its"]) + let v = native_list_append(v, ["umbefolden", "verb", "umbefeld", "", "", "", "to envelop enfold"]) + let v = native_list_append(v, ["yondfaren", "verb", "yondfore", "", "", "", "to pass or"]) + let v = native_list_append(v, ["yondbreden", "verb", "yondbredde", "yondbredd", "yondbredd", "", "to go beyond"]) + let v = native_list_append(v, ["atbreken", "verb", "atbrak", "atbroken", "atbroken", "", "to break away"]) + let v = native_list_append(v, ["atberen", "verb", "atbar", "atboren", "atboren", "", "to carry off"]) + let v = native_list_append(v, ["atbresten", "verb", "atbrast", "atbrosten", "atbrosten", "", "to break away"]) + let v = native_list_append(v, ["aschen", "verb", "aschen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["effloureth", "verb", "effloureth", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["theam", "verb", "theam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["submitten", "verb", "submitten", "", "", "", "submit"]) + let v = native_list_append(v, ["enhalsen", "verb", "enhalsed", "", "", "", "to embrace"]) + let v = native_list_append(v, ["eeren", "verb", "eeren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gewan", "verb", "gewan", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["nuye", "verb", "nuye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laghen", "verb", "laghen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wasschen", "verb", "wasschen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quelen", "verb", "quele", "qual", "quolen", "", "To suffer from"]) + let v = native_list_append(v, ["lufe", "verb", "lufe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thronen", "verb", "thronen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tidde", "verb", "tidde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cussen", "verb", "cussen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beelde", "verb", "beelde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berke", "verb", "berke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tilie", "verb", "tilie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strok", "verb", "strok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sege", "verb", "sege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blissen", "verb", "blissed", "blissed", "blissed", "", "To be glad"]) + let v = native_list_append(v, ["mithed", "verb", "mithed", "", "", "", "past singular of"]) + let v = native_list_append(v, ["skir", "verb", "skir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cappen", "verb", "cappe", "capped", "capped", "", "To put a"]) + let v = native_list_append(v, ["clappen", "verb", "clappe", "clapped", "clapped", "", "To make a"]) + let v = native_list_append(v, ["cleven", "verb", "cleve", "clef", "cloven", "", "To cleave to"]) + let v = native_list_append(v, ["clingen", "verb", "clong", "clungen", "clungen", "", "To solidify to"]) + let v = native_list_append(v, ["synewe", "verb", "synewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beschrewen", "verb", "beschrewed", "", "beschrewed", "", "To call someone"]) + let v = native_list_append(v, ["bresten", "verb", "breste", "brast", "brosten", "", "To burst break"]) + let v = native_list_append(v, ["botnen", "verb", "botne", "botned", "botned", "", "To cure or"]) + let v = native_list_append(v, ["knok", "verb", "knok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knoke", "verb", "knoke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drysse", "verb", "drysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gewinnan", "verb", "gewinnan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["varwen", "verb", "varwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withclosen", "verb", "withclosed", "", "withclosed", "", "To enclose close"]) + let v = native_list_append(v, ["withdelen", "verb", "withdelte", "withdelt", "withdelt", "", "To share out"]) + let v = native_list_append(v, ["feahen", "verb", "feahen", "", "", "", "To make beautiful"]) + let v = native_list_append(v, ["issen", "verb", "issed", "issed", "issed", "", "To exit or"]) + let v = native_list_append(v, ["stourben", "verb", "stourbed", "", "stourbed", "", "to disturb"]) + let v = native_list_append(v, ["muzi", "verb", "muzi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mewe", "verb", "mewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweten", "verb", "sweted", "sweted", "sweted", "", "To make sweet"]) + let v = native_list_append(v, ["hamelen", "verb", "hamelede", "hameled", "hameled", "", "To maim to"]) + let v = native_list_append(v, ["tosten", "verb", "toste", "tosted", "tosted", "", "To toast to"]) + let v = native_list_append(v, ["braye", "verb", "braye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lollen", "verb", "lollede", "lolled", "lolled", "", "To act lazily"]) + let v = native_list_append(v, ["roted", "verb", "roted", "", "", "", "inflection of roten"]) + let v = native_list_append(v, ["herbare", "verb", "herbare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iwon", "verb", "iwon", "", "", "", "third-person singular simple"]) + let v = native_list_append(v, ["blinnen", "verb", "blinne", "blan", "", "", "To stop or"]) + let v = native_list_append(v, ["roupe", "verb", "roupe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["proker", "verb", "proker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thinken", "verb", "thought", "ithought", "ithought", "", "To think ponder"]) + let v = native_list_append(v, ["tryp", "verb", "tryp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glewe", "verb", "glewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scheede", "verb", "scheede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gracen", "verb", "grace", "graced", "graced", "", "To acknowledge to"]) + let v = native_list_append(v, ["cruden", "verb", "cruden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spicen", "verb", "spice", "spiced", "spiced", "", "To spice to"]) + let v = native_list_append(v, ["heaten", "verb", "heaten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relente", "verb", "relente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lushen", "verb", "lushe", "lushed", "lushed", "", "To make a"]) + let v = native_list_append(v, ["cheesen", "verb", "cheesen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeten", "verb", "ȝette", "ȝet", "ȝet", "", "To give by"]) + let v = native_list_append(v, ["weie", "verb", "weie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gieme", "verb", "gieme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝee", "verb", "ȝee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pleien", "verb", "pleien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fnesen", "verb", "fnesed", "fnesed", "fnesed", "", "alternative form of"]) + let v = native_list_append(v, ["swyfen", "verb", "swyfen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freten", "verb", "frat", "frat", "yfreten", "", "To consume to"]) + let v = native_list_append(v, ["wyne", "verb", "wyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wawi", "verb", "wawi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorow", "verb", "sorow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amorre", "verb", "amorre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mowen", "verb", "myghte", "myghte", "mowe", "", "To be strong"]) + let v = native_list_append(v, ["cunnen", "verb", "coude", "coud", "coud", "", "To know about"]) + let v = native_list_append(v, ["bowen", "verb", "bowed", "beigh", "bowed", "", "To bend curve"]) + let v = native_list_append(v, ["berye", "verb", "berye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dreme", "verb", "dreme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cerchen", "verb", "cerchen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schadowe", "verb", "schadowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freen", "verb", "freon", "fren", "freoȝen", "", "To free liberate"]) + let v = native_list_append(v, ["durren", "verb", "dar", "durste", "durre", "", "To dare be"]) + let v = native_list_append(v, ["thurven", "verb", "thurven", "", "", "", "present indicative/subjunctive plural"]) + let v = native_list_append(v, ["owen", "verb", "ough", "oughte", "owed", "", "To own possess"]) + let v = native_list_append(v, ["dauncen", "verb", "daunced", "daunced", "daunced", "", "To dance be"]) + let v = native_list_append(v, ["strecchen", "verb", "strecche", "streighte", "streight", "", "To stretch out"]) + let v = native_list_append(v, ["hylde", "verb", "hylde", "", "", "", "simple past of"]) + let v = native_list_append(v, ["pronouncen", "verb", "pronounce", "pronounced", "pronounced", "", "To pronounce utter"]) + let v = native_list_append(v, ["merre", "verb", "merre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["encensen", "verb", "encensed", "encensed", "encensed", "", "To use incense"]) + let v = native_list_append(v, ["fiþele", "verb", "fiþele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fithel", "verb", "fithel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breste", "verb", "breste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rehete", "verb", "reheted", "", "reheted", "", "to cheer up"]) + let v = native_list_append(v, ["thickenen", "verb", "thickene", "thickened", "thickened", "", "To coagulate solidify"]) + let v = native_list_append(v, ["thikken", "verb", "thikke", "thikked", "thikked", "", "To thicken increase"]) + let v = native_list_append(v, ["bathen", "verb", "bathed", "bathed", "bathed", "", "To put or"]) + let v = native_list_append(v, ["nyghte", "verb", "nyghte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nyȝt", "verb", "nyȝt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grafe", "verb", "grafe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sliken", "verb", "slike", "sliked", "sliked", "", "To smoothen polish"]) + let v = native_list_append(v, ["slekyn", "verb", "slekyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slyken", "verb", "slyken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slikien", "verb", "slikien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stoonen", "verb", "stoonen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reeme", "verb", "reeme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stonye", "verb", "stonye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["priken", "verb", "priken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eende", "verb", "eende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shete", "verb", "shete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aghen", "verb", "aghen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aȝen", "verb", "aȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wicchen", "verb", "wicche", "wicched", "wicched", "", "To perform witchcraft"]) + let v = native_list_append(v, ["wycchyn", "verb", "wycchyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wychyn", "verb", "wychyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wytchyn", "verb", "wytchyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wytchon", "verb", "wytchon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bigynne", "verb", "bigynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seuere", "verb", "seuere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swer", "verb", "swer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaugen", "verb", "gauge", "gauged", "gauged", "", "To measure rule"]) + let v = native_list_append(v, ["gawgyn", "verb", "gawgyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gagen", "verb", "gagen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wajon", "verb", "wajon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clokken", "verb", "clokked", "clokked", "clokked", "", "To cluck."]) + let v = native_list_append(v, ["cloken", "verb", "cloken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clocken", "verb", "clocken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clokkyn", "verb", "clokkyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knoppe", "verb", "knoppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knawe", "verb", "knawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chyld", "verb", "chyld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waȝȝnenn", "verb", "waȝȝnenn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waynen", "verb", "wayne", "wayned", "wayned", "", "To move or"]) + let v = native_list_append(v, ["ꟑeȝȝnenn", "verb", "ꟑeȝȝnenn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geinen", "verb", "geinen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geynen", "verb", "geynen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaynen", "verb", "gayned", "gayned", "gayned", "", "To be helpful"]) + let v = native_list_append(v, ["keorven", "verb", "keorven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cerven", "verb", "cerven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kirven", "verb", "kirven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["karven", "verb", "karven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forkerven", "verb", "forkerve", "forcarf", "forcorven", "", "To divide separate"]) + let v = native_list_append(v, ["sesen", "verb", "sesen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saisen", "verb", "saisen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sezen", "verb", "sezen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seasen", "verb", "seasen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seysen", "verb", "seysen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sayse", "verb", "sayse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seyse", "verb", "seyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barneschen", "verb", "barnesche", "barnesched", "barnesched", "", "To develop a"]) + let v = native_list_append(v, ["barnesche", "verb", "barnesche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barnisch", "verb", "barnisch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barnysshen", "verb", "barnysshen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["temie", "verb", "temie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["temyn", "verb", "temyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tæmenn", "verb", "tæmenn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tymen", "verb", "tymed", "tymed", "tymed", "", "To take place"]) + let v = native_list_append(v, ["gestyn", "verb", "gestyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gestenen", "verb", "gestene", "gestened", "gestened", "", "To provide accommodation"]) + let v = native_list_append(v, ["gestenyn", "verb", "gestenyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaystyn", "verb", "gaystyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geystyn", "verb", "geystyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gistni", "verb", "gistni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gestnin", "verb", "gestnin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gistnen", "verb", "gistnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meassen", "verb", "meassen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brasyn", "verb", "brasyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bracen", "verb", "brace", "braced", "braced", "", "To hold onto"]) + let v = native_list_append(v, ["glasyn", "verb", "glasyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptisen", "verb", "baptise", "baptised", "baptised", "", "To baptise christen"]) + let v = native_list_append(v, ["baptizen", "verb", "baptizen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptisi", "verb", "baptisi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baptisynge", "verb", "baptisingue", "baptisenge", "baptiseng", "", "present participle of"]) + let v = native_list_append(v, ["cristenen", "verb", "cristene", "cristened", "cristened", "", "To baptize christen"]) + let v = native_list_append(v, ["cristnien", "verb", "cristnien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristnen", "verb", "cristnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristene", "verb", "cristene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristen", "verb", "cristen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristni", "verb", "cristni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristeny", "verb", "cristeny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristnye", "verb", "cristnye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cryston", "verb", "cryston", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crystnen", "verb", "crystnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristenynge", "verb", "cristening", "cristenyng", "cristninge", "", "present participle of"]) + let v = native_list_append(v, ["swelly", "verb", "swelly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shryven", "verb", "shryve", "shrof", "shryve", "", "To confess admit"]) + let v = native_list_append(v, ["schrifen", "verb", "schrifen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schrevyn", "verb", "schrevyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schryfen", "verb", "schryfen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schryvyn", "verb", "schryvyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sriven", "verb", "sriven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shrife", "verb", "shrife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lynne", "verb", "lynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wryten", "verb", "wryten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sherten", "verb", "sherte", "sherted", "sherted", "", "To cover something"]) + let v = native_list_append(v, ["shirten", "verb", "shirten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shurtten", "verb", "shurtten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schiren", "verb", "schire", "schired", "schired", "", "To say talk"]) + let v = native_list_append(v, ["sciren", "verb", "sciren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skyren", "verb", "skyre", "skyred", "skyred", "", "To prove to"]) + let v = native_list_append(v, ["floteren", "verb", "flotere", "flotered", "flotered", "", "To be held"]) + let v = native_list_append(v, ["flooteren", "verb", "flooteren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floteryn", "verb", "floteryn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fonnen", "verb", "fonne", "fonned", "fonned", "", "To be insane"]) + let v = native_list_append(v, ["venym", "verb", "venym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venyme", "verb", "venyme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venymen", "verb", "venymed", "venymed", "venymed", "", "To envenom to"]) + let v = native_list_append(v, ["venemen", "verb", "venemen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veneme", "verb", "veneme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venemyn", "verb", "venemyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venymynge", "verb", "venemyng", "", "", "", "present participle of"]) + let v = native_list_append(v, ["envenimen", "verb", "envenimen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["invenymyn", "verb", "invenymyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envenyme", "verb", "envenyme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envenymen", "verb", "envenymed", "envenimed", "envenymed", "", "To envenom to"]) + let v = native_list_append(v, ["anvenymen", "verb", "anvenymen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envenomen", "verb", "envenomen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envenommen", "verb", "envenommen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envenymynge", "verb", "envenemyng", "", "", "", "present participle of"]) + let v = native_list_append(v, ["lynde", "verb", "lynde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tollyn", "verb", "tollyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tylle", "verb", "tylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tilen", "verb", "tilen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tylen", "verb", "tylen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tulden", "verb", "tulden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyllen", "verb", "tyllen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tilye", "verb", "tilye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tillien", "verb", "tillien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tulye", "verb", "tulye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tylyyn", "verb", "tylyyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teolien", "verb", "teolien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["telien", "verb", "telien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tilyen", "verb", "tilye", "tilyed", "tilyed", "", "To cultivate or"]) + let v = native_list_append(v, ["toilen", "verb", "toile", "toiled", "toiled", "", "To fight war"]) + let v = native_list_append(v, ["toylen", "verb", "toylen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toille", "verb", "toille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolyon", "verb", "tolyon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolyn", "verb", "tolyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tolyyn", "verb", "tolyyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tulyn", "verb", "tulyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeteþ", "verb", "ȝeteð", "ȝeteth", "ȝetes", "", "third-person singular present"]) + let v = native_list_append(v, ["yeten", "verb", "yet", "yoten", "yoten", "", "To pour out"]) + let v = native_list_append(v, ["arewen", "verb", "arewen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thouten", "verb", "þowten", "thowtyn", "þowtyn", "", "To address someone"]) + let v = native_list_append(v, ["thouen", "verb", "thowyn", "thou", "thew", "", "To address someone"]) + let v = native_list_append(v, ["schyfte", "verb", "schyfte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scuften", "verb", "scuften", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shiften", "verb", "shiften", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schyftyn", "verb", "schyftyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyen", "verb", "thyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theyn", "verb", "theyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berwen", "verb", "berwe", "bargh", "borwen", "", "To save preserve"]) + let v = native_list_append(v, ["berȝen", "verb", "berȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berghen", "verb", "berghen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beregen", "verb", "beregen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berrȝhenn", "verb", "berrȝhenn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berien", "verb", "berien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burien", "verb", "burien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["birien", "verb", "biried", "biried", "biried", "", "To bury inter"]) + let v = native_list_append(v, ["byrye", "verb", "byrye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beryen", "verb", "beryen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toumbe", "verb", "toumbed", "", "toumbed", "", "alternative form of"]) + let v = native_list_append(v, ["towmben", "verb", "towmbed", "", "towmbed", "", "alternative form of"]) + let v = native_list_append(v, ["toumben", "verb", "toumbed", "", "toumbed", "", "alternative form of"]) + let v = native_list_append(v, ["bargaynen", "verb", "bargayne", "bargayned", "bargayned", "", "To bargain to"]) + let v = native_list_append(v, ["bargayne", "verb", "bargayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bargenen", "verb", "bargenen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bargeynen", "verb", "bargeynen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bargaynynge", "verb", "barganynge", "bargaynyng", "bargenyng", "", "present participle of"]) + let v = native_list_append(v, ["whele", "verb", "whele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qwell", "verb", "qwell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whelyn", "verb", "whele", "wheled", "wheled", "", "To become pustulous"]) + let v = native_list_append(v, ["whelen", "verb", "hweled", "wheled", "hweled", "", "To rotate move"]) + let v = native_list_append(v, ["whielen", "verb", "whielen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quhelen", "verb", "quhelen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spurnen", "verb", "spurne", "spurned", "spurned", "", "To fall over"]) + let v = native_list_append(v, ["spornen", "verb", "spornen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spournen", "verb", "spournen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spyrnen", "verb", "spyrnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sporne", "verb", "sporne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spurne", "verb", "spurne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spurnynge", "verb", "spornyng", "spurnyng", "", "", "present participle of"]) + let v = native_list_append(v, ["tripen", "verb", "tripen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treppen", "verb", "treppen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tryppyn", "verb", "tryppyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tryppe", "verb", "tryppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pykken", "verb", "pykken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pyken", "verb", "pyken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pycken", "verb", "pycken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pyek", "verb", "pyek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harneysen", "verb", "harneyse", "harneysed", "harneysed", "", "To don armour"]) + let v = native_list_append(v, ["hernessen", "verb", "hernessen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harnessen", "verb", "harnessen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harneysyn", "verb", "harneysyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herneysen", "verb", "herneysen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harneyschen", "verb", "harneyschen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harnysshen", "verb", "harnysshen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harnysen", "verb", "harnysen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harneschen", "verb", "harneschen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harnaysen", "verb", "harnaysen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harnesse", "verb", "harnesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harnes", "verb", "harnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["walen", "verb", "wale", "waled", "waled", "", "to pick select"]) + let v = native_list_append(v, ["schowe", "verb", "schowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scho", "verb", "scho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crume", "verb", "crume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crumen", "verb", "crumen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crowme", "verb", "crowme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["croumen", "verb", "croumen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kryme", "verb", "kryme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crummyn", "verb", "crummyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mowsyn", "verb", "mowse", "mowsed", "mowsed", "", "To mouse"]) + let v = native_list_append(v, ["tuthe", "verb", "tuthe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toþen", "verb", "toþen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tothen", "verb", "tothed", "toþed", "tothed", "", "To tooth or"]) + let v = native_list_append(v, ["toothen", "verb", "toothen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tethen", "verb", "tethe", "tethed", "tethed", "", "To tooth or"]) + let v = native_list_append(v, ["toostyn", "verb", "toostyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grassen", "verb", "grasse", "grassed", "grassed", "", "To grass to"]) + let v = native_list_append(v, ["gryssen", "verb", "gryssen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grese", "verb", "grese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gresyn", "verb", "gresyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gresen", "verb", "gresen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleye", "verb", "fleye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliȝe", "verb", "fliȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herien", "verb", "herie", "heried", "heried", "", "To thank or"]) + let v = native_list_append(v, ["harien", "verb", "harien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haryen", "verb", "haryen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herȝien", "verb", "herȝien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herȝen", "verb", "herȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herwen", "verb", "herwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harwen", "verb", "harwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["harowen", "verb", "harowen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heryen", "verb", "heryen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heriȝen", "verb", "heriȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herrien", "verb", "herrien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heryyn", "verb", "heryyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heryhe", "verb", "heryhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hærien", "verb", "hærien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["showe", "verb", "showe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shoen", "verb", "shoen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shoiȝen", "verb", "shoiȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schoyn", "verb", "schoyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fotynge", "verb", "foting", "fotyng", "futyng", "", "present participle of"]) + let v = native_list_append(v, ["pleyen", "verb", "pleye", "pleyed", "pleyed", "", "To entertain to"]) + let v = native_list_append(v, ["pleiȝen", "verb", "pleiȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["playen", "verb", "playen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pleȝen", "verb", "pleȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plæien", "verb", "plæien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plaien", "verb", "plaien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pleye", "verb", "pleye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plaȝen", "verb", "plaȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plawen", "verb", "plawen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fomen", "verb", "fomed", "fomed", "fomed", "", "To foam at"]) + let v = native_list_append(v, ["fomynge", "verb", "fomeinge", "", "", "", "present participle of"]) + let v = native_list_append(v, ["coynynge", "verb", "coynyng", "koynyng", "", "", "present participle of"]) + let v = native_list_append(v, ["coynen", "verb", "coyne", "coyned", "coyned", "", "To make or"]) + let v = native_list_append(v, ["coignen", "verb", "coignen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koynen", "verb", "koynen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conyen", "verb", "conyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunen", "verb", "cunen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queynt", "verb", "queynt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spilen", "verb", "spile", "spiled", "spiled", "", "to amuse or"]) + let v = native_list_append(v, ["spylle", "verb", "spylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spyll", "verb", "spyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spilden", "verb", "spilden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spyllyn", "verb", "spyllyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["londen", "verb", "londe", "londed", "londed", "", "To walk onto"]) + let v = native_list_append(v, ["arȝen", "verb", "arȝe", "arȝed", "arȝed", "", "To become or"]) + let v = native_list_append(v, ["arghen", "verb", "arghen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aryhen", "verb", "aryhen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erȝian", "verb", "erȝian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bynden", "verb", "bynden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byndynge", "verb", "binding", "bindynge", "bynding", "", "present participle of"]) + let v = native_list_append(v, ["daschen", "verb", "dasche", "dasched", "dasched", "", "To hit with"]) + let v = native_list_append(v, ["dassh", "verb", "dassh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["daschyn", "verb", "daschyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dasshen", "verb", "dasshen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["daysshen", "verb", "daysshen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asweved", "verb", "asweved", "", "", "", "put to sleep"]) + let v = native_list_append(v, ["depen", "verb", "depe", "deped", "deped", "", "To submerge or"]) + let v = native_list_append(v, ["deppen", "verb", "deppen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["docken", "verb", "docken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asayn", "verb", "asayn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["omitten", "verb", "omitte", "omitted", "omitted", "", "to omit to"]) + let v = native_list_append(v, ["ommitten", "verb", "ommitten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["omytten", "verb", "omytten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swien", "verb", "swīen", "swigen", "swigigen", "", "to be silent"]) + let v = native_list_append(v, ["sweien", "verb", "sweiȝan", "sweie", "swie", "", "to resound to"]) + let v = native_list_append(v, ["quenchen", "verb", "quenched", "quenched", "quenched", "", "To quench put"]) + let v = native_list_append(v, ["quynchen", "verb", "quynchen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cwennkenn", "verb", "cwennkenn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kuenche", "verb", "kuenche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cwenche", "verb", "cwenche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queynchen", "verb", "queynchen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qwenchen", "verb", "qwenchen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aswagen", "verb", "aswage", "aswaged", "aswaged", "", "To cure or"]) + let v = native_list_append(v, ["quenche", "verb", "quenche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asswagen", "verb", "asswagen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["a-swagen", "verb", "a-swagen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aswage", "verb", "aswage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["a-swage", "verb", "a-swage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asuage", "verb", "asuage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["questen", "verb", "queste", "quested", "quested", "", "To find ones"]) + let v = native_list_append(v, ["quayle", "verb", "quayle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quaile", "verb", "quaile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qwayle", "verb", "qwayle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crowe", "verb", "crowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crowen", "verb", "crowe", "crew", "crowe", "", "To crow make"]) + let v = native_list_append(v, ["crawen", "verb", "crawen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crowynge", "verb", "crawenge", "crowinge", "crowyng", "", "present participle of"]) + let v = native_list_append(v, ["rowe", "verb", "rowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stiȝen", "verb", "stiȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stiȝan", "verb", "stiȝan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stiȝe", "verb", "stiȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steȝen", "verb", "steȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steye", "verb", "steye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stihen", "verb", "stihen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["styen", "verb", "styen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rewen", "verb", "rewe", "rew", "rowen", "", "To experience shame"]) + let v = native_list_append(v, ["reowen", "verb", "reowen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rowyn", "verb", "rowyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruen", "verb", "ruen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reouwen", "verb", "reouwen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reowe", "verb", "reowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riewe", "verb", "riewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soren", "verb", "sore", "sored", "sored", "", "To soar to"]) + let v = native_list_append(v, ["sorowe", "verb", "sorowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soore", "verb", "soore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quath", "verb", "quoth", "quod", "", "", "simple past of"]) + let v = native_list_append(v, ["seryn", "verb", "seryn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seeryn", "verb", "seeryn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceryn", "verb", "ceryn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceeryn", "verb", "ceeryn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fa", "adj", "fa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaist", "adj", "abaist", "", "", "", "Confounded discomfited."]) + let v = native_list_append(v, ["abawed", "adj", "abawed", "", "", "", "astonished abashed"]) + let v = native_list_append(v, ["abhominable", "adj", "abhominable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["able", "adj", "able", "", "", "", "capable expert qualified"]) + let v = native_list_append(v, ["abominable", "adj", "abominable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["odd", "adj", "odd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bone", "adj", "bone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acceptable", "adj", "acceptable", "", "", "", "Pleasant agreeable causing"]) + let v = native_list_append(v, ["accordable", "adj", "accordable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plural", "adj", "plural", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alien", "adj", "alien", "", "", "", "Outside alien foreign"]) + let v = native_list_append(v, ["one", "adj", "one", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seme", "adj", "seme", "", "", "", "Seemly appropriate honourable."]) + let v = native_list_append(v, ["crude", "adj", "crude", "", "", "", "unprocessed uncooked unworked"]) + let v = native_list_append(v, ["second", "adj", "second", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["war", "adj", "war", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["open", "adj", "more open", "most open", "", "", "open"]) + let v = native_list_append(v, ["wall", "adj", "wall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["first", "adj", "first", "", "", "", "first"]) + let v = native_list_append(v, ["welcome", "adj", "welcome", "", "", "", "welcome"]) + let v = native_list_append(v, ["new", "adj", "new", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abstract", "adj", "abstract", "", "", "", "Drawn away or"]) + let v = native_list_append(v, ["general", "adj", "general", "", "", "", "universal complete"]) + let v = native_list_append(v, ["thin", "adj", "thin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["create", "adj", "create", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["here", "adj", "here", "", "", "", "pleasant gentle"]) + let v = native_list_append(v, ["small", "adj", "small", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["black", "adj", "black", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grey", "adj", "grey", "", "", "", "grey dull drab"]) + let v = native_list_append(v, ["purple", "adj", "purple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["red", "adj", "redder", "reddest", "", "", "red crimson scarlet"]) + let v = native_list_append(v, ["violet", "adj", "violet", "", "", "", "violet-coloured"]) + let v = native_list_append(v, ["white", "adj", "white", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fourth", "adj", "fourth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["third", "adj", "third", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seventh", "adj", "seventh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tenth", "adj", "tenth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["young", "adj", "young", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrong", "adj", "wrong", "", "", "", "wicked evil morally"]) + let v = native_list_append(v, ["worst", "adj", "worst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["latin", "adj", "latin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundred", "adj", "hundred", "", "", "", "A hundredth."]) + let v = native_list_append(v, ["thousand", "adj", "thousand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["animal", "adj", "animal", "", "", "", "Related to the"]) + let v = native_list_append(v, ["her", "adj", "her", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["masculine", "adj", "masculine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["future", "adj", "future", "", "", "", "Occurring after the"]) + let v = native_list_append(v, ["angry", "adj", "angry", "angriest", "", "", "Angry displaying angriness"]) + let v = native_list_append(v, ["arm", "adj", "arm", "", "", "", "poor"]) + let v = native_list_append(v, ["north", "adj", "north", "", "", "", "north northern"]) + let v = native_list_append(v, ["south", "adj", "south", "", "", "", "south southern"]) + let v = native_list_append(v, ["west", "adj", "west", "", "", "", "west western"]) + let v = native_list_append(v, ["right", "adj", "rightre", "rightest", "", "", "Straight not crooked"]) + let v = native_list_append(v, ["cold", "adj", "coldere", "*coldest", "", "", "cold cool"]) + let v = native_list_append(v, ["hot", "adj", "hot", "", "", "", "hot"]) + let v = native_list_append(v, ["warm", "adj", "warmer", "warmest", "", "", "warm mildly hot"]) + let v = native_list_append(v, ["quaint", "adj", "quaint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["other", "adj", "other", "", "", "", "other"]) + let v = native_list_append(v, ["good", "adj", "bettre", "best", "", "", "good of good"]) + let v = native_list_append(v, ["male", "adj", "male", "", "", "", "male of masculine"]) + let v = native_list_append(v, ["female", "adj", "female", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["very", "adj", "verier", "", "", "", "true"]) + let v = native_list_append(v, ["hole", "adj", "hole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wood", "adj", "wood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bold", "adj", "bold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tide", "adj", "tide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["olive", "adj", "olive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saffron", "adj", "saffron", "", "", "", "Yellow the colour"]) + let v = native_list_append(v, ["rice", "adj", "rice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adel", "adj", "adel", "", "", "", "rotten addled of"]) + let v = native_list_append(v, ["god", "adj", "god", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kind", "adj", "kind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bel", "adj", "bel", "", "", "", "Of fine quality"]) + let v = native_list_append(v, ["safe", "adj", "safe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["save", "adj", "save", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verre", "adj", "verre", "verrest", "", "", "true"]) + let v = native_list_append(v, ["vert", "adj", "vert", "", "", "", "Green-coloured."]) + let v = native_list_append(v, ["he", "adj", "he", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hair", "adj", "hair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungry", "adj", "hungry", "", "", "", "Hungry or starving"]) + let v = native_list_append(v, ["hard", "adj", "hard", "", "", "", "hard"]) + let v = native_list_append(v, ["wilde", "adj", "wildere", "", "", "", "Wild undomesticated untamed"]) + let v = native_list_append(v, ["were", "adj", "were", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilke", "adj", "ilke", "", "", "", "same"]) + let v = native_list_append(v, ["bet", "adj", "bet", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["blew", "adj", "blew", "", "", "", "blue azure"]) + let v = native_list_append(v, ["drove", "adj", "drove", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fell", "adj", "fell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flaxen", "adj", "flaxen", "", "", "", "Flaxen made out"]) + let v = native_list_append(v, ["hold", "adj", "hold", "", "", "", "gracious friendly faithful"]) + let v = native_list_append(v, ["made", "adj", "made", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mal", "adj", "mal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["common", "adj", "common", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["simple", "adj", "simple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["self", "adj", "self", "", "", "", "very/self same the"]) + let v = native_list_append(v, ["cruel", "adj", "cruel", "", "", "", "Merciless cruel revelling"]) + let v = native_list_append(v, ["redid", "adj", "redid", "", "", "", "readied"]) + let v = native_list_append(v, ["shone", "adj", "shone", "", "", "", "beautiful glorious excellent"]) + let v = native_list_append(v, ["dogged", "adj", "dogged", "", "", "", "currish"]) + let v = native_list_append(v, ["stiff", "adj", "stiff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wake", "adj", "wake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woke", "adj", "wakker", "wakkest", "", "", "Physically weak or"]) + let v = native_list_append(v, ["wet", "adj", "wet", "", "", "", "wet watery"]) + let v = native_list_append(v, ["won", "adj", "won", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["round", "adj", "roundere", "", "", "", "Rounded curvy lacking"]) + let v = native_list_append(v, ["sot", "adj", "sot", "", "", "", "idiotic unwise"]) + let v = native_list_append(v, ["base", "adj", "base", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dry", "adj", "dry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["different", "adj", "different", "", "", "", "different"]) + let v = native_list_append(v, ["deep", "adj", "deep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flat", "adj", "flat", "", "", "", "level even smooth"]) + let v = native_list_append(v, ["du", "adj", "du", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["true", "adj", "true", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["long", "adj", "lengere", "lengest", "", "", "Long having great"]) + let v = native_list_append(v, ["short", "adj", "short", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liquid", "adj", "liquid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hospital", "adj", "hospital", "", "", "", "hospitable"]) + let v = native_list_append(v, ["salt", "adj", "salter", "saltest", "", "", "salty tasting of"]) + let v = native_list_append(v, ["old", "adj", "eldre", "eldest", "", "", "Old long extant"]) + let v = native_list_append(v, ["full", "adj", "full", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lift", "adj", "lift", "", "", "", "left"]) + let v = native_list_append(v, ["feminine", "adj", "feminine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vein", "adj", "vein", "", "", "", "vain worthless useless"]) + let v = native_list_append(v, ["baron", "adj", "baron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ese", "adj", "ese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gram", "adj", "gram", "", "", "", "Angry."]) + let v = native_list_append(v, ["dew", "adj", "dew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["potable", "adj", "potable", "", "", "", "Suitable for drinking"]) + let v = native_list_append(v, ["peer", "adj", "peer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bass", "adj", "bass", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gain", "adj", "gain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demur", "adj", "demur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["incorrigible", "adj", "incorrigible", "", "", "", "insoluble unmanageable"]) + let v = native_list_append(v, ["wal", "adj", "wal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burden", "adj", "burden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["womanly", "adj", "womanly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evil", "adj", "evil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["instrumental", "adj", "instrumental", "", "", "", "Resembling an instrument"]) + let v = native_list_append(v, ["happy", "adj", "happy", "", "", "", "fortunate prosperous lucky"]) + let v = native_list_append(v, ["original", "adj", "original", "", "", "", "original primordial preceding"]) + let v = native_list_append(v, ["fervent", "adj", "fervent", "", "", "", "fervent very hot"]) + let v = native_list_append(v, ["due", "adj", "due", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["better", "adj", "better", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["natural", "adj", "natural", "", "", "", "intrinsic fundamental basic"]) + let v = native_list_append(v, ["seconde", "adj", "seconde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wok", "adj", "wok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ol", "adj", "ol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["universal", "adj", "universal", "", "", "", "all-encompassing subject to"]) + let v = native_list_append(v, ["meri", "adj", "meri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pers", "adj", "pers", "", "", "", "blue bluish"]) + let v = native_list_append(v, ["ra", "adj", "ra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wan", "adj", "wan", "", "", "", "wan pallid sickly"]) + let v = native_list_append(v, ["half", "adj", "half", "", "", "", "half"]) + let v = native_list_append(v, ["drie", "adj", "drie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["well", "adj", "well", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laus", "adj", "laus", "", "", "", "loose"]) + let v = native_list_append(v, ["real", "adj", "real", "", "", "", "real true factual"]) + let v = native_list_append(v, ["holy", "adj", "holyere", "holyest", "", "", "Dedicated to or"]) + let v = native_list_append(v, ["worldly", "adj", "worldly", "", "", "", "Of the material"]) + let v = native_list_append(v, ["eternal", "adj", "eternal", "", "", "", "Eternal permanent having"]) + let v = native_list_append(v, ["supernatural", "adj", "supernatural", "", "", "", "deity-related from God"]) + let v = native_list_append(v, ["pure", "adj", "purer", "purest", "", "", "pure unadulterated undiluted"]) + let v = native_list_append(v, ["cursed", "adj", "cursed", "", "", "", "accursed"]) + let v = native_list_append(v, ["strange", "adj", "strange", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["net", "adj", "net", "", "", "", "worthy good pure"]) + let v = native_list_append(v, ["mast", "adj", "mast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mercurial", "adj", "mercurial", "", "", "", "mercurial pertaining to"]) + let v = native_list_append(v, ["mate", "adj", "mate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bald", "adj", "bald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nice", "adj", "nice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loud", "adj", "loudere", "", "", "", "Loud noisy producing"]) + let v = native_list_append(v, ["twentieth", "adj", "twentieth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strong", "adj", "strenger", "strengest", "", "", "strong"]) + let v = native_list_append(v, ["brood", "adj", "brood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ser", "adj", "ser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mit", "adj", "mit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sick", "adj", "sick", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dieu", "adj", "dieu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["virtual", "adj", "virtual", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["form", "adj", "form", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waste", "adj", "waste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fo", "adj", "fo", "", "", "", "combative opposed inimical"]) + let v = native_list_append(v, ["course", "adj", "course", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cant", "adj", "cant", "", "", "", "bold lively cant"]) + let v = native_list_append(v, ["main", "adj", "main", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glad", "adj", "glad", "", "", "", "joyful merry happy"]) + let v = native_list_append(v, ["busy", "adj", "busy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wicked", "adj", "wicked", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beau", "adj", "beau", "", "", "", "good fine"]) + let v = native_list_append(v, ["drei", "adj", "drei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bare", "adj", "bare", "", "", "", "unclothed naked nude"]) + let v = native_list_append(v, ["naked", "adj", "naked", "", "", "", "Uncovered exposed visible"]) + let v = native_list_append(v, ["rad", "adj", "raddere", "raddest", "", "", "quick fast speedy"]) + let v = native_list_append(v, ["lah", "adj", "lāhere", "lāhest", "", "", "low"]) + let v = native_list_append(v, ["desert", "adj", "desert", "", "", "", "barren wild"]) + let v = native_list_append(v, ["per", "adj", "per", "", "", "", "The same having"]) + let v = native_list_append(v, ["best", "adj", "best", "", "", "", "best superlative degree"]) + let v = native_list_append(v, ["tom", "adj", "tom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mode", "adj", "mode", "", "", "", "Vain boastful conceited."]) + let v = native_list_append(v, ["drey", "adj", "drey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foo", "adj", "foo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chief", "adj", "chief", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comfortable", "adj", "comfortable", "", "", "", "comfortable"]) + let v = native_list_append(v, ["fool", "adj", "fool", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bon", "adj", "bon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sik", "adj", "sik", "", "", "", "sick ill"]) + let v = native_list_append(v, ["rik", "adj", "rik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dom", "adj", "dom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["som", "adj", "som", "", "", "", "some"]) + let v = native_list_append(v, ["baas", "adj", "baas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["massif", "adj", "massif", "", "", "", "weighty massy weighing"]) + let v = native_list_append(v, ["active", "adj", "active", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["actual", "adj", "actual", "", "", "", "actual real true"]) + let v = native_list_append(v, ["stale", "adj", "stale", "", "", "", "clear free of"]) + let v = native_list_append(v, ["od", "adj", "od", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comparable", "adj", "comparable", "", "", "", "Of identical or"]) + let v = native_list_append(v, ["luxurious", "adj", "luxurious", "", "", "", "Lusty lascivious sexually"]) + let v = native_list_append(v, ["alive", "adj", "alive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ample", "adj", "ample", "", "", "", "ample copious profuse"]) + let v = native_list_append(v, ["choice", "adj", "choice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bastard", "adj", "bastard", "", "", "", "coming not from"]) + let v = native_list_append(v, ["futur", "adj", "futur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["equal", "adj", "equal", "", "", "", "identical in amount"]) + let v = native_list_append(v, ["every", "adj", "every", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imperial", "adj", "imperial", "", "", "", "Imperial related to"]) + let v = native_list_append(v, ["besi", "adj", "besi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passive", "adj", "passive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sad", "adj", "saddere", "saddest", "", "", "sated weary having"]) + let v = native_list_append(v, ["only", "adj", "only", "", "", "", "alone apart"]) + let v = native_list_append(v, ["hail", "adj", "hail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rusty", "adj", "rusty", "", "", "", "rusty rusted"]) + let v = native_list_append(v, ["moist", "adj", "moist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["middle", "adj", "middle", "", "", "", "inflection of middel"]) + let v = native_list_append(v, ["patient", "adj", "patient", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wonder", "adj", "wonder", "", "", "", "exciting feelings of"]) + let v = native_list_append(v, ["sour", "adj", "sour", "", "", "", "sour acidic bitter"]) + let v = native_list_append(v, ["smart", "adj", "smart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honest", "adj", "honest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hol", "adj", "hol", "", "", "", "healthy"]) + let v = native_list_append(v, ["bun", "adj", "bun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chivalrous", "adj", "chivalrous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stain", "adj", "stain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["med", "adj", "med", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chambre", "adj", "chambre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["madder", "adj", "madder", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["reed", "adj", "reed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["latine", "adj", "latine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calm", "adj", "calm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zed", "adj", "zed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dine", "adj", "dine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["royal", "adj", "royaller", "royallyst", "", "", "royal of a"]) + let v = native_list_append(v, ["gent", "adj", "gent", "", "", "", "noble well-bred courteous"]) + let v = native_list_append(v, ["thrall", "adj", "thrall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quiver", "adj", "quiver", "", "", "", "fast speedy rapid"]) + let v = native_list_append(v, ["wordy", "adj", "wordy", "", "", "", "wordy"]) + let v = native_list_append(v, ["les", "adj", "les", "", "", "", "false lying deceptive"]) + let v = native_list_append(v, ["either", "adj", "either", "", "", "", "Both all or"]) + let v = native_list_append(v, ["det", "adj", "det", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["breve", "adj", "breve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rote", "adj", "rote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faire", "adj", "faire", "", "", "", "fair handsome beautiful"]) + let v = native_list_append(v, ["fer", "adj", "fer", "", "", "", "far distant"]) + let v = native_list_append(v, ["trouble", "adj", "troublere", "", "", "", "Murky muddy turbid"]) + let v = native_list_append(v, ["fou", "adj", "fou", "", "", "", "multicoloured / multicolored"]) + let v = native_list_append(v, ["vous", "adj", "vous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ali", "adj", "ali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heme", "adj", "heme", "", "", "", "fitting suitable"]) + let v = native_list_append(v, ["tren", "adj", "tren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ode", "adj", "ode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["impossible", "adj", "impossible", "", "", "", "Impossible not able"]) + let v = native_list_append(v, ["mad", "adj", "madder", "maddyst", "", "", "Mad insane deranged"]) + let v = native_list_append(v, ["mute", "adj", "mute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adamantine", "adj", "adamantine", "", "", "", "Relating to adamant"]) + let v = native_list_append(v, ["aweful", "adj", "aweful", "", "", "", "awe-inspiring wondrous awesome"]) + let v = native_list_append(v, ["savage", "adj", "savage", "", "", "", "savage barbaric unmannered"]) + let v = native_list_append(v, ["wroth", "adj", "wroth", "", "", "", "Wrathful wroth."]) + let v = native_list_append(v, ["camp", "adj", "camp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mechanic", "adj", "mechanic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mat", "adj", "mat", "", "", "", "checkmated defeated in"]) + let v = native_list_append(v, ["plat", "adj", "plat", "", "", "", "plat flat level"]) + let v = native_list_append(v, ["alienate", "adj", "alienate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buxom", "adj", "buxom", "", "", "", "obedient compliant"]) + let v = native_list_append(v, ["rare", "adj", "rare", "", "", "", "airy vacuous"]) + let v = native_list_append(v, ["deaf", "adj", "deaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nowt", "adj", "nowt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ange", "adj", "ange", "", "", "", "vexed"]) + let v = native_list_append(v, ["melodious", "adj", "melodious", "", "", "", "Melodious musically harmonious"]) + let v = native_list_append(v, ["forward", "adj", "forward", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fowl", "adj", "fowl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["violent", "adj", "violent", "", "", "", "Violent forcible injury-causing."]) + let v = native_list_append(v, ["tam", "adj", "tam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feeble", "adj", "feeble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tame", "adj", "tame", "", "", "", "tame domesticated"]) + let v = native_list_append(v, ["store", "adj", "store", "", "", "", "strong powerful intense"]) + let v = native_list_append(v, ["scire", "adj", "scire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["immutable", "adj", "immutable", "", "", "", "immutable unchangeable"]) + let v = native_list_append(v, ["pere", "adj", "pere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deed", "adj", "deed", "", "", "", "dead no longer"]) + let v = native_list_append(v, ["material", "adj", "material", "", "", "", "Extant in matter"]) + let v = native_list_append(v, ["burel", "adj", "burel", "", "", "", "lay rustic unlearned"]) + let v = native_list_append(v, ["wert", "adj", "wert", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wast", "adj", "wast", "", "", "", "uncultivated deserted desolate"]) + let v = native_list_append(v, ["scarce", "adj", "scarce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["late", "adj", "late", "", "", "", "slow sluggish reluctant."]) + let v = native_list_append(v, ["passional", "adj", "passional", "", "", "", "passionate having strong"]) + let v = native_list_append(v, ["rich", "adj", "rich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mawle", "adj", "mawle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calver", "adj", "calver", "", "", "", "Having curd-like flakes"]) + let v = native_list_append(v, ["ȝelew", "adj", "ȝelew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worse", "adj", "worse", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["glorious", "adj", "gloriousere", "gloriosest", "", "", "Recognised acclaimed well-known"]) + let v = native_list_append(v, ["slender", "adj", "slender", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sure", "adj", "seurer", "", "", "", "safe protected not"]) + let v = native_list_append(v, ["wild", "adj", "wild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["difficult", "adj", "difficult", "", "", "", "difficult challenging"]) + let v = native_list_append(v, ["reverse", "adj", "reverse", "", "", "", "reverse turned upside"]) + let v = native_list_append(v, ["easy", "adj", "easy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usual", "adj", "usual", "", "", "", "customary established"]) + let v = native_list_append(v, ["scornful", "adj", "scornful", "", "", "", "scornful contemptuous"]) + let v = native_list_append(v, ["barren", "adj", "barren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coward", "adj", "coward", "", "", "", "cowardly"]) + let v = native_list_append(v, ["huge", "adj", "huge", "", "", "", "huge large enormous"]) + let v = native_list_append(v, ["ardent", "adj", "ardent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passionate", "adj", "passionate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floury", "adj", "floury", "", "", "", "Covered in flowers"]) + let v = native_list_append(v, ["aspen", "adj", "aspen", "", "", "", "Made of or"]) + let v = native_list_append(v, ["bawdy", "adj", "bawdy", "", "", "", "soiled dirty"]) + let v = native_list_append(v, ["crewel", "adj", "crewel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rather", "adj", "rather", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elate", "adj", "elate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fay", "adj", "fay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idyll", "adj", "idyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mere", "adj", "mere", "", "", "", "glorious renowned."]) + let v = native_list_append(v, ["mete", "adj", "mete", "", "", "", "suitable fitting appropriate"]) + let v = native_list_append(v, ["sage", "adj", "sage", "", "", "", "Sage considered well"]) + let v = native_list_append(v, ["tome", "adj", "tome", "", "", "", "empty hollow"]) + let v = native_list_append(v, ["tusked", "adj", "tusked", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wale", "adj", "wale", "", "", "", "amazing of great"]) + let v = native_list_append(v, ["whit", "adj", "whitter", "whittest", "", "", "white pale light"]) + let v = native_list_append(v, ["servile", "adj", "servile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toward", "adj", "toward", "", "", "", "Future forthcoming to"]) + let v = native_list_append(v, ["bale", "adj", "bale", "", "", "", "decisive ruinous vicious"]) + let v = native_list_append(v, ["chef", "adj", "chever", "chevest", "", "", "Chief head top-ranking"]) + let v = native_list_append(v, ["crisp", "adj", "crisp", "", "", "", "curly curled"]) + let v = native_list_append(v, ["devout", "adj", "devout", "", "", "", "devout"]) + let v = native_list_append(v, ["diverse", "adj", "diverse", "", "", "", "different differing"]) + let v = native_list_append(v, ["fain", "adj", "fain", "", "", "", "happy joyful"]) + let v = native_list_append(v, ["foul", "adj", "foulere", "foulest", "", "", "Revolting unclean"]) + let v = native_list_append(v, ["furious", "adj", "furious", "", "", "", "furious raging"]) + let v = native_list_append(v, ["greet", "adj", "greet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hale", "adj", "hale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heed", "adj", "heed", "", "", "", "main head chief"]) + let v = native_list_append(v, ["hoot", "adj", "hoot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lease", "adj", "lease", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liege", "adj", "liege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["official", "adj", "official", "", "", "", "Functional serving a"]) + let v = native_list_append(v, ["proud", "adj", "proud", "", "", "", "haughty arrogant"]) + let v = native_list_append(v, ["sanguine", "adj", "sanguine", "", "", "", "Having a bloody-red"]) + let v = native_list_append(v, ["secondary", "adj", "secondary", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shortly", "adj", "shortly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleigh", "adj", "sleigh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sleight", "adj", "sleight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slight", "adj", "slight", "", "", "", "Level even smooth"]) + let v = native_list_append(v, ["sly", "adj", "slyer", "sliest", "", "", "Judicious considered shrewd"]) + let v = native_list_append(v, ["lewd", "adj", "lewd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tart", "adj", "tart", "", "", "", "Sour tart having"]) + let v = native_list_append(v, ["tent", "adj", "tent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tithe", "adj", "tithe", "", "", "", "tenth"]) + let v = native_list_append(v, ["twofold", "adj", "twofold", "", "", "", "double twofold having"]) + let v = native_list_append(v, ["wane", "adj", "wane", "", "", "", "inadequate incomplete imperfect"]) + let v = native_list_append(v, ["worthy", "adj", "worthy", "", "", "", "worthy noble brave"]) + let v = native_list_append(v, ["cis", "adj", "cis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desirous", "adj", "desirous", "", "", "", "desirous experiencing desire"]) + let v = native_list_append(v, ["desk", "adj", "desk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["despect", "adj", "despect", "", "", "", "Humble looked down"]) + let v = native_list_append(v, ["dowcet", "adj", "dowcet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envious", "adj", "envious", "", "", "", "aggressive malignant"]) + let v = native_list_append(v, ["onerous", "adj", "onerous", "", "", "", "onerous"]) + let v = native_list_append(v, ["kindly", "adj", "kindly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fol", "adj", "fol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["douce", "adj", "douce", "", "", "", "pleasant sweet nice"]) + let v = native_list_append(v, ["dente", "adj", "dente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prodigious", "adj", "prodigious", "", "", "", "portentous"]) + let v = native_list_append(v, ["rebel", "adj", "rebel", "", "", "", "Treasonous rebelling leading"]) + let v = native_list_append(v, ["cald", "adj", "cald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lovely", "adj", "lovely", "", "", "", "Friendly affectionate loving"]) + let v = native_list_append(v, ["homely", "adj", "homely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brotherly", "adj", "brotherly", "", "", "", "Of or relating"]) + let v = native_list_append(v, ["obligatory", "adj", "obligatory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dusk", "adj", "dusk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["virtuous", "adj", "virtuous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sore", "adj", "sorer", "sorest", "", "", "Senses associated with"]) + let v = native_list_append(v, ["blaspheme", "adj", "blaspheme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noble", "adj", "noble", "", "", "", "noble"]) + let v = native_list_append(v, ["mortel", "adj", "mortel", "", "", "", "mortal"]) + let v = native_list_append(v, ["holly", "adj", "holly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perilous", "adj", "perilous", "perilousest", "", "", "Full of danger"]) + let v = native_list_append(v, ["organic", "adj", "organic", "", "", "", "Resembling or functioning"]) + let v = native_list_append(v, ["sturdy", "adj", "sturdy", "", "", "", "bold valiant strong"]) + let v = native_list_append(v, ["ille", "adj", "worse", "worst", "", "", "evil wicked"]) + let v = native_list_append(v, ["squamous", "adj", "squamous", "", "", "", "scaly especially due"]) + let v = native_list_append(v, ["cathedral", "adj", "cathedral", "", "", "", "cathedral relating to"]) + let v = native_list_append(v, ["stable", "adj", "stabler", "", "", "", "stable relatively unchanging"]) + let v = native_list_append(v, ["serviceable", "adj", "serviceable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wield", "adj", "wield", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alle", "adj", "alle", "", "", "", "plural of all"]) + let v = native_list_append(v, ["hal", "adj", "hal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halt", "adj", "halt", "", "", "", "Limping lame crippled."]) + let v = native_list_append(v, ["este", "adj", "este", "", "", "", "good pleasant"]) + let v = native_list_append(v, ["soot", "adj", "soot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gul", "adj", "gul", "", "", "", "yellow pale"]) + let v = native_list_append(v, ["fond", "adj", "fond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["golden", "adj", "golden", "", "", "", "Formed from gold."]) + let v = native_list_append(v, ["thirsty", "adj", "thirsty", "", "", "", "Thirsty having a"]) + let v = native_list_append(v, ["terrible", "adj", "terrible", "", "", "", "terrible"]) + let v = native_list_append(v, ["lawful", "adj", "lawful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wicker", "adj", "wicker", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["wight", "adj", "wighter", "wightest", "", "", "brave bold"]) + let v = native_list_append(v, ["impudent", "adj", "impudent", "", "", "", "shameless immodest"]) + let v = native_list_append(v, ["animale", "adj", "animale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sur", "adj", "sur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["demure", "adj", "demure", "", "", "", "grave serious modest"]) + let v = native_list_append(v, ["lovable", "adj", "lovable", "", "", "", "Lovable deserving love"]) + let v = native_list_append(v, ["loveable", "adj", "loveable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mid", "adj", "mid", "", "", "", "mid- middle central"]) + let v = native_list_append(v, ["mature", "adj", "mature", "", "", "", "mature ripe"]) + let v = native_list_append(v, ["eyed", "adj", "eyed", "", "", "", "eyed having a"]) + let v = native_list_append(v, ["fallacious", "adj", "fallacious", "", "", "", "fallacious"]) + let v = native_list_append(v, ["obedient", "adj", "obedient", "", "", "", "obedient"]) + let v = native_list_append(v, ["horrible", "adj", "horrible", "", "", "", "horrible"]) + let v = native_list_append(v, ["seldom", "adj", "seldom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fury", "adj", "fury", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fully", "adj", "fully", "", "", "", "Flawless immaculate without"]) + let v = native_list_append(v, ["oblivious", "adj", "oblivious", "", "", "", "forgetful"]) + let v = native_list_append(v, ["materiel", "adj", "materiel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["daft", "adj", "daft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gracious", "adj", "graciouser", "graciousest", "", "", "kind gracious polite"]) + let v = native_list_append(v, ["gal", "adj", "gal", "", "", "", "lascivious lustful"]) + let v = native_list_append(v, ["dishonest", "adj", "dishonest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dishonesty", "adj", "dishonesty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nervous", "adj", "nervous", "", "", "", "Composed of or"]) + let v = native_list_append(v, ["muchel", "adj", "muchel", "", "", "", "much"]) + let v = native_list_append(v, ["bas", "adj", "bas", "", "", "", "Low short lacking"]) + let v = native_list_append(v, ["menial", "adj", "menial", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferme", "adj", "ferme", "", "", "", "firm steady of"]) + let v = native_list_append(v, ["arable", "adj", "arable", "", "", "", "arable"]) + let v = native_list_append(v, ["graceful", "adj", "graceful", "", "", "", "Giving grace grace-inducing."]) + let v = native_list_append(v, ["cloudy", "adj", "cloudy", "", "", "", "Covered with or"]) + let v = native_list_append(v, ["outward", "adj", "outward", "", "", "", "outside outer on"]) + let v = native_list_append(v, ["dul", "adj", "dul", "", "", "", "dull"]) + let v = native_list_append(v, ["wer", "adj", "wer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reale", "adj", "reale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stour", "adj", "stour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wo", "adj", "wo", "", "", "", "woeful"]) + let v = native_list_append(v, ["lang", "adj", "lang", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shire", "adj", "shire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dum", "adj", "dum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraudulent", "adj", "fraudulent", "", "", "", "Dishonest fraudulent based"]) + let v = native_list_append(v, ["wick", "adj", "wick", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ware", "adj", "ware", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vicious", "adj", "vicious", "", "", "", "Iniquitous sinful wicked"]) + let v = native_list_append(v, ["animate", "adj", "animate", "", "", "", "Animate alive showing"]) + let v = native_list_append(v, ["matt", "adj", "matt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salve", "adj", "salve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dumb", "adj", "dumb", "", "", "", "Lacking or failing"]) + let v = native_list_append(v, ["petit", "adj", "petit", "", "", "", "small"]) + let v = native_list_append(v, ["organise", "adj", "organise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gracieux", "adj", "gracieux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elles", "adj", "elles", "", "", "", "else"]) + let v = native_list_append(v, ["sooty", "adj", "sooty", "", "", "", "Soiled with soot"]) + let v = native_list_append(v, ["doughty", "adj", "doughtiere", "doughtiest", "", "", "Brave fearless doughty"]) + let v = native_list_append(v, ["patente", "adj", "patente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riche", "adj", "richere", "richest", "", "", "Rich wealthy possessing"]) + let v = native_list_append(v, ["rike", "adj", "rike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amorous", "adj", "amorous", "", "", "", "Amorous loving inclined"]) + let v = native_list_append(v, ["frenetic", "adj", "frenetic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patent", "adj", "patent", "", "", "", "open unconfined unrestricted"]) + let v = native_list_append(v, ["malign", "adj", "malign", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enamoured", "adj", "enamoured", "", "", "", "Enamoured lovestruck deep"]) + let v = native_list_append(v, ["inward", "adj", "inward", "ynwardest", "", "", "inside inward in"]) + let v = native_list_append(v, ["naught", "adj", "naught", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["favourable", "adj", "favourable", "", "", "", "benevolent well-disposed"]) + let v = native_list_append(v, ["favorable", "adj", "favorable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swart", "adj", "swarter", "", "", "", "Dark oppressive blackened."]) + let v = native_list_append(v, ["culvert", "adj", "culvert", "", "", "", "vile nefarious"]) + let v = native_list_append(v, ["livid", "adj", "livid", "", "", "", "livid blue color"]) + let v = native_list_append(v, ["lege", "adj", "lege", "", "", "", "Able to command"]) + let v = native_list_append(v, ["pier", "adj", "pier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["claret", "adj", "claret", "", "", "", "pink pink-purple light"]) + let v = native_list_append(v, ["citrine", "adj", "citrine", "", "", "", "orange red-yellow amber"]) + let v = native_list_append(v, ["riel", "adj", "riel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hose", "adj", "hose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fale", "adj", "fale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deve", "adj", "deve", "", "", "", "inflection of def"]) + let v = native_list_append(v, ["sinful", "adj", "sinful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rond", "adj", "rond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["def", "adj", "def", "", "", "", "Deaf unable to"]) + let v = native_list_append(v, ["ginge", "adj", "ginge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["animat", "adj", "animat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["olde", "adj", "olde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["supple", "adj", "supple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["commune", "adj", "commune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Englisch", "adj", "Englisch", "", "", "", "of England from"]) + let v = native_list_append(v, ["Latin", "adj", "Latin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mo", "adj", "mo", "", "", "", "more numerous larger"]) + let v = native_list_append(v, ["peter", "adj", "peter", "", "", "", "misspelling of petit"]) + let v = native_list_append(v, ["pore", "adj", "pore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hereditary", "adj", "hereditary", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mickle", "adj", "mickle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["collegiate", "adj", "collegiate", "", "", "", "Ruled by a"]) + let v = native_list_append(v, ["dette", "adj", "dette", "", "", "", "Owed due as"]) + let v = native_list_append(v, ["hei", "adj", "hei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inde", "adj", "inde", "", "", "", "indigo-coloured"]) + let v = native_list_append(v, ["bask", "adj", "bask", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vinous", "adj", "vinous", "", "", "", "vinous relating to"]) + let v = native_list_append(v, ["hoose", "adj", "hoose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["argh", "adj", "argh", "", "", "", "afraid scared courageless"]) + let v = native_list_append(v, ["fey", "adj", "fey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mutable", "adj", "mutable", "", "", "", "mutable changeable variable"]) + let v = native_list_append(v, ["bestial", "adj", "bestial", "", "", "", "animal of or"]) + let v = native_list_append(v, ["sext", "adj", "sext", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eri", "adj", "eri", "", "", "", "frightening fearing"]) + let v = native_list_append(v, ["har", "adj", "har", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slider", "adj", "slider", "", "", "", "Causing slips having"]) + let v = native_list_append(v, ["sari", "adj", "sari", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sed", "adj", "sed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dep", "adj", "dep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["collegial", "adj", "collegial", "", "", "", "Ruled by a"]) + let v = native_list_append(v, ["tum", "adj", "tum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nare", "adj", "nare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baleful", "adj", "baleful", "", "", "", "evil horrible malicious"]) + let v = native_list_append(v, ["fremde", "adj", "fremde", "", "", "", "foreign from another"]) + let v = native_list_append(v, ["wurst", "adj", "wurst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leden", "adj", "leden", "", "", "", "Made of lead"]) + let v = native_list_append(v, ["westen", "adj", "westen", "", "", "", "western of the"]) + let v = native_list_append(v, ["sexte", "adj", "sexte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["legge", "adj", "legge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["legi", "adj", "legi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peti", "adj", "peti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skyr", "adj", "skyr", "", "", "", "clear-coloured pale light"]) + let v = native_list_append(v, ["troubles", "adj", "troubles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hideous", "adj", "hideous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frightful", "adj", "frightful", "", "", "", "afraid frightened"]) + let v = native_list_append(v, ["manly", "adj", "manly", "", "", "", "Human pertaining to"]) + let v = native_list_append(v, ["hali", "adj", "hali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyrst", "adj", "fyrst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monstrous", "adj", "monstrous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wite", "adj", "wite", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["silken", "adj", "silken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gleaw", "adj", "gleaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["earh", "adj", "earh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miri", "adj", "miri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knotty", "adj", "knotty", "", "", "", "knotted tied linked"]) + let v = native_list_append(v, ["ald", "adj", "ald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pur", "adj", "pur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grille", "adj", "grille", "", "", "", "gril harsh severe"]) + let v = native_list_append(v, ["hors", "adj", "hors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cloven", "adj", "cloven", "", "", "", "Split cloven separated"]) + let v = native_list_append(v, ["fon", "adj", "fon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smote", "adj", "smote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ragged", "adj", "ragged", "", "", "", "ragged raggy raglike"]) + let v = native_list_append(v, ["egged", "adj", "egged", "", "", "", "Having an edge"]) + let v = native_list_append(v, ["eche", "adj", "eche", "", "", "", "eternal everlasting"]) + let v = native_list_append(v, ["blac", "adj", "blac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hateful", "adj", "hateful", "", "", "", "Disliked malign evil"]) + let v = native_list_append(v, ["stony", "adj", "stony", "", "", "", "Comprised of or"]) + let v = native_list_append(v, ["sinewy", "adj", "sinewy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ging", "adj", "ging", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riht", "adj", "riht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["changeable", "adj", "changeable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hos", "adj", "hos", "", "", "", "Hoarse harsh-sounding."]) + let v = native_list_append(v, ["rede", "adj", "rede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["credible", "adj", "credible", "", "", "", "credible believable plausible"]) + let v = native_list_append(v, ["foolhardy", "adj", "foolhardy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forme", "adj", "formere", "formest", "", "", "earliest oldest in"]) + let v = native_list_append(v, ["yong", "adj", "yongere", "yongest", "", "", "Early in growth"]) + let v = native_list_append(v, ["injurious", "adj", "injurious", "", "", "", "Rude offensive distasteful."]) + let v = native_list_append(v, ["cwic", "adj", "cwic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linden", "adj", "linden", "", "", "", "Made of limewood."]) + let v = native_list_append(v, ["seer", "adj", "seer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hefig", "adj", "hefig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colder", "adj", "colder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thorny", "adj", "thorny", "", "", "", "Having many thorns"]) + let v = native_list_append(v, ["gode", "adj", "gode", "", "", "", "weak singular and"]) + let v = native_list_append(v, ["brod", "adj", "broddere", "broddest", "", "", "broad"]) + let v = native_list_append(v, ["foli", "adj", "foli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lives", "adj", "lives", "", "", "", "alive living"]) + let v = native_list_append(v, ["cours", "adj", "cours", "", "", "", "Ordinary coarse of"]) + let v = native_list_append(v, ["ding", "adj", "ding", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burnet", "adj", "burnet", "", "", "", "brown used of"]) + let v = native_list_append(v, ["stormy", "adj", "stormy", "", "", "", "Affected by an"]) + let v = native_list_append(v, ["gunge", "adj", "gunge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snowy", "adj", "snowy", "", "", "", "snowy resembling snow"]) + let v = native_list_append(v, ["corny", "adj", "corny", "", "", "", "fleshy swollen"]) + let v = native_list_append(v, ["borden", "adj", "borden", "", "", "", "Composed of boards"]) + let v = native_list_append(v, ["nought", "adj", "nought", "", "", "", "iniquitous wicked"]) + let v = native_list_append(v, ["dusty", "adj", "dusty", "", "", "", "dusty dust-covered"]) + let v = native_list_append(v, ["cavernous", "adj", "cavernous", "", "", "", "Having a cavern"]) + let v = native_list_append(v, ["aken", "adj", "aken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wars", "adj", "wars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loth", "adj", "lother", "", "", "", "loath averse disinclined"]) + let v = native_list_append(v, ["pete", "adj", "pete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["universel", "adj", "universel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hore", "adj", "hore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["columbyn", "adj", "columbyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compleet", "adj", "compleet", "", "", "", "Complete whole full"]) + let v = native_list_append(v, ["wakker", "adj", "wakker", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["brawny", "adj", "brawny", "", "", "", "muscular muscly"]) + let v = native_list_append(v, ["beter", "adj", "beter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smal", "adj", "smalre", "smalest", "", "", "Small minuscule."]) + let v = native_list_append(v, ["lange", "adj", "lange", "", "", "", "inflection of long"]) + let v = native_list_append(v, ["wollen", "adj", "wollen", "", "", "", "Made of wool"]) + let v = native_list_append(v, ["maat", "adj", "maat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vals", "adj", "vals", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doucet", "adj", "doucet", "", "", "", "sweet-tasting sugary"]) + let v = native_list_append(v, ["ethel", "adj", "ethel", "", "", "", "athel i.e. noble"]) + let v = native_list_append(v, ["ferial", "adj", "ferial", "", "", "", "ferial pertaining to"]) + let v = native_list_append(v, ["lyard", "adj", "lyard", "", "", "", "having dappled white"]) + let v = native_list_append(v, ["delicat", "adj", "delicat", "", "", "", "delicate"]) + let v = native_list_append(v, ["couth", "adj", "couth", "", "", "", "couth familiar known"]) + let v = native_list_append(v, ["comune", "adj", "comune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miry", "adj", "miry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hor", "adj", "hor", "", "", "", "Grey greyish grey-white"]) + let v = native_list_append(v, ["ful", "adj", "ful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jung", "adj", "jung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boon", "adj", "boon", "", "", "", "good"]) + let v = native_list_append(v, ["baren", "adj", "baren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["camping", "adj", "camping", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebellious", "adj", "rebellious", "", "", "", "Refusing to submit"]) + let v = native_list_append(v, ["ole", "adj", "ole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quat", "adj", "quat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chefe", "adj", "chefe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["massy", "adj", "massy", "", "", "", "weighty massy having"]) + let v = native_list_append(v, ["leaden", "adj", "leaden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sacre", "adj", "sacre", "", "", "", "sacred"]) + let v = native_list_append(v, ["commendable", "adj", "commendable", "", "", "", "commendable admirable"]) + let v = native_list_append(v, ["heil", "adj", "heil", "", "", "", "healthy sound"]) + let v = native_list_append(v, ["badder", "adj", "badder", "", "", "", "more bad badder"]) + let v = native_list_append(v, ["blonc", "adj", "blonc", "", "", "", "white"]) + let v = native_list_append(v, ["blaunc", "adj", "blaunc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["oli", "adj", "oli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tendre", "adj", "tendre", "", "", "", "tender soft delicate"]) + let v = native_list_append(v, ["burly", "adj", "burly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hides", "adj", "hides", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zevende", "adj", "zevende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tiende", "adj", "tiende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lusty", "adj", "lusty", "", "", "", "pleasant delightful"]) + let v = native_list_append(v, ["sike", "adj", "sike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wel", "adj", "bet", "", "", "", "Lucky experiencing good"]) + let v = native_list_append(v, ["misty", "adj", "misty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sor", "adj", "sor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rae", "adj", "rae", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hak", "adj", "hak", "", "", "", "unsparing ruthless rough"]) + let v = native_list_append(v, ["commodious", "adj", "commodious", "", "", "", "fertile"]) + let v = native_list_append(v, ["baran", "adj", "baran", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arg", "adj", "arg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plunket", "adj", "plunket", "", "", "", "light grey-blue"]) + let v = native_list_append(v, ["siker", "adj", "sikerer", "sikerest", "", "", "safe secure not"]) + let v = native_list_append(v, ["verst", "adj", "verst", "", "", "", "first"]) + let v = native_list_append(v, ["vinolent", "adj", "vinolent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trew", "adj", "trew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unwemmed", "adj", "unwemmed", "", "", "", "untainted pure"]) + let v = native_list_append(v, ["gulden", "adj", "gulden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erne", "adj", "erne", "", "", "", "willing eager covetous"]) + let v = native_list_append(v, ["beste", "adj", "beste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["immoveable", "adj", "immoveable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unchangeable", "adj", "unchangeable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blake", "adj", "blake", "", "", "", "pale pallid yellowish"]) + let v = native_list_append(v, ["frosty", "adj", "frosty", "", "", "", "cold freezing frosty"]) + let v = native_list_append(v, ["aise", "adj", "aise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bonde", "adj", "bonde", "", "", "", "The status of"]) + let v = native_list_append(v, ["sere", "adj", "sere", "", "", "", "dry withered shrunken"]) + let v = native_list_append(v, ["middel", "adj", "middelre", "middelest", "", "", "In the middle"]) + let v = native_list_append(v, ["changable", "adj", "changable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lud", "adj", "lud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wors", "adj", "wors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauf", "adj", "sauf", "", "", "", "Unharmed safe from"]) + let v = native_list_append(v, ["riotous", "adj", "riotous", "", "", "", "degenerate dissolute lax"]) + let v = native_list_append(v, ["brode", "adj", "brode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hely", "adj", "hely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dru", "adj", "dru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horned", "adj", "horned", "", "", "", "Possessing horns or"]) + let v = native_list_append(v, ["siek", "adj", "siek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lordly", "adj", "lordly", "", "", "", "lordly related to"]) + let v = native_list_append(v, ["rau", "adj", "rau", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quem", "adj", "quem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inwardly", "adj", "inwardly", "", "", "", "Located inside an"]) + let v = native_list_append(v, ["kunde", "adj", "kunde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muet", "adj", "muet", "", "", "", "Temporarily unable to"]) + let v = native_list_append(v, ["muke", "adj", "muke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bele", "adj", "bele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fei", "adj", "fei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smel", "adj", "smel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uvel", "adj", "uvel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arwe", "adj", "arwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sevenfold", "adj", "sevenfold", "", "", "", "sevenfold"]) + let v = native_list_append(v, ["swete", "adj", "swete", "", "", "", "sweet pleasant-tasting"]) + let v = native_list_append(v, ["idyl", "adj", "idyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ded", "adj", "ded", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deop", "adj", "deop", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dryge", "adj", "dryge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sappy", "adj", "sappy", "", "", "", "sappy having lots"]) + let v = native_list_append(v, ["grene", "adj", "grene", "", "", "", "green"]) + let v = native_list_append(v, ["oþer", "adj", "oþer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferm", "adj", "ferm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idel", "adj", "idel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naht", "adj", "naht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swert", "adj", "swert", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweart", "adj", "sweart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sæd", "adj", "sæd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scathe", "adj", "scathe", "", "", "", "Unfortunate a pity"]) + let v = native_list_append(v, ["sefte", "adj", "sefte", "", "", "", "seventh"]) + let v = native_list_append(v, ["mide", "adj", "mide", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["smæl", "adj", "smæl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smeþe", "adj", "smeþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stille", "adj", "stille", "", "", "", "silent noiseless"]) + let v = native_list_append(v, ["treowe", "adj", "treowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reþe", "adj", "reþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þynne", "adj", "þynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wac", "adj", "wac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fremede", "adj", "fremede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yfel", "adj", "yfel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eld", "adj", "eld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leþer", "adj", "leþer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verra", "adj", "verra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foule", "adj", "foule", "", "", "", "inflection of foul"]) + let v = native_list_append(v, ["wollun", "adj", "wollun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weel", "adj", "weel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulli", "adj", "fulli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naut", "adj", "naut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sær", "adj", "sær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dri", "adj", "dri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["furi", "adj", "furi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calme", "adj", "calme", "", "", "", "calm without wind"]) + let v = native_list_append(v, ["tombe", "adj", "tombe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fremd", "adj", "fremd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rathe", "adj", "rathere", "rathest", "", "", "eager decisive"]) + let v = native_list_append(v, ["wor", "adj", "wor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crabbed", "adj", "crabbed", "", "", "", "immoral backwards savage"]) + let v = native_list_append(v, ["leuk", "adj", "leuk", "", "", "", "lukewarm having medium"]) + let v = native_list_append(v, ["firs", "adj", "firs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["subtil", "adj", "subtil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["athel", "adj", "athel", "", "", "", "noble highborn"]) + let v = native_list_append(v, ["sunni", "adj", "sunni", "", "", "", "Full of or"]) + let v = native_list_append(v, ["originale", "adj", "originale", "", "", "", "inflection of original"]) + let v = native_list_append(v, ["criant", "adj", "criant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verte", "adj", "verte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sech", "adj", "sech", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naru", "adj", "naru", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norn", "adj", "Norn", "", "", "", "Related or pertaining"]) + let v = native_list_append(v, ["selle", "adj", "selle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rial", "adj", "rial", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knotted", "adj", "knotted", "", "", "", "knotted knotty tangled"]) + let v = native_list_append(v, ["tirant", "adj", "tirant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loue", "adj", "loue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cornered", "adj", "cornered", "", "", "", "Cornered possessing corners"]) + let v = native_list_append(v, ["footed", "adj", "footed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grisly", "adj", "grisly", "", "", "", "grisly horrifyingly repellent"]) + let v = native_list_append(v, ["duwe", "adj", "duwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["humain", "adj", "humain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mailed", "adj", "mailed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lude", "adj", "lude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angriest", "adj", "angriest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["amorously", "adj", "amorously", "", "", "", "amorously lovingly"]) + let v = native_list_append(v, ["wlatsome", "adj", "wlatsome", "", "", "", "loathsome disgusting hateful"]) + let v = native_list_append(v, ["flory", "adj", "flory", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comen", "adj", "comen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aliene", "adj", "aliene", "", "", "", "inflection of alien"]) + let v = native_list_append(v, ["amad", "adj", "amad", "", "", "", "Mad insane deranged"]) + let v = native_list_append(v, ["leder", "adj", "leder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boun", "adj", "boun", "", "", "", "Ready prepared organised"]) + let v = native_list_append(v, ["crispe", "adj", "crispe", "", "", "", "inflection of crisp"]) + let v = native_list_append(v, ["cunde", "adj", "cunde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curtes", "adj", "curtes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curtas", "adj", "curtas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deserte", "adj", "deserte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eyeful", "adj", "eyeful", "", "", "", "horrific frightening"]) + let v = native_list_append(v, ["diserte", "adj", "diserte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scars", "adj", "scars", "", "", "", "Rare scarce not"]) + let v = native_list_append(v, ["halle", "adj", "halle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["athirst", "adj", "athirst", "", "", "", "Suffering from thirst"]) + let v = native_list_append(v, ["vul", "adj", "vul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lowed", "adj", "lowed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liquide", "adj", "liquide", "", "", "", "liquid not solid"]) + let v = native_list_append(v, ["prive", "adj", "prive", "", "", "", "private"]) + let v = native_list_append(v, ["quede", "adj", "quede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["queme", "adj", "quemest", "", "", "", "satisfying satisfactory agreeable"]) + let v = native_list_append(v, ["roten", "adj", "roten", "", "", "", "Rotten or spoiled"]) + let v = native_list_append(v, ["secunde", "adj", "secunde", "", "", "", "Second following the"]) + let v = native_list_append(v, ["suple", "adj", "suple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trine", "adj", "trine", "", "", "", "trine triple"]) + let v = native_list_append(v, ["violente", "adj", "violente", "", "", "", "inflection of violent"]) + let v = native_list_append(v, ["waxen", "adj", "waxen", "", "", "", "waxen made of"]) + let v = native_list_append(v, ["hende", "adj", "hende", "", "", "", "Courteous gracious."]) + let v = native_list_append(v, ["magique", "adj", "magique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fundie", "adj", "fundie", "", "", "", "Understandable effective"]) + let v = native_list_append(v, ["roial", "adj", "roial", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dere", "adj", "dere", "", "", "", "dear"]) + let v = native_list_append(v, ["two-fold", "adj", "two-fold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moister", "adj", "moister", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["moistest", "adj", "moistest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["saddest", "adj", "saddest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["tume", "adj", "tume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["commun", "adj", "commun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["masse", "adj", "masse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imaginable", "adj", "imaginable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["puir", "adj", "puir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorer", "adj", "sorer", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["sorest", "adj", "sorest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["fringed", "adj", "fringed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rewe", "adj", "rewe", "", "", "", "sad sorrowful"]) + let v = native_list_append(v, ["inpossible", "adj", "inpossible", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dewy", "adj", "dewy", "", "", "", "Resembling dew dewy"]) + let v = native_list_append(v, ["no", "adj", "no", "", "", "", "no"]) + let v = native_list_append(v, ["heritable", "adj", "heritable", "", "", "", "inheritable hereditary able"]) + let v = native_list_append(v, ["alte", "adj", "alte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horse", "adj", "horse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suer", "adj", "suer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savable", "adj", "savable", "", "", "", "Able to be"]) + let v = native_list_append(v, ["ethe", "adj", "ethe", "", "", "", "easy"]) + let v = native_list_append(v, ["bref", "adj", "bref", "", "", "", "concise having a"]) + let v = native_list_append(v, ["inheritable", "adj", "inheritable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seemly", "adj", "seemly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rade", "adj", "rade", "", "", "", "inflection of rad"]) + let v = native_list_append(v, ["behovely", "adj", "behovely", "", "", "", "Of use for"]) + let v = native_list_append(v, ["sorelle", "adj", "sorelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["materiale", "adj", "materiale", "", "", "", "inflection of material"]) + let v = native_list_append(v, ["sliest", "adj", "sliest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["sower", "adj", "sower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manful", "adj", "manful", "", "", "", "Noble brave strong"]) + let v = native_list_append(v, ["esterne", "adj", "esterne", "", "", "", "eastern of the"]) + let v = native_list_append(v, ["recreant", "adj", "recreant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["differente", "adj", "differente", "", "", "", "inflection of different"]) + let v = native_list_append(v, ["vorst", "adj", "vorst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gladde", "adj", "gladde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sixte", "adj", "sixte", "", "", "", "sixth"]) + let v = native_list_append(v, ["sori", "adj", "sori", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stiffer", "adj", "stiffer", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["bootles", "adj", "bootles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["streight", "adj", "streight", "", "", "", "straight not curved"]) + let v = native_list_append(v, ["laste", "adj", "laste", "", "", "", "last"]) + let v = native_list_append(v, ["longe", "adj", "longe", "", "", "", "inflection of long"]) + let v = native_list_append(v, ["snart", "adj", "snart", "", "", "", "severe harsh"]) + let v = native_list_append(v, ["naturel", "adj", "naturel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["timeful", "adj", "timeful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murrey", "adj", "murrey", "", "", "", "purple-red magenta"]) + let v = native_list_append(v, ["tende", "adj", "tende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["basse", "adj", "basse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verrei", "adj", "verrei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["felle", "adj", "felle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kende", "adj", "kende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blo", "adj", "blo", "", "", "", "bruised injured visibly"]) + let v = native_list_append(v, ["digne", "adj", "digne", "", "", "", "worthy honourable deserving"]) + let v = native_list_append(v, ["ying", "adj", "ying", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fursti", "adj", "fursti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weike", "adj", "weike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyri", "adj", "fyri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fus", "adj", "fus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assise", "adj", "assise", "", "", "", "customary standard usual"]) + let v = native_list_append(v, ["blameable", "adj", "blameable", "", "", "", "blameworthy at fault"]) + let v = native_list_append(v, ["blamable", "adj", "blamable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vespertine", "adj", "vespertine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parfit", "adj", "parfit", "", "", "", "perfect"]) + let v = native_list_append(v, ["actif", "adj", "actif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fous", "adj", "fous", "", "", "", "ready eager willing"]) + let v = native_list_append(v, ["wlitig", "adj", "wlitig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imperiale", "adj", "imperiale", "", "", "", "inflection of imperial"]) + let v = native_list_append(v, ["ferny", "adj", "ferny", "", "", "", "Full of fern"]) + let v = native_list_append(v, ["comon", "adj", "comon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["terrestre", "adj", "terrestre", "", "", "", "Terrestrial earthly."]) + let v = native_list_append(v, ["subtile", "adj", "subtile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eken", "adj", "eken", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["modi", "adj", "modi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eterne", "adj", "eterne", "", "", "", "Eternal permanent having"]) + let v = native_list_append(v, ["madde", "adj", "madde", "", "", "", "inflection of mad"]) + let v = native_list_append(v, ["ayse", "adj", "ayse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gylden", "adj", "gylden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gilden", "adj", "gilden", "", "", "", "Formed from gold."]) + let v = native_list_append(v, ["festlich", "adj", "festlich", "", "", "", "festive fond of"]) + let v = native_list_append(v, ["guidi", "adj", "guidi", "", "", "", "Oxfordshire form of"]) + let v = native_list_append(v, ["sauge", "adj", "sauge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calde", "adj", "calde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bastarde", "adj", "bastarde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["misti", "adj", "misti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["petti", "adj", "petti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heie", "adj", "heie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heier", "adj", "heier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gloriose", "adj", "gloriose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nette", "adj", "nette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oneste", "adj", "oneste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["povere", "adj", "povere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scarse", "adj", "scarse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paciente", "adj", "paciente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["femelle", "adj", "femelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nakit", "adj", "nakit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evi", "adj", "evi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sodan", "adj", "sodan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soti", "adj", "soti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melodiose", "adj", "melodiose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundredfold", "adj", "hundredfold", "", "", "", "hundredfold"]) + let v = native_list_append(v, ["oton", "adj", "oton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maligne", "adj", "maligne", "", "", "", "evil malicious malign"]) + let v = native_list_append(v, ["thrid", "adj", "thrid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["violette", "adj", "violette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mure", "adj", "mure", "", "", "", "grave serious modest"]) + let v = native_list_append(v, ["stenen", "adj", "stenen", "", "", "", "Composed or built"]) + let v = native_list_append(v, ["egal", "adj", "egal", "", "", "", "equal equivalent"]) + let v = native_list_append(v, ["nys", "adj", "nys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stur", "adj", "stur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eald", "adj", "eald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyn", "adj", "wyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cors", "adj", "cors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erden", "adj", "erden", "", "", "", "Formed from clay"]) + let v = native_list_append(v, ["pacient", "adj", "pacient", "", "", "", "Able or willing"]) + let v = native_list_append(v, ["fyre", "adj", "fyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lef", "adj", "lef", "", "", "", "beloved dear"]) + let v = native_list_append(v, ["mannish", "adj", "mannish", "", "", "", "Resembling or characteristic"]) + let v = native_list_append(v, ["massed", "adj", "massed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unlovely", "adj", "unlovely", "", "", "", "unattractive ugly"]) + let v = native_list_append(v, ["schiere", "adj", "schiere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["derk", "adj", "derker", "derkest", "", "", "dark"]) + let v = native_list_append(v, ["halie", "adj", "halie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ardente", "adj", "ardente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosen", "adj", "rosen", "", "", "", "rosy made of"]) + let v = native_list_append(v, ["geri", "adj", "geri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["officiale", "adj", "officiale", "", "", "", "inflection of official"]) + let v = native_list_append(v, ["hevi", "adj", "hevi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["selli", "adj", "selli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoer", "adj", "hoer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linnen", "adj", "linnen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stormi", "adj", "stormi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clubbed", "adj", "clubbed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deceivable", "adj", "deceivable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shamefast", "adj", "shamefast", "", "", "", "modest humble virtuous"]) + let v = native_list_append(v, ["historial", "adj", "historial", "", "", "", "Historical genuine factual."]) + let v = native_list_append(v, ["Cristian", "adj", "Cristian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parcial", "adj", "parcial", "", "", "", "partial particular not"]) + let v = native_list_append(v, ["blak", "adj", "blakker", "blakkest", "", "", "black of a"]) + let v = native_list_append(v, ["doon", "adj", "doon", "", "", "", "done"]) + let v = native_list_append(v, ["hempon", "adj", "hempon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stive", "adj", "stive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linnan", "adj", "linnan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benigne", "adj", "benigne", "", "", "", "kind gentle mild"]) + let v = native_list_append(v, ["furiose", "adj", "furiose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seste", "adj", "seste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorde", "adj", "sorde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruche", "adj", "ruche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["actuelle", "adj", "actuelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nett", "adj", "nett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bla", "adj", "bla", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blasfeme", "adj", "blasfeme", "", "", "", "blasphemous"]) + let v = native_list_append(v, ["kend", "adj", "kend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fauce", "adj", "fauce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fervente", "adj", "fervente", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["megere", "adj", "megere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beholde", "adj", "beholde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verry", "adj", "verry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deepe", "adj", "deepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sicke", "adj", "sicke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sicker", "adj", "sicker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fals", "adj", "fals", "", "", "", "false untrue not"]) + let v = native_list_append(v, ["rebell", "adj", "rebell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eternall", "adj", "eternall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leste", "adj", "leste", "", "", "", "last final"]) + let v = native_list_append(v, ["souple", "adj", "souple", "", "", "", "pliant supple"]) + let v = native_list_append(v, ["sodayne", "adj", "sodayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heli", "adj", "heli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kinde", "adj", "kinde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seeke", "adj", "seeke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vertuous", "adj", "vertuous", "", "", "", "Virtuous morally correct"]) + let v = native_list_append(v, ["universell", "adj", "universell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rightest", "adj", "rightest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["hungrig", "adj", "hungrig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lere", "adj", "lere", "", "", "", "empty"]) + let v = native_list_append(v, ["greene", "adj", "greene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["almandine", "adj", "almandine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rebelle", "adj", "rebelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["defte", "adj", "defte", "", "", "", "Mild polite respectful"]) + let v = native_list_append(v, ["doughtiest", "adj", "doughtiest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["tenebrose", "adj", "tenebrose", "", "", "", "dark gloomy"]) + let v = native_list_append(v, ["innerlich", "adj", "innerlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esi", "adj", "esi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betere", "adj", "betere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perspicuate", "adj", "perspicuate", "", "", "", "clear transparent."]) + let v = native_list_append(v, ["wys", "adj", "wiser", "wiseste", "", "", "wise thoughtful proper"]) + let v = native_list_append(v, ["hatful", "adj", "hatful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yonge", "adj", "yonge", "", "", "", "inflection of yong"]) + let v = native_list_append(v, ["holie", "adj", "holie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colde", "adj", "colde", "", "", "", "inflection of cold"]) + let v = native_list_append(v, ["foole", "adj", "foole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["talewise", "adj", "talewise", "", "", "", "given to gossip"]) + let v = native_list_append(v, ["kund", "adj", "kund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seyr", "adj", "seyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaine", "adj", "gaine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noht", "adj", "noht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rawest", "adj", "rawest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["sorel", "adj", "sorel", "", "", "", "sorrel red-brown"]) + let v = native_list_append(v, ["yelow", "adj", "yelow", "", "", "", "yellow yellowish gold"]) + let v = native_list_append(v, ["gay", "adj", "gay", "", "", "", "joyous merry"]) + let v = native_list_append(v, ["wyse", "adj", "wyse", "", "", "", "inflection of wys"]) + let v = native_list_append(v, ["newe", "adj", "newe", "", "", "", "new"]) + let v = native_list_append(v, ["holde", "adj", "holde", "", "", "", "inflection of hold"]) + let v = native_list_append(v, ["aisy", "adj", "aisy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lawfull", "adj", "lawfull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naturelle", "adj", "naturelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gayn", "adj", "geyner", "gaynest", "", "", "direct straight fast"]) + let v = native_list_append(v, ["cruelle", "adj", "cruelle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["masit", "adj", "masit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erke", "adj", "erke", "", "", "", "erke slothful"]) + let v = native_list_append(v, ["fat", "adj", "fat", "", "", "", "fattened fatted"]) + let v = native_list_append(v, ["creat", "adj", "creat", "", "", "", "Made created or"]) + let v = native_list_append(v, ["wunne", "adj", "wunne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deadlic", "adj", "deadlic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warre", "adj", "warre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fift", "adj", "fift", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burli", "adj", "burli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treen", "adj", "treen", "", "", "", "made of wood"]) + let v = native_list_append(v, ["holo", "adj", "holo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verri", "adj", "verri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vertuuus", "adj", "vertuuus", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["vertuus", "adj", "vertuus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evel", "adj", "evel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beechen", "adj", "beechen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swær", "adj", "swær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saad", "adj", "saad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kene", "adj", "kene", "", "", "", "keen"]) + let v = native_list_append(v, ["cavernose", "adj", "cavernose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comparatif", "adj", "comparatif", "", "", "", "Of the comparative"]) + let v = native_list_append(v, ["goldun", "adj", "goldun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["domb", "adj", "domb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suere", "adj", "suere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gled", "adj", "gled", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pety", "adj", "pety", "", "", "", "diminutive tiny little"]) + let v = native_list_append(v, ["troublous", "adj", "troublous", "", "", "", "Muddy cloudy opaque."]) + let v = native_list_append(v, ["stoni", "adj", "stoni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["childly", "adj", "childly", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["speedful", "adj", "speedful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sellic", "adj", "sellic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onerose", "adj", "onerose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stedfast", "adj", "stedfast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sutil", "adj", "sutil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foren", "adj", "foren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iren", "adj", "iren", "", "", "", "Made or consisting"]) + let v = native_list_append(v, ["oly", "adj", "oly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sople", "adj", "sople", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sempiterne", "adj", "sempiterne", "", "", "", "sempiternal everlasting"]) + let v = native_list_append(v, ["suele", "adj", "suele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gire", "adj", "gire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["squamose", "adj", "squamose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["organice", "adj", "organice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["etik", "adj", "etik", "", "", "", "Moral relating to"]) + let v = native_list_append(v, ["bett", "adj", "bett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holle", "adj", "holle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spumose", "adj", "spumose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["untressed", "adj", "untressed", "", "", "", "untressed loose not"]) + let v = native_list_append(v, ["fumose", "adj", "fumose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["birchen", "adj", "birchen", "", "", "", "Made of birchwood."]) + let v = native_list_append(v, ["therf", "adj", "therf", "", "", "", "Not fermented unleavened."]) + let v = native_list_append(v, ["stani", "adj", "stani", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trene", "adj", "trene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bolde", "adj", "bolde", "", "", "", "bold"]) + let v = native_list_append(v, ["fremmed", "adj", "fremmed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["silvern", "adj", "silvern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slyer", "adj", "slyer", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["wankel", "adj", "wankel", "", "", "", "unstable mutable tottering"]) + let v = native_list_append(v, ["teer", "adj", "teer", "", "", "", "Of good quality"]) + let v = native_list_append(v, ["lyege", "adj", "lyege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glasen", "adj", "glasen", "", "", "", "Made of glass."]) + let v = native_list_append(v, ["canevas", "adj", "canevas", "", "", "", "Made of canvas"]) + let v = native_list_append(v, ["lewder", "adj", "lewder", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["frese", "adj", "frese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verye", "adj", "verye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tusky", "adj", "tusky", "", "", "", "tusky having tusks"]) + let v = native_list_append(v, ["melancolie", "adj", "melancolie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herre", "adj", "herre", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["wath", "adj", "wath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coupable", "adj", "coupable", "", "", "", "culpable"]) + let v = native_list_append(v, ["warse", "adj", "warse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warst", "adj", "warst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fifte", "adj", "fifte", "", "", "", "fifth"]) + let v = native_list_append(v, ["ellefte", "adj", "ellefte", "", "", "", "eleventh"]) + let v = native_list_append(v, ["oken", "adj", "oken", "", "", "", "Made of oakwood."]) + let v = native_list_append(v, ["maneli", "adj", "maneli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vulgare", "adj", "vulgare", "", "", "", "ordinary usual"]) + let v = native_list_append(v, ["smale", "adj", "smale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["febul", "adj", "febul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yester", "adj", "yester", "", "", "", "only used in"]) + let v = native_list_append(v, ["sotte", "adj", "sotte", "", "", "", "inflection of sot"]) + let v = native_list_append(v, ["ledder", "adj", "ledder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lynene", "adj", "lynene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["odde", "adj", "odde", "oddist", "", "", "odd not divisible"]) + let v = native_list_append(v, ["saphir", "adj", "saphir", "", "", "", "sapphire colour"]) + let v = native_list_append(v, ["perles", "adj", "perles", "", "", "", "Peerless unrivalled lacking"]) + let v = native_list_append(v, ["veine", "adj", "veine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meur", "adj", "meur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maset", "adj", "maset", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tryne", "adj", "tryne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twyfold", "adj", "twyfold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schort", "adj", "schort", "", "", "", "short as opposed"]) + let v = native_list_append(v, ["yenge", "adj", "yenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towardly", "adj", "towardly", "", "", "", "Willing to act"]) + let v = native_list_append(v, ["welig", "adj", "welig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fole", "adj", "fole", "", "", "", "Foolish moronic idiotic"]) + let v = native_list_append(v, ["inmutable", "adj", "inmutable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soden", "adj", "soden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["povre", "adj", "povrer", "povreste", "", "", "poor needy lacking"]) + let v = native_list_append(v, ["drue", "adj", "drue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noteful", "adj", "noteful", "", "", "", "Useful."]) + let v = native_list_append(v, ["fers", "adj", "fers", "", "", "", "brave bold"]) + let v = native_list_append(v, ["rakel", "adj", "rakel", "", "", "", "hasty reckless rash"]) + let v = native_list_append(v, ["mascle", "adj", "mascle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fenny", "adj", "fenny", "", "", "", "fenny marshy like"]) + let v = native_list_append(v, ["slet", "adj", "slet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["universele", "adj", "universele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stoor", "adj", "stoor", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["foreward", "adj", "foreward", "", "", "", "forward"]) + let v = native_list_append(v, ["vinose", "adj", "vinose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quon", "adj", "quon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evill", "adj", "evill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fele", "adj", "fele", "", "", "", "great large extreme"]) + let v = native_list_append(v, ["weste", "adj", "weste", "", "", "", "uncultivated deserted desolate"]) + let v = native_list_append(v, ["egre", "adj", "egre", "", "", "", "acidic sour-tasting"]) + let v = native_list_append(v, ["fiers", "adj", "fiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["captif", "adj", "captif", "", "", "", "Held captive in"]) + let v = native_list_append(v, ["montuous", "adj", "montuous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woþ", "adj", "woþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["instrumentale", "adj", "instrumentale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orthodoxe", "adj", "orthodoxe", "", "", "", "orthodox conforming to"]) + let v = native_list_append(v, ["frempt", "adj", "frempt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["halte", "adj", "halte", "", "", "", "inflection of halt"]) + let v = native_list_append(v, ["forfoughten", "adj", "forfoughten", "", "", "", "exhausted from fighting"]) + let v = native_list_append(v, ["smerte", "adj", "smerte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smert", "adj", "smerter", "smertest", "", "", "painful hurtful punishing"]) + let v = native_list_append(v, ["hene", "adj", "hene", "", "", "", "needful wretched low"]) + let v = native_list_append(v, ["myssease", "adj", "myssease", "", "", "", "suffering in pain"]) + let v = native_list_append(v, ["fleme", "adj", "fleme", "", "", "", "Banished exiled."]) + let v = native_list_append(v, ["cheve", "adj", "cheve", "", "", "", "inflection of chef"]) + let v = native_list_append(v, ["honied", "adj", "honied", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sture", "adj", "sture", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winne", "adj", "winne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oold", "adj", "oold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["opake", "adj", "opaker", "opakest", "", "", "dark shaded unlit"]) + let v = native_list_append(v, ["selden", "adj", "selden", "", "", "", "uncommon unusual rare"]) + let v = native_list_append(v, ["diȝel", "adj", "diȝel", "", "", "", "secret hidden"]) + let v = native_list_append(v, ["comun", "adj", "comun", "", "", "", "Shared common belonging"]) + let v = native_list_append(v, ["fone", "adj", "fone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holdeste", "adj", "holdeste", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["unhold", "adj", "unhold", "", "", "", "unfriendly hostile"]) + let v = native_list_append(v, ["wrað", "adj", "wrað", "", "", "", "angry bad wroth."]) + let v = native_list_append(v, ["wroð", "adj", "wroð", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cundelich", "adj", "cundelich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nyse", "adj", "nyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["godne", "adj", "godne", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["dwe", "adj", "dwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suni", "adj", "suni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frosti", "adj", "frosti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gein", "adj", "gein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calu", "adj", "calu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glason", "adj", "glason", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hori", "adj", "hori", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caitif", "adj", "caitiver", "catifest", "", "", "In captivity or"]) + let v = native_list_append(v, ["commyn", "adj", "commyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wike", "adj", "wike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abstracte", "adj", "abstracte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linne", "adj", "linne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usant", "adj", "usant", "", "", "", "accustomed used to"]) + let v = native_list_append(v, ["þarf", "adj", "þarf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rightwise", "adj", "rightwise", "", "", "", "upright righteous"]) + let v = native_list_append(v, ["yonker", "adj", "yonker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prest", "adj", "prest", "", "", "", "willing enthusiastic"]) + let v = native_list_append(v, ["seli", "adj", "seli", "", "", "", "sely"]) + let v = native_list_append(v, ["cler", "adj", "cler", "", "", "", "shining bright"]) + let v = native_list_append(v, ["roton", "adj", "roton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curteis", "adj", "curteis", "", "", "", "Appropriate for a"]) + let v = native_list_append(v, ["ardant", "adj", "ardant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merveilus", "adj", "merveilus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weke", "adj", "weke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flexon", "adj", "flexon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bette", "adj", "bette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honeste", "adj", "honestere", "", "", "", "honourable noble of"]) + let v = native_list_append(v, ["onne", "adj", "onne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seur", "adj", "seur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frist", "adj", "frist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feble", "adj", "feblere", "feblest", "", "", "Feeble weak or"]) + let v = native_list_append(v, ["wirst", "adj", "wirst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["latyn", "adj", "latyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clere", "adj", "clere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["troble", "adj", "troble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyde", "adj", "wyde", "", "", "", "wide"]) + let v = native_list_append(v, ["bigge", "adj", "bigge", "", "", "", "big large of"]) + let v = native_list_append(v, ["glasiere", "adj", "glasiere", "", "", "", "A glazier an"]) + let v = native_list_append(v, ["suche", "adj", "suche", "", "", "", "such"]) + let v = native_list_append(v, ["rere", "adj", "rere", "", "", "", "Referring to eggs"]) + let v = native_list_append(v, ["faus", "adj", "faus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noyous", "adj", "noyous", "", "", "", "painful injurious harmful"]) + let v = native_list_append(v, ["verai", "adj", "verai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chois", "adj", "chois", "", "", "", "choice fine select"]) + let v = native_list_append(v, ["amoros", "adj", "amoros", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eise", "adj", "eise", "", "", "", "Convenient suitable fit"]) + let v = native_list_append(v, ["schere", "adj", "schere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["royaler", "adj", "royaler", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["queint", "adj", "queint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wonne", "adj", "wonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wronge", "adj", "wronge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nake", "adj", "nake", "", "", "", "naked exposed miserly"]) + let v = native_list_append(v, ["hungre", "adj", "hungre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belde", "adj", "belde", "beldest", "", "", "hardy stout courageous"]) + let v = native_list_append(v, ["jalous", "adj", "jalous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelus", "adj", "gelus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rochen", "adj", "rochen", "", "", "", "Formed from rock"]) + let v = native_list_append(v, ["sorie", "adj", "sorie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["solly", "adj", "solly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sweete", "adj", "sweete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cruell", "adj", "cruell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smalle", "adj", "smalle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naturall", "adj", "naturall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sawe", "adj", "sawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sowre", "adj", "sowre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stalworth", "adj", "stalworth", "stalworthest", "", "", "stalworth"]) + let v = native_list_append(v, ["cweme", "adj", "cweme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envyous", "adj", "envyous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trenne", "adj", "trenne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thenne", "adj", "thenne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sead", "adj", "sead", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comunal", "adj", "comunal", "", "", "", "unequivocal"]) + let v = native_list_append(v, ["leud", "adj", "leud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leude", "adj", "leude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strawen", "adj", "strawen", "", "", "", "Made of straw."]) + let v = native_list_append(v, ["nece", "adj", "nece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hidous", "adj", "hidous", "", "", "", "terrifying frightening"]) + let v = native_list_append(v, ["defe", "adj", "defe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dought", "adj", "dought", "", "", "", "doughty"]) + let v = native_list_append(v, ["lyne", "adj", "lyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glorius", "adj", "glorius", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agreable", "adj", "agreable", "", "", "", "Fine charming attractive"]) + let v = native_list_append(v, ["unthrifty", "adj", "unthrifty", "", "", "", "Unvirtuous evil."]) + let v = native_list_append(v, ["blameful", "adj", "blameful", "", "", "", "insulting defamatory"]) + let v = native_list_append(v, ["lovesome", "adj", "lovesome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anguissous", "adj", "anguissous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noght", "adj", "noght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoos", "adj", "hoos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["covenable", "adj", "covenable", "", "", "", "fit proper suitable"]) + let v = native_list_append(v, ["halesome", "adj", "halesome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forcasten", "adj", "forcasten", "", "", "", "neglected"]) + let v = native_list_append(v, ["verd", "adj", "verd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ortodox", "adj", "ortodox", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veie", "adj", "veie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curteise", "adj", "curteise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chis", "adj", "chis", "", "", "", "picky particular"]) + let v = native_list_append(v, ["endly", "adj", "endly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fumous", "adj", "fumous", "", "", "", "Smelly having a"]) + let v = native_list_append(v, ["straunge", "adj", "straunger", "straungest", "", "", "foreign overseas"]) + let v = native_list_append(v, ["blisful", "adj", "blisful", "", "", "", "Positive joyous creating"]) + let v = native_list_append(v, ["redy", "adj", "redy", "", "", "", "ready"]) + let v = native_list_append(v, ["myghty", "adj", "myghty", "", "", "", "mighty"]) + let v = native_list_append(v, ["symple", "adj", "sympler", "symplest", "", "", "virtuous godly without"]) + let v = native_list_append(v, ["plesaunt", "adj", "plesaunt", "", "", "", "pleasing pleasant"]) + let v = native_list_append(v, ["amyable", "adj", "amyable", "", "", "", "likable amiable"]) + let v = native_list_append(v, ["softe", "adj", "softe", "", "", "", "soft not hard"]) + let v = native_list_append(v, ["greye", "adj", "greye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waterlees", "adj", "waterlees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fowel", "adj", "fowel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["broun", "adj", "broun", "", "", "", "dark dull murky"]) + let v = native_list_append(v, ["certein", "adj", "certein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["repentaunt", "adj", "repentaunt", "", "", "", "repentant"]) + let v = native_list_append(v, ["solempne", "adj", "solempne", "", "", "", "solemn serious"]) + let v = native_list_append(v, ["leene", "adj", "leene", "", "", "", "lean skinny scrawny"]) + let v = native_list_append(v, ["bisy", "adj", "bisiere", "bisiest", "", "", "Engaged in activity"]) + let v = native_list_append(v, ["fressh", "adj", "fressh", "", "", "", "fresh new newly"]) + let v = native_list_append(v, ["esy", "adj", "esyere", "esyest", "", "", "Comfortable pleasant."]) + let v = native_list_append(v, ["ynogh", "adj", "ynogh", "", "", "", "enough"]) + let v = native_list_append(v, ["magyk", "adj", "magyk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["natureel", "adj", "natureel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["everich", "adj", "everich", "", "", "", "every"]) + let v = native_list_append(v, ["coold", "adj", "coold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drye", "adj", "*dryer", "*dryest", "", "", "Dry lacking wetness"]) + let v = native_list_append(v, ["moyste", "adj", "moyste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verray", "adj", "verray", "verrayest", "", "", "true correct factual"]) + let v = native_list_append(v, ["deef", "adj", "deef", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boold", "adj", "boold", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hooly", "adj", "hooly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trewely", "adj", "trewely", "", "", "", "sound safe"]) + let v = native_list_append(v, ["benygne", "adj", "benygne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["litel", "adj", "litel", "", "", "", "little small not"]) + let v = native_list_append(v, ["clene", "adj", "clener", "clenest", "", "", "clean"]) + let v = native_list_append(v, ["hoole", "adj", "hoole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adred", "adj", "adred", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afered", "adj", "afered", "", "", "", "afraid scared"]) + let v = native_list_append(v, ["Latyn", "adj", "Latyn", "", "", "", "Relating to the"]) + let v = native_list_append(v, ["bettre", "adj", "bettre", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["daungerous", "adj", "daungerous", "", "", "", "dangerous"]) + let v = native_list_append(v, ["untrewe", "adj", "untrewe", "", "", "", "untrue"]) + let v = native_list_append(v, ["trewe", "adj", "trewere", "trewest", "", "", "Faithful loyal trustworthy."]) + let v = native_list_append(v, ["pleyn", "adj", "pleyn", "", "", "", "clear unambiguous"]) + let v = native_list_append(v, ["bilewit", "adj", "bilewit", "", "", "", "simple innocent"]) + let v = native_list_append(v, ["bilehwit", "adj", "bilehwit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gere", "adj", "gere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dilatable", "adj", "dilatable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyvynge", "adj", "lyvynge", "", "", "", "living alive"]) + let v = native_list_append(v, ["anoþer", "adj", "anoþer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caytif", "adj", "caytif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worþi", "adj", "worþi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schortly", "adj", "schortly", "", "", "", "lasting a short"]) + let v = native_list_append(v, ["floure", "adj", "floure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorwful", "adj", "sorwful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dedly", "adj", "dedly", "", "", "", "deadly lethal causing"]) + let v = native_list_append(v, ["wrecched", "adj", "wrecched", "", "", "", "unfortunate miserable unhappy"]) + let v = native_list_append(v, ["swich", "adj", "swich", "", "", "", "such"]) + let v = native_list_append(v, ["bittre", "adj", "bittre", "", "", "", "bitter"]) + let v = native_list_append(v, ["allone", "adj", "allone", "", "", "", "alone"]) + let v = native_list_append(v, ["creant", "adj", "creant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sevenþe", "adj", "sevenþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loude", "adj", "loude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freendly", "adj", "freendly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rech", "adj", "rech", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iunge", "adj", "iunge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["truble", "adj", "truble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hospitale", "adj", "hospitale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["irous", "adj", "irous", "", "", "", "irascible passionate"]) + let v = native_list_append(v, ["corteis", "adj", "corteis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relegat", "adj", "relegat", "", "", "", "relegate"]) + let v = native_list_append(v, ["slidder", "adj", "slidder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alienat", "adj", "alienat", "", "", "", "Mad insane or"]) + let v = native_list_append(v, ["recreent", "adj", "recreent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relicte", "adj", "relicte", "", "", "", "undamaged left alone"]) + let v = native_list_append(v, ["douteles", "adj", "douteles", "", "", "", "doubtless without doubt"]) + let v = native_list_append(v, ["nete", "adj", "nete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["commone", "adj", "commone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauvable", "adj", "sauvable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holi", "adj", "holi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pitous", "adj", "pitous", "", "", "", "pitiful miserable wretched"]) + let v = native_list_append(v, ["buxum", "adj", "buxum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alvis", "adj", "alvis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fetis", "adj", "fetis", "", "", "", "neat pretty well"]) + let v = native_list_append(v, ["tecte", "adj", "tecte", "", "", "", "covered tect"]) + let v = native_list_append(v, ["secundarie", "adj", "secundarie", "", "", "", "Secondary lesser in"]) + let v = native_list_append(v, ["graciles", "adj", "graciles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sutile", "adj", "sutile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cirurgical", "adj", "cirurgical", "", "", "", "surgical"]) + let v = native_list_append(v, ["mazed", "adj", "mazed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewage", "adj", "ewage", "", "", "", "The colour of"]) + let v = native_list_append(v, ["deff", "adj", "deff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whyte", "adj", "whyte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delitable", "adj", "delitabeler", "delitabylest", "", "", "Delightful delectable enjoyable"]) + let v = native_list_append(v, ["simulat", "adj", "simulat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["similat", "adj", "similat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["similate", "adj", "similate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soverain", "adj", "soverain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gratius", "adj", "gratius", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["edi", "adj", "edi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neowe", "adj", "neowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beu", "adj", "beu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betst", "adj", "betst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sembli", "adj", "sembli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hereditarie", "adj", "hereditarie", "", "", "", "hereditary inherited of"]) + let v = native_list_append(v, ["hornen", "adj", "hornen", "", "", "", "hornen made of"]) + let v = native_list_append(v, ["alkyns", "adj", "alkyns", "", "", "", "alkin Of all"]) + let v = native_list_append(v, ["fulle", "adj", "fulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["styve", "adj", "styve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["populer", "adj", "populer", "", "", "", "Commonly known."]) + let v = native_list_append(v, ["haye", "adj", "haye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nise", "adj", "nise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guery", "adj", "guery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hedus", "adj", "hedus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["furst", "adj", "furst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuxed", "adj", "tuxed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goode", "adj", "goode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ryght", "adj", "ryght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hye", "adj", "hye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cec", "adj", "cec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feldi", "adj", "feldi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yvory", "adj", "yvory", "", "", "", "Made of ivory"]) + let v = native_list_append(v, ["condigne", "adj", "condigne", "", "", "", "suitable appropriate"]) + let v = native_list_append(v, ["doum", "adj", "doum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seere", "adj", "seere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyde", "adj", "tyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onest", "adj", "onest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glassen", "adj", "glassen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moiste", "adj", "moister", "moistest", "", "", "damp wet soaked"]) + let v = native_list_append(v, ["axen", "adj", "axen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feers", "adj", "feers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dref", "adj", "dref", "", "", "", "Causing trouble or"]) + let v = native_list_append(v, ["elinge", "adj", "elinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naket", "adj", "naket", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skars", "adj", "skars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smarte", "adj", "smarte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyende", "adj", "tyende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Persien", "adj", "Persien", "", "", "", "Of or pertaining"]) + let v = native_list_append(v, ["sanguinolent", "adj", "sanguinolent", "", "", "", "Emitting blood or"]) + let v = native_list_append(v, ["sligh", "adj", "sligh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["obligatorie", "adj", "obligatorie", "", "", "", "Making someone obligated"]) + let v = native_list_append(v, ["mensk", "adj", "mensk", "", "", "", "honorable praiseworthy beautiful"]) + let v = native_list_append(v, ["tenebrus", "adj", "tenebrus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fieble", "adj", "fieble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seir", "adj", "seir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forbled", "adj", "forbled", "", "", "", "forbled covered in"]) + let v = native_list_append(v, ["aght", "adj", "aght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["attery", "adj", "attery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["attry", "adj", "attry", "", "", "", "Poisonous toxic containing"]) + let v = native_list_append(v, ["ruinose", "adj", "ruinose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoce", "adj", "hoce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fremmede", "adj", "fremmede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eurous", "adj", "eurous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["innerly", "adj", "innerly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twifold", "adj", "twifold", "", "", "", "double twofold having"]) + let v = native_list_append(v, ["ece", "adj", "ece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crips", "adj", "crips", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unright", "adj", "unright", "", "", "", "not right unrighteous"]) + let v = native_list_append(v, ["welthe", "adj", "welthe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seure", "adj", "seure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warly", "adj", "warly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elmen", "adj", "elmen", "", "", "", "Made of elmwood."]) + let v = native_list_append(v, ["yvel", "adj", "worse", "worst", "", "", "Morally evil iniquitous"]) + let v = native_list_append(v, ["ywar", "adj", "ywar", "", "", "", "aware"]) + let v = native_list_append(v, ["choys", "adj", "choys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["masle", "adj", "masle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferse", "adj", "ferse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quade", "adj", "quade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raggy", "adj", "raggy", "", "", "", "ragged raggy"]) + let v = native_list_append(v, ["fre", "adj", "frerre", "freest", "", "", "Free independent unrestricted"]) + let v = native_list_append(v, ["feele", "adj", "feele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["firy", "adj", "firy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Duch", "adj", "Duch", "", "", "", "German Dutch"]) + let v = native_list_append(v, ["bace", "adj", "bace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forolded", "adj", "forolded", "", "", "", "worn out with"]) + let v = native_list_append(v, ["sotted", "adj", "sotted", "", "", "", "sotted drunk"]) + let v = native_list_append(v, ["weele", "adj", "weele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haselen", "adj", "haselen", "", "", "", "Made of hazelwood."]) + let v = native_list_append(v, ["wholy", "adj", "wholy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unyolden", "adj", "unyolden", "", "", "", "unavenged"]) + let v = native_list_append(v, ["envius", "adj", "envius", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paien", "adj", "paien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hathen", "adj", "hathen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mery", "adj", "mery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kynde", "adj", "kynde", "", "", "", "Natural inherent"]) + let v = native_list_append(v, ["hatefull", "adj", "hatefull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["awfull", "adj", "awfull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["balefull", "adj", "balefull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["playfull", "adj", "playfull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qued", "adj", "qued", "", "", "", "bad evil"]) + let v = native_list_append(v, ["queed", "adj", "queed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quemful", "adj", "quemful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venemous", "adj", "venemous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wode", "adj", "wode", "", "", "", "mad insane possessed"]) + let v = native_list_append(v, ["kernelly", "adj", "kernelly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["joinant", "adj", "joinant", "", "", "", "adjoining"]) + let v = native_list_append(v, ["wemlesse", "adj", "wemlesse", "", "", "", "Having no wem"]) + let v = native_list_append(v, ["heigh", "adj", "heigher", "heighest", "", "", "high"]) + let v = native_list_append(v, ["unresty", "adj", "unresty", "", "", "", "Causing unrest disquieting."]) + let v = native_list_append(v, ["femele", "adj", "femele", "", "", "", "female of feminine"]) + let v = native_list_append(v, ["undigne", "adj", "undigne", "", "", "", "unworthy"]) + let v = native_list_append(v, ["smiker", "adj", "smiker", "", "", "", "beautiful beauteous elegant"]) + let v = native_list_append(v, ["amourous", "adj", "amourous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fonne", "adj", "fonne", "", "", "", "silly ridiculous stupid"]) + let v = native_list_append(v, ["swartish", "adj", "swartish", "", "", "", "Somewhat dark darkish."]) + let v = native_list_append(v, ["corrumpable", "adj", "corrumpable", "", "", "", "corruptible"]) + let v = native_list_append(v, ["narwe", "adj", "narwere", "narwest", "", "", "Narrow skinny lacking"]) + let v = native_list_append(v, ["wawe", "adj", "wawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doubtuouse", "adj", "doubtuouse", "", "", "", "doubtful"]) + let v = native_list_append(v, ["rechless", "adj", "rechless", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ernestful", "adj", "ernestful", "", "", "", "Earnest serious."]) + let v = native_list_append(v, ["holwe", "adj", "holwe", "", "", "", "hollow"]) + let v = native_list_append(v, ["undwellable", "adj", "undwellable", "", "", "", "uninhabitable unsuitable for"]) + let v = native_list_append(v, ["knarry", "adj", "knarry", "", "", "", "knotty gnarly"]) + let v = native_list_append(v, ["orped", "adj", "orped", "", "", "", "brave daring powerful"]) + let v = native_list_append(v, ["unobedient", "adj", "unobedient", "", "", "", "disobedient"]) + let v = native_list_append(v, ["rewful", "adj", "rewful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marrowy", "adj", "marrowy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choise", "adj", "choise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gulty", "adj", "gulty", "", "", "", "guilty"]) + let v = native_list_append(v, ["storial", "adj", "storial", "", "", "", "Historical genuine factual."]) + let v = native_list_append(v, ["kirked", "adj", "kirked", "", "", "", "Turned upward bent"]) + let v = native_list_append(v, ["haveles", "adj", "haveles", "", "", "", "having little or"]) + let v = native_list_append(v, ["wers", "adj", "wers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["knopped", "adj", "knopped", "", "", "", "Knopped having knops"]) + let v = native_list_append(v, ["noious", "adj", "noious", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recreante", "adj", "recreante", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kempe", "adj", "kempe", "", "", "", "shaggy bristly rough."]) + let v = native_list_append(v, ["vileyns", "adj", "vileyns", "", "", "", "villainous"]) + let v = native_list_append(v, ["squaimous", "adj", "squaimous", "", "", "", "squeamish"]) + let v = native_list_append(v, ["wyke", "adj", "wyke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unobedience", "adj", "unobedience", "", "", "", "disobedience"]) + let v = native_list_append(v, ["gret", "adj", "gret", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wikke", "adj", "wicker", "", "", "", "evil morally wrong"]) + let v = native_list_append(v, ["malgracious", "adj", "malgracious", "", "", "", "not graceful displeasing"]) + let v = native_list_append(v, ["hippe-halt", "adj", "hippe-halt", "", "", "", "lame in the"]) + let v = native_list_append(v, ["wrawful", "adj", "wrawful", "", "", "", "ill-tempered"]) + let v = native_list_append(v, ["destinable", "adj", "destinable", "", "", "", "Determined by destiny"]) + let v = native_list_append(v, ["noyful", "adj", "noyful", "", "", "", "Full of annoyance."]) + let v = native_list_append(v, ["falwe", "adj", "falwe", "", "", "", "fallow"]) + let v = native_list_append(v, ["weleful", "adj", "weleful", "", "", "", "Blessed well-off lucky"]) + let v = native_list_append(v, ["lowd", "adj", "lowd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tweyfold", "adj", "tweyfold", "", "", "", "double twofold having"]) + let v = native_list_append(v, ["wicke", "adj", "wicke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fendliche", "adj", "fendliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unbehovely", "adj", "unbehovely", "", "", "", "not behooving or"]) + let v = native_list_append(v, ["wayk", "adj", "wayk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goundy", "adj", "goundy", "", "", "", "Covered in phlegm"]) + let v = native_list_append(v, ["dronkelewe", "adj", "dronkelewe", "", "", "", "Given to drinking"]) + let v = native_list_append(v, ["giltif", "adj", "giltif", "", "", "", "guilty"]) + let v = native_list_append(v, ["Turkeis", "adj", "Turkeis", "", "", "", "Turkish"]) + let v = native_list_append(v, ["unfestlich", "adj", "unfestlich", "", "", "", "unfit for a"]) + let v = native_list_append(v, ["wel bigon", "adj", "wel bigon", "", "", "", "Surrounded with happiness"]) + let v = native_list_append(v, ["lighty", "adj", "lighty", "", "", "", "bright illuminated spiritually"]) + let v = native_list_append(v, ["monstruous", "adj", "monstruous", "", "", "", "Misshapen grotesque of"]) + let v = native_list_append(v, ["vertual", "adj", "vertual", "", "", "", "Having an inherent"]) + let v = native_list_append(v, ["ryal", "adj", "ryallere", "ryaleste", "", "", "royal kingly of"]) + let v = native_list_append(v, ["oughne", "adj", "oughne", "", "", "", "own"]) + let v = native_list_append(v, ["miscreaunt", "adj", "miscreaunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyraunt", "adj", "tyraunt", "", "", "", "Relating to a"]) + let v = native_list_append(v, ["committable", "adj", "committable", "", "", "", "assignable expendable"]) + let v = native_list_append(v, ["hatel", "adj", "hatel", "", "", "", "Violent ruthless savage"]) + let v = native_list_append(v, ["drovy", "adj", "drovy", "", "", "", "having sediment stirred"]) + let v = native_list_append(v, ["forein", "adj", "forein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werre", "adj", "werre", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["royall", "adj", "royall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roiall", "adj", "roiall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sary", "adj", "sary", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eisy", "adj", "eisy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hery", "adj", "hery", "", "", "", "hairy furry covered"]) + let v = native_list_append(v, ["disobeisant", "adj", "disobeisant", "", "", "", "disobedient"]) + let v = native_list_append(v, ["wele", "adj", "wele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holsom", "adj", "holsom", "", "", "", "Healthful salubrious providing"]) + let v = native_list_append(v, ["goosish", "adj", "goosish", "", "", "", "foolish"]) + let v = native_list_append(v, ["perfit", "adj", "perfit", "", "", "", "perfect"]) + let v = native_list_append(v, ["winsing", "adj", "winsing", "", "", "", "winsome"]) + let v = native_list_append(v, ["blosmy", "adj", "blosmy", "", "", "", "Covered with or"]) + let v = native_list_append(v, ["goodlich", "adj", "goodlich", "", "", "", "goodly gracious kind"]) + let v = native_list_append(v, ["whilwende", "adj", "whilwende", "", "", "", "temporary transitory not"]) + let v = native_list_append(v, ["mightand", "adj", "mightand", "", "", "", "Being mighty or"]) + let v = native_list_append(v, ["toght", "adj", "toght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orned", "adj", "orned", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fawe", "adj", "fawe", "", "", "", "fain glad delighted"]) + let v = native_list_append(v, ["rody", "adj", "rody", "", "", "", "ruddy"]) + let v = native_list_append(v, ["felefold", "adj", "felefold", "", "", "", "Manifold multiple various"]) + let v = native_list_append(v, ["brasen", "adj", "brasen", "", "", "", "Formed from bronze"]) + let v = native_list_append(v, ["auntrous", "adj", "auntrous", "", "", "", "adventurous"]) + let v = native_list_append(v, ["sorweful", "adj", "sorweful", "", "", "", "Sorrowful sad distressed"]) + let v = native_list_append(v, ["ruggy", "adj", "ruggy", "", "", "", "rugged rough"]) + let v = native_list_append(v, ["detteles", "adj", "detteles", "", "", "", "Free from debt."]) + let v = native_list_append(v, ["mervaille", "adj", "mervaille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["godelich", "adj", "godelich", "", "", "", "goodly"]) + let v = native_list_append(v, ["toyer", "adj", "toyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gameful", "adj", "gameful", "", "", "", "mirthful merry"]) + let v = native_list_append(v, ["perillous", "adj", "perillous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mody", "adj", "modyere", "", "", "", "Boastful conceited arrogant"]) + let v = native_list_append(v, ["shildy", "adj", "shildy", "", "", "", "Guilty at fault"]) + let v = native_list_append(v, ["flotery", "adj", "flotery", "", "", "", "wavy flowing"]) + let v = native_list_append(v, ["welle", "adj", "welle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["undepartable", "adj", "undepartable", "", "", "", "inseparable"]) + let v = native_list_append(v, ["inobedient", "adj", "inobedient", "", "", "", "disobedient"]) + let v = native_list_append(v, ["inventif", "adj", "inventif", "", "", "", "inventive creative"]) + let v = native_list_append(v, ["thornen", "adj", "thornen", "", "", "", "Composed of thorns"]) + let v = native_list_append(v, ["dishevele", "adj", "dishevele", "", "", "", "dishevelled"]) + let v = native_list_append(v, ["wrecche", "adj", "wrecche", "", "", "", "wretched"]) + let v = native_list_append(v, ["adrad", "adj", "adrad", "", "", "", "Full of dread"]) + let v = native_list_append(v, ["unaquit", "adj", "unaquit", "", "", "", "unrequited"]) + let v = native_list_append(v, ["sloggy", "adj", "sloggy", "", "", "", "sluggish"]) + let v = native_list_append(v, ["ferthe", "adj", "ferthe", "", "", "", "fourth"]) + let v = native_list_append(v, ["payen", "adj", "payen", "", "", "", "pagan"]) + let v = native_list_append(v, ["unsad", "adj", "unsad", "", "", "", "unsteady fickle"]) + let v = native_list_append(v, ["barbre", "adj", "barbre", "", "", "", "barbarian"]) + let v = native_list_append(v, ["fremed", "adj", "fremed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zik", "adj", "zik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["streit", "adj", "streit", "", "", "", "strait"]) + let v = native_list_append(v, ["hersum", "adj", "hersum", "", "", "", "obedient"]) + let v = native_list_append(v, ["resemblable", "adj", "resemblable", "", "", "", "comparable alike"]) + let v = native_list_append(v, ["untrowable", "adj", "untrowable", "", "", "", "Incredible unbelievable."]) + let v = native_list_append(v, ["attern", "adj", "attern", "", "", "", "Containing poison poisonous"]) + let v = native_list_append(v, ["adle", "adj", "adle", "", "", "", "inflection of adel"]) + let v = native_list_append(v, ["sleighty", "adj", "sleighty", "", "", "", "sly sneaky clever"]) + let v = native_list_append(v, ["infortuned", "adj", "infortuned", "", "", "", "unfortunate"]) + let v = native_list_append(v, ["plentevous", "adj", "plentevous", "", "", "", "plentiful abundant"]) + let v = native_list_append(v, ["firren", "adj", "firren", "", "", "", "Made of fir."]) + let v = native_list_append(v, ["hamely", "adj", "hamely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blewe", "adj", "blewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["welfaring", "adj", "welfaring", "", "", "", "Faring well prosperous"]) + let v = native_list_append(v, ["latered", "adj", "latered", "", "", "", "Inclined to delay"]) + let v = native_list_append(v, ["glesne", "adj", "glesne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remuable", "adj", "remuable", "", "", "", "that may be"]) + let v = native_list_append(v, ["outher", "adj", "outher", "", "", "", "other"]) + let v = native_list_append(v, ["textuel", "adj", "textuel", "", "", "", "textual"]) + let v = native_list_append(v, ["smeart", "adj", "smeart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dreye", "adj", "dreye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stronge", "adj", "stronge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strongeste", "adj", "strongeste", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["thridde", "adj", "thridde", "", "", "", "third"]) + let v = native_list_append(v, ["profulgent", "adj", "profulgent", "", "", "", "Shining forth brilliant"]) + let v = native_list_append(v, ["perlous", "adj", "perlous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apaid", "adj", "apaid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ledish", "adj", "ledish", "", "", "", "Pertaining to the"]) + let v = native_list_append(v, ["stibborn", "adj", "stibborn", "", "", "", "stubborn"]) + let v = native_list_append(v, ["uncovenable", "adj", "uncovenable", "", "", "", "not covenable inconvenient"]) + let v = native_list_append(v, ["brotel", "adj", "brotel", "", "", "", "Fragile brittle easily"]) + let v = native_list_append(v, ["eild", "adj", "eild", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maturative", "adj", "maturative", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lewede", "adj", "lewede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marciall", "adj", "marciall", "", "", "", "martial"]) + let v = native_list_append(v, ["bygete", "adj", "bygete", "", "", "", "begotten"]) + let v = native_list_append(v, ["stylle", "adj", "stylle", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["muche", "adj", "muche", "", "", "", "much"]) + let v = native_list_append(v, ["courteys", "adj", "courteys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foude", "adj", "foude", "", "", "", "found"]) + let v = native_list_append(v, ["roũde", "adj", "roũde", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["nywe", "adj", "nywe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fayr", "adj", "fayr", "", "", "", "beautiful handsome attractive"]) + let v = native_list_append(v, ["a-ferd", "adj", "a-ferd", "", "", "", "afraid"]) + let v = native_list_append(v, ["schatered", "adj", "schatered", "", "", "", "shattered"]) + let v = native_list_append(v, ["heuy", "adj", "heuy", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["Frensch", "adj", "Frensch", "", "", "", "French"]) + let v = native_list_append(v, ["grete", "adj", "gretter", "grettest", "", "", "great massive amazing"]) + let v = native_list_append(v, ["cõquered", "adj", "cõquered", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["daũted", "adj", "daũted", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["proude", "adj", "proude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poure", "adj", "poure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["al-oone", "adj", "al-oone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sley", "adj", "sley", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enoint", "adj", "enoint", "", "", "", "anointed"]) + let v = native_list_append(v, ["destinal", "adj", "destinal", "", "", "", "Determined by destiny"]) + let v = native_list_append(v, ["pured", "adj", "pured", "", "", "", "purified refined."]) + let v = native_list_append(v, ["fremful", "adj", "fremful", "", "", "", "useful profitable beneficial"]) + let v = native_list_append(v, ["hertely", "adj", "hertely", "", "", "", "hearty"]) + let v = native_list_append(v, ["reccheles", "adj", "reccheles", "", "", "", "reckless"]) + let v = native_list_append(v, ["tretable", "adj", "tretable", "", "", "", "tractable moderate"]) + let v = native_list_append(v, ["furial", "adj", "furial", "", "", "", "furious raging tormenting"]) + let v = native_list_append(v, ["undampned", "adj", "undampned", "", "", "", "uncondemned undamned"]) + let v = native_list_append(v, ["compaignable", "adj", "compaignable", "", "", "", "companionable sociable"]) + let v = native_list_append(v, ["miseasy", "adj", "miseasy", "", "", "", "Not easy"]) + let v = native_list_append(v, ["clergial", "adj", "clergial", "", "", "", "learned erudite clerical"]) + let v = native_list_append(v, ["southren", "adj", "southren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["travailous", "adj", "travailous", "", "", "", "hardworking industrious"]) + let v = native_list_append(v, ["sicer", "adj", "sicer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salvable", "adj", "salvable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anfald", "adj", "anfald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["testif", "adj", "testif", "", "", "", "testy headstrong obstinate"]) + let v = native_list_append(v, ["wraw", "adj", "wraw", "", "", "", "easily angered in"]) + let v = native_list_append(v, ["chaped", "adj", "chaped", "", "", "", "Furnished with a"]) + let v = native_list_append(v, ["costlewe", "adj", "costlewe", "", "", "", "costly"]) + let v = native_list_append(v, ["thik", "adj", "thik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unconninge", "adj", "unconninge", "", "", "", "not knowing ignorant"]) + let v = native_list_append(v, ["moost", "adj", "moost", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heuenly", "adj", "heuenly", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["grettis", "adj", "grettis", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["reuli", "adj", "reuli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hydes", "adj", "hydes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fore-said", "adj", "fore-said", "", "", "", "foresaid aforesaid"]) + let v = native_list_append(v, ["othir", "adj", "othir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unperegal", "adj", "unperegal", "", "", "", "unequal"]) + let v = native_list_append(v, ["gayne", "adj", "gayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viciate", "adj", "viciate", "", "", "", "Spoiled injured or"]) + let v = native_list_append(v, ["tharf", "adj", "tharf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quemely", "adj", "quemely", "", "", "", "acceptable pleasing"]) + let v = native_list_append(v, ["wik", "adj", "wik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyndreste", "adj", "hyndreste", "", "", "", "hindmost rearmost"]) + let v = native_list_append(v, ["purpre", "adj", "purpre", "", "", "", "purple"]) + let v = native_list_append(v, ["alife", "adj", "alife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thicke", "adj", "thicke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smoterlich", "adj", "smoterlich", "", "", "", "dirty foul"]) + let v = native_list_append(v, ["unbuxom", "adj", "unbuxom", "", "", "", "Uncontrollable ornery difficult"]) + let v = native_list_append(v, ["batailled", "adj", "batailled", "", "", "", "embattled"]) + let v = native_list_append(v, ["delit", "adj", "delit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liage", "adj", "liage", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drasty", "adj", "drasty", "", "", "", "filthy worthless"]) + let v = native_list_append(v, ["rethe", "adj", "rethe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aggreable", "adj", "aggreable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brouded", "adj", "brouded", "", "", "", "braided broidered"]) + let v = native_list_append(v, ["dischevele", "adj", "dischevele", "", "", "", "disheveled"]) + let v = native_list_append(v, ["sclender", "adj", "sclender", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hautein", "adj", "hautein", "", "", "", "haughty proud"]) + let v = native_list_append(v, ["courb", "adj", "courb", "", "", "", "curved rounded"]) + let v = native_list_append(v, ["wough", "adj", "wough", "", "", "", "wrong unjust bad"]) + let v = native_list_append(v, ["seak", "adj", "seak", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bowne", "adj", "bowne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forfered", "adj", "forfered", "", "", "", "Excessively alarmed in"]) + let v = native_list_append(v, ["envyned", "adj", "envyned", "", "", "", "stored or furnished"]) + let v = native_list_append(v, ["deignous", "adj", "deignous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stythe", "adj", "stythe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceke", "adj", "ceke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vey", "adj", "vey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gerful", "adj", "gerful", "", "", "", "changeable capricious"]) + let v = native_list_append(v, ["bretful", "adj", "bretful", "", "", "", "brimful totally filled"]) + let v = native_list_append(v, ["unsely", "adj", "unsely", "", "", "", "Not blessed or"]) + let v = native_list_append(v, ["despitous", "adj", "despitous", "", "", "", "contemptuous haughty"]) + let v = native_list_append(v, ["gery", "adj", "gery", "", "", "", "Subject to frequent"]) + let v = native_list_append(v, ["disordeined", "adj", "disordeined", "", "", "", "inordinate irregular vicious"]) + let v = native_list_append(v, ["perlid", "adj", "perlid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secund", "adj", "secund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sote", "adj", "sote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayry", "adj", "ayry", "", "", "", "airy"]) + let v = native_list_append(v, ["wombed", "adj", "wombed", "", "", "", "Possessing a stomach."]) + let v = native_list_append(v, ["poynant", "adj", "poynant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slombry", "adj", "slombry", "", "", "", "sleepy"]) + let v = native_list_append(v, ["revelous", "adj", "revelous", "", "", "", "Fond of festivity"]) + let v = native_list_append(v, ["opposit", "adj", "opposit", "", "", "", "contrary or opposed"]) + let v = native_list_append(v, ["soth", "adj", "soth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thunne", "adj", "thunne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weli", "adj", "weli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neue", "adj", "neue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faie", "adj", "faie", "", "", "", "Magical enchanted or"]) + let v = native_list_append(v, ["serviable", "adj", "serviable", "", "", "", "Obedient happy to"]) + let v = native_list_append(v, ["wery", "adj", "wery", "", "", "", "weary"]) + let v = native_list_append(v, ["wathe", "adj", "wathe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["derne", "adj", "derne", "", "", "", "Hidden secret."]) + let v = native_list_append(v, ["tristy", "adj", "tristy", "", "", "", "sad saddened"]) + let v = native_list_append(v, ["pomely", "adj", "pomely", "", "", "", "dappled"]) + let v = native_list_append(v, ["warr", "adj", "warr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stonen", "adj", "stonen", "", "", "", "Composed or built"]) + let v = native_list_append(v, ["nyes", "adj", "nyes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lufsum", "adj", "lufsum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sarre", "adj", "sarre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["contubernial", "adj", "contubernial", "", "", "", "contubernal"]) + let v = native_list_append(v, ["organik", "adj", "organik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murie", "adj", "murie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spumous", "adj", "spumous", "", "", "", "spumous foamy"]) + let v = native_list_append(v, ["sory", "adj", "sorier", "soriest", "", "", "sad sorrowful"]) + let v = native_list_append(v, ["scalled", "adj", "scalled", "", "", "", "scabby scurfy"]) + let v = native_list_append(v, ["surquedous", "adj", "surquedous", "", "", "", "surquedous"]) + let v = native_list_append(v, ["selly", "adj", "selly", "", "", "", "weird unusual odd"]) + let v = native_list_append(v, ["teind", "adj", "teind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ely", "adj", "ely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lawly", "adj", "lawly", "", "", "", "Proscribed by pertaining"]) + let v = native_list_append(v, ["ymaginatif", "adj", "ymaginatif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferne", "adj", "ferne", "", "", "", "distant far-off"]) + let v = native_list_append(v, ["peregal", "adj", "peregal", "", "", "", "fully equal"]) + let v = native_list_append(v, ["thynne", "adj", "thynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["holli", "adj", "holli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["likerous", "adj", "likerous", "", "", "", "lickerish"]) + let v = native_list_append(v, ["dowset", "adj", "dowset", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["almandin", "adj", "almandin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gratious", "adj", "gratious", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plurel", "adj", "plurel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wollene", "adj", "wollene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roote", "adj", "roote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swoote", "adj", "swoote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sondry", "adj", "sondry", "", "", "", "sundry various"]) + let v = native_list_append(v, ["goldin", "adj", "goldin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kowthe", "adj", "kowthe", "", "", "", "known"]) + let v = native_list_append(v, ["herye", "adj", "herye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cortais", "adj", "cortais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanne", "adj", "wanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haly", "adj", "haly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curtais", "adj", "curtais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roynous", "adj", "roynous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betre", "adj", "betre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["midde", "adj", "midde", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["domm", "adj", "domm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gidi", "adj", "gidi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wlank", "adj", "wlank", "", "", "", "noble highborn"]) + let v = native_list_append(v, ["semple", "adj", "semple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["westerne", "adj", "westerne", "", "", "", "western of the"]) + let v = native_list_append(v, ["servicable", "adj", "servicable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engendred", "adj", "engendred", "", "", "", "engendered"]) + let v = native_list_append(v, ["arleas", "adj", "arleas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seker", "adj", "seker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bewe", "adj", "bewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dusi", "adj", "dusi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["empirial", "adj", "empirial", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dewe", "adj", "dewe", "", "", "", "Fitting correct suitable"]) + let v = native_list_append(v, ["lytyll", "adj", "lytyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["basterd", "adj", "basterd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["siec", "adj", "siec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stanene", "adj", "stanene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hase", "adj", "hase", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meyn", "adj", "meyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deyne", "adj", "deyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["depe", "adj", "depper", "deppest", "", "", "deep extending or"]) + let v = native_list_append(v, ["heyl", "adj", "heyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goldene", "adj", "goldene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["innerliche", "adj", "innerliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thakked", "adj", "thakked", "", "", "", "Covered thatched"]) + let v = native_list_append(v, ["hallt", "adj", "hallt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sikere", "adj", "sikere", "", "", "", "inflection of siker"]) + let v = native_list_append(v, ["firi", "adj", "firi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hungri", "adj", "hungri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shorte", "adj", "shorte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["younge", "adj", "younge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duhti", "adj", "duhti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosene", "adj", "rosene", "", "", "", "inflection of rosen"]) + let v = native_list_append(v, ["swarter", "adj", "swarter", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["dosk", "adj", "dosk", "", "", "", "Dusky not brightly"]) + let v = native_list_append(v, ["fonned", "adj", "fonned", "", "", "", "stupid feeble-minded confused"]) + let v = native_list_append(v, ["quik", "adj", "quik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quemeful", "adj", "quemeful", "", "", "", "pleasing"]) + let v = native_list_append(v, ["soote", "adj", "soote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quicke", "adj", "quicke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rounde", "adj", "rounde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forcouth", "adj", "forcouth", "", "", "", "despised scorned infamous"]) + let v = native_list_append(v, ["christian", "adj", "christian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heve", "adj", "heve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fenni", "adj", "fenni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["michel", "adj", "michel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unbowsome", "adj", "unbowsome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["almyghty", "adj", "almyghty", "", "", "", "almighty"]) + let v = native_list_append(v, ["deedly", "adj", "deedly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forene", "adj", "forene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sored", "adj", "sored", "", "", "", "sorrel"]) + let v = native_list_append(v, ["lyge", "adj", "lyge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["melancolique", "adj", "melancolique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colerique", "adj", "colerique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dreie", "adj", "dreie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honestere", "adj", "honestere", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["moste", "adj", "moste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hatefulle", "adj", "hatefulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nexter", "adj", "nexter", "", "", "", "Next."]) + let v = native_list_append(v, ["wordly", "adj", "wordly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyfte", "adj", "fyfte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mansed", "adj", "mansed", "", "", "", "accursed damned"]) + let v = native_list_append(v, ["hevenly", "adj", "hevenly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noysome", "adj", "noysome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suart", "adj", "suart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mwet", "adj", "mwet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aly", "adj", "aly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kynd", "adj", "kynd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mervel", "adj", "mervel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soleyn", "adj", "soleyn", "", "", "", "alone solitary of"]) + let v = native_list_append(v, ["busie", "adj", "busie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fery", "adj", "fery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["righte", "adj", "righte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundreth", "adj", "hundreth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fowle", "adj", "fowle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vifte", "adj", "vifte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["selde", "adj", "selde", "", "", "", "uncommon unusual infrequent"]) + let v = native_list_append(v, ["reke", "adj", "reke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coynte", "adj", "coynte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rayne", "adj", "rayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horsen", "adj", "horsen", "", "", "", "Of or pertaining"]) + let v = native_list_append(v, ["Englysshe", "adj", "Englysshe", "", "", "", "English"]) + let v = native_list_append(v, ["scharp", "adj", "scharp", "", "", "", "sharp"]) + let v = native_list_append(v, ["unredy", "adj", "unredy", "", "", "", "unready"]) + let v = native_list_append(v, ["newsome", "adj", "newsome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["idul", "adj", "idul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chever", "adj", "chever", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["colden", "adj", "colden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waik", "adj", "waik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delite", "adj", "delite", "", "", "", "Delightful causing delight"]) + let v = native_list_append(v, ["tydy", "adj", "tydy", "", "", "", "timely prompt"]) + let v = native_list_append(v, ["calvar", "adj", "calvar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eger", "adj", "eger", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lewed", "adj", "lewder", "lewedeste", "", "", "Unrelated to the"]) + let v = native_list_append(v, ["rown", "adj", "rown", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soor", "adj", "soor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["glæsen", "adj", "glæsen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["songly", "adj", "songly", "", "", "", "songly"]) + let v = native_list_append(v, ["egleche", "adj", "egleche", "", "", "", "fearless brave"]) + let v = native_list_append(v, ["mainful", "adj", "mainful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verrey", "adj", "verrey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swerte", "adj", "swerte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paen", "adj", "paen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frounceles", "adj", "frounceles", "", "", "", "Without fold wrinkle"]) + let v = native_list_append(v, ["linene", "adj", "linene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salowe", "adj", "salowe", "", "", "", "sallow"]) + let v = native_list_append(v, ["dayly", "adj", "dayly", "", "", "", "constant habitual"]) + let v = native_list_append(v, ["thester", "adj", "thester", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seik", "adj", "seik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aules", "adj", "aules", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferren", "adj", "ferren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["obnubilous", "adj", "obnubilous", "", "", "", "indistinct obscure"]) + let v = native_list_append(v, ["medde", "adj", "medde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["appayed", "adj", "appayed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tidi", "adj", "tidi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["femal", "adj", "femal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lateste", "adj", "lateste", "", "", "", "latest"]) + let v = native_list_append(v, ["torhte", "adj", "torhte", "", "", "", "Bright shining radiant."]) + let v = native_list_append(v, ["dett", "adj", "dett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dumbe", "adj", "dumbe", "", "", "", "inflection of dumb"]) + let v = native_list_append(v, ["horry", "adj", "horry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hory", "adj", "hory", "", "", "", "Dirty foul horry"]) + let v = native_list_append(v, ["criminall", "adj", "criminall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["traitourfull", "adj", "traitourfull", "", "", "", "traitorous treacherous"]) + let v = native_list_append(v, ["hounden", "adj", "hounden", "", "", "", "Of or relating"]) + let v = native_list_append(v, ["grindel", "adj", "grindel", "", "", "", "fierce"]) + let v = native_list_append(v, ["to-gloried", "adj", "to-gloried", "", "", "", "Overly fine or"]) + let v = native_list_append(v, ["þridde", "adj", "þridde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oten", "adj", "oten", "", "", "", "Made of oats"]) + let v = native_list_append(v, ["aschen", "adj", "aschen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["straung", "adj", "straung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bisi", "adj", "bisi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["animall", "adj", "animall", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wullen", "adj", "wullen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unweld", "adj", "unweld", "", "", "", "unwieldy unmanageable clumsy"]) + let v = native_list_append(v, ["sevende", "adj", "sevende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saf", "adj", "saf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoere", "adj", "hoere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mewe", "adj", "mewe", "", "", "", "Currently shedding its"]) + let v = native_list_append(v, ["soure", "adj", "soure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["masy", "adj", "masy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folehardy", "adj", "folehardy", "", "", "", "Marked by unthinking"]) + let v = native_list_append(v, ["badde", "adj", "badder", "baddest", "", "", "wicked evil vicious"]) + let v = native_list_append(v, ["sadd", "adj", "sadd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folye", "adj", "folye", "", "", "", "Idiotic stupid foolish"]) + let v = native_list_append(v, ["yung", "adj", "yung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reche", "adj", "reche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundfeald", "adj", "hundfeald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brassen", "adj", "brassen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abstractif", "adj", "abstractif", "", "", "", "Denoting a quality"]) + let v = native_list_append(v, ["drof", "adj", "drof", "", "", "", "Troubled disturbed afflicted"]) + let v = native_list_append(v, ["synful", "adj", "synful", "", "", "", "Sinful having sinned"]) + let v = native_list_append(v, ["sorhful", "adj", "sorhful", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæderlic", "adj", "fæderlic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angri", "adj", "angri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lifleas", "adj", "lifleas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nihtlic", "adj", "nihtlic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["busi", "adj", "busi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twifeald", "adj", "twifeald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yuel", "adj", "yuel", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["fnesy", "adj", "fnesy", "", "", "", "Having a tendency"]) + let v = native_list_append(v, ["neygh", "adj", "neigher", "neighest", "", "", "Physically near or"]) + let v = native_list_append(v, ["oonly", "adj", "oonly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["certeyn", "adj", "certeyn", "", "", "", "Specified prescribed fixed."]) + let v = native_list_append(v, ["emty", "adj", "emty", "", "", "", "empty vacant"]) + let v = native_list_append(v, ["sotil", "adj", "sotiler", "sotilest", "", "", "Using brainpower smart"]) + let v = native_list_append(v, ["thedisch", "adj", "thedisch", "", "", "", "native indigenous endemic"]) + let v = native_list_append(v, ["þedisch", "adj", "þedisch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slepeles", "adj", "slepeles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thred", "adj", "thred", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["northerne", "adj", "northerne", "", "", "", "northern of the"]) + let v = native_list_append(v, ["southerne", "adj", "southerne", "", "", "", "southern of the"]) + let v = native_list_append(v, ["esturne", "adj", "esturne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nyȝtly", "adj", "nyȝtly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bisne", "adj", "bisne", "", "", "", "purblind"]) + let v = native_list_append(v, ["leukwarm", "adj", "leukwarm", "", "", "", "lukewarm having medium"]) + let v = native_list_append(v, ["wlak", "adj", "wlak", "", "", "", "lukewarm tepid warm"]) + let v = native_list_append(v, ["dorry", "adj", "dorry", "", "", "", "Of a bright"]) + let v = native_list_append(v, ["grasgrene", "adj", "grasgrene", "", "", "", "Green like grass"]) + let v = native_list_append(v, ["asure", "adj", "asure", "", "", "", "azure blue"]) + let v = native_list_append(v, ["cremesyn", "adj", "cremesyn", "", "", "", "Made of crimson"]) + let v = native_list_append(v, ["tawne", "adj", "tawne", "", "", "", "tawny-coloured"]) + let v = native_list_append(v, ["purpel", "adj", "purpel", "", "", "", "purple-coloured"]) + let v = native_list_append(v, ["purpulle", "adj", "purpulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["purpul", "adj", "purpul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porpil", "adj", "porpil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porpille", "adj", "porpille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porpul", "adj", "porpul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gostly", "adj", "gostly", "", "", "", "Relating to or"]) + let v = native_list_append(v, ["gostli", "adj", "gostli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gostlich", "adj", "gostlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gostliche", "adj", "gostliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gosteli", "adj", "gosteli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gosteliche", "adj", "gosteliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gostili", "adj", "gostili", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goistli", "adj", "goistli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gosslich", "adj", "gosslich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gastli", "adj", "gastli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gastlike", "adj", "gastlike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goostly", "adj", "goostly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feendly", "adj", "feendly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feendlich", "adj", "feendlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fendly", "adj", "fendly", "", "", "", "Hostile"]) + let v = native_list_append(v, ["fendlich", "adj", "fendlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feondly", "adj", "feondly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feondlich", "adj", "feondlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feendely", "adj", "feendely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyendely", "adj", "fyendely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fondlich", "adj", "fondlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goostli", "adj", "goostli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norenissce", "adj", "Norenissce", "", "", "", "Related to or"]) + let v = native_list_append(v, ["Norenish", "adj", "Norenish", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norenisce", "adj", "Norenisce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Noreinisce", "adj", "Noreinisce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Noreinisse", "adj", "Noreinisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Nornisce", "adj", "Nornisce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norneis", "adj", "Norneis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norwenisse", "adj", "Norwenisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rewly", "adj", "rewly", "", "", "", "regular ordinary"]) + let v = native_list_append(v, ["reuful", "adj", "*reufuler", "*reufulest", "", "", "sorrowful distraught rueful"]) + let v = native_list_append(v, ["Noreine", "adj", "Noreine", "", "", "", "Related to or"]) + let v = native_list_append(v, ["prestly", "adj", "prestly", "", "", "", "priestly priestlike"]) + let v = native_list_append(v, ["Duchish", "adj", "Duchish", "", "", "", "German Dutch Teutonic"]) + let v = native_list_append(v, ["dokeling", "adj", "dokeling", "", "", "", "duckling"]) + let v = native_list_append(v, ["nyce", "adj", "nyce", "", "", "", "foolish simple ignorant"]) + let v = native_list_append(v, ["bihovely", "adj", "bihovely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byhovely", "adj", "byhovely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behoveliche", "adj", "behoveliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behoveli", "adj", "behoveli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bihoveli", "adj", "bihoveli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["be-hovely", "adj", "be-hovely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byhofely", "adj", "byhofely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beheflic", "adj", "beheflic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bihulik", "adj", "bihulik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frightly", "adj", "frightly", "", "", "", "fearful awed"]) + let v = native_list_append(v, ["frighti", "adj", "frighti", "", "", "", "awestruck awed"]) + let v = native_list_append(v, ["frightihed", "adj", "frightihed", "", "", "", "awe terror"]) + let v = native_list_append(v, ["wisliche", "adj", "wislier", "", "", "", "Under the direction"]) + let v = native_list_append(v, ["wiseli", "adj", "wiseli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wysyly", "adj", "wysyly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biheve", "adj", "biheve", "", "", "", "Necessary"]) + let v = native_list_append(v, ["behefe", "adj", "behefe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behef", "adj", "behef", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behieve", "adj", "behieve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["delitous", "adj", "delitous", "", "", "", "delightous delightful"]) + let v = native_list_append(v, ["disdeinous", "adj", "disdeinous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wommanysshe", "adj", "wommanysshe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wommanyssh", "adj", "wommanyssh", "", "", "", "Resembling or characteristic"]) + let v = native_list_append(v, ["wommanisshe", "adj", "wommanisshe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wommanysche", "adj", "wommanysche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wommanysch", "adj", "wommanysch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wommanische", "adj", "wommanische", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wommannysshe", "adj", "wommannysshe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["womannyssh", "adj", "womannyssh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["day", "pron", "day", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["on", "pron", "on", "", "", "", "one"]) + let v = native_list_append(v, ["y", "pron", "y", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["the", "pron", "the", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["de", "pron", "de", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ik", "pron", "ik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["te", "pron", "te", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in", "pron", "in", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hij", "pron", "hij", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["o", "pron", "o", "", "", "", "preconsonantal form of"]) + let v = native_list_append(v, ["i", "pron", "i", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["man", "pron", "man", "", "", "", "Typically singular indefinite"]) + let v = native_list_append(v, ["is", "pron", "is", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["os", "pron", "os", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thou", "pron", "thou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eo", "pron", "eo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inc", "pron", "inc", "", "", "", "Second-person dual accusative"]) + let v = native_list_append(v, ["it", "pron", "it", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thin", "pron", "thin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["here", "pron", "here", "", "", "", "Third-person plural possessive"]) + let v = native_list_append(v, ["yourself", "pron", "yourself", "", "", "", "Emphatic plural 2nd"]) + let v = native_list_append(v, ["yours", "pron", "yours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["your", "pron", "your", "", "", "", "Second-person plural possessive"]) + let v = native_list_append(v, ["you", "pron", "you", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thee", "pron", "thee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shew", "pron", "shew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["this", "pron", "this", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["to", "pron", "to", "", "", "", "the one of"]) + let v = native_list_append(v, ["his", "pron", "his", "", "", "", "Third-person singular masculine"]) + let v = native_list_append(v, ["her", "pron", "her", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["our", "pron", "our", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qua", "pron", "qua", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["was", "pron", "was", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["what", "pron", "what", "", "", "", "what"]) + let v = native_list_append(v, ["other", "pron", "other", "", "", "", "other"]) + let v = native_list_append(v, ["that", "pron", "that", "", "", "", "that relative &"]) + let v = native_list_append(v, ["men", "pron", "men", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mine", "pron", "mine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hers", "pron", "hers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ours", "pron", "ours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["both", "pron", "both", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tin", "pron", "tin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hi", "pron", "hi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ai", "pron", "ai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["so", "pron", "so", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["us", "pron", "us", "", "", "", "First-person plural accusative"]) + let v = native_list_append(v, ["we", "pron", "we", "", "", "", "First-person plural pronoun"]) + let v = native_list_append(v, ["he", "pron", "he", "", "", "", "Third-person singular masculine"]) + let v = native_list_append(v, ["she", "pron", "she", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["they", "pron", "they", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["me", "pron", "me", "", "", "", "me first-person singular"]) + let v = native_list_append(v, ["him", "pron", "him", "", "", "", "Third-person singular masculine"]) + let v = native_list_append(v, ["them", "pron", "them", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["who", "pron", "who", "", "", "", "who nominative"]) + let v = native_list_append(v, ["whose", "pron", "whose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whom", "pron", "whom", "", "", "", "to who whom"]) + let v = native_list_append(v, ["which", "pron", "which", "", "", "", "which"]) + let v = native_list_append(v, ["hay", "pron", "hay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["er", "pron", "er", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilk", "pron", "ilk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilkon", "pron", "ilkon", "", "", "", "Each one everyone"]) + let v = native_list_append(v, ["ilkoon", "pron", "ilkoon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feel", "pron", "feel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hid", "pron", "hid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hit", "pron", "hit", "", "", "", "Third-person singular neuter"]) + let v = native_list_append(v, ["shoe", "pron", "shoe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ye", "pron", "ye", "", "", "", "Second-person plural pronoun"]) + let v = native_list_append(v, ["thy", "pron", "thy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thine", "pron", "thine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myself", "pron", "myself", "", "", "", "myself"]) + let v = native_list_append(v, ["self", "pron", "self", "", "", "", "themself themselves a"]) + let v = native_list_append(v, ["thyself", "pron", "thyself", "", "", "", "yourself"]) + let v = native_list_append(v, ["show", "pron", "show", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hare", "pron", "hare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ir", "pron", "ir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["e", "pron", "e", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["j", "pron", "j", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["home", "pron", "home", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yon", "pron", "yon", "", "", "", "that one that"]) + let v = native_list_append(v, ["hem", "pron", "hem", "", "", "", "Third-person plural accusative"]) + let v = native_list_append(v, ["ich", "pron", "ich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hey", "pron", "hey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bath", "pron", "bath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ha", "pron", "ha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ham", "pron", "ham", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yu", "pron", "yu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["em", "pron", "em", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ge", "pron", "ge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["se", "pron", "se", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eu", "pron", "eu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ho", "pron", "ho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["am", "pron", "am", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["es", "pron", "es", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tu", "pron", "tu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wan", "pron", "wan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heir", "pron", "heir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yaw", "pron", "yaw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mane", "pron", "mane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yam", "pron", "yam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ink", "pron", "ink", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yogh", "pron", "yogh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wit", "pron", "wit", "", "", "", "First-person dual pronoun"]) + let v = native_list_append(v, ["hijs", "pron", "hijs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["som", "pron", "som", "", "", "", "some"]) + let v = native_list_append(v, ["hus", "pron", "hus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yin", "pron", "yin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["another", "pron", "another", "", "", "", "another"]) + let v = native_list_append(v, ["tone", "pron", "tone", "", "", "", "the one of"]) + let v = native_list_append(v, ["theme", "pron", "theme", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hoe", "pron", "hoe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["che", "pron", "che", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hic", "pron", "hic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dei", "pron", "dei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bathe", "pron", "bathe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yay", "pron", "yay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tei", "pron", "tei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ire", "pron", "ire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["either", "pron", "either", "", "", "", "Both of two"]) + let v = native_list_append(v, ["vue", "pron", "vue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ou", "pron", "ou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heme", "pron", "heme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ma", "pron", "ma", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yew", "pron", "yew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nowt", "pron", "nowt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yo", "pron", "yo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tam", "pron", "tam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noman", "pron", "noman", "", "", "", "Not any person"]) + let v = native_list_append(v, ["herne", "pron", "herne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ow", "pron", "ow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["these", "pron", "these", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þe", "pron", "þe", "", "", "", "Second-person singular pronoun"]) + let v = native_list_append(v, ["hire", "pron", "hire", "", "", "", "Third-person singular feminine"]) + let v = native_list_append(v, ["hir", "pron", "hir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oo", "pron", "oo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dey", "pron", "dey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ere", "pron", "ere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hue", "pron", "hue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tine", "pron", "tine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woe", "pron", "woe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hie", "pron", "hie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tai", "pron", "tai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tay", "pron", "tay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owe", "pron", "owe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mon", "pron", "mon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hou", "pron", "hou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["woo", "pron", "woo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hum", "pron", "hum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiss", "pron", "hiss", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["min", "pron", "min", "", "", "", "First-person singular possessive"]) + let v = native_list_append(v, ["ought", "pron", "ought", "", "", "", "anything everything"]) + let v = native_list_append(v, ["wad", "pron", "wad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wo", "pron", "wo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wham", "pron", "wham", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salve", "pron", "salve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naught", "pron", "naught", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mani", "pron", "mani", "", "", "", "many"]) + let v = native_list_append(v, ["hose", "pron", "hose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fale", "pron", "fale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["I", "pron", "I", "", "", "", "I first-person singular"]) + let v = native_list_append(v, ["xe", "pron", "xe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thai", "pron", "thai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hei", "pron", "hei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geit", "pron", "geit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hu", "pron", "hu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hui", "pron", "hui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hon", "pron", "hon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mein", "pron", "mein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hæ", "pron", "hæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeir", "pron", "þeir", "", "", "", "Third-person plural possessive"]) + let v = native_list_append(v, ["hin", "pron", "hin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hitt", "pron", "hitt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ic", "pron", "ic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyse", "pron", "hyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eche", "pron", "eche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heis", "pron", "heis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hos", "pron", "hos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quam", "pron", "quam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["im", "pron", "im", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minne", "pron", "minne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["animan", "pron", "animan", "", "", "", "Any person anyone"]) + let v = native_list_append(v, ["ine", "pron", "ine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ve", "pron", "ve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoes", "pron", "hoes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hese", "pron", "hese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þy", "pron", "þy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þes", "pron", "þes", "", "", "", "these"]) + let v = native_list_append(v, ["þeos", "pron", "þeos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þis", "pron", "þis", "", "", "", "this"]) + let v = native_list_append(v, ["unc", "pron", "unc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þu", "pron", "þu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eow", "pron", "eow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elch", "pron", "elch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ike", "pron", "ike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nought", "pron", "nought", "", "", "", "nothing none"]) + let v = native_list_append(v, ["uur", "pron", "uur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huren", "pron", "huren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["euch", "pron", "euch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oon", "pron", "oon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hor", "pron", "hor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hur", "pron", "hur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hame", "pron", "hame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["urs", "pron", "urs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whoo", "pron", "whoo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yow", "pron", "yow", "", "", "", "Second-person plural object"]) + let v = native_list_append(v, ["quo", "pron", "quo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heu", "pron", "heu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thu", "pron", "thu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hitte", "pron", "hitte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gu", "pron", "gu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hine", "pron", "hine", "", "", "", "Third-person singular masculine"]) + let v = native_list_append(v, ["witt", "pron", "witt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hern", "pron", "hern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quem", "pron", "quem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quas", "pron", "quas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hig", "pron", "hig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwa", "pron", "hwa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naht", "pron", "naht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wha", "pron", "wha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naut", "pron", "naut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ih", "pron", "ih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoo", "pron", "hoo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yee", "pron", "yee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þin", "pron", "þin", "", "", "", "Second-person singular possessive"]) + let v = native_list_append(v, ["huy", "pron", "huy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sche", "pron", "sche", "", "", "", "Third-person singular feminine"]) + let v = native_list_append(v, ["hoys", "pron", "hoys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myne", "pron", "myne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ym", "pron", "ym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ys", "pron", "ys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shae", "pron", "shae", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fela", "pron", "fela", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yem", "pron", "yem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hy", "pron", "hy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hares", "pron", "hares", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vele", "pron", "vele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hee", "pron", "hee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whan", "pron", "whan", "", "", "", "whom"]) + let v = native_list_append(v, ["yw", "pron", "yw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gie", "pron", "gie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["itt", "pron", "itt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huo", "pron", "huo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tou", "pron", "tou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cho", "pron", "cho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hytte", "pron", "hytte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sho", "pron", "sho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shou", "pron", "shou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quan", "pron", "quan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oure", "pron", "oure", "", "", "", "First-person plural possessive"]) + let v = native_list_append(v, ["ics", "pron", "ics", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shuo", "pron", "shuo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hom", "pron", "hom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hous", "pron", "hous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyne", "pron", "hyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ourn", "pron", "ourn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thaim", "pron", "thaim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hires", "pron", "hires", "", "", "", "Third-person singular feminine"]) + let v = native_list_append(v, ["þeim", "pron", "þeim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ick", "pron", "ick", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hys", "pron", "hys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heo", "pron", "heo", "", "", "", "Third-person singular feminine"]) + let v = native_list_append(v, ["hio", "pron", "hio", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ous", "pron", "ous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["monne", "pron", "monne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þat", "pron", "þat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atte", "pron", "atte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hirs", "pron", "hirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyn", "pron", "hyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hisse", "pron", "hisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noht", "pron", "noht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thame", "pron", "thame", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hinc", "pron", "hinc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hime", "pron", "hime", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whois", "pron", "whois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naman", "pron", "naman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyson", "pron", "hyson", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manne", "pron", "manne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myn", "pron", "myn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isse", "pron", "isse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geo", "pron", "geo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heren", "pron", "heren", "", "", "", "Third-person plural possessive"]) + let v = native_list_append(v, ["qhat", "pron", "qhat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hure", "pron", "hure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herre", "pron", "herre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inker", "pron", "inker", "", "", "", "First-person dual genitive"]) + let v = native_list_append(v, ["hyt", "pron", "hyt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hores", "pron", "hores", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yt", "pron", "yt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cheo", "pron", "cheo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hes", "pron", "hes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fele", "pron", "fele", "", "", "", "Many much an"]) + let v = native_list_append(v, ["wos", "pron", "wos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yowe", "pron", "yowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heys", "pron", "heys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huas", "pron", "huas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thie", "pron", "thie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hym", "pron", "hym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ech", "pron", "ech", "", "", "", "each one"]) + let v = native_list_append(v, ["nomon", "pron", "nomon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyt", "pron", "wyt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ures", "pron", "ures", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heore", "pron", "heore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyr", "pron", "hyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onne", "pron", "onne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scheo", "pron", "scheo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ytt", "pron", "ytt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herres", "pron", "herres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weht", "pron", "weht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hemme", "pron", "hemme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whome", "pron", "whome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ig", "pron", "ig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hures", "pron", "hures", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fewe", "pron", "fewe", "", "", "", "A few a"]) + let v = native_list_append(v, ["thay", "pron", "thay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noght", "pron", "noght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þey", "pron", "þey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thi", "pron", "thi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["boþe", "pron", "boþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝou", "pron", "ȝou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þou", "pron", "þou", "", "", "", "thou second-person singular"]) + let v = native_list_append(v, ["heres", "pron", "heres", "", "", "", "Third-person plural possessive"]) + let v = native_list_append(v, ["thyne", "pron", "thyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hye", "pron", "hye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taim", "pron", "taim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shee", "pron", "shee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwon", "pron", "hwon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyres", "pron", "hyres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyrs", "pron", "hyrs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwat", "pron", "hwat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þai", "pron", "þai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yei", "pron", "yei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwe", "pron", "hwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unk", "pron", "unk", "", "", "", "First-person dual accusative"]) + let v = native_list_append(v, ["þeo", "pron", "þeo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gow", "pron", "gow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝe", "pron", "ȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whos", "pron", "whos", "", "", "", "whose genitive"]) + let v = native_list_append(v, ["ghe", "pron", "ghe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whoes", "pron", "whoes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhe", "pron", "yhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thas", "pron", "thas", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["geu", "pron", "geu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wam", "pron", "wam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theim", "pron", "theim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ælc", "pron", "ælc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þaim", "pron", "þaim", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þo", "pron", "þo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þei", "pron", "þei", "", "", "", "Third-person plural pronoun"]) + let v = native_list_append(v, ["usself", "pron", "usself", "", "", "", "ourselves"]) + let v = native_list_append(v, ["giu", "pron", "giu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myselven", "pron", "myselven", "", "", "", "myself"]) + let v = native_list_append(v, ["thes", "pron", "thes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hosse", "pron", "hosse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thys", "pron", "thys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whame", "pron", "whame", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thei", "pron", "thei", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["himsilf", "pron", "himsilf", "", "", "", "himself"]) + let v = native_list_append(v, ["bothe", "pron", "bothe", "", "", "", "both each or"]) + let v = native_list_append(v, ["hwo", "pron", "hwo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owres", "pron", "owres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þys", "pron", "þys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feola", "pron", "feola", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wanne", "pron", "wanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jt", "pron", "jt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sce", "pron", "sce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meyne", "pron", "meyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iye", "pron", "iye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whoos", "pron", "whoos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyss", "pron", "hyss", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sse", "pron", "sse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mochel what", "pron", "mochel what", "", "", "", "many or varied"]) + let v = native_list_append(v, ["hysene", "pron", "hysene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theos", "pron", "theos", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["heon", "pron", "heon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwam", "pron", "hwam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwæs", "pron", "hwæs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["watte", "pron", "watte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choy", "pron", "choy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thare", "pron", "thare", "", "", "", "there in that"]) + let v = native_list_append(v, ["towe", "pron", "towe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huron", "pron", "huron", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thogh", "pron", "thogh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taym", "pron", "taym", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yoe", "pron", "yoe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iche", "pron", "iche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noust", "pron", "noust", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nothyng", "pron", "nothyng", "", "", "", "Not any thing"]) + let v = native_list_append(v, ["tham", "pron", "tham", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["youren", "pron", "youren", "", "", "", "Second-person plural possessive"]) + let v = native_list_append(v, ["ȝourn", "pron", "ȝourn", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ȝouren", "pron", "ȝouren", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hyre", "pron", "hyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hw", "pron", "hw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwem", "pron", "hwem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hise", "pron", "hise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theis", "pron", "theis", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["schoe", "pron", "schoe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["itte", "pron", "itte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schee", "pron", "schee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝee", "pron", "ȝee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whe", "pron", "whe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huam", "pron", "huam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þinne", "pron", "þinne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyn", "pron", "thyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mæn", "pron", "mæn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["booþ", "pron", "booþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boðe", "pron", "boðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baþe", "pron", "baþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baðe", "pron", "baðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þoue", "pron", "þoue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thoue", "pron", "thoue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þowe", "pron", "þowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thowe", "pron", "thowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þouȝ", "pron", "þouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thouȝ", "pron", "thouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þue", "pron", "þue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðhu", "pron", "ðhu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeu", "pron", "þeu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeou", "pron", "þeou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thugh", "pron", "thugh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ðe", "pron", "ðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þi", "pron", "þi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þhe", "pron", "þhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þine", "pron", "þine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þyn", "pron", "þyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þyne", "pron", "þyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyen", "pron", "thyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theyn", "pron", "theyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þee", "pron", "þee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["icche", "pron", "icche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jch", "pron", "jch", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["hich", "pron", "hich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ihc", "pron", "ihc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ichc", "pron", "ichc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ichs", "pron", "ichs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mynne", "pron", "mynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["himm", "pron", "himm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyme", "pron", "hyme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hysse", "pron", "hysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hesse", "pron", "hesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sheo", "pron", "sheo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝho", "pron", "ȝho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sso", "pron", "sso", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sȝheo", "pron", "sȝheo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sge", "pron", "sge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scæ", "pron", "scæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schow", "pron", "schow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schowe", "pron", "schowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shouȝ", "pron", "shouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shue", "pron", "shue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schu", "pron", "schu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schue", "pron", "schue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scha", "pron", "scha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sco", "pron", "sco", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scho", "pron", "scho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shoy", "pron", "shoy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["schoy", "pron", "schoy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["xhe", "pron", "xhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heyre", "pron", "heyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurre", "pron", "hurre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huere", "pron", "huere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hirres", "pron", "hirres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyrres", "pron", "hyrres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hereys", "pron", "hereys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heores", "pron", "heores", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wue", "pron", "wue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weo", "pron", "weo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wæ", "pron", "wæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huue", "pron", "huue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usse", "pron", "usse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oures", "pron", "oures", "", "", "", "First-person plural possessive"]) + let v = native_list_append(v, ["ouris", "pron", "ouris", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owrs", "pron", "owrs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ourez", "pron", "ourez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owrys", "pron", "owrys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unker", "pron", "unker", "", "", "", "First-person dual genitive"]) + let v = native_list_append(v, ["unkere", "pron", "unkere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unnkerr", "pron", "unnkerr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theie", "pron", "theie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theiȝ", "pron", "theiȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theih", "pron", "theih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þæȝe", "pron", "þæȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeȝ", "pron", "yeȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝhe", "pron", "ȝhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yie", "pron", "yie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝie", "pron", "ȝie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeo", "pron", "ȝeo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["youe", "pron", "youe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhu", "pron", "yhu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhow", "pron", "yhow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝow", "pron", "ȝow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝouȝ", "pron", "ȝouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝowȝ", "pron", "ȝowȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝo", "pron", "ȝo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝowe", "pron", "ȝowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝu", "pron", "ȝu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝw", "pron", "ȝw", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝue", "pron", "ȝue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝiow", "pron", "ȝiow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeu", "pron", "ȝeu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝew", "pron", "ȝew", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hour", "det", "hour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["on", "det", "on", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["the", "det", "the", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["o", "det", "o", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["few", "det", "few", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["is", "det", "is", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["are", "det", "are", "", "", "", "genitive/dative feminine of"]) + let v = native_list_append(v, ["mi", "det", "mi", "", "", "", "First-person singular genitive"]) + let v = native_list_append(v, ["yes", "det", "yes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["it", "det", "it", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thin", "det", "thin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["here", "det", "here", "", "", "", "Third-person plural genitive"]) + let v = native_list_append(v, ["your", "det", "your", "", "", "", "Second-person plural genitive"]) + let v = native_list_append(v, ["noon", "det", "noon", "", "", "", "no not any"]) + let v = native_list_append(v, ["or", "det", "or", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["an", "det", "an", "", "", "", "a an indefinite"]) + let v = native_list_append(v, ["this", "det", "this", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["my", "det", "my", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["his", "det", "his", "", "", "", "Third-person singular masculine"]) + let v = native_list_append(v, ["her", "det", "her", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["our", "det", "our", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["their", "det", "their", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["all", "det", "all", "", "", "", "all every"]) + let v = native_list_append(v, ["any", "det", "any", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["that", "det", "that", "", "", "", "that what is"]) + let v = native_list_append(v, ["mine", "det", "mine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["both", "det", "both", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tin", "det", "tin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["al", "det", "al", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ai", "det", "ai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["they", "det", "they", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["me", "det", "me", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["them", "det", "them", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["there", "det", "there", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["er", "det", "er", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilk", "det", "ilk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hit", "det", "hit", "", "", "", "Third-person singular neuter"]) + let v = native_list_append(v, ["ye", "det", "ye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thy", "det", "thy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thine", "det", "thine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hare", "det", "hare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ir", "det", "ir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ore", "det", "ore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yon", "det", "yon", "", "", "", "that over there"]) + let v = native_list_append(v, ["ich", "det", "ich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bath", "det", "bath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ar", "det", "ar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ti", "det", "ti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["universal", "det", "universal", "", "", "", "The whole all"]) + let v = native_list_append(v, ["tar", "det", "tar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["es", "det", "es", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ei", "det", "ei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dis", "det", "dis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heir", "det", "heir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["more", "det", "more", "", "", "", "more"]) + let v = native_list_append(v, ["fewest", "det", "fewest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["yi", "det", "yi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ty", "det", "ty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hijs", "det", "hijs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hus", "det", "hus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yin", "det", "yin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ane", "det", "ane", "", "", "", "accusative/genitive/dative of an"]) + let v = native_list_append(v, ["ony", "det", "ony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ani", "det", "ani", "", "", "", "any"]) + let v = native_list_append(v, ["hero", "det", "hero", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bathe", "det", "bathe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manere", "det", "manere", "", "", "", "some specifically certain"]) + let v = native_list_append(v, ["ire", "det", "ire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["either", "det", "either", "", "", "", "Both of two."]) + let v = native_list_append(v, ["hora", "det", "hora", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feu", "det", "feu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["these", "det", "these", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["such", "det", "such", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þe", "det", "þe", "", "", "", "the"]) + let v = native_list_append(v, ["hire", "det", "hire", "", "", "", "Third-person singular feminine"]) + let v = native_list_append(v, ["hir", "det", "hir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ur", "det", "ur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ere", "det", "ere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tine", "det", "tine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fel", "det", "fel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tho", "det", "tho", "", "", "", "the"]) + let v = native_list_append(v, ["min", "det", "min", "", "", "", "First-person singular genitive"]) + let v = native_list_append(v, ["fale", "det", "fale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mie", "det", "mie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ych", "det", "ych", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ura", "det", "ura", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["har", "det", "har", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enne", "det", "enne", "", "", "", "accusative masculine of"]) + let v = native_list_append(v, ["mein", "det", "mein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whatsoever", "det", "whatsoever", "", "", "", "whatsoever of whatever"]) + let v = native_list_append(v, ["þeir", "det", "þeir", "", "", "", "Third-person plural genitive"]) + let v = native_list_append(v, ["hitt", "det", "hitt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þar", "det", "þar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyse", "det", "hyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eche", "det", "eche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heis", "det", "heis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minne", "det", "minne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hese", "det", "hese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þy", "det", "þy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þes", "det", "þes", "", "", "", "these"]) + let v = native_list_append(v, ["þeos", "det", "þeos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þis", "det", "þis", "", "", "", "this"]) + let v = native_list_append(v, ["elch", "det", "elch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yar", "det", "yar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hore", "det", "hore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["euch", "det", "euch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hor", "det", "hor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hur", "det", "hur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hitte", "det", "hitte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hura", "det", "hura", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anes", "det", "anes", "", "", "", "strong genitive singular"]) + let v = native_list_append(v, ["eower", "det", "eower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ure", "det", "ure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dese", "det", "dese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þin", "det", "þin", "", "", "", "Second-person singular genitive"]) + let v = native_list_append(v, ["heor", "det", "heor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ower", "det", "ower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myne", "det", "myne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ys", "det", "ys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fela", "det", "fela", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vele", "det", "vele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["itt", "det", "itt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hytte", "det", "hytte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oure", "det", "oure", "", "", "", "First-person plural genitive"]) + let v = native_list_append(v, ["ther", "det", "ther", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owre", "det", "owre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hys", "det", "hys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þat", "det", "þat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thar", "det", "thar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heare", "det", "heare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houre", "det", "houre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vewe", "det", "vewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gur", "det", "gur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hisse", "det", "hisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thair", "det", "thair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uch", "det", "uch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["myn", "det", "myn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isse", "det", "isse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hure", "det", "hure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herre", "det", "herre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inker", "det", "inker", "", "", "", "Second-person dual possessive"]) + let v = native_list_append(v, ["hyt", "det", "hyt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yt", "det", "yt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theire", "det", "theire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theyr", "det", "theyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hes", "det", "hes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fele", "det", "fele", "", "", "", "Many much an"]) + let v = native_list_append(v, ["heys", "det", "heys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ẏ", "det", "ẏ", "", "", "", "ye þe"]) + let v = native_list_append(v, ["ech", "det", "ech", "", "", "", "every all of"]) + let v = native_list_append(v, ["heore", "det", "heore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dyse", "det", "dyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yure", "det", "yure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyr", "det", "hyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eny", "det", "eny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vure", "det", "vure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fewe", "det", "fewe", "", "", "", "few little not"]) + let v = native_list_append(v, ["þey", "det", "þey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thi", "det", "thi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["moore", "det", "moore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boþe", "det", "boþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝour", "det", "ȝour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iure", "det", "iure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eure", "det", "eure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyne", "det", "thyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thilke", "det", "thilke", "", "", "", "that those"]) + let v = native_list_append(v, ["urre", "det", "urre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yis", "det", "yis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["urr", "det", "urr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whos", "det", "whos", "", "", "", "whose of who"]) + let v = native_list_append(v, ["ælc", "det", "ælc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þei", "det", "þei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thes", "det", "thes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["thys", "det", "thys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thei", "det", "thei", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bothe", "det", "bothe", "", "", "", "both both of"]) + let v = native_list_append(v, ["feue", "det", "feue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heora", "det", "heora", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eni", "det", "eni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giur", "det", "giur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þys", "det", "þys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feola", "det", "feola", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jt", "det", "jt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wr", "det", "wr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eiþer", "det", "eiþer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giure", "det", "giure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meyne", "det", "meyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyss", "det", "hyss", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["youre", "det", "youre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theyre", "det", "theyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eur", "det", "eur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theos", "det", "theos", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["thare", "det", "thare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yor", "det", "yor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yur", "det", "yur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iche", "det", "iche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tham", "det", "tham", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hyre", "det", "hyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hise", "det", "hise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theis", "det", "theis", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hoere", "det", "hoere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["itte", "det", "itte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["euche", "det", "euche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ouer", "det", "ouer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þer", "det", "þer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þinne", "det", "þinne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyn", "det", "thyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feawe", "det", "feawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæwe", "det", "fæwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feuȝe", "det", "feuȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["booþ", "det", "booþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boðe", "det", "boðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baþe", "det", "baþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baðe", "det", "baðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þi", "det", "þi", "", "", "", "second-person singular possessive"]) + let v = native_list_append(v, ["þhi", "det", "þhi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þine", "det", "þine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þyn", "det", "þyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þyne", "det", "þyne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyen", "det", "thyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theyn", "det", "theyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mynne", "det", "mynne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hysse", "det", "hysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hesse", "det", "hesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heyre", "det", "heyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hurre", "det", "hurre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huere", "det", "huere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ouwer", "det", "ouwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oyur", "det", "oyur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ouȝr", "det", "ouȝr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wre", "det", "wre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vur", "det", "vur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unker", "det", "unker", "", "", "", "First-person dual possessive"]) + let v = native_list_append(v, ["unkere", "det", "unkere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unnkerr", "det", "unnkerr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yowyr", "det", "yowyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yowur", "det", "yowur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeur", "det", "yeur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhure", "det", "yhure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhour", "det", "yhour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhoure", "det", "yhoure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝoure", "det", "ȝoure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝowyr", "det", "ȝowyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝowur", "det", "ȝowur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝor", "det", "ȝor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝore", "det", "ȝore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝur", "det", "ȝur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝure", "det", "ȝure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝiore", "det", "ȝiore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝhour", "det", "ȝhour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝhoure", "det", "ȝhoure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝaure", "det", "ȝaure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝiure", "det", "ȝiure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝiwer", "det", "ȝiwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeur", "det", "ȝeur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeure", "det", "ȝeure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeuer", "det", "ȝeuer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeuwer", "det", "ȝeuwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝewer", "det", "ȝewer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝewere", "det", "ȝewere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gure", "det", "gure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giuor", "det", "giuor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giuer", "det", "giuer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giuwer", "det", "giuwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giwer", "det", "giwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ihore", "det", "ihore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ihoire", "det", "ihoire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eour", "det", "eour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eoure", "det", "eoure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eouer", "det", "eouer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eouwer", "det", "eouwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eouwere", "det", "eouwere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eowwer", "det", "eowwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eore", "det", "eore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["euwer", "det", "euwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["euwere", "det", "euwere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ouwere", "det", "ouwere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owur", "det", "owur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æure", "det", "æure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["incker", "det", "incker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝinker", "det", "ȝinker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gunker", "det", "gunker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝunker", "det", "ȝunker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þem", "det", "þem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þam", "det", "þam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeire", "det", "þeire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeyr", "det", "þeyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeyre", "det", "þeyre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þere", "det", "þere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þair", "det", "þair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þaire", "det", "þaire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þayr", "det", "þayr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thaire", "det", "thaire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thayre", "det", "thayre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þare", "det", "þare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þaier", "det", "þaier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thiere", "det", "thiere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þur", "det", "þur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yair", "det", "yair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yaire", "det", "yaire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeȝȝre", "det", "þeȝȝre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teȝȝre", "det", "teȝȝre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeir", "det", "yeir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhi", "det", "yhi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝare", "det", "ȝare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heoræ", "det", "heoræ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þisse", "det", "þisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fewere", "det", "fewere", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["yesse", "det", "yesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þese", "det", "þese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þece", "det", "þece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thece", "det", "thece", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þez", "det", "þez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thez", "det", "thez", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þeze", "det", "þeze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theze", "det", "theze", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þeis", "det", "þeis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeise", "det", "þeise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theise", "det", "theise", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þise", "det", "þise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thise", "det", "thise", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["thisse", "det", "thisse", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þyse", "det", "þyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyse", "det", "thyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þysse", "det", "þysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thysse", "det", "thysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeys", "det", "þeys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theys", "det", "theys", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þeyse", "det", "þeyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theyse", "det", "theyse", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þiȝe", "det", "þiȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thiȝe", "det", "thiȝe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["þyȝe", "det", "þyȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thyȝe", "det", "thyȝe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["eani", "det", "eani", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þͤ", "det", "þͤ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thatte", "det", "thatte", "", "", "", "that"]) + let v = native_list_append(v, ["yowr", "det", "yowr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yowre", "det", "yowre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tys", "det", "tys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uche", "det", "uche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylke", "det", "ylke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æch", "det", "æch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ælch", "det", "ælch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilch", "det", "ilch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illc", "det", "illc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ulche", "det", "ulche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewilch", "det", "ewilch", "", "", "", "every each any"]) + let v = native_list_append(v, ["æȝhwilc", "det", "æȝhwilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æȝhwylc", "det", "æȝhwylc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewilc", "det", "ewilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iwhillc", "det", "iwhillc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iwulch", "det", "iwulch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uwil", "det", "uwil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uwilc", "det", "uwilc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uwilch", "det", "uwilch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeis", "det", "yeis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feole", "det", "feole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veole", "det", "veole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝone", "det", "ȝone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yone", "det", "yone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝon", "det", "ȝon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝene", "det", "ȝene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeon", "det", "ȝeon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝhone", "det", "ȝhone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝonne", "det", "ȝonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝyn", "det", "ȝyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝen", "det", "ȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fæu", "det", "fæu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feaue", "det", "feaue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veawe", "det", "veawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ffewe", "det", "ffewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oeuch", "det", "oeuch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yece", "det", "yece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeise", "det", "yeise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yeus", "det", "yeus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yhese", "det", "yhese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yise", "det", "yise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yisse", "det", "yisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yies", "det", "yies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yiese", "det", "yiese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝise", "det", "ȝise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝese", "det", "ȝese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝeyse", "det", "ȝeyse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeose", "det", "þeose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeus", "det", "þeus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeuse", "det", "þeuse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þuse", "det", "þuse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þies", "det", "þies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þiez", "det", "þiez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oeuche", "det", "oeuche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["a/languages M to Z", "det", "a/languages M to Z", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aniȝ", "det", "aniȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayny", "det", "ayny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["æniȝ", "det", "æniȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eniȝ", "det", "eniȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oony", "det", "oony", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abandon", "adv", "abandon", "", "", "", "Freely entirely."]) + let v = native_list_append(v, ["abord", "adv", "abord", "", "", "", "On board into"]) + let v = native_list_append(v, ["on", "adv", "on", "", "", "", "on"]) + let v = native_list_append(v, ["nu", "adv", "nu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["today", "adv", "today", "", "", "", "On the current"]) + let v = native_list_append(v, ["abstractly", "adv", "abstractly", "", "", "", "reclusively while practising"]) + let v = native_list_append(v, ["in", "adv", "in", "", "", "", "in with the"]) + let v = native_list_append(v, ["one", "adv", "one", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["war", "adv", "war", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yesterday", "adv", "yesterday", "", "", "", "On the preceding"]) + let v = native_list_append(v, ["also", "adv", "also", "", "", "", "also to the"]) + let v = native_list_append(v, ["here", "adv", "here", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worst", "adv", "worst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["noon", "adv", "noon", "", "", "", "no not"]) + let v = native_list_append(v, ["of", "adv", "of", "", "", "", "off"]) + let v = native_list_append(v, ["this", "adv", "this", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tonight", "adv", "tonight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to", "adv", "to", "", "", "", "to"]) + let v = native_list_append(v, ["her", "adv", "her", "", "", "", "here"]) + let v = native_list_append(v, ["again", "adv", "again", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["all", "adv", "all", "", "", "", "all entirely completely"]) + let v = native_list_append(v, ["almost", "adv", "almost", "", "", "", "almost"]) + let v = native_list_append(v, ["north", "adv", "north", "", "", "", "To the north"]) + let v = native_list_append(v, ["south", "adv", "south", "", "", "", "To the south"]) + let v = native_list_append(v, ["west", "adv", "west", "", "", "", "To the west"]) + let v = native_list_append(v, ["what", "adv", "what", "", "", "", "Why."]) + let v = native_list_append(v, ["other", "adv", "other", "", "", "", "otherwise"]) + let v = native_list_append(v, ["not", "adv", "not", "", "", "", "not negates the"]) + let v = native_list_append(v, ["that", "adv", "that", "", "", "", "that to a"]) + let v = native_list_append(v, ["very", "adv", "very", "", "", "", "very"]) + let v = native_list_append(v, ["hole", "adv", "hole", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["how", "adv", "how", "", "", "", "how"]) + let v = native_list_append(v, ["al", "adv", "al", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["so", "adv", "so", "", "", "", "so"]) + let v = native_list_append(v, ["save", "adv", "save", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["they", "adv", "they", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["there", "adv", "there", "", "", "", "where"]) + let v = native_list_append(v, ["er", "adv", "er", "", "", "", "early"]) + let v = native_list_append(v, ["were", "adv", "were", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bet", "adv", "bet", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["ye", "adv", "ye", "", "", "", "yes yea"]) + let v = native_list_append(v, ["thy", "adv", "thy", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["together", "adv", "together", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["when", "adv", "when", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["among", "adv", "among", "", "", "", "among"]) + let v = native_list_append(v, ["though", "adv", "though", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dogged", "adv", "dogged", "", "", "", "doggedly viciously"]) + let v = native_list_append(v, ["stiff", "adv", "stiff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swell", "adv", "swell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["won", "adv", "won", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["round", "adv", "round", "", "", "", "Circularly in a"]) + let v = native_list_append(v, ["deep", "adv", "deep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["full", "adv", "full", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vein", "adv", "vein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nut", "adv", "nut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gain", "adv", "gain", "", "", "", "back to returning"]) + let v = native_list_append(v, ["yon", "adv", "yon", "", "", "", "that over there"]) + let v = native_list_append(v, ["note", "adv", "note", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wal", "adv", "wal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evil", "adv", "evil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["than", "adv", "than", "", "", "", "then"]) + let v = native_list_append(v, ["fast", "adv", "fast", "", "", "", "fast quickly"]) + let v = native_list_append(v, ["ni", "adv", "ni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["better", "adv", "better", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrice", "adv", "thrice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["once", "adv", "once", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ne", "adv", "ne", "", "", "", "not negates the"]) + let v = native_list_append(v, ["se", "adv", "se", "", "", "", "so"]) + let v = native_list_append(v, ["wan", "adv", "wan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["half", "adv", "half", "", "", "", "half"]) + let v = native_list_append(v, ["well", "adv", "well", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["real", "adv", "real", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lever", "adv", "lever", "", "", "", "Rather."]) + let v = native_list_append(v, ["worldly", "adv", "worldly", "", "", "", "In the way"]) + let v = native_list_append(v, ["ons", "adv", "ons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loud", "adv", "loud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["away", "adv", "away", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["awe", "adv", "awe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fo", "adv", "fo", "", "", "", "In a way"]) + let v = native_list_append(v, ["heir", "adv", "heir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yore", "adv", "yore", "", "", "", "yore in a"]) + let v = native_list_append(v, ["est", "adv", "est", "", "", "", "To the east"]) + let v = native_list_append(v, ["rad", "adv", "rad", "", "", "", "quickly speedily"]) + let v = native_list_append(v, ["ny", "adv", "ny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["best", "adv", "best", "", "", "", "best superlative degree"]) + let v = native_list_append(v, ["foo", "adv", "foo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["up", "adv", "up", "", "", "", "to a vertical"]) + let v = native_list_append(v, ["out", "adv", "out", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["actually", "adv", "actually", "", "", "", "actually truly"]) + let v = native_list_append(v, ["afore", "adv", "afore", "", "", "", "before afore"]) + let v = native_list_append(v, ["od", "adv", "od", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agate", "adv", "agate", "", "", "", "straight away immediately"]) + let v = native_list_append(v, ["always", "adv", "always", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nou", "adv", "nou", "", "", "", "now"]) + let v = native_list_append(v, ["angrily", "adv", "angrily", "", "", "", "Angrily spitefully in"]) + let v = native_list_append(v, ["anon", "adv", "anon", "", "", "", "anon straight away"]) + let v = native_list_append(v, ["even", "adv", "even", "", "", "", "smoothly evenly"]) + let v = native_list_append(v, ["ever", "adv", "ever", "", "", "", "ever"]) + let v = native_list_append(v, ["sad", "adv", "sad", "", "", "", "firmly solidly steadily"]) + let v = native_list_append(v, ["wonder", "adv", "wonder", "", "", "", "to a great"]) + let v = native_list_append(v, ["ek", "adv", "ek", "", "", "", "also in addition"]) + let v = native_list_append(v, ["hol", "adv", "hol", "", "", "", "wholly"]) + let v = native_list_append(v, ["ut", "adv", "ut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ergo", "adv", "ergo", "", "", "", "thus consequently ergo"]) + let v = native_list_append(v, ["royal", "adv", "royal", "", "", "", "wonderfully"]) + let v = native_list_append(v, ["accidently", "adv", "accidently", "", "", "", "by chance by"]) + let v = native_list_append(v, ["ay", "adv", "ay", "", "", "", "always constantly unceasingly"]) + let v = native_list_append(v, ["ayen", "adv", "ayen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayein", "adv", "ayein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayenward", "adv", "ayenward", "", "", "", "Backward."]) + let v = native_list_append(v, ["plat", "adv", "plat", "", "", "", "plat flatly plainly"]) + let v = native_list_append(v, ["nowt", "adv", "nowt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forward", "adv", "forward", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ok", "adv", "ok", "", "", "", "Also furthermore as"]) + let v = native_list_append(v, ["store", "adv", "store", "", "", "", "violently threateningly imposingly"]) + let v = native_list_append(v, ["thus", "adv", "thus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eke", "adv", "eke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scarce", "adv", "scarce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eek", "adv", "eek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["upon", "adv", "upon", "", "", "", "upon"]) + let v = native_list_append(v, ["late", "adv", "late", "", "", "", "slowly reluctantly"]) + let v = native_list_append(v, ["around", "adv", "around", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["worse", "adv", "worse", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["often", "adv", "often", "", "", "", "repeatedly again and"]) + let v = native_list_append(v, ["sure", "adv", "sure", "", "", "", "sure surely with"]) + let v = native_list_append(v, ["easy", "adv", "easy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["generally", "adv", "generally", "", "", "", "exceptionlessly always without"]) + let v = native_list_append(v, ["huge", "adv", "huge", "", "", "", "hugely greatly"]) + let v = native_list_append(v, ["rather", "adv", "rather", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dun", "adv", "dun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eft", "adv", "eft", "", "", "", "again another time"]) + let v = native_list_append(v, ["eyer", "adv", "eyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mete", "adv", "mete", "", "", "", "appropriately"]) + let v = native_list_append(v, ["oft", "adv", "oft", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toward", "adv", "toward", "", "", "", "In a given"]) + let v = native_list_append(v, ["chef", "adv", "chef", "", "", "", "Principally the most."]) + let v = native_list_append(v, ["diverse", "adv", "diverse", "", "", "", "differently diversely"]) + let v = native_list_append(v, ["fain", "adv", "fain", "", "", "", "gladly joyfully"]) + let v = native_list_append(v, ["foul", "adv", "foul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lowly", "adv", "lowly", "", "", "", "in a low"]) + let v = native_list_append(v, ["outwards", "adv", "outwards", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["shortly", "adv", "shortly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["simply", "adv", "simply", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tally", "adv", "tally", "", "", "", "properly suitably becomingly"]) + let v = native_list_append(v, ["twofold", "adv", "twofold", "", "", "", "In a twofold"]) + let v = native_list_append(v, ["wane", "adv", "wane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kindly", "adv", "kindly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["commonly", "adv", "commonly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ones", "adv", "ones", "", "", "", "once one time"]) + let v = native_list_append(v, ["notte", "adv", "notte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["item", "adv", "item", "", "", "", "also and this"]) + let v = native_list_append(v, ["fel", "adv", "fel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["timely", "adv", "timely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lovely", "adv", "lovely", "", "", "", "Nicely affectionately lovingly"]) + let v = native_list_append(v, ["homely", "adv", "homely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cowardly", "adv", "cowardly", "", "", "", "In a cowardly"]) + let v = native_list_append(v, ["brotherly", "adv", "brotherly", "", "", "", "In a brotherly"]) + let v = native_list_append(v, ["sore", "adv", "sore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surly", "adv", "surly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mainly", "adv", "mainly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ute", "adv", "ute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wight", "adv", "wight", "", "", "", "immediately"]) + let v = native_list_append(v, ["easily", "adv", "easily", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ashore", "adv", "ashore", "", "", "", "aslant on a"]) + let v = native_list_append(v, ["seldom", "adv", "seldom", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fully", "adv", "fully", "", "", "", "Plentifully abundantly without"]) + let v = native_list_append(v, ["muchel", "adv", "muchel", "", "", "", "much"]) + let v = native_list_append(v, ["ferme", "adv", "ferme", "", "", "", "firmly steadily"]) + let v = native_list_append(v, ["lately", "adv", "lately", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["outward", "adv", "outward", "", "", "", "outside in the"]) + let v = native_list_append(v, ["outwardly", "adv", "outwardly", "", "", "", "While located at"]) + let v = native_list_append(v, ["properly", "adv", "properly", "", "", "", "properly appropriately"]) + let v = native_list_append(v, ["wer", "adv", "wer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrongful", "adv", "wrongful", "", "", "", "evil sinful"]) + let v = native_list_append(v, ["ware", "adv", "ware", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surely", "adv", "surely", "", "", "", "safely with safety"]) + let v = native_list_append(v, ["fervently", "adv", "fervently", "", "", "", "hotly hot"]) + let v = native_list_append(v, ["paramour", "adv", "paramour", "", "", "", "In a loving"]) + let v = native_list_append(v, ["afer", "adv", "afer", "", "", "", "afar"]) + let v = native_list_append(v, ["þrie", "adv", "þrie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elles", "adv", "elles", "", "", "", "else"]) + let v = native_list_append(v, ["sone", "adv", "sone", "", "", "", "soon"]) + let v = native_list_append(v, ["riche", "adv", "riche", "", "", "", "Richly marvellously."]) + let v = native_list_append(v, ["homeward", "adv", "homeward", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inward", "adv", "inward", "", "", "", "inwards to the"]) + let v = native_list_append(v, ["naught", "adv", "naught", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ardently", "adv", "ardently", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fale", "adv", "fale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mo", "adv", "mo", "", "", "", "to a greater"]) + let v = native_list_append(v, ["argh", "adv", "argh", "", "", "", "amazedly with a"]) + let v = native_list_append(v, ["merely", "adv", "merely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nat", "adv", "nat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strangely", "adv", "strangely", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slider", "adv", "slider", "", "", "", "Unsurely unsteadily."]) + let v = native_list_append(v, ["dep", "adv", "dep", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nare", "adv", "nare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wurst", "adv", "wurst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["westen", "adv", "westen", "", "", "", "westwards from the"]) + let v = native_list_append(v, ["ey", "adv", "ey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["til", "adv", "til", "", "", "", "to"]) + let v = native_list_append(v, ["sadly", "adv", "sadly", "", "", "", "totally completely deeply"]) + let v = native_list_append(v, ["inne", "adv", "inne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manly", "adv", "manly", "", "", "", "In a human"]) + let v = native_list_append(v, ["violently", "adv", "violently", "", "", "", "Violently in a"]) + let v = native_list_append(v, ["specially", "adv", "specially", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wonderfully", "adv", "wonderfully", "", "", "", "miraculously extraordinarily unnaturally"]) + let v = native_list_append(v, ["honestly", "adv", "honestly", "", "", "", "honourably respectfully nobly"]) + let v = native_list_append(v, ["universally", "adv", "universally", "", "", "", "en masse impacting"]) + let v = native_list_append(v, ["furiously", "adv", "furiously", "", "", "", "madly forcefully frantically"]) + let v = native_list_append(v, ["cruelly", "adv", "cruelly", "", "", "", "Ruthlessly cruelly in"]) + let v = native_list_append(v, ["sorely", "adv", "sorely", "", "", "", "strongly forcefully in"]) + let v = native_list_append(v, ["manlike", "adv", "manlike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miri", "adv", "miri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lawfully", "adv", "lawfully", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["duly", "adv", "duly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["westward", "adv", "westward", "", "", "", "westward"]) + let v = native_list_append(v, ["evermore", "adv", "evermore", "", "", "", "always forever"]) + let v = native_list_append(v, ["þy", "adv", "þy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þes", "adv", "þes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þis", "adv", "þis", "", "", "", "this"]) + let v = native_list_append(v, ["bak", "adv", "bak", "", "", "", "backward"]) + let v = native_list_append(v, ["playing", "adv", "playing", "", "", "", "jestfully"]) + let v = native_list_append(v, ["nought", "adv", "nought", "", "", "", "not negates the"]) + let v = native_list_append(v, ["peradventure", "adv", "peradventure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["madly", "adv", "madly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wars", "adv", "wars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compleet", "adv", "compleet", "", "", "", "Indicating completeness or"]) + let v = native_list_append(v, ["alles", "adv", "alles", "", "", "", "totally altogether"]) + let v = native_list_append(v, ["beter", "adv", "beter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["revers", "adv", "revers", "", "", "", "In a reverse"]) + let v = native_list_append(v, ["louder", "adv", "louder", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["differently", "adv", "differently", "", "", "", "differently"]) + let v = native_list_append(v, ["wrongfully", "adv", "wrongfully", "", "", "", "evilly sinfully"]) + let v = native_list_append(v, ["oon", "adv", "oon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miry", "adv", "miry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ful", "adv", "ful", "", "", "", "very much to"]) + let v = native_list_append(v, ["chefe", "adv", "chefe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ens", "adv", "ens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lewdly", "adv", "lewdly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wel", "adv", "wel", "", "", "", "Well amazingly expertly"]) + let v = native_list_append(v, ["eternally", "adv", "eternally", "", "", "", "In an eternal"]) + let v = native_list_append(v, ["sor", "adv", "sor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tus", "adv", "tus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hugely", "adv", "hugely", "", "", "", "Hugely to a"]) + let v = native_list_append(v, ["siker", "adv", "siker", "", "", "", "safely carefully"]) + let v = native_list_append(v, ["verst", "adv", "verst", "", "", "", "first"]) + let v = native_list_append(v, ["beste", "adv", "beste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sere", "adv", "sere", "", "", "", "Separately severally."]) + let v = native_list_append(v, ["slyly", "adv", "slyly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wors", "adv", "wors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["juste", "adv", "juste", "", "", "", "just"]) + let v = native_list_append(v, ["sauf", "adv", "sauf", "", "", "", "In a safe"]) + let v = native_list_append(v, ["afterward", "adv", "afterward", "", "", "", "Behind in the"]) + let v = native_list_append(v, ["duli", "adv", "duli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huru", "adv", "huru", "", "", "", "especially particularly much"]) + let v = native_list_append(v, ["lordly", "adv", "lordly", "", "", "", "lordly like a"]) + let v = native_list_append(v, ["inwardly", "adv", "inwardly", "", "", "", "While at the"]) + let v = native_list_append(v, ["inly", "adv", "inly", "", "", "", "heartily completely"]) + let v = native_list_append(v, ["uvel", "adv", "uvel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sevenfold", "adv", "sevenfold", "", "", "", "sevenfold"]) + let v = native_list_append(v, ["anes", "adv", "anes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hwænne", "adv", "hwænne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naht", "adv", "naht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stille", "adv", "stille", "", "", "", "silently noiselessly"]) + let v = native_list_append(v, ["togædere", "adv", "togædere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeah", "adv", "þeah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þus", "adv", "þus", "", "", "", "So thus in"]) + let v = native_list_append(v, ["foule", "adv", "foule", "", "", "", "In an ugly"]) + let v = native_list_append(v, ["eliche", "adv", "eliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["namo", "adv", "namo", "", "", "", "No more of"]) + let v = native_list_append(v, ["graciously", "adv", "graciously", "", "", "", "fortunately successfully well"]) + let v = native_list_append(v, ["weel", "adv", "weel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulli", "adv", "fulli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naut", "adv", "naut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sær", "adv", "sær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zuo", "adv", "zuo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rathe", "adv", "rathe", "", "", "", "quickly speedily"]) + let v = native_list_append(v, ["wor", "adv", "wor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["certes", "adv", "certes", "", "", "", "certainly indeed of"]) + let v = native_list_append(v, ["neer", "adv", "neer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lasse", "adv", "lasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grisly", "adv", "grisly", "", "", "", "grisly in a"]) + let v = native_list_append(v, ["viciously", "adv", "viciously", "", "", "", "sinfully evilly"]) + let v = native_list_append(v, ["lude", "adv", "lude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ofte", "adv", "ofte", "", "", "", "oft often"]) + let v = native_list_append(v, ["materially", "adv", "materially", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gamely", "adv", "gamely", "", "", "", "Playfully joyfully in"]) + let v = native_list_append(v, ["nakedly", "adv", "nakedly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scars", "adv", "scars", "", "", "", "Scarcely sparingly infrequently."]) + let v = native_list_append(v, ["paramours", "adv", "paramours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secunde", "adv", "secunde", "", "", "", "The second occurrence"]) + let v = native_list_append(v, ["whan", "adv", "whan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yliche", "adv", "yliche", "", "", "", "in the same"]) + let v = native_list_append(v, ["gloriously", "adv", "gloriously", "", "", "", "In a glorious"]) + let v = native_list_append(v, ["oc", "adv", "oc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stiffly", "adv", "stiffly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sorer", "adv", "sorer", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["sorest", "adv", "sorest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["no", "adv", "no", "", "", "", "not"]) + let v = native_list_append(v, ["pryvely", "adv", "pryvely", "", "", "", "privily"]) + let v = native_list_append(v, ["scornfully", "adv", "scornfully", "", "", "", "scornfully contemptuously"]) + let v = native_list_append(v, ["secondarily", "adv", "secondarily", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rade", "adv", "rade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["behovely", "adv", "behovely", "", "", "", "According to what"]) + let v = native_list_append(v, ["manfully", "adv", "manfully", "", "", "", "Bravely strongly daringly"]) + let v = native_list_append(v, ["neuer", "adv", "neuer", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["stiffer", "adv", "stiffer", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["stiffest", "adv", "stiffest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["streight", "adv", "streight", "", "", "", "straight directly"]) + let v = native_list_append(v, ["laste", "adv", "laste", "", "", "", "last"]) + let v = native_list_append(v, ["snart", "adv", "snart", "", "", "", "severely harshly"]) + let v = native_list_append(v, ["homard", "adv", "homard", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["commendably", "adv", "commendably", "", "", "", "commendably"]) + let v = native_list_append(v, ["balefully", "adv", "balefully", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["speciali", "adv", "speciali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nere", "adv", "nere", "", "", "", "near"]) + let v = native_list_append(v, ["originali", "adv", "originali", "", "", "", "Originally primordially in"]) + let v = native_list_append(v, ["bestially", "adv", "bestially", "", "", "", "bestially"]) + let v = native_list_append(v, ["demurely", "adv", "demurely", "", "", "", "demurely modestly"]) + let v = native_list_append(v, ["dishonestly", "adv", "dishonestly", "", "", "", "disgracefully dishonourably"]) + let v = native_list_append(v, ["quan", "adv", "quan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nai", "adv", "nai", "", "", "", "no not"]) + let v = native_list_append(v, ["gamli", "adv", "gamli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gracelessly", "adv", "gracelessly", "", "", "", "Lacking Gods beneficence."]) + let v = native_list_append(v, ["hom", "adv", "hom", "", "", "", "home homeward"]) + let v = native_list_append(v, ["fraudulently", "adv", "fraudulently", "", "", "", "fraudulently deceptively"]) + let v = native_list_append(v, ["þah", "adv", "þah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["generali", "adv", "generali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angerly", "adv", "angerly", "", "", "", "Ferociously painfully in"]) + let v = native_list_append(v, ["foully", "adv", "foully", "", "", "", "Filthily in a"]) + let v = native_list_append(v, ["ene", "adv", "ene", "", "", "", "once one time"]) + let v = native_list_append(v, ["materiali", "adv", "materiali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nate", "adv", "nate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scarse", "adv", "scarse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["virtuali", "adv", "virtuali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["humanly", "adv", "humanly", "", "", "", "humanely used ironically"]) + let v = native_list_append(v, ["ther", "adv", "ther", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perilously", "adv", "perilously", "", "", "", "In a way"]) + let v = native_list_append(v, ["leas", "adv", "leas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundredfold", "adv", "hundredfold", "", "", "", "hundredfold"]) + let v = native_list_append(v, ["hien", "adv", "hien", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yn", "adv", "yn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lesse", "adv", "lesse", "", "", "", "less"]) + let v = native_list_append(v, ["thri", "adv", "thri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lef", "adv", "lef", "", "", "", "beloved dear"]) + let v = native_list_append(v, ["wones", "adv", "wones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unlovely", "adv", "unlovely", "", "", "", "disagreeably foully"]) + let v = native_list_append(v, ["hevi", "adv", "hevi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["selli", "adv", "selli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ygo", "adv", "ygo", "", "", "", "ago"]) + let v = native_list_append(v, ["esili", "adv", "esili", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moche", "adv", "moche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abak", "adv", "abak", "", "", "", "backward away"]) + let v = native_list_append(v, ["compas", "adv", "compas", "", "", "", "Following or having"]) + let v = native_list_append(v, ["bestiali", "adv", "bestiali", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deepe", "adv", "deepe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sicker", "adv", "sicker", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agayn", "adv", "agayn", "", "", "", "again"]) + let v = native_list_append(v, ["aboute", "adv", "aboute", "", "", "", "around"]) + let v = native_list_append(v, ["to-morrow", "adv", "to-morrow", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["innerlich", "adv", "innerlich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esi", "adv", "esi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betere", "adv", "betere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hyn", "adv", "hyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aline", "adv", "aline", "", "", "", "In a straight"]) + let v = native_list_append(v, ["noht", "adv", "noht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aisy", "adv", "aisy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gayn", "adv", "gayn", "", "", "", "expeditiously fast with"]) + let v = native_list_append(v, ["celly", "adv", "celly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anone", "adv", "anone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warre", "adv", "warre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bæt", "adv", "bæt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["awi", "adv", "awi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelome", "adv", "gelome", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evel", "adv", "evel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sealde", "adv", "sealde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saad", "adv", "saad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togeanes", "adv", "togeanes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["childly", "adv", "childly", "", "", "", "childishly"]) + let v = native_list_append(v, ["wille", "adv", "wille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sellic", "adv", "sellic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stedfast", "adv", "stedfast", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to niht", "adv", "to niht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bett", "adv", "bett", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["overmanner", "adv", "overmanner", "", "", "", "In an excessive"]) + let v = native_list_append(v, ["hure", "adv", "hure", "", "", "", "at intervals frequent"]) + let v = native_list_append(v, ["twie", "adv", "twie", "", "", "", "twice two times"]) + let v = native_list_append(v, ["nother", "adv", "nother", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verye", "adv", "verye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herre", "adv", "herre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warse", "adv", "warse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warst", "adv", "warst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agre", "adv", "agre", "", "", "", "nicely"]) + let v = native_list_append(v, ["odde", "adv", "odde", "", "", "", "Exceptionally really outstandingly"]) + let v = native_list_append(v, ["wol", "adv", "wol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buxomly", "adv", "buxomly", "", "", "", "obediently compliantly"]) + let v = native_list_append(v, ["towardly", "adv", "towardly", "", "", "", "In a manner"]) + let v = native_list_append(v, ["lovelily", "adv", "lovelily", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stound", "adv", "stound", "", "", "", "A while for"]) + let v = native_list_append(v, ["slily", "adv", "slily", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deceivably", "adv", "deceivably", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seldomly", "adv", "seldomly", "", "", "", "seldomly seldom."]) + let v = native_list_append(v, ["forwhy", "adv", "forwhy", "", "", "", "for what reason"]) + let v = native_list_append(v, ["foreward", "adv", "foreward", "", "", "", "forward"]) + let v = native_list_append(v, ["quon", "adv", "quon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fele", "adv", "fele", "", "", "", "In a large"]) + let v = native_list_append(v, ["embe", "adv", "embe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlously", "adv", "parlously", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lome", "adv", "lome", "", "", "", "usually commonly."]) + let v = native_list_append(v, ["tofore", "adv", "tofore", "", "", "", "In front ahead"]) + let v = native_list_append(v, ["wonderly", "adv", "wonderly", "", "", "", "wonderly to a"]) + let v = native_list_append(v, ["fule", "adv", "fule", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["selden", "adv", "selden", "", "", "", "not often uncommonly"]) + let v = native_list_append(v, ["umbe", "adv", "umbe", "", "", "", "around"]) + let v = native_list_append(v, ["enes", "adv", "enes", "", "", "", "once one time"]) + let v = native_list_append(v, ["holdelike", "adv", "holdelike", "", "", "", "faithfully"]) + let v = native_list_append(v, ["cundelich", "adv", "cundelich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cornerwise", "adv", "cornerwise", "", "", "", "diagonally"]) + let v = native_list_append(v, ["rightwise", "adv", "rightwise", "", "", "", "rightly correctly or"]) + let v = native_list_append(v, ["prest", "adv", "prest", "", "", "", "quickly speedily hastily"]) + let v = native_list_append(v, ["ageyne", "adv", "ageyne", "", "", "", "again in return"]) + let v = native_list_append(v, ["bette", "adv", "bette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onne", "adv", "onne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rere", "adv", "rere", "", "", "", "behind"]) + let v = native_list_append(v, ["algate", "adv", "algate", "", "", "", "in any case"]) + let v = native_list_append(v, ["nerehonde", "adv", "nerehonde", "", "", "", "nearby"]) + let v = native_list_append(v, ["alwayes", "adv", "alwayes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thenne", "adv", "thenne", "", "", "", "Then."]) + let v = native_list_append(v, ["noght", "adv", "noght", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þey", "adv", "þey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["endly", "adv", "endly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thi", "adv", "thi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["wannen", "adv", "wannen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nathelees", "adv", "nathelees", "", "", "", "nevertheless"]) + let v = native_list_append(v, ["nevere", "adv", "nevere", "", "", "", "never"]) + let v = native_list_append(v, ["certeinly", "adv", "certeinly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["solempnely", "adv", "solempnely", "", "", "", "solemnly"]) + let v = native_list_append(v, ["bitwixe", "adv", "bitwixe", "", "", "", "In the position"]) + let v = native_list_append(v, ["esy", "adv", "esy", "", "", "", "With ease easily."]) + let v = native_list_append(v, ["verray", "adv", "verray", "", "", "", "accurately precisely closely"]) + let v = native_list_append(v, ["somdel", "adv", "somdel", "", "", "", "somewhat to an"]) + let v = native_list_append(v, ["trewely", "adv", "trewely", "", "", "", "faithfully honourably with"]) + let v = native_list_append(v, ["bettre", "adv", "bettre", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["bitwixen", "adv", "bitwixen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiþoute", "adv", "wiþoute", "", "", "", "without"]) + let v = native_list_append(v, ["schortly", "adv", "schortly", "", "", "", "shortly after a"]) + let v = native_list_append(v, ["falsly", "adv", "falsly", "", "", "", "falsely"]) + let v = native_list_append(v, ["alday", "adv", "alday", "", "", "", "all day the"]) + let v = native_list_append(v, ["raþer", "adv", "raþer", "", "", "", "rather"]) + let v = native_list_append(v, ["biforn", "adv", "biforn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poverly", "adv", "poverly", "", "", "", "poorly in a"]) + let v = native_list_append(v, ["ther fore", "adv", "ther fore", "", "", "", "therefore by consequence"]) + let v = native_list_append(v, ["loude", "adv", "loude", "", "", "", "Loudly in a"]) + let v = native_list_append(v, ["doun", "adv", "doun", "", "", "", "down"]) + let v = native_list_append(v, ["þou", "adv", "þou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sodeinliche", "adv", "sodeinliche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freendly", "adv", "freendly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hidously", "adv", "hidously", "", "", "", "hideously"]) + let v = native_list_append(v, ["pleynly", "adv", "pleynly", "", "", "", "plainly clearly unambiguously"]) + let v = native_list_append(v, ["estward", "adv", "estward", "", "", "", "eastward"]) + let v = native_list_append(v, ["certis", "adv", "certis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["agame", "adv", "agame", "", "", "", "in jest as"]) + let v = native_list_append(v, ["sutili", "adv", "sutili", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betst", "adv", "betst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onis", "adv", "onis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fulle", "adv", "fulle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["styve", "adv", "styve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["winly", "adv", "winly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paciently", "adv", "paciently", "", "", "", "patiently"]) + let v = native_list_append(v, ["swithe", "adv", "swithe", "", "", "", "speedily promptly"]) + let v = native_list_append(v, ["thanne", "adv", "thanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forthi", "adv", "forthi", "", "", "", "For this reason"]) + let v = native_list_append(v, ["whanne", "adv", "whanne", "", "", "", "when"]) + let v = native_list_append(v, ["hwon", "adv", "hwon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skars", "adv", "skars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["navre", "adv", "navre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilice", "adv", "ilice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylike", "adv", "ylike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["innerly", "adv", "innerly", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wyll", "adv", "wyll", "", "", "", "well"]) + let v = native_list_append(v, ["yis", "adv", "yis", "", "", "", "yes"]) + let v = native_list_append(v, ["ysame", "adv", "ysame", "", "", "", "In a group"]) + let v = native_list_append(v, ["yvel", "adv", "yvel", "", "", "", "wickedly evilly iniquitously"]) + let v = native_list_append(v, ["ever-more", "adv", "ever-more", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yfere", "adv", "yfere", "", "", "", ""]) + let v = native_list_append(v, ["ethen", "adv", "ethen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fre", "adv", "fre", "", "", "", "freely lacking opposition"]) + let v = native_list_append(v, ["weele", "adv", "weele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["evenlong", "adv", "evenlong", "", "", "", "Along along the"]) + let v = native_list_append(v, ["ruthfully", "adv", "ruthfully", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mery", "adv", "mery", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mididone", "adv", "mididone", "", "", "", "Quickly immediately."]) + let v = native_list_append(v, ["aunciently", "adv", "aunciently", "", "", "", "anciently"]) + let v = native_list_append(v, ["wode", "adv", "wode", "", "", "", "frantically"]) + let v = native_list_append(v, ["oute", "adv", "oute", "", "", "", "out"]) + let v = native_list_append(v, ["wherso", "adv", "wherso", "", "", "", "in which where"]) + let v = native_list_append(v, ["narwe", "adv", "narwe", "", "", "", "Tightly in a"]) + let v = native_list_append(v, ["wers", "adv", "wers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amorwe", "adv", "amorwe", "", "", "", "In the morning."]) + let v = native_list_append(v, ["whennes", "adv", "whennes", "", "", "", "whence"]) + let v = native_list_append(v, ["abord", "prep", "abord", "", "", "", "On board of"]) + let v = native_list_append(v, ["above", "prep", "above", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["on", "prep", "on", "", "", "", "on in"]) + let v = native_list_append(v, ["y", "prep", "y", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["en", "prep", "en", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in", "prep", "in", "", "", "", "in with the"]) + let v = native_list_append(v, ["o", "prep", "o", "", "", "", "of"]) + let v = native_list_append(v, ["one", "prep", "one", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["i", "prep", "i", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["after", "prep", "after", "", "", "", "after"]) + let v = native_list_append(v, ["of", "prep", "of", "", "", "", "of"]) + let v = native_list_append(v, ["at", "prep", "at", "", "", "", "at"]) + let v = native_list_append(v, ["for", "prep", "for", "", "", "", "for"]) + let v = native_list_append(v, ["an", "prep", "an", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to", "prep", "to", "", "", "", "to"]) + let v = native_list_append(v, ["safe", "prep", "safe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["save", "prep", "save", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["from", "prep", "from", "", "", "", "from"]) + let v = native_list_append(v, ["with", "prep", "with", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["among", "prep", "among", "", "", "", "among"]) + let v = native_list_append(v, ["bi", "prep", "bi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["by", "prep", "by", "", "", "", "by"]) + let v = native_list_append(v, ["san", "prep", "san", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gain", "prep", "gain", "", "", "", "against next to"]) + let v = native_list_append(v, ["mit", "prep", "mit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sans", "prep", "sans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afore", "prep", "afore", "", "", "", "before afore in"]) + let v = native_list_append(v, ["over", "prep", "over", "", "", "", "above"]) + let v = native_list_append(v, ["under", "prep", "under", "", "", "", "under"]) + let v = native_list_append(v, ["med", "prep", "med", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["into", "prep", "into", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fra", "prep", "fra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["upon", "prep", "upon", "", "", "", "upon"]) + let v = native_list_append(v, ["dun", "prep", "dun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fro", "prep", "fro", "", "", "", "from"]) + let v = native_list_append(v, ["toward", "prep", "toward", "", "", "", "In the direction"]) + let v = native_list_append(v, ["mid", "prep", "mid", "", "", "", "with"]) + let v = native_list_append(v, ["salve", "prep", "salve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inward", "prep", "inward", "", "", "", "To the inside"]) + let v = native_list_append(v, ["unto", "prep", "unto", "", "", "", "unto"]) + let v = native_list_append(v, ["gan", "prep", "gan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hon", "prep", "hon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["til", "prep", "til", "", "", "", "until till"]) + let v = native_list_append(v, ["gen", "prep", "gen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ine", "prep", "ine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towards", "prep", "towards", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wiþ", "prep", "wiþ", "", "", "", "with"]) + let v = native_list_append(v, ["middel", "prep", "middel", "", "", "", "In the middle"]) + let v = native_list_append(v, ["sauf", "prep", "sauf", "", "", "", "But except for"]) + let v = native_list_append(v, ["mide", "prep", "mide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yn", "prep", "yn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saun", "prep", "saun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vnto", "prep", "vnto", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["vpon", "prep", "vpon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaine", "prep", "gaine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gayn", "prep", "gayn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togeanes", "prep", "togeanes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bifore", "prep", "bifore", "", "", "", "before"]) + let v = native_list_append(v, ["togenes", "prep", "togenes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["embe", "prep", "embe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tofore", "prep", "tofore", "", "", "", "In front of."]) + let v = native_list_append(v, ["umbe", "prep", "umbe", "", "", "", "around"]) + let v = native_list_append(v, ["gein", "prep", "gein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sanz", "prep", "sanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onne", "prep", "onne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aboven", "prep", "aboven", "", "", "", "above"]) + let v = native_list_append(v, ["intil", "prep", "intil", "", "", "", "into"]) + let v = native_list_append(v, ["sawe", "prep", "sawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwixe", "prep", "bitwixe", "", "", "", "In the position"]) + let v = native_list_append(v, ["bisyde", "prep", "bisyde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwixen", "prep", "bitwixen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doun", "prep", "doun", "", "", "", "down"]) + let v = native_list_append(v, ["intill", "prep", "intill", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þanne", "prep", "þanne", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["withouten", "prep", "withouten", "", "", "", "without"]) + let v = native_list_append(v, ["out-nome", "prep", "out-nome", "", "", "", "except except for"]) + let v = native_list_append(v, ["sauns", "prep", "sauns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bifor", "prep", "bifor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["byfore", "prep", "byfore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tyll", "prep", "tyll", "", "", "", "until"]) + let v = native_list_append(v, ["in-to", "prep", "in-to", "", "", "", "into"]) + let v = native_list_append(v, ["wth", "prep", "wth", "", "", "", "contraction of with"]) + let v = native_list_append(v, ["bytwene", "prep", "bytwene", "", "", "", "between"]) + let v = native_list_append(v, ["wtout", "prep", "wtout", "", "", "", "without"]) + let v = native_list_append(v, ["inwith", "prep", "inwith", "", "", "", "within"]) + let v = native_list_append(v, ["aftir", "prep", "aftir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gayne", "prep", "gayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thurgh", "prep", "thurgh", "", "", "", "through"]) + let v = native_list_append(v, ["emforth", "prep", "emforth", "", "", "", "according to in"]) + let v = native_list_append(v, ["outtaken", "prep", "outtaken", "", "", "", "except save"]) + let v = native_list_append(v, ["thurh", "prep", "thurh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saunce", "prep", "saunce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["midde", "prep", "midde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayenes", "prep", "ayenes", "", "", "", "against"]) + let v = native_list_append(v, ["doune", "prep", "doune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medde", "prep", "medde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saf", "prep", "saf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toayens", "prep", "toayens", "", "", "", "In defence against"]) + let v = native_list_append(v, ["to-ayens", "prep", "to-ayens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to ayens", "prep", "to ayens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toayans", "prep", "toayans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to ayans", "prep", "to ayans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toaȝens", "prep", "toaȝens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to aȝens", "prep", "to aȝens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toaȝeines", "prep", "toaȝeines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to aȝeines", "prep", "to aȝeines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforn", "prep", "toforn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tofor", "prep", "tofor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforon", "prep", "toforon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforen", "prep", "toforen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforne", "prep", "toforne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforan", "prep", "toforan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toffor", "prep", "toffor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toffore", "prep", "toffore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tofforn", "prep", "tofforn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforowe", "prep", "toforowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tofour", "prep", "tofour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tovor", "prep", "tovor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tovore", "prep", "tovore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tovoren", "prep", "tovoren", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tefor", "prep", "tefor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tefore", "prep", "tefore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["teforen", "prep", "teforen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tomiddes", "prep", "tomiddes", "", "", "", "In the middle"]) + let v = native_list_append(v, ["tomyddes", "prep", "tomyddes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["totwene", "prep", "totwene", "", "", "", "In the position"]) + let v = native_list_append(v, ["totwne", "prep", "totwne", "", "", "", "misspelling of totwene"]) + let v = native_list_append(v, ["bitwyxe", "prep", "bitwyxe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwixe", "prep", "bytwixe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwyxe", "prep", "bytwyxe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwix", "prep", "bitwix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwyx", "prep", "bitwyx", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwix", "prep", "bytwix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwyx", "prep", "bytwyx", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwixen", "prep", "bytwixen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwyxen", "prep", "bitwyxen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwyxen", "prep", "bytwyxen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwixt", "prep", "bitwixt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwixt", "prep", "bytwixt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwyxt", "prep", "bitwyxt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwyxt", "prep", "bytwyxt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwux", "prep", "bitwux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwuxen", "prep", "bitwuxen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwuxen", "prep", "bytwuxen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwuxt", "prep", "bitwuxt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwuxt", "prep", "bytwuxt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitux", "prep", "bitux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytux", "prep", "bytux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bituxen", "prep", "bituxen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytuxen", "prep", "bytuxen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bituxt", "prep", "bituxt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytuxt", "prep", "bytuxt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwex", "prep", "bitwex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwex", "prep", "bytwex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwexe", "prep", "bitwexe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwexe", "prep", "bytwexe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwisse", "prep", "bitwisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwisse", "prep", "bytwisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwysse", "prep", "bitwysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwysse", "prep", "bytwysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwist", "prep", "bitwist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwist", "prep", "bytwist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bitwyst", "prep", "bitwyst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwyst", "prep", "bytwyst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bytwux", "prep", "bytwux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["as toward", "prep", "as toward", "", "", "", "As for concerning"]) + let v = native_list_append(v, ["toyen", "prep", "toyen", "", "", "", "Towards with hostility"]) + let v = native_list_append(v, ["toȝain", "prep", "toȝain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝen", "prep", "toȝen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝene", "prep", "toȝene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝein", "prep", "toȝein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝean", "prep", "toȝean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝeane", "prep", "toȝeane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝæn", "prep", "toȝæn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toyenes", "prep", "toyenes", "", "", "", "Towards with hostility"]) + let v = native_list_append(v, ["toȝenes", "prep", "toȝenes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toyeans", "prep", "toyeans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝens", "prep", "toȝens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝennes", "prep", "toȝennes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝaines", "prep", "toȝaines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝanes", "prep", "toȝanes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝæines", "prep", "toȝæines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝeinst", "prep", "toȝeinst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toganes", "prep", "toganes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togænes", "prep", "togænes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tojanes", "prep", "tojanes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tegenes", "prep", "tegenes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toyens", "prep", "toyens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toyeines", "prep", "toyeines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toyans", "prep", "toyans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝeines", "prep", "toȝeines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝenste", "prep", "toȝenste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝenst", "prep", "toȝenst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towardes", "prep", "towardes", "", "", "", "In the direction"]) + let v = native_list_append(v, ["towardys", "prep", "towardys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towardis", "prep", "towardis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towardus", "prep", "towardus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["touwardes", "prep", "touwardes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twowardis", "prep", "twowardis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twowardys", "prep", "twowardys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geyn", "prep", "geyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝæn", "prep", "ȝæn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝein", "prep", "ȝein", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝean", "prep", "ȝean", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yne", "prep", "yne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tylle", "prep", "tylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saaf", "prep", "saaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saff", "prep", "saff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauff", "prep", "sauff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saunz", "prep", "saunz", "", "", "", "without lacking sans"]) + let v = native_list_append(v, ["sawnz", "prep", "sawnz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauncz", "prep", "sauncz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sance", "prep", "sance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atwene", "prep", "atwene", "", "", "", "between"]) + let v = native_list_append(v, ["nexte", "prep", "nexte", "", "", "", "next"]) + let v = native_list_append(v, ["trugh", "prep", "trugh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twyx", "prep", "twyx", "", "", "", "between"]) + let v = native_list_append(v, ["biside", "prep", "biside", "", "", "", "along next to"]) + let v = native_list_append(v, ["adoun", "prep", "adoun", "", "", "", "down down from"]) + let v = native_list_append(v, ["savynge", "prep", "savynge", "", "", "", "But except for"]) + let v = native_list_append(v, ["vntil", "prep", "vntil", "", "", "", "until"]) + let v = native_list_append(v, ["enuyron", "prep", "enuyron", "", "", "", "about around"]) + let v = native_list_append(v, ["endelong", "prep", "endelong", "", "", "", "along"]) + let v = native_list_append(v, ["out o", "prep", "out o", "", "", "", "out of from."]) + let v = native_list_append(v, ["ute o", "prep", "ute o", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anentes", "prep", "anentes", "", "", "", "against facing"]) + let v = native_list_append(v, ["intyll", "prep", "intyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in tyll", "prep", "in tyll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in til", "prep", "in til", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in till", "prep", "in till", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in-til", "prep", "in-til", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in-till", "prep", "in-till", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in-tyl", "prep", "in-tyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in-tylle", "prep", "in-tylle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["intille", "prep", "intille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in tille", "prep", "in tille", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in tel", "prep", "in tel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thorouȝ", "prep", "thorouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thoruh", "prep", "thoruh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrugh", "prep", "thrugh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thoruȝ", "prep", "thoruȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þoruȝ", "prep", "þoruȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["on", "other", "on", "", "", "", "one"]) + let v = native_list_append(v, ["seven", "other", "seven", "", "", "", "seven"]) + let v = native_list_append(v, ["o", "other", "o", "", "", "", "preconsonantal form of"]) + let v = native_list_append(v, ["one", "other", "one", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["two", "other", "two", "", "", "", "two"]) + let v = native_list_append(v, ["four", "other", "four", "", "", "", "four"]) + let v = native_list_append(v, ["five", "other", "five", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["six", "other", "six", "", "", "", "six"]) + let v = native_list_append(v, ["hund", "other", "hund", "", "", "", "one hundred"]) + let v = native_list_append(v, ["eight", "other", "eight", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nine", "other", "nine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ten", "other", "ten", "", "", "", "ten"]) + let v = native_list_append(v, ["yes", "other", "yes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eleven", "other", "eleven", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twelve", "other", "twelve", "", "", "", "postpositive form of"]) + let v = native_list_append(v, ["thirteen", "other", "thirteen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seventeen", "other", "seventeen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sixteen", "other", "sixteen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twenty", "other", "twenty", "", "", "", "twenty the cardinal"]) + let v = native_list_append(v, ["fifty", "other", "fifty", "", "", "", "fifty"]) + let v = native_list_append(v, ["sixty", "other", "sixty", "", "", "", "sixty the cardinal"]) + let v = native_list_append(v, ["seventy", "other", "seventy", "", "", "", "seventy"]) + let v = native_list_append(v, ["hundred", "other", "hundred", "", "", "", "A hundred 100."]) + let v = native_list_append(v, ["thousand", "other", "thousand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["an", "other", "an", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["not", "other", "not", "", "", "", "contraction of ne"]) + let v = native_list_append(v, ["-able", "other", "-able", "", "", "", "Forming adjectives denoting"]) + let v = native_list_append(v, ["he", "other", "he", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["they", "other", "they", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hay", "other", "hay", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alas", "other", "alas", "", "", "", "alas"]) + let v = native_list_append(v, ["et cetera", "other", "et cetera", "", "", "", "et cetera"]) + let v = native_list_append(v, ["won", "other", "won", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nin", "other", "nin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hey", "other", "hey", "", "", "", "hey"]) + let v = native_list_append(v, ["un-", "other", "un-", "", "", "", "not un-"]) + let v = native_list_append(v, ["sex", "other", "sex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ho", "other", "ho", "", "", "", "stop hold"]) + let v = native_list_append(v, ["etc.", "other", "etc.", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mate", "other", "mate", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["step-", "other", "step-", "", "", "", "step- related through"]) + let v = native_list_append(v, ["-ian", "other", "-ian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ist", "other", "-ist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neen", "other", "neen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hai", "other", "hai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-est", "other", "-est", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-er", "other", "-er", "", "", "", "Reflects Old French"]) + let v = native_list_append(v, ["amen", "other", "amen", "", "", "", "amen"]) + let v = native_list_append(v, ["-ie", "other", "-ie", "", "", "", "A suffix designating"]) + let v = native_list_append(v, ["-y", "other", "-y", "", "", "", "Designates an adjective"]) + let v = native_list_append(v, ["bi-", "other", "bi-", "", "", "", "A prefix forming"]) + let v = native_list_append(v, ["ane", "other", "ane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ous", "other", "-ous", "", "", "", "Forms adjectives from"]) + let v = native_list_append(v, ["-ish", "other", "-ish", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eth", "other", "-eth", "", "", "", "Used to form"]) + let v = native_list_append(v, ["nyen", "other", "nyen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lord", "other", "lord", "", "", "", "Lord an interjection"]) + let v = native_list_append(v, ["com-", "other", "com-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["an-", "other", "an-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ly", "other", "-ly", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-ing", "other", "-ing", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dys-", "other", "dys-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["de-", "other", "de-", "", "", "", "Forms words denoting"]) + let v = native_list_append(v, ["dis-", "other", "dis-", "", "", "", "Forms words denoting"]) + let v = native_list_append(v, ["en-", "other", "en-", "", "", "", "Forms words usually"]) + let v = native_list_append(v, ["for-", "other", "for-", "", "", "", "Forms verbs meaning"]) + let v = native_list_append(v, ["-fold", "other", "-fold", "", "", "", "Forms adjectives meaning"]) + let v = native_list_append(v, ["-ess", "other", "-ess", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ed", "other", "-ed", "", "", "", "Forms the past"]) + let v = native_list_append(v, ["ex-", "other", "ex-", "", "", "", "privation"]) + let v = native_list_append(v, ["y-", "other", "y-", "", "", "", "added to verbs"]) + let v = native_list_append(v, ["con-", "other", "con-", "", "", "", "con- with"]) + let v = native_list_append(v, ["mat", "other", "mat", "", "", "", "Said when the"]) + let v = native_list_append(v, ["þ", "other", "þ", "", "", "", "A letter of"]) + let v = native_list_append(v, ["-ric", "other", "-ric", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-an", "other", "-an", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-al", "other", "-al", "", "", "", "Forms adjectives from"]) + let v = native_list_append(v, ["-ar", "other", "-ar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-like", "other", "-like", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-s", "other", "-s", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-in", "other", "-in", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuo", "other", "tuo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ose", "other", "-ose", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-th", "other", "-th", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["-en", "other", "-en", "", "", "", "Denotes the past"]) + let v = native_list_append(v, ["oo", "other", "oo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twa", "other", "twa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-t", "other", "-t", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fore", "other", "fore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fower", "other", "fower", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-as", "other", "-as", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-e", "other", "-e", "", "", "", "Forms the plural"]) + let v = native_list_append(v, ["-i", "other", "-i", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-is", "other", "-is", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-os", "other", "-os", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-us", "other", "-us", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-all", "other", "-all", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ier", "other", "-ier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-are", "other", "-are", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-re", "other", "-re", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-erie", "other", "-erie", "", "", "", "Forms nouns denoting"]) + let v = native_list_append(v, ["-ful", "other", "-ful", "", "", "", "Appended to nouns"]) + let v = native_list_append(v, ["-ship", "other", "-ship", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ment", "other", "-ment", "", "", "", "Forms nouns from"]) + let v = native_list_append(v, ["-ise", "other", "-ise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ique", "other", "-ique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["on message", "other", "on message", "", "", "", "on an errand"]) + let v = native_list_append(v, ["-ness", "other", "-ness", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nad", "other", "nad", "", "", "", "had not"]) + let v = native_list_append(v, ["-ir", "other", "-ir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-abile", "other", "-abile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þreo", "other", "þreo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hood", "other", "-hood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-son", "other", "-son", "", "", "", "-son"]) + let v = native_list_append(v, ["-et", "other", "-et", "", "", "", "Forms diminutive nouns"]) + let v = native_list_append(v, ["perde", "other", "perde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ion", "other", "-ion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hei", "other", "hei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-chen", "other", "-chen", "", "", "", "Suffix forming diminutives"]) + let v = native_list_append(v, ["-ation", "other", "-ation", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["har", "other", "har", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haven", "other", "haven", "", "", "", "ichave"]) + let v = native_list_append(v, ["mis-", "other", "mis-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hon", "other", "hon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ey", "other", "ey", "", "", "", "An exclamation of"]) + let v = native_list_append(v, ["-ung", "other", "-ung", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-þ", "other", "-þ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-had", "other", "-had", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elleve", "other", "elleve", "", "", "", "preconsonantal form of"]) + let v = native_list_append(v, ["dene", "other", "dene", "", "", "", "ten"]) + let v = native_list_append(v, ["-ig", "other", "-ig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ware", "other", "-ware", "", "", "", "A suffix denoting"]) + let v = native_list_append(v, ["-ez", "other", "-ez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honderd", "other", "honderd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ite", "other", "-ite", "", "", "", "synonym of -te"]) + let v = native_list_append(v, ["-ling", "other", "-ling", "", "", "", "suffix used in"]) + let v = native_list_append(v, ["-dom", "other", "-dom", "", "", "", "Forming nouns denoting"]) + let v = native_list_append(v, ["oon", "other", "oon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ster", "other", "-ster", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ene", "other", "-ene", "", "", "", "used to form"]) + let v = native_list_append(v, ["heil", "other", "heil", "", "", "", "hail!"]) + let v = native_list_append(v, ["-age", "other", "-age", "", "", "", "Forms nouns indicating"]) + let v = native_list_append(v, ["-ance", "other", "-ance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ard", "other", "-ard", "", "", "", "Forming pejorative agent"]) + let v = native_list_append(v, ["-eer", "other", "-eer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wel", "other", "wel", "", "", "", "Used to preface"]) + let v = native_list_append(v, ["-el", "other", "-el", "", "", "", "Forms adjectives meaning"]) + let v = native_list_append(v, ["-es", "other", "-es", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-ive", "other", "-ive", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["i-", "other", "i-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to-", "other", "to-", "", "", "", "Affixed to verbs"]) + let v = native_list_append(v, ["of-", "other", "of-", "", "", "", "away from off"]) + let v = native_list_append(v, ["-eur", "other", "-eur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twelf", "other", "twelf", "", "", "", "twelve"]) + let v = native_list_append(v, ["þusend", "other", "þusend", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onen", "other", "onen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-isc", "other", "-isc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["des-", "other", "des-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["te-", "other", "te-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ere", "other", "-ere", "", "", "", "Forms agent nouns"]) + let v = native_list_append(v, ["-iche", "other", "-iche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-isch", "other", "-isch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-tie", "other", "-tie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ure", "other", "-ure", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["-ic", "other", "-ic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yn", "other", "-yn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-te", "other", "-te", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["fourty", "other", "fourty", "", "", "", "forty"]) + let v = native_list_append(v, ["nai", "other", "nai", "", "", "", "no"]) + let v = native_list_append(v, ["-lic", "other", "-lic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ahte", "other", "ahte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aucht", "other", "aucht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jossa", "other", "jossa", "", "", "", "A command to"]) + let v = native_list_append(v, ["nye", "other", "nye", "", "", "", "preconsonantal form of"]) + let v = native_list_append(v, ["-esse", "other", "-esse", "", "", "", "Denotes a female"]) + let v = native_list_append(v, ["sur-", "other", "sur-", "", "", "", "sur- over on"]) + let v = native_list_append(v, ["thri", "other", "thri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ien", "other", "-ien", "", "", "", "Forms nouns and"]) + let v = native_list_append(v, ["-if", "other", "-if", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["be-", "other", "be-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["or-", "other", "or-", "", "", "", "without void of"]) + let v = native_list_append(v, ["-lyng", "other", "-lyng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ik", "other", "-ik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lica", "other", "-lica", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ce", "other", "-ce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ul", "other", "-ul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ok", "other", "-ok", "", "", "", "suffix forming diminutives"]) + let v = native_list_append(v, ["-nis", "other", "-nis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-asse", "other", "-asse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ete", "other", "-ete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-isce", "other", "-isce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-isse", "other", "-isse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fyve", "other", "fyve", "", "", "", "postpositive form of"]) + let v = native_list_append(v, ["-ande", "other", "-ande", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ende", "other", "-ende", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ouse", "other", "-ouse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ry", "other", "-ry", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-and", "other", "-and", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-end", "other", "-end", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eren", "other", "-eren", "", "", "", "A frequentative suffix"]) + let v = native_list_append(v, ["tuai", "other", "tuai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-linge", "other", "-linge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yne", "other", "-yne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ys", "other", "-ys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ke", "other", "-ke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ken", "other", "-ken", "", "", "", "Forms verbs with"]) + let v = native_list_append(v, ["nowel", "other", "nowel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-d", "other", "-d", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-more", "other", "-more", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-teen", "other", "-teen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ty", "other", "-ty", "", "", "", "-ty forms numeral"]) + let v = native_list_append(v, ["ȝ", "other", "ȝ", "", "", "", "The consonantal letter"]) + let v = native_list_append(v, ["Ȝ", "other", "Ȝ", "", "", "", "The consonantal letter"]) + let v = native_list_append(v, ["foure", "other", "foure", "", "", "", "postpositive form of"]) + let v = native_list_append(v, ["-iere", "other", "-iere", "", "", "", "Forms agent nouns"]) + let v = native_list_append(v, ["and-", "other", "and-", "", "", "", "against back in"]) + let v = native_list_append(v, ["-yl", "other", "-yl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fifte", "other", "fifte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lice", "other", "-lice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vor-", "other", "vor-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-de", "other", "-de", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ike", "other", "-ike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lich", "other", "-lich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-voll", "other", "-voll", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lik", "other", "-lik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weylawey", "other", "weylawey", "", "", "", "A general interjection"]) + let v = native_list_append(v, ["-estre", "other", "-estre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-leas", "other", "-leas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sum", "other", "-sum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-tet", "other", "-tet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nes", "other", "-nes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-els", "other", "-els", "", "", "", "suffix creating nouns"]) + let v = native_list_append(v, ["-ern", "other", "-ern", "", "", "", "Denotes a place"]) + let v = native_list_append(v, ["-ræden", "other", "-ræden", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-red", "other", "-red", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["full-", "other", "full-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-rice", "other", "-rice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-li", "other", "-li", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-las", "other", "-las", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lis", "other", "-lis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-erne", "other", "-erne", "", "", "", "Suffix denoting belonging"]) + let v = native_list_append(v, ["fer-", "other", "fer-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["steop-", "other", "steop-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cyne-", "other", "cyne-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-feald", "other", "-feald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eg", "other", "-eg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eth-", "other", "eth-", "", "", "", "combining form for"]) + let v = native_list_append(v, ["benedicite", "other", "benedicite", "", "", "", "oh my God"]) + let v = native_list_append(v, ["ẏ", "other", "ẏ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ice", "other", "-ice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lei", "other", "-lei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuenti", "other", "tuenti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-inde", "other", "-inde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ich", "other", "-ich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hed", "other", "-hed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-elle", "other", "-elle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eor", "other", "-eor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tene", "other", "tene", "", "", "", "postpostive form of"]) + let v = native_list_append(v, ["-ale", "other", "-ale", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onne", "other", "onne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yon", "other", "-yon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eis", "other", "-eis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ur", "other", "-ur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-our", "other", "-our", "", "", "", "Forms agent nouns"]) + let v = native_list_append(v, ["mes-", "other", "mes-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tway", "other", "tway", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nyn", "other", "nyn", "", "", "", "nine"]) + let v = native_list_append(v, ["sixe", "other", "sixe", "", "", "", "postpositive form of"]) + let v = native_list_append(v, ["-ri", "other", "-ri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þey", "other", "þey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lees", "other", "-lees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nesse", "other", "-nesse", "", "", "", "Affixed to adjectives"]) + let v = native_list_append(v, ["forth-", "other", "forth-", "", "", "", "Prefix meaning forth"]) + let v = native_list_append(v, ["-hede", "other", "-hede", "", "", "", "Affixed to nouns"]) + let v = native_list_append(v, ["by-", "other", "by-", "", "", "", "A prefix forming"]) + let v = native_list_append(v, ["parde", "other", "parde", "", "", "", "By God!"]) + let v = native_list_append(v, ["-ell", "other", "-ell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yester-", "other", "yester-", "", "", "", "Of the preceding"]) + let v = native_list_append(v, ["-yer", "other", "-yer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þusand", "other", "þusand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sexti", "other", "sexti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["& cetera", "other", "& cetera", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝe-", "other", "ȝe-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ten", "other", "-ten", "", "", "", "used to form"]) + let v = native_list_append(v, ["-som", "other", "-som", "", "", "", "-some having a"]) + let v = native_list_append(v, ["at-", "other", "at-", "", "", "", "Prefix meaning away"]) + let v = native_list_append(v, ["far-", "other", "far-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ǒ", "other", "ǒ", "", "", "", "A variation of"]) + let v = native_list_append(v, ["-eng", "other", "-eng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nof", "other", "nof", "", "", "", "not of nor"]) + let v = native_list_append(v, ["-vol", "other", "-vol", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yis", "other", "yis", "", "", "", "yes"]) + let v = native_list_append(v, ["-tene", "other", "-tene", "", "", "", "Forms cardinal numbers"]) + let v = native_list_append(v, ["-ey", "other", "-ey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iss", "other", "-iss", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kine-", "other", "kine-", "", "", "", "royal of a"]) + let v = native_list_append(v, ["heigh", "other", "heigh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neghen", "other", "neghen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twe", "other", "twe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þei", "other", "þei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nart", "other", "nart", "", "", "", "Contraction of ne"]) + let v = native_list_append(v, ["nost", "other", "nost", "", "", "", "Contraction of ne"]) + let v = native_list_append(v, ["-ior", "other", "-ior", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-le", "other", "-le", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-acion", "other", "-acion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-art", "other", "-art", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["artow", "other", "artow", "", "", "", "art thou"]) + let v = native_list_append(v, ["nath", "other", "nath", "", "", "", "hath not"]) + let v = native_list_append(v, ["ful-", "other", "ful-", "", "", "", "full fully perfectly"]) + let v = native_list_append(v, ["niste", "other", "niste", "", "", "", "ne wiste did"]) + let v = native_list_append(v, ["nolde", "other", "nolde", "", "", "", "would not"]) + let v = native_list_append(v, ["parfay", "other", "parfay", "", "", "", "By my faith"]) + let v = native_list_append(v, ["thre", "other", "thre", "", "", "", "three"]) + let v = native_list_append(v, ["depardieux", "other", "depardieux", "", "", "", "In Gods name"]) + let v = native_list_append(v, ["twei", "other", "twei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrittene", "other", "thrittene", "", "", "", "thirteen"]) + let v = native_list_append(v, ["thei", "other", "thei", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-ren", "other", "-ren", "", "", "", "Used to form"]) + let v = native_list_append(v, ["usedestou", "other", "usedestou", "", "", "", "Contraction of usedest"]) + let v = native_list_append(v, ["twenti", "other", "twenti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fifti", "other", "fifti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seventi", "other", "seventi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clum", "other", "clum", "", "", "", "quiet silence hush"]) + let v = native_list_append(v, ["sour-", "other", "sour-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perdy", "other", "perdy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ele", "other", "-ele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kin-", "other", "kin-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ore", "other", "-ore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["th-", "other", "th-", "", "", "", "the written with"]) + let v = native_list_append(v, ["-il", "other", "-il", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zuo by hit", "other", "zuo by hit", "", "", "", "so be it"]) + let v = native_list_append(v, ["nyne", "other", "nyne", "", "", "", "postpositive form of"]) + let v = native_list_append(v, ["twy", "other", "twy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ison", "other", "-ison", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ser-", "other", "ser-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ninty", "other", "ninty", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ige", "other", "-ige", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ti", "other", "-ti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ta-", "other", "ta-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-fald", "other", "-fald", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thrie", "other", "thrie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-erd", "other", "-erd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toe-", "other", "toe-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heyl", "other", "heyl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-illis", "other", "-illis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["twelfe", "other", "twelfe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ef", "other", "-ef", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maideux", "other", "maideux", "", "", "", "so help me"]) + let v = native_list_append(v, ["sor-", "other", "sor-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chek", "other", "chek", "", "", "", "Said when the"]) + let v = native_list_append(v, ["Newell", "other", "Newell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-full", "other", "-full", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-dum", "other", "-dum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundreth", "other", "hundreth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viftene", "other", "viftene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-enge", "other", "-enge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-abil", "other", "-abil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thother", "other", "thother", "", "", "", "the other"]) + let v = native_list_append(v, ["-elis", "other", "-elis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seve", "other", "seve", "", "", "", "preconsonantal form of"]) + let v = native_list_append(v, ["-nisse", "other", "-nisse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-chin", "other", "-chin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ech", "other", "-ech", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tu-", "other", "tu-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ans", "other", "-ans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-elen", "other", "-elen", "", "", "", "A frequentative suffix"]) + let v = native_list_append(v, ["yond-", "other", "yond-", "", "", "", "a prefix meaning"]) + let v = native_list_append(v, ["-eel", "other", "-eel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Nowell", "other", "Nowell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["n'ere", "other", "n'ere", "", "", "", "werent"]) + let v = native_list_append(v, ["-the", "other", "-the", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["ste-", "other", "ste-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pardy", "other", "pardy", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eighte", "other", "eighte", "", "", "", "eight"]) + let v = native_list_append(v, ["elleven", "other", "elleven", "", "", "", "eleven"]) + let v = native_list_append(v, ["-les", "other", "-les", "", "", "", "Lacking something without"]) + let v = native_list_append(v, ["-lese", "other", "-lese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lesse", "other", "-lesse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lasse", "other", "-lasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lise", "other", "-lise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lease", "other", "-lease", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-læs", "other", "-læs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-leæs", "other", "-leæs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lies", "other", "-lies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-liese", "other", "-liese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lez", "other", "-lez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lyas", "other", "-lyas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lyese", "other", "-lyese", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-liche", "other", "-liche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lichere", "other", "-lichere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lyest", "other", "-lyest", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["ȝustir-", "other", "ȝustir-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yister-", "other", "yister-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yistyr-", "other", "yistyr-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yuster-", "other", "yuster-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yestir-", "other", "yestir-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nece", "other", "-nece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nesce", "other", "-nesce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-næse", "other", "-næse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-næs", "other", "-næs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-nez", "other", "-nez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lyche", "other", "-lyche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lych", "other", "-lych", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lie", "other", "-lie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lye", "other", "-lye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-licke", "other", "-licke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lyke", "other", "-lyke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lyk", "other", "-lyk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lycke", "other", "-lycke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-leche", "other", "-leche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-loche", "other", "-loche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-liȝ", "other", "-liȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-lece", "other", "-lece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-luche", "other", "-luche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-luch", "other", "-luch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tou-", "other", "tou-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuo-", "other", "tuo-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["two-", "other", "two-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tow-", "other", "tow-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Nowel", "other", "Nowel", "", "", "", "A gleeful exclamation"]) + let v = native_list_append(v, ["aboven þe mone", "other", "aboven þe mone", "", "", "", "In the sky"]) + let v = native_list_append(v, ["under þe mone", "other", "under þe mone", "", "", "", "On earth."]) + let v = native_list_append(v, ["under mone", "other", "under mone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anunder þe mone", "other", "anunder þe mone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anunder mone", "other", "anunder mone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in þe croke of þe mone", "other", "in þe croke of þe mone", "", "", "", "During the waxing"]) + let v = native_list_append(v, ["in þe newe of þe mone", "other", "in þe newe of þe mone", "", "", "", "During the time"]) + let v = native_list_append(v, ["at þe fulle of þe mone", "other", "at þe fulle of þe mone", "", "", "", "During the time"]) + let v = native_list_append(v, ["at fulle of þe mone", "other", "at fulle of þe mone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in the fulle of þe mone", "other", "in the fulle of þe mone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["under þe sonne", "other", "under þe sonne", "", "", "", "On earth."]) + let v = native_list_append(v, ["anunder sonne", "other", "anunder sonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["under sonne", "other", "under sonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anunder þe sonne", "other", "anunder þe sonne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yssh", "other", "-yssh", "", "", "", "Affixed to nouns"]) + let v = native_list_append(v, ["-ysshe", "other", "-ysshe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yssch", "other", "-yssch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yssche", "other", "-yssche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ysh", "other", "-ysh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ishe", "other", "-ishe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yshe", "other", "-yshe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iȝsh", "other", "-iȝsh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yȝsh", "other", "-yȝsh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ishs", "other", "-ishs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yshs", "other", "-yshs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-esh", "other", "-esh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eshe", "other", "-eshe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ysse", "other", "-ysse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yse", "other", "-yse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ijs", "other", "-ijs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ysce", "other", "-ysce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yssce", "other", "-yssce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-issce", "other", "-issce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yche", "other", "-yche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ych", "other", "-ych", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sæ", "other", "-sæ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ysc", "other", "-ysc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ychs", "other", "-ychs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ichs", "other", "-ichs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iske", "other", "-iske", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yske", "other", "-yske", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yf", "other", "-yf", "", "", "", "A suffix designating"]) + let v = native_list_append(v, ["-ye", "other", "-ye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iȝ", "other", "-iȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-iȝe", "other", "-iȝe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ege", "other", "-ege", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yfe", "other", "-yfe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ife", "other", "-ife", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-yve", "other", "-yve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-don", "other", "-don", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ische", "other", "-ische", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hyede", "other", "-hyede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hiede", "other", "-hiede", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-heed", "other", "-heed", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hode", "other", "-hode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hod", "other", "-hod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hoode", "other", "-hoode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hade", "other", "-hade", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ood", "other", "-ood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hote", "other", "-hote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hot", "other", "-hot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-hoþ", "other", "-hoþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-wood", "other", "-wood", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schipe", "other", "-schipe", "", "", "", "Affixed to nouns"]) + let v = native_list_append(v, ["-schip", "other", "-schip", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schippe", "other", "-schippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schipp", "other", "-schipp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schype", "other", "-schype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schyp", "other", "-schyp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schyppe", "other", "-schyppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-schypp", "other", "-schypp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shipe", "other", "-shipe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shippe", "other", "-shippe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shipp", "other", "-shipp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shype", "other", "-shype", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shyp", "other", "-shyp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shyppe", "other", "-shyppe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-shypp", "other", "-shypp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-chepp", "other", "-chepp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sipe", "other", "-sipe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["and", "conj", "and", "", "", "", "and and then"]) + let v = native_list_append(v, ["but", "conj", "but", "", "", "", "but"]) + let v = native_list_append(v, ["of", "conj", "of", "", "", "", "until"]) + let v = native_list_append(v, ["or", "conj", "or", "", "", "", "or"]) + let v = native_list_append(v, ["for", "conj", "for", "", "", "", "for"]) + let v = native_list_append(v, ["an", "conj", "an", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to", "conj", "to", "", "", "", "until"]) + let v = native_list_append(v, ["as", "conj", "as", "", "", "", "as"]) + let v = native_list_append(v, ["other", "conj", "other", "", "", "", "synonym of or"]) + let v = native_list_append(v, ["that", "conj", "that", "", "", "", "that connecting a"]) + let v = native_list_append(v, ["both", "conj", "both", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["how", "conj", "how", "", "", "", "how"]) + let v = native_list_append(v, ["safe", "conj", "safe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["save", "conj", "save", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["they", "conj", "they", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["when", "conj", "when", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sin", "conj", "sin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["though", "conj", "though", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["won", "conj", "won", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["if", "conj", "if", "", "", "", "if on condition"]) + let v = native_list_append(v, ["than", "conj", "than", "", "", "", "than"]) + let v = native_list_append(v, ["bath", "conj", "bath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ni", "conj", "ni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ne", "conj", "ne", "", "", "", "nor and not"]) + let v = native_list_append(v, ["ac", "conj", "ac", "", "", "", "but"]) + let v = native_list_append(v, ["wan", "conj", "wan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ny", "conj", "ny", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afore", "conj", "afore", "", "", "", "before afore in"]) + let v = native_list_append(v, ["bathe", "conj", "bathe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ok", "conj", "ok", "", "", "", "But nevertheless on"]) + let v = native_list_append(v, ["savant", "conj", "savant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wane", "conj", "wane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fore", "conj", "fore", "", "", "", "therefore"]) + let v = native_list_append(v, ["yiff", "conj", "yiff", "", "", "", "if"]) + let v = native_list_append(v, ["elles", "conj", "elles", "", "", "", "else"]) + let v = native_list_append(v, ["til", "conj", "til", "", "", "", "until till"]) + let v = native_list_append(v, ["nought", "conj", "nought", "", "", "", "and not"]) + let v = native_list_append(v, ["ake", "conj", "ake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauf", "conj", "sauf", "", "", "", "But rather on"]) + let v = native_list_append(v, ["hwænne", "conj", "hwænne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þeah", "conj", "þeah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whan", "conj", "whan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yliche", "conj", "yliche", "", "", "", "in the same"]) + let v = native_list_append(v, ["oc", "conj", "oc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quan", "conj", "quan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þah", "conj", "þah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savun", "conj", "savun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þat", "conj", "þat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atte", "conj", "atte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["withoute", "conj", "withoute", "", "", "", "unless except introducing"]) + let v = native_list_append(v, ["yit", "conj", "yit", "", "", "", "yet"]) + let v = native_list_append(v, ["yif", "conj", "yif", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tofore", "conj", "tofore", "", "", "", "Indicates that the"]) + let v = native_list_append(v, ["thereas", "conj", "thereas", "", "", "", "where in the"]) + let v = native_list_append(v, ["sawe", "conj", "sawe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þey", "conj", "þey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wannen", "conj", "wannen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boþe", "conj", "boþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þou", "conj", "þou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þanne", "conj", "þanne", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["forthi", "conj", "forthi", "", "", "", "For that because"]) + let v = native_list_append(v, ["whanne", "conj", "whanne", "", "", "", "when"]) + let v = native_list_append(v, ["hwon", "conj", "hwon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylike", "conj", "ylike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wherso", "conj", "wherso", "", "", "", "wherever in whatever"]) + let v = native_list_append(v, ["þei", "conj", "þei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þoh", "conj", "þoh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["outher", "conj", "outher", "", "", "", "either"]) + let v = native_list_append(v, ["thei", "conj", "thei", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["whilis", "conj", "whilis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bothe", "conj", "bothe", "", "", "", "both including both"]) + let v = native_list_append(v, ["hwanne", "conj", "hwanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sithen", "conj", "sithen", "", "", "", "From or since"]) + let v = native_list_append(v, ["wanne", "conj", "wanne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thogh", "conj", "thogh", "", "", "", "Although even though"]) + let v = native_list_append(v, ["saf", "conj", "saf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["occ", "conj", "occ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toforn", "conj", "toforn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tofor", "conj", "tofor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to-for", "conj", "to-for", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to-forn", "conj", "to-forn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to-fore", "conj", "to-fore", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhile", "conj", "towhile", "", "", "", "For as long"]) + let v = native_list_append(v, ["towhyle", "conj", "towhyle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to while", "conj", "to while", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whyle", "conj", "to whyle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toquile", "conj", "toquile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to quile", "conj", "to quile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhiles", "conj", "towhiles", "", "", "", "For as long"]) + let v = native_list_append(v, ["towhyles", "conj", "towhyles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhils", "conj", "towhils", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhyls", "conj", "towhyls", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhilis", "conj", "towhilis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhylis", "conj", "towhylis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhilys", "conj", "towhilys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towhylys", "conj", "towhylys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towiles", "conj", "towiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["towyles", "conj", "towyles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whiles", "conj", "to whiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whyles", "conj", "to whyles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whils", "conj", "to whils", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whyls", "conj", "to whyls", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whilis", "conj", "to whilis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whylis", "conj", "to whylis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whilys", "conj", "to whilys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to whylys", "conj", "to whylys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to wiles", "conj", "to wiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to wyles", "conj", "to wyles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toquils", "conj", "toquils", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toquilis", "conj", "toquilis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toquilist", "conj", "toquilist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toquilest", "conj", "toquilest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to quils", "conj", "to quils", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to quilis", "conj", "to quilis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to quilist", "conj", "to quilist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["to quilest", "conj", "to quilest", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toyenes", "conj", "toyenes", "", "", "", "Until."]) + let v = native_list_append(v, ["toȝenste", "conj", "toȝenste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toȝenst", "conj", "toȝenst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["booþ", "conj", "booþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boðe", "conj", "boðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baþe", "conj", "baþe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baðe", "conj", "baðe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þouȝ", "conj", "þouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thouȝ", "conj", "thouȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saaf", "conj", "saaf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sawf", "conj", "sawf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saff", "conj", "saff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sauff", "conj", "sauff", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whenne", "conj", "whenne", "", "", "", "whence"]) + let v = native_list_append(v, ["whane", "conj", "whane", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ȝwan", "conj", "ȝwan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whon", "conj", "whon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["whone", "conj", "whone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wherwith", "conj", "wherwith", "", "", "", "whereupon"]) + let v = native_list_append(v, ["thatte", "conj", "thatte", "", "", "", "that"]) + let v = native_list_append(v, ["annd", "conj", "annd", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savynge", "conj", "savynge", "", "", "", "But that except."]) + let v = native_list_append(v, ["savand", "conj", "savand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savinge", "conj", "savinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savyng", "conj", "savyng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saveng", "conj", "saveng", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nouther", "conj", "nouther", "", "", "", "neither nor"]) + let v = native_list_append(v, ["les te", "conj", "les te", "", "", "", "less that"]) + let v = native_list_append(v, ["þohh", "conj", "þohh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þowgh", "conj", "þowgh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þof", "conj", "þof", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þoch", "conj", "þoch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þaugh", "conj", "þaugh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þaȝ", "conj", "þaȝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thowh", "conj", "thowh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thegh", "conj", "thegh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["neiþer", "conj", "neiþer", "", "", "", "neither"]) + let v = native_list_append(v, ["ocke", "conj", "ocke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["at", "particle", "at", "", "", "", "to infinitive-marker"]) + let v = native_list_append(v, ["to", "particle", "to", "", "", "", "to infinitive marker"]) + let v = native_list_append(v, ["oo", "particle", "oo", "", "", "", "alternative form of"]) + return v +} + +fn vocab_enm_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_enm_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-fro.el b/elp/src/vocabulary-fro.el new file mode 100644 index 0000000..79d8431 --- /dev/null +++ b/elp/src/vocabulary-fro.el @@ -0,0 +1,9024 @@ +// vocabulary-fro.el — Old French vocabulary seed +// 9003 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 9079 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_fro_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["cat", "noun", "caz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["livre", "noun", "livres", "", "", "", "book collection of"]) + let v = native_list_append(v, ["chien", "noun", "chiens", "", "", "", "dog Canis lupus"]) + let v = native_list_append(v, ["pie", "noun", "pies", "", "", "", "magpie"]) + let v = native_list_append(v, ["noun", "noun", "nouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minute", "noun", "minutes", "", "", "", "minute one sixtieth"]) + let v = native_list_append(v, ["fable", "noun", "fables", "", "", "", "fable story"]) + let v = native_list_append(v, ["abit", "noun", "abiz", "", "", "", "item of clothing"]) + let v = native_list_append(v, ["servant", "noun", "servanz", "", "", "", "servant one who"]) + let v = native_list_append(v, ["abusion", "noun", "abusions", "", "", "", "abuse"]) + let v = native_list_append(v, ["alien", "noun", "aliens", "", "", "", "alien a non-native"]) + let v = native_list_append(v, ["summer", "noun", "summers", "", "", "", "summer pack horse"]) + let v = native_list_append(v, ["jeudi", "noun", "jeudis", "", "", "", "Thursday"]) + let v = native_list_append(v, ["color", "noun", "colors", "", "", "", "color / colour"]) + let v = native_list_append(v, ["orange", "noun", "oranges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quarter", "noun", "quarters", "", "", "", "quarter one fourth"]) + let v = native_list_append(v, ["parole", "noun", "paroles", "", "", "", "word"]) + let v = native_list_append(v, ["point", "noun", "poinz", "", "", "", "a sting a"]) + let v = native_list_append(v, ["port", "noun", "porz", "", "", "", "port for watercraft"]) + let v = native_list_append(v, ["Edward", "noun", "Edward", "", "", "", "a male given"]) + let v = native_list_append(v, ["os", "noun", "os", "", "", "", "bone"]) + let v = native_list_append(v, ["date", "noun", "dates", "", "", "", "date point in"]) + let v = native_list_append(v, ["language", "noun", "languages", "", "", "", "language style of"]) + let v = native_list_append(v, ["bot", "noun", "boz", "", "", "", "toad animal"]) + let v = native_list_append(v, ["langue", "noun", "langues", "", "", "", "tongue"]) + let v = native_list_append(v, ["France", "noun", "France", "", "", "", "France a country"]) + let v = native_list_append(v, ["inflation", "noun", "inflations", "", "", "", "swelling"]) + let v = native_list_append(v, ["wage", "noun", "wages", "", "", "", "wave moving part"]) + let v = native_list_append(v, ["fruit", "noun", "fruiz", "", "", "", "fruit"]) + let v = native_list_append(v, ["religion", "noun", "religions", "", "", "", "religion"]) + let v = native_list_append(v, ["market", "noun", "markés", "", "", "", "market venue where"]) + let v = native_list_append(v, ["mars", "noun", "mars", "", "", "", "March month"]) + let v = native_list_append(v, ["ami", "noun", "amis", "", "", "", "friend"]) + let v = native_list_append(v, ["abstinence", "noun", "abstinences", "", "", "", "abstinence act or"]) + let v = native_list_append(v, ["poison", "noun", "poisons", "", "", "", "poison"]) + let v = native_list_append(v, ["general", "noun", "generaus", "", "", "", "general"]) + let v = native_list_append(v, ["tigre", "noun", "tigres", "", "", "", "tiger"]) + let v = native_list_append(v, ["cane", "noun", "canes", "", "", "", "tube"]) + let v = native_list_append(v, ["duel", "noun", "dueus", "", "", "", "sadness grief sorrow"]) + let v = native_list_append(v, ["nature", "noun", "natures", "", "", "", "nature natural world"]) + let v = native_list_append(v, ["latin", "noun", "latin", "", "", "", "Latin language"]) + let v = native_list_append(v, ["or", "noun", "ors", "", "", "", "gold metal"]) + let v = native_list_append(v, ["sol", "noun", "sous", "", "", "", "sol an Old"]) + let v = native_list_append(v, ["humor", "noun", "humor", "", "", "", "humor one of"]) + let v = native_list_append(v, ["an", "noun", "anz", "", "", "", "year"]) + let v = native_list_append(v, ["article", "noun", "articles", "", "", "", "joint articulation"]) + let v = native_list_append(v, ["case", "noun", "cases", "", "", "", "case"]) + let v = native_list_append(v, ["future", "noun", "futures", "", "", "", "future tense"]) + let v = native_list_append(v, ["interjection", "noun", "interjections", "", "", "", "exclamation"]) + let v = native_list_append(v, ["air", "noun", "airs", "", "", "", "air mixture of"]) + let v = native_list_append(v, ["angle", "noun", "angles", "", "", "", "angel biblical being"]) + let v = native_list_append(v, ["art", "noun", "arz", "", "", "", "art skill practice"]) + let v = native_list_append(v, ["as", "noun", "as", "", "", "", "a score of"]) + let v = native_list_append(v, ["accident", "noun", "accidenz", "", "", "", "accident chance occurrence"]) + let v = native_list_append(v, ["adamant", "noun", "adamanz", "", "", "", "adamant diamond"]) + let v = native_list_append(v, ["parent", "noun", "parenz", "", "", "", "parent"]) + let v = native_list_append(v, ["uncle", "noun", "uncles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niece", "noun", "nieces", "", "", "", "niece"]) + let v = native_list_append(v, ["non", "noun", "nons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["car", "noun", "cars", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["male", "noun", "males", "", "", "", "pack bag"]) + let v = native_list_append(v, ["rue", "noun", "rues", "", "", "", "rue plant"]) + let v = native_list_append(v, ["habit", "noun", "habiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rat", "noun", "raz", "", "", "", "rat rodent"]) + let v = native_list_append(v, ["tan", "noun", "tans", "", "", "", "pulped oak bark"]) + let v = native_list_append(v, ["olive", "noun", "olive", "", "", "", "olive tree"]) + let v = native_list_append(v, ["rose", "noun", "roses", "", "", "", "rose flower"]) + let v = native_list_append(v, ["taupe", "noun", "taupes", "", "", "", "mole mammal"]) + let v = native_list_append(v, ["om", "noun", "om", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colour", "noun", "colours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mosque", "noun", "mosque", "", "", "", "mosque"]) + let v = native_list_append(v, ["bat", "noun", "batz", "", "", "", "boat"]) + let v = native_list_append(v, ["bran", "noun", "brans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vers", "noun", "vers", "", "", "", "verse poetry"]) + let v = native_list_append(v, ["vert", "noun", "verz", "", "", "", "green"]) + let v = native_list_append(v, ["piece", "noun", "pieces", "", "", "", "piece bit part"]) + let v = native_list_append(v, ["jargon", "noun", "jargons", "", "", "", "talk chatter conversation"]) + let v = native_list_append(v, ["us", "noun", "us", "", "", "", "tradition or custom"]) + let v = native_list_append(v, ["bruit", "noun", "bruiz", "", "", "", "noise sounds"]) + let v = native_list_append(v, ["talent", "noun", "talenz", "", "", "", "desire wish to"]) + let v = native_list_append(v, ["face", "noun", "faces", "", "", "", "face"]) + let v = native_list_append(v, ["sale", "noun", "sales", "", "", "", "room subsection of"]) + let v = native_list_append(v, ["pavement", "noun", "pavemenz", "", "", "", "a paved room"]) + let v = native_list_append(v, ["chat", "noun", "chaz", "", "", "", "cat animal"]) + let v = native_list_append(v, ["jaune", "noun", "jaunes", "", "", "", "yellow"]) + let v = native_list_append(v, ["voir", "noun", "voirs", "", "", "", "the truth"]) + let v = native_list_append(v, ["usage", "noun", "usages", "", "", "", "usage use"]) + let v = native_list_append(v, ["leche", "noun", "leches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["force", "noun", "forces", "", "", "", "strength might"]) + let v = native_list_append(v, ["pain", "noun", "painz", "", "", "", "bread"]) + let v = native_list_append(v, ["science", "noun", "science", "", "", "", "knowledge wisdom"]) + let v = native_list_append(v, ["oil", "noun", "ouz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ber", "noun", "ber", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vapor", "noun", "vapors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chose", "noun", "choses", "", "", "", "thing miscellaneous object"]) + let v = native_list_append(v, ["come", "noun", "comes", "", "", "", "head of hair"]) + let v = native_list_append(v, ["cost", "noun", "coz", "", "", "", "cost financial outlay"]) + let v = native_list_append(v, ["dart", "noun", "darz", "", "", "", "spear javelin"]) + let v = native_list_append(v, ["lie", "noun", "lies", "", "", "", "dregs mostly solid"]) + let v = native_list_append(v, ["lit", "noun", "liz", "", "", "", "bed"]) + let v = native_list_append(v, ["mal", "noun", "maus", "", "", "", "evil"]) + let v = native_list_append(v, ["cable", "noun", "cables", "", "", "", "Old Northern French"]) + let v = native_list_append(v, ["substance", "noun", "substances", "", "", "", "most essential substantial"]) + let v = native_list_append(v, ["brief", "noun", "briés", "", "", "", "letter or statement"]) + let v = native_list_append(v, ["ducat", "noun", "ducaz", "", "", "", "ducat historical coin"]) + let v = native_list_append(v, ["comparison", "noun", "comparisons", "", "", "", "comparison instance of"]) + let v = native_list_append(v, ["chance", "noun", "chances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chancel", "noun", "chanceaus", "", "", "", "chancel"]) + let v = native_list_append(v, ["cause", "noun", "causes", "", "", "", "cause"]) + let v = native_list_append(v, ["change", "noun", "changes", "", "", "", "change difference between"]) + let v = native_list_append(v, ["balance", "noun", "balances", "", "", "", "scales weighing scales"]) + let v = native_list_append(v, ["base", "noun", "bases", "", "", "", "base bottom part"]) + let v = native_list_append(v, ["blanket", "noun", "blankez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["effect", "noun", "effecz", "", "", "", "effect"]) + let v = native_list_append(v, ["difference", "noun", "differences", "", "", "", "difference"]) + let v = native_list_append(v, ["crisis", "noun", "crisis", "", "", "", "crisis emergency urgent"]) + let v = native_list_append(v, ["falcon", "noun", "falcons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["camel", "noun", "cameus", "", "", "", "camel"]) + let v = native_list_append(v, ["ermine", "noun", "ermines", "", "", "", "ermine fabric"]) + let v = native_list_append(v, ["bien", "noun", "biens", "", "", "", "possession object of"]) + let v = native_list_append(v, ["Christian", "noun", "Christian", "", "", "", "a male given"]) + let v = native_list_append(v, ["plate", "noun", "plates", "", "", "", "a flat metal"]) + let v = native_list_append(v, ["if", "noun", "is", "", "", "", "yew"]) + let v = native_list_append(v, ["hospital", "noun", "hospitaus", "", "", "", "hospital medical"]) + let v = native_list_append(v, ["metal", "noun", "metaus", "", "", "", "metal material"]) + let v = native_list_append(v, ["flame", "noun", "flames", "", "", "", "flame"]) + let v = native_list_append(v, ["space", "noun", "spaces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volume", "noun", "volume", "", "", "", "volume specifically a"]) + let v = native_list_append(v, ["none", "noun", "nones", "", "", "", "noon the ninth"]) + let v = native_list_append(v, ["fil", "noun", "fiz", "", "", "", "son male child"]) + let v = native_list_append(v, ["covenant", "noun", "covenanz", "", "", "", "covenant"]) + let v = native_list_append(v, ["prince", "noun", "princes", "", "", "", "prince"]) + let v = native_list_append(v, ["empire", "noun", "empires", "", "", "", "empire"]) + let v = native_list_append(v, ["baron", "noun", "barons", "", "", "", "baron title of"]) + let v = native_list_append(v, ["digestion", "noun", "digestions", "", "", "", "digestion"]) + let v = native_list_append(v, ["people", "noun", "peoples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["san", "noun", "sans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewe", "noun", "ewes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["femme", "noun", "femmes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cheval", "noun", "chevaus", "", "", "", "horse"]) + let v = native_list_append(v, ["home", "noun", "homes", "", "", "", "man male adult"]) + let v = native_list_append(v, ["ore", "noun", "ores", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poor", "noun", "poors", "", "", "", "fear"]) + let v = native_list_append(v, ["orient", "noun", "orient", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hanap", "noun", "hanas", "", "", "", "hanap goblet"]) + let v = native_list_append(v, ["nuit", "noun", "nuiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lies", "noun", "lies", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["pomme", "noun", "pommes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kernel", "noun", "kerneaus", "", "", "", "crenel space in"]) + let v = native_list_append(v, ["paper", "noun", "papers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["image", "noun", "images", "", "", "", "sight something which"]) + let v = native_list_append(v, ["labour", "noun", "labours", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["passage", "noun", "passages", "", "", "", "passage part of"]) + let v = native_list_append(v, ["famine", "noun", "famines", "", "", "", "famine"]) + let v = native_list_append(v, ["avoir", "noun", "avoirs", "", "", "", "possession good"]) + let v = native_list_append(v, ["rein", "noun", "reinz", "", "", "", "kidney"]) + let v = native_list_append(v, ["ham", "noun", "hans", "", "", "", "village"]) + let v = native_list_append(v, ["cop", "noun", "cos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dame", "noun", "dames", "", "", "", "lady woman"]) + let v = native_list_append(v, ["eve", "noun", "eves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eclipse", "noun", "eclipses", "", "", "", "eclipse"]) + let v = native_list_append(v, ["mot", "noun", "moz", "", "", "", "word"]) + let v = native_list_append(v, ["soleil", "noun", "soleuz", "", "", "", "sun star"]) + let v = native_list_append(v, ["arbre", "noun", "arbres", "", "", "", "tree"]) + let v = native_list_append(v, ["flor", "noun", "flors", "", "", "", "flower"]) + let v = native_list_append(v, ["musique", "noun", "musiques", "", "", "", "music"]) + let v = native_list_append(v, ["cor", "noun", "cors", "", "", "", "horn musical instrument"]) + let v = native_list_append(v, ["miel", "noun", "mieus", "", "", "", "honey sticky sweet"]) + let v = native_list_append(v, ["con", "noun", "cons", "", "", "", "cunt human female"]) + let v = native_list_append(v, ["test", "noun", "tez", "", "", "", "clay"]) + let v = native_list_append(v, ["lune", "noun", "lune", "", "", "", "the Moon"]) + let v = native_list_append(v, ["Paris", "noun", "Paris", "", "", "", "Paris the capital"]) + let v = native_list_append(v, ["munt", "noun", "munz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sphere", "noun", "spheres", "", "", "", "sphere shape"]) + let v = native_list_append(v, ["beverage", "noun", "beverages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poisson", "noun", "poissons", "", "", "", "fish"]) + let v = native_list_append(v, ["mer", "noun", "mers", "", "", "", "sea large body"]) + let v = native_list_append(v, ["tort", "noun", "torz", "", "", "", "wrong misdeed something"]) + let v = native_list_append(v, ["prune", "noun", "prunes", "", "", "", "plum fruit"]) + let v = native_list_append(v, ["premier", "noun", "premiers", "", "", "", "first"]) + let v = native_list_append(v, ["pressure", "noun", "pressures", "", "", "", "pressure action or"]) + let v = native_list_append(v, ["ol", "noun", "ialz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["influence", "noun", "influences", "", "", "", "inundation flooding influx"]) + let v = native_list_append(v, ["pot", "noun", "poz", "", "", "", "pot storage/cooking vessel"]) + let v = native_list_append(v, ["lu", "noun", "lus", "", "", "", "wolf"]) + let v = native_list_append(v, ["maire", "noun", "maires", "", "", "", "a senior public"]) + let v = native_list_append(v, ["parlement", "noun", "parlemenz", "", "", "", "discussion discourse debate"]) + let v = native_list_append(v, ["vache", "noun", "vaches", "", "", "", "cow bovine"]) + let v = native_list_append(v, ["jet", "noun", "jet", "", "", "", "throw"]) + let v = native_list_append(v, ["Breton", "noun", "Bretons", "", "", "", "Breton native or"]) + let v = native_list_append(v, ["champion", "noun", "champion", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["langage", "noun", "langages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mission", "noun", "missions", "", "", "", "expense cost outlay"]) + let v = native_list_append(v, ["forest", "noun", "forez", "", "", "", "royal hunting ground"]) + let v = native_list_append(v, ["ele", "noun", "eles", "", "", "", "wing anatomy"]) + let v = native_list_append(v, ["college", "noun", "colleges", "", "", "", "institution organization an"]) + let v = native_list_append(v, ["mast", "noun", "maz", "", "", "", "mast structure found"]) + let v = native_list_append(v, ["Charles", "noun", "Charles", "", "", "", "nominative of Charlon"]) + let v = native_list_append(v, ["janvier", "noun", "janviers", "", "", "", "January month"]) + let v = native_list_append(v, ["jambe", "noun", "jambes", "", "", "", "leg"]) + let v = native_list_append(v, ["cosine", "noun", "cosines", "", "", "", "cousin"]) + let v = native_list_append(v, ["sine", "noun", "sines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["union", "noun", "unions", "", "", "", "unity union"]) + let v = native_list_append(v, ["province", "noun", "provinces", "", "", "", "province subdivision of"]) + let v = native_list_append(v, ["damage", "noun", "damages", "", "", "", "damage"]) + let v = native_list_append(v, ["temple", "noun", "temples", "", "", "", "temple"]) + let v = native_list_append(v, ["solstice", "noun", "solstices", "", "", "", "solstice"]) + let v = native_list_append(v, ["Rome", "noun", "Rome", "", "", "", "Rome a city"]) + let v = native_list_append(v, ["noise", "noun", "noises", "", "", "", "dispute argument"]) + let v = native_list_append(v, ["vent", "noun", "venz", "", "", "", "wind movement of"]) + let v = native_list_append(v, ["papier", "noun", "papiers", "", "", "", "reed rush"]) + let v = native_list_append(v, ["serpent", "noun", "serpenz", "", "", "", "snake"]) + let v = native_list_append(v, ["sel", "noun", "seaus", "", "", "", "salt"]) + let v = native_list_append(v, ["Nicolas", "noun", "Nicolas", "", "", "", "a male given"]) + let v = native_list_append(v, ["Nicholas", "noun", "Nicholas", "", "", "", "a male given"]) + let v = native_list_append(v, ["volt", "noun", "volz", "", "", "", "face"]) + let v = native_list_append(v, ["grain", "noun", "grainz", "", "", "", "grain edible part"]) + let v = native_list_append(v, ["violence", "noun", "violences", "", "", "", "violence"]) + let v = native_list_append(v, ["flux", "noun", "flux", "", "", "", "diarrhea rapid passage"]) + let v = native_list_append(v, ["trial", "noun", "triaus", "", "", "", "trial legal procedure"]) + let v = native_list_append(v, ["los", "noun", "los", "", "", "", "glory positive reputation"]) + let v = native_list_append(v, ["ruse", "noun", "ruses", "", "", "", "evasive movements of"]) + let v = native_list_append(v, ["humour", "noun", "humour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arc", "noun", "ars", "", "", "", "bow a weapon"]) + let v = native_list_append(v, ["labia", "noun", "labias", "", "", "", "lip"]) + let v = native_list_append(v, ["lion", "noun", "lions", "", "", "", "lion animal"]) + let v = native_list_append(v, ["fare", "noun", "fares", "", "", "", "Celebratory fishing done"]) + let v = native_list_append(v, ["cos", "noun", "cos", "", "", "", "inflection of cop"]) + let v = native_list_append(v, ["front", "noun", "fronz", "", "", "", "forehead"]) + let v = native_list_append(v, ["code", "noun", "codes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vision", "noun", "visions", "", "", "", "vision supernatural sensory"]) + let v = native_list_append(v, ["melon", "noun", "melons", "", "", "", "melon fruit"]) + let v = native_list_append(v, ["don", "noun", "dons", "", "", "", "gift"]) + let v = native_list_append(v, ["cant", "noun", "canz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["main", "noun", "mainz", "", "", "", "hand"]) + let v = native_list_append(v, ["service", "noun", "services", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sein", "noun", "seinz", "", "", "", "breast"]) + let v = native_list_append(v, ["pestilence", "noun", "pestilences", "", "", "", "pestilence epidemic disease"]) + let v = native_list_append(v, ["cot", "noun", "coz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pirate", "noun", "pirates", "", "", "", "pirate one who"]) + let v = native_list_append(v, ["fromage", "noun", "fromages", "", "", "", "cheese"]) + let v = native_list_append(v, ["avis", "noun", "avis", "", "", "", "opinion"]) + let v = native_list_append(v, ["gast", "noun", "gaz", "", "", "", "destruction"]) + let v = native_list_append(v, ["timbre", "noun", "timbres", "", "", "", "timbrel"]) + let v = native_list_append(v, ["label", "noun", "labeaus", "", "", "", "strip of fabric"]) + let v = native_list_append(v, ["flour", "noun", "flours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gab", "noun", "gas", "", "", "", "joke"]) + let v = native_list_append(v, ["table", "noun", "tables", "", "", "", "table furniture with"]) + let v = native_list_append(v, ["harpe", "noun", "harpes", "", "", "", "harp stringed musical"]) + let v = native_list_append(v, ["top", "noun", "tos", "", "", "", "hair on top"]) + let v = native_list_append(v, ["neu", "noun", "neus", "", "", "", "knot"]) + let v = native_list_append(v, ["felon", "noun", "felons", "", "", "", "evildoer wrongdoer"]) + let v = native_list_append(v, ["desert", "noun", "deserz", "", "", "", "desert desolate terrain"]) + let v = native_list_append(v, ["arme", "noun", "armes", "", "", "", "weapon"]) + let v = native_list_append(v, ["dragon", "noun", "dragons", "", "", "", "dragon mythical animal"]) + let v = native_list_append(v, ["canon", "noun", "canons", "", "", "", "tube"]) + let v = native_list_append(v, ["poke", "noun", "pokes", "", "", "", "sack"]) + let v = native_list_append(v, ["chief", "noun", "chiés", "", "", "", "head"]) + let v = native_list_append(v, ["passion", "noun", "passions", "", "", "", "passion suffering"]) + let v = native_list_append(v, ["leveret", "noun", "leverez", "", "", "", "a young hare"]) + let v = native_list_append(v, ["sauce", "noun", "sauces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["portal", "noun", "portaus", "", "", "", "gate doorlike structure"]) + let v = native_list_append(v, ["ymne", "noun", "ymnes", "", "", "", "hymn a song"]) + let v = native_list_append(v, ["tor", "noun", "tors", "", "", "", "tower"]) + let v = native_list_append(v, ["bout", "noun", "bouz", "", "", "", "end extremity"]) + let v = native_list_append(v, ["lire", "noun", "lires", "", "", "", "lyre"]) + let v = native_list_append(v, ["barbe", "noun", "barbes", "", "", "", "beard"]) + let v = native_list_append(v, ["admiral", "noun", "admiraus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haste", "noun", "hastes", "", "", "", "urgency haste speed"]) + let v = native_list_append(v, ["matinee", "noun", "matinees", "", "", "", "morning"]) + let v = native_list_append(v, ["fils", "noun", "fils", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["guile", "noun", "guiles", "", "", "", "trickery deception"]) + let v = native_list_append(v, ["nun", "noun", "nuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["croc", "noun", "cros", "", "", "", "hook"]) + let v = native_list_append(v, ["miracle", "noun", "miracles", "", "", "", "miracle"]) + let v = native_list_append(v, ["guide", "noun", "guide", "", "", "", "a guide person"]) + let v = native_list_append(v, ["trace", "noun", "traces", "", "", "", "trace markings showing"]) + let v = native_list_append(v, ["carte", "noun", "cartes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barat", "noun", "baraz", "", "", "", "deception trickery ruse"]) + let v = native_list_append(v, ["duit", "noun", "duiz", "", "", "", "stream"]) + let v = native_list_append(v, ["redemption", "noun", "redemptions", "", "", "", "redemption salvation from"]) + let v = native_list_append(v, ["enemy", "noun", "enemys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ante", "noun", "ante", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["discussion", "noun", "discussions", "", "", "", "discussion"]) + let v = native_list_append(v, ["bastard", "noun", "bastarz", "", "", "", "bastard person conceived"]) + let v = native_list_append(v, ["nerf", "noun", "ners", "", "", "", "nerve"]) + let v = native_list_append(v, ["description", "noun", "descriptions", "", "", "", "description"]) + let v = native_list_append(v, ["hostel", "noun", "hosteaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["di", "noun", "dis", "", "", "", "day 24-hour period"]) + let v = native_list_append(v, ["execution", "noun", "executions", "", "", "", "execution act of"]) + let v = native_list_append(v, ["deluge", "noun", "deluges", "", "", "", "large flood"]) + let v = native_list_append(v, ["roe", "noun", "roes", "", "", "", "wheel cylindrical device"]) + let v = native_list_append(v, ["sturgeon", "noun", "sturgeons", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dos", "noun", "dos", "", "", "", "back"]) + let v = native_list_append(v, ["rime", "noun", "rimes", "", "", "", "rhyme"]) + let v = native_list_append(v, ["queue", "noun", "queues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alcohol", "noun", "alcohous", "", "", "", "alcohol"]) + let v = native_list_append(v, ["quart", "noun", "quarz", "", "", "", "quarter 1/4"]) + let v = native_list_append(v, ["tenure", "noun", "tenures", "", "", "", "tenure right to"]) + let v = native_list_append(v, ["hoe", "noun", "hoes", "", "", "", "hoe"]) + let v = native_list_append(v, ["fame", "noun", "fames", "", "", "", "wife female partner"]) + let v = native_list_append(v, ["patient", "noun", "patienz", "", "", "", "patient"]) + let v = native_list_append(v, ["procurement", "noun", "procuremenz", "", "", "", "procurement obtainment obtention"]) + let v = native_list_append(v, ["corn", "noun", "corns", "", "", "", "horn a bony"]) + let v = native_list_append(v, ["toit", "noun", "toiz", "", "", "", "roof"]) + let v = native_list_append(v, ["pro", "noun", "pro", "", "", "", "profit advantage"]) + let v = native_list_append(v, ["grace", "noun", "graces", "", "", "", "grace favor"]) + let v = native_list_append(v, ["closet", "noun", "closez", "", "", "", "A small enclosed"]) + let v = native_list_append(v, ["office", "noun", "offices", "", "", "", "office building room"]) + let v = native_list_append(v, ["regard", "noun", "regarz", "", "", "", "look observance watching"]) + let v = native_list_append(v, ["tenor", "noun", "tenors", "", "", "", "holder possessor one"]) + let v = native_list_append(v, ["fix", "noun", "fix", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["clef", "noun", "cles", "", "", "", "key"]) + let v = native_list_append(v, ["saint", "noun", "sainz", "", "", "", "saint"]) + let v = native_list_append(v, ["dei", "noun", "deis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anima", "noun", "animas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chambre", "noun", "chambres", "", "", "", "room"]) + let v = native_list_append(v, ["homage", "noun", "homages", "", "", "", "oath pledge"]) + let v = native_list_append(v, ["chouette", "noun", "chouette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chant", "noun", "chanz", "", "", "", "song"]) + let v = native_list_append(v, ["creature", "noun", "creatures", "", "", "", "creature being entity"]) + let v = native_list_append(v, ["monstre", "noun", "monstres", "", "", "", "monster"]) + let v = native_list_append(v, ["manere", "noun", "maneres", "", "", "", "manner fashion way"]) + let v = native_list_append(v, ["dent", "noun", "denz", "", "", "", "tooth"]) + let v = native_list_append(v, ["eage", "noun", "eages", "", "", "", "age of a"]) + let v = native_list_append(v, ["solitude", "noun", "solitude", "", "", "", "solitude"]) + let v = native_list_append(v, ["profession", "noun", "professions", "", "", "", "profession declaration usually"]) + let v = native_list_append(v, ["gent", "noun", "genz", "", "", "", "people population"]) + let v = native_list_append(v, ["ire", "noun", "ires", "", "", "", "ire anger rage"]) + let v = native_list_append(v, ["lez", "noun", "lez", "", "", "", "side"]) + let v = native_list_append(v, ["visage", "noun", "visages", "", "", "", "face"]) + let v = native_list_append(v, ["rancor", "noun", "rancors", "", "", "", "ill-will negative opinion"]) + let v = native_list_append(v, ["vocation", "noun", "vocations", "", "", "", "call calling appeal"]) + let v = native_list_append(v, ["bacon", "noun", "bacons", "", "", "", "bacon salted pork"]) + let v = native_list_append(v, ["rote", "noun", "rotes", "", "", "", "route path"]) + let v = native_list_append(v, ["morsel", "noun", "morseaus", "", "", "", "morsel bit piece"]) + let v = native_list_append(v, ["credence", "noun", "credences", "", "", "", "faith confidence"]) + let v = native_list_append(v, ["question", "noun", "questions", "", "", "", "question verbal statement"]) + let v = native_list_append(v, ["fer", "noun", "fers", "", "", "", "iron metal"]) + let v = native_list_append(v, ["aire", "noun", "aires", "", "", "", "appearance semblance"]) + let v = native_list_append(v, ["oeil", "noun", "ialz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coup", "noun", "cous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bu", "noun", "bus", "", "", "", "chest thorax"]) + let v = native_list_append(v, ["fou", "noun", "fous", "", "", "", "beech tree"]) + let v = native_list_append(v, ["pierre", "noun", "pierres", "", "", "", "stone substance"]) + let v = native_list_append(v, ["monde", "noun", "mondes", "", "", "", "the world"]) + let v = native_list_append(v, ["jus", "noun", "jus", "", "", "", "juice"]) + let v = native_list_append(v, ["baleine", "noun", "baleines", "", "", "", "whale mammal"]) + let v = native_list_append(v, ["putain", "noun", "putains", "", "", "", "whore prostitute bitch"]) + let v = native_list_append(v, ["place", "noun", "places", "", "", "", "place location"]) + let v = native_list_append(v, ["past", "noun", "past", "", "", "", "food meal"]) + let v = native_list_append(v, ["present", "noun", "presenz", "", "", "", "gift present"]) + let v = native_list_append(v, ["mace", "noun", "maces", "", "", "", "mace weapon"]) + let v = native_list_append(v, ["occident", "noun", "occident", "", "", "", "the west"]) + let v = native_list_append(v, ["onager", "noun", "onagers", "", "", "", "onager"]) + let v = native_list_append(v, ["page", "noun", "pages", "", "", "", "page one face"]) + let v = native_list_append(v, ["plaid", "noun", "plaiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plait", "noun", "plaiz", "", "", "", "agreement"]) + let v = native_list_append(v, ["blanc", "noun", "blans", "", "", "", "white color"]) + let v = native_list_append(v, ["noir", "noun", "noirs", "", "", "", "black colour"]) + let v = native_list_append(v, ["paste", "noun", "pastes", "", "", "", "dough paste"]) + let v = native_list_append(v, ["roc", "noun", "ros", "", "", "", "rook"]) + let v = native_list_append(v, ["avarice", "noun", "avarices", "", "", "", "greed avarice"]) + let v = native_list_append(v, ["aventure", "noun", "aventures", "", "", "", "event happening adventure"]) + let v = native_list_append(v, ["aver", "noun", "avers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avision", "noun", "avisions", "", "", "", "vision religious or"]) + let v = native_list_append(v, ["ciel", "noun", "cieus", "", "", "", "heaven"]) + let v = native_list_append(v, ["palais", "noun", "palais", "", "", "", "palace"]) + let v = native_list_append(v, ["glace", "noun", "glaces", "", "", "", "ice"]) + let v = native_list_append(v, ["mese", "noun", "meses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sac", "noun", "sas", "", "", "", "bag sack"]) + let v = native_list_append(v, ["val", "noun", "vaus", "", "", "", "valley"]) + let v = native_list_append(v, ["gloire", "noun", "gloires", "", "", "", "glory"]) + let v = native_list_append(v, ["camp", "noun", "cans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raison", "noun", "raisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pes", "noun", "pes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plat", "noun", "plaz", "", "", "", "a footbridge"]) + let v = native_list_append(v, ["reis", "noun", "reis", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["barge", "noun", "barges", "", "", "", "boat"]) + let v = native_list_append(v, ["pais", "noun", "pais", "", "", "", "peace"]) + let v = native_list_append(v, ["senator", "noun", "senators", "", "", "", "senator in Ancient"]) + let v = native_list_append(v, ["venison", "noun", "venisons", "", "", "", "game animal to"]) + let v = native_list_append(v, ["testament", "noun", "testamenz", "", "", "", "testimony statement"]) + let v = native_list_append(v, ["grave", "noun", "graves", "", "", "", "gravel"]) + let v = native_list_append(v, ["favour", "noun", "favours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["ange", "noun", "anges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foil", "noun", "fouz", "", "", "", "leaf green appendage"]) + let v = native_list_append(v, ["espoire", "noun", "espoires", "", "", "", "hope"]) + let v = native_list_append(v, ["creator", "noun", "creators", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apostle", "noun", "apostles", "", "", "", "apostle"]) + let v = native_list_append(v, ["tasche", "noun", "tasches", "", "", "", "duty obligation"]) + let v = native_list_append(v, ["cure", "noun", "cures", "", "", "", "medical attention"]) + let v = native_list_append(v, ["porc", "noun", "pors", "", "", "", "pig hog swine"]) + let v = native_list_append(v, ["avril", "noun", "avriz", "", "", "", "April month"]) + let v = native_list_append(v, ["pere", "noun", "peres", "", "", "", "father male family"]) + let v = native_list_append(v, ["tabor", "noun", "tabors", "", "", "", "tambour drum"]) + let v = native_list_append(v, ["pote", "noun", "pote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pustule", "noun", "pustules", "", "", "", "pustule"]) + let v = native_list_append(v, ["autor", "noun", "autors", "", "", "", "author writer"]) + let v = native_list_append(v, ["prison", "noun", "prisons", "", "", "", "prison"]) + let v = native_list_append(v, ["burel", "noun", "bureaus", "", "", "", "frieze coarse woolen"]) + let v = native_list_append(v, ["col", "noun", "cous", "", "", "", "neck"]) + let v = native_list_append(v, ["wast", "noun", "waz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rap", "noun", "ras", "", "", "", "violent seizure"]) + let v = native_list_append(v, ["joint", "noun", "joinz", "", "", "", "join place where"]) + let v = native_list_append(v, ["poulet", "noun", "poulet", "", "", "", "chicken as a"]) + let v = native_list_append(v, ["bever", "noun", "bevers", "", "", "", "beaver mammal"]) + let v = native_list_append(v, ["jazerant", "noun", "jazeranz", "", "", "", "jazerant jazeraint"]) + let v = native_list_append(v, ["poitrinal", "noun", "poitrinaus", "", "", "", "chest the area"]) + let v = native_list_append(v, ["armour", "noun", "armours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lei", "noun", "lez", "", "", "", "a law"]) + let v = native_list_append(v, ["Robert", "noun", "Robert", "", "", "", "a male given"]) + let v = native_list_append(v, ["malle", "noun", "malles", "", "", "", "large chest or"]) + let v = native_list_append(v, ["glaive", "noun", "glaives", "", "", "", "lance"]) + let v = native_list_append(v, ["lundi", "noun", "lundis", "", "", "", "Monday"]) + let v = native_list_append(v, ["suggestion", "noun", "suggestions", "", "", "", "suggestion proposal"]) + let v = native_list_append(v, ["justice", "noun", "justices", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Norman", "noun", "Normans", "", "", "", "Norman someone from"]) + let v = native_list_append(v, ["connexion", "noun", "connexions", "", "", "", "connection state of"]) + let v = native_list_append(v, ["primer", "noun", "primers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lance", "noun", "lances", "", "", "", "lance weapon"]) + let v = native_list_append(v, ["leu", "noun", "leus", "", "", "", "wolf animal"]) + let v = native_list_append(v, ["curt", "noun", "curz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serf", "noun", "sers", "", "", "", "serf semifree peasant"]) + let v = native_list_append(v, ["pastor", "noun", "pastors", "", "", "", "shepherd"]) + let v = native_list_append(v, ["lesion", "noun", "lesions", "", "", "", "harm damage"]) + let v = native_list_append(v, ["presentation", "noun", "presentations", "", "", "", "presentation act of"]) + let v = native_list_append(v, ["mazer", "noun", "mazers", "", "", "", "maple"]) + let v = native_list_append(v, ["dance", "noun", "dances", "", "", "", "dance"]) + let v = native_list_append(v, ["inhabitant", "noun", "inhabitanz", "", "", "", "inhabitant"]) + let v = native_list_append(v, ["rage", "noun", "rages", "", "", "", "rage ire fury"]) + let v = native_list_append(v, ["cenobite", "noun", "cenobites", "", "", "", "cenobite monk who"]) + let v = native_list_append(v, ["gorge", "noun", "gorges", "", "", "", "throat"]) + let v = native_list_append(v, ["pic", "noun", "pis", "", "", "", "a sharp point"]) + let v = native_list_append(v, ["demesne", "noun", "demesnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["complexion", "noun", "complexions", "", "", "", "complexion combination of"]) + let v = native_list_append(v, ["peril", "noun", "periz", "", "", "", "peril hazard danger"]) + let v = native_list_append(v, ["aloe", "noun", "aloes", "", "", "", "lark bird"]) + let v = native_list_append(v, ["alum", "noun", "aluns", "", "", "", "alum"]) + let v = native_list_append(v, ["barre", "noun", "barres", "", "", "", "bar solid more"]) + let v = native_list_append(v, ["brant", "noun", "branz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cerise", "noun", "cerises", "", "", "", "cherry"]) + let v = native_list_append(v, ["cue", "noun", "cues", "", "", "", "tail of an"]) + let v = native_list_append(v, ["dun", "noun", "duns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewer", "noun", "ewers", "", "", "", "ewer"]) + let v = native_list_append(v, ["gage", "noun", "gages", "", "", "", "wage regular remuneration"]) + let v = native_list_append(v, ["gouge", "noun", "gouges", "", "", "", "gouge tool"]) + let v = native_list_append(v, ["lac", "noun", "las", "", "", "", "body of water"]) + let v = native_list_append(v, ["lien", "noun", "liens", "", "", "", "tie strap"]) + let v = native_list_append(v, ["loge", "noun", "loges", "", "", "", "hut small often"]) + let v = native_list_append(v, ["marc", "noun", "mars", "", "", "", "mark small distinguishing"]) + let v = native_list_append(v, ["mere", "noun", "meres", "", "", "", "mother female family"]) + let v = native_list_append(v, ["meson", "noun", "mesons", "", "", "", "house"]) + let v = native_list_append(v, ["mort", "noun", "morz", "", "", "", "death"]) + let v = native_list_append(v, ["nape", "noun", "napes", "", "", "", "table cloth"]) + let v = native_list_append(v, ["nones", "noun", "nones", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["pas", "noun", "pas", "", "", "", "pace step"]) + let v = native_list_append(v, ["pois", "noun", "pois", "", "", "", "weight"]) + let v = native_list_append(v, ["sen", "noun", "sens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sire", "noun", "sire", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sumac", "noun", "sumas", "", "", "", "sumac"]) + let v = native_list_append(v, ["vie", "noun", "vies", "", "", "", "life"]) + let v = native_list_append(v, ["vis", "noun", "vis", "", "", "", "face"]) + let v = native_list_append(v, ["contention", "noun", "contentions", "", "", "", "dispute quarrel disagreement"]) + let v = native_list_append(v, ["effort", "noun", "efforz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brace", "noun", "braces", "", "", "", "arm limb"]) + let v = native_list_append(v, ["champ", "noun", "chans", "", "", "", "field"]) + let v = native_list_append(v, ["char", "noun", "chars", "", "", "", "flesh tissue from"]) + let v = native_list_append(v, ["chef", "noun", "ches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clamor", "noun", "clamors", "", "", "", "clamor continued shouting"]) + let v = native_list_append(v, ["continuation", "noun", "continuations", "", "", "", "continuation act of"]) + let v = native_list_append(v, ["dilatation", "noun", "dilatations", "", "", "", "dilation act or"]) + let v = native_list_append(v, ["dilation", "noun", "dilations", "", "", "", "dissemination spreading of"]) + let v = native_list_append(v, ["equivocation", "noun", "equivocations", "", "", "", "equivocation"]) + let v = native_list_append(v, ["evacuation", "noun", "evacuations", "", "", "", "evacuation of the"]) + let v = native_list_append(v, ["fain", "noun", "fain", "", "", "", "hunger"]) + let v = native_list_append(v, ["fret", "noun", "frez", "", "", "", "charge demand of"]) + let v = native_list_append(v, ["gauge", "noun", "gauges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["couple", "noun", "couples", "", "", "", "couple two things"]) + let v = native_list_append(v, ["grief", "noun", "griés", "", "", "", "pain anguish suffering"]) + let v = native_list_append(v, ["guise", "noun", "guises", "", "", "", "way manner"]) + let v = native_list_append(v, ["hostage", "noun", "hostages", "", "", "", "hostage"]) + let v = native_list_append(v, ["inspiration", "noun", "inspirations", "", "", "", "inspiration act of"]) + let v = native_list_append(v, ["lame", "noun", "lames", "", "", "", "blade of a"]) + let v = native_list_append(v, ["lard", "noun", "larz", "", "", "", "A cut of"]) + let v = native_list_append(v, ["mangonel", "noun", "mangoneaus", "", "", "", "mangonel"]) + let v = native_list_append(v, ["mention", "noun", "mentions", "", "", "", "mention act of"]) + let v = native_list_append(v, ["official", "noun", "officiaus", "", "", "", "court official"]) + let v = native_list_append(v, ["prise", "noun", "prises", "", "", "", "seizure taking capture"]) + let v = native_list_append(v, ["resemblance", "noun", "resemblances", "", "", "", "similarity taken as"]) + let v = native_list_append(v, ["route", "noun", "routes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["site", "noun", "sites", "", "", "", "site location"]) + let v = native_list_append(v, ["subside", "noun", "subside", "", "", "", "subsidy financial assistance"]) + let v = native_list_append(v, ["suite", "noun", "suites", "", "", "", "pursuit act of"]) + let v = native_list_append(v, ["vile", "noun", "viles", "", "", "", "town city"]) + let v = native_list_append(v, ["traitor", "noun", "traitors", "", "", "", "traitor"]) + let v = native_list_append(v, ["vassal", "noun", "vassaus", "", "", "", "vassal"]) + let v = native_list_append(v, ["valor", "noun", "valors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["valour", "noun", "valours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["disposition", "noun", "dispositions", "", "", "", "arrangement layout"]) + let v = native_list_append(v, ["argent", "noun", "argenz", "", "", "", "silver metal"]) + let v = native_list_append(v, ["message", "noun", "messages", "", "", "", "message form of"]) + let v = native_list_append(v, ["singe", "noun", "singes", "", "", "", "monkey animal"]) + let v = native_list_append(v, ["ignorance", "noun", "ignorances", "", "", "", "ignorance lacking of"]) + let v = native_list_append(v, ["honor", "noun", "honors", "", "", "", "honor honour"]) + let v = native_list_append(v, ["honour", "noun", "honours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["enclosure", "noun", "enclosures", "", "", "", "enclosure act of"]) + let v = native_list_append(v, ["corruption", "noun", "corruptions", "", "", "", "corruption state of"]) + let v = native_list_append(v, ["temps", "noun", "temps", "", "", "", "weather"]) + let v = native_list_append(v, ["intelligence", "noun", "intelligences", "", "", "", "comprehension"]) + let v = native_list_append(v, ["languages", "noun", "languages", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["raisin", "noun", "raisins", "", "", "", "grape"]) + let v = native_list_append(v, ["pension", "noun", "pensions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["novembre", "noun", "novembres", "", "", "", "November month"]) + let v = native_list_append(v, ["jardin", "noun", "jardins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["owe", "noun", "owe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loi", "noun", "lois", "", "", "", "law"]) + let v = native_list_append(v, ["porre", "noun", "porres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carpenter", "noun", "carpenters", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lait", "noun", "laiz", "", "", "", "milk white liquid"]) + let v = native_list_append(v, ["fel", "noun", "fel", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["masculin", "noun", "masculins", "", "", "", "masculine"]) + let v = native_list_append(v, ["hou", "noun", "hou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beauté", "noun", "beautez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["multitude", "noun", "multitudes", "", "", "", "crowd of people"]) + let v = native_list_append(v, ["voile", "noun", "voiles", "", "", "", "sail large piece"]) + let v = native_list_append(v, ["chisel", "noun", "chiseaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cloche", "noun", "cloches", "", "", "", "bell metal apparatus"]) + let v = native_list_append(v, ["Oliver", "noun", "Oliver", "", "", "", "a male given"]) + let v = native_list_append(v, ["movement", "noun", "movemenz", "", "", "", "movement"]) + let v = native_list_append(v, ["loupe", "noun", "loupes", "", "", "", "tumor"]) + let v = native_list_append(v, ["clamour", "noun", "clamours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["roi", "noun", "rois", "", "", "", "king"]) + let v = native_list_append(v, ["obeïssance", "noun", "obeïssances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plain", "noun", "plainz", "", "", "", "plain flat area"]) + let v = native_list_append(v, ["issue", "noun", "issues", "", "", "", "exit way out"]) + let v = native_list_append(v, ["isle", "noun", "isles", "", "", "", "island"]) + let v = native_list_append(v, ["horror", "noun", "horrors", "", "", "", "horror or terror"]) + let v = native_list_append(v, ["chapel", "noun", "chapeaus", "", "", "", "hat item of"]) + let v = native_list_append(v, ["role", "noun", "roles", "", "", "", "roll scroll rolled"]) + let v = native_list_append(v, ["cristal", "noun", "cristaus", "", "", "", "crystal"]) + let v = native_list_append(v, ["plantain", "noun", "plantainz", "", "", "", "plantain any plant"]) + let v = native_list_append(v, ["tref", "noun", "tres", "", "", "", "beam"]) + let v = native_list_append(v, ["officer", "noun", "officers", "", "", "", "officer"]) + let v = native_list_append(v, ["villain", "noun", "villainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acier", "noun", "acier", "", "", "", "steel"]) + let v = native_list_append(v, ["aile", "noun", "ailes", "", "", "", "wing anatomical structure"]) + let v = native_list_append(v, ["ancre", "noun", "ancres", "", "", "", "anchor of a"]) + let v = native_list_append(v, ["anguille", "noun", "anguilles", "", "", "", "eel"]) + let v = native_list_append(v, ["cordon", "noun", "cordons", "", "", "", "bowstring"]) + let v = native_list_append(v, ["vigour", "noun", "vigours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["confusion", "noun", "confusions", "", "", "", "spread act or"]) + let v = native_list_append(v, ["lintel", "noun", "linteaus", "", "", "", "lintel beam"]) + let v = native_list_append(v, ["brun", "noun", "bruns", "", "", "", "brown-haired person"]) + let v = native_list_append(v, ["forge", "noun", "forges", "", "", "", "forge workshop"]) + let v = native_list_append(v, ["chemin", "noun", "chemins", "", "", "", "route way"]) + let v = native_list_append(v, ["vin", "noun", "vins", "", "", "", "wine"]) + let v = native_list_append(v, ["oignon", "noun", "oignons", "", "", "", "onion Allium cepa"]) + let v = native_list_append(v, ["villein", "noun", "villeinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verge", "noun", "verges", "", "", "", "virgin one who"]) + let v = native_list_append(v, ["vengeance", "noun", "vengeances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verdict", "noun", "verdicz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poise", "noun", "poises", "", "", "", "weight"]) + let v = native_list_append(v, ["restriction", "noun", "restrictions", "", "", "", "restriction limitation constraint"]) + let v = native_list_append(v, ["terrible", "noun", "terribles", "", "", "", "terrible"]) + let v = native_list_append(v, ["donna", "noun", "donnas", "", "", "", "lady"]) + let v = native_list_append(v, ["viande", "noun", "viandes", "", "", "", "food anything which"]) + let v = native_list_append(v, ["lai", "noun", "lais", "", "", "", "pond lake"]) + let v = native_list_append(v, ["mariner", "noun", "mariners", "", "", "", "seaman sailor"]) + let v = native_list_append(v, ["borg", "noun", "bors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["session", "noun", "sessions", "", "", "", "sitting session of"]) + let v = native_list_append(v, ["pont", "noun", "ponz", "", "", "", "bridge construction"]) + let v = native_list_append(v, ["costume", "noun", "costumes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pone", "noun", "pones", "", "", "", "pone type of"]) + let v = native_list_append(v, ["torment", "noun", "tormenz", "", "", "", "torture"]) + let v = native_list_append(v, ["cartilage", "noun", "cartilages", "", "", "", "cartilage"]) + let v = native_list_append(v, ["response", "noun", "responses", "", "", "", "response"]) + let v = native_list_append(v, ["pasture", "noun", "pastures", "", "", "", "pasture grassy field"]) + let v = native_list_append(v, ["Noel", "noun", "Noeaus", "", "", "", "Christmas"]) + let v = native_list_append(v, ["ville", "noun", "villes", "", "", "", "city or town"]) + let v = native_list_append(v, ["grange", "noun", "granges", "", "", "", "granary"]) + let v = native_list_append(v, ["fagot", "noun", "fagoz", "", "", "", "fagot bundle of"]) + let v = native_list_append(v, ["pris", "noun", "pris", "", "", "", "price monetary value"]) + let v = native_list_append(v, ["rai", "noun", "rais", "", "", "", "beam ray of"]) + let v = native_list_append(v, ["obedience", "noun", "obediences", "", "", "", "obedience"]) + let v = native_list_append(v, ["oblivion", "noun", "oblivions", "", "", "", "forgetfulness"]) + let v = native_list_append(v, ["mouton", "noun", "moutons", "", "", "", "sheep animal"]) + let v = native_list_append(v, ["merde", "noun", "merdes", "", "", "", "shit feces"]) + let v = native_list_append(v, ["plaie", "noun", "plaies", "", "", "", "wound damage to"]) + let v = native_list_append(v, ["sermon", "noun", "sermons", "", "", "", "sermon religious"]) + let v = native_list_append(v, ["gal", "noun", "gaus", "", "", "", "a rock"]) + let v = native_list_append(v, ["cope", "noun", "copes", "", "", "", "cup vessel from"]) + let v = native_list_append(v, ["bois", "noun", "bois", "", "", "", "woodland woods"]) + let v = native_list_append(v, ["soir", "noun", "soirs", "", "", "", "evening"]) + let v = native_list_append(v, ["foire", "noun", "foires", "", "", "", "celebration"]) + let v = native_list_append(v, ["devoir", "noun", "devoirs", "", "", "", "debt"]) + let v = native_list_append(v, ["savoir", "noun", "savoirs", "", "", "", "knowledge"]) + let v = native_list_append(v, ["Marie", "noun", "Marie", "", "", "", "a female given"]) + let v = native_list_append(v, ["cosa", "noun", "cosas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferme", "noun", "fermes", "", "", "", "lease letting agreement"]) + let v = native_list_append(v, ["procedure", "noun", "procedures", "", "", "", "procedure particular method"]) + let v = native_list_append(v, ["oracle", "noun", "oracles", "", "", "", "An oracle."]) + let v = native_list_append(v, ["porte", "noun", "portes", "", "", "", "door"]) + let v = native_list_append(v, ["overture", "noun", "overtures", "", "", "", "an opening"]) + let v = native_list_append(v, ["aide", "noun", "aides", "", "", "", "help assistance aid"]) + let v = native_list_append(v, ["tassel", "noun", "tasseaus", "", "", "", "tassel adornment for"]) + let v = native_list_append(v, ["infection", "noun", "infections", "", "", "", "infection."]) + let v = native_list_append(v, ["remission", "noun", "remissions", "", "", "", "remission pardon of"]) + let v = native_list_append(v, ["faide", "noun", "faides", "", "", "", "the right of"]) + let v = native_list_append(v, ["parage", "noun", "parages", "", "", "", "parage social rank"]) + let v = native_list_append(v, ["fille", "noun", "filles", "", "", "", "daughter female child"]) + let v = native_list_append(v, ["penitence", "noun", "penitences", "", "", "", "penitence repentance for"]) + let v = native_list_append(v, ["plaisir", "noun", "plaisirs", "", "", "", "pleasure"]) + let v = native_list_append(v, ["filles", "noun", "filles", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["repast", "noun", "repaz", "", "", "", "a meal"]) + let v = native_list_append(v, ["tache", "noun", "taches", "", "", "", "mark stain"]) + let v = native_list_append(v, ["putrefaction", "noun", "putrefactions", "", "", "", "rot rottenness"]) + let v = native_list_append(v, ["viele", "noun", "vieles", "", "", "", "vielle"]) + let v = native_list_append(v, ["punt", "noun", "punz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aige", "noun", "aiges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haine", "noun", "haines", "", "", "", "hatred"]) + let v = native_list_append(v, ["splendor", "noun", "splendors", "", "", "", "splendor brilliant brightness"]) + let v = native_list_append(v, ["tremor", "noun", "tremors", "", "", "", "terror great fear"]) + let v = native_list_append(v, ["creche", "noun", "creches", "", "", "", "crib manger"]) + let v = native_list_append(v, ["dum", "noun", "dum", "", "", "", "down feathers of"]) + let v = native_list_append(v, ["max", "noun", "max", "", "", "", "inflection of mal"]) + let v = native_list_append(v, ["heritage", "noun", "heritages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["robe", "noun", "robes", "", "", "", "booty spoils chiefly"]) + let v = native_list_append(v, ["lure", "noun", "lures", "", "", "", "lure bunch of"]) + let v = native_list_append(v, ["residence", "noun", "residences", "", "", "", "residence place where"]) + let v = native_list_append(v, ["terre", "noun", "terres", "", "", "", "earth soil"]) + let v = native_list_append(v, ["parson", "noun", "parsons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enfant", "noun", "enfanz", "", "", "", "child"]) + let v = native_list_append(v, ["egestion", "noun", "egestions", "", "", "", "egestion"]) + let v = native_list_append(v, ["corde", "noun", "cordes", "", "", "", "rope"]) + let v = native_list_append(v, ["tens", "noun", "tens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verbe", "noun", "verbe", "", "", "", "word"]) + let v = native_list_append(v, ["plume", "noun", "plumes", "", "", "", "feather plume"]) + let v = native_list_append(v, ["abus", "noun", "abus", "", "", "", "excess"]) + let v = native_list_append(v, ["noche", "noun", "noches", "", "", "", "buckle clasp"]) + let v = native_list_append(v, ["doute", "noun", "doutes", "", "", "", "doubt"]) + let v = native_list_append(v, ["ulceration", "noun", "ulcerations", "", "", "", "ulceration the formation"]) + let v = native_list_append(v, ["puissance", "noun", "puissances", "", "", "", "power ability authority"]) + let v = native_list_append(v, ["chevalier", "noun", "chevaliers", "", "", "", "knight"]) + let v = native_list_append(v, ["mural", "noun", "mural", "", "", "", "wall especially a"]) + let v = native_list_append(v, ["mareschal", "noun", "mareschaus", "", "", "", "marshal military position"]) + let v = native_list_append(v, ["prejudice", "noun", "prejudices", "", "", "", "harm damage"]) + let v = native_list_append(v, ["brigand", "noun", "briganz", "", "", "", "foot soldier"]) + let v = native_list_append(v, ["croix", "noun", "croix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crois", "noun", "crois", "", "", "", "cross"]) + let v = native_list_append(v, ["bugle", "noun", "bugles", "", "", "", "buffalo wild ox"]) + let v = native_list_append(v, ["conscience", "noun", "consciences", "", "", "", "conscience"]) + let v = native_list_append(v, ["travail", "noun", "travauz", "", "", "", "suffering torment"]) + let v = native_list_append(v, ["resource", "noun", "resources", "", "", "", "act of raising"]) + let v = native_list_append(v, ["latitude", "noun", "latitudes", "", "", "", "breadth"]) + let v = native_list_append(v, ["sacrilege", "noun", "sacrileges", "", "", "", "sacrilege"]) + let v = native_list_append(v, ["pomme d'orenge", "noun", "pommes d'orenge", "", "", "", "orange fruit"]) + let v = native_list_append(v, ["dit", "noun", "diz", "", "", "", "word"]) + let v = native_list_append(v, ["nom", "noun", "nons", "", "", "", "name"]) + let v = native_list_append(v, ["Herbert", "noun", "Herbert", "", "", "", "a male given"]) + let v = native_list_append(v, ["presente", "noun", "presentes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estrange", "noun", "estranges", "", "", "", "foreigner non-native"]) + let v = native_list_append(v, ["sable", "noun", "sables", "", "", "", "sable fur of"]) + let v = native_list_append(v, ["fu", "noun", "fus", "", "", "", "fire"]) + let v = native_list_append(v, ["peor", "noun", "peors", "", "", "", "fear"]) + let v = native_list_append(v, ["stratagem", "noun", "stratagens", "", "", "", "strategy stratagem"]) + let v = native_list_append(v, ["privilege", "noun", "privileges", "", "", "", "privilege benefit only"]) + let v = native_list_append(v, ["grievance", "noun", "grievances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["repentance", "noun", "repentance", "", "", "", "repentance"]) + let v = native_list_append(v, ["tenant", "noun", "tenanz", "", "", "", "holder"]) + let v = native_list_append(v, ["chagrin", "noun", "chagrins", "", "", "", "pain affliction"]) + let v = native_list_append(v, ["poule", "noun", "poules", "", "", "", "hen female chicken"]) + let v = native_list_append(v, ["jaque", "noun", "jaques", "", "", "", "a gambison a"]) + let v = native_list_append(v, ["vins", "noun", "vins", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["soper", "noun", "sopers", "", "", "", "dinner evening meal"]) + let v = native_list_append(v, ["rien", "noun", "riens", "", "", "", "thing object"]) + let v = native_list_append(v, ["quintal", "noun", "quintaus", "", "", "", "quintal French hundredweight"]) + let v = native_list_append(v, ["explicit", "noun", "expliciz", "", "", "", "end of a"]) + let v = native_list_append(v, ["samedi", "noun", "samedis", "", "", "", "Saturday"]) + let v = native_list_append(v, ["premunition", "noun", "premunitions", "", "", "", "forewarning advanced warning"]) + let v = native_list_append(v, ["sens", "noun", "sens", "", "", "", "reason ability to"]) + let v = native_list_append(v, ["perte", "noun", "pertes", "", "", "", "loss"]) + let v = native_list_append(v, ["reverie", "noun", "reveries", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ardour", "noun", "ardours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["pluie", "noun", "pluies", "", "", "", "rain"]) + let v = native_list_append(v, ["ventre", "noun", "ventres", "", "", "", "belly stomach ventral"]) + let v = native_list_append(v, ["subversion", "noun", "subversions", "", "", "", "subversion overthrowing"]) + let v = native_list_append(v, ["diamant", "noun", "diamanz", "", "", "", "diamond"]) + let v = native_list_append(v, ["fais", "noun", "fais", "", "", "", "burden load"]) + let v = native_list_append(v, ["moule", "noun", "moules", "", "", "", "mussel"]) + let v = native_list_append(v, ["chalice", "noun", "chalices", "", "", "", "chalice"]) + let v = native_list_append(v, ["huis", "noun", "huis", "", "", "", "An external door."]) + let v = native_list_append(v, ["saison", "noun", "saisons", "", "", "", "season one of"]) + let v = native_list_append(v, ["pute", "noun", "pute", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["octobre", "noun", "octobres", "", "", "", "October month"]) + let v = native_list_append(v, ["oreille", "noun", "oreilles", "", "", "", "ear"]) + let v = native_list_append(v, ["faerie", "noun", "faerie", "", "", "", "the sphere or"]) + let v = native_list_append(v, ["vit", "noun", "viz", "", "", "", "dick cock human"]) + let v = native_list_append(v, ["denier", "noun", "deniers", "", "", "", "denier coin"]) + let v = native_list_append(v, ["dolor", "noun", "dolors", "", "", "", "pain suffering"]) + let v = native_list_append(v, ["countenance", "noun", "countenances", "", "", "", "appearance countenance"]) + let v = native_list_append(v, ["mari", "noun", "maris", "", "", "", "husband"]) + let v = native_list_append(v, ["foi", "noun", "fois", "", "", "", "faith"]) + let v = native_list_append(v, ["confession", "noun", "confessions", "", "", "", "confession the disclosure"]) + let v = native_list_append(v, ["soupe", "noun", "soupes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["figue", "noun", "figues", "", "", "", "fig fruit"]) + let v = native_list_append(v, ["Adan", "noun", "Adan", "", "", "", "Adam"]) + let v = native_list_append(v, ["Creator", "noun", "Creator", "", "", "", "the Creator God"]) + let v = native_list_append(v, ["Deus", "noun", "Deus", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Dex", "noun", "Dex", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Dieu", "noun", "Dieu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Marc", "noun", "Marc", "", "", "", "a male given"]) + let v = native_list_append(v, ["Martin", "noun", "Martin", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pere", "noun", "Pere", "", "", "", "God"]) + let v = native_list_append(v, ["Pol", "noun", "Pol", "", "", "", "a male given"]) + let v = native_list_append(v, ["poon", "noun", "poons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pore", "noun", "pores", "", "", "", "pore small opening"]) + let v = native_list_append(v, ["marche", "noun", "marches", "", "", "", "limit boundary"]) + let v = native_list_append(v, ["huile", "noun", "huiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mie", "noun", "mies", "", "", "", "crumb of bread"]) + let v = native_list_append(v, ["maus", "noun", "maus", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["seneschal", "noun", "seneschaus", "", "", "", "seneschal"]) + let v = native_list_append(v, ["conception", "noun", "conceptions", "", "", "", "conception of a"]) + let v = native_list_append(v, ["lucerne", "noun", "lucernes", "", "", "", "lamp torch flame"]) + let v = native_list_append(v, ["joe", "noun", "joes", "", "", "", "cheek esp. of"]) + let v = native_list_append(v, ["abel", "noun", "abeaus", "", "", "", "white poplar Populus"]) + let v = native_list_append(v, ["tumour", "noun", "tumours", "", "", "", "tumor abnormal swelling"]) + let v = native_list_append(v, ["faute", "noun", "fautes", "", "", "", "fault error mistake"]) + let v = native_list_append(v, ["crepuscule", "noun", "crepuscules", "", "", "", "twilight dusk"]) + let v = native_list_append(v, ["mariage", "noun", "mariages", "", "", "", "marriage wedding"]) + let v = native_list_append(v, ["Guillaume", "noun", "Guillaume", "", "", "", "a male given"]) + let v = native_list_append(v, ["ame", "noun", "ames", "", "", "", "soul spirit"]) + let v = native_list_append(v, ["talon", "noun", "talons", "", "", "", "heel of the"]) + let v = native_list_append(v, ["num", "noun", "nuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["regent", "noun", "regens", "", "", "", "regent one who"]) + let v = native_list_append(v, ["hu", "noun", "hus", "", "", "", "commotion racket noisy"]) + let v = native_list_append(v, ["leon", "noun", "leons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["midi", "noun", "midis", "", "", "", "midday noon"]) + let v = native_list_append(v, ["paine", "noun", "paines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Deu", "noun", "Deu", "", "", "", "God"]) + let v = native_list_append(v, ["perron", "noun", "perrons", "", "", "", "block of stone"]) + let v = native_list_append(v, ["donjon", "noun", "donjons", "", "", "", "keep donjon"]) + let v = native_list_append(v, ["indien", "noun", "indiens", "", "", "", "Indian person"]) + let v = native_list_append(v, ["tenement", "noun", "tenemenz", "", "", "", "holding of land"]) + let v = native_list_append(v, ["hui", "noun", "hui", "", "", "", "today"]) + let v = native_list_append(v, ["nef", "noun", "nés", "", "", "", "boat ship watercraft"]) + let v = native_list_append(v, ["bote", "noun", "botes", "", "", "", "boot specifically a"]) + let v = native_list_append(v, ["aie", "noun", "aies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["refuge", "noun", "refuges", "", "", "", "a refuge"]) + let v = native_list_append(v, ["viel", "noun", "vieus", "", "", "", "old person"]) + let v = native_list_append(v, ["malice", "noun", "malices", "", "", "", "malice evilness evil"]) + let v = native_list_append(v, ["desport", "noun", "desporz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["puis", "noun", "puis", "", "", "", "well place from"]) + let v = native_list_append(v, ["ef", "noun", "es", "", "", "", "bee"]) + let v = native_list_append(v, ["griffon", "noun", "griffons", "", "", "", "griffin legendary creature"]) + let v = native_list_append(v, ["automne", "noun", "automnes", "", "", "", "autumn"]) + let v = native_list_append(v, ["carpel", "noun", "carpiaus", "", "", "", "young carp fish"]) + let v = native_list_append(v, ["cras", "noun", "cras", "", "", "", "fat"]) + let v = native_list_append(v, ["seisin", "noun", "seisins", "", "", "", "act of seizing"]) + let v = native_list_append(v, ["resonance", "noun", "resonances", "", "", "", "resonance"]) + let v = native_list_append(v, ["juge", "noun", "juges", "", "", "", "judge arbiter"]) + let v = native_list_append(v, ["bracelet", "noun", "bracelez", "", "", "", "diminutive of bras"]) + let v = native_list_append(v, ["amie", "noun", "amies", "", "", "", "lover"]) + let v = native_list_append(v, ["nombre", "noun", "nombres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["indigence", "noun", "indigences", "", "", "", "indigence poverty lacking"]) + let v = native_list_append(v, ["menton", "noun", "mentons", "", "", "", "chin"]) + let v = native_list_append(v, ["joue", "noun", "joue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carbuncle", "noun", "carbuncles", "", "", "", "carbuncle deep-red or"]) + let v = native_list_append(v, ["hon", "noun", "hon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tro", "noun", "tros", "", "", "", "hole gap in"]) + let v = native_list_append(v, ["jai", "noun", "jais", "", "", "", "jay bird"]) + let v = native_list_append(v, ["veille", "noun", "veilles", "", "", "", "tendril"]) + let v = native_list_append(v, ["tribunal", "noun", "tribunaus", "", "", "", "tribunal court"]) + let v = native_list_append(v, ["parlance", "noun", "parlances", "", "", "", "discussion debate"]) + let v = native_list_append(v, ["langur", "noun", "langur", "", "", "", "languor weakness due"]) + let v = native_list_append(v, ["sorte", "noun", "sortes", "", "", "", "sort type"]) + let v = native_list_append(v, ["duc", "noun", "dus", "", "", "", "duke nobleman"]) + let v = native_list_append(v, ["mein", "noun", "meinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peine", "noun", "peines", "", "", "", "pain suffering"]) + let v = native_list_append(v, ["fois", "noun", "fois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bras", "noun", "bras", "", "", "", "arm"]) + let v = native_list_append(v, ["remembrance", "noun", "remembrances", "", "", "", "recollection memory"]) + let v = native_list_append(v, ["fet", "noun", "fez", "", "", "", "act action"]) + let v = native_list_append(v, ["arson", "noun", "arsons", "", "", "", "burning fire"]) + let v = native_list_append(v, ["acer", "noun", "acer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["collation", "noun", "collations", "", "", "", "discussion"]) + let v = native_list_append(v, ["discretion", "noun", "discretions", "", "", "", "discretion ability to"]) + let v = native_list_append(v, ["trebuchet", "noun", "trebuchez", "", "", "", "trebuchet bird trap"]) + let v = native_list_append(v, ["gingembre", "noun", "gingembres", "", "", "", "ginger"]) + let v = native_list_append(v, ["mund", "noun", "munz", "", "", "", "the world"]) + let v = native_list_append(v, ["savour", "noun", "savours", "", "", "", "taste"]) + let v = native_list_append(v, ["crevice", "noun", "crevices", "", "", "", "crayfish crawfish"]) + let v = native_list_append(v, ["temples", "noun", "temples", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["soie", "noun", "soies", "", "", "", "silk"]) + let v = native_list_append(v, ["dé", "noun", "dez", "", "", "", "die cube with"]) + let v = native_list_append(v, ["burg", "noun", "burs", "", "", "", "town or city"]) + let v = native_list_append(v, ["glaire", "noun", "glaire", "", "", "", "egg white"]) + let v = native_list_append(v, ["olifant", "noun", "olifanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eche", "noun", "eches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viz", "noun", "viz", "", "", "", "inflection of vis"]) + let v = native_list_append(v, ["Ysabel", "noun", "Ysabel", "", "", "", "a female given"]) + let v = native_list_append(v, ["mantel", "noun", "manteaus", "", "", "", "mantle clothing"]) + let v = native_list_append(v, ["robes", "noun", "robes", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["amant", "noun", "amanz", "", "", "", "lover"]) + let v = native_list_append(v, ["droit", "noun", "droiz", "", "", "", "justice right that"]) + let v = native_list_append(v, ["dete", "noun", "detes", "", "", "", "debt"]) + let v = native_list_append(v, ["nes", "noun", "nes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["partie", "noun", "parties", "", "", "", "part section"]) + let v = native_list_append(v, ["matin", "noun", "matins", "", "", "", "morning"]) + let v = native_list_append(v, ["comte", "noun", "comtes", "", "", "", "count earl"]) + let v = native_list_append(v, ["doit", "noun", "doiz", "", "", "", "finger appendage"]) + let v = native_list_append(v, ["chasse", "noun", "chasses", "", "", "", "chest trunk large"]) + let v = native_list_append(v, ["quadrangle", "noun", "quadrangles", "", "", "", "quadrangle four-sided polygon"]) + let v = native_list_append(v, ["plats", "noun", "plats", "", "", "", "inflection of plat"]) + let v = native_list_append(v, ["Henri", "noun", "Henri", "", "", "", "a male given"]) + let v = native_list_append(v, ["unde", "noun", "undes", "", "", "", "wave motion of"]) + let v = native_list_append(v, ["ost", "noun", "ost", "", "", "", "army armed military"]) + let v = native_list_append(v, ["potage", "noun", "potages", "", "", "", "soup broth etc."]) + let v = native_list_append(v, ["curvature", "noun", "curvatures", "", "", "", "curvature"]) + let v = native_list_append(v, ["rancour", "noun", "rancours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["engin", "noun", "engins", "", "", "", "intelligence"]) + let v = native_list_append(v, ["sourcil", "noun", "sourciz", "", "", "", "eyebrow"]) + let v = native_list_append(v, ["faille", "noun", "failles", "", "", "", "failure"]) + let v = native_list_append(v, ["pillage", "noun", "pillages", "", "", "", "pillaging"]) + let v = native_list_append(v, ["ostur", "noun", "osturs", "", "", "", "goshawk"]) + let v = native_list_append(v, ["guerre", "noun", "guerres", "", "", "", "war large-scale conflict"]) + let v = native_list_append(v, ["corrosion", "noun", "corrosions", "", "", "", "corrosion"]) + let v = native_list_append(v, ["teste", "noun", "testes", "", "", "", "head"]) + let v = native_list_append(v, ["hoes", "noun", "hoes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["Londres", "noun", "Londres", "", "", "", "London the capital"]) + let v = native_list_append(v, ["taille", "noun", "tailles", "", "", "", "cut act instance"]) + let v = native_list_append(v, ["juin", "noun", "juinz", "", "", "", "June month"]) + let v = native_list_append(v, ["forme", "noun", "formes", "", "", "", "shape aspect form"]) + let v = native_list_append(v, ["poes", "noun", "poes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["prod", "noun", "prod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Dovre", "noun", "Dovre", "", "", "", "Dover a town"]) + let v = native_list_append(v, ["guerdon", "noun", "guerdons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dolour", "noun", "dolours", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["noel", "noun", "noeaus", "", "", "", "knot interlacing of"]) + let v = native_list_append(v, ["aimas", "noun", "aimas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aimant", "noun", "aimanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foison", "noun", "foisons", "", "", "", "much a lot"]) + let v = native_list_append(v, ["serein", "noun", "sereinz", "", "", "", "evening"]) + let v = native_list_append(v, ["cheveu", "noun", "cheveus", "", "", "", "a hair"]) + let v = native_list_append(v, ["barbel", "noun", "barbeaus", "", "", "", "barb something which"]) + let v = native_list_append(v, ["vill", "noun", "vill", "", "", "", "rare form of"]) + let v = native_list_append(v, ["foie", "noun", "foies", "", "", "", "liver"]) + let v = native_list_append(v, ["visitation", "noun", "visitations", "", "", "", "visitation act of"]) + let v = native_list_append(v, ["rigor", "noun", "rigors", "", "", "", "harshness severity"]) + let v = native_list_append(v, ["durance", "noun", "durances", "", "", "", "duration length with"]) + let v = native_list_append(v, ["tapiz", "noun", "tapiz", "", "", "", "carpet rug"]) + let v = native_list_append(v, ["vigor", "noun", "vigors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soif", "noun", "soif", "", "", "", "thirst"]) + let v = native_list_append(v, ["brachet", "noun", "brachez", "", "", "", "hunting dog trained"]) + let v = native_list_append(v, ["savor", "noun", "savors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cours", "noun", "cours", "", "", "", "route path"]) + let v = native_list_append(v, ["honte", "noun", "hontes", "", "", "", "shame feeling"]) + let v = native_list_append(v, ["prerogative", "noun", "prerogatives", "", "", "", "prerogative right or"]) + let v = native_list_append(v, ["mois", "noun", "mois", "", "", "", "month"]) + let v = native_list_append(v, ["benefice", "noun", "benefices", "", "", "", "benefice"]) + let v = native_list_append(v, ["soler", "noun", "solers", "", "", "", "shoe"]) + let v = native_list_append(v, ["plenitude", "noun", "plenitudes", "", "", "", "plenitude fullness"]) + let v = native_list_append(v, ["ennemi", "noun", "ennemis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["juillet", "noun", "juillez", "", "", "", "July month"]) + let v = native_list_append(v, ["merci", "noun", "merci", "", "", "", "mercy clemency"]) + let v = native_list_append(v, ["sperme", "noun", "spermes", "", "", "", "semen sperm sperm"]) + let v = native_list_append(v, ["penne", "noun", "pennes", "", "", "", "feather"]) + let v = native_list_append(v, ["adolescence", "noun", "adolescences", "", "", "", "adolescence"]) + let v = native_list_append(v, ["licence", "noun", "licences", "", "", "", "leave permission to"]) + let v = native_list_append(v, ["providence", "noun", "providence", "", "", "", "providence manifestation of"]) + let v = native_list_append(v, ["Tristan", "noun", "Tristan", "", "", "", "a male given"]) + let v = native_list_append(v, ["diable", "noun", "diable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hache", "noun", "haches", "", "", "", "axe bladed weapon"]) + let v = native_list_append(v, ["deport", "noun", "deporz", "", "", "", "enjoyment fun"]) + let v = native_list_append(v, ["bru", "noun", "brus", "", "", "", "daughter-in-law"]) + let v = native_list_append(v, ["reins", "noun", "reins", "", "", "", "small of the"]) + let v = native_list_append(v, ["provinces", "noun", "provinces", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["compression", "noun", "compressions", "", "", "", "compression act instance"]) + let v = native_list_append(v, ["forests", "noun", "forests", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["varlet", "noun", "varlez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["franchise", "noun", "franchises", "", "", "", "freedom quality of"]) + let v = native_list_append(v, ["cion", "noun", "cions", "", "", "", "child usually a"]) + let v = native_list_append(v, ["ambages", "noun", "ambages", "", "", "", "circumlocution ambages indirect"]) + let v = native_list_append(v, ["univers", "noun", "univers", "", "", "", "the whole world"]) + let v = native_list_append(v, ["bobance", "noun", "bobances", "", "", "", "bobance arrogance excessive"]) + let v = native_list_append(v, ["flair", "noun", "flairs", "", "", "", "smell odor"]) + let v = native_list_append(v, ["dus", "noun", "dus", "", "", "", "inflection of duc"]) + let v = native_list_append(v, ["olie", "noun", "olies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["joie", "noun", "joies", "", "", "", "joy feeling of"]) + let v = native_list_append(v, ["reversion", "noun", "reversions", "", "", "", "return act of"]) + let v = native_list_append(v, ["welke", "noun", "welkes", "", "", "", "whelk"]) + let v = native_list_append(v, ["veel", "noun", "veeaus", "", "", "", "calf young cow"]) + let v = native_list_append(v, ["decoction", "noun", "decoctions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chaperon", "noun", "chaperons", "", "", "", "a hairstyle popular"]) + let v = native_list_append(v, ["faitour", "noun", "faitours", "", "", "", "a layabout one"]) + let v = native_list_append(v, ["foin", "noun", "foinz", "", "", "", "hay"]) + let v = native_list_append(v, ["housel", "noun", "houseaus", "", "", "", "small boot"]) + let v = native_list_append(v, ["martel", "noun", "marteaus", "", "", "", "hammer tool"]) + let v = native_list_append(v, ["revers", "noun", "revers", "", "", "", "reverse opposite contrary"]) + let v = native_list_append(v, ["doi", "noun", "dois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fru", "noun", "frus", "", "", "", "rook bird"]) + let v = native_list_append(v, ["Albanie", "noun", "Albanie", "", "", "", "Albania a historical"]) + let v = native_list_append(v, ["lus", "noun", "lus", "", "", "", "pike fish"]) + let v = native_list_append(v, ["oriflamme", "noun", "oriflammes", "", "", "", "oriflamme"]) + let v = native_list_append(v, ["paleis", "noun", "paleis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["semaine", "noun", "semaines", "", "", "", "week"]) + let v = native_list_append(v, ["cri", "noun", "cris", "", "", "", "cry shout"]) + let v = native_list_append(v, ["sites", "noun", "sites", "", "", "", "inflection of site"]) + let v = native_list_append(v, ["cenit", "noun", "ceniz", "", "", "", "zenith point in"]) + let v = native_list_append(v, ["pupille", "noun", "pupilles", "", "", "", "orphan child of"]) + let v = native_list_append(v, ["chiffre", "noun", "chiffres", "", "", "", "number digit"]) + let v = native_list_append(v, ["urs", "noun", "urs", "", "", "", "bear animal"]) + let v = native_list_append(v, ["lois", "noun", "lois", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["reclaim", "noun", "reclains", "", "", "", "reputation"]) + let v = native_list_append(v, ["ombre", "noun", "ombres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["affaire", "noun", "affaires", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entitlement", "noun", "entitlemenz", "", "", "", "title name allocated"]) + let v = native_list_append(v, ["fantasie", "noun", "fantasies", "", "", "", "fantasy imagination concept"]) + let v = native_list_append(v, ["paume", "noun", "paumes", "", "", "", "palm of the"]) + let v = native_list_append(v, ["sele", "noun", "seles", "", "", "", "saddle equipment used"]) + let v = native_list_append(v, ["bure", "noun", "bures", "", "", "", "butter"]) + let v = native_list_append(v, ["mays", "noun", "mays", "", "", "", "May month"]) + let v = native_list_append(v, ["Egypte", "noun", "Egypte", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["ethimologie", "noun", "ethimologies", "", "", "", "etymology"]) + let v = native_list_append(v, ["credo", "noun", "credo", "", "", "", "The Nicene Creed"]) + let v = native_list_append(v, ["azur", "noun", "azurs", "", "", "", "azure blue color"]) + let v = native_list_append(v, ["flote", "noun", "flotes", "", "", "", "fleet collection of"]) + let v = native_list_append(v, ["bec", "noun", "bes", "", "", "", "beak bill of"]) + let v = native_list_append(v, ["narine", "noun", "narines", "", "", "", "nostril"]) + let v = native_list_append(v, ["estrangement", "noun", "estrangemenz", "", "", "", "estrangement alienation"]) + let v = native_list_append(v, ["ascension", "noun", "ascensions", "", "", "", "ascent"]) + let v = native_list_append(v, ["garçon", "noun", "garçons", "", "", "", "manservant"]) + let v = native_list_append(v, ["recompense", "noun", "recompenses", "", "", "", "recompense compensation"]) + let v = native_list_append(v, ["lin", "noun", "lins", "", "", "", "line lineage descent"]) + let v = native_list_append(v, ["leprous", "noun", "leprous", "", "", "", "a leper"]) + let v = native_list_append(v, ["rei", "noun", "reis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Gascoigne", "noun", "Gascoigne", "", "", "", "Gascony"]) + let v = native_list_append(v, ["baston", "noun", "bastons", "", "", "", "stick truncheon"]) + let v = native_list_append(v, ["vois", "noun", "vois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lé", "noun", "lez", "", "", "", "width"]) + let v = native_list_append(v, ["tribu", "noun", "tribus", "", "", "", "tribe"]) + let v = native_list_append(v, ["vavasour", "noun", "vavasours", "", "", "", "vavasour"]) + let v = native_list_append(v, ["coille", "noun", "coilles", "", "", "", "ball testicle"]) + let v = native_list_append(v, ["pape", "noun", "papes", "", "", "", "Pope"]) + let v = native_list_append(v, ["subjection", "noun", "subjections", "", "", "", "subjection state of"]) + let v = native_list_append(v, ["capon", "noun", "capons", "", "", "", "capon castrated cockerel"]) + let v = native_list_append(v, ["chemise", "noun", "chemises", "", "", "", "shirt overshirt"]) + let v = native_list_append(v, ["ceinture", "noun", "ceintures", "", "", "", "belt"]) + let v = native_list_append(v, ["manche", "noun", "manches", "", "", "", "sleeve"]) + let v = native_list_append(v, ["mur", "noun", "murs", "", "", "", "wall"]) + let v = native_list_append(v, ["mont", "noun", "monz", "", "", "", "mountain"]) + let v = native_list_append(v, ["fis", "noun", "fis", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["sucre", "noun", "sucre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beste", "noun", "bestes", "", "", "", "beast animal"]) + let v = native_list_append(v, ["saignee", "noun", "saignees", "", "", "", "bloodletting"]) + let v = native_list_append(v, ["fesse", "noun", "fesses", "", "", "", "buttock"]) + let v = native_list_append(v, ["poitrine", "noun", "poitrines", "", "", "", "chest"]) + let v = native_list_append(v, ["paroisse", "noun", "paroisses", "", "", "", "parish"]) + let v = native_list_append(v, ["joc", "noun", "jos", "", "", "", "roost perch for"]) + let v = native_list_append(v, ["fames", "noun", "fames", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["aise", "noun", "aises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viser", "noun", "visers", "", "", "", "visor"]) + let v = native_list_append(v, ["reng", "noun", "reinz", "", "", "", "place position especially"]) + let v = native_list_append(v, ["barons", "noun", "barons", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["toile", "noun", "toiles", "", "", "", "fabric"]) + let v = native_list_append(v, ["poivre", "noun", "poivres", "", "", "", "pepper spice"]) + let v = native_list_append(v, ["voisin", "noun", "voisins", "", "", "", "neighbor"]) + let v = native_list_append(v, ["voie", "noun", "voies", "", "", "", "path lane route"]) + let v = native_list_append(v, ["loisir", "noun", "loisirs", "", "", "", "free time"]) + let v = native_list_append(v, ["poing", "noun", "poinz", "", "", "", "hand"]) + let v = native_list_append(v, ["Arabe", "noun", "Arabes", "", "", "", "Arab person"]) + let v = native_list_append(v, ["apel", "noun", "apeaus", "", "", "", "call a vocal"]) + let v = native_list_append(v, ["moe", "noun", "moes", "", "", "", "grimace"]) + let v = native_list_append(v, ["chapitre", "noun", "chapitres", "", "", "", "chapter of a"]) + let v = native_list_append(v, ["gars", "noun", "gars", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tere", "noun", "teres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aigle", "noun", "aigles", "", "", "", "eagle animal"]) + let v = native_list_append(v, ["poumon", "noun", "poumons", "", "", "", "lung"]) + let v = native_list_append(v, ["piramide", "noun", "piramides", "", "", "", "pyramid"]) + let v = native_list_append(v, ["tur", "noun", "turs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["presumption", "noun", "presumptions", "", "", "", "presumption something which"]) + let v = native_list_append(v, ["fum", "noun", "funs", "", "", "", "smoke"]) + let v = native_list_append(v, ["linage", "noun", "linages", "", "", "", "lineage"]) + let v = native_list_append(v, ["cendre", "noun", "cendres", "", "", "", "ash of fire"]) + let v = native_list_append(v, ["proie", "noun", "proies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oie", "noun", "oies", "", "", "", "goose bird"]) + let v = native_list_append(v, ["penser", "noun", "pensers", "", "", "", "thought"]) + let v = native_list_append(v, ["façon", "noun", "façons", "", "", "", "way manner fashion"]) + let v = native_list_append(v, ["escalope", "noun", "escalopes", "", "", "", "shell hard outer"]) + let v = native_list_append(v, ["bren", "noun", "bren", "", "", "", "bran"]) + let v = native_list_append(v, ["vinaigre", "noun", "vinaigres", "", "", "", "vinegar"]) + let v = native_list_append(v, ["cuir", "noun", "cuirs", "", "", "", "leather"]) + let v = native_list_append(v, ["Marion", "noun", "Marion", "", "", "", "a female given"]) + let v = native_list_append(v, ["estat", "noun", "estaz", "", "", "", "state"]) + let v = native_list_append(v, ["escut", "noun", "escuz", "", "", "", "shield"]) + let v = native_list_append(v, ["fosse", "noun", "fosses", "", "", "", "fosse"]) + let v = native_list_append(v, ["peon", "noun", "peons", "", "", "", "one who goes"]) + let v = native_list_append(v, ["estomac", "noun", "estomas", "", "", "", "stomach"]) + let v = native_list_append(v, ["broche", "noun", "broches", "", "", "", "brooch pin jewellery"]) + let v = native_list_append(v, ["achat", "noun", "achaz", "", "", "", "buy purchase"]) + let v = native_list_append(v, ["predestination", "noun", "predestinations", "", "", "", "predestination doctrine that"]) + let v = native_list_append(v, ["greu", "noun", "greu", "", "", "", "Greek language"]) + let v = native_list_append(v, ["seles", "noun", "seles", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["conte", "noun", "contes", "", "", "", "story tale fable"]) + let v = native_list_append(v, ["cort", "noun", "corz", "", "", "", "court of a"]) + let v = native_list_append(v, ["cerf", "noun", "cers", "", "", "", "deer animal"]) + let v = native_list_append(v, ["escrin", "noun", "escrins", "", "", "", "box case"]) + let v = native_list_append(v, ["fei", "noun", "feis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["campagne", "noun", "campagnes", "", "", "", "the countryside"]) + let v = native_list_append(v, ["buisson", "noun", "buissons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houe", "noun", "houe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loc", "noun", "los", "", "", "", "lock"]) + let v = native_list_append(v, ["matrice", "noun", "matrices", "", "", "", "female reproductive system"]) + let v = native_list_append(v, ["herbe", "noun", "herbes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murs", "noun", "murs", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["noms", "noun", "noms", "", "", "", "inflection of nom"]) + let v = native_list_append(v, ["astronomie", "noun", "astronomie", "", "", "", "astronomy"]) + let v = native_list_append(v, ["maladie", "noun", "maladies", "", "", "", "sickness illness"]) + let v = native_list_append(v, ["enticement", "noun", "enticemenz", "", "", "", "incitement act instance"]) + let v = native_list_append(v, ["fust", "noun", "fuz", "", "", "", "wood material from"]) + let v = native_list_append(v, ["nazille", "noun", "nazilles", "", "", "", "nostril"]) + let v = native_list_append(v, ["malgré", "noun", "malgrez", "", "", "", "ill-will"]) + let v = native_list_append(v, ["conseil", "noun", "conseuz", "", "", "", "piece of advice"]) + let v = native_list_append(v, ["boucle", "noun", "boucles", "", "", "", "buckle"]) + let v = native_list_append(v, ["poudre", "noun", "poudres", "", "", "", "powder"]) + let v = native_list_append(v, ["diz", "noun", "diz", "", "", "", "inflection of dit"]) + let v = native_list_append(v, ["maçon", "noun", "maçons", "", "", "", "mason builder"]) + let v = native_list_append(v, ["crampe", "noun", "crampes", "", "", "", "cramp involuntary muscle"]) + let v = native_list_append(v, ["nevo", "noun", "nevos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roche", "noun", "roches", "", "", "", "rock large mass"]) + let v = native_list_append(v, ["graal", "noun", "graaus", "", "", "", "Holy Grail"]) + let v = native_list_append(v, ["prolongation", "noun", "prolongations", "", "", "", "prolongation"]) + let v = native_list_append(v, ["lepre", "noun", "lepres", "", "", "", "leprosy disease"]) + let v = native_list_append(v, ["blé", "noun", "blez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["princesse", "noun", "princesses", "", "", "", "princess"]) + let v = native_list_append(v, ["haue", "noun", "haue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arçon", "noun", "arçons", "", "", "", "saddle"]) + let v = native_list_append(v, ["jument", "noun", "jumenz", "", "", "", "beast of burden"]) + let v = native_list_append(v, ["colle", "noun", "colles", "", "", "", "bile bodily fluid"]) + let v = native_list_append(v, ["pesche", "noun", "pesches", "", "", "", "peach fruit"]) + let v = native_list_append(v, ["solas", "noun", "solas", "", "", "", "joy pleasure enjoyment"]) + let v = native_list_append(v, ["hanche", "noun", "hanches", "", "", "", "hip"]) + let v = native_list_append(v, ["cuisse", "noun", "cuisses", "", "", "", "thigh"]) + let v = native_list_append(v, ["pouce", "noun", "pouces", "", "", "", "thumb anatomy"]) + let v = native_list_append(v, ["François", "noun", "François", "", "", "", "Frenchman"]) + let v = native_list_append(v, ["eir", "noun", "eirs", "", "", "", "heir"]) + let v = native_list_append(v, ["bataille", "noun", "batailles", "", "", "", "battle"]) + let v = native_list_append(v, ["fein", "noun", "feinz", "", "", "", "hay"]) + let v = native_list_append(v, ["espace", "noun", "espaces", "", "", "", "space room empty"]) + let v = native_list_append(v, ["Leonard", "noun", "Leonard", "", "", "", "a male given"]) + let v = native_list_append(v, ["cercle", "noun", "cercles", "", "", "", "circle shape"]) + let v = native_list_append(v, ["quartier", "noun", "quartiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tonsure", "noun", "tonsures", "", "", "", "tonsure hair"]) + let v = native_list_append(v, ["murine", "noun", "murines", "", "", "", "plague pestilence"]) + let v = native_list_append(v, ["corbel", "noun", "corbeaus", "", "", "", "crow bird"]) + let v = native_list_append(v, ["alee", "noun", "alees", "", "", "", "route"]) + let v = native_list_append(v, ["fuer", "noun", "fuers", "", "", "", "price value financial"]) + let v = native_list_append(v, ["carpe", "noun", "carpes", "", "", "", "carp fish"]) + let v = native_list_append(v, ["parc", "noun", "pars", "", "", "", "enclosed area often"]) + let v = native_list_append(v, ["nain", "noun", "nainz", "", "", "", "dwarf mythical being"]) + let v = native_list_append(v, ["charbon", "noun", "charbons", "", "", "", "coal"]) + let v = native_list_append(v, ["marbre", "noun", "marbres", "", "", "", "marble stone"]) + let v = native_list_append(v, ["neveu", "noun", "neveus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baule", "noun", "baules", "", "", "", "dance"]) + let v = native_list_append(v, ["tente", "noun", "tentes", "", "", "", "tent temporary hut"]) + let v = native_list_append(v, ["parentage", "noun", "parentages", "", "", "", "bloodline heritage"]) + let v = native_list_append(v, ["vapeur", "noun", "vapeurs", "", "", "", "vapor"]) + let v = native_list_append(v, ["richesse", "noun", "richesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Irlande", "noun", "Irlande", "", "", "", "Ireland an island"]) + let v = native_list_append(v, ["pensé", "noun", "pensez", "", "", "", "thought"]) + let v = native_list_append(v, ["amitié", "noun", "amitiez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roque", "noun", "roques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dignité", "noun", "dignitez", "", "", "", "dignity"]) + let v = native_list_append(v, ["calice", "noun", "calices", "", "", "", "chalice alternative form"]) + let v = native_list_append(v, ["gals", "noun", "gals", "", "", "", "inflection of gal"]) + let v = native_list_append(v, ["victorie", "noun", "victories", "", "", "", "victory"]) + let v = native_list_append(v, ["vair", "noun", "vairs", "", "", "", "vair fur of"]) + let v = native_list_append(v, ["tirant", "noun", "tirans", "", "", "", "tyrant"]) + let v = native_list_append(v, ["enfance", "noun", "enfances", "", "", "", "childhood"]) + let v = native_list_append(v, ["moue", "noun", "moue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avantage", "noun", "avantages", "", "", "", "advantage"]) + let v = native_list_append(v, ["lanterne", "noun", "lanternes", "", "", "", "lantern box containing"]) + let v = native_list_append(v, ["clarté", "noun", "clartez", "", "", "", "clarity clearness"]) + let v = native_list_append(v, ["mache", "noun", "maches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Alain", "noun", "Alain", "", "", "", "a male given"]) + let v = native_list_append(v, ["leeches", "noun", "leeches", "", "", "", "inflection of leeche"]) + let v = native_list_append(v, ["espoir", "noun", "espoirs", "", "", "", "hope wish desire"]) + let v = native_list_append(v, ["folie", "noun", "folies", "", "", "", "madness insanity"]) + let v = native_list_append(v, ["lige", "noun", "liges", "", "", "", "liege liegeman vassal"]) + let v = native_list_append(v, ["songe", "noun", "songes", "", "", "", "dream"]) + let v = native_list_append(v, ["endroit", "noun", "endroiz", "", "", "", "place spot specified"]) + let v = native_list_append(v, ["cote", "noun", "cotes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cecile", "noun", "Cecile", "", "", "", "a female given"]) + let v = native_list_append(v, ["duchesse", "noun", "duchesses", "", "", "", "duchess"]) + let v = native_list_append(v, ["oncle", "noun", "oncles", "", "", "", "uncle"]) + let v = native_list_append(v, ["manciple", "noun", "manciple", "", "", "", "servant"]) + let v = native_list_append(v, ["esbat", "noun", "esbaz", "", "", "", "frolic"]) + let v = native_list_append(v, ["falconer", "noun", "falconers", "", "", "", "falconer person who"]) + let v = native_list_append(v, ["prisons", "noun", "prisons", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["leçon", "noun", "leçons", "", "", "", "reading"]) + let v = native_list_append(v, ["salaire", "noun", "salaire", "", "", "", "salary fixed amount"]) + let v = native_list_append(v, ["departir", "noun", "departirs", "", "", "", "departure"]) + let v = native_list_append(v, ["chape", "noun", "chapes", "", "", "", "cape sleeveless garment"]) + let v = native_list_append(v, ["cité", "noun", "citez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colee", "noun", "colees", "", "", "", "hit strike on"]) + let v = native_list_append(v, ["corone", "noun", "corones", "", "", "", "crown decoration for"]) + let v = native_list_append(v, ["cose", "noun", "coses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["culpe", "noun", "culpes", "", "", "", "fault culpability"]) + let v = native_list_append(v, ["bille", "noun", "billes", "", "", "", "stick baton"]) + let v = native_list_append(v, ["tans", "noun", "tans", "", "", "", "time"]) + let v = native_list_append(v, ["enemisté", "noun", "enemistez", "", "", "", "enmity quality of"]) + let v = native_list_append(v, ["quintals", "noun", "quintals", "", "", "", "inflection of quintal"]) + let v = native_list_append(v, ["escale", "noun", "escales", "", "", "", "shell hard outer"]) + let v = native_list_append(v, ["espere", "noun", "esperes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espose", "noun", "esposes", "", "", "", "wife female spouse"]) + let v = native_list_append(v, ["espume", "noun", "espumes", "", "", "", "foam"]) + let v = native_list_append(v, ["guarde", "noun", "guardes", "", "", "", "protection act of"]) + let v = native_list_append(v, ["estudie", "noun", "estudies", "", "", "", "study"]) + let v = native_list_append(v, ["signe", "noun", "signes", "", "", "", "sign signal"]) + let v = native_list_append(v, ["ladre", "noun", "ladres", "", "", "", "leper person with"]) + let v = native_list_append(v, ["ladres", "noun", "ladres", "", "", "", "inflection of ladre"]) + let v = native_list_append(v, ["pasté", "noun", "pastez", "", "", "", "pie or a"]) + let v = native_list_append(v, ["pité", "noun", "pitez", "", "", "", "sorrow grief sadness"]) + let v = native_list_append(v, ["pite", "noun", "pites", "", "", "", "pity feeling emotion"]) + let v = native_list_append(v, ["planche", "noun", "planches", "", "", "", "plank board piece"]) + let v = native_list_append(v, ["planté", "noun", "plantez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pode", "noun", "pode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medre", "noun", "medres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["novele", "noun", "noveles", "", "", "", "article of news"]) + let v = native_list_append(v, ["orine", "noun", "orines", "", "", "", "urine"]) + let v = native_list_append(v, ["orle", "noun", "orle", "", "", "", "border trim of"]) + let v = native_list_append(v, ["rasure", "noun", "rasures", "", "", "", "scrapings"]) + let v = native_list_append(v, ["remede", "noun", "remedes", "", "", "", "remedy solution"]) + let v = native_list_append(v, ["rente", "noun", "rentes", "", "", "", "income"]) + let v = native_list_append(v, ["salive", "noun", "salives", "", "", "", "saliva"]) + let v = native_list_append(v, ["teche", "noun", "teches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["termine", "noun", "termines", "", "", "", "finish end"]) + let v = native_list_append(v, ["bezant", "noun", "bezanz", "", "", "", "bezant coin"]) + let v = native_list_append(v, ["tumbe", "noun", "tumbes", "", "", "", "tomb"]) + let v = native_list_append(v, ["ulcere", "noun", "ulceres", "", "", "", "ulcer"]) + let v = native_list_append(v, ["neutre", "noun", "neutres", "", "", "", "neuter"]) + let v = native_list_append(v, ["saumon", "noun", "saumons", "", "", "", "salmon fish"]) + let v = native_list_append(v, ["mantelet", "noun", "mantelés", "", "", "", "small coat"]) + let v = native_list_append(v, ["pitié", "noun", "pitiez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charme", "noun", "charmes", "", "", "", "enchantment magic spell"]) + let v = native_list_append(v, ["dortour", "noun", "dortours", "", "", "", "dormitory room designed"]) + let v = native_list_append(v, ["consuetude", "noun", "consuetudes", "", "", "", "custom"]) + let v = native_list_append(v, ["geste", "noun", "gestes", "", "", "", "act action"]) + let v = native_list_append(v, ["bagage", "noun", "bagages", "", "", "", "baggage luggage that"]) + let v = native_list_append(v, ["bagages", "noun", "bagages", "", "", "", "inflection of bagage"]) + let v = native_list_append(v, ["crac", "noun", "crac", "", "", "", "crusader castle"]) + let v = native_list_append(v, ["manuel", "noun", "manueus", "", "", "", "handle"]) + let v = native_list_append(v, ["autel", "noun", "auteaus", "", "", "", "altar"]) + let v = native_list_append(v, ["portage", "noun", "portages", "", "", "", "act of carrying"]) + let v = native_list_append(v, ["essai", "noun", "essais", "", "", "", "trial task of"]) + let v = native_list_append(v, ["terreur", "noun", "terreurs", "", "", "", "terror extreme fear"]) + let v = native_list_append(v, ["ordinaire", "noun", "ordinaires", "", "", "", "a diocesan church"]) + let v = native_list_append(v, ["mesel", "noun", "meseaus", "", "", "", "leper"]) + let v = native_list_append(v, ["goule", "noun", "goules", "", "", "", "mouth"]) + let v = native_list_append(v, ["coquille", "noun", "coquilles", "", "", "", "shell hard protective"]) + let v = native_list_append(v, ["branche", "noun", "branches", "", "", "", "branch appendage of"]) + let v = native_list_append(v, ["trut", "noun", "truz", "", "", "", "trick"]) + let v = native_list_append(v, ["Raoul", "noun", "Raoul", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hubert", "noun", "Hubert", "", "", "", "a male given"]) + let v = native_list_append(v, ["cheville", "noun", "chevilles", "", "", "", "ankle anatomy"]) + let v = native_list_append(v, ["peinture", "noun", "peintures", "", "", "", "picture"]) + let v = native_list_append(v, ["digestif", "noun", "digestis", "", "", "", "a digestive substance"]) + let v = native_list_append(v, ["pansé", "noun", "pansez", "", "", "", "thought"]) + let v = native_list_append(v, ["sapience", "noun", "sapiences", "", "", "", "wisdom sapience"]) + let v = native_list_append(v, ["suer", "noun", "suer", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["docteur", "noun", "docteurs", "", "", "", "doctor medical practitioner"]) + let v = native_list_append(v, ["cotte", "noun", "cottes", "", "", "", "overshirt tunic"]) + let v = native_list_append(v, ["bref", "noun", "bres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["casse", "noun", "casses", "", "", "", "Old Northern French"]) + let v = native_list_append(v, ["contesse", "noun", "contesses", "", "", "", "countess wife of"]) + let v = native_list_append(v, ["coste", "noun", "costes", "", "", "", "side of an"]) + let v = native_list_append(v, ["croste", "noun", "crostes", "", "", "", "crust"]) + let v = native_list_append(v, ["feste", "noun", "festes", "", "", "", "party celebration"]) + let v = native_list_append(v, ["gambe", "noun", "gambes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baterie", "noun", "bateries", "", "", "", "action of beating"]) + let v = native_list_append(v, ["fleche", "noun", "fleches", "", "", "", "arrow projectile fired"]) + let v = native_list_append(v, ["veue", "noun", "veues", "", "", "", "sight ability to"]) + let v = native_list_append(v, ["drap", "noun", "dras", "", "", "", "sheet or covering"]) + let v = native_list_append(v, ["lou", "noun", "lous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erbe", "noun", "erbes", "", "", "", "grass"]) + let v = native_list_append(v, ["viron", "noun", "virons", "", "", "", "circle"]) + let v = native_list_append(v, ["chen", "noun", "chens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cooing", "noun", "cooinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chevaliers", "noun", "chevaliers", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["doel", "noun", "doeaus", "", "", "", "pain suffering anguish"]) + let v = native_list_append(v, ["coussin", "noun", "coussins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frein", "noun", "freinz", "", "", "", "bit equipment put"]) + let v = native_list_append(v, ["pel", "noun", "peaus", "", "", "", "skin"]) + let v = native_list_append(v, ["bisse", "noun", "bisses", "", "", "", "doe female deer"]) + let v = native_list_append(v, ["hostages", "noun", "hostages", "", "", "", "inflection of hostage"]) + let v = native_list_append(v, ["seigneur", "noun", "seigneurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["socage", "noun", "socages", "", "", "", "socage system whereby"]) + let v = native_list_append(v, ["theologie", "noun", "theologie", "", "", "", "theology"]) + let v = native_list_append(v, ["tavernier", "noun", "taverniers", "", "", "", "taverner"]) + let v = native_list_append(v, ["pan", "noun", "pans", "", "", "", "bit piece part"]) + let v = native_list_append(v, ["charité", "noun", "charitez", "", "", "", "charity love Christian"]) + let v = native_list_append(v, ["promesse", "noun", "promesses", "", "", "", "promise"]) + let v = native_list_append(v, ["ruit", "noun", "ruiz", "", "", "", "rut period of"]) + let v = native_list_append(v, ["salamandre", "noun", "salamandres", "", "", "", "salamander amphibian"]) + let v = native_list_append(v, ["glic", "noun", "glic", "", "", "", "gleek card game"]) + let v = native_list_append(v, ["ju", "noun", "jus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angoisse", "noun", "angoisses", "", "", "", "fear worry terror"]) + let v = native_list_append(v, ["bonté", "noun", "bontez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nausee", "noun", "nausees", "", "", "", "nausea"]) + let v = native_list_append(v, ["boscage", "noun", "boscages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["messe", "noun", "messes", "", "", "", "mass"]) + let v = native_list_append(v, ["fam", "noun", "fans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seel", "noun", "seeaus", "", "", "", "seal means of"]) + let v = native_list_append(v, ["bedel", "noun", "bedeaus", "", "", "", "A beadle academic"]) + let v = native_list_append(v, ["borc", "noun", "bors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assaut", "noun", "assauz", "", "", "", "assault attack"]) + let v = native_list_append(v, ["vertu", "noun", "vertus", "", "", "", "valour honour goodness"]) + let v = native_list_append(v, ["plaisance", "noun", "plaisances", "", "", "", "pleasure"]) + let v = native_list_append(v, ["presentment", "noun", "presentmenz", "", "", "", "presentation act of"]) + let v = native_list_append(v, ["genealogie", "noun", "genealogies", "", "", "", "genealogy"]) + let v = native_list_append(v, ["preuve", "noun", "preuves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conté", "noun", "contez", "", "", "", "county land ruled"]) + let v = native_list_append(v, ["Gales", "noun", "Gales", "", "", "", "Wales a medieval"]) + let v = native_list_append(v, ["palme", "noun", "palmes", "", "", "", "palm leaf"]) + let v = native_list_append(v, ["furet", "noun", "furez", "", "", "", "ferret"]) + let v = native_list_append(v, ["Artur", "noun", "Artur", "", "", "", "a male given"]) + let v = native_list_append(v, ["philosophie", "noun", "philosophies", "", "", "", "philosophy area of"]) + let v = native_list_append(v, ["degré", "noun", "degrez", "", "", "", "step flat horizontal"]) + let v = native_list_append(v, ["memorie", "noun", "memories", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prut", "noun", "prut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laitue", "noun", "laitues", "", "", "", "lettuce"]) + let v = native_list_append(v, ["vigur", "noun", "vigurs", "", "", "", "force might power"]) + let v = native_list_append(v, ["hom", "noun", "hom", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["fiance", "noun", "fiances", "", "", "", "faith confidence"]) + let v = native_list_append(v, ["mandil", "noun", "mandiz", "", "", "", "small coat"]) + let v = native_list_append(v, ["possibilité", "noun", "possibilitez", "", "", "", "possibility"]) + let v = native_list_append(v, ["queste", "noun", "questes", "", "", "", "search act instance"]) + let v = native_list_append(v, ["putes", "noun", "putes", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["enfantement", "noun", "enfantemenz", "", "", "", "childbirth"]) + let v = native_list_append(v, ["vil", "noun", "vil", "", "", "", "horrible vile awful"]) + let v = native_list_append(v, ["hous", "noun", "houx", "", "", "", "holly"]) + let v = native_list_append(v, ["persone", "noun", "persone", "", "", "", "person individual"]) + let v = native_list_append(v, ["macis", "noun", "macis", "", "", "", "mace spice"]) + let v = native_list_append(v, ["dragun", "noun", "draguns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["albe", "noun", "albes", "", "", "", "dawn sunrise start"]) + let v = native_list_append(v, ["vigne", "noun", "vignes", "", "", "", "vine"]) + let v = native_list_append(v, ["chenu", "noun", "chenus", "", "", "", "old person"]) + let v = native_list_append(v, ["fenix", "noun", "fenix", "", "", "", "phoenix mythical bird"]) + let v = native_list_append(v, ["proces", "noun", "proces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["farmacie", "noun", "farmacies", "", "", "", "laxative substance such"]) + let v = native_list_append(v, ["sentier", "noun", "sentiers", "", "", "", "path pathway"]) + let v = native_list_append(v, ["sauge", "noun", "sauges", "", "", "", "sage herb"]) + let v = native_list_append(v, ["glorie", "noun", "glories", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flot", "noun", "floz", "", "", "", "wave billow surge"]) + let v = native_list_append(v, ["unité", "noun", "unitez", "", "", "", "unity quality of"]) + let v = native_list_append(v, ["lampe", "noun", "lampes", "", "", "", "lamp device designed"]) + let v = native_list_append(v, ["grappe", "noun", "grappes", "", "", "", "grappling hook"]) + let v = native_list_append(v, ["cortine", "noun", "cortines", "", "", "", "curtain large piece"]) + let v = native_list_append(v, ["selve", "noun", "selves", "", "", "", "forest"]) + let v = native_list_append(v, ["avarie", "noun", "avaries", "", "", "", "damage done to"]) + let v = native_list_append(v, ["buche", "noun", "buches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foreste", "noun", "forestes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pantere", "noun", "panteres", "", "", "", "panther felid"]) + let v = native_list_append(v, ["tempeste", "noun", "tempestes", "", "", "", "storm tempest"]) + let v = native_list_append(v, ["diete", "noun", "dietes", "", "", "", "diet consumption of"]) + let v = native_list_append(v, ["lavanderie", "noun", "lavanderies", "", "", "", "laundry place where"]) + let v = native_list_append(v, ["cupe", "noun", "cupes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["menestrel", "noun", "menestreaus", "", "", "", "servant"]) + let v = native_list_append(v, ["ipocrite", "noun", "ipocrites", "", "", "", "hypocrite"]) + let v = native_list_append(v, ["laiche", "noun", "laiches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ordinarie", "noun", "ordinaries", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unicorne", "noun", "unicornes", "", "", "", "unicorn mythical beast"]) + let v = native_list_append(v, ["françois", "noun", "françois", "", "", "", "the Old French"]) + let v = native_list_append(v, ["Leroy", "noun", "Leroys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palat", "noun", "palaz", "", "", "", "palate roof of"]) + let v = native_list_append(v, ["paon", "noun", "paons", "", "", "", "peacock"]) + let v = native_list_append(v, ["martire", "noun", "martires", "", "", "", "martyr"]) + let v = native_list_append(v, ["veisin", "noun", "veisins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orage", "noun", "orages", "", "", "", "storm tempest"]) + let v = native_list_append(v, ["clos", "noun", "clos", "", "", "", "enclosed outdoor area"]) + let v = native_list_append(v, ["maille", "noun", "mailles", "", "", "", "chainmail mail"]) + let v = native_list_append(v, ["fontaine", "noun", "fontaines", "", "", "", "fountain"]) + let v = native_list_append(v, ["tristur", "noun", "tristurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["accide", "noun", "accides", "", "", "", "indolence laziness accidie"]) + let v = native_list_append(v, ["escluse", "noun", "escluses", "", "", "", "sluice"]) + let v = native_list_append(v, ["alun", "noun", "aluns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faucon", "noun", "faucons", "", "", "", "falcon animal"]) + let v = native_list_append(v, ["sirop", "noun", "siros", "", "", "", "syrup"]) + let v = native_list_append(v, ["souler", "noun", "soulers", "", "", "", "shoe"]) + let v = native_list_append(v, ["peigne", "noun", "peignes", "", "", "", "comb toothed implement"]) + let v = native_list_append(v, ["violette", "noun", "violettes", "", "", "", "violet"]) + let v = native_list_append(v, ["parclose", "noun", "parcloses", "", "", "", "end finish"]) + let v = native_list_append(v, ["muniment", "noun", "munimenz", "", "", "", "reinforcement fortification"]) + let v = native_list_append(v, ["droiture", "noun", "droitures", "", "", "", "right entitlement"]) + let v = native_list_append(v, ["pruner", "noun", "pruners", "", "", "", "plum tree"]) + let v = native_list_append(v, ["jugement", "noun", "jugemenz", "", "", "", "judgment"]) + let v = native_list_append(v, ["clamant", "noun", "clamanz", "", "", "", "A claimant"]) + let v = native_list_append(v, ["candele", "noun", "candeles", "", "", "", "candle"]) + let v = native_list_append(v, ["lection", "noun", "lections", "", "", "", "election choice"]) + let v = native_list_append(v, ["traitre", "noun", "traitre", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["chauve", "noun", "chauve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["indicatif", "noun", "indicatis", "", "", "", "indicative mood"]) + let v = native_list_append(v, ["cors", "noun", "cors", "", "", "", "body"]) + let v = native_list_append(v, ["gelee", "noun", "gelees", "", "", "", "cold spell period"]) + let v = native_list_append(v, ["anz", "noun", "anz", "", "", "", "inflection of an"]) + let v = native_list_append(v, ["Turc", "noun", "Turs", "", "", "", "Turk Turkish person"]) + let v = native_list_append(v, ["bulle", "noun", "bulles", "", "", "", "seal a stamp"]) + let v = native_list_append(v, ["ensaumple", "noun", "ensaumples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vouel", "noun", "voueus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hydromancie", "noun", "hydromancies", "", "", "", "hydromancy"]) + let v = native_list_append(v, ["repos", "noun", "repos", "", "", "", "rest"]) + let v = native_list_append(v, ["anemi", "noun", "anemis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suor", "noun", "suors", "", "", "", "sweat liquid produced"]) + let v = native_list_append(v, ["idolatrie", "noun", "idolatrie", "", "", "", "idolatry worship of"]) + let v = native_list_append(v, ["propreté", "noun", "propretez", "", "", "", "ownership the right"]) + let v = native_list_append(v, ["foudre", "noun", "foudres", "", "", "", "lightning"]) + let v = native_list_append(v, ["rosier", "noun", "rosiers", "", "", "", "rosebush"]) + let v = native_list_append(v, ["capitaine", "noun", "capitaines", "", "", "", "captain"]) + let v = native_list_append(v, ["frere", "noun", "freres", "", "", "", "brother family member"]) + let v = native_list_append(v, ["humidité", "noun", "humiditez", "", "", "", "moistness dampness humidity"]) + let v = native_list_append(v, ["cruauté", "noun", "cruautez", "", "", "", "cruelty"]) + let v = native_list_append(v, ["estable", "noun", "estables", "", "", "", "stable place for"]) + let v = native_list_append(v, ["torche", "noun", "torches", "", "", "", "bundle of sticks"]) + let v = native_list_append(v, ["pui", "noun", "puis", "", "", "", "well structure from"]) + let v = native_list_append(v, ["verz", "noun", "verz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["devin", "noun", "devins", "", "", "", "one who practices"]) + let v = native_list_append(v, ["apetit", "noun", "apetiz", "", "", "", "appetite desire want"]) + let v = native_list_append(v, ["barun", "noun", "baruns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guige", "noun", "guiges", "", "", "", "guige strap"]) + let v = native_list_append(v, ["enfer", "noun", "enfers", "", "", "", "Hell"]) + let v = native_list_append(v, ["nient", "noun", "nient", "", "", "", "nothing an empty"]) + let v = native_list_append(v, ["porche", "noun", "porches", "", "", "", "porch decorated or"]) + let v = native_list_append(v, ["vilain", "noun", "vilainz", "", "", "", "peasant commoner"]) + let v = native_list_append(v, ["vilains", "noun", "vilains", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["serpe", "noun", "serpes", "", "", "", "serpent snake"]) + let v = native_list_append(v, ["geme", "noun", "gemes", "", "", "", "gem gemstone"]) + let v = native_list_append(v, ["fenestre", "noun", "fenestres", "", "", "", "window"]) + let v = native_list_append(v, ["borse", "noun", "borses", "", "", "", "small bag used"]) + let v = native_list_append(v, ["geometrie", "noun", "geometrie", "", "", "", "geometry branch of"]) + let v = native_list_append(v, ["pompe", "noun", "pompes", "", "", "", "extravagant ceremony pomp"]) + let v = native_list_append(v, ["arche", "noun", "arches", "", "", "", "arch"]) + let v = native_list_append(v, ["langouste", "noun", "langoustes", "", "", "", "grasshopper"]) + let v = native_list_append(v, ["coverture", "noun", "covertures", "", "", "", "covering cover"]) + let v = native_list_append(v, ["repletion", "noun", "repletions", "", "", "", "repletion fullness"]) + let v = native_list_append(v, ["vultur", "noun", "vulturs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sablon", "noun", "sablons", "", "", "", "sand"]) + let v = native_list_append(v, ["ortografie", "noun", "ortografies", "", "", "", "orthography spelling"]) + let v = native_list_append(v, ["oste", "noun", "ostes", "", "", "", "innkeeper landlord"]) + let v = native_list_append(v, ["parcelle", "noun", "parcelles", "", "", "", "parcel"]) + let v = native_list_append(v, ["anelet", "noun", "anelez", "", "", "", "small ring circular"]) + let v = native_list_append(v, ["guichet", "noun", "guichez", "", "", "", "small door"]) + let v = native_list_append(v, ["biche", "noun", "biches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nonbre", "noun", "nonbres", "", "", "", "number"]) + let v = native_list_append(v, ["curs", "noun", "curs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vermine", "noun", "vermines", "", "", "", "vermin any disliked"]) + let v = native_list_append(v, ["acorde", "noun", "acordes", "", "", "", "agreement"]) + let v = native_list_append(v, ["purpresture", "noun", "purprestures", "", "", "", "purpresture illegal seizure"]) + let v = native_list_append(v, ["achier", "noun", "achier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fauchon", "noun", "fauchons", "", "", "", "falchion"]) + let v = native_list_append(v, ["blasfemie", "noun", "blasfemies", "", "", "", "blasphemy"]) + let v = native_list_append(v, ["suppositoire", "noun", "suppositoires", "", "", "", "suppository"]) + let v = native_list_append(v, ["castel", "noun", "casteaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coriandre", "noun", "coriandres", "", "", "", "coriander"]) + let v = native_list_append(v, ["safran", "noun", "safrans", "", "", "", "saffron"]) + let v = native_list_append(v, ["paradis", "noun", "paradis", "", "", "", "paradise"]) + let v = native_list_append(v, ["Romain", "noun", "Romainz", "", "", "", "Roman citizen of"]) + let v = native_list_append(v, ["cit", "noun", "cit", "", "", "", "synonym of citet"]) + let v = native_list_append(v, ["abondance", "noun", "abondances", "", "", "", "abundance plentiful amount"]) + let v = native_list_append(v, ["forche", "noun", "forches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vaillance", "noun", "vaillances", "", "", "", "value worth"]) + let v = native_list_append(v, ["rivage", "noun", "rivages", "", "", "", "riverbank or shore"]) + let v = native_list_append(v, ["meschine", "noun", "meschines", "", "", "", "female servant"]) + let v = native_list_append(v, ["corne", "noun", "cornes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cofre", "noun", "cofres", "", "", "", "chest large box"]) + let v = native_list_append(v, ["houre", "noun", "houres", "", "", "", "hour unit of"]) + let v = native_list_append(v, ["gendre", "noun", "gendres", "", "", "", "son-in-law"]) + let v = native_list_append(v, ["joes", "noun", "joes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["liue", "noun", "liues", "", "", "", "league unit of"]) + let v = native_list_append(v, ["anel", "noun", "aneaus", "", "", "", "ring small metal"]) + let v = native_list_append(v, ["corf", "noun", "cors", "", "", "", "crow bird"]) + let v = native_list_append(v, ["raie", "noun", "raies", "", "", "", "ray fish"]) + let v = native_list_append(v, ["souple", "noun", "souple", "", "", "", "supple which bends"]) + let v = native_list_append(v, ["vewe", "noun", "vewes", "", "", "", "sight ability to"]) + let v = native_list_append(v, ["butor", "noun", "butors", "", "", "", "bittern bird"]) + let v = native_list_append(v, ["abri", "noun", "abris", "", "", "", "shelter physical protection"]) + let v = native_list_append(v, ["baptiste", "noun", "baptistes", "", "", "", "baptist"]) + let v = native_list_append(v, ["fraternité", "noun", "fraternitez", "", "", "", "brotherhood state of"]) + let v = native_list_append(v, ["s.", "noun", "s.", "", "", "", "abbreviation of saint"]) + let v = native_list_append(v, ["potier", "noun", "potiers", "", "", "", "potter"]) + let v = native_list_append(v, ["sigle", "noun", "sigles", "", "", "", "sail fabric attached"]) + let v = native_list_append(v, ["autorité", "noun", "autoritez", "", "", "", "authority"]) + let v = native_list_append(v, ["ker", "noun", "kers", "", "", "", "chier"]) + let v = native_list_append(v, ["rebelle", "noun", "rebelles", "", "", "", "rebel"]) + let v = native_list_append(v, ["garçonnet", "noun", "garçonnez", "", "", "", "a little boy"]) + let v = native_list_append(v, ["gute", "noun", "gutes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flanc", "noun", "flans", "", "", "", "side flank anatomy"]) + let v = native_list_append(v, ["mangier", "noun", "mangiers", "", "", "", "food nourishment"]) + let v = native_list_append(v, ["faisan", "noun", "faisans", "", "", "", "pheasant"]) + let v = native_list_append(v, ["poutre", "noun", "poutres", "", "", "", "beam girder"]) + let v = native_list_append(v, ["nominatif", "noun", "nominatis", "", "", "", "nominative nominative case"]) + let v = native_list_append(v, ["busse", "noun", "busses", "", "", "", "a type of"]) + let v = native_list_append(v, ["garantie", "noun", "garanties", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hoste", "noun", "hostes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estoile", "noun", "estoiles", "", "", "", "star"]) + let v = native_list_append(v, ["calefaction", "noun", "calefactions", "", "", "", "calefaction production of"]) + let v = native_list_append(v, ["piler", "noun", "pilers", "", "", "", "pillar"]) + let v = native_list_append(v, ["carn", "noun", "carns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Lancelot", "noun", "Lancelot", "", "", "", "Lancelot"]) + let v = native_list_append(v, ["paiement", "noun", "paiemenz", "", "", "", "payment"]) + let v = native_list_append(v, ["materas", "noun", "materas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riviere", "noun", "rivieres", "", "", "", "river"]) + let v = native_list_append(v, ["fronce", "noun", "fronces", "", "", "", "wrinkle of the"]) + let v = native_list_append(v, ["monie", "noun", "monies", "", "", "", "monk"]) + let v = native_list_append(v, ["contree", "noun", "contrees", "", "", "", "country the countryside"]) + let v = native_list_append(v, ["blason", "noun", "blasons", "", "", "", "shield"]) + let v = native_list_append(v, ["clementia", "noun", "clementias", "", "", "", "clemency mercy"]) + let v = native_list_append(v, ["piere", "noun", "pieres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["magnes", "noun", "magnes", "", "", "", "inflection of magne"]) + let v = native_list_append(v, ["garant", "noun", "garanz", "", "", "", "guaranty assurance"]) + let v = native_list_append(v, ["ruine", "noun", "ruines", "", "", "", "ruin remnant of"]) + let v = native_list_append(v, ["tousse", "noun", "tousses", "", "", "", "cough"]) + let v = native_list_append(v, ["crenel", "noun", "creneaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feid", "noun", "feiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiole", "noun", "fioles", "", "", "", "vial phial"]) + let v = native_list_append(v, ["seint", "noun", "seinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ensample", "noun", "ensamples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cambre", "noun", "cambres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cambres", "noun", "cambres", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["coute", "noun", "coutes", "", "", "", "elbow anatomy"]) + let v = native_list_append(v, ["bouge", "noun", "bouges", "", "", "", "sack purse small"]) + let v = native_list_append(v, ["verdit", "noun", "verdiz", "", "", "", "verdict"]) + let v = native_list_append(v, ["criquet", "noun", "criquez", "", "", "", "locust insect"]) + let v = native_list_append(v, ["plaigne", "noun", "plaignes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oint", "noun", "oinz", "", "", "", "lard fat grease"]) + let v = native_list_append(v, ["pucelage", "noun", "pucelages", "", "", "", "virginity"]) + let v = native_list_append(v, ["supe", "noun", "supes", "", "", "", "soup comestible liquid"]) + let v = native_list_append(v, ["estuve", "noun", "estuves", "", "", "", "large bath"]) + let v = native_list_append(v, ["esté", "noun", "estez", "", "", "", "summer season"]) + let v = native_list_append(v, ["saisine", "noun", "saisines", "", "", "", "seizure"]) + let v = native_list_append(v, ["tamarinde", "noun", "tamarinde", "", "", "", "tamarind tropical tree"]) + let v = native_list_append(v, ["millier", "noun", "milliers", "", "", "", "thousand a number"]) + let v = native_list_append(v, ["ivoire", "noun", "ivoires", "", "", "", "ivory"]) + let v = native_list_append(v, ["niés", "noun", "niés", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["enseignement", "noun", "enseignemenz", "", "", "", "education"]) + let v = native_list_append(v, ["mers", "noun", "mers", "", "", "", "merchandise goods intended"]) + let v = native_list_append(v, ["paumes", "noun", "paumes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["putains", "noun", "putains", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["martre", "noun", "martres", "", "", "", "marten animal"]) + let v = native_list_append(v, ["comtes", "noun", "comtes", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["livree", "noun", "livrees", "", "", "", "delivery"]) + let v = native_list_append(v, ["lione", "noun", "liones", "", "", "", "lioness"]) + let v = native_list_append(v, ["rois", "noun", "rois", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["toits", "noun", "toits", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["froment", "noun", "fromenz", "", "", "", "wheat"]) + let v = native_list_append(v, ["gayn", "noun", "gayns", "", "", "", "a victory win"]) + let v = native_list_append(v, ["fuie", "noun", "fuies", "", "", "", "flight act instance"]) + let v = native_list_append(v, ["esche", "noun", "esches", "", "", "", "fishing hook"]) + let v = native_list_append(v, ["voisins", "noun", "voisins", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["moton", "noun", "motons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["incube", "noun", "incubes", "", "", "", "incubus"]) + let v = native_list_append(v, ["esturgeon", "noun", "esturgeons", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["trone", "noun", "trones", "", "", "", "throne ornamental seat"]) + let v = native_list_append(v, ["javelot", "noun", "javeloz", "", "", "", "javelin weapon"]) + let v = native_list_append(v, ["armure", "noun", "armures", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chambres", "noun", "chambres", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["amiral", "noun", "amiraus", "", "", "", "admiral military officer"]) + let v = native_list_append(v, ["ambassadeur", "noun", "ambassadeurs", "", "", "", "ambassador"]) + let v = native_list_append(v, ["officier", "noun", "officiers", "", "", "", "officer"]) + let v = native_list_append(v, ["gibet", "noun", "gibez", "", "", "", "gallows"]) + let v = native_list_append(v, ["camomille", "noun", "camomilles", "", "", "", "camomile plant"]) + let v = native_list_append(v, ["chapelet", "noun", "chapelez", "", "", "", "small hat"]) + let v = native_list_append(v, ["pescherie", "noun", "pescheries", "", "", "", "fishery"]) + let v = native_list_append(v, ["fistule", "noun", "fistules", "", "", "", "fistula"]) + let v = native_list_append(v, ["pencel", "noun", "penceaus", "", "", "", "pencel a small"]) + let v = native_list_append(v, ["parabole", "noun", "paraboles", "", "", "", "parable"]) + let v = native_list_append(v, ["pance", "noun", "pances", "", "", "", "stomach belly"]) + let v = native_list_append(v, ["merveille", "noun", "merveilles", "", "", "", "wonder marvel"]) + let v = native_list_append(v, ["cisne", "noun", "cisnes", "", "", "", "swan"]) + let v = native_list_append(v, ["jouwe", "noun", "jouwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emprise", "noun", "emprises", "", "", "", "enterprise undertaking activity"]) + let v = native_list_append(v, ["baril", "noun", "bariz", "", "", "", "small barrel"]) + let v = native_list_append(v, ["boline", "noun", "bolines", "", "", "", "bowline"]) + let v = native_list_append(v, ["faon", "noun", "faons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matras", "noun", "matras", "", "", "", "mattress"]) + let v = native_list_append(v, ["sorcier", "noun", "sorciers", "", "", "", "sorcerer"]) + let v = native_list_append(v, ["suspens", "noun", "suspens", "", "", "", "postponement suspension state"]) + let v = native_list_append(v, ["suette", "noun", "suette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lamproie", "noun", "lamproies", "", "", "", "lamprey"]) + let v = native_list_append(v, ["sandale", "noun", "sandales", "", "", "", "sandal type of"]) + let v = native_list_append(v, ["virelai", "noun", "virelais", "", "", "", "virelai"]) + let v = native_list_append(v, ["mesne", "noun", "mesnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comparatif", "noun", "comparatis", "", "", "", "comparative word in"]) + let v = native_list_append(v, ["querele", "noun", "quereles", "", "", "", "dispute argument"]) + let v = native_list_append(v, ["mumie", "noun", "mumies", "", "", "", "mummy substance used"]) + let v = native_list_append(v, ["plummier", "noun", "plummiers", "", "", "", "plumber one who"]) + let v = native_list_append(v, ["propos", "noun", "propos", "", "", "", "purpose"]) + let v = native_list_append(v, ["entrailles", "noun", "entrailles", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["iver", "noun", "ivers", "", "", "", "winter"]) + let v = native_list_append(v, ["toupet", "noun", "toupez", "", "", "", "tuft of hair"]) + let v = native_list_append(v, ["lande", "noun", "landes", "", "", "", "woodland"]) + let v = native_list_append(v, ["seie", "noun", "seies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tunique", "noun", "tuniques", "", "", "", "tunic garment"]) + let v = native_list_append(v, ["fondeur", "noun", "fondeurs", "", "", "", "founder instigator creator"]) + let v = native_list_append(v, ["estier", "noun", "estiers", "", "", "", "channel for salt"]) + let v = native_list_append(v, ["adversité", "noun", "adversitez", "", "", "", "adversity adverse state"]) + let v = native_list_append(v, ["babau", "noun", "babau", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warison", "noun", "warisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["difficulté", "noun", "difficultez", "", "", "", "difficulty"]) + let v = native_list_append(v, ["devis", "noun", "devis", "", "", "", "division act of"]) + let v = native_list_append(v, ["pomis", "noun", "pomis", "", "", "", "pumice stone"]) + let v = native_list_append(v, ["quer", "noun", "quers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bliaut", "noun", "bliauz", "", "", "", "bliaut"]) + let v = native_list_append(v, ["dous", "noun", "dous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poursuite", "noun", "poursuites", "", "", "", "pursuit act of"]) + let v = native_list_append(v, ["peres", "noun", "peres", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["bucle", "noun", "bucles", "", "", "", "knot"]) + let v = native_list_append(v, ["legat", "noun", "legaz", "", "", "", "legate governor appointed"]) + let v = native_list_append(v, ["limer", "noun", "limers", "", "", "", "limer hound"]) + let v = native_list_append(v, ["forfait", "noun", "forfaiz", "", "", "", "crime"]) + let v = native_list_append(v, ["taverne", "noun", "tavernes", "", "", "", "tavern"]) + let v = native_list_append(v, ["garenne", "noun", "garennes", "", "", "", "warren enclosed piece"]) + let v = native_list_append(v, ["jode", "noun", "jode", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["costé", "noun", "costez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["babaye", "noun", "babaye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["discrasie", "noun", "discrasies", "", "", "", "dyscrasy"]) + let v = native_list_append(v, ["nevou", "noun", "nevous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hostesse", "noun", "hostesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esperance", "noun", "esperances", "", "", "", "hope"]) + let v = native_list_append(v, ["humes", "noun", "humes", "", "", "", "inflection of hume"]) + let v = native_list_append(v, ["companie", "noun", "companies", "", "", "", "company accompaniment entourage"]) + let v = native_list_append(v, ["injurie", "noun", "injuries", "", "", "", "injury damage harm"]) + let v = native_list_append(v, ["adustion", "noun", "adustions", "", "", "", "heat high temperature"]) + let v = native_list_append(v, ["ruge", "noun", "ruges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merite", "noun", "merites", "", "", "", "merit positive qualities"]) + let v = native_list_append(v, ["possesion", "noun", "possesions", "", "", "", "possession"]) + let v = native_list_append(v, ["sarcu", "noun", "sarcus", "", "", "", "coffin"]) + let v = native_list_append(v, ["fiz", "noun", "fiz", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["parement", "noun", "paremenz", "", "", "", "parament long ornate"]) + let v = native_list_append(v, ["frenesie", "noun", "frenesies", "", "", "", "frenzy violent agitation"]) + let v = native_list_append(v, ["rubin", "noun", "rubins", "", "", "", "ruby gemstone"]) + let v = native_list_append(v, ["blet", "noun", "blez", "", "", "", "wheat corn"]) + let v = native_list_append(v, ["soun", "noun", "souns", "", "", "", "sound noise"]) + let v = native_list_append(v, ["marinier", "noun", "mariniers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pourriture", "noun", "pourritures", "", "", "", "rotting"]) + let v = native_list_append(v, ["infinitif", "noun", "infinitis", "", "", "", "infinitive"]) + let v = native_list_append(v, ["buket", "noun", "bukez", "", "", "", "bucket carrying device"]) + let v = native_list_append(v, ["regne", "noun", "regnes", "", "", "", "kingdom"]) + let v = native_list_append(v, ["pome", "noun", "pomes", "", "", "", "apple"]) + let v = native_list_append(v, ["jur", "noun", "jurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["université", "noun", "universitez", "", "", "", "university institution of"]) + let v = native_list_append(v, ["legende", "noun", "legendes", "", "", "", "legend story of"]) + let v = native_list_append(v, ["canevas", "noun", "canevas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gote", "noun", "gotes", "", "", "", "drop of liquid"]) + let v = native_list_append(v, ["quadre", "noun", "quadres", "", "", "", "quarter"]) + let v = native_list_append(v, ["verté", "noun", "vertez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["matrone", "noun", "matrones", "", "", "", "senior respectable woman"]) + let v = native_list_append(v, ["terrien", "noun", "terriens", "", "", "", "Earthling as opposed"]) + let v = native_list_append(v, ["melancolie", "noun", "melancolies", "", "", "", "melancholy sadness or"]) + let v = native_list_append(v, ["mirre", "noun", "mirres", "", "", "", "myrrh"]) + let v = native_list_append(v, ["peis", "noun", "peis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deit", "noun", "deiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zodiaque", "noun", "zodiaques", "", "", "", "zodiac"]) + let v = native_list_append(v, ["merc", "noun", "mers", "", "", "", "mark distinguishing feature"]) + let v = native_list_append(v, ["panche", "noun", "panches", "", "", "", "paunch"]) + let v = native_list_append(v, ["pople", "noun", "poples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["croche", "noun", "croche", "", "", "", "hook"]) + let v = native_list_append(v, ["almanach", "noun", "almanachs", "", "", "", "almanac"]) + let v = native_list_append(v, ["umbre", "noun", "umbres", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["yver", "noun", "yver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cueur", "noun", "cueurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enge", "noun", "enges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mestre", "noun", "mestres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plastre", "noun", "plastres", "", "", "", "plaster bandaid"]) + let v = native_list_append(v, ["glore", "noun", "glores", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vessie", "noun", "vessies", "", "", "", "bladder"]) + let v = native_list_append(v, ["veine", "noun", "veines", "", "", "", "vein"]) + let v = native_list_append(v, ["espines", "noun", "espines", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["apie", "noun", "apie", "", "", "", "celery or parsley"]) + let v = native_list_append(v, ["maistrie", "noun", "maistries", "", "", "", "strength"]) + let v = native_list_append(v, ["allegorie", "noun", "allegories", "", "", "", "allegory symbolic story"]) + let v = native_list_append(v, ["contumelie", "noun", "contumelies", "", "", "", "insult"]) + let v = native_list_append(v, ["mortuarie", "noun", "mortuaries", "", "", "", "mortuary gift given"]) + let v = native_list_append(v, ["enke", "noun", "enkes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creance", "noun", "creances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fabliau", "noun", "fabliaus", "", "", "", "fabliau"]) + let v = native_list_append(v, ["tropel", "noun", "tropeaus", "", "", "", "group"]) + let v = native_list_append(v, ["vergé", "noun", "vergez", "", "", "", "virgate measure of"]) + let v = native_list_append(v, ["religieus", "noun", "religieuses", "", "", "", "monk"]) + let v = native_list_append(v, ["seif", "noun", "seif", "", "", "", "thirst"]) + let v = native_list_append(v, ["mul", "noun", "mus", "", "", "", "mule animal"]) + let v = native_list_append(v, ["mulet", "noun", "mulés", "", "", "", "mullet fish"]) + let v = native_list_append(v, ["setembre", "noun", "setembres", "", "", "", "September month"]) + let v = native_list_append(v, ["majesté", "noun", "majestez", "", "", "", "majesty majesticness"]) + let v = native_list_append(v, ["sope", "noun", "sopes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["samit", "noun", "samiz", "", "", "", "samite fabric"]) + let v = native_list_append(v, ["several", "noun", "severaus", "", "", "", "ones own property"]) + let v = native_list_append(v, ["syon", "noun", "syons", "", "", "", "point tip sharp"]) + let v = native_list_append(v, ["cyon", "noun", "cyons", "", "", "", "scion detached shoot"]) + let v = native_list_append(v, ["sciance", "noun", "sciances", "", "", "", "knowledge"]) + let v = native_list_append(v, ["rute", "noun", "rutes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["larcin", "noun", "larcins", "", "", "", "theft"]) + let v = native_list_append(v, ["poulain", "noun", "poulain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["statut", "noun", "statuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stabilité", "noun", "stabilitez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caractere", "noun", "caracteres", "", "", "", "mark sign indication"]) + let v = native_list_append(v, ["virginité", "noun", "virginitez", "", "", "", "virginity state of"]) + let v = native_list_append(v, ["humanité", "noun", "humanitez", "", "", "", "humanity humankind"]) + let v = native_list_append(v, ["luxure", "noun", "luxures", "", "", "", "lust"]) + let v = native_list_append(v, ["basilique", "noun", "basiliques", "", "", "", "basilisk legendary reptile"]) + let v = native_list_append(v, ["bestes", "noun", "bestes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["maistre", "noun", "maistres", "", "", "", "master Master magister"]) + let v = native_list_append(v, ["preneur", "noun", "preneurs", "", "", "", "taker one who"]) + let v = native_list_append(v, ["ancessor", "noun", "ancessors", "", "", "", "ancestor"]) + let v = native_list_append(v, ["travaus", "noun", "travaus", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["françoys", "noun", "françoys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["travauz", "noun", "travauz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["acers", "noun", "acers", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["escuz", "noun", "escuz", "", "", "", "inflection of escut"]) + let v = native_list_append(v, ["cuer", "noun", "cuers", "", "", "", "heart"]) + let v = native_list_append(v, ["fil a putain", "noun", "fiz a putain", "", "", "", "son of a"]) + let v = native_list_append(v, ["goust", "noun", "gouz", "", "", "", "taste flavor"]) + let v = native_list_append(v, ["menteor", "noun", "menteors", "", "", "", "liar"]) + let v = native_list_append(v, ["païs", "noun", "païs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boiste", "noun", "boistes", "", "", "", "box container"]) + let v = native_list_append(v, ["boistes", "noun", "boistes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["chastel", "noun", "chasteaus", "", "", "", "castle fortress"]) + let v = native_list_append(v, ["castels", "noun", "castels", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oisel", "noun", "oiseaus", "", "", "", "bird"]) + let v = native_list_append(v, ["oiseaus", "noun", "oiseaus", "", "", "", "inflection of oisel"]) + let v = native_list_append(v, ["estoiles", "noun", "estoiles", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["chançon", "noun", "chançons", "", "", "", "song"]) + let v = native_list_append(v, ["chançons", "noun", "chançons", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["cevalier", "noun", "cevaliers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aveir", "noun", "aveirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["filz a putain", "noun", "filz a putain", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["fiz a putain", "noun", "fiz a putain", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["espine", "noun", "espines", "", "", "", "spine backbone"]) + let v = native_list_append(v, ["veoir", "noun", "veoirs", "", "", "", "sight capacity to"]) + let v = native_list_append(v, ["esquarre", "noun", "esquarres", "", "", "", "square shape"]) + let v = native_list_append(v, ["esquarres", "noun", "esquarres", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["montaigne", "noun", "montaignes", "", "", "", "mountain"]) + let v = native_list_append(v, ["dixme", "noun", "dixmes", "", "", "", "tithe"]) + let v = native_list_append(v, ["dixmes", "noun", "dixmes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["pié", "noun", "piez", "", "", "", "foot"]) + let v = native_list_append(v, ["rubrique", "noun", "rubriques", "", "", "", "red clay"]) + let v = native_list_append(v, ["uevre", "noun", "uevres", "", "", "", "a work piece"]) + let v = native_list_append(v, ["ueil", "noun", "ialz", "", "", "", "eye"]) + let v = native_list_append(v, ["hoge", "noun", "hoge", "", "", "", "hill"]) + let v = native_list_append(v, ["chevaus", "noun", "chevaus", "", "", "", "inflection of cheval"]) + let v = native_list_append(v, ["messagier", "noun", "messagiers", "", "", "", "messenger"]) + let v = native_list_append(v, ["prestre", "noun", "prestres", "", "", "", "priest"]) + let v = native_list_append(v, ["questes", "noun", "questes", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["Jherusalem", "noun", "Jherusalem", "", "", "", "Jerusalem a city"]) + let v = native_list_append(v, ["veir", "noun", "veirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vasselage", "noun", "vasselages", "", "", "", "vassalage"]) + let v = native_list_append(v, ["forestier", "noun", "forestiers", "", "", "", "forester"]) + let v = native_list_append(v, ["onguent", "noun", "onguenz", "", "", "", "ointment salve unguent"]) + let v = native_list_append(v, ["gué", "noun", "guez", "", "", "", "lookout one who"]) + let v = native_list_append(v, ["paganisme", "noun", "paganismes", "", "", "", "paganism local religions"]) + let v = native_list_append(v, ["Carles", "noun", "Carles", "", "", "", "nominative of Carlon"]) + let v = native_list_append(v, ["visconte", "noun", "viscontes", "", "", "", "viscount nobleman"]) + let v = native_list_append(v, ["trape", "noun", "trapes", "", "", "", "trap device design"]) + let v = native_list_append(v, ["raine", "noun", "raines", "", "", "", "kingdom"]) + let v = native_list_append(v, ["serain", "noun", "serainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coc", "noun", "cos", "", "", "", "cock male chicken"]) + let v = native_list_append(v, ["aimante", "noun", "aimantes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elme", "noun", "elmes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rondel", "noun", "rondeaus", "", "", "", "circular or round"]) + let v = native_list_append(v, ["feme", "noun", "femes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nonain", "noun", "nonainz", "", "", "", "nun"]) + let v = native_list_append(v, ["traison", "noun", "traisons", "", "", "", "treason"]) + let v = native_list_append(v, ["traïsons", "noun", "traïsons", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["mortalité", "noun", "mortalitez", "", "", "", "death"]) + let v = native_list_append(v, ["arere", "noun", "areres", "", "", "", "a type of"]) + let v = native_list_append(v, ["maisel", "noun", "maiseaus", "", "", "", "carnage massacre destruction"]) + let v = native_list_append(v, ["pucele", "noun", "puceles", "", "", "", "a young unmarried"]) + let v = native_list_append(v, ["puceles", "noun", "puceles", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["vassaus", "noun", "vassaus", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["mistere", "noun", "misteres", "", "", "", "mystery"]) + let v = native_list_append(v, ["pacience", "noun", "pacience", "", "", "", "patience"]) + let v = native_list_append(v, ["bestiaire", "noun", "bestiaires", "", "", "", "bestiary"]) + let v = native_list_append(v, ["festes", "noun", "festes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["sinople", "noun", "sinoples", "", "", "", "vert"]) + let v = native_list_append(v, ["enui", "noun", "enuis", "", "", "", "pain suffering anguish"]) + let v = native_list_append(v, ["superlatif", "noun", "superlatis", "", "", "", "superlative"]) + let v = native_list_append(v, ["Tamise", "noun", "Tamise", "", "", "", "Thames river through"]) + let v = native_list_append(v, ["nés", "noun", "nés", "", "", "", "nose"]) + let v = native_list_append(v, ["roce", "noun", "roces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clerc", "noun", "clers", "", "", "", "a clergyman usually"]) + let v = native_list_append(v, ["quisse", "noun", "quisses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quisses", "noun", "quisses", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["commixtion", "noun", "commixtions", "", "", "", "commixtion act of"]) + let v = native_list_append(v, ["poindre", "noun", "poindres", "", "", "", "attack assault"]) + let v = native_list_append(v, ["pincel", "noun", "pinceaus", "", "", "", "paintbrush"]) + let v = native_list_append(v, ["prestres", "noun", "prestres", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["cevaliers", "noun", "cevaliers", "", "", "", "inflection of cevalier"]) + let v = native_list_append(v, ["oisels", "noun", "oisels", "", "", "", "inflection of oisel"]) + let v = native_list_append(v, ["chasteaux", "noun", "chasteaux", "", "", "", "inflection of chastel"]) + let v = native_list_append(v, ["messagiers", "noun", "messagiers", "", "", "", "inflection of messagier"]) + let v = native_list_append(v, ["menteors", "noun", "menteors", "", "", "", "inflection of menteor"]) + let v = native_list_append(v, ["fils a putain", "noun", "fils a putain", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["gousts", "noun", "gousts", "", "", "", "inflection of goust"]) + let v = native_list_append(v, ["estiers", "noun", "estiers", "", "", "", "inflection of estier"]) + let v = native_list_append(v, ["cuers", "noun", "cuers", "", "", "", "inflection of cuer"]) + let v = native_list_append(v, ["maistres", "noun", "maistres", "", "", "", "inflection of maistre"]) + let v = native_list_append(v, ["escrins", "noun", "escrins", "", "", "", "inflection of escrin"]) + let v = native_list_append(v, ["seignor", "noun", "seignors", "", "", "", "lord feudal lord"]) + let v = native_list_append(v, ["segnor", "noun", "segnors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ancestre", "noun", "ancestre", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["darde", "noun", "dardes", "", "", "", "spear javelin weapon"]) + let v = native_list_append(v, ["messagerie", "noun", "messageries", "", "", "", "function of a"]) + let v = native_list_append(v, ["froc", "noun", "fros", "", "", "", "frock monks garment"]) + let v = native_list_append(v, ["mixtion", "noun", "mixtions", "", "", "", "mixtion compound of"]) + let v = native_list_append(v, ["paisan", "noun", "paisans", "", "", "", "peasant non-noble person"]) + let v = native_list_append(v, ["goe", "noun", "goe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ewart", "noun", "Ewart", "", "", "", "a male given"]) + let v = native_list_append(v, ["amor", "noun", "amors", "", "", "", "love"]) + let v = native_list_append(v, ["mave", "noun", "maves", "", "", "", "gull seagull"]) + let v = native_list_append(v, ["driade", "noun", "driades", "", "", "", "wood nymph"]) + let v = native_list_append(v, ["decembre", "noun", "decembres", "", "", "", "December month"]) + let v = native_list_append(v, ["canbre", "noun", "canbres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["canbres", "noun", "canbres", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["creissant", "noun", "creissanz", "", "", "", "crescent shape"]) + let v = native_list_append(v, ["plege", "noun", "pleges", "", "", "", "pledge surety"]) + let v = native_list_append(v, ["chesne", "noun", "chesnes", "", "", "", "oak tree"]) + let v = native_list_append(v, ["chastaignier", "noun", "chastaigniers", "", "", "", "chestnut tree"]) + let v = native_list_append(v, ["Pasque", "noun", "Pasque", "", "", "", "Easter"]) + let v = native_list_append(v, ["abandun", "noun", "abanduns", "", "", "", "abandonment"]) + let v = native_list_append(v, ["Tumas", "noun", "Tumas", "", "", "", "a male given"]) + let v = native_list_append(v, ["provoire", "noun", "provoires", "", "", "", "priest"]) + let v = native_list_append(v, ["chastels", "noun", "chastels", "", "", "", "inflection of chastel"]) + let v = native_list_append(v, ["nonains", "noun", "nonains", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["provoires", "noun", "provoires", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["abanduns", "noun", "abanduns", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["ethimologies", "noun", "ethimologies", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["Rogier", "noun", "Rogier", "", "", "", "a male given"]) + let v = native_list_append(v, ["bergier", "noun", "bergiers", "", "", "", "shepherd"]) + let v = native_list_append(v, ["bergiers", "noun", "bergiers", "", "", "", "inflection of bergier"]) + let v = native_list_append(v, ["espaule", "noun", "espaules", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frain", "noun", "frainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theatre", "noun", "theatres", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["butin", "noun", "butins", "", "", "", "spoils plunder booty"]) + let v = native_list_append(v, ["teatre", "noun", "teatres", "", "", "", "theater a place"]) + let v = native_list_append(v, ["ceint", "noun", "ceinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fresne", "noun", "fresnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraisne", "noun", "fraisnes", "", "", "", "ash tree"]) + let v = native_list_append(v, ["encens", "noun", "encens", "", "", "", "incense a perfume"]) + let v = native_list_append(v, ["monton", "noun", "montons", "", "", "", ""]) + let v = native_list_append(v, ["sacrement", "noun", "sacremenz", "", "", "", "coronation"]) + let v = native_list_append(v, ["espoires", "noun", "espoires", "", "", "", "inflection of espoire"]) + let v = native_list_append(v, ["bastissement", "noun", "bastissemenz", "", "", "", "building structure"]) + let v = native_list_append(v, ["bouchier", "noun", "bouchiers", "", "", "", "butcher"]) + let v = native_list_append(v, ["bouchiers", "noun", "bouchiers", "", "", "", "inflection of bouchier"]) + let v = native_list_append(v, ["veisins", "noun", "veisins", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["Diex", "noun", "Diex", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["seignors", "noun", "seignors", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["enfanz", "noun", "enfanz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["reliquaire", "noun", "reliquaires", "", "", "", "reliquary container"]) + let v = native_list_append(v, ["abaïe", "noun", "abaïes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaïes", "noun", "abaïes", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["Bretaigne", "noun", "Bretaigne", "", "", "", "what is now"]) + let v = native_list_append(v, ["Petite Bretaigne", "noun", "Petite Bretaigne", "", "", "", "Brittany a peninsula"]) + let v = native_list_append(v, ["comant", "noun", "comanz", "", "", "", "command order."]) + let v = native_list_append(v, ["seignur", "noun", "seignurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["segnors", "noun", "segnors", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["seignurs", "noun", "seignurs", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["amors", "noun", "amors", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["freres", "noun", "freres", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["ancessors", "noun", "ancessors", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["vilein", "noun", "vileinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vileins", "noun", "vileins", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["ostel", "noun", "osteaus", "", "", "", "shelter place to"]) + let v = native_list_append(v, ["asne", "noun", "asnes", "", "", "", "donkey ass"]) + let v = native_list_append(v, ["perdriz", "noun", "perdriz", "", "", "", "partridge"]) + let v = native_list_append(v, ["traïtor", "noun", "traïtors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dangier", "noun", "dangiers", "", "", "", "difficulty problem"]) + let v = native_list_append(v, ["seror", "noun", "serors", "", "", "", "sister"]) + let v = native_list_append(v, ["serors", "noun", "serors", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["asnes", "noun", "asnes", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["couchier", "noun", "couchiers", "", "", "", "bedtime point at"]) + let v = native_list_append(v, ["caitif", "noun", "caitis", "", "", "", "captive prisoner"]) + let v = native_list_append(v, ["caitive", "noun", "caitives", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["nons", "noun", "nons", "", "", "", "inflection of non"]) + let v = native_list_append(v, ["pucel", "noun", "puceaus", "", "", "", "young unmarried man"]) + let v = native_list_append(v, ["pucels", "noun", "pucels", "", "", "", "inflection of pucel"]) + let v = native_list_append(v, ["useor", "noun", "useors", "", "", "", "user a person"]) + let v = native_list_append(v, ["useur", "noun", "useurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuntree", "noun", "cuntrees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Bretun", "noun", "Bretuns", "", "", "", "Breton person"]) + let v = native_list_append(v, ["ialz", "noun", "ialz", "", "", "", "inflection of ueil"]) + let v = native_list_append(v, ["Abevile", "noun", "Abevile", "", "", "", "Abbeville a city"]) + let v = native_list_append(v, ["afaire", "noun", "afaires", "", "", "", "character disposition"]) + let v = native_list_append(v, ["siecle", "noun", "siecles", "", "", "", "generation lifetime"]) + let v = native_list_append(v, ["afere", "noun", "aferes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["riens", "noun", "riens", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["abeïe", "noun", "abeïes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Amiens", "noun", "Amiens", "", "", "", "Amiens the capital"]) + let v = native_list_append(v, ["reson", "noun", "resons", "", "", "", "logic logical reasoning"]) + let v = native_list_append(v, ["fenestres", "noun", "fenestres", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["chalenge", "noun", "chalenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chalonge", "noun", "chalonges", "", "", "", "legal process"]) + let v = native_list_append(v, ["voloir", "noun", "voloirs", "", "", "", "desire wish"]) + let v = native_list_append(v, ["voleir", "noun", "voleirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fundement", "noun", "fundemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fondement", "noun", "fondemenz", "", "", "", "foundation start beginning"]) + let v = native_list_append(v, ["noiant", "noun", "noiant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liu", "noun", "lius", "", "", "", "place"]) + let v = native_list_append(v, ["plater", "noun", "platers", "", "", "", "platter serving plate"]) + let v = native_list_append(v, ["maçue", "noun", "maçues", "", "", "", "club baton"]) + let v = native_list_append(v, ["Virge", "noun", "Virge", "", "", "", "the Virgin Mary"]) + let v = native_list_append(v, ["traine", "noun", "traines", "", "", "", "treason"]) + let v = native_list_append(v, ["corage", "noun", "corages", "", "", "", "courage"]) + let v = native_list_append(v, ["coraige", "noun", "coraiges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blasme", "noun", "blasmes", "", "", "", "blame"]) + let v = native_list_append(v, ["dreit", "noun", "dreiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baisier", "noun", "baisiers", "", "", "", "a kiss"]) + let v = native_list_append(v, ["billette", "noun", "billettes", "", "", "", "billet small written"]) + let v = native_list_append(v, ["gaite", "noun", "gaites", "", "", "", "watchman guard"]) + let v = native_list_append(v, ["nativité", "noun", "nativitez", "", "", "", "birth"]) + let v = native_list_append(v, ["deable", "noun", "deables", "", "", "", "devil"]) + let v = native_list_append(v, ["vestement", "noun", "vestemenz", "", "", "", "clothing clothes"]) + let v = native_list_append(v, ["vestiment", "noun", "vestimenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jangleür", "noun", "jangleürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gangleür", "noun", "gangleürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jangleu", "noun", "jangleus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prest", "noun", "prez", "", "", "", "loan"]) + let v = native_list_append(v, ["preudomme", "noun", "preudommes", "", "", "", "noble valiant man"]) + let v = native_list_append(v, ["damoisel", "noun", "damoiseaus", "", "", "", "young man"]) + let v = native_list_append(v, ["damoisele", "noun", "damoiseles", "", "", "", "girl young lady"]) + let v = native_list_append(v, ["damoiseles", "noun", "damoiseles", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["damoisels", "noun", "damoisels", "", "", "", "inflection of damoisel"]) + let v = native_list_append(v, ["coutel", "noun", "couteaus", "", "", "", "knife tool used"]) + let v = native_list_append(v, ["Jehan", "noun", "Jehan", "", "", "", "a male given"]) + let v = native_list_append(v, ["cuens", "noun", "cuens", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tresce", "noun", "tresces", "", "", "", "lock of hair"]) + let v = native_list_append(v, ["guardein", "noun", "guardeinz", "", "", "", "protector guardian someone"]) + let v = native_list_append(v, ["guardeins", "noun", "guardeins", "", "", "", "inflection of guardein"]) + let v = native_list_append(v, ["ganbe", "noun", "ganbes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Espaigne", "noun", "Espaigne", "", "", "", "Iberia the Iberian"]) + let v = native_list_append(v, ["gardin", "noun", "gardins", "", "", "", "garden large outdoor"]) + let v = native_list_append(v, ["Franceis", "noun", "Franceis", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rollant", "noun", "Rollant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Engletere", "noun", "Engletere", "", "", "", "England"]) + let v = native_list_append(v, ["coer", "noun", "coers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunte", "noun", "cuntes", "", "", "", "account tale story"]) + let v = native_list_append(v, ["traïsun", "noun", "traïsuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Sarrazin", "noun", "Sarrazins", "", "", "", "alternative letter-case form"]) + let v = native_list_append(v, ["espee", "noun", "espees", "", "", "", "sword"]) + let v = native_list_append(v, ["espalle", "noun", "espalles", "", "", "", "shoulder"]) + let v = native_list_append(v, ["esclipsement", "noun", "esclipsemenz", "", "", "", "eclipse"]) + let v = native_list_append(v, ["oistre", "noun", "oistres", "", "", "", "oyster mollusk"]) + let v = native_list_append(v, ["quens", "noun", "quens", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rereguarde", "noun", "rereguardes", "", "", "", "rearguard"]) + let v = native_list_append(v, ["Mahumet", "noun", "Mahumet", "", "", "", "Muhammad prophet"]) + let v = native_list_append(v, ["cumpain", "noun", "cumpain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cumpaigne", "noun", "cumpaignes", "", "", "", "campaign usually military"]) + let v = native_list_append(v, ["Carles li magnes", "noun", "Carles li magnes", "", "", "", "Charlemagne emperor of"]) + let v = native_list_append(v, ["valur", "noun", "valurs", "", "", "", "value"]) + let v = native_list_append(v, ["tertre", "noun", "tertres", "", "", "", "butte mound"]) + let v = native_list_append(v, ["piez", "noun", "piez", "", "", "", "inflection of pié"]) + let v = native_list_append(v, ["piés", "noun", "piés", "", "", "", "inflection of pié"]) + let v = native_list_append(v, ["esfort", "noun", "esforz", "", "", "", "strength might"]) + let v = native_list_append(v, ["esforz", "noun", "esforz", "", "", "", "inflection of esfort"]) + let v = native_list_append(v, ["valee", "noun", "valees", "", "", "", "valley"]) + let v = native_list_append(v, ["bastun", "noun", "bastuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palefreid", "noun", "palefreiz", "", "", "", "palfrey type of"]) + let v = native_list_append(v, ["raisun", "noun", "raisuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chançun", "noun", "chançuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["segnur", "noun", "segnurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parenz", "noun", "parenz", "", "", "", "inflection of parent"]) + let v = native_list_append(v, ["dolur", "noun", "dolurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colp", "noun", "cols", "", "", "", "strike hit"]) + let v = native_list_append(v, ["flur", "noun", "flurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maisun", "noun", "maisuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frication", "noun", "frications", "", "", "", "rubbing"]) + let v = native_list_append(v, ["guarnement", "noun", "guarnemenz", "", "", "", "garment piece of"]) + let v = native_list_append(v, ["haraz", "noun", "haraz", "", "", "", "troop of horses"]) + let v = native_list_append(v, ["tricheor", "noun", "tricheors", "", "", "", "liar"]) + let v = native_list_append(v, ["robeor", "noun", "robeors", "", "", "", "thief burglar robber"]) + let v = native_list_append(v, ["anui", "noun", "anuis", "", "", "", "problem issue obstacle"]) + let v = native_list_append(v, ["Grant Bretaigne", "noun", "Grant Bretaigne", "", "", "", "Britain Great Britain"]) + let v = native_list_append(v, ["boivre", "noun", "boivres", "", "", "", "a drink"]) + let v = native_list_append(v, ["biauté", "noun", "biautez", "", "", "", "beauty chiefly visual"]) + let v = native_list_append(v, ["prepucion", "noun", "prepucions", "", "", "", "foreskin"]) + let v = native_list_append(v, ["bevrage", "noun", "bevrages", "", "", "", "drink beverage"]) + let v = native_list_append(v, ["cunseill", "noun", "cunseuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vaslet", "noun", "vaslez", "", "", "", "manservant"]) + let v = native_list_append(v, ["Gualter", "noun", "Gualter", "", "", "", "a male given"]) + let v = native_list_append(v, ["cuard", "noun", "cuarz", "", "", "", "a coward"]) + let v = native_list_append(v, ["Escoce", "noun", "Escoce", "", "", "", "Scotland a constituent"]) + let v = native_list_append(v, ["olifan", "noun", "olifans", "", "", "", "ivory"]) + let v = native_list_append(v, ["chevaler", "noun", "chevalers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceval", "noun", "cevaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["empereür", "noun", "empereürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eschec", "noun", "eschés", "", "", "", "failure act of"]) + let v = native_list_append(v, ["noit", "noun", "noiz", "", "", "", "night all meanings"]) + let v = native_list_append(v, ["helme", "noun", "helmes", "", "", "", "helmet protective headguard"]) + let v = native_list_append(v, ["orgoill", "noun", "orgouz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jardineor", "noun", "jardineors", "", "", "", "gardener one who"]) + let v = native_list_append(v, ["guant", "noun", "guanz", "", "", "", "glove clothing"]) + let v = native_list_append(v, ["poign", "noun", "poinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escarlate", "noun", "escarlates", "", "", "", "a sort of"]) + let v = native_list_append(v, ["dulur", "noun", "dulurs", "", "", "", "pain"]) + let v = native_list_append(v, ["asnier", "noun", "asniers", "", "", "", "donkey-keeper"]) + let v = native_list_append(v, ["roy", "noun", "roys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pitet", "noun", "pitez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anme", "noun", "anmes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["valees", "noun", "valees", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["ultremer", "noun", "ultremer", "", "", "", "overseas foreign lands"]) + let v = native_list_append(v, ["vestemenz", "noun", "vestemenz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["seinz", "noun", "seinz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["seintes", "noun", "seintes", "", "", "", "oblique feminine plural"]) + let v = native_list_append(v, ["seinte", "noun", "seinte", "", "", "", "oblique feminine singular"]) + let v = native_list_append(v, ["Gefrei", "noun", "Gefrei", "", "", "", "a male given"]) + let v = native_list_append(v, ["Karles", "noun", "Karles", "", "", "", "nominative of Karlon"]) + let v = native_list_append(v, ["sempres", "noun", "sempres", "", "", "", "always"]) + let v = native_list_append(v, ["Alemaigne", "noun", "Alemaigne", "", "", "", "Germania Germany a"]) + let v = native_list_append(v, ["amiralz", "noun", "amiralz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["curage", "noun", "curages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["costet", "noun", "costez", "", "", "", "side of an"]) + let v = native_list_append(v, ["costez", "noun", "costez", "", "", "", "inflection of costet"]) + let v = native_list_append(v, ["conseill", "noun", "conseuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estandart", "noun", "estandarz", "", "", "", "A standard a"]) + let v = native_list_append(v, ["proies", "noun", "proies", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["baruns", "noun", "baruns", "", "", "", "inflection of barun"]) + let v = native_list_append(v, ["cumbatant", "noun", "cumbatant", "", "", "", "fighting that fights"]) + let v = native_list_append(v, ["venjance", "noun", "venjances", "", "", "", "revenge vengeance"]) + let v = native_list_append(v, ["buches", "noun", "buches", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["Sirie", "noun", "Sirie", "", "", "", "Syria a historical"]) + let v = native_list_append(v, ["oilz", "noun", "oilz", "", "", "", "inflection of ueil"]) + let v = native_list_append(v, ["Affrike", "noun", "Affrike", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Affrique", "noun", "Affrique", "", "", "", "Africa the continent"]) + let v = native_list_append(v, ["cuntesse", "noun", "cuntesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuntesses", "noun", "cuntesses", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["laxatif", "noun", "laxatis", "", "", "", "laxative"]) + let v = native_list_append(v, ["carole", "noun", "caroles", "", "", "", "carol round dance"]) + let v = native_list_append(v, ["riotte", "noun", "riottes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cumpainz", "noun", "cumpainz", "", "", "", "inflection of cumpain"]) + let v = native_list_append(v, ["coers", "noun", "coers", "", "", "", "inflection of coer"]) + let v = native_list_append(v, ["compainz", "noun", "compainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compain", "noun", "compain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comandement", "noun", "comandemenz", "", "", "", "command order directive"]) + let v = native_list_append(v, ["comandemenz", "noun", "comandemenz", "", "", "", "inflection of comandement"]) + let v = native_list_append(v, ["curune", "noun", "curunes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anmes", "noun", "anmes", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["baptisterie", "noun", "baptisteries", "", "", "", "baptistry"]) + let v = native_list_append(v, ["bastuns", "noun", "bastuns", "", "", "", "inflection of bastun"]) + let v = native_list_append(v, ["colps", "noun", "colps", "", "", "", "inflection of colp"]) + let v = native_list_append(v, ["caitifs", "noun", "caitifs", "", "", "", "inflection of caitif"]) + let v = native_list_append(v, ["caitives", "noun", "caitives", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["cumpaignes", "noun", "cumpaignes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["cumbatanz", "noun", "cumbatanz", "", "", "", "inflection of cumbatant"]) + let v = native_list_append(v, ["cuardie", "noun", "cuardie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuardise", "noun", "cuardises", "", "", "", "cowardice cowardliness"]) + let v = native_list_append(v, ["elmes", "noun", "elmes", "", "", "", "inflection of elme"]) + let v = native_list_append(v, ["espalles", "noun", "espalles", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["guanz", "noun", "guanz", "", "", "", "inflection of guant"]) + let v = native_list_append(v, ["guarnemenz", "noun", "guarnemenz", "", "", "", "inflection of guarnement"]) + let v = native_list_append(v, ["gambes", "noun", "gambes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["guerrer", "noun", "guerrers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guerreier", "noun", "guerreiers", "", "", "", "warrior combattant fighter"]) + let v = native_list_append(v, ["hunte", "noun", "huntes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mentun", "noun", "mentuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mentuns", "noun", "mentuns", "", "", "", "inflection of mentun"]) + let v = native_list_append(v, ["nonchaloir", "noun", "nonchaloirs", "", "", "", "indifference uncaringness"]) + let v = native_list_append(v, ["garçun", "noun", "garçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruwe", "noun", "ruwes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["largesce", "noun", "largesce", "", "", "", "largess charitableness generosity"]) + let v = native_list_append(v, ["romanz", "noun", "romanz", "", "", "", "Old French language"]) + let v = native_list_append(v, ["romant", "noun", "romanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aoust", "noun", "aouz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fueille", "noun", "fueilles", "", "", "", "leaf of a"]) + let v = native_list_append(v, ["rosiers", "noun", "rosiers", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["odur", "noun", "odurs", "", "", "", "odour scent smell"]) + let v = native_list_append(v, ["fieu", "noun", "fieus", "", "", "", "fief"]) + let v = native_list_append(v, ["hume", "noun", "humes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["guere", "noun", "gueres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honur", "noun", "honurs", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["honurs", "noun", "honurs", "", "", "", "inflection of honur"]) + let v = native_list_append(v, ["helmes", "noun", "helmes", "", "", "", "inflection of helme"]) + let v = native_list_append(v, ["engleis", "noun", "engleis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herberge", "noun", "herberges", "", "", "", "shelter"]) + let v = native_list_append(v, ["evesque", "noun", "evesques", "", "", "", "bishop clergyman"]) + let v = native_list_append(v, ["arcevesque", "noun", "arcevesques", "", "", "", "archbishop clergyman"]) + let v = native_list_append(v, ["soleilz", "noun", "soleilz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["cervel", "noun", "cerveaus", "", "", "", "brain"]) + let v = native_list_append(v, ["caitis", "noun", "caitis", "", "", "", "inflection of caitif"]) + let v = native_list_append(v, ["franceis", "noun", "franceis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["proeche", "noun", "proeches", "", "", "", "chivalry bravery valour"]) + let v = native_list_append(v, ["seignour", "noun", "seignours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tesmoin", "noun", "tesmoinz", "", "", "", "witness all meanings"]) + let v = native_list_append(v, ["tesmoing", "noun", "tesmoinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roÿne", "noun", "roÿnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmeraude", "noun", "esmeraudes", "", "", "", "emerald color"]) + let v = native_list_append(v, ["iaue", "noun", "iaues", "", "", "", "water drinkable liquid"]) + let v = native_list_append(v, ["yaue", "noun", "yaues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taverniere", "noun", "tavernieres", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["verité", "noun", "veritez", "", "", "", "truth"]) + let v = native_list_append(v, ["chaut", "noun", "chauz", "", "", "", "hot heat"]) + let v = native_list_append(v, ["lanche", "noun", "lanches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cortoisie", "noun", "cortoisies", "", "", "", "chivalry bravery valour"]) + let v = native_list_append(v, ["Jehan Baptiste", "noun", "Jehan Baptiste", "", "", "", "John the Baptist"]) + let v = native_list_append(v, ["cevals", "noun", "cevals", "", "", "", "inflection of ceval"]) + let v = native_list_append(v, ["chevax", "noun", "chevax", "", "", "", "inflection of cheval"]) + let v = native_list_append(v, ["chevals", "noun", "chevals", "", "", "", "inflection of cheval"]) + let v = native_list_append(v, ["tronchon", "noun", "tronchons", "", "", "", "baton truncheon"]) + let v = native_list_append(v, ["Ostriche", "noun", "Ostriche", "", "", "", "Austria a country"]) + let v = native_list_append(v, ["baniere", "noun", "banieres", "", "", "", "banner for displaying"]) + let v = native_list_append(v, ["fantosme", "noun", "fantosmes", "", "", "", "ghost apparition"]) + let v = native_list_append(v, ["Cornoailles", "noun", "Cornoailles", "", "", "", "Cornwall"]) + let v = native_list_append(v, ["Grece", "noun", "Grece", "", "", "", "Greece an ancient"]) + let v = native_list_append(v, ["seur", "noun", "seur", "", "", "", "elder elderberry shrub"]) + let v = native_list_append(v, ["seür", "noun", "seürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["besoing", "noun", "besoinz", "", "", "", "need requirement"]) + let v = native_list_append(v, ["deffense", "noun", "deffenses", "", "", "", "defense act of"]) + let v = native_list_append(v, ["gentillesce", "noun", "gentillesces", "", "", "", "noble demeanor"]) + let v = native_list_append(v, ["congié", "noun", "congiez", "", "", "", "leave absence"]) + let v = native_list_append(v, ["turneiement", "noun", "turneiemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cigne", "noun", "cignes", "", "", "", "swan bird"]) + let v = native_list_append(v, ["justise", "noun", "justises", "", "", "", "revenge retribution"]) + let v = native_list_append(v, ["Norweie", "noun", "Norweie", "", "", "", "Norway a country"]) + let v = native_list_append(v, ["Suhtamptune", "noun", "Suhtamptune", "", "", "", "Southampton English port"]) + let v = native_list_append(v, ["endemain", "noun", "endemain", "", "", "", "the next day"]) + let v = native_list_append(v, ["haïne", "noun", "haïnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coustume", "noun", "coustumes", "", "", "", "order"]) + let v = native_list_append(v, ["seurté", "noun", "seurtez", "", "", "", "sureness certainty guaranty"]) + let v = native_list_append(v, ["païsan", "noun", "païsans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["païsans", "noun", "païsans", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["servise", "noun", "servises", "", "", "", "service servitude vasselage"]) + let v = native_list_append(v, ["movoir", "noun", "movoirs", "", "", "", "departure"]) + let v = native_list_append(v, ["volenté", "noun", "volentez", "", "", "", "wish desire"]) + let v = native_list_append(v, ["arest", "noun", "arez", "", "", "", "delay hesitation"]) + let v = native_list_append(v, ["fleüte", "noun", "fleütes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleütes", "noun", "fleütes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["Gauvain", "noun", "Gauvain", "", "", "", "Gawain Arthurian mythology"]) + let v = native_list_append(v, ["fabliaus", "noun", "fabliaus", "", "", "", "inflection of fabliau"]) + let v = native_list_append(v, ["mareis", "noun", "mareis", "", "", "", "marsh"]) + let v = native_list_append(v, ["esperanche", "noun", "esperanche", "", "", "", "hope feeling"]) + let v = native_list_append(v, ["carre", "noun", "carres", "", "", "", "cart wheeled vehicle"]) + let v = native_list_append(v, ["Grezois", "noun", "Grezoises", "", "", "", "Greek a person"]) + let v = native_list_append(v, ["grezeis", "noun", "grezeis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grezois", "noun", "grezois", "", "", "", "Greek language"]) + let v = native_list_append(v, ["Suhtwales", "noun", "Suhtwales", "", "", "", "South Wales"]) + let v = native_list_append(v, ["marle", "noun", "marles", "", "", "", "marl mixed earthy"]) + let v = native_list_append(v, ["iresie", "noun", "iresies", "", "", "", "heresy"]) + let v = native_list_append(v, ["borjois", "noun", "borjois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burgeis", "noun", "burgeis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["genoil", "noun", "genouz", "", "", "", "knee"]) + let v = native_list_append(v, ["chiere", "noun", "chieres", "", "", "", "face"]) + let v = native_list_append(v, ["honnor", "noun", "honnors", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["prüeche", "noun", "prüeches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chevalerie", "noun", "chevaleries", "", "", "", "chivalry state of"]) + let v = native_list_append(v, ["buisine", "noun", "buisines", "", "", "", "A type of"]) + let v = native_list_append(v, ["buisines", "noun", "buisines", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["compleint", "noun", "compleinz", "", "", "", "lament wail"]) + let v = native_list_append(v, ["sanc", "noun", "sans", "", "", "", "blood"]) + let v = native_list_append(v, ["remanant", "noun", "remananz", "", "", "", "remnant remainder"]) + let v = native_list_append(v, ["oef", "noun", "oés", "", "", "", "egg"]) + let v = native_list_append(v, ["neveus", "noun", "neveus", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["gaiant", "noun", "gaianz", "", "", "", "a giant"]) + let v = native_list_append(v, ["agniau", "noun", "agniaus", "", "", "", "lamb small sheep"]) + let v = native_list_append(v, ["jaiant", "noun", "jaianz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraunceis", "noun", "fraunceis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["latyn", "noun", "latyn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Anglois", "noun", "Angloises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Angloise", "noun", "Angloise", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["Angloises", "noun", "Angloises", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["anglois", "noun", "anglois", "", "", "", "English language"]) + let v = native_list_append(v, ["chastelet", "noun", "chastelez", "", "", "", "a small castle"]) + let v = native_list_append(v, ["clers", "noun", "clers", "", "", "", "inflection of clerc"]) + let v = native_list_append(v, ["poverté", "noun", "povertez", "", "", "", "poverty poorness"]) + let v = native_list_append(v, ["mesaise", "noun", "mesaises", "", "", "", "suffering"]) + let v = native_list_append(v, ["veüe", "noun", "veües", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carres", "noun", "carres", "", "", "", "nominative/oblique plural of"]) + let v = native_list_append(v, ["aage", "noun", "aages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["serour", "noun", "serours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eritage", "noun", "eritages", "", "", "", "heritage that which"]) + let v = native_list_append(v, ["avugle", "noun", "avugles", "", "", "", "blind person"]) + let v = native_list_append(v, ["espaulle", "noun", "espaulles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tenchon", "noun", "tenchons", "", "", "", "tension tenseness"]) + let v = native_list_append(v, ["surgien", "noun", "surgiens", "", "", "", "a doctor or"]) + let v = native_list_append(v, ["puchele", "noun", "pucheles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espiet", "noun", "espiez", "", "", "", "spear lance"]) + let v = native_list_append(v, ["osberc", "noun", "osbers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["osbercs", "noun", "osbercs", "", "", "", "inflection of osberc"]) + let v = native_list_append(v, ["Yvain", "noun", "Yvain", "", "", "", "a male given"]) + let v = native_list_append(v, ["jangleor", "noun", "jangleors", "", "", "", "jongleur raconteur storyteller"]) + let v = native_list_append(v, ["mereor", "noun", "mereors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uel", "noun", "ialz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amanz", "noun", "amanz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pleie", "noun", "pleies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tresor", "noun", "tresors", "", "", "", "treasure something of"]) + let v = native_list_append(v, ["boche", "noun", "boches", "", "", "", "mouth"]) + let v = native_list_append(v, ["Quantorbire", "noun", "Quantorbire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cantorbire", "noun", "Cantorbire", "", "", "", "Canterbury a cathedral"]) + let v = native_list_append(v, ["Alixandre", "noun", "Alixandre", "", "", "", "a male given"]) + let v = native_list_append(v, ["hernois", "noun", "hernois", "", "", "", "equipment for battle"]) + let v = native_list_append(v, ["harneis", "noun", "harneis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feire", "noun", "feires", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Galois", "noun", "Galoises", "", "", "", "Welsh person Welshman"]) + let v = native_list_append(v, ["reaume", "noun", "reaumes", "", "", "", "kingdom"]) + let v = native_list_append(v, ["talant", "noun", "talanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secheresce", "noun", "secheresces", "", "", "", "dryness"]) + let v = native_list_append(v, ["javeloz", "noun", "javeloz", "", "", "", "inflection of javelot"]) + let v = native_list_append(v, ["darz", "noun", "darz", "", "", "", "inflection of dart"]) + let v = native_list_append(v, ["arçun", "noun", "arçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jorz", "noun", "jorz", "", "", "", "inflection of jor"]) + let v = native_list_append(v, ["jor", "noun", "jorz", "", "", "", "day 24-hour period"]) + let v = native_list_append(v, ["arsun", "noun", "arsuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ocision", "noun", "ocisions", "", "", "", "killing act of"]) + let v = native_list_append(v, ["chalor", "noun", "chalors", "", "", "", "heat"]) + let v = native_list_append(v, ["mautalant", "noun", "mautalanz", "", "", "", "evil intentions"]) + let v = native_list_append(v, ["indiction", "noun", "indictions", "", "", "", "imposition condition which"]) + let v = native_list_append(v, ["culur", "noun", "culurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acointanche", "noun", "acointanches", "", "", "", "acquaintanceship"]) + let v = native_list_append(v, ["pooir", "noun", "pooirs", "", "", "", "power ability capability"]) + let v = native_list_append(v, ["escole", "noun", "escoles", "", "", "", "school place dedicated"]) + let v = native_list_append(v, ["lunsdi", "noun", "lunsdis", "", "", "", "Monday"]) + let v = native_list_append(v, ["estoire", "noun", "estoires", "", "", "", "history"]) + let v = native_list_append(v, ["loiauté", "noun", "loiautez", "", "", "", "loyalty state or"]) + let v = native_list_append(v, ["meslee", "noun", "meslees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reïne", "noun", "reïnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roy Artur", "noun", "roy Artur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roi Artur", "noun", "roi Artur", "", "", "", "King Arthur"]) + let v = native_list_append(v, ["Benedeit", "noun", "Benedeit", "", "", "", "a male given"]) + let v = native_list_append(v, ["virgine", "noun", "virgines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spasme", "noun", "spasme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poket", "noun", "pokez", "", "", "", "bag or pouch"]) + let v = native_list_append(v, ["pouche", "noun", "pouches", "", "", "", "bag or pouch"]) + let v = native_list_append(v, ["Einglois", "noun", "Einglois", "", "", "", "Englishman"]) + let v = native_list_append(v, ["einglois", "noun", "einglois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["palés", "noun", "palés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forteresce", "noun", "forteresces", "", "", "", "fortress building"]) + let v = native_list_append(v, ["fortereche", "noun", "fortereches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["respondeor", "noun", "respondeors", "", "", "", "responder someone who"]) + let v = native_list_append(v, ["poque", "noun", "poques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nigromancie", "noun", "nigromancies", "", "", "", "nigromancy form of"]) + let v = native_list_append(v, ["Alys", "noun", "Alys", "", "", "", "a female given"]) + let v = native_list_append(v, ["espice", "noun", "espices", "", "", "", "spice plant substance"]) + let v = native_list_append(v, ["boivres", "noun", "boivres", "", "", "", "inflection of boivre"]) + let v = native_list_append(v, ["alemant", "noun", "alemanz", "", "", "", "German language"]) + let v = native_list_append(v, ["Alemant", "noun", "Alemant", "", "", "", "A German someone"]) + let v = native_list_append(v, ["dongier", "noun", "dongiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vaslez", "noun", "vaslez", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["enfes", "noun", "enfes", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["oltrage", "noun", "oltrages", "", "", "", "insult offence impoliteness"]) + let v = native_list_append(v, ["utrage", "noun", "utrages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ultrage", "noun", "ultrages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ypocrisie", "noun", "ypocrisies", "", "", "", "hypocrisy"]) + let v = native_list_append(v, ["dulor", "noun", "dulors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fortreche", "noun", "fortreches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuple", "noun", "cuples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bievre", "noun", "bievres", "", "", "", "beaver animal"]) + let v = native_list_append(v, ["faucons", "noun", "faucons", "", "", "", "inflection of faucon"]) + let v = native_list_append(v, ["heiron", "noun", "heirons", "", "", "", "heron animal"]) + let v = native_list_append(v, ["voiz", "noun", "voiz", "", "", "", "voice of a"]) + let v = native_list_append(v, ["chanp", "noun", "chans", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["egle", "noun", "egles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ymage", "noun", "ymages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["respit", "noun", "respiz", "", "", "", "rest physical rest"]) + let v = native_list_append(v, ["juene", "noun", "juenes", "", "", "", "young person"]) + let v = native_list_append(v, ["gaiole", "noun", "gaioles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chantur", "noun", "chanturs", "", "", "", "singer"]) + let v = native_list_append(v, ["juree", "noun", "jurees", "", "", "", "jury"]) + let v = native_list_append(v, ["jurees", "noun", "jurees", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["troble", "noun", "trobles", "", "", "", "strife commotion"]) + let v = native_list_append(v, ["armeure", "noun", "armeures", "", "", "", "armor protective clothing"]) + let v = native_list_append(v, ["josteor", "noun", "josteors", "", "", "", "jouster one who"]) + let v = native_list_append(v, ["norrice", "noun", "norrices", "", "", "", "a wet nurse"]) + let v = native_list_append(v, ["nurice", "noun", "nurices", "", "", "", "a wet nurse"]) + let v = native_list_append(v, ["braz", "noun", "braz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prame", "noun", "prames", "", "", "", "prasine gemstone"]) + let v = native_list_append(v, ["encontre", "noun", "encontres", "", "", "", "meeting instance of"]) + let v = native_list_append(v, ["Rume", "noun", "Rume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acordement", "noun", "acordemenz", "", "", "", "agreement"]) + let v = native_list_append(v, ["mehaing", "noun", "mehainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Angleches", "noun", "Angleches", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["Angleche", "noun", "Angleche", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["empereriz", "noun", "empereriz", "", "", "", "empress"]) + let v = native_list_append(v, ["fisicien", "noun", "fisiciens", "", "", "", "doctor physician"]) + let v = native_list_append(v, ["conpaign", "noun", "conpaign", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pueple", "noun", "pueples", "", "", "", "a people"]) + let v = native_list_append(v, ["estage", "noun", "estages", "", "", "", "house dwelling lodging"]) + let v = native_list_append(v, ["retor", "noun", "retors", "", "", "", "return act of"]) + let v = native_list_append(v, ["Jhesu Christ", "noun", "Jhesu Christ", "", "", "", "Jesus Christ religious"]) + let v = native_list_append(v, ["Jhesu", "noun", "Jhesu", "", "", "", "Jesus religious figure"]) + let v = native_list_append(v, ["estoilete", "noun", "estoiletes", "", "", "", "small star in"]) + let v = native_list_append(v, ["froidure", "noun", "froidures", "", "", "", "cold low ambient"]) + let v = native_list_append(v, ["essainple", "noun", "essainples", "", "", "", "example all meanings"]) + let v = native_list_append(v, ["Nicolete", "noun", "Nicolete", "", "", "", "a female given"]) + let v = native_list_append(v, ["goutiere", "noun", "goutieres", "", "", "", "gutter drainage channel"]) + let v = native_list_append(v, ["leun", "noun", "leuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anclume", "noun", "anclumes", "", "", "", "anvil"]) + let v = native_list_append(v, ["Normant", "noun", "Normant", "", "", "", "Norman person"]) + let v = native_list_append(v, ["Françoys", "noun", "Françoys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Seignor", "noun", "Seignor", "", "", "", "the Creator God"]) + let v = native_list_append(v, ["Paradis", "noun", "Paradis", "", "", "", "Paradise Heaven"]) + let v = native_list_append(v, ["trecherie", "noun", "trecheries", "", "", "", "deception ruse deceit"]) + let v = native_list_append(v, ["soloil", "noun", "solouz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["consoil", "noun", "consouz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["humage", "noun", "humages", "", "", "", "pledge oath of"]) + let v = native_list_append(v, ["vergier", "noun", "vergiers", "", "", "", "orchard or other"]) + let v = native_list_append(v, ["vergiers", "noun", "vergiers", "", "", "", "inflection of vergier"]) + let v = native_list_append(v, ["caboche", "noun", "caboches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["augmentacion", "noun", "augmentacions", "", "", "", "increase augmentation"]) + let v = native_list_append(v, ["florete", "noun", "floretes", "", "", "", "flower"]) + let v = native_list_append(v, ["renon", "noun", "renons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["renomee", "noun", "renomees", "", "", "", "reputation renown"]) + let v = native_list_append(v, ["raençon", "noun", "raençons", "", "", "", "fee paid to"]) + let v = native_list_append(v, ["hardiment", "noun", "hardimenz", "", "", "", "bravery courage"]) + let v = native_list_append(v, ["mesprison", "noun", "mesprison", "", "", "", "error mistake"]) + let v = native_list_append(v, ["mesprisun", "noun", "mesprisun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosignol", "noun", "rosignous", "", "", "", "nightingale"]) + let v = native_list_append(v, ["esglise", "noun", "esglises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mesage", "noun", "mesages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pedre", "noun", "pedres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espus", "noun", "espuses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espuse", "noun", "espuses", "", "", "", "wife"]) + let v = native_list_append(v, ["espuses", "noun", "espuses", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["jone", "noun", "jone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["douçour", "noun", "douçours", "", "", "", "sweetness"]) + let v = native_list_append(v, ["baisiers", "noun", "baisiers", "", "", "", "inflection of baisier"]) + let v = native_list_append(v, ["douçours", "noun", "douçours", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["chois", "noun", "chois", "", "", "", "choice decision"]) + let v = native_list_append(v, ["hontage", "noun", "hontages", "", "", "", "shame negative emotion"]) + let v = native_list_append(v, ["norriture", "noun", "norritures", "", "", "", "food"]) + let v = native_list_append(v, ["froit", "noun", "froiz", "", "", "", "cold quality of"]) + let v = native_list_append(v, ["eaue", "noun", "eaues", "", "", "", "water"]) + let v = native_list_append(v, ["ruissel", "noun", "ruisseaus", "", "", "", "stream brook"]) + let v = native_list_append(v, ["dampnation", "noun", "dampnations", "", "", "", "damnation state of"]) + let v = native_list_append(v, ["bailif", "noun", "bailis", "", "", "", "bailiff officer in"]) + let v = native_list_append(v, ["bailis", "noun", "bailis", "", "", "", "inflection of bailif"]) + let v = native_list_append(v, ["ostrige", "noun", "ostriges", "", "", "", "ostrich"]) + let v = native_list_append(v, ["ostriges", "noun", "ostriges", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["bacynet", "noun", "bacynez", "", "", "", "bascinet helmet"]) + let v = native_list_append(v, ["bacynetz", "noun", "bacynetz", "", "", "", "inflection of bacynet"]) + let v = native_list_append(v, ["kemise", "noun", "kemises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oliphant", "noun", "oliphanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Surie", "noun", "Surie", "", "", "", "Syria a historical"]) + let v = native_list_append(v, ["marchis", "noun", "marchis", "", "", "", "marquis nobleman"]) + let v = native_list_append(v, ["paiz", "noun", "paiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flateour", "noun", "flateours", "", "", "", "flatterer"]) + let v = native_list_append(v, ["dreiture", "noun", "dreitures", "", "", "", "right entitlement"]) + let v = native_list_append(v, ["voiage", "noun", "voiages", "", "", "", "journey voyage"]) + let v = native_list_append(v, ["criature", "noun", "criatures", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["autrier", "noun", "autrier", "", "", "", "the other day"]) + let v = native_list_append(v, ["vavasor", "noun", "vavasors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rancur", "noun", "rancurs", "", "", "", "rancour"]) + let v = native_list_append(v, ["ardur", "noun", "ardurs", "", "", "", "burning flames"]) + let v = native_list_append(v, ["menstrues", "noun", "menstrues", "", "", "", "menses"]) + let v = native_list_append(v, ["clamur", "noun", "clamurs", "", "", "", "outcry"]) + let v = native_list_append(v, ["plenté", "noun", "plentez", "", "", "", "fullness quality of"]) + let v = native_list_append(v, ["poverte", "noun", "povertes", "", "", "", "manuscript form of"]) + let v = native_list_append(v, ["Guiot", "noun", "Guiot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Peire", "noun", "Peire", "", "", "", "a male given"]) + let v = native_list_append(v, ["merchi", "noun", "merchis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chançonete", "noun", "chançonetes", "", "", "", "rhyme or short"]) + let v = native_list_append(v, ["brunete", "noun", "brunetes", "", "", "", "brunette woman"]) + let v = native_list_append(v, ["boschet", "noun", "boschez", "", "", "", "wood area filled"]) + let v = native_list_append(v, ["Jhesucrist", "noun", "Jhesucrist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desloiauté", "noun", "desloiautez", "", "", "", "disloyalty"]) + let v = native_list_append(v, ["printans", "noun", "printans", "", "", "", "spring season"]) + let v = native_list_append(v, ["essamplaire", "noun", "essamplaires", "", "", "", "example model role"]) + let v = native_list_append(v, ["bergiere", "noun", "bergieres", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["molin", "noun", "molins", "", "", "", "mill"]) + let v = native_list_append(v, ["espie", "noun", "espies", "", "", "", "spy"]) + let v = native_list_append(v, ["herde", "noun", "herdes", "", "", "", "herd grouping of"]) + let v = native_list_append(v, ["linguage", "noun", "linguages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trecerie", "noun", "treceries", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oevre", "noun", "oevre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comencement", "noun", "comencemenz", "", "", "", "start beginning"]) + let v = native_list_append(v, ["humblesse", "noun", "humblesse", "", "", "", "humbleness humility"]) + let v = native_list_append(v, ["fruiz", "noun", "fruiz", "", "", "", "inflection of fruit"]) + let v = native_list_append(v, ["digneté", "noun", "dignetez", "", "", "", "dignity"]) + let v = native_list_append(v, ["eise", "noun", "eises", "", "", "", "Elbow room empty"]) + let v = native_list_append(v, ["chace", "noun", "chaces", "", "", "", "hunt action of"]) + let v = native_list_append(v, ["chaceor", "noun", "chaceors", "", "", "", "hunter"]) + let v = native_list_append(v, ["archier", "noun", "archiers", "", "", "", "archer"]) + let v = native_list_append(v, ["çant", "noun", "çanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chanberiere", "noun", "chanberieres", "", "", "", "chambermaid"]) + let v = native_list_append(v, ["chanbre", "noun", "chanbres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hauberc", "noun", "haubers", "", "", "", "hauberk type of"]) + let v = native_list_append(v, ["haubers", "noun", "haubers", "", "", "", "inflection of hauberc"]) + let v = native_list_append(v, ["pueples", "noun", "pueples", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["roke", "noun", "rokes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jant", "noun", "janz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiaume", "noun", "hiaumes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faiche", "noun", "faiches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lentille", "noun", "lentilles", "", "", "", "lentil plant"]) + let v = native_list_append(v, ["janz", "noun", "janz", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["seneschaus", "noun", "seneschaus", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["roge", "noun", "roges", "", "", "", "red"]) + let v = native_list_append(v, ["enfleure", "noun", "enfleures", "", "", "", "swelling"]) + let v = native_list_append(v, ["serjant", "noun", "serjanz", "", "", "", "a military rank"]) + let v = native_list_append(v, ["dameisele", "noun", "dameiseles", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fraccion", "noun", "fraccion", "", "", "", ""]) + let v = native_list_append(v, ["chevisance", "noun", "chevisances", "", "", "", "sustenance"]) + let v = native_list_append(v, ["dras", "noun", "dras", "", "", "", "inflection of drap"]) + let v = native_list_append(v, ["genoiz", "noun", "genoiz", "", "", "", "inflection of genoil"]) + let v = native_list_append(v, ["bloe", "noun", "bloes", "", "", "", "blue"]) + let v = native_list_append(v, ["livreison", "noun", "livreisons", "", "", "", "delivery"]) + let v = native_list_append(v, ["oel", "noun", "oeaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mançonge", "noun", "mançonges", "", "", "", "lie untruth"]) + let v = native_list_append(v, ["cloque", "noun", "cloques", "", "", "", "bell"]) + let v = native_list_append(v, ["giste", "noun", "gistes", "", "", "", "resting-place place where"]) + let v = native_list_append(v, ["blont", "noun", "blonz", "", "", "", "a blond"]) + let v = native_list_append(v, ["veile", "noun", "veiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plor", "noun", "plors", "", "", "", "crying action of"]) + let v = native_list_append(v, ["arjant", "noun", "arjanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaaing", "noun", "gaainz", "", "", "", "gain of physical"]) + let v = native_list_append(v, ["reançon", "noun", "reançons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roberie", "noun", "roberies", "", "", "", "robbery theft"]) + let v = native_list_append(v, ["meitié", "noun", "meitiez", "", "", "", "half ½"]) + let v = native_list_append(v, ["meison", "noun", "meisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reison", "noun", "reisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enor", "noun", "enors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foiz", "noun", "foiz", "", "", "", "time instance occurrence"]) + let v = native_list_append(v, ["felenie", "noun", "felenies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["somoil", "noun", "somoil", "", "", "", "sleep"]) + let v = native_list_append(v, ["jauge", "noun", "jauges", "", "", "", "gauging rod rod"]) + let v = native_list_append(v, ["felunie", "noun", "felunies", "", "", "", "evil wrong"]) + let v = native_list_append(v, ["felun", "noun", "feluns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["felonie", "noun", "felonies", "", "", "", "evil"]) + let v = native_list_append(v, ["jornee", "noun", "jornees", "", "", "", "day daytime"]) + let v = native_list_append(v, ["jurnee", "noun", "jurnees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cloie", "noun", "cloies", "", "", "", "hurdle type of"]) + let v = native_list_append(v, ["conoissance", "noun", "conoissances", "", "", "", "knowledge"]) + let v = native_list_append(v, ["meniere", "noun", "menieres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wardein", "noun", "wardeinz", "", "", "", "protector guard guardian"]) + let v = native_list_append(v, ["covertor", "noun", "covertors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crevace", "noun", "crevaces", "", "", "", "crevasse"]) + let v = native_list_append(v, ["joude", "noun", "joude", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["umilité", "noun", "umilitez", "", "", "", "humbleness humility"]) + let v = native_list_append(v, ["viscosité", "noun", "viscositez", "", "", "", "viscosity"]) + let v = native_list_append(v, ["dant", "noun", "danz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porpre", "noun", "porpres", "", "", "", "a rich expensive"]) + let v = native_list_append(v, ["balaine", "noun", "balaines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sospeçon", "noun", "sospeçons", "", "", "", "suspicion"]) + let v = native_list_append(v, ["simonie", "noun", "simonie", "", "", "", "simony"]) + let v = native_list_append(v, ["coart", "noun", "coarz", "", "", "", "a coward"]) + let v = native_list_append(v, ["onbre", "noun", "onbres", "", "", "", "shadow shape caused"]) + let v = native_list_append(v, ["pannicle", "noun", "pannicles", "", "", "", "pannicle membrane"]) + let v = native_list_append(v, ["peisson", "noun", "peissons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tradicion", "noun", "tradicions", "", "", "", "delivery"]) + let v = native_list_append(v, ["citet", "noun", "citez", "", "", "", "city"]) + let v = native_list_append(v, ["vicaire", "noun", "vicaires", "", "", "", "vicar curate"]) + let v = native_list_append(v, ["pleintif", "noun", "pleintis", "", "", "", "a plaintiff"]) + let v = native_list_append(v, ["gonfalon", "noun", "gonfalons", "", "", "", "gonfalon"]) + let v = native_list_append(v, ["gonfanon", "noun", "gonfanons", "", "", "", "gonfalon"]) + let v = native_list_append(v, ["avancement", "noun", "avancemenz", "", "", "", "advantage"]) + let v = native_list_append(v, ["Criator", "noun", "Criator", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gantelet", "noun", "gantelez", "", "", "", "gauntlet armored glove"]) + let v = native_list_append(v, ["canchon", "noun", "canchons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scabie", "noun", "scabies", "", "", "", "scabies"]) + let v = native_list_append(v, ["bachin", "noun", "bachins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bacin", "noun", "bacins", "", "", "", "basin container for"]) + let v = native_list_append(v, ["Anjou", "noun", "Anjou", "", "", "", "Anjou"]) + let v = native_list_append(v, ["escrit", "noun", "escriz", "", "", "", "writings written work"]) + let v = native_list_append(v, ["Troyen", "noun", "Troyens", "", "", "", "Trojan someone from"]) + let v = native_list_append(v, ["Londrez", "noun", "Londrez", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["pretour", "noun", "pretours", "", "", "", "praetor"]) + let v = native_list_append(v, ["cisel", "noun", "ciseaus", "", "", "", "cutting tool chisel"]) + let v = native_list_append(v, ["abeance", "noun", "abeances", "", "", "", "desire want"]) + let v = native_list_append(v, ["crope", "noun", "cropes", "", "", "", "croup rear of"]) + let v = native_list_append(v, ["abaie", "noun", "abaies", "", "", "", "abbey"]) + let v = native_list_append(v, ["mainoevre", "noun", "mainoevres", "", "", "", "manual work physical"]) + let v = native_list_append(v, ["liesse", "noun", "liesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parament", "noun", "paramenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cruste", "noun", "crustes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["novelté", "noun", "noveltez", "", "", "", "novelty something that"]) + let v = native_list_append(v, ["Fraunce", "noun", "Fraunce", "", "", "", "France a medieval"]) + let v = native_list_append(v, ["Fraunceis", "noun", "Fraunceises", "", "", "", "Frenchman"]) + let v = native_list_append(v, ["cucuault", "noun", "cucuaulz", "", "", "", "a cuckold"]) + let v = native_list_append(v, ["bounté", "noun", "bountez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nece", "noun", "neces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enfaunt", "noun", "enfaunz", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["mesoun", "noun", "mesouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mesaventure", "noun", "mesaventures", "", "", "", "misfortune misadventure"]) + let v = native_list_append(v, ["mescheaunce", "noun", "mescheaunces", "", "", "", "misfortune misadventure"]) + let v = native_list_append(v, ["anguise", "noun", "anguises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hounte", "noun", "hountes", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["sacrifise", "noun", "sacrifises", "", "", "", "sacrifice act of"]) + let v = native_list_append(v, ["Cornewaleys", "noun", "Cornewaleyses", "", "", "", "Cornish person"]) + let v = native_list_append(v, ["corounement", "noun", "corounemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fievre", "noun", "fievres", "", "", "", "fever"]) + let v = native_list_append(v, ["draperie", "noun", "draperies", "", "", "", "clothmaking"]) + let v = native_list_append(v, ["hamelet", "noun", "hamelez", "", "", "", "hamlet small settlement"]) + let v = native_list_append(v, ["parchemin", "noun", "parchemins", "", "", "", "parchment"]) + let v = native_list_append(v, ["foulc", "noun", "fouls", "", "", "", "flock herd"]) + let v = native_list_append(v, ["fulc", "noun", "fuls", "", "", "", "flock guided herd"]) + let v = native_list_append(v, ["fuls", "noun", "fuls", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["muntaigne", "noun", "muntaignes", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["pecchet", "noun", "pecchez", "", "", "", "a sin act"]) + let v = native_list_append(v, ["camelz", "noun", "camelz", "", "", "", "inflection of camel"]) + let v = native_list_append(v, ["nuvele", "noun", "nuveles", "", "", "", "piece of news"]) + let v = native_list_append(v, ["Affrican", "noun", "Affricans", "", "", "", "African person"]) + let v = native_list_append(v, ["humilitet", "noun", "humilitet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["branche d'olive", "noun", "branches d'olive", "", "", "", "olive branch"]) + let v = native_list_append(v, ["saveirs", "noun", "saveirs", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["tenour", "noun", "tenours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armee", "noun", "armees", "", "", "", "army"]) + let v = native_list_append(v, ["leisir", "noun", "leisirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guarantie", "noun", "guaranties", "", "", "", "assurance promise guarantee"]) + let v = native_list_append(v, ["navie", "noun", "navies", "", "", "", "navy water-based military"]) + let v = native_list_append(v, ["garnement", "noun", "garnemenz", "", "", "", "garment piece of"]) + let v = native_list_append(v, ["garnemenz", "noun", "garnemenz", "", "", "", "inflection of garnement"]) + let v = native_list_append(v, ["proiere", "noun", "proieres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["umanité", "noun", "umanitez", "", "", "", "humanity humanness"]) + let v = native_list_append(v, ["mesfait", "noun", "mesfaiz", "", "", "", "sin wrongdoing"]) + let v = native_list_append(v, ["plesir", "noun", "plesirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doutance", "noun", "doutances", "", "", "", "doubt"]) + let v = native_list_append(v, ["pechié", "noun", "pechiez", "", "", "", "sin"]) + let v = native_list_append(v, ["anor", "noun", "anors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chasteaus", "noun", "chasteaus", "", "", "", "inflection of chastel"]) + let v = native_list_append(v, ["consel", "noun", "conseaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roïne", "noun", "roïnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pecheor", "noun", "pecheors", "", "", "", "sinner person who"]) + let v = native_list_append(v, ["chapele", "noun", "chapeles", "", "", "", "chapel building"]) + let v = native_list_append(v, ["faloise", "noun", "faloises", "", "", "", "cliff steep edge"]) + let v = native_list_append(v, ["meneor", "noun", "meneors", "", "", "", "leader person that"]) + let v = native_list_append(v, ["rochier", "noun", "rochiers", "", "", "", "rock large fragment"]) + let v = native_list_append(v, ["iglise", "noun", "iglises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vuel", "noun", "vueus", "", "", "", "want wish desire"]) + let v = native_list_append(v, ["buison", "noun", "buisons", "", "", "", "bush"]) + let v = native_list_append(v, ["disner", "noun", "disners", "", "", "", "lunch main meal"]) + let v = native_list_append(v, ["boschage", "noun", "boschages", "", "", "", "woods woodland"]) + let v = native_list_append(v, ["penitance", "noun", "penitances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escuier", "noun", "escuiers", "", "", "", "squire shield-bearer"]) + let v = native_list_append(v, ["dain", "noun", "dainz", "", "", "", "deer"]) + let v = native_list_append(v, ["embuschement", "noun", "embuschemenz", "", "", "", "ambush"]) + let v = native_list_append(v, ["mie nuit", "noun", "mie nuit", "", "", "", "midnight"]) + let v = native_list_append(v, ["chevrel", "noun", "chevreaus", "", "", "", "kid young goat"]) + let v = native_list_append(v, ["moingne", "noun", "moingnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vestimenz", "noun", "vestimenz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["desonor", "noun", "desonors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barnage", "noun", "barnages", "", "", "", "troupe of barons"]) + let v = native_list_append(v, ["esprevier", "noun", "espreviers", "", "", "", "sparrowhawk"]) + let v = native_list_append(v, ["gemissement", "noun", "gemissemenz", "", "", "", "groan groaning sound"]) + let v = native_list_append(v, ["governement", "noun", "governemenz", "", "", "", "government"]) + let v = native_list_append(v, ["maisniee", "noun", "maisniees", "", "", "", "house building"]) + let v = native_list_append(v, ["jovente", "noun", "joventes", "", "", "", "youth quality of"]) + let v = native_list_append(v, ["druerie", "noun", "drueries", "", "", "", "love romance"]) + let v = native_list_append(v, ["meschief", "noun", "meschiés", "", "", "", "misfortune mishap"]) + let v = native_list_append(v, ["marsdi", "noun", "marsdis", "", "", "", "Tuesday"]) + let v = native_list_append(v, ["boteille", "noun", "boteilles", "", "", "", "bottle"]) + let v = native_list_append(v, ["chaucier", "noun", "chauciers", "", "", "", "hosier one who"]) + let v = native_list_append(v, ["jouel", "noun", "joueus", "", "", "", "jewel"]) + let v = native_list_append(v, ["saintuaire", "noun", "saintuaires", "", "", "", "sanctuary"]) + let v = native_list_append(v, ["visquens", "noun", "visquens", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["herpeor", "noun", "herpeors", "", "", "", "harpist"]) + let v = native_list_append(v, ["sousterin", "noun", "sousterins", "", "", "", "underground somewhere that"]) + let v = native_list_append(v, ["celier", "noun", "celiers", "", "", "", "cellar underground storage"]) + let v = native_list_append(v, ["cief", "noun", "ciés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ganbete", "noun", "ganbetes", "", "", "", "leg"]) + let v = native_list_append(v, ["buef", "noun", "bués", "", "", "", "cow"]) + let v = native_list_append(v, ["bués", "noun", "bués", "", "", "", "inflection of buef"]) + let v = native_list_append(v, ["cemise", "noun", "cemises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ameor", "noun", "ameors", "", "", "", "lover"]) + let v = native_list_append(v, ["merceant", "noun", "merceanz", "", "", "", "merchant seller vendor"]) + let v = native_list_append(v, ["fluet", "noun", "fluez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["letre", "noun", "letres", "", "", "", "letter written character"]) + let v = native_list_append(v, ["escriture", "noun", "escritures", "", "", "", "writing"]) + let v = native_list_append(v, ["reialme", "noun", "reialmes", "", "", "", "kingdom"]) + let v = native_list_append(v, ["amur", "noun", "amurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buissun", "noun", "buissuns", "", "", "", "bush shrub"]) + let v = native_list_append(v, ["destinee", "noun", "destinees", "", "", "", "fate destiny"]) + let v = native_list_append(v, ["guarisun", "noun", "guarisuns", "", "", "", "treatment remedy for"]) + let v = native_list_append(v, ["poisun", "noun", "poisuns", "", "", "", "poison"]) + let v = native_list_append(v, ["vallet", "noun", "vallez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["faleise", "noun", "faleises", "", "", "", "cliff sheer face"]) + let v = native_list_append(v, ["niënt", "noun", "niënt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poeir", "noun", "poeirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desmesure", "noun", "desmesures", "", "", "", "excessiveness"]) + let v = native_list_append(v, ["dungun", "noun", "dunguns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muralz", "noun", "muralz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["batel", "noun", "bateaus", "", "", "", "boat watercraft"]) + let v = native_list_append(v, ["Bretaigne la Menur", "noun", "Bretaigne la Menur", "", "", "", "Brittany a cultural"]) + let v = native_list_append(v, ["chierté", "noun", "chiertez", "", "", "", "dearness fondness"]) + let v = native_list_append(v, ["preiere", "noun", "preieres", "", "", "", "prayer"]) + let v = native_list_append(v, ["dulçur", "noun", "dulçurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lecherie", "noun", "lecheries", "", "", "", "debauchery lechery"]) + let v = native_list_append(v, ["cungié", "noun", "cungiez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pruësce", "noun", "pruësce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noblesce", "noun", "noblesce", "", "", "", "nobleness courtliness"]) + let v = native_list_append(v, ["ubliance", "noun", "ubliance", "", "", "", "forgottenness state of"]) + let v = native_list_append(v, ["chevel", "noun", "cheveus", "", "", "", "hair"]) + let v = native_list_append(v, ["anguisse", "noun", "anguisses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["richesce", "noun", "richesces", "", "", "", "wealth richness"]) + let v = native_list_append(v, ["leialté", "noun", "leialtez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["requeste", "noun", "requestes", "", "", "", "request demand"]) + let v = native_list_append(v, ["cunfort", "noun", "cunforz", "", "", "", "comfort"]) + let v = native_list_append(v, ["poür", "noun", "poürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["buisun", "noun", "buisuns", "", "", "", "need"]) + let v = native_list_append(v, ["meis", "noun", "meis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belté", "noun", "beltez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiz Marie", "noun", "fiz Marie", "", "", "", "Jesus Christ"]) + let v = native_list_append(v, ["feiz", "noun", "feiz", "", "", "", "time instance occasion"]) + let v = native_list_append(v, ["aunte", "noun", "auntes", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["semeine", "noun", "semeines", "", "", "", "week"]) + let v = native_list_append(v, ["estencele", "noun", "estenceles", "", "", "", "spark"]) + let v = native_list_append(v, ["veie", "noun", "veies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bunté", "noun", "buntez", "", "", "", "goodness"]) + let v = native_list_append(v, ["bealté", "noun", "bealtez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deshonur", "noun", "deshonurs", "", "", "", "dishonor"]) + let v = native_list_append(v, ["estrif", "noun", "estris", "", "", "", "quarrel dispute"]) + let v = native_list_append(v, ["jugemenz", "noun", "jugemenz", "", "", "", "inflection of jugement"]) + let v = native_list_append(v, ["sufrance", "noun", "sufrances", "", "", "", "suffering"]) + let v = native_list_append(v, ["beivre", "noun", "beivres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["medecine", "noun", "medecines", "", "", "", "medicine remedy medical"]) + let v = native_list_append(v, ["palefrei", "noun", "palefreis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lerme", "noun", "lermes", "", "", "", "tear drop of"]) + let v = native_list_append(v, ["lermes", "noun", "lermes", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["plur", "noun", "plurs", "", "", "", "crying act of"]) + let v = native_list_append(v, ["suspir", "noun", "suspirs", "", "", "", "sigh"]) + let v = native_list_append(v, ["edage", "noun", "edages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flum", "noun", "fluns", "", "", "", "river"]) + let v = native_list_append(v, ["suspeçun", "noun", "suspeçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pume", "noun", "pumes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creatur", "noun", "creaturs", "", "", "", "creator one who"]) + let v = native_list_append(v, ["pecheür", "noun", "pecheürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["descension", "noun", "descensions", "", "", "", "descent"]) + let v = native_list_append(v, ["nuiz", "noun", "nuiz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["austic", "noun", "austic", "", "", "", "nightingale"]) + let v = native_list_append(v, ["bacheler", "noun", "bachelers", "", "", "", "young man"]) + let v = native_list_append(v, ["custume", "noun", "custumes", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["Suhttamptune", "noun", "Suhttamptune", "", "", "", "Southampton English port"]) + let v = native_list_append(v, ["Engleis", "noun", "Engleises", "", "", "", "Englishman English person"]) + let v = native_list_append(v, ["talenz", "noun", "talenz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["volunté", "noun", "voluntez", "", "", "", "desire wish want"]) + let v = native_list_append(v, ["chaitivel", "noun", "chaitivel", "", "", "", "wretch wretched miserable"]) + let v = native_list_append(v, ["cultel", "noun", "culteaus", "", "", "", "knife tool used"]) + let v = native_list_append(v, ["burc", "noun", "burs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guaain", "noun", "guaainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esfrei", "noun", "esfreis", "", "", "", "worry anxiety"]) + let v = native_list_append(v, ["moigne", "noun", "moignes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aignel", "noun", "aigneaus", "", "", "", "lamb"]) + let v = native_list_append(v, ["lungur", "noun", "lungurs", "", "", "", "length"]) + let v = native_list_append(v, ["furmage", "noun", "furmages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gupil", "noun", "gupiz", "", "", "", "fox"]) + let v = native_list_append(v, ["turment", "noun", "turmenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grandur", "noun", "grandurs", "", "", "", "largeness bigness"]) + let v = native_list_append(v, ["vadlet", "noun", "vadlez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seson", "noun", "sesons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curtesie", "noun", "curtesies", "", "", "", "honor valor nobleness"]) + let v = native_list_append(v, ["venerie", "noun", "venerie", "", "", "", "hunting"]) + let v = native_list_append(v, ["decret", "noun", "decrez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["renoun", "noun", "renouns", "", "", "", "reputation infamy usually"]) + let v = native_list_append(v, ["livere", "noun", "liveres", "", "", "", "book"]) + let v = native_list_append(v, ["doctour", "noun", "doctours", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["daunce", "noun", "daunces", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["hewe", "noun", "hewe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["religioun", "noun", "religiouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["daunger", "noun", "daungers", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["viage", "noun", "viages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vitaille", "noun", "vitailles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escuage", "noun", "escuages", "", "", "", "escuage medieval payment"]) + let v = native_list_append(v, ["prisoun", "noun", "prisouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prisun", "noun", "prisuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desir", "noun", "desirs", "", "", "", "desire act process"]) + let v = native_list_append(v, ["enchantement", "noun", "enchantemenz", "", "", "", "charm item with"]) + let v = native_list_append(v, ["truble", "noun", "trubles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sohait", "noun", "sohaiz", "", "", "", "wish"]) + let v = native_list_append(v, ["sohais", "noun", "sohais", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["chievre", "noun", "chievres", "", "", "", "goat mammal"]) + let v = native_list_append(v, ["venresdi", "noun", "venresdis", "", "", "", "Friday"]) + let v = native_list_append(v, ["joelier", "noun", "joeliers", "", "", "", "jeweller"]) + let v = native_list_append(v, ["aumosnier", "noun", "aumosniers", "", "", "", "almoner"]) + let v = native_list_append(v, ["offens", "noun", "offens", "", "", "", "misdeed"]) + let v = native_list_append(v, ["doubte", "noun", "doubtes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poterie", "noun", "poterie", "", "", "", "potter occupation of"]) + let v = native_list_append(v, ["prisonier", "noun", "prisoniers", "", "", "", "prisoner"]) + let v = native_list_append(v, ["sumunse", "noun", "sumunses", "", "", "", "summons"]) + let v = native_list_append(v, ["chapelain", "noun", "chapelainz", "", "", "", "chaplain"]) + let v = native_list_append(v, ["sairement", "noun", "sairemenz", "", "", "", "promise"]) + let v = native_list_append(v, ["emisphere", "noun", "emispheres", "", "", "", "hemisphere"]) + let v = native_list_append(v, ["aparance", "noun", "aparances", "", "", "", "appearance"]) + let v = native_list_append(v, ["aparence", "noun", "aparences", "", "", "", "appearance"]) + let v = native_list_append(v, ["eschequier", "noun", "eschequiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["circonference", "noun", "circonferences", "", "", "", "circumference"]) + let v = native_list_append(v, ["destresce", "noun", "destresces", "", "", "", "distress state of"]) + let v = native_list_append(v, ["coler", "noun", "colers", "", "", "", "collar item worn"]) + let v = native_list_append(v, ["moneie", "noun", "moneies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pastaierie", "noun", "pastaieries", "", "", "", "pastry mixture of"]) + let v = native_list_append(v, ["howe", "noun", "howe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["howes", "noun", "howes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["monoie", "noun", "monoies", "", "", "", "money coinage"]) + let v = native_list_append(v, ["toaille", "noun", "toailles", "", "", "", "towel cloth used"]) + let v = native_list_append(v, ["nonbril", "noun", "nonbriz", "", "", "", "belly button navel"]) + let v = native_list_append(v, ["quarrefor", "noun", "quarrefors", "", "", "", "crossroads point at"]) + let v = native_list_append(v, ["murtre", "noun", "murtres", "", "", "", "murder"]) + let v = native_list_append(v, ["murtrier", "noun", "murtriers", "", "", "", "murderer"]) + let v = native_list_append(v, ["resne", "noun", "resnes", "", "", "", "rein for an"]) + let v = native_list_append(v, ["forreure", "noun", "forreures", "", "", "", "fur hairlike covering"]) + let v = native_list_append(v, ["espeier", "noun", "espeiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espeir", "noun", "espeirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pascor", "noun", "pascor", "", "", "", "Easter"]) + let v = native_list_append(v, ["escu", "noun", "escus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baneret", "noun", "banerez", "", "", "", "banneret nobleman"]) + let v = native_list_append(v, ["juelier", "noun", "jueliers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charrete", "noun", "charretes", "", "", "", "charret small cart"]) + let v = native_list_append(v, ["muce", "noun", "muces", "", "", "", "hidden store cache"]) + let v = native_list_append(v, ["archangele", "noun", "archangeles", "", "", "", "archangel"]) + let v = native_list_append(v, ["muscule", "noun", "muscules", "", "", "", "muscle"]) + let v = native_list_append(v, ["lacerte", "noun", "lacertes", "", "", "", "muscle"]) + let v = native_list_append(v, ["adamante", "noun", "adamantes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["horrour", "noun", "horrours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tonbe", "noun", "tonbes", "", "", "", "tomb place where"]) + let v = native_list_append(v, ["cemetire", "noun", "cemetires", "", "", "", "cemetery place where"]) + let v = native_list_append(v, ["viles", "noun", "viles", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["ostex", "noun", "ostex", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["escience", "noun", "esciences", "", "", "", "knowledge"]) + let v = native_list_append(v, ["servage", "noun", "servages", "", "", "", "vassaldom servitude"]) + let v = native_list_append(v, ["dubitation", "noun", "dubitations", "", "", "", "doubt"]) + let v = native_list_append(v, ["cive", "noun", "cives", "", "", "", "chive"]) + let v = native_list_append(v, ["vantre", "noun", "vantres", "", "", "", "belly gut ventral"]) + let v = native_list_append(v, ["freor", "noun", "freors", "", "", "", "fear terror"]) + let v = native_list_append(v, ["deslealté", "noun", "deslealtez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nacion", "noun", "nacions", "", "", "", "birth instance of"]) + let v = native_list_append(v, ["cirugïen", "noun", "cirugïens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prodome", "noun", "prodomes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Lanceloz", "noun", "Lanceloz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["biere", "noun", "bieres", "", "", "", "beer alcoholic drink"]) + let v = native_list_append(v, ["complaignement", "noun", "complaignemenz", "", "", "", "complaint"]) + let v = native_list_append(v, ["esclipse", "noun", "esclipses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uis", "noun", "uis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["passeor", "noun", "passeors", "", "", "", "passage passage way"]) + let v = native_list_append(v, ["tasque", "noun", "tasques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oignemant", "noun", "oignemanz", "", "", "", "ointment"]) + let v = native_list_append(v, ["reconfort", "noun", "reconforz", "", "", "", "comfort something that"]) + let v = native_list_append(v, ["flueve", "noun", "flueves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relique", "noun", "reliques", "", "", "", "relic ancient religious"]) + let v = native_list_append(v, ["teile", "noun", "teiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lanpe", "noun", "lanpes", "", "", "", "lamp box containing"]) + let v = native_list_append(v, ["hautece", "noun", "hauteces", "", "", "", "highness quality of"]) + let v = native_list_append(v, ["charpantier", "noun", "charpantiers", "", "", "", "carpenter"]) + let v = native_list_append(v, ["feblece", "noun", "feblece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["charogne", "noun", "charognes", "", "", "", "carrion"]) + let v = native_list_append(v, ["landie", "noun", "landies", "", "", "", "cunt womans vagina"]) + let v = native_list_append(v, ["operacion", "noun", "operacions", "", "", "", "action act operation"]) + let v = native_list_append(v, ["naisance", "noun", "naisances", "", "", "", "birth act of"]) + let v = native_list_append(v, ["escripture", "noun", "escriptures", "", "", "", "writing any written"]) + let v = native_list_append(v, ["espirit", "noun", "espiriz", "", "", "", "spirit soul essence"]) + let v = native_list_append(v, ["falcun", "noun", "falcuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vitaile", "noun", "vitailes", "", "", "", "provisions victuals food"]) + let v = native_list_append(v, ["haltece", "noun", "halteces", "", "", "", "highness quality of"]) + let v = native_list_append(v, ["charn", "noun", "charns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["funtaine", "noun", "funtaines", "", "", "", "fountain"]) + let v = native_list_append(v, ["ahatine", "noun", "ahatines", "", "", "", "competition contest"]) + let v = native_list_append(v, ["dutance", "noun", "dutances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ewage", "noun", "ewages", "", "", "", "waterway channel"]) + let v = native_list_append(v, ["eigue", "noun", "eigues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venz", "noun", "venz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["jurn", "noun", "jurns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bandon", "noun", "bandons", "", "", "", "jurisdiction"]) + let v = native_list_append(v, ["sacel", "noun", "saceaus", "", "", "", "sack bag used"]) + let v = native_list_append(v, ["jusdi", "noun", "jusdis", "", "", "", "Thursday weekday"]) + let v = native_list_append(v, ["samadi", "noun", "samadis", "", "", "", "Saturday day of"]) + let v = native_list_append(v, ["juise", "noun", "juises", "", "", "", "verdict judgment"]) + let v = native_list_append(v, ["outragement", "noun", "outragemenz", "", "", "", "excessiveness over-the-topness"]) + let v = native_list_append(v, ["aquest", "noun", "aquez", "", "", "", "gain"]) + let v = native_list_append(v, ["bordon", "noun", "bordons", "", "", "", "bumblebee"]) + let v = native_list_append(v, ["chamel", "noun", "chameaus", "", "", "", "camel"]) + let v = native_list_append(v, ["furment", "noun", "furmenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inimi", "noun", "inimix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muntaine", "noun", "muntaines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["verm", "noun", "verns", "", "", "", "worm"]) + let v = native_list_append(v, ["flun", "noun", "fluns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liesses", "noun", "liesses", "", "", "", "inflection of liesse"]) + let v = native_list_append(v, ["esperon", "noun", "esperons", "", "", "", "spur tool used"]) + let v = native_list_append(v, ["escrivain", "noun", "escrivainz", "", "", "", "writer"]) + let v = native_list_append(v, ["feon", "noun", "feons", "", "", "", "whelp young animal"]) + let v = native_list_append(v, ["archevesque", "noun", "archevesques", "", "", "", "archbishop"]) + let v = native_list_append(v, ["vallez", "noun", "vallez", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["yglise", "noun", "yglises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eissele", "noun", "eisseles", "", "", "", "armpit"]) + let v = native_list_append(v, ["ostesce", "noun", "ostesces", "", "", "", "female innkeeper or"]) + let v = native_list_append(v, ["orellier", "noun", "orelliers", "", "", "", "pillow"]) + let v = native_list_append(v, ["auctorité", "noun", "auctoritez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escient", "noun", "escient", "", "", "", "knowledge"]) + let v = native_list_append(v, ["religiun", "noun", "religiuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relacioun", "noun", "relaciouns", "", "", "", "report retelling of"]) + let v = native_list_append(v, ["Karlon", "noun", "Karlon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bastonet", "noun", "bastonez", "", "", "", "small truncheon or"]) + let v = native_list_append(v, ["cosin", "noun", "cosins", "", "", "", "cousin"]) + let v = native_list_append(v, ["ornement", "noun", "ornemenz", "", "", "", "ornament decorative item"]) + let v = native_list_append(v, ["painne", "noun", "painnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bleceure", "noun", "bleceures", "", "", "", "injury"]) + let v = native_list_append(v, ["apostre", "noun", "apostres", "", "", "", "apostle"]) + let v = native_list_append(v, ["enqueste", "noun", "enquestes", "", "", "", "search"]) + let v = native_list_append(v, ["tornoi", "noun", "tornois", "", "", "", "tournament Medieval contest"]) + let v = native_list_append(v, ["marcheandise", "noun", "marcheandises", "", "", "", "merchandise goods available"]) + let v = native_list_append(v, ["merceanz", "noun", "merceanz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["floeve", "noun", "floeves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lengue", "noun", "lengues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["essample", "noun", "essamples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maleurté", "noun", "maleurtez", "", "", "", "misery profound unhappiness"]) + let v = native_list_append(v, ["Giu", "noun", "Gius", "", "", "", "alternative letter-case form"]) + let v = native_list_append(v, ["dotance", "noun", "dotances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chenole", "noun", "chenoles", "", "", "", "trachea windpipe"]) + let v = native_list_append(v, ["faiture", "noun", "faitures", "", "", "", "action act"]) + let v = native_list_append(v, ["flued", "noun", "flued", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roncin", "noun", "roncins", "", "", "", "stallion horse"]) + let v = native_list_append(v, ["roncins", "noun", "roncins", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["tonel", "noun", "toneaus", "", "", "", "barrel large usually"]) + let v = native_list_append(v, ["guinple", "noun", "guinples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guimple", "noun", "guimples", "", "", "", "wimple headgear worn"]) + let v = native_list_append(v, ["raim", "noun", "rains", "", "", "", "branch of a"]) + let v = native_list_append(v, ["filz", "noun", "filz", "", "", "", "inflection of fil"]) + let v = native_list_append(v, ["mitié", "noun", "mitiez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["randon", "noun", "randons", "", "", "", "rapidity"]) + let v = native_list_append(v, ["poete", "noun", "poetes", "", "", "", "poet"]) + let v = native_list_append(v, ["dubitacion", "noun", "dubitacions", "", "", "", "doubt"]) + let v = native_list_append(v, ["tems", "noun", "tems", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["venim", "noun", "venins", "", "", "", "venom poisonous substance"]) + let v = native_list_append(v, ["remenant", "noun", "remenanz", "", "", "", "remnant"]) + let v = native_list_append(v, ["domaige", "noun", "domaiges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["compaignon", "noun", "compaignons", "", "", "", "friend"]) + let v = native_list_append(v, ["forban", "noun", "forbans", "", "", "", "banishment state of"]) + let v = native_list_append(v, ["eglise", "noun", "eglises", "", "", "", "church building dedicated"]) + let v = native_list_append(v, ["asseurance", "noun", "asseurances", "", "", "", "truce or agreement"]) + let v = native_list_append(v, ["eure", "noun", "eures", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chastaigne", "noun", "chastaignes", "", "", "", "chestnut"]) + let v = native_list_append(v, ["victore", "noun", "victores", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["apostole", "noun", "apostoles", "", "", "", "Apostle"]) + let v = native_list_append(v, ["enemi", "noun", "enemis", "", "", "", "enemy"]) + let v = native_list_append(v, ["escume", "noun", "escumes", "", "", "", "foam"]) + let v = native_list_append(v, ["moustarde", "noun", "moustardes", "", "", "", "mustard condiment"]) + let v = native_list_append(v, ["moust", "noun", "mouz", "", "", "", "must unfermented juice"]) + let v = native_list_append(v, ["coissin", "noun", "coissins", "", "", "", "cushion soft mass"]) + let v = native_list_append(v, ["resverie", "noun", "resveries", "", "", "", "joy delight"]) + let v = native_list_append(v, ["reguard", "noun", "reguarz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["archevesques", "noun", "archevesques", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["medlee", "noun", "medlees", "", "", "", "game"]) + let v = native_list_append(v, ["meslage", "noun", "meslages", "", "", "", "mixture"]) + let v = native_list_append(v, ["fradre", "noun", "fradres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poblo", "noun", "poblos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["salvament", "noun", "salvamenz", "", "", "", "archaic form of"]) + let v = native_list_append(v, ["escharpe", "noun", "escharpes", "", "", "", "bag satchel"]) + let v = native_list_append(v, ["tristor", "noun", "tristors", "", "", "", "sadness"]) + let v = native_list_append(v, ["vomissement", "noun", "vomissemenz", "", "", "", "sick vomit act"]) + let v = native_list_append(v, ["empeschement", "noun", "empeschemenz", "", "", "", "obstacle"]) + let v = native_list_append(v, ["pelerin", "noun", "pelerins", "", "", "", "pilgrim person who"]) + let v = native_list_append(v, ["smaragde", "noun", "smaragdes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paor", "noun", "paors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raige", "noun", "raiges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cherubin", "noun", "cherubins", "", "", "", "cherub"]) + let v = native_list_append(v, ["perrier", "noun", "perriers", "", "", "", "perrier mortar"]) + let v = native_list_append(v, ["areste", "noun", "arestes", "", "", "", "fishbone"]) + let v = native_list_append(v, ["joiel", "noun", "joieus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fatigation", "noun", "fatigations", "", "", "", "fatigue tiredness"]) + let v = native_list_append(v, ["abaesse", "noun", "abaesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abeesse", "noun", "abeesses", "", "", "", "abbess"]) + let v = native_list_append(v, ["abisme", "noun", "abisme", "", "", "", "Hell"]) + let v = native_list_append(v, ["aprentis", "noun", "aprentis", "", "", "", "apprentice"]) + let v = native_list_append(v, ["baffe", "noun", "baffes", "", "", "", "smack slap strike"]) + let v = native_list_append(v, ["bocle", "noun", "bocles", "", "", "", "buckle"]) + let v = native_list_append(v, ["broce", "noun", "broces", "", "", "", "brushwood"]) + let v = native_list_append(v, ["persoune", "noun", "persounes", "", "", "", "a person"]) + let v = native_list_append(v, ["sulfre", "noun", "sulfre", "", "", "", "sulphur element"]) + let v = native_list_append(v, ["recordour", "noun", "recordours", "", "", "", "record-keeper official in"]) + let v = native_list_append(v, ["noumbre", "noun", "noumbres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pilour", "noun", "pilours", "", "", "", "plunderer pillager"]) + let v = native_list_append(v, ["musike", "noun", "musikes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meseise", "noun", "meseises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marescal", "noun", "marescaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reyne", "noun", "reynes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grece", "noun", "greces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gelusie", "noun", "gelusie", "", "", "", "jealousy envy"]) + let v = native_list_append(v, ["Espayne", "noun", "Espayne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nois", "noun", "nois", "", "", "", "nut edible seed"]) + let v = native_list_append(v, ["doctur", "noun", "docturs", "", "", "", "scholar academic"]) + let v = native_list_append(v, ["acunte", "noun", "acuntes", "", "", "", "count calculation"]) + let v = native_list_append(v, ["apurtenance", "noun", "apurtenances", "", "", "", "belonging something which"]) + let v = native_list_append(v, ["oisel de proie", "noun", "oiseaus de proie", "", "", "", "bird of prey"]) + let v = native_list_append(v, ["cloistre", "noun", "cloistres", "", "", "", "cloister"]) + let v = native_list_append(v, ["clostre", "noun", "clostres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chevetaine", "noun", "chevetaines", "", "", "", "chief captain leader"]) + let v = native_list_append(v, ["escoler", "noun", "escolers", "", "", "", "school pupil"]) + let v = native_list_append(v, ["mestier", "noun", "mestiers", "", "", "", "job occupation employment"]) + let v = native_list_append(v, ["descorde", "noun", "descordes", "", "", "", "discord discontent unhappiness"]) + let v = native_list_append(v, ["complainte", "noun", "complaintes", "", "", "", "complaint lament"]) + let v = native_list_append(v, ["escorpion", "noun", "escorpions", "", "", "", "scorpion animal"]) + let v = native_list_append(v, ["ypocrite", "noun", "ypocrites", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Jhesucriz", "noun", "Jhesucriz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ypocrites", "noun", "ypocrites", "", "", "", "oblique masculine plural"]) + let v = native_list_append(v, ["Roberz", "noun", "Roberz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["nimphe", "noun", "nimphes", "", "", "", "nymph minor female"]) + let v = native_list_append(v, ["Perceval", "noun", "Perceval", "", "", "", "a male given"]) + let v = native_list_append(v, ["Percevax", "noun", "Percevax", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["chatel", "noun", "chateaus", "", "", "", "possession"]) + let v = native_list_append(v, ["sojor", "noun", "sojors", "", "", "", "time spent in"]) + let v = native_list_append(v, ["achevement", "noun", "achevemenz", "", "", "", "act of finishing"]) + let v = native_list_append(v, ["fevrier", "noun", "fevriers", "", "", "", "February month"]) + let v = native_list_append(v, ["çucre", "noun", "çucres", "", "", "", "sugar sweet crystalized"]) + let v = native_list_append(v, ["Camaalot", "noun", "Camaalot", "", "", "", "Camelot"]) + let v = native_list_append(v, ["cheminee", "noun", "cheminees", "", "", "", "chimney vent used"]) + let v = native_list_append(v, ["chastiement", "noun", "chastiemenz", "", "", "", "punishment chastisement"]) + let v = native_list_append(v, ["blestre", "noun", "blestres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blostre", "noun", "blostres", "", "", "", "blister mark on"]) + let v = native_list_append(v, ["neir", "noun", "neir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creue", "noun", "creues", "", "", "", "increase augmentation"]) + let v = native_list_append(v, ["menistre", "noun", "menistres", "", "", "", "minister official in"]) + let v = native_list_append(v, ["Escriture", "noun", "Escriture", "", "", "", "the Scripture the"]) + let v = native_list_append(v, ["prophetie", "noun", "propheties", "", "", "", "prophecy"]) + let v = native_list_append(v, ["soffrance", "noun", "soffrances", "", "", "", "suffering"]) + let v = native_list_append(v, ["renart", "noun", "renarz", "", "", "", "fox animal"]) + let v = native_list_append(v, ["coeverfu", "noun", "coeverfus", "", "", "", "curfew"]) + let v = native_list_append(v, ["congregacion", "noun", "congregacions", "", "", "", "congregation gathering assembly"]) + let v = native_list_append(v, ["chate", "noun", "chates", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["marchié", "noun", "marchiez", "", "", "", "market marketplace place"]) + let v = native_list_append(v, ["estranglement", "noun", "estranglemenz", "", "", "", "strangulation"]) + let v = native_list_append(v, ["pelerinage", "noun", "pelerinages", "", "", "", "pilgrimage journey made"]) + let v = native_list_append(v, ["prophete", "noun", "prophetes", "", "", "", "prophet chiefly Biblical"]) + let v = native_list_append(v, ["destrucion", "noun", "destrucions", "", "", "", "destruction act of"]) + let v = native_list_append(v, ["vesteure", "noun", "vesteures", "", "", "", "item of clothing"]) + let v = native_list_append(v, ["mescredi", "noun", "mescredis", "", "", "", "Wednesday"]) + let v = native_list_append(v, ["societé", "noun", "societez", "", "", "", "society group of"]) + let v = native_list_append(v, ["Egyptien", "noun", "Egyptiens", "", "", "", "Egyptian person"]) + let v = native_list_append(v, ["ovrier", "noun", "ovriers", "", "", "", "worker"]) + let v = native_list_append(v, ["ovriere", "noun", "ovrieres", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["entencion", "noun", "entencions", "", "", "", "intention intent aim"]) + let v = native_list_append(v, ["vaissel", "noun", "vaisseaus", "", "", "", "vessel tool used"]) + let v = native_list_append(v, ["oroison", "noun", "oroisons", "", "", "", "prayer"]) + let v = native_list_append(v, ["oriant", "noun", "oriant", "", "", "", "Orient the East"]) + let v = native_list_append(v, ["ebrieu", "noun", "ebrieu", "", "", "", "Hebrew language"]) + let v = native_list_append(v, ["beneison", "noun", "beneisons", "", "", "", "blessing"]) + let v = native_list_append(v, ["oscurté", "noun", "oscurtez", "", "", "", "darkness"]) + let v = native_list_append(v, ["diemenche", "noun", "diemenches", "", "", "", "Sunday"]) + let v = native_list_append(v, ["oignement", "noun", "oignemenz", "", "", "", "ointment balm"]) + let v = native_list_append(v, ["coumin", "noun", "coumin", "", "", "", "cumin"]) + let v = native_list_append(v, ["ivern", "noun", "ivern", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Brandan", "noun", "Brandan", "", "", "", "a male given"]) + let v = native_list_append(v, ["maquerel", "noun", "maquereaus", "", "", "", "mackerel fish"]) + let v = native_list_append(v, ["prelat", "noun", "prelaz", "", "", "", "prelate"]) + let v = native_list_append(v, ["paradix", "noun", "paradix", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paradiz", "noun", "paradiz", "", "", "", "Heaven"]) + let v = native_list_append(v, ["jonesce", "noun", "jonesce", "", "", "", "youth quality of"]) + let v = native_list_append(v, ["nonsavoir", "noun", "nonsavoirs", "", "", "", "ignorance"]) + let v = native_list_append(v, ["tribulacion", "noun", "tribulacions", "", "", "", "problem trouble obstacle"]) + let v = native_list_append(v, ["redempcion", "noun", "redempcions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alabastre", "noun", "alabastres", "", "", "", "alabaster"]) + let v = native_list_append(v, ["universitei", "noun", "universiteis", "", "", "", "university educational facility"]) + let v = native_list_append(v, ["bersuel", "noun", "bersueus", "", "", "", "cradle place where"]) + let v = native_list_append(v, ["conroi", "noun", "conrois", "", "", "", "In the Middle"]) + let v = native_list_append(v, ["corroi", "noun", "corrois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["incarnacion", "noun", "incarnacions", "", "", "", "incarnation"]) + let v = native_list_append(v, ["Gregoire", "noun", "Gregoire", "", "", "", "a male given"]) + let v = native_list_append(v, ["procés", "noun", "procés", "", "", "", "journey"]) + let v = native_list_append(v, ["gloutenie", "noun", "gloutenies", "", "", "", "gluttony"]) + let v = native_list_append(v, ["pucelete", "noun", "puceletes", "", "", "", "young girl female"]) + let v = native_list_append(v, ["chainse", "noun", "chainses", "", "", "", "a long womens"]) + let v = native_list_append(v, ["guische", "noun", "guisches", "", "", "", "a ruse or"]) + let v = native_list_append(v, ["chamberiere", "noun", "chamberieres", "", "", "", "chambermaid"]) + let v = native_list_append(v, ["destresse", "noun", "destresses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["marchise", "noun", "marchises", "", "", "", "marchioness wife of"]) + let v = native_list_append(v, ["obediance", "noun", "obediances", "", "", "", "obedience"]) + let v = native_list_append(v, ["labur", "noun", "laburs", "", "", "", "labor work toil"]) + let v = native_list_append(v, ["devocion", "noun", "devocions", "", "", "", "devotion quality of"]) + let v = native_list_append(v, ["acort", "noun", "acorz", "", "", "", "agreement accord"]) + let v = native_list_append(v, ["descort", "noun", "descorz", "", "", "", "disagreement discord"]) + let v = native_list_append(v, ["Rolant", "noun", "Rolant", "", "", "", "a male given"]) + let v = native_list_append(v, ["fumee", "noun", "fumees", "", "", "", "smoke"]) + let v = native_list_append(v, ["desaise", "noun", "desaises", "", "", "", "disease"]) + let v = native_list_append(v, ["pensee", "noun", "pensees", "", "", "", "thought"]) + let v = native_list_append(v, ["fau", "noun", "fau", "", "", "", "beech"]) + let v = native_list_append(v, ["pasches", "noun", "pasches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pasques", "noun", "pasques", "", "", "", "Easter Christian festival"]) + let v = native_list_append(v, ["doit de pié", "noun", "doiz de piez", "", "", "", "toe digit of"]) + let v = native_list_append(v, ["chrestientet", "noun", "chrestientet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tresorer", "noun", "tresorers", "", "", "", "treasurer person appointed"]) + let v = native_list_append(v, ["cameil", "noun", "cameilz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chenil", "noun", "cheniz", "", "", "", "kennel"]) + let v = native_list_append(v, ["destrer", "noun", "destrers", "", "", "", "a warhorse"]) + let v = native_list_append(v, ["nuveles", "noun", "nuveles", "", "", "", "news new information"]) + let v = native_list_append(v, ["amistié", "noun", "amistiez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quir", "noun", "quirs", "", "", "", "leather material"]) + let v = native_list_append(v, ["traïtur", "noun", "traïturs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freit", "noun", "freiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parastre", "noun", "parastres", "", "", "", "stepfather"]) + let v = native_list_append(v, ["martirie", "noun", "martiries", "", "", "", "martyrdom"]) + let v = native_list_append(v, ["fiertet", "noun", "fiertet", "", "", "", "pride proudness"]) + let v = native_list_append(v, ["glutun", "noun", "glutuns", "", "", "", "glutton"]) + let v = native_list_append(v, ["esperun", "noun", "esperuns", "", "", "", "spur metal implement"]) + let v = native_list_append(v, ["meitiet", "noun", "meitiez", "", "", "", "half"]) + let v = native_list_append(v, ["pulmun", "noun", "pulmuns", "", "", "", "lung"]) + let v = native_list_append(v, ["trunçun", "noun", "trunçuns", "", "", "", "truncheon baton stick"]) + let v = native_list_append(v, ["maisnee", "noun", "maisnees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murdrie", "noun", "murdrie", "", "", "", "murder murdering idea"]) + let v = native_list_append(v, ["ametiste", "noun", "ametistes", "", "", "", "amethyst precious stone"]) + let v = native_list_append(v, ["cumpaignuns", "noun", "cumpaignuns", "", "", "", "inflection of cumpaignun"]) + let v = native_list_append(v, ["cumpaignun", "noun", "cumpaignuns", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["cristaus", "noun", "cristaus", "", "", "", "inflection of cristal"]) + let v = native_list_append(v, ["demaine", "noun", "demaines", "", "", "", "entourage of a"]) + let v = native_list_append(v, ["espiez", "noun", "espiez", "", "", "", "inflection of espiet"]) + let v = native_list_append(v, ["frunt", "noun", "frunz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["confusiun", "noun", "confusiuns", "", "", "", "confusion"]) + let v = native_list_append(v, ["genoill", "noun", "genouz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["occean", "noun", "occeans", "", "", "", "ocean large body"]) + let v = native_list_append(v, ["afflictiun", "noun", "afflictiuns", "", "", "", "affliction trouble torment"]) + let v = native_list_append(v, ["seir", "noun", "seirs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Daneis", "noun", "Daneis", "", "", "", "Dane Danish person"]) + let v = native_list_append(v, ["esteile", "noun", "esteiles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["produme", "noun", "produmes", "", "", "", "good man"]) + let v = native_list_append(v, ["ocisiun", "noun", "ocisiuns", "", "", "", "killing act of"]) + let v = native_list_append(v, ["pescion", "noun", "pescions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veltre", "noun", "veltres", "", "", "", "hunting dog"]) + let v = native_list_append(v, ["vespre", "noun", "vespres", "", "", "", "evening"]) + let v = native_list_append(v, ["vespree", "noun", "vesprees", "", "", "", "evening"]) + let v = native_list_append(v, ["hanste", "noun", "hanstes", "", "", "", "lance weapon"]) + let v = native_list_append(v, ["gunfanun", "noun", "gunfanuns", "", "", "", "gonfalon type of"]) + let v = native_list_append(v, ["greisle", "noun", "greisles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graisle", "noun", "graisles", "", "", "", "a type of"]) + let v = native_list_append(v, ["bronie", "noun", "bronies", "", "", "", "ringmail armor"]) + let v = native_list_append(v, ["Michiel", "noun", "Michiel", "", "", "", "a male given"]) + let v = native_list_append(v, ["engien", "noun", "engiens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["proveire", "noun", "proveires", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["obliance", "noun", "obliances", "", "", "", "forgottenness quality of"]) + let v = native_list_append(v, ["Lundres", "noun", "Lundres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Normendie", "noun", "Normendie", "", "", "", "Normandy region in"]) + let v = native_list_append(v, ["eveske", "noun", "eveskes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frunce", "noun", "frunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Danemarche", "noun", "Danemarche", "", "", "", "Denmark country"]) + let v = native_list_append(v, ["sonje", "noun", "sonjes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["interpretacion", "noun", "interpretacions", "", "", "", "interpretation"]) + let v = native_list_append(v, ["archeveske", "noun", "archeveskes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aveirs", "noun", "aveirs", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["crualté", "noun", "crualtez", "", "", "", "cruelty cruelness"]) + let v = native_list_append(v, ["Normanz", "noun", "Normanz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["cumbateor", "noun", "cumbateors", "", "", "", "combattant fighter"]) + let v = native_list_append(v, ["foille", "noun", "foilles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fiebleté", "noun", "fiebletez", "", "", "", "weakness feebleness quality"]) + let v = native_list_append(v, ["conrei", "noun", "conreis", "", "", "", "celebration"]) + let v = native_list_append(v, ["closture", "noun", "clostures", "", "", "", "enclosed area"]) + let v = native_list_append(v, ["Willame", "noun", "Willame", "", "", "", "a male given"]) + let v = native_list_append(v, ["Willalme", "noun", "Willalme", "", "", "", "a male given"]) + let v = native_list_append(v, ["moes", "noun", "moes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["achoizon", "noun", "achoizons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Willeme", "noun", "Willeme", "", "", "", "a male given"]) + let v = native_list_append(v, ["Guillame", "noun", "Guillame", "", "", "", "a male given"]) + let v = native_list_append(v, ["Estiene", "noun", "Estiene", "", "", "", "a male given"]) + let v = native_list_append(v, ["Peitiers", "noun", "Peitiers", "", "", "", "Poitiers a city"]) + let v = native_list_append(v, ["Henris", "noun", "Henris", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Henriz", "noun", "Henriz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Baex", "noun", "Baex", "", "", "", "Bayeux a city"]) + let v = native_list_append(v, ["Guillalme", "noun", "Guillalme", "", "", "", "a male given"]) + let v = native_list_append(v, ["Loeis", "noun", "Loeis", "", "", "", "a male given"]) + let v = native_list_append(v, ["Richart", "noun", "Richart", "", "", "", "a male given"]) + let v = native_list_append(v, ["abé", "noun", "abez", "", "", "", "abbot"]) + let v = native_list_append(v, ["covent", "noun", "covenz", "", "", "", "convent residence of"]) + let v = native_list_append(v, ["cheveul", "noun", "cheveus", "", "", "", "a hair"]) + let v = native_list_append(v, ["Bernart", "noun", "Bernart", "", "", "", "a male given"]) + let v = native_list_append(v, ["canel", "noun", "caneaus", "", "", "", "canal artificial watercourse"]) + let v = native_list_append(v, ["chenel", "noun", "cheneaus", "", "", "", "channel of water"]) + let v = native_list_append(v, ["duresce", "noun", "duresces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lealté", "noun", "lealtez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneichon", "noun", "beneichons", "", "", "", "blessing"]) + let v = native_list_append(v, ["Osmont", "noun", "Osmont", "", "", "", "a male given"]) + let v = native_list_append(v, ["trosel", "noun", "troseaus", "", "", "", "bunch bundle"]) + let v = native_list_append(v, ["plaiz", "noun", "plaiz", "", "", "", "inflection of plait"]) + let v = native_list_append(v, ["repairement", "noun", "repairemenz", "", "", "", "return act of"]) + let v = native_list_append(v, ["pramesse", "noun", "pramesses", "", "", "", "promise"]) + let v = native_list_append(v, ["asemblee", "noun", "asemblees", "", "", "", "an assembly congregation"]) + let v = native_list_append(v, ["numbre", "noun", "numbres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["majorane", "noun", "majoranes", "", "", "", "marjoram"]) + let v = native_list_append(v, ["aposteme", "noun", "apostemes", "", "", "", "aposteme"]) + let v = native_list_append(v, ["ostage", "noun", "ostages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mautalent", "noun", "mautalenz", "", "", "", "evil intentions"]) + let v = native_list_append(v, ["enfez", "noun", "enfez", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["paisant", "noun", "paisanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anfant", "noun", "anfanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Thiebaut", "noun", "Thiebaut", "", "", "", "a male given"]) + let v = native_list_append(v, ["bobans", "noun", "bobans", "", "", "", "pride vanity"]) + let v = native_list_append(v, ["Galtier", "noun", "Galtier", "", "", "", "a male given"]) + let v = native_list_append(v, ["Frauncheiz", "noun", "Frauncheizes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["preie", "noun", "preies", "", "", "", "booty bounty"]) + let v = native_list_append(v, ["venour", "noun", "venours", "", "", "", "hunter"]) + let v = native_list_append(v, ["berbiz", "noun", "berbiz", "", "", "", "ewe"]) + let v = native_list_append(v, ["oue", "noun", "oues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Lohier", "noun", "Lohier", "", "", "", "a male given"]) + let v = native_list_append(v, ["cemetiere", "noun", "cemetieres", "", "", "", "cemetery place where"]) + let v = native_list_append(v, ["Giffrei", "noun", "Giffrei", "", "", "", "a male given"]) + let v = native_list_append(v, ["russignol", "noun", "russignous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["friçon", "noun", "friçons", "", "", "", "shiver shudder"]) + let v = native_list_append(v, ["muillier", "noun", "muilliers", "", "", "", "wife female married"]) + let v = native_list_append(v, ["gutiere", "noun", "gutieres", "", "", "", "gutter"]) + let v = native_list_append(v, ["capelain", "noun", "capelainz", "", "", "", "chaplain"]) + let v = native_list_append(v, ["machue", "noun", "machues", "", "", "", "club stick baton"]) + let v = native_list_append(v, ["ivresce", "noun", "ivresces", "", "", "", "drunkenness"]) + let v = native_list_append(v, ["poesté", "noun", "poestez", "", "", "", "power authority"]) + let v = native_list_append(v, ["poissance", "noun", "poissances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mutun", "noun", "mutuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pastur", "noun", "pasturs", "", "", "", "shepherd"]) + let v = native_list_append(v, ["cumbatteur", "noun", "cumbatteurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuntrees", "noun", "cuntrees", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["cumbatteurs", "noun", "cumbatteurs", "", "", "", "inflection of cumbatteur"]) + let v = native_list_append(v, ["saete", "noun", "saetes", "", "", "", "arrow projectile consisting"]) + let v = native_list_append(v, ["chamberlenc", "noun", "chamberlens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fisician", "noun", "fisicians", "", "", "", "doctor medical practitioner"]) + let v = native_list_append(v, ["weyver", "noun", "weyvers", "", "", "", "waiver"]) + let v = native_list_append(v, ["veissel", "noun", "veisseaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cunstance", "noun", "Cunstance", "", "", "", "a female given"]) + let v = native_list_append(v, ["Karlemaigne", "noun", "Karlemaigne", "", "", "", "Charlemagne former European"]) + let v = native_list_append(v, ["penun", "noun", "penuns", "", "", "", "gonfanon type of"]) + let v = native_list_append(v, ["Gersui", "noun", "Gersui", "", "", "", "Jersey island"]) + let v = native_list_append(v, ["Ierusalem", "noun", "Ierusalem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["relike", "noun", "relike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Walkelin", "noun", "Walkelin", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gilebert", "noun", "Gilebert", "", "", "", "a male given"]) + let v = native_list_append(v, ["soldeier", "noun", "soldeiers", "", "", "", "A soldier especially"]) + let v = native_list_append(v, ["soldeiers", "noun", "soldeiers", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["bastart", "noun", "bastarz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vardlet", "noun", "vardlez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bascat", "noun", "bascaz", "", "", "", "basket container"]) + let v = native_list_append(v, ["renun", "noun", "renuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clergie", "noun", "clergies", "", "", "", "clergy"]) + let v = native_list_append(v, ["Raol", "noun", "Raol", "", "", "", "a male given"]) + let v = native_list_append(v, ["deseriteisun", "noun", "deseriteisuns", "", "", "", "disinheritance act of"]) + let v = native_list_append(v, ["gaole", "noun", "gaoles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Reinald", "noun", "Reinald", "", "", "", "a male given"]) + let v = native_list_append(v, ["asalt", "noun", "asalz", "", "", "", "assault attack offensive"]) + let v = native_list_append(v, ["raisoun", "noun", "raisouns", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["resplendor", "noun", "resplendors", "", "", "", "splendor magnificence"]) + let v = native_list_append(v, ["Mahelt", "noun", "Mahelt", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ele", "noun", "Ele", "", "", "", "a female given"]) + let v = native_list_append(v, ["satisfacion", "noun", "satisfacions", "", "", "", "satisfaction for an"]) + let v = native_list_append(v, ["semunse", "noun", "semunses", "", "", "", "letter written document"]) + let v = native_list_append(v, ["Phelipe", "noun", "Phelipe", "", "", "", "a male given"]) + let v = native_list_append(v, ["Westmostier", "noun", "Westmostier", "", "", "", "Westminster a borough"]) + let v = native_list_append(v, ["mostier", "noun", "mostiers", "", "", "", "minster place of"]) + let v = native_list_append(v, ["Apostoile", "noun", "Apostoile", "", "", "", "the Pope"]) + let v = native_list_append(v, ["chent", "noun", "chenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plovier", "noun", "ploviers", "", "", "", "plover bird"]) + let v = native_list_append(v, ["penuncel", "noun", "penunceaus", "", "", "", "pencel a small"]) + let v = native_list_append(v, ["poun", "noun", "pouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlaunce", "noun", "parlaunces", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["viaire", "noun", "viaires", "", "", "", "face"]) + let v = native_list_append(v, ["carpentier", "noun", "carpentiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engigneor", "noun", "engigneors", "", "", "", "deceiver one who"]) + let v = native_list_append(v, ["Hastingues", "noun", "Hastingues", "", "", "", "Hastings"]) + let v = native_list_append(v, ["pesance", "noun", "pesances", "", "", "", "weight"]) + let v = native_list_append(v, ["ancessorie", "noun", "ancessories", "", "", "", "ancestry"]) + let v = native_list_append(v, ["manace", "noun", "manaces", "", "", "", "threat verbal or"]) + let v = native_list_append(v, ["hardement", "noun", "hardemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Northonblonde", "noun", "Northonblonde", "", "", "", "Northumberland"]) + let v = native_list_append(v, ["Gunnor", "noun", "Gunnor", "", "", "", "a female given"]) + let v = native_list_append(v, ["Heraut", "noun", "Heraut", "", "", "", "a male given"]) + let v = native_list_append(v, ["engignement", "noun", "engignemenz", "", "", "", "trickery ruse deception"]) + let v = native_list_append(v, ["chevetaigne", "noun", "chevetaignes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crieme", "noun", "criemes", "", "", "", "worry fear"]) + let v = native_list_append(v, ["Engleiz", "noun", "Engleizes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lavendre", "noun", "lavendre", "", "", "", "lavender plant"]) + let v = native_list_append(v, ["adition", "noun", "aditions", "", "", "", "addition that which"]) + let v = native_list_append(v, ["Engleterre", "noun", "Engleterre", "", "", "", "England country"]) + let v = native_list_append(v, ["feelté", "noun", "feeltez", "", "", "", "allegiance loyalty"]) + let v = native_list_append(v, ["vanteor", "noun", "vanteors", "", "", "", "vaunter boaster"]) + let v = native_list_append(v, ["feture", "noun", "fetures", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nacele", "noun", "naceles", "", "", "", "small boat"]) + let v = native_list_append(v, ["escheker", "noun", "eschekers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escalberc", "noun", "escalbers", "", "", "", "scabbard sheath for"]) + let v = native_list_append(v, ["gieu", "noun", "gieus", "", "", "", "game"]) + let v = native_list_append(v, ["Roem", "noun", "Roem", "", "", "", "Rouen a city"]) + let v = native_list_append(v, ["gesine", "noun", "gesines", "", "", "", "the act of"]) + let v = native_list_append(v, ["Caem", "noun", "Caem", "", "", "", "Caen a city"]) + let v = native_list_append(v, ["Tierri", "noun", "Tierri", "", "", "", "a male given"]) + let v = native_list_append(v, ["tricerie", "noun", "triceries", "", "", "", "trickery deception ruse"]) + let v = native_list_append(v, ["Caameiz", "noun", "Caameizes", "", "", "", "Someone from Caen"]) + let v = native_list_append(v, ["Mansel", "noun", "Manseaus", "", "", "", "Someone from Le"]) + let v = native_list_append(v, ["Kardif", "noun", "Kardif", "", "", "", "Cardiff a city"]) + let v = native_list_append(v, ["Glocestre", "noun", "Glocestre", "", "", "", "Gloucester a city"]) + let v = native_list_append(v, ["revolucion", "noun", "revolucions", "", "", "", "passage elapsing of"]) + let v = native_list_append(v, ["sachel", "noun", "sacheaus", "", "", "", "small bag"]) + let v = native_list_append(v, ["gravele", "noun", "graveles", "", "", "", "gravel chips of"]) + let v = native_list_append(v, ["masle", "noun", "masles", "", "", "", "male"]) + let v = native_list_append(v, ["obeissance", "noun", "obeissances", "", "", "", "obedience"]) + let v = native_list_append(v, ["terrour", "noun", "terrour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estover", "noun", "estovers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quarel", "noun", "quareaus", "", "", "", "square block of"]) + let v = native_list_append(v, ["meshaing", "noun", "meshainz", "", "", "", "mutilation mayhem loss"]) + let v = native_list_append(v, ["memoire", "noun", "memoires", "", "", "", "memory specific recollection"]) + let v = native_list_append(v, ["heritaige", "noun", "heritaiges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chevallier", "noun", "chevalliers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["artere", "noun", "arteres", "", "", "", "artery"]) + let v = native_list_append(v, ["lievre", "noun", "lievres", "", "", "", "hare"]) + let v = native_list_append(v, ["paulme", "noun", "paulmes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heritier", "noun", "heritiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["theologien", "noun", "theologiens", "", "", "", "theologian"]) + let v = native_list_append(v, ["hyene", "noun", "hyenes", "", "", "", "hyena animal"]) + let v = native_list_append(v, ["pourpos", "noun", "pourpos", "", "", "", "aim intention"]) + let v = native_list_append(v, ["purpos", "noun", "purpos", "", "", "", "aim intention"]) + let v = native_list_append(v, ["caitivison", "noun", "caitivisons", "", "", "", "captivity imprisonment"]) + let v = native_list_append(v, ["Itaire", "noun", "Itaire", "", "", "", "Italy European country"]) + let v = native_list_append(v, ["trespas", "noun", "trespas", "", "", "", "pass opening road"]) + let v = native_list_append(v, ["embuscement", "noun", "embuscemenz", "", "", "", "ambush"]) + let v = native_list_append(v, ["Griu", "noun", "Grius", "", "", "", "Greek Greek person"]) + let v = native_list_append(v, ["vitailles", "noun", "vitailles", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["Gresse", "noun", "Gresse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deuesse", "noun", "deuesses", "", "", "", "goddess"]) + let v = native_list_append(v, ["orfenin", "noun", "orfenins", "", "", "", "orphan"]) + let v = native_list_append(v, ["sené", "noun", "senez", "", "", "", "wise man sage"]) + let v = native_list_append(v, ["ovraige", "noun", "ovraiges", "", "", "", "work labor"]) + let v = native_list_append(v, ["sosterin", "noun", "sosterins", "", "", "", "underground an underground"]) + let v = native_list_append(v, ["aisné", "noun", "aisnez", "", "", "", "the eldest"]) + let v = native_list_append(v, ["doucine", "noun", "doucines", "", "", "", "flute oboe or"]) + let v = native_list_append(v, ["juenesce", "noun", "juenesce", "", "", "", "youth quality of"]) + let v = native_list_append(v, ["viellece", "noun", "viellece", "", "", "", "oldness quality of"]) + let v = native_list_append(v, ["mariment", "noun", "mariment", "", "", "", "pain suffering"]) + let v = native_list_append(v, ["destruiment", "noun", "destruimenz", "", "", "", "destruction"]) + let v = native_list_append(v, ["essele", "noun", "esseles", "", "", "", "armpit"]) + let v = native_list_append(v, ["mamele", "noun", "mameles", "", "", "", "breast"]) + let v = native_list_append(v, ["cuve", "noun", "cuves", "", "", "", "tank vat"]) + let v = native_list_append(v, ["socor", "noun", "socors", "", "", "", "help assistance aid"]) + let v = native_list_append(v, ["aversaire", "noun", "aversaires", "", "", "", "adversary opponent"]) + let v = native_list_append(v, ["hautor", "noun", "hautors", "", "", "", "height"]) + let v = native_list_append(v, ["eslection", "noun", "eslections", "", "", "", "election act of"]) + let v = native_list_append(v, ["pastoierie", "noun", "pastoieries", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["citeien", "noun", "citeiens", "", "", "", "citizen"]) + let v = native_list_append(v, ["geu", "noun", "geus", "", "", "", "game"]) + let v = native_list_append(v, ["nevuld", "noun", "nevulz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nevold", "noun", "nevolz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gonfalonier", "noun", "gonfaloniers", "", "", "", "gonfalonier"]) + let v = native_list_append(v, ["regiun", "noun", "regiuns", "", "", "", "region geographical location"]) + let v = native_list_append(v, ["Ecoce", "noun", "Ecoce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["regioun", "noun", "regiouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cornuaille", "noun", "Cornuaille", "", "", "", "Cornwall a peninsula"]) + let v = native_list_append(v, ["aparillement", "noun", "aparillemenz", "", "", "", "equipment"]) + let v = native_list_append(v, ["cotel", "noun", "coteaus", "", "", "", "knife tool with"]) + let v = native_list_append(v, ["riquece", "noun", "riqueces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["priorie", "noun", "priories", "", "", "", "priory religious building"]) + let v = native_list_append(v, ["menor Bretaigne", "noun", "menor Bretaigne", "", "", "", "Brittany region of"]) + let v = native_list_append(v, ["navele", "noun", "naveles", "", "", "", "small boat"]) + let v = native_list_append(v, ["estanc", "noun", "estans", "", "", "", "pond"]) + let v = native_list_append(v, ["cemin", "noun", "cemins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estang", "noun", "estainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mouster", "noun", "mousters", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aquoison", "noun", "aquoisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berbis", "noun", "berbis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maneuvre", "noun", "maneuvres", "", "", "", "something done or"]) + let v = native_list_append(v, ["decreet", "noun", "decreez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["senefiance", "noun", "senefiances", "", "", "", "sign signal indication"]) + let v = native_list_append(v, ["chartre", "noun", "chartres", "", "", "", "charter covenant written"]) + let v = native_list_append(v, ["orillier", "noun", "orilliers", "", "", "", "pillow"]) + let v = native_list_append(v, ["progrés", "noun", "progrés", "", "", "", "progress"]) + let v = native_list_append(v, ["plorement", "noun", "ploremenz", "", "", "", "crying weeping action"]) + let v = native_list_append(v, ["paien", "noun", "paiens", "", "", "", "pagan heathen"]) + let v = native_list_append(v, ["grandor", "noun", "grandors", "", "", "", "largeness bigness size"]) + let v = native_list_append(v, ["longor", "noun", "longors", "", "", "", "longness quality of"]) + let v = native_list_append(v, ["Roonde Table", "noun", "Roonde Table", "", "", "", "Round Table"]) + let v = native_list_append(v, ["Norgege", "noun", "Norgege", "", "", "", "Norway a former"]) + let v = native_list_append(v, ["conteor", "noun", "conteors", "", "", "", "storyteller"]) + let v = native_list_append(v, ["fableor", "noun", "fableors", "", "", "", "storyteller"]) + let v = native_list_append(v, ["puiçance", "noun", "puiçances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paillerez", "noun", "paillerez", "", "", "", "type of bird"]) + let v = native_list_append(v, ["Norgales", "noun", "Norgales", "", "", "", "North Wales"]) + let v = native_list_append(v, ["Sugales", "noun", "Sugales", "", "", "", "South Wales"]) + let v = native_list_append(v, ["hasart", "noun", "hasarz", "", "", "", "hazard game"]) + let v = native_list_append(v, ["eschas", "noun", "eschas", "", "", "", "chess board game"]) + let v = native_list_append(v, ["guisarme", "noun", "guisarmes", "", "", "", "gisarme"]) + let v = native_list_append(v, ["castelet", "noun", "castelés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coreor", "noun", "coreors", "", "", "", "runner one who"]) + let v = native_list_append(v, ["cunestable", "noun", "cunestables", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conestable", "noun", "conestables", "", "", "", "a military officer"]) + let v = native_list_append(v, ["vilanie", "noun", "vilanies", "", "", "", "evil"]) + let v = native_list_append(v, ["valiaunce", "noun", "valiaunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pagene", "noun", "pagenes", "", "", "", "page one side"]) + let v = native_list_append(v, ["destruision", "noun", "destruisions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cardonal", "noun", "cardonaus", "", "", "", "cardinal"]) + let v = native_list_append(v, ["Aufrican", "noun", "Aufricans", "", "", "", "African person"]) + let v = native_list_append(v, ["subjesion", "noun", "subjesions", "", "", "", "subjection quality or"]) + let v = native_list_append(v, ["manaces", "noun", "manaces", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["enferté", "noun", "enfertez", "", "", "", "sickness illness"]) + let v = native_list_append(v, ["hoben", "noun", "hobens", "", "", "", "shroud"]) + let v = native_list_append(v, ["sause", "noun", "sauses", "", "", "", "sauce condiment"]) + let v = native_list_append(v, ["heraud", "noun", "herauz", "", "", "", "herald messenger"]) + let v = native_list_append(v, ["emperice", "noun", "emperices", "", "", "", "Late Anglo-Norman form"]) + let v = native_list_append(v, ["luxurie", "noun", "luxuries", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pomel", "noun", "pomeaus", "", "", "", "decorate sphere on"]) + let v = native_list_append(v, ["licour", "noun", "licours", "", "", "", "liquid"]) + let v = native_list_append(v, ["iror", "noun", "irors", "", "", "", "anger"]) + let v = native_list_append(v, ["tenaunt", "noun", "tenaunz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adamaunt", "noun", "adamaunz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["werre", "noun", "werres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engignier", "noun", "engigniers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creatour", "noun", "creatours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vengeaunce", "noun", "vengeaunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arestaige", "noun", "arestaiges", "", "", "", "stop pause delay"]) + let v = native_list_append(v, ["aigue", "noun", "aigues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["effant", "noun", "effanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Mancel", "noun", "Manceaus", "", "", "", "Someone from Le"]) + let v = native_list_append(v, ["empereres", "noun", "empereres", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["emperere", "noun", "emperere", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["empereor", "noun", "empereors", "", "", "", "emperor commander"]) + let v = native_list_append(v, ["folaige", "noun", "folaiges", "", "", "", "folly insane or"]) + let v = native_list_append(v, ["barnaige", "noun", "barnaiges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onnor", "noun", "onnors", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["corus", "noun", "corus", "", "", "", "anger"]) + let v = native_list_append(v, ["windas", "noun", "windas", "", "", "", "winch"]) + let v = native_list_append(v, ["menbre", "noun", "menbres", "", "", "", "limb"]) + let v = native_list_append(v, ["iretier", "noun", "iretiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eschés", "noun", "eschés", "", "", "", "chess"]) + let v = native_list_append(v, ["giu", "noun", "gius", "", "", "", "game"]) + let v = native_list_append(v, ["virgene", "noun", "virgenes", "", "", "", "virgin one who"]) + let v = native_list_append(v, ["Gerart", "noun", "Gerart", "", "", "", "a male given"]) + let v = native_list_append(v, ["confanon", "noun", "confanons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fervence", "noun", "fervences", "", "", "", "fervency"]) + let v = native_list_append(v, ["goie", "noun", "goies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["secorance", "noun", "secorances", "", "", "", "security protection"]) + let v = native_list_append(v, ["jovene", "noun", "jovene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ongle del pié", "noun", "ongle del pié", "", "", "", "toenail"]) + let v = native_list_append(v, ["droiturier", "noun", "droituriers", "", "", "", "judge"]) + let v = native_list_append(v, ["branc", "noun", "brans", "", "", "", "blade of a"]) + let v = native_list_append(v, ["viellart", "noun", "viellarz", "", "", "", "old man"]) + let v = native_list_append(v, ["essil", "noun", "essiz", "", "", "", "exile"]) + let v = native_list_append(v, ["ungle", "noun", "ungles", "", "", "", "nail finger or"]) + let v = native_list_append(v, ["vut", "noun", "vuz", "", "", "", "wish desire want"]) + let v = native_list_append(v, ["grevance", "noun", "grevances", "", "", "", "chagrin disappointment"]) + let v = native_list_append(v, ["bataile", "noun", "batailes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maufait", "noun", "maufaiz", "", "", "", "evil act evil"]) + let v = native_list_append(v, ["phylosophie", "noun", "phylosophies", "", "", "", "philosophy field of"]) + let v = native_list_append(v, ["procuratour", "noun", "procuratours", "", "", "", "procurator tax collector"]) + let v = native_list_append(v, ["protectour", "noun", "protectours", "", "", "", "protector"]) + let v = native_list_append(v, ["successour", "noun", "successours", "", "", "", "successor one who"]) + let v = native_list_append(v, ["contesce", "noun", "contesces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heut", "noun", "heuz", "", "", "", "hilt handle of"]) + let v = native_list_append(v, ["conspiratour", "noun", "conspiratours", "", "", "", "conspirator"]) + let v = native_list_append(v, ["vengement", "noun", "vengemenz", "", "", "", "revenge vengeance"]) + let v = native_list_append(v, ["Lutice", "noun", "Lutice", "", "", "", "Paris the capital"]) + let v = native_list_append(v, ["Normaundie", "noun", "Normaundie", "", "", "", "Normandy"]) + let v = native_list_append(v, ["diemanche", "noun", "diemanche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arestison", "noun", "arestisons", "", "", "", "stop pause"]) + let v = native_list_append(v, ["delaiement", "noun", "delaiemenz", "", "", "", "delay"]) + let v = native_list_append(v, ["mollier", "noun", "molliers", "", "", "", "wife female spouse"]) + let v = native_list_append(v, ["accusour", "noun", "accusours", "", "", "", "accuser one who"]) + let v = native_list_append(v, ["defendour", "noun", "defendours", "", "", "", "defender one who"]) + let v = native_list_append(v, ["lessour", "noun", "lessours", "", "", "", "lessor"]) + let v = native_list_append(v, ["offendour", "noun", "offendours", "", "", "", "offender one who"]) + let v = native_list_append(v, ["abbet", "noun", "abbez", "", "", "", "abbot"]) + let v = native_list_append(v, ["charnel conpaingnie", "noun", "charnel conpaingnie", "", "", "", "sexual relations"]) + let v = native_list_append(v, ["prioresse", "noun", "prioresses", "", "", "", "prioress"]) + let v = native_list_append(v, ["cotoun", "noun", "cotouns", "", "", "", "cotton"]) + let v = native_list_append(v, ["boul", "noun", "bous", "", "", "", "birch tree"]) + let v = native_list_append(v, ["losengerie", "noun", "losengeries", "", "", "", "flattery especially flattery"]) + let v = native_list_append(v, ["fontainne", "noun", "fontainnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pencer", "noun", "pencers", "", "", "", "thought"]) + let v = native_list_append(v, ["singnor", "noun", "singnors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reume", "noun", "reumes", "", "", "", "mucus"]) + let v = native_list_append(v, ["connil", "noun", "conniz", "", "", "", "rabbit mammal"]) + let v = native_list_append(v, ["caroigne", "noun", "caroignes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mundification", "noun", "mundifications", "", "", "", "cleansing mundification"]) + let v = native_list_append(v, ["noum", "noun", "nouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["troveor", "noun", "troveors", "", "", "", "lyric poet"]) + let v = native_list_append(v, ["pastre", "noun", "pastres", "", "", "", "shepherd"]) + let v = native_list_append(v, ["exhibicion", "noun", "exhibicions", "", "", "", "exhibition act of"]) + let v = native_list_append(v, ["puisné", "noun", "puisné", "", "", "", ""]) + let v = native_list_append(v, ["escusement", "noun", "escusemenz", "", "", "", "excuse"]) + let v = native_list_append(v, ["lastage", "noun", "lastages", "", "", "", "cargo of a"]) + let v = native_list_append(v, ["reve", "noun", "reves", "", "", "", "turnip"]) + let v = native_list_append(v, ["piz", "noun", "piz", "", "", "", "chest breast of"]) + let v = native_list_append(v, ["dorveille", "noun", "dorveilles", "", "", "", "dozing drowsiness more"]) + let v = native_list_append(v, ["gastel", "noun", "gasteaus", "", "", "", "round cake loaf"]) + let v = native_list_append(v, ["flotage", "noun", "flotages", "", "", "", "act of diverting"]) + let v = native_list_append(v, ["sput", "noun", "spuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parçon", "noun", "parçons", "", "", "", "division separation"]) + let v = native_list_append(v, ["parçonier", "noun", "parçoniers", "", "", "", "coholder co-owner"]) + let v = native_list_append(v, ["parçonneour", "noun", "parçonneours", "", "", "", "parcener coheir"]) + let v = native_list_append(v, ["delit", "noun", "deliz", "", "", "", "delight pleasure joy"]) + let v = native_list_append(v, ["cervoise", "noun", "cervoises", "", "", "", "beer"]) + let v = native_list_append(v, ["cerveise", "noun", "cerveises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liage", "noun", "liages", "", "", "", "link tie bond"]) + let v = native_list_append(v, ["espauliere", "noun", "espaulieres", "", "", "", "spaulder armor for"]) + let v = native_list_append(v, ["deces", "noun", "deces", "", "", "", "death"]) + let v = native_list_append(v, ["estrangier", "noun", "estrangiers", "", "", "", "foreigner one from"]) + let v = native_list_append(v, ["mystere", "noun", "mystere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feie", "noun", "feies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["portoir", "noun", "portoirs", "", "", "", "stretcher tool used"]) + let v = native_list_append(v, ["desputoison", "noun", "desputoisons", "", "", "", "dispute argument"]) + let v = native_list_append(v, ["paneterie", "noun", "paneteries", "", "", "", "the act of"]) + let v = native_list_append(v, ["moien", "noun", "moiens", "", "", "", "middle centre"]) + let v = native_list_append(v, ["soing", "noun", "soinz", "", "", "", "care attention thought"]) + let v = native_list_append(v, ["apostume", "noun", "apostumes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["puche", "noun", "puches", "", "", "", "bag"]) + let v = native_list_append(v, ["royne", "noun", "roynes", "", "", "", "queen female monarch"]) + let v = native_list_append(v, ["reule", "noun", "reules", "", "", "", "rule regulation law"]) + let v = native_list_append(v, ["fleute", "noun", "fleutes", "", "", "", "flute musical instrument"]) + let v = native_list_append(v, ["pieté", "noun", "pietez", "", "", "", "piety quality of"]) + let v = native_list_append(v, ["espleit", "noun", "espleiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esploit", "noun", "esploiz", "", "", "", "income revenue"]) + let v = native_list_append(v, ["paralisie", "noun", "paralisies", "", "", "", "paralysis"]) + let v = native_list_append(v, ["condicion", "noun", "condicions", "", "", "", "condition state"]) + let v = native_list_append(v, ["putage", "noun", "putages", "", "", "", "debauchery immoral sexual"]) + let v = native_list_append(v, ["mainprise", "noun", "mainprises", "", "", "", "mainprise"]) + let v = native_list_append(v, ["pumier", "noun", "pumiers", "", "", "", "apple tree"]) + let v = native_list_append(v, ["fourme", "noun", "fourme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuirace", "noun", "cuiraces", "", "", "", "cuirass"]) + let v = native_list_append(v, ["cuiracer", "noun", "cuiracers", "", "", "", "a make of"]) + let v = native_list_append(v, ["catel", "noun", "cateaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usurier", "noun", "usuriers", "", "", "", "usurer a person"]) + let v = native_list_append(v, ["presentmentz", "noun", "presentmentz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["utilitet", "noun", "utilitet", "", "", "", "utility usefulness"]) + let v = native_list_append(v, ["garison", "noun", "garisons", "", "", "", "defence"]) + let v = native_list_append(v, ["wivre", "noun", "wivres", "", "", "", "any of various"]) + let v = native_list_append(v, ["voyeul", "noun", "voyeus", "", "", "", "vowel"]) + let v = native_list_append(v, ["cocombre", "noun", "cocombres", "", "", "", "cucumber"]) + let v = native_list_append(v, ["pessaire", "noun", "pessaires", "", "", "", "pessary vaginal suppository"]) + let v = native_list_append(v, ["generacion", "noun", "generacions", "", "", "", "procreation begetting"]) + let v = native_list_append(v, ["tablete", "noun", "tabletes", "", "", "", "small table"]) + let v = native_list_append(v, ["pluralité", "noun", "pluralitez", "", "", "", "plurality"]) + let v = native_list_append(v, ["Westmynster", "noun", "Westmynster", "", "", "", "Westminster"]) + let v = native_list_append(v, ["tornoiement", "noun", "tornoiemenz", "", "", "", "tournament an event"]) + let v = native_list_append(v, ["tumberel", "noun", "tumbereaus", "", "", "", "fall instance of"]) + let v = native_list_append(v, ["tialz", "noun", "tialz", "", "", "", "tent awning on"]) + let v = native_list_append(v, ["sustentacion", "noun", "sustentacions", "", "", "", "sustenance nourishment food"]) + let v = native_list_append(v, ["surlonge", "noun", "surlonges", "", "", "", "sirloin cut of"]) + let v = native_list_append(v, ["souffisance", "noun", "souffisance", "", "", "", "enough enough to"]) + let v = native_list_append(v, ["souvenance", "noun", "souvenances", "", "", "", "memory"]) + let v = native_list_append(v, ["marcheant", "noun", "marcheanz", "", "", "", "seller vendor"]) + let v = native_list_append(v, ["secle", "noun", "secles", "", "", "", "world"]) + let v = native_list_append(v, ["secles", "noun", "secles", "", "", "", "plural of secle"]) + let v = native_list_append(v, ["segnal", "noun", "segnaus", "", "", "", "emblem badge"]) + let v = native_list_append(v, ["sicamor", "noun", "sicamors", "", "", "", "sycamore tree"]) + let v = native_list_append(v, ["alaine", "noun", "alaines", "", "", "", "breathing"]) + let v = native_list_append(v, ["rusche", "noun", "rusches", "", "", "", "beehive"]) + let v = native_list_append(v, ["habundance", "noun", "habundances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rampar", "noun", "rampars", "", "", "", "rampart"]) + let v = native_list_append(v, ["draoncle", "noun", "draoncles", "", "", "", "boil pocket of"]) + let v = native_list_append(v, ["procreacion", "noun", "procreacion", "", "", "", "procreation act process"]) + let v = native_list_append(v, ["pourciession", "noun", "pourciessions", "", "", "", "procession line of"]) + let v = native_list_append(v, ["premisse", "noun", "premisses", "", "", "", "premise"]) + let v = native_list_append(v, ["pouletier", "noun", "pouletiers", "", "", "", "poulterer one who"]) + let v = native_list_append(v, ["porpartie", "noun", "porparties", "", "", "", "purparty part of"]) + let v = native_list_append(v, ["purpartie", "noun", "purparties", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poree", "noun", "poree", "", "", "", "leek"]) + let v = native_list_append(v, ["contenz", "noun", "contenz", "", "", "", "contents that which"]) + let v = native_list_append(v, ["pochete", "noun", "pochetes", "", "", "", "small bag"]) + let v = native_list_append(v, ["pyjon", "noun", "pyjons", "", "", "", "pigeon"]) + let v = native_list_append(v, ["peregrinacion", "noun", "peregrinacions", "", "", "", "pilgrimage"]) + let v = native_list_append(v, ["pestel", "noun", "pesteaus", "", "", "", "pestle tool used"]) + let v = native_list_append(v, ["peticiun", "noun", "peticiuns", "", "", "", "request demand"]) + let v = native_list_append(v, ["beche", "noun", "beches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peneant", "noun", "peneanz", "", "", "", "penitent"]) + let v = native_list_append(v, ["panssion", "noun", "panssions", "", "", "", "rent regular payment"]) + let v = native_list_append(v, ["pade", "noun", "pades", "", "", "", "foot paw of"]) + let v = native_list_append(v, ["patene", "noun", "patenes", "", "", "", "paten"]) + let v = native_list_append(v, ["coue", "noun", "coue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paraclit", "noun", "paraclit", "", "", "", "Holy Spirit"]) + let v = native_list_append(v, ["papegai", "noun", "papegais", "", "", "", "parrot"]) + let v = native_list_append(v, ["blanchor", "noun", "blanchors", "", "", "", "whiteness"]) + let v = native_list_append(v, ["sustance", "noun", "sustances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["orfelin", "noun", "orfelin", "", "", "", "orphan"]) + let v = native_list_append(v, ["oripel", "noun", "oripeaus", "", "", "", "a shining copper"]) + let v = native_list_append(v, ["oriflambe", "noun", "oriflambes", "", "", "", "oriflamme red silk"]) + let v = native_list_append(v, ["arismetique", "noun", "arismetique", "", "", "", "arithmetic"]) + let v = native_list_append(v, ["tesme", "noun", "tesmes", "", "", "", "theme topic of"]) + let v = native_list_append(v, ["Cistials", "noun", "Cistials", "", "", "", "Cîteaux abbey in"]) + let v = native_list_append(v, ["Costantinople", "noun", "Costantinople", "", "", "", "Constantinople the ancient"]) + let v = native_list_append(v, ["mireor", "noun", "mireors", "", "", "", "mirror"]) + let v = native_list_append(v, ["meriene", "noun", "merienes", "", "", "", "midday"]) + let v = native_list_append(v, ["marteaus", "noun", "marteaus", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["mastin", "noun", "mastins", "", "", "", "guard dog"]) + let v = native_list_append(v, ["markiet", "noun", "markiés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["malart", "noun", "malarz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mallart", "noun", "mallarz", "", "", "", "male wild duck"]) + let v = native_list_append(v, ["mesenge", "noun", "mesenges", "", "", "", "titmouse bird"]) + let v = native_list_append(v, ["masenge", "noun", "masenges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loirre", "noun", "loirres", "", "", "", "lure"]) + let v = native_list_append(v, ["logike", "noun", "logikes", "", "", "", "logic reasoning"]) + let v = native_list_append(v, ["gleve", "noun", "gleves", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["linçuel", "noun", "linçueus", "", "", "", "sheet drape large"]) + let v = native_list_append(v, ["lisiere", "noun", "lisieres", "", "", "", "trim edging"]) + let v = native_list_append(v, ["lymon", "noun", "lymons", "", "", "", "lemon fruit"]) + let v = native_list_append(v, ["lepart", "noun", "leparz", "", "", "", "leopard felid"]) + let v = native_list_append(v, ["lavandiere", "noun", "lavandieres", "", "", "", "washerwoman launder"]) + let v = native_list_append(v, ["lancete", "noun", "lancetes", "", "", "", "small lance weapon"]) + let v = native_list_append(v, ["juiu", "noun", "juius", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["javelline", "noun", "javellines", "", "", "", "a type of"]) + let v = native_list_append(v, ["huese", "noun", "hueses", "", "", "", "boot shoe"]) + let v = native_list_append(v, ["hourt", "noun", "hourz", "", "", "", "barrier palissade"]) + let v = native_list_append(v, ["heresie", "noun", "heresies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["husbondrie", "noun", "husbondrie", "", "", "", "marriage state of"]) + let v = native_list_append(v, ["pommes d'orenge", "noun", "pommes d'orenge", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["influance", "noun", "influances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["incredulité", "noun", "incredulitez", "", "", "", "incredulity lack of"]) + let v = native_list_append(v, ["gowne", "noun", "gownes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["butiller", "noun", "butillers", "", "", "", "butler officer in"]) + let v = native_list_append(v, ["bolengier", "noun", "bolengiers", "", "", "", "baker"]) + let v = native_list_append(v, ["guespe", "noun", "guespes", "", "", "", "wasp insect"]) + let v = native_list_append(v, ["perdiciun", "noun", "perdiciuns", "", "", "", "the loss of"]) + let v = native_list_append(v, ["baviere", "noun", "bavieres", "", "", "", "bib protective covering"]) + let v = native_list_append(v, ["bescuit", "noun", "bescuiz", "", "", "", "biscuit twice cooked"]) + let v = native_list_append(v, ["basile", "noun", "basiles", "", "", "", "basil herb"]) + let v = native_list_append(v, ["guerredon", "noun", "guerredons", "", "", "", "payment"]) + let v = native_list_append(v, ["gramaire", "noun", "gramaires", "", "", "", "grammar syntax used"]) + let v = native_list_append(v, ["gresle", "noun", "gresles", "", "", "", "hail several hailstones"]) + let v = native_list_append(v, ["gouvreneur", "noun", "gouvreneurs", "", "", "", "governor"]) + let v = native_list_append(v, ["goitron", "noun", "goitrons", "", "", "", "throat neck"]) + let v = native_list_append(v, ["fitz", "noun", "fitz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gobellet", "noun", "gobellez", "", "", "", "goblet"]) + let v = native_list_append(v, ["gesier", "noun", "gesiers", "", "", "", "gizzard"]) + let v = native_list_append(v, ["girfaut", "noun", "girfauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gerfault", "noun", "gerfaulz", "", "", "", "gyrfalcon bird"]) + let v = native_list_append(v, ["gastine", "noun", "gastines", "", "", "", "pillaging looting"]) + let v = native_list_append(v, ["guastine", "noun", "guastines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["galingal", "noun", "galingaus", "", "", "", "galangal any of"]) + let v = native_list_append(v, ["puor", "noun", "puor", "", "", "", "a putrid odour"]) + let v = native_list_append(v, ["leice", "noun", "leices", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chue", "noun", "chue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acciun", "noun", "acciuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aucion", "noun", "aucions", "", "", "", "action act deed"]) + let v = native_list_append(v, ["ventuse", "noun", "ventuses", "", "", "", "a cupping glass"]) + let v = native_list_append(v, ["estain", "noun", "estainz", "", "", "", "tin metal"]) + let v = native_list_append(v, ["vilenie", "noun", "vilenies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frait", "noun", "fraiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frenge", "noun", "frenges", "", "", "", "fringe edge of"]) + let v = native_list_append(v, ["fourage", "noun", "fourages", "", "", "", "animal fodder"]) + let v = native_list_append(v, ["fontenelle", "noun", "fontenelles", "", "", "", "any place where"]) + let v = native_list_append(v, ["foisil", "noun", "foisiz", "", "", "", "flint piece of"]) + let v = native_list_append(v, ["foene", "noun", "foenes", "", "", "", "any of various"]) + let v = native_list_append(v, ["flieme", "noun", "fliemes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fleume", "noun", "fleumes", "", "", "", "phlegm one of"]) + let v = native_list_append(v, ["flebothomie", "noun", "flebothomies", "", "", "", "phlebotomy"]) + let v = native_list_append(v, ["flaute", "noun", "flautes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flaon", "noun", "flaons", "", "", "", "flan savory pastry"]) + let v = native_list_append(v, ["fouaille", "noun", "fouailles", "", "", "", "firewood wood intended"]) + let v = native_list_append(v, ["forfaiture", "noun", "forfaitures", "", "", "", "violation of a"]) + let v = native_list_append(v, ["fuerre", "noun", "fuerres", "", "", "", "hay"]) + let v = native_list_append(v, ["filatiere", "noun", "filatieres", "", "", "", "small piece of"]) + let v = native_list_append(v, ["fesan", "noun", "fesans", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sarrazin", "noun", "sarrazins", "", "", "", "Saracen"]) + let v = native_list_append(v, ["fay neant", "noun", "fay neant", "", "", "", "faineant lazybones"]) + let v = native_list_append(v, ["evangeliste", "noun", "evangelistes", "", "", "", "Evangelist the authors"]) + let v = native_list_append(v, ["estrier", "noun", "estriers", "", "", "", "stirrup footrest"]) + let v = native_list_append(v, ["haur", "noun", "haurs", "", "", "", "hatred"]) + let v = native_list_append(v, ["estalon", "noun", "estalons", "", "", "", "stallion horse"]) + let v = native_list_append(v, ["estanchon", "noun", "estanchons", "", "", "", "stanchion supporting wooden"]) + let v = native_list_append(v, ["estance", "noun", "estances", "", "", "", "stay sojourn"]) + let v = native_list_append(v, ["estaple", "noun", "estaples", "", "", "", "marketplace"]) + let v = native_list_append(v, ["espurge", "noun", "espurges", "", "", "", "witness"]) + let v = native_list_append(v, ["setier", "noun", "setiers", "", "", "", "bushel measure"]) + let v = native_list_append(v, ["espos", "noun", "espos", "", "", "", "husband male spouse"]) + let v = native_list_append(v, ["vappeur", "noun", "vappeurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sayman", "noun", "sayman", "", "", "", "one who assays"]) + let v = native_list_append(v, ["umbres", "noun", "umbres", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["pillule", "noun", "pillules", "", "", "", "pill small item"]) + let v = native_list_append(v, ["malvesey", "noun", "malveseys", "", "", "", "malvoisie wine"]) + let v = native_list_append(v, ["esplen", "noun", "esplens", "", "", "", "spleen"]) + let v = native_list_append(v, ["esmeralde", "noun", "esmeraldes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmal", "noun", "esmaus", "", "", "", "enamel glossy material"]) + let v = native_list_append(v, ["eslan", "noun", "eslans", "", "", "", "jump leap"]) + let v = native_list_append(v, ["juerie", "noun", "juerie", "", "", "", "Jewdom Jewry"]) + let v = native_list_append(v, ["solucion", "noun", "solucions", "", "", "", "payment of a"]) + let v = native_list_append(v, ["esfroi", "noun", "esfrois", "", "", "", "fear terror"]) + let v = native_list_append(v, ["estorjoun", "noun", "estorjouns", "", "", "", "sturgeon fish"]) + let v = native_list_append(v, ["escrepe", "noun", "escrepes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escorce", "noun", "escorces", "", "", "", "bark of a"]) + let v = native_list_append(v, ["pomeroie", "noun", "pomeroies", "", "", "", "apple orchard"]) + let v = native_list_append(v, ["epitafe", "noun", "epitafes", "", "", "", "epitaph inscription"]) + let v = native_list_append(v, ["epistre", "noun", "epistres", "", "", "", "epistle letter"]) + let v = native_list_append(v, ["epyphanie", "noun", "epyphanies", "", "", "", "Epiphany Christian celebration"]) + let v = native_list_append(v, ["iveresce", "noun", "iveresces", "", "", "", "drunkenness"]) + let v = native_list_append(v, ["fornais", "noun", "fornais", "", "", "", "furnace"]) + let v = native_list_append(v, ["fornaz", "noun", "fornaz", "", "", "", "furnace"]) + let v = native_list_append(v, ["enque", "noun", "enques", "", "", "", "ink dark liquid"]) + let v = native_list_append(v, ["entraille", "noun", "entrailles", "", "", "", "guts innards of"]) + let v = native_list_append(v, ["fornaise", "noun", "fornaises", "", "", "", "furnace"]) + let v = native_list_append(v, ["forneise", "noun", "forneises", "", "", "", "furnace"]) + let v = native_list_append(v, ["cens", "noun", "cens", "", "", "", "inflection of cent"]) + let v = native_list_append(v, ["çanz", "noun", "çanz", "", "", "", "inflection of cent"]) + let v = native_list_append(v, ["ceinz", "noun", "ceinz", "", "", "", "inflection of ceint"]) + let v = native_list_append(v, ["fealté", "noun", "fealtez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dyscrasie", "noun", "dyscrasies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flouret", "noun", "flourez", "", "", "", "small flower"]) + let v = native_list_append(v, ["dragme", "noun", "dragmes", "", "", "", "dram unit of"]) + let v = native_list_append(v, ["doulcemelle", "noun", "doulcemelles", "", "", "", "A type of"]) + let v = native_list_append(v, ["dolçor", "noun", "dolçors", "", "", "", "softness"]) + let v = native_list_append(v, ["detriement", "noun", "detriemenz", "", "", "", "detriment damage harm"]) + let v = native_list_append(v, ["devoreor", "noun", "devoreors", "", "", "", "devourer one who"]) + let v = native_list_append(v, ["devoureresse", "noun", "devoureresses", "", "", "", "devouress female person"]) + let v = native_list_append(v, ["desverie", "noun", "desveries", "", "", "", "rage anger ire"]) + let v = native_list_append(v, ["derverie", "noun", "derverie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["descipline", "noun", "desciplines", "", "", "", "corporal punishment"]) + let v = native_list_append(v, ["defraudement", "noun", "defraudemenz", "", "", "", "loss"]) + let v = native_list_append(v, ["defaute", "noun", "defautes", "", "", "", "lack absence"]) + let v = native_list_append(v, ["denz", "noun", "denz", "", "", "", "inflection of dent"]) + let v = native_list_append(v, ["vainquement", "noun", "vainquemenz", "", "", "", "victory defeat of"]) + let v = native_list_append(v, ["chanfrain", "noun", "chanfrainz", "", "", "", "chamfron"]) + let v = native_list_append(v, ["amiette", "noun", "amiettes", "", "", "", "female lover"]) + let v = native_list_append(v, ["obseque", "noun", "obseques", "", "", "", "funeral"]) + let v = native_list_append(v, ["estor", "noun", "estors", "", "", "", "battle combat"]) + let v = native_list_append(v, ["creseance", "noun", "creseances", "", "", "", "increase augmentation"]) + let v = native_list_append(v, ["cresme", "noun", "cresmes", "", "", "", "cream milk product"]) + let v = native_list_append(v, ["cantel", "noun", "canteaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vendeor", "noun", "vendeors", "", "", "", "seller vendor"]) + let v = native_list_append(v, ["venderesse", "noun", "venderesses", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["heriçun", "noun", "heriçuns", "", "", "", "hedgehog"]) + let v = native_list_append(v, ["covant", "noun", "covanz", "", "", "", "covenant promise agreement"]) + let v = native_list_append(v, ["coustille", "noun", "coustilles", "", "", "", "a type of"]) + let v = native_list_append(v, ["coustillier", "noun", "coustilliers", "", "", "", "custrel"]) + let v = native_list_append(v, ["covee", "noun", "covees", "", "", "", "the period during"]) + let v = native_list_append(v, ["copeiz", "noun", "copeiz", "", "", "", "a cut-over woods"]) + let v = native_list_append(v, ["coillon", "noun", "coillons", "", "", "", "testicle"]) + let v = native_list_append(v, ["croiance", "noun", "croiances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["crence", "noun", "crences", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["creence", "noun", "creences", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escurel", "noun", "escureaus", "", "", "", "squirrel"]) + let v = native_list_append(v, ["vestemant", "noun", "vestemanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nominatif case", "noun", "nominatif case", "", "", "", "nominative case"]) + let v = native_list_append(v, ["genitif case", "noun", "genitif case", "", "", "", "genitive case"]) + let v = native_list_append(v, ["ablatif case", "noun", "ablatif case", "", "", "", "ablative case"]) + let v = native_list_append(v, ["plurel", "noun", "plurel", "", "", "", "plural"]) + let v = native_list_append(v, ["singuler", "noun", "singulers", "", "", "", "singular"]) + let v = native_list_append(v, ["imperatif", "noun", "imperatis", "", "", "", "imperative mood"]) + let v = native_list_append(v, ["optatif", "noun", "optatis", "", "", "", "subjunctive mood"]) + let v = native_list_append(v, ["cople", "noun", "coples", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["contrepois", "noun", "contrepois", "", "", "", "counterbalance balancing weight"]) + let v = native_list_append(v, ["garantison", "noun", "garantisons", "", "", "", "protection"]) + let v = native_list_append(v, ["chanteor", "noun", "chanteors", "", "", "", "singer"]) + let v = native_list_append(v, ["communicacion", "noun", "communicacions", "", "", "", "communication act instance"]) + let v = native_list_append(v, ["acoil", "noun", "acoil", "", "", "", "welcome reception"]) + let v = native_list_append(v, ["cofin", "noun", "cofins", "", "", "", "basket usually wicker"]) + let v = native_list_append(v, ["feblesce", "noun", "feblesces", "", "", "", "weakness"]) + let v = native_list_append(v, ["cocatriz", "noun", "cocatriz", "", "", "", "cockatrice"]) + let v = native_list_append(v, ["coardise", "noun", "coardise", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cocodril", "noun", "cocodriz", "", "", "", "crocodile reptile"]) + let v = native_list_append(v, ["citezein", "noun", "citezeinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cisme", "noun", "cismes", "", "", "", "schism split fracture"]) + let v = native_list_append(v, ["Tristran", "noun", "Tristran", "", "", "", "a male given"]) + let v = native_list_append(v, ["chippe", "noun", "chippe", "", "", "", "rag poor quality"]) + let v = native_list_append(v, ["chanel", "noun", "chaneaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["visnage", "noun", "visnages", "", "", "", "ones neighbors"]) + let v = native_list_append(v, ["chamberlayn", "noun", "chamberlayns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cail", "noun", "cauz", "", "", "", "quay wharf"]) + let v = native_list_append(v, ["caudron", "noun", "caudrons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cauquemare", "noun", "cauquemares", "", "", "", "nightmare"]) + let v = native_list_append(v, ["chenevas", "noun", "chenevas", "", "", "", "canvas"]) + let v = native_list_append(v, ["canevach", "noun", "canevach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cariage", "noun", "cariages", "", "", "", "transportation of goods"]) + let v = native_list_append(v, ["Stounhenges", "noun", "Stounhenges", "", "", "", "Stonehenge"]) + let v = native_list_append(v, ["telier", "noun", "teliers", "", "", "", "clothmaker"]) + let v = native_list_append(v, ["veyne", "noun", "veynes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reposee", "noun", "reposees", "", "", "", "rest absence of"]) + let v = native_list_append(v, ["navreure", "noun", "navreures", "", "", "", "wound"]) + let v = native_list_append(v, ["pentacol", "noun", "pentacous", "", "", "", "pendant jewelry"]) + let v = native_list_append(v, ["avogle", "noun", "avogles", "", "", "", "blind person"]) + let v = native_list_append(v, ["avoistre", "noun", "avoistres", "", "", "", "adulterous man"]) + let v = native_list_append(v, ["avanteur", "noun", "avanteurs", "", "", "", "vaunter boaster"]) + let v = native_list_append(v, ["cyté", "noun", "cytez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["artaire", "noun", "artaires", "", "", "", "artery"]) + let v = native_list_append(v, ["aplicacion", "noun", "aplicacions", "", "", "", "application act of"]) + let v = native_list_append(v, ["anoiance", "noun", "anoiances", "", "", "", "torment suffering chagrin"]) + let v = native_list_append(v, ["ancele", "noun", "anceles", "", "", "", "maiden unmarried woman"]) + let v = native_list_append(v, ["garantise", "noun", "garantises", "", "", "", "protection"]) + let v = native_list_append(v, ["ambes as", "noun", "ambes as", "", "", "", "ambsace a score"]) + let v = native_list_append(v, ["alouance", "noun", "alouances", "", "", "", "payment"]) + let v = native_list_append(v, ["alotement", "noun", "alotemenz", "", "", "", "allocation that which"]) + let v = native_list_append(v, ["alkimie", "noun", "alkimie", "", "", "", "alchemy"]) + let v = native_list_append(v, ["albade", "noun", "albades", "", "", "", "aubade love song"]) + let v = native_list_append(v, ["alegement", "noun", "alegemenz", "", "", "", "lightening of a"]) + let v = native_list_append(v, ["estiche", "noun", "estiche", "", "", "", "stick wand a"]) + let v = native_list_append(v, ["agrement", "noun", "agremenz", "", "", "", "agreement accord"]) + let v = native_list_append(v, ["esselier", "noun", "esseliers", "", "", "", "wooden support"]) + let v = native_list_append(v, ["amirail", "noun", "amirauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afermance", "noun", "afermances", "", "", "", "affirmation"]) + let v = native_list_append(v, ["acusement", "noun", "acusemenz", "", "", "", "accusation"]) + let v = native_list_append(v, ["alchoran", "noun", "alchoran", "", "", "", "Quran Muslim holy"]) + let v = native_list_append(v, ["acusacion", "noun", "acusacions", "", "", "", "accusation"]) + let v = native_list_append(v, ["acusance", "noun", "acusances", "", "", "", "accusation"]) + let v = native_list_append(v, ["absolutiun", "noun", "absolutiuns", "", "", "", "absolution"]) + let v = native_list_append(v, ["decoccion", "noun", "decoccions", "", "", "", "decoction coction completion"]) + let v = native_list_append(v, ["liveree", "noun", "liverees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rojor", "noun", "rojors", "", "", "", "redness"]) + let v = native_list_append(v, ["escherpe", "noun", "escherpes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["souriz", "noun", "souriz", "", "", "", "mouse rodent"]) + let v = native_list_append(v, ["mapamonde", "noun", "mapamondes", "", "", "", "world map"]) + let v = native_list_append(v, ["voirre", "noun", "voirres", "", "", "", "glass hard almost"]) + let v = native_list_append(v, ["vendenge", "noun", "vendenges", "", "", "", "vintage harvesting of"]) + let v = native_list_append(v, ["babou", "noun", "babou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ramposne", "noun", "ramposnes", "", "", "", "insult"]) + let v = native_list_append(v, ["estatut", "noun", "estatuz", "", "", "", "statute written law"]) + let v = native_list_append(v, ["espasme", "noun", "espasmes", "", "", "", "spasm involuntary muscle"]) + let v = native_list_append(v, ["estabilité", "noun", "estabilitez", "", "", "", "stability quality of"]) + let v = native_list_append(v, ["perriere", "noun", "perrieres", "", "", "", "perrier mortar"]) + let v = native_list_append(v, ["apellatiun", "noun", "apellatiuns", "", "", "", "summons order to"]) + let v = native_list_append(v, ["ceptre", "noun", "ceptres", "", "", "", "sceptre"]) + let v = native_list_append(v, ["receite", "noun", "receites", "", "", "", "receipt action of"]) + let v = native_list_append(v, ["bontez", "noun", "bontez", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["corgiee", "noun", "corgiees", "", "", "", "strap band of"]) + let v = native_list_append(v, ["avainne", "noun", "avainnes", "", "", "", "oat"]) + let v = native_list_append(v, ["peitral", "noun", "peitraus", "", "", "", "breastplate of a"]) + let v = native_list_append(v, ["chauce", "noun", "chauces", "", "", "", "stocking hose garment"]) + let v = native_list_append(v, ["esciant", "noun", "escianz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vitance", "noun", "vitances", "", "", "", "abominable or reprehensible"]) + let v = native_list_append(v, ["plainne", "noun", "plainnes", "", "", "", "plain open area"]) + let v = native_list_append(v, ["deboneireté", "noun", "deboneiretez", "", "", "", "courtliness nobleness quality"]) + let v = native_list_append(v, ["jagonce", "noun", "jagonces", "", "", "", "a precious stone"]) + let v = native_list_append(v, ["cercelet", "noun", "cercelez", "", "", "", "little crown metal"]) + let v = native_list_append(v, ["osterin", "noun", "osterins", "", "", "", "an expensive fabric"]) + let v = native_list_append(v, ["somier", "noun", "somiers", "", "", "", "bag item of"]) + let v = native_list_append(v, ["tonoirre", "noun", "tonoirres", "", "", "", "thunder"]) + let v = native_list_append(v, ["wiket", "noun", "wikez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["praerie", "noun", "praeries", "", "", "", "meadow"]) + let v = native_list_append(v, ["gaeignerie", "noun", "gaeigneries", "", "", "", "arable land"]) + let v = native_list_append(v, ["vingne", "noun", "vingnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angarde", "noun", "angardes", "", "", "", "vanguard"]) + let v = native_list_append(v, ["crocefis", "noun", "crocefis", "", "", "", "crucifix"]) + let v = native_list_append(v, ["oreison", "noun", "oreisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anpire", "noun", "anpires", "", "", "", "empire"]) + let v = native_list_append(v, ["tomoute", "noun", "tomoutes", "", "", "", "tumult uproar noise"]) + let v = native_list_append(v, ["chartain", "noun", "chartainz", "", "", "", "a unit of"]) + let v = native_list_append(v, ["lorain", "noun", "lorainz", "", "", "", "a leather strap"]) + let v = native_list_append(v, ["bruel", "noun", "brueus", "", "", "", "woods"]) + let v = native_list_append(v, ["chanole", "noun", "chanoles", "", "", "", "respiratory tract"]) + let v = native_list_append(v, ["anuitier", "noun", "anuitiers", "", "", "", "nightfall"]) + let v = native_list_append(v, ["eschame", "noun", "eschames", "", "", "", "bench long usually"]) + let v = native_list_append(v, ["poe", "noun", "poes", "", "", "", "paw"]) + let v = native_list_append(v, ["omecide", "noun", "omecides", "", "", "", "murderer killer"]) + let v = native_list_append(v, ["haterel", "noun", "hatereaus", "", "", "", "nape back of"]) + let v = native_list_append(v, ["peresce", "noun", "peresces", "", "", "", "laziness"]) + let v = native_list_append(v, ["doeire", "noun", "doeires", "", "", "", "dowry"]) + let v = native_list_append(v, ["faudestuel", "noun", "faudestueus", "", "", "", "a type of"]) + let v = native_list_append(v, ["matinet", "noun", "matinez", "", "", "", "morning"]) + let v = native_list_append(v, ["conbateor", "noun", "conbateors", "", "", "", "combatant one who"]) + let v = native_list_append(v, ["jart", "noun", "jarz", "", "", "", "garden"]) + let v = native_list_append(v, ["joste", "noun", "jostes", "", "", "", "joust act instance"]) + let v = native_list_append(v, ["nasel", "noun", "naseaus", "", "", "", "nose"]) + let v = native_list_append(v, ["feintise", "noun", "feintises", "", "", "", "trickery deceit"]) + let v = native_list_append(v, ["coronemant", "noun", "coronemanz", "", "", "", "coronation crowning"]) + let v = native_list_append(v, ["escharboncle", "noun", "escharboncles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["confés", "noun", "confés", "", "", "", "confession of ones"]) + let v = native_list_append(v, ["aost", "noun", "aoz", "", "", "", "August month"]) + let v = native_list_append(v, ["mecine", "noun", "mecines", "", "", "", "remedy treatment for"]) + let v = native_list_append(v, ["chandoile", "noun", "chandoiles", "", "", "", "candle"]) + let v = native_list_append(v, ["furme", "noun", "furme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doreure", "noun", "doreures", "", "", "", "gold goldenness quality"]) + let v = native_list_append(v, ["topace", "noun", "topaces", "", "", "", "topaz"]) + let v = native_list_append(v, ["bochete", "noun", "bochetes", "", "", "", "diminutive of boche"]) + let v = native_list_append(v, ["preambule", "noun", "preambules", "", "", "", "preamble"]) + let v = native_list_append(v, ["pomme grenate", "noun", "pommes grenates", "", "", "", "pomegranate fruit"]) + let v = native_list_append(v, ["grenate", "noun", "grenates", "", "", "", "pomegranate fruit"]) + let v = native_list_append(v, ["peonier", "noun", "peoniers", "", "", "", "foot soldier"]) + let v = native_list_append(v, ["Guinesores", "noun", "Guinesores", "", "", "", "Windsor town"]) + let v = native_list_append(v, ["esgart", "noun", "esgarz", "", "", "", "look action of"]) + let v = native_list_append(v, ["sornon", "noun", "sornons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paveillon", "noun", "paveillons", "", "", "", "pavilion tent"]) + let v = native_list_append(v, ["desfiance", "noun", "desfiances", "", "", "", "despair"]) + let v = native_list_append(v, ["desperance", "noun", "desperances", "", "", "", "despair"]) + let v = native_list_append(v, ["eür", "noun", "eürs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["semance", "noun", "semances", "", "", "", "seed"]) + let v = native_list_append(v, ["wespe", "noun", "wespes", "", "", "", "Old Northern French"]) + let v = native_list_append(v, ["musche", "noun", "musches", "", "", "", "fly insect"]) + let v = native_list_append(v, ["estature", "noun", "estatures", "", "", "", "stature a person"]) + let v = native_list_append(v, ["luor", "noun", "luors", "", "", "", "brilliance brightness of"]) + let v = native_list_append(v, ["joveneté", "noun", "jovenetez", "", "", "", "youth youngness quality"]) + let v = native_list_append(v, ["malage", "noun", "malages", "", "", "", "ailment illness malady"]) + let v = native_list_append(v, ["anfermeté", "noun", "anfermetez", "", "", "", "sickness illness"]) + let v = native_list_append(v, ["malvestié", "noun", "malvestiez", "", "", "", "evilness quality of"]) + let v = native_list_append(v, ["deablie", "noun", "deablies", "", "", "", "black magic dark"]) + let v = native_list_append(v, ["tençon", "noun", "tençons", "", "", "", "quarrel dispute"]) + let v = native_list_append(v, ["arrabi", "noun", "arrabis", "", "", "", "Arabian horse"]) + let v = native_list_append(v, ["gaugeour", "noun", "gaugeours", "", "", "", "one whose job"]) + let v = native_list_append(v, ["hoggeshed", "noun", "hoggeshedes", "", "", "", "hogshead large vat"]) + let v = native_list_append(v, ["ostruce", "noun", "ostruces", "", "", "", "ostrich"]) + let v = native_list_append(v, ["losengeor", "noun", "losengeors", "", "", "", "flatterer especially one"]) + let v = native_list_append(v, ["losenge", "noun", "losenges", "", "", "", "flattery especially in"]) + let v = native_list_append(v, ["losengeance", "noun", "losengeances", "", "", "", "flattery especially flattery"]) + let v = native_list_append(v, ["maigle", "noun", "maigles", "", "", "", "spade tool"]) + let v = native_list_append(v, ["esfreor", "noun", "esfreors", "", "", "", "fear"]) + let v = native_list_append(v, ["criement", "noun", "criemenz", "", "", "", "cry shout call"]) + let v = native_list_append(v, ["sopir", "noun", "sopirs", "", "", "", "sigh"]) + let v = native_list_append(v, ["molture", "noun", "moltures", "", "", "", "grinding"]) + let v = native_list_append(v, ["hyraut", "noun", "hyrauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avesprer", "noun", "avesprers", "", "", "", "the advent of"]) + let v = native_list_append(v, ["escrois", "noun", "escrois", "", "", "", "crash sound of"]) + let v = native_list_append(v, ["grant duc", "noun", "granz dus", "", "", "", "grand duke nobleman"]) + let v = native_list_append(v, ["cherise", "noun", "cherises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sepoltre", "noun", "sepoltres", "", "", "", "coffin"]) + let v = native_list_append(v, ["plonc", "noun", "plons", "", "", "", "lead metal"]) + let v = native_list_append(v, ["esclat", "noun", "esclaz", "", "", "", "shard broken piece"]) + let v = native_list_append(v, ["trieve", "noun", "trieves", "", "", "", "truce agreement to"]) + let v = native_list_append(v, ["aloete", "noun", "aloetes", "", "", "", "lark bird"]) + let v = native_list_append(v, ["quaille", "noun", "quailles", "", "", "", "quail bird"]) + let v = native_list_append(v, ["esbahissement", "noun", "esbahissemenz", "", "", "", "amazement surprise"]) + let v = native_list_append(v, ["decré", "noun", "decrez", "", "", "", "decree judgment verdict"]) + let v = native_list_append(v, ["letuaire", "noun", "letuaires", "", "", "", "linctus"]) + let v = native_list_append(v, ["cresche", "noun", "cresches", "", "", "", "feeding trough"]) + let v = native_list_append(v, ["clinke", "noun", "clinkes", "", "", "", "door handle"]) + let v = native_list_append(v, ["covrechief", "noun", "covrechiés", "", "", "", "cloth folded and"]) + let v = native_list_append(v, ["barbour", "noun", "barbours", "", "", "", "barber one who"]) + let v = native_list_append(v, ["planete", "noun", "planetes", "", "", "", "planet celestial body"]) + let v = native_list_append(v, ["boiel", "noun", "boieus", "", "", "", "bowel part of"]) + let v = native_list_append(v, ["heriter", "noun", "heriters", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Rencesvals", "noun", "Rencesvals", "", "", "", "Roncesvalles"]) + let v = native_list_append(v, ["essoigne", "noun", "essoignes", "", "", "", "excuse specifically an"]) + let v = native_list_append(v, ["excusacion", "noun", "excusacions", "", "", "", "excuse"]) + let v = native_list_append(v, ["claron", "noun", "clarons", "", "", "", "clarion trumpet"]) + let v = native_list_append(v, ["notarie", "noun", "notaries", "", "", "", "witness"]) + let v = native_list_append(v, ["columne", "noun", "columnes", "", "", "", "column solid upright"]) + let v = native_list_append(v, ["remors", "noun", "remors", "", "", "", "remorse"]) + let v = native_list_append(v, ["berele", "noun", "bereles", "", "", "", "difficulty problem difficult"]) + let v = native_list_append(v, ["musart", "noun", "musarz", "", "", "", "musard idler"]) + let v = native_list_append(v, ["amistet", "noun", "amistez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boisse", "noun", "boisses", "", "", "", "a sixth of"]) + let v = native_list_append(v, ["boissel", "noun", "boisseaus", "", "", "", "bushel unit of"]) + let v = native_list_append(v, ["loier", "noun", "loiers", "", "", "", "payment"]) + let v = native_list_append(v, ["estriviere", "noun", "estrivieres", "", "", "", "stirrup horse tack"]) + let v = native_list_append(v, ["plessié", "noun", "plessiez", "", "", "", "clearing in a"]) + let v = native_list_append(v, ["tiule", "noun", "tiules", "", "", "", "tile flat often"]) + let v = native_list_append(v, ["santier", "noun", "santiers", "", "", "", "path pathway"]) + let v = native_list_append(v, ["perre", "noun", "perres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diamargareton", "noun", "diamargaretons", "", "", "", "a miracle cure"]) + let v = native_list_append(v, ["querole", "noun", "queroles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enarme", "noun", "enarmes", "", "", "", "handle of a"]) + let v = native_list_append(v, ["Jasque", "noun", "Jasque", "", "", "", "a male given"]) + let v = native_list_append(v, ["alienacion", "noun", "alienacions", "", "", "", "transfer of property"]) + let v = native_list_append(v, ["redot", "noun", "redoz", "", "", "", "doubt"]) + let v = native_list_append(v, ["bretesche", "noun", "bretesches", "", "", "", "a sort of"]) + let v = native_list_append(v, ["tenche", "noun", "tenches", "", "", "", "tench fish"]) + let v = native_list_append(v, ["pierke", "noun", "pierkes", "", "", "", "perch fish"]) + let v = native_list_append(v, ["enchanteor", "noun", "enchanteors", "", "", "", "enchanter specifically one"]) + let v = native_list_append(v, ["posterne", "noun", "posternes", "", "", "", "postern door"]) + let v = native_list_append(v, ["traïtre", "noun", "traïtre", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ventaille", "noun", "ventailles", "", "", "", "protective face mask"]) + let v = native_list_append(v, ["lÿon", "noun", "lÿons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fauz", "noun", "fauz", "", "", "", "scythe cutting tool"]) + let v = native_list_append(v, ["leisarde", "noun", "leisardes", "", "", "", "lizard"]) + let v = native_list_append(v, ["lesart", "noun", "lesarz", "", "", "", "lizard"]) + let v = native_list_append(v, ["deshonor", "noun", "deshonors", "", "", "", "dishonour"]) + let v = native_list_append(v, ["prisoniere", "noun", "prisonieres", "", "", "", "female prisoner"]) + let v = native_list_append(v, ["estur", "noun", "esturs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["משכן", "noun", "משכן", "", "", "", "tabernacle residence"]) + let v = native_list_append(v, ["boce", "noun", "boces", "", "", "", "swelling for example"]) + let v = native_list_append(v, ["ramel", "noun", "rameaus", "", "", "", "small branch"]) + let v = native_list_append(v, ["sueste", "noun", "sueste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["furmie", "noun", "furmies", "", "", "", "ant"]) + let v = native_list_append(v, ["desobedience", "noun", "desobediences", "", "", "", "disobedience"]) + let v = native_list_append(v, ["desdein", "noun", "desdeinz", "", "", "", "disdain contempt scorn"]) + let v = native_list_append(v, ["marrien", "noun", "marriens", "", "", "", "wood as a"]) + let v = native_list_append(v, ["eschiele", "noun", "eschieles", "", "", "", "ladder"]) + let v = native_list_append(v, ["pertuis", "noun", "pertuis", "", "", "", "hole"]) + let v = native_list_append(v, ["fontenele", "noun", "fonteneles", "", "", "", "small fountain"]) + let v = native_list_append(v, ["tuel", "noun", "tueaus", "", "", "", "pipe"]) + let v = native_list_append(v, ["punissement", "noun", "punissemenz", "", "", "", "punishment"]) + let v = native_list_append(v, ["mutacion", "noun", "mutacions", "", "", "", "alteration change"]) + let v = native_list_append(v, ["levrer", "noun", "levrers", "", "", "", "dog type of"]) + let v = native_list_append(v, ["wecle", "noun", "wecles", "", "", "", "turtle or tortoise"]) + let v = native_list_append(v, ["escaille", "noun", "escailles", "", "", "", "scale flat hard"]) + let v = native_list_append(v, ["ledice", "noun", "ledices", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maunche", "noun", "maunches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anelaz", "noun", "anelaz", "", "", "", "anelace dagger"]) + let v = native_list_append(v, ["fauchoun", "noun", "fauchouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fauchun", "noun", "fauchuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["falcoun", "noun", "falcouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["durece", "noun", "dureces", "", "", "", "hardness"]) + let v = native_list_append(v, ["merche", "noun", "merches", "", "", "", "mark distinguishing feature"]) + let v = native_list_append(v, ["penitaunce", "noun", "penitaunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ledices", "noun", "ledices", "", "", "", "inflection of ledice"]) + let v = native_list_append(v, ["tallie", "noun", "tallies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prononcement", "noun", "prononcemenz", "", "", "", "pronouncement giving of"]) + let v = native_list_append(v, ["defendur", "noun", "defendurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["defendeor", "noun", "defendeors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["defenderesse", "noun", "defenderesses", "", "", "", "female defender one"]) + let v = native_list_append(v, ["orfreis", "noun", "orfreis", "", "", "", "orphrey"]) + let v = native_list_append(v, ["orfrais", "noun", "orfrais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prueve", "noun", "prueves", "", "", "", "proof evidence"]) + let v = native_list_append(v, ["dreceur", "noun", "dreceurs", "", "", "", "dresser large item"]) + let v = native_list_append(v, ["estovoir", "noun", "estovoirs", "", "", "", "obligation"]) + let v = native_list_append(v, ["tafur", "noun", "tafurs", "", "", "", "Saracen"]) + let v = native_list_append(v, ["estole", "noun", "estoles", "", "", "", "stole garment"]) + let v = native_list_append(v, ["antain", "noun", "antainz", "", "", "", "aunt sister of"]) + let v = native_list_append(v, ["compaing", "noun", "compaing", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["coronacion", "noun", "coronacions", "", "", "", "coronation ceremony where"]) + let v = native_list_append(v, ["hakebot", "noun", "hakeboz", "", "", "", "a small fishing"]) + let v = native_list_append(v, ["corme", "noun", "cormes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lapriel", "noun", "laprieus", "", "", "", "young rabbit"]) + let v = native_list_append(v, ["wrek", "noun", "wres", "", "", "", "shipwreck"]) + let v = native_list_append(v, ["werec", "noun", "werés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrec", "noun", "wres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jovenenciel", "noun", "jovenencieus", "", "", "", "young man"]) + let v = native_list_append(v, ["rouil", "noun", "rouz", "", "", "", "rust"]) + let v = native_list_append(v, ["carpiaus", "noun", "carpiaus", "", "", "", "inflection of carpel"]) + let v = native_list_append(v, ["baboe", "noun", "baboe", "", "", "", "moue grimace"]) + let v = native_list_append(v, ["baboue", "noun", "baboue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baboye", "noun", "baboye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["approbacion", "noun", "approbacions", "", "", "", "approval approbation"]) + let v = native_list_append(v, ["rascaille", "noun", "rascailles", "", "", "", "rabble mob"]) + let v = native_list_append(v, ["cronike", "noun", "cronikes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cronicle", "noun", "cronicles", "", "", "", "chronicle written record"]) + let v = native_list_append(v, ["topoie", "noun", "topoies", "", "", "", "spinning top"]) + let v = native_list_append(v, ["eschange", "noun", "eschanges", "", "", "", "exchange swap"]) + let v = native_list_append(v, ["abestos", "noun", "abestos", "", "", "", "asbestos substance"]) + let v = native_list_append(v, ["trenche", "noun", "trenches", "", "", "", "trench manmade ditch"]) + let v = native_list_append(v, ["moette", "noun", "moettes", "", "", "", "gull seagull"]) + let v = native_list_append(v, ["mussette", "noun", "mussettes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mucette", "noun", "mucettes", "", "", "", "hiding place cache"]) + let v = native_list_append(v, ["fronche", "noun", "fronches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frunche", "noun", "frunches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fourmenté", "noun", "fourmenté", "", "", "", "Derived from Old"]) + let v = native_list_append(v, ["asseürance", "noun", "asseürances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espiautre", "noun", "espiautres", "", "", "", "spelt grain Triticum"]) + let v = native_list_append(v, ["esmai", "noun", "esmais", "", "", "", "worry anxiety"]) + let v = native_list_append(v, ["bauch", "noun", "bauchs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bauc", "noun", "baus", "", "", "", "beam felled tree"]) + let v = native_list_append(v, ["balc", "noun", "bals", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["baubel", "noun", "baubeaus", "", "", "", "a small gift"]) + let v = native_list_append(v, ["eur", "noun", "eurs", "", "", "", "fortune"]) + let v = native_list_append(v, ["morine", "noun", "morines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comparisun", "noun", "comparisuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mourine", "noun", "mourines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["composicion", "noun", "composicions", "", "", "", "composition entity made"]) + let v = native_list_append(v, ["declinacion", "noun", "declinacions", "", "", "", "decline reduction in"]) + let v = native_list_append(v, ["prenostication", "noun", "prenostications", "", "", "", "prognosis expected outcome"]) + let v = native_list_append(v, ["eschauffement", "noun", "eschauffemenz", "", "", "", "heating action of"]) + let v = native_list_append(v, ["sincopin", "noun", "sincopins", "", "", "", "faintness feeling of"]) + let v = native_list_append(v, ["causon", "noun", "causons", "", "", "", "a strong fever"]) + let v = native_list_append(v, ["secheur", "noun", "secheurs", "", "", "", "dryness"]) + let v = native_list_append(v, ["retencion", "noun", "retencions", "", "", "", "retention act of"]) + let v = native_list_append(v, ["poulz", "noun", "poulz", "", "", "", "pulse detectable flow"]) + let v = native_list_append(v, ["diuretique", "noun", "diuretiques", "", "", "", "diuretic substance which"]) + let v = native_list_append(v, ["eschalfement", "noun", "eschalfemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cristere", "noun", "cristeres", "", "", "", "clyster enema or"]) + let v = native_list_append(v, ["opilacion", "noun", "opilacions", "", "", "", "obstruction of the"]) + let v = native_list_append(v, ["duresse", "noun", "duresses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eschile", "noun", "eschiles", "", "", "", "chyle"]) + let v = native_list_append(v, ["tonnoirre", "noun", "tonnoirres", "", "", "", "thunder"]) + let v = native_list_append(v, ["ydromel", "noun", "ydromeaus", "", "", "", "mead drink"]) + let v = native_list_append(v, ["quartaine", "noun", "quartaines", "", "", "", "quartan fever that"]) + let v = native_list_append(v, ["confraction", "noun", "confractions", "", "", "", "break breaking breakage"]) + let v = native_list_append(v, ["variacion", "noun", "variacions", "", "", "", "variation"]) + let v = native_list_append(v, ["oile", "noun", "oiles", "", "", "", "oil lipid in"]) + let v = native_list_append(v, ["evacuatif", "noun", "evacuatis", "", "", "", "laxative substance which"]) + let v = native_list_append(v, ["esplain", "noun", "esplainz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fenoil", "noun", "fenouz", "", "", "", "fennel"]) + let v = native_list_append(v, ["oximel", "noun", "oximeaus", "", "", "", "oxymel"]) + let v = native_list_append(v, ["seicheur", "noun", "seicheurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cotidienne", "noun", "cotidiennes", "", "", "", "a fever that"]) + let v = native_list_append(v, ["tierchaine", "noun", "tierchaines", "", "", "", "a fever that"]) + let v = native_list_append(v, ["terminacion", "noun", "terminacions", "", "", "", "end final part"]) + let v = native_list_append(v, ["eaues", "noun", "eaues", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["determinacion", "noun", "determinacions", "", "", "", "outcome"]) + let v = native_list_append(v, ["cytron", "noun", "cytrons", "", "", "", "lemon fruit"]) + let v = native_list_append(v, ["electuaire", "noun", "electuaires", "", "", "", "linctus"]) + let v = native_list_append(v, ["vairolle", "noun", "vairolles", "", "", "", "pustule"]) + let v = native_list_append(v, ["morbiles", "noun", "morbiles", "", "", "", "pustules"]) + let v = native_list_append(v, ["ydropisie", "noun", "ydropisies", "", "", "", "swelling of the"]) + let v = native_list_append(v, ["meselle", "noun", "meselles", "", "", "", "female leper"]) + let v = native_list_append(v, ["meselerie", "noun", "meseleries", "", "", "", "leprosy"]) + let v = native_list_append(v, ["depilacion", "noun", "depilacions", "", "", "", "hair loss disappearance"]) + let v = native_list_append(v, ["noirsure", "noun", "noirsures", "", "", "", "blackness quality of"]) + let v = native_list_append(v, ["aprochance", "noun", "aprochances", "", "", "", "approach act instance"]) + let v = native_list_append(v, ["paupierre", "noun", "paupierres", "", "", "", "eyelid"]) + let v = native_list_append(v, ["elephancie", "noun", "elephancies", "", "", "", "elephantiasis"]) + let v = native_list_append(v, ["suffocacion", "noun", "suffocacions", "", "", "", "suffocation death through"]) + let v = native_list_append(v, ["geline", "noun", "gelines", "", "", "", "hen female chicken"]) + let v = native_list_append(v, ["destemprance", "noun", "destemprances", "", "", "", "disharmony imbalance"]) + let v = native_list_append(v, ["allopicie", "noun", "allopicies", "", "", "", "alopecia hair loss"]) + let v = native_list_append(v, ["percil", "noun", "perciz", "", "", "", "parsley herb"]) + let v = native_list_append(v, ["trifoil", "noun", "trifouz", "", "", "", "trefoil plant"]) + let v = native_list_append(v, ["tresfle", "noun", "tresfles", "", "", "", "clover plant"]) + let v = native_list_append(v, ["cuilliere", "noun", "cuillieres", "", "", "", "small spoon"]) + let v = native_list_append(v, ["meseau", "noun", "meseaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["regeneracion", "noun", "regeneracions", "", "", "", "regeneration recreation or"]) + let v = native_list_append(v, ["legun", "noun", "leguns", "", "", "", "vegetable"]) + let v = native_list_append(v, ["froumage", "noun", "froumages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comparacion", "noun", "comparacions", "", "", "", "comparison"]) + let v = native_list_append(v, ["espinoche", "noun", "espinoches", "", "", "", "spinach vegetable"]) + let v = native_list_append(v, ["ymaginacion", "noun", "ymaginacions", "", "", "", "hallucination"]) + let v = native_list_append(v, ["leprus", "noun", "leprus", "", "", "", "leper"]) + let v = native_list_append(v, ["alteracion", "noun", "alteracions", "", "", "", "alteration change"]) + let v = native_list_append(v, ["mezeau", "noun", "mezeaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moisteur", "noun", "moisteurs", "", "", "", "moistness"]) + let v = native_list_append(v, ["participacion", "noun", "participacions", "", "", "", "participation act of"]) + let v = native_list_append(v, ["moistour", "noun", "moistours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rivere", "noun", "riveres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["encheson", "noun", "enchesons", "", "", "", "instance occasion"]) + let v = native_list_append(v, ["planke", "noun", "plankes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arbaleste", "noun", "arbalestes", "", "", "", "arbalest medieval crossbow"]) + let v = native_list_append(v, ["peregrin", "noun", "peregrins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soleuz", "noun", "soleuz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["soloilz", "noun", "soloilz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["solouz", "noun", "solouz", "", "", "", "inflection of soloil"]) + let v = native_list_append(v, ["mesnalté", "noun", "mesnaltez", "", "", "", "mesnalty"]) + let v = native_list_append(v, ["meien", "noun", "meiens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["almosne", "noun", "almosnes", "", "", "", "alms charitable donations"]) + let v = native_list_append(v, ["aumosne", "noun", "aumosnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ausmone", "noun", "ausmones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["almone", "noun", "almones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aumone", "noun", "aumones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ataignement", "noun", "ataignemenz", "", "", "", "reaching act of"]) + let v = native_list_append(v, ["saime", "noun", "saimes", "", "", "", "fat cream"]) + let v = native_list_append(v, ["crasset", "noun", "crassez", "", "", "", "lamp or torch"]) + let v = native_list_append(v, ["bogre", "noun", "bogres", "", "", "", "heretic specifically with"]) + let v = native_list_append(v, ["estrique", "noun", "estriques", "", "", "", "baton stick beam"]) + let v = native_list_append(v, ["arestour", "noun", "arestours", "", "", "", "arrester one who"]) + let v = native_list_append(v, ["arestement", "noun", "arestemenz", "", "", "", "pause action of"]) + let v = native_list_append(v, ["arestance", "noun", "arestances", "", "", "", "pause action of"]) + let v = native_list_append(v, ["arestal", "noun", "arestaus", "", "", "", "pause action of"]) + let v = native_list_append(v, ["arestage", "noun", "arestages", "", "", "", "pause action of"]) + let v = native_list_append(v, ["arrestaille", "noun", "arrestailles", "", "", "", "pause action of"]) + let v = native_list_append(v, ["plache", "noun", "plaches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["podagrique", "noun", "podagriques", "", "", "", "podagric person suffering"]) + let v = native_list_append(v, ["panarice", "noun", "panarices", "", "", "", "phlegmatic inflammation of"]) + let v = native_list_append(v, ["emonctoire", "noun", "emonctoires", "", "", "", "emunctory something which"]) + let v = native_list_append(v, ["gingive", "noun", "gingives", "", "", "", "gum red flesh"]) + let v = native_list_append(v, ["corrozion", "noun", "corrozions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feteur", "noun", "feteurs", "", "", "", "fetor foul odor"]) + let v = native_list_append(v, ["diminucion", "noun", "diminucions", "", "", "", "diminishment decrease"]) + let v = native_list_append(v, ["arcenic", "noun", "arcenis", "", "", "", "arsenic"]) + let v = native_list_append(v, ["diaframe", "noun", "diaframes", "", "", "", "diaphragm muscle"]) + let v = native_list_append(v, ["pleuresis", "noun", "pleuresis", "", "", "", "pleurisy"]) + let v = native_list_append(v, ["matiere", "noun", "matieres", "", "", "", "material substance"]) + let v = native_list_append(v, ["pleuresie", "noun", "pleuresies", "", "", "", "pleurisy"]) + let v = native_list_append(v, ["evacuacion", "noun", "evacuacions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["longacion", "noun", "longacions", "", "", "", "prolongation elongation with"]) + let v = native_list_append(v, ["elongacion", "noun", "elongacions", "", "", "", "prolongation elongation with"]) + let v = native_list_append(v, ["pleuretique", "noun", "pleuretiques", "", "", "", "one who has"]) + let v = native_list_append(v, ["dominacion", "noun", "dominacions", "", "", "", "domination state of"]) + let v = native_list_append(v, ["penetracion", "noun", "penetracions", "", "", "", "penetration act instance"]) + let v = native_list_append(v, ["esput", "noun", "espuz", "", "", "", "spittle spit"]) + let v = native_list_append(v, ["emplastre", "noun", "emplastres", "", "", "", "plaster paste applied"]) + let v = native_list_append(v, ["laxacion", "noun", "laxacions", "", "", "", "the effect of"]) + let v = native_list_append(v, ["fenu grec", "noun", "fenu grec", "", "", "", "fenugreek"]) + let v = native_list_append(v, ["colur", "noun", "colurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pumer", "noun", "pumers", "", "", "", "apple tree"]) + let v = native_list_append(v, ["redutement", "noun", "redutemenz", "", "", "", "doubt"]) + let v = native_list_append(v, ["momeor", "noun", "momeors", "", "", "", "entertainer court jester"]) + let v = native_list_append(v, ["momon", "noun", "momons", "", "", "", "mask covering for"]) + let v = native_list_append(v, ["parceivement", "noun", "parceivemenz", "", "", "", "action instance of"]) + let v = native_list_append(v, ["estal", "noun", "estaus", "", "", "", "position place site"]) + let v = native_list_append(v, ["signefiance", "noun", "signefiances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cocodrille", "noun", "cocodrilles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suflement", "noun", "suflemenz", "", "", "", "breathing"]) + let v = native_list_append(v, ["buissunet", "noun", "buissunez", "", "", "", "small bush"]) + let v = native_list_append(v, ["estile", "noun", "estiles", "", "", "", "style manner fashion"]) + let v = native_list_append(v, ["odorement", "noun", "odoremenz", "", "", "", "odor scent smell"]) + let v = native_list_append(v, ["furmi", "noun", "furmis", "", "", "", "ant insect"]) + let v = native_list_append(v, ["endreit", "noun", "endreiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espirement", "noun", "espiremenz", "", "", "", "exhalation"]) + let v = native_list_append(v, ["esperiment", "noun", "esperimenz", "", "", "", "experience event that"]) + let v = native_list_append(v, ["dromedaire", "noun", "dromedaires", "", "", "", "dromedary camel"]) + let v = native_list_append(v, ["furmicaleun", "noun", "furmicaleuns", "", "", "", "antlion"]) + let v = native_list_append(v, ["pulture", "noun", "pultures", "", "", "", "food sustenance"]) + let v = native_list_append(v, ["signefiement", "noun", "signefiemenz", "", "", "", "signification meaning"]) + let v = native_list_append(v, ["bateure", "noun", "bateures", "", "", "", "beating act instance"]) + let v = native_list_append(v, ["Parais", "noun", "Parais", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estache", "noun", "estaches", "", "", "", "stake piece of"]) + let v = native_list_append(v, ["fuille", "noun", "fuilles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boisdie", "noun", "boisdies", "", "", "", "trickery deception ruse"]) + let v = native_list_append(v, ["counté", "noun", "countez", "", "", "", "county land ruled"]) + let v = native_list_append(v, ["gopil", "noun", "gopiz", "", "", "", "fox animal"]) + let v = native_list_append(v, ["petitet", "noun", "petitez", "", "", "", "a little a"]) + let v = native_list_append(v, ["passiun", "noun", "passiuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ureison", "noun", "ureisons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luur", "noun", "luurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tenebrur", "noun", "tenebrurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tenebror", "noun", "tenebrors", "", "", "", "darkness"]) + let v = native_list_append(v, ["messon", "noun", "messons", "", "", "", "harvest gathering of"]) + let v = native_list_append(v, ["maintenement", "noun", "maintenemenz", "", "", "", "support aid help"]) + let v = native_list_append(v, ["chaucee", "noun", "chaucees", "", "", "", "route highway"]) + let v = native_list_append(v, ["ordenaire", "noun", "ordenaires", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ordenarie", "noun", "ordenaries", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taillour", "noun", "taillours", "", "", "", "tailor one who"]) + let v = native_list_append(v, ["estation", "noun", "estations", "", "", "", "garrison permanent military"]) + let v = native_list_append(v, ["spinache", "noun", "spinaches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goune", "noun", "gounes", "", "", "", "gown robe long"]) + let v = native_list_append(v, ["avauntage", "noun", "avauntages", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caruine", "noun", "caruines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuirie", "noun", "cuiries", "", "", "", "leather hide of"]) + let v = native_list_append(v, ["cuiriee", "noun", "cuiriees", "", "", "", "quarry entrails of"]) + let v = native_list_append(v, ["notonier", "noun", "notoniers", "", "", "", "sailor mariner"]) + let v = native_list_append(v, ["governur", "noun", "governurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["genevre", "noun", "genevres", "", "", "", "juniper"]) + let v = native_list_append(v, ["aymant", "noun", "aymanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["obli", "noun", "oblis", "", "", "", "forgottenness"]) + let v = native_list_append(v, ["eschec mat", "noun", "eschec mat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eschec et mat", "noun", "eschec et mat", "", "", "", "checkmate"]) + let v = native_list_append(v, ["emeraude", "noun", "emeraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porte coleice", "noun", "porte coleices", "", "", "", "portcullis"]) + let v = native_list_append(v, ["morgage", "noun", "morgages", "", "", "", "mortgage conveyance of"]) + let v = native_list_append(v, ["quiddité", "noun", "quidditez", "", "", "", "quiddity essence"]) + let v = native_list_append(v, ["tormenteor", "noun", "tormenteors", "", "", "", "torturer"]) + let v = native_list_append(v, ["hangeman", "noun", "hangemans", "", "", "", "hangman"]) + let v = native_list_append(v, ["warant", "noun", "waranz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["guarant", "noun", "guaranz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warenne", "noun", "warennes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warrantie", "noun", "warranties", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gayf", "noun", "gays", "", "", "", "something that is"]) + let v = native_list_append(v, ["veche", "noun", "veches", "", "", "", "vetch"]) + let v = native_list_append(v, ["voutoir", "noun", "voutoirs", "", "", "", "vulture bird"]) + let v = native_list_append(v, ["viscounte", "noun", "viscountes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viscunte", "noun", "viscuntes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vineter", "noun", "vineters", "", "", "", "vintner wine-seller"]) + let v = native_list_append(v, ["vestuaire", "noun", "vestuaires", "", "", "", "vestry room in"]) + let v = native_list_append(v, ["vicare", "noun", "vicares", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["valey", "noun", "valeys", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avauntgarde", "noun", "avauntgardes", "", "", "", "vanguard"]) + let v = native_list_append(v, ["ussier", "noun", "ussiers", "", "", "", "doorman doorkeeper"]) + let v = native_list_append(v, ["ulliage", "noun", "ulliages", "", "", "", "ullage the air"]) + let v = native_list_append(v, ["tretiz", "noun", "tretiz", "", "", "", "treatise"]) + let v = native_list_append(v, ["treté", "noun", "tretez", "", "", "", "treaty"]) + let v = native_list_append(v, ["trenchour", "noun", "trenchours", "", "", "", "cutter cutting tool"]) + let v = native_list_append(v, ["translacioun", "noun", "translaciouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["translacion", "noun", "translacions", "", "", "", "movement transfer"]) + let v = native_list_append(v, ["treslis", "noun", "treslis", "", "", "", "trellis framework"]) + let v = native_list_append(v, ["tourmentour", "noun", "tourmentours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["torzfesor", "noun", "torzfesors", "", "", "", "malefactor one who"]) + let v = native_list_append(v, ["torfet", "noun", "torfez", "", "", "", "harm harmful action"]) + let v = native_list_append(v, ["turnei", "noun", "turneis", "", "", "", "tourney medieval tournament"]) + let v = native_list_append(v, ["fesour", "noun", "fesours", "", "", "", "maker manufacturer"]) + let v = native_list_append(v, ["tysanne", "noun", "tysannes", "", "", "", "tisane medicinal concoction"]) + let v = native_list_append(v, ["taxacion", "noun", "taxacions", "", "", "", "taxation"]) + let v = native_list_append(v, ["tané", "noun", "tanez", "", "", "", "tan color"]) + let v = native_list_append(v, ["tawné", "noun", "tawnez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tannour", "noun", "tannours", "", "", "", "tanner one who"]) + let v = native_list_append(v, ["sillable", "noun", "sillables", "", "", "", "syllable"]) + let v = native_list_append(v, ["suspecioun", "noun", "suspeciouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surveour", "noun", "surveours", "", "", "", "inspector overseer one"]) + let v = native_list_append(v, ["surnoun", "noun", "surnouns", "", "", "", "additional name"]) + let v = native_list_append(v, ["suppositorie", "noun", "suppositories", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["suytour", "noun", "suytours", "", "", "", "follower"]) + let v = native_list_append(v, ["suffraunce", "noun", "suffraunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estuble", "noun", "estubles", "", "", "", "stubble stalks left"]) + let v = native_list_append(v, ["estorie", "noun", "estories", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sovereyneté", "noun", "sovereynetez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sovereinté", "noun", "sovereintez", "", "", "", "power control authority"]) + let v = native_list_append(v, ["soket", "noun", "sokez", "", "", "", "small plowshare blade"]) + let v = native_list_append(v, ["seignurie", "noun", "seignuries", "", "", "", "lordship state of"]) + let v = native_list_append(v, ["sevrance", "noun", "sevrances", "", "", "", "separation act of"]) + let v = native_list_append(v, ["sewiere", "noun", "sewieres", "", "", "", "overflow channel for"]) + let v = native_list_append(v, ["tisique", "noun", "tisiques", "", "", "", "phthisic any wasting"]) + let v = native_list_append(v, ["escran", "noun", "escrans", "", "", "", "screen physical barrier"]) + let v = native_list_append(v, ["escren", "noun", "escrens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escuele", "noun", "escueles", "", "", "", "bowl dish"]) + let v = native_list_append(v, ["salarie", "noun", "salarie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saintefiement", "noun", "saintefiemenz", "", "", "", "canonization act of"]) + let v = native_list_append(v, ["eschaloigne", "noun", "eschaloignes", "", "", "", "shallot Allium cepa"]) + let v = native_list_append(v, ["scalun", "noun", "scaluns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seinteficacion", "noun", "seinteficacions", "", "", "", "canonization sanctification"]) + let v = native_list_append(v, ["Notingeham", "noun", "Notingeham", "", "", "", "Nottingham a city"]) + let v = native_list_append(v, ["joliveté", "noun", "jolivetez", "", "", "", "joyfulness gaiety"]) + let v = native_list_append(v, ["douçaine", "noun", "douçaines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["roigne", "noun", "roignes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["popler", "noun", "poplers", "", "", "", "poplar tree"]) + let v = native_list_append(v, ["escher", "noun", "escher", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["resurrectiun", "noun", "resurrectiuns", "", "", "", "resurrection"]) + let v = native_list_append(v, ["resolucion", "noun", "resolucions", "", "", "", "repayment"]) + let v = native_list_append(v, ["reseant", "noun", "reseanz", "", "", "", "resident"]) + let v = native_list_append(v, ["arerage", "noun", "arerages", "", "", "", "arrears unpaid money"]) + let v = native_list_append(v, ["reprisaille", "noun", "reprisailles", "", "", "", "repossession retaking act"]) + let v = native_list_append(v, ["relat", "noun", "relaz", "", "", "", "story tale"]) + let v = native_list_append(v, ["reguierdon", "noun", "reguierdons", "", "", "", "reward"]) + let v = native_list_append(v, ["regraterie", "noun", "regrateries", "", "", "", "regratery"]) + let v = native_list_append(v, ["recoverie", "noun", "recoveries", "", "", "", "recovery act of"]) + let v = native_list_append(v, ["recapitulaciun", "noun", "recapitulaciuns", "", "", "", "repetition recital"]) + let v = native_list_append(v, ["ratoun", "noun", "ratouns", "", "", "", "rat or baby"]) + let v = native_list_append(v, ["quiture", "noun", "quitures", "", "", "", "cooking"]) + let v = native_list_append(v, ["quivre", "noun", "quivres", "", "", "", "quiver for arrows"]) + let v = native_list_append(v, ["arraiement", "noun", "arraiemenz", "", "", "", "arrangement"]) + let v = native_list_append(v, ["ahan", "noun", "ahans", "", "", "", "pain torment suffering"]) + let v = native_list_append(v, ["coilte", "noun", "coiltes", "", "", "", "cushion"]) + let v = native_list_append(v, ["quintaine", "noun", "quintaines", "", "", "", "quintain target"]) + let v = native_list_append(v, ["quaier", "noun", "quaiers", "", "", "", "quire"]) + let v = native_list_append(v, ["quatroun", "noun", "quatrouns", "", "", "", "quarter of a"]) + let v = native_list_append(v, ["Seint Espirit", "noun", "Seint Espirit", "", "", "", "Holy Ghost"]) + let v = native_list_append(v, ["purveour", "noun", "purveours", "", "", "", "purveyor"]) + let v = native_list_append(v, ["puralee", "noun", "puralees", "", "", "", "boundary limit delimitation"]) + let v = native_list_append(v, ["ponchon", "noun", "ponchons", "", "", "", "puncheon cask"]) + let v = native_list_append(v, ["provosté", "noun", "provostez", "", "", "", "stewardship"]) + let v = native_list_append(v, ["procuracie", "noun", "procuracies", "", "", "", "procuracy the office"]) + let v = native_list_append(v, ["proprieté", "noun", "proprietez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prohibicion", "noun", "prohibicions", "", "", "", "prohibition interdiction banning"]) + let v = native_list_append(v, ["proffessur", "noun", "proffessurs", "", "", "", "one who professes"]) + let v = native_list_append(v, ["procureor", "noun", "procureors", "", "", "", "agent proxy representative"]) + let v = native_list_append(v, ["proclamacion", "noun", "proclamacions", "", "", "", "proclamation"]) + let v = native_list_append(v, ["priveté", "noun", "privetez", "", "", "", "private matter"]) + let v = native_list_append(v, ["predicaciun", "noun", "predicaciuns", "", "", "", "preaching predication"]) + let v = native_list_append(v, ["pousté", "noun", "poustez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["portour", "noun", "portours", "", "", "", "carrier bearer"]) + let v = native_list_append(v, ["porteose", "noun", "porteoses", "", "", "", "breviary"]) + let v = native_list_append(v, ["porpeis", "noun", "porpeis", "", "", "", "porpoise marine mammal"]) + let v = native_list_append(v, ["porpois", "noun", "porpois", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Plymuth", "noun", "Plymuth", "", "", "", "Plymouth English city"]) + let v = native_list_append(v, ["ploi", "noun", "plois", "", "", "", "fold"]) + let v = native_list_append(v, ["enfermeté", "noun", "enfermetez", "", "", "", "sickness illness"]) + let v = native_list_append(v, ["honorableté", "noun", "honorabletez", "", "", "", "honorableness quality of"]) + let v = native_list_append(v, ["baraterie", "noun", "barateries", "", "", "", "trickery deceit"]) + let v = native_list_append(v, ["malfesour", "noun", "malfesours", "", "", "", "wrongdoer malfeasor malefactor"]) + let v = native_list_append(v, ["fesance", "noun", "fesances", "", "", "", "act deed action"]) + let v = native_list_append(v, ["acueil", "noun", "acueuz", "", "", "", "welcome act of"]) + let v = native_list_append(v, ["guttere", "noun", "gutteres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paillete", "noun", "pailletes", "", "", "", "chaff"]) + let v = native_list_append(v, ["feloun", "noun", "felouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escuchon", "noun", "escuchons", "", "", "", "small shield escutcheon"]) + let v = native_list_append(v, ["fillol", "noun", "fillous", "", "", "", "godson"]) + let v = native_list_append(v, ["fillolage", "noun", "fillolages", "", "", "", "the relationship between"]) + let v = native_list_append(v, ["pleinte", "noun", "pleintes", "", "", "", "lament show expression"]) + let v = native_list_append(v, ["eschine", "noun", "eschines", "", "", "", "spine"]) + let v = native_list_append(v, ["vaillaunce", "noun", "vaillaunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grangier", "noun", "grangiers", "", "", "", "granger one who"]) + let v = native_list_append(v, ["englescherie", "noun", "englescheries", "", "", "", "Englishry state of"]) + let v = native_list_append(v, ["contreroulour", "noun", "contreroulours", "", "", "", "register-keeper"]) + let v = native_list_append(v, ["bulleite", "noun", "bulleites", "", "", "", "seal a stamp"]) + let v = native_list_append(v, ["pelfre", "noun", "pelfres", "", "", "", "booty loot"]) + let v = native_list_append(v, ["tiretaine", "noun", "tiretaines", "", "", "", "cloth made of"]) + let v = native_list_append(v, ["cumandeur", "noun", "cumandeurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meschance", "noun", "meschances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mescheance", "noun", "mescheances", "", "", "", "misfortune"]) + let v = native_list_append(v, ["abateure", "noun", "abateures", "", "", "", "slaughter act of"]) + let v = native_list_append(v, ["taque", "noun", "taques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mauvis", "noun", "mauvis", "", "", "", "thrush bird"]) + let v = native_list_append(v, ["apartenanz", "noun", "apartenanz", "", "", "", "belongings"]) + let v = native_list_append(v, ["paumier", "noun", "paumiers", "", "", "", "palmer pilgrim"]) + let v = native_list_append(v, ["remeide", "noun", "remeides", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["espaulier", "noun", "espauliers", "", "", "", "spaulder armor for"]) + let v = native_list_append(v, ["Suht-Wales", "noun", "Suht-Wales", "", "", "", "South Wales"]) + let v = native_list_append(v, ["caboce", "noun", "caboces", "", "", "", "head"]) + let v = native_list_append(v, ["Wace", "noun", "Wace", "", "", "", "a male given"]) + let v = native_list_append(v, ["eschipre", "noun", "eschipres", "", "", "", "sailor mariner"]) + let v = native_list_append(v, ["algorisme", "noun", "algorisme", "", "", "", "algorithm"]) + let v = native_list_append(v, ["podeir", "noun", "podeirs", "", "", "", "archaic form of"]) + let v = native_list_append(v, ["Charlon", "noun", "Charlon", "", "", "", "a male given"]) + let v = native_list_append(v, ["Carlon", "noun", "Carlon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Karlun", "noun", "Karlun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Carlun", "noun", "Carlun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Charlun", "noun", "Charlun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Aymon", "noun", "Aymon", "", "", "", "a male given"]) + let v = native_list_append(v, ["Guion", "noun", "Guion", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hugon", "noun", "Hugon", "", "", "", "a male given"]) + let v = native_list_append(v, ["Lazaron", "noun", "Lazaron", "", "", "", "Lazarus New Testament"]) + let v = native_list_append(v, ["translacions", "noun", "translacions", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["visné", "noun", "visné", "", "", "", "neighborhood vicinity"]) + let v = native_list_append(v, ["preiement", "noun", "preiemenz", "", "", "", "prayer"]) + let v = native_list_append(v, ["domnizelle", "noun", "domnizelles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pagien", "noun", "pagiens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["virginitet", "noun", "virginitez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["empedement", "noun", "empedemenz", "", "", "", "impediment obstacle"]) + let v = native_list_append(v, ["diavle", "noun", "diavle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fredre", "noun", "fredres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jovent", "noun", "jovenz", "", "", "", "youth state of"]) + let v = native_list_append(v, ["flael", "noun", "flaeaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flaiel", "noun", "flaieaus", "", "", "", "flail weapon"]) + let v = native_list_append(v, ["assemblement", "noun", "assemblemenz", "", "", "", "meeting get-together assembly"]) + let v = native_list_append(v, ["provendier", "noun", "provendiers", "", "", "", "one who is"]) + let v = native_list_append(v, ["aornement", "noun", "aornemenz", "", "", "", "adornment decoration"]) + let v = native_list_append(v, ["sanct", "noun", "sancz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["herberc", "noun", "herbers", "", "", "", "lodgings building where"]) + let v = native_list_append(v, ["crestienté", "noun", "crestienté", "", "", "", "Christianity religion"]) + let v = native_list_append(v, ["chandelabre", "noun", "chandelabres", "", "", "", "candelabrum"]) + let v = native_list_append(v, ["ovraigne", "noun", "ovraigne", "", "", "", "work piece of"]) + let v = native_list_append(v, ["folor", "noun", "folors", "", "", "", "madness"]) + let v = native_list_append(v, ["covoitise", "noun", "covoitises", "", "", "", "lust desire especially"]) + let v = native_list_append(v, ["prophecie", "noun", "prophecies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vieillece", "noun", "vieilleces", "", "", "", "old age"]) + let v = native_list_append(v, ["prevost", "noun", "prevoz", "", "", "", "provost person"]) + let v = native_list_append(v, ["Caëm", "noun", "Caëm", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aloëte", "noun", "aloëtes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bleceüre", "noun", "bleceüres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["traïson", "noun", "traïsons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["armeüre", "noun", "armeüres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vesteüre", "noun", "vesteüres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deçoite", "noun", "deçoites", "", "", "", "deceit deception"]) + let v = native_list_append(v, ["sauveor", "noun", "sauveors", "", "", "", "savior"]) + let v = native_list_append(v, ["beneïson", "noun", "beneïsons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aüstic", "noun", "aüstic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["seürté", "noun", "seürtez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["païsant", "noun", "païsanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doreüre", "noun", "doreüres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escïence", "noun", "escïences", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forreüre", "noun", "forreüres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viandier", "noun", "viandiers", "", "", "", "food nourishment victuals"]) + let v = native_list_append(v, ["mescreable", "noun", "mescreables", "", "", "", "disbeliever hence a"]) + let v = native_list_append(v, ["Damnedeu", "noun", "Damnedeu", "", "", "", "God"]) + let v = native_list_append(v, ["frigerie", "noun", "frigeries", "", "", "", "refreshment"]) + let v = native_list_append(v, ["refrigerie", "noun", "refrigeries", "", "", "", "coolness"]) + let v = native_list_append(v, ["greil", "noun", "greuz", "", "", "", "grill usually metal"]) + let v = native_list_append(v, ["gredil", "noun", "grediz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["saluement", "noun", "saluemenz", "", "", "", "greeting salutation"]) + let v = native_list_append(v, ["maesté", "noun", "maestez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["estrete", "noun", "estretes", "", "", "", "extract cited written"]) + let v = native_list_append(v, ["processiun", "noun", "processiuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferté", "noun", "fertez", "", "", "", "violence force"]) + let v = native_list_append(v, ["desvé", "noun", "desvez", "", "", "", "madman"]) + let v = native_list_append(v, ["seiseme", "noun", "seisemes", "", "", "", "a sixth"]) + let v = native_list_append(v, ["conil", "noun", "coniz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["locaige", "noun", "locaiges", "", "", "", "rent money paid"]) + let v = native_list_append(v, ["avisiun", "noun", "avisiuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmeance", "noun", "esmeances", "", "", "", "dismay"]) + let v = native_list_append(v, ["brocour", "noun", "brocours", "", "", "", "broker"]) + let v = native_list_append(v, ["respuns", "noun", "respuns", "", "", "", "response reply"]) + let v = native_list_append(v, ["traveil", "noun", "traveuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["defension", "noun", "defensions", "", "", "", "defense protection from"]) + let v = native_list_append(v, ["orenge", "noun", "orenges", "", "", "", "orange fruit of"]) + let v = native_list_append(v, ["seve", "noun", "seves", "", "", "", "sap of a"]) + let v = native_list_append(v, ["bendel", "noun", "bendeaus", "", "", "", "headband bandeau"]) + let v = native_list_append(v, ["joiance", "noun", "joiances", "", "", "", "joy happiness elation"]) + let v = native_list_append(v, ["tendror", "noun", "tendrors", "", "", "", "tenderness"]) + let v = native_list_append(v, ["vatlet", "noun", "vatlez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyeon", "noun", "lyeons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Dunoe", "noun", "Dunoe", "", "", "", "Danube river"]) + let v = native_list_append(v, ["cusançon", "noun", "cusançons", "", "", "", "care attention"]) + let v = native_list_append(v, ["gaudine", "noun", "gaudines", "", "", "", "woods woodland area"]) + let v = native_list_append(v, ["torbeillon", "noun", "torbeillons", "", "", "", "whirlwind mass of"]) + let v = native_list_append(v, ["meisonete", "noun", "meisonetes", "", "", "", "small house"]) + let v = native_list_append(v, ["puterie", "noun", "puteries", "", "", "", "debauchery immoral sexual"]) + let v = native_list_append(v, ["envoiseure", "noun", "envoiseures", "", "", "", "pleasure enjoyment"]) + let v = native_list_append(v, ["desevrance", "noun", "desevrances", "", "", "", "separation"]) + let v = native_list_append(v, ["cherf", "noun", "chers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["novelerie", "noun", "noveleries", "", "", "", "novelty something that"]) + let v = native_list_append(v, ["cembel", "noun", "cembeaus", "", "", "", "joust medieval contest"]) + let v = native_list_append(v, ["gaveloc", "noun", "gavelos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosel", "noun", "roseaus", "", "", "", "reed plant"]) + let v = native_list_append(v, ["escremie", "noun", "escremies", "", "", "", "fencing armed combat"]) + let v = native_list_append(v, ["aatie", "noun", "aaties", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["graant", "noun", "graanz", "", "", "", "promise guarantee"]) + let v = native_list_append(v, ["fresaie", "noun", "fresaies", "", "", "", "barn owl"]) + let v = native_list_append(v, ["veltrier", "noun", "veltriers", "", "", "", "one who is"]) + let v = native_list_append(v, ["cuistrun", "noun", "cuistruns", "", "", "", "chefs assistant"]) + let v = native_list_append(v, ["pasturele", "noun", "pastureles", "", "", "", "pastourelle story told"]) + let v = native_list_append(v, ["herberjur", "noun", "herberjurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bernier", "noun", "berniers", "", "", "", "one in charge"]) + let v = native_list_append(v, ["maveisté", "noun", "maveistez", "", "", "", "evil"]) + let v = native_list_append(v, ["desfiement", "noun", "desfiemenz", "", "", "", "challenge"]) + let v = native_list_append(v, ["hunisement", "noun", "hunisemenz", "", "", "", "shame disgrace"]) + let v = native_list_append(v, ["decevance", "noun", "decevances", "", "", "", "deception deceivance"]) + let v = native_list_append(v, ["pulein", "noun", "puleinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuintise", "noun", "cuintises", "", "", "", "skill adeptness ability"]) + let v = native_list_append(v, ["bruil", "noun", "bruz", "", "", "", "copse small woodland"]) + let v = native_list_append(v, ["flavel", "noun", "flaveaus", "", "", "", "rattle clapper device"]) + let v = native_list_append(v, ["lazre", "noun", "lazres", "", "", "", "leper beggar"]) + let v = native_list_append(v, ["mazre", "noun", "mazres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["juvente", "noun", "juventes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vielur", "noun", "vielurs", "", "", "", "vielle-player"]) + let v = native_list_append(v, ["segrei", "noun", "segreis", "", "", "", "secret"]) + let v = native_list_append(v, ["enjornee", "noun", "enjornees", "", "", "", "dawn daybreak"]) + let v = native_list_append(v, ["lijance", "noun", "lijances", "", "", "", "allegiance loyalty"]) + let v = native_list_append(v, ["besoigne", "noun", "besoignes", "", "", "", "task job to"]) + let v = native_list_append(v, ["serur", "noun", "serurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["afichail", "noun", "afichauz", "", "", "", "fastener"]) + let v = native_list_append(v, ["Treisporz", "noun", "Treisporz", "", "", "", "Le Tréport town"]) + let v = native_list_append(v, ["gravance", "noun", "gravances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anguserie", "noun", "anguseries", "", "", "", "worry anxiety"]) + let v = native_list_append(v, ["Sanson", "noun", "Sanson", "", "", "", "a male given"]) + let v = native_list_append(v, ["fuitif", "noun", "fuitis", "", "", "", "fugitive"]) + let v = native_list_append(v, ["aé", "noun", "aé", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["galerous", "noun", "galerous", "", "", "", "walrus"]) + let v = native_list_append(v, ["marinal", "noun", "marinaus", "", "", "", "mariner seaman"]) + let v = native_list_append(v, ["havle", "noun", "havles", "", "", "", "port place where"]) + let v = native_list_append(v, ["uisset", "noun", "uissez", "", "", "", "small door"]) + let v = native_list_append(v, ["richeté", "noun", "richetez", "", "", "", "richness wealth"]) + let v = native_list_append(v, ["veisdie", "noun", "veisdies", "", "", "", "trickery ruse deception"]) + let v = native_list_append(v, ["gunele", "noun", "guneles", "", "", "", "tunic"]) + let v = native_list_append(v, ["bricun", "noun", "bricun", "", "", "", "madman"]) + let v = native_list_append(v, ["pescheor", "noun", "pescheors", "", "", "", "fisherman"]) + let v = native_list_append(v, ["Besençun", "noun", "Besençun", "", "", "", "Besançon city"]) + let v = native_list_append(v, ["lambre", "noun", "lambres", "", "", "", "panelling decorative covering"]) + let v = native_list_append(v, ["sengler", "noun", "senglers", "", "", "", "wild boar sanglier"]) + let v = native_list_append(v, ["plunjun", "noun", "plunjuns", "", "", "", "loon bird"]) + let v = native_list_append(v, ["berseret", "noun", "berserez", "", "", "", "hunting dog"]) + let v = native_list_append(v, ["hobel", "noun", "hobeaus", "", "", "", "small bird of"]) + let v = native_list_append(v, ["costeret", "noun", "costerez", "", "", "", "container for a"]) + let v = native_list_append(v, ["costerel", "noun", "costereaus", "", "", "", "container for a"]) + let v = native_list_append(v, ["deduit", "noun", "deduiz", "", "", "", "pleasure enjoyment"]) + let v = native_list_append(v, ["cnivet", "noun", "cnivez", "", "", "", "knife"]) + let v = native_list_append(v, ["espin", "noun", "espins", "", "", "", "pine tree"]) + let v = native_list_append(v, ["Chanpaigne", "noun", "Chanpaigne", "", "", "", "Champagne a region"]) + let v = native_list_append(v, ["gabois", "noun", "gabois", "", "", "", "jest joking"]) + let v = native_list_append(v, ["remanance", "noun", "remanances", "", "", "", "act of staying"]) + let v = native_list_append(v, ["demorance", "noun", "demorances", "", "", "", "act of staying"]) + let v = native_list_append(v, ["catepeluse", "noun", "catepeluses", "", "", "", "caterpillar larva of"]) + let v = native_list_append(v, ["eschele", "noun", "escheles", "", "", "", "ladder"]) + let v = native_list_append(v, ["mesaisié", "noun", "mesaisiez", "", "", "", "one who is"]) + let v = native_list_append(v, ["coignie", "noun", "coignies", "", "", "", "axe battleaxe"]) + let v = native_list_append(v, ["agait", "noun", "agaiz", "", "", "", "surveillance attention watching"]) + let v = native_list_append(v, ["huve", "noun", "huves", "", "", "", "A type of"]) + let v = native_list_append(v, ["amand", "noun", "amanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floteson", "noun", "flotesons", "", "", "", "flotsam"]) + let v = native_list_append(v, ["geteson", "noun", "getesons", "", "", "", "jetsam jettison that"]) + let v = native_list_append(v, ["charnage", "noun", "charnages", "", "", "", "flesh"]) + let v = native_list_append(v, ["enfés", "noun", "enfés", "", "", "", "alternative typography of"]) + let v = native_list_append(v, ["choes", "noun", "choes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["fisicïen", "noun", "fisicïens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fouace", "noun", "fouace", "", "", "", "type of hard"]) + let v = native_list_append(v, ["esturgon", "noun", "esturgons", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["esturjon", "noun", "esturjons", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sturjoun", "noun", "sturjouns", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chamberlein", "noun", "chamberleinz", "", "", "", "chamberlain officer in"]) + let v = native_list_append(v, ["donjun", "noun", "donjuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eschançon", "noun", "eschançons", "", "", "", "cupbearer"]) + let v = native_list_append(v, ["chouve", "noun", "chouve", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["besche", "noun", "besches", "", "", "", "pickaxe spade"]) + let v = native_list_append(v, ["orgoil", "noun", "orgouz", "", "", "", "pride arrogance"]) + let v = native_list_append(v, ["cooinz", "noun", "cooinz", "", "", "", "inflection of cooing"]) + let v = native_list_append(v, ["bersail", "noun", "bersauz", "", "", "", "target"]) + let v = native_list_append(v, ["bersauz", "noun", "bersauz", "", "", "", "inflection of bersail"]) + let v = native_list_append(v, ["bersailz", "noun", "bersailz", "", "", "", "inflection of bersail"]) + let v = native_list_append(v, ["borgeis", "noun", "borgeis", "", "", "", "town-dweller someone who"]) + let v = native_list_append(v, ["juignet", "noun", "juignez", "", "", "", "July month"]) + let v = native_list_append(v, ["laideté", "noun", "laideté", "", "", "", "ugliness"]) + let v = native_list_append(v, ["Aalis", "noun", "Aalis", "", "", "", "a female given"]) + let v = native_list_append(v, ["bonet", "noun", "bonez", "", "", "", "fabric used to"]) + let v = native_list_append(v, ["בוברגא", "noun", "בוברגא", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["פרטיאה", "noun", "פרטיאה", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["קרדונש", "noun", "קרדונש", "", "", "", "inflection of קרדון"]) + let v = native_list_append(v, ["פויירק", "noun", "פויירק", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["אייפינש", "noun", "אייפינש", "", "", "", "inflection of אייפין"]) + let v = native_list_append(v, ["פויירק שנגלייר", "noun", "פויירק שנגלייר", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["פורצא", "noun", "פורצא", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adiudha", "noun", "adiudha", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["aiudha", "noun", "aiudha", "", "", "", "aid assistance"]) + let v = native_list_append(v, ["consoude", "noun", "consoudes", "", "", "", "comfrey"]) + let v = native_list_append(v, ["Amee", "noun", "Amee", "", "", "", "a female given"]) + let v = native_list_append(v, ["mowe", "noun", "mowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ueve", "noun", "ueve", "", "", "", "roe"]) + let v = native_list_append(v, ["champiun", "noun", "champiun", "", "", "", "fighter champion"]) + let v = native_list_append(v, ["honesté", "noun", "honestez", "", "", "", "candor honesty"]) + let v = native_list_append(v, ["licoresse", "noun", "licoresses", "", "", "", "licorice"]) + let v = native_list_append(v, ["norrisseor", "noun", "norrisseors", "", "", "", "sustainer nourisher"]) + let v = native_list_append(v, ["visiun", "noun", "visiuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["visioun", "noun", "visiouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choue", "noun", "choue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poue", "noun", "poue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arestemenz", "noun", "arestemenz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["arestementz", "noun", "arestementz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["abeiance", "noun", "abeiances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaudissement", "noun", "abaudissemenz", "", "", "", "emboldenment encouragement"]) + let v = native_list_append(v, ["abeiances", "noun", "abeiances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abeances", "noun", "abeances", "", "", "", "plural of abeance"]) + let v = native_list_append(v, ["emprisonement", "noun", "emprisonemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enprisoner", "noun", "enprisonons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chamberleinz", "noun", "chamberleinz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["chamberlens", "noun", "chamberlens", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["castelwrytes", "noun", "castelwrytes", "", "", "", "plural of castelwryte"]) + let v = native_list_append(v, ["abaudissemenz", "noun", "abaudissemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaudissementz", "noun", "abaudissementz", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["garceon", "noun", "garceons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["castlewrytes", "noun", "castlewrytes", "", "", "", "plural of castlewryte"]) + let v = native_list_append(v, ["cirurgiien", "noun", "cirurgiiens", "", "", "", "a doctor or"]) + let v = native_list_append(v, ["hunisementz", "noun", "hunisementz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escache", "noun", "escaches", "", "", "", "a stilt a"]) + let v = native_list_append(v, ["governeor", "noun", "governeors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["castelwryte", "noun", "castelwrytes", "", "", "", "a builder or"]) + let v = native_list_append(v, ["castelwriȝte", "noun", "castelwriȝtes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oingnun", "noun", "oingnuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["constitucion", "noun", "constitucions", "", "", "", "constitution"]) + let v = native_list_append(v, ["mecredi", "noun", "mecredi", "", "", "", "Wednesday"]) + let v = native_list_append(v, ["chalange", "noun", "chalange", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calenge", "noun", "calenge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calonge", "noun", "calonge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coronement", "noun", "coronemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curunement", "noun", "curunemenz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ampereor", "noun", "ampereors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["provinz", "noun", "provinz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pruvince", "noun", "pruvinces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pruvinces", "noun", "pruvinces", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["chacie", "noun", "chacies", "", "", "", "sleep rheum in"]) + let v = native_list_append(v, ["baretur", "noun", "bareturs", "", "", "", ""]) + let v = native_list_append(v, ["mouwe", "noun", "mouwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quaïer", "noun", "quaïers", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["differance", "noun", "differance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quet", "noun", "quet", "", "", "", "a despised or"]) + let v = native_list_append(v, ["quissin", "noun", "quissins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cuissin", "noun", "cuissins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cussin", "noun", "cussins", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lieche", "noun", "lieches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hames", "noun", "Hames", "", "", "", "Homs"]) + let v = native_list_append(v, ["Polain", "noun", "Polain", "", "", "", "a Poulain"]) + let v = native_list_append(v, ["comandeor", "noun", "comandeors", "", "", "", "commander"]) + let v = native_list_append(v, ["sauvement", "noun", "sauvemenz", "", "", "", "salvation"]) + let v = native_list_append(v, ["antoillier", "noun", "antoilliers", "", "", "", "antler horn"]) + let v = native_list_append(v, ["rochelle", "noun", "rochelles", "", "", "", "diminutive of roche"]) + let v = native_list_append(v, ["pades", "noun", "pades", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["de la Pole", "noun", "de la Pole", "", "", "", "a surname from"]) + let v = native_list_append(v, ["hoel", "noun", "hoeaus", "", "", "", "a small hoe"]) + let v = native_list_append(v, ["crot", "noun", "crot", "", "", "", "cave grotto. Old"]) + let v = native_list_append(v, ["sarcou", "noun", "sarcous", "", "", "", "coffin"]) + let v = native_list_append(v, ["pourpris", "noun", "pourpris", "", "", "", "enclosure garden"]) + let v = native_list_append(v, ["porpens", "noun", "porpens", "", "", "", "thought idea reflection"]) + let v = native_list_append(v, ["mairenier", "noun", "mairenier", "", "", "", "timber merchant carpenter"]) + let v = native_list_append(v, ["sauz", "noun", "sauz", "", "", "", "willow tree"]) + let v = native_list_append(v, ["marles", "noun", "marles", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["fuz", "noun", "fuz", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["mouze", "noun", "mouze", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aiue", "noun", "aiues", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["powe", "noun", "powe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bricon", "noun", "bricon", "", "", "", "madman"]) + let v = native_list_append(v, ["pasnage", "noun", "pasnage", "", "", "", "Feeding of pigs"]) + let v = native_list_append(v, ["fuiron", "noun", "fuirons", "", "", "", "weasel"]) + let v = native_list_append(v, ["pourcelaine", "noun", "pourcelaines", "", "", "", "Cowrie cockle or"]) + let v = native_list_append(v, ["laschesse", "noun", "laschesses", "", "", "", "laxity negligence"]) + let v = native_list_append(v, ["pardonance", "noun", "pardonances", "", "", "", "forgiveness indulgence"]) + let v = native_list_append(v, ["esquierie", "noun", "esquieries", "", "", "", "A group of"]) + let v = native_list_append(v, ["gonfanonier", "noun", "gonfanoniers", "", "", "", "gonfalonier"]) + let v = native_list_append(v, ["eé", "noun", "eé", "", "", "", "age"]) + let v = native_list_append(v, ["bruiere", "noun", "bruieres", "", "", "", "heather heath"]) + let v = native_list_append(v, ["corbusier", "noun", "corbusier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["corvisier", "noun", "corvisier", "", "", "", "cobbler shoemaker"]) + let v = native_list_append(v, ["nevod", "noun", "nevoz", "", "", "", "nephew"]) + let v = native_list_append(v, ["codoin", "noun", "codoinz", "", "", "", "quince"]) + let v = native_list_append(v, ["fluive", "noun", "fluives", "", "", "", "river stream"]) + let v = native_list_append(v, ["credance", "noun", "credances", "", "", "", "faith belief trust"]) + let v = native_list_append(v, ["hyveir", "noun", "hyveir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lasne", "noun", "lasnes", "", "", "", "strap thong"]) + let v = native_list_append(v, ["herbergeor", "noun", "herbergeors", "", "", "", "innkeeper"]) + let v = native_list_append(v, ["benediccioun", "noun", "benedicciouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fanc", "noun", "fans", "", "", "", "mud filth also"]) + let v = native_list_append(v, ["abiel", "noun", "abieus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arlot", "noun", "arloz", "", "", "", "rascal scoundrel"]) + let v = native_list_append(v, ["herlot", "noun", "herloz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["taisson", "noun", "taissons", "", "", "", "badger"]) + let v = native_list_append(v, ["eschekier", "noun", "eschekiers", "", "", "", "chessboard"]) + let v = native_list_append(v, ["Baudas", "noun", "Baudas", "", "", "", "Baghdad"]) + let v = native_list_append(v, ["mirabolan", "noun", "mirabolan", "", "", "", "myrobalan"]) + let v = native_list_append(v, ["hogue", "noun", "hogue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smaralde", "noun", "smaraldes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["irechon", "noun", "irechons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Aymer", "noun", "Aymer", "", "", "", "a male given"]) + let v = native_list_append(v, ["aache", "noun", "aache", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aachepin", "noun", "aachepin", "", "", "", "a type of"]) + let v = native_list_append(v, ["aimand", "noun", "aimanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aimande", "noun", "aimandes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["äimant", "noun", "äimanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aimaunt", "noun", "aimaunz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aimont", "noun", "aimonz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aamant", "noun", "aamanz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["admirail", "noun", "admirauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["admiraill", "noun", "admirauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["admirall", "noun", "admiraus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["admiralle", "noun", "admiralles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amiraill", "noun", "amirauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amirant", "noun", "amiranz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amiraunt", "noun", "amiraunz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amirau", "noun", "amiraus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amiraud", "noun", "amirauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amiraude", "noun", "amiraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ammiraille", "noun", "ammirailles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amerail", "noun", "amerauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ameraille", "noun", "amerailles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ameral", "noun", "ameraus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amerale", "noun", "amerales", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amerall", "noun", "ameraus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ameralle", "noun", "ameralles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amerayll", "noun", "amerayus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amerelle", "noun", "amerelles", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amiralté", "noun", "amiraltez", "", "", "", "an admirals command"]) + let v = native_list_append(v, ["admiralté", "noun", "admiraltez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["admiraltee", "noun", "admiraltees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ameraltee", "noun", "ameraltees", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emiraude", "noun", "emiraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enmiraude", "noun", "enmiraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmeral", "noun", "esmeraus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emiralde", "noun", "emiraldes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ameraude", "noun", "ameraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmaragde", "noun", "esmaragdes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmaraude", "noun", "esmaraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmarelde", "noun", "esmareldes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esmeragde", "noun", "esmeragdes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meraud", "noun", "merauz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meraude", "noun", "meraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["miraude", "noun", "miraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meroude", "noun", "meroudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merowde", "noun", "merowdes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merroude", "noun", "merroudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smaraude", "noun", "smaraudes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rumperie", "noun", "rumperies", "", "", "", "the breach of"]) + let v = native_list_append(v, ["romperie", "noun", "romperies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rumparie", "noun", "rumparies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rumpperie", "noun", "rumpperies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ꝯseil", "noun", "ꝯseil", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["golpil", "noun", "golpiz", "", "", "", "fox"]) + let v = native_list_append(v, ["golpille", "noun", "golpilles", "", "", "", "vixen female fox"]) + let v = native_list_append(v, ["empereiz", "noun", "empereiz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaut", "noun", "gauz", "", "", "", "forest woods woodland"]) + let v = native_list_append(v, ["plessis", "noun", "plessis", "", "", "", "a type of"]) + let v = native_list_append(v, ["fustaine", "noun", "fustaine", "", "", "", "A cotton fabric"]) + let v = native_list_append(v, ["beneiçun", "noun", "beneiçuns", "", "", "", "blessing benediction"]) + let v = native_list_append(v, ["benediceun", "noun", "benediceuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneçun", "noun", "beneçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benosoun", "noun", "benosouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneizoun", "noun", "beneizouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beniçzoun", "noun", "beniçzouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benisone", "noun", "benisones", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benoisun", "noun", "benoisuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benoisoun", "noun", "benoisouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneçoun", "noun", "beneçouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benoiçun", "noun", "benoiçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benoiçon", "noun", "benoiçons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneisun", "noun", "beneisuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneizun", "noun", "beneizuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benecson", "noun", "benecsons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benisson", "noun", "benissons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benoiceun", "noun", "benoiceuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneiceon", "noun", "beneiceons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beniçun", "noun", "beniçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneciun", "noun", "beneciuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneceon", "noun", "beneceons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benaiçun", "noun", "benaiçuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beniçoun", "noun", "beniçouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beniceoun", "noun", "beniceouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benesun", "noun", "benesuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneisoun", "noun", "beneisouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneyson", "noun", "beneysons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneiçon", "noun", "beneiçons", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneiciun", "noun", "beneiciuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneicion", "noun", "beneicions", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneiceun", "noun", "beneiceuns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fradres", "noun", "fradres", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["muntaignes", "noun", "muntaignes", "", "", "", "inflection of muntaigne"]) + let v = native_list_append(v, ["perrun", "noun", "perruns", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["polain", "noun", "polainz", "", "", "", "foal young horse"]) + let v = native_list_append(v, ["Sarragoce", "noun", "Sarragoce", "", "", "", "a city in"]) + let v = native_list_append(v, ["sarragossan", "noun", "sarragossans", "", "", "", "a knife made"]) + let v = native_list_append(v, ["Sarraguce", "noun", "Sarraguce", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["muneie", "noun", "muneies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porcherece", "noun", "porchereces", "", "", "", "pigsty"]) + let v = native_list_append(v, ["vacherece", "noun", "vachereces", "", "", "", "cowshed"]) + let v = native_list_append(v, ["secherece", "noun", "sechereces", "", "", "", "dryness"]) + let v = native_list_append(v, ["boverece", "noun", "bovereces", "", "", "", "cowshed"]) + let v = native_list_append(v, ["pont leveiz", "noun", "pont leveiz", "", "", "", "drawbridge"]) + let v = native_list_append(v, ["pont torneiz", "noun", "pont torneiz", "", "", "", "swingbridge"]) + let v = native_list_append(v, ["tailleiz", "noun", "tailleiz", "", "", "", "shrubbery"]) + let v = native_list_append(v, ["abateiz", "noun", "abateiz", "", "", "", "massacre"]) + let v = native_list_append(v, ["logeiz", "noun", "logeiz", "", "", "", "lodging tent"]) + let v = native_list_append(v, ["ploieiz", "noun", "ploieiz", "", "", "", "hurdle entanglement wickerwork"]) + let v = native_list_append(v, ["mesleiz", "noun", "mesleiz", "", "", "", "brawl melee"]) + let v = native_list_append(v, ["lïesce", "noun", "lïesces", "", "", "", "Great joy rejoicing."]) + let v = native_list_append(v, ["lïesces", "noun", "lïesces", "", "", "", "inflection of lïesce"]) + let v = native_list_append(v, ["leece", "noun", "leeces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leeces", "noun", "leeces", "", "", "", "inflection of leece"]) + let v = native_list_append(v, ["leesce", "noun", "leesces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leesces", "noun", "leesces", "", "", "", "inflection of leesce"]) + let v = native_list_append(v, ["leeche", "noun", "leeches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ledece", "noun", "ledeces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ledeces", "noun", "ledeces", "", "", "", "inflection of ledece"]) + let v = native_list_append(v, ["lethece", "noun", "letheces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["letheces", "noun", "letheces", "", "", "", "inflection of lethece"]) + let v = native_list_append(v, ["lelice", "noun", "lelices", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lelices", "noun", "lelices", "", "", "", "inflection of lelice"]) + let v = native_list_append(v, ["lelise", "noun", "lelises", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lelises", "noun", "lelises", "", "", "", "inflection of lelise"]) + let v = native_list_append(v, ["leices", "noun", "leices", "", "", "", "inflection of leice"]) + let v = native_list_append(v, ["liece", "noun", "lieces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lieces", "noun", "lieces", "", "", "", "inflection of liece"]) + let v = native_list_append(v, ["lyesse", "noun", "lyesses", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lyesses", "noun", "lyesses", "", "", "", "inflection of lyesse"]) + let v = native_list_append(v, ["liaice", "noun", "liaices", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["liaices", "noun", "liaices", "", "", "", "inflection of liaice"]) + let v = native_list_append(v, ["lieches", "noun", "lieches", "", "", "", "inflection of lieche"]) + let v = native_list_append(v, ["laiches", "noun", "laiches", "", "", "", "inflection of laiche"]) + let v = native_list_append(v, ["oissor", "noun", "oissors", "", "", "", "wife spouse"]) + let v = native_list_append(v, ["oissors", "noun", "oissors", "", "", "", "inflection of oissor"]) + let v = native_list_append(v, ["oissour", "noun", "oissours", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uissor", "noun", "uissors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["usor", "noun", "usors", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oissours", "noun", "oissours", "", "", "", "inflection of oissour"]) + let v = native_list_append(v, ["usors", "noun", "usors", "", "", "", "inflection of usor"]) + let v = native_list_append(v, ["uissors", "noun", "uissors", "", "", "", "inflection of uissor"]) + let v = native_list_append(v, ["saucice", "noun", "saucices", "", "", "", "sausage"]) + let v = native_list_append(v, ["sauscistre", "noun", "sauscistres", "", "", "", "sausage"]) + let v = native_list_append(v, ["wastine", "noun", "wastines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chaudun", "noun", "chauduns", "", "", "", "The intestines or"]) + let v = native_list_append(v, ["cheance", "noun", "cheances", "", "", "", "fall drop plunge"]) + let v = native_list_append(v, ["cheaunce", "noun", "cheaunces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hachete", "noun", "hachetes", "", "", "", "hatchet"]) + let v = native_list_append(v, ["andoille", "noun", "andoilles", "", "", "", "andouille type of"]) + let v = native_list_append(v, ["cerme", "noun", "cermes", "", "", "", "a small boat"]) + let v = native_list_append(v, ["cisoir", "noun", "cisoirs", "", "", "", "cutting tool"]) + let v = native_list_append(v, ["casenier", "noun", "caseniers", "", "", "", "an Italian banker"]) + let v = native_list_append(v, ["arriereban", "noun", "arrierebans", "", "", "", "arrière-ban"]) + let v = native_list_append(v, ["saussier", "noun", "saussiers", "", "", "", "saucer sauce boat"]) + let v = native_list_append(v, ["jaiole", "noun", "jaioles", "", "", "", "prison gaol jail"]) + let v = native_list_append(v, ["amistiet", "noun", "amistiez", "", "", "", "friendship"]) + let v = native_list_append(v, ["pulain", "noun", "pulainz", "", "", "", "foal young horse"]) + let v = native_list_append(v, ["Abelon", "noun", "Abelon", "", "", "", "Ablon a village"]) + let v = native_list_append(v, ["sermontain", "noun", "sermontain", "", "", "", "Seseli montanum"]) + let v = native_list_append(v, ["raicine", "noun", "raicine", "", "", "", "root"]) + let v = native_list_append(v, ["Orkenie", "noun", "Orkenie", "", "", "", "Orkney proper noun"]) + let v = native_list_append(v, ["chauderon", "noun", "chauderons", "", "", "", "cooking-pot"]) + let v = native_list_append(v, ["chaudiere", "noun", "chaudieres", "", "", "", "cooking-pot"]) + let v = native_list_append(v, ["lutre", "noun", "lutres", "", "", "", "otter"]) + let v = native_list_append(v, ["consolde", "noun", "consoldes", "", "", "", "comfrey"]) + let v = native_list_append(v, ["velque", "noun", "velques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beee", "noun", "beees", "", "", "", "opening"]) + let v = native_list_append(v, ["noif", "noun", "nois", "", "", "", "snow"]) + let v = native_list_append(v, ["choe", "noun", "choes", "", "", "", "jackdaw"]) + let v = native_list_append(v, ["nuitre", "noun", "nuitres", "", "", "", "some nocturnal bird"]) + let v = native_list_append(v, ["joial", "noun", "joiaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Gislebert", "noun", "Gislebert", "", "", "", "a male given"]) + let v = native_list_append(v, ["cance", "noun", "cances", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boulge", "noun", "boulges", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bliaunt", "noun", "bliaunz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blancet", "noun", "blancez", "", "", "", "a blanket a"]) + let v = native_list_append(v, ["bernaque", "noun", "bernaques", "", "", "", "barnacle"]) + let v = native_list_append(v, ["chantel", "noun", "chanteaus", "", "", "", "part corner quarter"]) + let v = native_list_append(v, ["flondre", "noun", "flondres", "", "", "", "flounder"]) + let v = native_list_append(v, ["forque", "noun", "forques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["walop", "noun", "walos", "", "", "", "wallop"]) + let v = native_list_append(v, ["puque", "noun", "puques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rocquier", "noun", "rocquiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fechoun", "noun", "fechouns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poquette", "noun", "poquettes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poquete", "noun", "poquetes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pouquette", "noun", "pouquettes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pouquete", "noun", "pouquetes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["viquet", "noun", "viquez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eskekier", "noun", "eskekiers", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["branke", "noun", "brankes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["belesse", "noun", "belesses", "", "", "", "beauty"]) + let v = native_list_append(v, ["renoille", "noun", "renoilles", "", "", "", "frog"]) + let v = native_list_append(v, ["diemeine", "noun", "diemeines", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desfaite", "noun", "desfaites", "", "", "", "defeat"]) + let v = native_list_append(v, ["vintisme", "noun", "vintisme", "", "", "", "twentieth"]) + let v = native_list_append(v, ["jumente", "noun", "jumentes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["craisse", "noun", "craisses", "", "", "", "fat"]) + let v = native_list_append(v, ["reorte", "noun", "reortes", "", "", "", "withe"]) + let v = native_list_append(v, ["paveil", "noun", "paveuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pavoil", "noun", "pavouz", "", "", "", "a type of"]) + let v = native_list_append(v, ["sedatif", "noun", "sedatis", "", "", "", "sedative"]) + let v = native_list_append(v, ["gowe", "noun", "gowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rosete", "noun", "rosetes", "", "", "", "diminutive of rose"]) + let v = native_list_append(v, ["bascle", "noun", "bascles", "", "", "", "Basque person"]) + let v = native_list_append(v, ["basclois", "noun", "basclois", "", "", "", "Basque language"]) + let v = native_list_append(v, ["estremité", "noun", "estremites", "", "", "", ""]) + let v = native_list_append(v, ["heretidez", "noun", "heretidez", "", "", "", "heritage ancestry"]) + let v = native_list_append(v, ["Marsilie", "noun", "Marsilie", "", "", "", "Marsile character in"]) + let v = native_list_append(v, ["Mahummet", "noun", "Mahummet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Mahummez", "noun", "Mahummez", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Mahumez", "noun", "Mahumez", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["resourdre", "noun", "resourdre", "", "", "", "the act of"]) + let v = native_list_append(v, ["eritier", "noun", "eritiers", "", "", "", "heir one who"]) + let v = native_list_append(v, ["blobbe", "noun", "blobbes", "", "", "", "rag tatter"]) + let v = native_list_append(v, ["blouer", "noun", "blouers", "", "", "", "blower"]) + let v = native_list_append(v, ["Alveret", "noun", "Alveret", "", "", "", "Alfred the Great"]) + let v = native_list_append(v, ["hoete", "noun", "hoetes", "", "", "", "small hoe with"]) + let v = native_list_append(v, ["jowe", "noun", "jowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jouue", "noun", "jouue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["goue⁠", "noun", "goue⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gouhe⁠", "noun", "gouhe⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["⁠joewe⁠", "noun", "⁠joewe⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jewe⁠", "noun", "jewe⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["⁠joie⁠", "noun", "⁠joie⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["⁠joye⁠", "noun", "⁠joye⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["⁠yoe⁠", "noun", "⁠yoe⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["⁠giue⁠", "noun", "⁠giue⁠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["powee", "noun", "powee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pouwe", "noun", "pouwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pouhe", "noun", "pouhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escroe", "noun", "escroes", "", "", "", "piece strip of"]) + let v = native_list_append(v, ["escroes", "noun", "escroes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["escrehue", "noun", "escrehue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escroue", "noun", "escroue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escrouwe", "noun", "escrouwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escrowe", "noun", "escrowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choee", "noun", "choee", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chouhe", "noun", "chouhe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chowe", "noun", "chowe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chouwe", "noun", "chouwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kauue", "noun", "kauue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choete", "noun", "choetes", "", "", "", "owl"]) + let v = native_list_append(v, ["choette", "noun", "choette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chouete", "noun", "chouete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chuete", "noun", "chuete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chuette", "noun", "chuette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chueute", "noun", "chueute", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cieuete", "noun", "cieuete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["çuete", "noun", "çuete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tsouete", "noun", "tsouete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choetes", "noun", "choetes", "", "", "", "oblique/nominative plural of"]) + let v = native_list_append(v, ["loreür", "noun", "loreürs", "", "", "", "ploughman"]) + let v = native_list_append(v, ["גֿאנט", "noun", "גֿאנט", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["פטיט", "noun", "פטיט", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["מרי", "noun", "מרי", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["פֿאנמא", "noun", "פֿאנמא", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cantorbiri", "noun", "Cantorbiri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["covée", "noun", "covées", "", "", "", "A brood of"]) + let v = native_list_append(v, ["Tartaire", "noun", "Tartaires", "", "", "", "A Tartar or"]) + let v = native_list_append(v, ["orseil", "noun", "orseil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sournon", "noun", "sournon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prudefemme", "noun", "prudefemme", "", "", "", "A good woman"]) + let v = native_list_append(v, ["chimeneie", "noun", "chimeneies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muef", "noun", "muef", "", "", "", "measure"]) + let v = native_list_append(v, ["abandoner", "verb", "abandon", "abandoné", "abandoné", "", "to abandon"]) + let v = native_list_append(v, ["servant", "verb", "servant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["accepter", "verb", "accepte", "accepté", "accepté", "", "to accept"]) + let v = native_list_append(v, ["beer", "verb", "be", "beé", "beé", "", "to open"]) + let v = native_list_append(v, ["livrer", "verb", "livre", "livré", "livré", "", "to deliver"]) + let v = native_list_append(v, ["point", "verb", "point", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fere", "verb", "faz", "fet", "fet", "", "alternative form of"]) + let v = native_list_append(v, ["abundant", "verb", "abundant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ad", "verb", "ad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["as", "verb", "as", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["chair", "verb", "chair", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hair", "verb", "haz", "haï", "haï", "", "to hate"]) + let v = native_list_append(v, ["quit", "verb", "quit", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["set", "verb", "set", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["covenant", "verb", "covenant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["acater", "verb", "acat", "acaté", "acaté", "", "alternative form of"]) + let v = native_list_append(v, ["avoir", "verb", "ai", "eü", "eü", "", "to have"]) + let v = native_list_append(v, ["fier", "verb", "fi", "fïé", "fïé", "", "to trust someone"]) + let v = native_list_append(v, ["dancer", "verb", "danz", "dancé", "dancé", "", "alternative form of"]) + let v = native_list_append(v, ["metre", "verb", "met", "mis", "mis", "", "to put to"]) + let v = native_list_append(v, ["pot", "verb", "pot", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["eu", "verb", "eu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lever", "verb", "lief", "levé", "levé", "", "to lift up"]) + let v = native_list_append(v, ["user", "verb", "us", "usé", "usé", "", "to use to"]) + let v = native_list_append(v, ["plover", "verb", "plover", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dis", "verb", "dis", "", "", "", "inflection of dire"]) + let v = native_list_append(v, ["aimer", "verb", "aim", "aimé", "aimé", "", "alternative form of"]) + let v = native_list_append(v, ["souvenir", "verb", "souvieng", "souvenu", "souvenu", "", "alternative form of"]) + let v = native_list_append(v, ["est", "verb", "ẽ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ars", "verb", "arse", "arses", "", "", "inflection of ardeir"]) + let v = native_list_append(v, ["grater", "verb", "grat", "graté", "graté", "", "to scrape come"]) + let v = native_list_append(v, ["just", "verb", "just", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["passer", "verb", "pas", "passé", "passé", "", "to pass to"]) + let v = native_list_append(v, ["dormir", "verb", "dorm", "dormi", "dormi", "", "to sleep"]) + let v = native_list_append(v, ["partir", "verb", "part", "parti", "parti", "", "to leave"]) + let v = native_list_append(v, ["lire", "verb", "li", "leü", "leü", "", "to read"]) + let v = native_list_append(v, ["né", "verb", "nee", "", "", "", "past participle of"]) + let v = native_list_append(v, ["waiter", "verb", "wait", "waité", "waité", "", "alternative form of"]) + let v = native_list_append(v, ["trainer", "verb", "train", "trainé", "trainé", "", "to drag"]) + let v = native_list_append(v, ["manger", "verb", "mange", "mangé", "mangé", "", "alternative form of"]) + let v = native_list_append(v, ["vivre", "verb", "vif", "vescu", "vescu", "", "to live"]) + let v = native_list_append(v, ["funder", "verb", "funt", "fundé", "fundé", "", "to found"]) + let v = native_list_append(v, ["grieve", "verb", "grieve", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["faire", "verb", "faz", "fait", "fait", "", "to do"]) + let v = native_list_append(v, ["traire", "verb", "trai", "trait", "trait", "", "to pull"]) + let v = native_list_append(v, ["plaire", "verb", "plaz", "pleü", "pleü", "", "alternative infinitive of"]) + let v = native_list_append(v, ["tuer", "verb", "tu", "tüé", "tüé", "", "extinguish"]) + let v = native_list_append(v, ["quitter", "verb", "quit", "quitté", "quitté", "", "to liberate to"]) + let v = native_list_append(v, ["avenger", "verb", "avenge", "avengé", "avengé", "", "alternative form of"]) + let v = native_list_append(v, ["aver", "verb", "aver", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avoider", "verb", "avoit", "avoidé", "avoidé", "", "to void render"]) + let v = native_list_append(v, ["mentir", "verb", "ment", "menti", "menti", "", "to lie say"]) + let v = native_list_append(v, ["sentir", "verb", "sent", "senti", "senti", "", "to feel have"]) + let v = native_list_append(v, ["founder", "verb", "fount", "foundé", "foundé", "", "alternative spelling of"]) + let v = native_list_append(v, ["lier", "verb", "li", "lïé", "lïé", "", "to tie up"]) + let v = native_list_append(v, ["gist", "verb", "gist", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["porter", "verb", "port", "porté", "porté", "", "to carry"]) + let v = native_list_append(v, ["joint", "verb", "joint", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bever", "verb", "bef", "beü", "beü", "", "alternative form of"]) + let v = native_list_append(v, ["dire", "verb", "di", "dit", "dit", "", "to say"]) + let v = native_list_append(v, ["bracer", "verb", "braz", "bracé", "bracé", "", "alternative form of"]) + let v = native_list_append(v, ["regarder", "verb", "regart", "regardé", "regardé", "", "alternative form of"]) + let v = native_list_append(v, ["serf", "verb", "serf", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["haïr", "verb", "haïr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oi", "verb", "oï", "", "", "", "past participle of"]) + let v = native_list_append(v, ["compiler", "verb", "compil", "compilé", "compilé", "", "to compile"]) + let v = native_list_append(v, ["dauber", "verb", "daup", "daubé", "daubé", "", "to whiten whitewash"]) + let v = native_list_append(v, ["doter", "verb", "dot", "doté", "doté", "", "to doubt"]) + let v = native_list_append(v, ["gaiter", "verb", "gait", "gaité", "gaité", "", "alternative form of"]) + let v = native_list_append(v, ["gauger", "verb", "gauge", "gaugé", "gaugé", "", "alternative form of"]) + let v = native_list_append(v, ["levee", "verb", "levee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["loge", "verb", "loge", "", "", "", "inflection of loger"]) + let v = native_list_append(v, ["logier", "verb", "loger", "", "", "", "to lodge stay"]) + let v = native_list_append(v, ["mort", "verb", "mort", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ouster", "verb", "oust", "ousté", "ousté", "", "alternative form of"]) + let v = native_list_append(v, ["rifler", "verb", "rifle", "riflé", "riflé", "", "to scrape off"]) + let v = native_list_append(v, ["rimer", "verb", "rim", "rimé", "rimé", "", "to recount a"]) + let v = native_list_append(v, ["taster", "verb", "tast", "tasté", "tasté", "", "to taste"]) + let v = native_list_append(v, ["waiver", "verb", "waif", "waivé", "waivé", "", "alternative form of"]) + let v = native_list_append(v, ["crier", "verb", "cri", "crïé", "crïé", "", "to cry out"]) + let v = native_list_append(v, ["fret", "verb", "frait", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tanner", "verb", "tan", "tanné", "tanné", "", "alternative form of"]) + let v = native_list_append(v, ["trenchant", "verb", "trenchant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["waster", "verb", "wast", "wasté", "wasté", "", "alternative form of"]) + let v = native_list_append(v, ["poet", "verb", "poet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["desirer", "verb", "desir", "desiré", "desiré", "", "alternative form of"]) + let v = native_list_append(v, ["remis", "verb", "remis", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lait", "verb", "leid", "led", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ester", "verb", "estois", "esté", "esté", "", "to be"]) + let v = native_list_append(v, ["lesser", "verb", "les", "lessé", "lessé", "", "alternative form of"]) + let v = native_list_append(v, ["siut", "verb", "siut", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["obeïr", "verb", "obeïr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["issue", "verb", "issue", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["sui", "verb", "sui", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["poser", "verb", "pos", "posé", "posé", "", "to put to"]) + let v = native_list_append(v, ["corner", "verb", "corn", "corné", "corné", "", "to blow to"]) + let v = native_list_append(v, ["dresser", "verb", "dres", "dressé", "dressé", "", "alternative form of"]) + let v = native_list_append(v, ["devenir", "verb", "devieng", "devenu", "devenu", "", "to become to"]) + let v = native_list_append(v, ["vendre", "verb", "vent", "vendu", "vendu", "", "to sell"]) + let v = native_list_append(v, ["finir", "verb", "finis", "fini", "fini", "", "alternative form of"]) + let v = native_list_append(v, ["parler", "verb", "parol", "parlé", "parlé", "", "to speak to"]) + let v = native_list_append(v, ["pecché", "verb", "pecché", "", "", "", "past participle of"]) + let v = native_list_append(v, ["veer", "verb", "veer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["voucher", "verb", "vouche", "vouché", "vouché", "", "alternative form of"]) + let v = native_list_append(v, ["laborer", "verb", "labeur", "laboré", "laboré", "", "to work to"]) + let v = native_list_append(v, ["construire", "verb", "construi", "construit", "construit", "", "to build"]) + let v = native_list_append(v, ["prendre", "verb", "preing", "pris", "pris", "", "to take"]) + let v = native_list_append(v, ["pris", "verb", "priz", "", "", "", "past participle of"]) + let v = native_list_append(v, ["soit", "verb", "soit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["meu", "verb", "meü", "", "", "", "past participle of"]) + let v = native_list_append(v, ["forger", "verb", "forge", "forgé", "forgé", "", "alternative form of"]) + let v = native_list_append(v, ["covert", "verb", "cuvert", "covri", "", "", "past participle of"]) + let v = native_list_append(v, ["salir", "verb", "sail", "sali", "sali", "", "to jump"]) + let v = native_list_append(v, ["turner", "verb", "turn", "turné", "turné", "", "alternative form of"]) + let v = native_list_append(v, ["cuire", "verb", "cuis", "cuit", "cuit", "", "to cook"]) + let v = native_list_append(v, ["devoir", "verb", "doi", "deu", "deu", "", "to have to"]) + let v = native_list_append(v, ["demander", "verb", "demant", "demandé", "demandé", "", "to ask"]) + let v = native_list_append(v, ["savoir", "verb", "sai", "seü", "seü", "", "to know"]) + let v = native_list_append(v, ["fermer", "verb", "ferm", "fermé", "fermé", "", "to close"]) + let v = native_list_append(v, ["composer", "verb", "compos", "composé", "composé", "", "To come to"]) + let v = native_list_append(v, ["overt", "verb", "overt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["warder", "verb", "wart", "wardé", "wardé", "", "alternative form of"]) + let v = native_list_append(v, ["plaisir", "verb", "plaz", "pleü", "pleü", "", "to please"]) + let v = native_list_append(v, ["oublier", "verb", "oubli", "oublïé", "oublïé", "", "alternative form of"]) + let v = native_list_append(v, ["counter", "verb", "count", "counté", "counté", "", "alternative form of"]) + let v = native_list_append(v, ["venir", "verb", "vieng", "venu", "venu", "", "to come to"]) + let v = native_list_append(v, ["entrer", "verb", "entre", "entré", "entré", "", "to enter"]) + let v = native_list_append(v, ["chanter", "verb", "chant", "chanté", "chanté", "", "to pray to"]) + let v = native_list_append(v, ["mordre", "verb", "mort", "mors", "mors", "", "to bite"]) + let v = native_list_append(v, ["monter", "verb", "mont", "monté", "monté", "", "to go up"]) + let v = native_list_append(v, ["descendre", "verb", "descent", "descendu", "descendu", "", "to go down"]) + let v = native_list_append(v, ["aller", "verb", "vois", "allé", "allé", "", "alternative form of"]) + let v = native_list_append(v, ["retourner", "verb", "retourn", "retourné", "retourné", "", "alternative form of"]) + let v = native_list_append(v, ["baisser", "verb", "bais", "baissé", "baissé", "", "alternative form of"]) + let v = native_list_append(v, ["contredire", "verb", "contredi", "contredit", "contredit", "", "to speak out"]) + let v = native_list_append(v, ["obtenir", "verb", "obtieng", "obtenu", "obtenu", "", "to obtain"]) + let v = native_list_append(v, ["canter", "verb", "cant", "canté", "canté", "", "alternative form of"]) + let v = native_list_append(v, ["dit", "verb", "dit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["plaindre", "verb", "plaing", "plaint", "plaint", "", "to cry to"]) + let v = native_list_append(v, ["corre", "verb", "cor", "coru", "coru", "", "to run"]) + let v = native_list_append(v, ["murmurer", "verb", "murmur", "murmuré", "murmuré", "", "to whisper"]) + let v = native_list_append(v, ["transporter", "verb", "transport", "transporté", "transporté", "", "to transport"]) + let v = native_list_append(v, ["tenant", "verb", "tenaunt", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pent", "verb", "pent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["poignant", "verb", "poignant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["tenir", "verb", "tieng", "tenu", "tenu", "", "to possess to"]) + let v = native_list_append(v, ["soper", "verb", "sop", "sopé", "sopé", "", "to dinner have"]) + let v = native_list_append(v, ["entendre", "verb", "entent", "entendu", "entendu", "", "to hear"]) + let v = native_list_append(v, ["changer", "verb", "change", "changé", "changé", "", "alternative form of"]) + let v = native_list_append(v, ["vont", "verb", "vunt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["valoir", "verb", "vail", "valu", "valu", "", "to have value"]) + let v = native_list_append(v, ["servir", "verb", "serf", "servi", "servi", "", "to serve act"]) + let v = native_list_append(v, ["fuir", "verb", "fui", "foï", "foï", "", "To flee."]) + let v = native_list_append(v, ["sois", "verb", "sois", "", "", "", "inflection of estre"]) + let v = native_list_append(v, ["ait", "verb", "aït", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["rire", "verb", "ri", "ris", "ris", "", "to laugh"]) + let v = native_list_append(v, ["cuit", "verb", "cuit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vit", "verb", "vit", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["mari", "verb", "mari", "", "", "", "past participle of"]) + let v = native_list_append(v, ["moudre", "verb", "muel", "molu", "molu", "", "to grind crush"]) + let v = native_list_append(v, ["pondre", "verb", "poing", "pons", "pons", "", "to lay eggs"]) + let v = native_list_append(v, ["morir", "verb", "muir", "mort", "mort", "", "to die"]) + let v = native_list_append(v, ["oyez", "verb", "oiez", "oez", "", "", "second-person plural present"]) + let v = native_list_append(v, ["reporter", "verb", "report", "reporté", "reporté", "", "to bring back"]) + let v = native_list_append(v, ["amé", "verb", "amé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aimes", "verb", "aimes", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["irie", "verb", "irie", "", "", "", "past participle of"]) + let v = native_list_append(v, ["restorer", "verb", "restor", "restoré", "restoré", "", "to restore to"]) + let v = native_list_append(v, ["garder", "verb", "gart", "gardé", "gardé", "", "alternative form of"]) + let v = native_list_append(v, ["jeter", "verb", "jet", "jeté", "jeté", "", "to throw"]) + let v = native_list_append(v, ["disclaimer", "verb", "disclaim", "disclaimé", "disclaimé", "", "alternative form of"]) + let v = native_list_append(v, ["ies", "verb", "ies", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ot", "verb", "ot", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["douter", "verb", "dout", "douté", "douté", "", "alternative form of"]) + let v = native_list_append(v, ["sauver", "verb", "sauf", "sauvé", "sauvé", "", "to save remove"]) + let v = native_list_append(v, ["rectifier", "verb", "rectifi", "rectifïé", "rectifïé", "", "to rectify"]) + let v = native_list_append(v, ["ambler", "verb", "amble", "amblé", "amblé", "", "to amble"]) + let v = native_list_append(v, ["sont", "verb", "sunt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["coroner", "verb", "coron", "coroné", "coroné", "", "to crown make"]) + let v = native_list_append(v, ["correspondre", "verb", "correspoing", "correspondu", "correspondu", "", "to correspond"]) + let v = native_list_append(v, ["juré", "verb", "juré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["roller", "verb", "roller", "", "", "", "to polish a"]) + let v = native_list_append(v, ["ont", "verb", "unt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["examiner", "verb", "examin", "examiné", "examiné", "", "to question pose"]) + let v = native_list_append(v, ["hurler", "verb", "hurler", "", "", "", "to shout to"]) + let v = native_list_append(v, ["fet", "verb", "fet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["venu", "verb", "venu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["finer", "verb", "fin", "finé", "finé", "", "to finish to"]) + let v = native_list_append(v, ["tricher", "verb", "triche", "triché", "triché", "", "alternative infinitive of"]) + let v = native_list_append(v, ["redire", "verb", "redi", "redit", "redit", "", "to say again"]) + let v = native_list_append(v, ["faillir", "verb", "fail", "fali", "fali", "", "alternative infinitive of"]) + let v = native_list_append(v, ["croire", "verb", "croi", "creü", "creü", "", "to believe"]) + let v = native_list_append(v, ["conceder", "verb", "concet", "concedé", "concedé", "", "to grant to"]) + let v = native_list_append(v, ["resolver", "verb", "resolf", "resolvé", "resolvé", "", "to resolve oneself"]) + let v = native_list_append(v, ["sufrir", "verb", "suefre", "sufert", "sufert", "", "alternative form of"]) + let v = native_list_append(v, ["seu", "verb", "seü", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rompre", "verb", "romp", "rot", "rot", "", "to break damage"]) + let v = native_list_append(v, ["salvar", "verb", "salver", "sauver", "", "", "alternative form of"]) + let v = native_list_append(v, ["travailler", "verb", "travail", "travaillié", "travaillié", "", "to suffer"]) + let v = native_list_append(v, ["jut", "verb", "jut", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["peser", "verb", "pois", "pesé", "pesé", "", "to weigh have"]) + let v = native_list_append(v, ["haitier", "verb", "hait", "haitié", "haitié", "", "to cure to"]) + let v = native_list_append(v, ["bersa", "verb", "bersa", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["procurer", "verb", "procur", "procuré", "procuré", "", "to procure to"]) + let v = native_list_append(v, ["tirer", "verb", "tir", "tiré", "tiré", "", "to pull"]) + let v = native_list_append(v, ["recorder", "verb", "recort", "recordé", "recordé", "", "to record to"]) + let v = native_list_append(v, ["rendre", "verb", "rent", "rendu", "rendu", "", "to give back"]) + let v = native_list_append(v, ["beter", "verb", "bet", "beté", "beté", "", "to bait"]) + let v = native_list_append(v, ["valer", "verb", "val", "valé", "valé", "", "to drop to"]) + let v = native_list_append(v, ["purposer", "verb", "purpos", "purposé", "purposé", "", "to propose to"]) + let v = native_list_append(v, ["adorer", "verb", "ador", "adoré", "adoré", "", "to praise usually"]) + let v = native_list_append(v, ["acheter", "verb", "achat", "acheté", "acheté", "", "to purchase buy"]) + let v = native_list_append(v, ["nager", "verb", "nage", "nagé", "nagé", "", "alternative form of"]) + let v = native_list_append(v, ["perdre", "verb", "pert", "perdu", "perdu", "", "to lose be"]) + let v = native_list_append(v, ["mover", "verb", "mover", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vomir", "verb", "vomis", "vomi", "vomi", "", "to vomit"]) + let v = native_list_append(v, ["trespasser", "verb", "trespas", "trespassé", "trespassé", "", "to traverse to"]) + let v = native_list_append(v, ["alet", "verb", "no-table-tags", "alez", "alee", "", "early form of"]) + let v = native_list_append(v, ["avenir", "verb", "avieng", "avenu", "avenu", "", "to happen"]) + let v = native_list_append(v, ["plunger", "verb", "plunge", "plungé", "plungé", "", "alternative form of"]) + let v = native_list_append(v, ["tendre", "verb", "tent", "tendu", "tendu", "", "to stretch"]) + let v = native_list_append(v, ["esser", "verb", "esser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engager", "verb", "engage", "engagé", "engagé", "", "alternative form of"]) + let v = native_list_append(v, ["easer", "verb", "easer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tandu", "verb", "tendu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["arracher", "verb", "arrache", "arraché", "arraché", "", "alternative form of"]) + let v = native_list_append(v, ["vivant", "verb", "vivant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["aidant", "verb", "aidant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pincer", "verb", "pinz", "pincé", "pincé", "", "to pinch"]) + let v = native_list_append(v, ["laver", "verb", "lef", "lavé", "lavé", "", "to wash"]) + let v = native_list_append(v, ["seoir", "verb", "sié", "sis", "sis", "", "to sit make"]) + let v = native_list_append(v, ["celer", "verb", "çoil", "celé", "celé", "", "to conceal"]) + let v = native_list_append(v, ["sist", "verb", "sist", "", "", "", "past participle of"]) + let v = native_list_append(v, ["recevoir", "verb", "reçoif", "receü", "receü", "", "receive"]) + let v = native_list_append(v, ["joindre", "verb", "joing", "joint", "joint", "", "to meet up"]) + let v = native_list_append(v, ["loisir", "verb", "no-table-tags", "fro-conj-loisir", "avoir leü", "", "to be allowed"]) + let v = native_list_append(v, ["punir", "verb", "punis", "puni", "puni", "", "to punish"]) + let v = native_list_append(v, ["juster", "verb", "just", "justé", "justé", "", "alternative form of"]) + let v = native_list_append(v, ["munter", "verb", "munt", "munté", "munté", "", "alternative form of"]) + let v = native_list_append(v, ["pendre", "verb", "pent", "pendu", "pendu", "", "to hang"]) + let v = native_list_append(v, ["penser", "verb", "pens", "pensé", "pensé", "", "to think"]) + let v = native_list_append(v, ["conduire", "verb", "condui", "conduit", "conduit", "", "to steer to"]) + let v = native_list_append(v, ["coudre", "verb", "keus", "cousu", "cousu", "", "alternative form of"]) + let v = native_list_append(v, ["resister", "verb", "resist", "resisté", "resisté", "", "to resist"]) + let v = native_list_append(v, ["oir", "verb", "oi", "oï", "oï", "", "to listen"]) + let v = native_list_append(v, ["rester", "verb", "restois", "resté", "resté", "", "to stay"]) + let v = native_list_append(v, ["noter", "verb", "not", "noté", "noté", "", "to note to"]) + let v = native_list_append(v, ["oster", "verb", "ost", "osté", "osté", "", "to remove"]) + let v = native_list_append(v, ["charmer", "verb", "charm", "charmé", "charmé", "", "to charm to"]) + let v = native_list_append(v, ["ruis", "verb", "ruis", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["remover", "verb", "remover", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vestir", "verb", "vest", "vesti", "vesti", "", "to dress to"]) + let v = native_list_append(v, ["prouver", "verb", "pruis", "prouvé", "prouvé", "", "alternative form of"]) + let v = native_list_append(v, ["condamner", "verb", "condamne", "condamné", "condamné", "", "to condemn"]) + let v = native_list_append(v, ["gagner", "verb", "gaing", "gagné", "gagné", "", "alternative form of"]) + let v = native_list_append(v, ["convertir", "verb", "convert", "converti", "converti", "", "to convert change"]) + let v = native_list_append(v, ["movant", "verb", "movant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["peindre", "verb", "peing", "peint", "peint", "", "to paint cover"]) + let v = native_list_append(v, ["avancer", "verb", "avanz", "avancé", "avancé", "", "alternative form of"]) + let v = native_list_append(v, ["traverser", "verb", "travers", "traversé", "traversé", "", "to traverse to"]) + let v = native_list_append(v, ["fondre", "verb", "font", "fondu", "fondu", "", "to melt"]) + let v = native_list_append(v, ["avaler", "verb", "aval", "avalé", "avalé", "", "to descend to"]) + let v = native_list_append(v, ["chauffer", "verb", "chauf", "chauffé", "chauffé", "", "alternative form of"]) + let v = native_list_append(v, ["fust", "verb", "fu", "fut", "fud", "", "third-person singular past"]) + let v = native_list_append(v, ["suder", "verb", "sut", "sudé", "sudé", "", "to sweat"]) + let v = native_list_append(v, ["revenir", "verb", "revieng", "revenu", "revenu", "", "to come back"]) + let v = native_list_append(v, ["soient", "verb", "soient", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["mander", "verb", "mant", "mandé", "mandé", "", "to command to"]) + let v = native_list_append(v, ["heiser", "verb", "heiser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["referer", "verb", "refer", "referé", "referé", "", "to tell to"]) + let v = native_list_append(v, ["alee", "verb", "alee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["rumpu", "verb", "rumpu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["taire", "verb", "taz", "teü", "teü", "", "alternative infinitive of"]) + let v = native_list_append(v, ["criant", "verb", "criant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["conjurer", "verb", "conjur", "conjuré", "conjuré", "", "to beseech to"]) + let v = native_list_append(v, ["deu", "verb", "deü", "du", "", "", "past participle of"]) + let v = native_list_append(v, ["refuser", "verb", "refus", "refusé", "refusé", "", "to refuse"]) + let v = native_list_append(v, ["rover", "verb", "ruis", "rové", "rové", "", "to order give"]) + let v = native_list_append(v, ["pursuant", "verb", "pursuant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pensé", "verb", "pensé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["marier", "verb", "mari", "marïé", "marïé", "", "to marry"]) + let v = native_list_append(v, ["maintenir", "verb", "maintieng", "maintenu", "maintenu", "", "to maintain to"]) + let v = native_list_append(v, ["venger", "verb", "venge", "vengé", "vengé", "", "alternative form of"]) + let v = native_list_append(v, ["tenez", "verb", "tenez", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["obtenu", "verb", "obtenu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["casser", "verb", "cas", "cassé", "cassé", "", "alternative form of"]) + let v = native_list_append(v, ["contenir", "verb", "me contieng", "contenu", "contenu", "", "to control oneself"]) + let v = native_list_append(v, ["presenter", "verb", "present", "presenté", "presenté", "", "to present show"]) + let v = native_list_append(v, ["ceder", "verb", "cet", "cedé", "cedé", "", "to concede give"]) + let v = native_list_append(v, ["amener", "verb", "amein", "amené", "amené", "", "to bring"]) + let v = native_list_append(v, ["respirer", "verb", "respir", "respiré", "respiré", "", "to respire to"]) + let v = native_list_append(v, ["couchant", "verb", "couchant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["cesser", "verb", "ces", "cessé", "cessé", "", "to cease to"]) + let v = native_list_append(v, ["arer", "verb", "er", "aré", "aré", "", "to plow"]) + let v = native_list_append(v, ["proposer", "verb", "propos", "proposé", "proposé", "", "to propose offer"]) + let v = native_list_append(v, ["songer", "verb", "songe", "songé", "songé", "", "alternative form of"]) + let v = native_list_append(v, ["broder", "verb", "brot", "brodé", "brodé", "", "to embroider"]) + let v = native_list_append(v, ["apercevoir", "verb", "aperçoif", "aperceü", "aperceü", "", "to notice to"]) + let v = native_list_append(v, ["oser", "verb", "os", "osé", "osé", "", "to dare"]) + let v = native_list_append(v, ["oyer", "verb", "oyer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sunt", "verb", "sont", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["tient", "verb", "tient", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["versifier", "verb", "versifi", "versifïé", "versifïé", "", "to versify to"]) + let v = native_list_append(v, ["geler", "verb", "giel", "gelé", "gelé", "", "to freeze"]) + let v = native_list_append(v, ["harper", "verb", "harp", "harpé", "harpé", "", "to play the"]) + let v = native_list_append(v, ["devourer", "verb", "deveur", "devouré", "devouré", "", "alternative form of"]) + let v = native_list_append(v, ["proceder", "verb", "procet", "procedé", "procedé", "", "to advance to"]) + let v = native_list_append(v, ["jangler", "verb", "jangle", "janglé", "janglé", "", "to entertain"]) + let v = native_list_append(v, ["jouster", "verb", "joust", "jousté", "jousté", "", "alternative form of"]) + let v = native_list_append(v, ["arresté", "verb", "arresté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["departir", "verb", "depart", "departi", "departi", "", "to leave to"]) + let v = native_list_append(v, ["devastar", "verb", "devastar", "", "", "", "to devastate to"]) + let v = native_list_append(v, ["escandir", "verb", "escandis", "escandi", "escandi", "", "to go up"]) + let v = native_list_append(v, ["clore", "verb", "clo", "clos", "clos", "", "to close"]) + let v = native_list_append(v, ["copé", "verb", "copé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cuidé", "verb", "cuidé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["deporté", "verb", "deporté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gasté", "verb", "gasté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["estimé", "verb", "esmé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["guardé", "verb", "guardé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["guarde", "verb", "guarde", "", "", "", "inflection of guarder"]) + let v = native_list_append(v, ["guardes", "verb", "guardes", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["repeler", "verb", "repel", "repelé", "repelé", "", "alternative form of"]) + let v = native_list_append(v, ["signer", "verb", "sing", "signé", "signé", "", "to sign put"]) + let v = native_list_append(v, ["relaxer", "verb", "relaxe", "relaxé", "relaxé", "", "alternative form of"]) + let v = native_list_append(v, ["mesurer", "verb", "mesur", "mesuré", "mesuré", "", "to measure"]) + let v = native_list_append(v, ["terminer", "verb", "termin", "terminé", "terminé", "", "to end to"]) + let v = native_list_append(v, ["bouder", "verb", "bout", "boudé", "boudé", "", "to sulk"]) + let v = native_list_append(v, ["retorné", "verb", "retorné", "", "", "", "past participle of"]) + let v = native_list_append(v, ["torné", "verb", "torné", "", "", "", "past participle of"]) + let v = native_list_append(v, ["briser", "verb", "bris", "brisé", "brisé", "", "alternative form of"]) + let v = native_list_append(v, ["ronfler", "verb", "ronfle", "ronflé", "ronflé", "", "to snore"]) + let v = native_list_append(v, ["reposer", "verb", "repos", "reposé", "reposé", "", "to rest be"]) + let v = native_list_append(v, ["prier", "verb", "pri", "prïé", "prïé", "", "alternative form of"]) + let v = native_list_append(v, ["avertir", "verb", "avertis", "averti", "averti", "", "to inform to"]) + let v = native_list_append(v, ["assigner", "verb", "asigner", "assiner", "asener", "", "to assign"]) + let v = native_list_append(v, ["relire", "verb", "reli", "releü", "releü", "", "to reread to"]) + let v = native_list_append(v, ["refaire", "verb", "refaz", "refait", "refait", "", "to redo to"]) + let v = native_list_append(v, ["hacher", "verb", "hache", "haché", "haché", "", "to chop up"]) + let v = native_list_append(v, ["manier", "verb", "mani", "manïé", "manïé", "", "to handle"]) + let v = native_list_append(v, ["trier", "verb", "tri", "trïé", "trïé", "", "to choose to"]) + let v = native_list_append(v, ["imaginer", "verb", "imagin", "imaginé", "imaginé", "", "to examine to"]) + let v = native_list_append(v, ["asseoir", "verb", "assié", "assis", "assis", "", "to sit down"]) + let v = native_list_append(v, ["retenir", "verb", "retieng", "retenu", "retenu", "", "to keep to"]) + let v = native_list_append(v, ["amer", "verb", "aim", "amé", "amé", "", "to love"]) + let v = native_list_append(v, ["puir", "verb", "pu", "puï", "puï", "", "to smell bad"]) + let v = native_list_append(v, ["enterrer", "verb", "enter", "enterré", "enterré", "", "to bury in"]) + let v = native_list_append(v, ["ert", "verb", "iert", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["applier", "verb", "appli", "applïé", "applïé", "", "to bend"]) + let v = native_list_append(v, ["colorer", "verb", "coleur", "coloré", "coloré", "", "to color"]) + let v = native_list_append(v, ["enchanter", "verb", "enchant", "enchanté", "enchanté", "", "to enchant to"]) + let v = native_list_append(v, ["salver", "verb", "salf", "salvé", "salvé", "", "alternative form of"]) + let v = native_list_append(v, ["trencher", "verb", "trenche", "trenché", "trenché", "", "alternative form of"]) + let v = native_list_append(v, ["santi", "verb", "santi", "", "", "", "past participle of"]) + let v = native_list_append(v, ["veue", "verb", "vewe", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["guarder", "verb", "guart", "guardé", "guardé", "", "to protect to"]) + let v = native_list_append(v, ["caroler", "verb", "carol", "carolé", "carolé", "", "to sing"]) + let v = native_list_append(v, ["passant", "verb", "passant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["durer", "verb", "dur", "duré", "duré", "", "to last for"]) + let v = native_list_append(v, ["conter", "verb", "cont", "conté", "conté", "", "to tell to"]) + let v = native_list_append(v, ["lieve", "verb", "lieve", "", "", "", "inflection of lever"]) + let v = native_list_append(v, ["ensevelir", "verb", "ensevelis", "enseveli", "enseveli", "", "to bury to"]) + let v = native_list_append(v, ["contribuir", "verb", "contribuïs", "contribuï", "contribuï", "", "to contribute"]) + let v = native_list_append(v, ["curer", "verb", "cur", "curé", "curé", "", "to clean"]) + let v = native_list_append(v, ["embracer", "verb", "embraz", "embracé", "embracé", "", "alternative form of"]) + let v = native_list_append(v, ["tempter", "verb", "tempte", "tempté", "tempté", "", "to tempt to"]) + let v = native_list_append(v, ["revenu", "verb", "revenu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["riant", "verb", "riant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["raser", "verb", "res", "rasé", "rasé", "", "to shave"]) + let v = native_list_append(v, ["pardoner", "verb", "pardoing", "pardoné", "pardoné", "", "to pardon to"]) + let v = native_list_append(v, ["mener", "verb", "mein", "mené", "mené", "", "to lead encourage"]) + let v = native_list_append(v, ["coster", "verb", "cost", "costé", "costé", "", "to cost have"]) + let v = native_list_append(v, ["jaillir", "verb", "jaillis", "jailli", "jailli", "", "to spurt out"]) + let v = native_list_append(v, ["justifier", "verb", "justifi", "justifïé", "justifïé", "", "to show to"]) + let v = native_list_append(v, ["luire", "verb", "luis", "luit", "luit", "", "alternative infinitive of"]) + let v = native_list_append(v, ["jurer", "verb", "jur", "juré", "juré", "", "to promise to"]) + let v = native_list_append(v, ["reprendre", "verb", "preing", "pris", "pris", "", "to retake to"]) + let v = native_list_append(v, ["sembler", "verb", "semble", "semblé", "semblé", "", "to seem to"]) + let v = native_list_append(v, ["conclure", "verb", "conclu", "conclus", "conclus", "", "to conclude"]) + let v = native_list_append(v, ["pervertir", "verb", "pervertis", "perverti", "perverti", "", "to lead astray"]) + let v = native_list_append(v, ["conserver", "verb", "conserf", "conservé", "conservé", "", "to keep e.g."]) + let v = native_list_append(v, ["renouveler", "verb", "renouvel", "renouvelé", "renouvelé", "", "to renew"]) + let v = native_list_append(v, ["frequenter", "verb", "frequent", "frequenté", "frequenté", "", "to frequent to"]) + let v = native_list_append(v, ["amender", "verb", "ament", "amendé", "amendé", "", "to correct to"]) + let v = native_list_append(v, ["concevoir", "verb", "conçoif", "conceü", "conceü", "", "to conceive an"]) + let v = native_list_append(v, ["semer", "verb", "sem", "semé", "semé", "", "to sow scatter"]) + let v = native_list_append(v, ["clos", "verb", "clos", "", "", "", "past participle of"]) + let v = native_list_append(v, ["definer", "verb", "defin", "definé", "definé", "", "to finish to"]) + let v = native_list_append(v, ["retarder", "verb", "retart", "retardé", "retardé", "", "to retard to"]) + let v = native_list_append(v, ["paroles", "verb", "paroles", "", "", "", ""]) + let v = native_list_append(v, ["entreprendre", "verb", "entrepreing", "entrepris", "entrepris", "", "to capture to"]) + let v = native_list_append(v, ["plaider", "verb", "plait", "plaidé", "plaidé", "", "alternative form of"]) + let v = native_list_append(v, ["masu", "verb", "masu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["taxer", "verb", "taxe", "taxé", "taxé", "", "to tax to"]) + let v = native_list_append(v, ["doubter", "verb", "doubte", "doubté", "doubté", "", "alternative form of"]) + let v = native_list_append(v, ["clamer", "verb", "claim", "clamé", "clamé", "", "to call out"]) + let v = native_list_append(v, ["levees", "verb", "levees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["oindre", "verb", "oing", "oint", "oint", "", "to anoint"]) + let v = native_list_append(v, ["enrichir", "verb", "enrichis", "enrichi", "enrichi", "", "to enrich"]) + let v = native_list_append(v, ["mercier", "verb", "merci", "mercïé", "mercïé", "", "to thank"]) + let v = native_list_append(v, ["clamant", "verb", "cleimant", "clammant", "claimant", "", "present participle of"]) + let v = native_list_append(v, ["lié", "verb", "lié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["emprunter", "verb", "emprunter", "", "", "", "to borrow"]) + let v = native_list_append(v, ["estimer", "verb", "estim", "estimé", "estimé", "", "to think to"]) + let v = native_list_append(v, ["honorer", "verb", "honor", "honoré", "honoré", "", "to honor"]) + let v = native_list_append(v, ["admettre", "verb", "admet", "admis", "admis", "", "to admit to"]) + let v = native_list_append(v, ["issi", "verb", "issu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hoer", "verb", "houer", "hower", "hauer", "", "to hoe"]) + let v = native_list_append(v, ["opposer", "verb", "opposer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rincer", "verb", "rinz", "rincé", "rincé", "", "to rinse with"]) + let v = native_list_append(v, ["confondre", "verb", "confont", "confondu", "confondu", "", "to destroy to"]) + let v = native_list_append(v, ["fendre", "verb", "fent", "fendu", "fendu", "", "to split"]) + let v = native_list_append(v, ["contrefaire", "verb", "contrefaz", "contrefait", "contrefait", "", "to counterfeit make"]) + let v = native_list_append(v, ["verifier", "verb", "verifi", "verifïé", "verifïé", "", "to verify"]) + let v = native_list_append(v, ["repentir", "verb", "repent", "repenti", "repenti", "", "to repent"]) + let v = native_list_append(v, ["bondir", "verb", "bondis", "bondi", "bondi", "", "to keep to"]) + let v = native_list_append(v, ["tarder", "verb", "tart", "tardé", "tardé", "", "to wait to"]) + let v = native_list_append(v, ["puet", "verb", "puet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["dominer", "verb", "domin", "dominé", "dominé", "", "to dominate"]) + let v = native_list_append(v, ["repairer", "verb", "repair", "repairé", "repairé", "", "alternative form of"]) + let v = native_list_append(v, ["vexer", "verb", "vexe", "vexé", "vexé", "", "to harm to"]) + let v = native_list_append(v, ["garantir", "verb", "garantis", "garanti", "garanti", "", "alternative form of"]) + let v = native_list_append(v, ["pesant", "verb", "pesant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["tressaillir", "verb", "tressail", "tressali", "tressali", "", "to jump over"]) + let v = native_list_append(v, ["touchier", "verb", "touche", "touchié", "touchié", "", "alternative form of"]) + let v = native_list_append(v, ["succeder", "verb", "succet", "succedé", "succedé", "", "to succeed follow"]) + let v = native_list_append(v, ["luisant", "verb", "luisant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["consentir", "verb", "consent", "consenti", "consenti", "", "to consent"]) + let v = native_list_append(v, ["florir", "verb", "floris", "flori", "flori", "", "to blossom to"]) + let v = native_list_append(v, ["embellir", "verb", "embellis", "embelli", "embelli", "", "to make prettier"]) + let v = native_list_append(v, ["repasser", "verb", "repas", "repassé", "repassé", "", "to retraverse to"]) + let v = native_list_append(v, ["fichier", "verb", "fiquier", "", "", "", "fix in place"]) + let v = native_list_append(v, ["blanchir", "verb", "blanchis", "blanchi", "blanchi", "", ""]) + let v = native_list_append(v, ["maudire", "verb", "maudi", "maudiü", "maudiü", "", "to curse"]) + let v = native_list_append(v, ["ramper", "verb", "ramp", "rampé", "rampé", "", "to climb to"]) + let v = native_list_append(v, ["remonter", "verb", "remont", "remonté", "remonté", "", "to remount"]) + let v = native_list_append(v, ["surveiller", "verb", "surveil", "surveillé", "surveillé", "", "alternative form of"]) + let v = native_list_append(v, ["murir", "verb", "muir", "murt", "murt", "", "alternative form of"]) + let v = native_list_append(v, ["relever", "verb", "relief", "relevé", "relevé", "", "to lift again"]) + let v = native_list_append(v, ["brunir", "verb", "brunis", "bruni", "bruni", "", "to polish of"]) + let v = native_list_append(v, ["engloutir", "verb", "englout", "englouti", "englouti", "", "alternative form of"]) + let v = native_list_append(v, ["languir", "verb", "languis", "langui", "langui", "", "to suffer a"]) + let v = native_list_append(v, ["marteler", "verb", "martel", "martelé", "martelé", "", "to strike with"]) + let v = native_list_append(v, ["galant", "verb", "galant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["vewe", "verb", "veue", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["crever", "verb", "crief", "crevé", "crevé", "", "to burst"]) + let v = native_list_append(v, ["batre", "verb", "bat", "batu", "batu", "", "to beat to"]) + let v = native_list_append(v, ["aprendre", "verb", "apreing", "apris", "apris", "", "to learn"]) + let v = native_list_append(v, ["atendre", "verb", "atent", "atendu", "atendu", "", "to wait"]) + let v = native_list_append(v, ["moldre", "verb", "muel", "molu", "molu", "", "alternative form of"]) + let v = native_list_append(v, ["coure", "verb", "cour", "couru", "couru", "", "alternative form of"]) + let v = native_list_append(v, ["complir", "verb", "complis", "compli", "compli", "", "to accomplish to"]) + let v = native_list_append(v, ["sofrir", "verb", "suefre", "sofert", "sofert", "", "to suffer endure"]) + let v = native_list_append(v, ["babiller", "verb", "babil", "babillé", "babillé", "", "alternative form of"]) + let v = native_list_append(v, ["abstenir", "verb", "abstieng", "abstenu", "abstenu", "", "to abstain from"]) + let v = native_list_append(v, ["galoper", "verb", "galop", "galopé", "galopé", "", "to gallop"]) + let v = native_list_append(v, ["amasser", "verb", "amas", "amassé", "amassé", "", "to collect up"]) + let v = native_list_append(v, ["remarquer", "verb", "remarc", "remarqué", "remarqué", "", "to mark to"]) + let v = native_list_append(v, ["satisfaire", "verb", "satisfier", "satisffier", "satisfiier", "", "to satisfy in"]) + let v = native_list_append(v, ["mangier", "verb", "menju", "mangié", "mangié", "", "to eat consume"]) + let v = native_list_append(v, ["barrire", "verb", "barri", "barris", "barris", "", "to make the"]) + let v = native_list_append(v, ["garantie", "verb", "garantie", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["froidir", "verb", "froidis", "froidi", "froidi", "", "to chill to"]) + let v = native_list_append(v, ["hoster", "verb", "host", "hosté", "hosté", "", "alternative form of"]) + let v = native_list_append(v, ["courre", "verb", "cour", "couru", "couru", "", "alternative form of"]) + let v = native_list_append(v, ["converser", "verb", "convers", "conversé", "conversé", "", "to converse discuss"]) + let v = native_list_append(v, ["arrester", "verb", "arrest", "arresté", "arresté", "", "alternative form of"]) + let v = native_list_append(v, ["roter", "verb", "rot", "roté", "roté", "", "to play the"]) + let v = native_list_append(v, ["numer", "verb", "num", "numé", "numé", "", "alternative form of"]) + let v = native_list_append(v, ["bercer", "verb", "berz", "bercé", "bercé", "", "alternative form of"]) + let v = native_list_append(v, ["baissier", "verb", "bais", "baissié", "baissié", "", "to lower."]) + let v = native_list_append(v, ["desmentir", "verb", "desment", "desmenti", "desmenti", "", "to deny"]) + let v = native_list_append(v, ["entrevenir", "verb", "entrevieng", "entrevenu", "entrevenu", "", "to come together"]) + let v = native_list_append(v, ["desvestir", "verb", "desvest", "desvesti", "desvesti", "", "to undress"]) + let v = native_list_append(v, ["revestir", "verb", "revest", "revesti", "revesti", "", "to adorn to"]) + let v = native_list_append(v, ["chantant", "verb", "chantant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["volez", "verb", "volez", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["suant", "verb", "suant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["frire", "verb", "fris", "frit", "frit", "", "to fry"]) + let v = native_list_append(v, ["liés", "verb", "liés", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["enseveli", "verb", "enseveli", "", "", "", "past participle of"]) + let v = native_list_append(v, ["feni", "verb", "feni", "", "", "", "past participle of"]) + let v = native_list_append(v, ["oint", "verb", "oint", "", "", "", "past participle of"]) + let v = native_list_append(v, ["levés", "verb", "levés", "", "", "", "inflection of lever"]) + let v = native_list_append(v, ["celé", "verb", "celé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["esté", "verb", "esté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["estre", "verb", "sui", "esté", "esté", "", "to be"]) + let v = native_list_append(v, ["conquis", "verb", "conquis", "", "", "", "past participle of"]) + let v = native_list_append(v, ["errer", "verb", "oir", "erré", "erré", "", "to walk to"]) + let v = native_list_append(v, ["carier", "verb", "cari", "carïé", "carïé", "", "to carry move"]) + let v = native_list_append(v, ["accroupir", "verb", "accroupis", "accroupi", "accroupi", "", "to discredit to"]) + let v = native_list_append(v, ["lacer", "verb", "laz", "lacé", "lacé", "", "alternative form of"]) + let v = native_list_append(v, ["survivre", "verb", "survif", "survescu", "survescu", "", "to survive to"]) + let v = native_list_append(v, ["voient", "verb", "veient", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["plaisant", "verb", "pleisant", "plesant", "plaizant", "", "present participle of"]) + let v = native_list_append(v, ["plaise", "verb", "plaise", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["taisant", "verb", "taisant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["enseigner", "verb", "enseing", "enseigné", "enseigné", "", "alternative form of"]) + let v = native_list_append(v, ["saluer", "verb", "salu", "salüé", "salüé", "", "to greet"]) + let v = native_list_append(v, ["coper", "verb", "cop", "copé", "copé", "", "to cut"]) + let v = native_list_append(v, ["lacier", "verb", "laz", "lacié", "lacié", "", "to lace tie"]) + let v = native_list_append(v, ["armer", "verb", "arm", "armé", "armé", "", "to arm equip"]) + let v = native_list_append(v, ["galer", "verb", "gal", "galé", "galé", "", "to rub to"]) + let v = native_list_append(v, ["entretenir", "verb", "m'entretieng", "entretenu", "entretenu", "", "to support one"]) + let v = native_list_append(v, ["expeller", "verb", "expel", "expellé", "expellé", "", "to expel to"]) + let v = native_list_append(v, ["rumput", "verb", "rumpu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["feindre", "verb", "feing", "feint", "feint", "", "to feign"]) + let v = native_list_append(v, ["deviser", "verb", "devis", "devisé", "devisé", "", "to divide split"]) + let v = native_list_append(v, ["enricher", "verb", "enriche", "enriché", "enriché", "", "alternative form of"]) + let v = native_list_append(v, ["contester", "verb", "contest", "contesté", "contesté", "", "to contest to"]) + let v = native_list_append(v, ["vaunter", "verb", "vaunt", "vaunté", "vaunté", "", "alternative form of"]) + let v = native_list_append(v, ["reprover", "verb", "repruef", "reprové", "reprové", "", "to prove to"]) + let v = native_list_append(v, ["quester", "verb", "quest", "questé", "questé", "", "to search for"]) + let v = native_list_append(v, ["corrompre", "verb", "corromp", "corrot", "corrot", "", "to corrupt"]) + let v = native_list_append(v, ["rebeller", "verb", "rebel", "rebellé", "rebellé", "", "to rebel"]) + let v = native_list_append(v, ["flater", "verb", "flat", "flaté", "flaté", "", "to flatter to"]) + let v = native_list_append(v, ["huer", "verb", "hu", "hüé", "hüé", "", "to cry out"]) + let v = native_list_append(v, ["trover", "verb", "truis", "trové", "trové", "", "to find"]) + let v = native_list_append(v, ["confire", "verb", "confis", "confit", "confit", "", "to preserve food"]) + let v = native_list_append(v, ["quere", "verb", "quier", "quis", "quis", "", "alternative form of"]) + let v = native_list_append(v, ["lasser", "verb", "lasser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["macter", "verb", "mact", "macté", "macté", "", "to kill to"]) + let v = native_list_append(v, ["engendrer", "verb", "engendre", "engendré", "engendré", "", "to engender to"]) + let v = native_list_append(v, ["monstrer", "verb", "monstre", "monstré", "monstré", "", "to show to"]) + let v = native_list_append(v, ["veu", "verb", "veu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["orer", "verb", "eur", "oré", "oré", "", "to pray"]) + let v = native_list_append(v, ["mostré", "verb", "mostré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["abeant", "verb", "abeant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["curre", "verb", "cur", "curu", "curu", "", "alternative form of"]) + let v = native_list_append(v, ["baer", "verb", "be", "baé", "baé", "", "alternative form of"]) + let v = native_list_append(v, ["doné", "verb", "doné", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sufler", "verb", "sufle", "suflé", "suflé", "", "to blow"]) + let v = native_list_append(v, ["vaster", "verb", "vast", "vasté", "vasté", "", "alternative form of"]) + let v = native_list_append(v, ["gaster", "verb", "gast", "gasté", "gasté", "", "to waste not"]) + let v = native_list_append(v, ["recoverer", "verb", "recover", "recoveré", "recoveré", "", "alternative form of"]) + let v = native_list_append(v, ["piller", "verb", "pil", "pillé", "pillé", "", "alternative form of"]) + let v = native_list_append(v, ["conceiver", "verb", "conceif", "conceü", "conceü", "", "alternative form of"]) + let v = native_list_append(v, ["pissier", "verb", "pis", "pissié", "pissié", "", "to piss to"]) + let v = native_list_append(v, ["panser", "verb", "pans", "pansé", "pansé", "", "alternative form of"]) + let v = native_list_append(v, ["braire", "verb", "brai", "brait", "brait", "", "to bray"]) + let v = native_list_append(v, ["compeller", "verb", "compel", "compellé", "compellé", "", "to compel to"]) + let v = native_list_append(v, ["derver", "verb", "derf", "dervé", "dervé", "", "alternative form of"]) + let v = native_list_append(v, ["prover", "verb", "pruef", "prové", "prové", "", "to prove"]) + let v = native_list_append(v, ["assimiler", "verb", "assimil", "assimilé", "assimilé", "", "to assimilate to"]) + let v = native_list_append(v, ["returner", "verb", "return", "returné", "returné", "", "alternative form of"]) + let v = native_list_append(v, ["reverser", "verb", "revers", "reversé", "reversé", "", "to invert turn"]) + let v = native_list_append(v, ["deit", "verb", "deit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["moquer", "verb", "me moc", "moqué", "moqué", "", "to mock to"]) + let v = native_list_append(v, ["tormenter", "verb", "torment", "tormenté", "tormenté", "", "to torture"]) + let v = native_list_append(v, ["s'enfuir", "verb", "m'enfui", "enfoï", "enfoï", "", "to flee to"]) + let v = native_list_append(v, ["coveter", "verb", "covoit", "coveté", "coveté", "", "alternative form of"]) + let v = native_list_append(v, ["furnir", "verb", "furnis", "furni", "furni", "", "alternative form of"]) + let v = native_list_append(v, ["fluer", "verb", "flu", "flüé", "flüé", "", "to flow"]) + let v = native_list_append(v, ["buer", "verb", "bu", "büé", "büé", "", "to wash clean"]) + let v = native_list_append(v, ["cicatriser", "verb", "cicatris", "cicatrisé", "cicatrisé", "", "alternative form of"]) + let v = native_list_append(v, ["enfler", "verb", "enfle", "enflé", "enflé", "", "to swell"]) + let v = native_list_append(v, ["urer", "verb", "ur", "uré", "uré", "", "alternative form of"]) + let v = native_list_append(v, ["certifier", "verb", "certifi", "certifïé", "certifïé", "", "to certify to"]) + let v = native_list_append(v, ["repeter", "verb", "repet", "repeté", "repeté", "", "to repeat"]) + let v = native_list_append(v, ["aviser", "verb", "avis", "avisé", "avisé", "", "to recognize"]) + let v = native_list_append(v, ["confesser", "verb", "confes", "confessé", "confessé", "", "to confess"]) + let v = native_list_append(v, ["occire", "verb", "occi", "occis", "occis", "", "alternative form of"]) + let v = native_list_append(v, ["trembler", "verb", "tremble", "tremblé", "tremblé", "", "to tremble"]) + let v = native_list_append(v, ["ruiner", "verb", "ruin", "ruiné", "ruiné", "", "to destroy to"]) + let v = native_list_append(v, ["pulverizer", "verb", "pulveris", "pulverizé", "pulverizé", "", "to pulverize turn"]) + let v = native_list_append(v, ["administrer", "verb", "administre", "administré", "administré", "", "to administer"]) + let v = native_list_append(v, ["doner", "verb", "doing", "doné", "doné", "", "to give"]) + let v = native_list_append(v, ["manoir", "verb", "maing", "manu", "manu", "", "to stay to"]) + let v = native_list_append(v, ["trair", "verb", "traïs", "traï", "traï", "", "to betray to"]) + let v = native_list_append(v, ["randu", "verb", "randu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cauteriser", "verb", "cauteris", "cauterisé", "cauterisé", "", "to cauterize"]) + let v = native_list_append(v, ["falir", "verb", "fail", "fali", "fali", "", "to fail"]) + let v = native_list_append(v, ["conforter", "verb", "confort", "conforté", "conforté", "", "to reassure"]) + let v = native_list_append(v, ["savourer", "verb", "saveur", "savouré", "savouré", "", "to give taste"]) + let v = native_list_append(v, ["vaillant", "verb", "no-table-tags", "fro-decl-adj-mf", "vaillants", "", "present participle of"]) + let v = native_list_append(v, ["blasmer", "verb", "blasme", "blasmé", "blasmé", "", "to blame"]) + let v = native_list_append(v, ["aveir", "verb", "ai", "eü", "eü", "", "alternative form of"]) + let v = native_list_append(v, ["saveir", "verb", "sai", "seü", "seü", "", "alternative form of"]) + let v = native_list_append(v, ["esbahir", "verb", "esbahis", "esbahi", "esbahi", "", "to astonish"]) + let v = native_list_append(v, ["escrire", "verb", "escrif", "escrit", "escrit", "", "alternative infinitive of"]) + let v = native_list_append(v, ["vëoir", "verb", "voi", "veü", "veü", "", "alternative form of"]) + let v = native_list_append(v, ["veoir", "verb", "voi", "veü", "veü", "", "to see"]) + let v = native_list_append(v, ["oëz", "verb", "oëz", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gouster", "verb", "goust", "gousté", "gousté", "", "alternative form of"]) + let v = native_list_append(v, ["translater", "verb", "translat", "translaté", "translaté", "", "to translate"]) + let v = native_list_append(v, ["issir", "verb", "is", "eissu", "eissu", "", "to leave to"]) + let v = native_list_append(v, ["enroller", "verb", "enrol", "enrollé", "enrollé", "", "to enroll"]) + let v = native_list_append(v, ["pourparler", "verb", "pourparol", "pourparlé", "pourparlé", "", "to talk about"]) + let v = native_list_append(v, ["parfaire", "verb", "parfaz", "parfait", "parfait", "", "to perfect"]) + let v = native_list_append(v, ["trepasser", "verb", "trepas", "trepassé", "trepassé", "", "alternative form of"]) + let v = native_list_append(v, ["respondre", "verb", "respoing", "respondu", "respondu", "", "reply respond"]) + let v = native_list_append(v, ["remembrer", "verb", "remembre", "remembré", "remembré", "", "to remind"]) + let v = native_list_append(v, ["joster", "verb", "jost", "josté", "josté", "", "to joust compete"]) + let v = native_list_append(v, ["torner", "verb", "torn", "torné", "torné", "", "to turn"]) + let v = native_list_append(v, ["veir", "verb", "vei", "veü", "veü", "", "Alternative infinitive of"]) + let v = native_list_append(v, ["abaissier", "verb", "abais", "abaissié", "abaissié", "", "to prostrate oneself"]) + let v = native_list_append(v, ["abonder", "verb", "abont", "abondé", "abondé", "", "to abound be"]) + let v = native_list_append(v, ["cultiver", "verb", "cultif", "cultivé", "cultivé", "", "to cultivate"]) + let v = native_list_append(v, ["mirer", "verb", "mir", "miré", "miré", "", "to look at"]) + let v = native_list_append(v, ["somes", "verb", "somes", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["abrier", "verb", "abri", "abrïé", "abrïé", "", "to shelter"]) + let v = native_list_append(v, ["abscondre", "verb", "abscont", "abscondu", "abscondu", "", "to hide to"]) + let v = native_list_append(v, ["demonstrer", "verb", "demonstre", "demonstré", "demonstré", "", "alternative form of"]) + let v = native_list_append(v, ["resigner", "verb", "resing", "resigné", "resigné", "", "to resign give"]) + let v = native_list_append(v, ["percevoir", "verb", "perçoif", "perceü", "perceü", "", "to notice to"]) + let v = native_list_append(v, ["apeler", "verb", "apel", "apelé", "apelé", "", "to call to"]) + let v = native_list_append(v, ["desver", "verb", "desve", "desvé", "desvé", "", "to go insane"]) + let v = native_list_append(v, ["arouser", "verb", "arous", "arousé", "arousé", "", "to water a"]) + let v = native_list_append(v, ["emprisonner", "verb", "emprison", "emprisonné", "emprisonné", "", "to imprison"]) + let v = native_list_append(v, ["endurer", "verb", "endur", "enduré", "enduré", "", "to suffer to"]) + let v = native_list_append(v, ["succomber", "verb", "succomp", "succombé", "succombé", "", "to succumb"]) + let v = native_list_append(v, ["poindre", "verb", "poing", "point", "point", "", "to puncture to"]) + let v = native_list_append(v, ["noircir", "verb", "noircis", "noirci", "noirci", "", "to blacken become"]) + let v = native_list_append(v, ["enraciner", "verb", "enracin", "enraciné", "enraciné", "", "to enroot of"]) + let v = native_list_append(v, ["vanter", "verb", "vant", "vanté", "vanté", "", "to boast"]) + let v = native_list_append(v, ["brandir", "verb", "brandis", "brandi", "brandi", "", "to brandish a"]) + let v = native_list_append(v, ["obscurcir", "verb", "obscurcis", "obscurci", "obscurci", "", "to darken to"]) + let v = native_list_append(v, ["curant", "verb", "curant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["calant", "verb", "calant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["savorer", "verb", "saveur", "savoré", "savoré", "", "to exhale"]) + let v = native_list_append(v, ["sapurer", "verb", "sapur", "sapuré", "sapuré", "", "alternative form of"]) + let v = native_list_append(v, ["covrir", "verb", "cuevre", "covert", "covert", "", "to cover"]) + let v = native_list_append(v, ["ovrir", "verb", "olvrir", "ouvrir", "uvrir", "", "to open"]) + let v = native_list_append(v, ["descovrir", "verb", "descuevre", "descovert", "descovert", "", "to uncover to"]) + let v = native_list_append(v, ["savoré", "verb", "savoré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["maleïr", "verb", "maleï", "maleoit", "maleoit", "", "alternative form of"]) + let v = native_list_append(v, ["ẽ", "verb", "ẽ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["assaillir", "verb", "assail", "assali", "assali", "", "alternative infinitive of"]) + let v = native_list_append(v, ["corroder", "verb", "corrot", "corrodé", "corrodé", "", "to corrode"]) + let v = native_list_append(v, ["prosperer", "verb", "prosper", "prosperé", "prosperé", "", "to favor"]) + let v = native_list_append(v, ["creissant", "verb", "croisant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["muer", "verb", "mu", "müé", "müé", "", "to move"]) + let v = native_list_append(v, ["escouter", "verb", "escout", "escouté", "escouté", "", "to listen to"]) + let v = native_list_append(v, ["abatre", "verb", "abat", "abatu", "abatu", "", "to knock over"]) + let v = native_list_append(v, ["ceindre", "verb", "ceing", "ceint", "ceint", "", "to put on"]) + let v = native_list_append(v, ["proclamer", "verb", "proclaim", "proclamé", "proclamé", "", "to proclaim to"]) + let v = native_list_append(v, ["bastir", "verb", "bastis", "basti", "basti", "", "to build to"]) + let v = native_list_append(v, ["cuider", "verb", "cuit", "cuidé", "cuidé", "", "alternative form of"]) + let v = native_list_append(v, ["oiez", "verb", "oiez", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["oï", "verb", "oï", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jurés", "verb", "jurés", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["comant", "verb", "comant", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["vestus", "verb", "vestus", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["vestu", "verb", "vestu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["comander", "verb", "comant", "comandé", "comandé", "", "to command to"]) + let v = native_list_append(v, ["cunter", "verb", "cunt", "cunté", "cunté", "", "alternative form of"]) + let v = native_list_append(v, ["couchier", "verb", "couche", "couchié", "couchié", "", "lay down"]) + let v = native_list_append(v, ["lessier", "verb", "les", "lessié", "lessié", "", "alternative form of"]) + let v = native_list_append(v, ["descovert", "verb", "descovert", "", "", "", "past participle of"]) + let v = native_list_append(v, ["oïr", "verb", "oi", "oï", "oï", "", "alternative spelling of"]) + let v = native_list_append(v, ["replier", "verb", "repli", "replïé", "replïé", "", "alternative form of"]) + let v = native_list_append(v, ["mesler", "verb", "mesle", "meslé", "meslé", "", "to mix to"]) + let v = native_list_append(v, ["obumbrer", "verb", "obumbre", "obumbré", "obumbré", "", "to obumbrate to"]) + let v = native_list_append(v, ["gaaigner", "verb", "gaaing", "gaaigné", "gaaigné", "", "alternative form of"]) + let v = native_list_append(v, ["gaaignier", "verb", "gaaing", "gaaignié", "gaaignié", "", "alternative form of"]) + let v = native_list_append(v, ["mostrer", "verb", "mostre", "mostré", "mostré", "", "alternative form of"]) + let v = native_list_append(v, ["destorner", "verb", "destorn", "destorné", "destorné", "", "to turn away"]) + let v = native_list_append(v, ["retorner", "verb", "retorn", "retorné", "retorné", "", "to return go"]) + let v = native_list_append(v, ["nomer", "verb", "nom", "nomé", "nomé", "", "to name give"]) + let v = native_list_append(v, ["veü", "verb", "veü", "", "", "", "past participle of"]) + let v = native_list_append(v, ["destorné", "verb", "destorné", "", "", "", "past participle of"]) + let v = native_list_append(v, ["plorer", "verb", "pleur", "ploré", "ploré", "", "to cry shed"]) + let v = native_list_append(v, ["esbahi", "verb", "esbahi", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ploré", "verb", "ploré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["voloir", "verb", "voil", "volu", "volu", "", "to want"]) + let v = native_list_append(v, ["voleir", "verb", "voil", "volu", "volu", "", "alternative form of"]) + let v = native_list_append(v, ["monstré", "verb", "monstré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["demonstré", "verb", "demonstré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["trové", "verb", "trové", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lessié", "verb", "lessié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["couchié", "verb", "couchié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mengier", "verb", "manju", "mengié", "mengié", "", "alternative form of"]) + let v = native_list_append(v, ["chacier", "verb", "chaz", "chacié", "chacié", "", "to hunt to"]) + let v = native_list_append(v, ["chastier", "verb", "chasti", "chastïé", "chastïé", "", "to punish"]) + let v = native_list_append(v, ["chastié", "verb", "chastié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["chacié", "verb", "chacié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cuidié", "verb", "cuidié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cuidier", "verb", "cuit", "cuidié", "cuidié", "", "to think to"]) + let v = native_list_append(v, ["bouter", "verb", "bout", "bouté", "bouté", "", "to strike to"]) + let v = native_list_append(v, ["estouffler", "verb", "estouffle", "estoufflé", "estoufflé", "", "to blow"]) + let v = native_list_append(v, ["estoffer", "verb", "estof", "estoffé", "estoffé", "", "to decorate garnish"]) + let v = native_list_append(v, ["vuidier", "verb", "vuit", "vuidié", "vuidié", "", "to empty"]) + let v = native_list_append(v, ["estofer", "verb", "estof", "estofé", "estofé", "", "alternative form of"]) + let v = native_list_append(v, ["porsuir", "verb", "porsui", "porsuivi", "porsuivi", "", "to pursue to"]) + let v = native_list_append(v, ["blasme", "verb", "blasme", "", "", "", "inflection of blasmer"]) + let v = native_list_append(v, ["blasmé", "verb", "blasmé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aler", "verb", "vois", "alé", "alé", "", "to go move"]) + let v = native_list_append(v, ["sambler", "verb", "samble", "samblé", "samblé", "", "alternative form of"]) + let v = native_list_append(v, ["baisier", "verb", "bais", "baisié", "baisié", "", "to kiss"]) + let v = native_list_append(v, ["atandre", "verb", "atant", "atandu", "atandu", "", "alternative form of"]) + let v = native_list_append(v, ["gaite", "verb", "gaite", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["encombrer", "verb", "encombre", "encombré", "encombré", "", "to bother to"]) + let v = native_list_append(v, ["despoillier", "verb", "despoil", "despoillié", "despoillié", "", "to strip to"]) + let v = native_list_append(v, ["gesir", "verb", "gis", "geü", "geü", "", "to lie down"]) + let v = native_list_append(v, ["gaber", "verb", "gap", "gabé", "gabé", "", "to joke to"]) + let v = native_list_append(v, ["eschaufer", "verb", "eschauf", "eschaufé", "eschaufé", "", "to heat to"]) + let v = native_list_append(v, ["saillir", "verb", "sail", "sali", "sali", "", "alternative infinitive of"]) + let v = native_list_append(v, ["resver", "verb", "resve", "resvé", "resvé", "", "to hallucinate to"]) + let v = native_list_append(v, ["ravir", "verb", "ravis", "ravi", "ravi", "", "to ravish to"]) + let v = native_list_append(v, ["sovenir", "verb", "sovieng", "sovenu", "sovenu", "", "to remember to"]) + let v = native_list_append(v, ["haster", "verb", "hast", "hasté", "hasté", "", "to hurry up"]) + let v = native_list_append(v, ["moillier", "verb", "moil", "moillié", "moillié", "", "to wet make"]) + let v = native_list_append(v, ["trenchier", "verb", "trenche", "trenchié", "trenchié", "", "to cut make"]) + let v = native_list_append(v, ["estoit", "verb", "estoit", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["soions", "verb", "soions", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["soiez", "verb", "soiez", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["aguisier", "verb", "aguis", "aguisié", "aguisié", "", "to sharpen a"]) + let v = native_list_append(v, ["chastrer", "verb", "chastre", "chastré", "chastré", "", "to punish"]) + let v = native_list_append(v, ["cumant", "verb", "cumant", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["respundre", "verb", "respunt", "respundu", "respundu", "", "alternative form of"]) + let v = native_list_append(v, ["esmer", "verb", "esme", "esmé", "esmé", "", "to estimate to"]) + let v = native_list_append(v, ["ocire", "verb", "oci", "ocis", "ocis", "", "kill"]) + let v = native_list_append(v, ["desfaire", "verb", "desfaz", "desfait", "desfait", "", "to undo"]) + let v = native_list_append(v, ["valeir", "verb", "vail", "valu", "valu", "", "alternative form of"]) + let v = native_list_append(v, ["cumander", "verb", "cumant", "cumandé", "cumandé", "", "alternative form of"]) + let v = native_list_append(v, ["corant", "verb", "corant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["cumancier", "verb", "cumanz", "cumancié", "cumancié", "", "alternative form of"]) + let v = native_list_append(v, ["susfrir", "verb", "susfre", "susfert", "susfert", "", "alternative form of"]) + let v = native_list_append(v, ["cumbatre", "verb", "cumbat", "cumbatu", "cumbatu", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["duner", "verb", "duing", "duné", "duné", "", "alternative form of"]) + let v = native_list_append(v, ["laiser", "verb", "lais", "laisé", "laisé", "", "alternative form of"]) + let v = native_list_append(v, ["veient", "verb", "voient", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["truver", "verb", "truis", "truvé", "truvé", "", "alternative form of"]) + let v = native_list_append(v, ["recumencier", "verb", "recumenz", "recumencié", "recumencié", "", "to restart start"]) + let v = native_list_append(v, ["cumencier", "verb", "cumenz", "cumencié", "cumencié", "", "alternative form of"]) + let v = native_list_append(v, ["otroier", "verb", "otri", "otroié", "otroié", "", "alternative form of"]) + let v = native_list_append(v, ["desmembrer", "verb", "desmembre", "desmembré", "desmembré", "", "to dismember remove"]) + let v = native_list_append(v, ["guarir", "verb", "guaris", "guari", "guari", "", "to protect to"]) + let v = native_list_append(v, ["reguarder", "verb", "reguart", "reguardé", "reguardé", "", "to look at"]) + let v = native_list_append(v, ["garnir", "verb", "garnis", "garni", "garni", "", "alternative form of"]) + let v = native_list_append(v, ["guarnir", "verb", "guarnis", "guarni", "guarni", "", "to protect"]) + let v = native_list_append(v, ["garir", "verb", "garis", "gari", "gari", "", "alternative form of"]) + let v = native_list_append(v, ["esveiller", "verb", "esveil", "esveillé", "esveillé", "", "alternative form of"]) + let v = native_list_append(v, ["boivre", "verb", "boif", "beü", "beü", "", "to drink"]) + let v = native_list_append(v, ["establir", "verb", "establis", "establi", "establi", "", "to establish"]) + let v = native_list_append(v, ["esguarder", "verb", "esguart", "esguardé", "esguardé", "", "to look at"]) + let v = native_list_append(v, ["juner", "verb", "jun", "juné", "juné", "", "alternative form of"]) + let v = native_list_append(v, ["reconoistre", "verb", "reconois", "reconeü", "reconeü", "", "to recognize"]) + let v = native_list_append(v, ["enbracer", "verb", "enbraz", "enbracé", "enbracé", "", "alternative form of"]) + let v = native_list_append(v, ["cunseiller", "verb", "cunseil", "cunseillé", "cunseillé", "", "alternative form of"]) + let v = native_list_append(v, ["arester", "verb", "arest", "aresté", "aresté", "", "to stop"]) + let v = native_list_append(v, ["vengier", "verb", "venge", "vengié", "vengié", "", "to avenge to"]) + let v = native_list_append(v, ["espier", "verb", "espi", "espïé", "espïé", "", "to watch"]) + let v = native_list_append(v, ["ublier", "verb", "ubli", "ublïé", "ublïé", "", "alternative form of"]) + let v = native_list_append(v, ["uvrir", "verb", "uvrir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["plurer", "verb", "pleur", "pluré", "pluré", "", "alternative form of"]) + let v = native_list_append(v, ["acorder", "verb", "acort", "acordé", "acordé", "", "to concede to"]) + let v = native_list_append(v, ["fuiant", "verb", "fuiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["heser", "verb", "heser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chaloir", "verb", "no-table-tags", "fro-conj-chaloir", "avoir chalu", "", "to heat"]) + let v = native_list_append(v, ["querre", "verb", "quier", "quis", "quis", "", "to seek to"]) + let v = native_list_append(v, ["querant", "verb", "querant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["suner", "verb", "sun", "suné", "suné", "", "alternative form of"]) + let v = native_list_append(v, ["targer", "verb", "targe", "targé", "targé", "", "alternative form of"]) + let v = native_list_append(v, ["reclamer", "verb", "reclaim", "reclamé", "reclamé", "", "to implore to"]) + let v = native_list_append(v, ["recleimer", "verb", "recleim", "recleimé", "recleimé", "", "alternative form of"]) + let v = native_list_append(v, ["pleindre", "verb", "pleing", "pleint", "pleint", "", "alternative form of"]) + let v = native_list_append(v, ["veincre", "verb", "venc", "vencu", "vencu", "", "alternative infinitive of"]) + let v = native_list_append(v, ["cumbatant", "verb", "combatant", "combataunt", "", "", "present participle of"]) + let v = native_list_append(v, ["muser", "verb", "mus", "musé", "musé", "", "to ponder to"]) + let v = native_list_append(v, ["asembler", "verb", "asemble", "asemblé", "asemblé", "", "to collect up"]) + let v = native_list_append(v, ["ardant", "verb", "ardant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ardoir", "verb", "art", "ars", "ars", "", "to burn set"]) + let v = native_list_append(v, ["arestant", "verb", "arestant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ardeir", "verb", "art", "ars", "ars", "", "alternative form of"]) + let v = native_list_append(v, ["drecer", "verb", "drez", "drecé", "drecé", "", "alternative form of"]) + let v = native_list_append(v, ["redrecer", "verb", "redrez", "redrecé", "redrecé", "", "alternative form of"]) + let v = native_list_append(v, ["desfere", "verb", "desfaz", "desfet", "desfet", "", "alternative form of"]) + let v = native_list_append(v, ["guerreier", "verb", "guerri", "guerreié", "guerreié", "", "alternative form of"]) + let v = native_list_append(v, ["nonchaloir", "verb", "nonchaloir", "", "", "", "to ignore to"]) + let v = native_list_append(v, ["eissir", "verb", "is", "eissu", "eissu", "", "alternative form of"]) + let v = native_list_append(v, ["nonmer", "verb", "nonme", "nonmé", "nonmé", "", "alternative form of"]) + let v = native_list_append(v, ["cuvrir", "verb", "cuevre", "cuvert", "cuvert", "", "alternative form of"]) + let v = native_list_append(v, ["delaier", "verb", "delai", "delaiié", "delaiié", "", "to hesitate to"]) + let v = native_list_append(v, ["cuvert", "verb", "cuvert", "", "", "", "past participle of"]) + let v = native_list_append(v, ["juindre", "verb", "juing", "juint", "juint", "", "alternative form of"]) + let v = native_list_append(v, ["herberger", "verb", "herberge", "herbergé", "herbergé", "", "alternative form of"]) + let v = native_list_append(v, ["desherberger", "verb", "desherberge", "desherbergé", "desherbergé", "", "alternative form of"]) + let v = native_list_append(v, ["parduner", "verb", "parduing", "parduné", "parduné", "", "alternative form of"]) + let v = native_list_append(v, ["trespassé", "verb", "trespassé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["suffrir", "verb", "sueffre", "suffert", "suffert", "", "alternative form of"]) + let v = native_list_append(v, ["vencre", "verb", "venc", "vencu", "vencu", "", "alternative form of"]) + let v = native_list_append(v, ["vencu", "verb", "vencu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rumpre", "verb", "rump", "rut", "rut", "", "alternative form of"]) + let v = native_list_append(v, ["quidier", "verb", "quit", "quidié", "quidié", "", "alternative form of"]) + let v = native_list_append(v, ["peccher", "verb", "pecche", "pecché", "pecché", "", "alternative form of"]) + let v = native_list_append(v, ["aprochier", "verb", "aproche", "aprochié", "aprochié", "", "to approach"]) + let v = native_list_append(v, ["escorchier", "verb", "escorche", "escorchié", "escorchié", "", "to debark remove"]) + let v = native_list_append(v, ["atachier", "verb", "atache", "atachié", "atachié", "", "to attach"]) + let v = native_list_append(v, ["kerre", "verb", "kier", "kis", "kis", "", "alternative form of"]) + let v = native_list_append(v, ["resjoir", "verb", "me resjoi", "resjoï", "resjoï", "", "to take pleasure"]) + let v = native_list_append(v, ["traïr", "verb", "traïs", "traï", "traï", "", "alternative form of"]) + let v = native_list_append(v, ["geter", "verb", "get", "geté", "geté", "", "alternative form of"]) + let v = native_list_append(v, ["enseler", "verb", "ensel", "enselé", "enselé", "", "to saddle put"]) + let v = native_list_append(v, ["requerre", "verb", "requier", "requis", "requis", "", "to ask"]) + let v = native_list_append(v, ["couster", "verb", "coust", "cousté", "cousté", "", "alternative form of"]) + let v = native_list_append(v, ["esploitier", "verb", "esploit", "esploitié", "esploitié", "", "to use to"]) + let v = native_list_append(v, ["esploiter", "verb", "esploit", "esploité", "esploité", "", "alternative form of"]) + let v = native_list_append(v, ["tesmoingner", "verb", "tesmoing", "tesmoingné", "tesmoingné", "", "alternative form of"]) + let v = native_list_append(v, ["quidié", "verb", "quidié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["resjoï", "verb", "resjoï", "", "", "", "past participle of"]) + let v = native_list_append(v, ["revertir", "verb", "revert", "reverti", "reverti", "", "to return go"]) + let v = native_list_append(v, ["envoier", "verb", "envoi", "envoié", "envoié", "", "alternative form of"]) + let v = native_list_append(v, ["emploier", "verb", "empli", "emploié", "emploié", "", "alternative form of"]) + let v = native_list_append(v, ["escuser", "verb", "escus", "escusé", "escusé", "", "to excuse oneself"]) + let v = native_list_append(v, ["deffendre", "verb", "deffent", "deffendu", "deffendu", "", "to defend"]) + let v = native_list_append(v, ["taisir", "verb", "taz", "teü", "teü", "", "to shut up"]) + let v = native_list_append(v, ["reconter", "verb", "recont", "reconté", "reconté", "", "to tell to"]) + let v = native_list_append(v, ["bangnier", "verb", "baing", "bangnié", "bangnié", "", "alternative form of"]) + let v = native_list_append(v, ["asalir", "verb", "asail", "asali", "asali", "", "alternative spelling of"]) + let v = native_list_append(v, ["supplanter", "verb", "supplant", "supplanté", "supplanté", "", "to supplant"]) + let v = native_list_append(v, ["vescu", "verb", "vescu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["desplere", "verb", "desplaz", "despleü", "despleü", "", "alternative form of"]) + let v = native_list_append(v, ["espouser", "verb", "espeus", "espousé", "espousé", "", "to marry"]) + let v = native_list_append(v, ["alaitier", "verb", "alait", "alaitié", "alaitié", "", "to breastfeed"]) + let v = native_list_append(v, ["movoir", "verb", "muef", "meü", "meü", "", "to move"]) + let v = native_list_append(v, ["cerchier", "verb", "cerche", "cerchié", "cerchié", "", "to search to"]) + let v = native_list_append(v, ["cerchié", "verb", "cerchié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cerchant", "verb", "cerchant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["chevauchier", "verb", "chevauche", "chevauchié", "chevauchié", "", "to mount a"]) + let v = native_list_append(v, ["chevalchier", "verb", "chevalche", "chevalchié", "chevalchié", "", "alternative form of"]) + let v = native_list_append(v, ["resoner", "verb", "reson", "resoné", "resoné", "", "to resonate to"]) + let v = native_list_append(v, ["acointier", "verb", "acoint", "acointié", "acointié", "", "get to know"]) + let v = native_list_append(v, ["anuier", "verb", "anui", "anuié", "anuié", "", "alternative form of"]) + let v = native_list_append(v, ["ensegner", "verb", "enseing", "ensegné", "ensegné", "", "alternative form of"]) + let v = native_list_append(v, ["plourer", "verb", "pleur", "plouré", "plouré", "", "alternative form of"]) + let v = native_list_append(v, ["remanoir", "verb", "remaing", "remanu", "remanu", "", "to stay to"]) + let v = native_list_append(v, ["croistre", "verb", "crois", "creü", "creü", "", "grow"]) + let v = native_list_append(v, ["traï", "verb", "traï", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ariver", "verb", "arif", "arivé", "arivé", "", "to arrive at"]) + let v = native_list_append(v, ["pechier", "verb", "peche", "pechié", "pechié", "", "to sin"]) + let v = native_list_append(v, ["achater", "verb", "achat", "achaté", "achaté", "", "alternative form of"]) + let v = native_list_append(v, ["aporter", "verb", "aport", "aporté", "aporté", "", "to bring"]) + let v = native_list_append(v, ["carger", "verb", "carge", "cargé", "cargé", "", "alternative form of"]) + let v = native_list_append(v, ["avenant", "verb", "avenant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["conquerre", "verb", "conquier", "conquis", "conquis", "", "to conquer to"]) + let v = native_list_append(v, ["espandre", "verb", "espant", "espandu", "espandu", "", "to spread out"]) + let v = native_list_append(v, ["espaundre", "verb", "espaunt", "espaundu", "espaundu", "", "alternative form of"]) + let v = native_list_append(v, ["rapeler", "verb", "rapel", "rapelé", "rapelé", "", "to remember to"]) + let v = native_list_append(v, ["pasmer", "verb", "pasme", "pasmé", "pasmé", "", "to walk around"]) + let v = native_list_append(v, ["encontrer", "verb", "encontre", "encontré", "encontré", "", "to meet to"]) + let v = native_list_append(v, ["aidier", "verb", "aiu", "aidié", "aidié", "", "to help"]) + let v = native_list_append(v, ["voiant", "verb", "voiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["plaidier", "verb", "plait", "plaidié", "plaidié", "", "to implore to"]) + let v = native_list_append(v, ["compleindre", "verb", "compleing", "compleint", "compleint", "", "to have compassion"]) + let v = native_list_append(v, ["cunfundre", "verb", "cunfunt", "fondu", "fondu", "", "alternative form of"]) + let v = native_list_append(v, ["compleint", "verb", "compleynt", "cumplaint", "", "", "past participle of"]) + let v = native_list_append(v, ["remanant", "verb", "remanant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["demener", "verb", "demein", "demené", "demené", "", "to lead a"]) + let v = native_list_append(v, ["covri", "verb", "covert", "", "", "", "past participle of"]) + let v = native_list_append(v, ["oblier", "verb", "obli", "oblïé", "oblïé", "", "to forget"]) + let v = native_list_append(v, ["obliër", "verb", "oblïer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asseürer", "verb", "asseür", "asseüré", "asseüré", "", "alternative form of"]) + let v = native_list_append(v, ["oiant", "verb", "oiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["moustrer", "verb", "moustre", "moustré", "moustré", "", "alternative form of"]) + let v = native_list_append(v, ["cangier", "verb", "cange", "cangié", "cangié", "", "alternative form of"]) + let v = native_list_append(v, ["changier", "verb", "change", "changié", "changié", "", "to change to"]) + let v = native_list_append(v, ["aymer", "verb", "aym", "aymé", "aymé", "", "alternative form of"]) + let v = native_list_append(v, ["escaper", "verb", "escap", "escapé", "escapé", "", "alternative form of"]) + let v = native_list_append(v, ["eschaper", "verb", "eschap", "eschapé", "eschapé", "", "evade"]) + let v = native_list_append(v, ["blecier", "verb", "blez", "blecié", "blecié", "", "to hurt to"]) + let v = native_list_append(v, ["osté", "verb", "osté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["oÿ", "verb", "oÿ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escrier", "verb", "escri", "escrïé", "escrïé", "", "to cry out"]) + let v = native_list_append(v, ["veüs", "verb", "veüs", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["veües", "verb", "veües", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["veüe", "verb", "veüe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veus", "verb", "veus", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["reconnoistre", "verb", "reconnois", "reconneü", "reconneü", "", "alternative form of"]) + let v = native_list_append(v, ["envaïr", "verb", "envaïs", "envaï", "envaï", "", "alternative form of"]) + let v = native_list_append(v, ["soustenir", "verb", "soustieng", "soustenu", "soustenu", "", "to keep up"]) + let v = native_list_append(v, ["desarmer", "verb", "desarm", "desarmé", "desarmé", "", "to disarm"]) + let v = native_list_append(v, ["meller", "verb", "mel", "mellé", "mellé", "", "alternative form of"]) + let v = native_list_append(v, ["pruver", "verb", "pruis", "pruvé", "pruvé", "", "alternative form of"]) + let v = native_list_append(v, ["joiant", "verb", "joiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["joir", "verb", "joi", "joï", "joï", "", "to take pleasure"]) + let v = native_list_append(v, ["covoiter", "verb", "covoit", "covoité", "covoité", "", "alternative form of"]) + let v = native_list_append(v, ["desirrer", "verb", "desir", "desirré", "desirré", "", "to desire to"]) + let v = native_list_append(v, ["norrir", "verb", "norris", "norri", "norri", "", "to feed to"]) + let v = native_list_append(v, ["nurrir", "verb", "nurris", "nurri", "nurri", "", "alternative form of"]) + let v = native_list_append(v, ["conplaindre", "verb", "conplaing", "conplaint", "conplaint", "", "to complain to"]) + let v = native_list_append(v, ["amee", "verb", "amee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["amees", "verb", "amees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["amés", "verb", "amés", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["sofert", "verb", "sofert", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tolir", "verb", "toil", "tolu", "tolu", "", "to remove to"]) + let v = native_list_append(v, ["couvoitier", "verb", "couvoit", "couvoitié", "couvoitié", "", "alternative form of"]) + let v = native_list_append(v, ["feire", "verb", "faz", "feit", "feit", "", "alternative form of"]) + let v = native_list_append(v, ["colper", "verb", "colp", "colpé", "colpé", "", "alternative form of"]) + let v = native_list_append(v, ["deschevaler", "verb", "descheval", "deschevalé", "deschevalé", "", "to unhorse"]) + let v = native_list_append(v, ["remirer", "verb", "remir", "remiré", "remiré", "", "to look at"]) + let v = native_list_append(v, ["esgarder", "verb", "esgart", "esgardé", "esgardé", "", "alternative form of"]) + let v = native_list_append(v, ["tourmenter", "verb", "tourment", "tourmenté", "tourmenté", "", "alternative form of"]) + let v = native_list_append(v, ["desfandre", "verb", "desfant", "desfandu", "desfandu", "", "alternative form of"]) + let v = native_list_append(v, ["ardre", "verb", "art", "ars", "ars", "", "alternative form of"]) + let v = native_list_append(v, ["agenoiller", "verb", "m'agenoil", "agenoillé", "agenoillé", "", "alternative form of"]) + let v = native_list_append(v, ["mantir", "verb", "mant", "manti", "manti", "", "alternative form of"]) + let v = native_list_append(v, ["enuier", "verb", "enui", "enuié", "enuié", "", "alternative form of"]) + let v = native_list_append(v, ["refraindre", "verb", "refraing", "refraint", "refraint", "", "to hold back"]) + let v = native_list_append(v, ["refreindre", "verb", "refreing", "refreint", "refreint", "", "alternative form of"]) + let v = native_list_append(v, ["rober", "verb", "rop", "robé", "robé", "", "to rob to"]) + let v = native_list_append(v, ["prandre", "verb", "praing", "pris", "pris", "", "alternative form of"]) + let v = native_list_append(v, ["eschanger", "verb", "eschange", "eschangé", "eschangé", "", "alternative form of"]) + let v = native_list_append(v, ["rasseürer", "verb", "rasseür", "rasseüré", "rasseüré", "", "alternative form of"]) + let v = native_list_append(v, ["seisir", "verb", "seisis", "seisi", "seisi", "", "to grip hold"]) + let v = native_list_append(v, ["pooir", "verb", "puis", "peü", "peü", "", "can to be"]) + let v = native_list_append(v, ["sostenir", "verb", "sostieng", "sostenu", "sostenu", "", "alternative form of"]) + let v = native_list_append(v, ["sospirer", "verb", "sospir", "sospiré", "sospiré", "", "alternative form of"]) + let v = native_list_append(v, ["souspirer", "verb", "souspir", "souspiré", "souspiré", "", "to sigh make"]) + let v = native_list_append(v, ["sustenir", "verb", "sustieng", "sustenu", "sustenu", "", "to hold up"]) + let v = native_list_append(v, ["chalenger", "verb", "chalenge", "chalengé", "chalengé", "", "alternative form of"]) + let v = native_list_append(v, ["chalonger", "verb", "chalonge", "chalongé", "chalongé", "", "alternative form of"]) + let v = native_list_append(v, ["calunjer", "verb", "calunje", "calunjéṭ", "calunjéṭ", "", "alternative form of"]) + let v = native_list_append(v, ["meslee", "verb", "meslee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["meslees", "verb", "meslees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["meslés", "verb", "meslés", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["meslé", "verb", "meslé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["espargner", "verb", "esparng", "espargné", "espargné", "", "alternative form of"]) + let v = native_list_append(v, ["façoner", "verb", "façon", "façoné", "façoné", "", "to shape to"]) + let v = native_list_append(v, ["descrivre", "verb", "descrif", "descrit", "descrit", "", "to describe"]) + let v = native_list_append(v, ["alier", "verb", "ali", "alïé", "alïé", "", "to unite to"]) + let v = native_list_append(v, ["adolcir", "verb", "adolcis", "adolci", "adolci", "", "to soften make"]) + let v = native_list_append(v, ["beü", "verb", "beü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dobler", "verb", "doble", "doblé", "doblé", "", "to double"]) + let v = native_list_append(v, ["desmanbrer", "verb", "desmanbre", "desmanbré", "desmanbré", "", "alternative form of"]) + let v = native_list_append(v, ["sejorner", "verb", "sejorn", "sejorné", "sejorné", "", "to stay at"]) + let v = native_list_append(v, ["esjoir", "verb", "esjoi", "esjoï", "esjoï", "", "to please to"]) + let v = native_list_append(v, ["esjoï", "verb", "esjoï", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flurir", "verb", "fluris", "fluri", "fluri", "", "alternative form of"]) + let v = native_list_append(v, ["aquerre", "verb", "aquier", "aquis", "aquis", "", "to acquire"]) + let v = native_list_append(v, ["ronpre", "verb", "ronp", "rot", "rot", "", "alternative form of"]) + let v = native_list_append(v, ["santir", "verb", "sant", "santi", "santi", "", "alternative form of"]) + let v = native_list_append(v, ["porchacier", "verb", "porchaz", "porchacié", "porchacié", "", "to buy"]) + let v = native_list_append(v, ["purchacer", "verb", "purchaz", "purchacé", "purchacé", "", "alternative form of"]) + let v = native_list_append(v, ["chacer", "verb", "chaz", "chacé", "chacé", "", "alternative form of"]) + let v = native_list_append(v, ["pourcachier", "verb", "pourcache", "pourcachié", "pourcachié", "", "alternative form of"]) + let v = native_list_append(v, ["doloir", "verb", "doil", "dolu", "dolu", "", "to suffer"]) + let v = native_list_append(v, ["blechier", "verb", "bleche", "blechié", "blechié", "", "alternative form of"]) + let v = native_list_append(v, ["esforcer", "verb", "esforz", "esforcé", "esforcé", "", "alternative form of"]) + let v = native_list_append(v, ["estriver", "verb", "estrif", "estrivé", "estrivé", "", "to compete"]) + let v = native_list_append(v, ["essaier", "verb", "essai", "essaié", "essaié", "", "to try to"]) + let v = native_list_append(v, ["randre", "verb", "rant", "randu", "randu", "", "alternative form of"]) + let v = native_list_append(v, ["eslire", "verb", "esli", "esleü", "esleü", "", "to select to"]) + let v = native_list_append(v, ["creire", "verb", "creire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["juree", "verb", "juree", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["jurees", "verb", "jurees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["teisir", "verb", "taz", "teü", "teü", "", "alternative form of"]) + let v = native_list_append(v, ["coneu", "verb", "coneu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reconeu", "verb", "reconeu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["conoistre", "verb", "conois", "coneü", "coneü", "", "to know"]) + let v = native_list_append(v, ["revoloir", "verb", "revoil", "revolu", "revolu", "", "to want to"]) + let v = native_list_append(v, ["resovenir", "verb", "resovieng", "resovenu", "resovenu", "", "to remember to"]) + let v = native_list_append(v, ["esprover", "verb", "espruis", "esprové", "esprové", "", "to prove"]) + let v = native_list_append(v, ["otreier", "verb", "otri", "otreié", "otreié", "", "alternative form of"]) + let v = native_list_append(v, ["encontre", "verb", "encontre", "", "", "", "inflection of encontrer"]) + let v = native_list_append(v, ["encountrer", "verb", "encountre", "encountré", "encountré", "", "alternative form of"]) + let v = native_list_append(v, ["antrer", "verb", "antre", "antré", "antré", "", "alternative form of"]) + let v = native_list_append(v, ["professer", "verb", "profes", "professé", "professé", "", "to strive for"]) + let v = native_list_append(v, ["atorner", "verb", "atorn", "atorné", "atorné", "", "to prepare to"]) + let v = native_list_append(v, ["aturner", "verb", "aturn", "aturné", "aturné", "", "alternative form of"]) + let v = native_list_append(v, ["atorné", "verb", "atorné", "", "", "", "past participle of"]) + let v = native_list_append(v, ["atornés", "verb", "atornés", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["atornees", "verb", "atornees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["atornee", "verb", "atornee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["esfacer", "verb", "esfaz", "esfacé", "esfacé", "", "alternative form of"]) + let v = native_list_append(v, ["mehaingner", "verb", "mehaing", "mehaingné", "mehaingné", "", "alternative form of"]) + let v = native_list_append(v, ["aconpaignier", "verb", "aconpaing", "aconpaignié", "aconpaignié", "", "alternative form of"]) + let v = native_list_append(v, ["estant", "verb", "estant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["redrecier", "verb", "redrez", "redrecié", "redrecié", "", "to stand someone"]) + let v = native_list_append(v, ["paindre", "verb", "paing", "paint", "paint", "", "alternative form of"]) + let v = native_list_append(v, ["remaindre", "verb", "remaing", "remanu", "remanu", "", "alternative infinitive of"]) + let v = native_list_append(v, ["noier", "verb", "nui", "noié", "noié", "", "to hurt to"]) + let v = native_list_append(v, ["pursure", "verb", "pursure", "", "", "", "to pursue to"]) + let v = native_list_append(v, ["blecié", "verb", "blecié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["blechié", "verb", "blechié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aiant", "verb", "aiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["delivrer", "verb", "delivre", "delivré", "delivré", "", "to set free"]) + let v = native_list_append(v, ["rebander", "verb", "rebant", "rebandé", "rebandé", "", "to bandage to"]) + let v = native_list_append(v, ["rere", "verb", "re", "res", "res", "", "to shave"]) + let v = native_list_append(v, ["decevoir", "verb", "deçoif", "deceü", "deceü", "", "to deceive to"]) + let v = native_list_append(v, ["deslier", "verb", "desli", "deslïé", "deslïé", "", "to untie to"]) + let v = native_list_append(v, ["trichier", "verb", "triche", "trichié", "trichié", "", "to cheat break"]) + let v = native_list_append(v, ["naistre", "verb", "nais", "nascu", "nascu", "", "to be born"]) + let v = native_list_append(v, ["coverz", "verb", "coverz", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["coverte", "verb", "coverte", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["covertes", "verb", "covertes", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["fauser", "verb", "faus", "fausé", "fausé", "", "to pretend"]) + let v = native_list_append(v, ["faindre", "verb", "faing", "faint", "faint", "", "alternative form of"]) + let v = native_list_append(v, ["marïer", "verb", "mari", "marïé", "marïé", "", "alternative form of"]) + let v = native_list_append(v, ["drecier", "verb", "drez", "drecié", "drecié", "", "to stand up"]) + let v = native_list_append(v, ["forsener", "verb", "forsen", "forsené", "forsené", "", "to become insane"]) + let v = native_list_append(v, ["essaucer", "verb", "essauz", "essaucé", "essaucé", "", "alternative form of"]) + let v = native_list_append(v, ["forcener", "verb", "forcen", "forcené", "forcené", "", "alternative form of"]) + let v = native_list_append(v, ["forssener", "verb", "forssen", "forssené", "forssené", "", "alternative form of"]) + let v = native_list_append(v, ["esloignier", "verb", "esloing", "esloignié", "esloignié", "", "to separate"]) + let v = native_list_append(v, ["nettoier", "verb", "netti", "nettoié", "nettoié", "", "alternative form of"]) + let v = native_list_append(v, ["blanchoier", "verb", "blanchi", "blanchoié", "blanchoié", "", "alternative form of"]) + let v = native_list_append(v, ["parloient", "verb", "parleient", "parloent", "", "", "alternative form of"]) + let v = native_list_append(v, ["deporter", "verb", "deport", "deporté", "deporté", "", "to amuse to"]) + let v = native_list_append(v, ["vieler", "verb", "viel", "vielé", "vielé", "", "to play a"]) + let v = native_list_append(v, ["deraisnier", "verb", "deraison", "deraisnié", "deraisnié", "", "to explain to"]) + let v = native_list_append(v, ["guerroier", "verb", "guerri", "guerroié", "guerroié", "", "alternative form of"]) + let v = native_list_append(v, ["escondire", "verb", "escondi", "escondit", "escondit", "", "to refuse to"]) + let v = native_list_append(v, ["escundire", "verb", "escundi", "escundit", "escundit", "", "alternative form of"]) + let v = native_list_append(v, ["resveiller", "verb", "resveil", "resveillé", "resveillé", "", "alternative form of"]) + let v = native_list_append(v, ["traveiller", "verb", "travail", "traveillé", "traveillé", "", "alternative form of"]) + let v = native_list_append(v, ["pener", "verb", "pein", "pené", "pené", "", "to torture to"]) + let v = native_list_append(v, ["cheler", "verb", "choil", "chelé", "chelé", "", "alternative form of"]) + let v = native_list_append(v, ["condampner", "verb", "condampne", "condampné", "condampné", "", "to condemn"]) + let v = native_list_append(v, ["colchier", "verb", "colche", "colchié", "colchié", "", "alternative form of"]) + let v = native_list_append(v, ["perceu", "verb", "perceu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["resumer", "verb", "resum", "resumé", "resumé", "", "to resume to"]) + let v = native_list_append(v, ["douner", "verb", "douing", "douné", "douné", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["jesir", "verb", "gis", "jeü", "jeü", "", "alternative form of"]) + let v = native_list_append(v, ["creu", "verb", "creu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["senbler", "verb", "senble", "senblé", "senblé", "", "alternative form of"]) + let v = native_list_append(v, ["sanbler", "verb", "sanble", "sanblé", "sanblé", "", "alternative form of"]) + let v = native_list_append(v, ["comencier", "verb", "comenz", "comencié", "comencié", "", "start begin"]) + let v = native_list_append(v, ["reprochier", "verb", "reproche", "reprochié", "reprochié", "", "to chastise to"]) + let v = native_list_append(v, ["encoumencer", "verb", "encoumenz", "encoumencé", "encoumencé", "", "alternative form of"]) + let v = native_list_append(v, ["resouner", "verb", "resoun", "resouné", "resouné", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["resounder", "verb", "resount", "resoundé", "resoundé", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["resuner", "verb", "resun", "resuné", "resuné", "", "alternative form of"]) + let v = native_list_append(v, ["chace", "verb", "chace", "", "", "", "inflection of chacer"]) + let v = native_list_append(v, ["aparellier", "verb", "apareil", "aparellié", "aparellié", "", "alternative form of"]) + let v = native_list_append(v, ["acroistre", "verb", "acrois", "acreü", "acreü", "", "to augment to"]) + let v = native_list_append(v, ["vangier", "verb", "vange", "vangié", "vangié", "", "alternative form of"]) + let v = native_list_append(v, ["desçandre", "verb", "desçant", "desçandu", "desçandu", "", "alternative form of"]) + let v = native_list_append(v, ["prester", "verb", "prest", "presté", "presté", "", "to borrow"]) + let v = native_list_append(v, ["loiier", "verb", "loi", "loiié", "loiié", "", "alternative form of"]) + let v = native_list_append(v, ["anluminer", "verb", "anlumin", "anluminé", "anluminé", "", "to light up"]) + let v = native_list_append(v, ["cheir", "verb", "chié", "cheï", "cheï", "", "alternative infinitive of"]) + let v = native_list_append(v, ["taillier", "verb", "tail", "taillié", "taillié", "", "to cut"]) + let v = native_list_append(v, ["taillié", "verb", "taillié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rogir", "verb", "rogis", "rogi", "rogi", "", "to redden become"]) + let v = native_list_append(v, ["intrar", "verb", "intrar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tochier", "verb", "toche", "tochié", "tochié", "", "to touch"]) + let v = native_list_append(v, ["copés", "verb", "copés", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["copees", "verb", "copees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["copee", "verb", "copee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["berst", "verb", "berst", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["enfanter", "verb", "enfant", "enfanté", "enfanté", "", "to give birth"]) + let v = native_list_append(v, ["tucher", "verb", "tuche", "tuché", "tuché", "", "alternative form of"]) + let v = native_list_append(v, ["espeler", "verb", "espel", "espelé", "espelé", "", "to call to"]) + let v = native_list_append(v, ["plere", "verb", "plaz", "pleü", "pleü", "", "alternative form of"]) + let v = native_list_append(v, ["peitrine", "verb", "peitrine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["meü", "verb", "meü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eü", "verb", "eü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angoissier", "verb", "angois", "angoissié", "angoissié", "", "to scare to"]) + let v = native_list_append(v, ["beisier", "verb", "beis", "beisié", "beisié", "", "alternative form of"]) + let v = native_list_append(v, ["changié", "verb", "changié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["esmouvoir", "verb", "esmuef", "esmeü", "esmeü", "", "alternative form of"]) + let v = native_list_append(v, ["esmeu", "verb", "esmeu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["acoler", "verb", "acol", "acolé", "acolé", "", "to embrace to"]) + let v = native_list_append(v, ["vivifier", "verb", "vivifi", "vivifïé", "vivifïé", "", "to vivify to"]) + let v = native_list_append(v, ["mervellier", "verb", "merveil", "mervellié", "mervellié", "", "alternative form of"]) + let v = native_list_append(v, ["replorer", "verb", "repleur", "reploré", "reploré", "", "to cry again"]) + let v = native_list_append(v, ["afoler", "verb", "afol", "afolé", "afolé", "", "to madden to"]) + let v = native_list_append(v, ["gaaingnier", "verb", "gaaing", "gaaingnié", "gaaingnié", "", "alternative form of"]) + let v = native_list_append(v, ["desjeuner", "verb", "desjeun", "desjeuné", "desjeuné", "", "to eat breakfast"]) + let v = native_list_append(v, ["ocirre", "verb", "ocirre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chaçant", "verb", "chaçant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["chastiant", "verb", "chastiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ataindre", "verb", "ataing", "ataint", "ataint", "", "to reach"]) + let v = native_list_append(v, ["estaindre", "verb", "estaing", "estaint", "estaint", "", "alternative form of"]) + let v = native_list_append(v, ["esgarer", "verb", "esgar", "esgaré", "esgaré", "", "to lead astray"]) + let v = native_list_append(v, ["brisier", "verb", "bris", "brisié", "brisié", "", "to break cause"]) + let v = native_list_append(v, ["medeciner", "verb", "medecin", "medeciné", "medeciné", "", "to treat medically"]) + let v = native_list_append(v, ["deslacer", "verb", "deslaz", "deslacé", "deslacé", "", "alternative form of"]) + let v = native_list_append(v, ["sozlever", "verb", "sozlief", "sozlevé", "sozlevé", "", "to lift to"]) + let v = native_list_append(v, ["secorre", "verb", "secor", "secoru", "secoru", "", "to help to"]) + let v = native_list_append(v, ["estoner", "verb", "eston", "estoné", "estoné", "", "to stun daze"]) + let v = native_list_append(v, ["guenchir", "verb", "guenchis", "guenchi", "guenchi", "", "to change direction"]) + let v = native_list_append(v, ["guerpir", "verb", "guerp", "guerpi", "guerpi", "", "to give up"]) + let v = native_list_append(v, ["ganchir", "verb", "ganchis", "ganchi", "ganchi", "", "alternative form of"]) + let v = native_list_append(v, ["atochier", "verb", "atoche", "atochié", "atochié", "", "to touch"]) + let v = native_list_append(v, ["atucher", "verb", "atuche", "atuché", "atuché", "", "alternative form of"]) + let v = native_list_append(v, ["receü", "verb", "receü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aprester", "verb", "aprest", "apresté", "apresté", "", "to prepare to"]) + let v = native_list_append(v, ["treire", "verb", "trei", "treit", "treit", "", "alternative form of"]) + let v = native_list_append(v, ["atreire", "verb", "atrei", "atreit", "atreit", "", "alternative form of"]) + let v = native_list_append(v, ["umilier", "verb", "umili", "umilïé", "umilïé", "", "to bow to"]) + let v = native_list_append(v, ["alumer", "verb", "alum", "alumé", "alumé", "", "to light up"]) + let v = native_list_append(v, ["eidier", "verb", "eiu", "eidié", "eidié", "", "alternative form of"]) + let v = native_list_append(v, ["recovrer", "verb", "recovre", "recovré", "recovré", "", "recover reobtain"]) + let v = native_list_append(v, ["corir", "verb", "cor", "coru", "coru", "", "alternative form of"]) + let v = native_list_append(v, ["assalir", "verb", "assail", "assali", "assali", "", "to jump on"]) + let v = native_list_append(v, ["ressuiier", "verb", "ressui", "ressuiié", "ressuiié", "", "to dry dry"]) + let v = native_list_append(v, ["saingnier", "verb", "saing", "saingnié", "saingnié", "", "alternative form of"]) + let v = native_list_append(v, ["siure", "verb", "siu", "sivi", "sivi", "", "alternative infinitive of"]) + let v = native_list_append(v, ["senefier", "verb", "senefi", "senefïé", "senefïé", "", "to mean to"]) + let v = native_list_append(v, ["enorer", "verb", "eneur", "enoré", "enoré", "", "to honor"]) + let v = native_list_append(v, ["quasser", "verb", "quas", "quassé", "quassé", "", "to break damage"]) + let v = native_list_append(v, ["feire sanblant", "verb", "feire sanblant", "", "", "", "to act like"]) + let v = native_list_append(v, ["sanblant", "verb", "sanblant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["liee", "verb", "liee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["liees", "verb", "liees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["nonbrer", "verb", "nonbre", "nonbré", "nonbré", "", "alternative form of"]) + let v = native_list_append(v, ["aisir", "verb", "aisir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abelir", "verb", "abelis", "abeli", "abeli", "", "to please to"]) + let v = native_list_append(v, ["ferir", "verb", "fier", "feru", "feru", "", "to hit to"]) + let v = native_list_append(v, ["hadir", "verb", "haz", "hadi", "hadi", "", "alternative form of"]) + let v = native_list_append(v, ["escrit", "verb", "escrit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["governer", "verb", "govern", "governé", "governé", "", "to guide to"]) + let v = native_list_append(v, ["guardee", "verb", "guardee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["guardees", "verb", "guardees", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["abeer", "verb", "abé", "abeé", "abeé", "", "to desire to"]) + let v = native_list_append(v, ["conseller", "verb", "conseil", "consellé", "consellé", "", "alternative form of"]) + let v = native_list_append(v, ["ovrer", "verb", "uevre", "ovré", "ovré", "", "to work"]) + let v = native_list_append(v, ["manovrer", "verb", "manuevre", "manovré", "manovré", "", "to work especially"]) + let v = native_list_append(v, ["enquerre", "verb", "enquier", "enquis", "enquis", "", "to ask to"]) + let v = native_list_append(v, ["prometre", "verb", "promet", "promis", "promis", "", "to promise"]) + let v = native_list_append(v, ["conceler", "verb", "conçoil", "concelé", "concelé", "", "to hide to"]) + let v = native_list_append(v, ["recroire", "verb", "recroi", "recreü", "recreü", "", "to rebelieve"]) + let v = native_list_append(v, ["senfuir", "verb", "senfuir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["entrecombatre", "verb", "entrecombat", "entrecombatu", "entrecombatu", "", "to fight to"]) + let v = native_list_append(v, ["combatre", "verb", "combat", "combatu", "combatu", "", "to combat to"]) + let v = native_list_append(v, ["encerchier", "verb", "encerche", "encerchié", "encerchié", "", "to look for"]) + let v = native_list_append(v, ["desmonter", "verb", "desmont", "desmonté", "desmonté", "", "to cause someone"]) + let v = native_list_append(v, ["enfaunter", "verb", "enfaunt", "enfaunté", "enfaunté", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["caviller", "verb", "cavil", "cavillé", "cavillé", "", "to mock to"]) + let v = native_list_append(v, ["damager", "verb", "damage", "damagé", "damagé", "", "alternative form of"]) + let v = native_list_append(v, ["corouner", "verb", "coroun", "corouné", "corouné", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["curuner", "verb", "curun", "curuné", "curuné", "", "alternative form of"]) + let v = native_list_append(v, ["souner", "verb", "soun", "souné", "souné", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["soner", "verb", "son", "soné", "soné", "", "to sound a"]) + let v = native_list_append(v, ["envair", "verb", "envaïs", "envaï", "envaï", "", "to invade"]) + let v = native_list_append(v, ["loer", "verb", "lo", "loé", "loé", "", "to laud to"]) + let v = native_list_append(v, ["culcher", "verb", "culche", "culché", "culché", "", "alternative form of"]) + let v = native_list_append(v, ["cunseiler", "verb", "cunseil", "cunseilé", "cunseilé", "", "alternative form of"]) + let v = native_list_append(v, ["esparnier", "verb", "esparn", "esparnié", "esparnié", "", "alternative form of"]) + let v = native_list_append(v, ["pleire", "verb", "plaz", "pleü", "pleü", "", "alternative form of"]) + let v = native_list_append(v, ["armee", "verb", "armee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["savir", "verb", "sai", "seü", "seü", "", "alternative form of"]) + let v = native_list_append(v, ["incruster", "verb", "incrust", "incrusté", "incrusté", "", "to cover with"]) + let v = native_list_append(v, ["agreer", "verb", "agré", "agreé", "agreé", "", "to please to"]) + let v = native_list_append(v, ["leisir", "verb", "no-table-tags", "fro-conj-loisir", "aveir leü", "", "alternative form of"]) + let v = native_list_append(v, ["pleisant", "verb", "pleisant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["plesant", "verb", "plesant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["guarantir", "verb", "guarantis", "guaranti", "guaranti", "", "to protect"]) + let v = native_list_append(v, ["hurter", "verb", "hurt", "hurté", "hurté", "", "to crash into"]) + let v = native_list_append(v, ["mescroire", "verb", "mescroi", "mescreü", "mescreü", "", "to disbelieve"]) + let v = native_list_append(v, ["mesfaire", "verb", "mesfaz", "mesfait", "mesfait", "", "to do wrong"]) + let v = native_list_append(v, ["mesfait", "verb", "mesfet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["pechié", "verb", "pechet", "pechiet", "pecché", "", "past participle of"]) + let v = native_list_append(v, ["entrebaisier", "verb", "m'entrebais", "entrebaisié", "entrebaisié", "", "to kiss one"]) + let v = native_list_append(v, ["depecier", "verb", "depez", "depecié", "depecié", "", "to hurry to"]) + let v = native_list_append(v, ["esfroier", "verb", "esfroi", "esfroié", "esfroié", "", "alternative form of"]) + let v = native_list_append(v, ["destruire", "verb", "destrui", "destruit", "destruit", "", "to destroy"]) + let v = native_list_append(v, ["vuel", "verb", "voel", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["acertener", "verb", "acerten", "acertené", "acertené", "", "to assure to"]) + let v = native_list_append(v, ["disner", "verb", "desjun", "disné", "disné", "", "to dine to"]) + let v = native_list_append(v, ["entraimer", "verb", "m'entraim", "entraimé", "entraimé", "", "alternative form of"]) + let v = native_list_append(v, ["goster", "verb", "gost", "gosté", "gosté", "", "to taste"]) + let v = native_list_append(v, ["paser", "verb", "pas", "pasé", "pasé", "", "alternative form of"]) + let v = native_list_append(v, ["embuschier", "verb", "embusche", "embuschié", "embuschié", "", "to ambush"]) + let v = native_list_append(v, ["retraire", "verb", "retrai", "retrait", "retrait", "", "to extract to"]) + let v = native_list_append(v, ["regreter", "verb", "regret", "regreté", "regreté", "", "to regret"]) + let v = native_list_append(v, ["jugier", "verb", "juge", "jugié", "jugié", "", "to judge"]) + let v = native_list_append(v, ["reçoivre", "verb", "reçoif", "receü", "receü", "", "alternative form of"]) + let v = native_list_append(v, ["deçoivre", "verb", "deçoif", "deceü", "deceü", "", "alternative infinitive of"]) + let v = native_list_append(v, ["destorber", "verb", "destorp", "destorbé", "destorbé", "", "to disrupt to"]) + let v = native_list_append(v, ["demorer", "verb", "demuer", "demoré", "demoré", "", "to stay to"]) + let v = native_list_append(v, ["pourpenser", "verb", "pourpens", "pourpensé", "pourpensé", "", "alternative form of"]) + let v = native_list_append(v, ["purpenser", "verb", "purpens", "purpensé", "purpensé", "", "alternative form of"]) + let v = native_list_append(v, ["pourtreire", "verb", "pourtrei", "pourtreit", "pourtreit", "", "alternative spelling of"]) + let v = native_list_append(v, ["connoistre", "verb", "connois", "conneü", "conneü", "", "alternative form of"]) + let v = native_list_append(v, ["respondu", "verb", "respondeu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["chaucier", "verb", "chauz", "chaucié", "chaucié", "", "to shoe put"]) + let v = native_list_append(v, ["deschaucier", "verb", "deschauz", "deschaucié", "deschaucié", "", "to remove someones"]) + let v = native_list_append(v, ["deschaucié", "verb", "deschaucié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reluire", "verb", "reluis", "reluit", "reluit", "", "alternative infinitive of"]) + let v = native_list_append(v, ["rebuker", "verb", "rebuk", "rebuké", "rebuké", "", "to rebuke"]) + let v = native_list_append(v, ["seeler", "verb", "seel", "seelé", "seelé", "", "to seal"]) + let v = native_list_append(v, ["preferer", "verb", "prefer", "preferé", "preferé", "", "to prefer"]) + let v = native_list_append(v, ["fornir", "verb", "fornis", "forni", "forni", "", "to provide for/with"]) + let v = native_list_append(v, ["afier", "verb", "afi", "afïé", "afïé", "", "to promise swear"]) + let v = native_list_append(v, ["entrocire", "verb", "m'entroci", "entrocis", "entrocis", "", "to kill one"]) + let v = native_list_append(v, ["enveier", "verb", "envei", "enveié", "enveié", "", "alternative form of"]) + let v = native_list_append(v, ["mesparler", "verb", "mesparol", "mesparlé", "mesparlé", "", "to traduce speak"]) + let v = native_list_append(v, ["nafrer", "verb", "nafre", "nafré", "nafré", "", "to injure"]) + let v = native_list_append(v, ["laissier", "verb", "lais", "laissié", "laissié", "", "to allow to"]) + let v = native_list_append(v, ["aparillier", "verb", "aparil", "aparillié", "aparillié", "", "to equip to"]) + let v = native_list_append(v, ["poeir", "verb", "puis", "peü", "peü", "", "alternative form of"]) + let v = native_list_append(v, ["reschalfer", "verb", "reschalf", "reschalfé", "reschalfé", "", "alternative form of"]) + let v = native_list_append(v, ["aseürer", "verb", "aseür", "aseüré", "aseüré", "", "alternative form of"]) + let v = native_list_append(v, ["mustrer", "verb", "mustre", "mustré", "mustré", "", "alternative form of"]) + let v = native_list_append(v, ["preier", "verb", "pri", "preié", "preié", "", "alternative form of"]) + let v = native_list_append(v, ["covenir", "verb", "covieng", "covenu", "covenu", "", "to suit to"]) + let v = native_list_append(v, ["remeindre", "verb", "remeing", "remanu", "remanu", "", "alternative form of"]) + let v = native_list_append(v, ["suspirer", "verb", "suspir", "suspiré", "suspiré", "", "alternative form of"]) + let v = native_list_append(v, ["desturber", "verb", "desturp", "desturbé", "desturbé", "", "alternative form of"]) + let v = native_list_append(v, ["neier", "verb", "ni", "neié", "neié", "", "alternative form of"]) + let v = native_list_append(v, ["pleier", "verb", "pli", "pleié", "pleié", "", "alternative form of"]) + let v = native_list_append(v, ["despleier", "verb", "despli", "despleié", "despleié", "", "alternative form of"]) + let v = native_list_append(v, ["quider", "verb", "quit", "quidé", "quidé", "", "alternative form of"]) + let v = native_list_append(v, ["esculter", "verb", "escult", "esculté", "esculté", "", "alternative form of"]) + let v = native_list_append(v, ["desfier", "verb", "desfi", "desfïé", "desfïé", "", "to defy"]) + let v = native_list_append(v, ["meintenir", "verb", "meintieng", "meintenu", "meintenu", "", "to maintain to"]) + let v = native_list_append(v, ["nasfrer", "verb", "nasfre", "nasfré", "nasfré", "", "alternative form of"]) + let v = native_list_append(v, ["duter", "verb", "dut", "duté", "duté", "", "alternative form of"]) + let v = native_list_append(v, ["cunforter", "verb", "cunfort", "cunforté", "cunforté", "", "alternative form of"]) + let v = native_list_append(v, ["murdrir", "verb", "murdris", "murdri", "murdri", "", "to murder"]) + let v = native_list_append(v, ["baignier", "verb", "baing", "baignié", "baignié", "", "to bathe"]) + let v = native_list_append(v, ["eschalder", "verb", "eschalder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abaier", "verb", "abai", "abaié", "abaié", "", "to bark"]) + let v = native_list_append(v, ["creistre", "verb", "creis", "creü", "creü", "", "alternative form of"]) + let v = native_list_append(v, ["eschalfer", "verb", "eschalf", "eschalfé", "eschalfé", "", "alternative form of"]) + let v = native_list_append(v, ["loër", "verb", "lo", "loé", "loé", "", "alternative form of"]) + let v = native_list_append(v, ["resembler", "verb", "resemble", "resemblé", "resemblé", "", "to look like"]) + let v = native_list_append(v, ["descupler", "verb", "descuple", "descuplé", "descuplé", "", "to detach"]) + let v = native_list_append(v, ["manacer", "verb", "manaz", "manacé", "manacé", "", "alternative form of"]) + let v = native_list_append(v, ["countrefait", "verb", "countrefait", "", "", "", "past participle of"]) + let v = native_list_append(v, ["countrefaire", "verb", "countrefaz", "countrefait", "countrefait", "", "alternative form of"]) + let v = native_list_append(v, ["sujurner", "verb", "sujurn", "sujurné", "sujurné", "", "alternative form of"]) + let v = native_list_append(v, ["descunseillier", "verb", "descunseil", "descunseillié", "descunseillié", "", "to advise against"]) + let v = native_list_append(v, ["esbaneier", "verb", "esbani", "esbaneié", "esbaneié", "", "to go for"]) + let v = native_list_append(v, ["honurer", "verb", "honur", "honuré", "honuré", "", "alternative form of"]) + let v = native_list_append(v, ["apuier", "verb", "apui", "apuié", "apuié", "", "alternative form of"]) + let v = native_list_append(v, ["plurant", "verb", "plurant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["honir", "verb", "honis", "honi", "honi", "", "to shame disgrace"]) + let v = native_list_append(v, ["hunir", "verb", "hunir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["defendre", "verb", "defent", "defendu", "defendu", "", "to defend"]) + let v = native_list_append(v, ["veeir", "verb", "vei", "veü", "veü", "", "alternative form of"]) + let v = native_list_append(v, ["despenser", "verb", "despens", "despensé", "despensé", "", "to spend money"]) + let v = native_list_append(v, ["mortifier", "verb", "mortifi", "mortifïé", "mortifïé", "", "to kill to"]) + let v = native_list_append(v, ["entramer", "verb", "m'entraim", "entramé", "entramé", "", "to love one"]) + let v = native_list_append(v, ["beivre", "verb", "beif", "beü", "beü", "", "alternative form of"]) + let v = native_list_append(v, ["remaneir", "verb", "remaing", "remanu", "remanu", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["jeüner", "verb", "jeün", "jeüné", "jeüné", "", "alternative form of"]) + let v = native_list_append(v, ["plungier", "verb", "plunge", "plungié", "plungié", "", "alternative form of"]) + let v = native_list_append(v, ["guaiter", "verb", "guait", "guaité", "guaité", "", "alternative form of"]) + let v = native_list_append(v, ["desplaire", "verb", "desplaz", "despleü", "despleü", "", "to irritate to"]) + let v = native_list_append(v, ["envolupé", "verb", "envolupé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["envoluper", "verb", "envolup", "envolupé", "envolupé", "", "to enwrap to"]) + let v = native_list_append(v, ["recunforter", "verb", "recunfort", "recunforté", "recunforté", "", "to comfort to"]) + let v = native_list_append(v, ["acuinter", "verb", "acuint", "acuinté", "acuinté", "", "alternative form of"]) + let v = native_list_append(v, ["guaaignier", "verb", "guaaing", "guaaignié", "guaaignié", "", "alternative form of"]) + let v = native_list_append(v, ["satisfier", "verb", "satisfi", "satisfïé", "satisfïé", "", "to satisfy"]) + let v = native_list_append(v, ["espleitier", "verb", "espleit", "espleitié", "espleitié", "", "alternative form of"]) + let v = native_list_append(v, ["cuntenir", "verb", "cuntieng", "cuntenu", "cuntenu", "", "alternative form of"]) + let v = native_list_append(v, ["desevrer", "verb", "desoivre", "desevré", "desevré", "", "to separate to"]) + let v = native_list_append(v, ["esluignier", "verb", "esluing", "esluignié", "esluignié", "", "alternative form of"]) + let v = native_list_append(v, ["cuntredire", "verb", "cuntredi", "cuntredit", "cuntredit", "", "alternative form of"]) + let v = native_list_append(v, ["guaster", "verb", "guast", "guasté", "guasté", "", "alternative form of"]) + let v = native_list_append(v, ["apareillier", "verb", "apareil", "apareillié", "apareillié", "", "to arm or"]) + let v = native_list_append(v, ["flourir", "verb", "flouris", "flouri", "flouri", "", "alternative spelling of"]) + let v = native_list_append(v, ["damagier", "verb", "damage", "damagié", "damagié", "", "to hurt to"]) + let v = native_list_append(v, ["enbuschier", "verb", "enbusche", "enbuschié", "enbuschié", "", "alternative form of"]) + let v = native_list_append(v, ["chargier", "verb", "charge", "chargié", "chargié", "", "to load to"]) + let v = native_list_append(v, ["aquintier", "verb", "aquint", "aquintié", "aquintié", "", "alternative form of"]) + let v = native_list_append(v, ["turmenter", "verb", "turment", "turmenté", "turmenté", "", "alternative form of"]) + let v = native_list_append(v, ["discusser", "verb", "discus", "discussé", "discussé", "", "to discuss to"]) + let v = native_list_append(v, ["mesprendre", "verb", "mespreing", "mespris", "mespris", "", "To misunderstand"]) + let v = native_list_append(v, ["trahiner", "verb", "trahin", "trahiné", "trahiné", "", "alternative form of"]) + let v = native_list_append(v, ["trubler", "verb", "truble", "trublé", "trublé", "", "alternative form of"]) + let v = native_list_append(v, ["deservir", "verb", "deserf", "deservi", "deservi", "", "to serve well"]) + let v = native_list_append(v, ["enfourmer", "verb", "enfourm", "enfourmé", "enfourmé", "", "to form or"]) + let v = native_list_append(v, ["guardant", "verb", "guardant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sohaidier", "verb", "sohait", "sohaidié", "sohaidié", "", "to wish"]) + let v = native_list_append(v, ["differer", "verb", "differ", "differé", "differé", "", "To differ"]) + let v = native_list_append(v, ["membrer", "verb", "membre", "membré", "membré", "", "to remember to"]) + let v = native_list_append(v, ["prechier", "verb", "preche", "prechié", "prechié", "", "to preach"]) + let v = native_list_append(v, ["requere", "verb", "requier", "requis", "requis", "", "alternative form of"]) + let v = native_list_append(v, ["souploier", "verb", "soupli", "souploié", "souploié", "", "to provide to"]) + let v = native_list_append(v, ["aparoir", "verb", "apair", "aparu", "aparu", "", "to appear to"]) + let v = native_list_append(v, ["aprocher", "verb", "aproche", "aproché", "aproché", "", "alternative infinitive of"]) + let v = native_list_append(v, ["bataillier", "verb", "batail", "bataillié", "bataillié", "", "to fight to"]) + let v = native_list_append(v, ["renoier", "verb", "reni", "renoié", "renoié", "", "to deny"]) + let v = native_list_append(v, ["seü", "verb", "seü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["osteler", "verb", "ostel", "ostelé", "ostelé", "", "to take in"]) + let v = native_list_append(v, ["delitier", "verb", "delit", "delitié", "delitié", "", "to delight"]) + let v = native_list_append(v, ["estendre", "verb", "estent", "estendu", "estendu", "", "to stretch extend"]) + let v = native_list_append(v, ["fenir", "verb", "fenis", "feni", "feni", "", "alternative form of"]) + let v = native_list_append(v, ["encreistre", "verb", "encreis", "encreü", "encreü", "", "alternative form of"]) + let v = native_list_append(v, ["estreindre", "verb", "estreing", "estreint", "estreint", "", "to strain stretch"]) + let v = native_list_append(v, ["preindre", "verb", "preindre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aisier", "verb", "ais", "aisié", "aisié", "", "to put at"]) + let v = native_list_append(v, ["aisié", "verb", "aisié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["compasser", "verb", "compas", "compassé", "compassé", "", "to compass measure"]) + let v = native_list_append(v, ["comprehender", "verb", "comprehent", "comprehendé", "comprehendé", "", "to teach"]) + let v = native_list_append(v, ["enhauncer", "verb", "enhaunz", "enhauncé", "enhauncé", "", "alternative form of"]) + let v = native_list_append(v, ["arangier", "verb", "arange", "arangié", "arangié", "", "to arrange put"]) + let v = native_list_append(v, ["esforcier", "verb", "esforz", "esforcié", "esforcié", "", "to try to"]) + let v = native_list_append(v, ["anuller", "verb", "anul", "anullé", "anullé", "", "to consider invalid"]) + let v = native_list_append(v, ["rasper", "verb", "rasp", "raspé", "raspé", "", "to grate scratch"]) + let v = native_list_append(v, ["apareir", "verb", "apair", "aparu", "aparu", "", "to appear"]) + let v = native_list_append(v, ["aparir", "verb", "apair", "aparu", "aparu", "", "alternative infinitive of"]) + let v = native_list_append(v, ["graper", "verb", "grap", "grapé", "grapé", "", "to pick grapes"]) + let v = native_list_append(v, ["condicionner", "verb", "condicion", "condicionné", "condicionné", "", "alternative form of"]) + let v = native_list_append(v, ["condicioner", "verb", "condicion", "condicioné", "condicioné", "", "to impose a"]) + let v = native_list_append(v, ["plorant", "verb", "plorant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["redunder", "verb", "redunt", "redundé", "redundé", "", "to rebound to"]) + let v = native_list_append(v, ["mambrer", "verb", "mambre", "mambré", "mambré", "", "alternative form of"]) + let v = native_list_append(v, ["sivre", "verb", "siu", "sivi", "sivi", "", "to follow"]) + let v = native_list_append(v, ["aprandre", "verb", "apraing", "apris", "apris", "", "alternative form of"]) + let v = native_list_append(v, ["mediter", "verb", "medit", "medité", "medité", "", "to consider to"]) + let v = native_list_append(v, ["lucrer", "verb", "lucrer", "", "", "", "to save to"]) + let v = native_list_append(v, ["resemblant", "verb", "resemblant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["destrecier", "verb", "destrez", "destrecié", "destrecié", "", "to distress cause"]) + let v = native_list_append(v, ["trobler", "verb", "troble", "troblé", "troblé", "", "to trouble to"]) + let v = native_list_append(v, ["destruit", "verb", "destruit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["espeer", "verb", "espé", "espeé", "espeé", "", "to pierce with"]) + let v = native_list_append(v, ["espeier", "verb", "espi", "espeié", "espeié", "", "alternative form of"]) + let v = native_list_append(v, ["antredoner", "verb", "antredoing", "antredoné", "antredoné", "", "to give one"]) + let v = native_list_append(v, ["soupleer", "verb", "soupleer", "", "", "", "alternative infinitive of"]) + let v = native_list_append(v, ["afubler", "verb", "afuble", "afublé", "afublé", "", "to put on"]) + let v = native_list_append(v, ["desafubler", "verb", "desafuble", "desafublé", "desafublé", "", "to remove clothing"]) + let v = native_list_append(v, ["antré", "verb", "antré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tramis", "verb", "tramis", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aparoler", "verb", "aparol", "aparolé", "aparolé", "", "alternative form of"]) + let v = native_list_append(v, ["paroler", "verb", "parol", "parolé", "parolé", "", "alternative form of"]) + let v = native_list_append(v, ["veez", "verb", "veez", "", "", "", "inflection of veir"]) + let v = native_list_append(v, ["barguigner", "verb", "barguing", "barguigné", "barguigné", "", "alternative form of"]) + let v = native_list_append(v, ["costoier", "verb", "costi", "costoié", "costoié", "", "to be at"]) + let v = native_list_append(v, ["anvoier", "verb", "anvoi", "anvoié", "anvoié", "", "alternative form of"]) + let v = native_list_append(v, ["grever", "verb", "grief", "grevé", "grevé", "", "to weigh down"]) + let v = native_list_append(v, ["truevent", "verb", "trovent", "", "", "", "third-person plural indicative/subjunctive"]) + let v = native_list_append(v, ["trueves", "verb", "troves", "", "", "", "second-person singular indicative/subjunctive"]) + let v = native_list_append(v, ["trueve", "verb", "trove", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["atalanter", "verb", "atalant", "atalanté", "atalanté", "", "to evoke desire"]) + let v = native_list_append(v, ["nagier", "verb", "nage", "nagié", "nagié", "", "to sail to"]) + let v = native_list_append(v, ["covoitier", "verb", "covoit", "covoitié", "covoitié", "", "to desire to"]) + let v = native_list_append(v, ["apris", "verb", "apris", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aiez", "verb", "aïez", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ferant", "verb", "ferant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["renestre", "verb", "renés", "renascu", "renascu", "", "alternative form of"]) + let v = native_list_append(v, ["arachier", "verb", "arache", "arachié", "arachié", "", "to pull off"]) + let v = native_list_append(v, ["menacier", "verb", "menaz", "menacié", "menacié", "", "to threaten"]) + let v = native_list_append(v, ["emplier", "verb", "empli", "emplïé", "emplïé", "", "alternative form of"]) + let v = native_list_append(v, ["entremetre", "verb", "entremet", "entremis", "entremis", "", "to put between"]) + let v = native_list_append(v, ["espeller", "verb", "espel", "espellé", "espellé", "", "alternative form of"]) + let v = native_list_append(v, ["desprisoner", "verb", "desprison", "desprisoné", "desprisoné", "", "to set free"]) + let v = native_list_append(v, ["recouchier", "verb", "recouche", "recouchié", "recouchié", "", "to go back"]) + let v = native_list_append(v, ["ansanglanter", "verb", "ansanglant", "ansanglanté", "ansanglanté", "", "to cover with"]) + let v = native_list_append(v, ["correcier", "verb", "correz", "correcié", "correcié", "", "to infuriate to"]) + let v = native_list_append(v, ["deceü", "verb", "deceü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escouté", "verb", "escouté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["antendu", "verb", "antendu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["antendre", "verb", "antent", "antendu", "antendu", "", "alternative form of"]) + let v = native_list_append(v, ["celee", "verb", "celee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["anprisoner", "verb", "anprison", "anprisoné", "anprisoné", "", "to imprison"]) + let v = native_list_append(v, ["tranchier", "verb", "tranche", "tranchié", "tranchié", "", "alternative form of"]) + let v = native_list_append(v, ["andurer", "verb", "andur", "anduré", "anduré", "", "alternative form of"]) + let v = native_list_append(v, ["cercer", "verb", "cerz", "cercéṭ", "cercéṭ", "", "alternative form of"]) + let v = native_list_append(v, ["deseriter", "verb", "deserit", "deserité", "deserité", "", "to disinherit"]) + let v = native_list_append(v, ["mescreire", "verb", "mescrei", "mescreiu", "mescreiu", "", "alternative form of"]) + let v = native_list_append(v, ["receivre", "verb", "receif", "receü", "receü", "", "alternative form of"]) + let v = native_list_append(v, ["cunquerre", "verb", "cunquier", "cunquis", "cunquis", "", "alternative form of"]) + let v = native_list_append(v, ["plongier", "verb", "plonge", "plongié", "plongié", "", "to dive to"]) + let v = native_list_append(v, ["floter", "verb", "flot", "floté", "floté", "", "to float rest"]) + let v = native_list_append(v, ["dementer", "verb", "dement", "dementé", "dementé", "", "to bewail to"]) + let v = native_list_append(v, ["muveir", "verb", "muef", "meü", "meü", "", "alternative form of"]) + let v = native_list_append(v, ["outragier", "verb", "outrage", "outragié", "outragié", "", "to be excessive"]) + let v = native_list_append(v, ["eschiver", "verb", "eschif", "eschivé", "eschivé", "", "to escape to"]) + let v = native_list_append(v, ["boillir", "verb", "boil", "boli", "boli", "", "alternative infinitive of"]) + let v = native_list_append(v, ["iert", "verb", "iert", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["antresavoir", "verb", "antresai", "antreseü", "antreseü", "", "to know something"]) + let v = native_list_append(v, ["apovrir", "verb", "apovris", "apovri", "apovri", "", "to impoverish to"]) + let v = native_list_append(v, ["adouber", "verb", "adoup", "adoubé", "adoubé", "", "alternative form of"]) + let v = native_list_append(v, ["adober", "verb", "adop", "adobé", "adobé", "", "to dub to"]) + let v = native_list_append(v, ["coillir", "verb", "cueil", "coilli", "coilli", "", "to pick of"]) + let v = native_list_append(v, ["estandre", "verb", "estant", "estandu", "estandu", "", "alternative form of"]) + let v = native_list_append(v, ["anvaïr", "verb", "anvaïs", "anvaï", "anvaï", "", "alternative form of"]) + let v = native_list_append(v, ["remenoir", "verb", "remenoir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["antrehair", "verb", "m'antrehaz", "antrehaï", "antrehaï", "", "to hate one"]) + let v = native_list_append(v, ["anvaï", "verb", "anvaï", "", "", "", "past participle of"]) + let v = native_list_append(v, ["deü", "verb", "deü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forgier", "verb", "forge", "forgié", "forgié", "", "to forge create"]) + let v = native_list_append(v, ["guverner", "verb", "guvern", "guverné", "guverné", "", "alternative form of"]) + let v = native_list_append(v, ["peschier", "verb", "pesche", "peschié", "peschié", "", "to fish catch"]) + let v = native_list_append(v, ["enoindre", "verb", "enoing", "enoint", "enoint", "", "to anoint"]) + let v = native_list_append(v, ["anterrer", "verb", "anter", "anterré", "anterré", "", "alternative form of"]) + let v = native_list_append(v, ["conbatre", "verb", "conbat", "conbatu", "conbatu", "", "alternative form of"]) + let v = native_list_append(v, ["tornoier", "verb", "torni", "tornoié", "tornoié", "", "alternative form of"]) + let v = native_list_append(v, ["conjoir", "verb", "conjoi", "conjoï", "conjoï", "", "to welcome"]) + let v = native_list_append(v, ["ancontrer", "verb", "ancontre", "ancontré", "ancontré", "", "alternative form of"]) + let v = native_list_append(v, ["aorer", "verb", "aeur", "aoré", "aoré", "", "to praise or"]) + let v = native_list_append(v, ["deshaitier", "verb", "deshait", "deshaitié", "deshaitié", "", "to discourage"]) + let v = native_list_append(v, ["acesmé", "verb", "acesmee", "acesmés", "acesmees", "", "past participle of"]) + let v = native_list_append(v, ["acesmer", "verb", "acesme", "acesmé", "acesmé", "", "to decorate to"]) + let v = native_list_append(v, ["surseoir", "verb", "sursié", "sursis", "sursis", "", "to abstain from"]) + let v = native_list_append(v, ["esperoner", "verb", "esperon", "esperoné", "esperoné", "", "to spur kick"]) + let v = native_list_append(v, ["baillier", "verb", "bail", "baillié", "baillié", "", "to deliver hand"]) + let v = native_list_append(v, ["dancier", "verb", "danz", "dancié", "dancié", "", "to dance"]) + let v = native_list_append(v, ["complaindre", "verb", "complaing", "complaint", "complaint", "", "alternative form of"]) + let v = native_list_append(v, ["fascher", "verb", "fasche", "fasché", "fasché", "", "alternative form of"]) + let v = native_list_append(v, ["deservi", "verb", "deservi", "", "", "", "past participle of"]) + let v = native_list_append(v, ["estudier", "verb", "estudi", "estudïé", "estudïé", "", "to study"]) + let v = native_list_append(v, ["inhabiter", "verb", "inhabit", "inhabité", "inhabité", "", "alternative form of"]) + let v = native_list_append(v, ["runer", "verb", "run", "runé", "runé", "", "To whisper murmur."]) + let v = native_list_append(v, ["randir", "verb", "randis", "randi", "randi", "", "to run to"]) + let v = native_list_append(v, ["perdut", "verb", "perdu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["beu", "verb", "beü", "", "", "", "past participle of"]) + let v = native_list_append(v, ["respons", "verb", "response", "responses", "", "", "past participle of"]) + let v = native_list_append(v, ["herbergier", "verb", "herberge", "herbergié", "herbergié", "", "to set up"]) + let v = native_list_append(v, ["eschauffer", "verb", "eschauf", "eschauffé", "eschauffé", "", "alternative form of"]) + let v = native_list_append(v, ["gaigner", "verb", "gaing", "gaigné", "gaigné", "", "to win"]) + let v = native_list_append(v, ["renover", "verb", "renof", "renové", "renové", "", "to renew to"]) + let v = native_list_append(v, ["asseurer", "verb", "asseur", "asseuré", "asseuré", "", "to assure to"]) + let v = native_list_append(v, ["fraper", "verb", "frap", "frapé", "frapé", "", "to hit to"]) + let v = native_list_append(v, ["tumber", "verb", "tump", "tumbé", "tumbé", "", "to fall"]) + let v = native_list_append(v, ["destachier", "verb", "destache", "destachié", "destachié", "", "to detach to"]) + let v = native_list_append(v, ["escumer", "verb", "escum", "escumé", "escumé", "", "to dribble allow"]) + let v = native_list_append(v, ["prophetizer", "verb", "prophetis", "prophetizé", "prophetizé", "", "to prophecize"]) + let v = native_list_append(v, ["paistre", "verb", "pais", "peü", "peü", "", "to graze ingest"]) + let v = native_list_append(v, ["repaistre", "verb", "repais", "repeü", "repeü", "", "to eat consume"]) + let v = native_list_append(v, ["devorer", "verb", "devuer", "devoré", "devoré", "", "to devour to"]) + let v = native_list_append(v, ["medlee", "verb", "meslee", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["medlé", "verb", "medlé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["medler", "verb", "medle", "medlé", "medlé", "", "alternative form of"]) + let v = native_list_append(v, ["evacuer", "verb", "evacu", "evacüé", "evacüé", "", "to evacuate to"]) + let v = native_list_append(v, ["podir", "verb", "podir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["joer", "verb", "jo", "joé", "joé", "", "to play"]) + let v = native_list_append(v, ["juer", "verb", "ju", "jüé", "jüé", "", "to play"]) + let v = native_list_append(v, ["acoustumer", "verb", "acoustum", "acoustumé", "acoustumé", "", "to get used"]) + let v = native_list_append(v, ["tumer", "verb", "tum", "tumé", "tumé", "", "alternative form of"]) + let v = native_list_append(v, ["reduire", "verb", "redui", "reduit", "reduit", "", "to reduce"]) + let v = native_list_append(v, ["deveir", "verb", "dei", "deu", "deu", "", "alternative form of"]) + let v = native_list_append(v, ["sevrer", "verb", "soivre", "sevré", "sevré", "", "to separate"]) + let v = native_list_append(v, ["penetrer", "verb", "penetre", "penetré", "penetré", "", "to penetrate"]) + let v = native_list_append(v, ["conquester", "verb", "conquest", "conquesté", "conquesté", "", "to conquer"]) + let v = native_list_append(v, ["odorer", "verb", "odor", "odoré", "odoré", "", "to smell have"]) + let v = native_list_append(v, ["aorner", "verb", "aorn", "aorné", "aorné", "", "to adorn decorate"]) + let v = native_list_append(v, ["meriter", "verb", "merit", "merité", "merité", "", "to merit to"]) + let v = native_list_append(v, ["areste", "verb", "areste", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["anoncier", "verb", "anonz", "anoncié", "anoncié", "", "to announce to"]) + let v = native_list_append(v, ["aourer", "verb", "aeur", "aouré", "aouré", "", "alternative form of"]) + let v = native_list_append(v, ["remetre", "verb", "remet", "remis", "remis", "", "to put back"]) + let v = native_list_append(v, ["trambler", "verb", "trambler", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["treter", "verb", "tret", "treté", "treté", "", "to treat behave"]) + let v = native_list_append(v, ["chaunger", "verb", "chaunge", "chaungé", "chaungé", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["obeir", "verb", "obeïr", "", "", "", "to obey"]) + let v = native_list_append(v, ["resentir", "verb", "resent", "resenti", "resenti", "", "to smell detect"]) + let v = native_list_append(v, ["garbeler", "verb", "garbel", "garbelé", "garbelé", "", "to garble filter"]) + let v = native_list_append(v, ["desagreer", "verb", "desagré", "desagreé", "desagreé", "", "to be unpleasant"]) + let v = native_list_append(v, ["descomforter", "verb", "descomfort", "descomforté", "descomforté", "", "to sadden"]) + let v = native_list_append(v, ["desfigurer", "verb", "desfigur", "desfiguré", "desfiguré", "", "to disfigure"]) + let v = native_list_append(v, ["desprover", "verb", "despruis", "desprové", "desprové", "", "to deny"]) + let v = native_list_append(v, ["desclamer", "verb", "desclaim", "desclamé", "desclamé", "", "to call upon"]) + let v = native_list_append(v, ["beneir", "verb", "beneï", "beneoit", "beneoit", "", "alternative infinitive of"]) + let v = native_list_append(v, ["noumer", "verb", "noum", "noumé", "noumé", "", "alternative form of"]) + let v = native_list_append(v, ["crucefier", "verb", "crucefi", "crucefïé", "crucefïé", "", "to crucify kill"]) + let v = native_list_append(v, ["plovoir", "verb", "no-table-tags", "fro-conj-iii", "avoir pleü", "", "to rain"]) + let v = native_list_append(v, ["sojorner", "verb", "sojorn", "sojorné", "sojorné", "", "to spend time"]) + let v = native_list_append(v, ["crachier", "verb", "crache", "crachié", "crachié", "", "to spit expell"]) + let v = native_list_append(v, ["creue", "verb", "creüe", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["ateindre", "verb", "ateing", "ateint", "ateint", "", "alternative form of"]) + let v = native_list_append(v, ["ateint", "verb", "ateint", "", "", "", "past participle of"]) + let v = native_list_append(v, ["enditer", "verb", "endit", "endité", "endité", "", "alternative form of"]) + let v = native_list_append(v, ["rostir", "verb", "rostis", "rosti", "rosti", "", "to roast specifically"]) + let v = native_list_append(v, ["creü", "verb", "creü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["couvenir", "verb", "couvieng", "couvenu", "couvenu", "", "alternative form of"]) + let v = native_list_append(v, ["estrangler", "verb", "estrangle", "estranglé", "estranglé", "", "to strangle to"]) + let v = native_list_append(v, ["esbatre", "verb", "esbat", "esbatu", "esbatu", "", "to hit to"]) + let v = native_list_append(v, ["demoustrer", "verb", "demoustre", "demoustré", "demoustré", "", "to show to"]) + let v = native_list_append(v, ["geir", "verb", "gei", "geï", "geï", "", "to admit to"]) + let v = native_list_append(v, ["porloigner", "verb", "porloing", "porloigné", "porloigné", "", "alternative form of"]) + let v = native_list_append(v, ["atraire", "verb", "atrai", "atrait", "atrait", "", "to attract"]) + let v = native_list_append(v, ["cembler", "verb", "cemble", "cemblé", "cemblé", "", "alternative form of"]) + let v = native_list_append(v, ["boillant", "verb", "boillant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["beneïr", "verb", "beneï", "beneoit", "beneoit", "", "alternative infinitive of"]) + let v = native_list_append(v, ["marchier", "verb", "marche", "marchié", "marchié", "", "to walk to"]) + let v = native_list_append(v, ["mesdire", "verb", "mesdi", "mesdit", "mesdit", "", "to traduce to"]) + let v = native_list_append(v, ["asproier", "verb", "aspri", "asproié", "asproié", "", "to torment to"]) + let v = native_list_append(v, ["fremir", "verb", "fremis", "fremi", "fremi", "", "to shake to"]) + let v = native_list_append(v, ["redescovrir", "verb", "redescuevre", "redescovert", "redescovert", "", "to rediscover"]) + let v = native_list_append(v, ["maldire", "verb", "maldi", "maldiü", "maldiü", "", "alternative form of"]) + let v = native_list_append(v, ["reschauffer", "verb", "reschauf", "reschauffé", "reschauffé", "", "to warm up"]) + let v = native_list_append(v, ["porrir", "verb", "porris", "porri", "porri", "", "to rot to"]) + let v = native_list_append(v, ["chaufer", "verb", "chauf", "chaufé", "chaufé", "", "heat warm"]) + let v = native_list_append(v, ["descrire", "verb", "descrif", "descrit", "descrit", "", "alternative infinitive of"]) + let v = native_list_append(v, ["hardir", "verb", "hardis", "hardi", "hardi", "", "to harden make"]) + let v = native_list_append(v, ["saintefier", "verb", "saintefi", "saintefïé", "saintefïé", "", "to canonize make"]) + let v = native_list_append(v, ["paier", "verb", "pai", "paié", "paié", "", "alternative form of"]) + let v = native_list_append(v, ["mariee", "verb", "mariee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["conlauder", "verb", "conlaut", "conlaudé", "conlaudé", "", "to laud to"]) + let v = native_list_append(v, ["croster", "verb", "crost", "crosté", "crosté", "", "to crust to"]) + let v = native_list_append(v, ["pensee", "verb", "pensede", "pansee", "pencee", "", "feminine singular of"]) + let v = native_list_append(v, ["vestues", "verb", "vestues", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["vestue", "verb", "vestue", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["apaisier", "verb", "apais", "apaisié", "apaisié", "", "to make less"]) + let v = native_list_append(v, ["gaimenter", "verb", "gaiment", "gaimenté", "gaimenté", "", "to lament bemoan"]) + let v = native_list_append(v, ["flotant", "verb", "flotant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["enchaigner", "verb", "enchaing", "enchaigné", "enchaigné", "", "to chain restrain"]) + let v = native_list_append(v, ["sedeir", "verb", "sedeir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sunger", "verb", "sunge", "sungé", "sungé", "", "alternative form of"]) + let v = native_list_append(v, ["chevalcher", "verb", "chevalche", "chevalché", "chevalché", "", "alternative form of"]) + let v = native_list_append(v, ["cunduire", "verb", "cundui", "cunduit", "cunduit", "", "alternative form of"]) + let v = native_list_append(v, ["freit", "verb", "freit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["apareiller", "verb", "apareil", "apareillé", "apareillé", "", "alternative form of"]) + let v = native_list_append(v, ["enquester", "verb", "enquest", "enquesté", "enquesté", "", "to investigate"]) + let v = native_list_append(v, ["lascher", "verb", "lasche", "lasché", "lasché", "", "alternative form of"]) + let v = native_list_append(v, ["pluret", "verb", "pluré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cumencet", "verb", "cumencé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["encuntret", "verb", "encuntré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["encuntrer", "verb", "encuntre", "encuntré", "encuntré", "", "alternative form of"]) + let v = native_list_append(v, ["nasfret", "verb", "nasfré", "", "", "", "past participle of"]) + let v = native_list_append(v, ["chevalcer", "verb", "chevalz", "chevalcé", "chevalcé", "", "alternative form of"]) + let v = native_list_append(v, ["trenchet", "verb", "trenché", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vedeir", "verb", "vei", "veḍüṭ", "veḍüṭ", "", "alternative form of"]) + let v = native_list_append(v, ["vencut", "verb", "vencu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["recercer", "verb", "recerz", "recercé", "recercé", "", "alternative form of"]) + let v = native_list_append(v, ["truvet", "verb", "truvet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["culchet", "verb", "culchet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["descendut", "verb", "descendut", "", "", "", "past participle of"]) + let v = native_list_append(v, ["demustrer", "verb", "demustre", "demustré", "demustré", "", "alternative form of"]) + let v = native_list_append(v, ["cunseillet", "verb", "cunseillet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cunquere", "verb", "cunquier", "cunquis", "cunquis", "", "alternative form of"]) + let v = native_list_append(v, ["chevalchet", "verb", "chevalchet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nuncier", "verb", "nunz", "nuncié", "nuncié", "", "alternative form of"]) + let v = native_list_append(v, ["nunciet", "verb", "nunciet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["caeir", "verb", "caeir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nuncer", "verb", "nunz", "nuncé", "nuncé", "", "alternative form of"]) + let v = native_list_append(v, ["cadeir", "verb", "cadeir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entreduner", "verb", "entreduing", "entreduné", "entreduné", "", "to exchange to"]) + let v = native_list_append(v, ["derumpre", "verb", "derump", "derut", "derut", "", "to break to"]) + let v = native_list_append(v, ["cunsentir", "verb", "cunsent", "cunsenti", "cunsenti", "", "alternative form of"]) + let v = native_list_append(v, ["brocher", "verb", "broche", "broché", "broché", "", "alternative form of"]) + let v = native_list_append(v, ["aduber", "verb", "adup", "adubé", "adubé", "", "alternative form of"]) + let v = native_list_append(v, ["interpoler", "verb", "interpol", "interpolé", "interpolé", "", "to interrupt"]) + let v = native_list_append(v, ["trametre", "verb", "tramet", "tramis", "tramis", "", "to send"]) + let v = native_list_append(v, ["descrier", "verb", "descri", "descrïé", "descrïé", "", "to announce to"]) + let v = native_list_append(v, ["moveir", "verb", "muef", "meü", "meü", "", "alternative form of"]) + let v = native_list_append(v, ["wasté", "verb", "wasté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["anuncier", "verb", "anunz", "anuncié", "anuncié", "", "alternative form of"]) + let v = native_list_append(v, ["bauptizer", "verb", "bauptis", "bauptizé", "bauptizé", "", "alternative form of"]) + let v = native_list_append(v, ["kuider", "verb", "kuit", "kuidé", "kuidé", "", "alternative form of"]) + let v = native_list_append(v, ["sonjer", "verb", "sonje", "sonjé", "sonjé", "", "alternative form of"]) + let v = native_list_append(v, ["veincu", "verb", "veincut", "", "", "", "past participle of"]) + let v = native_list_append(v, ["prametre", "verb", "pramet", "pramis", "pramis", "", "to promise"]) + let v = native_list_append(v, ["desfendre", "verb", "desfent", "desfendu", "desfendu", "", "alternative form of"]) + let v = native_list_append(v, ["graanter", "verb", "graant", "graanté", "graanté", "", "to guarantee to"]) + let v = native_list_append(v, ["recoillir", "verb", "recueil", "recoilli", "recoilli", "", "to gather up"]) + let v = native_list_append(v, ["asemler", "verb", "asemle", "asemlé", "asemlé", "", "alternative form of"]) + let v = native_list_append(v, ["espuser", "verb", "espeus", "espusé", "espusé", "", "to marry join"]) + let v = native_list_append(v, ["esposer", "verb", "espeus", "esposé", "esposé", "", "alternative form of"]) + let v = native_list_append(v, ["cunquester", "verb", "cunquest", "cunquesté", "cunquesté", "", "alternative form of"]) + let v = native_list_append(v, ["fraindre", "verb", "fraindre", "", "", "", "to break damage"]) + let v = native_list_append(v, ["freindre", "verb", "freindre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escerveler", "verb", "escervel", "escervelé", "escervelé", "", "to kill by"]) + let v = native_list_append(v, ["pramis", "verb", "pramis", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sorpris", "verb", "sorpris", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sorprendre", "verb", "sorpreing", "sorpris", "sorpris", "", "to seize take"]) + let v = native_list_append(v, ["sanble", "verb", "sanble", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["afeblir", "verb", "afeblis", "afebli", "afebli", "", "to weaken to"]) + let v = native_list_append(v, ["escolter", "verb", "escolt", "escolté", "escolté", "", "alternative form of"]) + let v = native_list_append(v, ["enclore", "verb", "enclo", "enclos", "enclos", "", "to enclose form"]) + let v = native_list_append(v, ["coru", "verb", "coru", "", "", "", "past participle of"]) + let v = native_list_append(v, ["manacher", "verb", "manache", "manaché", "manaché", "", "alternative form of"]) + let v = native_list_append(v, ["afamer", "verb", "afam", "afamé", "afamé", "", "to starve to"]) + let v = native_list_append(v, ["marrir", "verb", "marris", "marri", "marri", "", "to frustrate to"]) + let v = native_list_append(v, ["conveier", "verb", "convei", "conveié", "conveié", "", "to escort someone"]) + let v = native_list_append(v, ["esmoveir", "verb", "esmuef", "esmeü", "esmeü", "", "alternative form of"]) + let v = native_list_append(v, ["justiser", "verb", "justis", "justisé", "justisé", "", "alternative form of"]) + let v = native_list_append(v, ["chaleir", "verb", "no-table-tags", "fro-conj-chaloir", "aveir chalu", "", "alternative form of"]) + let v = native_list_append(v, ["issant", "verb", "issant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["voidier", "verb", "voit", "voidié", "voidié", "", "alternative form of"]) + let v = native_list_append(v, ["retaillier", "verb", "retail", "retaillié", "retaillié", "", "to shape by"]) + let v = native_list_append(v, ["tollir", "verb", "toil", "tolu", "tolu", "", "alternative form of"]) + let v = native_list_append(v, ["esfreer", "verb", "esfroi", "esfreé", "esfreé", "", "to scare to"]) + let v = native_list_append(v, ["muillier", "verb", "muil", "muillié", "muillié", "", "alternative form of"]) + let v = native_list_append(v, ["secher", "verb", "seche", "seché", "seché", "", "alternative form of"]) + let v = native_list_append(v, ["percier", "verb", "pierz", "percié", "percié", "", "to pierce to"]) + let v = native_list_append(v, ["repairier", "verb", "repair", "repairié", "repairié", "", "to go home"]) + let v = native_list_append(v, ["racunter", "verb", "racunt", "racunté", "racunté", "", "to tell to"]) + let v = native_list_append(v, ["munstrer", "verb", "munstre", "munstré", "munstré", "", "alternative form of"]) + let v = native_list_append(v, ["aveir chier", "verb", "aveir chier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avoir chier", "verb", "avoir chier", "", "", "", "to hold someone"]) + let v = native_list_append(v, ["numbrer", "verb", "numbre", "numbré", "numbré", "", "alternative form of"]) + let v = native_list_append(v, ["weyver", "verb", "weyf", "weyvé", "weyvé", "", "to waive to"]) + let v = native_list_append(v, ["defubler", "verb", "defuble", "defublé", "defublé", "", "to undress remove"]) + let v = native_list_append(v, ["tenir chier", "verb", "tenir cher", "", "", "", "to hold someone"]) + let v = native_list_append(v, ["i avoir", "verb", "i avoir", "", "", "", "there be"]) + let v = native_list_append(v, ["i aveir", "verb", "i aveir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunreer", "verb", "cunroi", "cunreé", "cunreé", "", "alternative form of"]) + let v = native_list_append(v, ["estormir", "verb", "estormis", "estormi", "estormi", "", "to storm"]) + let v = native_list_append(v, ["perir", "verb", "peris", "peri", "peri", "", "to die to"]) + let v = native_list_append(v, ["somoundre", "verb", "somouing", "somouns", "somouns", "", "alternative form of"]) + let v = native_list_append(v, ["creindre", "verb", "creim", "creint", "creint", "", "alternative form of"]) + let v = native_list_append(v, ["chaunter", "verb", "chaunt", "chaunté", "chaunté", "", "alternative spelling of"]) + let v = native_list_append(v, ["amois", "verb", "amois", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["enginier", "verb", "engin", "enginié", "enginié", "", "alternative form of"]) + let v = native_list_append(v, ["maindre", "verb", "maing", "manu", "manu", "", "alternative infinitive of"]) + let v = native_list_append(v, ["maneir", "verb", "maing", "manu", "manu", "", "alternative infinitive of"]) + let v = native_list_append(v, ["avancier", "verb", "avanz", "avancié", "avancié", "", "to advance to"]) + let v = native_list_append(v, ["aanchrer", "verb", "aanchre", "aanchré", "aanchré", "", "to anchor"]) + let v = native_list_append(v, ["acoster", "verb", "acost", "acosté", "acosté", "", "to land reach"]) + let v = native_list_append(v, ["deschargier", "verb", "descharge", "deschargié", "deschargié", "", "to unload to"]) + let v = native_list_append(v, ["manace", "verb", "manatce", "menace", "manache", "", "first-person singular present"]) + let v = native_list_append(v, ["laidir", "verb", "laidis", "laidi", "laidi", "", "to offend"]) + let v = native_list_append(v, ["sorveir", "verb", "sorvei", "sorveü", "sorveü", "", "to survey to"]) + let v = native_list_append(v, ["coarder", "verb", "coart", "coardé", "coardé", "", "to act in"]) + let v = native_list_append(v, ["escumengier", "verb", "escumenge", "escumengié", "escumengié", "", "to excommunicate remove"]) + let v = native_list_append(v, ["cremir", "verb", "criem", "crient", "crient", "", "alternative infinitive of"]) + let v = native_list_append(v, ["oez", "verb", "oiez", "oyez", "", "", "inflection of oir"]) + let v = native_list_append(v, ["entreveoir", "verb", "m'entrevoi", "entreveü", "entreveü", "", "to see one"]) + let v = native_list_append(v, ["croissir", "verb", "croissis", "croissi", "croissi", "", "to crush to"]) + let v = native_list_append(v, ["soleit", "verb", "soleit", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["assaveir", "verb", "assai", "asseü", "asseü", "", "to know"]) + let v = native_list_append(v, ["convicter", "verb", "convict", "convicté", "convicté", "", "to convict"]) + let v = native_list_append(v, ["assoiler", "verb", "assoil", "assoilé", "assoilé", "", "to absolve chiefly"]) + let v = native_list_append(v, ["assercher", "verb", "asserche", "asserché", "asserché", "", "to search for"]) + let v = native_list_append(v, ["periller", "verb", "peril", "perillé", "perillé", "", "alternative form of"]) + let v = native_list_append(v, ["plaissier", "verb", "plais", "plaissié", "plaissié", "", "to dispute to"]) + let v = native_list_append(v, ["greer", "verb", "gré", "greé", "greé", "", "to consent to"]) + let v = native_list_append(v, ["resforcier", "verb", "resforz", "resforcié", "resforcié", "", "to reinforce"]) + let v = native_list_append(v, ["agaitier", "verb", "agait", "agaitié", "agaitié", "", "to watch to"]) + let v = native_list_append(v, ["fructefier", "verb", "fructefi", "fructefïé", "fructefïé", "", "to fructify to"]) + let v = native_list_append(v, ["maleir", "verb", "maleï", "maleoit", "maleoit", "", "to curse to"]) + let v = native_list_append(v, ["despendre", "verb", "despent", "despendu", "despendu", "", "to spend money"]) + let v = native_list_append(v, ["acorre", "verb", "acor", "acoru", "acoru", "", "to run"]) + let v = native_list_append(v, ["pretendre", "verb", "pretent", "pretendu", "pretendu", "", "to claim"]) + let v = native_list_append(v, ["adormir", "verb", "m'adorm", "adormi", "adormi", "", "to fall asleep"]) + let v = native_list_append(v, ["estover", "verb", "no-table-tags", "fro-conj-iii", "aveir esteü", "", "alternative form of"]) + let v = native_list_append(v, ["ofrir", "verb", "uefre", "ofert", "ofert", "", "to offer"]) + let v = native_list_append(v, ["confermer", "verb", "conferm", "confermé", "confermé", "", "to confirm"]) + let v = native_list_append(v, ["jeuner", "verb", "jeun", "jeuné", "jeuné", "", "to fast go"]) + let v = native_list_append(v, ["condescendre", "verb", "condescent", "condescendu", "condescendu", "", "to descend to"]) + let v = native_list_append(v, ["asseger", "verb", "assiege", "assegé", "assegé", "", "alternative form of"]) + let v = native_list_append(v, ["socore", "verb", "socor", "socoru", "socoru", "", "to rescue to"]) + let v = native_list_append(v, ["perceivre", "verb", "perceif", "perceü", "perceü", "", "alternative form of"]) + let v = native_list_append(v, ["socoru", "verb", "socoru", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aconter", "verb", "acont", "aconté", "aconté", "", "to tell to"]) + let v = native_list_append(v, ["doctriner", "verb", "doctrin", "doctriné", "doctriné", "", "to educate"]) + let v = native_list_append(v, ["cacier", "verb", "caz", "cacié", "cacié", "", "alternative form of"]) + let v = native_list_append(v, ["entracorder", "verb", "entracort", "entracordé", "entracordé", "", "to agree to"]) + let v = native_list_append(v, ["rener", "verb", "ren", "rené", "rené", "", "alternative form of"]) + let v = native_list_append(v, ["desfendu", "verb", "desfendu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["entroublier", "verb", "entroubli", "entroublïé", "entroublïé", "", "to forget"]) + let v = native_list_append(v, ["destraindre", "verb", "destraing", "destraint", "destraint", "", "to press on"]) + let v = native_list_append(v, ["ocis", "verb", "ocis", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cachier", "verb", "cache", "cachié", "cachié", "", "to hide"]) + let v = native_list_append(v, ["engenrer", "verb", "engenre", "engenré", "engenré", "", "alternative form of"]) + let v = native_list_append(v, ["monteplier", "verb", "monteplier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ireter", "verb", "iret", "ireté", "ireté", "", "alternative form of"]) + let v = native_list_append(v, ["entremanecier", "verb", "entremanez", "entremanecié", "entremanecié", "", "to threaten one"]) + let v = native_list_append(v, ["sosrire", "verb", "sosri", "sosris", "sosris", "", "to smile"]) + let v = native_list_append(v, ["laier", "verb", "lai", "laiié", "laiié", "", "alternative form of"]) + let v = native_list_append(v, ["rainer", "verb", "rain", "rainé", "rainé", "", "alternative form of"]) + let v = native_list_append(v, ["manecier", "verb", "manez", "manecié", "manecié", "", "alternative form of"]) + let v = native_list_append(v, ["creanter", "verb", "creant", "creanté", "creanté", "", "to allow to"]) + let v = native_list_append(v, ["surrendre", "verb", "surrent", "surrendu", "surrendu", "", "to give up"]) + let v = native_list_append(v, ["ellire", "verb", "elli", "elleü", "elleü", "", "alternative form of"]) + let v = native_list_append(v, ["ensaignier", "verb", "ensaing", "ensaignié", "ensaignié", "", "alternative form of"]) + let v = native_list_append(v, ["tranlater", "verb", "tranlat", "tranlaté", "tranlaté", "", "alternative form of"]) + let v = native_list_append(v, ["entepreter", "verb", "entepret", "entepreté", "entepreté", "", "to interpret to"]) + let v = native_list_append(v, ["venqu", "verb", "venqu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["orillier", "verb", "oril", "orillié", "orillié", "", "to listen"]) + let v = native_list_append(v, ["harpant", "verb", "harpant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["vertir", "verb", "vert", "verti", "verti", "", "to return to"]) + let v = native_list_append(v, ["esrer", "verb", "esre", "esré", "esré", "", "alternative form of"]) + let v = native_list_append(v, ["semondre", "verb", "semoing", "semons", "semons", "", "to summon to"]) + let v = native_list_append(v, ["entreferir", "verb", "entrefier", "entreferu", "entreferu", "", "to hit one"]) + let v = native_list_append(v, ["poroffrir", "verb", "porueffre", "poroffert", "poroffert", "", "to offer"]) + let v = native_list_append(v, ["aencrer", "verb", "aencre", "aencré", "aencré", "", "to anchor of"]) + let v = native_list_append(v, ["haucer", "verb", "hauz", "haucé", "haucé", "", "alternative form of"]) + let v = native_list_append(v, ["ensanglenter", "verb", "ensanglent", "ensanglenté", "ensanglenté", "", "to cause to"]) + let v = native_list_append(v, ["engoler", "verb", "engol", "engolé", "engolé", "", "to take to"]) + let v = native_list_append(v, ["trancier", "verb", "tranz", "trancié", "trancié", "", "alternative form of"]) + let v = native_list_append(v, ["cerquier", "verb", "cerc", "cerquié", "cerquié", "", "alternative form of"]) + let v = native_list_append(v, ["detrancier", "verb", "detranz", "detrancié", "detrancié", "", "to cut up"]) + let v = native_list_append(v, ["estinceler", "verb", "estincel", "estincelé", "estincelé", "", "to spark produce"]) + let v = native_list_append(v, ["suire", "verb", "sui", "suivi", "suivi", "", "alternative form of"]) + let v = native_list_append(v, ["suiant", "verb", "suiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pestre", "verb", "pes", "peü", "peü", "", "alternative form of"]) + let v = native_list_append(v, ["sormonter", "verb", "sormont", "sormonté", "sormonté", "", "to surpass to"]) + let v = native_list_append(v, ["painer", "verb", "pain", "painé", "painé", "", "alternative form of"]) + let v = native_list_append(v, ["enflamer", "verb", "enflam", "enflamé", "enflamé", "", "to set alight"]) + let v = native_list_append(v, ["esrant", "verb", "esrant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["coltiver", "verb", "coltif", "coltivé", "coltivé", "", "to cultivate"]) + let v = native_list_append(v, ["ajoster", "verb", "ajost", "ajosté", "ajosté", "", "to add"]) + let v = native_list_append(v, ["ajosté", "verb", "ajosté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["manaces", "verb", "manaces", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["najant", "verb", "najant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["recrestre", "verb", "recrés", "recreü", "recreü", "", "to reincrease to"]) + let v = native_list_append(v, ["crestre", "verb", "cres", "creü", "creü", "", "alternative form of"]) + let v = native_list_append(v, ["emprendre", "verb", "empreing", "empris", "empris", "", "to undertake take"]) + let v = native_list_append(v, ["aferir", "verb", "afier", "aferu", "aferu", "", "to relate to"]) + let v = native_list_append(v, ["encoragier", "verb", "encorage", "encoragié", "encoragié", "", "to encourage"]) + let v = native_list_append(v, ["encorager", "verb", "encorage", "encoragé", "encoragé", "", "alternative form of"]) + let v = native_list_append(v, ["removoir", "verb", "remuef", "remeü", "remeü", "", "to separate"]) + let v = native_list_append(v, ["remouvoir", "verb", "remuef", "remeü", "remeü", "", "alternative form of"]) + let v = native_list_append(v, ["allower", "verb", "allow", "allowé", "allowé", "", "alternative form of"]) + let v = native_list_append(v, ["presumer", "verb", "presum", "presumé", "presumé", "", "to presume take"]) + let v = native_list_append(v, ["tenaunt", "verb", "tenaunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engignier", "verb", "enging", "engignié", "engignié", "", "to create to"]) + let v = native_list_append(v, ["enginer", "verb", "engin", "enginé", "enginé", "", "alternative form of"]) + let v = native_list_append(v, ["proier", "verb", "pri", "proié", "proié", "", "alternative form of"]) + let v = native_list_append(v, ["larmoier", "verb", "larmi", "larmoié", "larmoié", "", "alternative form of"]) + let v = native_list_append(v, ["contralier", "verb", "contrali", "contralïé", "contralïé", "", "to unite against"]) + let v = native_list_append(v, ["empirier", "verb", "empir", "empirié", "empirié", "", "alternative form of"]) + let v = native_list_append(v, ["gouer", "verb", "gou", "goué", "goué", "", "alternative form of"]) + let v = native_list_append(v, ["justicier", "verb", "justiz", "justicié", "justicié", "", "to judge to"]) + let v = native_list_append(v, ["raier", "verb", "rai", "raiié", "raiié", "", "to radiate move"]) + let v = native_list_append(v, ["desmaillier", "verb", "desmail", "desmaillié", "desmaillié", "", "to remove chainmail"]) + let v = native_list_append(v, ["enchaucer", "verb", "enchauz", "enchaucé", "enchaucé", "", "alternative form of"]) + let v = native_list_append(v, ["broicher", "verb", "broiche", "broiché", "broiché", "", "alternative form of"]) + let v = native_list_append(v, ["estendu", "verb", "estendu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["pormener", "verb", "pormein", "pormené", "pormené", "", "to walk"]) + let v = native_list_append(v, ["desrompre", "verb", "desromp", "desrot", "desrot", "", "to break to"]) + let v = native_list_append(v, ["enpirier", "verb", "enpir", "enpirié", "enpirié", "", "alternative form of"]) + let v = native_list_append(v, ["engraignier", "verb", "engraing", "engraignié", "engraignié", "", "to increase to"]) + let v = native_list_append(v, ["essilier", "verb", "essil", "essilié", "essilié", "", "alternative form of"]) + let v = native_list_append(v, ["trebuchier", "verb", "trebuche", "trebuchié", "trebuchié", "", "to fall to"]) + let v = native_list_append(v, ["escheoit", "verb", "escheoit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["escheoir", "verb", "eschié", "escheï", "escheï", "", "to fall"]) + let v = native_list_append(v, ["enragier", "verb", "enrage", "enragié", "enragié", "", "to enrage to"]) + let v = native_list_append(v, ["erragier", "verb", "errage", "erragié", "erragié", "", "alternative form of"]) + let v = native_list_append(v, ["esragier", "verb", "esrage", "esragié", "esragié", "", "alternative form of"]) + let v = native_list_append(v, ["hargnier", "verb", "harng", "hargnié", "hargnié", "", "to complain to"]) + let v = native_list_append(v, ["fiert", "verb", "fiert", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["laire", "verb", "laiier", "", "", "", "to let to"]) + let v = native_list_append(v, ["resplendir", "verb", "resplent", "resplendi", "resplendi", "", "to glimmer gleam"]) + let v = native_list_append(v, ["atargier", "verb", "atarge", "atargié", "atargié", "", "to wait around"]) + let v = native_list_append(v, ["enmener", "verb", "enmein", "enmené", "enmené", "", "to lead away"]) + let v = native_list_append(v, ["desconfire", "verb", "desconfis", "desconfit", "desconfit", "", "to destroy to"]) + let v = native_list_append(v, ["desconfit", "verb", "desconfit", "", "", "", "past participle of"]) + let v = native_list_append(v, ["araisnier", "verb", "araison", "araisnié", "araisnié", "", "to address someone"]) + let v = native_list_append(v, ["detrenchier", "verb", "detrenche", "detrenchié", "detrenchié", "", "to cut up"]) + let v = native_list_append(v, ["troer", "verb", "tro", "troé", "troé", "", "to put a"]) + let v = native_list_append(v, ["angenrer", "verb", "angenre", "angenré", "angenré", "", "alternative form of"]) + let v = native_list_append(v, ["negier", "verb", "nege", "negié", "negié", "", "to snow"]) + let v = native_list_append(v, ["pencer", "verb", "penz", "pencé", "pencé", "", "alternative form of"]) + let v = native_list_append(v, ["entrabrasser", "verb", "m'entrabras", "entrabrassé", "entrabrassé", "", "to hug one"]) + let v = native_list_append(v, ["acouchier", "verb", "acouche", "acouchié", "acouchié", "", "to give birth"]) + let v = native_list_append(v, ["desfubler", "verb", "desfuble", "desfublé", "desfublé", "", "alternative form of"]) + let v = native_list_append(v, ["torbler", "verb", "torble", "torblé", "torblé", "", "alternative form of"]) + let v = native_list_append(v, ["engouler", "verb", "engoul", "engoulé", "engoulé", "", "to put into"]) + let v = native_list_append(v, ["engoulé", "verb", "engoulé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["remordre", "verb", "remort", "remors", "remors", "", "to bite of"]) + let v = native_list_append(v, ["dampner", "verb", "dampne", "dampné", "dampné", "", "to damn"]) + let v = native_list_append(v, ["dempner", "verb", "dempne", "dempné", "dempné", "", "alternative form of"]) + let v = native_list_append(v, ["estraire", "verb", "estrai", "estrait", "estrait", "", "to extract"]) + let v = native_list_append(v, ["parçonner", "verb", "parçon", "parçonné", "parçonné", "", "alternative form of"]) + let v = native_list_append(v, ["descuvrir", "verb", "descuevre", "descuvert", "descuvert", "", "alternative form of"]) + let v = native_list_append(v, ["chaver", "verb", "chaver", "", "", "", "alternative infinitive of"]) + let v = native_list_append(v, ["taner", "verb", "tan", "tané", "tané", "", "to tan to"]) + let v = native_list_append(v, ["noer", "verb", "no", "noé", "noé", "", "to swim travel"]) + let v = native_list_append(v, ["paroistre", "verb", "parois", "pareü", "pareü", "", "to appear to"]) + let v = native_list_append(v, ["duire", "verb", "dui", "duit", "duit", "", "to direct to"]) + let v = native_list_append(v, ["esteindre", "verb", "esteing", "esteint", "esteint", "", "to extinguish to"]) + let v = native_list_append(v, ["eslargir", "verb", "eslargis", "eslargi", "eslargi", "", "to enlarge to"]) + let v = native_list_append(v, ["purveir", "verb", "purvei", "purveü", "purveü", "", "alternative form of"]) + let v = native_list_append(v, ["purveer", "verb", "purveer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["envenimer", "verb", "envenim", "envenimé", "envenimé", "", "to envenom to"]) + let v = native_list_append(v, ["chevir", "verb", "chevis", "chevi", "chevi", "", "to finish to"]) + let v = native_list_append(v, ["fouir", "verb", "fue", "fouï", "fouï", "", "alternative form of"]) + let v = native_list_append(v, ["forbir", "verb", "forbis", "forbi", "forbi", "", "to clean"]) + let v = native_list_append(v, ["burnir", "verb", "burnis", "burni", "burni", "", "alternative form of"]) + let v = native_list_append(v, ["fringuer", "verb", "frinc", "fringué", "fringué", "", "to gambol to"]) + let v = native_list_append(v, ["bailler", "verb", "bail", "baillé", "baillé", "", "alternative form of"]) + let v = native_list_append(v, ["espessir", "verb", "espessis", "espessi", "espessi", "", "to thicken to"]) + let v = native_list_append(v, ["agister", "verb", "agist", "agisté", "agisté", "", "to agist take"]) + let v = native_list_append(v, ["recounter", "verb", "recount", "recounté", "recounté", "", "alternative form of"]) + let v = native_list_append(v, ["desrengier", "verb", "desrenge", "desrengié", "desrengié", "", "to disarrange"]) + let v = native_list_append(v, ["sourveoir", "verb", "sourvoi", "sourveü", "sourveü", "", "to oversee to"]) + let v = native_list_append(v, ["surveoir", "verb", "survoi", "surveü", "surveü", "", "alternative form of"]) + let v = native_list_append(v, ["sorrirre", "verb", "sorri", "sorris", "sorris", "", "to smile"]) + let v = native_list_append(v, ["ravauder", "verb", "ravaut", "ravaudé", "ravaudé", "", "to mend"]) + let v = native_list_append(v, ["souillier", "verb", "souil", "souillié", "souillié", "", "to dirty to"]) + let v = native_list_append(v, ["segonder", "verb", "segont", "segondé", "segondé", "", "to follow to"]) + let v = native_list_append(v, ["bers", "verb", "bers", "", "", "", "inflection of berser"]) + let v = native_list_append(v, ["reploier", "verb", "repli", "reploié", "reploié", "", "to fold"]) + let v = native_list_append(v, ["relascher", "verb", "relasche", "relasché", "relasché", "", "alternative form of"]) + let v = native_list_append(v, ["relaisser", "verb", "relais", "relaissié", "relaissié", "", "alternative form of"]) + let v = native_list_append(v, ["refreschir", "verb", "refreschis", "refreschi", "refreschi", "", "to refresh"]) + let v = native_list_append(v, ["ralier", "verb", "rali", "ralïé", "ralïé", "", "to gather up"]) + let v = native_list_append(v, ["draoncler", "verb", "draoncle", "draonclé", "draonclé", "", "to suppurate"]) + let v = native_list_append(v, ["rancler", "verb", "rancle", "ranclé", "ranclé", "", "alternative form of"]) + let v = native_list_append(v, ["raancler", "verb", "raancle", "raanclé", "raanclé", "", "alternative form of"]) + let v = native_list_append(v, ["ragier", "verb", "rage", "ragié", "ragié", "", "to remove forcefully"]) + let v = native_list_append(v, ["proferer", "verb", "profer", "proferé", "proferé", "", "to say out"]) + let v = native_list_append(v, ["preveoir", "verb", "prevoi", "preveü", "preveü", "", "to anticipate to"]) + let v = native_list_append(v, ["preveu", "verb", "preveu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["paincter", "verb", "painct", "paincté", "paincté", "", "alternative form of"]) + let v = native_list_append(v, ["parbouillir", "verb", "parbouil", "parbouli", "parbouli", "", "alternative form of"]) + let v = native_list_append(v, ["pantoisier", "verb", "pantois", "pantoisié", "pantoisié", "", "to breathe with"]) + let v = native_list_append(v, ["finé", "verb", "finé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["avra", "verb", "avra", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["nigier", "verb", "nige", "nigié", "nigié", "", "to nest of"]) + let v = native_list_append(v, ["desmanteler", "verb", "desmantel", "desmantelé", "desmantelé", "", "to remove someones"]) + let v = native_list_append(v, ["laisier", "verb", "lais", "laisié", "laisié", "", "alternative form of"]) + let v = native_list_append(v, ["giveer", "verb", "givei", "giveé", "giveé", "", "to give"]) + let v = native_list_append(v, ["enhabiter", "verb", "enhabit", "enhabité", "enhabité", "", "to inhabit to"]) + let v = native_list_append(v, ["broier", "verb", "bri", "broié", "broié", "", "alternative form of"]) + let v = native_list_append(v, ["breer", "verb", "bre", "breé", "breé", "", "alternative form of"]) + let v = native_list_append(v, ["bolengier", "verb", "bolenge", "bolengié", "bolengié", "", "to bake bread"]) + let v = native_list_append(v, ["revisiter", "verb", "revisit", "revisité", "revisité", "", "to visit again"]) + let v = native_list_append(v, ["grapper", "verb", "grap", "grappé", "grappé", "", "alternative form of"]) + let v = native_list_append(v, ["craper", "verb", "crap", "crapé", "crapé", "", "alternative form of"]) + let v = native_list_append(v, ["cheoir", "verb", "chié", "cheï", "cheï", "", "to fall"]) + let v = native_list_append(v, ["barater", "verb", "barat", "baraté", "baraté", "", "to trick to"]) + let v = native_list_append(v, ["sourdre", "verb", "surdre", "", "", "", "to spurt to"]) + let v = native_list_append(v, ["alegier", "verb", "alege", "alegié", "alegié", "", "to acquit of"]) + let v = native_list_append(v, ["frait", "verb", "fret", "", "", "", "past participle of"]) + let v = native_list_append(v, ["forsené", "verb", "forsené", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flatir", "verb", "flatis", "flati", "flati", "", "to knock over"]) + let v = native_list_append(v, ["flairier", "verb", "flair", "flairié", "flairié", "", "to smell to"]) + let v = native_list_append(v, ["favorir", "verb", "favoris", "favori", "favori", "", "to favor"]) + let v = native_list_append(v, ["esvanir", "verb", "esvanis", "esvani", "esvani", "", "to disappear to"]) + let v = native_list_append(v, ["estanchier", "verb", "estanche", "estanchié", "estanchié", "", "to staunch stop"]) + let v = native_list_append(v, ["espumer", "verb", "espum", "espumé", "espumé", "", "to foam produce"]) + let v = native_list_append(v, ["poons", "verb", "poons", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["peluchier", "verb", "peluche", "peluchié", "peluchié", "", "to peel"]) + let v = native_list_append(v, ["espoillier", "verb", "espoil", "espoillié", "espoillié", "", "to pillage"]) + let v = native_list_append(v, ["esparpiller", "verb", "esparpil", "esparpillé", "esparpillé", "", "alternative form of"]) + let v = native_list_append(v, ["escuer", "verb", "escu", "escüé", "escüé", "", "alternative form of"]) + let v = native_list_append(v, ["escorcier", "verb", "escorz", "escorcié", "escorcié", "", "to debark remove"]) + let v = native_list_append(v, ["esperer", "verb", "espoir", "esperé", "esperé", "", "to hope"]) + let v = native_list_append(v, ["encliner", "verb", "enclin", "encliné", "encliné", "", "to lean"]) + let v = native_list_append(v, ["floureter", "verb", "flouret", "floureté", "floureté", "", "to blossom"]) + let v = native_list_append(v, ["dessevrer", "verb", "dessoivre", "dessevré", "dessevré", "", "to divide to"]) + let v = native_list_append(v, ["desnoer", "verb", "desno", "desnoé", "desnoé", "", "to unknot undo"]) + let v = native_list_append(v, ["descreistre", "verb", "descreis", "descreü", "descreü", "", "to decrease to"]) + let v = native_list_append(v, ["damnifier", "verb", "damnifi", "damnifïé", "damnifïé", "", "to damage possessions"]) + let v = native_list_append(v, ["deboissier", "verb", "debois", "deboissié", "deboissié", "", "to sculpt"]) + let v = native_list_append(v, ["debrisier", "verb", "debris", "debrisié", "debrisié", "", "to break"]) + let v = native_list_append(v, ["denuncier", "verb", "denunz", "denuncié", "denuncié", "", "to announce to"]) + let v = native_list_append(v, ["criquer", "verb", "cric", "criqué", "criqué", "", "to creak making"]) + let v = native_list_append(v, ["embler", "verb", "emble", "emblé", "emblé", "", "to pillage to"]) + let v = native_list_append(v, ["traveillier", "verb", "traveilli", "traveillïé", "traveillïé", "", "alternative form of"]) + let v = native_list_append(v, ["espardre", "verb", "espart", "espars", "espars", "", "to spread to"]) + let v = native_list_append(v, ["descouchier", "verb", "descouche", "descouchié", "descouchié", "", "to get someone"]) + let v = native_list_append(v, ["coaillier", "verb", "coail", "coaillié", "coaillié", "", "to curdle"]) + let v = native_list_append(v, ["quailler", "verb", "quail", "quaillé", "quaillé", "", "alternative form of"]) + let v = native_list_append(v, ["enorter", "verb", "enort", "enorté", "enorté", "", "to encourage"]) + let v = native_list_append(v, ["enchargier", "verb", "encharge", "enchargié", "enchargié", "", "to load add"]) + let v = native_list_append(v, ["respoundre", "verb", "respount", "respoundu", "respoundu", "", "alternative form of"]) + let v = native_list_append(v, ["guignier", "verb", "guing", "guignié", "guignié", "", "to signal make"]) + let v = native_list_append(v, ["convoier", "verb", "convi", "convoié", "convoié", "", "alternative form of"]) + let v = native_list_append(v, ["entremarchander", "verb", "entremarchant", "entremarchandé", "entremarchandé", "", "to sell to"]) + let v = native_list_append(v, ["contrepeser", "verb", "contrepois", "contrepesé", "contrepesé", "", "to counterbalance"]) + let v = native_list_append(v, ["essoinier", "verb", "essoin", "essoinié", "essoinié", "", "alternative form of"]) + let v = native_list_append(v, ["complaignant", "verb", "complaignant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["compleignant", "verb", "compleignant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["aprovender", "verb", "aprovent", "aprovendé", "aprovendé", "", "to provide food"]) + let v = native_list_append(v, ["enseignier", "verb", "enseing", "enseignié", "enseignié", "", "to teach"]) + let v = native_list_append(v, ["avanchier", "verb", "avanche", "avanchié", "avanchié", "", "alternative form of"]) + let v = native_list_append(v, ["avogle", "verb", "aveugle", "avuegle", "", "", "inflection of avogler"]) + let v = native_list_append(v, ["avogler", "verb", "avogle", "avoglé", "avoglé", "", "to blind to"]) + let v = native_list_append(v, ["avanter", "verb", "avant", "avanté", "avanté", "", "to boast to"]) + let v = native_list_append(v, ["auctorisier", "verb", "auctoris", "auctorisié", "auctorisié", "", "to authorize to"]) + let v = native_list_append(v, ["atirer", "verb", "atir", "atiré", "atiré", "", "alternative form of"]) + let v = native_list_append(v, ["apalir", "verb", "apalis", "apali", "apali", "", "to become pale"]) + let v = native_list_append(v, ["alouer", "verb", "alou", "aloué", "aloué", "", "alternative form of"]) + let v = native_list_append(v, ["verdoier", "verb", "verdi", "verdoié", "verdoié", "", "alternative form of"]) + let v = native_list_append(v, ["verdeier", "verb", "verdi", "verdeié", "verdeié", "", "alternative form of"]) + let v = native_list_append(v, ["alurer", "verb", "alur", "aluré", "aluré", "", "to entice to"]) + let v = native_list_append(v, ["afichier", "verb", "afiche", "afichié", "afichié", "", "to fasten"]) + let v = native_list_append(v, ["acunter", "verb", "acunt", "acunté", "acunté", "", "alternative form of"]) + let v = native_list_append(v, ["acounter", "verb", "acount", "acounté", "acounté", "", "alternative form of"]) + let v = native_list_append(v, ["acuser", "verb", "acus", "acusé", "acusé", "", "to accuse to"]) + let v = native_list_append(v, ["acopler", "verb", "acople", "acoplé", "acoplé", "", "to couple to"]) + let v = native_list_append(v, ["acupler", "verb", "acuple", "acuplé", "acuplé", "", "alternative form of"]) + let v = native_list_append(v, ["acoupler", "verb", "acouple", "acouplé", "acouplé", "", "alternative form of"]) + let v = native_list_append(v, ["estraier", "verb", "estrai", "estraié", "estraié", "", "to wander to"]) + let v = native_list_append(v, ["acompaignier", "verb", "acompaing", "acompaignié", "acompaignié", "", "to accompany to"]) + let v = native_list_append(v, ["abaubir", "verb", "abaubis", "abaubi", "abaubi", "", "to surprise to"]) + let v = native_list_append(v, ["acepter", "verb", "acepte", "acepté", "acepté", "", "alternative form of"]) + let v = native_list_append(v, ["esmaier", "verb", "esmai", "esmaié", "esmaié", "", "to be frightened"]) + let v = native_list_append(v, ["acoillir", "verb", "acueil", "acoilli", "acoilli", "", "to push"]) + let v = native_list_append(v, ["banir", "verb", "banis", "bani", "bani", "", "proclaim"]) + let v = native_list_append(v, ["troquier", "verb", "troc", "troquié", "troquié", "", "to offer in"]) + let v = native_list_append(v, ["ramposner", "verb", "ramposne", "ramposné", "ramposné", "", "to insult"]) + let v = native_list_append(v, ["desguiser", "verb", "desguis", "desguisé", "desguisé", "", "alternative form of"]) + let v = native_list_append(v, ["deguiser", "verb", "deguis", "deguisé", "deguisé", "", "alternative form of"]) + let v = native_list_append(v, ["portraire", "verb", "portrai", "portrait", "portrait", "", "to portray represent"]) + let v = native_list_append(v, ["purtraire", "verb", "purtrai", "purtrait", "purtrait", "", "to portray represent"]) + let v = native_list_append(v, ["brouder", "verb", "brout", "broudé", "broudé", "", "alternative form of"]) + let v = native_list_append(v, ["soillier", "verb", "soil", "soillié", "soillié", "", "alternative form of"]) + let v = native_list_append(v, ["suelent", "verb", "suelent", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["estrillier", "verb", "estril", "estrillié", "estrillié", "", "to curry to"]) + let v = native_list_append(v, ["anseler", "verb", "ansel", "anselé", "anselé", "", "alternative form of"]) + let v = native_list_append(v, ["adestrer", "verb", "adestre", "adestré", "adestré", "", "to accompany"]) + let v = native_list_append(v, ["vaintre", "verb", "vanc", "vancu", "vancu", "", "alternative form of"]) + let v = native_list_append(v, ["conquesté", "verb", "conquesté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reboter", "verb", "rebot", "reboté", "reboté", "", "to push back"]) + let v = native_list_append(v, ["anfrainner", "verb", "anfrain", "anfrainné", "anfrainné", "", "alternative form of"]) + let v = native_list_append(v, ["esclarcir", "verb", "esclarcis", "esclarci", "esclarci", "", "to become brighter"]) + let v = native_list_append(v, ["desvestu", "verb", "desvestu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["poez", "verb", "poés", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["beneï", "verb", "beneï", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aboivrer", "verb", "aboivre", "aboivré", "aboivré", "", "to drink copiously"]) + let v = native_list_append(v, ["acoardir", "verb", "acoardis", "acoardi", "acoardi", "", "to render cowardly"]) + let v = native_list_append(v, ["descloer", "verb", "desclo", "descloé", "descloé", "", "to unnail remove"]) + let v = native_list_append(v, ["peçoiier", "verb", "peci", "peçoiié", "peçoiié", "", "to break to"]) + let v = native_list_append(v, ["redoter", "verb", "redot", "redoté", "redoté", "", "to fear"]) + let v = native_list_append(v, ["embuignier", "verb", "embuing", "embuignié", "embuignié", "", "to dent make"]) + let v = native_list_append(v, ["sorbir", "verb", "sorbis", "sorbi", "sorbi", "", "to engulf to"]) + let v = native_list_append(v, ["tresoir", "verb", "tresoir", "", "", "", "to hear"]) + let v = native_list_append(v, ["desbuschier", "verb", "desbusche", "desbuschié", "desbuschié", "", "to exit a"]) + let v = native_list_append(v, ["chanpir", "verb", "chanpis", "chanpi", "chanpi", "", "alternative form of"]) + let v = native_list_append(v, ["champir", "verb", "champis", "champi", "champi", "", "to engage in"]) + let v = native_list_append(v, ["anuitier", "verb", "no-table-tags", "fro-conj-ier", "avoir anuitié", "", "to become night"]) + let v = native_list_append(v, ["antrespargnier", "verb", "m'antresparng", "antrespargnié", "antrespargnié", "", "to spare one"]) + let v = native_list_append(v, ["tandre", "verb", "tant", "tandu", "tandu", "", "alternative form of"]) + let v = native_list_append(v, ["fandre", "verb", "fant", "fandu", "fandu", "", "alternative spelling of"]) + let v = native_list_append(v, ["esclicer", "verb", "escliz", "esclicé", "esclicé", "", "to shatter split"]) + let v = native_list_append(v, ["deslicier", "verb", "desliz", "deslicié", "deslicié", "", "to break"]) + let v = native_list_append(v, ["heitier", "verb", "heit", "heitié", "heitié", "", "alternative form of"]) + let v = native_list_append(v, ["amercier", "verb", "amerz", "amercié", "amercié", "", "to amerce impose"]) + let v = native_list_append(v, ["desheitier", "verb", "desheit", "desheitié", "desheitié", "", "alternative form of"]) + let v = native_list_append(v, ["plaier", "verb", "plai", "plaié", "plaié", "", "to wound"]) + let v = native_list_append(v, ["maumetre", "verb", "maumet", "maumis", "maumis", "", "to mistreat"]) + let v = native_list_append(v, ["reconforter", "verb", "reconfort", "reconforté", "reconforté", "", "to comfort to"]) + let v = native_list_append(v, ["represanter", "verb", "represant", "represanté", "represanté", "", "to represent symbolize"]) + let v = native_list_append(v, ["entrefier", "verb", "m'entrefi", "entrefïé", "entrefïé", "", "to trust one"]) + let v = native_list_append(v, ["desabelir", "verb", "desabelis", "desabeli", "desabeli", "", "to displease to"]) + let v = native_list_append(v, ["tissir", "verb", "tis", "tissu", "tissu", "", "to weave"]) + let v = native_list_append(v, ["tistre", "verb", "tis", "tissu", "tissu", "", "alternative form of"]) + let v = native_list_append(v, ["pillier", "verb", "pil", "pillié", "pillié", "", "to plunder to"]) + let v = native_list_append(v, ["especuler", "verb", "especul", "especulé", "especulé", "", "to look at"]) + let v = native_list_append(v, ["plevir", "verb", "plevis", "plevi", "plevi", "", "to promise"]) + let v = native_list_append(v, ["replevir", "verb", "replevis", "replevi", "replevi", "", "to give a"]) + let v = native_list_append(v, ["desaencrer", "verb", "desaencre", "desaencré", "desaencré", "", "to raise ones"]) + let v = native_list_append(v, ["regeter", "verb", "reget", "regeté", "regeté", "", "to reject to"]) + let v = native_list_append(v, ["muder", "verb", "mut", "mudé", "mudé", "", "alternative form of"]) + let v = native_list_append(v, ["descolorer", "verb", "descoleur", "descoloré", "descoloré", "", "to become discolored"]) + let v = native_list_append(v, ["anpalir", "verb", "anpalis", "anpali", "anpali", "", "to become pale"]) + let v = native_list_append(v, ["anraciner", "verb", "anracin", "anraciné", "anraciné", "", "alternative form of"]) + let v = native_list_append(v, ["ancuser", "verb", "ancus", "ancusé", "ancusé", "", "alternative form of"]) + let v = native_list_append(v, ["aresté", "verb", "aresté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["contremander", "verb", "contremant", "contremandé", "contremandé", "", "to countermand to"]) + let v = native_list_append(v, ["behorder", "verb", "behort", "behordé", "behordé", "", "to joust to"]) + let v = native_list_append(v, ["traïner", "verb", "traïn", "traïné", "traïné", "", "alternative form of"]) + let v = native_list_append(v, ["eschargaitier", "verb", "eschargait", "eschargaitié", "eschargaitié", "", "to look out"]) + let v = native_list_append(v, ["berse", "verb", "berse", "", "", "", "inflection of berser"]) + let v = native_list_append(v, ["anhardir", "verb", "anhardis", "anhardi", "anhardi", "", "to embolden"]) + let v = native_list_append(v, ["andoctriner", "verb", "andoctrin", "andoctriné", "andoctriné", "", "alternative form of"]) + let v = native_list_append(v, ["consuire", "verb", "consui", "consuivi", "consuivi", "", "alternative infinitive of"]) + let v = native_list_append(v, ["tranprer", "verb", "tranpre", "tranpré", "tranpré", "", "to mix ingredients"]) + let v = native_list_append(v, ["atranprer", "verb", "atranpre", "atranpré", "atranpré", "", "to mix ingredients"]) + let v = native_list_append(v, ["detranprer", "verb", "detranpre", "detranpré", "detranpré", "", "to mix ingredients"]) + let v = native_list_append(v, ["apruichier", "verb", "apruiche", "apruichié", "apruichié", "", "alternative form of"]) + let v = native_list_append(v, ["rescorre", "verb", "rescurre", "rescoure", "", "", "to rescue"]) + let v = native_list_append(v, ["jaugier", "verb", "jauge", "jaugié", "jaugié", "", "to measure a"]) + let v = native_list_append(v, ["desconforter", "verb", "desconfort", "desconforté", "desconforté", "", "to be devastated"]) + let v = native_list_append(v, ["cremu", "verb", "cremu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["losengier", "verb", "losenge", "losengié", "losengié", "", "to flatter especially"]) + let v = native_list_append(v, ["contretenir", "verb", "contretieng", "contretenu", "contretenu", "", "to resist to"]) + let v = native_list_append(v, ["plegier", "verb", "plege", "plegié", "plegié", "", "to promise to"]) + let v = native_list_append(v, ["oposer", "verb", "opos", "oposé", "oposé", "", "to oppose to"]) + let v = native_list_append(v, ["puindre", "verb", "puing", "puint", "puint", "", "alternative form of"]) + let v = native_list_append(v, ["nichier", "verb", "niche", "nichié", "nichié", "", "to nest of"]) + let v = native_list_append(v, ["anserrer", "verb", "anser", "anserré", "anserré", "", "to lock up"]) + let v = native_list_append(v, ["espondre", "verb", "espoing", "espons", "espons", "", "to tell to"]) + let v = native_list_append(v, ["soloit", "verb", "soloit", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["suelt", "verb", "suelt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["espirer", "verb", "espir", "espiré", "espiré", "", "to breathe in"]) + let v = native_list_append(v, ["quachier", "verb", "quache", "quachié", "quachié", "", "alternative form of"]) + let v = native_list_append(v, ["ancumbrer", "verb", "ancumbre", "ancumbré", "ancumbré", "", "alternative form of"]) + let v = native_list_append(v, ["arimer", "verb", "arim", "arimé", "arimé", "", "to arrange to"]) + let v = native_list_append(v, ["auleguer", "verb", "aulec", "aulegué", "aulegué", "", "to invoke a"]) + let v = native_list_append(v, ["eriter", "verb", "erit", "erité", "erité", "", "to inherit"]) + let v = native_list_append(v, ["heriter", "verb", "herit", "herité", "herité", "", "alternative form of"]) + let v = native_list_append(v, ["acherchier", "verb", "acherche", "acherchié", "acherchié", "", "to look for"]) + let v = native_list_append(v, ["esgruner", "verb", "esgrun", "esgruné", "esgruné", "", "to crumble"]) + let v = native_list_append(v, ["enmurer", "verb", "enmur", "enmuré", "enmuré", "", "to immure to"]) + let v = native_list_append(v, ["encloser", "verb", "enclos", "enclosé", "enclosé", "", "to enclose form"]) + let v = native_list_append(v, ["taindre", "verb", "taing", "taint", "taint", "", "to taint with"]) + let v = native_list_append(v, ["essuier", "verb", "essui", "essuié", "essuié", "", "to wipe ones"]) + let v = native_list_append(v, ["peçoier", "verb", "peci", "peçoié", "peçoié", "", "alternative form of"]) + let v = native_list_append(v, ["desjoindre", "verb", "desjoing", "desjoint", "desjoint", "", "to separate"]) + let v = native_list_append(v, ["queroler", "verb", "querol", "querolé", "querolé", "", "alternative form of"]) + let v = native_list_append(v, ["redemener", "verb", "redemein", "redemené", "redemené", "", "to relive redo"]) + let v = native_list_append(v, ["enarmer", "verb", "enarm", "enarmé", "enarmé", "", "to furnish a"]) + let v = native_list_append(v, ["espoanter", "verb", "espoant", "espoanté", "espoanté", "", "to scare to"]) + let v = native_list_append(v, ["poïsse", "verb", "poisse", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["estuet", "verb", "estuet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["raler", "verb", "raler", "", "", "", "to go back"]) + let v = native_list_append(v, ["entreparler", "verb", "m'entreparol", "entreparlé", "entreparlé", "", "to talk to"]) + let v = native_list_append(v, ["tancier", "verb", "tanz", "tancié", "tancié", "", "to occupy oneself"]) + let v = native_list_append(v, ["destrosser", "verb", "destros", "destrossé", "destrossé", "", "to unload remove"]) + let v = native_list_append(v, ["forfaire", "verb", "forfaz", "forfait", "forfait", "", "to forfeit to"]) + let v = native_list_append(v, ["mesconter", "verb", "mescont", "mesconté", "mesconté", "", "to mistell to"]) + let v = native_list_append(v, ["embrachier", "verb", "embrache", "embrachié", "embrachié", "", "to take into"]) + let v = native_list_append(v, ["respitier", "verb", "respit", "respitié", "respitié", "", "to spare to"]) + let v = native_list_append(v, ["amonester", "verb", "amonest", "amonesté", "amonesté", "", "to admonish to"]) + let v = native_list_append(v, ["terdre", "verb", "terdre", "", "", "", "to wipe by"]) + let v = native_list_append(v, ["fungier", "verb", "funge", "fungié", "fungié", "", "to smoke"]) + let v = native_list_append(v, ["purgier", "verb", "purge", "purgié", "purgié", "", "to purge to"]) + let v = native_list_append(v, ["despire", "verb", "despis", "despit", "despit", "", "to despise"]) + let v = native_list_append(v, ["deignier", "verb", "deing", "deignié", "deignié", "", "to deign to"]) + let v = native_list_append(v, ["desdeignier", "verb", "desdeing", "desdeignié", "desdeignié", "", "to disdain"]) + let v = native_list_append(v, ["entraper", "verb", "entrap", "entrapé", "entrapé", "", "to trap or"]) + let v = native_list_append(v, ["aquiter", "verb", "aquit", "aquité", "aquité", "", "to conquer"]) + let v = native_list_append(v, ["apaier", "verb", "apai", "apaié", "apaié", "", "alternative form of"]) + let v = native_list_append(v, ["desvoier", "verb", "desvoi", "desvoié", "desvoié", "", "to deviate from"]) + let v = native_list_append(v, ["porcuidier", "verb", "porcuit", "porcuidié", "porcuidié", "", "to prepare"]) + let v = native_list_append(v, ["foler", "verb", "fol", "folé", "folé", "", "to destroy"]) + let v = native_list_append(v, ["douloir", "verb", "douil", "doulu", "doulu", "", "alternative infinitive of"]) + let v = native_list_append(v, ["esfronté", "verb", "esfronté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["esfronter", "verb", "esfront", "esfronté", "esfronté", "", "to smash someones"]) + let v = native_list_append(v, ["afrayer", "verb", "afray", "afrayé", "afrayé", "", "alternative form of"]) + let v = native_list_append(v, ["effroyer", "verb", "effroy", "effroyé", "effroyé", "", "alternative form of"]) + let v = native_list_append(v, ["afroier", "verb", "afroi", "afroié", "afroié", "", "alternative form of"]) + let v = native_list_append(v, ["effroier", "verb", "effroi", "effroié", "effroié", "", "alternative form of"]) + let v = native_list_append(v, ["endamagier", "verb", "endamage", "endamagié", "endamagié", "", "to hurt to"]) + let v = native_list_append(v, ["adamagier", "verb", "adamage", "adamagié", "adamagié", "", "alternative form of"]) + let v = native_list_append(v, ["mercher", "verb", "merche", "merché", "merché", "", "alternative form of"]) + let v = native_list_append(v, ["enrichier", "verb", "enriche", "enrichié", "enrichié", "", "alternative form of"]) + let v = native_list_append(v, ["esricher", "verb", "esriche", "esriché", "esriché", "", "alternative form of"]) + let v = native_list_append(v, ["reignier", "verb", "reing", "reignié", "reignié", "", "to reign act"]) + let v = native_list_append(v, ["regnier", "verb", "reing", "regnié", "regnié", "", "alternative form of"]) + let v = native_list_append(v, ["cumencer", "verb", "cumenz", "cumencé", "cumencé", "", "alternative form of"]) + let v = native_list_append(v, ["gaitier", "verb", "gait", "gaitié", "gaitié", "", "to watch to"]) + let v = native_list_append(v, ["prononcier", "verb", "prononz", "prononcié", "prononcié", "", "to say to"]) + let v = native_list_append(v, ["huper", "verb", "hup", "hupé", "hupé", "", "to cry out"]) + let v = native_list_append(v, ["astenir", "verb", "astieng", "astenu", "astenu", "", "alternative form of"]) + let v = native_list_append(v, ["tesmoignier", "verb", "tesmoing", "tesmoignié", "tesmoignié", "", "to witness to"]) + let v = native_list_append(v, ["resveillier", "verb", "resveil", "resveillié", "resveillié", "", "to wake up"]) + let v = native_list_append(v, ["esveillier", "verb", "esveil", "esveillié", "esveillié", "", "to wake up"]) + let v = native_list_append(v, ["veillier", "verb", "veil", "veillié", "veillié", "", "to be awake"]) + let v = native_list_append(v, ["embracier", "verb", "embraz", "embracié", "embracié", "", "to kiss"]) + let v = native_list_append(v, ["otroiier", "verb", "otri", "otroiié", "otroiié", "", "to give to"]) + let v = native_list_append(v, ["proiier", "verb", "pri", "proiié", "proiié", "", "to pray"]) + let v = native_list_append(v, ["empoirier", "verb", "empir", "empoirié", "empoirié", "", "to worsen become"]) + let v = native_list_append(v, ["saignier", "verb", "saing", "saignié", "saignié", "", "to bleed lose"]) + let v = native_list_append(v, ["espargnier", "verb", "esparng", "espargnié", "espargnié", "", "to spare from"]) + let v = native_list_append(v, ["enoiier", "verb", "enui", "enoiié", "enoiié", "", "to be bothersome"]) + let v = native_list_append(v, ["apoiier", "verb", "apui", "apoiié", "apoiié", "", "to push apply"]) + let v = native_list_append(v, ["noiier", "verb", "noiier", "", "", "", "to deny"]) + let v = native_list_append(v, ["ploiier", "verb", "pli", "ploiié", "ploiié", "", "to fold"]) + let v = native_list_append(v, ["desploiier", "verb", "despli", "desploiié", "desploiié", "", "to unfold"]) + let v = native_list_append(v, ["conreer", "verb", "conroi", "conreé", "conreé", "", "to equip to"]) + let v = native_list_append(v, ["aproismier", "verb", "apruisme", "aproismié", "aproismié", "", "to approach"]) + let v = native_list_append(v, ["merveillier", "verb", "merveil", "merveillié", "merveillié", "", "to marvel at"]) + let v = native_list_append(v, ["essillier", "verb", "essil", "essillié", "essillié", "", "to exile"]) + let v = native_list_append(v, ["essoignier", "verb", "essoing", "essoignié", "essoignié", "", "to excuse to"]) + let v = native_list_append(v, ["manacier", "verb", "manaz", "manacié", "manacié", "", "to threaten"]) + let v = native_list_append(v, ["espundre", "verb", "espuing", "espuns", "espuns", "", "alternative form of"]) + let v = native_list_append(v, ["embrouder", "verb", "embrout", "embroudé", "embroudé", "", "alternative form of"]) + let v = native_list_append(v, ["brosder", "verb", "brost", "brosdé", "brosdé", "", "alternative form of"]) + let v = native_list_append(v, ["avengier", "verb", "avenge", "avengié", "avengié", "", "to avenge"]) + let v = native_list_append(v, ["chalongier", "verb", "chalonge", "chalongié", "chalongié", "", "to dispute to"]) + let v = native_list_append(v, ["songier", "verb", "songe", "songié", "songié", "", "to dream"]) + let v = native_list_append(v, ["eschangier", "verb", "eschange", "eschangié", "eschangié", "", "to exchange"]) + let v = native_list_append(v, ["engagier", "verb", "engage", "engagié", "engagié", "", "to use something"]) + let v = native_list_append(v, ["targier", "verb", "targe", "targié", "targié", "", "to wait to"]) + let v = native_list_append(v, ["desherbergier", "verb", "desherberge", "desherbergié", "desherbergié", "", "to decamp"]) + let v = native_list_append(v, ["assegier", "verb", "assiege", "assegié", "assegié", "", "to besiege to"]) + let v = native_list_append(v, ["drescer", "verb", "drez", "drescé", "drescé", "", "alternative form of"]) + let v = native_list_append(v, ["fourragier", "verb", "fourrage", "fourragié", "fourragié", "", "alternative form of"]) + let v = native_list_append(v, ["forragier", "verb", "forrage", "forragié", "forragié", "", "to pillage to"]) + let v = native_list_append(v, ["chalengier", "verb", "chalonge", "chalengié", "chalengié", "", "alternative form of"]) + let v = native_list_append(v, ["porpenser", "verb", "porpens", "porpensé", "porpensé", "", "to plan to"]) + let v = native_list_append(v, ["bracier", "verb", "braz", "bracié", "bracié", "", "to brew produce"]) + let v = native_list_append(v, ["purchacier", "verb", "purchaz", "purchacié", "purchacié", "", "alternative form of"]) + let v = native_list_append(v, ["surveillier", "verb", "surveil", "surveillié", "surveillié", "", "to keep watch"]) + let v = native_list_append(v, ["porloignier", "verb", "porloing", "porloignié", "porloignié", "", "to delay to"]) + let v = native_list_append(v, ["merchier", "verb", "merche", "merchié", "merchié", "", "to mark to"]) + let v = native_list_append(v, ["verdoiier", "verb", "verdi", "verdoiié", "verdoiié", "", "to become green"]) + let v = native_list_append(v, ["larmoiier", "verb", "larmi", "larmoiié", "larmoiié", "", "to weep to"]) + let v = native_list_append(v, ["nettoiier", "verb", "netti", "nettoiié", "nettoiié", "", "alternative form of"]) + let v = native_list_append(v, ["tornoiier", "verb", "torni", "tornoiié", "tornoiié", "", "to turn"]) + let v = native_list_append(v, ["netoiier", "verb", "neti", "netoiié", "netoiié", "", "to clean"]) + let v = native_list_append(v, ["brochier", "verb", "broche", "brochié", "brochié", "", "to jab to"]) + let v = native_list_append(v, ["veintre", "verb", "venc", "vencu", "vencu", "", "to defeat to"]) + let v = native_list_append(v, ["estraindre", "verb", "estraing", "estraint", "estraint", "", "alternative form of"]) + let v = native_list_append(v, ["estovoir", "verb", "no-table-tags", "fro-conj-iii", "avoir esteü", "", "to be necessary"]) + let v = native_list_append(v, ["criembre", "verb", "criem", "crient", "crient", "", "to fear have"]) + let v = native_list_append(v, ["cosdre", "verb", "keus", "cosu", "cosu", "", "to sew"]) + let v = native_list_append(v, ["cueudre", "verb", "cueil", "coilli", "coilli", "", "alternative infinitive of"]) + let v = native_list_append(v, ["bolir", "verb", "boil", "boli", "boli", "", "to boil"]) + let v = native_list_append(v, ["chaïr", "verb", "chié", "cheï", "cheï", "", "alternative infinitive of"]) + let v = native_list_append(v, ["escrivre", "verb", "escrif", "escrit", "escrit", "", "to write"]) + let v = native_list_append(v, ["gisir", "verb", "gis", "geü", "geü", "", "alternative infinitive of"]) + let v = native_list_append(v, ["beneistre", "verb", "beneï", "beneoit", "beneoit", "", "to bless give"]) + let v = native_list_append(v, ["somondre", "verb", "somoing", "somons", "somons", "", "alternative form of"]) + let v = native_list_append(v, ["adeser", "verb", "adiés", "adesé", "adesé", "", "to touch reach"]) + let v = native_list_append(v, ["renaistre", "verb", "renais", "renascu", "renascu", "", "to be reborn"]) + let v = native_list_append(v, ["esfacier", "verb", "esfaz", "esfacié", "esfacié", "", "to remove to"]) + let v = native_list_append(v, ["essaucier", "verb", "essauz", "essaucié", "essaucié", "", "to exalt"]) + let v = native_list_append(v, ["encomencier", "verb", "encomenz", "encomencié", "encomencié", "", "to begin to"]) + let v = native_list_append(v, ["deslacier", "verb", "deslaz", "deslacié", "deslacié", "", "to undo to"]) + let v = native_list_append(v, ["haucier", "verb", "hauz", "haucié", "haucié", "", "to raise to"]) + let v = native_list_append(v, ["enchaucier", "verb", "enchauz", "enchaucié", "enchaucié", "", "pursue chase after"]) + let v = native_list_append(v, ["recerchier", "verb", "recerche", "recerchié", "recerchié", "", "to search to"]) + let v = native_list_append(v, ["noncier", "verb", "nonz", "noncié", "noncié", "", "to announce to"]) + let v = native_list_append(v, ["enhaucier", "verb", "enhauz", "enhaucié", "enhaucié", "", "elevate"]) + let v = native_list_append(v, ["joïr", "verb", "joi", "joï", "joï", "", "alternative form of"]) + let v = native_list_append(v, ["esjoïr", "verb", "m'esjoi", "esjoï", "esjoï", "", "alternative form of"]) + let v = native_list_append(v, ["resjoïr", "verb", "me resjoi", "resjoï", "resjoï", "", "alternative form of"]) + let v = native_list_append(v, ["luisir", "verb", "luis", "luit", "luit", "", "to shine"]) + let v = native_list_append(v, ["reluisir", "verb", "reluis", "reluit", "reluit", "", "to shine especially"]) + let v = native_list_append(v, ["raembre", "verb", "raïem", "reent", "reent", "", "to ransom free"]) + let v = native_list_append(v, ["raiembre", "verb", "raïem", "reent", "reent", "", "alternative form of"]) + let v = native_list_append(v, ["sechier", "verb", "seche", "sechié", "sechié", "", "to dry make"]) + let v = native_list_append(v, ["conseillier", "verb", "conseil", "conseillié", "conseillié", "", "to counsel to"]) + let v = native_list_append(v, ["barguignier", "verb", "barguing", "barguignié", "barguignié", "", "to bargain to"]) + let v = native_list_append(v, ["blanchoiier", "verb", "blanchi", "blanchoiié", "blanchoiié", "", "to whiten"]) + let v = native_list_append(v, ["consivre", "verb", "consiu", "consivi", "consivi", "", "to chase to"]) + let v = native_list_append(v, ["desguisier", "verb", "desguis", "desguisié", "desguisié", "", "to disguise conceal"]) + let v = native_list_append(v, ["laiier", "verb", "lai", "laiié", "laiié", "", "to leave to"]) + let v = native_list_append(v, ["relaschier", "verb", "relasche", "relaschié", "relaschié", "", "to relax a"]) + let v = native_list_append(v, ["relaissier", "verb", "relais", "relaissié", "relaissié", "", "alternative form of"]) + let v = native_list_append(v, ["arrachier", "verb", "arrachi", "arrachïé", "arrachïé", "", "alternative form of"]) + let v = native_list_append(v, ["vochier", "verb", "voche", "vochié", "vochié", "", "to call to"]) + let v = native_list_append(v, ["esparpeillier", "verb", "esparpeil", "esparpeillié", "esparpeillié", "", "to scatter"]) + let v = native_list_append(v, ["perillier", "verb", "peril", "perillié", "perillié", "", "to die to"]) + let v = native_list_append(v, ["atirier", "verb", "atir", "atirié", "atirié", "", "to arrange to"]) + let v = native_list_append(v, ["parbolir", "verb", "parboil", "parboli", "parboli", "", "to boil completely"]) + let v = native_list_append(v, ["parboillir", "verb", "parboil", "parboli", "parboli", "", "alternative form of"]) + let v = native_list_append(v, ["priembre", "verb", "preindre", "prembre", "priendre", "", "to press apply"]) + let v = native_list_append(v, ["priendre", "verb", "priendre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enfrener", "verb", "enfrein", "enfrené", "enfrené", "", "to put the"]) + let v = native_list_append(v, ["babillier", "verb", "babil", "babillié", "babillié", "", "to babble to"]) + let v = native_list_append(v, ["baptisier", "verb", "baptis", "baptisié", "baptisié", "", "to baptize"]) + let v = native_list_append(v, ["aloer", "verb", "alo", "aloé", "aloé", "", "to allow to"]) + let v = native_list_append(v, ["endotriner", "verb", "endotrin", "endotriné", "endotriné", "", "to indoctrinate"]) + let v = native_list_append(v, ["cicatrisier", "verb", "cicatris", "cicatrisié", "cicatrisié", "", "to scar"]) + let v = native_list_append(v, ["faschier", "verb", "fasche", "faschié", "faschié", "", "to anger to"]) + let v = native_list_append(v, ["laschier", "verb", "lasche", "laschié", "laschié", "", "to release to"]) + let v = native_list_append(v, ["meshaignier", "verb", "meshaing", "meshaignié", "meshaignié", "", "to harm to"]) + let v = native_list_append(v, ["peintier", "verb", "peint", "peintié", "peintié", "", "to paint to"]) + let v = native_list_append(v, ["nombrer", "verb", "nombre", "nombré", "nombré", "", "to number attribute"]) + let v = native_list_append(v, ["parçoner", "verb", "parçon", "parçoné", "parçoné", "", "to share to"]) + let v = native_list_append(v, ["esmovoir", "verb", "esmuef", "esmeü", "esmeü", "", "to move cause"]) + let v = native_list_append(v, ["aparler", "verb", "aparol", "aparlé", "aparlé", "", "to talk to"]) + let v = native_list_append(v, ["agenoillier", "verb", "m'agenoil", "agenoillié", "agenoillié", "", "to kneel to"]) + let v = native_list_append(v, ["emploiier", "verb", "empli", "emploiié", "emploiié", "", "to fold something"]) + let v = native_list_append(v, ["encroistre", "verb", "encrois", "encreü", "encreü", "", "to increase"]) + let v = native_list_append(v, ["enditier", "verb", "endit", "enditié", "enditié", "", "to dictate"]) + let v = native_list_append(v, ["envoiier", "verb", "envoi", "envoiié", "envoiié", "", "to send"]) + let v = native_list_append(v, ["broiier", "verb", "bri", "broiié", "broiié", "", "to crush to"]) + let v = native_list_append(v, ["guerroiier", "verb", "guerri", "guerroiié", "guerroiié", "", "to wage war"]) + let v = native_list_append(v, ["paiier", "verb", "pai", "paiié", "paiié", "", "to pay purchase"]) + let v = native_list_append(v, ["apaiier", "verb", "apai", "apaiié", "apaiié", "", "to appease to"]) + let v = native_list_append(v, ["glotir", "verb", "glot", "gloti", "gloti", "", "to swallow"]) + let v = native_list_append(v, ["englotir", "verb", "englot", "engloti", "engloti", "", "to swallow up"]) + let v = native_list_append(v, ["fuïr", "verb", "fui", "foï", "foï", "", "alternative form of"]) + let v = native_list_append(v, ["foir", "verb", "fue", "foï", "foï", "", "to dig"]) + let v = native_list_append(v, ["destaindre", "verb", "destaing", "destaint", "destaint", "", "to bleach to"]) + let v = native_list_append(v, ["apointier", "verb", "apoint", "apointié", "apointié", "", "to prepare"]) + let v = native_list_append(v, ["enforcier", "verb", "enforz", "enforcié", "enforcié", "", "to fortify to"]) + let v = native_list_append(v, ["purporter", "verb", "purport", "purporté", "purporté", "", "alternative form of"]) + let v = native_list_append(v, ["pourporter", "verb", "pourport", "pourporté", "pourporté", "", "alternative form of"]) + let v = native_list_append(v, ["proporter", "verb", "proport", "proporté", "proporté", "", "alternative form of"]) + let v = native_list_append(v, ["porporter", "verb", "porport", "porporté", "porporté", "", "to carry"]) + let v = native_list_append(v, ["poraler", "verb", "poraler", "", "", "", "to go through"]) + let v = native_list_append(v, ["raincier", "verb", "rainz", "raincié", "raincié", "", "to rinse briefly"]) + let v = native_list_append(v, ["pikier", "verb", "pik", "pikié", "pikié", "", "to stab with"]) + let v = native_list_append(v, ["temprer", "verb", "tempre", "tempré", "tempré", "", "to temper to"]) + let v = native_list_append(v, ["adurir", "verb", "aduris", "aduri", "aduri", "", "to burn"]) + let v = native_list_append(v, ["runger", "verb", "runge", "rungé", "rungé", "", "to gnaw to"]) + let v = native_list_append(v, ["pochier", "verb", "poche", "pochié", "pochié", "", "to poke"]) + let v = native_list_append(v, ["trenche", "verb", "trenche", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["forbenir", "verb", "forbenis", "forbeni", "forbeni", "", "to banish to"]) + let v = native_list_append(v, ["esbleuir", "verb", "esbleuis", "esbleui", "esbleui", "", "to dazzle"]) + let v = native_list_append(v, ["esbloïr", "verb", "esbloïs", "esbloï", "esbloï", "", "alternative form of"]) + let v = native_list_append(v, ["possessier", "verb", "posses", "possessié", "possessié", "", "to possess"]) + let v = native_list_append(v, ["desenchanter", "verb", "desenchant", "desenchanté", "desenchanté", "", "to disenchant remove"]) + let v = native_list_append(v, ["baptoier", "verb", "baptoi", "baptoié", "baptoié", "", "to baptize"]) + let v = native_list_append(v, ["sivant", "verb", "sivant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["froter", "verb", "frot", "froté", "froté", "", "to rub"]) + let v = native_list_append(v, ["suffumiguer", "verb", "suffumic", "suffumigué", "suffumigué", "", "to infuse with"]) + let v = native_list_append(v, ["sureschauffer", "verb", "sureschauf", "sureschauffé", "sureschauffé", "", "to overheat"]) + let v = native_list_append(v, ["mortefier", "verb", "mortefi", "mortefïé", "mortefïé", "", "alternative form of"]) + let v = native_list_append(v, ["estreint", "verb", "estreint", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vivefier", "verb", "vivefi", "vivefïé", "vivefïé", "", "alternative form of"]) + let v = native_list_append(v, ["amoistir", "verb", "amoistis", "amoisti", "amoisti", "", "to moisten"]) + let v = native_list_append(v, ["escaufer", "verb", "escauf", "escaufé", "escaufé", "", "alternative form of"]) + let v = native_list_append(v, ["putrefier", "verb", "putrefi", "putrefïé", "putrefïé", "", "to rot"]) + let v = native_list_append(v, ["comencer", "verb", "comenz", "comencé", "comencé", "", "alternative form of"]) + let v = native_list_append(v, ["mentevoir", "verb", "mentoi", "menteu", "menteu", "", "to mention to"]) + let v = native_list_append(v, ["engroissier", "verb", "engrois", "engroissié", "engroissié", "", "to make fattier"]) + let v = native_list_append(v, ["opiler", "verb", "opil", "opilé", "opilé", "", "to block"]) + let v = native_list_append(v, ["adurcir", "verb", "m'adurcis", "adurci", "adurci", "", "to harden become"]) + let v = native_list_append(v, ["esrachier", "verb", "esrache", "esrachié", "esrachié", "", "to eradicate to"]) + let v = native_list_append(v, ["estuver", "verb", "estuf", "estuvé", "estuvé", "", "to bathe put"]) + let v = native_list_append(v, ["mundifier", "verb", "mundif", "mundifié", "mundifié", "", "to cleanse to"]) + let v = native_list_append(v, ["espars", "verb", "espars", "", "", "", "past participle of"]) + let v = native_list_append(v, ["prolongier", "verb", "prolonge", "prolongié", "prolongié", "", "to prolong make"]) + let v = native_list_append(v, ["destemprer", "verb", "destempre", "destempré", "destempré", "", "to mix"]) + let v = native_list_append(v, ["estoper", "verb", "estop", "estopé", "estopé", "", "to stop up"]) + let v = native_list_append(v, ["appetisser", "verb", "appetis", "appetissé", "appetissé", "", "to diminish to"]) + let v = native_list_append(v, ["abregé", "verb", "abregé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aumosner", "verb", "aumosne", "aumosné", "aumosné", "", "to give alms"]) + let v = native_list_append(v, ["apartenir", "verb", "apartieng", "apartenu", "apartenu", "", "to belong to"]) + let v = native_list_append(v, ["apurtenant", "verb", "apurtenant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["apurtenir", "verb", "apurtieng", "apurtenu", "apurtenu", "", "alternative form of"]) + let v = native_list_append(v, ["apertenir", "verb", "apertieng", "apertenu", "apertenu", "", "alternative form of"]) + let v = native_list_append(v, ["sevelir", "verb", "sevelis", "seveli", "seveli", "", "to bury to"]) + let v = native_list_append(v, ["aduire", "verb", "adui", "aduit", "aduit", "", "to lead"]) + let v = native_list_append(v, ["chanjas", "verb", "chanjas", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["arrestu", "verb", "arresté", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aresteu", "verb", "aresté", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cunceivre", "verb", "cunceif", "cunceü", "cunceü", "", "alternative form of"]) + let v = native_list_append(v, ["conçoivre", "verb", "conçoif", "conceü", "conceü", "", "alternative form of"]) + let v = native_list_append(v, ["conceivre", "verb", "conceif", "conceü", "conceü", "", "alternative form of"]) + let v = native_list_append(v, ["degaster", "verb", "degast", "degasté", "degasté", "", "to hurt to"]) + let v = native_list_append(v, ["engrossir", "verb", "engrossis", "engrossi", "engrossi", "", "to increase to"]) + let v = native_list_append(v, ["habunder", "verb", "habunt", "habundé", "habundé", "", "alternative form of"]) + let v = native_list_append(v, ["rengendrer", "verb", "rengendre", "rengendré", "rengendré", "", "to regrow to"]) + let v = native_list_append(v, ["corrozer", "verb", "corros", "corrozé", "corrozé", "", "to corrode"]) + let v = native_list_append(v, ["putrifier", "verb", "putrifi", "putrifïé", "putrifïé", "", "alternative form of"]) + let v = native_list_append(v, ["desconter", "verb", "descont", "desconté", "desconté", "", "to discount reduce"]) + let v = native_list_append(v, ["mitiguer", "verb", "mitic", "mitigué", "mitigué", "", "to ease to"]) + let v = native_list_append(v, ["habonder", "verb", "habont", "habondé", "habondé", "", "alternative form of"]) + let v = native_list_append(v, ["desbauchier", "verb", "desbauche", "desbauchié", "desbauchié", "", "to leave to"]) + let v = native_list_append(v, ["mommer", "verb", "mom", "mommé", "mommé", "", "to put on"]) + let v = native_list_append(v, ["parmaindre", "verb", "parmaing", "parmanu", "parmanu", "", "to stay to"]) + let v = native_list_append(v, ["aprismer", "verb", "aprismer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["payer sur le ungle", "verb", "payer sur le ungle", "", "", "", "to pay right"]) + let v = native_list_append(v, ["effronter", "verb", "effront", "effronté", "effronté", "", "alternative form of"]) + let v = native_list_append(v, ["guaimenter", "verb", "guaiment", "guaimenté", "guaimenté", "", "alternative form of"]) + let v = native_list_append(v, ["rejuvener", "verb", "rejuven", "rejuvené", "rejuvené", "", "to rejuvenate"]) + let v = native_list_append(v, ["espruver", "verb", "espruef", "espruvé", "espruvé", "", "alternative form of"]) + let v = native_list_append(v, ["enheriter", "verb", "enherit", "enherité", "enherité", "", "to inherit"]) + let v = native_list_append(v, ["prisier", "verb", "pris", "prisié", "prisié", "", "to appraise to"]) + let v = native_list_append(v, ["welcumer", "verb", "welcum", "welcumé", "welcumé", "", "to welcome"]) + let v = native_list_append(v, ["retranchier", "verb", "retranche", "retranchié", "retranchié", "", "to get rid"]) + let v = native_list_append(v, ["rengier", "verb", "renge", "rengié", "rengié", "", "to line up"]) + let v = native_list_append(v, ["estet", "verb", "estet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["warir", "verb", "waris", "wari", "wari", "", "alternative form of"]) + let v = native_list_append(v, ["walcrer", "verb", "walcre", "walcré", "walcré", "", "to wander"]) + let v = native_list_append(v, ["treté", "verb", "treté", "", "", "", "past participle of"]) + let v = native_list_append(v, ["toiller", "verb", "toil", "toillé", "toillé", "", "to dirty"]) + let v = native_list_append(v, ["tané", "verb", "tané", "", "", "", "past participle of"]) + let v = native_list_append(v, ["amonter", "verb", "amont", "amonté", "amonté", "", "to ascend to"]) + let v = native_list_append(v, ["escarnir", "verb", "escarnir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["surseser", "verb", "surses", "sursesé", "sursesé", "", "alternative form of"]) + let v = native_list_append(v, ["sercher", "verb", "serche", "serché", "serché", "", "alternative form of"]) + let v = native_list_append(v, ["apelet", "verb", "apelet", "", "", "", "early form of"]) + let v = native_list_append(v, ["embasmer", "verb", "embasme", "embasmé", "embasmé", "", "to embalm"]) + let v = native_list_append(v, ["avironer", "verb", "aviron", "avironé", "avironé", "", "to go around"]) + let v = native_list_append(v, ["communer", "verb", "commun", "communé", "communé", "", "To pool make"]) + let v = native_list_append(v, ["resistre", "verb", "resist", "resisté", "resisté", "", "alternative form of"]) + let v = native_list_append(v, ["remunter", "verb", "remunt", "remunté", "remunté", "", "alternative form of"]) + let v = native_list_append(v, ["remounter", "verb", "remount", "remounté", "remounté", "", "alternative form of"]) + let v = native_list_append(v, ["relentir", "verb", "relentis", "relenti", "relenti", "", "to relent to"]) + let v = native_list_append(v, ["contrepleder", "verb", "contreplet", "contrepledé", "contrepledé", "", "to counterplead"]) + let v = native_list_append(v, ["reherser", "verb", "rehers", "rehersé", "rehersé", "", "to repeat word-for-word"]) + let v = native_list_append(v, ["reguerdoner", "verb", "reguerdon", "reguerdoné", "reguerdoné", "", "to reward"]) + let v = native_list_append(v, ["recunter", "verb", "recunt", "recunté", "recunté", "", "alternative form of"]) + let v = native_list_append(v, ["porveoir", "verb", "porvoi", "porveü", "porveü", "", "to look at"]) + let v = native_list_append(v, ["porveu", "verb", "porveu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["porprendre", "verb", "porpreing", "porpris", "porpris", "", "to usurp to"]) + let v = native_list_append(v, ["prepenser", "verb", "prepens", "prepensé", "prepensé", "", "to premeditate to"]) + let v = native_list_append(v, ["pleger", "verb", "plege", "plegé", "plegé", "", "alternative form of"]) + let v = native_list_append(v, ["plenir", "verb", "plenis", "pleni", "pleni", "", "to fill"]) + let v = native_list_append(v, ["huchier", "verb", "huche", "huchié", "huchié", "", "to shout to"]) + let v = native_list_append(v, ["descontinuer", "verb", "descontinu", "descontinüé", "descontinüé", "", "to separate flesh"]) + let v = native_list_append(v, ["aloser", "verb", "alos", "alosé", "alosé", "", "to laud to"]) + let v = native_list_append(v, ["decreistre", "verb", "decreis", "decreü", "decreü", "", "to decrease"]) + let v = native_list_append(v, ["recommencier", "verb", "recommenz", "recommencié", "recommencié", "", "to restart"]) + let v = native_list_append(v, ["oustre", "verb", "oustre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coisier", "verb", "cois", "coisié", "coisié", "", "to calm"]) + let v = native_list_append(v, ["offendre", "verb", "offent", "offendu", "offendu", "", "to attack"]) + let v = native_list_append(v, ["sigler", "verb", "sigle", "siglé", "siglé", "", "to sail navigate"]) + let v = native_list_append(v, ["empenser", "verb", "empens", "empensé", "empensé", "", "to think of"]) + let v = native_list_append(v, ["assoudre", "verb", "assoudre", "", "", "", "to absolve set"]) + let v = native_list_append(v, ["roeler", "verb", "roel", "roelé", "roelé", "", "to roll"]) + let v = native_list_append(v, ["degoter", "verb", "degot", "degoté", "degoté", "", "to drip of"]) + let v = native_list_append(v, ["conmenchier", "verb", "conmenche", "conmenchié", "conmenchié", "", "alternative form of"]) + let v = native_list_append(v, ["ensivre", "verb", "ensiu", "ensivi", "ensivi", "", "to follow"]) + let v = native_list_append(v, ["apartenant", "verb", "apartenant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["encrochier", "verb", "encroche", "encrochié", "encrochié", "", "to hook attach"]) + let v = native_list_append(v, ["laidenger", "verb", "laidenge", "laidengé", "laidengé", "", "to hurt to"]) + let v = native_list_append(v, ["detenir", "verb", "detieng", "detenu", "detenu", "", "to detain to"]) + let v = native_list_append(v, ["ochirre", "verb", "ochirre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enbuscier", "verb", "enbuz", "enbuscié", "enbuscié", "", "to ambush"]) + let v = native_list_append(v, ["desraisnier", "verb", "desraison", "desraisnié", "desraisnié", "", "to argue to"]) + let v = native_list_append(v, ["iraistre", "verb", "iraistre", "", "", "", "to anger"]) + let v = native_list_append(v, ["podeir", "verb", "podeir", "", "", "", "archaic form of"]) + let v = native_list_append(v, ["meschever", "verb", "meschief", "meschevé", "meschevé", "", "to fail"]) + let v = native_list_append(v, ["chever", "verb", "chief", "chevé", "chevé", "", "to finish to"]) + let v = native_list_append(v, ["soudre", "verb", "saure", "sodre", "solre", "", "to pay to"]) + let v = native_list_append(v, ["eskolter", "verb", "eskolter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["concreidre", "verb", "concreire", "concroire", "", "", "to believe"]) + let v = native_list_append(v, ["lazsier", "verb", "lazsier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recimer", "verb", "recim", "recimé", "recimé", "", "to regrow"]) + let v = native_list_append(v, ["mesaler", "verb", "mesaler", "", "", "", "to get lost"]) + let v = native_list_append(v, ["blastengier", "verb", "blastenge", "blastengié", "blastengié", "", "to blame"]) + let v = native_list_append(v, ["trestorner", "verb", "trestorn", "trestorné", "trestorné", "", "to turn to"]) + let v = native_list_append(v, ["enfoir", "verb", "enfue", "enfoï", "enfoï", "", "to bury"]) + let v = native_list_append(v, ["deceu", "verb", "deceu", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tresoïr", "verb", "tresoïr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entrevëoir", "verb", "m'entrevoi", "entreveü", "entreveü", "", "alternative form of"]) + let v = native_list_append(v, ["esmeü", "verb", "esmeü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["reconeü", "verb", "reconeü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perceü", "verb", "perceü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coneü", "verb", "coneü", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beneïstre", "verb", "beneï", "beneoit", "beneoit", "", "alternative form of"]) + let v = native_list_append(v, ["desjeüner", "verb", "desjeün", "desjeüné", "desjeüné", "", "alternative form of"]) + let v = native_list_append(v, ["conjoïr", "verb", "conjoi", "conjoï", "conjoï", "", "alternative form of"]) + let v = native_list_append(v, ["antrehaïr", "verb", "m'antrehaz", "antrehaï", "antrehaï", "", "alternative form of"]) + let v = native_list_append(v, ["foïr", "verb", "fue", "foï", "foï", "", "alternative form of"]) + let v = native_list_append(v, ["rasseurer", "verb", "rasseur", "rasseuré", "rasseuré", "", "to reassure to"]) + let v = native_list_append(v, ["delaissier", "verb", "delais", "delaissié", "delaissié", "", "to leave to"]) + let v = native_list_append(v, ["adrecier", "verb", "adrez", "adrecié", "adrecié", "", "to straighten"]) + let v = native_list_append(v, ["reveoir", "verb", "revoi", "reveü", "reveü", "", "to see again"]) + let v = native_list_append(v, ["devaincre", "verb", "devanc", "devancu", "devancu", "", "to defeat"]) + let v = native_list_append(v, ["guier", "verb", "gui", "guié", "guié", "", "to guide"]) + let v = native_list_append(v, ["chalant", "verb", "chalant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["parlier", "verb", "parlier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soloir", "verb", "soil", "solu", "solu", "", "to have a"]) + let v = native_list_append(v, ["sauler", "verb", "saul", "saulé", "saulé", "", "to satisfy to"]) + let v = native_list_append(v, ["empeechier", "verb", "empeeche", "empeechié", "empeechié", "", "to fetter put"]) + let v = native_list_append(v, ["mesconoistre", "verb", "mesconois", "mesconeü", "mesconeü", "", "to misrecognize to"]) + let v = native_list_append(v, ["recorrocier", "verb", "recorroz", "recorrocié", "recorrocié", "", "to get angry"]) + let v = native_list_append(v, ["embronchier", "verb", "embronche", "embronchié", "embronchié", "", "to lower make"]) + let v = native_list_append(v, ["entrelier", "verb", "m'entreli", "entrelïé", "entrelïé", "", "to link together"]) + let v = native_list_append(v, ["envoisier", "verb", "envois", "envoisié", "envoisié", "", "to enjoy oneself"]) + let v = native_list_append(v, ["consirer", "verb", "consir", "consiré", "consiré", "", "to abstain from"]) + let v = native_list_append(v, ["awaitier", "verb", "await", "awaitié", "awaitié", "", "alternative form of"]) + let v = native_list_append(v, ["gurpir", "verb", "gurpis", "gurpiṭ", "gurpiṭ", "", "alternative form of"]) + let v = native_list_append(v, ["assaier", "verb", "assai", "assaié", "assaié", "", "alternative form of"]) + let v = native_list_append(v, ["harigoter", "verb", "harigot", "harigoté", "harigoté", "", "to shred to"]) + let v = native_list_append(v, ["acreistre", "verb", "acreis", "acreü", "acreü", "", "alternative form of"]) + let v = native_list_append(v, ["desencombrer", "verb", "desencombre", "desencombré", "desencombré", "", "to unburden"]) + let v = native_list_append(v, ["desleer", "verb", "deslei", "desleé", "desleé", "", "to be disloyal"]) + let v = native_list_append(v, ["decevre", "verb", "deceif", "deceü", "deceü", "", "alternative form of"]) + let v = native_list_append(v, ["enginnier", "verb", "engin", "enginnié", "enginnié", "", "alternative form of"]) + let v = native_list_append(v, ["chulchier", "verb", "chulche", "chulchié", "chulchié", "", "alternative form of"]) + let v = native_list_append(v, ["chulcher", "verb", "chulche", "chulché", "chulché", "", "alternative form of"]) + let v = native_list_append(v, ["corteier", "verb", "corti", "corteié", "corteié", "", "to set up"]) + let v = native_list_append(v, ["signefier", "verb", "signefi", "signefïé", "signefïé", "", "alternative form of"]) + let v = native_list_append(v, ["surveeir", "verb", "survei", "surveü", "surveü", "", "alternative form of"]) + let v = native_list_append(v, ["encuser", "verb", "encus", "encusé", "encusé", "", "to accuse"]) + let v = native_list_append(v, ["encercher", "verb", "encerche", "encerché", "encerché", "", "alternative form of"]) + let v = native_list_append(v, ["vait", "verb", "va", "vad", "veit", "", "third-person singular present"]) + let v = native_list_append(v, ["merir", "verb", "mir", "meri", "meri", "", "to reward"]) + let v = native_list_append(v, ["flaveler", "verb", "flavel", "flavelé", "flavelé", "", "to use a"]) + let v = native_list_append(v, ["deduire", "verb", "dedui", "deduit", "deduit", "", "to have fun"]) + let v = native_list_append(v, ["forsveier", "verb", "forsvei", "forsveié", "forsveié", "", "to mislead to"]) + let v = native_list_append(v, ["freter", "verb", "fret", "freté", "freté", "", "to fret decorate"]) + let v = native_list_append(v, ["congeier", "verb", "congi", "congeié", "congeié", "", "to banish"]) + let v = native_list_append(v, ["amesurer", "verb", "amesur", "amesuré", "amesuré", "", "to measure"]) + let v = native_list_append(v, ["meciner", "verb", "mecin", "meciné", "meciné", "", "to medicate to"]) + let v = native_list_append(v, ["entuscher", "verb", "entusche", "entusché", "entusché", "", "to poison"]) + let v = native_list_append(v, ["nercir", "verb", "nercis", "nerci", "nerci", "", "alternative form of"]) + let v = native_list_append(v, ["wacrer", "verb", "wacre", "wacré", "wacré", "", "alternative form of"]) + let v = native_list_append(v, ["rendre l'espirit", "verb", "rendre l'espirit", "", "", "", "to die to"]) + let v = native_list_append(v, ["adoler", "verb", "adol", "adolé", "adolé", "", "to sadden"]) + let v = native_list_append(v, ["empaner", "verb", "empan", "empané", "empané", "", "to garnish with"]) + let v = native_list_append(v, ["araisoner", "verb", "araison", "araisoné", "araisoné", "", "alternative form of"]) + let v = native_list_append(v, ["asoter", "verb", "asot", "asoté", "asoté", "", "to be or"]) + let v = native_list_append(v, ["doneier", "verb", "doni", "doneié", "doneié", "", "to woo to"]) + let v = native_list_append(v, ["fere dever", "verb", "fere dever", "", "", "", "to drive mad"]) + let v = native_list_append(v, ["vergonder", "verb", "vergont", "vergondé", "vergondé", "", "to shame to"]) + let v = native_list_append(v, ["acreanter", "verb", "acreant", "acreanté", "acreanté", "", "to promise"]) + let v = native_list_append(v, ["espoenter", "verb", "espoent", "espoenté", "espoenté", "", "to scare"]) + let v = native_list_append(v, ["canonisier", "verb", "canonis", "canonisié", "canonisié", "", "to canonize"]) + let v = native_list_append(v, ["amordre", "verb", "amort", "amors", "amors", "", "to bite"]) + let v = native_list_append(v, ["porjeter", "verb", "porjet", "porjeté", "porjeté", "", "to throw out"]) + let v = native_list_append(v, ["afaitier", "verb", "afait", "afaitié", "afaitié", "", "to make"]) + let v = native_list_append(v, ["laidangier", "verb", "laidange", "laidangié", "laidangié", "", "To maltreat"]) + let v = native_list_append(v, ["forcier", "verb", "forz", "forcié", "forcié", "", "strengthen"]) + let v = native_list_append(v, ["marir", "verb", "maris", "mari", "mari", "", "alternative form of"]) + let v = native_list_append(v, ["bruir", "verb", "brui", "broï", "broï", "", "to burn"]) + let v = native_list_append(v, ["esclicier", "verb", "escliz", "esclicié", "esclicié", "", "alternative form of"]) + let v = native_list_append(v, ["blesmir", "verb", "blesmis", "blesmi", "blesmi", "", "to damage harm"]) + let v = native_list_append(v, ["aiser", "verb", "aiser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conchier", "verb", "conchier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["berser", "verb", "bers", "bersé", "bersé", "", "to hunt with"]) + let v = native_list_append(v, ["bersé", "verb", "bersé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bersant", "verb", "bersant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["שאבוייר", "verb", "שַאבֿוֹייר", "śa’ḇōyyr", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["acointer", "verb", "acoint", "acointié", "acointié", "", "alternative form of"]) + let v = native_list_append(v, ["entredire", "verb", "entredi", "entrediü", "entrediü", "", "to forbid to"]) + let v = native_list_append(v, ["eiser", "verb", "eis", "eisé", "eisé", "", "to help or"]) + let v = native_list_append(v, ["baaillier", "verb", "baail", "baaillié", "baaillié", "", "to yawn"]) + let v = native_list_append(v, ["enprisonner", "verb", "enprison", "enprisonné", "enprisonné", "", "alternative form of"]) + let v = native_list_append(v, ["enprisunner", "verb", "enprisun", "enprisunné", "enprisunné", "", "alternative form of"]) + let v = native_list_append(v, ["enprisuner", "verb", "enprisun", "enprisuné", "enprisuné", "", "alternative form of"]) + let v = native_list_append(v, ["enprisunant", "verb", "enprisunant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["enprisuné", "verb", "enprisuné", "", "", "", "past participle of"]) + let v = native_list_append(v, ["enprisun", "verb", "enprisun", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["enprisuneve", "verb", "enprisuneve", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["enprisuneie", "verb", "enprisuneie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enprisunoie", "verb", "enprisunoie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enprisonoe", "verb", "enprisonoe", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["enprisunoe", "verb", "enprisunoe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaujant", "verb", "gaujant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gaugé", "verb", "gaugé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["abreger", "verb", "abriege", "abregé", "abregé", "", "alternative form of"]) + let v = native_list_append(v, ["abrejant", "verb", "abrejant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["parleve", "verb", "parleve", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["parleie", "verb", "parleie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parloie", "verb", "parleie", "parloe", "", "", "alternative form of"]) + let v = native_list_append(v, ["parloe", "verb", "parloe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parlerent", "verb", "parlerent", "", "", "", "third-person plural simple"]) + let v = native_list_append(v, ["parlevent", "verb", "parloient", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["parlereient", "verb", "parlereient", "", "", "", "third-person plural conditional"]) + let v = native_list_append(v, ["parolent", "verb", "parolent", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["abrejas", "verb", "abrejas", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["abaudir", "verb", "abaudis", "abaudi", "abaudi", "", "embolden encourage"]) + let v = native_list_append(v, ["abaudissant", "verb", "abaudissant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["abaudi", "verb", "abaudi", "", "", "", "past participle of"]) + let v = native_list_append(v, ["enprisoné", "verb", "no-table-tags", "enprisonez", "enprisonee", "", "past participle of"]) + let v = native_list_append(v, ["enprisonant", "verb", "no-table-tags", "enprisonanz", "enprisonante", "", "present participle of"]) + let v = native_list_append(v, ["chastïeve", "verb", "chastïeve", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["abaudissent", "verb", "abaudissent", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["embaudir", "verb", "embaudis", "embaudi", "embaudi", "", "To embolden to"]) + let v = native_list_append(v, ["esbaudir", "verb", "esbaudis", "esbaudi", "esbaudi", "", "To embolden to"]) + let v = native_list_append(v, ["esbaudist", "verb", "esbaudist", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["enbaudir", "verb", "enbaudis", "enbaudi", "enbaudi", "", "alternative form of"]) + let v = native_list_append(v, ["entrevëi", "verb", "entrevëi", "", "", "", "past participle of"]) + let v = native_list_append(v, ["enprisoneve", "verb", "enprisoneve", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["atirié", "verb", "atirié", "", "", "", "past participle of"]) + let v = native_list_append(v, ["atirant", "verb", "atirant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["abriger", "verb", "abrige", "abrigé", "abrigé", "", "alternative form of"]) + let v = native_list_append(v, ["abreges", "verb", "abreges", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["enbaudi", "verb", "enbaudi", "", "", "", "past participle of"]) + let v = native_list_append(v, ["outrecuidier", "verb", "outrecuit", "outrecuidié", "outrecuidié", "", "to be arrogant"]) + let v = native_list_append(v, ["outrecuidiant", "verb", "outrecuidiant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["esbanier", "verb", "esbani", "esbanïé", "esbanïé", "", "to amuse"]) + let v = native_list_append(v, ["esbaniant", "verb", "esbaniant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["drez", "verb", "drez", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["trailler", "verb", "trail", "traillé", "traillé", "", "to tow pick"]) + let v = native_list_append(v, ["sunes", "verb", "sunes", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sojorn", "verb", "sojorn", "", "", "", "first-person present indicative"]) + let v = native_list_append(v, ["pourpris", "verb", "pourprise", "pourprises", "", "", "past participle of"]) + let v = native_list_append(v, ["eser", "verb", "eser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ataster", "verb", "atast", "atasté", "atasté", "", "To touch test."]) + let v = native_list_append(v, ["correer", "verb", "corroi", "correé", "correé", "", "alternative form of"]) + let v = native_list_append(v, ["embataillier", "verb", "embatail", "embataillié", "embataillié", "", "To array for"]) + let v = native_list_append(v, ["quatir", "verb", "quatis", "quati", "quati", "", "To press down"]) + let v = native_list_append(v, ["accreistre", "verb", "accreis", "accreü", "accreü", "", "alternative form of"]) + let v = native_list_append(v, ["posseeir", "verb", "possié", "possis", "possis", "", "alternative form of"]) + let v = native_list_append(v, ["posseoir", "verb", "possié", "possis", "possis", "", "to possess"]) + let v = native_list_append(v, ["chavoir", "verb", "chavoir", "", "", "", "alternative infinitive of"]) + let v = native_list_append(v, ["chevoir", "verb", "chaver", "chavoir", "", "", "to contain to"]) + let v = native_list_append(v, ["eskoltet", "verb", "eskoltet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["abregier", "verb", "abriege", "abregié", "abregié", "", "To shorten to"]) + let v = native_list_append(v, ["chadeir", "verb", "chadeir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chedeir", "verb", "chedeir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["escuter", "verb", "escut", "escuté", "escuté", "", "alternative form of"]) + let v = native_list_append(v, ["estramer", "verb", "estram", "estramé", "estramé", "", "to litter with"]) + let v = native_list_append(v, ["fornoiier", "verb", "fornoier", "fornier", "forsnoier", "", "to deny"]) + let v = native_list_append(v, ["eisier", "verb", "eis", "eisié", "eisié", "", "alternative form of"]) + let v = native_list_append(v, ["eisir", "verb", "eisir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eaisir", "verb", "eaisir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eeser", "verb", "eeser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esere", "verb", "esere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aaiser", "verb", "aaiser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aaisier", "verb", "aaisier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aeiser", "verb", "aeiser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aieiser", "verb", "aieiser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aiesier", "verb", "aiesier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hesser", "verb", "hesser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eisant", "verb", "eisant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["penez", "verb", "penez", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["donter", "verb", "dont", "donté", "donté", "", "to tame"]) + let v = native_list_append(v, ["esteit", "verb", "esteit", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["alez", "verb", "alez", "", "", "", "inflection of aler"]) + let v = native_list_append(v, ["aimet", "verb", "aimet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["recleimet", "verb", "recleimet", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["molteplier", "verb", "moltepli", "molteplïé", "molteplïé", "", "to multiply to"]) + let v = native_list_append(v, ["conchiier", "verb", "conchii", "conchiïé", "conchiïé", "", "to beshit to"]) + let v = native_list_append(v, ["espeluchier", "verb", "espeluche", "espeluchié", "espeluchié", "", "to peel"]) + let v = native_list_append(v, ["eschauder", "verb", "eschaut", "eschaudé", "eschaudé", "", "to scald"]) + let v = native_list_append(v, ["escalder", "verb", "escalder", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enchevauchier", "verb", "enchevauche", "enchevauchié", "enchevauchié", "", "to ride on"]) + let v = native_list_append(v, ["deschevauchier", "verb", "deschevauche", "deschevauchié", "deschevauchié", "", "unhorse"]) + let v = native_list_append(v, ["porseoir", "verb", "porsié", "porsis", "porsis", "", "to possess own"]) + let v = native_list_append(v, ["froissier", "verb", "froissi", "froissïé", "froissïé", "", "break crack split"]) + let v = native_list_append(v, ["avochier", "verb", "avoche", "avochié", "avochié", "", "summon"]) + let v = native_list_append(v, ["joquier", "verb", "jocquier", "jokier", "jouquier", "", "to perch roost"]) + let v = native_list_append(v, ["gehisner", "verb", "gehisne", "gehisné", "gehisné", "", "to bother annoy"]) + let v = native_list_append(v, ["averer", "verb", "aver", "averé", "averé", "", "to realise accomplish"]) + let v = native_list_append(v, ["decheoir", "verb", "dechair", "decheer", "decheir", "", "to fall"]) + let v = native_list_append(v, ["ascolter", "verb", "ascolt", "ascolté", "ascolté", "", "alternative form of"]) + let v = native_list_append(v, ["adola", "verb", "adola", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["vessir", "verb", "vecir", "", "", "", "to pass wind"]) + let v = native_list_append(v, ["waloper", "verb", "waloper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["carquier", "verb", "carquier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raïncer", "verb", "raïnz", "raïncé", "raïncé", "", "to rinse to"]) + let v = native_list_append(v, ["genoir", "verb", "genuir", "", "", "", "to generate"]) + let v = native_list_append(v, ["emperer", "verb", "emperer", "", "", "", "to govern command"]) + let v = native_list_append(v, ["esmé", "verb", "estimé", "", "", "", "past participle of"]) + let v = native_list_append(v, ["maubaillir", "verb", "maubaillis", "maubailli", "maubailli", "", "to mistreat abuse."]) + let v = native_list_append(v, ["malbaillir", "verb", "malbaillis", "malbailli", "malbailli", "", "to mistreat abuse."]) + let v = native_list_append(v, ["baillir", "verb", "baillis", "bailli", "bailli", "", "to carry"]) + let v = native_list_append(v, ["comparoir", "verb", "comparoir", "", "", "", "to appear before"]) + let v = native_list_append(v, ["resourdre", "verb", "resourt", "resourdu", "resourdu", "", "to spring up"]) + let v = native_list_append(v, ["embrosder", "verb", "embrost", "embrosdé", "embrosdé", "", "to embroider"]) + let v = native_list_append(v, ["escharnir", "verb", "escharnier", "eschernir", "escarnir", "", "To slander ridicule"]) + let v = native_list_append(v, ["lagrimer", "verb", "lagrim", "lagrimé", "lagrimé", "", "to weep"]) + let v = native_list_append(v, ["reschignier", "verb", "resquignier", "reskignier", "resquinnier", "", "With or without"]) + let v = native_list_append(v, ["saluder", "verb", "saluer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desporter", "verb", "desporter", "", "", "", "To disport to"]) + let v = native_list_append(v, ["cuillir", "verb", "cueillir", "coillir", "", "", "alternative form of"]) + let v = native_list_append(v, ["perceveir", "verb", "percef", "percevé", "percevé", "", "alternative form of"]) + let v = native_list_append(v, ["lachier", "verb", "lachier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["murjoe", "verb", "murjoe oblique singular or", "murjoes", "murjoes", "", "provision of food"]) + let v = native_list_append(v, ["a/languages M to Z", "verb", "a", "ad", "", "", "third-person singular present"]) + let v = native_list_append(v, ["abrochier", "verb", "abrochi", "abrochïé", "abrochïé", "", "abroach"]) + let v = native_list_append(v, ["essiever", "verb", "essief", "essievé", "essievé", "", "to check a"]) + let v = native_list_append(v, ["livre", "adj", "livre", "", "", "", "free at liberty"]) + let v = native_list_append(v, ["able", "adj", "able", "", "ables", "", "able capable"]) + let v = native_list_append(v, ["nu", "adj", "nu", "", "nue", "", "naked"]) + let v = native_list_append(v, ["bone", "adj", "bone", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["servant", "adj", "servant", "", "servante", "", "that serves that"]) + let v = native_list_append(v, ["abstinent", "adj", "abstinent", "", "abstinente", "", "abstinent"]) + let v = native_list_append(v, ["alien", "adj", "alien", "", "aliene", "", "alien foreign non-native"]) + let v = native_list_append(v, ["libre", "adj", "libre", "", "", "", "free at liberty"]) + let v = native_list_append(v, ["second", "adj", "second", "", "seconde", "", "second"]) + let v = native_list_append(v, ["general", "adj", "general", "", "generale", "", "general not limited"]) + let v = native_list_append(v, ["sol", "adj", "sol", "", "sole", "", "alone"]) + let v = native_list_append(v, ["rose", "adj", "rose", "", "rosee", "", "rose-colored"]) + let v = native_list_append(v, ["rice", "adj", "rice", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bel", "adj", "bel", "", "bele", "", "graceful elegant courteous"]) + let v = native_list_append(v, ["vert", "adj", "vert", "", "vert (later verte)", "", "green of a"]) + let v = native_list_append(v, ["jaune", "adj", "jaune", "", "", "", "yellow"]) + let v = native_list_append(v, ["voir", "adj", "voir", "", "voire", "", "true"]) + let v = native_list_append(v, ["liberal", "adj", "liberal", "", "liberale", "", "appropriate for a"]) + let v = native_list_append(v, ["vocal", "adj", "vocal", "", "vocale", "", "vocal relating to"]) + let v = native_list_append(v, ["feel", "adj", "feel", "", "", "", "faithful loyal"]) + let v = native_list_append(v, ["mal", "adj", "peior", "peior", "male", "", "bad undesirable not"]) + let v = native_list_append(v, ["criminal", "adj", "criminal", "", "criminale", "", "criminal illegal against"]) + let v = native_list_append(v, ["brief", "adj", "brief", "", "brieve", "", "brief short in"]) + let v = native_list_append(v, ["simple", "adj", "simple", "", "", "", "innocent"]) + let v = native_list_append(v, ["certain", "adj", "certain", "", "certaine", "", "certain sure"]) + let v = native_list_append(v, ["vif", "adj", "vif", "", "vive", "", "alive"]) + let v = native_list_append(v, ["fox", "adj", "fox", "", "", "", "nominative and oblique"]) + let v = native_list_append(v, ["long", "adj", "long", "", "longe", "", "long length duration"]) + let v = native_list_append(v, ["hospital", "adj", "hospital", "", "hospitale", "", "hospitable welcoming"]) + let v = native_list_append(v, ["mare", "adj", "mare", "", "", "", "evil bad"]) + let v = native_list_append(v, ["impersonal", "adj", "impersonal", "", "impersonale", "", "impersonal"]) + let v = native_list_append(v, ["potable", "adj", "potable", "", "potables", "", "potable"]) + let v = native_list_append(v, ["menu", "adj", "menu", "", "menue", "", "small"]) + let v = native_list_append(v, ["franc", "adj", "franc", "", "franche", "", "French"]) + let v = native_list_append(v, ["nocturnal", "adj", "nocturnal", "", "nocturnale", "", "nocturnal"]) + let v = native_list_append(v, ["precedent", "adj", "precedent", "", "precedente", "", "preceding that comes"]) + let v = native_list_append(v, ["fier", "adj", "fier", "", "fiere", "", "alternative form of"]) + let v = native_list_append(v, ["mot", "adj", "mot", "", "mote", "", "alternative form of"]) + let v = native_list_append(v, ["natural", "adj", "natural", "", "naturale", "", "natural"]) + let v = native_list_append(v, ["premier", "adj", "premier", "", "premiere", "", "first"]) + let v = native_list_append(v, ["universal", "adj", "universal", "", "universale", "", "universal"]) + let v = native_list_append(v, ["sole", "adj", "sole", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["maire", "adj", "maire", "", "", "", "primary principal most"]) + let v = native_list_append(v, ["tien", "adj", "tien", "", "", "", "yours your"]) + let v = native_list_append(v, ["real", "adj", "real", "", "reale", "", "royal alternative form"]) + let v = native_list_append(v, ["net", "adj", "net", "", "nete", "", "clean"]) + let v = native_list_append(v, ["invisible", "adj", "invisible", "", "", "", "invisible not able"]) + let v = native_list_append(v, ["visible", "adj", "visible", "", "", "", "visible able to"]) + let v = native_list_append(v, ["foible", "adj", "foible", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mien", "adj", "mien", "", "", "", "my mine"]) + let v = native_list_append(v, ["proper", "adj", "proper", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pale", "adj", "pale", "", "", "", "pale whitish or"]) + let v = native_list_append(v, ["gast", "adj", "gast", "", "gaste", "", "destroyed ravaged decimated"]) + let v = native_list_append(v, ["beau", "adj", "beau", "", "bele", "", "alternative form of"]) + let v = native_list_append(v, ["felon", "adj", "felon", "", "felone", "", "evil bad immoral"]) + let v = native_list_append(v, ["final", "adj", "final", "", "finale", "", "final definitive last"]) + let v = native_list_append(v, ["corporal", "adj", "corporal", "", "corporale", "", "alternative form of"]) + let v = native_list_append(v, ["idiot", "adj", "idiot", "", "idiote", "", "ignorant narrow-minded"]) + let v = native_list_append(v, ["chest", "adj", "chest", "", "cheste", "", "Picard form of"]) + let v = native_list_append(v, ["lung", "adj", "lung", "", "lunge", "", "alternative form of"]) + let v = native_list_append(v, ["bon", "adj", "meillor", "meillor", "bone", "", "good not evil"]) + let v = native_list_append(v, ["maior", "adj", "maior", "", "", "", "bigger larger"]) + let v = native_list_append(v, ["soul", "adj", "soul", "", "soule", "", "alternative form of"]) + let v = native_list_append(v, ["gris", "adj", "gris", "", "grise", "", "gray / gray"]) + let v = native_list_append(v, ["blanche", "adj", "blanche", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["nun", "adj", "nun", "", "nune", "", "alternative form of"]) + let v = native_list_append(v, ["public", "adj", "public", "", "publique", "", "public not private"]) + let v = native_list_append(v, ["amiable", "adj", "amiable", "", "", "", "likable amiable"]) + let v = native_list_append(v, ["treble", "adj", "treble", "", "", "", "treble triple"]) + let v = native_list_append(v, ["antic", "adj", "antic", "", "antique", "", "ancient very old"]) + let v = native_list_append(v, ["large", "adj", "large", "", "", "", "generous"]) + let v = native_list_append(v, ["bastard", "adj", "bastard", "", "bastarde", "", "bastard conceived by"]) + let v = native_list_append(v, ["fluent", "adj", "fluent", "", "fluente", "", "flowing that flows"]) + let v = native_list_append(v, ["quart", "adj", "quart", "", "quarte", "", "fourth"]) + let v = native_list_append(v, ["novel", "adj", "novel", "", "novele", "", "new"]) + let v = native_list_append(v, ["prude", "adj", "prude", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["divin", "adj", "divin", "", "divine", "", "divine godly"]) + let v = native_list_append(v, ["delicious", "adj", "delicious", "", "deliciouse", "", "delicious tasty"]) + let v = native_list_append(v, ["fin", "adj", "fin", "", "fine", "", "fine delicate"]) + let v = native_list_append(v, ["fix", "adj", "fix", "", "fixe", "", "fixed not able"]) + let v = native_list_append(v, ["saint", "adj", "saint", "", "sainte", "", "holy"]) + let v = native_list_append(v, ["bun", "adj", "bun", "", "bune", "", "alternative form of"]) + let v = native_list_append(v, ["chaste", "adj", "chaste", "", "", "", "chaste celibate"]) + let v = native_list_append(v, ["baud", "adj", "baud", "", "baude", "", "bold brave"]) + let v = native_list_append(v, ["gai", "adj", "gai", "", "gaie", "", "happy cheerful gay"]) + let v = native_list_append(v, ["gent", "adj", "gent", "", "gente", "", "fair beautiful handsome"]) + let v = native_list_append(v, ["cher", "adj", "cher", "", "chere", "", "alternative form of"]) + let v = native_list_append(v, ["fer", "adj", "fer", "", "fere", "", "cruel harsh"]) + let v = native_list_append(v, ["aire", "adj", "aire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cru", "adj", "cru", "", "crue", "", "raw uncooked"]) + let v = native_list_append(v, ["monde", "adj", "monde", "", "", "", "clean pure"]) + let v = native_list_append(v, ["mar", "adj", "mar", "", "mare", "", "alternative form of"]) + let v = native_list_append(v, ["haut", "adj", "haut", "", "haute", "", "high elevated"]) + let v = native_list_append(v, ["paternal", "adj", "paternal", "", "paternale", "", "paternal"]) + let v = native_list_append(v, ["quite", "adj", "quite", "", "", "", "free liberated"]) + let v = native_list_append(v, ["blanc", "adj", "blanc", "", "blanche", "", "white"]) + let v = native_list_append(v, ["noir", "adj", "noir", "", "noire", "", "black having a"]) + let v = native_list_append(v, ["sec", "adj", "sec", "", "seche", "", "dry lacking moisture"]) + let v = native_list_append(v, ["quarte", "adj", "quarte", "", "", "", "fourth ordinal adjective"]) + let v = native_list_append(v, ["quinte", "adj", "quinte", "", "", "", "fifth ordinal adjective"]) + let v = native_list_append(v, ["mat", "adj", "mat", "", "mate", "", "checkmated in checkmate"]) + let v = native_list_append(v, ["mier", "adj", "mier", "", "miere", "", "pure simple complete"]) + let v = native_list_append(v, ["plat", "adj", "plat", "", "plate", "", "flat"]) + let v = native_list_append(v, ["triste", "adj", "triste", "", "", "", "sad"]) + let v = native_list_append(v, ["frequent", "adj", "frequent", "", "frequente", "", "frequent often"]) + let v = native_list_append(v, ["violent", "adj", "violent", "", "violente", "", "violent using violence"]) + let v = native_list_append(v, ["repentant", "adj", "repentant", "", "repentante", "", "repentant"]) + let v = native_list_append(v, ["tot", "adj", "tot", "", "tote", "", "all"]) + let v = native_list_append(v, ["resident", "adj", "resident", "", "residente", "", "resident residing"]) + let v = native_list_append(v, ["tierce", "adj", "tierce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jazerant", "adj", "jazerant", "", "", "", "Made of metal"]) + let v = native_list_append(v, ["poitrinal", "adj", "poitrinal", "", "pointrinale", "", "chest relating to"]) + let v = native_list_append(v, ["autre", "adj", "autre", "", "", "", "other"]) + let v = native_list_append(v, ["cil", "adj", "cil", "", "cile", "", "alternative form of"]) + let v = native_list_append(v, ["glorious", "adj", "glorious", "", "gloriouse", "", "glorious"]) + let v = native_list_append(v, ["primer", "adj", "primer", "", "primere", "", "alternative form of"]) + let v = native_list_append(v, ["rural", "adj", "rural", "", "rurale", "", "rural"]) + let v = native_list_append(v, ["rampant", "adj", "rampant", "", "rampante", "", "rampant"]) + let v = native_list_append(v, ["demesne", "adj", "demesne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["blunt", "adj", "blunt", "", "blunde", "", "alternative form of"]) + let v = native_list_append(v, ["resplendant", "adj", "resplendant", "", "resplendante", "", "resplendent brilliant shining"]) + let v = native_list_append(v, ["pensive", "adj", "pensive", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["ardent", "adj", "ardent", "", "ardente", "", "burning aflame on"]) + let v = native_list_append(v, ["mort", "adj", "mort", "", "morte", "", "dead"]) + let v = native_list_append(v, ["poi", "adj", "poi", "", "", "", "few little"]) + let v = native_list_append(v, ["sage", "adj", "sage", "", "", "", "wise having wisdom"]) + let v = native_list_append(v, ["vis", "adj", "vis", "", "", "", "inflection of vif"]) + let v = native_list_append(v, ["digest", "adj", "digest", "", "digeste", "", "digested"]) + let v = native_list_append(v, ["grant", "adj", "maior", "grandisme", "grande", "", "big large"]) + let v = native_list_append(v, ["grief", "adj", "grief", "", "grieve", "", "sad"]) + let v = native_list_append(v, ["official", "adj", "official", "", "officiale", "", "official certified or"]) + let v = native_list_append(v, ["tart", "adj", "tart", "", "tarde", "", "late after the"]) + let v = native_list_append(v, ["trenchant", "adj", "trenchant", "", "trenchante", "", "sharp razor sharp"]) + let v = native_list_append(v, ["tut", "adj", "tut", "", "tute", "", "alternative form of"]) + let v = native_list_append(v, ["envious", "adj", "envious", "", "enviouse", "", "envious jealous"]) + let v = native_list_append(v, ["parochial", "adj", "parochial", "", "parochiale", "", "parochial"]) + let v = native_list_append(v, ["fol", "adj", "fol", "", "fole", "", "mad insane"]) + let v = native_list_append(v, ["remis", "adj", "remis", "", "remise", "", "remiss in the"]) + let v = native_list_append(v, ["sade", "adj", "sade", "", "", "", "delicious"]) + let v = native_list_append(v, ["lait", "adj", "lait", "", "laide", "", "ugly"]) + let v = native_list_append(v, ["fel", "adj", "fel", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["masculin", "adj", "masculin", "", "masculine", "", "masculine"]) + let v = native_list_append(v, ["veritable", "adj", "veritable", "", "", "", "true real not"]) + let v = native_list_append(v, ["variant", "adj", "variant", "", "variante", "", "varying which varies"]) + let v = native_list_append(v, ["noble", "adj", "noble", "", "", "", "noble upper-class well-bred"]) + let v = native_list_append(v, ["mortel", "adj", "mortel", "", "mortele", "", "mortal fatal killer"]) + let v = native_list_append(v, ["fort", "adj", "fort", "", "forte", "", "strong"]) + let v = native_list_append(v, ["obeissant", "adj", "obeissant", "", "obeissante", "", "obedient"]) + let v = native_list_append(v, ["plain", "adj", "plain", "", "plaine", "", "full not empty"]) + let v = native_list_append(v, ["amenable", "adj", "amenable", "", "", "", "amenable agreeable compliant"]) + let v = native_list_append(v, ["halt", "adj", "halt", "", "halte", "", "high elevated"]) + let v = native_list_append(v, ["regal", "adj", "regal", "", "regale", "", "regal"]) + let v = native_list_append(v, ["abile", "adj", "abile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["profound", "adj", "profound", "", "profounde", "", "alternative spelling of"]) + let v = native_list_append(v, ["brun", "adj", "brun", "", "brune", "", "brown color/colour"]) + let v = native_list_append(v, ["grande", "adj", "grande", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["verge", "adj", "verge", "", "", "", "virgin virginal"]) + let v = native_list_append(v, ["journal", "adj", "journal", "", "journale", "", "daily"]) + let v = native_list_append(v, ["terrible", "adj", "terrible", "", "terriblee", "", "terrible"]) + let v = native_list_append(v, ["viscous", "adj", "viscous", "", "viscouse", "", "viscous of a"]) + let v = native_list_append(v, ["lai", "adj", "lai", "", "laie", "", "ugly"]) + let v = native_list_append(v, ["sur", "adj", "sur", "", "sure", "", "sour bitter"]) + let v = native_list_append(v, ["gentil", "adj", "gentil", "", "gentile", "", "noble courteous courtly"]) + let v = native_list_append(v, ["obedient", "adj", "obedient", "", "obediente", "", "obedient"]) + let v = native_list_append(v, ["chier", "adj", "chier", "", "chiere", "", "important noteworthy"]) + let v = native_list_append(v, ["bas", "adj", "bas", "", "base", "", "low near the"]) + let v = native_list_append(v, ["nul", "adj", "nul", "", "nule", "", "none not any"]) + let v = native_list_append(v, ["omnipotent", "adj", "omnipotent", "", "omnipotente", "", "omnipotent"]) + let v = native_list_append(v, ["ferme", "adj", "ferme", "", "", "", "oblique and nominative"]) + let v = native_list_append(v, ["arable", "adj", "arable", "", "", "", "arable"]) + let v = native_list_append(v, ["repugnant", "adj", "repugnant", "", "repugnante", "", "contradictory"]) + let v = native_list_append(v, ["plein", "adj", "plein", "", "pleine", "", "full at capacity"]) + let v = native_list_append(v, ["runt", "adj", "runt", "", "runde", "", "alternative form of"]) + let v = native_list_append(v, ["profitable", "adj", "profitable", "", "", "", "useful usable that"]) + let v = native_list_append(v, ["compost", "adj", "compost", "", "composte", "", "composed of"]) + let v = native_list_append(v, ["venial", "adj", "venial", "", "veniale", "", "venial"]) + let v = native_list_append(v, ["sapient", "adj", "sapient", "", "sapiente", "", "wise sapient"]) + let v = native_list_append(v, ["vicious", "adj", "vicious", "", "viciouse", "", "vicious malicious"]) + let v = native_list_append(v, ["puissant", "adj", "puissant", "", "puissante", "", "powerful mighty"]) + let v = native_list_append(v, ["petit", "adj", "petit", "", "petite", "", "small little"]) + let v = native_list_append(v, ["riche", "adj", "riche", "", "", "", "rich possessing wealth"]) + let v = native_list_append(v, ["errant", "adj", "errant", "", "errante", "", "wandering nomadic"]) + let v = native_list_append(v, ["quoi", "adj", "quoi", "", "quoie", "", "silent"]) + let v = native_list_append(v, ["magne", "adj", "magne", "", "magnes", "", "strong"]) + let v = native_list_append(v, ["estrange", "adj", "estrange", "", "", "", "foreign overseas"]) + let v = native_list_append(v, ["tenant", "adj", "tenant", "", "tenante", "", "holder owner attributively"]) + let v = native_list_append(v, ["chagrin", "adj", "chagrin", "", "chagrine", "", "painful afflicted"]) + let v = native_list_append(v, ["poignant", "adj", "poignant", "", "poignante", "", "pointed pointy"]) + let v = native_list_append(v, ["tel", "adj", "tel", "", "tele", "", "such a"]) + let v = native_list_append(v, ["mari", "adj", "mari", "", "marie", "", "alternative form of"]) + let v = native_list_append(v, ["austere", "adj", "austere", "", "", "", "acrid bitter"]) + let v = native_list_append(v, ["breton", "adj", "breton", "", "bretone", "", "Breton of from"]) + let v = native_list_append(v, ["molt", "adj", "molt", "", "molte", "", "much many a"]) + let v = native_list_append(v, ["literal", "adj", "literal", "", "literale", "", "literal exactly as"]) + let v = native_list_append(v, ["venimos", "adj", "venimos", "", "venimeuse", "", "poisonous toxic"]) + let v = native_list_append(v, ["irie", "adj", "irie", "", "", "", "annoyed bothered"]) + let v = native_list_append(v, ["cert", "adj", "cert", "", "certe", "", "certain sure"]) + let v = native_list_append(v, ["bestial", "adj", "bestial", "", "bestiale", "", "bestial of or"]) + let v = native_list_append(v, ["indien", "adj", "indien", "", "indiene", "", "Indian of or"]) + let v = native_list_append(v, ["tiede", "adj", "tiede", "", "", "", "tepid luke-warm"]) + let v = native_list_append(v, ["viel", "adj", "viel", "", "vielle", "", "old"]) + let v = native_list_append(v, ["tant", "adj", "tant", "", "tante", "", "so much so"]) + let v = native_list_append(v, ["tribunal", "adj", "tribunal", "", "tribunale", "", "of or relating"]) + let v = native_list_append(v, ["quel", "adj", "quel", "", "quele", "", "which"]) + let v = native_list_append(v, ["senile", "adj", "senile", "", "seniles", "", "relating to old"]) + let v = native_list_append(v, ["pur", "adj", "pur", "", "pure", "", "pure"]) + let v = native_list_append(v, ["droit", "adj", "droit", "", "droite", "", "right correct justified"]) + let v = native_list_append(v, ["nes", "adj", "nes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quadrangle", "adj", "quadrangle", "", "", "", "quadrangular of a"]) + let v = native_list_append(v, ["mauvais", "adj", "mauvais", "", "mauvaise", "", "alternative form of"]) + let v = native_list_append(v, ["infernal", "adj", "infernal", "", "infernale", "", "infernal relating to"]) + let v = native_list_append(v, ["premere", "adj", "premere", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["parfait", "adj", "parfait", "", "parfaite", "", "perfect faultless without"]) + let v = native_list_append(v, ["tenebrous", "adj", "tenebrous", "", "tenebrouse", "", "alternative form of"]) + let v = native_list_append(v, ["serein", "adj", "serein", "", "sereine", "", "serene calm tranquil"]) + let v = native_list_append(v, ["noire", "adj", "noire", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["gros", "adj", "gros", "", "grose", "", "big thick"]) + let v = native_list_append(v, ["difficile", "adj", "difficile", "", "", "", "difficult"]) + let v = native_list_append(v, ["especial", "adj", "especial", "", "especiale", "", "special"]) + let v = native_list_append(v, ["peior", "adj", "peior", "", "peiore", "", "worse comparative degree"]) + let v = native_list_append(v, ["buen", "adj", "buen", "", "buene", "", "alternative form of"]) + let v = native_list_append(v, ["menor", "adj", "menor", "", "", "", "smaller"]) + let v = native_list_append(v, ["salvage", "adj", "salvage", "", "salvages", "", "alternative form of"]) + let v = native_list_append(v, ["entier", "adj", "entier", "", "entiere", "", "entire whole"]) + let v = native_list_append(v, ["univers", "adj", "univers", "", "universe", "", "universal applying to"]) + let v = native_list_append(v, ["privé", "adj", "privé", "", "privee", "", "private"]) + let v = native_list_append(v, ["lange", "adj", "lange", "", "", "", "woollen made of"]) + let v = native_list_append(v, ["doucet", "adj", "doucet", "", "doucete", "", "sweet of food"]) + let v = native_list_append(v, ["humble", "adj", "humble", "", "humbles", "", "alternative form of"]) + let v = native_list_append(v, ["ferial", "adj", "ferial", "", "feriale", "", "ferial pertaining to"]) + let v = native_list_append(v, ["revers", "adj", "revers", "", "reverse", "", "opposite reverse"]) + let v = native_list_append(v, ["ort", "adj", "ort", "", "orde", "", "dirty"]) + let v = native_list_append(v, ["propre", "adj", "propre", "", "", "", "own"]) + let v = native_list_append(v, ["celeste", "adj", "celeste", "", "", "", "celestial heavenly"]) + let v = native_list_append(v, ["marin", "adj", "marin", "", "marine", "", "marine of or"]) + let v = native_list_append(v, ["erratique", "adj", "erratique", "", "", "", "irregular intermittent"]) + let v = native_list_append(v, ["triumphal", "adj", "triumphal", "", "", "", "triumphal of or"]) + let v = native_list_append(v, ["boon", "adj", "meillor", "meillor", "boone", "", "alternative form of"]) + let v = native_list_append(v, ["sain", "adj", "sain", "", "saine", "", "healthy in good"]) + let v = native_list_append(v, ["tendre", "adj", "tendre", "", "", "", "tender soft delicate"]) + let v = native_list_append(v, ["cel", "adj", "cel", "", "cele", "", "this the one"]) + let v = native_list_append(v, ["leprous", "adj", "leprous", "", "leprouse", "", "leprous having leprosy"]) + let v = native_list_append(v, ["pire", "adj", "pire", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tandu", "adj", "tandu", "", "tandue", "", "tense rigid stiff"]) + let v = native_list_append(v, ["lé", "adj", "lé", "", "lee", "", "wide"]) + let v = native_list_append(v, ["commodious", "adj", "commodious", "", "commodiouse", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["ront", "adj", "ront", "", "ronde", "", "alternative form of"]) + let v = native_list_append(v, ["enceinte", "adj", "enceinte", "", "", "", "pregnant"]) + let v = native_list_append(v, ["tuz", "adj", "tuz", "", "", "", "inflection of tut"]) + let v = native_list_append(v, ["vivant", "adj", "vivant", "", "vivante", "", "living alive"]) + let v = native_list_append(v, ["aidant", "adj", "aidant", "", "aidanz", "", "ready or in"]) + let v = native_list_append(v, ["ancien", "adj", "ancien", "", "anciene", "", "alternative form of"]) + let v = native_list_append(v, ["autumnal", "adj", "autumnal", "", "autumnale", "", "autumnal"]) + let v = native_list_append(v, ["sien", "adj", "sien", "", "", "", "third-person singular possessive"]) + let v = native_list_append(v, ["greu", "adj", "greu", "", "grecque", "", "Greek from or"]) + let v = native_list_append(v, ["buns", "adj", "buns", "", "", "", "inflection of bun"]) + let v = native_list_append(v, ["mult", "adj", "mult", "", "multe", "", "alternative form of"]) + let v = native_list_append(v, ["bele", "adj", "bele", "", "", "", "feminine nominative/oblique singular"]) + let v = native_list_append(v, ["tardif", "adj", "tardif", "", "tardive", "", "late not on"]) + let v = native_list_append(v, ["cest", "adj", "cest", "", "ceste", "", "alternative form of"]) + let v = native_list_append(v, ["ferm", "adj", "ferm", "", "ferme", "", "firm"]) + let v = native_list_append(v, ["joli", "adj", "joli", "", "jolie", "", "pretty cute"]) + let v = native_list_append(v, ["certaines", "adj", "certaines", "", "", "", "nominative/oblique feminine plural"]) + let v = native_list_append(v, ["aucun", "adj", "aucun", "", "aucune", "", "any"]) + let v = native_list_append(v, ["malade", "adj", "malade", "", "", "", "ill unwell sick"]) + let v = native_list_append(v, ["magnifique", "adj", "magnifique", "", "", "", "magnificent marvellous"]) + let v = native_list_append(v, ["vermeil", "adj", "vermeil", "", "vermeile", "", "vermillion"]) + let v = native_list_append(v, ["vuit", "adj", "vuit", "", "vuide", "", "empty having no"]) + let v = native_list_append(v, ["certaine", "adj", "certaine", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["vair", "adj", "vair", "", "vaire", "", "changeable that may"]) + let v = native_list_append(v, ["couchant", "adj", "couchant", "", "", "", "lying down"]) + let v = native_list_append(v, ["multe", "adj", "multe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["leal", "adj", "leal", "", "leal (later leale)", "", "alternative form of"]) + let v = native_list_append(v, ["deporté", "adj", "deporté", "", "deportee", "", "amused entertained"]) + let v = native_list_append(v, ["doble", "adj", "doble", "", "", "", "double twice as"]) + let v = native_list_append(v, ["doré", "adj", "doré", "", "doree", "", "golden gold in"]) + let v = native_list_append(v, ["lunges", "adj", "lunges", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["tiers", "adj", "tiers", "", "tierce", "", "third 3rd"]) + let v = native_list_append(v, ["liquide", "adj", "liquide", "", "", "", "liquid existing in"]) + let v = native_list_append(v, ["neutre", "adj", "neutre", "", "", "", "neuter"]) + let v = native_list_append(v, ["manuel", "adj", "manuel", "", "manuele", "", "manual done with"]) + let v = native_list_append(v, ["roial", "adj", "roial", "", "roiale", "", "royal"]) + let v = native_list_append(v, ["autel", "adj", "autel", "", "autele", "", "similar"]) + let v = native_list_append(v, ["ordinaire", "adj", "ordinaire", "", "", "", "ordinary usual"]) + let v = native_list_append(v, ["amer", "adj", "amer", "", "amere", "", "bitter"]) + let v = native_list_append(v, ["digestif", "adj", "digestif", "", "digestive", "", "digestive that aids"]) + let v = native_list_append(v, ["charnel", "adj", "charnel", "", "charnexs", "", "carnal relating to"]) + let v = native_list_append(v, ["recreant", "adj", "recreant", "", "recreante", "", "recreant defeated"]) + let v = native_list_append(v, ["clop", "adj", "clop", "", "clope", "", "hobbling limping"]) + let v = native_list_append(v, ["pestilential", "adj", "pestilential", "", "pestilentiale", "", "pestilent pestilential"]) + let v = native_list_append(v, ["nobile", "adj", "nobile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tuit", "adj", "tuit", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["riant", "adj", "riant", "", "rianzs", "", "laughing"]) + let v = native_list_append(v, ["actif", "adj", "actif", "", "active", "", "active involving activity"]) + let v = native_list_append(v, ["altre", "adj", "altre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["terrestre", "adj", "terrestre", "", "", "", "terrestrial earthly"]) + let v = native_list_append(v, ["alcun", "adj", "alcun", "", "alcune", "", "alternative form of"]) + let v = native_list_append(v, ["certains", "adj", "certains", "", "", "", "inflection of certain"]) + let v = native_list_append(v, ["chenu", "adj", "chenu", "", "chenue", "", "old aged"]) + let v = native_list_append(v, ["curante", "adj", "curante", "", "", "", "feminine nominative/oblique singular"]) + let v = native_list_append(v, ["destre", "adj", "destre", "", "", "", "right on the"]) + let v = native_list_append(v, ["particulier", "adj", "particulier", "", "particuliere", "", "particular relating to"]) + let v = native_list_append(v, ["fresche", "adj", "fresche", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["idiote", "adj", "idiote", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["oneste", "adj", "oneste", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["povere", "adj", "povere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["françois", "adj", "françois", "", "françoise", "", "French"]) + let v = native_list_append(v, ["maint", "adj", "maint", "", "mainte", "", "many"]) + let v = native_list_append(v, ["savie", "adj", "savie", "", "", "", "wise"]) + let v = native_list_append(v, ["discret", "adj", "discret", "", "discrete", "", "different not identical"]) + let v = native_list_append(v, ["terce", "adj", "terce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["clamant", "adj", "clamant", "", "clamante", "", "sounding making a"]) + let v = native_list_append(v, ["lié", "adj", "lié", "", "liee", "", "delighted overjoyed"]) + let v = native_list_append(v, ["estable", "adj", "estable", "", "", "", "stable relatively unchanging"]) + let v = native_list_append(v, ["verz", "adj", "verz", "", "", "", "oblique masculine plural"]) + let v = native_list_append(v, ["pesant", "adj", "pesant", "", "pesante", "", "heavy"]) + let v = native_list_append(v, ["sauvage", "adj", "sauvage", "", "sauvages", "", "wild untamed barbarian"]) + let v = native_list_append(v, ["aigre", "adj", "aigre", "", "", "", "sharp sour acid"]) + let v = native_list_append(v, ["luisant", "adj", "luisant", "", "luisanzs", "", "gleaming glistening"]) + let v = native_list_append(v, ["cotidian", "adj", "cotidian", "", "cotidiane", "", "daily occurring every"]) + let v = native_list_append(v, ["continu", "adj", "continu", "", "continue", "", "continuous without pauses"]) + let v = native_list_append(v, ["fals", "adj", "fals", "", "false", "", "false untrue not"]) + let v = native_list_append(v, ["fraile", "adj", "fraile", "", "frailes", "", "fragile frail"]) + let v = native_list_append(v, ["galant", "adj", "galant", "", "galante", "", "brave noble chivalrous"]) + let v = native_list_append(v, ["hardi", "adj", "hardi", "", "hardie", "", "hardy tough durable"]) + let v = native_list_append(v, ["tex", "adj", "tex", "", "", "", "inflection of tel"]) + let v = native_list_append(v, ["aromatique", "adj", "aromatique", "", "", "", "aromatic having a"]) + let v = native_list_append(v, ["rebelle", "adj", "rebelle", "", "", "", "rebellious"]) + let v = native_list_append(v, ["beaus", "adj", "beaus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mutuel", "adj", "mutuel", "", "mutuele", "", "mutual"]) + let v = native_list_append(v, ["nominatif", "adj", "nominatif", "", "nominative", "", "nominative"]) + let v = native_list_append(v, ["graunt", "adj", "graunt", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["vielle", "adj", "vielle", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["chantant", "adj", "chantant", "", "chantanzs", "", "singing in the"]) + let v = native_list_append(v, ["sorel", "adj", "sorel", "", "sorele", "", "sorrel of a"]) + let v = native_list_append(v, ["consimile", "adj", "consimile", "", "", "", "very similar"]) + let v = native_list_append(v, ["plaisant", "adj", "plaisant", "", "plaisante", "", "pleasant nice"]) + let v = native_list_append(v, ["taisant", "adj", "taisant", "", "taisanzs", "", "silent not making"]) + let v = native_list_append(v, ["pendu", "adj", "pendu", "", "", "", "hanging suspended"]) + let v = native_list_append(v, ["amers", "adj", "amers", "", "", "", "inflection of amer"]) + let v = native_list_append(v, ["sanglant", "adj", "sanglant", "", "sanglante", "", "bloody covered in"]) + let v = native_list_append(v, ["figural", "adj", "figural", "", "figurale", "", "symbolic"]) + let v = native_list_append(v, ["lasche", "adj", "lasche", "", "", "", "cowardly"]) + let v = native_list_append(v, ["mesne", "adj", "mesne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["disme", "adj", "disme", "", "", "", "tenth ordinal adjective"]) + let v = native_list_append(v, ["devis", "adj", "devis", "", "devise", "", "divided divided up"]) + let v = native_list_append(v, ["effimere", "adj", "effimere", "", "", "", "ephemeral"]) + let v = native_list_append(v, ["dous", "adj", "dous", "", "douse", "", "soft not hard"]) + let v = native_list_append(v, ["abeant", "adj", "abeant", "", "abeante", "", "desirous covetous"]) + let v = native_list_append(v, ["ruge", "adj", "ruge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["privés", "adj", "privés", "", "", "", "inflection of privé"]) + let v = native_list_append(v, ["narcotique", "adj", "narcotique", "", "", "", "sedative provoking sleep"]) + let v = native_list_append(v, ["nerveus", "adj", "nerveus", "", "nerveuse", "", "sinew tendon attributively"]) + let v = native_list_append(v, ["terrien", "adj", "terrien", "", "terriene", "", "earth made of"]) + let v = native_list_append(v, ["croche", "adj", "croche", "", "croches", "", "hooked curved"]) + let v = native_list_append(v, ["traversable", "adj", "traversable", "", "", "", "traversable"]) + let v = native_list_append(v, ["preu", "adj", "preu", "", "not attested", "", "brave valiant chivalrous"]) + let v = native_list_append(v, ["contrarious", "adj", "contrarious", "", "contrariouse", "", "maddening irritating"]) + let v = native_list_append(v, ["venimeux", "adj", "venimeux", "", "venimeuse", "", "alternative form of"]) + let v = native_list_append(v, ["meur", "adj", "meur", "", "meure", "", "mature"]) + let v = native_list_append(v, ["religieus", "adj", "religieus", "", "religieuse", "", "religious"]) + let v = native_list_append(v, ["toz", "adj", "toz", "", "", "", "inflection of tot"]) + let v = native_list_append(v, ["insaciable", "adj", "insaciable", "", "", "", "insatiable"]) + let v = native_list_append(v, ["povre", "adj", "povre", "", "povres", "", "poor lacking resources"]) + let v = native_list_append(v, ["several", "adj", "several", "", "severale", "", "separate"]) + let v = native_list_append(v, ["chiche", "adj", "chiche", "", "", "", "miserly stingy"]) + let v = native_list_append(v, ["rauque", "adj", "rauque", "", "", "", "hoarse afflicted by"]) + let v = native_list_append(v, ["mixte", "adj", "mixte", "", "", "", "mixed"]) + let v = native_list_append(v, ["menteor", "adj", "menteor", "", "", "", "lying tending to"]) + let v = native_list_append(v, ["vaillant", "adj", "vaillant", "", "vaillante", "", "valuable having value"]) + let v = native_list_append(v, ["preux", "adj", "preux", "", "", "", "inflection of preu"]) + let v = native_list_append(v, ["biau", "adj", "biau", "", "bele", "", "alternative form of"]) + let v = native_list_append(v, ["cist", "adj", "cist", "", "", "", "this this one"]) + let v = native_list_append(v, ["dolent", "adj", "dolent", "", "dolente", "", "painful causing suffering"]) + let v = native_list_append(v, ["nervus", "adj", "nervus", "", "nervuse", "", "sinew tendon attributively"]) + let v = native_list_append(v, ["serain", "adj", "serain", "", "seraine", "", "alternative form of"]) + let v = native_list_append(v, ["perfectus", "adj", "perfectus", "", "", "", "perfect faultless etc."]) + let v = native_list_append(v, ["passible", "adj", "passible", "", "passiblee", "", "passible able to"]) + let v = native_list_append(v, ["jolis", "adj", "jolis", "", "", "", "inflection of jolif"]) + let v = native_list_append(v, ["corporel", "adj", "corporel", "", "corporele", "", "corporal"]) + let v = native_list_append(v, ["jalne", "adj", "jalne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["morz", "adj", "morz", "", "", "", "inflection of mort"]) + let v = native_list_append(v, ["ferrant", "adj", "ferrant", "", "ferrante", "", "iron gray usually"]) + let v = native_list_append(v, ["paroissial", "adj", "paroissial", "", "paroissiale", "", "parochial"]) + let v = native_list_append(v, ["curant", "adj", "curant", "", "curante", "", "alternative form of"]) + let v = native_list_append(v, ["halte", "adj", "halte", "", "", "", "feminine oblique/nominative singular"]) + let v = native_list_append(v, ["sanglent", "adj", "sanglent", "", "sanglente", "", "alternative form of"]) + let v = native_list_append(v, ["savoré", "adj", "savoré", "", "savoree", "", "perfumed scented"]) + let v = native_list_append(v, ["chascun", "adj", "chascun", "", "chascune", "", "each every"]) + let v = native_list_append(v, ["comun", "adj", "comun", "", "comune", "", "common"]) + let v = native_list_append(v, ["loial", "adj", "loial", "", "loial (later loiale)", "", "loyal"]) + let v = native_list_append(v, ["volage", "adj", "volage", "", "", "", "flying able to"]) + let v = native_list_append(v, ["pensif", "adj", "pensif", "", "pensive", "", "pensive thoughtful"]) + let v = native_list_append(v, ["pensives", "adj", "pensives", "", "", "", "nominative/oblique feminine plural"]) + let v = native_list_append(v, ["biax", "adj", "biax", "", "", "", "inflection of biau"]) + let v = native_list_append(v, ["biaus", "adj", "biaus", "", "", "", "inflection of biau"]) + let v = native_list_append(v, ["beles", "adj", "beles", "", "", "", "feminine nominative/oblique plural"]) + let v = native_list_append(v, ["granz", "adj", "granz", "", "", "", "inflection of grant"]) + let v = native_list_append(v, ["leial", "adj", "leial", "", "leiale (later leiale)", "", "alternative form of"]) + let v = native_list_append(v, ["mesme", "adj", "mesme", "", "", "", "same"]) + let v = native_list_append(v, ["bretun", "adj", "bretun", "", "bretune", "", "alternative form of"]) + let v = native_list_append(v, ["elementatif", "adj", "elementatif", "", "elementative", "", "elementary simple"]) + let v = native_list_append(v, ["elementable", "adj", "elementable", "", "elementables", "", "elementary simple"]) + let v = native_list_append(v, ["hastif", "adj", "hastif", "", "hastive", "", "speedy quick"]) + let v = native_list_append(v, ["cortois", "adj", "cortois", "", "cortoise", "", "alternative form of"]) + let v = native_list_append(v, ["dreit", "adj", "dreit", "", "dreite", "", "alternative form of"]) + let v = native_list_append(v, ["preuz", "adj", "preuz", "", "", "", "inflection of preu"]) + let v = native_list_append(v, ["meillor", "adj", "meillor", "", "mieudre", "", "better comparative degree"]) + let v = native_list_append(v, ["corant", "adj", "corant", "", "corante", "", "running in the"]) + let v = native_list_append(v, ["cler", "adj", "cler", "", "clere", "", "bright well-lit not"]) + let v = native_list_append(v, ["malvais", "adj", "malvais", "", "malvaise", "", "bad evil"]) + let v = native_list_append(v, ["orgoillus", "adj", "orgoillus", "", "orgoilluse", "", "proud having the"]) + let v = native_list_append(v, ["fres", "adj", "fres", "", "fresche", "", "alternative form of"]) + let v = native_list_append(v, ["pitet", "adj", "pitet", "", "pitete", "", "alternative form of"]) + let v = native_list_append(v, ["vaillanz", "adj", "vaillanz", "", "", "", "inflection of vaillant"]) + let v = native_list_append(v, ["plusors", "adj", "plusors", "", "", "", "many a lot"]) + let v = native_list_append(v, ["senestre", "adj", "senestre", "", "senestres", "", "left on the"]) + let v = native_list_append(v, ["curteis", "adj", "curteis", "", "curteise", "", "alternative form of"]) + let v = native_list_append(v, ["proz", "adj", "proz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["merveillus", "adj", "merveillus", "", "merveilluse", "", "enormous giant"]) + let v = native_list_append(v, ["cortoise", "adj", "cortoise", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["cortoises", "adj", "cortoises", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["laxatif", "adj", "laxatif", "", "laxative", "", "laxative"]) + let v = native_list_append(v, ["merveilus", "adj", "merveilus", "", "merveiluse", "", "alternative form of"]) + let v = native_list_append(v, ["malvaise", "adj", "malvaise", "", "", "", "inflection of malvais"]) + let v = native_list_append(v, ["malvaises", "adj", "malvaises", "", "", "", "inflection of malvais"]) + let v = native_list_append(v, ["merveilluse", "adj", "merveilluse", "", "", "", "inflection of merveillus"]) + let v = native_list_append(v, ["merveilluses", "adj", "merveilluses", "", "", "", "inflection of merveillus"]) + let v = native_list_append(v, ["bels", "adj", "bels", "", "", "", "inflection of bel"]) + let v = native_list_append(v, ["honeste", "adj", "honeste", "", "", "", "honest"]) + let v = native_list_append(v, ["premer", "adj", "premer", "", "premere", "", "alternative form of"]) + let v = native_list_append(v, ["orgoilluse", "adj", "orgoilluse", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["orgoilluses", "adj", "orgoilluses", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["jolif", "adj", "jolif", "", "jolive", "", "pretty attractive"]) + let v = native_list_append(v, ["jolive", "adj", "jolive", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["jolives", "adj", "jolives", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["jolifs", "adj", "jolifs", "", "", "", "inflection of jolif"]) + let v = native_list_append(v, ["chaut", "adj", "chaut", "", "chaude", "", "hot heated not"]) + let v = native_list_append(v, ["seur", "adj", "seur", "", "seure", "", "sure certain"]) + let v = native_list_append(v, ["seür", "adj", "seür", "", "seüre", "", "alternative form of"]) + let v = native_list_append(v, ["chertain", "adj", "chertain", "", "chertaine", "", "alternative form of"]) + let v = native_list_append(v, ["curanz", "adj", "curanz", "", "", "", "inflection of curant"]) + let v = native_list_append(v, ["curantes", "adj", "curantes", "", "", "", "feminine nominative/oblique plural"]) + let v = native_list_append(v, ["hastive", "adj", "hastive", "", "", "", "feminine nominative/oblique singular"]) + let v = native_list_append(v, ["hastives", "adj", "hastives", "", "", "", "feminine nominative/oblique plural"]) + let v = native_list_append(v, ["hastifs", "adj", "hastifs", "", "", "", "inflection of hastif"]) + let v = native_list_append(v, ["puissanz", "adj", "puissanz", "", "", "", "inflection of puissant"]) + let v = native_list_append(v, ["reial", "adj", "reial", "", "reiale", "", "alternative form of"]) + let v = native_list_append(v, ["lonc", "adj", "lonc", "", "longe", "", "alternative form of"]) + let v = native_list_append(v, ["pensis", "adj", "pensis", "", "", "", "inflection of pensif"]) + let v = native_list_append(v, ["trenchanz", "adj", "trenchanz", "", "", "", "inflection of trenchant"]) + let v = native_list_append(v, ["honnorable", "adj", "honnorable", "", "", "", "honorable"]) + let v = native_list_append(v, ["avenant", "adj", "avenant", "", "avenante", "", "fitting apt"]) + let v = native_list_append(v, ["grezeis", "adj", "grezeis", "", "grezeise", "", "alternative form of"]) + let v = native_list_append(v, ["grezois", "adj", "grezois", "", "grezoise", "", "Greek"]) + let v = native_list_append(v, ["hideus", "adj", "hideus", "", "hideuse", "", "ugly hideous"]) + let v = native_list_append(v, ["bruiant", "adj", "bruiant", "", "bruiante", "", "noisy"]) + let v = native_list_append(v, ["chiere", "adj", "chiere", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["chieres", "adj", "chieres", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["chiers", "adj", "chiers", "", "", "", "inflection of chier"]) + let v = native_list_append(v, ["angousseus", "adj", "angousseus", "", "angousseuse", "", "worried concerned"]) + let v = native_list_append(v, ["meillur", "adj", "meillur", "", "", "", "better"]) + let v = native_list_append(v, ["feble", "adj", "feble", "", "", "", "weak feeble"]) + let v = native_list_append(v, ["plusurs", "adj", "plusurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fraunceis", "adj", "fraunceis", "", "fraunceise", "", "alternative form of"]) + let v = native_list_append(v, ["meisme", "adj", "meisme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anglois", "adj", "anglois", "", "angloise", "", "English"]) + let v = native_list_append(v, ["angloise", "adj", "angloise", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["angloises", "adj", "angloises", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["clere", "adj", "clere", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["cleres", "adj", "cleres", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["clers", "adj", "clers", "", "", "", "inflection of cler"]) + let v = native_list_append(v, ["avugle", "adj", "avugle", "", "", "", "blind"]) + let v = native_list_append(v, ["joiant", "adj", "joiant", "", "joiante", "", "joyous rejoicing"]) + let v = native_list_append(v, ["debonaire", "adj", "debonaire", "", "", "", "noble of a"]) + let v = native_list_append(v, ["galois", "adj", "galois", "", "galoise", "", "Welsh"]) + let v = native_list_append(v, ["mauveis", "adj", "mauveis", "", "mauveise", "", "alternative form of"]) + let v = native_list_append(v, ["perilleus", "adj", "perilleus", "", "perilleuse", "", "perilous very dangerous"]) + let v = native_list_append(v, ["chil", "adj", "chil", "", "chile", "", "alternative form of"]) + let v = native_list_append(v, ["chel", "adj", "chel", "", "chele", "", "alternative form of"]) + let v = native_list_append(v, ["loiaus", "adj", "loiaus", "", "", "", "inflection of loial"]) + let v = native_list_append(v, ["virgine", "adj", "virgine", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["einglois", "adj", "einglois", "", "eingloise", "", "English relating to"]) + let v = native_list_append(v, ["alemant", "adj", "alemant", "", "alemande", "", "German relating to"]) + let v = native_list_append(v, ["esjoï", "adj", "esjoï", "", "esjoïe", "", "elated overjoyed"]) + let v = native_list_append(v, ["deboneire", "adj", "deboneire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["peisible", "adj", "peisible", "", "", "", "peaceful"]) + let v = native_list_append(v, ["irié", "adj", "irié", "", "iriee", "", "enraged furious livid"]) + let v = native_list_append(v, ["juene", "adj", "juene", "", "juenes", "", "young youthful not"]) + let v = native_list_append(v, ["sinple", "adj", "sinple", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["troble", "adj", "troble", "", "trobles", "", "turbulent"]) + let v = native_list_append(v, ["angleche", "adj", "angleche", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["angleches", "adj", "angleches", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["legier", "adj", "legier", "", "legiere", "", "light not heavy"]) + let v = native_list_append(v, ["rere", "adj", "rere", "", "", "", "late"]) + let v = native_list_append(v, ["normant", "adj", "normant", "", "normante", "", "Norman"]) + let v = native_list_append(v, ["joieus", "adj", "joieus", "", "joieuse", "", "joyous overjoyed"]) + let v = native_list_append(v, ["estroit", "adj", "estroit", "", "estroite", "", "narrow"]) + let v = native_list_append(v, ["estreit", "adj", "estreit", "", "estreite", "", "alternative form of"]) + let v = native_list_append(v, ["faus", "adj", "faus", "", "fause", "", "alternative form of"]) + let v = native_list_append(v, ["forsenable", "adj", "forsenable", "", "", "", "causing insanity or"]) + let v = native_list_append(v, ["ameres", "adj", "ameres", "", "", "", "nominative/oblique feminine plural"]) + let v = native_list_append(v, ["amere", "adj", "amere", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["impetueux", "adj", "impetueux", "", "impetueuse", "", "forceful violent strong"]) + let v = native_list_append(v, ["jone", "adj", "jone", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["desirrous", "adj", "desirrous", "", "desirrouse", "", "desirous envious coveting"]) + let v = native_list_append(v, ["verai", "adj", "verai", "", "veraie", "", "real genuine"]) + let v = native_list_append(v, ["verais", "adj", "verais", "", "", "", "inflection of verai"]) + let v = native_list_append(v, ["veraie", "adj", "veraie", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["veraies", "adj", "veraies", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["douz", "adj", "douz", "", "douse", "", "alternative form of"]) + let v = native_list_append(v, ["froit", "adj", "froit", "", "froide", "", "cold of a"]) + let v = native_list_append(v, ["amoros", "adj", "amoros", "", "amorose", "", "alternative form of"]) + let v = native_list_append(v, ["virge", "adj", "virge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honteus", "adj", "honteus", "", "honteuse", "", "shameful causing shame"]) + let v = native_list_append(v, ["avaricieux", "adj", "avaricieux", "", "avaricieuse", "", "avaricious miserly stingy"]) + let v = native_list_append(v, ["corageus", "adj", "corageus", "", "corageuse", "", "brave valiant"]) + let v = native_list_append(v, ["vengeable", "adj", "vengeable", "", "", "", "that justifies or"]) + let v = native_list_append(v, ["chertains", "adj", "chertains", "", "", "", "inflection of chertain"]) + let v = native_list_append(v, ["chertaine", "adj", "chertaine", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["chertaines", "adj", "chertaines", "", "", "", "nominative/oblique feminine plural"]) + let v = native_list_append(v, ["taillié", "adj", "taillié", "", "tailliee", "", "shaped proportioned"]) + let v = native_list_append(v, ["jant", "adj", "jant", "", "jante", "", "alternative form of"]) + let v = native_list_append(v, ["vermoil", "adj", "vermoil", "", "vermoile", "", "alternative form of"]) + let v = native_list_append(v, ["roge", "adj", "roge", "", "", "", "red of a"]) + let v = native_list_append(v, ["ansanglanté", "adj", "ansanglanté", "", "ansanglantee", "", "covered in blood"]) + let v = native_list_append(v, ["bloe", "adj", "bloe", "", "", "", "blue"]) + let v = native_list_append(v, ["boçu", "adj", "boçu", "", "boçue", "", "humpbacked"]) + let v = native_list_append(v, ["siste", "adj", "siste", "", "", "", "sixth ordinal adjective"]) + let v = native_list_append(v, ["boen", "adj", "boen", "", "boene", "", "alternative form of"]) + let v = native_list_append(v, ["valeureux", "adj", "valeureux", "", "valeureuse", "", "valiant brave"]) + let v = native_list_append(v, ["jalous", "adj", "jalous", "", "jalouse", "", "eager zealous"]) + let v = native_list_append(v, ["gelus", "adj", "gelus", "", "geluse", "", "eager zealous"]) + let v = native_list_append(v, ["blont", "adj", "blont", "", "blonde", "", "blond hair color"]) + let v = native_list_append(v, ["mauvés", "adj", "mauvés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["felun", "adj", "felun", "", "felune", "", "alternative form of"]) + let v = native_list_append(v, ["meint", "adj", "meint", "", "meinte", "", "alternative form of"]) + let v = native_list_append(v, ["gascon", "adj", "gascon", "", "gascone", "", "Gascon all meanings"]) + let v = native_list_append(v, ["umble", "adj", "umble", "", "umbles", "", "humble"]) + let v = native_list_append(v, ["privee", "adj", "privee", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["privees", "adj", "privees", "", "", "", "nominative/oblique feminine plural"]) + let v = native_list_append(v, ["coart", "adj", "coart", "", "coarde", "", "cowardly"]) + let v = native_list_append(v, ["nuef", "adj", "nuef", "", "nueve", "", "brand new fresh"]) + let v = native_list_append(v, ["reont", "adj", "reont", "", "reonde", "", "round in shape"]) + let v = native_list_append(v, ["reonde", "adj", "reonde", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["reondes", "adj", "reondes", "", "", "", "nominative/oblique feminine plural"]) + let v = native_list_append(v, ["reonz", "adj", "reonz", "", "", "", "inflection of reont"]) + let v = native_list_append(v, ["pleintif", "adj", "pleintif", "", "pleintive", "", "miserable unhappy"]) + let v = native_list_append(v, ["vuide", "adj", "vuide", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["vuides", "adj", "vuides", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["piramidal", "adj", "piramidal", "", "piramidale", "", "pyramidal pyramid-shaped"]) + let v = native_list_append(v, ["marri", "adj", "marri", "", "marrie", "", "angry angered"]) + let v = native_list_append(v, ["combataunt", "adj", "combataunt", "", "combataunte", "", "alternative form of"]) + let v = native_list_append(v, ["hidous", "adj", "hidous", "", "hidouse", "", "alternative form of"]) + let v = native_list_append(v, ["nuvele", "adj", "nuvele", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["chrestien", "adj", "chrestien", "", "chrestiene", "", "Christian relating to"]) + let v = native_list_append(v, ["glorius", "adj", "glorius", "", "gloriuse", "", "alternative form of"]) + let v = native_list_append(v, ["agreable", "adj", "agreable", "", "agreables", "", "agreeable pleasant pleasing"]) + let v = native_list_append(v, ["fauve", "adj", "fauve", "", "", "", "brownish"]) + let v = native_list_append(v, ["pleisant", "adj", "pleisant", "", "pleisante", "", "alternative form of"]) + let v = native_list_append(v, ["plesant", "adj", "plesant", "", "plesante", "", "alternative form of"]) + let v = native_list_append(v, ["bloi", "adj", "bloi", "", "bloie", "", "an uncertain color"]) + let v = native_list_append(v, ["descoloré", "adj", "descoloré", "", "descoloree", "", "colorless lacking color"]) + let v = native_list_append(v, ["qel", "adj", "qel", "", "qele", "", "alternative form of"]) + let v = native_list_append(v, ["blans", "adj", "blans", "", "", "", "inflection of blanc"]) + let v = native_list_append(v, ["sousterin", "adj", "sousterin", "", "sousterine", "", "underground"]) + let v = native_list_append(v, ["oscur", "adj", "oscur", "", "oscure", "", "dark lacking light"]) + let v = native_list_append(v, ["caut", "adj", "caut", "", "caude", "", "alternative form of"]) + let v = native_list_append(v, ["pruz", "adj", "pruz", "", "", "", "brave valiant"]) + let v = native_list_append(v, ["espés", "adj", "espés", "", "espese", "", "thick"]) + let v = native_list_append(v, ["anguissous", "adj", "anguissous", "", "anguissouse", "", "anxious worried"]) + let v = native_list_append(v, ["covenable", "adj", "covenable", "", "", "", "appropriate fitting"]) + let v = native_list_append(v, ["lunc", "adj", "lunc", "", "lunge", "", "alternative form of"]) + let v = native_list_append(v, ["joius", "adj", "joius", "", "joiuse", "", "alternative form of"]) + let v = native_list_append(v, ["chalt", "adj", "chalt", "", "chalde", "", "alternative form of"]) + let v = native_list_append(v, ["buillant", "adj", "buillant", "", "buillante", "", "alternative form of"]) + let v = native_list_append(v, ["beal", "adj", "beal", "", "beale", "", "alternative form of"]) + let v = native_list_append(v, ["dreite", "adj", "dreite", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["plaisible", "adj", "plaisible", "", "", "", "pleasing pleasant"]) + let v = native_list_append(v, ["curteise", "adj", "curteise", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["renumé", "adj", "renumé", "", "renumee", "", "renowned infamous"]) + let v = native_list_append(v, ["personel", "adj", "personel", "", "personele", "", "personal relating to"]) + let v = native_list_append(v, ["solempne", "adj", "solempne", "", "", "", "solemn serious"]) + let v = native_list_append(v, ["pleyn", "adj", "pleyn", "", "pleyne", "", "alternative form of"]) + let v = native_list_append(v, ["truble", "adj", "truble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["irous", "adj", "irous", "", "irouse", "", "enraged furious very"]) + let v = native_list_append(v, ["orible", "adj", "orible", "", "", "", "horrible awful terrible"]) + let v = native_list_append(v, ["aumosnier", "adj", "aumosnier", "", "aumosniere", "", "generous giving"]) + let v = native_list_append(v, ["corteis", "adj", "corteis", "", "corteise", "", "court"]) + let v = native_list_append(v, ["mellor", "adj", "mellor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["particuler", "adj", "particuler", "", "particulere", "", "alternative form of"]) + let v = native_list_append(v, ["penus", "adj", "penus", "", "penuse", "", "painful"]) + let v = native_list_append(v, ["isnel", "adj", "isnel", "", "isnele", "", "alternative form of"]) + let v = native_list_append(v, ["ignel", "adj", "ignel", "", "ignele", "", "swift impetuous"]) + let v = native_list_append(v, ["gentix", "adj", "gentix", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["apris", "adj", "apris", "", "aprise", "", "educated"]) + let v = native_list_append(v, ["desleal", "adj", "desleal", "", "desleale", "", "disloyal not loyal"]) + let v = native_list_append(v, ["piteus", "adj", "piteus", "", "piteuse", "", "piteous having pity"]) + let v = native_list_append(v, ["enorable", "adj", "enorable", "", "", "", "honorable"]) + let v = native_list_append(v, ["graindre", "adj", "graindre", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["graignor", "adj", "graignor", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["quarré", "adj", "quarré", "", "quarree", "", "square"]) + let v = native_list_append(v, ["resnable", "adj", "resnable", "", "", "", "wise intelligent"]) + let v = native_list_append(v, ["veable", "adj", "veable", "", "veables", "", "alternative form of"]) + let v = native_list_append(v, ["igal", "adj", "igal", "", "igale", "", "equal"]) + let v = native_list_append(v, ["parfunt", "adj", "parfunt", "", "parfunde", "", "alternative form of"]) + let v = native_list_append(v, ["freid", "adj", "freid", "", "freide", "", "cold of a"]) + let v = native_list_append(v, ["profont", "adj", "profont", "", "profonde", "", "deep of a"]) + let v = native_list_append(v, ["duble", "adj", "duble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["outrageus", "adj", "outrageus", "", "outrageuse", "", "excessive over-the-top"]) + let v = native_list_append(v, ["verdeant", "adj", "verdeant", "", "", "", "verdant"]) + let v = native_list_append(v, ["meigre", "adj", "meigre", "", "", "", "skinny very slim"]) + let v = native_list_append(v, ["delitable", "adj", "delitable", "", "delitables", "", "delightful very pleasing"]) + let v = native_list_append(v, ["mesavantureus", "adj", "mesavantureus", "", "mesavantureuse", "", "unlucky cursed with"]) + let v = native_list_append(v, ["malvés", "adj", "malvés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soverain", "adj", "soverain", "", "soveraine", "", "sovereign"]) + let v = native_list_append(v, ["acesmé", "adj", "acesmé", "", "acesmee", "", "decorated adorned"]) + let v = native_list_append(v, ["esnel", "adj", "esnel", "", "esnele", "", "alternative form of"]) + let v = native_list_append(v, ["ruunt", "adj", "ruunt", "", "ruunde", "", "alternative form of"]) + let v = native_list_append(v, ["medlee", "adj", "medlee", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["medlé", "adj", "medlé", "", "medlee", "", "mixed intermixed"]) + let v = native_list_append(v, ["cadhuna", "adj", "cadhuna", "", "", "", "each any"]) + let v = native_list_append(v, ["pelerin", "adj", "pelerin", "", "pelerine", "", "foreign"]) + let v = native_list_append(v, ["endeble", "adj", "endeble", "", "", "", "feeble weak"]) + let v = native_list_append(v, ["amoreus", "adj", "amoreus", "", "amoreuse", "", "in love"]) + let v = native_list_append(v, ["estraunge", "adj", "estraunge", "", "", "", "Late Anglo-Norman spelling"]) + let v = native_list_append(v, ["desloial", "adj", "desloial", "", "desloiale", "", "alternative form of"]) + let v = native_list_append(v, ["neir", "adj", "neir", "", "neire", "", "alternative form of"]) + let v = native_list_append(v, ["moiste", "adj", "moiste", "", "", "", "damp wet clammy"]) + let v = native_list_append(v, ["umain", "adj", "umain", "", "umaine", "", "human relating to"]) + let v = native_list_append(v, ["yvre", "adj", "yvre", "", "", "", "drunk intoxicated due"]) + let v = native_list_append(v, ["boillant", "adj", "boillant", "", "boillante", "", "boiling very hot"]) + let v = native_list_append(v, ["haineus", "adj", "haineus", "", "haineuse", "", "hateful characterized by"]) + let v = native_list_append(v, ["esperitable", "adj", "esperitable", "", "", "", "spiritual relating to"]) + let v = native_list_append(v, ["geune", "adj", "geune", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aparent", "adj", "aparent", "", "aparente", "", "apparent obvious clear"]) + let v = native_list_append(v, ["esperitel", "adj", "esperitel", "", "esperitele", "", "spiritual"]) + let v = native_list_append(v, ["flotant", "adj", "flotant", "", "flotante", "", "floating that floats"]) + let v = native_list_append(v, ["fedeil", "adj", "fedeil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nuveles", "adj", "nuveles", "", "", "", "oblique/nominative feminine plural"]) + let v = native_list_append(v, ["nuvel", "adj", "nuvel", "", "nuvele", "", "alternative form of"]) + let v = native_list_append(v, ["freit", "adj", "freit", "", "freide", "", "alternative form of"]) + let v = native_list_append(v, ["cumun", "adj", "cumun", "", "cumune", "", "common belong to"]) + let v = native_list_append(v, ["tenebrus", "adj", "tenebrus", "", "tenebruse", "", "dark gloomy obscure"]) + let v = native_list_append(v, ["desculuret", "adj", "desculuret", "", "", "", "discolored off-color"]) + let v = native_list_append(v, ["demaine", "adj", "demaine", "", "", "", "seignorial lordly"]) + let v = native_list_append(v, ["icest", "adj", "icest", "", "iceste", "", "this the one"]) + let v = native_list_append(v, ["icel", "adj", "icel", "", "icele", "", "this the one"]) + let v = native_list_append(v, ["fieble", "adj", "fieble", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chevalerus", "adj", "chevalerus", "", "chevaleruse", "", "chivalrous relating to"]) + let v = native_list_append(v, ["sedme", "adj", "sedme", "", "", "", "seventh ordinal adjective"]) + let v = native_list_append(v, ["oidme", "adj", "oidme", "", "", "", "eighth ordinal adjective"]) + let v = native_list_append(v, ["noefme", "adj", "noefme", "", "", "", "ninth ordinal adjective"]) + let v = native_list_append(v, ["graisle", "adj", "graisle", "", "graisles", "", "slim"]) + let v = native_list_append(v, ["joios", "adj", "joios", "", "joiose", "", "alternative form of"]) + let v = native_list_append(v, ["orrible", "adj", "orrible", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poissant", "adj", "poissant", "", "poissante", "", "alternative form of"]) + let v = native_list_append(v, ["flamenc", "adj", "flamenc", "", "", "", "Flemish"]) + let v = native_list_append(v, ["ainznez", "adj", "ainznez", "", "", "", "firstborn"]) + let v = native_list_append(v, ["masle", "adj", "masle", "", "masles", "", "male"]) + let v = native_list_append(v, ["mieudre", "adj", "mieudre", "", "", "", "subject singular of"]) + let v = native_list_append(v, ["mieudres", "adj", "mieudres", "", "", "", "masculine/feminine nominative plural"]) + let v = native_list_append(v, ["grigois", "adj", "grigois", "", "grigoise", "", "Greek"]) + let v = native_list_append(v, ["sené", "adj", "sené", "", "senee", "", "wise sage"]) + let v = native_list_append(v, ["aisné", "adj", "aisné", "", "aisnee", "", "eldest"]) + let v = native_list_append(v, ["jovenor", "adj", "jovenor", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["primerain", "adj", "primerain", "", "primeraine", "", "first"]) + let v = native_list_append(v, ["plenteif", "adj", "plenteif", "", "pleinteive", "", "plentiful bountiful"]) + let v = native_list_append(v, ["asseur", "adj", "asseur", "", "asseure", "", "sure certain"]) + let v = native_list_append(v, ["entalenté", "adj", "entalenté", "", "entalentee", "", "covetous desirous"]) + let v = native_list_append(v, ["vertuos", "adj", "vertuos", "", "vertuose", "", "virtuous"]) + let v = native_list_append(v, ["paien", "adj", "paien", "", "paiene", "", "pagan heathen"]) + let v = native_list_append(v, ["blance", "adj", "blance", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huntus", "adj", "huntus", "", "huntuse", "", "shameful causing shame"]) + let v = native_list_append(v, ["sanglente", "adj", "sanglente", "", "", "", "nominative/oblique feminine singular"]) + let v = native_list_append(v, ["joneor", "adj", "joneor", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["mendios", "adj", "mendios", "", "mendiose", "", "lying tending to"]) + let v = native_list_append(v, ["feodal", "adj", "feodal", "", "feodale", "", "feudal"]) + let v = native_list_append(v, ["femele", "adj", "femele", "", "femeles", "", "female"]) + let v = native_list_append(v, ["medicinable", "adj", "medicinable", "", "", "", "medicinal that functions"]) + let v = native_list_append(v, ["freis", "adj", "freis", "", "freische", "", "fresh new"]) + let v = native_list_append(v, ["tenaunt", "adj", "tenaunt", "", "tenaunte", "", "alternative form of"]) + let v = native_list_append(v, ["erraunt", "adj", "erraunt", "", "erraunte", "", "alternative form of"]) + let v = native_list_append(v, ["rampaunt", "adj", "rampaunt", "", "rampaunte", "", "alternative form of"]) + let v = native_list_append(v, ["forein", "adj", "forein", "", "foreine", "", "alternative form of"]) + let v = native_list_append(v, ["sengle", "adj", "sengle", "", "", "", "single only one"]) + let v = native_list_append(v, ["gaugeable", "adj", "gaugeable", "", "", "", "capable of being"]) + let v = native_list_append(v, ["corus", "adj", "corus", "", "coruse", "", "angry"]) + let v = native_list_append(v, ["virgene", "adj", "virgene", "", "", "", "virgin not having"]) + let v = native_list_append(v, ["vermel", "adj", "vermel", "", "vermele", "", "alternative form of"]) + let v = native_list_append(v, ["jovene", "adj", "jovene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["droiturier", "adj", "droiturier", "", "droituriere", "", "just rightful of"]) + let v = native_list_append(v, ["goiant", "adj", "goiant", "", "goiante", "", "alternative form of"]) + let v = native_list_append(v, ["cuivert", "adj", "cuivert", "", "cuiverte", "", "poor wretched miserable"]) + let v = native_list_append(v, ["senestrier", "adj", "senestrier", "", "senestriere", "", "left on the"]) + let v = native_list_append(v, ["jantil", "adj", "jantil", "", "jantixs", "", "alternative form of"]) + let v = native_list_append(v, ["ensainte", "adj", "ensainte", "", "", "", "pregnant"]) + let v = native_list_append(v, ["roit", "adj", "roit", "", "roide", "", "hard resistant to"]) + let v = native_list_append(v, ["moien", "adj", "moien", "", "moiene", "", "middle central"]) + let v = native_list_append(v, ["hereditaire", "adj", "hereditaire", "", "", "", "hereditary that is"]) + let v = native_list_append(v, ["esploitable", "adj", "esploitable", "", "", "", "useful profitable"]) + let v = native_list_append(v, ["avantageus", "adj", "avantageus", "", "avantageuse", "", "advantageous which bring"]) + let v = native_list_append(v, ["coverte de baron", "adj", "coverte de baron", "", "", "", "married of a"]) + let v = native_list_append(v, ["ignominieux", "adj", "ignominieux", "", "ignominieuse", "", "ignominious"]) + let v = native_list_append(v, ["muable", "adj", "muable", "", "", "", "changeable tending to"]) + let v = native_list_append(v, ["jeun", "adj", "jeun", "", "jeüne", "", "fasting"]) + let v = native_list_append(v, ["ombrage", "adj", "ombrage", "", "", "", "shady"]) + let v = native_list_append(v, ["voiable", "adj", "voiable", "", "voiables", "", "visible that one"]) + let v = native_list_append(v, ["veniel", "adj", "veniel", "", "veniele", "", "alternative form of"]) + let v = native_list_append(v, ["supernel", "adj", "supernel", "", "supernele", "", "supernal relating to"]) + let v = native_list_append(v, ["saumastre", "adj", "saumastre", "", "saumastres", "", "salty brackish"]) + let v = native_list_append(v, ["turquois", "adj", "turquois", "", "turquoise", "", "Turkish"]) + let v = native_list_append(v, ["parfont", "adj", "parfont", "", "parfonde", "", "alternative form of"]) + let v = native_list_append(v, ["arismetique", "adj", "arismetique", "", "", "", "arithmetic arithmetical"]) + let v = native_list_append(v, ["ravineus", "adj", "ravineus", "", "ravineuse", "", "alternative form of"]) + let v = native_list_append(v, ["ravinos", "adj", "ravinos", "", "ravinose", "", "fast quick speedy"]) + let v = native_list_append(v, ["dolerous", "adj", "dolerous", "", "dolerouse", "", "painful"]) + let v = native_list_append(v, ["mistique", "adj", "mistique", "", "", "", "mysterious mystical"]) + let v = native_list_append(v, ["jointif", "adj", "jointif", "", "jointive", "", "functioning as a"]) + let v = native_list_append(v, ["bouteret", "adj", "bouteret", "", "", "", "support supporting that"]) + let v = native_list_append(v, ["grisel", "adj", "grisel", "", "grisele", "", "grayish somewhat gray"]) + let v = native_list_append(v, ["frait", "adj", "frait", "", "fraide", "", "alternative form of"]) + let v = native_list_append(v, ["forsené", "adj", "forsené", "", "forsenee", "", "maddened enraged especially"]) + let v = native_list_append(v, ["flaistre", "adj", "flaistre", "", "", "", "withered"]) + let v = native_list_append(v, ["sarrazin", "adj", "sarrazin", "", "sarrazine", "", "Saracen"]) + let v = native_list_append(v, ["faroche", "adj", "faroche", "", "faroches", "", "untamed wild of"]) + let v = native_list_append(v, ["desplaisant", "adj", "desplaisant", "", "desplaisante", "", "unpleasant disagreeable"]) + let v = native_list_append(v, ["plurel", "adj", "plurel", "", "plurele", "", "plural"]) + let v = native_list_append(v, ["singuler", "adj", "singuler", "", "singulere", "", "singular"]) + let v = native_list_append(v, ["conoissant", "adj", "conoissant", "", "conoissante", "", "knowing having knowledge"]) + let v = native_list_append(v, ["joieuse", "adj", "joieuse", "", "", "", "inflection of joieus"]) + let v = native_list_append(v, ["joieuses", "adj", "joieuses", "", "", "", "inflection of joieus"]) + let v = native_list_append(v, ["calt", "adj", "calt", "", "calde", "", "alternative form of"]) + let v = native_list_append(v, ["avogle", "adj", "avogle", "", "avogles", "", "blind"]) + let v = native_list_append(v, ["semable", "adj", "semable", "", "", "", "sowable of land"]) + let v = native_list_append(v, ["verdoiant", "adj", "verdoiant", "", "verdoiante", "", "verdant green"]) + let v = native_list_append(v, ["avantdit", "adj", "avantdit", "", "avantdite", "", "aforementioned"]) + let v = native_list_append(v, ["avandit", "adj", "avandit", "", "avandite", "", "alternative form of"]) + let v = native_list_append(v, ["aerien", "adj", "aerien", "", "aeriene", "", "air attributively made"]) + let v = native_list_append(v, ["cotidien", "adj", "cotidien", "", "cotidiene", "", "alternative form of"]) + let v = native_list_append(v, ["roynous", "adj", "roynous", "", "roynouse", "", "scabby mangy"]) + let v = native_list_append(v, ["enuiieus", "adj", "enuiieus", "", "enuiieuse", "", "bothersome tiresome"]) + let v = native_list_append(v, ["poestif", "adj", "poestif", "", "poestive", "", "powerful mighty"]) + let v = native_list_append(v, ["bauçant", "adj", "bauçant", "", "bauçante", "", "piebald pied"]) + let v = native_list_append(v, ["acointable", "adj", "acointable", "", "", "", "pleasant likable easy"]) + let v = native_list_append(v, ["euré", "adj", "euré", "", "euree", "", "happy"]) + let v = native_list_append(v, ["cinquisme", "adj", "cinquisme", "", "", "", "fifth"]) + let v = native_list_append(v, ["tierz", "adj", "tierz", "", "tierce", "", "alternative form of"]) + let v = native_list_append(v, ["pansif", "adj", "pansif", "", "pansive", "", "alternative form of"]) + let v = native_list_append(v, ["omecide", "adj", "omecide", "", "", "", "killer that kills"]) + let v = native_list_append(v, ["chevaleresce", "adj", "chevaleresce", "", "", "", "chivalrous apt for"]) + let v = native_list_append(v, ["contre val", "adj", "contre val", "", "", "", "riverside adjacent to"]) + let v = native_list_append(v, ["reguler", "adj", "reguler", "", "regulere", "", "conforming to Christian"]) + let v = native_list_append(v, ["delicius", "adj", "delicius", "", "deliciuse", "", "alternative form of"]) + let v = native_list_append(v, ["confés", "adj", "confés", "", "confesse", "", "confessed having confessed"]) + let v = native_list_append(v, ["plenier", "adj", "plenier", "", "pleniere", "", "whole entire"]) + let v = native_list_append(v, ["tiois", "adj", "tiois", "", "tioise", "", "Germanic Dutch"]) + let v = native_list_append(v, ["juevre", "adj", "juevre", "", "", "", "young"]) + let v = native_list_append(v, ["arrabi", "adj", "arrabi", "", "", "", "Arabian"]) + let v = native_list_append(v, ["arrabien", "adj", "arrabien", "", "", "", "Arabian"]) + let v = native_list_append(v, ["arabik", "adj", "arabik", "", "arabike", "", "Arabic Arab"]) + let v = native_list_append(v, ["arrabiois", "adj", "arrabiois", "", "arrabioise", "", "Arabian"]) + let v = native_list_append(v, ["familleus", "adj", "familleus", "", "familleuse", "", "famished starving very"]) + let v = native_list_append(v, ["esgeuné", "adj", "esgeuné", "", "esgeunee", "", "famished starving very"]) + let v = native_list_append(v, ["losengier", "adj", "losengier", "", "losengiere", "", "sycophant obsequious"]) + let v = native_list_append(v, ["empirial", "adj", "empirial", "", "empiriale", "", "imperial of or"]) + let v = native_list_append(v, ["foillu", "adj", "foillu", "", "foillue", "", "leafy having or"]) + let v = native_list_append(v, ["ancestrel", "adj", "ancestrel", "", "ancestrele", "", "ancestral relating to"]) + let v = native_list_append(v, ["baé", "adj", "baé", "", "baee", "", "open wide-open"]) + let v = native_list_append(v, ["delicatif", "adj", "delicatif", "", "delicative", "", "delicate fragile tending"]) + let v = native_list_append(v, ["vertible", "adj", "vertible", "", "", "", "changeable able to"]) + let v = native_list_append(v, ["grevain", "adj", "grevain", "", "grevaine", "", "dangerous perilous"]) + let v = native_list_append(v, ["enarmé", "adj", "enarmé", "", "enarmee", "", "of a shield"]) + let v = native_list_append(v, ["marbrin", "adj", "marbrin", "", "marbrine", "", "marble made of"]) + let v = native_list_append(v, ["seüre", "adj", "seüre", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["espoantable", "adj", "espoantable", "", "", "", "terrifying"]) + let v = native_list_append(v, ["larc", "adj", "larc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enterin", "adj", "enterin", "", "enterine", "", "whole complete entire"]) + let v = native_list_append(v, ["frarin", "adj", "frarin", "", "frarine", "", "miserable wretched"]) + let v = native_list_append(v, ["trestot", "adj", "trestot", "", "trestote", "", "all every"]) + let v = native_list_append(v, ["deputaire", "adj", "deputaire", "", "", "", "wretched awful terrible"]) + let v = native_list_append(v, ["enferm", "adj", "enferm", "", "enferme", "", "infirm"]) + let v = native_list_append(v, ["esfronté", "adj", "esfronté", "", "esfrontee", "", "shameless"]) + let v = native_list_append(v, ["christian", "adj", "christian", "", "christiane", "", "alternative form of"]) + let v = native_list_append(v, ["meon", "adj", "meon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["precius", "adj", "precius", "", "preciuse", "", "precious of great"]) + let v = native_list_append(v, ["spacios", "adj", "spacios", "", "spaciose", "", "vast large great"]) + let v = native_list_append(v, ["rogre", "adj", "rogre", "", "", "", "aggressive"]) + let v = native_list_append(v, ["espanois", "adj", "espanois", "", "espanoise", "", "Spanish"]) + let v = native_list_append(v, ["innaturel", "adj", "innaturel", "", "innaturele", "", "unnatural"]) + let v = native_list_append(v, ["prochein suant", "adj", "prochein suant", "", "", "", "following next after"]) + let v = native_list_append(v, ["estreint", "adj", "estreint", "", "estreinte", "", "constrained kept within"]) + let v = native_list_append(v, ["causonique", "adj", "causonique", "", "", "", "of or relating"]) + let v = native_list_append(v, ["diuretique", "adj", "diuretique", "", "", "", "diuretic causing the"]) + let v = native_list_append(v, ["putrefactif", "adj", "putrefactif", "", "putrefactive", "", "that causes infection"]) + let v = native_list_append(v, ["quartaine", "adj", "quartaine", "", "", "", "only used in"]) + let v = native_list_append(v, ["melancolique", "adj", "melancolique", "", "", "", "of or relating"]) + let v = native_list_append(v, ["ingrossatif", "adj", "ingrossatif", "", "ingrossative", "", "that causes weight"]) + let v = native_list_append(v, ["evacuatif", "adj", "evacuatif", "", "evacuative", "", "laxative"]) + let v = native_list_append(v, ["opilatif", "adj", "opilatif", "", "opilative", "", "that causes blockage"]) + let v = native_list_append(v, ["champestre", "adj", "champestre", "", "", "", "rural of or"]) + let v = native_list_append(v, ["seche", "adj", "seche", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["colerique", "adj", "colerique", "", "", "", "bilious relating to"]) + let v = native_list_append(v, ["cotidienne", "adj", "cotidienne", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["douziesme", "adj", "douziesme", "", "", "", "twelfth 12th"]) + let v = native_list_append(v, ["pestilencieux", "adj", "pestilencieux", "", "pestilencieuse", "", "pestilent"]) + let v = native_list_append(v, ["fleumatique", "adj", "fleumatique", "", "", "", "phlegmatic relating to"]) + let v = native_list_append(v, ["aduste", "adj", "aduste", "", "", "", "heated warmed"]) + let v = native_list_append(v, ["peregrin", "adj", "peregrin", "", "peregrine", "", "alternative form of"]) + let v = native_list_append(v, ["meien", "adj", "meien", "", "meiene", "", "alternative form of"]) + let v = native_list_append(v, ["dubitous", "adj", "dubitous", "", "dubitouse", "", "scared"]) + let v = native_list_append(v, ["vigrus", "adj", "vigrus", "", "vigruse", "", "strong hardy"]) + let v = native_list_append(v, ["arestable", "adj", "arestable", "", "", "", "stoppable capable of"]) + let v = native_list_append(v, ["impersonel", "adj", "impersonel", "", "impersonele", "", "impersonal of a"]) + let v = native_list_append(v, ["continueus", "adj", "continueus", "", "continueuse", "", "continuous without pauses"]) + let v = native_list_append(v, ["extrinseque", "adj", "extrinseque", "", "", "", "external"]) + let v = native_list_append(v, ["intrinseque", "adj", "intrinseque", "", "", "", "internal"]) + let v = native_list_append(v, ["expulsif", "adj", "expulsif", "", "expulsive", "", "expulsive that expels"]) + let v = native_list_append(v, ["lenitif", "adj", "lenitif", "", "lenitive", "", "calming soothing"]) + let v = native_list_append(v, ["espirital", "adj", "espirital", "", "espiritale", "", "spiritual"]) + let v = native_list_append(v, ["celestre", "adj", "celestre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luxurius", "adj", "luxurius", "", "luxuriuse", "", "lustful characterized by"]) + let v = native_list_append(v, ["seculer", "adj", "seculer", "", "seculere", "", "secular non-religious"]) + let v = native_list_append(v, ["fuillu", "adj", "fuillu", "", "fuillue", "", "alternative form of"]) + let v = native_list_append(v, ["petitet", "adj", "petitet", "", "petitete", "", "very small"]) + let v = native_list_append(v, ["couleis", "adj", "couleis", "", "couleice", "", "alternative form of"]) + let v = native_list_append(v, ["gayf", "adj", "gayf", "", "gayve", "", "lost and unclaimed"]) + let v = native_list_append(v, ["walcrant", "adj", "walcrant", "", "walcrante", "", "wandering roaming"]) + let v = native_list_append(v, ["torcious", "adj", "torcious", "", "torciouse", "", "wrongful"]) + let v = native_list_append(v, ["tané", "adj", "tané", "", "tanee", "", "tan of the"]) + let v = native_list_append(v, ["soleyn", "adj", "soleyn", "", "soleyne", "", "solitary alone"]) + let v = native_list_append(v, ["sodein", "adj", "sodein", "", "sodeine", "", "sudden quickly with"]) + let v = native_list_append(v, ["tisique", "adj", "tisique", "", "", "", "phthisic"]) + let v = native_list_append(v, ["thesique", "adj", "thesique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thisique", "adj", "thisique", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tysike", "adj", "tysike", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tisik", "adj", "tisik", "", "tisike", "", "alternative form of"]) + let v = native_list_append(v, ["reseant", "adj", "reseant", "", "reseante", "", "resident residing"]) + let v = native_list_append(v, ["esmeré", "adj", "esmeré", "", "esmeree", "", "pure purified"]) + let v = native_list_append(v, ["cointe", "adj", "cointe", "", "", "", "clever intelligent"]) + let v = native_list_append(v, ["propicius", "adj", "propicius", "", "propiciuse", "", "merciful"]) + let v = native_list_append(v, ["mesaisie", "adj", "mesaisie", "", "", "", "inflection of mesaisi"]) + let v = native_list_append(v, ["ascun", "adj", "ascun", "", "ascune", "", "alternative form of"]) + let v = native_list_append(v, ["coynte", "adj", "coynte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["feloun", "adj", "feloun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fesable", "adj", "fesable", "", "", "", "feasible doable"]) + let v = native_list_append(v, ["mesnal", "adj", "mesnal", "", "mesnale", "", "household attributive domestic"]) + let v = native_list_append(v, ["apartenant", "adj", "apartenant", "", "apartenante", "", "belonging to"]) + let v = native_list_append(v, ["bochu", "adj", "bochu", "", "bochue", "", "alternative form of"]) + let v = native_list_append(v, ["negun", "adj", "negun", "", "negune", "", "none not any"]) + let v = native_list_append(v, ["auquant", "adj", "auquant", "", "auquante", "", "several many"]) + let v = native_list_append(v, ["autretel", "adj", "autretel", "", "", "", "same the same"]) + let v = native_list_append(v, ["ploreus", "adj", "ploreus", "", "ploreuse", "", "tearful in tears"]) + let v = native_list_append(v, ["soef", "adj", "soef", "", "soeve", "", "soft not harsh"]) + let v = native_list_append(v, ["alquant", "adj", "alquant", "", "alquante", "", "alternative form of"]) + let v = native_list_append(v, ["grandisme", "adj", "grandisme", "", "", "", "very big very"]) + let v = native_list_append(v, ["parv", "adj", "parv", "", "", "", "small"]) + let v = native_list_append(v, ["francor", "adj", "francor", "", "", "", "French"]) + let v = native_list_append(v, ["paienor", "adj", "paienor", "", "", "", "pagan heathen attributively"]) + let v = native_list_append(v, ["ancienor", "adj", "ancienor", "", "", "", "of the ancients"]) + let v = native_list_append(v, ["crestienor", "adj", "crestienor", "", "", "", "of the Christians"]) + let v = native_list_append(v, ["pagien", "adj", "pagien", "", "pagiene", "", "alternative form of"]) + let v = native_list_append(v, ["bellezour", "adj", "bellezour", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["corroptios", "adj", "corroptios", "", "corroptiose", "", "enraged furious"]) + let v = native_list_append(v, ["saintisme", "adj", "saintisme", "", "", "", "very saintly"]) + let v = native_list_append(v, ["pechable", "adj", "pechable", "", "", "", "sinful sinner attributively"]) + let v = native_list_append(v, ["parmenable", "adj", "parmenable", "", "", "", "permanent eternal perpetual"]) + let v = native_list_append(v, ["alçor", "adj", "alçor", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["coroços", "adj", "coroços", "", "coroçose", "", "angry furious"]) + let v = native_list_append(v, ["meïsme", "adj", "meïsme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esgeüné", "adj", "esgeüné", "", "esgeünee", "", "alternative form of"]) + let v = native_list_append(v, ["obeïssant", "adj", "obeïssant", "", "obeïssante", "", "alternative form of"]) + let v = native_list_append(v, ["mescreable", "adj", "mescreable", "", "", "", "disbelieving hence non-Christian"]) + let v = native_list_append(v, ["celestien", "adj", "celestien", "", "celestiene", "", "celestial heavenly"]) + let v = native_list_append(v, ["desvé", "adj", "desvé", "", "desvee", "", "insane mad"]) + let v = native_list_append(v, ["seiseme", "adj", "seiseme", "", "", "", "sixth"]) + let v = native_list_append(v, ["infernel", "adj", "infernel", "", "infernele", "", "alternative form of"]) + let v = native_list_append(v, ["gensor", "adj", "gensor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["angoissos", "adj", "angoissos", "", "angoissose", "", "alternative form of"]) + let v = native_list_append(v, ["gn̈t", "adj", "gn̈t", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["joiable", "adj", "joiable", "", "", "", "joyous"]) + let v = native_list_append(v, ["ahuge", "adj", "ahuge", "", "", "", "huge very large"]) + let v = native_list_append(v, ["haltein", "adj", "haltein", "", "halteine", "", "high"]) + let v = native_list_append(v, ["malveis", "adj", "malveis", "", "malveise", "", "alternative form of"]) + let v = native_list_append(v, ["derein", "adj", "derein", "", "dereine", "", "last final"]) + let v = native_list_append(v, ["amaladi", "adj", "amaladi", "", "amaladie", "", "ill sick"]) + let v = native_list_append(v, ["walois", "adj", "walois", "", "waloise", "", "alternative form of"]) + let v = native_list_append(v, ["sauf et sain", "adj", "sauf et sain", "", "sauve et saine", "", "safe and sound"]) + let v = native_list_append(v, ["eschekeré", "adj", "eschekeré", "", "eschekeree", "", "checkered having an"]) + let v = native_list_append(v, ["bricun", "adj", "bricun", "", "brice", "", "mad insane"]) + let v = native_list_append(v, ["alignié", "adj", "alignié", "", "aligniee", "", "slim slender"]) + let v = native_list_append(v, ["enbrunc", "adj", "enbrunc", "", "", "", "lowered low"]) + let v = native_list_append(v, ["mesaisié", "adj", "mesaisié", "", "mesaisiee", "", "ill sick"]) + let v = native_list_append(v, ["mesaisi", "adj", "mesaisi", "", "mesaisie", "", "ill sick hurt"]) + let v = native_list_append(v, ["plusor", "adj", "plusor", "", "", "", "nominative of plusors"]) + let v = native_list_append(v, ["devot", "adj", "devot", "", "devote", "", "devout"]) + let v = native_list_append(v, ["megre", "adj", "megre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["einsnes", "adj", "einsnes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anguissus", "adj", "anguissus", "", "anguissuse", "", "alternative form of"]) + let v = native_list_append(v, ["angoissous", "adj", "angoissous", "", "angoissouse", "", "alternative form of"]) + let v = native_list_append(v, ["angoissus", "adj", "angoissus", "", "angoissuse", "", "alternative form of"]) + let v = native_list_append(v, ["ruiste", "adj", "ruiste", "", "", "", "vigorous violent terrible"]) + let v = native_list_append(v, ["pullent", "adj", "pullent", "", "pullente", "", "stinking foul"]) + let v = native_list_append(v, ["gençor", "adj", "gençor", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["bricon", "adj", "bricon", "", "brice", "", "mad insane"]) + let v = native_list_append(v, ["demoniaque", "adj", "demoniaque", "", "", "", "demonic"]) + let v = native_list_append(v, ["estre eisant de", "adj", "estre eisant de", "", "", "", "being in a"]) + let v = native_list_append(v, ["bloie", "adj", "bloie", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["sarragocien", "adj", "sarragocien", "", "sarragociene", "", "Saragossan of or"]) + let v = native_list_append(v, ["sarragoçois", "adj", "sarragoçois", "", "sarragoçoise", "", "Saragossan of or"]) + let v = native_list_append(v, ["sarragossan", "adj", "sarragossan", "", "sarragossane", "", "Saragossan of or"]) + let v = native_list_append(v, ["pescherez", "adj", "pescherez", "", "pescherece", "", "fishing"]) + let v = native_list_append(v, ["chevalerez", "adj", "chevalerez", "", "chevalerece", "", "made for a"]) + let v = native_list_append(v, ["chevrerez", "adj", "chevrerez", "", "*chevrerece", "", "one who feeds"]) + let v = native_list_append(v, ["vacherez", "adj", "vacherez", "", "vacherece", "", "where the cows"]) + let v = native_list_append(v, ["porcherez", "adj", "porcherez", "", "porcherece", "", "for containing pigs"]) + let v = native_list_append(v, ["asnerez", "adj", "asnerez", "", "*asnerece", "", "donkey"]) + let v = native_list_append(v, ["coleiz", "adj", "coleiz", "", "colëice", "", "sliding fluid"]) + let v = native_list_append(v, ["leveiz", "adj", "leveiz", "", "levëice", "", "liftable designed to"]) + let v = native_list_append(v, ["torneiz", "adj", "torneiz", "", "*tornëice", "", "revolving turning"]) + let v = native_list_append(v, ["tailleiz", "adj", "tailleiz", "", "taillëice", "", "cut out framed"]) + let v = native_list_append(v, ["ploieiz", "adj", "ploieiz", "", "ploieize", "", "flexible"]) + let v = native_list_append(v, ["coillu", "adj", "coillu", "", "coillue", "", "uncastrated"]) + let v = native_list_append(v, ["chiprois", "adj", "chiprois", "", "chiproise", "", "Cypriot"]) + let v = native_list_append(v, ["peculiaire", "adj", "peculiaire", "", "", "", "peculiar"]) + let v = native_list_append(v, ["peoros", "adj", "peoros", "", "peorose", "", "fearful"]) + let v = native_list_append(v, ["commodieux", "adj", "commodieux", "", "commodieuxe", "", "advantageous convenient profitable"]) + let v = native_list_append(v, ["travaillos", "adj", "travaillos", "", "travaillose", "", "tiring painful exhausting"]) + let v = native_list_append(v, ["travaillous", "adj", "travaillous", "", "travaillouse", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["luisoire", "adj", "luisoire", "", "", "", "in heat"]) + let v = native_list_append(v, ["anciien", "adj", "anciien", "", "anciiene", "", "former ancient"]) + let v = native_list_append(v, ["oevé", "adj", "oevé", "", "oevee", "", "swollen fat"]) + let v = native_list_append(v, ["vintisme", "adj", "vintisme", "", "", "", "twentieth"]) + let v = native_list_append(v, ["malbailli", "adj", "malbailli", "", "", "", "mistreated."]) + let v = native_list_append(v, ["maubailli", "adj", "maubailli", "", "", "", "mistreated."]) + let v = native_list_append(v, ["altaigne", "adj", "altaigne", "", "altaignee", "", "haughty supercilious"]) + let v = native_list_append(v, ["altaignee", "adj", "altaignee", "", "", "", "oblique/nominative feminine singular"]) + let v = native_list_append(v, ["amesnable", "adj", "amesnable", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["פטיט", "adj", "פטיט", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["noiret", "adj", "noiret", "", "noirete", "", "diminutive of noir"]) + let v = native_list_append(v, ["noirete", "adj", "noirete", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["a-", "other", "a-", "", "", "", "indicating movement towards"]) + let v = native_list_append(v, ["el", "other", "el", "", "", "", "contraction of en"]) + let v = native_list_append(v, ["as", "other", "as", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["non", "other", "non", "", "", "", "no"]) + let v = native_list_append(v, ["al", "other", "al", "", "", "", "contraction of a"]) + let v = native_list_append(v, ["del", "other", "del", "", "", "", "contraction of de"]) + let v = native_list_append(v, ["-able", "other", "-able", "", "", "", "worthy of deserving"]) + let v = native_list_append(v, ["oil", "other", "oil", "", "", "", "yes"]) + let v = native_list_append(v, ["set", "other", "set", "", "", "", "seven"]) + let v = native_list_append(v, ["du", "other", "du", "", "", "", "contraction of de"]) + let v = native_list_append(v, ["u", "other", "u", "", "", "", "u letter"]) + let v = native_list_append(v, ["las", "other", "las", "", "", "", "alas"]) + let v = native_list_append(v, ["un", "other", "un", "", "", "", "one"]) + let v = native_list_append(v, ["trois", "other", "trois", "", "", "", "three"]) + let v = native_list_append(v, ["quatre", "other", "quatre", "", "", "", "four"]) + let v = native_list_append(v, ["cinq", "other", "cinq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onze", "other", "onze", "", "", "", "eleven"]) + let v = native_list_append(v, ["quatorze", "other", "quatorze", "", "", "", "fourteen"]) + let v = native_list_append(v, ["quarante", "other", "quarante", "", "", "", "forty"]) + let v = native_list_append(v, ["mile", "other", "mile", "", "", "", "one thousand"]) + let v = native_list_append(v, ["au", "other", "au", "", "", "", "contraction of a"]) + let v = native_list_append(v, ["trente", "other", "trente", "", "", "", "thirty"]) + let v = native_list_append(v, ["ax", "other", "ax", "", "", "", "Contraction of a"]) + let v = native_list_append(v, ["cent", "other", "cent", "", "", "", "one hundred"]) + let v = native_list_append(v, ["dis", "other", "dis", "", "", "", "ten"]) + let v = native_list_append(v, ["wit", "other", "wit", "", "", "", "eight"]) + let v = native_list_append(v, ["nonante", "other", "nonante", "", "", "", "ninety"]) + let v = native_list_append(v, ["gel", "other", "gel", "", "", "", "Contraction of ge"]) + let v = native_list_append(v, ["nel", "other", "nel", "", "", "", "Contraction of ne"]) + let v = native_list_append(v, ["-er", "other", "-er", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ie", "other", "-ie", "", "", "", "indicates a feminine"]) + let v = native_list_append(v, ["-ous", "other", "-ous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-é", "other", "-é", "", "", "", "used to form"]) + let v = native_list_append(v, ["re-", "other", "re-", "", "", "", "re- again once"]) + let v = native_list_append(v, ["an-", "other", "an-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aus", "other", "aus", "", "", "", "contraction of a"]) + let v = native_list_append(v, ["de-", "other", "de-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["en-", "other", "en-", "", "", "", "en- in into"]) + let v = native_list_append(v, ["-ette", "other", "-ette", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-or", "other", "-or", "", "", "", "-er suffix used"]) + let v = native_list_append(v, ["-ible", "other", "-ible", "", "", "", "-ible variant of"]) + let v = native_list_append(v, ["-al", "other", "-al", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["-s", "other", "-s", "", "", "", "indicates a nominative"]) + let v = native_list_append(v, ["-u", "other", "-u", "", "", "", "suffixed used to"]) + let v = native_list_append(v, ["deus", "other", "deus", "", "", "", "two"]) + let v = native_list_append(v, ["mil", "other", "mil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uit", "other", "uit", "", "", "", "eight"]) + let v = native_list_append(v, ["cinquante", "other", "cinquante", "", "", "", "fifty"]) + let v = native_list_append(v, ["-e", "other", "-e", "", "", "", "used to form"]) + let v = native_list_append(v, ["mal-", "other", "mal-", "", "", "", "bad badly"]) + let v = native_list_append(v, ["-os", "other", "-os", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-us", "other", "-us", "", "", "", "-ous used for"]) + let v = native_list_append(v, ["aux", "other", "aux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ier", "other", "-ier", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["-erie", "other", "-erie", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ment", "other", "-ment", "", "", "", "Attaches to an"]) + let v = native_list_append(v, ["-ise", "other", "-ise", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ique", "other", "-ique", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ir", "other", "-ir", "", "", "", "used to form"]) + let v = native_list_append(v, ["cinc", "other", "cinc", "", "", "", "five"]) + let v = native_list_append(v, ["-et", "other", "-et", "", "", "", "Used to form"]) + let v = native_list_append(v, ["doze", "other", "doze", "", "", "", "twelve"]) + let v = native_list_append(v, ["vint", "other", "vint", "", "", "", "twenty"]) + let v = native_list_append(v, ["als", "other", "als", "", "", "", "contraction of a"]) + let v = native_list_append(v, ["hu", "other", "hu", "", "", "", "a shouting noise"]) + let v = native_list_append(v, ["-ation", "other", "-ation", "", "", "", "-ation"]) + let v = native_list_append(v, ["dui", "other", "dui", "", "", "", "nominative of deus"]) + let v = native_list_append(v, ["troy", "other", "troy", "", "", "", "three"]) + let v = native_list_append(v, ["-z", "other", "-z", "", "", "", "Replaces -ts -sts"]) + let v = native_list_append(v, ["nes", "other", "nes", "", "", "", "contraction of ne"]) + let v = native_list_append(v, ["dou", "other", "dou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doi", "other", "doi", "", "", "", "two"]) + let v = native_list_append(v, ["sis", "other", "sis", "", "", "", "six"]) + let v = native_list_append(v, ["-age", "other", "-age", "", "", "", "forms nouns with"]) + let v = native_list_append(v, ["-ance", "other", "-ance", "", "", "", "-ance suffixed used"]) + let v = native_list_append(v, ["-ant", "other", "-ant", "", "", "", "used to form"]) + let v = native_list_append(v, ["-el", "other", "-el", "", "", "", "used to form"]) + let v = native_list_append(v, ["kel", "other", "kel", "", "", "", "contraction of ke"]) + let v = native_list_append(v, ["kil", "other", "kil", "", "", "", "Contraction of ke"]) + let v = native_list_append(v, ["jel", "other", "jel", "", "", "", "Contraction of je"]) + let v = native_list_append(v, ["-eur", "other", "-eur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lasse", "other", "lasse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["des-", "other", "des-", "", "", "", "de- dis-"]) + let v = native_list_append(v, ["-ere", "other", "-ere", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["-ois", "other", "-ois", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ure", "other", "-ure", "", "", "", "used to form"]) + let v = native_list_append(v, ["Diex aie", "other", "Diex aie", "", "", "", "God be with"]) + let v = native_list_append(v, ["sur-", "other", "sur-", "", "", "", "over on top"]) + let v = native_list_append(v, ["-ité", "other", "-ité", "", "", "", "-ity"]) + let v = native_list_append(v, ["-té", "other", "-té", "", "", "", "-ty suffix used"]) + let v = native_list_append(v, ["treis", "other", "treis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-oire", "other", "-oire", "", "", "", "indicates a tool"]) + let v = native_list_append(v, ["-eté", "other", "-eté", "", "", "", "variant of -té"]) + let v = native_list_append(v, ["-ien", "other", "-ien", "", "", "", "-ian"]) + let v = native_list_append(v, ["-if", "other", "-if", "", "", "", "-ive"]) + let v = native_list_append(v, ["Dex aie", "other", "Dex aie", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entre-", "other", "entre-", "", "", "", "inter-"]) + let v = native_list_append(v, ["oïl", "other", "oïl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ete", "other", "-ete", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["-eux", "other", "-eux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naie", "other", "naie", "", "", "", "no nay"]) + let v = native_list_append(v, ["catre", "other", "catre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-aige", "other", "-aige", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ain", "other", "-ain", "", "", "", "Forms the oblique"]) + let v = native_list_append(v, ["ã", "other", "ã", "", "", "", "The letter a"]) + let v = native_list_append(v, ["ẽ", "other", "ẽ", "", "", "", "The letter e"]) + let v = native_list_append(v, ["-eor", "other", "-eor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-erez", "other", "-erez", "", "", "", "forms adjectives and"]) + let v = native_list_append(v, ["es-", "other", "es-", "", "", "", "indicates movement away"]) + let v = native_list_append(v, ["ũ", "other", "ũ", "", "", "", "The letter u"]) + let v = native_list_append(v, ["-iau", "other", "-iau", "", "", "", "Used to form"]) + let v = native_list_append(v, ["deuz", "other", "deuz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eis", "other", "-eis", "", "", "", "used to form"]) + let v = native_list_append(v, ["nenil", "other", "nenil", "", "", "", "no used to"]) + let v = native_list_append(v, ["contre-", "other", "contre-", "", "", "", "counter- anti-"]) + let v = native_list_append(v, ["-eus", "other", "-eus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soissante", "other", "soissante", "", "", "", "sixty"]) + let v = native_list_append(v, ["setante", "other", "setante", "", "", "", "seventy"]) + let v = native_list_append(v, ["uitante", "other", "uitante", "", "", "", "eighty"]) + let v = native_list_append(v, ["oitante", "other", "oitante", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-anche", "other", "-anche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["enl", "other", "enl", "", "", "", "contraction of en"]) + let v = native_list_append(v, ["-ur", "other", "-ur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-our", "other", "-our", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jeo ne parle mie", "other", "jeo ne parle mie", "", "", "", "I dont speak"]) + let v = native_list_append(v, ["a las", "other", "a las", "", "", "", "alas"]) + let v = native_list_append(v, ["-iss-", "other", "-iss-", "", "", "", "An inchoative infix"]) + let v = native_list_append(v, ["-eour", "other", "-eour", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-mant", "other", "-mant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mes-", "other", "mes-", "", "", "", "mis- badly wrongly"]) + let v = native_list_append(v, ["-ace", "other", "-ace", "", "", "", "Suffix used to"]) + let v = native_list_append(v, ["nuef", "other", "nuef", "", "", "", "nine"]) + let v = native_list_append(v, ["qil", "other", "qil", "", "", "", "Contraction of que"]) + let v = native_list_append(v, ["milie", "other", "milie", "", "", "", "a thousand"]) + let v = native_list_append(v, ["seisante", "other", "seisante", "", "", "", "sixty"]) + let v = native_list_append(v, ["quil", "other", "quil", "", "", "", "Contraction of que"]) + let v = native_list_append(v, ["antre-", "other", "antre-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ece", "other", "-ece", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["se Dex me gart", "other", "se Dex me gart", "", "", "", "God willing if"]) + let v = native_list_append(v, ["-omes", "other", "-omes", "", "", "", "A suffix denoting"]) + let v = native_list_append(v, ["sui anglois", "other", "sui anglois", "", "", "", "I am English"]) + let v = native_list_append(v, ["sui angloise", "other", "sui angloise", "", "", "", "I am English"]) + let v = native_list_append(v, ["al sien escient", "other", "al sien escient", "", "", "", "to the best"]) + let v = native_list_append(v, ["sesante", "other", "sesante", "", "", "", "sixty"]) + let v = native_list_append(v, ["nof", "other", "nof", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eüre", "other", "-eüre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["troi", "other", "troi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quinse", "other", "quinse", "", "", "", "fifteen"]) + let v = native_list_append(v, ["qatre", "other", "qatre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-oier", "other", "-oier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-acion", "other", "-acion", "", "", "", "-ation suffix used"]) + let v = native_list_append(v, ["-art", "other", "-art", "", "", "", "used to form"]) + let v = native_list_append(v, ["hahi", "other", "hahi", "", "", "", "ha! aha!"]) + let v = native_list_append(v, ["sour-", "other", "sour-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ele", "other", "-ele", "", "", "", "diminutive suffix forming"]) + let v = native_list_append(v, ["mau-", "other", "mau-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["disnoef", "other", "disnoef", "", "", "", "nineteen"]) + let v = native_list_append(v, ["tres-", "other", "tres-", "", "", "", "trans- across traversing"]) + let v = native_list_append(v, ["-ison", "other", "-ison", "", "", "", "used to form"]) + let v = native_list_append(v, ["-eresse", "other", "-eresse", "", "", "", "used to form"]) + let v = native_list_append(v, ["se Dex me saut", "other", "se Dex me saut", "", "", "", "God protect me"]) + let v = native_list_append(v, ["en abeiance", "other", "en abeiance", "", "", "", "required"]) + let v = native_list_append(v, ["-oiier", "other", "-oiier", "", "", "", "used to form"]) + let v = native_list_append(v, ["por-", "other", "por-", "", "", "", "through"]) + let v = native_list_append(v, ["pur-", "other", "pur-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sor-", "other", "sor-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-eure", "other", "-eure", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jasoit que ce", "other", "jasoit que ce", "", "", "", "insomuch as"]) + let v = native_list_append(v, ["countre-", "other", "countre-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["q̃l", "other", "q̃l", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["ĩ", "other", "ĩ", "", "", "", "The letter i"]) + let v = native_list_append(v, ["pardeu", "other", "pardeu", "", "", "", "by God"]) + let v = native_list_append(v, ["-elet", "other", "-elet", "", "", "", "diminutive suffix"]) + let v = native_list_append(v, ["aux armes", "other", "aux armes", "", "", "", "to arms!"]) + let v = native_list_append(v, ["quet", "other", "quet", "", "", "", "contraction of que"]) + let v = native_list_append(v, ["-eax", "other", "-eax", "", "", "", "oblique plural of"]) + let v = native_list_append(v, ["◌᷒", "other", "◌᷒", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["-erece", "other", "-erece", "", "", "", "feminine counterpart of"]) + let v = native_list_append(v, ["-eiz", "other", "-eiz", "", "", "", "attaches usually but"]) + let v = native_list_append(v, ["-eice", "other", "-eice", "", "", "", "feminine counterpart to"]) + let v = native_list_append(v, ["◌̃", "other", "◌̃", "", "", "", "Written on a"]) + let v = native_list_append(v, ["a/languages M to Z", "other", "a/languages M to Z", "", "", "", "The first letter"]) + let v = native_list_append(v, ["ab", "prep", "ab", "", "", "", "with"]) + let v = native_list_append(v, ["de", "prep", "de", "", "", "", "of"]) + let v = native_list_append(v, ["en", "prep", "en", "", "", "", "in inside"]) + let v = native_list_append(v, ["ad", "prep", "ad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vers", "prep", "vers", "", "", "", "towards"]) + let v = native_list_append(v, ["es", "prep", "es", "", "", "", "in the"]) + let v = native_list_append(v, ["od", "prep", "od", "", "", "", "with"]) + let v = native_list_append(v, ["pro", "prep", "pro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["por", "prep", "por", "", "", "", "for in order"]) + let v = native_list_append(v, ["avant", "prep", "avant", "", "", "", "before"]) + let v = native_list_append(v, ["d'", "prep", "d'", "", "", "", "elided form of"]) + let v = native_list_append(v, ["sur", "prep", "sur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entre", "prep", "entre", "", "", "", "between"]) + let v = native_list_append(v, ["contre", "prep", "contre", "", "", "", "against"]) + let v = native_list_append(v, ["pres", "prep", "pres", "", "", "", "manuscript form of"]) + let v = native_list_append(v, ["devant", "prep", "devant", "", "", "", "in front of"]) + let v = native_list_append(v, ["pur", "prep", "pur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sus", "prep", "sus", "", "", "", "above on top"]) + let v = native_list_append(v, ["apres", "prep", "apres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ens", "prep", "ens", "", "", "", "in inside"]) + let v = native_list_append(v, ["sor", "prep", "sor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soz", "prep", "soz", "", "", "", "under"]) + let v = native_list_append(v, ["malgré", "prep", "malgré", "", "", "", "despite in spite"]) + let v = native_list_append(v, ["dunt", "prep", "dunt", "", "", "", "of of which"]) + let v = native_list_append(v, ["fors", "prep", "fors", "", "", "", "outside"]) + let v = native_list_append(v, ["prés", "prep", "prés", "", "", "", "near close"]) + let v = native_list_append(v, ["jusque", "prep", "jusque", "", "", "", "as far as"]) + let v = native_list_append(v, ["derriere", "prep", "derriere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emmi", "prep", "emmi", "", "", "", "amid amidst"]) + let v = native_list_append(v, ["en avant", "prep", "en avant", "", "", "", "into the future"]) + let v = native_list_append(v, ["avoec", "prep", "avoec", "", "", "", "with"]) + let v = native_list_append(v, ["cuntre", "prep", "cuntre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sanz", "prep", "sanz", "", "", "", "without"]) + let v = native_list_append(v, ["dedens", "prep", "dedens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deriere", "prep", "deriere", "", "", "", "behind"]) + let v = native_list_append(v, ["dedenz", "prep", "dedenz", "", "", "", "inside of"]) + let v = native_list_append(v, ["seur", "prep", "seur", "", "", "", "on on top"]) + let v = native_list_append(v, ["avuec", "prep", "avuec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["encontre", "prep", "encontre", "", "", "", "opposite"]) + let v = native_list_append(v, ["defors", "prep", "defors", "", "", "", "outside"]) + let v = native_list_append(v, ["suz", "prep", "suz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arire", "prep", "arire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ariere", "prep", "ariere", "", "", "", "behind"]) + let v = native_list_append(v, ["selonc", "prep", "selonc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sulunc", "prep", "sulunc", "", "", "", "according to"]) + let v = native_list_append(v, ["desous", "prep", "desous", "", "", "", "below under underneath"]) + let v = native_list_append(v, ["desus", "prep", "desus", "", "", "", "under underneath"]) + let v = native_list_append(v, ["derere", "prep", "derere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["darere", "prep", "darere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deforz", "prep", "deforz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["countre", "prep", "countre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["desos", "prep", "desos", "", "", "", "on top of"]) + let v = native_list_append(v, ["ains", "prep", "ains", "", "", "", "before"]) + let v = native_list_append(v, ["pres de", "prep", "pres de", "", "", "", "near to near"]) + let v = native_list_append(v, ["dusqu'a", "prep", "dusqu'a", "", "", "", "until"]) + let v = native_list_append(v, ["entor", "prep", "entor", "", "", "", "around surrounding"]) + let v = native_list_append(v, ["devers", "prep", "devers", "", "", "", "towards"]) + let v = native_list_append(v, ["souz", "prep", "souz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["denz", "prep", "denz", "", "", "", "in"]) + let v = native_list_append(v, ["delez", "prep", "delez", "", "", "", "next to"]) + let v = native_list_append(v, ["joste", "prep", "joste", "", "", "", "along near"]) + let v = native_list_append(v, ["ꝑ", "prep", "ꝑ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["non obstant", "prep", "non obstant", "", "", "", "notwithstanding"]) + let v = native_list_append(v, ["qn̈t", "prep", "qn̈t", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["apruef", "prep", "apruef", "", "", "", "after afterwards"]) + let v = native_list_append(v, ["ainz", "prep", "ainz", "", "", "", "before"]) + let v = native_list_append(v, ["einz", "prep", "einz", "", "", "", "within"]) + let v = native_list_append(v, ["enz", "prep", "enz", "", "", "", "in inside"]) + let v = native_list_append(v, ["tresque", "prep", "tresque", "", "", "", "up to until"]) + let v = native_list_append(v, ["felonc", "prep", "felonc", "", "", "", "misspelling of selonc"]) + let v = native_list_append(v, ["a/languages M to Z", "prep", "a/languages M to Z", "", "", "", "to"]) + let v = native_list_append(v, ["on", "pron", "on", "", "", "", "one gender-neutral third-person"]) + let v = native_list_append(v, ["te", "pron", "te", "", "", "", "you second-person singular"]) + let v = native_list_append(v, ["el", "pron", "el", "", "", "", "something else"]) + let v = native_list_append(v, ["me", "pron", "me", "", "", "", "myself first-person singular"]) + let v = native_list_append(v, ["ke", "pron", "ke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["li", "pron", "li", "", "", "", "third-person singular indirect"]) + let v = native_list_append(v, ["ti", "pron", "ti", "", "", "", "your second-person singular"]) + let v = native_list_append(v, ["ge", "pron", "ge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["se", "pron", "se", "", "", "", "himself reflexive direct"]) + let v = native_list_append(v, ["la", "pron", "la", "", "", "", "it feminine singular"]) + let v = native_list_append(v, ["ele", "pron", "ele", "", "", "", "she"]) + let v = native_list_append(v, ["je", "pron", "je", "", "", "", "I"]) + let v = native_list_append(v, ["eles", "pron", "eles", "", "", "", "they third-person plural"]) + let v = native_list_append(v, ["vos", "pron", "vos", "", "", "", "you ye second-person"]) + let v = native_list_append(v, ["nos", "pron", "nos", "", "", "", "we first-person plural"]) + let v = native_list_append(v, ["dom", "pron", "dom", "", "", "", "of whom of"]) + let v = native_list_append(v, ["nun", "pron", "nun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nous", "pron", "nous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lo", "pron", "lo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tei", "pron", "tei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["il", "pron", "il", "", "", "", "he third-person masculine"]) + let v = native_list_append(v, ["le", "pron", "le", "", "", "", "it masculine singular"]) + let v = native_list_append(v, ["vous", "pron", "vous", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moi", "pron", "moi", "", "", "", "me"]) + let v = native_list_append(v, ["tun", "pron", "tun", "", "", "", "your second-person singular"]) + let v = native_list_append(v, ["autre", "pron", "autre", "", "", "", "another"]) + let v = native_list_append(v, ["jo", "pron", "jo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poi", "pron", "poi", "", "", "", "few not many"]) + let v = native_list_append(v, ["qui", "pron", "qui", "", "", "", "who"]) + let v = native_list_append(v, ["ki", "pron", "ki", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["que", "pron", "que", "", "", "", "what who"]) + let v = native_list_append(v, ["toi", "pron", "toi", "", "", "", "you"]) + let v = native_list_append(v, ["nul", "pron", "nul", "", "", "", "nobody no one"]) + let v = native_list_append(v, ["ses", "pron", "ses", "", "", "", "his/hers/its third-person singular"]) + let v = native_list_append(v, ["tes", "pron", "tes", "", "", "", "your second-person singular"]) + let v = native_list_append(v, ["rien", "pron", "rien", "", "", "", "thing"]) + let v = native_list_append(v, ["nostro", "pron", "nostro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["celui", "pron", "celui", "", "", "", "this one that"]) + let v = native_list_append(v, ["ceo", "pron", "ceo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soi", "pron", "soi", "", "", "", "third-person singular emphatic"]) + let v = native_list_append(v, ["jou", "pron", "jou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eus", "pron", "eus", "", "", "", "them masculine plural"]) + let v = native_list_append(v, ["mei", "pron", "mei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cui", "pron", "cui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["m'", "pron", "m'", "", "", "", "prevocalic form of"]) + let v = native_list_append(v, ["nostre", "pron", "nostre", "", "", "", "our"]) + let v = native_list_append(v, ["lor", "pron", "lor", "", "", "", "to them third-person"]) + let v = native_list_append(v, ["noz", "pron", "noz", "", "", "", "our"]) + let v = native_list_append(v, ["nus", "pron", "nus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["els", "pron", "els", "", "", "", "they"]) + let v = native_list_append(v, ["lour", "pron", "lour", "", "", "", "their third-person plural"]) + let v = native_list_append(v, ["vus", "pron", "vus", "", "", "", "you second-person plural"]) + let v = native_list_append(v, ["hom", "pron", "hom", "", "", "", "one"]) + let v = native_list_append(v, ["altrui", "pron", "altrui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vostre", "pron", "vostre", "", "", "", "your plural or"]) + let v = native_list_append(v, ["persone", "pron", "persone", "", "", "", "someone an unknown"]) + let v = native_list_append(v, ["s'", "pron", "s'", "", "", "", "his her its"]) + let v = native_list_append(v, ["soun", "pron", "soun", "", "", "", "his/her/ones/its third-person singular"]) + let v = native_list_append(v, ["jeo", "pron", "jeo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chascun", "pron", "chascun", "", "", "", "each one every"]) + let v = native_list_append(v, ["autrui", "pron", "autrui", "", "", "", "others other people"]) + let v = native_list_append(v, ["plusors", "pron", "plusors", "", "", "", "many many people"]) + let v = native_list_append(v, ["cascun", "pron", "cascun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nului", "pron", "nului", "", "", "", "nobody"]) + let v = native_list_append(v, ["quanque", "pron", "quanque", "", "", "", "whoever whatever"]) + let v = native_list_append(v, ["plusurs", "pron", "plusurs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ço", "pron", "ço", "", "", "", "this"]) + let v = native_list_append(v, ["cestui", "pron", "cestui", "", "", "", "the person in"]) + let v = native_list_append(v, ["qe", "pron", "qe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chescun", "pron", "chescun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nelui", "pron", "nelui", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chascune", "pron", "chascune", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["nesun", "pron", "nesun", "", "", "", "nobody no-one"]) + let v = native_list_append(v, ["g'", "pron", "g'", "", "", "", "elided form of"]) + let v = native_list_append(v, ["trestot", "pron", "trestot", "", "", "", "everyone all"]) + let v = native_list_append(v, ["iço", "pron", "iço", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["negun", "pron", "negun", "", "", "", "no-one nobody"]) + let v = native_list_append(v, ["plusor", "pron", "plusor", "", "", "", "nominative of plusors"]) + let v = native_list_append(v, ["quet", "pron", "quet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nu", "adv", "nu", "", "", "", "naked"]) + let v = native_list_append(v, ["i", "adv", "i", "", "", "", "there"]) + let v = native_list_append(v, ["point", "adv", "point", "", "", "", "a little"]) + let v = native_list_append(v, ["ci", "adv", "ci", "", "", "", "here in this"]) + let v = native_list_append(v, ["or", "adv", "or", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["west", "adv", "west", "", "", "", "west"]) + let v = native_list_append(v, ["non", "adv", "non", "", "", "", "not"]) + let v = native_list_append(v, ["ben", "adv", "ben", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oil", "adv", "oil", "", "", "", "yes"]) + let v = native_list_append(v, ["come", "adv", "come", "", "", "", "how"]) + let v = native_list_append(v, ["mal", "adv", "mal", "", "", "", "evilly"]) + let v = native_list_append(v, ["bien", "adv", "bien", "", "", "", "well"]) + let v = native_list_append(v, ["u", "adv", "u", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mare", "adv", "mare", "", "", "", "evilly badly"]) + let v = native_list_append(v, ["ore", "adv", "ore", "", "", "", "now"]) + let v = native_list_append(v, ["mot", "adv", "mot", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["premier", "adv", "premier", "", "", "", "first"]) + let v = native_list_append(v, ["ne", "adv", "ne", "", "", "", "not used to"]) + let v = native_list_append(v, ["si", "adv", "si", "", "", "", "so thus in"]) + let v = native_list_append(v, ["ja", "adv", "ja", "", "", "", "already"]) + let v = native_list_append(v, ["pou", "adv", "pou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mout", "adv", "mout", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ou", "adv", "ou", "", "", "", "where"]) + let v = native_list_append(v, ["jus", "adv", "jus", "", "", "", "down"]) + let v = native_list_append(v, ["mar", "adv", "mar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haut", "adv", "haut", "", "", "", "high"]) + let v = native_list_append(v, ["avant", "adv", "avant", "", "", "", "beforehand earlier"]) + let v = native_list_append(v, ["avaunt", "adv", "avaunt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tot", "adv", "tot", "", "", "", "all completely"]) + let v = native_list_append(v, ["primer", "adv", "primer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comment", "adv", "comment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["poi", "adv", "poi", "", "", "", "little not much"]) + let v = native_list_append(v, ["pois", "adv", "pois", "", "", "", "then indicating chronological"]) + let v = native_list_append(v, ["tart", "adv", "tart", "", "", "", "late after the"]) + let v = native_list_append(v, ["tut", "adv", "tut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["item", "adv", "item", "", "", "", "same in the"]) + let v = native_list_append(v, ["plus", "adv", "plus", "", "", "", "more than"]) + let v = native_list_append(v, ["fort", "adv", "fort", "", "", "", "strongly"]) + let v = native_list_append(v, ["halt", "adv", "halt", "", "", "", "loud loudly"]) + let v = native_list_append(v, ["assez", "adv", "assez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trop", "adv", "trop", "", "", "", "excessively too"]) + let v = native_list_append(v, ["maintenant", "adv", "maintenant", "", "", "", "immediately straight away"]) + let v = native_list_append(v, ["mie", "adv", "mie", "", "", "", "not"]) + let v = native_list_append(v, ["molt", "adv", "molt", "", "", "", "very a lot"]) + let v = native_list_append(v, ["combien", "adv", "combien", "", "", "", "how much how"]) + let v = native_list_append(v, ["environ", "adv", "environ", "", "", "", "around"]) + let v = native_list_append(v, ["puis", "adv", "puis", "", "", "", ""]) + let v = native_list_append(v, ["contre", "adv", "contre", "", "", "", "against"]) + let v = native_list_append(v, ["tant", "adv", "tant", "", "", "", "so much such"]) + let v = native_list_append(v, ["demain", "adv", "demain", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["hors", "adv", "hors", "", "", "", "from out of"]) + let v = native_list_append(v, ["sus", "adv", "sus", "", "", "", "above high up"]) + let v = native_list_append(v, ["droit", "adv", "droit", "", "", "", "rightly justly"]) + let v = native_list_append(v, ["ensemble", "adv", "ensemble", "", "", "", "together"]) + let v = native_list_append(v, ["guerre", "adv", "guerre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lors", "adv", "lors", "", "", "", "then at that"]) + let v = native_list_append(v, ["nen", "adv", "nen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ensi", "adv", "ensi", "", "", "", "thus so"]) + let v = native_list_append(v, ["mult", "adv", "mult", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["facilement", "adv", "facilement", "", "", "", "easily"]) + let v = native_list_append(v, ["quant", "adv", "quant", "", "", "", "when"]) + let v = native_list_append(v, ["certes", "adv", "certes", "", "", "", "of course indeed"]) + let v = native_list_append(v, ["premiers", "adv", "premiers", "", "", "", "first before anyone/anything"]) + let v = native_list_append(v, ["multe", "adv", "multe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["primes", "adv", "primes", "", "", "", "first firstly"]) + let v = native_list_append(v, ["lunges", "adv", "lunges", "", "", "", "for a long"]) + let v = native_list_append(v, ["ensamble", "adv", "ensamble", "", "", "", "together"]) + let v = native_list_append(v, ["ilex", "adv", "ilex", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["autrement", "adv", "autrement", "", "", "", "otherwise"]) + let v = native_list_append(v, ["oan", "adv", "oan", "", "", "", "this year"]) + let v = native_list_append(v, ["viron", "adv", "viron", "", "", "", "around"]) + let v = native_list_append(v, ["fors", "adv", "fors", "", "", "", "outside"]) + let v = native_list_append(v, ["tost", "adv", "tost", "", "", "", "early"]) + let v = native_list_append(v, ["oltre", "adv", "oltre", "", "", "", "above over the"]) + let v = native_list_append(v, ["tuit", "adv", "tuit", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["guaire", "adv", "guaire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ancor", "adv", "ancor", "", "", "", "again once again"]) + let v = native_list_append(v, ["derriere", "adv", "derriere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luin", "adv", "luin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["maint", "adv", "maint", "", "", "", "very a lot"]) + let v = native_list_append(v, ["oïl", "adv", "oïl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["certainement", "adv", "certainement", "", "", "", "certainly with certainty"]) + let v = native_list_append(v, ["emmi", "adv", "emmi", "", "", "", "amid amidst"]) + let v = native_list_append(v, ["largement", "adv", "largement", "", "", "", "generously"]) + let v = native_list_append(v, ["tousjours", "adv", "tousjours", "", "", "", "always"]) + let v = native_list_append(v, ["nort", "adv", "nort", "", "", "", "north"]) + let v = native_list_append(v, ["adunk", "adv", "adunk", "", "", "", "then at that"]) + let v = native_list_append(v, ["trés", "adv", "trés", "", "", "", "a lot much"]) + let v = native_list_append(v, ["itel", "adv", "itel", "", "", "", "same similar equal."]) + let v = native_list_append(v, ["longuement", "adv", "longuement", "", "", "", "for a long"]) + let v = native_list_append(v, ["bientost", "adv", "bientost", "", "", "", "soon"]) + let v = native_list_append(v, ["tantost", "adv", "tantost", "", "", "", "as soon as"]) + let v = native_list_append(v, ["durement", "adv", "durement", "", "", "", "hard intensely"]) + let v = native_list_append(v, ["forment", "adv", "forment", "", "", "", "strongly powerfully"]) + let v = native_list_append(v, ["aprés", "adv", "aprés", "", "", "", "after afterwards"]) + let v = native_list_append(v, ["tendrement", "adv", "tendrement", "", "", "", "tenderly"]) + let v = native_list_append(v, ["diversement", "adv", "diversement", "", "", "", "diversely"]) + let v = native_list_append(v, ["hastivement", "adv", "hastivement", "", "", "", "hastily"]) + let v = native_list_append(v, ["ier", "adv", "ier", "", "", "", "yesterday"]) + let v = native_list_append(v, ["james", "adv", "james", "", "", "", "manuscript form of"]) + let v = native_list_append(v, ["jamés", "adv", "jamés", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ja mes", "adv", "ja mes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ja més", "adv", "ja més", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comant", "adv", "comant", "", "", "", "how"]) + let v = native_list_append(v, ["onques", "adv", "onques", "", "", "", "never"]) + let v = native_list_append(v, ["onkes", "adv", "onkes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unkes", "adv", "unkes", "", "", "", "never"]) + let v = native_list_append(v, ["belement", "adv", "belement", "", "", "", "gracefully"]) + let v = native_list_append(v, ["dreit", "adv", "dreit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ansamble", "adv", "ansamble", "", "", "", "together"]) + let v = native_list_append(v, ["cumant", "adv", "cumant", "", "", "", "how in what"]) + let v = native_list_append(v, ["sovent", "adv", "sovent", "", "", "", "often"]) + let v = native_list_append(v, ["cuntre", "adv", "cuntre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lungement", "adv", "lungement", "", "", "", "for a long"]) + let v = native_list_append(v, ["malement", "adv", "malement", "", "", "", "badly without success"]) + let v = native_list_append(v, ["dulcement", "adv", "dulcement", "", "", "", "softly gently"]) + let v = native_list_append(v, ["orgoillusement", "adv", "orgoillusement", "", "", "", "proudly with pride"]) + let v = native_list_append(v, ["suvent", "adv", "suvent", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["curteisement", "adv", "curteisement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cortoisement", "adv", "cortoisement", "", "", "", "gracefully nobly"]) + let v = native_list_append(v, ["merveillusement", "adv", "merveillusement", "", "", "", "a lot much"]) + let v = native_list_append(v, ["honestement", "adv", "honestement", "", "", "", "honestly in an"]) + let v = native_list_append(v, ["richement", "adv", "richement", "", "", "", "richly wealthily expensively"]) + let v = native_list_append(v, ["briement", "adv", "briement", "", "", "", "briefly in a"]) + let v = native_list_append(v, ["dedens", "adv", "dedens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deriere", "adv", "deriere", "", "", "", "behind"]) + let v = native_list_append(v, ["dedenz", "adv", "dedenz", "", "", "", "inside"]) + let v = native_list_append(v, ["chertes", "adv", "chertes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volentiers", "adv", "volentiers", "", "", "", "willingly gladly"]) + let v = native_list_append(v, ["leialment", "adv", "leialment", "", "", "", "loyally"]) + let v = native_list_append(v, ["solement", "adv", "solement", "", "", "", "only just"]) + let v = native_list_append(v, ["nepourquant", "adv", "nepourquant", "", "", "", "however nevertheless"]) + let v = native_list_append(v, ["meillur", "adv", "meillur", "", "", "", "better"]) + let v = native_list_append(v, ["quanque", "adv", "quanque", "", "", "", "as much as"]) + let v = native_list_append(v, ["chertainement", "adv", "chertainement", "", "", "", "surely certainly with"]) + let v = native_list_append(v, ["folement", "adv", "folement", "", "", "", "madly all meanings"]) + let v = native_list_append(v, ["biau cop", "adv", "biau cop", "", "", "", "a lot much"]) + let v = native_list_append(v, ["clerement", "adv", "clerement", "", "", "", "clearly blatantly without"]) + let v = native_list_append(v, ["qant", "adv", "qant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toz jorz", "adv", "toz jorz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["conment", "adv", "conment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mauveisement", "adv", "mauveisement", "", "", "", "badly not well"]) + let v = native_list_append(v, ["asez", "adv", "asez", "", "", "", "enough sufficiently"]) + let v = native_list_append(v, ["premierement", "adv", "premierement", "", "", "", "firstly"]) + let v = native_list_append(v, ["fierement", "adv", "fierement", "", "", "", "bravely courageously"]) + let v = native_list_append(v, ["por quoi", "adv", "por quoi", "", "", "", "why"]) + let v = native_list_append(v, ["sor toz", "adv", "sor toz", "", "", "", "most of all"]) + let v = native_list_append(v, ["gaire", "adv", "gaire", "", "", "", "hardly almost not"]) + let v = native_list_append(v, ["einsi", "adv", "einsi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["por coi", "adv", "por coi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lonc tans", "adv", "lonc tans", "", "", "", "for a long"]) + let v = native_list_append(v, ["rere", "adv", "rere", "", "", "", "behind"]) + let v = native_list_append(v, ["trestoz", "adv", "trestoz", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["povrement", "adv", "povrement", "", "", "", "poorly in a"]) + let v = native_list_append(v, ["defors", "adv", "defors", "", "", "", "outside"]) + let v = native_list_append(v, ["priveement", "adv", "priveement", "", "", "", "privately in private"]) + let v = native_list_append(v, ["briefment", "adv", "briefment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nepurquant", "adv", "nepurquant", "", "", "", "however nevertheless"]) + let v = native_list_append(v, ["unefoiz", "adv", "unefoiz", "", "", "", "once on one"]) + let v = native_list_append(v, ["privement", "adv", "privement", "", "", "", "secretly"]) + let v = native_list_append(v, ["noblement", "adv", "noblement", "", "", "", "nobly in a"]) + let v = native_list_append(v, ["a fuls", "adv", "a fuls", "", "", "", "by the dozen"]) + let v = native_list_append(v, ["envirun", "adv", "envirun", "", "", "", "Anglo-Norman form of"]) + let v = native_list_append(v, ["especialment", "adv", "especialment", "", "", "", "especially"]) + let v = native_list_append(v, ["tretuit", "adv", "tretuit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arire", "adv", "arire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foiblement", "adv", "foiblement", "", "", "", "feebly weakly"]) + let v = native_list_append(v, ["derechief", "adv", "derechief", "", "", "", "again once more"]) + let v = native_list_append(v, ["bonement", "adv", "bonement", "", "", "", "well"]) + let v = native_list_append(v, ["atant", "adv", "atant", "", "", "", "so as to"]) + let v = native_list_append(v, ["ariere", "adv", "ariere", "", "", "", "around the other"]) + let v = native_list_append(v, ["nule part", "adv", "nule part", "", "", "", "nowhere"]) + let v = native_list_append(v, ["tuz jurs", "adv", "tuz jurs", "", "", "", "always"]) + let v = native_list_append(v, ["a desmesure", "adv", "a desmesure", "", "", "", "excessively to excess"]) + let v = native_list_append(v, ["altrement", "adv", "altrement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ja mais", "adv", "ja mais", "", "", "", "any more ever"]) + let v = native_list_append(v, ["lunc tens", "adv", "lunc tens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["haltement", "adv", "haltement", "", "", "", "above"]) + let v = native_list_append(v, ["sudeinement", "adv", "sudeinement", "", "", "", "suddenly"]) + let v = native_list_append(v, ["humblement", "adv", "humblement", "", "", "", "humbly"]) + let v = native_list_append(v, ["mielz", "adv", "mielz", "", "", "", "better"]) + let v = native_list_append(v, ["ausi", "adv", "ausi", "", "", "", "as well also"]) + let v = native_list_append(v, ["sitost", "adv", "sitost", "", "", "", "as soon as"]) + let v = native_list_append(v, ["sanpres", "adv", "sanpres", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isnelement", "adv", "isnelement", "", "", "", "hastily rushedly in"]) + let v = native_list_append(v, ["çaiens", "adv", "çaiens", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ceanz", "adv", "ceanz", "", "", "", "here in this"]) + let v = native_list_append(v, ["a eise", "adv", "a eise", "", "", "", "at ease relaxed"]) + let v = native_list_append(v, ["loing", "adv", "loing", "", "", "", "far far away"]) + let v = native_list_append(v, ["iluec", "adv", "iluec", "", "", "", "herein in this"]) + let v = native_list_append(v, ["illoc", "adv", "illoc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mialz", "adv", "mialz", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["lieement", "adv", "lieement", "", "", "", "joyously delightedly"]) + let v = native_list_append(v, ["desous", "adv", "desous", "", "", "", "below under underneath"]) + let v = native_list_append(v, ["desus", "adv", "desus", "", "", "", "under underneath"]) + let v = native_list_append(v, ["lieemant", "adv", "lieemant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prochienemant", "adv", "prochienemant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soudainnemant", "adv", "soudainnemant", "", "", "", "suddenly"]) + let v = native_list_append(v, ["celeemant", "adv", "celeemant", "", "", "", "covertly"]) + let v = native_list_append(v, ["pur quei", "adv", "pur quei", "", "", "", "why for what"]) + let v = native_list_append(v, ["dolereusemant", "adv", "dolereusemant", "", "", "", "painfully in a"]) + let v = native_list_append(v, ["esciemment", "adv", "esciemment", "", "", "", "knowingly"]) + let v = native_list_append(v, ["eneslepas", "adv", "eneslepas", "", "", "", "immediately right away"]) + let v = native_list_append(v, ["se Dex m'ait", "adv", "se Dex m'ait", "", "", "", "with God on"]) + let v = native_list_append(v, ["neporquant", "adv", "neporquant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prochenement", "adv", "prochenement", "", "", "", "soon"]) + let v = native_list_append(v, ["entierement", "adv", "entierement", "", "", "", "entirely totally completely"]) + let v = native_list_append(v, ["huimés", "adv", "huimés", "", "", "", "now"]) + let v = native_list_append(v, ["parfondement", "adv", "parfondement", "", "", "", "profoundly deeply"]) + let v = native_list_append(v, ["illuc", "adv", "illuc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["veraiement", "adv", "veraiement", "", "", "", "really truly very"]) + let v = native_list_append(v, ["avoeques", "adv", "avoeques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["freschement", "adv", "freschement", "", "", "", "freshly"]) + let v = native_list_append(v, ["pesle-mesle", "adv", "pesle-mesle", "", "", "", "pell-mell"]) + let v = native_list_append(v, ["coment", "adv", "coment", "", "", "", "how"]) + let v = native_list_append(v, ["cumunement", "adv", "cumunement", "", "", "", "together at the"]) + let v = native_list_append(v, ["josque", "adv", "josque", "", "", "", "until not before"]) + let v = native_list_append(v, ["derere", "adv", "derere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["volenters", "adv", "volenters", "", "", "", "willingly"]) + let v = native_list_append(v, ["darere", "adv", "darere", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vassalment", "adv", "vassalment", "", "", "", "in the manner"]) + let v = native_list_append(v, ["a plenté", "adv", "a plenté", "", "", "", "much lots a"]) + let v = native_list_append(v, ["a paine", "adv", "a paine", "", "", "", "hardly only just"]) + let v = native_list_append(v, ["porkei", "adv", "porkei", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ultre", "adv", "ultre", "", "", "", "over over the"]) + let v = native_list_append(v, ["deforz", "adv", "deforz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["entrels", "adv", "entrels", "", "", "", "between them"]) + let v = native_list_append(v, ["charnelment", "adv", "charnelment", "", "", "", "carnally"]) + let v = native_list_append(v, ["joiosement", "adv", "joiosement", "", "", "", "joyously jubilantly"]) + let v = native_list_append(v, ["poiz", "adv", "poiz", "", "", "", "after afterwards"]) + let v = native_list_append(v, ["aultrement", "adv", "aultrement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["celeement", "adv", "celeement", "", "", "", "in a way"]) + let v = native_list_append(v, ["ricement", "adv", "ricement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["countre", "adv", "countre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["asseur", "adv", "asseur", "", "", "", "assuredly"]) + let v = native_list_append(v, ["en anglé", "adv", "en anglé", "", "", "", "cornered in a"]) + let v = native_list_append(v, ["desos", "adv", "desos", "", "", "", "on top of"]) + let v = native_list_append(v, ["tostans", "adv", "tostans", "", "", "", "always constantly"]) + let v = native_list_append(v, ["hontosement", "adv", "hontosement", "", "", "", "shamefully in a"]) + let v = native_list_append(v, ["sengle", "adv", "sengle", "", "", "", "alone in an"]) + let v = native_list_append(v, ["secondement", "adv", "secondement", "", "", "", "secondly"]) + let v = native_list_append(v, ["estroitement", "adv", "estroitement", "", "", "", "straight without deviation"]) + let v = native_list_append(v, ["sapientement", "adv", "sapientement", "", "", "", "wisely with wisdom"]) + let v = native_list_append(v, ["estachier", "adv", "estachier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["donkes", "adv", "donkes", "", "", "", "therefore ergo so"]) + let v = native_list_append(v, ["dolcement", "adv", "dolcement", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["touteffois", "adv", "touteffois", "", "", "", "however"]) + let v = native_list_append(v, ["voirement", "adv", "voirement", "", "", "", "really truly"]) + let v = native_list_append(v, ["par ensample", "adv", "par ensample", "", "", "", "for example"]) + let v = native_list_append(v, ["leanz", "adv", "leanz", "", "", "", "here in this"]) + let v = native_list_append(v, ["entresait", "adv", "entresait", "", "", "", "immediately straight away"]) + let v = native_list_append(v, ["del tot an tot", "adv", "del tot an tot", "", "", "", "completely entirely"]) + let v = native_list_append(v, ["autremant", "adv", "autremant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["parfitemant", "adv", "parfitemant", "", "", "", "perfectly"]) + let v = native_list_append(v, ["contre val", "adv", "contre val", "", "", "", "riverside adjacent to"]) + let v = native_list_append(v, ["regulerment", "adv", "regulerment", "", "", "", "in a way"]) + let v = native_list_append(v, ["nequedant", "adv", "nequedant", "", "", "", "however"]) + let v = native_list_append(v, ["maintes foiz", "adv", "maintes foiz", "", "", "", "often"]) + let v = native_list_append(v, ["granment", "adv", "granment", "", "", "", "much a lot"]) + let v = native_list_append(v, ["aillors", "adv", "aillors", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["acostumeemant", "adv", "acostumeemant", "", "", "", "in an accustomed"]) + let v = native_list_append(v, ["altresi", "adv", "altresi", "", "", "", "also as well"]) + let v = native_list_append(v, ["trestot", "adv", "trestot", "", "", "", "all every"]) + let v = native_list_append(v, ["tiercement", "adv", "tiercement", "", "", "", "thirdly"]) + let v = native_list_append(v, ["quartement", "adv", "quartement", "", "", "", "fourthly"]) + let v = native_list_append(v, ["quintement", "adv", "quintement", "", "", "", "fifthly"]) + let v = native_list_append(v, ["sixiesmement", "adv", "sixiesmement", "", "", "", "sixthly"]) + let v = native_list_append(v, ["septiesmement", "adv", "septiesmement", "", "", "", "seventhly"]) + let v = native_list_append(v, ["huictiesmement", "adv", "huictiesmement", "", "", "", "eighthly"]) + let v = native_list_append(v, ["sextement", "adv", "sextement", "", "", "", "sixthly"]) + let v = native_list_append(v, ["decy", "adv", "decy", "", "", "", "from this"]) + let v = native_list_append(v, ["neufyesmement", "adv", "neufyesmement", "", "", "", "ninthly"]) + let v = native_list_append(v, ["dixiesmement", "adv", "dixiesmement", "", "", "", "tenthly"]) + let v = native_list_append(v, ["diligement", "adv", "diligement", "", "", "", "diligently with diligence"]) + let v = native_list_append(v, ["espiritalment", "adv", "espiritalment", "", "", "", "spiritually with respect"]) + let v = native_list_append(v, ["uncore", "adv", "uncore", "", "", "", "still"]) + let v = native_list_append(v, ["cointement", "adv", "cointement", "", "", "", "cleverly intelligently"]) + let v = native_list_append(v, ["ilok", "adv", "ilok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illec", "adv", "illec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["endementres", "adv", "endementres", "", "", "", "during"]) + let v = native_list_append(v, ["orendroit", "adv", "orendroit", "", "", "", "now at this"]) + let v = native_list_append(v, ["orandroit", "adv", "orandroit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ainçois", "adv", "ainçois", "", "", "", "before at a"]) + let v = native_list_append(v, ["pieça", "adv", "pieça", "", "", "", "a while ago"]) + let v = native_list_append(v, ["isnel le pas", "adv", "isnel le pas", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["auques", "adv", "auques", "", "", "", "somewhat a little"]) + let v = native_list_append(v, ["autretel", "adv", "autretel", "", "", "", "same the same"]) + let v = native_list_append(v, ["trestuit", "adv", "trestuit", "", "", "", "inflection of trestot"]) + let v = native_list_append(v, ["communalment", "adv", "communalment", "", "", "", "together all together"]) + let v = native_list_append(v, ["itant", "adv", "itant", "", "", "", "as much as"]) + let v = native_list_append(v, ["idunc", "adv", "idunc", "", "", "", "then at a"]) + let v = native_list_append(v, ["anguissusement", "adv", "anguissusement", "", "", "", "anxiously worriedly"]) + let v = native_list_append(v, ["dunc", "adv", "dunc", "", "", "", "then"]) + let v = native_list_append(v, ["vilment", "adv", "vilment", "", "", "", "vilely in a"]) + let v = native_list_append(v, ["lealment", "adv", "lealment", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ensement", "adv", "ensement", "", "", "", "likewise in the"]) + let v = native_list_append(v, ["siveus", "adv", "siveus", "", "", "", "at least at"]) + let v = native_list_append(v, ["a bandon", "adv", "a bandon", "", "", "", "at will freely"]) + let v = native_list_append(v, ["mlt", "adv", "mlt", "", "", "", "abbreviation of molt"]) + let v = native_list_append(v, ["ilek", "adv", "ilek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ainz", "adv", "ainz", "", "", "", "before"]) + let v = native_list_append(v, ["einz", "adv", "einz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cointemẽt", "adv", "cointemẽt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asetz", "adv", "asetz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iley", "adv", "iley", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ylec", "adv", "ylec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elec", "adv", "elec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileu", "adv", "ileu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloc", "adv", "iloc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilec", "adv", "ilec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuc", "adv", "ileuc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilux", "adv", "ilux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iluc", "adv", "iluc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eleckes", "adv", "eleckes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iluk", "adv", "iluk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elekes", "adv", "elekes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eleuc", "adv", "eleuc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elluc", "adv", "elluc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eloc", "adv", "eloc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eloec", "adv", "eloec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eloek", "adv", "eloek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eloques", "adv", "eloques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eluec", "adv", "eluec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elukes", "adv", "elukes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiluk", "adv", "hiluk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ieluec", "adv", "ieluec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileches", "adv", "ileches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilecqes", "adv", "ilecqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilecques", "adv", "ilecques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileke", "adv", "ileke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilekes", "adv", "ilekes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileks", "adv", "ileks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoc", "adv", "ileoc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoches", "adv", "ileoches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileok", "adv", "ileok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoke", "adv", "ileoke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileokes", "adv", "ileokes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoks", "adv", "ileoks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoqe", "adv", "ileoqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoqes", "adv", "ileoqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoqs", "adv", "ileoqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoques", "adv", "ileoques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileoskes", "adv", "ileoskes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileosques", "adv", "ileosques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileqe", "adv", "ileqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileqes", "adv", "ileqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileqs", "adv", "ileqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileque", "adv", "ileque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileques", "adv", "ileques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilesqes", "adv", "ilesqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilesques", "adv", "ilesques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuk", "adv", "ileuk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuke", "adv", "ileuke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileukes", "adv", "ileukes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuks", "adv", "ileuks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuqe", "adv", "ileuqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuqes", "adv", "ileuqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ileuques", "adv", "ileuques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilioqe", "adv", "ilioqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illaoques", "adv", "illaoques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illecqe", "adv", "illecqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illecqes", "adv", "illecqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illecques", "adv", "illecques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illecqz", "adv", "illecqz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illecs", "adv", "illecs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illecus", "adv", "illecus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeekes", "adv", "illeekes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illek", "adv", "illek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illekes", "adv", "illekes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yloc", "adv", "yloc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illence", "adv", "illence", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeocqes", "adv", "illeocqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeocques", "adv", "illeocques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoke", "adv", "illeoke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeokes", "adv", "illeokes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoq", "adv", "illeoq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoqe", "adv", "illeoqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoqes", "adv", "illeoqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoqez", "adv", "illeoqez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoqs", "adv", "illeoqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoque", "adv", "illeoque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoques", "adv", "illeoques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeoquez", "adv", "illeoquez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeosqe", "adv", "illeosqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeosqes", "adv", "illeosqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeosqs", "adv", "illeosqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeosque", "adv", "illeosque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeosques", "adv", "illeosques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeouqes", "adv", "illeouqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeouqs", "adv", "illeouqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeq", "adv", "illeq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeqe", "adv", "illeqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeqes", "adv", "illeqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeqoes", "adv", "illeqoes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeqs", "adv", "illeqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeque", "adv", "illeque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeques", "adv", "illeques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illequez", "adv", "illequez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illesqes", "adv", "illesqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illesques", "adv", "illesques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuc", "adv", "illeuc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuce", "adv", "illeuce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeucques", "adv", "illeucques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeucus", "adv", "illeucus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuke", "adv", "illeuke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeukes", "adv", "illeukes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuqe", "adv", "illeuqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuqes", "adv", "illeuqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuqs", "adv", "illeuqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuque", "adv", "illeuque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuques", "adv", "illeuques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeuquez", "adv", "illeuquez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeusqe", "adv", "illeusqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeusqes", "adv", "illeusqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illeusqs", "adv", "illeusqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illock", "adv", "illock", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illocqes", "adv", "illocqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illocques", "adv", "illocques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoec", "adv", "illoec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoek", "adv", "illoek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeke", "adv", "illoeke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoekes", "adv", "illoekes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeks", "adv", "illoeks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeq", "adv", "illoeq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeqe", "adv", "illoeqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeqes", "adv", "illoeqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeqez", "adv", "illoeqez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeqies", "adv", "illoeqies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeqs", "adv", "illoeqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeque", "adv", "illoeque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeques", "adv", "illoeques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoequs", "adv", "illoequs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoeqz", "adv", "illoeqz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoesks", "adv", "illoesks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoesqes", "adv", "illoesqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoesques", "adv", "illoesques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoik", "adv", "illoik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoiques", "adv", "illoiques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illok", "adv", "illok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoke", "adv", "illoke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illokes", "adv", "illokes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoks", "adv", "illoks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illonqes", "adv", "illonqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illonquez", "adv", "illonquez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoq", "adv", "illoq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoqe", "adv", "illoqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoqes", "adv", "illoqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoqs", "adv", "illoqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoque", "adv", "illoque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoques", "adv", "illoques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoqus", "adv", "illoqus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illosqes", "adv", "illosqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illosques", "adv", "illosques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouecqes", "adv", "illouecqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouke", "adv", "illouke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illoukes", "adv", "illoukes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouqes", "adv", "illouqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouqs", "adv", "illouqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouque", "adv", "illouque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouques", "adv", "illouques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illouquez", "adv", "illouquez", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illousques", "adv", "illousques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illovecques", "adv", "illovecques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illucque", "adv", "illucque", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illucques", "adv", "illucques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illucs", "adv", "illucs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuec", "adv", "illuec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuecqes", "adv", "illuecqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuecques", "adv", "illuecques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuekes", "adv", "illuekes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illueq", "adv", "illueq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illueqes", "adv", "illueqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illueques", "adv", "illueques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuesqes", "adv", "illuesqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuesqs", "adv", "illuesqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuesques", "adv", "illuesques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuk", "adv", "illuk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuke", "adv", "illuke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illukes", "adv", "illukes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illukis", "adv", "illukis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuks", "adv", "illuks", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuoqes", "adv", "illuoqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuoqs", "adv", "illuoqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuqe", "adv", "illuqe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuqes", "adv", "illuqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuqs", "adv", "illuqs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illuques", "adv", "illuques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illus", "adv", "illus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illusques", "adv", "illusques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["illux", "adv", "illux", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloces", "adv", "iloces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloche", "adv", "iloche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloches", "adv", "iloches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilocq", "adv", "ilocq", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilocqes", "adv", "ilocqes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ilocs", "adv", "ilocs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloec", "adv", "iloec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloeces", "adv", "iloeces", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloeches", "adv", "iloeches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iloecques", "adv", "iloecques", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sun", "det", "sun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["son", "det", "son", "", "", "", "his/hers/its third-person singular"]) + let v = native_list_append(v, ["un", "det", "un", "", "", "", "a an masculine"]) + let v = native_list_append(v, ["ta", "det", "ta", "", "", "", "your second-person singular"]) + let v = native_list_append(v, ["li", "det", "li", "", "", "", "the masculine nominative"]) + let v = native_list_append(v, ["la", "det", "la", "", "", "", "the feminine singular"]) + let v = native_list_append(v, ["ton", "det", "ton", "", "", "", "your second-person singular"]) + let v = native_list_append(v, ["sa", "det", "sa", "", "", "", "his/hers/its third-person singular"]) + let v = native_list_append(v, ["lo", "det", "lo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["les", "det", "les", "", "", "", "the feminine plural"]) + let v = native_list_append(v, ["le", "det", "le", "", "", "", "the masculine singular"]) + let v = native_list_append(v, ["mes", "det", "mes", "", "", "", "my first-person plural"]) + let v = native_list_append(v, ["ma", "det", "ma", "", "", "", "my first-person singular"]) + let v = native_list_append(v, ["l'", "det", "l'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["mon", "det", "mon", "", "", "", "my first-person singular"]) + let v = native_list_append(v, ["une", "det", "une", "", "", "", "a an feminine"]) + let v = native_list_append(v, ["uns", "det", "uns", "", "", "", "some masculine oblique"]) + let v = native_list_append(v, ["lor", "det", "lor", "", "", "", "their third-person plural"]) + let v = native_list_append(v, ["unes", "det", "unes", "", "", "", "some feminine oblique"]) + let v = native_list_append(v, ["lou", "det", "lou", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ambedeus", "det", "ambedeus", "", "", "", "both"]) + let v = native_list_append(v, ["ambedui", "det", "ambedui", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["andui", "det", "andui", "", "", "", "nominative of andeus"]) + let v = native_list_append(v, ["ambe", "det", "ambe", "", "", "", "both"]) + let v = native_list_append(v, ["ambes", "det", "ambes", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["andeus", "det", "andeus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["andous", "det", "andous", "", "", "", "both"]) + let v = native_list_append(v, ["cum", "conj", "cum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ke", "conj", "ke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["et", "conj", "et", "", "", "", "and"]) + let v = native_list_append(v, ["e", "conj", "e", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["con", "conj", "con", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ne", "conj", "ne", "", "", "", "neither not one"]) + let v = native_list_append(v, ["si", "conj", "si", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["se", "conj", "se", "", "", "", "if"]) + let v = native_list_append(v, ["ou", "conj", "ou", "", "", "", "or"]) + let v = native_list_append(v, ["par", "conj", "par", "", "", "", "by via introduces"]) + let v = native_list_append(v, ["mes", "conj", "mes", "", "", "", "but"]) + let v = native_list_append(v, ["que", "conj", "que", "", "", "", "that"]) + let v = native_list_append(v, ["mais", "conj", "mais", "", "", "", "but"]) + let v = native_list_append(v, ["quant", "conj", "quant", "", "", "", "when"]) + let v = native_list_append(v, ["senz", "conj", "senz", "", "", "", "without"]) + let v = native_list_append(v, ["cume", "conj", "cume", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gekes", "conj", "gekes", "", "", "", "until"]) + let v = native_list_append(v, ["quer", "conj", "quer", "", "", "", "as since because"]) + let v = native_list_append(v, ["qar", "conj", "qar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quar", "conj", "quar", "", "", "", "for because due"]) + let v = native_list_append(v, ["conme", "conj", "conme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qant", "conj", "qant", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["qe", "conj", "qe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["q̃", "conj", "q̃", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["dez ke", "conj", "dez ke", "", "", "", "as soon as"]) + let v = native_list_append(v, ["ains que", "conj", "ains que", "", "", "", "before"]) + let v = native_list_append(v, ["si com", "conj", "si com", "", "", "", "as in the"]) + let v = native_list_append(v, ["saunce", "conj", "saunce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dementres que", "conj", "dementres que", "", "", "", "while"]) + let v = native_list_append(v, ["jasoit", "conj", "jasoit", "", "", "", "although"]) + let v = native_list_append(v, ["endementres", "conj", "endementres", "", "", "", "during while"]) + let v = native_list_append(v, ["אי־", "conj", "אי־", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["einz", "conj", "einz", "", "", "", "before"]) + let v = native_list_append(v, ["quet", "conj", "quet", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["porquant", "conj", "porquant", "", "", "", "yet however"]) + return v +} + +fn vocab_fro_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_fro_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-gez.el b/elp/src/vocabulary-gez.el new file mode 100644 index 0000000..0b7f6f4 --- /dev/null +++ b/elp/src/vocabulary-gez.el @@ -0,0 +1,537 @@ +// vocabulary-gez.el — Ge'ez vocabulary seed +// 516 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 516 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_gez_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["ኢትዮጵያ", "noun", "ኢትዮጵያ", "", "", "", "Ethiopia a country"]) + let v = native_list_append(v, ["እኅት", "noun", "አኃት", "", "", "", "sister"]) + let v = native_list_append(v, ["ቤት", "noun", "አብያት", "", "", "", "house"]) + let v = native_list_append(v, ["መስከረም", "noun", "መስከረም", "", "", "", "First month of"]) + let v = native_list_append(v, ["ድንግል", "noun", "ደናግል", "", "", "", "virgin female but"]) + let v = native_list_append(v, ["ገጽ", "noun", "ገጻት", "", "", "", "face"]) + let v = native_list_append(v, ["ሎሚ", "noun", "ሎሚ", "", "", "", "lime lemon citrus"]) + let v = native_list_append(v, ["ሕፃን", "noun", "ሕፃናት", "", "", "", "infant young child"]) + let v = native_list_append(v, ["ሙዝ", "noun", "ሙዘነ", "", "", "", "ensete"]) + let v = native_list_append(v, ["ማይ", "noun", "ማያት", "", "", "", "water"]) + let v = native_list_append(v, ["ሥጋ", "noun", "ሥጋት", "", "", "", "flesh"]) + let v = native_list_append(v, ["ቅንፍዝ", "noun", "ቅንፍዝ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["በግዕ", "noun", "አባግዕ", "", "", "", "sheep"]) + let v = native_list_append(v, ["ብዕራይ", "noun", "አባዕር", "", "", "", "ox buffalo"]) + let v = native_list_append(v, ["ተመን", "noun", "ተመናት", "", "", "", "snake"]) + let v = native_list_append(v, ["ትንቢት", "noun", "ትንቢታት", "", "", "", "prophecy"]) + let v = native_list_append(v, ["ነቢይ", "noun", "ነቢያት", "", "", "", "prophet"]) + let v = native_list_append(v, ["ንጉሥ", "noun", "ነገሥት", "", "", "", "king"]) + let v = native_list_append(v, ["ክዳን", "noun", "ክዳናት", "", "", "", "shelter cover"]) + let v = native_list_append(v, ["ኮከብ", "noun", "ከዋክብት", "", "", "", "star"]) + let v = native_list_append(v, ["ፈረስ", "noun", "አፍራስ", "", "", "", "horse"]) + let v = native_list_append(v, ["ፀሓይ", "noun", "ፀሓይ", "", "", "", "sun"]) + let v = native_list_append(v, ["ሰላም", "noun", "ሰላም", "", "", "", "peace"]) + let v = native_list_append(v, ["በዓል", "noun", "በዓል", "", "", "", "owner paterfamilias husband"]) + let v = native_list_append(v, ["ስም", "noun", "አስማት", "", "", "", "name"]) + let v = native_list_append(v, ["ርእስ", "noun", "አርእስት", "", "", "", "head"]) + let v = native_list_append(v, ["እድ", "noun", "እደው", "", "", "", "hand"]) + let v = native_list_append(v, ["ደም", "noun", "ደማት", "", "", "", "blood"]) + let v = native_list_append(v, ["ሶር", "noun", "አስዋር", "", "", "", "ox"]) + let v = native_list_append(v, ["ኣብ", "noun", "ኣብ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ከልብ", "noun", "ከለባት", "", "", "", "dog"]) + let v = native_list_append(v, ["ዕፅ", "noun", "ዕፀው", "", "", "", "tree shrub bush"]) + let v = native_list_append(v, ["ልብ", "noun", "አልባብ", "", "", "", "heart"]) + let v = native_list_append(v, ["ልሳን", "noun", "ልሳናት", "", "", "", "tongue"]) + let v = native_list_append(v, ["ስን", "noun", "ስነን", "", "", "", "tooth"]) + let v = native_list_append(v, ["አፍ", "noun", "አፈው", "", "", "", "mouth"]) + let v = native_list_append(v, ["ዝእብ", "noun", "ዝእብ", "", "", "", "hyena"]) + let v = native_list_append(v, ["ምሴት", "noun", "ምሴታት", "", "", "", "evening"]) + let v = native_list_append(v, ["ሌሊት", "noun", "ለያልይ", "", "", "", "night"]) + let v = native_list_append(v, ["ዘመን", "noun", "አዝማን", "", "", "", "time"]) + let v = native_list_append(v, ["እዝን", "noun", "እዘን", "", "", "", "ear"]) + let v = native_list_append(v, ["ንስር", "noun", "አንስርት", "", "", "", "eagle"]) + let v = native_list_append(v, ["ንስረ", "noun", "ንስረ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["መብረቅ", "noun", "መባርቅት", "", "", "", "lightning"]) + let v = native_list_append(v, ["ኮክ", "noun", "ኮክ", "", "", "", "peach plum"]) + let v = native_list_append(v, ["አቡነ", "noun", "አቡነ", "", "", "", "our father"]) + let v = native_list_append(v, ["እሳት", "noun", "እሳት", "", "", "", "fire"]) + let v = native_list_append(v, ["ሰይፍ", "noun", "አስያፍ", "", "", "", "sword"]) + let v = native_list_append(v, ["ሰማይ", "noun", "ሰማያት", "", "", "", "heaven"]) + let v = native_list_append(v, ["ድብ", "noun", "ድባት", "", "", "", "bear"]) + let v = native_list_append(v, ["አብ", "noun", "አበው", "", "", "", "father"]) + let v = native_list_append(v, ["ሐም", "noun", "አሕማው", "", "", "", "father-in-law"]) + let v = native_list_append(v, ["ክታብ", "noun", "ክታባት", "", "", "", "book leaflet document"]) + let v = native_list_append(v, ["ግዕዝ", "noun", "ግዕዝ", "", "", "", "Geez language"]) + let v = native_list_append(v, ["ቅዱስ", "noun", "ቅዱሳን", "", "", "", "saint"]) + let v = native_list_append(v, ["እግዚአብሔር", "noun", "እግዚአብሔር", "", "", "", "God"]) + let v = native_list_append(v, ["ጽላሎት", "noun", "ጽላሎት", "", "", "", "shade"]) + let v = native_list_append(v, ["ቀዳሚ", "noun", "ቀዳሚ", "", "", "", "beginning"]) + let v = native_list_append(v, ["ከተማ", "noun", "ከተማት", "", "", "", "extremity fine end"]) + let v = native_list_append(v, ["አመት", "noun", "አእማት", "", "", "", "handmaid female slave"]) + let v = native_list_append(v, ["ቆባረ", "noun", "ቆባረ", "", "", "", "blackness darkness"]) + let v = native_list_append(v, ["መስኮት", "noun", "መሳክው", "", "", "", "window"]) + let v = native_list_append(v, ["መንግሥት", "noun", "መንግሥታት", "", "", "", "kingdom"]) + let v = native_list_append(v, ["ዘነብ", "noun", "አዝናብ", "", "", "", "tail"]) + let v = native_list_append(v, ["መንፈስ", "noun", "መንፈሳት", "", "", "", "breath"]) + let v = native_list_append(v, ["እንስሳ", "noun", "እንስሳት", "", "", "", "animal"]) + let v = native_list_append(v, ["ነፋስ", "noun", "ነፋሳት", "", "", "", "wind"]) + let v = native_list_append(v, ["ምስማዕ", "noun", "ምስማዓት", "", "", "", "hearing the sense"]) + let v = native_list_append(v, ["ከበሮ", "noun", "ከባርው", "", "", "", "drum timbrel"]) + let v = native_list_append(v, ["ሣጹን", "noun", "ሣጹናት", "", "", "", "chest box casket"]) + let v = native_list_append(v, ["በለስ", "noun", "በለሳት", "", "", "", "fig also sycomore"]) + let v = native_list_append(v, ["ሣፁን", "noun", "ሣፁናት", "", "", "", "later form of"]) + let v = native_list_append(v, ["ሰዓት", "noun", "ሰዓታት", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["እስራኤል", "noun", "እስራኤል", "", "", "", "Israel a Biblical"]) + let v = native_list_append(v, ["ሕግ", "noun", "ሕገግ", "", "", "", "law"]) + let v = native_list_append(v, ["ባሕር", "noun", "አብሕርት", "", "", "", "sea large lake"]) + let v = native_list_append(v, ["ሓሳብ", "noun", "ሐሳባት", "", "", "", "account accounting reckoning"]) + let v = native_list_append(v, ["ሕዝብ", "noun", "ሕዘብ", "", "", "", "tribe people nation"]) + let v = native_list_append(v, ["መምክር", "noun", "መምካራን", "", "", "", "counselor adviser"]) + let v = native_list_append(v, ["ማእድ", "noun", "ማእዳት", "", "", "", "table"]) + let v = native_list_append(v, ["ክንፍ", "noun", "ከነፍ", "", "", "", "wing fin of"]) + let v = native_list_append(v, ["ካህን", "noun", "ካህናት", "", "", "", "priest clergyman"]) + let v = native_list_append(v, ["እንቁጣጣሽ", "noun", "እንቁጣጣሽ", "", "", "", "The first day"]) + let v = native_list_append(v, ["የካቲት", "noun", "የካቲት", "", "", "", "The sixth month"]) + let v = native_list_append(v, ["ጥልቀት", "noun", "ጥልቀት", "", "", "", "contamination pollution impurity"]) + let v = native_list_append(v, ["ዓለም", "noun", "ዓለማት", "", "", "", "universe world"]) + let v = native_list_append(v, ["ነፍስ", "noun", "ነፍሳት", "", "", "", "breath soul spirit"]) + let v = native_list_append(v, ["ብርክ", "noun", "ብርክ", "", "", "", "knee"]) + let v = native_list_append(v, ["ኀሪፍ", "noun", "ኀሪፍ", "", "", "", "this year current"]) + let v = native_list_append(v, ["ለያልይ", "noun", "ለያልይ", "", "", "", "plural of ሌሊት"]) + let v = native_list_append(v, ["አስዋር", "noun", "አስዋር", "", "", "", "plural of ሶር"]) + let v = native_list_append(v, ["ምንዳቤ", "noun", "ምንዳቤያት", "", "", "", "anguish"]) + let v = native_list_append(v, ["ምንዳቤያት", "noun", "ምንዳቤያት", "", "", "", "plural of ምንዳቤ"]) + let v = native_list_append(v, ["ምንዳብያት", "noun", "ምንዳብያት", "", "", "", "plural of ምንዳቤ"]) + let v = native_list_append(v, ["ነቢያት", "noun", "ነቢያት", "", "", "", "plural of ነቢይ"]) + let v = native_list_append(v, ["ነብያት", "noun", "ነብያት", "", "", "", "plural of ነቢይ"]) + let v = native_list_append(v, ["ነጥብ", "noun", "ነጥብ", "", "", "", "speck spot"]) + let v = native_list_append(v, ["እግር", "noun", "እገር", "", "", "", "foot"]) + let v = native_list_append(v, ["ልብስ", "noun", "አልባስ", "", "", "", "clothes clothing tunic"]) + let v = native_list_append(v, ["መርከብ", "noun", "መርከብ", "", "", "", "boat ship"]) + let v = native_list_append(v, ["ዘይት", "noun", "ዘይት", "", "", "", "olive tree"]) + let v = native_list_append(v, ["ፍቅር", "noun", "ፍቅር", "", "", "", "love fondness"]) + let v = native_list_append(v, ["እኤል", "noun", "እኤል", "", "", "", "trellis lattice grate"]) + let v = native_list_append(v, ["አበቢ", "noun", "አበቢ", "", "", "", "flow wave"]) + let v = native_list_append(v, ["እባል", "noun", "እባል", "", "", "", "flesh"]) + let v = native_list_append(v, ["እብል", "noun", "እብል", "", "", "", "jackal lion"]) + let v = native_list_append(v, ["ኤዶም", "noun", "ኤዶም", "", "", "", "paradise Eden"]) + let v = native_list_append(v, ["አድግ", "noun", "አድግ", "", "", "", "ass donkey"]) + let v = native_list_append(v, ["በቅል", "noun", "አብቅል", "", "", "", "mule"]) + let v = native_list_append(v, ["ጽልመት", "noun", "ጽልመት", "", "", "", "darkness"]) + let v = native_list_append(v, ["ዓም", "noun", "ዓም", "", "", "", "year"]) + let v = native_list_append(v, ["ወልድ", "noun", "ውሉድ", "", "", "", "son child"]) + let v = native_list_append(v, ["ሙሴ", "noun", "ሙሴ", "", "", "", "Moses"]) + let v = native_list_append(v, ["ላህም", "noun", "አልህምት", "", "", "", "cow bull"]) + let v = native_list_append(v, ["ጢሮስ", "noun", "ጢሮስ", "", "", "", "Tyre"]) + let v = native_list_append(v, ["ጋዛ", "noun", "ጋዛ", "", "", "", "Gaza"]) + let v = native_list_append(v, ["ሐሊብ", "noun", "ሐሊበነ", "", "", "", "milk"]) + let v = native_list_append(v, ["ሰርዴስ", "noun", "ሰርዴስ", "", "", "", "Sardis Sardes"]) + let v = native_list_append(v, ["እስክንድርያ", "noun", "እስክንድርያ", "", "", "", "Alexandria"]) + let v = native_list_append(v, ["መዲና", "noun", "መዲና", "", "", "", "Medina"]) + let v = native_list_append(v, ["መካ", "noun", "መካ", "", "", "", "Mecca"]) + let v = native_list_append(v, ["በግዳድ", "noun", "በግዳድ", "", "", "", "Baghdad"]) + let v = native_list_append(v, ["በዐልበክ", "noun", "በዐልበክ", "", "", "", "Baalbek"]) + let v = native_list_append(v, ["ቃህራ", "noun", "ቃህራ", "", "", "", "Cairo"]) + let v = native_list_append(v, ["ሲዶና", "noun", "ሲዶና", "", "", "", "Sidon"]) + let v = native_list_append(v, ["ሐራቅሊ", "noun", "ሐራቅሊ", "", "", "", "Heraclea"]) + let v = native_list_append(v, ["ማእረር", "noun", "ማእረር", "", "", "", "harvest the action"]) + let v = native_list_append(v, ["ኀጺን", "noun", "ኀጺን", "", "", "", "iron iron tool"]) + let v = native_list_append(v, ["ሐመዳ", "noun", "ሐመዳ", "", "", "", "snow frost"]) + let v = native_list_append(v, ["ጊሜ", "noun", "ጊሜ", "", "", "", "cloud"]) + let v = native_list_append(v, ["ምድር", "noun", "ምድር", "", "", "", "earth world"]) + let v = native_list_append(v, ["ጽናዔ", "noun", "ጽናዔ", "", "", "", "constance firmness"]) + let v = native_list_append(v, ["ሕምሥ", "noun", "ሕምሥ", "", "", "", "belly stomach"]) + let v = native_list_append(v, ["እልኅቡስ", "noun", "እልኅቡስ", "", "", "", "Abyssinia"]) + let v = native_list_append(v, ["ዐሞን", "noun", "ዐሞን", "", "", "", "Ammon the Ammonites"]) + let v = native_list_append(v, ["አራራት", "noun", "አራራት", "", "", "", "Ararat"]) + let v = native_list_append(v, ["ዳንያ", "noun", "ዳንያ", "", "", "", "judge"]) + let v = native_list_append(v, ["ከላድዮን", "noun", "ከላድዮን", "", "", "", "Chaldaea"]) + let v = native_list_append(v, ["ቀሬጢን", "noun", "ቀሬጢን", "", "", "", "Crete"]) + let v = native_list_append(v, ["ኵርጅ", "noun", "ኵርጅ", "", "", "", "Georgia a transcontinental"]) + let v = native_list_append(v, ["ጌርጌሴዎን", "noun", "ጌርጌሴዎን", "", "", "", "the Girgashites"]) + let v = native_list_append(v, ["ከናኔዎን", "noun", "ከናኔዎን", "", "", "", "the Canaanites"]) + let v = native_list_append(v, ["ጽርእ", "noun", "ጽርእ", "", "", "", "Greece"]) + let v = native_list_append(v, ["አለዳስ", "noun", "አለዳስ", "", "", "", "Greece"]) + let v = native_list_append(v, ["ሐብስ", "noun", "ሐብስ", "", "", "", "prison jail"]) + let v = native_list_append(v, ["ሞቅሕ", "noun", "መዋቅሕት", "", "", "", "chain shackles"]) + let v = native_list_append(v, ["መዝሙር", "noun", "መዝሙራት", "", "", "", "psalm hymn sacred"]) + let v = native_list_append(v, ["መዘምር", "noun", "መዘምራን", "", "", "", "singer of psalms"]) + let v = native_list_append(v, ["ጸሓፊ", "noun", "ጸሐፍ", "", "", "", "scribe"]) + let v = native_list_append(v, ["ሀገር", "noun", "አህጉር", "", "", "", "cultivated field inhabited"]) + let v = native_list_append(v, ["ደቂቅና", "noun", "ደቂቅና", "", "", "", "childhood"]) + let v = native_list_append(v, ["ኖባ", "noun", "ኖባ", "", "", "", "Nubia"]) + let v = native_list_append(v, ["ቃዴስ", "noun", "ቃዴስ", "", "", "", "Mount Sinai"]) + let v = native_list_append(v, ["አልአሕመር", "noun", "አልአሕመር", "", "", "", "the Red Sea"]) + let v = native_list_append(v, ["ስርየት", "noun", "ስርየት", "", "", "", "remission forgiveness"]) + let v = native_list_append(v, ["ጽዮን", "noun", "ጽዮን", "", "", "", "Zion"]) + let v = native_list_append(v, ["መስፍሕ", "noun", "መሳፍሕ", "", "", "", "anvil"]) + let v = native_list_append(v, ["ስግድ", "noun", "ስግድ", "", "", "", "almond tree"]) + let v = native_list_append(v, ["ከርካዕ", "noun", "ከርካዕ", "", "", "", "almond fruit and"]) + let v = native_list_append(v, ["ለውዝ", "noun", "ለውዝ", "", "", "", "almond"]) + let v = native_list_append(v, ["እም", "noun", "እማት", "", "", "", "mother"]) + let v = native_list_append(v, ["ጸብእ", "noun", "አጽባእ", "", "", "", "army armed forces"]) + let v = native_list_append(v, ["ምጽባእ", "noun", "ምጽባአነ", "", "", "", "castle fortress citadel"]) + let v = native_list_append(v, ["ጸባኢ", "noun", "ጸባእያን", "", "", "", "soldier warrior fighter"]) + let v = native_list_append(v, ["ገውዝ", "noun", "ገውዝ", "", "", "", "walnut"]) + let v = native_list_append(v, ["ጽሩር", "noun", "ጽሩር", "", "", "", "cuirass"]) + let v = native_list_append(v, ["ረክብ", "noun", "ረክብ", "", "", "", "assembly meeting"]) + let v = native_list_append(v, ["ገብር", "noun", "አግብርት", "", "", "", "servant slave"]) + let v = native_list_append(v, ["ሰንቡላ", "noun", "ሰንቡላ", "", "", "", "virgin"]) + let v = native_list_append(v, ["መስፍን", "noun", "መሳፍንት", "", "", "", "prince prefect governor"]) + let v = native_list_append(v, ["ዶርሆ", "noun", "ደዋርህ", "", "", "", "chicken"]) + let v = native_list_append(v, ["ብሔር", "noun", "በሓውርት", "", "", "", "place location"]) + let v = native_list_append(v, ["ውሒዝ", "noun", "ውሒዛት", "", "", "", "river stream"]) + let v = native_list_append(v, ["መካን", "noun", "መካናት", "", "", "", "place"]) + let v = native_list_append(v, ["ግልባብ", "noun", "ግልባብ", "", "", "", "veil"]) + let v = native_list_append(v, ["ተክሪዝ", "noun", "ተክሪዝ", "", "", "", "proclamation promulgation edict"]) + let v = native_list_append(v, ["ዐምድ", "noun", "አዕማድ", "", "", "", "column supporting member"]) + let v = native_list_append(v, ["ምልሓ", "noun", "ምልሓ", "", "", "", "knowledge judgement wisdom"]) + let v = native_list_append(v, ["አእምሮ", "noun", "አእምሮ", "", "", "", "thought knowledge"]) + let v = native_list_append(v, ["ናሕስ", "noun", "አንሕስት", "", "", "", "copper"]) + let v = native_list_append(v, ["አርዝ", "noun", "አርዝ", "", "", "", "cedar"]) + let v = native_list_append(v, ["ዜና", "noun", "ዜናት", "", "", "", "announcement message news"]) + let v = native_list_append(v, ["ብዝኀት", "noun", "ብዝኀት", "", "", "", "multitude"]) + let v = native_list_append(v, ["ዖፍ", "noun", "አዕዋፍ", "", "", "", "bird"]) + let v = native_list_append(v, ["ኀይል", "noun", "ኀይላት", "", "", "", "life power force"]) + let v = native_list_append(v, ["ትእዛዝ", "noun", "ትእዛዛት", "", "", "", "imperial power"]) + let v = native_list_append(v, ["ቈጽል", "noun", "አቍጽል", "", "", "", "leaf leaves"]) + let v = native_list_append(v, ["ተመሃሪ", "noun", "ተመሃርያን", "", "", "", "student pupil disciple"]) + let v = native_list_append(v, ["ተልሚድ", "noun", "ተልሚድ", "", "", "", "student pupil disciple"]) + let v = native_list_append(v, ["ቀንአት", "noun", "ቀንአት", "", "", "", "galbanum or stacta"]) + let v = native_list_append(v, ["ሠቅ", "noun", "ሠቃት", "", "", "", "sackcloth"]) + let v = native_list_append(v, ["አቅሌስያ", "noun", "አቅሌስያ", "", "", "", "church"]) + let v = native_list_append(v, ["መብልዕ", "noun", "መባልዕ", "", "", "", "food sustenance"]) + let v = native_list_append(v, ["ደብር", "noun", "አድባራት", "", "", "", "mountain"]) + let v = native_list_append(v, ["ፄዋ", "noun", "ፄዋ", "", "", "", "exile"]) + let v = native_list_append(v, ["ዐዋዲ", "noun", "ዐዋዲ", "", "", "", "herald"]) + let v = native_list_append(v, ["ምዕዋድ", "noun", "ምዕዋዳት", "", "", "", "circuit orbit"]) + let v = native_list_append(v, ["ዕዋዴ", "noun", "ዕዋድያት", "", "", "", "globe circuit revolution"]) + let v = native_list_append(v, ["ሠያጢ", "noun", "ሠየጥ", "", "", "", "seller vendor"]) + let v = native_list_append(v, ["ሰገም", "noun", "ሰገም", "", "", "", "barley"]) + let v = native_list_append(v, ["አክሊል", "noun", "አክሊላት", "", "", "", "crown diadem tiara"]) + let v = native_list_append(v, ["ሥርው", "noun", "ሥረው", "", "", "", "root"]) + let v = native_list_append(v, ["ሠርዌ", "noun", "ሠራዊት", "", "", "", "beam rafter timber"]) + let v = native_list_append(v, ["ፈትል", "noun", "አፍታል", "", "", "", "thread yarn cord"]) + let v = native_list_append(v, ["ዝፍት", "noun", "ዝፍት", "", "", "", "pitch tar latex"]) + let v = native_list_append(v, ["ውሉድ", "noun", "ውሉድ", "", "", "", "plural of ወልድ"]) + let v = native_list_append(v, ["መጽሐፍ", "noun", "መጻሕፍት", "", "", "", "book"]) + let v = native_list_append(v, ["መልአክ", "noun", "መልአክት", "", "", "", "angel"]) + let v = native_list_append(v, ["ቍንፍዝ", "noun", "ቍንፍዝ", "", "", "", "hedgehog"]) + let v = native_list_append(v, ["ውዕላ", "noun", "ውዕላ", "", "", "", "an antelope or"]) + let v = native_list_append(v, ["ርግብ", "noun", "አርጋብ", "", "", "", "dove pigeon"]) + let v = native_list_append(v, ["መሀር", "noun", "አመሀረ", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ገብገብ", "noun", "ገብገብ", "", "", "", "entrance room vestibule"]) + let v = native_list_append(v, ["ጠሊ", "noun", "አጣሊ", "", "", "", "goat-child kid"]) + let v = native_list_append(v, ["ሀየል", "noun", "ሀየላት", "", "", "", "ibex"]) + let v = native_list_append(v, ["እማት", "noun", "እማት", "", "", "", "plural of እም"]) + let v = native_list_append(v, ["ሳሬት", "noun", "ሳሬት", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ሣሬት", "noun", "ሣሬት", "", "", "", "spider"]) + let v = native_list_append(v, ["ስብጥ", "noun", "ስብጥ", "", "", "", "rod pointed shaft"]) + let v = native_list_append(v, ["ሐማሴን", "noun", "ሐማሴን", "", "", "", "Hamasien a historical"]) + let v = native_list_append(v, ["ገቦ", "noun", "ገበዋት", "", "", "", "side flank of"]) + let v = native_list_append(v, ["እክል", "noun", "እክላት", "", "", "", "food"]) + let v = native_list_append(v, ["ሥራይ", "noun", "ሥራያት", "", "", "", "piece of witchcraft"]) + let v = native_list_append(v, ["ሢራይ", "noun", "ሢራያት", "", "", "", "a kind of"]) + let v = native_list_append(v, ["ልጓም", "noun", "ልጓማት", "", "", "", "bridle"]) + let v = native_list_append(v, ["ሣዕር", "noun", "አሥዕርት", "", "", "", "herb grass herbage"]) + let v = native_list_append(v, ["ዕጣን", "noun", "ዕጣናት", "", "", "", "incense odorament"]) + let v = native_list_append(v, ["ልብን", "noun", "ልብን", "", "", "", "storax Styrax officinalis"]) + let v = native_list_append(v, ["ዕንጐት", "noun", "ዕንጐታት", "", "", "", "mountain plum Ximenia"]) + let v = native_list_append(v, ["ትርንጐ", "noun", "ትርንጕ", "", "", "", "citron Citrus medica"]) + let v = native_list_append(v, ["ትርንጕ", "noun", "ትርንጕ", "", "", "", "plural of ትርንጐ"]) + let v = native_list_append(v, ["ገነት", "noun", "ገነታት", "", "", "", "garden park or"]) + let v = native_list_append(v, ["ሥርናይ", "noun", "ሥርናይ", "", "", "", "wheat"]) + let v = native_list_append(v, ["ተምር", "noun", "ተምር", "", "", "", "date fruit and"]) + let v = native_list_append(v, ["እራሕ", "noun", "እራሓት", "", "", "", "palm of the"]) + let v = native_list_append(v, ["ሰበን", "noun", "ሰበን", "", "", "", "kerchief miter scarf"]) + let v = native_list_append(v, ["ከላዴዎን", "noun", "ከላዴዎን", "", "", "", "Chaldean"]) + let v = native_list_append(v, ["ስናፔ", "noun", "ስናፔ", "", "", "", "mustard plant and"]) + let v = native_list_append(v, ["ጻጾት", "noun", "ጻጾት", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ጻጹት", "noun", "ጻጹት", "", "", "", "gnat"]) + let v = native_list_append(v, ["ፃፄ", "noun", "ፃፄ", "", "", "", "moth worm"]) + let v = native_list_append(v, ["ዕፄ", "noun", "ዕፄያት", "", "", "", "moth worm"]) + let v = native_list_append(v, ["ሮማን", "noun", "ሮማናት", "", "", "", "pomegranate"]) + let v = native_list_append(v, ["ሞት", "noun", "ሞት", "", "", "", "death"]) + let v = native_list_append(v, ["ብርስን", "noun", "ብርስነነ", "", "", "", "lentil"]) + let v = native_list_append(v, ["ነቢት", "noun", "ነቢት", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ነቢይት", "noun", "ነቢይት", "", "", "", "prophetess"]) + let v = native_list_append(v, ["ጎር", "noun", "አግዋር", "", "", "", "neighbour"]) + let v = native_list_append(v, ["ዐርክት", "noun", "ዐርካን", "", "", "", "female friend"]) + let v = native_list_append(v, ["ዐርክ", "noun", "ዐርካን", "", "", "", "friend"]) + let v = native_list_append(v, ["ገይስ", "noun", "ገይስ", "", "", "", "departure journey leave"]) + let v = native_list_append(v, ["ጌሰም", "noun", "ጌሰም", "", "", "", "tomorrow morrow"]) + let v = native_list_append(v, ["እብን", "noun", "እበን", "", "", "", "stone"]) + let v = native_list_append(v, ["አንቄ", "noun", "አናቅይ", "", "", "", "hawk kite"]) + let v = native_list_append(v, ["ሲላን", "noun", "ሲላን", "", "", "", "dill Anethum graveolens"]) + let v = native_list_append(v, ["ስለን", "noun", "ስለን", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ሲለን", "noun", "ሲለን", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ሰሊካ", "noun", "ሰሊካ", "", "", "", "cassia Cinnamomum cassia"]) + let v = native_list_append(v, ["ጸልመት", "noun", "ጸልመት", "", "", "", "darkness shade shadow"]) + let v = native_list_append(v, ["ጾላዕ", "noun", "ጾልዓት", "", "", "", "stone rock cliff"]) + let v = native_list_append(v, ["ጽሌ", "noun", "ጽሌ", "", "", "", "tablet"]) + let v = native_list_append(v, ["ውሳጤ", "noun", "ውሳጥያት", "", "", "", "the inside of"]) + let v = native_list_append(v, ["ስብከት", "noun", "ስብከት", "", "", "", "preaching proclaiming announcing"]) + let v = native_list_append(v, ["ፍሬ", "noun", "ፍሬ", "", "", "", "fruit"]) + let v = native_list_append(v, ["ሣህል", "noun", "ሣህላት", "", "", "", "mercy clemency leniency"]) + let v = native_list_append(v, ["ሰብእ", "noun", "ሰብእ", "", "", "", "man human mankind"]) + let v = native_list_append(v, ["ጽድቅ", "noun", "ጽድቅ", "", "", "", "law right justness"]) + let v = native_list_append(v, ["ድርዕ", "noun", "ድርዕ", "", "", "", "breastplate coat of"]) + let v = native_list_append(v, ["ድርገት", "noun", "ድርገታት", "", "", "", "union association congregation"]) + let v = native_list_append(v, ["ጻህቅ", "noun", "ጻህቃት", "", "", "", "desire"]) + let v = native_list_append(v, ["ርትዐ", "noun", "ርትዐ", "", "", "", "rectitude uprightness"]) + let v = native_list_append(v, ["መላጼ", "noun", "መላጽያት", "", "", "", "knife blade razor"]) + let v = native_list_append(v, ["ሄኖክ", "noun", "ሄኖክ", "", "", "", "Enoch"]) + let v = native_list_append(v, ["ጠራው", "noun", "ጠራው", "", "", "", "the Pleiades"]) + let v = native_list_append(v, ["ሰይል", "noun", "ሰይል", "", "", "", "woe sorrow malum"]) + let v = native_list_append(v, ["ሰይ", "noun", "ሰይ", "", "", "", "woe anguish malum"]) + let v = native_list_append(v, ["ዓመት", "noun", "ዓመታት", "", "", "", "year"]) + let v = native_list_append(v, ["አማዑት", "noun", "አማዕዋት", "", "", "", "bowels entrails"]) + let v = native_list_append(v, ["ባቄላ", "noun", "ባቄላ", "", "", "", "broad bean Vicia"]) + let v = native_list_append(v, ["ንግሥት", "noun", "ንግሥታት", "", "", "", "queen"]) + let v = native_list_append(v, ["ጥንፍ", "noun", "ጥነፍ", "", "", "", "prominence superstructure"]) + let v = native_list_append(v, ["ወቅፍ", "noun", "አውቃፍ", "", "", "", "bracelet armlet"]) + let v = native_list_append(v, ["ባቢሎን", "noun", "ባቢሎን", "", "", "", "Babylon"]) + let v = native_list_append(v, ["አቶር", "noun", "አቶር", "", "", "", "Assyria"]) + let v = native_list_append(v, ["ፋርስ", "noun", "ፋርስ", "", "", "", "Persia the Persians"]) + let v = native_list_append(v, ["ልብያ", "noun", "ልብያ", "", "", "", "Libya Greco-Roman client"]) + let v = native_list_append(v, ["መቄዶንያ", "noun", "መቄዶንያ", "", "", "", "Macedonia an ancient"]) + let v = native_list_append(v, ["ኖኅ", "noun", "ኖኅ", "", "", "", "Noah"]) + let v = native_list_append(v, ["ሳሙኤል", "noun", "ሳሙኤል", "", "", "", "Samuel"]) + let v = native_list_append(v, ["ስምዖን", "noun", "ስምዖን", "", "", "", "Simon Simeon"]) + let v = native_list_append(v, ["ስቅራጥ", "noun", "ስቅራጥ", "", "", "", "Socrates"]) + let v = native_list_append(v, ["ሳባ", "noun", "ሳባ", "", "", "", "Sheba Saba"]) + let v = native_list_append(v, ["አስብስጥያ", "noun", "አስብስጥያ", "", "", "", "Sebastia Ancient Greco-Roman"]) + let v = native_list_append(v, ["ሳኦል", "noun", "ሳኦል", "", "", "", "Saul"]) + let v = native_list_append(v, ["ሲድራስ", "noun", "ሲድራስ", "", "", "", "Isidorus"]) + let v = native_list_append(v, ["ዝክር", "noun", "ዝክር", "", "", "", "memory remembrance record"]) + let v = native_list_append(v, ["ይስሐቅ", "noun", "ይስሐቅ", "", "", "", "Isaac"]) + let v = native_list_append(v, ["ሰዐት", "noun", "ሰዐታት", "", "", "", "hour"]) + let v = native_list_append(v, ["ኀንዚር", "noun", "ኀናዚር", "", "", "", "pig swine"]) + let v = native_list_append(v, ["ሚዛን", "noun", "ሚዛን", "", "", "", "balance scales"]) + let v = native_list_append(v, ["መትከፍት", "noun", "መታክፍ", "", "", "", "shoulder"]) + let v = native_list_append(v, ["መትከፍ", "noun", "መታክፍ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ኵናት", "noun", "ኵያንው", "", "", "", "lance javelin shorter"]) + let v = native_list_append(v, ["ከኒሳ", "noun", "ከናይስ", "", "", "", "congregation synagogue religion"]) + let v = native_list_append(v, ["ኮር", "noun", "ኮር", "", "", "", "saddle"]) + let v = native_list_append(v, ["ፋሲካ", "noun", "ፋሲካ", "", "", "", "Easter"]) + let v = native_list_append(v, ["አስተስርዮ", "noun", "አስተስርዮ", "", "", "", "atonement"]) + let v = native_list_append(v, ["ምዕራብ", "noun", "ምዕራባት", "", "", "", "west"]) + let v = native_list_append(v, ["ጾም", "noun", "አጽዋም", "", "", "", "fast"]) + let v = native_list_append(v, ["ግብር", "noun", "ግበር", "", "", "", "action"]) + let v = native_list_append(v, ["ድንጋጌ", "noun", "ድንጋጌ", "", "", "", "shore bank"]) + let v = native_list_append(v, ["ዘመድ", "noun", "አዝማድ", "", "", "", "kin family relation"]) + let v = native_list_append(v, ["ወሰን", "noun", "ወሰን", "", "", "", "limit boundary end"]) + let v = native_list_append(v, ["ልደት", "noun", "ልደታት", "", "", "", "birth"]) + let v = native_list_append(v, ["ግዝረት", "noun", "ግዝረት", "", "", "", "circumcision"]) + let v = native_list_append(v, ["ኖላዊ", "noun", "ኖሎት", "", "", "", "shepherd"]) + let v = native_list_append(v, ["ነውር", "noun", "ነውራት", "", "", "", "blemish stain flaw"]) + let v = native_list_append(v, ["ሢመት", "noun", "ሢመታት", "", "", "", "location position place"]) + let v = native_list_append(v, ["ፈርዖን", "noun", "ፈርዖን", "", "", "", "Pharaoh"]) + let v = native_list_append(v, ["ጽዋዕ", "noun", "ጽዋዓት", "", "", "", "cup chalice goblet"]) + let v = native_list_append(v, ["ጸባሕት", "noun", "ጸበሓት", "", "", "", "tax tribute"]) + let v = native_list_append(v, ["ሕፄ", "noun", "ሕፄ", "", "", "", "dowry bride-price"]) + let v = native_list_append(v, ["ሕፍን", "noun", "ሕፍን", "", "", "", "handful"]) + let v = native_list_append(v, ["ቍርባን", "noun", "ቍርባናት", "", "", "", "sacrifice offering burnt-offering"]) + let v = native_list_append(v, ["ምሥዋዕ", "noun", "ምሥዋዓት", "", "", "", "altar"]) + let v = native_list_append(v, ["ማእነም", "noun", "ማእነም", "", "", "", "weaving sewing"]) + let v = native_list_append(v, ["ትጳዝዮን", "noun", "ትጳዝዮን", "", "", "", "topaz"]) + let v = native_list_append(v, ["ዘመረግድ", "noun", "ዘመረግድ", "", "", "", "emerald"]) + let v = native_list_append(v, ["ሐመር", "noun", "አሕማር", "", "", "", "ship"]) + let v = native_list_append(v, ["ፀምር", "noun", "ፀምር", "", "", "", "wool"]) + let v = native_list_append(v, ["ተድባብ", "noun", "ተድባባት", "", "", "", "roof canopy"]) + let v = native_list_append(v, ["ሐቅል", "noun", "አሕቁል", "", "", "", "field"]) + let v = native_list_append(v, ["ጸወን", "noun", "አጽዋን", "", "", "", "fortress citadel stronghold"]) + let v = native_list_append(v, ["ማኅፈድ", "noun", "መኃፍድ", "", "", "", "tower"]) + let v = native_list_append(v, ["ሞዐልት", "noun", "መዋዕል", "", "", "", "day"]) + let v = native_list_append(v, ["ሰቆቃው", "noun", "ሰቆቃው", "", "", "", "lamentation mourning wailing"]) + let v = native_list_append(v, ["ምሕረት", "noun", "ምሕረታት", "", "", "", "compassion pity commiseration"]) + let v = native_list_append(v, ["ምረር", "noun", "ምረራት", "", "", "", "bitterness acridity acerbity"]) + let v = native_list_append(v, ["ጽላተ", "noun", "ጽላት", "", "", "", "baldness"]) + let v = native_list_append(v, ["ምርዓይ", "noun", "ምርዓይ", "", "", "", "pasture fold"]) + let v = native_list_append(v, ["ቀትል", "noun", "ቀትል", "", "", "", "killing murder"]) + let v = native_list_append(v, ["በከ", "noun", "በከ", "", "", "", "vanity emptiness vacuousness"]) + let v = native_list_append(v, ["ዐርብ", "noun", "ዐርብ", "", "", "", "eve of the"]) + let v = native_list_append(v, ["ምስትግባር", "noun", "ምስትግባር", "", "", "", "market"]) + let v = native_list_append(v, ["ዮናን", "noun", "ዮናን", "", "", "", "Greece an ancient"]) + let v = native_list_append(v, ["ኦሪት", "noun", "ኦሪተነ", "", "", "", "the Torah the"]) + let v = native_list_append(v, ["ሊሎ", "noun", "ሊሎ", "", "", "", "vulture"]) + let v = native_list_append(v, ["ድልጕማ", "noun", "ድልጕማ", "", "", "", "bangle armlet or"]) + let v = native_list_append(v, ["ሕፅን", "noun", "ሕፀን", "", "", "", "bosom womb lap"]) + let v = native_list_append(v, ["መግል", "noun", "መግል", "", "", "", "pus"]) + let v = native_list_append(v, ["ሖመር", "noun", "አሕመር", "", "", "", "tamarind fruit and"]) + let v = native_list_append(v, ["አድባራት", "noun", "አድባራት", "", "", "", "plural of ደብር"]) + let v = native_list_append(v, ["አድባር", "noun", "አድባር", "", "", "", "plural of ደብር"]) + let v = native_list_append(v, ["ዳብር", "noun", "ዳብራት", "", "", "", "territory"]) + let v = native_list_append(v, ["ዳብራት", "noun", "ዳብራት", "", "", "", "plural of ዳብር"]) + let v = native_list_append(v, ["ደብራት", "noun", "ደብራት", "", "", "", "plural of ዳብር"]) + let v = native_list_append(v, ["ደብር ቅዱስ", "noun", "ደብር ቅዱስ", "", "", "", "according to tradition"]) + let v = native_list_append(v, ["ደብረ ሀገር", "noun", "ደብረ ሀገር", "", "", "", "metropolis"]) + let v = native_list_append(v, ["ዘደብረ ታቦር", "noun", "ዘደብረ ታቦር", "", "", "", "Feast of the"]) + let v = native_list_append(v, ["ደብረ ዘይት", "noun", "ደብረ ዘይት", "", "", "", "Mount of Olives"]) + let v = native_list_append(v, ["ዘደብረ ዘይት", "noun", "ዘደብረ ዘይት", "", "", "", "name of the"]) + let v = native_list_append(v, ["ዳቤር", "noun", "ዳቤር", "", "", "", "shrine"]) + let v = native_list_append(v, ["ዳቢር", "noun", "ዳቢር", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ዴቤቅ", "noun", "ዴቤቅ", "", "", "", "fort fortress"]) + let v = native_list_append(v, ["ዘርቤን", "noun", "ዘርቤን", "", "", "", "perfume"]) + let v = native_list_append(v, ["ዘርቤዶ", "noun", "ዘርቤዶ", "", "", "", "guinea fowl"]) + let v = native_list_append(v, ["የካ፟ቲት", "noun", "የካ፟ቲት", "", "", "", "Alternative spelling with"]) + let v = native_list_append(v, ["ሎሎ", "noun", "ሎሎ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["አጽባዕት", "noun", "አጻብዕ", "", "", "", "finger toe"]) + let v = native_list_append(v, ["ዐፅም", "noun", "አዕፅምት", "", "", "", "bone"]) + let v = native_list_append(v, ["ጋንን", "noun", "አጋንንት", "", "", "", "demon"]) + let v = native_list_append(v, ["ጽምእ", "noun", "ጽምእ", "", "", "", "thirst"]) + let v = native_list_append(v, ["አርስጣጣሉ", "noun", "አርስጣጣሉ", "", "", "", "wizard"]) + let v = native_list_append(v, ["ብሉይ ኪዳን", "noun", "ብሉይ ኪዳን", "", "", "", "Old Testament"]) + let v = native_list_append(v, ["ከይሲ", "noun", "አክይስት", "", "", "", "dragon serpent"]) + let v = native_list_append(v, ["ራድእ", "noun", "አርዳእ", "", "", "", "helper disciple"]) + let v = native_list_append(v, ["ታቦት", "noun", "ታቦታት", "", "", "", "ark"]) + let v = native_list_append(v, ["አርዌ", "noun", "አራዊት", "", "", "", "wild animal beast"]) + let v = native_list_append(v, ["ሰማዒ", "noun", "ሰማዕያን", "", "", "", "listener hearer audience"]) + let v = native_list_append(v, ["ፀር", "noun", "አፅራር", "", "", "", "enemy foe"]) + let v = native_list_append(v, ["ፍርሀት", "noun", "ፍርሀታት", "", "", "", "fear"]) + let v = native_list_append(v, ["ዘርእ", "noun", "አዝርእት", "", "", "", "seed"]) + let v = native_list_append(v, ["እኅው", "noun", "አኀው", "", "", "", "brother"]) + let v = native_list_append(v, ["ርዴ", "noun", "ርዴ", "", "", "", "usury interest"]) + let v = native_list_append(v, ["አጋር", "noun", "አጋር", "", "", "", "Hagar the handmaiden"]) + let v = native_list_append(v, ["ሤጥ", "noun", "ሤጥ", "", "", "", "trade business buying"]) + let v = native_list_append(v, ["አስተብቋዒ", "noun", "አስተብቋዒ", "", "", "", "supplicant requester"]) + let v = native_list_append(v, ["ወይጠል", "noun", "ወይጠላት", "", "", "", "roe-deer a wild"]) + let v = native_list_append(v, ["ምኔት", "noun", "ምኔታት", "", "", "", "monastery"]) + let v = native_list_append(v, ["ተጽናስ", "noun", "ተጽናስ", "", "", "", "poverty need want"]) + let v = native_list_append(v, ["ልማድ", "noun", "ልማደት", "", "", "", "custom norm usage"]) + let v = native_list_append(v, ["ሠርም", "noun", "አሥራም", "", "", "", "the abyss the"]) + let v = native_list_append(v, ["ጋግ", "noun", "ጋጋት", "", "", "", "chain irons yoke"]) + let v = native_list_append(v, ["ፍኖት", "noun", "ፍናው", "", "", "", "journey way"]) + let v = native_list_append(v, ["ሥንት", "noun", "ሥንት", "", "", "", "urine"]) + let v = native_list_append(v, ["ሠላሳ", "other", "ሠላሳ", "", "", "", "thirty"]) + let v = native_list_append(v, ["አሐዱ", "other", "አሐዱ", "", "", "", "one 1"]) + let v = native_list_append(v, ["ክልኤቱ", "other", "ክልኤቱ", "", "", "", "two 2"]) + let v = native_list_append(v, ["አሐቲ", "other", "አሐቲ", "", "", "", "one 1"]) + let v = native_list_append(v, ["ክልኤቲ", "other", "ክልኤቲ", "", "", "", "two 2"]) + let v = native_list_append(v, ["ሠለስቱ", "other", "ሠለስቱ", "", "", "", "three 3"]) + let v = native_list_append(v, ["አርባዕቱ", "other", "አርባዕቱ", "", "", "", "four 4"]) + let v = native_list_append(v, ["ኀምስቱ", "other", "ኀምስቱ", "", "", "", "five 5"]) + let v = native_list_append(v, ["ስድስቱ", "other", "ስድስቱ", "", "", "", "six 6"]) + let v = native_list_append(v, ["ሰብዐቱ", "other", "ሰብዐቱ", "", "", "", "seven 7"]) + let v = native_list_append(v, ["ሰማንቱ", "other", "ሰማንቱ", "", "", "", "eight 8"]) + let v = native_list_append(v, ["ተስዐቱ", "other", "ተስዐቱ", "", "", "", "nine 9"]) + let v = native_list_append(v, ["ዐሠርቱ", "other", "ዐሠርቱ", "", "", "", "ten 10"]) + let v = native_list_append(v, ["ሠላስ", "other", "ሠላስ", "", "", "", "three 3"]) + let v = native_list_append(v, ["ሠልስ", "other", "ሠልስ", "", "", "", "third 3rd"]) + let v = native_list_append(v, ["አርባዕ", "other", "አርባዕ", "", "", "", "four 4"]) + let v = native_list_append(v, ["ኀምስ", "other", "ኀምስ", "", "", "", "five 5"]) + let v = native_list_append(v, ["ስሱ", "other", "ስሱ", "", "", "", "six 6"]) + let v = native_list_append(v, ["ሰብዑ", "other", "ሰብዑ", "", "", "", "seven 7"]) + let v = native_list_append(v, ["ሰማኒ", "other", "ሰማኒ", "", "", "", "eight 8"]) + let v = native_list_append(v, ["ትስዑ", "other", "ትስዑ", "", "", "", "nine 9"]) + let v = native_list_append(v, ["ዐሥሩ", "other", "ዐሥሩ", "", "", "", "ten 10"]) + let v = native_list_append(v, ["ዳግም", "other", "ዳግም", "", "", "", "second 2nd"]) + let v = native_list_append(v, ["ካዕብ", "other", "ካዕብ", "", "", "", "second 2nd"]) + let v = native_list_append(v, ["ካልእ", "other", "ካልእ", "", "", "", "second 2nd"]) + let v = native_list_append(v, ["ኦ", "other", "ኦ", "", "", "", "Interjection expressing pain"]) + let v = native_list_append(v, ["ሰይል", "other", "ሰይል", "", "", "", "woe! alas!"]) + let v = native_list_append(v, ["ዓዲ", "adv", "ዓዲ", "", "", "", "yet still even"]) + let v = native_list_append(v, ["ኢ", "adv", "ኢ", "", "", "", "Negating adverb which"]) + let v = native_list_append(v, ["ታሕት", "adv", "ታሕት", "", "", "", "below under underneath"]) + let v = native_list_append(v, ["ክመ", "adv", "ክመ", "", "", "", "almost like"]) + let v = native_list_append(v, ["ለፌ", "adv", "ለፌ", "", "", "", "thence here and"]) + let v = native_list_append(v, ["ህየ", "adv", "ህየ", "", "", "", "there"]) + let v = native_list_append(v, ["ዮም", "adv", "ዮም", "", "", "", "today"]) + let v = native_list_append(v, ["ጌሰም", "adv", "ጌሰም", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["አንተ", "pron", "አንተ", "", "", "", "you thou masculine"]) + let v = native_list_append(v, ["ሁ", "pron", "ሁ", "", "", "", "him his it"]) + let v = native_list_append(v, ["ነ", "pron", "ነ", "", "", "", "us our bound"]) + let v = native_list_append(v, ["ከ", "pron", "ከ", "", "", "", "you your masculine"]) + let v = native_list_append(v, ["የ", "pron", "የ", "", "", "", "my bound object"]) + let v = native_list_append(v, ["ሃ", "pron", "ሃ", "", "", "", "her bound object"]) + let v = native_list_append(v, ["አንቲ", "pron", "አንቲ", "", "", "", "you thou feminine"]) + let v = native_list_append(v, ["ኪ", "pron", "ኪ", "", "", "", "you your feminine"]) + let v = native_list_append(v, ["ኒ", "pron", "ኒ", "", "", "", "me bound object"]) + let v = native_list_append(v, ["አነ", "pron", "አነ", "", "", "", "I first person"]) + let v = native_list_append(v, ["ቅዱስ", "adj", "ቅዱስ", "", "", "", "holy sacred"]) + let v = native_list_append(v, ["ቀዳሚ", "adj", "ቀዳሚ", "", "ቀዳሚት", "", "first"]) + let v = native_list_append(v, ["ቀዳሚት", "adj", "ቀዳሚት", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["ጸሊም", "adj", "ጸሊም", "", "ጸላም", "", "black dark-colored"]) + let v = native_list_append(v, ["ቀደምት", "adj", "ቀደምት", "", "", "", "masculine plural of"]) + let v = native_list_append(v, ["ቀዳምያት", "adj", "ቀዳምያት", "", "", "", "feminine plural of"]) + let v = native_list_append(v, ["ብዙኅ", "adj", "ብዙኅ", "", "", "", "much"]) + let v = native_list_append(v, ["ድልው", "adj", "ድልው", "", "", "", "worthy"]) + let v = native_list_append(v, ["ደብራዊ", "adj", "ደብራዊ", "", "", "", "mountainous"]) + let v = native_list_append(v, ["ጽሙእ", "adj", "ጽሙእ", "", "", "", "thirsty parched"]) + let v = native_list_append(v, ["ዐቢይ", "adj", "ዐቢይ", "", "ዐባይ", "", "large big great"]) + let v = native_list_append(v, ["አዳም", "adj", "አዳም", "", "", "", "delightful pleasant sweet"]) + let v = native_list_append(v, ["ቆበረ", "verb", "ḳobärä", "", "", "", "to become black"]) + let v = native_list_append(v, ["ሰበረ", "verb", "säbärä", "ይስብር", "", "", "to break"]) + let v = native_list_append(v, ["በልዐ", "verb", "bälʿä", "", "", "", "to eat consume"]) + let v = native_list_append(v, ["ቆመ", "verb", "ḳomä", "", "", "", "to stand"]) + let v = native_list_append(v, ["ዘመረ", "verb", "zämärä", "", "", "", "to sing"]) + let v = native_list_append(v, ["ከረዘ", "verb", "käräzä", "", "", "", "to proclaim preach"]) + let v = native_list_append(v, ["መሀረ", "verb", "mähärä", "", "", "", "to teach instruct"]) + let v = native_list_append(v, ["ተመሀረ", "verb", "tämähärä", "", "", "", "to be taught"]) + let v = native_list_append(v, ["ጸለለ", "verb", "ṣälälä", "", "", "", "to hover float"]) + let v = native_list_append(v, ["ብህለ", "verb", "bəhlä", "", "", "", "to say"]) + let v = native_list_append(v, ["ሰምዐ", "verb", "sämʿä", "", "", "", "to hear"]) + let v = native_list_append(v, ["በረቀ", "verb", "bäräḳä", "", "", "", "to lightning"]) + let v = native_list_append(v, ["ፄወወ", "verb", "ṣ́ewäwä", "", "", "", "to capture take"]) + let v = native_list_append(v, ["ተርጐመ", "verb", "tärgʷämä", "", "", "", "to translate"]) + let v = native_list_append(v, ["ሞተ", "verb", "motä", "conjugation ይሙት", "", "", "to die"]) + let v = native_list_append(v, ["ፈጸመ", "verb", "fäṣämä", "", "", "", "to execute complete"]) + let v = native_list_append(v, ["ጸሐፈ", "verb", "ṣäḥäfä", "conjugation ይጽሐፍ", "", "", "to write"]) + let v = native_list_append(v, ["ቀበረ", "verb", "ḳäbärä", "", "", "", "to bury"]) + let v = native_list_append(v, ["መሀር", "verb", "mähär", "", "", "", "imperative of መሀረ"]) + let v = native_list_append(v, ["ዘበጠ", "verb", "zäbäṭä", "conjugation ይዝብጥ", "", "", "to beat to"]) + let v = native_list_append(v, ["ጌሰ", "verb", "gesä", "ገይስ", "conjugation ይጊስ", "", "to depart journey"]) + let v = native_list_append(v, ["ፈርየ", "verb", "färyä", "ፈረየ", "", "", "to flower to"]) + let v = native_list_append(v, ["ከተበ", "verb", "kätäbä", "conjugation ይክትብ", "", "", "to write to"]) + let v = native_list_append(v, ["መዘነ", "verb", "mäzzänä", "", "", "", "to weigh"]) + let v = native_list_append(v, ["ወረደ", "verb", "wärädä", "", "", "", "to descend go"]) + let v = native_list_append(v, ["ኖመ", "verb", "nomä", "ይኑም", "", "", "to sleep"]) + let v = native_list_append(v, ["ለብሰ", "verb", "läbsä", "", "", "", "to clothe dress"]) + let v = native_list_append(v, ["ሰቀለ", "verb", "säḳälä", "", "", "", "to hang"]) + let v = native_list_append(v, ["ሰቈረ", "verb", "säḳʷärä", "", "", "", "to perforate bore"]) + let v = native_list_append(v, ["ወቀረ", "verb", "wäḳärä", "", "", "", "to excavate dig"]) + let v = native_list_append(v, ["ቀተለ", "verb", "ḳätälä", "", "", "", "to kill slay"]) + let v = native_list_append(v, ["ነግሠ", "verb", "nägśä", "ይንግሥ", "", "", "to rule reign"]) + let v = native_list_append(v, ["ሐፀነ", "verb", "ḥäṣ́änä", "ይሕፅን", "", "", "to nurse nourish"]) + let v = native_list_append(v, ["ጸምአ", "verb", "ṣämʾä", "", "", "", "to thirst"]) + let v = native_list_append(v, ["አጽምአ", "verb", "ʾäṣməʾä", "", "", "", "to make thirsty"]) + let v = native_list_append(v, ["ፈየተ", "verb", "ፈየ̄ተ", "fäyätä", "fäyyätä", "", "to rob to"]) + let v = native_list_append(v, ["ሐበሠ", "verb", "ḥäbäśä", "", "", "", "to collect to"]) + let v = native_list_append(v, ["ፈጽሐ", "verb", "fäṣḥä", "", "", "", "to crush grind"]) + let v = native_list_append(v, ["ሰትየ", "verb", "sätyä", "", "", "", "to drink"]) + let v = native_list_append(v, ["ኀርየ", "verb", "ḫäryä", "", "", "", "to choose select"]) + let v = native_list_append(v, ["ጸግበ", "verb", "ṣägbä", "", "", "", "to be satisfied"]) + let v = native_list_append(v, ["አእመነ", "verb", "ʾäʾmänä", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ነሥአ", "verb", "näśʾä", "", "", "", "to take up"]) + let v = native_list_append(v, ["ወፅአ", "verb", "wäṣ́ʾä", "", "", "", "to leave go"]) + let v = native_list_append(v, ["ቀለለ", "verb", "ḳälälä", "", "", "", "to be light"]) + let v = native_list_append(v, ["ተወለጠ", "verb", "täwäläṭä", "", "", "", "to be changed"]) + let v = native_list_append(v, ["ወለጠ", "verb", "wäläṭä", "", "", "", "to change alter"]) + let v = native_list_append(v, ["ለሀበ", "verb", "lähäbä", "", "", "", "to burn emit"]) + let v = native_list_append(v, ["ነተገ", "verb", "nätägä", "", "", "", "to decrease diminish"]) + let v = native_list_append(v, ["ወደየ", "verb", "wädäyä", "", "", "", "to cast throw"]) + let v = native_list_append(v, ["ወረወ", "verb", "wäräwä", "", "", "", "to cast throw"]) + let v = native_list_append(v, ["ወዐለ", "verb", "wäʿälä", "", "", "", "to delay stay"]) + let v = native_list_append(v, ["ለ-", "prep", "ለ-", "", "", "", "to for belonging"]) + let v = native_list_append(v, ["መልዕልተ", "prep", "መልዕልተ", "", "", "", "on upon on"]) + let v = native_list_append(v, ["ክመ", "prep", "ክመ", "", "", "", "like as"]) + let v = native_list_append(v, ["ዲበ", "prep", "ዲበ", "", "", "", "to on for"]) + let v = native_list_append(v, ["ላዕለ", "prep", "ላዕለ", "", "", "", "above on upon"]) + let v = native_list_append(v, ["ውስተ", "prep", "ውስተ", "", "", "", "In into"]) + let v = native_list_append(v, ["እም", "conj", "እም", "", "", "", "if introduces the"]) + let v = native_list_append(v, ["ወ-", "conj", "ወ-", "", "", "", "and"]) + let v = native_list_append(v, ["ክመ", "conj", "ክመ", "", "", "", "like as"]) + let v = native_list_append(v, ["አላ", "conj", "አላ", "", "", "", "but yet"]) + let v = native_list_append(v, ["እመ", "conj", "እመ", "", "", "", "if introduces the"]) + let v = native_list_append(v, ["-አ", "particle", "-አ", "", "", "", "Genesis 325 Ethiopic"]) + return v +} + +fn vocab_gez_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_gez_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-goh.el b/elp/src/vocabulary-goh.el new file mode 100644 index 0000000..5796692 --- /dev/null +++ b/elp/src/vocabulary-goh.el @@ -0,0 +1,3530 @@ +// vocabulary-goh.el — Old High German vocabulary seed +// 3509 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 3509 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_goh_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["aband", "noun", "ābandā", "ābandes", "ābande", "", "evening"]) + let v = native_list_append(v, ["wolf", "noun", "wolfa", "wolfes", "wolfe", "", "wolf Canis lupus"]) + let v = native_list_append(v, ["man", "noun", "mannā", "mannes", "manne", "", "man"]) + let v = native_list_append(v, ["is", "noun", "is", "", "", "", "ice"]) + let v = native_list_append(v, ["fart", "noun", "fart", "", "", "", "trip"]) + let v = native_list_append(v, ["bot", "noun", "bot", "", "", "", "opinion decision."]) + let v = native_list_append(v, ["most", "noun", "most", "", "", "", "must"]) + let v = native_list_append(v, ["bank", "noun", "bank", "", "", "", "bench"]) + let v = native_list_append(v, ["stand", "noun", "stand", "", "", "", "stand"]) + let v = native_list_append(v, ["henna", "noun", "henna", "", "", "", "hen"]) + let v = native_list_append(v, ["hunt", "noun", "huntā", "huntes", "hunte", "", "dog"]) + let v = native_list_append(v, ["arm", "noun", "armā", "armes", "arme", "", "arm"]) + let v = native_list_append(v, ["not", "noun", "not", "", "", "", "control by violence"]) + let v = native_list_append(v, ["rat", "noun", "rātā", "rātes", "rāte", "", "advice counsel a"]) + let v = native_list_append(v, ["lob", "noun", "lob", "", "", "", "praise"]) + let v = native_list_append(v, ["hut", "noun", "hūti", "hūti", "hūti", "", "hide"]) + let v = native_list_append(v, ["amber", "noun", "amber", "", "", "", "bucket"]) + let v = native_list_append(v, ["al", "noun", "ālā", "āles", "āle", "", "eel"]) + let v = native_list_append(v, ["ans", "noun", "ans", "", "", "", "deity god"]) + let v = native_list_append(v, ["pizza", "noun", "pizza", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kara", "noun", "karā", "karōno", "karu", "", "sorrow lamentation"]) + let v = native_list_append(v, ["gans", "noun", "gans", "", "", "", "goose"]) + let v = native_list_append(v, ["rata", "noun", "rata", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["rato", "noun", "raton", "raten", "raten", "", "rat"]) + let v = native_list_append(v, ["nada", "noun", "nādā", "nāda", "nādu", "", "favour"]) + let v = native_list_append(v, ["palm", "noun", "palmā", "palmes", "palme", "", "palm tree"]) + let v = native_list_append(v, ["er", "noun", "er", "", "", "", "ore"]) + let v = native_list_append(v, ["burst", "noun", "burst", "", "", "", "bristle"]) + let v = native_list_append(v, ["got", "noun", "gotā", "gotes", "gote", "", "god"]) + let v = native_list_append(v, ["sin", "noun", "sinā", "sines", "sine", "", "sense"]) + let v = native_list_append(v, ["thing", "noun", "thingo", "thinges", "thinge", "", "alternative form of"]) + let v = native_list_append(v, ["ring", "noun", "ringā", "ringes", "ringe", "", "ring object in"]) + let v = native_list_append(v, ["sprung", "noun", "sprungā", "sprunges", "sprunge", "", "jump"]) + let v = native_list_append(v, ["stank", "noun", "stank", "", "", "", "smell"]) + let v = native_list_append(v, ["era", "noun", "ērā", "ēra", "ēru", "", "honour"]) + let v = native_list_append(v, ["far", "noun", "far", "", "", "", "steer"]) + let v = native_list_append(v, ["ano", "noun", "anon", "anen", "anen", "", "grandfather"]) + let v = native_list_append(v, ["rate", "noun", "rate", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wal", "noun", "walā", "wales", "wale", "", "whale"]) + let v = native_list_append(v, ["want", "noun", "want", "", "", "", "a wall"]) + let v = native_list_append(v, ["hun", "noun", "hun", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["nazi", "noun", "nazi", "nazī", "nazī", "", "wetness"]) + let v = native_list_append(v, ["boc", "noun", "boc", "", "", "", "buck male deer"]) + let v = native_list_append(v, ["stein", "noun", "steinā", "steines", "steine", "", "stone"]) + let v = native_list_append(v, ["meri", "noun", "mere", "meres", "mere", "", "sea"]) + let v = native_list_append(v, ["mus", "noun", "mūsi", "mūsi", "mūsi", "", "mouse"]) + let v = native_list_append(v, ["ei", "noun", "ei", "", "", "", "an egg"]) + let v = native_list_append(v, ["wat", "noun", "wato", "wates", "wate", "", "ford"]) + let v = native_list_append(v, ["turn", "noun", "turnā", "turnes", "turne", "", "tower"]) + let v = native_list_append(v, ["altar", "noun", "altar", "", "", "", "age"]) + let v = native_list_append(v, ["horn", "noun", "horn", "", "", "", "horn"]) + let v = native_list_append(v, ["rind", "noun", "rind", "", "", "", "cattle"]) + let v = native_list_append(v, ["riga", "noun", "riga", "", "", "", "line"]) + let v = native_list_append(v, ["wort", "noun", "worto", "wortes", "worte", "", "word"]) + let v = native_list_append(v, ["tod", "noun", "tod", "", "", "", "death cessation of"]) + let v = native_list_append(v, ["ars", "noun", "arsā", "arses", "arse", "", "arse"]) + let v = native_list_append(v, ["gast", "noun", "gesti", "gastes", "gaste", "", "guest"]) + let v = native_list_append(v, ["berg", "noun", "bërgā", "bërges", "bërge", "", "mountain hill"]) + let v = native_list_append(v, ["mano", "noun", "mānon", "mānen", "mānen", "", "moon"]) + let v = native_list_append(v, ["nord", "noun", "nord", "", "", "", "north"]) + let v = native_list_append(v, ["rad", "noun", "rad", "", "", "", "wheel"]) + let v = native_list_append(v, ["fah", "noun", "fah", "", "", "", "wall"]) + let v = native_list_append(v, ["lid", "noun", "lid", "", "", "", "member"]) + let v = native_list_append(v, ["lamb", "noun", "lembir", "lambes", "lambe", "", "lamb"]) + let v = native_list_append(v, ["frost", "noun", "frostā", "frostes", "froste", "", "frost"]) + let v = native_list_append(v, ["mos", "noun", "mos", "", "", "", "moss"]) + let v = native_list_append(v, ["weg", "noun", "wëga", "wëges", "wëge", "", "way"]) + let v = native_list_append(v, ["zit", "noun", "zit", "", "", "", "time"]) + let v = native_list_append(v, ["hus", "noun", "hūs", "hūses", "hūse", "", "house"]) + let v = native_list_append(v, ["barn", "noun", "barno", "barnes", "barne", "", "child"]) + let v = native_list_append(v, ["spot", "noun", "spotā", "spotes", "spote", "", "mockery"]) + let v = native_list_append(v, ["grunt", "noun", "gruntā", "gruntes", "grunte", "", "ground"]) + let v = native_list_append(v, ["atto", "noun", "atton", "atten", "atten", "", "father"]) + let v = native_list_append(v, ["grab", "noun", "grab", "", "", "", "grave"]) + let v = native_list_append(v, ["mahal", "noun", "mahal", "", "", "", "court judicial assembly"]) + let v = native_list_append(v, ["wanna", "noun", "wanna", "", "", "", "tub"]) + let v = native_list_append(v, ["stern", "noun", "sternā", "sternes", "sterne", "", "alternative form of"]) + let v = native_list_append(v, ["ala", "noun", "ala", "", "", "", "awl"]) + let v = native_list_append(v, ["hol", "noun", "hol", "", "", "", "hollow"]) + let v = native_list_append(v, ["alba", "noun", "alba", "", "", "", "alpine pasture"]) + let v = native_list_append(v, ["ero", "noun", "ero", "", "", "", "earth"]) + let v = native_list_append(v, ["hring", "noun", "hringā", "hringes", "hringe", "", "ring"]) + let v = native_list_append(v, ["val", "noun", "val", "", "", "", "fall"]) + let v = native_list_append(v, ["saga", "noun", "saga", "", "", "", "story"]) + let v = native_list_append(v, ["herd", "noun", "herd", "", "", "", "hearth"]) + let v = native_list_append(v, ["tag", "noun", "taga", "tages", "tage", "", "day"]) + let v = native_list_append(v, ["jar", "noun", "jar", "", "", "", "year"]) + let v = native_list_append(v, ["falt", "noun", "falt", "", "", "", "fold"]) + let v = native_list_append(v, ["alar", "noun", "alarā", "alares", "alare", "", "alder"]) + let v = native_list_append(v, ["busk", "noun", "busk", "", "", "", "bush"]) + let v = native_list_append(v, ["joh", "noun", "joh", "", "", "", "yoke"]) + let v = native_list_append(v, ["bira", "noun", "bira", "", "", "", "pear"]) + let v = native_list_append(v, ["hals", "noun", "halsā", "halses", "halse", "", "neck"]) + let v = native_list_append(v, ["figa", "noun", "figa", "", "", "", "fig"]) + let v = native_list_append(v, ["ana", "noun", "ana", "", "", "", "grandmother"]) + let v = native_list_append(v, ["blat", "noun", "bletir", "", "", "", "leaf"]) + let v = native_list_append(v, ["brant", "noun", "brant", "", "", "", "burning"]) + let v = native_list_append(v, ["muff", "noun", "muff", "", "", "", "mould"]) + let v = native_list_append(v, ["sib", "noun", "sib", "", "", "", "Sieve"]) + let v = native_list_append(v, ["gang", "noun", "ganga", "ganges", "gange", "", "A path course"]) + let v = native_list_append(v, ["tutto", "noun", "tutto", "", "", "", "nipple"]) + let v = native_list_append(v, ["fel", "noun", "fel", "", "", "", "A fur."]) + let v = native_list_append(v, ["helm", "noun", "helm", "", "", "", "helmet"]) + let v = native_list_append(v, ["fist", "noun", "fistā", "fistes", "fiste", "", "fart"]) + let v = native_list_append(v, ["fara", "noun", "fara", "", "", "", "danger peril"]) + let v = native_list_append(v, ["ora", "noun", "ōrun", "ōren", "ōren", "", "ear organ of"]) + let v = native_list_append(v, ["tal", "noun", "tal", "", "", "", "valley"]) + let v = native_list_append(v, ["ferro", "noun", "ferron", "ferren", "ferren", "", "skipper"]) + let v = native_list_append(v, ["folk", "noun", "folko", "folkes", "folke", "", "people folk"]) + let v = native_list_append(v, ["mandala", "noun", "mandala", "", "", "", "almond"]) + let v = native_list_append(v, ["bero", "noun", "bëron", "bëren", "bëren", "", "bear"]) + let v = native_list_append(v, ["tung", "noun", "tung", "", "", "", "a barn covered"]) + let v = native_list_append(v, ["bona", "noun", "bōnā", "bōna", "bōnu", "", "A bean"]) + let v = native_list_append(v, ["boto", "noun", "boton", "boten", "boten", "", "messenger envoy"]) + let v = native_list_append(v, ["brio", "noun", "brio", "", "", "", "mash as in"]) + let v = native_list_append(v, ["rates", "noun", "rates", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["wisheit", "noun", "wisheit", "", "", "", "wisdom"]) + let v = native_list_append(v, ["nid", "noun", "nīdā", "nīdes", "nīde", "", "envy"]) + let v = native_list_append(v, ["nasa", "noun", "nasā", "nasōno", "nasu", "", "nose"]) + let v = native_list_append(v, ["sind", "noun", "sindā", "sindes", "sinde", "", "way"]) + let v = native_list_append(v, ["wer", "noun", "wer", "", "", "", "man"]) + let v = native_list_append(v, ["heri", "noun", "herie", "heries", "herie", "", "army"]) + let v = native_list_append(v, ["donar", "noun", "donarā", "donares", "donare", "", "thunder"]) + let v = native_list_append(v, ["sola", "noun", "sola", "", "", "", "sole of a"]) + let v = native_list_append(v, ["knabo", "noun", "knabon", "knaben", "knaben", "", "boy"]) + let v = native_list_append(v, ["dac", "noun", "dac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["raza", "noun", "rāȥūn", "rāȥūn", "rāȥūn", "", "honeycomb"]) + let v = native_list_append(v, ["riso", "noun", "riso", "", "", "", "giant"]) + let v = native_list_append(v, ["scuola", "noun", "scuolā", "scuolōno", "scuolu", "", "school"]) + let v = native_list_append(v, ["morgan", "noun", "morgan", "", "", "", "morning"]) + let v = native_list_append(v, ["vart", "noun", "vart", "", "", "", "trip"]) + let v = native_list_append(v, ["quena", "noun", "quenā", "quenōno", "quenu", "", "woman"]) + let v = native_list_append(v, ["missa", "noun", "missā", "missōno", "missu", "", "Mass"]) + let v = native_list_append(v, ["kela", "noun", "kela", "", "", "", "throat"]) + let v = native_list_append(v, ["hafta", "noun", "hafta", "", "", "", "custody"]) + let v = native_list_append(v, ["deo", "noun", "deo", "", "", "", "servant"]) + let v = native_list_append(v, ["tunga", "noun", "tunga", "", "", "", "dung"]) + let v = native_list_append(v, ["stat", "noun", "stat", "", "", "", "place site spot"]) + let v = native_list_append(v, ["Heldin", "noun", "Heldinnā", "Heldinna", "Heldinnu", "", "a female given"]) + let v = native_list_append(v, ["Hun", "noun", "Hun", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["Otto", "noun", "Otton", "Otten", "Otten", "", "a male given"]) + let v = native_list_append(v, ["Popo", "noun", "Popo", "", "", "", "a male given"]) + let v = native_list_append(v, ["felis", "noun", "felis", "", "", "", "cliff"]) + let v = native_list_append(v, ["wacko", "noun", "wacko", "", "", "", "rock boulder"]) + let v = native_list_append(v, ["wald", "noun", "wald", "", "", "", "forest"]) + let v = native_list_append(v, ["wurm", "noun", "wurm", "", "", "", "snake"]) + let v = native_list_append(v, ["haz", "noun", "haz", "", "", "", "hate"]) + let v = native_list_append(v, ["eid", "noun", "eid", "", "", "", "oath"]) + let v = native_list_append(v, ["reo", "noun", "reo", "", "", "", "corpse"]) + let v = native_list_append(v, ["soc", "noun", "soc", "", "", "", "sock"]) + let v = native_list_append(v, ["lib", "noun", "lībā", "lībes", "lībe", "", "life"]) + let v = native_list_append(v, ["ot", "noun", "ot", "", "", "", "wealth treasure"]) + let v = native_list_append(v, ["aro", "noun", "aron", "aren", "aren", "", "eagle"]) + let v = native_list_append(v, ["har", "noun", "har", "", "", "", "hair"]) + let v = native_list_append(v, ["karst", "noun", "karstā", "karstes", "karste", "", "mattock hoe"]) + let v = native_list_append(v, ["kol", "noun", "kol", "", "", "", "coal"]) + let v = native_list_append(v, ["leben", "noun", "leben", "", "", "", "life"]) + let v = native_list_append(v, ["salmo", "noun", "salmon", "salmen", "salmen", "", "salmon"]) + let v = native_list_append(v, ["amma", "noun", "amma", "", "", "", "wet nurse"]) + let v = native_list_append(v, ["bara", "noun", "bara", "", "", "", "bier"]) + let v = native_list_append(v, ["sumar", "noun", "sumarā", "sumares", "sumare", "", "summer"]) + let v = native_list_append(v, ["bein", "noun", "beino", "beines", "beine", "", "leg"]) + let v = native_list_append(v, ["bita", "noun", "bita", "", "", "", "request inquiry"]) + let v = native_list_append(v, ["aska", "noun", "aska", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bur", "noun", "būrā", "būres", "būre", "", "dwelling quarters bower"]) + let v = native_list_append(v, ["horo", "noun", "horo", "horowes", "", "", "swampy soil"]) + let v = native_list_append(v, ["mund", "noun", "mundā", "mundes", "munde", "", "mouth"]) + let v = native_list_append(v, ["suno", "noun", "suno", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["festi", "noun", "festī", "festī", "festī", "", "firmness"]) + let v = native_list_append(v, ["sida", "noun", "sida", "", "", "", "silk"]) + let v = native_list_append(v, ["Spania", "noun", "Spania", "", "", "", "Iberian Peninsula a"]) + let v = native_list_append(v, ["burg", "noun", "burgi", "burgi", "burgi", "", "a castle"]) + let v = native_list_append(v, ["kolo", "noun", "kolo", "", "", "", "savoy"]) + let v = native_list_append(v, ["frosk", "noun", "froskā", "froskes", "froske", "", "frog"]) + let v = native_list_append(v, ["pluot", "noun", "pluot", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sunu", "noun", "sunu", "", "", "", "son"]) + let v = native_list_append(v, ["ancho", "noun", "anchon", "anchen", "anchen", "", "butter"]) + let v = native_list_append(v, ["bizzo", "noun", "bizzo", "", "", "", "bite morsel chunk"]) + let v = native_list_append(v, ["zand", "noun", "zandi", "zando", "zandim", "", "A tooth."]) + let v = native_list_append(v, ["grifo", "noun", "grīfon", "grīfen", "grīfen", "", "griffin"]) + let v = native_list_append(v, ["haba", "noun", "haba", "", "", "", "property"]) + let v = native_list_append(v, ["warmi", "noun", "warmi", "warmī", "warmī", "", "warmth"]) + let v = native_list_append(v, ["fink", "noun", "fink", "", "", "", "finch"]) + let v = native_list_append(v, ["garn", "noun", "garn", "", "", "", "yarn"]) + let v = native_list_append(v, ["ger", "noun", "gērā", "gēres", "gēre", "", "spear"]) + let v = native_list_append(v, ["seo", "noun", "seo", "", "", "", "sea"]) + let v = native_list_append(v, ["unc", "noun", "unc", "", "", "", "snake"]) + let v = native_list_append(v, ["elina", "noun", "elinā", "elinōno", "elinu", "", "ulna ell elbow"]) + let v = native_list_append(v, ["ding", "noun", "dingo", "dinges", "dinge", "", "thing object"]) + let v = native_list_append(v, ["anker", "noun", "anker", "", "", "", "anchor"]) + let v = native_list_append(v, ["fluor", "noun", "fluorā", "fluores", "fluore", "", "seed"]) + let v = native_list_append(v, ["rama", "noun", "rama", "", "", "", "support"]) + let v = native_list_append(v, ["mago", "noun", "magon", "magen", "magen", "", "stomach"]) + let v = native_list_append(v, ["liska", "noun", "liska", "", "", "", "sedge reed"]) + let v = native_list_append(v, ["sunne", "noun", "sunne", "", "", "", "legal obligation"]) + let v = native_list_append(v, ["distil", "noun", "distil", "", "", "", "thistle"]) + let v = native_list_append(v, ["grap", "noun", "grap", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sterk", "noun", "sterkā", "sterkes", "sterke", "", "guineapig"]) + let v = native_list_append(v, ["walt", "noun", "walt", "", "", "", "authority"]) + let v = native_list_append(v, ["inwit", "noun", "inwit", "", "", "", "deceit cunning craftiness"]) + let v = native_list_append(v, ["fisk", "noun", "fiskā", "fiskes", "fiske", "", "fish"]) + let v = native_list_append(v, ["ort", "noun", "ort", "", "", "", "sharp point"]) + let v = native_list_append(v, ["kus", "noun", "kus", "", "", "", "kiss"]) + let v = native_list_append(v, ["haru", "noun", "haru", "", "", "", "flax"]) + let v = native_list_append(v, ["krig", "noun", "krig", "", "", "", "persistence stubbornness"]) + let v = native_list_append(v, ["quat", "noun", "quat", "", "", "", "mud"]) + let v = native_list_append(v, ["bure", "noun", "bure", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heil", "noun", "heil", "", "", "", "luck"]) + let v = native_list_append(v, ["hodo", "noun", "hodon", "hoden", "hoden", "", "testicle"]) + let v = native_list_append(v, ["mord", "noun", "mord", "", "", "", "murder"]) + let v = native_list_append(v, ["hinta", "noun", "hinta", "", "", "", "hind"]) + let v = native_list_append(v, ["ringa", "noun", "ringa", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["turi", "noun", "turi", "", "", "", "door"]) + let v = native_list_append(v, ["rasta", "noun", "rasta", "", "", "", "rest"]) + let v = native_list_append(v, ["seito", "noun", "seiton", "seiten", "seiten", "", "string"]) + let v = native_list_append(v, ["hamar", "noun", "hamar", "", "", "", "hammer"]) + let v = native_list_append(v, ["biga", "noun", "biga", "", "", "", "pile heap"]) + let v = native_list_append(v, ["naba", "noun", "naba", "", "", "", "nave"]) + let v = native_list_append(v, ["huso", "noun", "hūson", "hūsen", "hūsen", "", "sturgeon and other"]) + let v = native_list_append(v, ["brut", "noun", "brut", "", "", "", "bride"]) + let v = native_list_append(v, ["loup", "noun", "loup", "", "", "", "leaves"]) + let v = native_list_append(v, ["maz", "noun", "maz", "", "", "", "food meat"]) + let v = native_list_append(v, ["rinda", "noun", "rinda", "", "", "", "rind"]) + let v = native_list_append(v, ["stado", "noun", "stadon", "staden", "staden", "", "shore"]) + let v = native_list_append(v, ["ahir", "noun", "ahir", "", "", "", "ear of corn"]) + let v = native_list_append(v, ["rogo", "noun", "rogo", "", "", "", "roe of fish"]) + let v = native_list_append(v, ["scala", "noun", "scala", "", "", "", "shell"]) + let v = native_list_append(v, ["beri", "noun", "beri", "", "", "", "A berry"]) + let v = native_list_append(v, ["kasi", "noun", "kasi", "", "", "", "cheese"]) + let v = native_list_append(v, ["ratu", "noun", "ratu", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["baro", "noun", "barwa", "barwes", "barwe", "", "sanctuary"]) + let v = native_list_append(v, ["treno", "noun", "trënon", "trënen", "trënen", "", "drone"]) + let v = native_list_append(v, ["hamo", "noun", "hamon", "hamen", "hamen", "", "garment"]) + let v = native_list_append(v, ["fruma", "noun", "frumā", "frumōno", "frumu", "", "benefit"]) + let v = native_list_append(v, ["furt", "noun", "furt", "", "", "", "ford"]) + let v = native_list_append(v, ["marha", "noun", "marha", "", "", "", "mare"]) + let v = native_list_append(v, ["marchat", "noun", "marchat", "", "", "", "market"]) + let v = native_list_append(v, ["holuntar", "noun", "holuntar", "", "", "", "elder"]) + let v = native_list_append(v, ["wechalter", "noun", "wechalter", "", "", "", "juniper"]) + let v = native_list_append(v, ["kelih", "noun", "kelih", "", "", "", "chalice"]) + let v = native_list_append(v, ["kelich", "noun", "kelich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chuhhina", "noun", "chuhhina", "", "", "", "kitchen"]) + let v = native_list_append(v, ["mulin", "noun", "mulīni", "mulīni", "mulīni", "", "mill"]) + let v = native_list_append(v, ["fuotar", "noun", "fuotar", "", "", "", "fodder"]) + let v = native_list_append(v, ["sconi", "noun", "sconi", "scōnī", "scōnī", "", "niceness"]) + let v = native_list_append(v, ["mado", "noun", "madon", "maden", "maden", "", "maggot"]) + let v = native_list_append(v, ["mura", "noun", "mūrā", "mūra", "mūru", "", "wall"]) + let v = native_list_append(v, ["rihhi", "noun", "rīhhi", "rīhhes", "rīhhe", "", "empire kingdom realm"]) + let v = native_list_append(v, ["uter", "noun", "uter", "", "", "", "udder"]) + let v = native_list_append(v, ["wara", "noun", "wara", "", "", "", "attention"]) + let v = native_list_append(v, ["magad", "noun", "magad", "", "", "", "maiden"]) + let v = native_list_append(v, ["maht", "noun", "mahti", "mahti", "mahti", "", "might"]) + let v = native_list_append(v, ["apful", "noun", "apfuli", "apfules", "apfule", "", "apple"]) + let v = native_list_append(v, ["apfultra", "noun", "apfultra", "", "", "", "apple tree"]) + let v = native_list_append(v, ["tagon", "noun", "tagon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tac", "noun", "tac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["naht", "noun", "naht", "", "", "", "night"]) + let v = native_list_append(v, ["affo", "noun", "affon", "affen", "affen", "", "monkey"]) + let v = native_list_append(v, ["kuo", "noun", "kuo", "", "", "", "cow"]) + let v = native_list_append(v, ["swert", "noun", "swërt", "swërtes", "swërte", "", "sword"]) + let v = native_list_append(v, ["scur", "noun", "scūri", "scūres", "scūre", "", "shower"]) + let v = native_list_append(v, ["semfti", "noun", "semfti", "semftī", "semftī", "", "softness"]) + let v = native_list_append(v, ["segal", "noun", "segalā", "segales", "segale", "", "sail"]) + let v = native_list_append(v, ["slaf", "noun", "slāfā", "slāfes", "slāfe", "", "sleep"]) + let v = native_list_append(v, ["niuwi", "noun", "niuwi", "niuwī", "niuwī", "", "newness"]) + let v = native_list_append(v, ["storh", "noun", "storh", "", "", "", "stork"]) + let v = native_list_append(v, ["suozi", "noun", "suozi", "suozī", "suozī", "", "sweetness"]) + let v = native_list_append(v, ["wic", "noun", "wic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["houf", "noun", "houf", "", "", "", "heap"]) + let v = native_list_append(v, ["erda", "noun", "ërdā", "ërda", "ërdu", "", "The Earth"]) + let v = native_list_append(v, ["nabalo", "noun", "nabalo", "", "", "", "navel"]) + let v = native_list_append(v, ["arbeo", "noun", "arbeon", "arbeen", "arbeen", "", "heir"]) + let v = native_list_append(v, ["erbi", "noun", "erbi", "", "", "", "heritage"]) + let v = native_list_append(v, ["holz", "noun", "holzo", "holzes", "holze", "", "wood"]) + let v = native_list_append(v, ["nuz", "noun", "nuz", "", "", "", "nut"]) + let v = native_list_append(v, ["mulinari", "noun", "mulinari", "", "", "", "miller"]) + let v = native_list_append(v, ["alamuosa", "noun", "alamuosa", "", "", "", "alms"]) + let v = native_list_append(v, ["asca", "noun", "asca", "", "", "", "ash remnants of"]) + let v = native_list_append(v, ["ast", "noun", "ast", "", "", "", "branch"]) + let v = native_list_append(v, ["taht", "noun", "taht", "", "", "", "wick"]) + let v = native_list_append(v, ["ebur", "noun", "eburā", "ebures", "ebure", "", "boar"]) + let v = native_list_append(v, ["ewa", "noun", "ewa", "", "", "", "law"]) + let v = native_list_append(v, ["eihhorno", "noun", "eihhorno", "", "", "", "squirrel"]) + let v = native_list_append(v, ["egidehsa", "noun", "egidehsa", "", "", "", "lizard"]) + let v = native_list_append(v, ["ambaht", "noun", "ambaht", "", "", "", "service"]) + let v = native_list_append(v, ["arawiz", "noun", "arawiz", "", "", "", "pea"]) + let v = native_list_append(v, ["essa", "noun", "essa", "", "", "", "furnace"]) + let v = native_list_append(v, ["fust", "noun", "fūsti", "fūsti", "fūsti", "", "fist"]) + let v = native_list_append(v, ["fira", "noun", "fira", "", "", "", "celebration"]) + let v = native_list_append(v, ["fenstar", "noun", "fenstar", "", "", "", "window"]) + let v = native_list_append(v, ["fraga", "noun", "fraga", "", "", "", "question"]) + let v = native_list_append(v, ["pfluma", "noun", "pfluma", "", "", "", "fluff"]) + let v = native_list_append(v, ["gir", "noun", "gīrā", "gīres", "gīre", "", "vulture"]) + let v = native_list_append(v, ["giri", "noun", "giri", "", "", "", "greed"]) + let v = native_list_append(v, ["ginada", "noun", "ginādā", "gināda", "ginādu", "", "mercy"]) + let v = native_list_append(v, ["habuch", "noun", "habuch", "", "", "", "hawk"]) + let v = native_list_append(v, ["arn", "noun", "arn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hevanna", "noun", "hevanna", "", "", "", "midwife"]) + let v = native_list_append(v, ["hevo", "noun", "hevon", "heven", "heven", "", "yeast"]) + let v = native_list_append(v, ["uwila", "noun", "ūwilūn", "ūwilūn", "ūwilūn", "", "owl"]) + let v = native_list_append(v, ["hagzissa", "noun", "hagzissa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hutta", "noun", "hutta", "", "", "", "hut"]) + let v = native_list_append(v, ["houg", "noun", "houg", "", "", "", "mound"]) + let v = native_list_append(v, ["hulla", "noun", "hulla", "", "", "", "head covering"]) + let v = native_list_append(v, ["hona", "noun", "hona", "", "", "", "mock"]) + let v = native_list_append(v, ["chevia", "noun", "chevia", "", "", "", "cave"]) + let v = native_list_append(v, ["chasi", "noun", "chasi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["keisar", "noun", "keisarā", "keisares", "keisare", "", "emperor"]) + let v = native_list_append(v, ["kirihha", "noun", "kirihha", "", "", "", "church"]) + let v = native_list_append(v, ["kirsa", "noun", "kirsa", "", "", "", "cherry"]) + let v = native_list_append(v, ["zwibollo", "noun", "zwibollo", "", "", "", "onion"]) + let v = native_list_append(v, ["kihhira", "noun", "kihhira", "", "", "", "chickpea"]) + let v = native_list_append(v, ["spisa", "noun", "spisa", "", "", "", "meal"]) + let v = native_list_append(v, ["wantlus", "noun", "wantlus", "", "", "", "bedbug"]) + let v = native_list_append(v, ["lina", "noun", "lina", "", "", "", "a line a"]) + let v = native_list_append(v, ["mila", "noun", "mila", "", "", "", "mile"]) + let v = native_list_append(v, ["mezzisahs", "noun", "mezzisahs", "", "", "", "knife"]) + let v = native_list_append(v, ["mittawehha", "noun", "mittawehha", "", "", "", "Wednesday"]) + let v = native_list_append(v, ["mitti", "noun", "mitti", "", "", "", "middle"]) + let v = native_list_append(v, ["sambaztag", "noun", "sambaȥtagā", "sambaȥtages", "sambaȥtage", "", "Saturday"]) + let v = native_list_append(v, ["sunna", "noun", "sunnūn", "sunnūn", "sunnūn", "", "sun"]) + let v = native_list_append(v, ["pfeffar", "noun", "pfeffar", "", "", "", "pepper"]) + let v = native_list_append(v, ["pfal", "noun", "pfal", "", "", "", "stake"]) + let v = native_list_append(v, ["phanna", "noun", "phanna", "", "", "", "pan"]) + let v = native_list_append(v, ["pfawo", "noun", "pfāwon", "pfāwen", "pfāwen", "", "peacock"]) + let v = native_list_append(v, ["pfil", "noun", "pfil", "", "", "", "arrow"]) + let v = native_list_append(v, ["pfilari", "noun", "pfīlāre", "pfīlāres", "pfīlāre", "", "pillar"]) + let v = native_list_append(v, ["pfarifrit", "noun", "pfarifritā", "pfarifrites", "pfarifrite", "", "horse"]) + let v = native_list_append(v, ["pflanza", "noun", "pflanza", "", "", "", "plant"]) + let v = native_list_append(v, ["pflastar", "noun", "pflastar", "", "", "", "sticking plaster"]) + let v = native_list_append(v, ["pfruma", "noun", "pfruma", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pforta", "noun", "pforta", "", "", "", "door"]) + let v = native_list_append(v, ["pfost", "noun", "pfost", "", "", "", "post"]) + let v = native_list_append(v, ["pfunt", "noun", "pfunt", "", "", "", "pound"]) + let v = native_list_append(v, ["donaristag", "noun", "donaristagā", "donaristages", "donaristage", "", "Thursday"]) + let v = native_list_append(v, ["Fria", "noun", "Fria", "", "", "", "Goddess Frigg"]) + let v = native_list_append(v, ["tuoch", "noun", "tuoch", "", "", "", "cloth"]) + let v = native_list_append(v, ["questa", "noun", "questa", "", "", "", "tassel"]) + let v = native_list_append(v, ["quecsilbar", "noun", "quecsilbar", "", "", "", "mercury"]) + let v = native_list_append(v, ["silbar", "noun", "silbar", "", "", "", "silver"]) + let v = native_list_append(v, ["twerc", "noun", "twërcā", "twërces", "twërce", "", "dwarf"]) + let v = native_list_append(v, ["ratih", "noun", "ratih", "", "", "", "radish"]) + let v = native_list_append(v, ["gouh", "noun", "gouhā", "gouhes", "gouhe", "", "cuckoo"]) + let v = native_list_append(v, ["scamil", "noun", "scamil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiluf", "noun", "skiluf", "", "", "", "reed rush"]) + let v = native_list_append(v, ["sita", "noun", "sita", "", "", "", "side"]) + let v = native_list_append(v, ["senef", "noun", "senef", "", "", "", "mustard"]) + let v = native_list_append(v, ["streno", "noun", "streno", "", "", "", "strand of hair"]) + let v = native_list_append(v, ["riomo", "noun", "riomon", "riomen", "riomen", "", "strap belt"]) + let v = native_list_append(v, ["riemo", "noun", "riemo", "", "", "", "oar"]) + let v = native_list_append(v, ["herizogo", "noun", "herizogon", "herizogen", "herizogen", "", "duke"]) + let v = native_list_append(v, ["zogo", "noun", "zogo", "", "", "", "leader"]) + let v = native_list_append(v, ["struz", "noun", "strūȥā", "strūȥes", "strūȥe", "", "ostrich"]) + let v = native_list_append(v, ["hopfo", "noun", "hopfon", "hopfen", "hopfen", "", "hop the plant"]) + let v = native_list_append(v, ["karpho", "noun", "karphon", "karphen", "karphen", "", "carp"]) + let v = native_list_append(v, ["krapho", "noun", "kraphon", "kraphen", "kraphen", "", "hook"]) + let v = native_list_append(v, ["stro", "noun", "stro", "", "", "", "straw"]) + let v = native_list_append(v, ["stuba", "noun", "stuba", "", "", "", "a heated room"]) + let v = native_list_append(v, ["samo", "noun", "sāmon", "sāmen", "sāmen", "", "seed"]) + let v = native_list_append(v, ["besamo", "noun", "besamon", "besamen", "besamen", "", "broom"]) + let v = native_list_append(v, ["brunno", "noun", "brunnon", "brunnen", "brunnen", "", "well"]) + let v = native_list_append(v, ["gomo", "noun", "gomon", "gomen", "gomen", "", "man"]) + let v = native_list_append(v, ["hano", "noun", "hanon", "hanen", "hanen", "", "cock male chicken"]) + let v = native_list_append(v, ["herro", "noun", "hērron", "hērren", "hērren", "", "lord master"]) + let v = native_list_append(v, ["lenzo", "noun", "lenzo", "", "", "", "spring season"]) + let v = native_list_append(v, ["namo", "noun", "namon", "namen", "namen", "", "name"]) + let v = native_list_append(v, ["nollo", "noun", "nollon", "nollen", "nollen", "", "hill"]) + let v = native_list_append(v, ["olbenta", "noun", "olbenta", "", "", "", "camel"]) + let v = native_list_append(v, ["grafio", "noun", "grafio", "", "", "", "ruler"]) + let v = native_list_append(v, ["kempfo", "noun", "kempfon", "kempfen", "kempfen", "", "warrior"]) + let v = native_list_append(v, ["lihamo", "noun", "lihamo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lih", "noun", "līhi", "līhi", "līhi", "", "body"]) + let v = native_list_append(v, ["gilaubo", "noun", "gilaubo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gisellio", "noun", "gisellio", "", "", "", "companion"]) + let v = native_list_append(v, ["mennisko", "noun", "menniskon", "mennisken", "mennisken", "", "a man"]) + let v = native_list_append(v, ["mittemo", "noun", "mittemon", "mittemen", "mittemen", "", "middle"]) + let v = native_list_append(v, ["scolo", "noun", "scolon", "scolen", "scolen", "", "debtor"]) + let v = native_list_append(v, ["sparo", "noun", "sparo", "", "", "", "sparrow"]) + let v = native_list_append(v, ["sterno", "noun", "sternon", "sternen", "sternen", "", "star"]) + let v = native_list_append(v, ["stallo", "noun", "stallon", "stallen", "stallen", "", "fellow"]) + let v = native_list_append(v, ["cundo", "noun", "cundon", "cunden", "cunden", "", "associate fellow friend"]) + let v = native_list_append(v, ["wahsmo", "noun", "wahsmon", "wahsmen", "wahsmen", "", "fruit"]) + let v = native_list_append(v, ["weiso", "noun", "weison", "weisen", "weisen", "", "orphan"]) + let v = native_list_append(v, ["sahho", "noun", "sahhon", "sahhen", "sahhen", "", "accuser"]) + let v = native_list_append(v, ["willo", "noun", "willon", "willen", "willen", "", "will wish desire"]) + let v = native_list_append(v, ["wizago", "noun", "wīzagon", "wīzagen", "wīzagen", "", "prophet"]) + let v = native_list_append(v, ["gifeho", "noun", "gifehon", "gifehen", "gifehen", "", "joy"]) + let v = native_list_append(v, ["anto", "noun", "anton", "anten", "anten", "", "zeal"]) + let v = native_list_append(v, ["magazogo", "noun", "magazogon", "magazogen", "magazogen", "", "educator"]) + let v = native_list_append(v, ["bluomo", "noun", "bluomon", "bluomen", "bluomen", "", "flower"]) + let v = native_list_append(v, ["bogo", "noun", "bogon", "bogen", "bogen", "", "bow"]) + let v = native_list_append(v, ["borto", "noun", "borton", "borten", "borten", "", "rim"]) + let v = native_list_append(v, ["brato", "noun", "brato", "", "", "", "meat muscle meat"]) + let v = native_list_append(v, ["brutigomo", "noun", "brūtigomon", "brūtigomen", "brūtigomen", "", "bridegroom"]) + let v = native_list_append(v, ["dumo", "noun", "dūmon", "dūmen", "dūmen", "", "thumb"]) + let v = native_list_append(v, ["totoro", "noun", "totoron", "totoren", "totoren", "", "yolk"]) + let v = native_list_append(v, ["trahho", "noun", "trahhon", "trahhen", "trahhen", "", "dragon"]) + let v = native_list_append(v, ["einhurno", "noun", "einhurno", "", "", "", "A unicorn mythical"]) + let v = native_list_append(v, ["elho", "noun", "elhon", "elhen", "elhen", "", "elk moose"]) + let v = native_list_append(v, ["faso", "noun", "fason", "fasen", "fasen", "", "fibre"]) + let v = native_list_append(v, ["finco", "noun", "fincon", "fincen", "fincen", "", "A finch"]) + let v = native_list_append(v, ["friatag", "noun", "frīatagā", "frīatages", "frīatage", "", "Friday"]) + let v = native_list_append(v, ["flado", "noun", "fladon", "fladen", "fladen", "", "a ceremonial cake"]) + let v = native_list_append(v, ["fridu", "noun", "fridu", "", "", "", "peace"]) + let v = native_list_append(v, ["funcho", "noun", "funchon", "funchen", "funchen", "", "spark"]) + let v = native_list_append(v, ["furisto", "noun", "furiston", "furisten", "furisten", "", "prince"]) + let v = native_list_append(v, ["galgo", "noun", "galgon", "galgen", "galgen", "", "gallows"]) + let v = native_list_append(v, ["garto", "noun", "garton", "garten", "garten", "", "fenced land enclosed"]) + let v = native_list_append(v, ["goumo", "noun", "goumon", "goumen", "goumen", "", "palate"]) + let v = native_list_append(v, ["habaro", "noun", "habaron", "habaren", "habaren", "", "oat"]) + let v = native_list_append(v, ["hako", "noun", "hākon", "hāken", "hāken", "", "hook"]) + let v = native_list_append(v, ["haso", "noun", "hason", "hasen", "hasen", "", "hare"]) + let v = native_list_append(v, ["heidano", "noun", "heidanon", "heidanen", "heidanen", "", "heathen"]) + let v = native_list_append(v, ["huosto", "noun", "huoston", "huosten", "huosten", "", "cough"]) + let v = native_list_append(v, ["kasto", "noun", "kaston", "kasten", "kasten", "", "box case"]) + let v = native_list_append(v, ["kimo", "noun", "kīmon", "kīmen", "kīmen", "", "germ"]) + let v = native_list_append(v, ["kneo", "noun", "kneo", "", "", "", "knee"]) + let v = native_list_append(v, ["knoto", "noun", "knoton", "knoten", "knoten", "", "knot"]) + let v = native_list_append(v, ["kuocho", "noun", "kuocho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["leimo", "noun", "leimon", "leimen", "leimen", "", "loam"]) + let v = native_list_append(v, ["melo", "noun", "melo", "", "", "", "flour"]) + let v = native_list_append(v, ["metu", "noun", "metu", "", "", "", "mead"]) + let v = native_list_append(v, ["narro", "noun", "narron", "narren", "narren", "", "clown"]) + let v = native_list_append(v, ["nevo", "noun", "nevon", "neven", "neven", "", "nephew"]) + let v = native_list_append(v, ["nioro", "noun", "nioron", "nioren", "nioren", "", "kidney"]) + let v = native_list_append(v, ["ohso", "noun", "ohson", "ohsen", "ohsen", "", "ox"]) + let v = native_list_append(v, ["rahho", "noun", "rahhon", "rahhen", "rahhen", "", "throat"]) + let v = native_list_append(v, ["rifo", "noun", "rīfon", "rīfen", "rīfen", "", "hoar"]) + let v = native_list_append(v, ["reigaro", "noun", "reigaro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heigaro", "noun", "heigaron", "heigaren", "heigaren", "", "heron"]) + let v = native_list_append(v, ["rocko", "noun", "rockon", "rocken", "rocken", "", "rye"]) + let v = native_list_append(v, ["reho", "noun", "rēhon", "rēhen", "rēhen", "", "roe deer"]) + let v = native_list_append(v, ["tiufal", "noun", "tiufala", "tiufales", "tiufale", "", "devil"]) + let v = native_list_append(v, ["drubo", "noun", "drūbon", "drūben", "drūben", "", "grape"]) + let v = native_list_append(v, ["tropfo", "noun", "tropfon", "tropfen", "tropfen", "", "drop"]) + let v = native_list_append(v, ["tumphilo", "noun", "tumphilo", "", "", "", "pool"]) + let v = native_list_append(v, ["fetiro", "noun", "fetiro", "", "", "", "cousin"]) + let v = native_list_append(v, ["fihu", "noun", "fihu", "", "", "", "cattle"]) + let v = native_list_append(v, ["wado", "noun", "wado", "", "", "", "calf of leg"]) + let v = native_list_append(v, ["wehha", "noun", "wëhhūn", "wëhhūn", "wëhhūn", "", "week"]) + let v = native_list_append(v, ["einber", "noun", "einber", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amsala", "noun", "amsala", "", "", "", "blackbird"]) + let v = native_list_append(v, ["asc", "noun", "asc", "", "", "", "ash tree"]) + let v = native_list_append(v, ["backo", "noun", "backon", "backen", "backen", "", "cheek"]) + let v = native_list_append(v, ["balo", "noun", "balo", "", "", "", "destruction"]) + let v = native_list_append(v, ["balz", "noun", "balz", "", "", "", "belt"]) + let v = native_list_append(v, ["bano", "noun", "banon", "banen", "banen", "", "killer murderer"]) + let v = native_list_append(v, ["biscof", "noun", "biscof", "", "", "", "A bishop."]) + let v = native_list_append(v, ["blio", "noun", "blio", "", "", "", "lead element"]) + let v = native_list_append(v, ["bremo", "noun", "bremo", "", "", "", "gadfly"]) + let v = native_list_append(v, ["burgeo", "noun", "burgeo", "", "", "", "surety"]) + let v = native_list_append(v, ["cheviro", "noun", "cheviron", "cheviren", "cheviren", "", "A beetle"]) + let v = native_list_append(v, ["kerno", "noun", "kernon", "kernen", "kernen", "", "core"]) + let v = native_list_append(v, ["knappo", "noun", "knappon", "knappen", "knappen", "", "lad"]) + let v = native_list_append(v, ["taha", "noun", "taha", "", "", "", "jackdaw"]) + let v = native_list_append(v, ["koufo", "noun", "koufon", "koufen", "koufen", "", "merchant trader"]) + let v = native_list_append(v, ["koufon", "noun", "koufon", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["kouf", "noun", "kouf", "", "", "", "commerce trade"]) + let v = native_list_append(v, ["kocho", "noun", "kochon", "kochen", "kochen", "", "a ship with"]) + let v = native_list_append(v, ["kolbo", "noun", "kolbon", "kolben", "kolben", "", "club"]) + let v = native_list_append(v, ["klobo", "noun", "klobon", "kloben", "kloben", "", "fetter trap"]) + let v = native_list_append(v, ["chleo", "noun", "chleo", "", "", "", "clover"]) + let v = native_list_append(v, ["kezzil", "noun", "keȥȥilā", "keȥȥiles", "keȥȥile", "", "kettle"]) + let v = native_list_append(v, ["armilo", "noun", "armilon", "armilen", "armilen", "", "armband"]) + let v = native_list_append(v, ["elinbogo", "noun", "elinbogon", "elinbogen", "elinbogen", "", "The elbow"]) + let v = native_list_append(v, ["fano", "noun", "fanon", "fanen", "fanen", "", "flag fane"]) + let v = native_list_append(v, ["falco", "noun", "falcon", "falcen", "falcen", "", "falcon"]) + let v = native_list_append(v, ["farah", "noun", "farah", "", "", "", "A pig"]) + let v = native_list_append(v, ["fendo", "noun", "fendon", "fenden", "fenden", "", "infantryman"]) + let v = native_list_append(v, ["floccho", "noun", "floccho", "", "", "", "flock tufts of"]) + let v = native_list_append(v, ["folo", "noun", "folon", "folen", "folen", "", "foal"]) + let v = native_list_append(v, ["folla", "noun", "folla", "", "", "", "completeness"]) + let v = native_list_append(v, ["grabo", "noun", "grabo", "", "", "", "ditch"]) + let v = native_list_append(v, ["gisindo", "noun", "gisindon", "gisinden", "gisinden", "", "travel companion"]) + let v = native_list_append(v, ["gazza", "noun", "gazza", "", "", "", "lane"]) + let v = native_list_append(v, ["vaz", "noun", "vaz", "", "", "", "vessel"]) + let v = native_list_append(v, ["gimazzo", "noun", "gimazzon", "gimazzen", "gimazzen", "", "table companion"]) + let v = native_list_append(v, ["ginozo", "noun", "ginozo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giferto", "noun", "giferton", "giferten", "giferten", "", "companion"]) + let v = native_list_append(v, ["gingibero", "noun", "gingiberon", "gingiberen", "gingiberen", "", "ginger"]) + let v = native_list_append(v, ["grozi", "noun", "grozi", "grōzī", "grōzī", "", "size"]) + let v = native_list_append(v, ["fulli", "noun", "fulli", "fullī", "fullī", "", "fullness"]) + let v = native_list_append(v, ["guoti", "noun", "guotī", "guotī", "guotī", "", "goodness"]) + let v = native_list_append(v, ["hohi", "noun", "hōhī", "hōhī", "hōhī", "", "height"]) + let v = native_list_append(v, ["nahi", "noun", "nahi", "nāhī", "nāhī", "", "vicinity"]) + let v = native_list_append(v, ["breiti", "noun", "breiti", "breitī", "breitī", "", "breadth"]) + let v = native_list_append(v, ["harti", "noun", "harti", "hartī", "hartī", "", "hardness"]) + let v = native_list_append(v, ["starchi", "noun", "starchī", "starchī", "starchī", "", "strength"]) + let v = native_list_append(v, ["lengi", "noun", "lengi", "lengī", "lengī", "", "length"]) + let v = native_list_append(v, ["kurzi", "noun", "kurzī", "kurzī", "kurzī", "", "shortness"]) + let v = native_list_append(v, ["tiufe", "noun", "tiufe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scepho", "noun", "scephon", "scephen", "scephen", "", "creator"]) + let v = native_list_append(v, ["zago", "noun", "zagon", "zagen", "zagen", "", "rabbit"]) + let v = native_list_append(v, ["zagal", "noun", "zagal", "", "", "", "tail"]) + let v = native_list_append(v, ["hufo", "noun", "hūfon", "hūfen", "hūfen", "", "heap"]) + let v = native_list_append(v, ["hugu", "noun", "hugu", "", "", "", "thought"]) + let v = native_list_append(v, ["zungal", "noun", "zungalo", "zungales", "zungale", "", "star astrum sidus"]) + let v = native_list_append(v, ["harmo", "noun", "harmon", "harmen", "harmen", "", "ermine"]) + let v = native_list_append(v, ["ila", "noun", "īlā", "īla", "īlu", "", "hurry"]) + let v = native_list_append(v, ["jugund", "noun", "jugund", "", "", "", "youth"]) + let v = native_list_append(v, ["luppi", "noun", "luppi", "", "", "", "drug"]) + let v = native_list_append(v, ["niz", "noun", "niz", "", "", "", "nit"]) + let v = native_list_append(v, ["noz", "noun", "noz", "", "", "", "cattle"]) + let v = native_list_append(v, ["nezzila", "noun", "nezzila", "", "", "", "nettle"]) + let v = native_list_append(v, ["nezzi", "noun", "nezzi", "", "", "", "net"]) + let v = native_list_append(v, ["nebul", "noun", "nebul", "", "", "", "fog"]) + let v = native_list_append(v, ["adal", "noun", "adal", "", "", "", "nobility"]) + let v = native_list_append(v, ["pfaffo", "noun", "pfaffon", "pfaffen", "pfaffen", "", "priest"]) + let v = native_list_append(v, ["pfuzzi", "noun", "pfuzzi", "", "", "", "pool"]) + let v = native_list_append(v, ["querdar", "noun", "querdar", "", "", "", "bait"]) + let v = native_list_append(v, ["quala", "noun", "quala", "", "", "", "torment"]) + let v = native_list_append(v, ["kuoli", "noun", "kuoli", "kuolī", "kuolī", "", "coolness"]) + let v = native_list_append(v, ["kalti", "noun", "kalti", "kaltī", "kaltī", "", "coldness"]) + let v = native_list_append(v, ["raban", "noun", "hrabanā", "hrabanes", "hrabane", "", "raven"]) + let v = native_list_append(v, ["siuhhi", "noun", "siuhhī", "siuhhī", "siuhhī", "", "sickness"]) + let v = native_list_append(v, ["sunnuntag", "noun", "sunnuntag", "", "", "", "Sunday"]) + let v = native_list_append(v, ["reccho", "noun", "recchon", "recchen", "recchen", "", "adventurer"]) + let v = native_list_append(v, ["regan", "noun", "rëganā", "rëganes", "rëgane", "", "rain"]) + let v = native_list_append(v, ["reginbogo", "noun", "reginbogon", "reginbogen", "reginbogen", "", "rainbow"]) + let v = native_list_append(v, ["rito", "noun", "rito", "", "", "", "fever"]) + let v = native_list_append(v, ["rono", "noun", "ronon", "ronen", "ronen", "", "treetrunk"]) + let v = native_list_append(v, ["rucki", "noun", "rucke", "ruckes", "rucke", "", "back"]) + let v = native_list_append(v, ["kinni", "noun", "kinni", "", "", "", "chin"]) + let v = native_list_append(v, ["klocca", "noun", "klocca", "", "", "", "bell"]) + let v = native_list_append(v, ["sahs", "noun", "sahs", "", "", "", "knife"]) + let v = native_list_append(v, ["scato", "noun", "scato", "", "", "", "shade shadow noun"]) + let v = native_list_append(v, ["sculd", "noun", "sculdi", "sculdi", "sculdi", "", "debt"]) + let v = native_list_append(v, ["sculdheizo", "noun", "sculdheizon", "sculdheizen", "sculdheizen", "", "arbiter"]) + let v = native_list_append(v, ["segan", "noun", "seganā", "seganes", "segane", "", "sign of the"]) + let v = native_list_append(v, ["situ", "noun", "situ", "", "", "", "custom"]) + let v = native_list_append(v, ["stero", "noun", "steron", "steren", "steren", "", "ram male sheep"]) + let v = native_list_append(v, ["sterbo", "noun", "stërbon", "stërben", "stërben", "", "death"]) + let v = native_list_append(v, ["sunno", "noun", "sunnon", "sunnen", "sunnen", "", "sun"]) + let v = native_list_append(v, ["psalmo", "noun", "psalmo", "", "", "", "psalm"]) + let v = native_list_append(v, ["sant", "noun", "sant", "", "", "", "sand"]) + let v = native_list_append(v, ["saro", "noun", "sarwo", "sarwes", "sarwe", "", "war equipment"]) + let v = native_list_append(v, ["scado", "noun", "scado", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scara", "noun", "scara", "", "", "", "troop"]) + let v = native_list_append(v, ["scaro", "noun", "scaro", "", "", "", "plough-share"]) + let v = native_list_append(v, ["scimo", "noun", "scīmon", "scīmen", "scīmen", "", "shine"]) + let v = native_list_append(v, ["scinco", "noun", "scinco", "", "", "", "thigh"]) + let v = native_list_append(v, ["scozo", "noun", "scozo", "", "", "", "lap upper legs"]) + let v = native_list_append(v, ["sihhila", "noun", "sihhila", "", "", "", "sickle"]) + let v = native_list_append(v, ["sigu", "noun", "sigui", "sigues", "sigue", "", "victory"]) + let v = native_list_append(v, ["slango", "noun", "slangon", "slangen", "slangen", "", "snake"]) + let v = native_list_append(v, ["slito", "noun", "sliton", "sliten", "sliten", "", "sled"]) + let v = native_list_append(v, ["smero", "noun", "smero", "", "", "", "fat"]) + let v = native_list_append(v, ["sneo", "noun", "sneo", "", "", "", "snow"]) + let v = native_list_append(v, ["snecco", "noun", "sneccon", "sneccen", "sneccen", "", "snail"]) + let v = native_list_append(v, ["saumari", "noun", "saumari", "", "", "", "pack-animal"]) + let v = native_list_append(v, ["sporo", "noun", "sporon", "sporen", "sporen", "", "spur"]) + let v = native_list_append(v, ["sprozzo", "noun", "sprozzon", "sprozzen", "sprozzen", "", "rung"]) + let v = native_list_append(v, ["spuolo", "noun", "spuolon", "spuolen", "spuolen", "", "spool"]) + let v = native_list_append(v, ["stecko", "noun", "steckon", "stecken", "stecken", "", "stick"]) + let v = native_list_append(v, ["stilli", "noun", "stilli", "stillī", "stillī", "", "stillness"]) + let v = native_list_append(v, ["stollo", "noun", "stollon", "stollen", "stollen", "", "leg prop of"]) + let v = native_list_append(v, ["strangi", "noun", "strangī", "strangī", "strangī", "", "strength"]) + let v = native_list_append(v, ["swari", "noun", "swari", "swārī", "swārī", "", "heaviness"]) + let v = native_list_append(v, ["swero", "noun", "sweron", "sweren", "sweren", "", "disease"]) + let v = native_list_append(v, ["treso", "noun", "treso", "", "", "", "treasure"]) + let v = native_list_append(v, ["tuomo", "noun", "tuomon", "tuomen", "tuomen", "", "judge"]) + let v = native_list_append(v, ["tunkali", "noun", "tunkalī", "tunkalī", "tunkalī", "", "dark darkness"]) + let v = native_list_append(v, ["triuwa", "noun", "triuwā", "triuwōno", "triuwu", "", "faithfulness loyalty truth"]) + let v = native_list_append(v, ["toldo", "noun", "toldo", "", "", "", "top crown of"]) + let v = native_list_append(v, ["tior", "noun", "tior", "", "", "", "animal"]) + let v = native_list_append(v, ["ubili", "noun", "ubilī", "ubilī", "ubilī", "", "evil"]) + let v = native_list_append(v, ["hiruz", "noun", "hiruz", "", "", "", "deer"]) + let v = native_list_append(v, ["hirso", "noun", "hirson", "hirsen", "hirsen", "", "millet"]) + let v = native_list_append(v, ["hirti", "noun", "hirte", "hirtes", "hirte", "", "shepherd herdsman"]) + let v = native_list_append(v, ["hirni", "noun", "hirni", "", "", "", "brain"]) + let v = native_list_append(v, ["uohta", "noun", "uohta", "", "", "", "morn"]) + let v = native_list_append(v, ["wabo", "noun", "wabon", "waben", "waben", "", "honeycomb"]) + let v = native_list_append(v, ["waga", "noun", "waga", "", "", "", "scales"]) + let v = native_list_append(v, ["wahs", "noun", "wahs", "", "", "", "wax"]) + let v = native_list_append(v, ["wala", "noun", "wala", "", "", "", "choice"]) + let v = native_list_append(v, ["wanga", "noun", "wangun", "wangen", "wangen", "", "cheek"]) + let v = native_list_append(v, ["warto", "noun", "warton", "warten", "warten", "", "guard"]) + let v = native_list_append(v, ["wazzar", "noun", "waȥȥar", "waȥȥares", "waȥȥare", "", "water"]) + let v = native_list_append(v, ["wiso", "noun", "wīson", "wīsen", "wīsen", "", "leader"]) + let v = native_list_append(v, ["weihhi", "noun", "weihhi", "", "", "", "softness"]) + let v = native_list_append(v, ["weizi", "noun", "weizi", "", "", "", "wheat"]) + let v = native_list_append(v, ["weralt", "noun", "weralt", "", "", "", "world"]) + let v = native_list_append(v, ["werra", "noun", "werra", "", "", "", "trouble"]) + let v = native_list_append(v, ["wewo", "noun", "wēwon", "wēwen", "wēwen", "", "woe pain misery"]) + let v = native_list_append(v, ["wini", "noun", "wini", "", "", "", "friend"]) + let v = native_list_append(v, ["witu", "noun", "witu", "", "", "", "wood"]) + let v = native_list_append(v, ["zunga", "noun", "zungūn", "zungūn", "zungūn", "", "tongue"]) + let v = native_list_append(v, ["dicchi", "noun", "dicchi", "dicchī", "dicchī", "", "thickness"]) + let v = native_list_append(v, ["gruoni", "noun", "gruonī", "gruonī", "gruonī", "", "greenness"]) + let v = native_list_append(v, ["kuoni", "noun", "kuonī", "kuonī", "kuonī", "", "daring audacity"]) + let v = native_list_append(v, ["wolo", "noun", "wolon", "wolen", "wolen", "", "well-being"]) + let v = native_list_append(v, ["krumpi", "noun", "krumpi", "", "", "", "crookedness"]) + let v = native_list_append(v, ["edil", "noun", "edil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engi", "noun", "engi", "engī", "engī", "", "narrowness"]) + let v = native_list_append(v, ["ango", "noun", "angon", "angen", "angen", "", "hook"]) + let v = native_list_append(v, ["fuhti", "noun", "fūhtī", "fūhtī", "fūhtī", "", "wetness"]) + let v = native_list_append(v, ["kleini", "noun", "kleini", "kleinī", "kleinī", "", "beauty delicateness cleanness"]) + let v = native_list_append(v, ["baldi", "noun", "baldi", "baldī", "baldī", "", "boldness"]) + let v = native_list_append(v, ["argi", "noun", "argi", "argī", "argī", "", "meanness"]) + let v = native_list_append(v, ["slihti", "noun", "slihti", "slihtī", "slihtī", "", "evenness"]) + let v = native_list_append(v, ["frao", "noun", "frao", "", "", "", "lord"]) + let v = native_list_append(v, ["managi", "noun", "managī", "managī", "managī", "", "quantity"]) + let v = native_list_append(v, ["fuoz", "noun", "fuoȥi", "fuoȥes", "fuoȥe", "", "foot"]) + let v = native_list_append(v, ["widar", "noun", "widar", "", "", "", "ram"]) + let v = native_list_append(v, ["ebani", "noun", "ebanī", "ebanī", "ebanī", "", "evenness"]) + let v = native_list_append(v, ["brugga", "noun", "brugga", "", "", "", "bridge"]) + let v = native_list_append(v, ["durri", "noun", "durrī", "durrī", "durrī", "", "dryness"]) + let v = native_list_append(v, ["eigan", "noun", "eigan", "", "", "", "possession property"]) + let v = native_list_append(v, ["ezzih", "noun", "ezzih", "", "", "", "vinegar"]) + let v = native_list_append(v, ["farn", "noun", "farn", "", "", "", "fern"]) + let v = native_list_append(v, ["finstari", "noun", "finstarī", "finstarī", "finstarī", "", "darkness"]) + let v = native_list_append(v, ["flioga", "noun", "flioga", "", "", "", "fly"]) + let v = native_list_append(v, ["forhta", "noun", "forhta", "", "", "", "fear fright dread"]) + let v = native_list_append(v, ["girati", "noun", "girati", "", "", "", "advice"]) + let v = native_list_append(v, ["luti", "noun", "lūtī", "lūtī", "lūtī", "", "loudness"]) + let v = native_list_append(v, ["liudi", "noun", "liudi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helfan", "noun", "helfan", "", "", "", "elephant"]) + let v = native_list_append(v, ["huldi", "noun", "huldi", "huldī", "huldī", "", "friendliness"]) + let v = native_list_append(v, ["holdo", "noun", "holdon", "holden", "holden", "", "friend"]) + let v = native_list_append(v, ["rouh", "noun", "rouh", "", "", "", "smoke"]) + let v = native_list_append(v, ["hungar", "noun", "hungar", "", "", "", "hunger"]) + let v = native_list_append(v, ["fogal", "noun", "fogalā", "fogales", "fogale", "", "bird"]) + let v = native_list_append(v, ["maho", "noun", "mahon", "mahen", "mahen", "", "poppy"]) + let v = native_list_append(v, ["kleinkletta", "noun", "kleinkletta", "", "", "", "Odermennig liverwort"]) + let v = native_list_append(v, ["nadala", "noun", "nadala", "", "", "", "needle"]) + let v = native_list_append(v, ["skif", "noun", "skif", "", "", "", "ship boat"]) + let v = native_list_append(v, ["buoh", "noun", "buoho", "buohes", "buohe", "", "book"]) + let v = native_list_append(v, ["tisc", "noun", "tisc", "", "", "", "plate"]) + let v = native_list_append(v, ["eitar", "noun", "eitar", "", "", "", "pus"]) + let v = native_list_append(v, ["fingar", "noun", "fingarā", "fingares", "fingare", "", "finger"]) + let v = native_list_append(v, ["fedara", "noun", "fedara", "", "", "", "feather"]) + let v = native_list_append(v, ["fezzera", "noun", "fezzera", "", "", "", "fetter"]) + let v = native_list_append(v, ["fezzil", "noun", "fezzil", "", "", "", "fetter"]) + let v = native_list_append(v, ["rabo", "noun", "rabon", "raben", "raben", "", "a raven"]) + let v = native_list_append(v, ["krem", "noun", "krem", "", "", "", "little hill"]) + let v = native_list_append(v, ["bizza", "noun", "bizza", "", "", "", "bite morsel"]) + let v = native_list_append(v, ["zippa", "noun", "zippa", "", "", "", "wedge"]) + let v = native_list_append(v, ["brezza", "noun", "brēzzūn", "brēzzūn", "brēzzūn", "", "synonym of brēzitella"]) + let v = native_list_append(v, ["zun", "noun", "zun", "", "", "", "fence"]) + let v = native_list_append(v, ["arming", "noun", "armingā", "arminges", "arminge", "", "poor or miserable"]) + let v = native_list_append(v, ["panch", "noun", "panch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["karra", "noun", "karrā", "karrōno", "karru", "", "cart"]) + let v = native_list_append(v, ["lera", "noun", "lera", "", "", "", "teaching lore"]) + let v = native_list_append(v, ["Adalger", "noun", "Adalger", "", "", "", "a male given"]) + let v = native_list_append(v, ["wint", "noun", "winti", "wintes", "winte", "", "wind"]) + let v = native_list_append(v, ["hemma", "noun", "hemma", "", "", "", "pen for animals"]) + let v = native_list_append(v, ["razono", "noun", "razono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bluot", "noun", "bluoto", "bluotes", "bluote", "", "blood"]) + let v = native_list_append(v, ["boum", "noun", "bouma", "boumes", "boume", "", "tree"]) + let v = native_list_append(v, ["poum", "noun", "poum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brust", "noun", "brusti", "brusti", "brusti", "", "breast chest"]) + let v = native_list_append(v, ["bruoder", "noun", "bruoder", "", "", "", "brother"]) + let v = native_list_append(v, ["brot", "noun", "brōt", "brōtes", "brōte", "", "bread"]) + let v = native_list_append(v, ["Inga", "noun", "Inga", "", "", "", "a female given"]) + let v = native_list_append(v, ["Wolfgang", "noun", "Wolfgangā", "Wolfganges", "Wolfgange", "", "a male given"]) + let v = native_list_append(v, ["zan", "noun", "zani", "zanes", "zane", "", "alternative form of"]) + let v = native_list_append(v, ["frisking", "noun", "friskingā", "friskinges", "friskinge", "", "sacrificial victim"]) + let v = native_list_append(v, ["purpura", "noun", "purpura", "", "", "", "purple"]) + let v = native_list_append(v, ["karu", "noun", "karu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heit", "noun", "heiti", "heites", "heite", "", "manner"]) + let v = native_list_append(v, ["spalt", "noun", "spalt", "", "", "", "crack fissure"]) + let v = native_list_append(v, ["hagal", "noun", "hagal", "", "", "", "hail precipitation"]) + let v = native_list_append(v, ["itis", "noun", "itisi", "itisi", "itisi", "", "woman"]) + let v = native_list_append(v, ["abbat", "noun", "abbātā", "abbātes", "abbāte", "", "abbot"]) + let v = native_list_append(v, ["chuo", "noun", "chuo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["prut", "noun", "prut", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hulda", "noun", "huldā", "huldōno", "huldu", "", "favour"]) + let v = native_list_append(v, ["calc", "noun", "calc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["smid", "noun", "smidā", "smides", "smide", "", "blacksmith"]) + let v = native_list_append(v, ["enti", "noun", "enti", "", "", "", "end"]) + let v = native_list_append(v, ["ertag", "noun", "ertag", "", "", "", "anniversary day of"]) + let v = native_list_append(v, ["ferah", "noun", "fërahā", "fërahes", "fërahe", "", "life"]) + let v = native_list_append(v, ["ostra", "noun", "ōstrūn", "ōstrūn", "ōstrūn", "", "Easter the feast"]) + let v = native_list_append(v, ["zahar", "noun", "zahar", "", "", "", "tear drop of"]) + let v = native_list_append(v, ["karom", "noun", "karom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sunta", "noun", "sunta", "", "", "", "sin"]) + let v = native_list_append(v, ["skina", "noun", "skina", "", "", "", "bar track"]) + let v = native_list_append(v, ["zella", "noun", "zellā", "zellōno", "zellu", "", "chamber"]) + let v = native_list_append(v, ["gart", "noun", "gart", "", "", "", "enclosure fenced land"]) + let v = native_list_append(v, ["Ingo", "noun", "Ingon", "Ingen", "Ingen", "", "a male given"]) + let v = native_list_append(v, ["asco", "noun", "ascon", "ascen", "ascen", "", "grayling"]) + let v = native_list_append(v, ["spek", "noun", "spek", "", "", "", "bacon"]) + let v = native_list_append(v, ["strozza", "noun", "strozza", "", "", "", "throat"]) + let v = native_list_append(v, ["idis", "noun", "idis", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["geru", "noun", "geru", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["kuning", "noun", "kuninga", "kuninges", "kuninge", "", "king"]) + let v = native_list_append(v, ["wiges", "noun", "wiges", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Oto", "noun", "Oto", "", "", "", "a male given"]) + let v = native_list_append(v, ["Otmar", "noun", "Otmar", "", "", "", "a male given"]) + let v = native_list_append(v, ["spranga", "noun", "spranga", "", "", "", "jumper something that"]) + let v = native_list_append(v, ["kalk", "noun", "kalkā", "kalkes", "kalke", "", "lime inorganic material"]) + let v = native_list_append(v, ["banen", "noun", "banen", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["bart", "noun", "bart", "", "", "", "beard"]) + let v = native_list_append(v, ["igil", "noun", "igil", "", "", "", "hedgehog"]) + let v = native_list_append(v, ["muoter", "noun", "muoter", "", "", "", "mother"]) + let v = native_list_append(v, ["swester", "noun", "swester", "", "", "", "sister"]) + let v = native_list_append(v, ["liuto", "noun", "liuto", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["liuti", "noun", "liutī", "", "", "", "people"]) + let v = native_list_append(v, ["herza", "noun", "hërzun", "hërzen", "hërzen", "", "heart"]) + let v = native_list_append(v, ["hagan", "noun", "hagan", "", "", "", "A hawthorn."]) + let v = native_list_append(v, ["ofan", "noun", "ofanā", "ofanes", "ofane", "", "oven"]) + let v = native_list_append(v, ["tohter", "noun", "tohter", "", "", "", "daughter"]) + let v = native_list_append(v, ["metod", "noun", "mëtodā", "mëtodes", "mëtode", "", "God"]) + let v = native_list_append(v, ["stiga", "noun", "stiga", "", "", "", "cage for animals"]) + let v = native_list_append(v, ["Nanna", "noun", "Nanna", "", "", "", "a female given"]) + let v = native_list_append(v, ["angari", "noun", "angari", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["strit", "noun", "strītā", "strītes", "strīte", "", "discord"]) + let v = native_list_append(v, ["farro", "noun", "farron", "farren", "farren", "", "bull"]) + let v = native_list_append(v, ["hant", "noun", "hanti", "hanti", "hanti", "", "hand"]) + let v = native_list_append(v, ["lant", "noun", "lanto", "lantes", "lante", "", "land"]) + let v = native_list_append(v, ["masca", "noun", "masca", "", "", "", "mesh"]) + let v = native_list_append(v, ["scolla", "noun", "scolla", "", "", "", "clod clump"]) + let v = native_list_append(v, ["lante", "noun", "lante", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Elba", "noun", "Elba", "", "", "", "Elbe a major"]) + let v = native_list_append(v, ["diot", "noun", "dioti", "diotes", "diote", "", "people"]) + let v = native_list_append(v, ["fogat", "noun", "fogatā", "fogates", "fogate", "", "bailiff"]) + let v = native_list_append(v, ["meio", "noun", "meion", "meien", "meien", "", "May"]) + let v = native_list_append(v, ["flek", "noun", "flekā", "flekes", "fleke", "", "spot"]) + let v = native_list_append(v, ["hanen", "noun", "hanen", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["skaden", "noun", "skaden", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["Arin", "noun", "Arinnā", "Arinna", "Arinnu", "", "a female given"]) + let v = native_list_append(v, ["gruzzi", "noun", "gruzzi", "", "", "", "heap pile"]) + let v = native_list_append(v, ["manin", "noun", "manin", "", "", "", "moon Moon"]) + let v = native_list_append(v, ["skaz", "noun", "skazā", "skazes", "skaze", "", "treasure"]) + let v = native_list_append(v, ["zinna", "noun", "zinna", "", "", "", "pinnacle the top"]) + let v = native_list_append(v, ["Uote", "noun", "Uote", "", "", "", "a female given"]) + let v = native_list_append(v, ["Wodan", "noun", "Wodan", "", "", "", "The supreme deity"]) + let v = native_list_append(v, ["ellan", "noun", "ellano", "ellanes", "ellane", "", "courage"]) + let v = native_list_append(v, ["engil", "noun", "engil", "", "", "", "angel"]) + let v = native_list_append(v, ["forst", "noun", "forst", "", "", "", "firwood pinewood"]) + let v = native_list_append(v, ["slunt", "noun", "sluntā", "sluntes", "slunte", "", "throat"]) + let v = native_list_append(v, ["nebel", "noun", "nebel", "", "", "", "Lombardic form of"]) + let v = native_list_append(v, ["gunt", "noun", "guntā", "guntes", "gunte", "", "pus"]) + let v = native_list_append(v, ["cunta", "noun", "cunta", "", "", "", "female genitalia"]) + let v = native_list_append(v, ["hanom", "noun", "hanom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bruodher", "noun", "bruodher", "", "", "", "brother"]) + let v = native_list_append(v, ["atam", "noun", "ātamā", "ātames", "ātame", "", "alternative form of"]) + let v = native_list_append(v, ["demar", "noun", "demar", "", "", "", "dusk"]) + let v = native_list_append(v, ["angar", "noun", "angar", "", "", "", "field meadow"]) + let v = native_list_append(v, ["skinko", "noun", "skinko", "", "", "", "shin"]) + let v = native_list_append(v, ["flasca", "noun", "flasca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ostar", "noun", "ostar", "", "", "", "name of the"]) + let v = native_list_append(v, ["orte", "noun", "orte", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ratum", "noun", "ratum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["jamar", "noun", "jamar", "", "", "", "suffering sorrow misery"]) + let v = native_list_append(v, ["ackar", "noun", "ackrā", "ackres", "ackre", "", "farmland field plot"]) + let v = native_list_append(v, ["goz", "noun", "goz", "", "", "", "vessel"]) + let v = native_list_append(v, ["hasen", "noun", "hasen", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["stuol", "noun", "stuol", "", "", "", "chair"]) + let v = native_list_append(v, ["himil", "noun", "himila", "himiles", "himile", "", "sky"]) + let v = native_list_append(v, ["erdbibunga", "noun", "erdbibungā", "erdbibungōno", "erdbibungu", "", "earthquake"]) + let v = native_list_append(v, ["chunni", "noun", "chunni", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loh", "noun", "lōhā", "lōhes", "lōhe", "", "forest grove"]) + let v = native_list_append(v, ["darba", "noun", "darbā", "darbōno", "darbu", "", "need"]) + let v = native_list_append(v, ["giban", "noun", "gibanā", "gibanes", "gibane", "", "ban"]) + let v = native_list_append(v, ["skalk", "noun", "skalkā", "skalkes", "skalke", "", "serf"]) + let v = native_list_append(v, ["wamba", "noun", "wambā", "wambōno", "wambu", "", "belly womb"]) + let v = native_list_append(v, ["ahsa", "noun", "ahsa", "", "", "", "axis"]) + let v = native_list_append(v, ["skura", "noun", "skura", "", "", "", "roofing protection"]) + let v = native_list_append(v, ["skokka", "noun", "skokka", "", "", "", "swing"]) + let v = native_list_append(v, ["selah", "noun", "sëlahā", "sëlahes", "sëlahe", "", "seal"]) + let v = native_list_append(v, ["gurt", "noun", "gurtā", "gurtes", "gurte", "", "girdle"]) + let v = native_list_append(v, ["hringa", "noun", "hringa", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["rouba", "noun", "roubā", "roubōno", "roubu", "", "plunder booty"]) + let v = native_list_append(v, ["lebara", "noun", "lebara", "", "", "", "liver"]) + let v = native_list_append(v, ["ouga", "noun", "ougun", "ougen", "ougen", "", "eye"]) + let v = native_list_append(v, ["wurz", "noun", "wurz", "", "", "", "herb root spice"]) + let v = native_list_append(v, ["reve", "noun", "reve", "", "", "", "womb"]) + let v = native_list_append(v, ["murberi", "noun", "murberi", "", "", "", "mulberry"]) + let v = native_list_append(v, ["mespila", "noun", "mespila", "", "", "", "medlar"]) + let v = native_list_append(v, ["afterling", "noun", "afterlingā", "afterlinges", "afterlinge", "", "rectum"]) + let v = native_list_append(v, ["truhtin", "noun", "truhtin", "", "", "", "ruler lord"]) + let v = native_list_append(v, ["anafang", "noun", "anafangi", "anafanges", "anafange", "", "beginning start"]) + let v = native_list_append(v, ["kunni", "noun", "kunno", "kunnes", "kunne", "", "gender kind"]) + let v = native_list_append(v, ["wintar", "noun", "wintarā", "wintares", "wintare", "", "winter"]) + let v = native_list_append(v, ["isarn", "noun", "īsarn", "īsarnes", "īsarne", "", "iron"]) + let v = native_list_append(v, ["irmin", "noun", "irminā", "irmines", "irmine", "", "world earth"]) + let v = native_list_append(v, ["hranca", "noun", "hranca", "", "", "", "A tendril of"]) + let v = native_list_append(v, ["wafan", "noun", "wafan", "", "", "", "weapon arm"]) + let v = native_list_append(v, ["eih", "noun", "eih", "", "", "", "oak"]) + let v = native_list_append(v, ["nagal", "noun", "nagalā", "nagales", "nagale", "", "A nail pin"]) + let v = native_list_append(v, ["nabager", "noun", "nabager", "", "", "", "borer"]) + let v = native_list_append(v, ["kiol", "noun", "kiolā", "kioles", "kiole", "", "keel"]) + let v = native_list_append(v, ["buohha", "noun", "buohha", "", "", "", "A beech Fagus"]) + let v = native_list_append(v, ["wurt", "noun", "wurti", "wurti", "wurti", "", "destiny fate"]) + let v = native_list_append(v, ["stirna", "noun", "stirna", "", "", "", "forehead"]) + let v = native_list_append(v, ["geist", "noun", "geista", "geistes", "geiste", "", "spirit"]) + let v = native_list_append(v, ["mannum", "noun", "mannum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["skado", "noun", "skadon", "skaden", "skaden", "", "damage"]) + let v = native_list_append(v, ["gibirgi", "noun", "gibirgi", "", "", "", "mountains hills"]) + let v = native_list_append(v, ["gibur", "noun", "gibūrā", "gibūres", "gibūre", "", "inhabitant"]) + let v = native_list_append(v, ["scaf", "noun", "scaf", "", "", "", "sheep"]) + let v = native_list_append(v, ["teic", "noun", "teic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kalb", "noun", "kelbir", "kalbes", "kalbe", "", "calf"]) + let v = native_list_append(v, ["armil", "noun", "armilā", "armiles", "armile", "", "sleeve"]) + let v = native_list_append(v, ["ahorn", "noun", "ahorn", "", "", "", "maple"]) + let v = native_list_append(v, ["teig", "noun", "teig", "", "", "", "dough pastry"]) + let v = native_list_append(v, ["folke", "noun", "folke", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["louca", "noun", "louca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atum", "noun", "ātumā", "ātumes", "ātume", "", "breath breeze"]) + let v = native_list_append(v, ["gunda", "noun", "gundā", "gundōno", "gundu", "", "battle fight"]) + let v = native_list_append(v, ["Ostara", "noun", "Ōstarūn", "Ōstarūn", "Ōstarūn", "", "alternative form of"]) + let v = native_list_append(v, ["Ostarrichi", "noun", "Ostarrichi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["marcgravo", "noun", "marcgravon", "marcgraven", "marcgraven", "", "margrave"]) + let v = native_list_append(v, ["mazzaltra", "noun", "mazzaltra", "", "", "", "maple"]) + let v = native_list_append(v, ["mazaltra", "noun", "mazaltra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["milzi", "noun", "milzi", "", "", "", "spleen"]) + let v = native_list_append(v, ["furz", "noun", "furzi", "furzes", "furze", "", "fart"]) + let v = native_list_append(v, ["angul", "noun", "angulā", "angules", "angule", "", "fishing rod"]) + let v = native_list_append(v, ["Balder", "noun", "Balder", "", "", "", "Balder"]) + let v = native_list_append(v, ["speru", "noun", "speru", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["melm", "noun", "melm", "", "", "", "thin sand"]) + let v = native_list_append(v, ["marah", "noun", "marah", "", "", "", "horse"]) + let v = native_list_append(v, ["chara", "noun", "charā", "charōno", "charu", "", "alternative form of"]) + let v = native_list_append(v, ["heidan", "noun", "heidan", "", "", "", "a heathen pagan"]) + let v = native_list_append(v, ["kruska", "noun", "kruska", "", "", "", "bran"]) + let v = native_list_append(v, ["hason", "noun", "hason", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["pretil", "noun", "pretil", "", "", "", "lath"]) + let v = native_list_append(v, ["khara", "noun", "kharā", "kharōno", "kharu", "", "alternative form of"]) + let v = native_list_append(v, ["sturm", "noun", "sturm", "", "", "", "storm"]) + let v = native_list_append(v, ["madal", "noun", "madal", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stunta", "noun", "stuntā", "stuntōno", "stuntu", "", "time"]) + let v = native_list_append(v, ["uodil", "noun", "uodil", "", "", "", "heritage inheritance"]) + let v = native_list_append(v, ["Donar", "noun", "Donarā", "Donares", "Donare", "", "Thor the god"]) + let v = native_list_append(v, ["gisal", "noun", "gīsalā", "gīsales", "gīsale", "", "hostage pledge"]) + let v = native_list_append(v, ["chnabo", "noun", "chnabo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fater", "noun", "faterā", "fateres", "fatere", "", "father"]) + let v = native_list_append(v, ["ubargang", "noun", "ubargangā", "ubarganges", "ubargange", "", "doom ruin"]) + let v = native_list_append(v, ["ubarkanc", "noun", "ubarkanc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smalz", "noun", "smalzo", "smalzes", "smalze", "", "lard fat"]) + let v = native_list_append(v, ["kuohho", "noun", "kuohhon", "kuohhen", "kuohhen", "", "cake pie"]) + let v = native_list_append(v, ["stainberga", "noun", "stainberga", "", "", "", "stone house"]) + let v = native_list_append(v, ["balko", "noun", "balkon", "balken", "balken", "", "beam"]) + let v = native_list_append(v, ["rannja", "noun", "rannja", "", "", "", "rennet"]) + let v = native_list_append(v, ["furh", "noun", "furh", "", "", "", "furrow"]) + let v = native_list_append(v, ["grollo", "noun", "grollon", "grollen", "grollen", "", "rancor"]) + let v = native_list_append(v, ["wankja", "noun", "wankja", "", "", "", "cheek"]) + let v = native_list_append(v, ["strunz", "noun", "strunz", "", "", "", "dung"]) + let v = native_list_append(v, ["grimmiza", "noun", "grimmiza", "", "", "", "wrinkle"]) + let v = native_list_append(v, ["krukkja", "noun", "krukkja", "", "", "", "crutch"]) + let v = native_list_append(v, ["pfeit", "noun", "pfeit", "", "", "", "dress"]) + let v = native_list_append(v, ["hruf", "noun", "hruf", "", "", "", "dandruff scabies leprosy"]) + let v = native_list_append(v, ["hrousta", "noun", "hrousta", "", "", "", "a bunch of"]) + let v = native_list_append(v, ["skranna", "noun", "skranna", "", "", "", "bench"]) + let v = native_list_append(v, ["skarrjo", "noun", "skarrjo", "", "", "", "captain"]) + let v = native_list_append(v, ["wahtari", "noun", "wahtāre", "wahtāres", "wahtāre", "", "watchman"]) + let v = native_list_append(v, ["stapho", "noun", "stapho", "", "", "", "footprint"]) + let v = native_list_append(v, ["sterz", "noun", "sterz", "", "", "", "tail of an"]) + let v = native_list_append(v, ["tahala", "noun", "tahala", "", "", "", "jackdaw"]) + let v = native_list_append(v, ["tumpf", "noun", "tumpf", "", "", "", "thump"]) + let v = native_list_append(v, ["damph", "noun", "damph", "", "", "", "steam"]) + let v = native_list_append(v, ["wihsila", "noun", "wihsila", "", "", "", "sour cherry"]) + let v = native_list_append(v, ["zeina", "noun", "zeina", "", "", "", "basket"]) + let v = native_list_append(v, ["zazera", "noun", "zazera", "", "", "", "tuft of hair"]) + let v = native_list_append(v, ["zippil", "noun", "zippil", "", "", "", "tip"]) + let v = native_list_append(v, ["zoph", "noun", "zoph", "", "", "", "tuft"]) + let v = native_list_append(v, ["knohha", "noun", "knohha", "", "", "", "knuckle"]) + let v = native_list_append(v, ["stucki", "noun", "stucki", "", "", "", "crust fragment piece."]) + let v = native_list_append(v, ["hewispranga", "noun", "hewispranga", "", "", "", "locust"]) + let v = native_list_append(v, ["hewi", "noun", "hewi", "", "", "", "hay"]) + let v = native_list_append(v, ["houwi", "noun", "houwi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zala", "noun", "zalā", "zalōno", "zalu", "", "number"]) + let v = native_list_append(v, ["Ostra", "noun", "Ōstrūn", "Ōstrūn", "Ōstrūn", "", "name of the"]) + let v = native_list_append(v, ["Waltheri", "noun", "Waltheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["helliruna", "noun", "hellirūnā", "hellirūna", "hellirūnu", "", "necromancy sorcery"]) + let v = native_list_append(v, ["reba", "noun", "rëbūn", "rëbūn", "rëbūn", "", "a grape"]) + let v = native_list_append(v, ["degan", "noun", "dëganā", "dëganes", "dëgane", "", "retainer thane warrior"]) + let v = native_list_append(v, ["Franko", "noun", "Frankon", "Franken", "Franken", "", "a Frank"]) + let v = native_list_append(v, ["Pero", "noun", "Pero", "", "", "", "a male given"]) + let v = native_list_append(v, ["fleisk", "noun", "fleisk", "", "", "", "meat"]) + let v = native_list_append(v, ["Toto", "noun", "Toto", "", "", "", "a male given"]) + let v = native_list_append(v, ["Geil", "noun", "Gailā", "Gailes", "Gaile", "", "a male given"]) + let v = native_list_append(v, ["Nanda", "noun", "Nanda", "", "", "", "a female given"]) + let v = native_list_append(v, ["degano", "noun", "degano", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dinc", "noun", "dinc", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["Baldo", "noun", "Baldon", "Balden", "Balden", "", "a male given"]) + let v = native_list_append(v, ["razon", "noun", "razon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wetti", "noun", "wetto", "wettes", "wette", "", "pledge"]) + let v = native_list_append(v, ["rahha", "noun", "rahhā", "rahhōno", "rahhu", "", "tale"]) + let v = native_list_append(v, ["offanunga", "noun", "offanungā", "offanungōno", "offanungu", "", "revelation"]) + let v = native_list_append(v, ["imbi", "noun", "imba", "imbes", "imbe", "", "bee"]) + let v = native_list_append(v, ["pfanna", "noun", "pfannūn", "pfannūn", "pfannūn", "", "pan"]) + let v = native_list_append(v, ["wio", "noun", "wio", "", "", "", "kite bird of"]) + let v = native_list_append(v, ["enita", "noun", "enitūn", "enitūn", "enitūn", "", "duck"]) + let v = native_list_append(v, ["botah", "noun", "botah", "", "", "", "body cadaver"]) + let v = native_list_append(v, ["frouwa", "noun", "frouwā", "frouwōno", "frouwu", "", "woman lady"]) + let v = native_list_append(v, ["wefsunnest", "noun", "wefsūnnest", "wefsūnnestes", "wefsūnneste", "", "wasp’s nest"]) + let v = native_list_append(v, ["esilin", "noun", "esilin", "", "", "", "she-ass female donkey"]) + let v = native_list_append(v, ["hertida", "noun", "heritdā", "heritda", "heritdu", "", "hardness"]) + let v = native_list_append(v, ["corunga", "noun", "corungā", "corungōno", "corungu", "", "temptation"]) + let v = native_list_append(v, ["miltida", "noun", "miltidā", "miltidōno", "miltidu", "", "compassion"]) + let v = native_list_append(v, ["losunga", "noun", "lōsungā", "lōsunga", "lōsungu", "", "deliverance redemption"]) + let v = native_list_append(v, ["geba", "noun", "gëbā", "gëba", "gëbu", "", "gift"]) + let v = native_list_append(v, ["friunt", "noun", "friuntā", "friuntes", "friunte", "", "friend"]) + let v = native_list_append(v, ["linta", "noun", "lintūn", "lintūn", "lintūn", "", "linden tree"]) + let v = native_list_append(v, ["nuot", "noun", "nuot", "", "", "", "joint connection"]) + let v = native_list_append(v, ["giwizzi", "noun", "giwizzo", "giwizzes", "giwizze", "", "knowledge"]) + let v = native_list_append(v, ["wib", "noun", "wīb", "wībes", "wībe", "", "woman"]) + let v = native_list_append(v, ["loug", "noun", "lougi", "louges", "louge", "", "flame"]) + let v = native_list_append(v, ["houbit", "noun", "houbito", "houbites", "houbite", "", "head"]) + let v = native_list_append(v, ["sluna", "noun", "slūnā", "slūna", "slūnu", "", "fortune"]) + let v = native_list_append(v, ["slunigi", "noun", "slunigi", "", "", "", "success"]) + let v = native_list_append(v, ["thonar", "noun", "thonarā", "thonares", "thonare", "", "alternative form of"]) + let v = native_list_append(v, ["donaresbart", "noun", "donaresbartā", "donaresbartes", "donaresbarte", "", "houseleek"]) + let v = native_list_append(v, ["Friia", "noun", "Friiā", "Friiōno", "Friiu", "", "Frigg a major"]) + let v = native_list_append(v, ["urlac", "noun", "urlac", "", "", "", "destiny"]) + let v = native_list_append(v, ["Hilticoma", "noun", "Hilticoma", "", "", "", "a female given"]) + let v = native_list_append(v, ["Weriwolf", "noun", "Weriwolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Angandio", "noun", "Angandio", "", "", "", "a male given"]) + let v = native_list_append(v, ["Maorolf", "noun", "Maorolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Naothart", "noun", "Naothart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aonolf", "noun", "Aonolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sconhari", "noun", "Sconhari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aotakchar", "noun", "Aotakchar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aostargaoz", "noun", "Aostargaoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalhaoh", "noun", "Adalhaoh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bertcaoz", "noun", "Bertcaoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aothram", "noun", "Aothram", "", "", "", "a male given"]) + let v = native_list_append(v, ["Roata", "noun", "Roata", "", "", "", "a locality in"]) + let v = native_list_append(v, ["Aotperht", "noun", "Aotperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hruodgaoz", "noun", "Hruodgaoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Caozperht", "noun", "Caozperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Traostilo", "noun", "Traostilo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Deonant", "noun", "Deonant", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aostarpald", "noun", "Aostarpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gaozrich", "noun", "Gaozrich", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalfrao", "noun", "Adalfrao", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aotker", "noun", "Aotker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aotuni", "noun", "Aotuni", "", "", "", "a female given"]) + let v = native_list_append(v, ["Coazmar", "noun", "Coazmar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Noathart", "noun", "Noathart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Oatlant", "noun", "Oatlant", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aistolf", "noun", "Aistolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pazauuue", "noun", "Pazauuue", "", "", "", "a town and"]) + let v = native_list_append(v, ["Liutpald", "noun", "Liutpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Deotrich", "noun", "Deotrich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Teoruni", "noun", "Teoruni", "", "", "", "a female given"]) + let v = native_list_append(v, ["Eodunc", "noun", "Eodunc", "", "", "", "a male given"]) + let v = native_list_append(v, ["Eonolt", "noun", "Eonolt", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Eonhilt", "noun", "Eonhiltā", "Eonhilta", "Eonhiltu", "", "a female given"]) + let v = native_list_append(v, ["Uuolfleoz", "noun", "Uuolfleoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hleoperht", "noun", "Hleoperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Leohtilo", "noun", "Leohtilo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Leotholf", "noun", "Leotholf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Deoinga", "noun", "Deoinga", "", "", "", "a town in"]) + let v = native_list_append(v, ["Herideo", "noun", "Herideo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reod", "noun", "Reod", "", "", "", "a few places"]) + let v = native_list_append(v, ["Feoht", "noun", "Feoht", "", "", "", "several locations in"]) + let v = native_list_append(v, ["Smeoha", "noun", "Smeoha", "", "", "", "a village in"]) + let v = native_list_append(v, ["Pleoninga", "noun", "Pleoninga", "", "", "", "a settlement in"]) + let v = native_list_append(v, ["Deotolf", "noun", "Deotolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diotmar", "noun", "Diotmar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ruodauui", "noun", "Ruodauui", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ackilinda", "noun", "Ackilinda", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ekkirih", "noun", "Ekkirih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diudolf", "noun", "Diudolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Husina", "noun", "Husina", "", "", "", "a female given"]) + let v = native_list_append(v, ["Hroadant", "noun", "Hroadant", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrodpirin", "noun", "Hrōdpirinnā", "Hrōdpirinna", "Hrōdpirinnu", "", "a female given"]) + let v = native_list_append(v, ["Welant", "noun", "Wēlant", "Wēlantes", "Wēlante", "", "a male given"]) + let v = native_list_append(v, ["Muotrih", "noun", "Muotrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gozhilt", "noun", "Gozhilt", "", "", "", "a female given"]) + let v = native_list_append(v, ["Mehthilt", "noun", "Mehthiltā", "Mehthilta", "Mehthiltu", "", "a female given"]) + let v = native_list_append(v, ["Eillanhilt", "noun", "Eillanhiltā", "Eillanhilta", "Eillanhiltu", "", "a female given"]) + let v = native_list_append(v, ["Frouuihilt", "noun", "Frouuilhiltā", "Frouuilhilta", "Frouuilhiltu", "", "a female given"]) + let v = native_list_append(v, ["Freuuihilt", "noun", "Freuuihiltā", "Freuuihilta", "Freuuihiltu", "", "a female given"]) + let v = native_list_append(v, ["Froihilt", "noun", "Froihiltā", "Froihilta", "Froihiltu", "", "a female given"]) + let v = native_list_append(v, ["Prunhilt", "noun", "Prunhiltā", "Prunhilta", "Prunhiltu", "", "a female given"]) + let v = native_list_append(v, ["Rihhilta", "noun", "Rihhiltā", "Rihhiltōno", "Rihhiltu", "", "a female given"]) + let v = native_list_append(v, ["Deothilt", "noun", "Deothiltā", "Deothilta", "Deothiltu", "", "a female given"]) + let v = native_list_append(v, ["Starchilt", "noun", "Starchilti", "Starchilti", "Starchilti", "", "a female given"]) + let v = native_list_append(v, ["Cotahilt", "noun", "Cotahiltā", "Cotahilta", "Cotahiltu", "", "a female given"]) + let v = native_list_append(v, ["Suuanahilt", "noun", "Suuanahiltā", "Suuanahilta", "Suuanahiltu", "", "a female given"]) + let v = native_list_append(v, ["Starholf", "noun", "Starholf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Starcholf", "noun", "Starcholf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualtni", "noun", "Uualtniā", "Uualtnia", "Uualtniu", "", "a female given"]) + let v = native_list_append(v, ["Adalni", "noun", "Adalni", "", "", "", "a female given"]) + let v = native_list_append(v, ["Perhtni", "noun", "Perhtni", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ospirin", "noun", "Ōspirinnā", "Ōspirinna", "Ōspirinnu", "", "a female given"]) + let v = native_list_append(v, ["Theodfrit", "noun", "Theodfrītā", "Theodfrīta", "Theodfrītu", "", "a female given"]) + let v = native_list_append(v, ["Adalfrit", "noun", "Adalfrit", "", "", "", "a female given"]) + let v = native_list_append(v, ["Sigifrit", "noun", "Sigifrītā", "Sigifrīta", "Sigifrītu", "", "a female given"]) + let v = native_list_append(v, ["Sigifrith", "noun", "Sigifrith", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilfrit", "noun", "Engilfrītā", "Engilfrīta", "Engilfrītu", "", "a female given"]) + let v = native_list_append(v, ["Erchanfrit", "noun", "Erchanfrītā", "Erchanfrīta", "Erchanfrītu", "", "a female given"]) + let v = native_list_append(v, ["Cotafrit", "noun", "Cotafrītā", "Cotafrīta", "Cotafrītu", "", "a female given"]) + let v = native_list_append(v, ["Diotfrit", "noun", "Diotfrītā", "Diotfrīta", "Diotfrītu", "", "a female given"]) + let v = native_list_append(v, ["Liutfrit", "noun", "Liutfrītā", "Liutfrīta", "Liutfrītu", "", "a female given"]) + let v = native_list_append(v, ["Pherfrit", "noun", "Pherfrit", "", "", "", "a female given"]) + let v = native_list_append(v, ["Uuolfpero", "noun", "Uuolfpero", "", "", "", "a male given"]) + let v = native_list_append(v, ["Peradeo", "noun", "Peradeo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Meripirin", "noun", "Meripirinnā", "Meripirinna", "Meripirinnu", "", "a female given"]) + let v = native_list_append(v, ["Peiarin", "noun", "Peiarinnā", "Peiarinna", "Peiarinnu", "", "a female given"]) + let v = native_list_append(v, ["Duringin", "noun", "Duringinā", "Duringines", "Duringine", "", "A male given"]) + let v = native_list_append(v, ["Frenchin", "noun", "Frenchinnā", "Frenchinna", "Frenchinnu", "", "a female given"]) + let v = native_list_append(v, ["Fresin", "noun", "Fresinnā", "Fresinna", "Fresinnu", "", "a female given"]) + let v = native_list_append(v, ["Sahsin", "noun", "Sahsinnā", "Sahsinna", "Sahsinnu", "", "a female given"]) + let v = native_list_append(v, ["Suapin", "noun", "Suapinnā", "Suapinna", "Suapinnu", "", "a female given"]) + let v = native_list_append(v, ["Uualhin", "noun", "Uualhinnā", "Uualhinna", "Uualhinnu", "", "a female given"]) + let v = native_list_append(v, ["gutin", "noun", "gutinnā", "gutinna", "gutinnu", "", "goddess"]) + let v = native_list_append(v, ["Paltar", "noun", "Paltar", "", "", "", "a male given"]) + let v = native_list_append(v, ["tagarod", "noun", "tagarod", "", "", "", "dawn daybreak daybreak"]) + let v = native_list_append(v, ["Hunni", "noun", "Hunno", "Hunnes", "Hunne", "", "the Huns"]) + let v = native_list_append(v, ["kepa", "noun", "kepa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lerari", "noun", "lērāre", "lērāres", "lērāre", "", "teacher"]) + let v = native_list_append(v, ["arunti", "noun", "ārunti", "āruntes", "ārunte", "", "message"]) + let v = native_list_append(v, ["meȥȥot", "noun", "meȥȥôtā", "meȥȥôtes", "meȥȥôte", "", "God"]) + let v = native_list_append(v, ["Beiara", "noun", "Beiara", "", "", "", "a historic region"]) + let v = native_list_append(v, ["Asperht", "noun", "Asperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Irminfrid", "noun", "Irminfrid", "", "", "", "a female given"]) + let v = native_list_append(v, ["Irminhart", "noun", "Irminhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Irminolt", "noun", "Irminolt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Irminsuind", "noun", "Irminsuind", "", "", "", "a female given"]) + let v = native_list_append(v, ["Irminperht", "noun", "Irminperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Irmingart", "noun", "Irmingart", "", "", "", "a female given"]) + let v = native_list_append(v, ["Aostargart", "noun", "Aostargart", "", "", "", "a female given"]) + let v = native_list_append(v, ["Aostarger", "noun", "Aostarger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aostarfrit", "noun", "Aostarfrītā", "Aostarfrīta", "Aostarfrītu", "", "a female given"]) + let v = native_list_append(v, ["Aostarhilt", "noun", "Aostarhiltā", "Aostarhilta", "Aostarhiltu", "", "a female given"]) + let v = native_list_append(v, ["Irmindrud", "noun", "Irmindrūdi", "Irmindrūdi", "Irmindrūdi", "", "a female given"]) + let v = native_list_append(v, ["Irminrat", "noun", "Irminrātā", "Irminrātes", "Irminrāte", "", "a male given"]) + let v = native_list_append(v, ["Irminheri", "noun", "Irminheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aostrolf", "noun", "Aostrolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aostilo", "noun", "Aostilo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Haostarpald", "noun", "Haostarpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Donarperht", "noun", "Donarperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Donarad", "noun", "Donarad", "", "", "", "a male given"]) + let v = native_list_append(v, ["Irmina", "noun", "Irmina", "", "", "", "a female given"]) + let v = native_list_append(v, ["Irmingar", "noun", "Irmingar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ingudis", "noun", "Ingudis", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ingina", "noun", "Ingina", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ingaberta", "noun", "Ingaberta", "", "", "", "a female given"]) + let v = native_list_append(v, ["Fonsa", "noun", "Fonsa", "", "", "", "a female given"]) + let v = native_list_append(v, ["Funtan", "noun", "Funtan", "", "", "", "a male given"]) + let v = native_list_append(v, ["Foldger", "noun", "Foldger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Foldet", "noun", "Foldet", "", "", "", "a male given"]) + let v = native_list_append(v, ["Folderich", "noun", "Folderich", "", "", "", "a male given"]) + let v = native_list_append(v, ["Fuldoin", "noun", "Fuldoin", "", "", "", "a male given"]) + let v = native_list_append(v, ["Foldulf", "noun", "Foldulf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aldfrid", "noun", "Aldfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Woda", "noun", "Woda", "", "", "", "a female given"]) + let v = native_list_append(v, ["ᚹᛟᛞᚨᚾ", "noun", "ᚹᛟᛞᚨᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᛒᛟᛋᛟ", "noun", "ᛒᛟᛋᛟ", "", "", "", "a male given"]) + let v = native_list_append(v, ["gimunt", "noun", "gimunti", "gimunti", "gimunti", "", "remembrance commemoration"]) + let v = native_list_append(v, ["fliuga", "noun", "fliugūn", "fliugūn", "fliugūn", "", "a fly"]) + let v = native_list_append(v, ["khuninc", "noun", "khuninc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tiuval", "noun", "tiuval", "", "", "", "a devil"]) + let v = native_list_append(v, ["Ostora", "noun", "Ôstorûn", "Ôstorûn", "Ôstorûn", "", "alternative form of"]) + let v = native_list_append(v, ["satanas", "noun", "satanāsā", "satanāses", "satanāse", "", "a devil specifically"]) + let v = native_list_append(v, ["bluozhus", "noun", "bluozhūs", "bluozhūses", "bluozhūse", "", "heathen temple"]) + let v = native_list_append(v, ["Phol", "noun", "Phol", "", "", "", "Balder ?"]) + let v = native_list_append(v, ["Uuodan", "noun", "Uuodan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Wigidonar", "noun", "Wigidonarā", "Wigidonares", "Wigidonare", "", "a name of"]) + let v = native_list_append(v, ["ᚹᛁᚷᛁᚦᛟᚾᚨᚱ", "noun", "ᚹᛁᚷᛁᚦᛟᚾᚨᚱ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["zīh", "noun", "zīh", "", "", "", "place village square"]) + let v = native_list_append(v, ["zalu", "noun", "zalu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["zalom", "noun", "zalom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ufgang", "noun", "ūfgangā", "ūfganges", "ūfgange", "", "a rise ascension"]) + let v = native_list_append(v, ["Hiltibrant", "noun", "Hiltibrant", "", "", "", "a male given"]) + let v = native_list_append(v, ["irmingot", "noun", "irmingot", "", "", "", "a divine epithet"]) + let v = native_list_append(v, ["kunawid", "noun", "kunawidi", "kunawidi", "kunawidi", "", "fetter chain"]) + let v = native_list_append(v, ["kuoniowid", "noun", "kuoniowidi", "kuoniowidi", "kuoniowidi", "", "synonym of kunawid"]) + let v = native_list_append(v, ["cuoniouuidi", "noun", "cuoniouuidi", "", "", "", "inflection of kuoniowid"]) + let v = native_list_append(v, ["wewurt", "noun", "wēwurti", "wēwurti", "wēwurti", "", "disastrous fate or"]) + let v = native_list_append(v, ["muspilli", "noun", "mūspilli", "mūspilles", "mūspille", "", "judgment day or"]) + let v = native_list_append(v, ["himilzungal", "noun", "himilzungalo", "himilzungales", "himilzungale", "", "star in plural"]) + let v = native_list_append(v, ["tolaheiti", "noun", "tolaheitī", "tolaheitī", "tolaheitī", "", "folly"]) + let v = native_list_append(v, ["tolaheit", "noun", "tolaheiti", "tolaheiti", "tolaheiti", "", "synonym of tolaheitī"]) + let v = native_list_append(v, ["warspello", "noun", "wārspellon", "wārspellen", "wārspellen", "", "fortune-teller prophet"]) + let v = native_list_append(v, ["Hadubrant", "noun", "Hadubrant", "", "", "", "a male given"]) + let v = native_list_append(v, ["Otacher", "noun", "Ōtachrā", "Ōtachres", "Ōtachre", "", "a male given"]) + let v = native_list_append(v, ["keba", "noun", "keba", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manalihho", "noun", "manalīhhon", "manalīhhen", "manalīhhen", "", "image portrait"]) + let v = native_list_append(v, ["gebu", "noun", "gebu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["wituwa", "noun", "wituwūn", "wituwūn", "wituwūn", "", "widow"]) + let v = native_list_append(v, ["uoba", "noun", "uobā", "uobōno", "uobu", "", "celebration"]) + let v = native_list_append(v, ["giwissi", "noun", "giwissi", "giwissī", "giwissī", "", "certainty"]) + let v = native_list_append(v, ["flahs", "noun", "flahsā", "flahses", "flahse", "", "flax"]) + let v = native_list_append(v, ["giloubo", "noun", "giloubon", "gilouben", "gilouben", "", "faith"]) + let v = native_list_append(v, ["ariotag", "noun", "ariotag", "", "", "", "Tuesday"]) + let v = native_list_append(v, ["sinhiwun", "noun", "sinhīwun", "sinhīwen", "sinhīwen", "", "married couple"]) + let v = native_list_append(v, ["unholda", "noun", "unholdūn", "unholdūn", "unholdūn", "", "demon Devil"]) + let v = native_list_append(v, ["Vuldar", "noun", "Vuldar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Vuldarniu", "noun", "Vuldarniu", "", "", "", "a female given"]) + let v = native_list_append(v, ["Baldro", "noun", "Baldro", "", "", "", "a male given"]) + let v = native_list_append(v, ["Baldor", "noun", "Baldor", "", "", "", "a male given"]) + let v = native_list_append(v, ["Fricceo", "noun", "Fricceo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wodal", "noun", "Wodal", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Wodunc", "noun", "Wodunc", "", "", "", "a male given"]) + let v = native_list_append(v, ["Woto", "noun", "Woto", "", "", "", "a male given"]) + let v = native_list_append(v, ["Mistila", "noun", "Mistila", "", "", "", "a female given"]) + let v = native_list_append(v, ["Apendorf", "noun", "Apendorf", "", "", "", "a number of"]) + let v = native_list_append(v, ["Apinheim", "noun", "Apinheim", "", "", "", "a town in"]) + let v = native_list_append(v, ["Egilolfesheim", "noun", "Egilolfesheim", "", "", "", "a village and"]) + let v = native_list_append(v, ["Agineshaim", "noun", "Agineshaim", "", "", "", "a town in"]) + let v = native_list_append(v, ["Einharteshuson", "noun", "Einharteshuson", "", "", "", "accusative of Einharteshūso"]) + let v = native_list_append(v, ["Aguringas", "noun", "Aguringas", "", "", "", "a neighborhood of"]) + let v = native_list_append(v, ["Sickinga", "noun", "Sickinga", "", "", "", "a village in"]) + let v = native_list_append(v, ["Sicginholz", "noun", "Sicginholz", "", "", "", "a coppice or"]) + let v = native_list_append(v, ["Sigilineswilare", "noun", "Sigilineswilare", "", "", "", "a location in"]) + let v = native_list_append(v, ["Holda", "noun", "Holda", "", "", "", "a female given"]) + let v = native_list_append(v, ["Nandesheim", "noun", "Nandesheim", "", "", "", "a historic parish"]) + let v = native_list_append(v, ["Itis", "noun", "Itis", "", "", "", "a female given"]) + let v = native_list_append(v, ["Pholing", "noun", "Pholing", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["ziestag", "noun", "ziestag", "", "", "", "Tuesday"]) + let v = native_list_append(v, ["ciesdac", "noun", "ciesdac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["razom", "noun", "razom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Frea", "noun", "Frea", "", "", "", "Frigg a major"]) + let v = native_list_append(v, ["sibunstirni", "noun", "sibunstirno", "sibunstirnes", "sibunstirne", "", "Pleiades"]) + let v = native_list_append(v, ["arsloh", "noun", "arsloho", "arslohes", "arslohe", "", "anus"]) + let v = native_list_append(v, ["hrusti", "noun", "hrusti", "", "", "", "inflection of hrust"]) + let v = native_list_append(v, ["hafan", "noun", "hafan", "", "", "", "pot"]) + let v = native_list_append(v, ["smirl", "noun", "smirl", "", "", "", "falcon"]) + let v = native_list_append(v, ["kruzi", "noun", "kruzi", "", "", "", "cross"]) + let v = native_list_append(v, ["werento", "noun", "werento", "", "", "", "Guarantor"]) + let v = native_list_append(v, ["folkes", "noun", "folkes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eihhurno", "noun", "eihhurno", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wantwurm", "noun", "wantwurm", "", "", "", "bedbug"]) + let v = native_list_append(v, ["wibil", "noun", "wibil", "", "", "", "weevil beetle"]) + let v = native_list_append(v, ["wurmeli", "noun", "wurmeli", "", "", "", "diminutive of wurm"]) + let v = native_list_append(v, ["lerihha", "noun", "lerihha", "", "", "", "larch"]) + let v = native_list_append(v, ["lantskaf", "noun", "lantskaf", "", "", "", "landscape"]) + let v = native_list_append(v, ["gersta", "noun", "gersta", "", "", "", "barley"]) + let v = native_list_append(v, ["musari", "noun", "musari", "", "", "", "buzzard hawk in"]) + let v = native_list_append(v, ["sparwari", "noun", "sparwari", "", "", "", "sparrowhawk"]) + let v = native_list_append(v, ["banin", "noun", "banin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zedarboum", "noun", "zedarboum", "", "", "", "cedar"]) + let v = native_list_append(v, ["zagaheit", "noun", "zagaheit", "", "", "", "weakness"]) + let v = native_list_append(v, ["zwifal", "noun", "zwifal", "", "", "", "doubt"]) + let v = native_list_append(v, ["zisimus", "noun", "zisimus", "", "", "", "suslik"]) + let v = native_list_append(v, ["calch", "noun", "calch", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hanono", "noun", "hanono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wonunga", "noun", "wonungā", "wonungōno", "wonungu", "", "dwelling"]) + let v = native_list_append(v, ["uobari", "noun", "uobāre", "uobāres", "uobāre", "", "worshipper"]) + let v = native_list_append(v, ["garnboum", "noun", "garnboumā", "garnboumes", "garnboume", "", "weaver’s beam"]) + let v = native_list_append(v, ["garthagan", "noun", "garthaganā", "garthaganes", "garthagane", "", "abrotanum"]) + let v = native_list_append(v, ["gasttuom", "noun", "gasttuomā", "gasttuomes", "gasttuome", "", "hospitality"]) + let v = native_list_append(v, ["gatiling", "noun", "gatilingā", "gatilinges", "gatilinge", "", "comrade relative"]) + let v = native_list_append(v, ["geizboum", "noun", "geizboumā", "geizboumes", "geizboume", "", "hackberry nettle-tree"]) + let v = native_list_append(v, ["gensedistil", "noun", "gensedistilā", "gensedistiles", "gensedistile", "", "milk thistle"]) + let v = native_list_append(v, ["germinod", "noun", "germinōdā", "germinōdes", "germinōde", "", "spell"]) + let v = native_list_append(v, ["gewipriest", "noun", "gewipriestā", "gewipriestes", "gewiprieste", "", "priest"]) + let v = native_list_append(v, ["gialtar", "noun", "gialtarā", "gialtares", "gialtare", "", "coaeval"]) + let v = native_list_append(v, ["giburtitag", "noun", "giburtitagā", "giburtitages", "giburtitage", "", "birthday"]) + let v = native_list_append(v, ["gidank", "noun", "gidankā", "gidankes", "gidanke", "", "thought"]) + let v = native_list_append(v, ["giellolf", "noun", "giellolfā", "giellolfes", "giellolfe", "", "rival"]) + let v = native_list_append(v, ["giheiz", "noun", "giheizā", "giheizes", "giheize", "", "promise"]) + let v = native_list_append(v, ["gikumiling", "noun", "gikumilingā", "gikumilinges", "gikumilinge", "", "alien"]) + let v = native_list_append(v, ["gikwemaling", "noun", "gikwemalingā", "gikwemalinges", "gikwemalinge", "", "arriver"]) + let v = native_list_append(v, ["gilaz", "noun", "gilāzā", "gilāzes", "gilāze", "", "concession"]) + let v = native_list_append(v, ["gimeitgengil", "noun", "gimeitgengilā", "gimeitgengiles", "gimeitgengile", "", "idler"]) + let v = native_list_append(v, ["ginoz", "noun", "ginōzā", "ginōzes", "ginōze", "", "comrade"]) + let v = native_list_append(v, ["giruoft", "noun", "giruoftā", "giruoftes", "giruofte", "", "call"]) + let v = native_list_append(v, ["gisamanung", "noun", "gisamanungā", "gisamanunges", "gisamanunge", "", "community"]) + let v = native_list_append(v, ["gisind", "noun", "gisindā", "gisindes", "gisinde", "", "companion"]) + let v = native_list_append(v, ["gistiegil", "noun", "gistiegilā", "gistiegiles", "gistiegile", "", "step"]) + let v = native_list_append(v, ["giswasgot", "noun", "giswāsgotā", "giswāsgotes", "giswāsgote", "", "domestic god"]) + let v = native_list_append(v, ["gizeltkegil", "noun", "gizeltkegilā", "gizeltkegiles", "gizeltkegile", "", "tent pin"]) + let v = native_list_append(v, ["gizwiniling", "noun", "gizwinilingā", "gizwinilinges", "gizwinilinge", "", "twin"]) + let v = native_list_append(v, ["garotag", "noun", "garotagā", "garotages", "garotage", "", "Friday"]) + let v = native_list_append(v, ["gibuntil", "noun", "gibuntilā", "gibuntiles", "gibuntile", "", "bundle"]) + let v = native_list_append(v, ["gougaltuom", "noun", "gougaltuomā", "gougaltuomes", "gougaltuome", "", "juggling"]) + let v = native_list_append(v, ["grintil", "noun", "grintilā", "grintiles", "grintile", "", "bolt"]) + let v = native_list_append(v, ["griozboum", "noun", "griozboumā", "griozboumes", "griozboume", "", "juniper"]) + let v = native_list_append(v, ["griozstein", "noun", "griozsteinā", "griozsteines", "griozsteine", "", "pebble"]) + let v = native_list_append(v, ["grozdarm", "noun", "grōzdarmā", "grōzdarmes", "grōzdarme", "", "rectum"]) + let v = native_list_append(v, ["gruntfrost", "noun", "gruntfrostā", "gruntfrostes", "gruntfroste", "", "ground frost"]) + let v = native_list_append(v, ["gruonpfellol", "noun", "gruonpfellōlā", "gruonpfellōles", "gruonpfellōle", "", "cloth"]) + let v = native_list_append(v, ["gruzing", "noun", "grūzingā", "grūzinges", "grūzinge", "", "beer esp. of"]) + let v = native_list_append(v, ["guotdegan", "noun", "guotdëganā", "guotdëganes", "guotdëgane", "", "follower"]) + let v = native_list_append(v, ["guotwerklib", "noun", "guotwërklībā", "guotwërklībes", "guotwërklībe", "", "life of good"]) + let v = native_list_append(v, ["gurtil", "noun", "gurtilā", "gurtiles", "gurtile", "", "girdle"]) + let v = native_list_append(v, ["afternel", "noun", "afternelā", "afterneles", "afternele", "", "occiput"]) + let v = native_list_append(v, ["afterreif", "noun", "afterreifā", "afterreifes", "afterreife", "", "crupper"]) + let v = native_list_append(v, ["aftersluzzil", "noun", "aftersluȥȥilā", "aftersluȥȥiles", "aftersluȥȥile", "", "skeleton key"]) + let v = native_list_append(v, ["altmag", "noun", "altmāgā", "altmāges", "altmāge", "", "ancestor"]) + let v = native_list_append(v, ["ankspint", "noun", "ankspintā", "ankspintes", "ankspinte", "", "butter"]) + let v = native_list_append(v, ["antheiz", "noun", "antheizā", "antheizes", "antheize", "", "vow"]) + let v = native_list_append(v, ["anttag", "noun", "anttagā", "anttages", "anttage", "", "eighth day"]) + let v = native_list_append(v, ["armboug", "noun", "armbougā", "armbouges", "armbouge", "", "bracelet"]) + let v = native_list_append(v, ["arsdarm", "noun", "arsdarmā", "arsdarmes", "arsdarme", "", "rectum"]) + let v = native_list_append(v, ["arswisk", "noun", "arswiskā", "arswiskes", "arswiske", "", "arse wiper a"]) + let v = native_list_append(v, ["arzat", "noun", "arzātā", "arzātes", "arzāte", "", "medical doctor"]) + let v = native_list_append(v, ["askboum", "noun", "askboumā", "askboumes", "askboume", "", "ash tree"]) + let v = native_list_append(v, ["asterih", "noun", "asterīhā", "asterīhes", "asterīhe", "", "pavement"]) + let v = native_list_append(v, ["asweif", "noun", "āsweifā", "āsweifes", "āsweife", "", "chaff"]) + let v = native_list_append(v, ["azger", "noun", "azgērā", "azgēres", "azgēre", "", "spear"]) + let v = native_list_append(v, ["adank", "noun", "ādankā", "ādankes", "ādanke", "", "invention"]) + let v = native_list_append(v, ["affaltar", "noun", "affaltarā", "affaltares", "affaltare", "", "apple tree"]) + let v = native_list_append(v, ["affaltarboum", "noun", "affaltarboumā", "affaltarboumes", "affaltarboume", "", "apple tree"]) + let v = native_list_append(v, ["agatstein", "noun", "agatsteinā", "agatsteines", "agatsteine", "", "agate"]) + let v = native_list_append(v, ["ahhalm", "noun", "āhhalmā", "āhhalmes", "āhhalme", "", "chilblain"]) + let v = native_list_append(v, ["ahsling", "noun", "ahslingā", "ahslinges", "ahslinge", "", "little tile"]) + let v = native_list_append(v, ["ahteid", "noun", "āhteidā", "āhteides", "āhteide", "", "oath of appeal"]) + let v = native_list_append(v, ["akwemiling", "noun", "ākwemilingā", "ākwemilinges", "ākwemilinge", "", "latecomer"]) + let v = native_list_append(v, ["ambahtari", "noun", "ambahtāre", "ambahtāres", "ambahtāre", "", "servant"]) + let v = native_list_append(v, ["anabetari", "noun", "anabetāre", "anabetāres", "anabetāre", "", "worshipper"]) + let v = native_list_append(v, ["anabuari", "noun", "anabūāre", "anabūāres", "anabūāre", "", "neighbour"]) + let v = native_list_append(v, ["anahezzari", "noun", "anahezzāre", "anahezzāres", "anahezzāre", "", "instigator"]) + let v = native_list_append(v, ["ahsalari", "noun", "ahsalāre", "ahsalāres", "ahsalāre", "", "pillow"]) + let v = native_list_append(v, ["salzstein", "noun", "salzsteinā", "salzsteines", "salzsteine", "", "salt stone"]) + let v = native_list_append(v, ["samahafting", "noun", "samahaftingā", "samahaftinges", "samahaftinge", "", "one who keeps"]) + let v = native_list_append(v, ["samantregil", "noun", "samantregilā", "samantregiles", "samantregile", "", "contribution"]) + let v = native_list_append(v, ["sambuh", "noun", "sambūhā", "sambūhes", "sambūhe", "", "light wagon"]) + let v = native_list_append(v, ["santstein", "noun", "santsteinā", "santsteines", "santsteine", "", "pebble gravel"]) + let v = native_list_append(v, ["sarling", "noun", "sarlingā", "sarlinges", "sarlinge", "", "armed man"]) + let v = native_list_append(v, ["sedalstuol", "noun", "sedalstuolā", "sedalstuoles", "sedalstuole", "", "armchair"]) + let v = native_list_append(v, ["sefinboum", "noun", "sefinboumā", "sefinboumes", "sefinboume", "", "juniper"]) + let v = native_list_append(v, ["sefogal", "noun", "sēfogalā", "sēfogales", "sēfogale", "", "seabird"]) + let v = native_list_append(v, ["segalboum", "noun", "segalboumā", "segalboumes", "segalboume", "", "mast"]) + let v = native_list_append(v, ["selbboum", "noun", "selbboumā", "selbboumes", "selbboume", "", "trunk"]) + let v = native_list_append(v, ["selihof", "noun", "selihofā", "selihofes", "selihofe", "", "manor"]) + let v = native_list_append(v, ["senkil", "noun", "senkilā", "senkiles", "senkile", "", "anchor"]) + let v = native_list_append(v, ["senkilstein", "noun", "senkilsteinā", "senkilsteines", "senkilsteine", "", "anchor"]) + let v = native_list_append(v, ["siguhelm", "noun", "siguhëlmā", "siguhëlmes", "siguhëlme", "", "helm of victory"]) + let v = native_list_append(v, ["sigulon", "noun", "sigulōnā", "sigulōnes", "sigulōne", "", "prize of victory"]) + let v = native_list_append(v, ["silabarling", "noun", "silabarlingā", "silabarlinges", "silabarlinge", "", "silver coin"]) + let v = native_list_append(v, ["silabarsmid", "noun", "silabarsmidā", "silabarsmides", "silabarsmide", "", "silversmith"]) + let v = native_list_append(v, ["siohtuom", "noun", "siohtuomā", "siohtuomes", "siohtuome", "", "sickness"]) + let v = native_list_append(v, ["skafwart", "noun", "skafwartā", "skafwartes", "skafwarte", "", "butler"]) + let v = native_list_append(v, ["skah", "noun", "skāhā", "skāhes", "skāhe", "", "robbery"]) + let v = native_list_append(v, ["skaltboum", "noun", "skaltboumā", "skaltboumes", "skaltboume", "", "bar"]) + let v = native_list_append(v, ["skamal", "noun", "skamalā", "skamales", "skamale", "", "stool"]) + let v = native_list_append(v, ["skaramez", "noun", "skaramezā", "skaramezes", "skarameze", "", "a measure of"]) + let v = native_list_append(v, ["skifskalk", "noun", "skifskalkā", "skifskalkes", "skifskalke", "", "pirate"]) + let v = native_list_append(v, ["skiltkneht", "noun", "skiltknehtā", "skiltknehtes", "skiltknehte", "", "shield bearer"]) + let v = native_list_append(v, ["skopf", "noun", "skopfā", "skopfes", "skopfe", "", "poet"]) + let v = native_list_append(v, ["skoub", "noun", "skoubā", "skoubes", "skoube", "", "sheaf"]) + let v = native_list_append(v, ["skozil", "noun", "skōȥilā", "skōȥiles", "skōȥile", "", "a missile"]) + let v = native_list_append(v, ["skubil", "noun", "skubilā", "skubiles", "skubile", "", "bolt"]) + let v = native_list_append(v, ["skubiling", "noun", "skubilingā", "skubilinges", "skubilinge", "", "sausage"]) + let v = native_list_append(v, ["skuoh", "noun", "skūohā", "skūohes", "skūohe", "", "shoe"]) + let v = native_list_append(v, ["skuzbart", "noun", "skuzbartā", "skuzbartes", "skuzbarte", "", "downy beard"]) + let v = native_list_append(v, ["slahtfrisking", "noun", "slahtfriskingā", "slahtfriskinges", "slahtfriskinge", "", "sacrifice"]) + let v = native_list_append(v, ["sluzzil", "noun", "sluȥȥilā", "sluȥȥiles", "sluȥȥile", "", "key"]) + let v = native_list_append(v, ["smidastok", "noun", "smidastokā", "smidastokes", "smidastoke", "", "anvil"]) + let v = native_list_append(v, ["spiegal", "noun", "spiegalā", "spiegales", "spiegale", "", "mirror"]) + let v = native_list_append(v, ["sporahboum", "noun", "sporahboumā", "sporahboumes", "sporahboume", "", "juniper"]) + let v = native_list_append(v, ["steinofan", "noun", "steinofanā", "steinofanes", "steinofane", "", "stone oven"]) + let v = native_list_append(v, ["firkoufling", "noun", "firkouflingā", "firkouflinges", "firkouflinge", "", "corrupt person"]) + let v = native_list_append(v, ["fiurstein", "noun", "fiursteinā", "fiursteines", "fiursteine", "", "firestone"]) + let v = native_list_append(v, ["fizziboum", "noun", "fizziboumā", "fizziboumes", "fizziboume", "", "weaver’s beam"]) + let v = native_list_append(v, ["flegil", "noun", "flegilā", "flegiles", "flegile", "", "flail"]) + let v = native_list_append(v, ["flinsstein", "noun", "flinssteinā", "flinssteines", "flinssteine", "", "pebble"]) + let v = native_list_append(v, ["fliz", "noun", "flīzā", "flīzes", "flīze", "", "industry"]) + let v = native_list_append(v, ["flugiskuoh", "noun", "flugiskūohā", "flugiskūohes", "flugiskūohe", "", "winged shoe"]) + let v = native_list_append(v, ["fluobargeist", "noun", "fluobargeistā", "fluobargeistes", "fluobargeiste", "", "comforter"]) + let v = native_list_append(v, ["fogallim", "noun", "fogallīmā", "fogallīmes", "fogallīme", "", "birdlime"]) + let v = native_list_append(v, ["folkwig", "noun", "folkwīgā", "folkwīges", "folkwīge", "", "combat"]) + let v = native_list_append(v, ["foragidank", "noun", "foragidankā", "foragidankes", "foragidanke", "", "imagination"]) + let v = native_list_append(v, ["foralon", "noun", "foralōnā", "foralōnes", "foralōne", "", "preference"]) + let v = native_list_append(v, ["fragan", "noun", "frāganā", "frāganes", "frāgane", "", "question"]) + let v = native_list_append(v, ["framkneht", "noun", "framknehtā", "framknehtes", "framknehte", "", "servant"]) + let v = native_list_append(v, ["framwuohhar", "noun", "framwuohharā", "framwuohhares", "framwuohhare", "", "produce"]) + let v = native_list_append(v, ["fridil", "noun", "fridilā", "fridiles", "fridile", "", "friend"]) + let v = native_list_append(v, ["friginoz", "noun", "frīginōzā", "frīginōzes", "frīginōze", "", "fellow freedman"]) + let v = native_list_append(v, ["frihals", "noun", "frīhalsā", "frīhalses", "frīhalse", "", "liberation"]) + let v = native_list_append(v, ["frilaz", "noun", "frīlāzā", "frīlāzes", "frīlāze", "", "freedman"]) + let v = native_list_append(v, ["fronotag", "noun", "frōnotagā", "frōnotages", "frōnotage", "", "Sunday"]) + let v = native_list_append(v, ["firstant", "noun", "firstantā", "firstantes", "firstante", "", "intellect"]) + let v = native_list_append(v, ["firstboum", "noun", "firstboumā", "firstboumes", "firstboume", "", "ridge"]) + let v = native_list_append(v, ["fiurdiob", "noun", "fiurdiobā", "fiurdiobes", "fiurdiobe", "", "pirate"]) + let v = native_list_append(v, ["fiurgot", "noun", "fiurgotā", "fiurgotes", "fiurgote", "", "god of fire"]) + let v = native_list_append(v, ["fiurofan", "noun", "fiurofanā", "fiurofanes", "fiurofane", "", "fire stove"]) + let v = native_list_append(v, ["fristfrang", "noun", "fristfrangā", "fristfranges", "fristfrange", "", "short cut"]) + let v = native_list_append(v, ["frithof", "noun", "frīthofā", "frīthofes", "frīthofe", "", "churchyard"]) + let v = native_list_append(v, ["frituom", "noun", "frītuomā", "frītuomes", "frītuome", "", "discretion"]) + let v = native_list_append(v, ["funtifillol", "noun", "funtifillolā", "funtifilloles", "funtifillole", "", "godchild"]) + let v = native_list_append(v, ["fuotargot", "noun", "fuotargotā", "fuotargotes", "fuotargote", "", "god of pastures"]) + let v = native_list_append(v, ["wizdrubo", "noun", "wīȥdrūbon", "wīȥdrūben", "wīȥdrūben", "", "white grape"]) + let v = native_list_append(v, ["wizzo", "noun", "wiȥȥon", "wiȥȥen", "wiȥȥen", "", "wise man"]) + let v = native_list_append(v, ["wolbo", "noun", "wolbon", "wolben", "wolben", "", "hollow brick"]) + let v = native_list_append(v, ["wolfbizzo", "noun", "wolfbizzon", "wolfbizzen", "wolfbizzen", "", "wolf dog hybrid"]) + let v = native_list_append(v, ["wolko", "noun", "wolkon", "wolken", "wolken", "", "cloud"]) + let v = native_list_append(v, ["wullido", "noun", "wullidon", "wulliden", "wulliden", "", "disgust"]) + let v = native_list_append(v, ["wunnigarto", "noun", "wunnigarton", "wunnigarten", "wunnigarten", "", "paradise"]) + let v = native_list_append(v, ["wunno", "noun", "wunnon", "wunnen", "wunnen", "", "delight"]) + let v = native_list_append(v, ["wuoto", "noun", "wuoton", "wuoten", "wuoten", "", "one who rages"]) + let v = native_list_append(v, ["wurhto", "noun", "wurhton", "wurhten", "wurhten", "", "worker"]) + let v = native_list_append(v, ["wurko", "noun", "wurkon", "wurken", "wurken", "", "creator"]) + let v = native_list_append(v, ["wurmo", "noun", "wurmon", "wurmen", "wurmen", "", "worm"]) + let v = native_list_append(v, ["waranemo", "noun", "waranemon", "waranemen", "waranemen", "", "observer"]) + let v = native_list_append(v, ["warkweto", "noun", "wārkwetoon", "wārkwetoen", "wārkwetoen", "", "prophet"]) + let v = native_list_append(v, ["warsago", "noun", "wārsagon", "wārsagen", "wārsagen", "", "fortune teller soothsayer"]) + let v = native_list_append(v, ["warseggo", "noun", "wārseggon", "wārseggen", "wārseggen", "", "fortune teller soothsayer"]) + let v = native_list_append(v, ["weraltfuristo", "noun", "wëraltfuriston", "wëraltfuristen", "wëraltfuristen", "", "lord of the"]) + let v = native_list_append(v, ["weraltheriro", "noun", "wëralthēriron", "wëralthēriren", "wëralthēriren", "", "ruler of the"]) + let v = native_list_append(v, ["weraltrehtwiso", "noun", "wëraltrëhtwīson", "wëraltrëhtwīsen", "wëraltrëhtwīsen", "", "one with knowledge"]) + let v = native_list_append(v, ["weraltwiso", "noun", "wëraltwīson", "wëraltwīsen", "wëraltwīsen", "", "philosopher scholar"]) + let v = native_list_append(v, ["weraltwolo", "noun", "wëraltwolon", "wëraltwolen", "wëraltwolen", "", "worldly wealth"]) + let v = native_list_append(v, ["werkbriefo", "noun", "werkbriefon", "werkbriefen", "werkbriefen", "", "scribe"]) + let v = native_list_append(v, ["wihttrago", "noun", "wihttragon", "wihttragen", "wihttragen", "", "wind maker"]) + let v = native_list_append(v, ["wisigerno", "noun", "wīsigërnon", "wīsigërnen", "wīsigërnen", "", "lover of wisdom"]) + let v = native_list_append(v, ["wisunto", "noun", "wisunton", "wisunten", "wisunten", "", "buffalo"]) + let v = native_list_append(v, ["lihhamo", "noun", "līhhamon", "līhhamen", "līhhamen", "", "body"]) + let v = native_list_append(v, ["frifridil", "noun", "frifridilā", "frifridiles", "frifridile", "", "The meaning of"]) + let v = native_list_append(v, ["frewida", "noun", "frewidā", "frewidōno", "frewidu", "", "joy"]) + let v = native_list_append(v, ["ganzida", "noun", "ganzidā", "ganzidōno", "ganzidu", "", "completeness wholeness"]) + let v = native_list_append(v, ["tuom", "noun", "tuomā", "tuomes", "tuome", "", "dominion"]) + let v = native_list_append(v, ["ᚠᚱᛁᚠᚱᛁᛞᛁᛚ", "noun", "ᚠᚱᛁᚠᚱᛁᛞᛁᛚ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["nidarunga", "noun", "nidarungā", "nidarungōno", "nidarungu", "", "condemnation"]) + let v = native_list_append(v, ["hasin", "noun", "hasin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moltu", "noun", "moltu", "", "", "", "dust soil"]) + let v = native_list_append(v, ["wicstat", "noun", "wicstat", "", "", "", "battlefield"]) + let v = native_list_append(v, ["houbitburg", "noun", "houbitburgi", "houbitburgi", "houbitburgi", "", "capital city"]) + let v = native_list_append(v, ["houbitman", "noun", "houbitman", "", "", "", "captain leader head"]) + let v = native_list_append(v, ["houbitbolstar", "noun", "houbitbolstarā", "houbitbolstares", "houbitbolstare", "", "pillow"]) + let v = native_list_append(v, ["bolstar", "noun", "bolstarā", "bolstares", "bolstare", "", "pillow cushion"]) + let v = native_list_append(v, ["giwafani", "noun", "giwāfani", "giwāfanes", "giwāfane", "", "weaponry weapons arms"]) + let v = native_list_append(v, ["manslago", "noun", "manslagon", "manslagen", "manslagen", "", "someone who kills"]) + let v = native_list_append(v, ["manslaht", "noun", "manslahti", "manslahtes", "manslahte", "", "killing of a"]) + let v = native_list_append(v, ["itisi", "noun", "itisi", "", "", "", "inflection of itis"]) + let v = native_list_append(v, ["idisi", "noun", "idisi", "", "", "", "inflection of itis"]) + let v = native_list_append(v, ["heilizunga", "noun", "heilizunga", "", "", "", "greeting"]) + let v = native_list_append(v, ["ferahes", "noun", "ferahes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["heriun", "noun", "heriun", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["helidos", "noun", "helidos", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Hiltibrantes", "noun", "Hiltibrantes", "", "", "", "genitive of Hiltibrant"]) + let v = native_list_append(v, ["Hadubrantes", "noun", "Hadubrantes", "", "", "", "genitive of Hadubrant"]) + let v = native_list_append(v, ["Heribrantes", "noun", "Heribrantes", "", "", "", "genitive of Heribrant"]) + let v = native_list_append(v, ["ƿuortun", "noun", "ƿuortun", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["tagum", "noun", "tagum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sciltim", "noun", "sciltim", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿabnum", "noun", "ƿabnum", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["uuortum", "noun", "uuortum", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["wortum", "noun", "wortum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["chuning", "noun", "chuning", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["swertu", "noun", "swertu", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["suertu", "noun", "suertu", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["herron", "noun", "herron", "", "", "", "inflection of hērro"]) + let v = native_list_append(v, ["ƿeƿurt", "noun", "ƿeƿurt", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["otmuoti", "noun", "otmuoti", "", "", "", "humility"]) + let v = native_list_append(v, ["sumaro", "noun", "sumaro", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fluoh", "noun", "fluoh", "", "", "", "curse malediction"]) + let v = native_list_append(v, ["hrust", "noun", "hrusti", "hrusti", "hrusti", "", "armour"]) + let v = native_list_append(v, ["hrustim", "noun", "hrustim", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["helida", "noun", "helida", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["folche", "noun", "folche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["folches", "noun", "folches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rauba", "noun", "rauba", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ƿiges", "noun", "ƿiges", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["billiu", "noun", "billiu", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["fateres", "noun", "fateres", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Huni", "noun", "Hūni", "Hūnes", "Hūne", "", "alternative form of"]) + let v = native_list_append(v, ["Hunio", "noun", "Hunio", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["huneo", "noun", "huneo", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["bouga", "noun", "bouga", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Otachres", "noun", "Otachres", "", "", "", "genitive of Ōtacher"]) + let v = native_list_append(v, ["Otachre", "noun", "Otachre", "", "", "", "dative of Ōtacher"]) + let v = native_list_append(v, ["otachres", "noun", "otachres", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["otachre", "noun", "otachre", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["chind", "noun", "chind", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chunincriche", "noun", "chunincriche", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["Wentilseo", "noun", "Wentilseo", "", "", "", "Mediterranean Sea a"]) + let v = native_list_append(v, ["ƿentilseo", "noun", "ƿentilseo", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["wintro", "noun", "wintro", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ƿintro", "noun", "ƿintro", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["heuane", "noun", "heuane", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿic", "noun", "ƿic", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["inƿit", "noun", "inƿit", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["brunnono", "noun", "brunnono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Hiltibraht", "noun", "Hiltibraht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hadubraht", "noun", "Hadubraht", "", "", "", "misspelling of Hadubrant"]) + let v = native_list_append(v, ["seolidante", "noun", "sēolīdante", "", "", "", "sea-travellers sailors"]) + let v = native_list_append(v, ["sunufatarungo", "noun", "sunufatarungo", "", "", "", "son and father"]) + let v = native_list_append(v, ["Godan", "noun", "Godan", "", "", "", "Woden Odin"]) + let v = native_list_append(v, ["lintun", "noun", "lintun", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ostarliuto", "noun", "ostarliuto", "", "", "", "genitive of ōstarliuti"]) + let v = native_list_append(v, ["ostarliuti", "noun", "ōstarliutī", "", "", "", "eastern men people"]) + let v = native_list_append(v, ["hregilo", "noun", "hregilo", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tiufi", "noun", "tiufi", "tiufī", "tiufī", "", "depth"]) + let v = native_list_append(v, ["knuosal", "noun", "knuosalo", "knuosales", "knuosale", "", "race family descent"]) + let v = native_list_append(v, ["brezitella", "noun", "brēzitellūn", "brēzitellūn", "brēzitellūn", "", "A pastry especially"]) + let v = native_list_append(v, ["cnuosles", "noun", "cnuosles", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["Ostarrihhi", "noun", "Ostarrihhi", "", "", "", "the lands of"]) + let v = native_list_append(v, ["Herigast", "noun", "Herigast", "", "", "", "a male given"]) + let v = native_list_append(v, ["murmento", "noun", "murmenton", "murmenten", "murmenten", "", "marmot"]) + let v = native_list_append(v, ["kussin", "noun", "kussīn", "kussīnes", "kussīne", "", "pillow cushion for"]) + let v = native_list_append(v, ["ehhol", "noun", "ehholā", "ehholes", "ehhole", "", "steel"]) + let v = native_list_append(v, ["Diotrih", "noun", "Diotrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Detrih", "noun", "Detrih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Theotrih", "noun", "Theotrih", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Theotrihhe", "noun", "Theotrihhe", "", "", "", "dative of Theotrih"]) + let v = native_list_append(v, ["Deotrichhe", "noun", "Deotrichhe", "", "", "", "dative of Deotrich"]) + let v = native_list_append(v, ["Detrihhe", "noun", "Detrihhe", "", "", "", "dative of Detrih"]) + let v = native_list_append(v, ["scarnafol", "noun", "scarnafol", "", "", "", "shithead dirty fellow"]) + let v = native_list_append(v, ["zeihhan", "noun", "zeihhano", "zeihhanes", "zeihhane", "", "sign token"]) + let v = native_list_append(v, ["garawida", "noun", "garawidā", "garawidōno", "garawidu", "", "gear harness garment"]) + let v = native_list_append(v, ["antlizzi", "noun", "antlizzo", "antlizzes", "antlizze", "", "face countenance"]) + let v = native_list_append(v, ["meinswero", "noun", "meinsweron", "meinsweren", "meinsweren", "", "perjurer"]) + let v = native_list_append(v, ["sciluf", "noun", "sciluf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["husum", "noun", "husum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["foha", "noun", "foha", "", "", "", "vixen"]) + let v = native_list_append(v, ["manskimo", "noun", "mānskīmon", "mānskīmen", "mānskīmen", "", "moonlight moonshine"]) + let v = native_list_append(v, ["mankrut", "noun", "mankrut", "", "", "", "moonwort"]) + let v = native_list_append(v, ["Engilberht", "noun", "Engilberhtā", "Engilberhtes", "Engilberhte", "", "a male given"]) + let v = native_list_append(v, ["nahho", "noun", "nahhon", "nahhen", "nahhen", "", "shallow river boat"]) + let v = native_list_append(v, ["Hadamar", "noun", "Hadamar", "", "", "", "a male given"]) + let v = native_list_append(v, ["ewasago", "noun", "ēwasagon", "ēwasagen", "ēwasagen", "", "lawman lawspeaker"]) + let v = native_list_append(v, ["Yairus", "noun", "Yairus", "", "", "", "Jair"]) + let v = native_list_append(v, ["Ermelinda", "noun", "Ermelinda", "", "", "", "a female given"]) + let v = native_list_append(v, ["wolfa", "noun", "wolfa", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["wolfo", "noun", "wolfo", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["wolfum", "noun", "wolfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["wolfu", "noun", "wolfu", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["hirtes", "noun", "hirtes", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gestim", "noun", "gestim", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ahtunga", "noun", "ahtungā", "ahtungōno", "ahtungu", "", "consideration deliberation"]) + let v = native_list_append(v, ["luchs", "noun", "luchs", "", "", "", "lynx"]) + let v = native_list_append(v, ["chazze", "noun", "chazze", "", "", "", "cat"]) + let v = native_list_append(v, ["Bardilo", "noun", "Bardilo", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Grimuald", "noun", "Grimuald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gisilpert", "noun", "Gisilpert", "", "", "", "a male given"]) + let v = native_list_append(v, ["gisil", "noun", "gisil", "", "", "", "hostage alternative form"]) + let v = native_list_append(v, ["erdberi", "noun", "ërdberi", "ërdberes", "ërdbere", "", "strawberry"]) + let v = native_list_append(v, ["merzo", "noun", "merzon", "merzen", "merzen", "", "March"]) + let v = native_list_append(v, ["abrello", "noun", "abrellon", "abrellen", "abrellen", "", "April"]) + let v = native_list_append(v, ["ougusto", "noun", "ouguston", "ougusten", "ougusten", "", "August"]) + let v = native_list_append(v, ["buhsa", "noun", "buhsūn", "buhsūn", "buhsūn", "", "box"]) + let v = native_list_append(v, ["kazza", "noun", "kazzūn", "kazzūn", "kazzūn", "", "cat"]) + let v = native_list_append(v, ["hemidi", "noun", "hemido", "hemides", "hemide", "", "a shirt"]) + let v = native_list_append(v, ["butira", "noun", "butirūn", "butirūn", "butirūn", "", "butter"]) + let v = native_list_append(v, ["anutrehho", "noun", "anutrëhhon", "anutrëhhen", "anutrëhhen", "", "drake male duck"]) + let v = native_list_append(v, ["Bardil", "noun", "Bardilā", "Bardiles", "Bardile", "", "a male given"]) + let v = native_list_append(v, ["hospitalhus", "noun", "hospitalhūs", "hospitalhūses", "hospitalhūse", "", "hospital"]) + let v = native_list_append(v, ["urheizo", "noun", "urheizon", "urheizen", "urheizen", "", "challenger champion"]) + let v = native_list_append(v, ["Muntwil", "noun", "Muntwile", "Muntwiles", "Muntwile", "", "a male given"]) + let v = native_list_append(v, ["Adalram", "noun", "Adalram", "", "", "", "a male given"]) + let v = native_list_append(v, ["Taugart", "noun", "Taugartā", "Taugartes", "Taugarte", "", "a male given"]) + let v = native_list_append(v, ["Bargeil", "noun", "Bargeilā", "Bargeiles", "Bargeile", "", "a male given"]) + let v = native_list_append(v, ["Jundil", "noun", "Jundilā", "Jundiles", "Jundile", "", "a male given"]) + let v = native_list_append(v, ["Gerwil", "noun", "Gerwilā", "Gerwiles", "Gerwile", "", "a male given"]) + let v = native_list_append(v, ["Agil", "noun", "Agilā", "Agiles", "Agile", "", "a male given"]) + let v = native_list_append(v, ["Muntil", "noun", "Muntilā", "Muntiles", "Muntile", "", "a male given"]) + let v = native_list_append(v, ["Reginpert", "noun", "Reginpert", "", "", "", "a male given"]) + let v = native_list_append(v, ["Nargil", "noun", "Nargilā", "Nargiles", "Nargile", "", "a male given"]) + let v = native_list_append(v, ["Mindah", "noun", "Mindahā", "Mindahes", "Mindahe", "", "a male given"]) + let v = native_list_append(v, ["Oustih", "noun", "Oustihā", "Oustihes", "Oustihe", "", "a male given"]) + let v = native_list_append(v, ["Helidin", "noun", "Helidinnā", "Helidinna", "Helidinnu", "", "a female given"]) + let v = native_list_append(v, ["Yrminsuind", "noun", "Yrminsuind", "", "", "", "a female given"]) + let v = native_list_append(v, ["Aotlant", "noun", "Aotlant", "", "", "", "a male given"]) + let v = native_list_append(v, ["scozil", "noun", "scozil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helfant", "noun", "helfant", "", "", "", "elephant"]) + let v = native_list_append(v, ["koufom", "noun", "koufom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["koufono", "noun", "koufono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["koufun", "noun", "koufun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufen", "noun", "koufen", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["koufin", "noun", "koufin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hanun", "noun", "hanun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hanon", "noun", "hanon", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hanin", "noun", "hanin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hasono", "noun", "hasono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hasom", "noun", "hasom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hasun", "noun", "hasun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zungun", "noun", "zungun", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["zungono", "noun", "zungono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["zungom", "noun", "zungom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["zungon", "noun", "zungon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["razun", "noun", "razun", "", "", "", "accusative/genitive/dative singular of"]) + let v = native_list_append(v, ["gebono", "noun", "gebono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gebom", "noun", "gebom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["karono", "noun", "karono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Willihelm", "noun", "Willihelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["kuohhono", "noun", "kuohhono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kuohhom", "noun", "kuohhom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["kuohhin", "noun", "kuohhin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kuohhen", "noun", "kuohhen", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["kuohhon", "noun", "kuohhon", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["kuohhun", "noun", "kuohhun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chuohho", "noun", "chuohho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chuocho", "noun", "chuocho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["khuohho", "noun", "khuohho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["khuocho", "noun", "khuocho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["skadono", "noun", "skadono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["skadin", "noun", "skadin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skadon", "noun", "skadon", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["skadun", "noun", "skadun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skadom", "noun", "skadom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["louga", "noun", "lougā", "lougōno", "lougu", "", "lye"]) + let v = native_list_append(v, ["lougu", "noun", "lougu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lougono", "noun", "lougono", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lougom", "noun", "lougom", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Perhtheri", "noun", "Perhtheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Deotcrim", "noun", "Deotcrim", "", "", "", "a male given"]) + let v = native_list_append(v, ["Liutheri", "noun", "Liutheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hiltrat", "noun", "Hiltrat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuihrat", "noun", "Uuihrat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginfrid", "noun", "Reginfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilhilt", "noun", "Engilhilti", "Engilhilti", "Engilhilti", "", "a female given"]) + let v = native_list_append(v, ["Sigifrid", "noun", "Sigifrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Amolrih", "noun", "Amolrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Paltrih", "noun", "Paltrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Siguuualh", "noun", "Siguuualh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilperht", "noun", "Engilperhtā", "Engilperhtes", "Engilperhte", "", "a male given"]) + let v = native_list_append(v, ["Otnant", "noun", "Otnant", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cuntrat", "noun", "Cuntrātā", "Cuntrātes", "Cuntrāte", "", "a male given"]) + let v = native_list_append(v, ["Gozperht", "noun", "Gozperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalheid", "noun", "Adalheidi", "Adalheidi", "Adalheidi", "", "a female given"]) + let v = native_list_append(v, ["Seluuall", "noun", "Seluuall", "", "", "", "a male given"]) + let v = native_list_append(v, ["Altfrid", "noun", "Altfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuilihelm", "noun", "Uuilihelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuillihelm", "noun", "Uuillihelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalhelm", "noun", "Adalhelmā", "Adalhelmes", "Adalhelme", "", "a male given"]) + let v = native_list_append(v, ["Lantrat", "noun", "Lantrat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuillipero", "noun", "Uuillipero", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalperht", "noun", "Adalperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ellinrod", "noun", "Ellinrod", "", "", "", "a male given"]) + let v = native_list_append(v, ["hruod", "noun", "hruod", "", "", "", "fame renown"]) + let v = native_list_append(v, ["Engilmar", "noun", "Engilmar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolaspart", "noun", "Uuolaspart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Peranfrid", "noun", "Peranfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginfrit", "noun", "Reginfrit", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualtfrit", "noun", "Uualtfrit", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualdfrid", "noun", "Uualdfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Erchanfrid", "noun", "Erchanfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ascrih", "noun", "Ascrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hadapurc", "noun", "Hadapurc", "", "", "", "a female given"]) + let v = native_list_append(v, ["Liutolf", "noun", "Liutolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Podalheid", "noun", "Podalheid", "", "", "", "a female given"]) + let v = native_list_append(v, ["Engilpald", "noun", "Engilpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engiluuolf", "noun", "Engiluuolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Isanhilt", "noun", "Isanhilt", "", "", "", "a female given"]) + let v = native_list_append(v, ["Alticund", "noun", "Alticund", "", "", "", "a female given"]) + let v = native_list_append(v, ["Madalhilt", "noun", "Madalhilt", "", "", "", "a female given"]) + let v = native_list_append(v, ["Reginbot", "noun", "Reginbot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginpato", "noun", "Reginpato", "", "", "", "a female given"]) + let v = native_list_append(v, ["Reginpero", "noun", "Reginpero", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginpirc", "noun", "Reginpirc", "", "", "", "a female given"]) + let v = native_list_append(v, ["Reginpirin", "noun", "Reginpirin", "", "", "", "a female given"]) + let v = native_list_append(v, ["Reginpald", "noun", "Reginpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginpurc", "noun", "Reginpurc", "", "", "", "a female given"]) + let v = native_list_append(v, ["Meripurc", "noun", "Meripurc", "", "", "", "a female given"]) + let v = native_list_append(v, ["Meripurh", "noun", "Meripurh", "", "", "", "a female given"]) + let v = native_list_append(v, ["Uuolfker", "noun", "Uuolfker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfger", "noun", "Uuolfger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfkis", "noun", "Uuolfkis", "", "", "", "a male given"]) + let v = native_list_append(v, ["Deotsuint", "noun", "Deotsuint", "", "", "", "a female given"]) + let v = native_list_append(v, ["Engilger", "noun", "Engilger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ellanpurc", "noun", "Ellanpurc", "", "", "", "a female given"]) + let v = native_list_append(v, ["Perhtmunt", "noun", "Perhtmuntā", "Perhtmuntes", "Perhtmunte", "", "a male given"]) + let v = native_list_append(v, ["Perchteri", "noun", "Perchteri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfhelm", "noun", "Uuolfhelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ratpert", "noun", "Ratpert", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ratperht", "noun", "Ratperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hratperht", "noun", "Hratperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["ruod", "noun", "ruod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Engilpero", "noun", "Engilperon", "Engilperen", "Engilperen", "", "a male given"]) + let v = native_list_append(v, ["Hiltni", "noun", "Hiltni", "", "", "", "a female given"]) + let v = native_list_append(v, ["Senelhart", "noun", "Senelhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hiltisuint", "noun", "Hiltisuint", "", "", "", "a female given"]) + let v = native_list_append(v, ["Uuelarat", "noun", "Uuelarat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuelamot", "noun", "Uuelamot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuelamuot", "noun", "Uuelamuot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuelgar", "noun", "Uuelgar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuelolf", "noun", "Uuelolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cunther", "noun", "Cunther", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilhoh", "noun", "Engilhoh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualthart", "noun", "Uualthart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfhart", "noun", "Uuolfhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfpert", "noun", "Uuolfpert", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfperht", "noun", "Uuolfperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfpreht", "noun", "Uuolfpreht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilart", "noun", "Engilart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Geruuih", "noun", "Geruuih", "", "", "", "a female given"]) + let v = native_list_append(v, ["Paldachar", "noun", "Paldachar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilpirin", "noun", "Engilpirin", "", "", "", "a female given"]) + let v = native_list_append(v, ["Kerrod", "noun", "Kerrod", "", "", "", "a male given"]) + let v = native_list_append(v, ["Baldroh", "noun", "Baldroh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hruadolf", "noun", "Hruadolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ruodolf", "noun", "Ruodolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cundachar", "noun", "Cundachar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gozperaht", "noun", "Gozperaht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hiltiperht", "noun", "Hiltiperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hiltibreht", "noun", "Hiltibreht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Perhtrih", "noun", "Perhtrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Herrat", "noun", "Herrat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Herirat", "noun", "Herirat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalhram", "noun", "Adalhram", "", "", "", "a male given"]) + let v = native_list_append(v, ["Otachar", "noun", "Otachar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Paturih", "noun", "Paturih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ratolt", "noun", "Ratolt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hratolt", "noun", "Hratolt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginheri", "noun", "Reginheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arpeo", "noun", "Arpeo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Odalscalh", "noun", "Odalscalh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalunc", "noun", "Adalunc", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigihart", "noun", "Sigihart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigihard", "noun", "Sigihard", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kozpald", "noun", "Kozpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gozpald", "noun", "Gozpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Theotker", "noun", "Theotker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diatger", "noun", "Diatger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Deotker", "noun", "Deotker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diotker", "noun", "Diotker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Isker", "noun", "Isker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Isanker", "noun", "Isanker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Isanger", "noun", "Isanger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigimuot", "noun", "Sigimuot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigiuualh", "noun", "Sigiuualh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rihhart", "noun", "Rihhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Heriperht", "noun", "Heriperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Haimo", "noun", "Haimon", "Haimen", "Haimen", "", "a male given"]) + let v = native_list_append(v, ["Uuioker", "noun", "Uuioker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sindo", "noun", "Sindon", "Sinden", "Sinden", "", "a male given"]) + let v = native_list_append(v, ["Paldo", "noun", "Paldon", "Palden", "Palden", "", "a male given"]) + let v = native_list_append(v, ["Uuatto", "noun", "Uuatton", "Uuatten", "Uuatten", "", "a male given"]) + let v = native_list_append(v, ["Aeuo", "noun", "Aeuon", "Aeuen", "Aeuen", "", "a male given"]) + let v = native_list_append(v, ["Uualto", "noun", "Uualton", "Uualten", "Uualten", "", "a male given"]) + let v = native_list_append(v, ["Hotto", "noun", "Hotton", "Hotten", "Hotten", "", "a male given"]) + let v = native_list_append(v, ["Arnhelm", "noun", "Arnhelmā", "Arnhelmes", "Arnhelme", "", "a male given"]) + let v = native_list_append(v, ["Uualdker", "noun", "Uualdker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualtker", "noun", "Uualtker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Odalgaer", "noun", "Odalgaer", "", "", "", "a male given"]) + let v = native_list_append(v, ["Odalgher", "noun", "Odalgher", "", "", "", "a male given"]) + let v = native_list_append(v, ["Waltfrid", "noun", "Waltfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Waltger", "noun", "Waltger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Odalger", "noun", "Odalger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gundolf", "noun", "Gundolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Walahari", "noun", "Walahari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualari", "noun", "Uualari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualahari", "noun", "Uualahari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Erchanperht", "noun", "Erchanperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Erkanberht", "noun", "Erkanberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Erkanfrida", "noun", "Erkanfrīdā", "Erkanfrīda", "Erkanfrīdu", "", "a female given"]) + let v = native_list_append(v, ["Erkanfrid", "noun", "Erkanfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ruodberht", "noun", "Ruodberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrodperht", "noun", "Hrodperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rodperht", "noun", "Rodperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arfrid", "noun", "Arfrid", "", "", "", "a male given"]) + let v = native_list_append(v, ["Watil", "noun", "Watilā", "Watiles", "Watile", "", "a male given"]) + let v = native_list_append(v, ["Uuatil", "noun", "Uuatilā", "Uuatiles", "Uuatile", "", "a male given"]) + let v = native_list_append(v, ["Teotmar", "noun", "Teotmar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ruodger", "noun", "Ruodger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrodkaer", "noun", "Hrodkaer", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrodker", "noun", "Hrodker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wolfger", "noun", "Wolfger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuolfkaer", "noun", "Uuolfkaer", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gerheri", "noun", "Gerheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kaerhari", "noun", "Kaerhari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kerhari", "noun", "Kerhari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Garoheri", "noun", "Garoheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Caroheri", "noun", "Caroheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Carohari", "noun", "Carohari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wisolf", "noun", "Wisolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gisalolf", "noun", "Gisalolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kislolf", "noun", "Kislolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kyslolf", "noun", "Kyslolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gotescalc", "noun", "Gotescalc", "", "", "", "a male given"]) + let v = native_list_append(v, ["Goteskalk", "noun", "Goteskalk", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cotæsscalc", "noun", "Cotæsscalc", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gundalberht", "noun", "Gundalberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gundulperht", "noun", "Gundulperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ostarberht", "noun", "Ostarberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aostarperht", "noun", "Aostarperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ostarperht", "noun", "Ostarperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rihhelm", "noun", "Rihhelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Richelm", "noun", "Richelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Einhart", "noun", "Einhartā", "Einhartes", "Einharte", "", "a male given"]) + let v = native_list_append(v, ["Ainhart", "noun", "Ainhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gozberht", "noun", "Gozberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Berhtgoz", "noun", "Berhtgoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Perhtcaoz", "noun", "Perhtcaoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Frehho", "noun", "Frehho", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalberht", "noun", "Adalberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Maghelm", "noun", "Maghelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Machelm", "noun", "Machelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Helmberht", "noun", "Helmberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Helmperht", "noun", "Helmperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["diutari", "noun", "diutāre", "diutāres", "diutāre", "", "translator explainer"]) + let v = native_list_append(v, ["Diotswind", "noun", "Diotswind", "", "", "", "a female given"]) + let v = native_list_append(v, ["Diotger", "noun", "Diotger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diothad", "noun", "Diothad", "", "", "", "a male given"]) + let v = native_list_append(v, ["Teothad", "noun", "Teothad", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aotmar", "noun", "Aotmar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rehtwili", "noun", "Rehtwili", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrehtuuili", "noun", "Hrehtuuili", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wihbot", "noun", "Wihbot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuicpot", "noun", "Uuicpot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Winidheri", "noun", "Winidheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigimar", "noun", "Sigimar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Egilberht", "noun", "Egilberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Egilperht", "noun", "Egilperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hadurih", "noun", "Hadurih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hadaburg", "noun", "Hadaburg", "", "", "", "a female given"]) + let v = native_list_append(v, ["Berhthold", "noun", "Berhthold", "", "", "", "a male given"]) + let v = native_list_append(v, ["Perhtolt", "noun", "Perhtolt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Berhtmunt", "noun", "Berhtmuntā", "Berhtmuntes", "Berhtmunte", "", "a male given"]) + let v = native_list_append(v, ["Ædiram", "noun", "Ædiram", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ediram", "noun", "Ediram", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gomaleih", "noun", "Gomaleih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Comaleih", "noun", "Comaleih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalnand", "noun", "Adalnand", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gozheri", "noun", "Gozheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Caozhari", "noun", "Caozhari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Flatberht", "noun", "Flatberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Fledpret", "noun", "Fledpret", "", "", "", "a male given"]) + let v = native_list_append(v, ["Heriberht", "noun", "Heriberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hariperht", "noun", "Hariperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Poppo", "noun", "Poppo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uodalskalk", "noun", "Uodalskalk", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diotgrim", "noun", "Diotgrim", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ongoz", "noun", "Ongoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aongoz", "noun", "Aongoz", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hiltimunt", "noun", "Hiltimunt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Lantberht", "noun", "Lantberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Lantperht", "noun", "Lantperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gundheri", "noun", "Gundheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cundhari", "noun", "Cundhari", "", "", "", "a male given"]) + let v = native_list_append(v, ["Reginolf", "noun", "Reginolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Raginolf", "noun", "Raginolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hadumar", "noun", "Hadumar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gundahhar", "noun", "Gundahhar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Baldahhar", "noun", "Baldahhar", "", "", "", "a male given"]) + let v = native_list_append(v, ["Willibald", "noun", "Willibald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuillipald", "noun", "Uuillipald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gerilo", "noun", "Gerilo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kaerilo", "noun", "Kaerilo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Suniberht", "noun", "Suniberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Suniperht", "noun", "Suniperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Heribald", "noun", "Heribald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hiltiberht", "noun", "Hiltiberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Eripald", "noun", "Eripald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Leoberht", "noun", "Leoberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diotolf", "noun", "Diotolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Otlant", "noun", "Otlant", "", "", "", "a male given"]) + let v = native_list_append(v, ["Altigund", "noun", "Altigund", "", "", "", "a female given"]) + let v = native_list_append(v, ["Meriburg", "noun", "Meriburg", "", "", "", "a female given"]) + let v = native_list_append(v, ["Otger", "noun", "Otger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Baturih", "noun", "Baturih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigiwalh", "noun", "Sigiwalh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Berhtrih", "noun", "Berhtrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ratberht", "noun", "Ratberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gozbald", "noun", "Gozbald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Berhtgis", "noun", "Berhtgis", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wolfhart", "noun", "Wolfhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wolfberht", "noun", "Wolfberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Walthart", "noun", "Walthart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uodalger", "noun", "Uodalger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Welamuot", "noun", "Welamuot", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wolarat", "noun", "Wolarat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Welarat", "noun", "Welarat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bernheri", "noun", "Bernheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pernheri", "noun", "Pernheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aunemund", "noun", "Aunemund", "", "", "", "a male given"]) + let v = native_list_append(v, ["Omunt", "noun", "Omunt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aomunt", "noun", "Aomunt", "", "", "", "a male given"]) + let v = native_list_append(v, ["Leibuni", "noun", "Leibuni", "", "", "", "a male given"]) + let v = native_list_append(v, ["Laipuni", "noun", "Laipuni", "", "", "", "a male given"]) + let v = native_list_append(v, ["Waltberht", "noun", "Waltberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uualtiperht", "noun", "Uualtiperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Agrizzo", "noun", "Agrizzo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Agarizzo", "noun", "Agarizzo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalruod", "noun", "Adalruod", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalrod", "noun", "Adalrod", "", "", "", "a male given"]) + let v = native_list_append(v, ["Agildrud", "noun", "Agildrūdi", "Agildrūdi", "Agildrūdi", "", "a female given"]) + let v = native_list_append(v, ["ᚨᚷᛁᛚᚨᚦᚱᚢᚦ", "noun", "ᚨᚷᛁᛚᚨᚦᚱᚢᚦ", "", "", "", "a female given"]) + let v = native_list_append(v, ["Egilwart", "noun", "Egilwart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Egiluuart", "noun", "Egiluuart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arhart", "noun", "Arhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Engilhart", "noun", "Engilhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Blidger", "noun", "Blidger", "", "", "", "a male given"]) + let v = native_list_append(v, ["Plidker", "noun", "Plidker", "", "", "", "a male given"]) + let v = native_list_append(v, ["Otgis", "noun", "Otgis", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aotkis", "noun", "Aotkis", "", "", "", "a male given"]) + let v = native_list_append(v, ["Isanberht", "noun", "Isanberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Isanperht", "noun", "Isanperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ruodhart", "noun", "Ruodhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wolfdregi", "noun", "Wolfdregi", "", "", "", "a male given"]) + let v = native_list_append(v, ["piligrim", "noun", "piligrīmā", "piligrīmes", "piligrīme", "", "foreigner stranger"]) + let v = native_list_append(v, ["Reginbirga", "noun", "Reginbirga", "", "", "", "a female given"]) + let v = native_list_append(v, ["Reginburg", "noun", "Reginburg", "", "", "", "a female given"]) + let v = native_list_append(v, ["Uuolfdraegi", "noun", "Uuolfdraegi", "", "", "", "a male given"]) + let v = native_list_append(v, ["Wolfdregil", "noun", "Wolfdregil", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigibald", "noun", "Sigibald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigipald", "noun", "Sigipald", "", "", "", "a male given"]) + let v = native_list_append(v, ["muoma", "noun", "muomūn", "muomūn", "muomūn", "", "aunt mothers sister"]) + let v = native_list_append(v, ["Gunzo", "noun", "Gunzo", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ellanberht", "noun", "Ellanberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ellanburg", "noun", "Ellanburg", "", "", "", "a female given"]) + let v = native_list_append(v, ["Allianperht", "noun", "Allianperht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Cunzho", "noun", "Cunzho", "", "", "", "a male given"]) + let v = native_list_append(v, ["Lanto", "noun", "Lanto", "", "", "", "a male given"]) + let v = native_list_append(v, ["Adalhoh", "noun", "Adalhoh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Heilrat", "noun", "Heilrat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hailrat", "noun", "Hailrat", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kunihoh", "noun", "Kunihoh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Chunihoh", "noun", "Chunihoh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Asuni", "noun", "Asuni", "", "", "", "a male given"]) + let v = native_list_append(v, ["Diotbald", "noun", "Diotbald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Theotpald", "noun", "Theotpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rihbald", "noun", "Rihbald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrihpald", "noun", "Hrihpald", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sindberht", "noun", "Sindberht", "", "", "", "a male given"]) + let v = native_list_append(v, ["Otrih", "noun", "Otrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Waning", "noun", "Waning", "", "", "", "a male given"]) + let v = native_list_append(v, ["Uuaning", "noun", "Uuaning", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gerhilt", "noun", "Gerhilt", "", "", "", "a female given"]) + let v = native_list_append(v, ["Kerhilt", "noun", "Kerhilt", "", "", "", "a female given"]) + let v = native_list_append(v, ["Gisalheri", "noun", "Gisalheri", "", "", "", "a male given"]) + let v = native_list_append(v, ["Berahart", "noun", "Berahart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Perahart", "noun", "Perahart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Onhart", "noun", "Onhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Honhart", "noun", "Honhart", "", "", "", "a male given"]) + let v = native_list_append(v, ["Madalhelm", "noun", "Madalhelm", "", "", "", "a male given"]) + let v = native_list_append(v, ["Baldrih", "noun", "Baldrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["Paldrih", "noun", "Paldrih", "", "", "", "a male given"]) + let v = native_list_append(v, ["niot", "noun", "niot", "", "", "", "desire"]) + let v = native_list_append(v, ["notwerk", "noun", "notwerk", "", "", "", "forced service"]) + let v = native_list_append(v, ["notdwingari", "noun", "notdwingari", "", "", "", "violent people"]) + let v = native_list_append(v, ["knuot", "noun", "knuoti", "knuoti", "knuoti", "", "nature essence substance"]) + let v = native_list_append(v, ["goting", "noun", "gotingā", "gotinges", "gotinge", "", "official chairman priest"]) + let v = native_list_append(v, ["Fastolf", "noun", "Fastolf", "", "", "", "a male given"]) + let v = native_list_append(v, ["Sigimund", "noun", "Sigimund", "", "", "", "a male given"]) + let v = native_list_append(v, ["hamustro", "noun", "hamustron", "hamustren", "hamustren", "", "hamster"]) + let v = native_list_append(v, ["hagazussa", "noun", "hagazussa", "", "", "", "witch"]) + let v = native_list_append(v, ["chezzil", "noun", "cheȥȥilā", "cheȥȥiles", "cheȥȥile", "", "alternative form of"]) + let v = native_list_append(v, ["khezzil", "noun", "kheȥȥilā", "kheȥȥiles", "kheȥȥile", "", "alternative form of"]) + let v = native_list_append(v, ["rairaub", "noun", "rairaub", "", "", "", "despoiling of a"]) + let v = native_list_append(v, ["priestar", "noun", "priestarā", "priestares", "priestare", "", "priest"]) + let v = native_list_append(v, ["was", "verb", "uuas", "ƿas", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["rite", "verb", "rīte", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["bitten", "verb", "bittu", "bat", "", "", "to ask"]) + let v = native_list_append(v, ["bir", "verb", "bir", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["want", "verb", "want", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["geben", "verb", "gëbēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["boron", "verb", "borōm", "borōta", "", "", "to bore"]) + let v = native_list_append(v, ["si", "verb", "sī", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["half", "verb", "half", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bar", "verb", "bar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bari", "verb", "bāri", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["beret", "verb", "bëret", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["gab", "verb", "gap", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["griffin", "verb", "griffīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["nos", "verb", "nōs", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["ward", "verb", "ward", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["stan", "verb", "stān", "stēn", "", "", "to stand"]) + let v = native_list_append(v, ["bere", "verb", "bëre", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["az", "verb", "āȥ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["pagan", "verb", "pāgan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wari", "verb", "wāri", "ƿari", "", "", "inflection of wesan"]) + let v = native_list_append(v, ["gap", "verb", "gap", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["snide", "verb", "snīde", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["ist", "verb", "ist", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["quim", "verb", "quim", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["leren", "verb", "lēren", "", "", "", "to teach"]) + let v = native_list_append(v, ["horen", "verb", "hōru", "hōrita", "", "", "to hear"]) + let v = native_list_append(v, ["biro", "verb", "biro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fasten", "verb", "fastēm", "fastēta", "", "", "to fast"]) + let v = native_list_append(v, ["reit", "verb", "reit", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["helfen", "verb", "hëlfēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sten", "verb", "stēn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quad", "verb", "quad", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["breton", "verb", "bretōm", "bretōta", "", "", "to beat down"]) + let v = native_list_append(v, ["haben", "verb", "habēm", "habēta", "", "", "to have"]) + let v = native_list_append(v, ["habe", "verb", "habbe", "", "", "", "inflection of habēn"]) + let v = native_list_append(v, ["bim", "verb", "bim", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sitzen", "verb", "sizzen", "sitten", "", "", "to sit"]) + let v = native_list_append(v, ["denken", "verb", "denku", "dahta", "", "", "to think"]) + let v = native_list_append(v, ["zim", "verb", "zim", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["nam", "verb", "nam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["leben", "verb", "lebēm", "lebēta", "", "", "to live"]) + let v = native_list_append(v, ["folgen", "verb", "folgēm", "folgēta", "", "", "to follow"]) + let v = native_list_append(v, ["gan", "verb", "gān", "gēn", "", "", "to go"]) + let v = native_list_append(v, ["flugi", "verb", "flugi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["sculan", "verb", "sculan", "", "", "", "to shall"]) + let v = native_list_append(v, ["helpan", "verb", "hëlpan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beran", "verb", "biru", "bar", "", "", "to bear"]) + let v = native_list_append(v, ["gen", "verb", "gēn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quam", "verb", "quam", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["buan", "verb", "būan", "būwan", "pūan", "", "to build"]) + let v = native_list_append(v, ["grifo", "verb", "grīfo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nimis", "verb", "nimist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["faran", "verb", "faru", "fuor", "", "", "to proceed"]) + let v = native_list_append(v, ["kennen", "verb", "kennu", "kanta", "", "", "to know to"]) + let v = native_list_append(v, ["sagen", "verb", "sagēm", "sagēta", "", "", "to say"]) + let v = native_list_append(v, ["nemen", "verb", "nëmēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["hangen", "verb", "hangēm", "hangēta", "", "", "to hang"]) + let v = native_list_append(v, ["kos", "verb", "kōs", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sis", "verb", "sīs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rah", "verb", "rah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["biz", "verb", "bīȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rit", "verb", "rīt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rites", "verb", "rītēs", "rītēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stih", "verb", "stih", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["zeme", "verb", "zëme", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["findan", "verb", "findu", "fand", "", "", "to find"]) + let v = native_list_append(v, ["nami", "verb", "nāmi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["barut", "verb", "bārut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["azi", "verb", "āȥi", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["brennen", "verb", "brennu", "branta", "", "", "to burn"]) + let v = native_list_append(v, ["ridan", "verb", "rīdan", "", "", "", "to wind turn"]) + let v = native_list_append(v, ["wesan", "verb", "bim", "was", "", "", "to be exist"]) + let v = native_list_append(v, ["bitan", "verb", "bītu", "beit", "", "", "to wait"]) + let v = native_list_append(v, ["bringan", "verb", "bringu", "brang", "", "", "to bring"]) + let v = native_list_append(v, ["geban", "verb", "gibu", "gab", "", "", "to give"]) + let v = native_list_append(v, ["risan", "verb", "rīsu", "reis", "", "", "to fall"]) + let v = native_list_append(v, ["ritan", "verb", "rītu", "reit", "", "", "to ride"]) + let v = native_list_append(v, ["sciozzan", "verb", "scioȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["siodan", "verb", "siudu", "sōd", "", "", "to seethe"]) + let v = native_list_append(v, ["singan", "verb", "singu", "sang", "", "", "to sing"]) + let v = native_list_append(v, ["swelgan", "verb", "swilgu", "swalg", "", "", "to swallow"]) + let v = native_list_append(v, ["zam", "verb", "zam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bist", "verb", "bist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hevan", "verb", "hevan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hullan", "verb", "hullan", "", "", "", "to cover"]) + let v = native_list_append(v, ["lernen", "verb", "lernēm", "lernēta", "", "", "to learn study"]) + let v = native_list_append(v, ["meinen", "verb", "meinu", "meinita", "", "", "to mean think"]) + let v = native_list_append(v, ["niozan", "verb", "niuȥu", "nōȥ", "", "", "to use to"]) + let v = native_list_append(v, ["koufo", "verb", "koufo", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["koufon", "verb", "koufōm", "koufōta", "", "", "to buy"]) + let v = native_list_append(v, ["scephan", "verb", "scephan", "", "", "", "to create"]) + let v = native_list_append(v, ["noz", "verb", "nōȥ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["rito", "verb", "rīto", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heizzan", "verb", "heiȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["scolan", "verb", "scolan", "", "", "", "shall"]) + let v = native_list_append(v, ["swar", "verb", "swar", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["tuomen", "verb", "tuomjan", "tuommen", "", "", "to judge"]) + let v = native_list_append(v, ["wizzan", "verb", "wiȥȥan", "", "", "", "to know"]) + let v = native_list_append(v, ["wellen", "verb", "willu", "wolta", "", "", "to want"]) + let v = native_list_append(v, ["weinon", "verb", "weinōn", "", "", "", "to lament"]) + let v = native_list_append(v, ["biben", "verb", "bibēm", "bibēta", "", "", "to shake"]) + let v = native_list_append(v, ["borgen", "verb", "borgēm", "borgēta", "", "", "to borrow"]) + let v = native_list_append(v, ["dihton", "verb", "dihtōn", "tihtōn", "", "", "to compose a"]) + let v = native_list_append(v, ["brehhan", "verb", "brihhu", "brah", "", "", "to break"]) + let v = native_list_append(v, ["bachan", "verb", "bachan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["badon", "verb", "badōm", "badōta", "", "", "to bathe"]) + let v = native_list_append(v, ["biginnan", "verb", "biginnu", "bigan", "", "", "to begin"]) + let v = native_list_append(v, ["bizan", "verb", "bīȥu", "beiȥ", "", "", "to bite"]) + let v = native_list_append(v, ["bergan", "verb", "birgu", "barg", "", "", "to shelter"]) + let v = native_list_append(v, ["brestan", "verb", "bristu", "brast", "", "", "to burst"]) + let v = native_list_append(v, ["biogan", "verb", "biugu", "boug", "", "", "to bow"]) + let v = native_list_append(v, ["bintan", "verb", "bintu", "bant", "", "", "to bind"]) + let v = native_list_append(v, ["biotan", "verb", "biutu", "bōt", "", "", "to offer"]) + let v = native_list_append(v, ["briuwan", "verb", "briuwu", "brouw", "", "", "to brew"]) + let v = native_list_append(v, ["dankon", "verb", "dankōm", "dankōta", "", "", "to thank"]) + let v = native_list_append(v, ["dringan", "verb", "dringu", "drang", "", "", "to press"]) + let v = native_list_append(v, ["drucchen", "verb", "drucchu", "druhta", "", "", "to press"]) + let v = native_list_append(v, ["draen", "verb", "drau", "drata", "", "", "to twist"]) + let v = native_list_append(v, ["dreskan", "verb", "drisku", "drask", "", "", "to thresh"]) + let v = native_list_append(v, ["dolen", "verb", "dolēm", "dolēta", "", "", "to endure"]) + let v = native_list_append(v, ["ezzan", "verb", "iȥȥu", "āȥ", "", "", "to eat"]) + let v = native_list_append(v, ["fallan", "verb", "fallu", "fial", "", "", "to fall"]) + let v = native_list_append(v, ["faltan", "verb", "faltu", "fialt", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliogan", "verb", "fliugu", "floug", "", "", "to fly"]) + let v = native_list_append(v, ["fliohan", "verb", "fliuhu", "flōh", "", "", "to flee"]) + let v = native_list_append(v, ["fehtan", "verb", "fihtu", "faht", "", "", "to fight"]) + let v = native_list_append(v, ["flehan", "verb", "flēhu", "fliah", "", "", "to entreat"]) + let v = native_list_append(v, ["fuolen", "verb", "fuolu", "fuolta", "", "", "to feel"]) + let v = native_list_append(v, ["fullen", "verb", "fullu", "fulta", "", "", "to fill"]) + let v = native_list_append(v, ["ginen", "verb", "ginēm", "ginēta", "", "", "to yawn"]) + let v = native_list_append(v, ["beton", "verb", "betōm", "betōta", "", "", "to pray"]) + let v = native_list_append(v, ["geltan", "verb", "giltu", "galt", "", "", "to pay"]) + let v = native_list_append(v, ["giozan", "verb", "giuȥu", "gouȥ", "", "", "to pour"]) + let v = native_list_append(v, ["glitan", "verb", "glītu", "gleit", "", "", "to glide"]) + let v = native_list_append(v, ["gluoen", "verb", "gluou", "gluota", "", "", "to glow"]) + let v = native_list_append(v, ["grifan", "verb", "grīfu", "greif", "", "", "to grab to"]) + let v = native_list_append(v, ["haltan", "verb", "haltu", "hialt", "", "", "to hold"]) + let v = native_list_append(v, ["hazzon", "verb", "haȥȥōm", "haȥȥōta", "", "", "to hate"]) + let v = native_list_append(v, ["heizen", "verb", "heizu", "heizita", "", "", "to heat"]) + let v = native_list_append(v, ["garwen", "verb", "garawu", "garawita", "", "", "to prepare"]) + let v = native_list_append(v, ["helfan", "verb", "hilfu", "half", "", "", "to help"]) + let v = native_list_append(v, ["houwan", "verb", "houwu", "hio", "", "", "to hew"]) + let v = native_list_append(v, ["riohhan", "verb", "riuhhu", "rouh", "", "", "to smell"]) + let v = native_list_append(v, ["fogalon", "verb", "fogalōm", "fogalōta", "", "", "to catch birds"]) + let v = native_list_append(v, ["irren", "verb", "irru", "irta", "", "", "to wander"]) + let v = native_list_append(v, ["irron", "verb", "irrōm", "irrōta", "", "", "to err go"]) + let v = native_list_append(v, ["jucchen", "verb", "jukken", "jucken", "", "", "to itch"]) + let v = native_list_append(v, ["jesan", "verb", "jisu", "jas", "", "", "to ferment"]) + let v = native_list_append(v, ["jetan", "verb", "jitu", "jat", "", "", "to weed"]) + let v = native_list_append(v, ["jagon", "verb", "jagōn", "", "", "", "to hunt"]) + let v = native_list_append(v, ["reichen", "verb", "reichu", "reichta", "", "", "to reach"]) + let v = native_list_append(v, ["slafan", "verb", "slāfu", "sliaf", "", "", "to sleep"]) + let v = native_list_append(v, ["sweren", "verb", "swerien", "swerren", "", "", "to swear"]) + let v = native_list_append(v, ["slihhan", "verb", "slīhhan", "", "", "", "to crawl"]) + let v = native_list_append(v, ["slahan", "verb", "slahu", "sluog", "", "", "to hit"]) + let v = native_list_append(v, ["wahhen", "verb", "wahhēn", "", "", "", "to wake"]) + let v = native_list_append(v, ["triugan", "verb", "triugan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sitten", "verb", "sitten", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sages", "verb", "sages", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["quedan", "verb", "quidu", "quad", "", "", "to say"]) + let v = native_list_append(v, ["queman", "verb", "quimu", "quam", "", "", "to come"]) + let v = native_list_append(v, ["queme", "verb", "quëme", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["quemes", "verb", "quëmēs", "quëmēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["quemen", "verb", "quëmēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sellen", "verb", "sellu", "salta", "", "", "to give to"]) + let v = native_list_append(v, ["snidest", "verb", "snīdēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nim", "verb", "nim", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["neigen", "verb", "neigu", "neigta", "", "", "to bow to"]) + let v = native_list_append(v, ["tuon", "verb", "tuoe", "teta", "", "", "to do"]) + let v = native_list_append(v, ["zami", "verb", "zāmi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["riti", "verb", "riti", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["heffen", "verb", "heffu", "huob", "", "", "to raise"]) + let v = native_list_append(v, ["zamis", "verb", "zāmīs", "zāmīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["munan", "verb", "manu", "mun", "", "", "to think"]) + let v = native_list_append(v, ["namut", "verb", "nāmut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["habes", "verb", "habes", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["barun", "verb", "bārun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["barit", "verb", "bārīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["namit", "verb", "nāmīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["iz", "verb", "iȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["neman", "verb", "nimu", "nam", "", "", "to take"]) + let v = native_list_append(v, ["sniti", "verb", "sniti", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["machon", "verb", "machōn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wisen", "verb", "wīsu", "wīsta", "", "", "to indicate show"]) + let v = native_list_append(v, ["biru", "verb", "biro", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["namin", "verb", "nāmīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["namun", "verb", "nāmun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["rih", "verb", "rih", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["raspon", "verb", "raspōn", "", "", "", "to rasp"]) + let v = native_list_append(v, ["pizzan", "verb", "pīȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sinnan", "verb", "sinnu", "san", "", "", "to desire"]) + let v = native_list_append(v, ["zittaron", "verb", "zittarōm", "zittarōta", "", "", "to tremble shake"]) + let v = native_list_append(v, ["nemes", "verb", "nëmēs", "nëmēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["strit", "verb", "strīt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["tragan", "verb", "tragu", "truog", "", "", "to carry"]) + let v = native_list_append(v, ["lazan", "verb", "lāȥu", "liaȥ", "", "", "to let permit"]) + let v = native_list_append(v, ["beren", "verb", "bërēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["snido", "verb", "snīdo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["drengen", "verb", "drengu", "drengita", "", "", "to let intrude"]) + let v = native_list_append(v, ["wili", "verb", "wili", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["touwen", "verb", "touwu", "tawita", "", "", "to die"]) + let v = native_list_append(v, ["brah", "verb", "brah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["hogen", "verb", "hogēm", "hogēta", "", "", "to think"]) + let v = native_list_append(v, ["danko", "verb", "danko", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["ritim", "verb", "ritīm", "ritīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["gitan", "verb", "gitān", "", "", "", "past participle of"]) + let v = native_list_append(v, ["miskan", "verb", "misken", "miskian", "misgen", "", "to mix"]) + let v = native_list_append(v, ["neme", "verb", "nëme", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["flugis", "verb", "flugīs", "flugīst", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["dankos", "verb", "dankōs", "dankōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dankota", "verb", "dankōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["zemes", "verb", "zëmēs", "zëmēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["bizis", "verb", "bīȥis", "bīȥist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["azis", "verb", "āȥīs", "āȥīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["wanen", "verb", "wānu", "wānita", "", "", "to suppose to"]) + let v = native_list_append(v, ["flehte", "verb", "flëhte", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["flehtest", "verb", "flëhtēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flehten", "verb", "flëhtēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["flehtet", "verb", "flëhtet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["helfe", "verb", "hëlfe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["helfest", "verb", "hëlfēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["helfet", "verb", "hëlfet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["hilf", "verb", "hilf", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["griffi", "verb", "griffi", "", "", "", "inflection of grīfan"]) + let v = native_list_append(v, ["doz", "verb", "dōȥ", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["baris", "verb", "bārīs", "bārīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["greif", "verb", "greif", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sprehhan", "verb", "sprihhu", "sprah", "", "", "to speak"]) + let v = native_list_append(v, ["miskian", "verb", "miskian", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["namis", "verb", "nāmīs", "nāmīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["nius", "verb", "nius", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ritum", "verb", "ritumēs", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["ritu", "verb", "rītu", "rīto", "", "", "first-person singular present"]) + let v = native_list_append(v, ["flugit", "verb", "flugīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["mugan", "verb", "magan", "", "", "", "can be able"]) + let v = native_list_append(v, ["thenken", "verb", "denken", "", "", "", "to think"]) + let v = native_list_append(v, ["gangan", "verb", "gangu", "giang", "", "", "to go walk"]) + let v = native_list_append(v, ["losen", "verb", "lōsu", "lōsta", "", "", "to make free"]) + let v = native_list_append(v, ["pist", "verb", "pist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lesan", "verb", "lisu", "las", "", "", "to read to"]) + let v = native_list_append(v, ["streit", "verb", "streit", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bizet", "verb", "bīȥet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["trinkan", "verb", "trinku", "trank", "", "", "to drink"]) + let v = native_list_append(v, ["friosan", "verb", "friusu", "frōs", "", "", "to freeze"]) + let v = native_list_append(v, ["sterban", "verb", "stirbu", "starb", "", "", "to die become"]) + let v = native_list_append(v, ["sinkan", "verb", "sinku", "sank", "", "", "to sink"]) + let v = native_list_append(v, ["sehan", "verb", "sihu", "sah", "", "", "to see to"]) + let v = native_list_append(v, ["thankon", "verb", "thankōm", "thankōta", "", "", "alternative form of"]) + let v = native_list_append(v, ["faldan", "verb", "faldu", "fiald", "", "", "to fold"]) + let v = native_list_append(v, ["giboran", "verb", "giboran", "", "", "", "past participle of"]) + let v = native_list_append(v, ["giwinnan", "verb", "giwinnu", "giwann", "", "", "to win"]) + let v = native_list_append(v, ["kiosan", "verb", "kiusu", "kōs", "", "", "to choose"]) + let v = native_list_append(v, ["ratan", "verb", "rātu", "riat", "", "", "to advise"]) + let v = native_list_append(v, ["flehtan", "verb", "flihtu", "flaht", "", "", "to weave to"]) + let v = native_list_append(v, ["giskinan", "verb", "giskinan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wahsan", "verb", "wahsu", "wuohs", "", "", "to grow"]) + let v = native_list_append(v, ["grif", "verb", "grīf", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["mahhon", "verb", "mahhōm", "mahhōta", "", "", "to make"]) + let v = native_list_append(v, ["nesan", "verb", "nisu", "nas", "", "", "to survive to"]) + let v = native_list_append(v, ["grifu", "verb", "grīfu", "grīfo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["triogan", "verb", "triugu", "troug", "", "", "To deceive"]) + let v = native_list_append(v, ["riten", "verb", "rītēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sniden", "verb", "snīdēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["hohen", "verb", "hōhu", "hōhta", "", "", "to elevate praise"]) + let v = native_list_append(v, ["nigan", "verb", "nīgu", "neig", "", "", "to bow"]) + let v = native_list_append(v, ["lobon", "verb", "lobōm", "lobōta", "", "", "to praise glorify"]) + let v = native_list_append(v, ["tugan", "verb", "tugan", "", "", "", "to be suitable"]) + let v = native_list_append(v, ["felhan", "verb", "felahan", "", "", "", "to entrust to"]) + let v = native_list_append(v, ["thionon", "verb", "thionōm", "thionōta", "", "", "alternative form of"]) + let v = native_list_append(v, ["gifregnan", "verb", "gifregnan", "", "", "", "to inquire"]) + let v = native_list_append(v, ["zeman", "verb", "zimu", "zam", "", "", "be fitting impersonal"]) + let v = native_list_append(v, ["gimanagfalton", "verb", "gimanagfalton", "", "", "", "to multiply"]) + let v = native_list_append(v, ["managfalton", "verb", "managfalton", "", "", "", "to multiply"]) + let v = native_list_append(v, ["seggen", "verb", "seggen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floh", "verb", "flōh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fluhti", "verb", "fluhti", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["bize", "verb", "bīȥe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["suohhen", "verb", "suohhu", "suohta", "", "", "to seek inquire"]) + let v = native_list_append(v, ["quimo", "verb", "quimo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snides", "verb", "snīdēs", "snīdēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["nimo", "verb", "nimo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["weiz", "verb", "weiȥ", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["swelgen", "verb", "swëlgēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["nimu", "verb", "nimo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["nemet", "verb", "nëmet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["bizen", "verb", "bīȥēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["anaquim", "verb", "anaquim", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["diuz", "verb", "diuȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["izzit", "verb", "iȥȥit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["lubos", "verb", "lubōs", "lubōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["lubot", "verb", "lubōt", "", "", "", "inflection of lubōn"]) + let v = native_list_append(v, ["giuz", "verb", "giuȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["flugum", "verb", "flugumēs", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["sweran", "verb", "swiru", "swar", "", "", "to hurt"]) + let v = native_list_append(v, ["berest", "verb", "bërēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spahhan", "verb", "spahhan", "", "", "", "to cleave to"]) + let v = native_list_append(v, ["klazz(j)an", "verb", "klazzan", "", "", "", "to stain"]) + let v = native_list_append(v, ["hraffon", "verb", "hraffōn", "*raffōn", "", "", "to grasp to"]) + let v = native_list_append(v, ["biroufen", "verb", "biroufen", "", "", "", "to pluck to"]) + let v = native_list_append(v, ["bihroffen", "verb", "bihroffen", "", "", "", "to quarrel"]) + let v = native_list_append(v, ["biskizan", "verb", "biskīzan", "", "", "", "to discuss"]) + let v = native_list_append(v, ["krimmjan", "verb", "krimmjan", "", "", "", "to grasp to"]) + let v = native_list_append(v, ["krimman", "verb", "krimman", "", "", "", "to fill up"]) + let v = native_list_append(v, ["wahten", "verb", "wahtēn", "", "", "", "to look carefully"]) + let v = native_list_append(v, ["hruzzan", "verb", "hrūzzan", "", "", "", "to snore"]) + let v = native_list_append(v, ["skirmen", "verb", "bescirmen", "", "", "", "to protect"]) + let v = native_list_append(v, ["skirnjan", "verb", "skirnjan", "", "", "", "to make fun"]) + let v = native_list_append(v, ["skerzan", "verb", "skërzan", "", "", "", "to jump merrily"]) + let v = native_list_append(v, ["stadjan", "verb", "stadjan", "", "", "", "to arrest"]) + let v = native_list_append(v, ["toufen", "verb", "*doufen", "", "", "", "to dip to"]) + let v = native_list_append(v, ["gibu", "verb", "gibu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["gnagan", "verb", "nagan", "", "", "", "to gnaw to"]) + let v = native_list_append(v, ["taen", "verb", "tāu", "tāta", "", "", "to suck to"]) + let v = native_list_append(v, ["stoffon", "verb", "stoffōm", "stoffōta", "", "", "to stop halt"]) + let v = native_list_append(v, ["gibar", "verb", "gibar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["lubo", "verb", "lubo", "", "", "", "inflection of lubōn"]) + let v = native_list_append(v, ["roufen", "verb", "rouffen", "", "", "", ""]) + let v = native_list_append(v, ["ruofan", "verb", "ruofu", "riof", "", "", "to call"]) + let v = native_list_append(v, ["werdan", "verb", "wirdu", "ward", "", "", "to be"]) + let v = native_list_append(v, ["azin", "verb", "āȥīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["kweman", "verb", "kweman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["minnon", "verb", "minnōm", "minnōta", "", "", "to love"]) + let v = native_list_append(v, ["wuofen", "verb", "wuofu", "wuta", "", "", "to weep lament"]) + let v = native_list_append(v, ["bagan", "verb", "bāgu", "biag", "", "", "to fight"]) + let v = native_list_append(v, ["ginenden", "verb", "ginendan", "", "", "", "to dare strive"]) + let v = native_list_append(v, ["meinian", "verb", "meinian", "", "", "", "to mean"]) + let v = native_list_append(v, ["lihhen", "verb", "līhhēm", "līhhēta", "", "", "to please"]) + let v = native_list_append(v, ["scouwon", "verb", "scouwōn", "", "", "", "to look to"]) + let v = native_list_append(v, ["fluohhon", "verb", "fluohhōm", "fluohhōta", "", "", "to speak evil"]) + let v = native_list_append(v, ["leiben", "verb", "leibēm", "leibēta", "", "", "to happen"]) + let v = native_list_append(v, ["sufton", "verb", "sūftōn", "sūfteon", "", "", "to sigh"]) + let v = native_list_append(v, ["swere", "verb", "swëre", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["sneid", "verb", "sneid", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["grife", "verb", "grīfe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["fuotaren", "verb", "fuotaru", "futa", "", "", "to feed"]) + let v = native_list_append(v, ["rechan", "verb", "rëchan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wurdi", "verb", "wurdi", "", "", "", "inflection of werdan"]) + let v = native_list_append(v, ["beres", "verb", "bërēs", "bërēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["zimo", "verb", "zimo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eindrucchen", "verb", "eindrucchu", "eindruhta", "", "", "to push in"]) + let v = native_list_append(v, ["peran", "verb", "përan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrah", "verb", "wrah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lazu", "verb", "lazu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["zimu", "verb", "zimo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["wuntaron", "verb", "wuntarōm", "wuntarōta", "", "", "to be amazed"]) + let v = native_list_append(v, ["berem", "verb", "bërem", "bëremēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["zemen", "verb", "zëmēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sahhan", "verb", "sahhu", "suohh", "", "", "to fight"]) + let v = native_list_append(v, ["widarsahhan", "verb", "widarsahhu", "widarsuohh", "", "", "to refuse reject"]) + let v = native_list_append(v, ["werfan", "verb", "wirfu", "warf", "", "", "to transitive throw"]) + let v = native_list_append(v, ["firsahhan", "verb", "firsahhu", "firsuohh", "", "", "to deny"]) + let v = native_list_append(v, ["gisahhan", "verb", "gisahhu", "gisuohh", "", "", "to condemn"]) + let v = native_list_append(v, ["barum", "verb", "bārum", "bārumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["drucchent", "verb", "drucchent", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["barin", "verb", "bārīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["suert", "verb", "suert", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["bizzan", "verb", "bīȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizu", "verb", "bīȥu", "bīȥo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["snid", "verb", "snīd", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["krahhon", "verb", "krahhōm", "krahhōta", "", "", "To make a"]) + let v = native_list_append(v, ["kruzigon", "verb", "krūzigōn", "krūzigēn", "krūzōn", "", "to crucify"]) + let v = native_list_append(v, ["azim", "verb", "āȥīm", "āȥīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["gileiten", "verb", "gileiten", "", "", "", "to lead bring"]) + let v = native_list_append(v, ["gibintan", "verb", "gibintan", "", "", "", "to bind plait"]) + let v = native_list_append(v, ["barim", "verb", "bārīm", "bārīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["uzneman", "verb", "ūȥnimu", "ūȥnam", "", "", "to take out"]) + let v = native_list_append(v, ["stehhan", "verb", "stihhu", "stah", "", "", "to pierce"]) + let v = native_list_append(v, ["stantan", "verb", "stantu", "stuont", "", "", "to stand"]) + let v = native_list_append(v, ["giwaltan", "verb", "giwaltu", "giwialt", "", "", "to rule over"]) + let v = native_list_append(v, ["zellen", "verb", "zellu", "zalta", "", "", "to tell"]) + let v = native_list_append(v, ["nerien", "verb", "neriu", "nerita", "", "", "to save"]) + let v = native_list_append(v, ["arlosen", "verb", "arlōsu", "arlōsta", "", "", "to deliver"]) + let v = native_list_append(v, ["ᚹᚱᚨᛁᛏ", "verb", "wrait", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["wrait", "verb", "wrait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["gisuohhun", "verb", "ᚷᚨᛊᛟᚲᚢᚾ", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ᚷᚨᛊᛟᚲᚢᚾ", "verb", "gasokun", "gasōkun", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["grifes", "verb", "grīfēs", "grīfēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["antwurten", "verb", "antwurtu", "antwurtita", "", "", "to answer to"]) + let v = native_list_append(v, ["lubon", "verb", "lubōm", "lubōta", "", "", "to love"]) + let v = native_list_append(v, ["heptidun", "verb", "heptidun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["uuas", "verb", "uuas", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿas", "verb", "ƿas", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["gimahalta", "verb", "gimahalta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sagetun", "verb", "sagetun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gihorta", "verb", "gihōrta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["rihtun", "verb", "rihtun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ritun", "verb", "ritun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ƿari", "verb", "ƿari", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["skihit", "verb", "skihit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gistuont", "verb", "gistuont", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["stuont", "verb", "stuont", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["giƿinnan", "verb", "giƿinnan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿerdan", "verb", "ƿerdan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["hauƿan", "verb", "hauƿan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["sizzen", "verb", "sizzen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ƿer", "verb", "ƿër", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["warun", "verb", "wārun", "ƿarun", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ƿarun", "verb", "ƿarun", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["uuorun", "verb", "uuorun", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["sazun", "verb", "sāzun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fuorun", "verb", "uuorun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["muotin", "verb", "muotīn", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hewun", "verb", "hewun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hiewun", "verb", "hiewun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["raet", "verb", "raet", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["gistuontun", "verb", "gistuontun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gistontun", "verb", "gistōntun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ƿant", "verb", "ƿant", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["uualtan", "verb", "uualtan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["waniu", "verb", "wāniu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["weizu", "verb", "weizu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["uuet", "verb", "uuet", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["gurtun", "verb", "gurtun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["garawitun", "verb", "garawitun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["garutun", "verb", "garutun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["heittu", "verb", "heittu", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["heizzu", "verb", "heizzu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hætti", "verb", "hætti", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["hiazi", "verb", "hiazi", "", "", "", "inflection of heizzan"]) + let v = native_list_append(v, ["ƿaniu", "verb", "ƿaniu", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿili", "verb", "ƿili", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿerpan", "verb", "ƿerpan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["wurdun", "verb", "wurdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ƿurtun", "verb", "ƿurtun", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["heƿun", "verb", "heƿun", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["gisihu", "verb", "gisihu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["spenis", "verb", "spenis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gialtet", "verb", "gialtet", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wallota", "verb", "wallōta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["ƿettu", "verb", "ƿettu", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["lezidun", "verb", "lezidun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["wuohs", "verb", "wuohs", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["gistuontum", "verb", "gistuontum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["gimalta", "verb", "gimalta", "", "", "", "misspelling of gimahalta"]) + let v = native_list_append(v, ["giƿigan", "verb", "giƿigan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["giwigan", "verb", "giƿigan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lustit", "verb", "lustit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ritit", "verb", "rītit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["uznam", "verb", "ūȥnam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["birit", "verb", "birit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["skritan", "verb", "skrītu", "skreit", "", "", "to glide"]) + let v = native_list_append(v, ["scritan", "verb", "scritan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿurti", "verb", "ƿurti", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["furlaet", "verb", "furlaet", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["niusen", "verb", "niusen", "", "", "", "to try endeavour"]) + let v = native_list_append(v, ["zamin", "verb", "zāmīn", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["brechan", "verb", "brëchan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nemem", "verb", "nëmem", "nëmemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["bruhhan", "verb", "brūhhu", "brouh", "", "", "to use to"]) + let v = native_list_append(v, ["intbintan", "verb", "intbintu", "intbant", "", "", "to unbind loosen"]) + let v = native_list_append(v, ["wintan", "verb", "wintu", "want", "", "", "to wind to"]) + let v = native_list_append(v, ["biwintan", "verb", "biwintu", "biwant", "", "", "to wind around"]) + let v = native_list_append(v, ["giwintan", "verb", "giwintu", "giwant", "", "", "to twist weave"]) + let v = native_list_append(v, ["lezzen", "verb", "lezzu", "lazta", "", "", "to make slow"]) + let v = native_list_append(v, ["zwehon", "verb", "zwehōm", "zwehōta", "", "", "to doubt"]) + let v = native_list_append(v, ["zwifalon", "verb", "zwīfalōm", "zwīfalōta", "", "", "to doubt"]) + let v = native_list_append(v, ["waron", "verb", "warōm", "warōta", "", "", "to protect to"]) + let v = native_list_append(v, ["stritan", "verb", "strītu", "streit", "", "", "to dispute"]) + let v = native_list_append(v, ["swerest", "verb", "swërēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["namum", "verb", "nāmum", "nāmumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["stah", "verb", "stah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["koufta", "verb", "koufta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lidan", "verb", "līdu", "leid", "", "", "to suffer"]) + let v = native_list_append(v, ["grifem", "verb", "grīfem", "grīfemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["swelge", "verb", "swëlge", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["firzeran", "verb", "firzeran", "", "", "", "to tear up"]) + let v = native_list_append(v, ["anaqueman", "verb", "anaquimu", "anaquam", "", "", "to come to/onto"]) + let v = native_list_append(v, ["suochen", "verb", "suochen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bluoten", "verb", "bluotu", "bluotta", "", "", "to bleed"]) + let v = native_list_append(v, ["skiozan", "verb", "skiuȥu", "skōȥ", "", "", "to shoot"]) + let v = native_list_append(v, ["drangon", "verb", "drangōm", "drangōta", "", "", "to throng to"]) + let v = native_list_append(v, ["bidrangon", "verb", "bidrangōm", "bidrangōta", "", "", "to urge to"]) + let v = native_list_append(v, ["bidringan", "verb", "bidringu", "bidrang", "", "", "to oppress to"]) + let v = native_list_append(v, ["warin", "verb", "wārīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["snidan", "verb", "snīdu", "sneid", "", "", "to cut to"]) + let v = native_list_append(v, ["nemnen", "verb", "nemnu", "nanta", "", "", "to name"]) + let v = native_list_append(v, ["swarum", "verb", "swārum", "swārumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["fuoten", "verb", "fuotu", "fuotta", "", "", "to feed"]) + let v = native_list_append(v, ["rehhan", "verb", "rihhu", "rah", "", "", "to rake to"]) + let v = native_list_append(v, ["wrehhan", "verb", "wrihhu", "wrah", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrechan", "verb", "wrëchan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprechan", "verb", "sprëchan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ezzen", "verb", "ëȥȥēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["pizan", "verb", "pīȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["heizan", "verb", "heiȥu", "hiaȥ", "", "", "to call"]) + let v = native_list_append(v, ["lazzan", "verb", "lāȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tretan", "verb", "tritu", "trat", "", "", "to step to"]) + let v = native_list_append(v, ["bahhan", "verb", "bahhu", "buoh", "", "", "to bake"]) + let v = native_list_append(v, ["loufan", "verb", "loufu", "liof", "", "", "to run"]) + let v = native_list_append(v, ["dionon", "verb", "dionōm", "dionōta", "", "", "to serve"]) + let v = native_list_append(v, ["snidet", "verb", "snīdet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["snidu", "verb", "snīdu", "snīdo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["snidant", "verb", "snīdant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["gisnitan", "verb", "gisnitan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["snidanti", "verb", "snīdanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["snidit", "verb", "snīdit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["snitun", "verb", "snitun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["snitut", "verb", "snitut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["snidis", "verb", "snīdis", "snīdist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["snidist", "verb", "snīdist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snitis", "verb", "snitīs", "snitīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["snitist", "verb", "snitīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snitit", "verb", "snitīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["snitin", "verb", "snitīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["snidem", "verb", "snīdem", "snīdemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["snidemes", "verb", "snīdemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snitum", "verb", "snitumēs", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["snitim", "verb", "snitīm", "snitīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["snitumes", "verb", "snitumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snitimes", "verb", "snitīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ritem", "verb", "rītem", "rītemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ritemes", "verb", "rītemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ritant", "verb", "rītant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ritet", "verb", "rītet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ritest", "verb", "rītēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giritan", "verb", "giritan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ritanti", "verb", "rītanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ginesan", "verb", "ginësan", "", "", "", "to survive to"]) + let v = native_list_append(v, ["nemest", "verb", "nëmēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nemanti", "verb", "nëmanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["nememes", "verb", "nëmemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznimit", "verb", "ūȥnimit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["uznemen", "verb", "ūȥnëmēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["uznim", "verb", "ūȥnim", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["uznemant", "verb", "ūȥnëmant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["uznemet", "verb", "ūȥnëmet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["uznemes", "verb", "ūȥnëmēs", "ūȥnëmēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["uznemest", "verb", "ūȥnëmēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznami", "verb", "ūȥnāmi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["nemant", "verb", "nëmant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["kius", "verb", "kius", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["uzneme", "verb", "ūȥnëme", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["fliozan", "verb", "fliuȥu", "flōȥ", "", "", "to flow to"]) + let v = native_list_append(v, ["brih", "verb", "brih", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["brehhet", "verb", "brëhhet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["brehhem", "verb", "brëhhem", "brëhhemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["brehhemes", "verb", "brëhhemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beiz", "verb", "beiȥ", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["nimist", "verb", "nimist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nimit", "verb", "nimit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ginoman", "verb", "ginoman", "", "", "", "past participle of"]) + let v = native_list_append(v, ["namumes", "verb", "nāmumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["namist", "verb", "nāmīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["namim", "verb", "nāmīm", "nāmīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["namimes", "verb", "nāmīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznemanti", "verb", "ūȥnëmanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["uzginoman", "verb", "ūȥginoman", "", "", "", "past participle of"]) + let v = native_list_append(v, ["uznamin", "verb", "ūȥnāmīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["uznamit", "verb", "ūȥnāmīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["uznamun", "verb", "ūȥnāmun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["uznamut", "verb", "ūȥnāmut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["uznemem", "verb", "ūȥnëmem", "ūȥnëmemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["uznememes", "verb", "ūȥnëmemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznamum", "verb", "ūȥnāmum", "ūȥnāmumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["uznamumes", "verb", "ūȥnāmumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznamis", "verb", "ūȥnāmīs", "ūȥnāmīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["uznamist", "verb", "ūȥnāmīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznamim", "verb", "ūȥnāmīm", "ūȥnāmīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["uznamimes", "verb", "ūȥnāmīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznimis", "verb", "ūȥnimis", "ūȥnimist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["uznimist", "verb", "ūȥnimist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uznimu", "verb", "ūȥnimu", "ūȥnimo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["uznimo", "verb", "ūȥnimo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ritimes", "verb", "ritīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ritumes", "verb", "ritumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ritut", "verb", "ritut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["ritin", "verb", "ritīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["ritis", "verb", "rītis", "rītist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ritist", "verb", "rītist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flugumes", "verb", "flugumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flugist", "verb", "flugīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flugin", "verb", "flugīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["flugun", "verb", "flugun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["floug", "verb", "floug", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["flugut", "verb", "flugut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["flugim", "verb", "flugīm", "flugīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["flugimes", "verb", "flugīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["giflogan", "verb", "giflogan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flehtes", "verb", "flëhtēs", "flëhtēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["brahhi", "verb", "brāhhi", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["brahhin", "verb", "brāhhīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["brahhit", "verb", "brāhhīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["brahhun", "verb", "brāhhun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["brahhut", "verb", "brāhhut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["brehhe", "verb", "brëhhe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["brehhen", "verb", "brëhhēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["brehhant", "verb", "brëhhant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["brihhit", "verb", "brihhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["brehhanti", "verb", "brëhhanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gibrohhan", "verb", "gibrohhan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["brahhim", "verb", "brāhhīm", "brāhhīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["brahhum", "verb", "brāhhum", "brāhhumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["brahhis", "verb", "brāhhīs", "brāhhīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["brehhes", "verb", "brëhhēs", "brëhhēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["brihhu", "verb", "brihho", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["brihhis", "verb", "brihhist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["brahhimes", "verb", "brāhhīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brahhist", "verb", "brāhhīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brahhumes", "verb", "brāhhumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brihho", "verb", "brihho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brihhist", "verb", "brihhist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brehhest", "verb", "brëhhēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["floz", "verb", "flōȥ", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["flioze", "verb", "flioȥe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["fliuzu", "verb", "fliuȥu", "fliuȥo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fliuzo", "verb", "fliuȥo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliuzit", "verb", "fliuȥit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fliuzis", "verb", "fliuȥis", "fliuȥist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliozant", "verb", "flioȥant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["fliozes", "verb", "flioȥēs", "flioȥēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliozen", "verb", "flioȥēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["giflozzan", "verb", "gifloȥȥan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fliozanti", "verb", "flioȥanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["fliuz", "verb", "fliuȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliozzan", "verb", "flioȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sciozan", "verb", "scioȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiozzan", "verb", "skioȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluzzi", "verb", "fluȥȥi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fliozem", "verb", "flioȥem", "flioȥemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fliozemes", "verb", "flioȥemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluzzin", "verb", "fluȥȥīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["fluzzun", "verb", "fluȥȥun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["fliozet", "verb", "flioȥet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fliuzist", "verb", "fliuȥist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliozest", "verb", "flioȥēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluzzis", "verb", "fluȥȥīs", "fluȥȥīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["fluzzist", "verb", "fluȥȥīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluzzut", "verb", "fluȥȥut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["fluzzit", "verb", "fluȥȥīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["fluzzim", "verb", "fluȥȥīm", "fluȥȥīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["fluzzimes", "verb", "fluȥȥīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluzzumes", "verb", "fluȥȥumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluzzum", "verb", "fluȥȥum", "fluȥȥumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["fliohant", "verb", "fliohant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["fliohanti", "verb", "fliohanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["fliohe", "verb", "fliohe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["fliohet", "verb", "fliohet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fliohen", "verb", "fliohēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["fliuh", "verb", "fliuh", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliuhit", "verb", "fliuhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fliuhu", "verb", "fliuho", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fliuho", "verb", "fliuho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliohem", "verb", "fliohemēs", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fliohemes", "verb", "fliohemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliohes", "verb", "fliohēs", "fliohēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliohest", "verb", "fliohēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliuhis", "verb", "fliuhist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliuhist", "verb", "fliuhist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flioganti", "verb", "flioganti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["flioget", "verb", "flioget", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["flioges", "verb", "fliogēs", "fliogēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliugis", "verb", "fliugist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliogant", "verb", "fliogant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["fliug", "verb", "fliug", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fliogen", "verb", "fliogēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["flioge", "verb", "flioge", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["fliogest", "verb", "fliogēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliugit", "verb", "fliugit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fliugist", "verb", "fliugist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliugo", "verb", "fliugo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fliugu", "verb", "fliugo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fliogem", "verb", "fliogemēs", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fliogemes", "verb", "fliogemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiozet", "verb", "skioȥet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["skiozant", "verb", "skioȥant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["bizest", "verb", "bīȥēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiuz", "verb", "skiuȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skiozen", "verb", "skioȥēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["skiuzit", "verb", "skiuȥit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["skoz", "verb", "skōȥ", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["skuzzi", "verb", "skuȥȥi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["skioze", "verb", "skioȥe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["giskozzan", "verb", "giskoȥȥan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skiozanti", "verb", "skioȥanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["skiuzu", "verb", "skiuȥu", "skiuȥo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["skiuzo", "verb", "skiuȥo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skuzzin", "verb", "skuȥȥīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["skuzzit", "verb", "skuȥȥīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["skuzzun", "verb", "skuȥȥun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["skuzzut", "verb", "skuȥȥut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["skuzzim", "verb", "skuȥȥīm", "skuȥȥīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["skuzzimes", "verb", "skuȥȥīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skuzzum", "verb", "skuȥȥum", "skuȥȥumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["skuzzumes", "verb", "skuȥȥumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiozem", "verb", "skioȥem", "skioȥemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["skiozemes", "verb", "skioȥemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skuzzist", "verb", "skuȥȥīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skuzzis", "verb", "skuȥȥīs", "skuȥȥīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["skiozes", "verb", "skioȥēs", "skioȥēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skiozest", "verb", "skioȥēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizo", "verb", "bīȥo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiuzist", "verb", "skiuȥist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skiuzis", "verb", "skiuȥis", "skiuȥist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["bizist", "verb", "bīȥist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizes", "verb", "bīȥēs", "bīȥēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["flaht", "verb", "flaht", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["fluhtun", "verb", "fluhtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["fluhtut", "verb", "fluhtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["fluhtin", "verb", "fluhtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["fluhtit", "verb", "fluhtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["fliht", "verb", "fliht", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["flihtit", "verb", "flihtit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["flehtanti", "verb", "flëhtanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["giflohtan", "verb", "giflohtan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flehtant", "verb", "flëhtant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["flehtem", "verb", "flëhtem", "flëhtemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["flehtemes", "verb", "flëhtemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluhtim", "verb", "fluhtīm", "fluhtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["fluhtum", "verb", "fluhtumēs", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["fluhtumes", "verb", "fluhtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluhtimes", "verb", "fluhtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fluhtis", "verb", "fluhtīs", "fluhtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["fluhtist", "verb", "fluhtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flihtist", "verb", "flihtist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["flihtis", "verb", "flihtist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["flihtu", "verb", "flihto", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["flihto", "verb", "flihto", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizzi", "verb", "biȥȥi", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["mahhom", "verb", "mahhōm", "mahhōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["mahhomes", "verb", "mahhōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mahhota", "verb", "mahhōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mahhoti", "verb", "mahhōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mahho", "verb", "mahho", "", "", "", "inflection of mahhōn"]) + let v = native_list_append(v, ["mahhonti", "verb", "mahhōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gimahhot", "verb", "gimahhōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mahhont", "verb", "mahhōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["mahhotun", "verb", "mahhōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["mahhotin", "verb", "mahhōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["mahhotut", "verb", "mahhōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["mahhotit", "verb", "mahhōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["mahhos", "verb", "mahhōs", "mahhōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["mahhost", "verb", "mahhōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mahhotost", "verb", "mahhōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mahhotos", "verb", "mahhōtōs", "mahhōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["mahhotis", "verb", "mahhōtīs", "mahhōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["mahhot", "verb", "mahhōt", "", "", "", "inflection of mahhōn"]) + let v = native_list_append(v, ["mahhotum", "verb", "mahhōtum", "mahhōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["mahhotim", "verb", "mahhōtīm", "mahhōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["mahhotimes", "verb", "mahhōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mahhotumes", "verb", "mahhōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thanko", "verb", "thanko", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["thankota", "verb", "thankōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["thankos", "verb", "thankōs", "thankōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["thankost", "verb", "thankōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dankost", "verb", "dankōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grifemes", "verb", "grīfemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grifest", "verb", "grīfēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grifant", "verb", "grīfant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["grifet", "verb", "grīfet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["grifis", "verb", "grīfis", "grīfist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["grifist", "verb", "grīfist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grifen", "verb", "grīfēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["bizem", "verb", "bīȥem", "bīȥemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["bizemes", "verb", "bīȥemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizit", "verb", "bīȥit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["bizant", "verb", "bīȥant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["bizanti", "verb", "bīȥanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gibizzan", "verb", "gibiȥȥan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bizzin", "verb", "biȥȥīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["bizzit", "verb", "biȥȥīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["bizzun", "verb", "biȥȥun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["bizzut", "verb", "biȥȥut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["bizzim", "verb", "biȥȥīm", "biȥȥīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["bizzimes", "verb", "biȥȥīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizzumes", "verb", "biȥȥumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bizzum", "verb", "biȥȥum", "biȥȥumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["bizzis", "verb", "biȥȥīs", "biȥȥīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["bizzist", "verb", "biȥȥīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grifit", "verb", "grīfit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["griffit", "verb", "griffīt", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["griffut", "verb", "griffut", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["griffun", "verb", "griffun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["grifanti", "verb", "grīfanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gigriffan", "verb", "gigriffan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["griffimes", "verb", "griffīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["griffim", "verb", "griffīm", "griffīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["griffum", "verb", "griffumēs", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["griffumes", "verb", "griffumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["griffist", "verb", "griffīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["griffis", "verb", "griffīs", "griffīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["azum", "verb", "āȥum", "āȥumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["ezzet", "verb", "ëȥȥet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ezze", "verb", "ëȥȥe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["ezzest", "verb", "ëȥȥēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ezzes", "verb", "ëȥȥēs", "ëȥȥēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ezzem", "verb", "ëȥȥem", "ëȥȥemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ezzemes", "verb", "ëȥȥemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ezzanti", "verb", "ëȥȥanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["izzu", "verb", "iȥȥu", "iȥȥo", "", "", "first-person singular present"]) + let v = native_list_append(v, ["izzo", "verb", "iȥȥo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ezzant", "verb", "ëȥȥant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["azun", "verb", "āȥun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["azut", "verb", "āȥut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["azumes", "verb", "āȥumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["azimes", "verb", "āȥīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["azit", "verb", "āȥīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["azist", "verb", "āȥīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gezzan", "verb", "gëȥȥan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["izzis", "verb", "iȥȥis", "iȥȥist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["izzist", "verb", "iȥȥist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dankom", "verb", "dankōm", "dankōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["thankom", "verb", "thankōm", "thankōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["dankomes", "verb", "dankōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankomes", "verb", "thankōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankot", "verb", "thankōt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["dankot", "verb", "dankōt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["dankont", "verb", "dankōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["thankont", "verb", "thankōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["dankotun", "verb", "dankōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["thankotun", "verb", "thankōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["dankotin", "verb", "dankōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["thankotin", "verb", "thankōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["thankotit", "verb", "thankōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["dankotit", "verb", "dankōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["dankotut", "verb", "dankōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["thankotut", "verb", "thankōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["thankoti", "verb", "thankōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["dankoti", "verb", "dankōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["mahhotist", "verb", "mahhōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dankotis", "verb", "dankōtīs", "dankōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["thankotis", "verb", "thankōtīs", "thankōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["dankotist", "verb", "dankōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankotist", "verb", "thankōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gidankot", "verb", "gidankōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["githankot", "verb", "githankōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dankonti", "verb", "dankōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["thankonti", "verb", "thankōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["dankotos", "verb", "dankōtōs", "dankōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["thankotos", "verb", "thankōtōs", "thankōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["dankotost", "verb", "dankōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankotost", "verb", "thankōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankotum", "verb", "thankōtum", "thankōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["dankotum", "verb", "dankōtum", "dankōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["thankotim", "verb", "thankōtīm", "thankōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["dankotim", "verb", "dankōtīm", "dankōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["dankotimes", "verb", "dankōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dankotumes", "verb", "dankōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankotimes", "verb", "thankōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thankotumes", "verb", "thankōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stechan", "verb", "stëchan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrahhun", "verb", "wrāhhun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["rahhun", "verb", "rāhhun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["rahhin", "verb", "rāhhīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["rehhe", "verb", "rëhhe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["wrehhe", "verb", "wrëhhe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["wrih", "verb", "wrih", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stehhe", "verb", "stëhhe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["stahhun", "verb", "stāhhun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["stahhin", "verb", "stāhhīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["rihhit", "verb", "rihhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["wrihhit", "verb", "wrihhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["stihhit", "verb", "stihhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["suohhit", "verb", "suohhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["suohhe", "verb", "suohhe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["stehhant", "verb", "stëhhant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["stehhanti", "verb", "stëhhanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gistohhan", "verb", "gistohhan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wrehhanti", "verb", "wrëhhanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["giwrohhan", "verb", "giwrohhan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["wrehhant", "verb", "wrëhhant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["rehhant", "verb", "rëhhant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["girohhan", "verb", "girohhan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rehhanti", "verb", "rëhhanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["wrahhin", "verb", "wrāhhīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["stahhi", "verb", "stāhhi", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["wrahhi", "verb", "wrāhhi", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["wrehhet", "verb", "wrëhhet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["stehhet", "verb", "stëhhet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["rehhet", "verb", "rëhhet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["suohhet", "verb", "suohhet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["swelget", "verb", "swëlget", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["swelgest", "verb", "swëlgēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swelhan", "verb", "swëlhan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swalg", "verb", "swalg", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["swilg", "verb", "swilg", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["helfes", "verb", "hëlfēs", "hëlfēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["swelges", "verb", "swëlgēs", "swëlgēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["wrehhen", "verb", "wrëhhēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["stehhen", "verb", "stëhhēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["rehhen", "verb", "rëhhēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["wrihhu", "verb", "wrihho", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["stihhu", "verb", "stihho", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rihhu", "verb", "rihho", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rihhis", "verb", "rihhist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rehhem", "verb", "rëhhem", "rëhhemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["rehhemes", "verb", "rëhhemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrihhis", "verb", "wrihhist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stihhis", "verb", "stihhist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hilfit", "verb", "hilfit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["helfant", "verb", "hëlfant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["hulfun", "verb", "hulfun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["hulfin", "verb", "hulfīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["hulfit", "verb", "hulfīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["helfanti", "verb", "hëlfanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["giholfan", "verb", "giholfan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hulfi", "verb", "hulfi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hulfut", "verb", "hulfut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["hilfis", "verb", "hilfist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hilfist", "verb", "hilfist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hilfo", "verb", "hilfo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hilfu", "verb", "hilfo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hulfist", "verb", "hulfīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hulfis", "verb", "hulfīs", "hulfīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["helfem", "verb", "hëlfem", "hëlfemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["helfemes", "verb", "hëlfemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hulfimes", "verb", "hulfīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hulfumes", "verb", "hulfumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hulfim", "verb", "hulfīm", "hulfīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["hulfum", "verb", "hulfumēs", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["wrihho", "verb", "wrihho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrihhist", "verb", "wrihhist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stihho", "verb", "stihho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stihhist", "verb", "stihhist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stehhest", "verb", "stëhhēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stehhes", "verb", "stëhhēs", "stëhhēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stehhemes", "verb", "stëhhemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stehhem", "verb", "stëhhem", "stëhhemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["wrahhit", "verb", "wrāhhīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["stahhit", "verb", "stāhhīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["stahhut", "verb", "stāhhut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["stahhum", "verb", "stāhhum", "stāhhumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["stahhim", "verb", "stāhhīm", "stāhhīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["wrahhim", "verb", "wrāhhīm", "wrāhhīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["wrahhum", "verb", "wrāhhum", "wrāhhumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["stahhis", "verb", "stāhhīs", "stāhhīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["wrahhis", "verb", "wrāhhīs", "wrāhhīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["stahhimes", "verb", "stāhhīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stahhumes", "verb", "stāhhumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stahhist", "verb", "stāhhīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrahhut", "verb", "wrāhhut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["swilgu", "verb", "swilgo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["swulgi", "verb", "swulgi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["swilgis", "verb", "swilgist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["swilgit", "verb", "swilgit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["swelgant", "verb", "swëlgant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["dionotis", "verb", "dionōtīs", "dionōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["thionotis", "verb", "thionōtīs", "thionōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["thionotist", "verb", "thionōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dionotist", "verb", "dionōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dionom", "verb", "dionōm", "dionōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["thionom", "verb", "thionōm", "thionōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["dionomes", "verb", "dionōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thionomes", "verb", "thionōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dionot", "verb", "dionōt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["thionot", "verb", "thionōt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["diono", "verb", "diono", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["thiono", "verb", "thiono", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["dionont", "verb", "dionōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["thionont", "verb", "thionōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["dionos", "verb", "dionōs", "dionōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["thionos", "verb", "thionōs", "thionōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dionost", "verb", "dionōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thionost", "verb", "thionōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diononti", "verb", "dionōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gidionot", "verb", "gidionōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["thiononti", "verb", "thionōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["githionot", "verb", "githionōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dionota", "verb", "dionōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["dionoti", "verb", "dionōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["thionota", "verb", "thionōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["thionoti", "verb", "thionōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["dionotin", "verb", "dionōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["thionotin", "verb", "thionōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["thionotun", "verb", "thionōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["dionotun", "verb", "dionōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["dionotut", "verb", "dionōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["thionotut", "verb", "thionōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["dionotit", "verb", "dionōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["thionotit", "verb", "thionōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["dionotumes", "verb", "dionōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thionotumes", "verb", "thionōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dionotum", "verb", "dionōtum", "dionōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["thionotum", "verb", "thionōtum", "thionōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["dionotim", "verb", "dionōtīm", "dionōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["thionotim", "verb", "thionōtīm", "thionōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["dionotimes", "verb", "dionōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thionotimes", "verb", "thionōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dionotos", "verb", "dionōtōs", "dionōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["thionotos", "verb", "thionōtōs", "thionōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["dionotost", "verb", "dionōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thionotost", "verb", "thionōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrahhumes", "verb", "wrāhhumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrahhimes", "verb", "wrāhhīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrahhist", "verb", "wrāhhīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrehhest", "verb", "wrëhhēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrehhemes", "verb", "wrëhhemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wrehhem", "verb", "wrëhhem", "wrëhhemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["wrehhes", "verb", "wrëhhēs", "wrëhhēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rehhes", "verb", "rëhhēs", "rëhhēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rehhest", "verb", "rëhhēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rahhit", "verb", "rāhhīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["rahhut", "verb", "rāhhut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["rahhis", "verb", "rāhhīs", "rāhhīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["rahhist", "verb", "rāhhīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rahhi", "verb", "rāhhi", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["rahhim", "verb", "rāhhīm", "rāhhīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["rahhum", "verb", "rāhhum", "rāhhumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["rahhimes", "verb", "rāhhīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rahhumes", "verb", "rāhhumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rihhist", "verb", "rihhist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rihho", "verb", "rihho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quimu", "verb", "quimo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["quami", "verb", "quāmi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["giquoman", "verb", "giquoman", "", "", "", "past participle of"]) + let v = native_list_append(v, ["quemest", "verb", "quëmēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quemet", "verb", "quëmet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["quemant", "verb", "quëmant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["quimit", "verb", "quimit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["quememes", "verb", "quëmemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quemem", "verb", "quëmem", "quëmemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["quemanti", "verb", "quëmanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["quimis", "verb", "quimist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["quimist", "verb", "quimist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quamim", "verb", "quāmīm", "quāmīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["quamum", "verb", "quāmum", "quāmumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["quamimes", "verb", "quāmīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quamumes", "verb", "quāmumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quamist", "verb", "quāmīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["quamis", "verb", "quāmīs", "quāmīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["quamin", "verb", "quāmīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["quamun", "verb", "quāmun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["quamit", "verb", "quāmīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["quamut", "verb", "quāmut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["anagiquoman", "verb", "anagiquoman", "", "", "", "past participle of"]) + let v = native_list_append(v, ["anaquemanti", "verb", "anaquëmanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["anaquemet", "verb", "anaquëmet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["anaquemen", "verb", "anaquëmēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["anaquamit", "verb", "anaquāmīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["anaquamut", "verb", "anaquāmut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["anaquam", "verb", "anaquam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["anaquamin", "verb", "anaquāmīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["anaquamun", "verb", "anaquāmun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["anaquemant", "verb", "anaquëmant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["anaquami", "verb", "anaquāmi", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["anaquimit", "verb", "anaquimit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["anaqueme", "verb", "anaquëme", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["anaquememes", "verb", "anaquëmemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquemem", "verb", "anaquëmem", "anaquëmemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["anaquemest", "verb", "anaquëmēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquemes", "verb", "anaquëmēs", "anaquëmēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["anaquamimes", "verb", "anaquāmīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquamim", "verb", "anaquāmīm", "anaquāmīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["anaquamum", "verb", "anaquāmum", "anaquāmumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["anaquamumes", "verb", "anaquāmumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquamist", "verb", "anaquāmīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquamis", "verb", "anaquāmīs", "anaquāmīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["anaquimist", "verb", "anaquimist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquimis", "verb", "anaquimist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["anaquimo", "verb", "anaquimo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anaquimu", "verb", "anaquimo", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["beremes", "verb", "bëremēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barumes", "verb", "bārumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barimes", "verb", "bārīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beranti", "verb", "bëranti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["berant", "verb", "bërant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["biris", "verb", "birist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["birist", "verb", "birist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["barist", "verb", "bārīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zamum", "verb", "zāmum", "zāmumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["sprahhum", "verb", "sprāhhum", "sprāhhumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["gizeman", "verb", "gizëman", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zamist", "verb", "zāmīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zamun", "verb", "zāmun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["zamumes", "verb", "zāmumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zamut", "verb", "zāmut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["zamit", "verb", "zāmīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["gizoman", "verb", "gizoman", "", "", "", "past participle of"]) + let v = native_list_append(v, ["zemanti", "verb", "zëmanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["zemet", "verb", "zëmet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["zemest", "verb", "zëmēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zememes", "verb", "zëmemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zemem", "verb", "zëmem", "zëmemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["zemant", "verb", "zëmant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["zimist", "verb", "zimist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zimis", "verb", "zimist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["zimit", "verb", "zimit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["zamimes", "verb", "zāmīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["zamim", "verb", "zāmīm", "zāmīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["sweres", "verb", "swërēs", "swërēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["swarumes", "verb", "swārumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gisworan", "verb", "gisworan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sweranti", "verb", "swëranti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["sweret", "verb", "swëret", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["swir", "verb", "swir", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["sweremes", "verb", "swëremēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swerem", "verb", "swërem", "swëremēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["swerant", "verb", "swërant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["swarun", "verb", "swārun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["swarut", "verb", "swārut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["swarist", "verb", "swārīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swarimes", "verb", "swārīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swirist", "verb", "swirist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swiro", "verb", "swiro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swaris", "verb", "swārīs", "swārīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["swarit", "verb", "swārīs", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["swarin", "verb", "swārīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["swarim", "verb", "swārīm", "swārīmēs", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["swiru", "verb", "swiro", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["swiris", "verb", "swirist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["swirit", "verb", "swirit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sprahhumes", "verb", "sprāhhumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprehhen", "verb", "sprëhhēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sprehhant", "verb", "sprëhhant", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sprehhanti", "verb", "sprëhhanti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gisprohhan", "verb", "gisprohhan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sprahhi", "verb", "sprāhhi", "", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["sprehhet", "verb", "sprëhhet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["sprihhit", "verb", "sprihhit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["sprehhemes", "verb", "sprëhhemēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprehhem", "verb", "sprëhhem", "sprëhhemēs", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sprahhun", "verb", "sprāhhun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["sprahhut", "verb", "sprāhhut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["sprahhin", "verb", "sprāhhīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["sprahhit", "verb", "sprāhhīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["sprah", "verb", "sprah", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["sprehhe", "verb", "sprëhhe", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["sprahhim", "verb", "sprāhhīm", "sprāhhīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["sprahhimes", "verb", "sprāhhīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprahhis", "verb", "sprāhhīs", "sprāhhīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["sprahhist", "verb", "sprāhhīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprehhest", "verb", "sprëhhēst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprehhes", "verb", "sprëhhēs", "sprëhhēst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sprih", "verb", "sprih", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sprihhist", "verb", "sprihhist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprihhis", "verb", "sprihhist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sprihho", "verb", "sprihho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sprihhu", "verb", "sprihho", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["choufon", "verb", "choufōn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufom", "verb", "koufōm", "koufōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["koufomes", "verb", "koufōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufotis", "verb", "koufōtīs", "koufōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["koufotist", "verb", "koufōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufen", "verb", "koufu", "koufta", "", "", "to buy"]) + let v = native_list_append(v, ["choufen", "verb", "choufen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufota", "verb", "koufōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["koufoti", "verb", "koufōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["koufot", "verb", "koufōt", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["koufost", "verb", "koufōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufos", "verb", "koufōs", "koufōst", "", "", "second-person singular present"]) + let v = native_list_append(v, ["koufont", "verb", "koufōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["gikoufot", "verb", "gikoufōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["koufonti", "verb", "koufōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["koufotost", "verb", "koufōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufotos", "verb", "koufōtōs", "koufōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["koufotumes", "verb", "koufōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufotum", "verb", "koufōtum", "koufōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["koufotut", "verb", "koufōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["koufotun", "verb", "koufōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["koufotin", "verb", "koufōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["koufotit", "verb", "koufōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["koufotimes", "verb", "koufōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["koufotim", "verb", "koufōtīm", "koufōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["suohta", "verb", "suohta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["suohti", "verb", "suohti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["koufti", "verb", "koufti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["koufe", "verb", "koufe", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["koufet", "verb", "koufet", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["koufit", "verb", "koufit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["gigozzan", "verb", "gigoȥȥan", "", "", "", "past participle of"]) + let v = native_list_append(v, ["deganon", "verb", "dëganōm", "dëganōta", "", "", "to serve +"]) + let v = native_list_append(v, ["striten", "verb", "strītēn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["strite", "verb", "strīte", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["stritist", "verb", "strītist", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["stritis", "verb", "strītis", "strītist", "", "", "second-person singular present"]) + let v = native_list_append(v, ["striti", "verb", "striti", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["diozan", "verb", "diuȥu", "dōȥ", "", "", "to resound to"]) + let v = native_list_append(v, ["diozzan", "verb", "dioȥȥan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["niuz", "verb", "niuȥ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dwingan", "verb", "thuuingan", "duuingan", "tuuingan", "", "constrict tie together"]) + let v = native_list_append(v, ["krouh", "verb", "krouh", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["giwahan", "verb", "giwahan", "", "", "", "to mention"]) + let v = native_list_append(v, ["lubom", "verb", "lubōm", "lubōn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["lubomes", "verb", "lubōmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lubost", "verb", "lubōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gilubot", "verb", "gilubōt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lubonti", "verb", "lubōnti", "", "", "", "present participle of"]) + let v = native_list_append(v, ["luboti", "verb", "lubōti", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lubota", "verb", "lubōta", "", "", "", "first/third-person singular preterite"]) + let v = native_list_append(v, ["lubotun", "verb", "lubōtun", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["lubont", "verb", "lubōnt", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["lubotin", "verb", "lubōtīn", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["lubotit", "verb", "lubōtīt", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["lubotis", "verb", "lubōtīs", "lubōtīst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["lubotist", "verb", "lubōtīst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lubotost", "verb", "lubōtōst", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lubotos", "verb", "lubōtōs", "lubōtōst", "", "", "second-person singular preterite"]) + let v = native_list_append(v, ["lubotut", "verb", "lubōtut", "", "", "", "second-person plural preterite"]) + let v = native_list_append(v, ["lubotum", "verb", "lubōtum", "lubōtumēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["lubotim", "verb", "lubōtīm", "lubōtīmēs", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["lubotimes", "verb", "lubōtīmēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lubotumes", "verb", "lubōtumēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["warit", "verb", "wārīt", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["war", "adj", "war", "", "", "", "true"]) + let v = native_list_append(v, ["her", "adj", "hērro", "", "", "", "gray-haired old"]) + let v = native_list_append(v, ["arm", "adj", "arm", "", "", "", "poor miserable"]) + let v = native_list_append(v, ["warm", "adj", "warm", "", "", "", "warm"]) + let v = native_list_append(v, ["al", "adj", "al", "", "", "", "all"]) + let v = native_list_append(v, ["lam", "adj", "lam", "", "", "", "lame"]) + let v = native_list_append(v, ["er", "adj", "er", "", "", "", "early"]) + let v = native_list_append(v, ["hold", "adj", "hold", "", "", "", "friendly loyal"]) + let v = native_list_append(v, ["sat", "adj", "sat", "", "", "", "full sated"]) + let v = native_list_append(v, ["bitter", "adj", "bitter", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fri", "adj", "fri", "", "", "", "free"]) + let v = native_list_append(v, ["hart", "adj", "hart", "", "", "", "hard firm"]) + let v = native_list_append(v, ["link", "adj", "link", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rot", "adj", "rot", "", "", "", "red"]) + let v = native_list_append(v, ["nah", "adj", "nah", "", "", "", "close"]) + let v = native_list_append(v, ["alter", "adj", "alter", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["bar", "adj", "bar", "", "", "", "bare"]) + let v = native_list_append(v, ["bald", "adj", "bald", "", "", "", "bold quick"]) + let v = native_list_append(v, ["breit", "adj", "breit", "", "", "", "broad large"]) + let v = native_list_append(v, ["los", "adj", "los", "", "", "", "loose"]) + let v = native_list_append(v, ["arc", "adj", "arc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kalt", "adj", "kalt", "", "", "", "cold"]) + let v = native_list_append(v, ["rad", "adj", "rad", "", "", "", "fast"]) + let v = native_list_append(v, ["wit", "adj", "wit", "", "", "", "wide"]) + let v = native_list_append(v, ["odi", "adj", "odi", "", "", "", "empty desolate void"]) + let v = native_list_append(v, ["andar", "adj", "andar", "", "", "", "second"]) + let v = native_list_append(v, ["hol", "adj", "hol", "", "", "", "hollow"]) + let v = native_list_append(v, ["fer", "adj", "fer", "", "", "", "remote"]) + let v = native_list_append(v, ["tot", "adj", "tot", "", "", "", "dead"]) + let v = native_list_append(v, ["scarf", "adj", "scarf", "", "", "", "sharp"]) + let v = native_list_append(v, ["faro", "adj", "faro", "", "", "", "colored"]) + let v = native_list_append(v, ["fro", "adj", "fro", "", "", "", "glad"]) + let v = native_list_append(v, ["hamal", "adj", "hamal", "", "", "", "castrated"]) + let v = native_list_append(v, ["stark", "adj", "stark", "", "", "", "strong"]) + let v = native_list_append(v, ["ital", "adj", "ital", "", "", "", "empty"]) + let v = native_list_append(v, ["sur", "adj", "sur", "", "", "", "sour"]) + let v = native_list_append(v, ["alt", "adj", "alt", "", "", "", "old"]) + let v = native_list_append(v, ["jener", "adj", "jener", "", "", "", "that"]) + let v = native_list_append(v, ["lang", "adj", "lang", "", "", "", "long"]) + let v = native_list_append(v, ["kurz", "adj", "kurz", "", "", "", "short"]) + let v = native_list_append(v, ["ro", "adj", "ro", "", "", "", "raw"]) + let v = native_list_append(v, ["tol", "adj", "tol", "", "", "", "foolish"]) + let v = native_list_append(v, ["lari", "adj", "lari", "", "", "", "empty"]) + let v = native_list_append(v, ["festi", "adj", "festi", "", "", "", "firm"]) + let v = native_list_append(v, ["ruh", "adj", "ruh", "", "", "", "rough"]) + let v = native_list_append(v, ["heis", "adj", "heis", "", "", "", "hoarse"]) + let v = native_list_append(v, ["lao", "adj", "lao", "", "", "", "warm of the"]) + let v = native_list_append(v, ["ger", "adj", "ger", "", "", "", "greedy"]) + let v = native_list_append(v, ["wiz", "adj", "wiz", "", "", "", "white"]) + let v = native_list_append(v, ["beide", "adj", "beide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["smal", "adj", "smal", "", "", "", "small"]) + let v = native_list_append(v, ["jung", "adj", "jung", "", "", "", "young"]) + let v = native_list_append(v, ["ewig", "adj", "ewig", "", "", "", "eternal"]) + let v = native_list_append(v, ["heil", "adj", "heil", "", "", "", "whole"]) + let v = native_list_append(v, ["arg", "adj", "arg", "", "", "", "bad wicked godless"]) + let v = native_list_append(v, ["muntar", "adj", "muntar", "", "", "", "industrious"]) + let v = native_list_append(v, ["grob", "adj", "grob", "", "", "", "coarse"]) + let v = native_list_append(v, ["gern", "adj", "gern", "", "", "", "willing eager"]) + let v = native_list_append(v, ["magar", "adj", "magar", "", "", "", "thin"]) + let v = native_list_append(v, ["sconi", "adj", "sconi", "", "", "", "nice"]) + let v = native_list_append(v, ["rihhi", "adj", "rihhi", "", "", "", "rich"]) + let v = native_list_append(v, ["swarz", "adj", "swarz", "", "", "", "black"]) + let v = native_list_append(v, ["semfti", "adj", "semfti", "", "", "", "soft"]) + let v = native_list_append(v, ["sioh", "adj", "sioh", "", "", "", "sick"]) + let v = native_list_append(v, ["tiuf", "adj", "tiuf", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fagar", "adj", "fagar", "", "", "", "beautiful fair"]) + let v = native_list_append(v, ["guot", "adj", "guot", "", "", "", "good"]) + let v = native_list_append(v, ["slaf", "adj", "slaf", "", "", "", "slack"]) + let v = native_list_append(v, ["niuwi", "adj", "niuwi", "", "", "", "new"]) + let v = native_list_append(v, ["suozi", "adj", "suozi", "", "", "", "sweet"]) + let v = native_list_append(v, ["zam", "adj", "zam", "", "", "", "tame"]) + let v = native_list_append(v, ["wis", "adj", "wis", "", "", "", "wise"]) + let v = native_list_append(v, ["hoh", "adj", "hoh", "", "", "", "high"]) + let v = native_list_append(v, ["tapfar", "adj", "tapfar", "", "", "", "heavy"]) + let v = native_list_append(v, ["tunkal", "adj", "tunkal", "", "", "", "dark"]) + let v = native_list_append(v, ["frisc", "adj", "frisc", "", "", "", "fresh"]) + let v = native_list_append(v, ["zah", "adj", "zah", "", "", "", "tough"]) + let v = native_list_append(v, ["giri", "adj", "giri", "", "", "", "greedy"]) + let v = native_list_append(v, ["glanz", "adj", "glanz", "", "", "", "bright"]) + let v = native_list_append(v, ["mitti", "adj", "mitti", "", "", "", "middle"]) + let v = native_list_append(v, ["quec", "adj", "quec", "", "", "", "quick"]) + let v = native_list_append(v, ["foll", "adj", "foll", "", "", "", "full"]) + let v = native_list_append(v, ["groz", "adj", "groz", "", "", "", "rough coarse crude"]) + let v = native_list_append(v, ["gelo", "adj", "gelo", "", "", "", "yellow"]) + let v = native_list_append(v, ["chalo", "adj", "chalo", "", "", "", "bald"]) + let v = native_list_append(v, ["nuohturn", "adj", "nuohturn", "", "", "", "not having eaten"]) + let v = native_list_append(v, ["naz", "adj", "naz", "", "", "", "wet"]) + let v = native_list_append(v, ["adal", "adj", "adal", "", "", "", "noble"]) + let v = native_list_append(v, ["kuoli", "adj", "kuoli", "", "", "", "cool not warm"]) + let v = native_list_append(v, ["heiz", "adj", "heiz", "", "", "", "hot"]) + let v = native_list_append(v, ["sichur", "adj", "sichur", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["stilli", "adj", "stilli", "", "", "", "still"]) + let v = native_list_append(v, ["strangi", "adj", "strangi", "", "", "", "strong"]) + let v = native_list_append(v, ["swar", "adj", "swar", "", "", "", "heavy"]) + let v = native_list_append(v, ["tiuri", "adj", "tiuri", "", "", "", "expensive"]) + let v = native_list_append(v, ["ubil", "adj", "ubil", "", "", "", "evil"]) + let v = native_list_append(v, ["weih", "adj", "weih", "", "", "", "soft"]) + let v = native_list_append(v, ["wildi", "adj", "wildi", "", "", "", "wild"]) + let v = native_list_append(v, ["winstar", "adj", "winstar", "", "", "", "left"]) + let v = native_list_append(v, ["zeso", "adj", "zeso", "", "", "", "right opposite of"]) + let v = native_list_append(v, ["innar", "adj", "innar", "", "", "", "inner"]) + let v = native_list_append(v, ["uzaro", "adj", "uzaro", "", "", "", "outer"]) + let v = native_list_append(v, ["obaro", "adj", "obaro", "", "", "", "upper"]) + let v = native_list_append(v, ["untaro", "adj", "untaro", "", "", "", "lower"]) + let v = native_list_append(v, ["innaro", "adj", "innaro", "", "", "", "inner"]) + let v = native_list_append(v, ["nidaro", "adj", "nidaro", "", "", "", "lower"]) + let v = native_list_append(v, ["hintaro", "adj", "hintaro", "", "", "", "rear"]) + let v = native_list_append(v, ["dicchi", "adj", "dicchi", "", "", "", "thick"]) + let v = native_list_append(v, ["dunni", "adj", "dunni", "", "", "", "thin"]) + let v = native_list_append(v, ["reht", "adj", "reht", "", "", "", "right"]) + let v = native_list_append(v, ["gruoni", "adj", "gruoni", "", "", "", "green"]) + let v = native_list_append(v, ["grao", "adj", "grao", "", "", "", "grey"]) + let v = native_list_append(v, ["blao", "adj", "blao", "", "", "", "blue"]) + let v = native_list_append(v, ["kuoni", "adj", "kuoni", "", "", "", "daring audacious"]) + let v = native_list_append(v, ["filu", "adj", "filu", "", "", "", "many"]) + let v = native_list_append(v, ["bittar", "adj", "bittar", "", "", "", "bitter"]) + let v = native_list_append(v, ["blint", "adj", "blint", "", "blintiu", "", "blind"]) + let v = native_list_append(v, ["bloz", "adj", "bloz", "", "", "", "bare naked"]) + let v = native_list_append(v, ["blodi", "adj", "blodi", "", "", "", "weak"]) + let v = native_list_append(v, ["tumb", "adj", "tumb", "", "", "", "dumb"]) + let v = native_list_append(v, ["gilih", "adj", "gilih", "", "", "", "equal"]) + let v = native_list_append(v, ["krump", "adj", "krump", "", "", "", "crooked"]) + let v = native_list_append(v, ["edil", "adj", "edil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["engi", "adj", "engi", "", "", "", "narrow"]) + let v = native_list_append(v, ["liht", "adj", "liht", "", "", "", "light not heavy"]) + let v = native_list_append(v, ["ernust", "adj", "ernust", "", "", "", "serious"]) + let v = native_list_append(v, ["feizit", "adj", "feizit", "", "", "", "fat"]) + let v = native_list_append(v, ["fuht", "adj", "fuht", "", "", "", "wet"]) + let v = native_list_append(v, ["gisunt", "adj", "gisunt", "", "", "", "healthy"]) + let v = native_list_append(v, ["nackut", "adj", "nackut", "", "", "", "naked"]) + let v = native_list_append(v, ["rao", "adj", "rao", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wenag", "adj", "wenag", "", "", "", "lamentable"]) + let v = native_list_append(v, ["toub", "adj", "toub", "", "", "", "deaf"]) + let v = native_list_append(v, ["lut", "adj", "lut", "", "", "", "loud"]) + let v = native_list_append(v, ["kleini", "adj", "kleini", "", "", "", "small fine slender"]) + let v = native_list_append(v, ["rifi", "adj", "rifi", "", "", "", "ripe"]) + let v = native_list_append(v, ["sleht", "adj", "sleht", "", "", "", "even"]) + let v = native_list_append(v, ["salig", "adj", "salig", "", "", "", "happy"]) + let v = native_list_append(v, ["swangar", "adj", "swangar", "", "", "", "pregnant"]) + let v = native_list_append(v, ["frao", "adj", "frao", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["muodi", "adj", "muodi", "", "", "", "tired"]) + let v = native_list_append(v, ["lazzost", "adj", "lazzost", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["laz", "adj", "laz", "", "", "", "slow"]) + let v = native_list_append(v, ["zuiski", "adj", "zuiski", "", "", "", "twofold"]) + let v = native_list_append(v, ["eban", "adj", "eban", "", "", "", "plain even"]) + let v = native_list_append(v, ["bosi", "adj", "bosi", "", "", "", "evil"]) + let v = native_list_append(v, ["bede", "adj", "bede", "", "", "", "both"]) + let v = native_list_append(v, ["derb", "adj", "derb", "", "", "", "unleavened"]) + let v = native_list_append(v, ["derp", "adj", "derp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["durri", "adj", "durri", "", "", "", "dry"]) + let v = native_list_append(v, ["eigan", "adj", "eigan", "", "", "", "own"]) + let v = native_list_append(v, ["erist", "adj", "erist", "", "", "", "earliest"]) + let v = native_list_append(v, ["karag", "adj", "karag", "", "", "", "sparing"]) + let v = native_list_append(v, ["feigi", "adj", "feigi", "", "", "", "cowardly"]) + let v = native_list_append(v, ["fartig", "adj", "fartig", "", "", "", "ready to go"]) + let v = native_list_append(v, ["finstar", "adj", "finstar", "", "", "", "dark"]) + let v = native_list_append(v, ["dinstar", "adj", "dinstar", "", "", "", "dark"]) + let v = native_list_append(v, ["flucki", "adj", "flucki", "", "", "", "fully fledged"]) + let v = native_list_append(v, ["freh", "adj", "freh", "", "", "", "greedy ambitious"]) + let v = native_list_append(v, ["fruoi", "adj", "fruoi", "", "", "", "early"]) + let v = native_list_append(v, ["glat", "adj", "glat", "", "", "", "bright"]) + let v = native_list_append(v, ["heilag", "adj", "heilag", "", "", "", "holy"]) + let v = native_list_append(v, ["irri", "adj", "irri", "", "", "", "confused"]) + let v = native_list_append(v, ["garo", "adj", "garo", "", "", "", "done"]) + let v = native_list_append(v, ["leid", "adj", "leid", "", "", "", "uncomfortable"]) + let v = native_list_append(v, ["milti", "adj", "milti", "", "", "", "mild"]) + let v = native_list_append(v, ["ioweder", "adj", "ioweder", "", "", "", "both"]) + let v = native_list_append(v, ["wedar", "adj", "wedar", "", "", "", "which of the"]) + let v = native_list_append(v, ["subar", "adj", "subar", "", "", "", "clean"]) + let v = native_list_append(v, ["frote", "adj", "frote", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alte", "adj", "alte", "", "", "", "strong masculine nominative/accusative"]) + let v = native_list_append(v, ["strak", "adj", "strak", "", "", "", "stiff"]) + let v = native_list_append(v, ["ehaft", "adj", "ehaft", "", "", "", "honorable"]) + let v = native_list_append(v, ["desero", "adj", "desero", "", "", "", "inflection of dese"]) + let v = native_list_append(v, ["heremo", "adj", "heremo", "", "", "", "strong masculine/neuter dative"]) + let v = native_list_append(v, ["wize", "adj", "wize", "", "", "", "strong masculine nominative/accusative"]) + let v = native_list_append(v, ["erchan", "adj", "erchan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tiof", "adj", "tiof", "", "", "", "deep"]) + let v = native_list_append(v, ["toup", "adj", "toup", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luttilo", "adj", "luttilo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lotar", "adj", "lotar", "", "", "", "senseless useless vain"]) + let v = native_list_append(v, ["abar", "adj", "abar", "", "", "", "sunny"]) + let v = native_list_append(v, ["eiganhaft", "adj", "eiganhaft", "", "", "", "peculiar special particular"]) + let v = native_list_append(v, ["heidan", "adj", "heidan", "", "", "", "heathen pagan"]) + let v = native_list_append(v, ["hlutar", "adj", "hlutar", "", "", "", "clean clear pure"]) + let v = native_list_append(v, ["charag", "adj", "charag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lunz", "adj", "lunz", "", "", "", "lazy idle"]) + let v = native_list_append(v, ["offan", "adj", "offan", "", "", "", "open"]) + let v = native_list_append(v, ["fruot", "adj", "fruotōro", "", "", "", "wise learnèd"]) + let v = native_list_append(v, ["erdlih", "adj", "erdlih", "", "", "", "earthly"]) + let v = native_list_append(v, ["diutisk", "adj", "diutisk", "", "", "", "of or pertaining"]) + let v = native_list_append(v, ["diutisc", "adj", "diutisc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["adallich", "adj", "adallich", "", "", "", "lordly"]) + let v = native_list_append(v, ["giloub", "adj", "giloub", "", "", "", "believed"]) + let v = native_list_append(v, ["giwissi", "adj", "giwissi", "", "", "", "certain"]) + let v = native_list_append(v, ["giwis", "adj", "giwis", "", "", "", "certain"]) + let v = native_list_append(v, ["berht", "adj", "berht", "", "", "", "bright splendid shining"]) + let v = native_list_append(v, ["wizzilos", "adj", "wizzilos", "", "", "", "witless"]) + let v = native_list_append(v, ["reinherzi", "adj", "reinherzi", "", "", "", "pure hearted"]) + let v = native_list_append(v, ["unarmherz", "adj", "unarmherz", "", "", "", "merciless"]) + let v = native_list_append(v, ["armherz", "adj", "armherz", "", "", "", "merciful"]) + let v = native_list_append(v, ["erpf", "adj", "erpf", "", "", "", "brown"]) + let v = native_list_append(v, ["dekkist", "adj", "dekkist", "", "", "", "dearest most beloved"]) + let v = native_list_append(v, ["dechisto", "adj", "dechisto", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["lenk", "adj", "lenk", "", "", "", "left on the"]) + let v = native_list_append(v, ["kraftic", "adj", "kraftic", "", "", "", "strong powerful"]) + let v = native_list_append(v, ["frotoro", "adj", "frotoro", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["argosto", "adj", "argosto", "", "", "", "weak superlative degree"]) + let v = native_list_append(v, ["argost", "adj", "argost", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["fruotoro", "adj", "fruotoro", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["heroro", "adj", "heroro", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["fohem", "adj", "fohem", "", "", "", "strong masculine/neuter dative"]) + let v = native_list_append(v, ["friuntlaos", "adj", "friuntlaos", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["unwahsan", "adj", "unwahsan", "", "", "", "ungrown"]) + let v = native_list_append(v, ["unƿahsan", "adj", "unƿahsan", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["spaher", "adj", "spaher", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["luttila", "adj", "luttila", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["luzzila", "adj", "luzzila", "", "", "", "inflection of luzzil"]) + let v = native_list_append(v, ["luzzilo", "adj", "luzzilo", "", "", "", "inflection of luzzil"]) + let v = native_list_append(v, ["huitte", "adj", "huitte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bedero", "adj", "bedero", "", "", "", "genitive of bēde"]) + let v = native_list_append(v, ["unbartohti", "adj", "unbartohti", "", "", "", "unbearded beardless"]) + let v = native_list_append(v, ["bartohti", "adj", "bartohti", "", "", "", "bearded"]) + let v = native_list_append(v, ["swas", "adj", "swas", "", "", "", "own"]) + let v = native_list_append(v, ["suasat", "adj", "suasat", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["manlih", "adj", "manlih", "", "", "", "Having the characteristics"]) + let v = native_list_append(v, ["wahhar", "adj", "wahhar", "", "", "", "watchful vigilant alert"]) + let v = native_list_append(v, ["einhart", "adj", "einhart", "", "", "", "steadfast. persistent"]) + let v = native_list_append(v, ["erkan", "adj", "erkan", "", "", "", "sublime chief special"]) + let v = native_list_append(v, ["ab", "prep", "ab", "", "", "", "of"]) + let v = native_list_append(v, ["in", "prep", "in", "", "", "", "in"]) + let v = native_list_append(v, ["after", "prep", "after", "", "", "", "after"]) + let v = native_list_append(v, ["to", "prep", "to", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["er", "prep", "er", "", "", "", "before"]) + let v = native_list_append(v, ["bi", "prep", "bi", "", "", "", "by"]) + let v = native_list_append(v, ["ano", "prep", "ano", "", "", "", "without"]) + let v = native_list_append(v, ["ti", "prep", "ti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nah", "prep", "nah", "", "", "", "towards"]) + let v = native_list_append(v, ["mit", "prep", "mit", "", "", "", "with"]) + let v = native_list_append(v, ["ana", "prep", "ana", "", "", "", "at"]) + let v = native_list_append(v, ["uzar", "prep", "uzar", "", "", "", "apart from"]) + let v = native_list_append(v, ["fora", "prep", "fora", "", "", "", "before against in"]) + let v = native_list_append(v, ["untar", "prep", "untar", "", "", "", "under"]) + let v = native_list_append(v, ["uz", "prep", "uz", "", "", "", "out of"]) + let v = native_list_append(v, ["fon", "prep", "fon", "", "", "", "from"]) + let v = native_list_append(v, ["oba", "prep", "oba", "", "", "", "above"]) + let v = native_list_append(v, ["gagan", "prep", "gagan", "", "", "", "against"]) + let v = native_list_append(v, ["uf", "prep", "uf", "", "", "", "upon"]) + let v = native_list_append(v, ["obar", "prep", "obar", "", "", "", "above"]) + let v = native_list_append(v, ["hintar", "prep", "hintar", "", "", "", "behind"]) + let v = native_list_append(v, ["duruh", "prep", "duruh", "", "", "", "through"]) + let v = native_list_append(v, ["furi", "prep", "furi", "", "", "", "before"]) + let v = native_list_append(v, ["zuo", "prep", "zuo", "", "", "", "to"]) + let v = native_list_append(v, ["widar", "prep", "widar", "", "", "", "against"]) + let v = native_list_append(v, ["umbi", "prep", "umbi", "", "", "", "around"]) + let v = native_list_append(v, ["miti", "prep", "miti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["umpi", "prep", "umpi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ubar", "prep", "ubar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ƿidar", "prep", "ƿidar", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["the", "particle", "the", "", "", "", "that who which"]) + let v = native_list_append(v, ["ni", "particle", "ni", "", "", "", "not"]) + let v = native_list_append(v, ["nein", "particle", "nein", "", "", "", "no"]) + let v = native_list_append(v, ["selbo", "particle", "selbo", "", "", "", "-self"]) + let v = native_list_append(v, ["dat", "conj", "dat", "", "", "", "that"]) + let v = native_list_append(v, ["er", "conj", "er", "", "", "", "before until"]) + let v = native_list_append(v, ["than", "conj", "than", "", "", "", "from there therefore"]) + let v = native_list_append(v, ["doh", "conj", "doh", "", "", "", "though"]) + let v = native_list_append(v, ["abur", "conj", "abur", "", "", "", "but"]) + let v = native_list_append(v, ["anti", "conj", "anti", "", "", "", "and"]) + let v = native_list_append(v, ["ande", "conj", "ande", "", "", "", "and"]) + let v = native_list_append(v, ["oba", "conj", "oba", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ibu", "conj", "ibu", "", "", "", "if"]) + let v = native_list_append(v, ["unti", "conj", "unti", "", "", "", "and"]) + let v = native_list_append(v, ["odar", "conj", "odar", "", "", "", "or"]) + let v = native_list_append(v, ["daz", "conj", "daz", "", "", "", "that"]) + let v = native_list_append(v, ["avur", "conj", "avur", "", "", "", "but"]) + let v = native_list_append(v, ["enti", "conj", "enti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ipu", "conj", "ipu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alde", "conj", "alde", "", "", "", "or"]) + let v = native_list_append(v, ["afur", "conj", "afur", "", "", "", "but"]) + let v = native_list_append(v, ["untaz", "conj", "untaz", "", "", "", "until"]) + let v = native_list_append(v, ["thanta", "conj", "thanta", "", "", "", "because"]) + let v = native_list_append(v, ["thaz", "conj", "thaz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mi", "pron", "mi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["her", "pron", "her", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["er", "pron", "er", "", "", "", "he"]) + let v = native_list_append(v, ["ir", "pron", "ir", "", "", "", "you second-person plural"]) + let v = native_list_append(v, ["du", "pron", "du", "", "", "", "thou you second-person"]) + let v = native_list_append(v, ["wir", "pron", "wir", "", "", "", "we nominative plural"]) + let v = native_list_append(v, ["der", "pron", "der", "", "", "", "the"]) + let v = native_list_append(v, ["din", "pron", "din", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mir", "pron", "mir", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dero", "pron", "dero", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["min", "pron", "min", "", "", "", "my"]) + let v = native_list_append(v, ["wer", "pron", "wer", "", "", "", "who"]) + let v = native_list_append(v, ["iu", "pron", "iu", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["thu", "pron", "thu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diz", "pron", "diz", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["dese", "pron", "dese", "", "", "", "this"]) + let v = native_list_append(v, ["iuwar", "pron", "iuwar", "", "", "", "your plural form"]) + let v = native_list_append(v, ["ih", "pron", "ih", "", "", "", "I"]) + let v = native_list_append(v, ["mih", "pron", "mih", "", "", "", "me accusative singular"]) + let v = native_list_append(v, ["dih", "pron", "dih", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sih", "pron", "sih", "", "", "", "self"]) + let v = native_list_append(v, ["daz", "pron", "daz", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["ther", "pron", "ther", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iz", "pron", "iz", "", "", "", "it"]) + let v = native_list_append(v, ["ier", "pron", "ier", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["inan", "pron", "inan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["themu", "pron", "themu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["waz", "pron", "waz", "", "", "", "what"]) + let v = native_list_append(v, ["thaz", "pron", "thaz", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["unsih", "pron", "unsih", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["iuwer", "pron", "iuwer", "", "", "", "genitive of ir"]) + let v = native_list_append(v, ["iuwih", "pron", "iuwih", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["welih", "pron", "welih", "", "", "", "which"]) + let v = native_list_append(v, ["ᛞᚢ", "pron", "ᛞᚢ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["demu", "pron", "demu", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["eo", "adv", "eo", "", "", "", "always"]) + let v = native_list_append(v, ["after", "adv", "after", "", "", "", "behind"]) + let v = native_list_append(v, ["dar", "adv", "dar", "", "", "", "there"]) + let v = native_list_append(v, ["do", "adv", "do", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["er", "adv", "er", "", "", "", "ere before"]) + let v = native_list_append(v, ["than", "adv", "than", "", "", "", "then there when"]) + let v = native_list_append(v, ["duo", "adv", "duo", "", "", "", "then"]) + let v = native_list_append(v, ["ebano", "adv", "ebano", "", "", "", "just"]) + let v = native_list_append(v, ["odo", "adv", "odo", "", "", "", "possibly about perhaps"]) + let v = native_list_append(v, ["io", "adv", "io", "", "", "", "always"]) + let v = native_list_append(v, ["ein", "adv", "ein", "", "", "", "only"]) + let v = native_list_append(v, ["fer", "adv", "fer", "", "", "", "far"]) + let v = native_list_append(v, ["nio", "adv", "nio", "", "", "", "never"]) + let v = native_list_append(v, ["baz", "adv", "baz", "", "", "", "better"]) + let v = native_list_append(v, ["ana", "adv", "ana", "", "", "", "onwards"]) + let v = native_list_append(v, ["tho", "adv", "tho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ferro", "adv", "ferro", "", "", "", "afar distantly"]) + let v = native_list_append(v, ["abur", "adv", "abur", "", "", "", "however"]) + let v = native_list_append(v, ["min", "adv", "min", "", "", "", "less"]) + let v = native_list_append(v, ["noto", "adv", "noto", "", "", "", "necessarily"]) + let v = native_list_append(v, ["meist", "adv", "meist", "", "", "", "most"]) + let v = native_list_append(v, ["hera", "adv", "hera", "", "", "", "hither"]) + let v = native_list_append(v, ["uz", "adv", "uz", "", "", "", "out"]) + let v = native_list_append(v, ["festi", "adv", "festi", "", "", "", "certain"]) + let v = native_list_append(v, ["sus", "adv", "sus", "", "", "", "in this manner"]) + let v = native_list_append(v, ["kumo", "adv", "kumo", "", "", "", "delicately"]) + let v = native_list_append(v, ["alles", "adv", "alles", "", "", "", "else"]) + let v = native_list_append(v, ["oba", "adv", "oba", "", "", "", "above"]) + let v = native_list_append(v, ["sar", "adv", "sar", "", "", "", "soon"]) + let v = native_list_append(v, ["hina", "adv", "hina", "", "", "", "thither"]) + let v = native_list_append(v, ["lango", "adv", "lango", "", "", "", "long"]) + let v = native_list_append(v, ["noh", "adv", "noh", "", "", "", "still"]) + let v = native_list_append(v, ["wela", "adv", "wela", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aftar", "adv", "aftar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gerno", "adv", "gerno", "", "", "", "willingly"]) + let v = native_list_append(v, ["uf", "adv", "uf", "", "", "", "up"]) + let v = native_list_append(v, ["nidar", "adv", "nidar", "", "", "", "down"]) + let v = native_list_append(v, ["nidana", "adv", "nidana", "", "", "", "below"]) + let v = native_list_append(v, ["innana", "adv", "innana", "", "", "", "inside"]) + let v = native_list_append(v, ["obana", "adv", "obana", "", "", "", "above"]) + let v = native_list_append(v, ["uzana", "adv", "uzana", "", "", "", "outside"]) + let v = native_list_append(v, ["hintana", "adv", "hintana", "", "", "", "behind"]) + let v = native_list_append(v, ["doret", "adv", "doret", "", "", "", "there"]) + let v = native_list_append(v, ["filu", "adv", "filu", "", "", "", "much"]) + let v = native_list_append(v, ["bezziro", "adv", "bezziro", "", "", "", "better comparative degree"]) + let v = native_list_append(v, ["bezzisto", "adv", "bezzisto", "", "", "", "best"]) + let v = native_list_append(v, ["wola", "adv", "wola", "", "", "", "well"]) + let v = native_list_append(v, ["ango", "adv", "ango", "", "", "", "narrowly"]) + let v = native_list_append(v, ["mero", "adv", "mero", "", "", "", "more"]) + let v = native_list_append(v, ["nahisto", "adv", "nahisto", "", "", "", "next"]) + let v = native_list_append(v, ["erist", "adv", "erist", "", "", "", "first"]) + let v = native_list_append(v, ["ferrana", "adv", "ferrana", "", "", "", "from afar"]) + let v = native_list_append(v, ["fruo", "adv", "fruo", "", "", "", "early"]) + let v = native_list_append(v, ["ginuog", "adv", "ginuog", "", "", "", "enough"]) + let v = native_list_append(v, ["rado", "adv", "rado", "", "", "", "fast"]) + let v = native_list_append(v, ["liso", "adv", "liso", "", "", "", "softly speaking with"]) + let v = native_list_append(v, ["harto", "adv", "harto", "", "", "", "hard"]) + let v = native_list_append(v, ["lindo", "adv", "lindo", "", "", "", "gently"]) + let v = native_list_append(v, ["fasto", "adv", "fasto", "", "", "", "firmly"]) + let v = native_list_append(v, ["tages", "adv", "tages", "", "", "", "by day"]) + let v = native_list_append(v, ["spato", "adv", "spato", "", "", "", "late"]) + let v = native_list_append(v, ["ostar", "adv", "ostar", "", "", "", "in the east"]) + let v = native_list_append(v, ["fullo", "adv", "fullo", "", "", "", "fully"]) + let v = native_list_append(v, ["ouh", "adv", "ouh", "", "", "", "also too as"]) + let v = native_list_append(v, ["hoho", "adv", "hoho", "", "", "", "high"]) + let v = native_list_append(v, ["giu", "adv", "giu", "", "", "", "once already"]) + let v = native_list_append(v, ["hiutu", "adv", "hiutu", "", "", "", "today"]) + let v = native_list_append(v, ["drato", "adv", "drato", "", "", "", "fast"]) + let v = native_list_append(v, ["nāho", "adv", "nāho", "", "", "", "near"]) + let v = native_list_append(v, ["thara", "adv", "thara", "", "", "", "thither to that"]) + let v = native_list_append(v, ["einemu", "adv", "einemu", "", "", "", "only"]) + let v = native_list_append(v, ["eino", "adv", "eino", "", "", "", "alone"]) + let v = native_list_append(v, ["einluzzo", "adv", "einluzzo", "", "", "", "alone"]) + let v = native_list_append(v, ["hantago", "adv", "hantago", "", "", "", "bitter"]) + let v = native_list_append(v, ["luzzil", "adv", "luzzil", "", "", "", "little"]) + let v = native_list_append(v, ["samahaft", "adv", "samahaft", "", "", "", "mixed"]) + let v = native_list_append(v, ["nihein", "adv", "nihein", "", "", "", "no"]) + let v = native_list_append(v, ["anderhalb", "adv", "anderhalb", "", "", "", "opposite"]) + let v = native_list_append(v, ["singanto", "adv", "singanto", "", "", "", "singing"]) + let v = native_list_append(v, ["glato", "adv", "glato", "", "", "", "smooth"]) + let v = native_list_append(v, ["fahanto", "adv", "fahanto", "", "", "", "walking"]) + let v = native_list_append(v, ["wio so", "adv", "wio so", "", "", "", "why"]) + let v = native_list_append(v, ["driror", "adv", "driror", "", "", "", "thrice"]) + let v = native_list_append(v, ["alagaro", "adv", "alagaro", "", "", "", "completely"]) + let v = native_list_append(v, ["allererist", "adv", "allererist", "", "", "", "first"]) + let v = native_list_append(v, ["alleswar", "adv", "alleswar", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["alleswio", "adv", "alleswio", "", "", "", "elsehow"]) + let v = native_list_append(v, ["alsamo", "adv", "alsamo", "", "", "", "all alike"]) + let v = native_list_append(v, ["zi altere", "adv", "zi altere", "", "", "", "always for forever"]) + let v = native_list_append(v, ["eonaltre", "adv", "eonaltre", "", "", "", "ever"]) + let v = native_list_append(v, ["nio in altare", "adv", "nio in altare", "", "", "", "never"]) + let v = native_list_append(v, ["angustlihho", "adv", "angustlihho", "", "", "", "timidly"]) + let v = native_list_append(v, ["arwun", "adv", "arwun", "", "", "", "vainly"]) + let v = native_list_append(v, ["ana baga", "adv", "ana baga", "", "", "", "without contradiction"]) + let v = native_list_append(v, ["baldlihho", "adv", "baldlihho", "", "", "", "boldly"]) + let v = native_list_append(v, ["erlihho", "adv", "erlihho", "", "", "", "honourably"]) + let v = native_list_append(v, ["friuntlicho", "adv", "friuntlicho", "", "", "", "friendly"]) + let v = native_list_append(v, ["in frono", "adv", "in frono", "", "", "", "gloriously"]) + let v = native_list_append(v, ["tagalihhes", "adv", "tagalihhes", "", "", "", "daily"]) + let v = native_list_append(v, ["gitago", "adv", "gitago", "", "", "", "daily"]) + let v = native_list_append(v, ["gatago", "adv", "gatago", "", "", "", "daily"]) + let v = native_list_append(v, ["gidago", "adv", "gidago", "", "", "", "daily"]) + let v = native_list_append(v, ["ubaral", "adv", "ubaral", "", "", "", "everywhere"]) + let v = native_list_append(v, ["ubari", "adv", "ubari", "", "", "", "over"]) + let v = native_list_append(v, ["ubilo", "adv", "ubilo", "", "", "", "evilly"]) + let v = native_list_append(v, ["az jungist", "adv", "az jungist", "", "", "", "finally recently"]) + let v = native_list_append(v, ["kleino", "adv", "kleino", "", "", "", "cleanly"]) + let v = native_list_append(v, ["kusgo", "adv", "kusgo", "", "", "", "modestly"]) + let v = native_list_append(v, ["lioblihho", "adv", "lioblihho", "", "", "", "in a lovely"]) + let v = native_list_append(v, ["meino", "adv", "meino", "", "", "", "falsely"]) + let v = native_list_append(v, ["meinnes", "adv", "meinnes", "", "", "", "false"]) + let v = native_list_append(v, ["gimeino", "adv", "gimeino", "", "", "", "together"]) + let v = native_list_append(v, ["mezhafto", "adv", "mezhafto", "", "", "", "moderately"]) + let v = native_list_append(v, ["in morgan", "adv", "in morgan", "", "", "", "in the morning"]) + let v = native_list_append(v, ["thes nahtes", "adv", "thes nahtes", "", "", "", "at night by"]) + let v = native_list_append(v, ["odlihho", "adv", "odlihho", "", "", "", "easily"]) + let v = native_list_append(v, ["odowan", "adv", "odowan", "", "", "", "maybe"]) + let v = native_list_append(v, ["adallihho", "adv", "adallihho", "", "", "", "nobly elegantly"]) + let v = native_list_append(v, ["adallicho", "adv", "adallicho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lioblicho", "adv", "lioblicho", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tageliches", "adv", "tageliches", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["manalihho", "adv", "manalihho", "", "", "", "manfully"]) + let v = native_list_append(v, ["aodlihho", "adv", "aodlihho", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿela", "adv", "ƿela", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["ƿestar", "adv", "ƿestar", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["thin", "det", "thin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["din", "det", "din", "", "", "", "your singular"]) + let v = native_list_append(v, ["mines", "det", "mines", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["diz", "det", "diz", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["manag", "det", "manag", "", "", "", "many"]) + let v = native_list_append(v, ["sinu", "det", "sinu", "", "", "", "strong masculine/neuter instrumental"]) + let v = native_list_append(v, ["dinem", "det", "dinem", "", "", "", "strong masculine/neuter/feminine dative"]) + let v = native_list_append(v, ["minem", "det", "minem", "", "", "", "strong masculine/neuter/feminine dative"]) + let v = native_list_append(v, ["minu", "det", "minu", "", "", "", "strong masculine/neuter instrumental"]) + let v = native_list_append(v, ["sinero", "det", "sinero", "", "", "", "inflection of sīn"]) + let v = native_list_append(v, ["dinu", "det", "dinu", "", "", "", "strong masculine/neuter instrumental"]) + let v = native_list_append(v, ["sinem", "det", "sinem", "", "", "", "strong masculine/neuter/feminine dative"]) + let v = native_list_append(v, ["un-", "other", "un-", "", "", "", "un- prefix of"]) + let v = native_list_append(v, ["ein", "other", "ein", "", "", "", "one"]) + let v = native_list_append(v, ["-in", "other", "-in", "", "", "", "used to create"]) + let v = native_list_append(v, ["-o", "other", "-o", "", "", "", "Forms adverbs from"]) + let v = native_list_append(v, ["theist", "other", "theist", "", "", "", "contraction of thaz"]) + let v = native_list_append(v, ["-i", "other", "-i", "", "", "", "productive suffix used"]) + let v = native_list_append(v, ["ahto", "other", "ahto", "", "", "", "eight"]) + let v = native_list_append(v, ["ain", "other", "ain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ki-", "other", "ki-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ur-", "other", "ur-", "", "", "", "thoroughly"]) + let v = native_list_append(v, ["zwene", "other", "zwene", "", "", "", "two"]) + let v = native_list_append(v, ["dri", "other", "dri", "", "", "", "three"]) + let v = native_list_append(v, ["zweinzug", "other", "zweinzug", "", "", "", "twenty"]) + let v = native_list_append(v, ["zwelif", "other", "zwelif", "", "", "", "twelve"]) + let v = native_list_append(v, ["einlif", "other", "einlif", "", "", "", "eleven"]) + let v = native_list_append(v, ["zehan", "other", "zehan", "", "", "", "ten"]) + let v = native_list_append(v, ["fimf", "other", "fimf", "", "", "", "five"]) + let v = native_list_append(v, ["sibun", "other", "sibun", "", "", "", "seven"]) + let v = native_list_append(v, ["sehs", "other", "sehs", "", "", "", "six"]) + let v = native_list_append(v, ["niun", "other", "niun", "", "", "", "nine"]) + let v = native_list_append(v, ["fior", "other", "fior", "", "", "", "four"]) + let v = native_list_append(v, ["dusunt", "other", "dusunt", "", "", "", "thousand"]) + let v = native_list_append(v, ["sin-", "other", "sin-", "", "", "", "ever- eternal-"]) + let v = native_list_append(v, ["-isc", "other", "-isc", "", "", "", "used to form"]) + let v = native_list_append(v, ["dritto", "other", "dritto", "", "", "", "third"]) + let v = native_list_append(v, ["-unga", "other", "-unga", "", "", "", "-ing suffix used"]) + let v = native_list_append(v, ["ka-", "other", "ka-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ur", "other", "-ur", "", "", "", "Suffix variant found"]) + let v = native_list_append(v, ["-ari", "other", "-ari", "", "", "", "used to form"]) + let v = native_list_append(v, ["gi-", "other", "gi-", "", "", "", "Used for forming"]) + let v = native_list_append(v, ["-ida", "other", "-ida", "", "", "", "used to form"]) + let v = native_list_append(v, ["-lih", "other", "-lih", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ohti", "other", "-ohti", "", "", "", "used to form"]) + let v = native_list_append(v, ["sami-", "other", "sami-", "", "", "", "half"]) + let v = native_list_append(v, ["-mēs", "other", "-mēs", "", "", "", "First person plural"]) + let v = native_list_append(v, ["anderhalb", "other", "anderhalb", "", "", "", "one and a"]) + let v = native_list_append(v, ["hadu-", "other", "hadu-", "", "", "", "war battle used"]) + let v = native_list_append(v, ["sēnonū", "other", "sēnonū", "", "", "", "behold"]) + let v = native_list_append(v, ["gasokun", "other", "gasokun", "", "", "", "romanization of ᚷᚨᛊᛟᚲᚢᚾ"]) + let v = native_list_append(v, ["houbit-", "other", "houbit-", "", "", "", "main head chief"]) + let v = native_list_append(v, ["tuem", "other", "tuem", "", "", "", "dative/instrumental of zwēne"]) + let v = native_list_append(v, ["willicumo", "other", "willicumo", "", "", "", "welcome"]) + return v +} + +fn vocab_goh_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_goh_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-got.el b/elp/src/vocabulary-got.el new file mode 100644 index 0000000..eced81d --- /dev/null +++ b/elp/src/vocabulary-got.el @@ -0,0 +1,9095 @@ +// vocabulary-got.el — Gothic vocabulary seed +// 9074 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 22911 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_got_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["𐌼𐌰𐌸𐌰", "noun", "𐌼𐌰𐌸𐌰", "", "", "", "maggot larva that"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐍃", "noun", "𐌷𐌿𐌽𐌳𐍉𐍃", "𐌷𐌿𐌽𐌳𐌹𐍃", "𐌷𐌿𐌽𐌳𐌰", "", "dog animal"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐍆𐍃", "noun", "𐍅𐌿𐌻𐍆𐍉𐍃", "𐍅𐌿𐌻𐍆𐌹𐍃", "𐍅𐌿𐌻𐍆𐌰", "", "wolf animal"]) + let v = native_list_append(v, ["𐌺𐌰𐍄𐌹𐌻𐍃", "noun", "𐌺𐌰𐍄𐌹𐌻𐍉𐍃", "𐌺𐌰𐍄𐌹𐌻𐌹𐍃", "𐌺𐌰𐍄𐌹𐌻𐌰", "", "kettle"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐌳𐌰", "noun", "𐍀𐌰𐌹𐌳𐍉𐍃", "𐍀𐌰𐌹𐌳𐍉𐍃", "𐍀𐌰𐌹𐌳𐌰𐌹", "", "cloak"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌰", "noun", "𐌲𐌿𐌼𐌰𐌽𐍃", "𐌲𐌿𐌼𐌹𐌽𐍃", "𐌲𐌿𐌼𐌹𐌽", "", "man"]) + let v = native_list_append(v, ["𐌰𐍈𐌰", "noun", "𐌰𐍈𐍉𐍃", "𐌰𐍈𐍉𐍃", "𐌰𐍈𐌰𐌹", "", "river"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰𐌽", "noun", "𐌰𐌺𐍂𐌰𐌽𐌰", "𐌰𐌺𐍂𐌰𐌽𐌹𐍃", "𐌰𐌺𐍂𐌰𐌽𐌰", "", "fruit"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂", "noun", "𐍃𐌹𐌻𐌿𐌱𐍂", "𐍃𐌹𐌻𐌿𐌱𐍂𐌹𐍃", "𐍃𐌹𐌻𐌿𐌱𐍂𐌰", "", "silver"]) + let v = native_list_append(v, ["𐍂𐌿𐌽𐌰", "noun", "𐍂𐌿𐌽𐍉𐍃", "𐍂𐌿𐌽𐍉𐍃", "𐍂𐌿𐌽𐌰𐌹", "", "secret mystery"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌿𐍃", "noun", "𐌰𐌲𐌲𐌹𐌻𐌾𐌿𐍃", "𐌰𐌲𐌲𐌹𐌻𐌰𐌿𐍃", "𐌰𐌲𐌲𐌹𐌻𐌰𐌿", "", "angel"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌽𐍉", "noun", "𐍃𐌿𐌽𐌽𐍉", "𐍃𐌿𐌽𐌽𐍉𐌽𐍃", "𐍃𐌿𐌽𐌽𐍉𐌽", "", "the Sun star"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄𐍃", "noun", "𐌽𐌰𐌷𐍄𐌴", "", "𐌽𐌰𐌷𐍄", "", "night"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐌰𐍂", "noun", "𐌱𐍂𐍉𐌸𐍂𐌾𐌿𐍃", "𐌱𐍂𐍉𐌸𐍂𐍃", "𐌱𐍂𐍉𐌸𐍂", "", "brother"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐌰𐍂", "noun", "𐍆𐌰𐌳𐍂𐌾𐌿𐍃", "𐍆𐌰𐌳𐍂𐍃", "𐍆𐌰𐌳𐍂", "", "father"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰", "noun", "𐌰𐍄𐍄𐌰𐌽𐍃", "𐌰𐍄𐍄𐌹𐌽𐍃", "𐌰𐍄𐍄𐌹𐌽", "", "father"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌷𐍄𐌰𐍂", "noun", "𐌳𐌰𐌿𐌷𐍄𐍂𐌾𐌿𐍃", "𐌳𐌰𐌿𐌷𐍄𐍂𐍃", "𐌳𐌰𐌿𐌷𐍄𐍂", "", "daughter"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐍂", "noun", "𐍄𐌰𐌲𐍂𐌰", "𐍄𐌰𐌲𐍂𐌹𐍃", "𐍄𐌰𐌲𐍂𐌰", "", "teardrop"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐍉", "noun", "𐌰𐌿𐌲𐍉𐌽𐌰", "𐌰𐌿𐌲𐌹𐌽𐍃", "𐌰𐌿𐌲𐌹𐌽", "", "eye"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐍃𐍄𐌰𐍂", "noun", "𐍃𐍅𐌹𐍃𐍄𐍂𐌾𐌿𐍃", "𐍃𐍅𐌹𐍃𐍄𐍂𐍃", "𐍃𐍅𐌹𐍃𐍄𐍂", "", "sister"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌳𐍃", "noun", "𐍅𐌹𐌽𐌳𐍉𐍃", "𐍅𐌹𐌽𐌳𐌹𐍃", "𐍅𐌹𐌽𐌳𐌰", "", "wind movement of"]) + let v = native_list_append(v, ["𐌾𐌿𐌺", "noun", "𐌾𐌿𐌺𐌰", "𐌾𐌿𐌺𐌹𐍃", "𐌾𐌿𐌺𐌰", "", "yoked pair of"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐍃", "noun", "𐌳𐌰𐌲𐍉𐍃", "𐌳𐌰𐌲𐌹𐍃", "𐌳𐌰𐌲𐌰", "", "day"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌿𐌺𐍃", "noun", "𐌼𐌹𐌻𐌿𐌺𐍃", "", "𐌼𐌹𐌻𐌿𐌺", "", "milk"]) + let v = native_list_append(v, ["𐍅𐌰𐍄𐍉", "noun", "𐍅𐌰𐍄𐌽𐌰", "𐍅𐌰𐍄𐌹𐌽𐍃", "𐍅𐌰𐍄𐌹𐌽", "", "water"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽", "noun", "𐌷𐌰𐌿𐍂𐌽𐌰", "𐌷𐌰𐌿𐍂𐌽𐌹𐍃", "𐌷𐌰𐌿𐍂𐌽𐌰", "", "horn"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐍉", "noun", "𐌵𐌹𐌽𐍉𐌽𐍃", "𐌵𐌹𐌽𐍉𐌽𐍃", "𐌵𐌹𐌽𐍉𐌽", "", "woman"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐍄𐍉", "noun", "𐌷𐌰𐌹𐍂𐍄𐍉𐌽𐌰", "𐌷𐌰𐌹𐍂𐍄𐌹𐌽𐍃", "𐌷𐌰𐌹𐍂𐍄𐌹𐌽", "", "heart"]) + let v = native_list_append(v, ["𐍆𐌿𐌲𐌻𐍃", "noun", "𐍆𐌿𐌲𐌻𐍉𐍃", "𐍆𐌿𐌲𐌻𐌹𐍃", "𐍆𐌿𐌲𐌻𐌰", "", "bird animal"]) + let v = native_list_append(v, ["𐌰𐍂𐌰", "noun", "𐌰𐍂𐌰𐌽𐍃", "𐌰𐍂𐌹𐌽𐍃", "𐌰𐍂𐌹𐌽", "", "eagle bird"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂", "noun", "𐍅𐌰𐌹𐍂𐍉𐍃", "𐍅𐌰𐌹𐍂𐌹𐍃", "𐍅𐌰𐌹𐍂𐌰", "", "man"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌰", "noun", "𐌼𐌰𐌽𐍃", "𐌼𐌰𐌽𐍃", "𐌼𐌰𐌽𐌽", "", "man"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸𐍃", "noun", "𐌻𐌹𐌿𐌳𐌴𐌹𐍃", "𐌻𐌹𐌿𐌳𐌹𐍃", "𐌻𐌹𐌿𐌳𐌰", "", "man"]) + let v = native_list_append(v, ["𐌰𐌱𐌰", "noun", "𐌰𐌱𐌰𐌽𐍃", "𐌰𐌱𐌹𐌽𐍃", "𐌰𐌱𐌹𐌽", "", "man husband"]) + let v = native_list_append(v, ["𐌰𐌲𐌹𐍃", "noun", "𐌰𐌲𐌹𐍃", "𐌰𐌲𐌹𐍃𐌹𐍃", "𐌰𐌲𐌹𐍃𐌰", "", "fear"]) + let v = native_list_append(v, ["𐌰𐌶𐌲𐍉", "noun", "𐌰𐌶𐌲𐍉𐌽𐍃", "𐌰𐌶𐌲𐍉𐌽𐍃", "𐌰𐌶𐌲𐍉𐌽", "", "ash"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂", "noun", "𐌱𐌰𐌿𐍂𐌴𐌹𐍃", "𐌱𐌰𐌿𐍂𐌹𐍃", "𐌱𐌰𐌿𐍂𐌰", "", "child"]) + let v = native_list_append(v, ["𐌲𐍂𐌰𐍃", "noun", "𐌲𐍂𐌰𐍃𐌰", "𐌲𐍂𐌰𐍃𐌹𐍃", "𐌲𐍂𐌰𐍃𐌰", "", "blade narrow leaf"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐌰", "noun", "𐌱𐍉𐌺𐍉𐍃", "𐌱𐍉𐌺𐍉𐍃", "𐌱𐍉𐌺𐌰𐌹", "", "any writing or"]) + let v = native_list_append(v, ["𐌰𐌹𐍈𐍃", "noun", "𐌰𐌹𐍈𐍉𐍃", "𐌰𐌹𐍈𐌹𐍃", "𐌰𐌹𐍈𐌰", "", "horse"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌷𐍃", "noun", "𐌼𐌰𐍂𐌷𐍉𐍃", "𐌼𐌰𐍂𐌷𐌹𐍃", "𐌼𐌰𐍂𐌷𐌰", "", "horse"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐍉", "noun", "𐌽𐌰𐌼𐌽𐌰", "𐌽𐌰𐌼𐌹𐌽𐍃", "𐌽𐌰𐌼𐌹𐌽", "", "name word or"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌸𐍃", "noun", "𐌼𐌿𐌽𐌸𐍉𐍃", "𐌼𐌿𐌽𐌸𐌹𐍃", "𐌼𐌿𐌽𐌸𐌰", "", "mouth"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰", "noun", "𐌸𐌹𐌿𐌳𐍉𐍃", "𐌸𐌹𐌿𐌳𐍉𐍃", "𐌸𐌹𐌿𐌳𐌰𐌹", "", "people tribe"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐌹𐌽", "noun", "𐍃𐍅𐌴𐌹𐌽𐌰", "𐍃𐍅𐌴𐌹𐌽𐌹𐍃", "𐍃𐍅𐌴𐌹𐌽𐌰", "", "pig animal Sus"]) + let v = native_list_append(v, ["𐍆𐍉𐌽", "noun", "𐍆𐍉𐌽", "𐍆𐌿𐌽𐌹𐌽𐍃", "𐍆𐌿𐌽𐌹𐌽", "", "fire chemical reaction"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌿", "noun", "𐍄𐍂𐌹𐍅𐌰", "𐍄𐍂𐌹𐍅𐌹𐍃", "𐍄𐍂𐌹𐍅𐌰", "", "piece of wood"]) + let v = native_list_append(v, ["𐌱𐌰𐌲𐌼𐍃", "noun", "𐌱𐌰𐌲𐌼𐍉𐍃", "𐌱𐌰𐌲𐌼𐌹𐍃", "𐌱𐌰𐌲𐌼𐌰", "", "tree large woody"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐍃", "noun", "𐍃𐍄𐌰𐌹𐌽𐍉𐍃", "𐍃𐍄𐌰𐌹𐌽𐌹𐍃", "𐍃𐍄𐌰𐌹𐌽𐌰", "", "stone"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐌻", "noun", "𐍄𐌰𐌲𐌻𐌰", "𐍄𐌰𐌲𐌻𐌹𐍃", "𐍄𐌰𐌲𐌻𐌰", "", "hair"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐍃", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌴", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌹𐍃", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳", "", "friend"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿𐍃", "noun", "𐍆𐍉𐍄𐌾𐌿𐍃", "𐍆𐍉𐍄𐌰𐌿𐍃", "𐍆𐍉𐍄𐌰𐌿", "", "foot"]) + let v = native_list_append(v, ["𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌹", "noun", "𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌾𐍉𐍃", "𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌾𐍉𐍃", "𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌾𐌰𐌹", "", "disease plague"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌻𐍃", "noun", "𐍃𐌹𐍄𐌻𐍉𐍃", "𐍃𐌹𐍄𐌻𐌹𐍃", "𐍃𐌹𐍄𐌻𐌰", "", "seat place in"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐍀", "noun", "𐍃𐌺𐌹𐍀𐌰", "𐍃𐌺𐌹𐍀𐌹𐍃", "𐍃𐌺𐌹𐍀𐌰", "", "boat"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌳𐌿𐍃", "noun", "𐍃𐌺𐌰𐌳𐌾𐌿𐍃", "𐍃𐌺𐌰𐌳𐌰𐌿𐍃", "𐍃𐌺𐌰𐌳𐌰𐌿", "", "shadow"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐍃", "noun", "𐍆𐌹𐍃𐌺𐍉𐍃", "𐍆𐌹𐍃𐌺𐌹𐍃", "𐍆𐌹𐍃𐌺𐌰", "", "fish animal"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌱𐌽𐌰", "noun", "𐍃𐍄𐌹𐌱𐌽𐍉𐍃", "𐍃𐍄𐌹𐌱𐌽𐍉𐍃", "𐍃𐍄𐌹𐌱𐌽𐌰𐌹", "", "voice"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐍃", "noun", "𐌷𐌰𐌽𐌳𐌾𐌿𐍃", "𐌷𐌰𐌽𐌳𐌰𐌿𐍃", "𐌷𐌰𐌽𐌳𐌰𐌿", "", "hand"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐍂𐌽𐍉", "noun", "𐍃𐍄𐌰𐌹𐍂𐌽𐍉𐌽𐍃", "𐍃𐍄𐌰𐌹𐍂𐌽𐍉𐌽𐍃", "𐍃𐍄𐌰𐌹𐍂𐌽𐍉𐌽", "", "star luminous celestial"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐍉𐍃", "noun", "𐌱𐍉𐌺𐍉𐍃", "", "", "", "inflection of 𐌱𐍉𐌺𐌰"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍆𐍃", "noun", "𐌷𐌻𐌰𐌹𐌱𐍉𐍃", "𐌷𐌻𐌰𐌹𐌱𐌹𐍃", "𐌷𐌻𐌰𐌹𐌱𐌰", "", "bread"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌰", "noun", "𐌰𐌹𐍂𐌸𐌰", "𐌰𐌹𐍂𐌸𐍉𐍃", "𐌰𐌹𐍂𐌸𐌰𐌹", "", "earth"]) + let v = native_list_append(v, ["𐌼𐌴𐌺𐌴𐌹𐍃", "noun", "𐌼𐌴𐌺𐌾𐍉𐍃", "𐌼𐌴𐌺𐌾𐌴", "𐌼𐌴𐌺𐌾𐌰", "", "sword"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐍃𐍄𐍂", "noun", "𐌰𐍅𐌹𐍃𐍄𐍂𐌰", "𐌰𐍅𐌹𐍃𐍄𐍂𐌹𐍃", "𐌰𐍅𐌹𐍃𐍄𐍂𐌰", "", "sheepfold enclosure for"]) + let v = native_list_append(v, ["𐍄𐌿𐌲𐌲𐍉", "noun", "𐍄𐌿𐌲𐌲𐍉𐌽𐍃", "𐍄𐌿𐌲𐌲𐍉𐌽𐍃", "𐍄𐌿𐌲𐌲𐍉𐌽", "", "tongue"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐍃", "noun", "𐌰𐌺𐍂𐍉𐍃", "𐌰𐌺𐍂𐌹𐍃", "𐌰𐌺𐍂𐌰", "", "field wide open"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌼𐌰", "noun", "𐌱𐌻𐍉𐌼𐌰𐌽𐍃", "𐌱𐌻𐍉𐌼𐌹𐌽𐍃", "𐌱𐌻𐍉𐌼𐌹𐌽", "", "lily flower in"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐍃", "noun", "𐌰𐍂𐌼𐌴𐌹𐍃", "𐌰𐍂𐌼𐌹𐍃", "𐌰𐍂𐌼𐌰", "", "arm"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌸𐍃", "noun", "𐍃𐌰𐌿𐌳𐌴𐌹𐍃", "𐍃𐌰𐌿𐌳𐌹𐍃", "𐍃𐌰𐌿𐌳𐌰", "", "sacrifice"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌿𐍃", "noun", "𐍃𐌿𐌽𐌾𐌿𐍃", "𐍃𐌿𐌽𐌰𐌿𐍃", "𐍃𐌿𐌽𐌰𐌿", "", "son"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌲𐍃", "noun", "𐌳𐌿𐌻𐌲𐍉𐍃", "𐌳𐌿𐌻𐌲𐌹𐍃", "𐌳𐌿𐌻𐌲𐌰", "", "debt"]) + let v = native_list_append(v, ["𐌼𐌰𐌸𐌻", "noun", "𐌼𐌰𐌸𐌻𐌰", "𐌼𐌰𐌸𐌻𐌹𐍃", "𐌼𐌰𐌸𐌻𐌰", "", "assembly especially an"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿", "noun", "𐍆𐌰𐌹𐌷𐌿", "𐍆𐌰𐌹𐌷𐌰𐌿𐍃", "𐍆𐌰𐌹𐌷𐌰𐌿", "", "property possessions"]) + let v = native_list_append(v, ["𐌺𐌽𐌹𐌿", "noun", "𐌺𐌽𐌹𐍅𐌰", "𐌺𐌽𐌹𐍅𐌹𐍃", "𐌺𐌽𐌹𐍅𐌰", "", "knee"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌹", "noun", "𐌰𐍂𐌱𐌾𐌰", "𐌰𐍂𐌱𐌾𐌹𐍃", "𐌰𐍂𐌱𐌾𐌰", "", "heritage inheritance"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌹𐌸", "noun", "𐌼𐌹𐌻𐌹𐌸", "𐌼𐌹𐌻𐌹𐌳𐌹𐍃", "𐌼𐌹𐌻𐌹𐌳𐌰", "", "honey sweet substance"]) + let v = native_list_append(v, ["𐌺𐌰𐌹𐍃𐌰𐍂", "noun", "𐌺𐌰𐌹𐍃𐌰𐍂", "𐌺𐌰𐌹𐍃𐌰𐍂𐌹𐍃", "𐌺𐌰𐌹𐍃𐌰𐍂𐌰", "", "Caesar emperor"]) + let v = native_list_append(v, ["𐌻𐌴𐌺𐌴𐌹𐍃", "noun", "𐌻𐌴𐌺𐌾𐍉𐍃", "𐌻𐌴𐌺𐌾𐌴", "𐌻𐌴𐌺𐌾𐌰", "", "doctor physician leech"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐍃", "noun", "𐌸𐌹𐍅𐍉𐍃", "𐌸𐌹𐍅𐌹𐍃", "𐌸𐌹𐍅𐌰", "", "servant"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍄𐍃", "noun", "𐌲𐌰𐌹𐍄𐍃", "", "", "", "goat animal"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌽𐌾𐍉", "noun", "𐌱𐍂𐌿𐌽𐌾𐍉𐌽𐍃", "𐌱𐍂𐌿𐌽𐌾𐍉𐌽𐍃", "𐌱𐍂𐌿𐌽𐌾𐍉𐌽", "", "breastplate"]) + let v = native_list_append(v, ["𐌿𐌻𐌱𐌰𐌽𐌳𐌿𐍃", "noun", "𐌿𐌻𐌱𐌰𐌽𐌳𐌾𐌿𐍃", "𐌿𐌻𐌱𐌰𐌽𐌳𐌰𐌿𐍃", "𐌿𐌻𐌱𐌰𐌽𐌳𐌰𐌿", "", "camel animal"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐍄𐌿𐍃", "noun", "𐌺𐌹𐌽𐍄𐌾𐌿𐍃", "𐌺𐌹𐌽𐍄𐌰𐌿𐍃", "𐌺𐌹𐌽𐍄𐌰𐌿", "", "small coin cent"]) + let v = native_list_append(v, ["𐌰𐍂𐌺𐌰", "noun", "𐌰𐍂𐌺𐍉𐍃", "𐌰𐍂𐌺𐍉𐍃", "𐌰𐍂𐌺𐌰𐌹", "", "ark"]) + let v = native_list_append(v, ["𐌰𐌺𐌴𐌹𐍄", "noun", "𐌰𐌺𐌴𐌹𐍄", "𐌰𐌺𐌴𐌹𐍄𐌹𐍃", "𐌰𐌺𐌴𐌹𐍄𐌰", "", "vinegar"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐌷𐍉", "noun", "𐍆𐌰𐌿𐌷𐍉𐌽𐍃", "𐍆𐌰𐌿𐌷𐍉𐌽𐍃", "𐍆𐌰𐌿𐌷𐍉𐌽", "", "fox animal"]) + let v = native_list_append(v, ["𐌰𐍅𐍉", "noun", "𐌰𐍅𐍉𐌽𐍃", "𐌰𐍅𐍉𐌽𐍃", "𐌰𐍅𐍉𐌽", "", "grandmother"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂", "noun", "𐌳𐌰𐌿𐍂𐌰", "𐌳𐌰𐌿𐍂𐌹𐍃", "𐌳𐌰𐌿𐍂𐌰", "", "door"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐌻𐍃", "noun", "𐍃𐍄𐌹𐌺𐌻𐍉𐍃", "𐍃𐍄𐌹𐌺𐌻𐌹𐍃", "𐍃𐍄𐌹𐌺𐌻𐌰", "", "beaker chalice goblet"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐍄𐍂𐌿𐍃", "noun", "𐍅𐌹𐌽𐍄𐍂𐌾𐌿𐍃", "𐍅𐌹𐌽𐍄𐍂𐌰𐌿𐍃", "𐍅𐌹𐌽𐍄𐍂𐌰𐌿", "", "winter fourth season"]) + let v = native_list_append(v, ["𐌰𐌷𐍃", "noun", "𐌰𐌷𐍃𐌰", "𐌰𐌷𐍃𐌹𐍃", "𐌰𐌷𐍃𐌰", "", "ear fruiting body"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍃", "noun", "𐌰𐌹𐌷𐍄𐌴𐌹𐍃", "𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "𐌰𐌹𐌷𐍄𐌰𐌹", "", "possessions property"]) + let v = native_list_append(v, ["𐌰𐌹𐌶", "noun", "𐌰𐌹𐌶", "𐌰𐌹𐌶𐌹𐍃", "𐌰𐌹𐌶𐌰", "", "brass bronze or"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐍃", "noun", "𐌰𐌹𐌸𐍉𐍃", "𐌰𐌹𐌸𐌹𐍃", "𐌰𐌹𐌸𐌰", "", "oath"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐍃", "noun", "𐌰𐌻𐌳𐌴𐌹𐍃", "𐌰𐌻𐌳𐌰𐌹𐍃", "𐌰𐌻𐌳𐌰𐌹", "", "generation age"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐍄𐍃", "noun", "𐌰𐌽𐍃𐍄𐌴𐌹𐍃", "𐌰𐌽𐍃𐍄𐌰𐌹𐍃", "𐌰𐌽𐍃𐍄𐌰𐌹", "", "grace beneficence favour"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌸𐍃", "noun", "𐌰𐍂𐌱𐌰𐌹𐌳𐌴𐌹𐍃", "𐌰𐍂𐌱𐌰𐌹𐌳𐌰𐌹𐍃", "𐌰𐍂𐌱𐌰𐌹𐌳𐌰𐌹", "", "labour work toil"]) + let v = native_list_append(v, ["𐌰𐌿𐍃𐍉", "noun", "𐌰𐌿𐍃𐍉𐌽𐌰", "𐌰𐌿𐍃𐌹𐌽𐍃", "𐌰𐌿𐍃𐌹𐌽", "", "ear"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌸", "noun", "𐌱𐌻𐍉𐌸", "𐌱𐌻𐍉𐌸𐌹𐍃", "𐌱𐌻𐍉𐌸𐌰", "", "blood"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐍃𐍄𐍃", "noun", "𐌱𐍂𐌿𐍃𐍄𐌴", "", "𐌱𐍂𐌿𐍃𐍄", "", "breast chest"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌸𐍃", "noun", "𐌱𐍂𐌿𐌳𐌴𐌹𐍃", "𐌱𐍂𐌿𐌳𐌰𐌹𐍃", "𐌱𐍂𐌿𐌳𐌰𐌹", "", "bride"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐍃", "noun", "𐌱𐌰𐌿𐍂𐌲𐌴", "", "𐌱𐌰𐌿𐍂𐌲", "", "castle fort"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐍃", "noun", "𐌳𐌰𐌹𐌻𐌴𐌹𐍃", "𐌳𐌰𐌹𐌻𐌰𐌹𐍃", "𐌳𐌰𐌹𐌻𐌰𐌹", "", "part portion"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐌰", "noun", "𐌳𐌰𐌹𐌻𐍉𐍃", "𐌳𐌰𐌹𐌻𐍉𐍃", "𐌳𐌰𐌹𐌻𐌰𐌹", "", "participation"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌿𐍃", "noun", "𐌳𐌰𐌿𐌸𐌾𐌿𐍃", "𐌳𐌰𐌿𐌸𐌰𐌿𐍃", "𐌳𐌰𐌿𐌸𐌰𐌿", "", "death"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍃", "noun", "𐌳𐌹𐌿𐌶𐌰", "𐌳𐌹𐌿𐌶𐌹𐍃", "𐌳𐌹𐌿𐌶𐌰", "", "wild animal beast"]) + let v = native_list_append(v, ["𐌳𐌴𐌸𐍃", "noun", "𐌳𐌴𐌳𐌴𐌹𐍃", "𐌳𐌴𐌳𐌰𐌹𐍃", "𐌳𐌴𐌳𐌰𐌹", "", "deed"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐍃", "noun", "𐌳𐍉𐌼𐍉𐍃", "𐌳𐍉𐌼𐌹𐍃", "𐌳𐍉𐌼𐌰", "", "judgement insight"]) + let v = native_list_append(v, ["𐍆𐌰𐌽𐌹", "noun", "𐍆𐌰𐌽𐌾𐌰", "𐍆𐌰𐌽𐌾𐌹𐍃", "𐍆𐌰𐌽𐌾𐌰", "", "clay mire"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐍃", "noun", "𐍆𐌹𐌾𐌰𐌽𐌳𐌴", "𐍆𐌹𐌾𐌰𐌽𐌳𐌹𐍃", "𐍆𐌹𐌾𐌰𐌽𐌳", "", "enemy foe"]) + let v = native_list_append(v, ["𐍆𐌹𐌲𐌲𐍂𐍃", "noun", "𐍆𐌹𐌲𐌲𐍂𐍉𐍃", "𐍆𐌹𐌲𐌲𐍂𐌹𐍃", "𐍆𐌹𐌲𐌲𐍂𐌰", "", "finger"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌰", "noun", "𐍆𐌿𐌻𐌰𐌽𐍃", "𐍆𐌿𐌻𐌹𐌽𐍃", "𐍆𐌿𐌻𐌹𐌽", "", "colt young male"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌲", "noun", "𐌳𐌿𐌻𐌲𐌰", "𐌳𐌿𐌻𐌲𐌹𐍃", "𐌳𐌿𐌻𐌲𐌰", "", "alternative reconstruction of"]) + let v = native_list_append(v, ["𐌵𐌴𐌽𐍃", "noun", "𐌵𐌴𐌽𐌴𐌹𐍃", "𐌵𐌴𐌽𐌰𐌹𐍃", "𐌵𐌴𐌽𐌰𐌹", "", "wife"]) + let v = native_list_append(v, ["𐌹𐍃", "noun", "𐌹𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽", "noun", "𐍅𐌹𐌻𐌾𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌸𐌿", "noun", "𐌻𐌴𐌹𐌸𐌿", "𐌻𐌴𐌹𐌸𐌰𐌿𐍃", "𐌻𐌴𐌹𐌸𐌰𐌿", "", "cider fermented drink"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐌻𐌳𐌿𐍃", "noun", "𐍃𐌺𐌹𐌻𐌳𐌾𐌿𐍃", "𐍃𐌺𐌹𐌻𐌳𐌰𐌿𐍃", "𐍃𐌺𐌹𐌻𐌳𐌰𐌿", "", "shield"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐍂𐌴𐍆𐍄𐍃", "noun", "𐌲𐌰𐌲𐍂𐌴𐍆𐍄𐌴𐌹𐍃", "𐌲𐌰𐌲𐍂𐌴𐍆𐍄𐌰𐌹𐍃", "𐌲𐌰𐌲𐍂𐌴𐍆𐍄𐌰𐌹", "", "decree"]) + let v = native_list_append(v, ["𐌰𐌲𐌿𐍃𐍄𐌿𐍃", "noun", "𐌰𐌲𐌿𐍃𐍄𐌿𐍃", "𐌰𐌲𐌿𐍃𐍄𐌰𐌿𐍃", "𐌰𐌲𐌿𐍃𐍄𐌰𐌿", "", "Augustus the Roman"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳𐍃", "noun", "𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳𐍃", "𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳𐌹𐍃", "𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳𐌰", "", "the inhabited world"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐍃", "noun", "𐌲𐌰𐍂𐌳𐌴𐌹𐍃", "𐌲𐌰𐍂𐌳𐌹𐍃", "𐌲𐌰𐍂𐌳𐌰", "", "yard court"]) + let v = native_list_append(v, ["𐌲𐌹𐌻𐍃𐍄𐍂𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐍃", "noun", "𐌲𐌹𐌻𐍃𐍄𐍂𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐍉𐍃", "𐌲𐌹𐌻𐍃𐍄𐍂𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌹𐌻𐍃𐍄𐍂𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐌰𐌹", "", "tax registration taxation"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐌳𐌹𐌽𐍃", "noun", "𐌺𐌹𐌽𐌳𐌹𐌽𐍉𐍃", "𐌺𐌹𐌽𐌳𐌹𐌽𐌹𐍃", "𐌺𐌹𐌽𐌳𐌹𐌽𐌰", "", "governor of the"]) + let v = native_list_append(v, ["𐍃𐍅𐍂𐌹𐌰", "noun", "𐍃𐍅𐍂𐌹𐌰", "", "", "", "Syria a geographic"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐍂", "noun", "𐍃𐌰𐌿𐍂𐌴𐌹𐍃", "𐍃𐌰𐌿𐍂𐌹𐍃", "𐍃𐌰𐌿𐍂𐌰", "", "Syrian"]) + let v = native_list_append(v, ["𐌺𐍅𐍂𐌴𐌹𐌽𐌰𐌹𐌿𐍃", "noun", "𐌺𐍅𐍂𐌴𐌹𐌽𐌰𐌹𐌿𐍃", "𐌺𐍅𐍂𐌴𐌹𐌽𐌰𐌹𐌰𐌿𐍃", "𐌺𐍅𐍂𐌴𐌹𐌽𐌰𐌹𐌰𐌿", "", "Quirinius or Cyrenius"]) + let v = native_list_append(v, ["𐌹𐍉𐍃𐌴𐍆", "noun", "𐌹𐍉𐍃𐌴𐍆", "𐌹𐍉𐍃𐌴𐍆𐌹𐍃", "𐌹𐍉𐍃𐌴𐍆𐌰", "", "Joseph"]) + let v = native_list_append(v, ["𐌽𐌰𐌶𐌰𐍂𐌰𐌹𐌸", "noun", "𐌽𐌰𐌶𐌰𐍂𐌰𐌹𐌸", "", "", "", "Nazareth the largest"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰", "noun", "𐍆𐍂𐌿𐌼𐌰", "", "", "", "beginning initial portion"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌹", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐌰𐌹", "", "thousand"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳", "noun", "𐌷𐌿𐌽𐌳𐌰", "𐌷𐌿𐌽𐌳𐌹𐍃", "𐌷𐌿𐌽𐌳𐌰", "", "hundred count of"]) + let v = native_list_append(v, ["𐌰𐌱𐌰𐌽", "noun", "𐌰𐌱𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌱𐌹𐌽", "noun", "𐌰𐌱𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌱𐌰𐌽𐍃", "noun", "𐌰𐌱𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌱𐌱𐌰", "noun", "𐌰𐌱𐌱𐌰", "", "", "", "father"]) + let v = native_list_append(v, ["𐌰𐌱𐌹𐌽𐍃", "noun", "𐌰𐌱𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌱𐌽𐌰𐌼", "noun", "𐌰𐌱𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌱𐌽𐌴", "noun", "𐌰𐌱𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌰𐌼", "noun", "𐌰𐍆𐌰𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌰", "noun", "𐌰𐍆𐌰𐍂𐌰𐌽𐍃", "𐌰𐍆𐌰𐍂𐌹𐌽𐍃", "𐌰𐍆𐌰𐍂𐌹𐌽", "", "descendant"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌳𐌰𐌲𐌰", "noun", "𐌰𐍆𐌰𐍂𐌳𐌰𐌲𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌳𐌰𐌲𐍃", "noun", "𐌰𐍆𐌰𐍂𐌳𐌰𐌲𐍉𐍃", "𐌰𐍆𐌰𐍂𐌳𐌰𐌲𐌹𐍃", "𐌰𐍆𐌰𐍂𐌳𐌰𐌲𐌰", "", "morrow next day"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰", "noun", "𐌱𐌰𐌹𐍂𐌰𐌽𐍃", "𐌱𐌰𐌹𐍂𐌹𐌽𐍃", "𐌱𐌰𐌹𐍂𐌹𐌽", "", "bear"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌱𐌰𐌹", "noun", "𐌷𐌰𐌻𐌱𐌰𐌹", "", "", "", "aspect any specific"]) + let v = native_list_append(v, ["𐍅𐌹𐍃", "noun", "𐍅𐌹𐍃𐌰", "𐍅𐌹𐍃𐌹𐍃", "𐍅𐌹𐍃𐌰", "", "calm of sea"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳", "noun", "𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐍃", "noun", "𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐍃", "", "", "", "baptist baptizer"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "noun", "𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌹𐌽", "noun", "𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌷𐍄", "noun", "𐌳𐌰𐌿𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "noun", "𐍄𐍂𐌹𐌲𐌲𐍅𐍉𐍃", "𐍄𐍂𐌹𐌲𐌲𐍅𐍉𐍃", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌹", "", "pledge covenant testament"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐍉𐍃", "noun", "𐍄𐍂𐌹𐌲𐌲𐍅𐍉𐍃", "", "", "", "inflection of 𐍄𐍂𐌹𐌲𐌲𐍅𐌰"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽", "noun", "𐌱𐌰𐍂𐌽𐌰", "𐌱𐌰𐍂𐌽𐌹𐍃", "𐌱𐌰𐍂𐌽𐌰", "", "child"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃", "noun", "𐌱𐌰𐍂𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌰", "noun", "𐌱𐌰𐍂𐌽𐌰", "", "", "", "inflection of 𐌱𐌰𐍂𐌽"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌴", "noun", "𐌱𐌰𐍂𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌰𐌼", "noun", "𐌱𐌰𐍂𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳", "noun", "𐍅𐌰𐌿𐍂𐌳𐌰", "𐍅𐌰𐌿𐍂𐌳𐌹𐍃", "𐍅𐌰𐌿𐍂𐌳𐌰", "", "word"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌳𐌴𐌹𐍃", "noun", "𐌷𐌰𐌹𐍂𐌳𐌾𐍉𐍃", "𐌷𐌰𐌹𐍂𐌳𐌾𐌴", "𐌷𐌰𐌹𐍂𐌳𐌾𐌰", "", "herdsman a person"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰", "noun", "𐌲𐌹𐌱𐍉𐍃", "𐌲𐌹𐌱𐍉𐍃", "𐌲𐌹𐌱𐌰𐌹", "", "gift"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌹", "noun", "𐌺𐌿𐌽𐌾𐌰", "𐌺𐌿𐌽𐌾𐌹𐍃", "𐌺𐌿𐌽𐌾𐌰", "", "kin family race"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐍉𐍃", "noun", "𐌲𐌹𐌱𐍉𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌹", "noun", "𐌲𐌹𐌱𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐌹", "noun", "𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐌱𐌰𐌽𐌳𐌾𐌰𐌹", "", "fetter"]) + let v = native_list_append(v, ["𐌼𐌰𐍅𐌹", "noun", "𐌼𐌰𐌿𐌾𐍉𐍃", "𐌼𐌰𐌿𐌾𐍉𐍃", "𐌼𐌰𐌿𐌾𐌰𐌹", "", "girl lass"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍃", "noun", "𐌲𐌰𐍃𐍄𐌴𐌹𐍃", "𐌲𐌰𐍃𐍄𐌹𐍃", "𐌲𐌰𐍃𐍄𐌰", "", "guest"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐍃", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐍉𐍃", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌰𐌹", "", "teaching doctrine"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌹𐍃", "noun", "𐍅𐌰𐌿𐍂𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌰", "noun", "𐍅𐌰𐌿𐍂𐌳𐌰", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌳"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌴", "noun", "𐍅𐌰𐌿𐍂𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌰𐌼", "noun", "𐍅𐌰𐌿𐍂𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌳𐌾𐍉𐍃", "noun", "𐌷𐌰𐌹𐍂𐌳𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌳𐌾𐌰𐌽𐍃", "noun", "𐌷𐌰𐌹𐍂𐌳𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌳𐌾𐌰𐌼", "noun", "𐌷𐌰𐌹𐍂𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌾𐌹𐍃", "noun", "𐌺𐌿𐌽𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌾𐌰", "noun", "𐌺𐌿𐌽𐌾𐌰", "", "", "", "inflection of 𐌺𐌿𐌽𐌹"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐌾𐌰", "noun", "𐌱𐌰𐌽𐌳𐌾𐌰𐌽𐍃", "𐌱𐌰𐌽𐌳𐌾𐌹𐌽𐍃", "𐌱𐌰𐌽𐌳𐌾𐌹𐌽", "", "prisoner"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "noun", "𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "", "", "", "inflection of 𐌱𐌰𐌽𐌳𐌹"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "noun", "𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐌾𐌰", "noun", "𐌼𐌰𐌿𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐌾𐍉𐍃", "noun", "𐌼𐌰𐌿𐌾𐍉𐍃", "", "", "", "inflection of 𐌼𐌰𐍅𐌹"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐌾𐌰𐌹", "noun", "𐌼𐌰𐌿𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄", "noun", "𐌲𐌰𐍃𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌴𐌹𐍃", "noun", "𐌲𐌰𐍃𐍄𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌹𐌽𐍃", "noun", "𐌲𐌰𐍃𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌹𐌼", "noun", "𐌲𐌰𐍃𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌰𐌹", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐍉", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌹𐌼", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐌰", "noun", "𐍃𐌻𐌴𐍀𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀", "noun", "𐍃𐌻𐌴𐍀", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐌴𐌻𐌹𐌺𐌽", "noun", "𐌺𐌴𐌻𐌹𐌺𐌽𐌰", "𐌺𐌴𐌻𐌹𐌺𐌽𐌹𐍃", "𐌺𐌴𐌻𐌹𐌺𐌽𐌰", "", "tower"]) + let v = native_list_append(v, ["𐌻𐌿𐌺𐌰𐍂𐌽", "noun", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰", "𐌻𐌿𐌺𐌰𐍂𐌽𐌹𐍃", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰", "", "lamp light"]) + let v = native_list_append(v, ["𐌺𐍂𐌴𐌺𐍃", "noun", "𐌺𐍂𐌴𐌺𐍉𐍃", "𐌺𐍂𐌴𐌺𐌹𐍃", "𐌺𐍂𐌴𐌺𐌰", "", "Greek person"]) + let v = native_list_append(v, ["𐌰𐌽𐌽𐍉", "noun", "𐌰𐌽𐌽𐍉𐌽𐍃", "𐌰𐌽𐌽𐍉𐌽𐍃", "𐌰𐌽𐌽𐍉𐌽", "", "income of a"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐌺𐌾𐌿𐍃", "noun", "𐌰𐌿𐍂𐌺𐌾𐌴𐌹𐍃", "𐌰𐌿𐍂𐌺𐌾𐌰𐌿𐍃", "𐌰𐌿𐍂𐌺𐌾𐌰𐌿", "", "jug"]) + let v = native_list_append(v, ["𐍃𐌿𐌻𐌾𐌰", "noun", "𐍃𐌿𐌻𐌾𐍉𐍃", "𐍃𐌿𐌻𐌾𐍉𐍃", "𐍃𐌿𐌻𐌾𐌰𐌹", "", "sole of a"]) + let v = native_list_append(v, ["𐍃𐍄𐍂𐌹𐌺𐍃", "noun", "𐍃𐍄𐍂𐌹𐌺𐌴𐌹𐍃", "𐍃𐍄𐍂𐌹𐌺𐌹𐍃", "𐍃𐍄𐍂𐌹𐌺𐌰", "", "line stroke"]) + let v = native_list_append(v, ["𐌸𐍉𐌼𐌰𐍃", "noun", "𐌸𐍉𐌼𐌰𐍃", "", "", "", "Thomas the Biblical"]) + let v = native_list_append(v, ["𐍄𐌴𐌹𐌼𐌰𐌿𐌸𐌰𐌹𐌿𐍃", "noun", "𐍄𐌴𐌹𐌼𐌰𐌿𐌸𐌰𐌹𐌿𐍃", "𐍄𐌴𐌹𐌼𐌰𐌿𐌸𐌰𐌹𐌰𐌿𐍃", "𐍄𐌴𐌹𐌼𐌰𐌿𐌸𐌰𐌹𐌰𐌿", "", "Timothy the Biblical"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌻𐌰𐌿𐌼𐍉𐌽", "noun", "𐍃𐌰𐌿𐌻𐌰𐌿𐌼𐍉𐌽", "𐍃𐌰𐌿𐌻𐌰𐌿𐌼𐍉𐌽𐌹𐍃", "", "", "Solomon the Biblical"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌼𐍉𐌽", "noun", "𐍃𐌴𐌹𐌼𐍉𐌽", "𐍃𐌴𐌹𐌼𐍉𐌽𐌹𐍃", "𐍃𐌴𐌹𐌼𐍉𐌽𐌰", "", "Simon the Biblical"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐍄𐍂𐌿𐍃", "noun", "𐍀𐌰𐌹𐍄𐍂𐌿𐍃", "𐍀𐌰𐌹𐍄𐍂𐌰𐌿𐍃", "𐍀𐌰𐌹𐍄𐍂𐌰𐌿", "", "Peter the Biblical"]) + let v = native_list_append(v, ["𐍀𐌰𐍅𐌻𐌿𐍃", "noun", "𐍀𐌰𐍅𐌻𐌿𐍃", "𐍀𐌰𐍅𐌻𐌰𐌿𐍃", "", "", "Paul the Biblical"]) + let v = native_list_append(v, ["𐌼𐍉𐍃𐌴𐍃", "noun", "𐌼𐍉𐍃𐌴𐍃", "𐌼𐍉𐍃𐌴𐌶𐌹𐍃", "𐌼𐍉𐍃𐌴", "", "Moses the Biblical"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌾𐌰", "noun", "𐌼𐌰𐍂𐌾𐌰", "𐌼𐌰𐍂𐌾𐌹𐌽𐍃", "𐌼𐌰𐍂𐌾𐌹𐌽", "", "Mary the Biblical"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌺𐌿𐍃", "noun", "𐌼𐌰𐍂𐌺𐌿𐍃", "𐌼𐌰𐍂𐌺𐌰𐌿𐍃", "𐌼𐌰𐍂𐌺𐌰𐌿", "", "Mark the Biblical"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌸𐌰", "noun", "𐌼𐌰𐍂𐌸𐌰", "𐌼𐌰𐍂𐌸𐌹𐌽𐍃", "𐌼𐌰𐍂𐌸𐌹𐌽", "", "Martha the Biblical"]) + let v = native_list_append(v, ["𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃", "noun", "𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃", "𐌹𐍉𐌷𐌰𐌽𐌽𐌹𐍃", "𐌹𐍉𐌷𐌰𐌽𐌽𐌴", "", "John the Biblical"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐍂𐌹𐌴𐌻", "noun", "𐌲𐌰𐌱𐍂𐌹𐌴𐌻", "", "", "", "Gabriel the Biblical"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌹𐍀𐍀𐌿𐍃", "noun", "𐍆𐌹𐌻𐌹𐍀𐍀𐌿𐍃", "𐍆𐌹𐌻𐌹𐍀𐍀𐌰𐌿𐍃", "𐍆𐌹𐌻𐌹𐍀𐍀𐌰𐌿", "", "Philip the Biblical"]) + let v = native_list_append(v, ["𐌳𐌰𐍅𐌴𐌹𐌳", "noun", "𐌳𐌰𐍅𐌴𐌹𐌳", "𐌳𐌰𐍅𐌴𐌹𐌳𐌹𐍃", "", "", "David the Biblical"]) + let v = native_list_append(v, ["𐌰𐌽𐌽𐌰", "noun", "𐌰𐌽𐌽𐌰", "", "", "", "Anna the Biblical"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐍃", "noun", "𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐍃", "𐌰𐌽𐌳𐍂𐌰𐌹𐌹𐌽𐍃", "𐌰𐌽𐌳𐍂𐌰𐌹𐌹𐌽", "", "Andrew the Biblical"]) + let v = native_list_append(v, ["𐌰𐌹𐌻𐌴𐌹𐍃𐌰𐌱𐌰𐌹𐌸", "noun", "𐌰𐌹𐌻𐌴𐌹𐍃𐌰𐌱𐌰𐌹𐌸", "", "", "", "Elizabeth the Biblical"]) + let v = native_list_append(v, ["𐌰𐌱𐍂𐌰𐌷𐌰𐌼", "noun", "𐌰𐌱𐍂𐌰𐌷𐌰𐌼", "𐌰𐌱𐍂𐌰𐌷𐌰𐌼𐌹𐍃", "𐌰𐌱𐍂𐌰𐌷𐌰𐌼𐌰", "", "Abraham the Biblical"]) + let v = native_list_append(v, ["𐌼𐌴𐌲𐍃", "noun", "𐌼𐌴𐌲𐍉𐍃", "𐌼𐌴𐌲𐌹𐍃", "𐌼𐌴𐌲𐌰", "", "son-in-law"]) + let v = native_list_append(v, ["𐌼𐌴𐌽𐍉𐌸𐍃", "noun", "𐌼𐌴𐌽𐍉𐌸𐌴", "", "𐌼𐌴𐌽𐍉𐌸", "", "month period into"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌴𐌹", "noun", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽𐍃", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽𐍃", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽", "", "multitude especially of"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐍄𐌹𐌲𐌰𐍂𐌳𐍃", "noun", "𐌰𐌿𐍂𐍄𐌹𐌲𐌰𐍂𐌳𐌴𐌹𐍃", "𐌰𐌿𐍂𐍄𐌹𐌲𐌰𐍂𐌳𐌹𐍃", "𐌰𐌿𐍂𐍄𐌹𐌲𐌰𐍂𐌳𐌰", "", "orchard garden"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐍄𐌹𐌲𐌰𐍂𐌳𐌰", "noun", "𐌰𐌿𐍂𐍄𐌹𐌲𐌰𐍂𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌸", "noun", "𐌲𐌿𐌳𐌰", "𐌲𐌿𐌳𐌹𐍃", "𐌲𐌿𐌳𐌰", "", "god deity"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼", "noun", "𐍆𐍂𐌿𐌼𐌰", "𐍆𐍂𐌿𐌼𐌹𐍃", "𐍆𐍂𐌿𐌼𐌰", "", "beginning"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐍃", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐍉𐍃", "𐌸𐌹𐌿𐌳𐌰𐌽𐌹𐍃", "𐌸𐌹𐌿𐌳𐌰𐌽𐌰", "", "king"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌹𐌻", "noun", "𐍃𐌰𐌿𐌹𐌻", "", "", "", "the Sun star"]) + let v = native_list_append(v, ["𐌻𐌰𐌽𐌳", "noun", "𐌻𐌰𐌽𐌳𐌰", "𐌻𐌰𐌽𐌳𐌹𐍃", "𐌻𐌰𐌽𐌳𐌰", "", "land"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍃", "noun", "𐍅𐌴𐌹𐌷𐍃𐌰", "𐍅𐌴𐌹𐌷𐍃𐌹𐍃", "𐍅𐌴𐌹𐌷𐍃𐌰", "", "village"]) + let v = native_list_append(v, ["𐍅𐌴𐌷𐍃𐌰", "noun", "𐍅𐌴𐌷𐍃𐌰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍃𐌹𐍃", "noun", "𐍅𐌴𐌹𐌷𐍃𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍃𐌰", "noun", "𐍅𐌴𐌹𐌷𐍃𐌰", "", "", "", "inflection of 𐍅𐌴𐌹𐌷𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽", "noun", "𐌰𐌻𐌾𐌰𐌽𐌰", "𐌰𐌻𐌾𐌰𐌽𐌹𐍃", "𐌰𐌻𐌾𐌰𐌽𐌰", "", "eagerness zeal"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌲𐌺", "noun", "𐌳𐍂𐌰𐌲𐌲𐌺𐌰", "𐌳𐍂𐌰𐌲𐌲𐌺𐌹𐍃", "𐌳𐍂𐌰𐌲𐌲𐌺𐌰", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌲𐌺𐌰", "noun", "𐌳𐍂𐌰𐌲𐌲𐌺𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌿", "noun", "𐌰𐌲𐌲𐌹𐌻𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌰𐌿", "noun", "𐌰𐌲𐌲𐌹𐌻𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌿𐌽𐍃", "noun", "𐌰𐌲𐌲𐌹𐌻𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌴", "noun", "𐌰𐌲𐌲𐌹𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌿𐌼", "noun", "𐌰𐌲𐌲𐌹𐌻𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌾𐌿𐍃", "noun", "𐌰𐌲𐌲𐌹𐌻𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌴𐌹𐍃", "noun", "𐌰𐌲𐌲𐌹𐌻𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌴𐌻𐌴", "noun", "𐌰𐌲𐌲𐌴𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌴𐌻𐌿𐍃", "noun", "𐌰𐌲𐌲𐌴𐌻𐌾𐌿𐍃", "𐌰𐌲𐌲𐌴𐌻𐌰𐌿𐍃", "𐌰𐌲𐌲𐌴𐌻𐌰𐌿", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌴𐌻𐌿", "noun", "𐌰𐌲𐌲𐌴𐌻𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌴𐌻𐌾𐌿𐍃", "noun", "𐌰𐌲𐌲𐌴𐌻𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌻𐌿", "noun", "𐌷𐌰𐌻𐌻𐌿", "", "", "", "accusative of 𐌷𐌰𐌻𐌻𐌿𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌻𐌿𐍃", "noun", "𐌷𐌰𐌻𐌻𐌾𐌿𐍃", "𐌷𐌰𐌻𐌻𐌰𐌿𐍃", "𐌷𐌰𐌻𐌻𐌰𐌿", "", "rock stone"]) + let v = native_list_append(v, ["𐍆𐌿𐌽𐌹𐌽𐍃", "noun", "𐍆𐌿𐌽𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌿𐌽𐌹𐌽", "noun", "𐍆𐌿𐌽𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽", "noun", "𐍅𐌴𐌹𐌽", "𐍅𐌴𐌹𐌽𐌹𐍃", "𐍅𐌴𐌹𐌽𐌰", "", "wine"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳", "noun", "𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳𐌹𐍃", "noun", "𐌼𐌹𐌳𐌾𐌿𐌽𐌲𐌰𐍂𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳", "noun", "𐌲𐌰𐍂𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌹𐍃", "noun", "𐌲𐌰𐍂𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌰", "noun", "𐌲𐌰𐍂𐌳𐌰𐌽𐍃", "𐌲𐌰𐍂𐌳𐌹𐌽𐍃", "𐌲𐌰𐍂𐌳𐌹𐌽", "", "pen enclosure for"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌹𐌽𐍃", "noun", "𐌲𐌰𐍂𐌳𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌹𐌼", "noun", "𐌲𐌰𐍂𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐍉𐍃", "noun", "𐍆𐌹𐍃𐌺𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐌰𐌽𐍃", "noun", "𐍆𐌹𐍃𐌺𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐌴", "noun", "𐍆𐌹𐍃𐌺𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐌰𐌼", "noun", "𐍆𐌹𐍃𐌺𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌳𐌹𐌽𐌰𐌽𐌸𐍃", "noun", "𐍆𐌰𐍂𐌳𐌹𐌽𐌰𐌽𐌸𐍃", "𐍆𐌰𐍂𐌳𐌹𐌽𐌰𐌽𐌸𐌹𐍃", "𐍆𐌰𐍂𐌳𐌹𐌽𐌰𐌽𐌸𐌰", "", "a male given"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰", "noun", "𐍅𐌴𐌹𐌷𐌰𐌽𐍃", "𐍅𐌴𐌹𐌷𐌹𐌽𐍃", "𐍅𐌴𐌹𐌷𐌹𐌽", "", "priest"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐍃", "noun", "𐌷𐌰𐌹𐌼𐍉𐍃", "𐌷𐌰𐌹𐌼𐌰𐌹𐍃", "𐌷𐌰𐌹𐌼𐌰𐌹", "", "village"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌰𐌽𐍃", "noun", "𐌳𐌰𐌲𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐍆𐍃", "noun", "𐌸𐌹𐌿𐌱𐍉𐍃", "𐌸𐌹𐌿𐌱𐌹𐍃", "𐌸𐌹𐌿𐌱𐌰", "", "thief"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌸𐌹𐍃", "noun", "𐌱𐌻𐍉𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌸𐌰", "noun", "𐌱𐌻𐍉𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐍄𐍂𐌿", "noun", "𐍅𐌹𐌽𐍄𐍂𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐍄𐍂𐌰𐌿", "noun", "𐍅𐌹𐌽𐍄𐍂𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐍄𐍂𐌿𐌽𐍃", "noun", "𐍅𐌹𐌽𐍄𐍂𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐍄𐍂𐌹𐍅𐌴", "noun", "𐍅𐌹𐌽𐍄𐍂𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌲𐍃", "noun", "𐍅𐌰𐌲𐌲𐍉𐍃", "𐍅𐌰𐌲𐌲𐌹𐍃", "𐍅𐌰𐌲𐌲𐌰", "", "paradise"]) + let v = native_list_append(v, ["𐌲𐌿𐌻𐌸", "noun", "𐌲𐌿𐌻𐌸", "𐌲𐌿𐌻𐌸𐌹𐍃", "𐌲𐌿𐌻𐌸𐌰", "", "gold"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐍃", "noun", "𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐍃", "𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌰", "", "soldier warrior"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "noun", "𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍃", "noun", "𐌲𐌰𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐍃", "noun", "𐍂𐌴𐌹𐌺𐌴", "𐍂𐌴𐌹𐌺𐌹𐍃", "𐍂𐌴𐌹𐌺", "", "ruler lord"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌴", "noun", "𐍂𐌴𐌹𐌺𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺", "noun", "𐍂𐌴𐌹𐌺", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌽𐍃", "noun", "𐌻𐌹𐌱𐌰𐌹𐌽𐌴𐌹𐍃", "𐌻𐌹𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "𐌻𐌹𐌱𐌰𐌹𐌽𐌰𐌹", "", "life"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰", "noun", "𐌰𐌷𐌼𐌰𐌽𐍃", "𐌰𐌷𐌼𐌹𐌽𐍃", "𐌰𐌷𐌼𐌹𐌽", "", "spirit ghost"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌴𐌹𐍃", "noun", "𐌰𐌽𐌳𐌾𐍉𐍃", "𐌰𐌽𐌳𐌾𐌴", "𐌰𐌽𐌳𐌾𐌰", "", "end final point"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍄𐍃", "noun", "𐍅𐌰𐌹𐌷𐍄𐌴𐌹𐍃", "𐍅𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "𐍅𐌰𐌹𐌷𐍄𐌰𐌹", "", "thing"]) + let v = native_list_append(v, ["𐌼𐌴𐌽𐌰", "noun", "𐌼𐌴𐌽𐌰𐌽𐍃", "𐌼𐌴𐌽𐌹𐌽𐍃", "𐌼𐌴𐌽𐌹𐌽", "", "the Moon sole"]) + let v = native_list_append(v, ["𐌰𐍃𐍄𐍃", "noun", "𐌰𐍃𐍄𐍉𐍃", "𐌰𐍃𐍄𐌹𐍃", "𐌰𐍃𐍄𐌰", "", "branch woody part"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌸𐍃", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌸𐍃", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹𐍃", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹", "", "the world human"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌸𐍂", "noun", "𐌼𐌰𐌿𐍂𐌸𐍂𐌰", "𐌼𐌰𐌿𐍂𐌸𐍂𐌹𐍃", "𐌼𐌰𐌿𐍂𐌸𐍂𐌰", "", "murder"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍃𐍄𐌴𐌹", "noun", "𐌸𐌰𐌿𐍂𐍃𐍄𐌴𐌹𐌽𐍃", "𐌸𐌰𐌿𐍂𐍃𐍄𐌴𐌹𐌽𐍃", "𐌸𐌰𐌿𐍂𐍃𐍄𐌴𐌹𐌽", "", "thirst"]) + let v = native_list_append(v, ["𐌰𐍆𐌴𐍄𐌾𐌰", "noun", "𐌰𐍆𐌴𐍄𐌾𐌰𐌽𐍃", "𐌰𐍆𐌴𐍄𐌾𐌹𐌽𐍃", "𐌰𐍆𐌴𐍄𐌾𐌹𐌽", "", "an eater glutton"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄", "noun", "𐌰𐍆𐌻𐌴𐍄𐌰", "𐌰𐍆𐌻𐌴𐍄𐌹𐍃", "𐌰𐍆𐌻𐌴𐍄𐌰", "", "remission forgiveness"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰", "noun", "𐌰𐍆𐌻𐌴𐍄𐌰", "", "", "", "inflection of 𐌰𐍆𐌻𐌴𐍄"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍃", "noun", "𐌰𐍆𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍉𐍃", "𐌰𐍆𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐍆𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹", "", "deceitfulness"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌰𐍆𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐍃𐌰𐌱𐌱𐌰𐍄𐌴", "noun", "𐌰𐍆𐌰𐍂𐍃𐌰𐌱𐌱𐌰𐍄𐌴", "", "", "", "only used in"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐍃 𐌰𐍆𐌰𐍂𐍃𐌰𐌱𐌱𐌰𐍄𐌴", "noun", "𐌳𐌰𐌲𐍃 𐌰𐍆𐌰𐍂𐍃𐌰𐌱𐌱𐌰𐍄𐌴", "", "", "", "Sunday the first"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌴𐌹𐌽𐍃", "noun", "𐌰𐍆𐌳𐍉𐌼𐌴𐌹𐌽𐍉𐍃", "𐌰𐍆𐌳𐍉𐌼𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐍆𐌳𐍉𐌼𐌴𐌹𐌽𐌰𐌹", "", "condemnation"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌴𐌹𐌽𐌰𐌹", "noun", "𐌰𐍆𐌳𐍉𐌼𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍂𐌿𐌲𐌺𐌾𐌰", "noun", "𐌰𐍆𐌳𐍂𐌿𐌲𐌺𐌾𐌰𐌽𐍃", "𐌰𐍆𐌳𐍂𐌿𐌲𐌺𐌾𐌹𐌽𐍃", "𐌰𐍆𐌳𐍂𐌿𐌲𐌺𐌾𐌹𐌽", "", "drunkard winebibber"]) + let v = native_list_append(v, ["𐌳𐌰𐌻", "noun", "𐌳𐌰𐌻𐌰", "𐌳𐌰𐌻𐌹𐍃", "𐌳𐌰𐌻𐌰", "", "valley"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌻𐌿𐍃", "noun", "𐌰𐍃𐌹𐌻𐌾𐌿𐍃", "𐌰𐍃𐌹𐌻𐌰𐌿𐍃", "𐌰𐍃𐌹𐌻𐌰𐌿", "", "donkey animal"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐍃𐌰", "noun", "𐌰𐌿𐌷𐍃𐌽𐌾𐌿𐍃", "𐌰𐌿𐌷𐍃𐌰𐌿𐍃?", "𐌰𐌿𐌷𐍃𐌰𐌿", "", "ox neat adult"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌰", "noun", "𐍆𐍂𐌰𐌿𐌾𐌰𐌽𐍃", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍃", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽", "", "lord"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌿𐌲𐌹", "noun", "𐌰𐌽𐌳𐌰𐌿𐌲𐌾𐌰", "𐌰𐌽𐌳𐌰𐌿𐌲𐌴𐌹𐍃", "𐌰𐌽𐌳𐌰𐌿𐌲𐌾𐌰", "", "countenance face"]) + let v = native_list_append(v, ["𐍅𐌰𐌼𐌱𐌰", "noun", "𐍅𐌰𐌼𐌱𐍉𐍃", "𐍅𐌰𐌼𐌱𐍉𐍃", "𐍅𐌰𐌼𐌱𐌰𐌹", "", "womb"]) + let v = native_list_append(v, ["𐍅𐌰𐌳𐌳𐌾𐌿𐍃", "noun", "𐍅𐌰𐌳𐌳𐌾𐌾𐌿𐍃", "𐍅𐌰𐌳𐌳𐌾𐌰𐌿𐍃", "𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "", "wall"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽", "noun", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰", "𐌴𐌹𐍃𐌰𐍂𐌽𐌹𐍃", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰", "", "iron"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽𐌰", "noun", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰", "", "", "", "inflection of 𐌴𐌹𐍃𐌰𐍂𐌽"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌸𐍃", "noun", "𐍃𐍄𐌰𐌳𐌴𐌹𐍃", "𐍃𐍄𐌰𐌳𐌹𐍃", "𐍃𐍄𐌰𐌳𐌰", "", "place location site"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌹", "noun", "𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌾𐌰", "𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌾𐌹𐍃", "𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌾𐌰", "", "evening"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐍃", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐍉𐍃", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐍃", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰", "", "servant minister"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰𐌽𐍃", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰𐌼", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌹𐍃", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰", "", "service ministry"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌼", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰", "", "", "", "inflection of 𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴𐌹𐍃", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐍉𐍃", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌼𐌰", "noun", "𐍃𐍄𐍉𐌼𐌰𐌽𐍃", "𐍃𐍄𐍉𐌼𐌹𐌽𐍃", "𐍃𐍄𐍉𐌼𐌹𐌽", "", "substantial grounds just"]) + let v = native_list_append(v, ["𐍃𐌹𐌳𐌿𐍃", "noun", "𐍃𐌹𐌳𐌾𐌿𐍃", "𐍃𐌹𐌳𐌰𐌿𐍃", "𐍃𐌹𐌳𐌰𐌿", "", "custom habit"]) + let v = native_list_append(v, ["𐍃𐌴𐌸𐍃", "noun", "𐍃𐌴𐌳𐌴𐌹𐍃", "𐍃𐌴𐌳𐌰𐌹𐍃", "𐍃𐌴𐌳𐌰𐌹", "", "seed"]) + let v = native_list_append(v, ["𐍃𐍅𐌿𐌼𐍆𐍃𐌻", "noun", "𐍃𐍅𐌿𐌼𐍆𐍃𐌻𐌰", "𐍃𐍅𐌿𐌼𐍆𐍃𐌻𐌹𐍃", "𐍃𐍅𐌿𐌼𐍆𐍃𐌻𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐌳𐌿𐌱𐍉", "noun", "𐌳𐌿𐌱𐍉𐌽𐍃", "𐌳𐌿𐌱𐍉𐌽𐍃", "𐌳𐌿𐌱𐍉𐌽", "", "dove"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐍃", "noun", "𐌷𐌹𐌼𐌹𐌽𐍉𐍃", "𐌷𐌹𐌼𐌹𐌽𐌹𐍃", "𐌷𐌹𐌼𐌹𐌽𐌰", "", "heaven"]) + let v = native_list_append(v, ["𐌽𐌰𐌵𐌰𐌳𐌴𐌹", "noun", "𐌽𐌰𐌵𐌰𐌳𐌴𐌹𐌽𐍃", "𐌽𐌰𐌵𐌰𐌳𐌴𐌹𐌽𐍃", "𐌽𐌰𐌵𐌰𐌳𐌴𐌹𐌽", "", "nudity nakedness"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌾𐌹𐍃", "noun", "𐌷𐌰𐍂𐌾𐍉𐍃", "𐌷𐌰𐍂𐌾𐌴", "𐌷𐌰𐍂𐌾𐌰", "", "army"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐍃", "noun", "𐍅𐌹𐌲𐍉𐍃", "𐍅𐌹𐌲𐌹𐍃", "𐍅𐌹𐌲𐌰", "", "road"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐍃", "noun", "𐍃𐌺𐌰𐌻𐌺𐍉𐍃", "𐍃𐌺𐌰𐌻𐌺𐌹𐍃", "𐍃𐌺𐌰𐌻𐌺𐌰", "", "slave"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍆𐍃", "noun", "𐌻𐌰𐌿𐌱𐍉𐍃", "𐌻𐌰𐌿𐌱𐌹𐍃", "𐌻𐌰𐌿𐌱𐌰", "", "leaf part of"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐍂𐍃", "noun", "𐌻𐌹𐌲𐍂𐍉𐍃", "𐌻𐌹𐌲𐍂𐌹𐍃", "𐌻𐌹𐌲𐍂𐌰", "", "bed"]) + let v = native_list_append(v, ["𐌰𐌺𐍂", "noun", "𐌰𐌺𐍂", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰", "noun", "𐌰𐌺𐍂𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍃𐍄𐍉𐍃", "noun", "𐌰𐍃𐍄𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐍃𐍄𐌰𐌽𐍃", "noun", "𐌰𐍃𐍄𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐍃𐍄𐌴", "noun", "𐌰𐍃𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌹", "noun", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌰", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌹𐍃", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌰", "", "authority power"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌳𐌰", "noun", "𐍂𐌰𐌶𐌳𐍉𐍃", "𐍂𐌰𐌶𐌳𐍉𐍃", "𐍂𐌰𐌶𐌳𐌰𐌹", "", "tongue"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌰𐌼", "noun", "𐌳𐌰𐌲𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌴", "noun", "𐌳𐌰𐌲𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐍉𐍃", "noun", "𐌳𐌰𐌲𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌰", "noun", "𐌳𐌰𐌲𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌹𐍃", "noun", "𐌳𐌰𐌲𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌲", "noun", "𐌳𐌰𐌲", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐍂𐌿𐌽𐌳𐌹𐌸𐌰", "noun", "𐌰𐍆𐌲𐍂𐌿𐌽𐌳𐌹𐌸𐍉𐍃", "𐌰𐍆𐌲𐍂𐌿𐌽𐌳𐌹𐌸𐍉𐍃", "𐌰𐍆𐌲𐍂𐌿𐌽𐌳𐌹𐌸𐌰𐌹", "", "the deep abyss"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌿𐌳𐌴𐌹𐌽", "noun", "𐌰𐍆𐌲𐌿𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌿𐌳𐌴𐌹", "noun", "𐌰𐍆𐌲𐌿𐌳𐌴𐌹𐌽𐍃", "𐌰𐍆𐌲𐌿𐌳𐌴𐌹𐌽𐍃", "𐌰𐍆𐌲𐌿𐌳𐌴𐌹𐌽", "", "ungodliness"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "noun", "𐌰𐍆𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌴𐌹𐌽𐍃", "noun", "𐌰𐍆𐌻𐌰𐌲𐌴𐌹𐌽𐍉𐍃", "𐌰𐍆𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐍆𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "", "remission"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌿", "noun", "𐌵𐌹𐌸𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽𐌰", "noun", "𐌰𐌻𐌾𐌰𐌽𐌰", "", "", "", "inflection of 𐌰𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐍂𐌰", "noun", "𐍄𐌰𐌲𐍂𐌰", "", "", "", "inflection of 𐍄𐌰𐌲𐍂"]) + let v = native_list_append(v, ["𐍆𐌴𐍂𐌰", "noun", "𐍆𐌴𐍂𐍉𐍃", "𐍆𐌴𐍂𐍉𐍃", "𐍆𐌴𐍂𐌰𐌹", "", "side flank part"]) + let v = native_list_append(v, ["𐌰𐌲𐌹𐍃𐌹𐍃", "noun", "𐌰𐌲𐌹𐍃𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌹𐍃𐌰", "noun", "𐌰𐌲𐌹𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌶𐌲𐍉𐌽", "noun", "𐌰𐌶𐌲𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰𐌽", "noun", "𐌰𐌷𐌼𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌹𐌽𐍃", "noun", "𐌰𐌷𐌼𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌹𐌽", "noun", "𐌰𐌷𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰𐌽𐍃", "noun", "𐌰𐌷𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰𐌽𐌴", "noun", "𐌰𐌷𐌼𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰𐌼", "noun", "𐌰𐌷𐌼𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐍃𐌰", "noun", "𐌰𐌷𐍃𐌰", "", "", "", "inflection of 𐌰𐌷𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐌹𐌽𐍃", "noun", "𐌰𐌹𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐍄𐌰", "noun", "𐌲𐌿𐍄𐌰𐌽𐍃", "𐌲𐌿𐍄𐌹𐌽𐍃", "𐌲𐌿𐍄𐌹𐌽", "", "a Goth"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌹𐍃", "noun", "𐌰𐌹𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌰", "noun", "𐌰𐌹𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌰𐌽𐍃", "noun", "𐌰𐌹𐌸𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌴", "noun", "𐌰𐌹𐌸𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌰𐌹", "noun", "𐌰𐌹𐍂𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐍉𐍃", "noun", "𐌰𐌹𐍂𐌸𐍉𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌺𐌴𐌹𐍄𐌹𐍃", "noun", "𐌰𐌺𐌴𐌹𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰𐌽𐌹𐍃", "noun", "𐌰𐌺𐍂𐌰𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰𐌽𐌰", "noun", "𐌰𐌺𐍂𐌰𐌽𐌰", "", "", "", "inflection of 𐌰𐌺𐍂𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰𐌽𐌴", "noun", "𐌰𐌺𐍂𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰𐌽𐌰𐌼", "noun", "𐌰𐌺𐍂𐌰𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳", "noun", "𐌰𐌻𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐌰𐌹𐍃", "noun", "𐌰𐌻𐌳𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐌰𐌹", "noun", "𐌰𐌻𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐌹𐌽𐍃", "noun", "𐌰𐌻𐌳𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐌴", "noun", "𐌰𐌻𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐌹𐌼", "noun", "𐌰𐌻𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌾𐌰", "noun", "𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌾𐌰", "", "", "", "inflection of 𐌰𐌽𐌳𐌰𐌽𐌰𐌷𐍄𐌹"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌹", "noun", "𐌰𐌽𐌳𐌹", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌾𐌰", "noun", "𐌰𐌽𐌳𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌾𐌰𐌼", "noun", "𐌰𐌽𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌽𐍉𐌼", "noun", "𐌰𐌽𐌽𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐍄", "noun", "𐌰𐌽𐍃𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐍄𐌰𐌹𐍃", "noun", "𐌰𐌽𐍃𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐍄𐌰𐌹", "noun", "𐌰𐌽𐍃𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐌹𐌽𐍃", "noun", "𐌰𐌿𐌲𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐌹𐌽", "noun", "𐌰𐌿𐌲𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐌰𐌼", "noun", "𐌰𐌿𐌲𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐍉𐌽𐌰", "noun", "𐌰𐌿𐌲𐍉𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐌺𐌾𐌴", "noun", "𐌰𐌿𐍂𐌺𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍂𐌰𐌽𐍃", "noun", "𐌰𐍂𐌰𐌽𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌰𐌹", "noun", "𐌰𐍂𐌱𐌰𐌹𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌴", "noun", "𐌰𐍂𐌱𐌰𐌹𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌼", "noun", "𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌾𐌰", "noun", "𐌰𐍂𐌱𐌾𐌰𐌽𐍃", "𐌰𐍂𐌱𐌾𐌹𐌽𐍃", "𐌰𐍂𐌱𐌾𐌹𐌽", "", "heir"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰", "noun", "𐌰𐍂𐌼𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌹𐌽𐍃", "noun", "𐌰𐍂𐌼𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌻𐌿", "noun", "𐌰𐍃𐌹𐌻𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌻𐌰𐌿𐍃", "noun", "𐌰𐍃𐌹𐌻𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌽", "noun", "𐌰𐍄𐍄𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌽𐍃", "noun", "𐌰𐍄𐍄𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌽", "noun", "𐌰𐍄𐍄𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌽𐍃", "noun", "𐌰𐍄𐍄𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌽𐌴", "noun", "𐌰𐍄𐍄𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌼", "noun", "𐌰𐍄𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐍃𐍄𐍂𐌹𐍃", "noun", "𐌰𐍅𐌹𐍃𐍄𐍂𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍅𐍉𐌽", "noun", "𐌰𐍅𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐍈𐍉", "noun", "𐌰𐍈𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍈𐍉𐍃", "noun", "𐌰𐍈𐍉𐍃", "", "", "", "inflection of 𐌰𐍈𐌰"]) + let v = native_list_append(v, ["𐌰𐍈𐌰𐌹", "noun", "𐌰𐍈𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐌽", "noun", "𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐌽", "", "", "", "accusative of 𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍂𐌰𐌹𐌹𐌽𐍃", "noun", "𐌰𐌽𐌳𐍂𐌰𐌹𐌹𐌽𐍃", "", "", "", "genitive of 𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍂𐌰𐌹𐌹𐌽", "noun", "𐌰𐌽𐌳𐍂𐌰𐌹𐌹𐌽", "", "", "", "dative of 𐌰𐌽𐌳𐍂𐌰𐌹𐌰𐍃"]) + let v = native_list_append(v, ["𐌰𐌱𐍂𐌰𐌷𐌰𐌼𐌹𐍃", "noun", "𐌰𐌱𐍂𐌰𐌷𐌰𐌼𐌹𐍃", "", "", "", "genitive of 𐌰𐌱𐍂𐌰𐌷𐌰𐌼"]) + let v = native_list_append(v, ["𐌰𐌱𐍂𐌰𐌷𐌰𐌼𐌰", "noun", "𐌰𐌱𐍂𐌰𐌷𐌰𐌼𐌰", "", "", "", "dative of 𐌰𐌱𐍂𐌰𐌷𐌰𐌼"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌰𐍆𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌰𐍄𐌴𐌹𐌽𐍃", "noun", "𐌰𐍆𐍃𐌰𐍄𐌴𐌹𐌽𐍉𐍃", "𐌰𐍆𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐍆𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹", "", "divorce"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌰𐍃𐍃", "noun", "𐌰𐍆𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "𐌰𐍆𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "𐌰𐍆𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "", "apostasy"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "noun", "𐌰𐍆𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐍂𐌰𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐌰𐍆𐍄𐍂𐌰𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐍂𐌰𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐌰𐍆𐍄𐍂𐌰𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "𐌰𐍆𐍄𐍂𐌰𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐍆𐍄𐍂𐌰𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "revival renewal"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐌹𐌻𐌻𐌰𐌿", "noun", "𐌰𐌲𐌲𐌹𐌻𐌻𐌰𐌿", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐍅𐌹𐌸𐌰", "noun", "𐌰𐌲𐌲𐍅𐌹𐌸𐍉𐍃", "𐌰𐌲𐌲𐍅𐌹𐌸𐍉𐍃", "𐌰𐌲𐌲𐍅𐌹𐌸𐌰𐌹", "", "distress anguish affliction"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐍅𐌹𐌸𐍉𐌼", "noun", "𐌰𐌲𐌲𐍅𐌹𐌸𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐍅𐌹𐌸𐌰𐌹", "noun", "𐌰𐌲𐌲𐍅𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍄𐌴𐌹𐌽", "noun", "𐌲𐌰𐌹𐍄𐌴𐌹𐌽𐌰", "𐌲𐌰𐌹𐍄𐌴𐌹𐌽𐌹𐍃", "𐌲𐌰𐌹𐍄𐌴𐌹𐌽𐌰", "", "kid young goat"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌴𐌹", "noun", "𐌰𐌹𐌸𐌴𐌹𐌽𐍃", "𐌰𐌹𐌸𐌴𐌹𐌽𐍃", "𐌰𐌹𐌸𐌴𐌹𐌽", "", "mother"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺", "noun", "𐌻𐌴𐌹𐌺𐌰", "𐌻𐌴𐌹𐌺𐌹𐍃", "𐌻𐌴𐌹𐌺𐌰", "", "body"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌸", "noun", "𐍅𐌹𐍄𐍉𐌳𐌰", "𐍅𐌹𐍄𐍉𐌳𐌹𐍃", "𐍅𐌹𐍄𐍉𐌳𐌰", "", "law"]) + let v = native_list_append(v, ["𐌷𐍉𐍂𐍃", "noun", "𐌷𐍉𐍂𐍉𐍃", "𐌷𐍉𐍂𐌹𐍃", "𐌷𐍉𐍂𐌰", "", "adulterer fornicator whoremonger"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍅", "noun", "𐌷𐌻𐌰𐌹𐍅𐌰", "𐌷𐌻𐌰𐌹𐍅𐌹𐍃", "𐌷𐌻𐌰𐌹𐍅𐌰", "", "tomb grave"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐍃", "noun", "𐌽𐌰𐍅𐌴𐌹𐍃", "𐌽𐌰𐍅𐌹𐍃", "𐌽𐌰𐍅𐌰", "", "dead person corpse"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸", "noun", "𐍅𐌰𐌹𐍂𐌸𐌰", "𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "𐍅𐌰𐌹𐍂𐌸𐌰", "", "worth value"]) + let v = native_list_append(v, ["𐍂𐌰𐌱𐌱𐌴𐌹", "noun", "𐍂𐌰𐌱𐌱𐌴𐌹", "", "", "", "rabbi teacher"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌴𐌹𐍃", "noun", "𐍃𐌹𐍀𐍉𐌽𐌾𐍉𐍃", "𐍃𐌹𐍀𐍉𐌽𐌾𐌴", "𐍃𐌹𐍀𐍉𐌽𐌾𐌰", "", "follower disciple student"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰", "noun", "𐍈𐌴𐌹𐌻𐍉𐍃", "𐍈𐌴𐌹𐌻𐍉𐍃", "𐍈𐌴𐌹𐌻𐌰𐌹", "", "an hour"]) + let v = native_list_append(v, ["𐌹𐌴𐍃𐌿𐍃", "noun", "𐌹𐌴𐍃𐌿𐍃", "𐌹𐌴𐍃𐌿𐌹𐍃", "𐌹𐌴𐍃𐌿", "", "Jesus"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴", "noun", "𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽𐍃", "𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽𐍃", "𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽", "", "a letter correspondence"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌿𐍃", "noun", "𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌾𐌿𐍃", "𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌰𐌿𐍃", "𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "", "city wall"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌿𐍃", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐍃", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌰𐌿𐍃", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌰𐌿", "", "apostle"]) + let v = native_list_append(v, ["𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌿𐍃", "noun", "𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌾𐌿𐍃", "𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌰𐌿𐍃", "𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "", "foundation low wall"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌹", "noun", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌹", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "", "peace"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌲𐌰𐍂𐌳𐌹𐍅𐌰𐌳𐌳𐌾𐌿𐍃", "noun", "𐌼𐌹𐌳𐌲𐌰𐍂𐌳𐌹𐍅𐌰𐌳𐌳𐌾𐌾𐌿𐍃", "𐌼𐌹𐌳𐌲𐌰𐍂𐌳𐌹𐍅𐌰𐌳𐌳𐌾𐌰𐌿𐍃", "𐌼𐌹𐌳𐌲𐌰𐍂𐌳𐌹𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "", "a middle wall"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌲𐌰𐍂𐌳𐌹𐍅𐌰𐌳𐌳𐌾𐌿", "noun", "𐌼𐌹𐌳𐌲𐌰𐍂𐌳𐌹𐍅𐌰𐌳𐌳𐌾𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐍃", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿𐍃", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿", "", "prophet"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐍃", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰", "𐌲𐌰𐌻𐌹𐌿𐌲𐌹𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰", "", "a lie falsehood"]) + let v = native_list_append(v, ["𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌿", "noun", "𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "noun", "𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌰𐌿𐍃", "noun", "𐌱𐌰𐌿𐍂𐌲𐍃𐍅𐌰𐌳𐌳𐌾𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "noun", "𐌲𐍂𐌿𐌽𐌳𐌿𐍅𐌰𐌳𐌳𐌾𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐌰", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐌰𐌽𐍃", "𐌿𐌽𐌷𐌿𐌻𐌸𐌹𐌽𐍃", "𐌿𐌽𐌷𐌿𐌻𐌸𐌹𐌽", "", "devil demon evil"]) + let v = native_list_append(v, ["ᚱᚨᚾᛃᚨ", "noun", "ᚱᚨᚾᛃᚨ", "", "", "", "something which causes"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐌾𐌰𐌽𐍃", "noun", "𐍆𐌹𐍃𐌺𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐌾𐌰", "noun", "𐍆𐌹𐍃𐌺𐌾𐌰𐌽𐍃", "𐍆𐌹𐍃𐌺𐌾𐌹𐌽𐍃", "𐍆𐌹𐍃𐌺𐌾𐌹𐌽", "", "fisherman"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌸𐌹", "noun", "𐌷𐌰𐌹𐌸𐌾𐍉𐍃", "𐌷𐌰𐌹𐌸𐌾𐍉𐍃", "𐌷𐌰𐌹𐌸𐌾𐌰𐌹", "", "field land area"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌸𐌾𐍉𐍃", "noun", "𐌷𐌰𐌹𐌸𐌾𐍉𐍃", "", "", "", "inflection of 𐌷𐌰𐌹𐌸𐌹"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌸𐌾𐌰𐌹", "noun", "𐌷𐌰𐌹𐌸𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "", "belief faith"]) + let v = native_list_append(v, ["𐌲𐌿𐌸𐌰", "noun", "𐌲𐌿𐌸𐌰", "", "", "", "inflection of 𐌲𐌿𐌸"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌻𐍃", "noun", "𐍃𐍄𐍉𐌻𐍉𐍃", "𐍃𐍄𐍉𐌻𐌹𐍃", "𐍃𐍄𐍉𐌻𐌰", "", "chair"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌻𐌰𐌼", "noun", "𐍃𐍄𐍉𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌷𐍃", "noun", "𐌰𐌻𐌷𐌴", "", "𐌰𐌻𐌷", "", "temple"]) + let v = native_list_append(v, ["𐌰𐌻𐌷", "noun", "𐌰𐌻𐌷", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌽𐍃", "noun", "𐍃𐌹𐌿𐌽𐌴𐌹𐍃", "𐍃𐌹𐌿𐌽𐌰𐌹𐍃", "𐍃𐌹𐌿𐌽𐌰𐌹", "", "face"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌽𐌰𐌹", "noun", "𐍃𐌹𐌿𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌽", "noun", "𐍃𐌹𐌿𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌽𐌹𐌽𐍃", "noun", "𐍃𐌹𐌿𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌹𐌳𐍅𐌴𐌹𐍄", "noun", "𐌹𐌳𐍅𐌴𐌹𐍄", "𐌹𐌳𐍅𐌴𐌹𐍄𐌹𐍃", "𐌹𐌳𐍅𐌴𐌹𐍄𐌰", "", "shame disgrace"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌸𐍃", "noun", "𐌼𐌰𐌲𐌰𐌸𐌴𐌹𐍃", "𐌼𐌰𐌲𐌰𐌸𐌰𐌹𐍃", "𐌼𐌰𐌲𐌰𐌸𐌰𐌹", "", "girl maiden"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌸𐌰𐌹𐍃", "noun", "𐌼𐌰𐌲𐌰𐌸𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌸𐌰𐌹", "noun", "𐌼𐌰𐌲𐌰𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌸𐌴𐌹𐌽", "noun", "𐌼𐌰𐌲𐌰𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌸𐌴𐌹", "noun", "𐌼𐌰𐌲𐌰𐌸𐌴𐌹𐌽𐍃", "𐌼𐌰𐌲𐌰𐌸𐌴𐌹𐌽𐍃", "𐌼𐌰𐌲𐌰𐌸𐌴𐌹𐌽", "", "virginity"]) + let v = native_list_append(v, ["𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉", "noun", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽𐍃", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽𐍃", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽", "", "congregation church"]) + let v = native_list_append(v, ["𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽", "noun", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽𐍃", "noun", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉"]) + let v = native_list_append(v, ["𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽𐍉", "noun", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌼", "noun", "𐌰𐌹𐌺𐌺𐌻𐌴𐍃𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌴𐌹𐌽𐍃", "noun", "𐌲𐍉𐌻𐌴𐌹𐌽𐍉𐍃", "𐌲𐍉𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐍉𐌻𐌴𐌹𐌽𐌰𐌹", "", "greeting salute"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "government"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌰𐌿𐌻𐌿𐍃", "noun", "𐌳𐌹𐌰𐌱𐌰𐌿𐌻𐌾𐌿𐍃", "𐌳𐌹𐌰𐌱𐌰𐌿𐌻𐌰𐌿𐍃", "𐌳𐌹𐌰𐌱𐌰𐌿𐌻𐌰𐌿", "", "devil"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐍃", "noun", "𐌼𐌰𐌷𐍄𐌴𐌹𐍃", "𐌼𐌰𐌷𐍄𐌰𐌹𐍃", "𐌼𐌰𐌷𐍄𐌰𐌹", "", "might power ability"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐍄𐍃", "noun", "𐌻𐌹𐍃𐍄𐌴𐌹𐍃", "𐌻𐌹𐍃𐍄𐌰𐌹𐍃", "𐌻𐌹𐍃𐍄𐌰𐌹", "", "a cunning plan"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌽", "noun", "𐌻𐌴𐌹𐌽𐌰", "𐌻𐌴𐌹𐌽𐌹𐍃", "𐌻𐌴𐌹𐌽𐌰", "", "linen"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌸𐌽𐍉", "noun", "𐌷𐌰𐌹𐌸𐌽𐍉𐌽𐍃", "𐌷𐌰𐌹𐌸𐌽𐍉𐌽𐍃", "𐌷𐌰𐌹𐌸𐌽𐍉𐌽", "", "a female heathen"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐌰", "noun", "𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐍉𐍃", "𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐍉𐍃", "𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐌰𐌹", "", "love affection"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌴𐌹𐌽", "noun", "𐌰𐌹𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌴𐌹𐌽𐍃", "noun", "𐌰𐌹𐌸𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐌸𐌴𐌹"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌹𐍃", "noun", "𐌷𐌰𐍄𐌹𐌶𐌰", "𐌷𐌰𐍄𐌹𐌶𐌹𐍃", "𐌷𐌰𐍄𐌹𐌶𐌰", "", "hate wrath"]) + let v = native_list_append(v, ["𐍃𐌴𐌻𐌴𐌹", "noun", "𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "𐍃𐌴𐌻𐌴𐌹𐌽", "", "goodness gentleness kindness"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌰𐌸𐍅𐌰", "noun", "𐍆𐍂𐌹𐌰𐌸𐍅𐍉𐍃", "𐍆𐍂𐌹𐌰𐌸𐍅𐍉𐍃", "𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌽𐍉", "noun", "𐌺𐌰𐌿𐍂𐌽𐍉𐌽𐌰", "𐌺𐌰𐌿𐍂𐌽𐌹𐌽𐍃", "𐌺𐌰𐌿𐍂𐌽𐌹𐌽", "", "kernel single seed"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌽", "noun", "𐌺𐌰𐌿𐍂𐌽", "𐌺𐌰𐌿𐍂𐌽𐌹𐍃", "𐌺𐌰𐌿𐍂𐌽𐌰", "", "corn grain harvested"]) + let v = native_list_append(v, ["𐌰𐌻𐍃", "noun", "𐌰𐌻𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐌺𐌾𐌰", "noun", "𐍆𐌰𐍃𐌺𐌾𐌰𐌽𐍃", "𐍆𐌰𐍃𐌺𐌾𐌹𐌽𐍃", "𐍆𐌰𐍃𐌺𐌾𐌹𐌽", "", "a bandage strip"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐌺𐌾𐌰𐌼", "noun", "𐍆𐌰𐍃𐌺𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐍂𐌺𐌰𐍂𐌰", "noun", "𐌺𐌰𐍂𐌺𐌰𐍂𐍉𐍃", "𐌺𐌰𐍂𐌺𐌰𐍂𐍉𐍃", "𐌺𐌰𐍂𐌺𐌰𐍂𐌰𐌹", "", "dungeon prison"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌺𐍄𐌾𐍉", "noun", "𐌻𐌰𐌹𐌺𐍄𐌾𐍉", "", "", "", "a reading a"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌻𐌾𐍉", "noun", "𐍃𐌹𐌲𐌻𐌾𐍉𐌽𐌰", "𐍃𐌹𐌲𐌻𐌾𐌹𐌽𐍃", "𐍃𐌹𐌲𐌻𐌾𐌹𐌽", "", "seal on a"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌼", "noun", "𐌷𐌹𐌼𐌹𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰", "noun", "𐌷𐌹𐌼𐌹𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌹𐍃", "noun", "𐌷𐌹𐌼𐌹𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌴", "noun", "𐌷𐌹𐌼𐌹𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽", "noun", "𐌷𐌹𐌼𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌽𐍃", "noun", "𐌷𐌹𐌼𐌹𐌽𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰", "noun", "𐍅𐌹𐌻𐌾𐌰𐌽𐍃", "𐍅𐌹𐌻𐌾𐌹𐌽𐍃", "𐍅𐌹𐌻𐌾𐌹𐌽", "", "will desire"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍆", "noun", "𐌷𐌻𐌰𐌹𐍆", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌰", "noun", "𐍃𐌺𐌿𐌻𐌰𐌽𐍃", "𐍃𐌺𐌿𐌻𐌹𐌽𐍃", "𐍃𐌺𐌿𐌻𐌹𐌽", "", "a debtor"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌰𐌽𐍃", "noun", "𐍃𐌺𐌿𐌻𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌰𐌼", "noun", "𐍃𐌺𐌿𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌰𐌽𐌴", "noun", "𐍃𐌺𐌿𐌻𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌹", "noun", "𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐍉𐍃", "𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐍉𐍃", "𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐌰𐌹", "", "temptation"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐌰𐌹", "noun", "𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐍉𐍃", "noun", "𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐍉𐍃", "", "", "", "inflection of 𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌹"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐌰", "noun", "𐍆𐍂𐌰𐌹𐍃𐍄𐌿𐌱𐌽𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌹", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐍃", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐍃", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌹", "", "kingdom"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌿𐍃", "noun", "𐍅𐌿𐌻𐌸𐌿𐍃", "𐍅𐌿𐌻𐌸𐌰𐌿𐍃", "𐍅𐌿𐌻𐌸𐌰𐌿", "", "glory"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐍃", "noun", "𐌰𐌹𐍅𐌴𐌹𐍃", "𐌰𐌹𐍅𐌹𐍃", "𐌰𐌹𐍅𐌰", "", "a lifetime eternity"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐌽𐍃", "noun", "𐌰𐌹𐍅𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐌽𐌰", "noun", "𐌽𐌰𐌼𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐌽𐌴", "noun", "𐌽𐌰𐌼𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐌽𐌰𐌼", "noun", "𐌽𐌰𐌼𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐌹𐌽", "noun", "𐌽𐌰𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐌹𐌽𐍃", "noun", "𐌽𐌰𐌼𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌿𐌽𐍃", "noun", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌿", "noun", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "noun", "𐌸𐌹𐌿𐌳𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐍃", "noun", "𐍅𐌹𐌻𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌹𐌽𐍃", "noun", "𐍅𐌹𐌻𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌹𐌽", "noun", "𐍅𐌹𐌻𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐌹𐍃", "noun", "𐌷𐌻𐌰𐌹𐌱𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐌰", "noun", "𐌷𐌻𐌰𐌹𐌱𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐍉𐍃", "noun", "𐌷𐌻𐌰𐌹𐌱𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐌰𐌽𐍃", "noun", "𐌷𐌻𐌰𐌹𐌱𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐌴", "noun", "𐌷𐌻𐌰𐌹𐌱𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐌰𐌼", "noun", "𐌷𐌻𐌰𐌹𐌱𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐍃", "noun", "𐍂𐌹𐌵𐌹𐍃", "𐍂𐌹𐌵𐌹𐌶𐌹𐍃", "𐍂𐌹𐌵𐌹𐌶𐌰", "", "darkness"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶", "noun", "𐍂𐌹𐌵𐌹𐌶", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌹𐍉𐌽", "noun", "𐌰𐍂𐌼𐌰𐌹𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌹𐍉", "noun", "𐌰𐍂𐌼𐌰𐌹𐍉𐌽𐍃", "𐌰𐍂𐌼𐌰𐌹𐍉𐌽𐍃", "𐌰𐍂𐌼𐌰𐌹𐍉𐌽", "", "alms charity"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌹𐍉𐌽𐍃", "noun", "𐌰𐍂𐌼𐌰𐌹𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐍂𐌼𐌰𐌹𐍉"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹", "noun", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "", "presence often used"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "noun", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "", "", "", "inflection of 𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "noun", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌴", "noun", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌰𐌽", "noun", "𐌼𐌰𐌽𐌽𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍃", "noun", "𐌼𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌽𐌰"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽", "noun", "𐌼𐌰𐌽𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌴", "noun", "𐌼𐌰𐌽𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌰𐌼", "noun", "𐌼𐌰𐌽𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌰𐌽𐍃", "noun", "𐌼𐌰𐌽𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌽", "noun", "𐌻𐌰𐌿𐌽𐌰", "𐌻𐌰𐌿𐌽𐌹𐍃", "𐌻𐌰𐌿𐌽𐌰", "", "reward"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌽𐌰", "noun", "𐌻𐌰𐌿𐌽𐌰", "", "", "", "inflection of 𐌻𐌰𐌿𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌽𐌴", "noun", "𐌻𐌰𐌿𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌱𐌹𐌸", "noun", "𐌷𐌰𐌿𐌱𐌹𐌳𐌰", "𐌷𐌰𐌿𐌱𐌹𐌳𐌹𐍃", "𐌷𐌰𐌿𐌱𐌹𐌳𐌰", "", "head"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌽𐍃", "noun", "𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌾𐌰", "noun", "𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌽𐍃", "𐌷𐌰𐌿𐍂𐌽𐌾𐌹𐌽𐍃", "𐌷𐌰𐌿𐍂𐌽𐌾𐌹𐌽", "", "hornist trumpeter"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌿𐌼𐌸𐍃", "noun", "𐌲𐌰𐌵𐌿𐌼𐌸𐌴𐌹𐍃", "𐌲𐌰𐌵𐌿𐌼𐌸𐌰𐌹𐍃", "𐌲𐌰𐌵𐌿𐌼𐌸𐌰𐌹", "", "gathering congregation assembly"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌿𐌼𐌸𐌹𐌼", "noun", "𐌲𐌰𐌵𐌿𐌼𐌸𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌿𐌼𐌸𐌰𐌹", "noun", "𐌲𐌰𐌵𐌿𐌼𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌿𐌼𐌸𐌰𐌹𐍃", "noun", "𐌲𐌰𐌵𐌿𐌼𐌸𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌹𐌼", "noun", "𐌼𐌰𐌷𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴", "noun", "𐌼𐌰𐌷𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌹𐌽𐍃", "noun", "𐌼𐌰𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐍃", "noun", "𐌼𐌰𐌷𐍄𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌰𐌹", "noun", "𐌼𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌰𐌹𐍃", "noun", "𐌼𐌰𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄", "noun", "𐌼𐌰𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌿", "noun", "𐍅𐌿𐌻𐌸𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌿𐍃", "noun", "𐍅𐌿𐌻𐌸𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌿", "noun", "𐍅𐌿𐌻𐌸𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌹", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐌼", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐍃", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐍃", "", "", "", "inflection of 𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌹"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐌰", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌲𐌰𐍂𐌳𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐍄", "noun", "𐍃𐌰𐌻𐍄𐌰", "𐍃𐌰𐌻𐍄𐌹𐍃", "𐍃𐌰𐌻𐍄𐌰", "", "salt"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌿𐌽𐍃", "noun", "𐌲𐌰𐍂𐌿𐌽𐍃𐌴𐌹𐍃", "𐌲𐌰𐍂𐌿𐌽𐍃𐌰𐌹𐍃", "𐌲𐌰𐍂𐌿𐌽𐍃𐌰𐌹", "", "market square or"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌿𐌽𐍃𐌹𐌼", "noun", "𐌲𐌰𐍂𐌿𐌽𐍃𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌿𐌽𐍃𐌰𐌹", "noun", "𐌲𐌰𐍂𐌿𐌽𐍃𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹", "noun", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐍃", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐍃", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽", "", "height"]) + let v = native_list_append(v, ["𐌼𐌹𐌶𐌳𐍉", "noun", "𐌼𐌹𐌶𐌳𐍉𐌽𐍃", "𐌼𐌹𐌶𐌳𐍉𐌽𐍃", "𐌼𐌹𐌶𐌳𐍉𐌽", "", "reward recompense payment"]) + let v = native_list_append(v, ["𐌼𐌹𐌶𐌳𐍉𐌽", "noun", "𐌼𐌹𐌶𐌳𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌶𐌳𐍉𐌽𐍃", "noun", "𐌼𐌹𐌶𐌳𐍉𐌽𐍃", "", "", "", "inflection of 𐌼𐌹𐌶𐌳𐍉"]) + let v = native_list_append(v, ["𐌼𐌹𐌶𐌳𐍉𐌽𐍉", "noun", "𐌼𐌹𐌶𐌳𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌸𐍃", "noun", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌴𐌹𐍃", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌹𐍃", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌰", "", "a centurion officer"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌹𐌼", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐌹𐍃", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐌹", "", "a synagogue"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌸𐍃", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌴𐌹𐍃", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌹𐍃", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌰", "", "the leader of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌰", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌹𐍃", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌴", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐍆𐌰𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌴", "noun", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌸", "noun", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌰", "noun", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌾𐌴𐍂", "noun", "𐌾𐌴𐍂𐌰", "𐌾𐌴𐍂𐌹𐍃", "𐌾𐌴𐍂𐌰", "", "year"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌸𐍆𐌰𐌸𐍃", "noun", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌴𐌹𐍃", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌹𐍃", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌰", "", "a bridegroom"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌹𐍃", "noun", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌹𐍆𐌰𐌸𐍃", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌹𐍆𐌰𐌳𐌴𐌹𐍃", "𐌸𐌿𐍃𐌿𐌽𐌳𐌹𐍆𐌰𐌳𐌹𐍃", "𐌸𐌿𐍃𐌿𐌽𐌳𐌹𐍆𐌰𐌳𐌰", "", "a tribune an"]) + let v = native_list_append(v, ["𐍆𐌰𐌸𐍃", "noun", "𐍆𐌰𐌳𐌴𐌹𐍃", "𐍆𐌰𐌳𐌹𐍃", "𐍆𐌰𐌳𐌰", "", "lord master commander"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌲𐌰", "noun", "𐌲𐌰𐌻𐌲𐌰𐌽𐍃", "𐌲𐌰𐌻𐌲𐌹𐌽𐍃", "𐌲𐌰𐌻𐌲𐌹𐌽", "", "stake"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐌹𐌸𐌰", "noun", "𐌳𐍅𐌰𐌻𐌹𐌸𐍉𐍃", "𐌳𐍅𐌰𐌻𐌹𐌸𐍉𐍃", "𐌳𐍅𐌰𐌻𐌹𐌸𐌰𐌹", "", "folly"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐍂𐌰", "noun", "𐍃𐌺𐌿𐍂𐍉𐍃", "𐍃𐌺𐌿𐍂𐍉𐍃", "𐍃𐌺𐌿𐍂𐌰𐌹", "", "storm disturbed state"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌰", "noun", "𐌱𐌹𐌳𐍉𐍃", "𐌱𐌹𐌳𐍉𐍃", "𐌱𐌹𐌳𐌰𐌹", "", "a request plea"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌹𐌳𐌰", "noun", "𐌰𐌿𐌸𐌹𐌳𐍉𐍃", "𐌰𐌿𐌸𐌹𐌳𐍉𐍃", "𐌰𐌿𐌸𐌹𐌳𐌰𐌹", "", "wilderness desert"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌹𐌳𐍉𐍃", "noun", "𐌰𐌿𐌸𐌹𐌳𐍉𐍃", "", "", "", "inflection of 𐌰𐌿𐌸𐌹𐌳𐌰"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌹𐌳𐌰𐌹", "noun", "𐌰𐌿𐌸𐌹𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌹𐌳𐍉𐌼", "noun", "𐌰𐌿𐌸𐌹𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐍃", "noun", "𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐍉𐍃", "𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐌹𐍃", "𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐌰", "", "olive tree"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅", "noun", "𐌰𐌻𐌴𐍅𐌰", "𐌰𐌻𐌴𐍅𐌹𐍃", "𐌰𐌻𐌴𐍅𐌰", "", "oil"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌰", "noun", "𐌰𐌻𐌴𐍅𐌰", "", "", "", "inflection of 𐌰𐌻𐌴𐍅"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌹𐍃", "noun", "𐌰𐌻𐌴𐍅𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍀𐌴𐌹𐌺𐌰𐌱𐌰𐌲𐌼𐌴", "noun", "𐍀𐌴𐌹𐌺𐌰𐌱𐌰𐌲𐌼𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍀𐌴𐌹𐌺𐌰𐌱𐌰𐌲𐌼𐍃", "noun", "𐍀𐌴𐌹𐌺𐌰𐌱𐌰𐌲𐌼𐍉𐍃", "𐍀𐌴𐌹𐌺𐌰𐌱𐌰𐌲𐌼𐌹𐍃", "𐍀𐌴𐌹𐌺𐌰𐌱𐌰𐌲𐌼𐌰", "", "palm tree"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌱𐌰𐌲𐌼𐌰", "noun", "𐌱𐌰𐌹𐍂𐌰𐌱𐌰𐌲𐌼𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌱𐌰𐌲𐌼𐍃", "noun", "𐌱𐌰𐌹𐍂𐌰𐌱𐌰𐌲𐌼𐍉𐍃", "𐌱𐌰𐌹𐍂𐌰𐌱𐌰𐌲𐌼𐌹𐍃", "𐌱𐌰𐌹𐍂𐌰𐌱𐌰𐌲𐌼𐌰", "", "sycamine"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼", "noun", "𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐌹𐍃", "noun", "𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐌴", "noun", "𐌰𐌻𐌴𐍅𐌰𐌱𐌰𐌲𐌼𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼𐍃", "noun", "𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼𐍉𐍃", "𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼𐌹𐍃", "𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼𐌰", "", "fig tree"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌺𐌺𐌰", "noun", "𐍃𐌼𐌰𐌺𐌺𐌰𐌽𐍃", "𐍃𐌼𐌰𐌺𐌺𐌹𐌽𐍃", "𐍃𐌼𐌰𐌺𐌺𐌹𐌽", "", "fig fruit"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌺𐌺𐌰𐌽𐍃", "noun", "𐍃𐌼𐌰𐌺𐌺𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌺𐌺𐌰𐌽𐌴", "noun", "𐍃𐌼𐌰𐌺𐌺𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼", "noun", "𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼𐌰", "noun", "𐍃𐌼𐌰𐌺𐌺𐌰𐌱𐌰𐌲𐌼𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌿𐌻𐌲𐌹𐌸𐌰", "noun", "𐍄𐌿𐌻𐌲𐌹𐌸𐍉𐍃", "𐍄𐌿𐌻𐌲𐌹𐌸𐍉𐍃", "𐍄𐌿𐌻𐌲𐌹𐌸𐌰𐌹", "", "safety security"]) + let v = native_list_append(v, ["𐌸𐍅𐌼𐌹𐌰𐌼𐌹𐌽𐍃", "noun", "𐌸𐍅𐌼𐌹𐌰𐌼𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐍅𐌼𐌹𐌰𐌼𐌰", "noun", "𐌸𐍅𐌼𐌹𐌰𐌼𐌰𐌽𐍃", "𐌸𐍅𐌼𐌹𐌰𐌼𐌹𐌽𐍃", "𐌸𐍅𐌼𐌹𐌰𐌼𐌹𐌽", "", "incense"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌸𐍃", "noun", "𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌴𐌹𐍃", "𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌹𐍃", "𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌰", "", "altar"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐍃𐌻", "noun", "𐌷𐌿𐌽𐍃𐌻𐌰", "𐌷𐌿𐌽𐍃𐌻𐌹𐍃", "𐌷𐌿𐌽𐍃𐌻𐌰", "", "offering sacrifice"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌰", "noun", "𐌲𐌿𐌳𐌾𐌰𐌽𐍃", "𐌲𐌿𐌳𐌾𐌹𐌽𐍃", "𐌲𐌿𐌳𐌾𐌹𐌽", "", "priest"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐌰𐍂𐌴𐌹𐍃", "noun", "𐌱𐍉𐌺𐌰𐍂𐌾𐍉𐍃", "𐌱𐍉𐌺𐌰𐍂𐌾𐌴", "𐌱𐍉𐌺𐌰𐍂𐌾𐌰", "", "scribe writer"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌰𐍂𐌴𐌹𐍃", "noun", "𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐍉𐍃", "𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌴", "𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰", "", "teacher master"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌰𐍂𐌴𐌹𐍃", "noun", "𐍃𐍉𐌺𐌰𐍂𐌾𐍉𐍃", "𐍃𐍉𐌺𐌰𐍂𐌾𐌴", "𐍃𐍉𐌺𐌰𐍂𐌾𐌰", "", "investigator seeker"]) + let v = native_list_append(v, ["𐍃𐍄𐌿𐌱𐌾𐌿", "noun", "𐍃𐍄𐌿𐌱𐌾𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌿𐌱𐌾𐌿𐍃", "noun", "𐍃𐍄𐌿𐌱𐌾𐌿𐍃", "𐍃𐍄𐌿𐌱𐌾𐌰𐌿𐍃", "𐍃𐍄𐌿𐌱𐌾𐌰𐌿", "", "dust"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐍃𐌽𐌰", "noun", "𐍆𐌹𐌻𐌿𐍃𐌽𐍉𐍃", "𐍆𐌹𐌻𐌿𐍃𐌽𐍉𐍃", "𐍆𐌹𐌻𐌿𐍃𐌽𐌰𐌹", "", "multitude amount"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐍃𐌽𐌰𐌹", "noun", "𐍆𐌹𐌻𐌿𐍃𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌽𐌿𐌸𐍉", "noun", "𐌷𐌽𐌿𐌸𐍉𐌽𐍃", "𐌷𐌽𐌿𐌸𐍉𐌽𐍃", "𐌷𐌽𐌿𐌸𐍉𐌽", "", "stake sharp stick"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐍃", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐍃", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "sin"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌸𐍃", "noun", "𐌳𐌿𐌻𐌸𐌴𐌹𐍃", "𐌳𐌿𐌻𐌸𐌰𐌹𐍃", "𐌳𐌿𐌻𐌸𐌰𐌹", "", "feast celebration"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌸𐌰𐌹𐍃", "noun", "𐌳𐌿𐌻𐌸𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌸", "noun", "𐌳𐌿𐌻𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌸𐌰𐌹", "noun", "𐌳𐌿𐌻𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌽𐌴𐌹𐌸", "noun", "𐌽𐌴𐌹𐌸", "𐌽𐌴𐌹𐌸𐌹𐍃", "𐌽𐌴𐌹𐌸𐌰", "", "hate envy malice"]) + let v = native_list_append(v, ["𐌽𐌴𐌹𐌸𐌹𐍃", "noun", "𐌽𐌴𐌹𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌴𐌹𐌸𐌰", "noun", "𐌽𐌴𐌹𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐍃𐌰", "noun", "𐌷𐌰𐌽𐍃𐍉𐍃", "𐌷𐌰𐌽𐍃𐍉𐍃", "𐌷𐌰𐌽𐍃𐌰𐌹", "", "a crowd gathering"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌲𐍂𐌾𐌰", "noun", "𐌲𐌰𐌻𐌹𐌲𐍂𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐌻𐌹𐌲𐍂𐌹"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌲𐍂𐌹", "noun", "𐌲𐌰𐌻𐌹𐌲𐍂𐌾𐌰", "𐌲𐌰𐌻𐌹𐌲𐍂𐌾𐌹𐍃", "𐌲𐌰𐌻𐌹𐌲𐍂𐌾𐌰", "", "sexual intercourse"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸𐌰𐍂𐌾𐍉𐍃", "noun", "𐌻𐌹𐌿𐌸𐌰𐍂𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸𐌰𐍂𐌴𐌹𐍃", "noun", "𐌻𐌹𐌿𐌸𐌰𐍂𐌾𐍉𐍃", "𐌻𐌹𐌿𐌸𐌰𐍂𐌾𐌴", "𐌻𐌹𐌿𐌸𐌰𐍂𐌾𐌰", "", "singer"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐌹𐌽𐌰", "noun", "𐌰𐌻𐌴𐌹𐌽𐍉𐍃", "𐌰𐌻𐌴𐌹𐌽𐍉𐍃", "𐌰𐌻𐌴𐌹𐌽𐌰𐌹", "", "ell cubit"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌹𐍄𐍉𐌽𐍃", "noun", "𐌲𐌰𐌼𐌹𐍄𐍉𐌽𐌴𐌹𐍃", "𐌲𐌰𐌼𐌹𐍄𐍉𐌽𐌰𐌹𐍃", "𐌲𐌰𐌼𐌹𐍄𐍉𐌽𐌰𐌹", "", "thought"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌹𐍄𐍉𐌽𐌴", "noun", "𐌲𐌰𐌼𐌹𐍄𐍉𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌹𐌺𐌿𐌻𐌰𐍄𐌿𐍂", "noun", "𐍃𐍀𐌰𐌹𐌺𐌿𐌻𐌰𐍄𐌿𐍂", "", "", "", "a sentinel guard"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐍄𐍂𐌰𐍂𐌺𐌴𐍃", "noun", "𐍄𐌰𐌹𐍄𐍂𐌰𐍂𐌺𐌴𐍃", "", "", "", "a tetrarch"]) + let v = native_list_append(v, ["𐌼𐌰𐍅𐌹𐌻𐍉", "noun", "𐌼𐌰𐍅𐌹𐌻𐍉𐌽𐍃", "𐌼𐌰𐍅𐌹𐌻𐍉𐌽𐍃", "𐌼𐌰𐍅𐌹𐌻𐍉𐌽", "", "girl"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌻", "noun", "𐍃𐍀𐌹𐌻𐌻𐌰", "𐍃𐍀𐌹𐌻𐌻𐌹𐍃", "𐍃𐍀𐌹𐌻𐌻𐌰", "", "story tale fable"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌻𐌰", "noun", "𐍃𐍀𐌹𐌻𐌻𐌰𐌽𐍃", "𐍃𐍀𐌹𐌻𐌻𐌹𐌽𐍃", "𐍃𐍀𐌹𐌻𐌻𐌹𐌽", "", "proclaimer herald announcer"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌻𐌴", "noun", "𐍃𐍀𐌹𐌻𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌻𐌰𐌼", "noun", "𐍃𐍀𐌹𐌻𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰", "noun", "𐍅𐌴𐌹𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌹𐍃", "noun", "𐍅𐌴𐌹𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌿𐍃", "noun", "𐌵𐌹𐌸𐌾𐌿𐍃", "𐌵𐌹𐌸𐌰𐌿𐍃", "𐌵𐌹𐌸𐌰𐌿", "", "belly stomach"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌿𐍃", "noun", "𐌵𐌹𐌸𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌿", "noun", "𐌵𐌹𐌸𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌿𐍃", "noun", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌾𐌿𐍃", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌰𐌿𐍃", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌰𐌿", "", "bishop"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌸𐍃", "noun", "𐌼𐌹𐍄𐌰𐌸𐌴", "", "𐌼𐌹𐍄𐌰𐌸", "", "measure"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌸", "noun", "𐌼𐌹𐍄𐌰𐌸", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌳𐌴", "noun", "𐌼𐌹𐍄𐌰𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌳𐍃", "noun", "𐌼𐌹𐍄𐌰𐌳𐌴", "", "𐌼𐌹𐍄𐌰𐌳", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌿𐍃", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌴𐌹𐍃", "𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌰𐌿𐍃", "𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌰𐌿", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌿", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌿𐌽𐍃", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌿𐌻𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍈𐌿𐍃", "noun", "𐍆𐌰𐌹𐍂𐍈𐌿𐍃", "𐍆𐌰𐌹𐍂𐍈𐌰𐌿𐍃", "𐍆𐌰𐌹𐍂𐍈𐌰𐌿", "", "the world the"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍈𐌿", "noun", "𐍆𐌰𐌹𐍂𐍈𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍈𐌰𐌿𐍃", "noun", "𐍆𐌰𐌹𐍂𐍈𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍈𐌰𐌿", "noun", "𐍆𐌰𐌹𐍂𐍈𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐌺𐍃", "noun", "𐌰𐌷𐌰𐌺𐌴𐌹𐍃", "𐌰𐌷𐌰𐌺𐌰𐌹𐍃", "𐌰𐌷𐌰𐌺𐌰𐌹", "", "pigeon dove bird"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐍅𐌰𐌳𐌿𐌱𐍉", "noun", "𐌷𐍂𐌰𐌹𐍅𐌰𐌳𐌿𐌱𐍉𐌽𐍃", "𐌷𐍂𐌰𐌹𐍅𐌰𐌳𐌿𐌱𐍉𐌽𐍃", "𐌷𐍂𐌰𐌹𐍅𐌰𐌳𐌿𐌱𐍉𐌽", "", "turtledove"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐍅𐌰𐌳𐌿𐌱𐍉𐌽𐍉", "noun", "𐌷𐍂𐌰𐌹𐍅𐌰𐌳𐌿𐌱𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐌺𐌴", "noun", "𐌰𐌷𐌰𐌺𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐌺", "noun", "𐌰𐌷𐌰𐌺", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐌺𐌹𐌼", "noun", "𐌰𐌷𐌰𐌺𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐍆𐍄𐌿𐍃", "noun", "𐌷𐌻𐌹𐍆𐍄𐌾𐌿𐍃", "𐌷𐌻𐌹𐍆𐍄𐌰𐌿𐍃", "𐌷𐌻𐌹𐍆𐍄𐌰𐌿", "", "thief"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐍂𐌴𐌹𐌽𐍃", "noun", "𐍃𐌺𐌴𐌹𐍂𐌴𐌹𐌽𐍉𐍃", "𐍃𐌺𐌴𐌹𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐍃𐌺𐌴𐌹𐍂𐌴𐌹𐌽𐌰𐌹", "", "explanation clarification"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐍂𐌴𐌹𐌽𐍃", "noun", "𐍃𐌺𐌴𐍂𐌴𐌹𐌽𐍉𐍃", "𐍃𐌺𐌴𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐍃𐌺𐌴𐍂𐌴𐌹𐌽𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐍂𐌴𐌹𐌽", "noun", "𐍃𐌺𐌴𐍂𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐍅𐍄𐍃𐌾𐍉", "noun", "𐌺𐌰𐍅𐍄𐍃𐌾𐍉𐌽𐍃", "𐌺𐌰𐍅𐍄𐍃𐌾𐍉𐌽𐍃", "𐌺𐌰𐍅𐍄𐍃𐌾𐍉𐌽", "", "bond warranty"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌿𐌰", "noun", "𐍃𐍄𐌰𐌿𐍉𐍃", "𐍃𐍄𐌰𐌿𐍉𐍃", "𐍃𐍄𐌰𐌿𐌰𐌹", "", "judgment trial dispute"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌿𐌰", "noun", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌿𐌰𐌽𐍃", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌿𐌹𐌽𐍃", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌿𐌹𐌽", "", "adversary"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌿𐌰𐍃𐍄𐍉𐌻𐍃", "noun", "𐍃𐍄𐌰𐌿𐌰𐍃𐍄𐍉𐌻𐍉𐍃", "𐍃𐍄𐌰𐌿𐌰𐍃𐍄𐍉𐌻𐌹𐍃", "𐍃𐍄𐌰𐌿𐌰𐍃𐍄𐍉𐌻𐌰", "", "judges seat tribunal"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌿𐌰𐍃𐍄𐍉𐌻𐌰", "noun", "𐍃𐍄𐌰𐌿𐌰𐍃𐍄𐍉𐌻𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌳𐍉𐌼𐌴𐌹𐌽𐍃", "noun", "𐍆𐌰𐌿𐍂𐌳𐍉𐌼𐌴𐌹𐌽𐍉𐍃", "𐍆𐌰𐌿𐍂𐌳𐍉𐌼𐌴𐌹𐌽𐌰𐌹𐍃", "𐍆𐌰𐌿𐍂𐌳𐍉𐌼𐌴𐌹𐌽𐌰𐌹", "", "prejudice"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌳𐍉𐌼𐌴𐌹𐌽", "noun", "𐍆𐌰𐌿𐍂𐌳𐍉𐌼𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌰", "noun", "𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌰𐌽𐍃", "𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌹𐌽𐍃", "𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌹𐌽", "", "neighbour"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌹𐌽", "noun", "𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌹𐌽𐍃", "noun", "𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌰𐌽", "noun", "𐌽𐌴𐍈𐌿𐌽𐌳𐌾𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌺𐌿𐍃", "noun", "𐍃𐌰𐌺𐌺𐌾𐌿𐍃", "𐍃𐌰𐌺𐌺𐌰𐌿𐍃", "𐍃𐌰𐌺𐌺𐌰𐌿", "", "sack"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌺𐌰𐌿", "noun", "𐍃𐌰𐌺𐌺𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌺𐌿𐌼", "noun", "𐍃𐌰𐌺𐌺𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍀𐌰𐍂𐌰𐍃𐌺𐌰𐌹𐍅𐌴", "noun", "𐍀𐌰𐍂𐌰𐍃𐌺𐌰𐌹𐍅𐌴𐌹𐌽𐍃", "𐍀𐌰𐍂𐌰𐍃𐌺𐌰𐌹𐍅𐌴𐌹𐌽𐍃", "𐍀𐌰𐍂𐌰𐍃𐌺𐌰𐌹𐍅𐌴𐌹𐌽", "", "Friday"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌱𐌰𐍄𐍉", "noun", "𐍃𐌰𐌱𐌱𐌰𐍄𐍉", "", "", "", "Saturday the Sabbath"]) + let v = native_list_append(v, ["𐌲𐌿𐍄𐌸𐌹𐌿𐌳𐌰", "noun", "𐌲𐌿𐍄𐌸𐌹𐌿𐌳𐍉𐍃", "𐌲𐌿𐍄𐌸𐌹𐌿𐌳𐍉𐍃", "𐌲𐌿𐍄𐌸𐌹𐌿𐌳𐌰𐌹", "", "the Goths"]) + let v = native_list_append(v, ["𐌲𐌿𐍄𐌸𐌹𐌿𐌳𐌰𐌹", "noun", "𐌲𐌿𐍄𐌸𐌹𐌿𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌿𐍃", "noun", "𐌻𐌿𐍃𐍄𐌾𐌿𐍃", "𐌻𐌿𐍃𐍄𐌰𐌿𐍃", "𐌻𐌿𐍃𐍄𐌰𐌿", "", "lust desire"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌰𐌿", "noun", "𐌻𐌿𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌰𐌿𐍃", "noun", "𐌻𐌿𐍃𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌿", "noun", "𐌻𐌿𐍃𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌾𐌿𐍃", "noun", "𐌻𐌿𐍃𐍄𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌿𐌽𐍃", "noun", "𐌻𐌿𐍃𐍄𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌿𐌼", "noun", "𐌻𐌿𐍃𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍄𐌿𐌽𐌸𐌿𐍃", "noun", "𐍄𐌿𐌽𐌸𐌾𐌿𐍃", "𐍄𐌿𐌽𐌸𐌰𐌿𐍃", "𐍄𐌿𐌽𐌸𐌰𐌿", "", "tooth"]) + let v = native_list_append(v, ["𐍄𐌿𐌽𐌸𐌰𐌿", "noun", "𐍄𐌿𐌽𐌸𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌿𐌽𐌸𐌿", "noun", "𐍄𐌿𐌽𐌸𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐌿𐌽𐌸𐌿𐌽𐍃", "noun", "𐍄𐌿𐌽𐌸𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍄𐌿𐌽𐌸𐌹𐍅𐌴", "noun", "𐍄𐌿𐌽𐌸𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐍆𐍄", "noun", "𐍃𐌺𐌿𐍆𐍄𐌰", "𐍃𐌺𐌿𐍆𐍄𐌹𐍃", "𐍃𐌺𐌿𐍆𐍄𐌰", "", "hair"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐍆𐍄𐌰", "noun", "𐍃𐌺𐌿𐍆𐍄𐌰", "", "", "", "inflection of 𐍃𐌺𐌿𐍆𐍄"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌹", "noun", "𐍂𐌴𐌹𐌺𐌾𐌰", "𐍂𐌴𐌹𐌺𐌾𐌹𐍃", "𐍂𐌴𐌹𐌺𐌾𐌰", "", "dominion"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌾𐌰", "noun", "𐍂𐌴𐌹𐌺𐌾𐌰", "", "", "", "inflection of 𐍂𐌴𐌹𐌺𐌹"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌾𐌴", "noun", "𐍂𐌴𐌹𐌺𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌾𐌰𐌼", "noun", "𐍂𐌴𐌹𐌺𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌾𐌹𐍃", "noun", "𐍂𐌴𐌹𐌺𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹", "noun", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽𐍃", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "", "mercy compassion"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "noun", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽𐍃", "noun", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽𐍃", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽𐍃", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽", "", "gospel"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌰", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌹𐍃", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽𐍃", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌰", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌰𐌽𐍃", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌹𐌽𐍃", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌹𐌽", "", "evangelist"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌰𐌽𐍃", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌹𐌽𐍃", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐍃𐍄𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌰", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌰", "", "", "", "inflection of 𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌹𐍃", "noun", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍀𐌿𐌽𐌳", "noun", "𐍀𐌿𐌽𐌳𐌰", "𐍀𐌿𐌽𐌳𐌹𐍃", "𐍀𐌿𐌽𐌳𐌰", "", "pound"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍃𐌰𐌽", "noun", "𐌱𐌰𐌻𐍃𐌰𐌽𐌰", "𐌱𐌰𐌻𐍃𐌰𐌽𐌹𐍃", "𐌱𐌰𐌻𐍃𐌰𐌽𐌰", "", "balm balsam"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍃𐌰𐌽𐌰", "noun", "𐌱𐌰𐌻𐍃𐌰𐌽𐌰", "", "", "", "inflection of 𐌱𐌰𐌻𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍃𐌰𐌽𐌹𐍃", "noun", "𐌱𐌰𐌻𐍃𐌰𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌰𐌽", "noun", "𐍃𐌰𐌱𐌰𐌽𐌰", "𐍃𐌰𐌱𐌰𐌽𐌹𐍃", "𐍃𐌰𐌱𐌰𐌽𐌰", "", "fine linen"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌰𐌽𐌰", "noun", "𐍃𐌰𐌱𐌰𐌽𐌰", "", "", "", "inflection of 𐍃𐌰𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐌰", "noun", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐍃", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐍃", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐌰𐌹", "", "purple"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐌰𐌹", "noun", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌰𐌿𐍂𐌰", "noun", "𐍀𐌰𐌿𐍂𐍀𐌰𐌿𐍂𐍉𐍃", "𐍀𐌰𐌿𐍂𐍀𐌰𐌿𐍂𐍉𐍃", "𐍀𐌰𐌿𐍂𐍀𐌰𐌿𐍂𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌰𐌿𐍂𐌰𐌹", "noun", "𐍀𐌰𐌿𐍂𐍀𐌰𐌿𐍂𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌿", "noun", "𐌳𐌰𐌿𐌸𐌿", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰𐌿𐍃", "noun", "𐌳𐌰𐌿𐌸𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰𐌿", "noun", "𐌳𐌰𐌿𐌸𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌿𐌼", "noun", "𐌳𐌰𐌿𐌸𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐌱𐌾𐌰", "noun", "𐍃𐌹𐌱𐌾𐍉𐍃", "𐍃𐌹𐌱𐌾𐍉𐍃", "𐍃𐌹𐌱𐌾𐌰𐌹", "", "relationship kinship"]) + let v = native_list_append(v, ["𐍅𐌹𐍀𐌾𐌰", "noun", "𐍅𐌹𐍀𐌾𐍉𐍃", "𐍅𐌹𐍀𐌾𐍉𐍃", "𐍅𐌹𐍀𐌾𐌰𐌹", "", "crown"]) + let v = native_list_append(v, ["𐌽𐌹𐌸𐌾𐌹𐍃", "noun", "𐌽𐌹𐌸𐌾𐍉𐍃", "𐌽𐌹𐌸𐌾𐌴", "𐌽𐌹𐌸𐌾𐌰", "", "kinsman a male"]) + let v = native_list_append(v, ["𐌽𐌹𐌸𐌾𐍉𐍃", "noun", "𐌽𐌹𐌸𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌽𐌹𐌸𐌾𐌰𐌽𐍃", "noun", "𐌽𐌹𐌸𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌾𐌰", "noun", "𐍅𐌹𐌽𐌾𐍉𐍃", "𐍅𐌹𐌽𐌾𐍉𐍃", "𐍅𐌹𐌽𐌾𐌰𐌹", "", "pasture"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌰", "noun", "𐍃𐌿𐌽𐌾𐍉𐍃", "𐍃𐌿𐌽𐌾𐍉𐍃", "𐍃𐌿𐌽𐌾𐌰𐌹", "", "truth"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐍉𐍃", "noun", "𐍃𐌿𐌽𐌾𐍉𐍃", "", "", "", "inflection of 𐍃𐌿𐌽𐌾𐌰"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌰𐌹", "noun", "𐍃𐌿𐌽𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐌾𐌰", "noun", "𐍅𐍂𐌰𐌺𐌾𐍉𐍃", "𐍅𐍂𐌰𐌺𐌾𐍉𐍃", "𐍅𐍂𐌰𐌺𐌾𐌰𐌹", "", "persecution"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐌾𐍉𐍃", "noun", "𐍅𐍂𐌰𐌺𐌾𐍉𐍃", "", "", "", "inflection of 𐍅𐍂𐌰𐌺𐌾𐌰"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐌾𐍉𐌼", "noun", "𐍅𐍂𐌰𐌺𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌿𐌽𐌽𐍃", "noun", "𐍅𐌿𐌽𐌽𐌴𐌹𐍃", "𐍅𐌿𐌽𐌽𐌰𐌹𐍃", "𐍅𐌿𐌽𐌽𐌰𐌹", "", "suffering agony torment"]) + let v = native_list_append(v, ["𐍅𐌿𐌽𐌽𐌹𐌼", "noun", "𐍅𐌿𐌽𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰", "noun", "𐍅𐌹𐌽𐌽𐍉𐍃", "𐍅𐌹𐌽𐌽𐍉𐍃", "𐍅𐌹𐌽𐌽𐌰𐌹", "", "suffering passion yearning"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌾𐌰", "noun", "𐌱𐌰𐌽𐌾𐍉𐍃", "𐌱𐌰𐌽𐌾𐍉𐍃", "𐌱𐌰𐌽𐌾𐌰𐌹", "", "wound"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌾𐍉𐍃", "noun", "𐌱𐌰𐌽𐌾𐍉𐍃", "", "", "", "inflection of 𐌱𐌰𐌽𐌾𐌰"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌾𐍉", "noun", "𐌱𐌰𐌽𐌾𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌺𐌾𐌰", "noun", "𐌱𐍂𐌰𐌺𐌾𐍉𐍃", "𐌱𐍂𐌰𐌺𐌾𐍉𐍃", "𐌱𐍂𐌰𐌺𐌾𐌰𐌹", "", "a wrestling-match fight"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍃𐍄𐌹𐍃𐌹𐌱𐌾𐌰", "noun", "𐍆𐍂𐌰𐍃𐍄𐌹𐍃𐌹𐌱𐌾𐍉𐍃", "𐍆𐍂𐌰𐍃𐍄𐌹𐍃𐌹𐌱𐌾𐍉𐍃", "𐍆𐍂𐌰𐍃𐍄𐌹𐍃𐌹𐌱𐌾𐌰𐌹", "", "adoption"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍃𐍄𐍃", "noun", "𐍆𐍂𐌰𐍃𐍄𐌴𐌹𐍃", "𐍆𐍂𐌰𐍃𐍄𐌹𐍃", "𐍆𐍂𐌰𐍃𐍄𐌰", "", "child"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍃𐍄𐌹𐌼", "noun", "𐍆𐍂𐌰𐍃𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌿𐌳𐌾𐌰", "noun", "𐌻𐌿𐌳𐌾𐍉𐍃", "𐌻𐌿𐌳𐌾𐍉𐍃", "𐌻𐌿𐌳𐌾𐌰𐌹", "", "face countenance"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌾𐌰", "noun", "𐍃𐌺𐌰𐌻𐌾𐍉𐍃", "𐍃𐌺𐌰𐌻𐌾𐍉𐍃", "𐍃𐌺𐌰𐌻𐌾𐌰𐌹", "", "tile brick"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌾𐍉𐍃", "noun", "𐍃𐌺𐌰𐌻𐌾𐍉𐍃", "", "", "", "inflection of 𐍃𐌺𐌰𐌻𐌾𐌰"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌳𐌿𐍃", "noun", "𐍅𐌰𐌽𐌳𐌾𐌿𐍃", "𐍅𐌰𐌽𐌳𐌰𐌿𐍃", "𐍅𐌰𐌽𐌳𐌰𐌿", "", "a rod"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌳𐌿𐌼", "noun", "𐍅𐌰𐌽𐌳𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍃𐍃𐌰𐍂𐌾𐌿𐍃", "noun", "𐌰𐍃𐍃𐌰𐍂𐌾𐌾𐌿𐍃", "𐌰𐍃𐍃𐌰𐍂𐌾𐌰𐌿𐍃", "𐌰𐍃𐍃𐌰𐍂𐌾𐌰𐌿", "", "a low-value copper"]) + let v = native_list_append(v, ["𐌰𐍃𐍃𐌰𐍂𐌾𐌰𐌿", "noun", "𐌰𐍃𐍃𐌰𐍂𐌾𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌾𐌰", "noun", "𐌿𐌽𐌺𐌾𐌰𐌽𐍃", "𐌿𐌽𐌺𐌾𐌹𐌽𐍃", "𐌿𐌽𐌺𐌾𐌹𐌽", "", "an uncia unit"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌾𐌰𐌽𐌴", "noun", "𐌿𐌽𐌺𐌾𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌺𐌼𐌰", "noun", "𐌳𐍂𐌰𐌺𐌼𐌰𐌽𐍃", "𐌳𐍂𐌰𐌺𐌼𐌹𐌽𐍃", "𐌳𐍂𐌰𐌺𐌼𐌹𐌽", "", "a drachma"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌺𐌼𐌹𐌽", "noun", "𐌳𐍂𐌰𐌺𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌺𐌼𐌰𐌽𐍃", "noun", "𐌳𐍂𐌰𐌺𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌺𐌼𐌰𐌽", "noun", "𐌳𐍂𐌰𐌺𐌼𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐍅𐍄𐍃𐌾𐍉𐌽", "noun", "𐌺𐌰𐍅𐍄𐍃𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐌻𐌻𐌹𐌲𐌲𐍃", "noun", "𐍃𐌺𐌹𐌻𐌻𐌹𐌲𐌲𐍉𐍃", "𐍃𐌺𐌹𐌻𐌻𐌹𐌲𐌲𐌹𐍃", "𐍃𐌺𐌹𐌻𐌻𐌹𐌲𐌲𐌰", "", "a type of"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐌻𐌻𐌹𐌲𐌲𐌰𐌽𐍃", "noun", "𐍃𐌺𐌹𐌻𐌻𐌹𐌲𐌲𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐍃", "noun", "𐍃𐌰𐌹𐍅𐌴𐌹𐍃", "𐍃𐌰𐌹𐍅𐌹𐍃", "𐍃𐌰𐌹𐍅𐌰", "", "lake sea"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌰", "noun", "𐍃𐌰𐌹𐍅𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌴", "noun", "𐍃𐌰𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐍃", "noun", "𐌷𐌿𐌲𐌴𐌹𐍃", "𐌷𐌿𐌲𐌹𐍃", "𐌷𐌿𐌲𐌰", "", "mind reason"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌹𐍃", "noun", "𐌷𐌿𐌲𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌷𐌿𐍃", "noun", "𐌲𐌿𐌳𐌷𐌿𐍃𐌰", "𐌲𐌿𐌳𐌷𐌿𐍃𐌹𐍃", "𐌲𐌿𐌳𐌷𐌿𐍃𐌰", "", "temple sanctuary"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌷𐌿𐍃𐌰", "noun", "𐌲𐌿𐌳𐌷𐌿𐍃𐌰", "", "", "", "inflection of 𐌲𐌿𐌳𐌷𐌿𐍃"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌽", "noun", "𐍂𐌰𐌶𐌽𐌰", "𐍂𐌰𐌶𐌽𐌹𐍃", "𐍂𐌰𐌶𐌽𐌰", "", "house"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌽𐌰", "noun", "𐍂𐌰𐌶𐌽𐌰", "", "", "", "inflection of 𐍂𐌰𐌶𐌽"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌽𐌹𐍃", "noun", "𐍂𐌰𐌶𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐍂𐌿𐌽𐌳𐌿𐍃", "noun", "𐌲𐍂𐌿𐌽𐌳𐌾𐌿𐍃", "𐌲𐍂𐌿𐌽𐌳𐌰𐌿𐍃", "𐌲𐍂𐌿𐌽𐌳𐌰𐌿", "", "ground"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌴𐌹", "noun", "𐌿𐌽𐍃𐌴𐌻𐌴𐌹", "𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽", "", "evil wickedness iniquity"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽", "noun", "𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌴𐌻𐌴𐌹𐌽", "noun", "𐍃𐌴𐌻𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌾𐍉", "noun", "𐌰𐍂𐌱𐌾𐍉𐌽𐍃", "𐌰𐍂𐌱𐌾𐍉𐌽𐍃", "𐌰𐍂𐌱𐌾𐍉𐌽", "", "an heiress"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌾𐌹𐍃", "noun", "𐌰𐍂𐌱𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌾𐌰𐌽𐍃", "noun", "𐌰𐍂𐌱𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌹𐌽𐌿𐌼𐌾𐌰", "noun", "𐌰𐍂𐌱𐌹𐌽𐌿𐌼𐌾𐌰𐌽𐍃", "𐌰𐍂𐌱𐌹𐌽𐌿𐌼𐌾𐌹𐌽𐍃", "𐌰𐍂𐌱𐌹𐌽𐌿𐌼𐌾𐌹𐌽", "", "an heir"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌸𐍂𐌰", "noun", "𐌼𐌰𐌿𐍂𐌸𐍂𐌰", "", "", "", "inflection of 𐌼𐌰𐌿𐍂𐌸𐍂"]) + let v = native_list_append(v, ["𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "adultery"]) + let v = native_list_append(v, ["𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "noun", "𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "noun", "𐌷𐍉𐍂𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌿𐍂", "noun", "𐍃𐍄𐌹𐌿𐍂𐍉𐍃", "𐍃𐍄𐌹𐌿𐍂𐌹𐍃", "𐍃𐍄𐌹𐌿𐍂𐌰", "", "male calf young"]) + let v = native_list_append(v, ["𐌻𐌰𐌼𐌱", "noun", "𐌻𐌰𐌼𐌱𐌰", "𐌻𐌰𐌼𐌱𐌹𐍃", "𐌻𐌰𐌼𐌱𐌰", "", "sheep woolly ruminant"]) + let v = native_list_append(v, ["𐌻𐌰𐌼𐌱𐌰", "noun", "𐌻𐌰𐌼𐌱𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌼𐌱𐌴", "noun", "𐌻𐌰𐌼𐌱𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌼𐌱𐌰𐌼", "noun", "𐌻𐌰𐌼𐌱𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌸𐍃", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌸𐌴𐌹𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌸𐌰𐌹𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌸𐌰𐌹", "", "congregation community"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐍉𐌽𐍃", "noun", "𐌳𐌰𐌿𐍂𐍉𐌽𐍉", "", "𐌳𐌰𐌿𐍂𐍉𐌼", "", "double gate"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐍉𐌼", "noun", "𐌳𐌰𐌿𐍂𐍉𐌼", "", "", "", "dative of 𐌳𐌰𐌿𐍂𐍉𐌽𐍃"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍅𐌰", "noun", "𐌷𐌻𐌰𐌹𐍅𐌰", "", "", "", "inflection of 𐌷𐌻𐌰𐌹𐍅"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍅𐌹𐍃", "noun", "𐌷𐌻𐌰𐌹𐍅𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐍃", "noun", "𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐌴", "𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐌹𐍃", "𐌽𐌰𐍃𐌾𐌰𐌽𐌳", "", "saviour substantivized from"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌾𐌰𐌽𐌳", "noun", "𐌽𐌰𐍃𐌾𐌰𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐌹𐍃", "noun", "𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌸𐍂𐌿𐍃", "noun", "𐍅𐌹𐌸𐍂𐌾𐌿𐍃", "𐍅𐌹𐌸𐍂𐌰𐌿𐍃", "𐍅𐌹𐌸𐍂𐌰𐌿", "", "lamb young sheep"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐍄𐌿𐌻𐌰", "noun", "𐌰𐌹𐍀𐌹𐍃𐍄𐌿𐌻𐌰𐌽𐍃", "𐌰𐌹𐍀𐌹𐍃𐍄𐌿𐌻𐌹𐌽𐍃", "𐌰𐌹𐍀𐌹𐍃𐍄𐌿𐌻𐌹𐌽", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐍄𐌿𐌻𐌰𐌽𐍃", "noun", "𐌰𐌹𐍀𐌹𐍃𐍄𐌿𐌻𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍀𐌰𐍂𐌰𐍃𐌺𐌰𐌹𐍅𐌴𐌹𐌽", "noun", "𐍀𐌰𐍂𐌰𐍃𐌺𐌰𐌹𐍅𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽", "noun", "𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌼", "noun", "𐌰𐌹𐍀𐌹𐍃𐍄𐌰𐌿𐌻𐌴𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌱𐌰𐍂𐌿𐍃", "noun", "𐌱𐌰𐍂𐌱𐌰𐍂𐌾𐌿𐍃", "𐌱𐌰𐍂𐌱𐌰𐍂𐌰𐌿𐍃", "𐌱𐌰𐍂𐌱𐌰𐍂𐌰𐌿", "", "barbarian"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺", "noun", "𐍃𐌺𐌰𐌻𐌺", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐍃", "noun", "𐍃𐌺𐌰𐌻𐌺𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌰", "noun", "𐍃𐌺𐌰𐌻𐌺𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌴", "noun", "𐍃𐌺𐌰𐌻𐌺𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌰𐌼", "noun", "𐍃𐌺𐌰𐌻𐌺𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌰𐌽𐍃", "noun", "𐍃𐌺𐌰𐌻𐌺𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐍉𐍃", "noun", "𐍃𐌺𐌰𐌻𐌺𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃", "noun", "𐌰𐌹𐍅𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴", "noun", "𐌰𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅", "noun", "𐌰𐌹𐍅", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰", "noun", "𐌰𐌹𐍅𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌼", "noun", "𐌰𐌹𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌲𐌰", "noun", "𐍃𐍄𐌰𐌹𐌲𐍉𐍃", "𐍃𐍄𐌰𐌹𐌲𐍉𐍃", "𐍃𐍄𐌰𐌹𐌲𐌰𐌹", "", "way path road"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌲𐍉𐍃", "noun", "𐍃𐍄𐌰𐌹𐌲𐍉𐍃", "", "", "", "inflection of 𐍃𐍄𐌰𐌹𐌲𐌰"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐍉𐍃", "noun", "𐌸𐌹𐌿𐌳𐍉𐍃", "", "", "", "inflection of 𐌸𐌹𐌿𐌳𐌰"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐍉", "noun", "𐌸𐌹𐌿𐌳𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐍉𐌼", "noun", "𐌸𐌹𐌿𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌹", "noun", "𐌸𐌹𐌿𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌴", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌹𐍃", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌰", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐌰𐌼", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽𐍉𐍃", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐌽", "noun", "𐌸𐌹𐌿𐌳𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐌰𐍂𐌾𐌴", "noun", "𐌱𐍉𐌺𐌰𐍂𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐌰𐍂𐌾𐍉𐍃", "noun", "𐌱𐍉𐌺𐌰𐍂𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐌰𐍂𐌾𐌰𐌽𐍃", "noun", "𐌱𐍉𐌺𐌰𐍂𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐌰𐍂𐌾𐌰𐌼", "noun", "𐌱𐍉𐌺𐌰𐍂𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌴", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌼", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "noun", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "noun", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌻𐌸𐌰", "noun", "𐌲𐌿𐌻𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐍂𐌰𐍃𐌴", "noun", "𐌲𐍂𐌰𐍃𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰", "noun", "𐌳𐌰𐌿𐍂𐌰", "", "", "", "inflection of 𐌳𐌰𐌿𐍂"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐌶𐌰𐌼", "noun", "𐌳𐌹𐌿𐌶𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌲𐌹𐍃", "noun", "𐌳𐌿𐌻𐌲𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐍉𐌼", "noun", "𐌳𐍉𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌼", "noun", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍈𐌰𐍄𐌿𐌽𐌳𐌹", "noun", "𐌰𐌹𐍈𐌰𐍄𐌿𐌽𐌳𐌾𐍉𐍃", "𐌰𐌹𐍈𐌰𐍄𐌿𐌽𐌳𐌾𐍉𐍃", "𐌰𐌹𐍈𐌰𐍄𐌿𐌽𐌳𐌾𐌰𐌹", "", "bramble thorny shrub"]) + let v = native_list_append(v, ["𐌰𐌹𐍈𐌰𐍄𐌿𐌽𐌳𐌾𐌰𐌹", "noun", "𐌰𐌹𐍈𐌰𐍄𐌿𐌽𐌳𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌹𐌶𐌰", "noun", "𐌷𐌰𐍄𐌹𐌶𐌰", "", "", "", "inflection of 𐌷𐌰𐍄𐌹𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌹𐌶𐌴", "noun", "𐌷𐌰𐍄𐌹𐌶𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌱𐌹𐌳𐌰", "noun", "𐌷𐌰𐌿𐌱𐌹𐌳𐌰", "", "", "", "inflection of 𐌷𐌰𐌿𐌱𐌹𐌸"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌱𐌹𐌳𐌹𐍃", "noun", "𐌷𐌰𐌿𐌱𐌹𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌴", "noun", "𐌷𐌰𐌿𐍂𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰", "noun", "𐌷𐌿𐌽𐌳𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐌼", "noun", "𐌷𐌿𐌽𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐍉𐍃", "noun", "𐌷𐌿𐌽𐌳𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐌽𐍃", "noun", "𐌷𐌿𐌽𐌳𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐍃𐌻𐌰", "noun", "𐌷𐌿𐌽𐍃𐌻𐌰", "", "", "", "inflection of 𐌷𐌿𐌽𐍃𐌻"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐍃𐌻𐌴", "noun", "𐌷𐌿𐌽𐍃𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐍉𐍂𐍉𐍃", "noun", "𐌷𐍉𐍂𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐍉𐍂𐌰𐌼", "noun", "𐌷𐍉𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐍅𐍉𐍃", "noun", "𐌸𐌹𐍅𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐍅𐌴", "noun", "𐌸𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐌹𐍃𐌰𐍂𐌹𐍃", "noun", "𐌺𐌰𐌹𐍃𐌰𐍂𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐌹𐍃𐌰𐍂𐌰", "noun", "𐌺𐌰𐌹𐍃𐌰𐍂𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌽𐌹𐍃", "noun", "𐌺𐌰𐌿𐍂𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐍄𐌹𐌻𐌴", "noun", "𐌺𐌰𐍄𐌹𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐌳𐌹𐌽𐌹𐍃", "noun", "𐌺𐌹𐌽𐌳𐌹𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐌳𐌹𐌽𐌰", "noun", "𐌺𐌹𐌽𐌳𐌹𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌺𐌽𐌹𐍅𐌰", "noun", "𐌺𐌽𐌹𐍅𐌰", "", "", "", "inflection of 𐌺𐌽𐌹𐌿"]) + let v = native_list_append(v, ["𐌺𐌽𐌹𐍅𐌴", "noun", "𐌺𐌽𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌽𐌹𐍅𐌰𐌼", "noun", "𐌺𐌽𐌹𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰𐌼", "noun", "𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰", "noun", "𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌰𐍂𐌹", "noun", "𐌻𐌰𐌹𐍃𐌰𐍂𐌹", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰𐌽𐍃", "noun", "𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌽𐌳𐌹𐍃", "noun", "𐌻𐌰𐌽𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌽𐌳𐌰", "noun", "𐌻𐌰𐌽𐌳𐌰", "", "", "", "inflection of 𐌻𐌰𐌽𐌳"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍆", "noun", "𐌻𐌰𐌿𐍆", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌱𐍉𐍃", "noun", "𐌻𐌰𐌿𐌱𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌰", "noun", "𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐌻𐌴𐌹𐌺"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌹𐍃", "noun", "𐌻𐌴𐌹𐌺𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴", "noun", "𐌻𐌴𐌹𐌺𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌽𐌰", "noun", "𐌻𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌻𐌴𐌹𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐍂𐌰", "noun", "𐌻𐌹𐌲𐍂𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐍂𐌰𐌼", "noun", "𐌻𐌹𐌲𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐍂𐌴", "noun", "𐌻𐌹𐌲𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐍂", "noun", "𐌻𐌹𐌲𐍂", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌸𐌻𐌰", "noun", "𐌼𐌰𐌸𐌻𐌰", "", "", "", "inflection of 𐌼𐌰𐌸𐌻"]) + let v = native_list_append(v, ["𐌼𐌴𐌺𐌹", "noun", "𐌼𐌴𐌺𐌹", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐌼𐍃𐍄𐌴𐌹", "noun", "𐌸𐍂𐌰𐌼𐍃𐍄𐌴𐌹𐌽𐍃", "𐌸𐍂𐌰𐌼𐍃𐍄𐌴𐌹𐌽𐍃", "𐌸𐍂𐌰𐌼𐍃𐍄𐌴𐌹𐌽", "", "grasshopper locust insect"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐌼𐍃𐍄𐌴𐌹𐌽𐍃", "noun", "𐌸𐍂𐌰𐌼𐍃𐍄𐌴𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌸", "noun", "𐌼𐌿𐌽𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌸𐌹𐍃", "noun", "𐌼𐌿𐌽𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌸𐌰", "noun", "𐌼𐌿𐌽𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌾𐌴𐍂𐌰", "noun", "𐌾𐌴𐍂𐌰", "", "", "", "inflection of 𐌾𐌴𐍂"]) + let v = native_list_append(v, ["𐌾𐌴𐍂𐌰𐌼", "noun", "𐌾𐌴𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌾𐌴𐍂𐌴", "noun", "𐌾𐌴𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌺𐌰", "noun", "𐌾𐌿𐌺𐌰", "", "", "", "inflection of 𐌾𐌿𐌺"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌰", "noun", "𐍂𐌹𐌵𐌹𐌶𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌹𐍃", "noun", "𐍂𐌹𐌵𐌹𐌶𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐍄𐌰", "noun", "𐍃𐌰𐌻𐍄𐌰", "", "", "", "inflection of 𐍃𐌰𐌻𐍄"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂𐌹𐍃", "noun", "𐍃𐌹𐌻𐌿𐌱𐍂𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌾𐍉𐍃", "noun", "𐍃𐌹𐍀𐍉𐌽𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌾𐌰𐌽𐍃", "noun", "𐍃𐌹𐍀𐍉𐌽𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌾𐌴", "noun", "𐍃𐌹𐍀𐍉𐌽𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌾𐌰𐌼", "noun", "𐍃𐌹𐍀𐍉𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌹", "noun", "𐍃𐌹𐍀𐍉𐌽𐌹", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌻𐌰𐌽𐍃", "noun", "𐍃𐌹𐍄𐌻𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌻𐍉𐍃", "noun", "𐍃𐌹𐍄𐌻𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐍀𐌰", "noun", "𐍃𐌺𐌹𐍀𐌰", "", "", "", "inflection of 𐍃𐌺𐌹𐍀"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐍀𐌴", "noun", "𐍃𐌺𐌹𐍀𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌰", "noun", "𐍃𐍄𐌰𐌹𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽", "noun", "𐍃𐍄𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌰𐌼", "noun", "𐍃𐍄𐌰𐌹𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌰𐌽𐍃", "noun", "𐍃𐍄𐌰𐌹𐌽𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐍉𐍃", "noun", "𐍃𐍄𐌰𐌹𐌽𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐌻", "noun", "𐍃𐍄𐌹𐌺𐌻", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐌻𐌹𐍃", "noun", "𐍃𐍄𐌹𐌺𐌻𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐌻𐌰", "noun", "𐍃𐍄𐌹𐌺𐌻𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐌻𐌴", "noun", "𐍃𐍄𐌹𐌺𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌻", "noun", "𐍃𐍄𐍉𐌻", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐌹𐌽𐌰", "noun", "𐍃𐍅𐌴𐌹𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐌹𐌽𐌴", "noun", "𐍃𐍅𐌴𐌹𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐌻𐌰", "noun", "𐍄𐌰𐌲𐌻𐌰", "", "", "", "inflection of 𐍄𐌰𐌲𐌻"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐌻𐌰𐌼", "noun", "𐍄𐌰𐌲𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐍅𐌰𐌼", "noun", "𐍄𐍂𐌹𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌲", "noun", "𐍅𐌰𐌲𐌲", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐍂𐌰𐌼", "noun", "𐍄𐌰𐌲𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌲𐍂𐌴", "noun", "𐍄𐌰𐌲𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍉𐍃", "noun", "𐍅𐌰𐌹𐍂𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌰𐌽𐍃", "noun", "𐍅𐌰𐌹𐍂𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌴", "noun", "𐍅𐌰𐌹𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌰𐌼", "noun", "𐍅𐌰𐌹𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌰", "noun", "𐍅𐌰𐌹𐍂𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌹𐍃", "noun", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌴", "noun", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌰", "noun", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌰", "", "", "", "inflection of 𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌹"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌰𐌼", "noun", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲", "noun", "𐍅𐌹𐌲", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐍉𐍃", "noun", "𐍅𐌹𐌲𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐌰𐌽𐍃", "noun", "𐍅𐌹𐌲𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐌰𐌼", "noun", "𐍅𐌹𐌲𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐌰", "noun", "𐍅𐌹𐌲𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌳𐌰𐌼", "noun", "𐍅𐌹𐌽𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌳𐌰", "noun", "𐍅𐌹𐌽𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌳𐌹𐍃", "noun", "𐍅𐌹𐌽𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌳𐍉𐍃", "noun", "𐍅𐌹𐌽𐌳𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰", "noun", "𐍅𐌹𐍄𐍉𐌳𐌰", "", "", "", "inflection of 𐍅𐌹𐍄𐍉𐌸"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌹𐍃", "noun", "𐍅𐌹𐍄𐍉𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐍆𐍉𐍃", "noun", "𐍅𐌿𐌻𐍆𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐍆𐌴", "noun", "𐍅𐌿𐌻𐍆𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐍆", "noun", "𐍅𐌿𐌻𐍆", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌲𐌲𐍂𐌰𐌽𐍃", "noun", "𐍆𐌹𐌲𐌲𐍂𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌿𐌲𐌻𐍉𐍃", "noun", "𐍆𐌿𐌲𐌻𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐌿𐌲𐌻𐌰𐌼", "noun", "𐍆𐌿𐌲𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌿𐍃𐍄𐌰𐌿", "noun", "𐌰𐌲𐌿𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹", "noun", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹𐌽𐍃", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹𐌽𐍃", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹𐌽", "", "bishopric"]) + let v = native_list_append(v, ["𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹𐌽𐍃", "noun", "𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐍀𐌹𐍃𐌺𐌰𐌿𐍀𐌴𐌹"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌰𐌿𐌻𐌰𐌿", "noun", "𐌳𐌹𐌰𐌱𐌰𐌿𐌻𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌿𐌻𐌿𐍃", "noun", "𐌳𐌹𐌰𐌱𐌿𐌻𐌾𐌿𐍃", "𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌿𐍃", "𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌿", "", "alternative form of"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌿", "noun", "𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌿𐍃", "noun", "𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌰𐌿", "noun", "𐌷𐌰𐌽𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌼", "noun", "𐌷𐌰𐌽𐌳𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌹𐍅𐌴", "noun", "𐌷𐌰𐌽𐌳𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌽𐍃", "noun", "𐌷𐌰𐌽𐌳𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿", "noun", "𐌷𐌰𐌽𐌳𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐍄𐌿", "noun", "𐌺𐌹𐌽𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐌻𐌱𐌰𐌽𐌳𐌰𐌿", "noun", "𐌿𐌻𐌱𐌰𐌽𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌻𐌱𐌰𐌽𐌳𐌰𐌿𐍃", "noun", "𐌿𐌻𐌱𐌰𐌽𐌳𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌳𐌰𐌿", "noun", "𐍃𐌺𐌰𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌰𐌿", "noun", "𐍃𐌿𐌽𐌰𐌿", "", "", "", "vocative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌿𐌼", "noun", "𐍃𐌿𐌽𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌹𐍅𐌴", "noun", "𐍃𐌿𐌽𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌰𐌿𐍃", "noun", "𐍃𐌿𐌽𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌿", "noun", "𐍃𐌿𐌽𐌿", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌿𐌽𐍃", "noun", "𐍃𐌿𐌽𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌿𐍃", "noun", "𐍃𐌿𐌽𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌰𐌿", "noun", "𐍆𐌰𐌹𐌷𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿𐌼", "noun", "𐍆𐍉𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌹𐍅𐌴", "noun", "𐍆𐍉𐍄𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿𐌽𐍃", "noun", "𐍆𐍉𐍄𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿", "noun", "𐍆𐍉𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌾𐌿𐍃", "noun", "𐍆𐍉𐍄𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳", "noun", "𐍆𐌹𐌾𐌰𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐌹𐍃", "noun", "𐍆𐌹𐌾𐌰𐌽𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐌴", "noun", "𐍆𐌹𐌾𐌰𐌽𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐌰𐌼", "noun", "𐍆𐌹𐌾𐌰𐌽𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌰𐌼", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌿𐌼", "noun", "𐌱𐍂𐍉𐌸𐍂𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂", "noun", "𐌱𐍂𐍉𐌸𐍂", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐍃", "noun", "𐌱𐍂𐍉𐌸𐍂𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌴", "noun", "𐌱𐍂𐍉𐌸𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌿𐌽𐍃", "noun", "𐌱𐍂𐍉𐌸𐍂𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌾𐌿𐍃", "noun", "𐌱𐍂𐍉𐌸𐍂𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌷𐍄𐍂", "noun", "𐌳𐌰𐌿𐌷𐍄𐍂", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌷𐍄𐍂𐌿𐌼", "noun", "𐌳𐌰𐌿𐌷𐍄𐍂𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐍃𐍄𐍂𐌾𐌿𐍃", "noun", "𐍃𐍅𐌹𐍃𐍄𐍂𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐍃𐍄𐍂𐌿𐌽𐍃", "noun", "𐍃𐍅𐌹𐍃𐍄𐍂𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐍃𐍄𐍂𐍃", "noun", "𐍃𐍅𐌹𐍃𐍄𐍂𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐌰𐍂", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂𐌾𐌿𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂", "", "a false brother"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂𐌴", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂𐌿𐌼", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌱𐍂𐍉𐌸𐍂𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌿𐌹𐌽", "noun", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌿𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐍃𐌰𐌼", "noun", "𐌰𐌿𐍃𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐍃𐍉𐌽𐌰", "noun", "𐌰𐌿𐍃𐍉𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐌾𐌰𐌽", "noun", "𐌱𐌰𐌽𐌳𐌾𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐌾𐌹𐌽𐍃", "noun", "𐌱𐌰𐌽𐌳𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌼𐌰𐌽𐍃", "noun", "𐌱𐌻𐍉𐌼𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌲𐌰𐌽", "noun", "𐌲𐌰𐌻𐌲𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌲𐌹𐌽𐍃", "noun", "𐌲𐌰𐌻𐌲𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌲𐌹𐌽", "noun", "𐌲𐌰𐌻𐌲𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌹𐌽", "noun", "𐌲𐌿𐌳𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌹𐌽𐍃", "noun", "𐌲𐌿𐌳𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌰𐌽𐌴", "noun", "𐌲𐌿𐌳𐌾𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌰𐌼", "noun", "𐌲𐌿𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌰𐌽𐍃", "noun", "𐌲𐌿𐌳𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌰𐌽𐌴", "noun", "𐌲𐌿𐌼𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐍄𐌹𐌽𐍃", "noun", "𐌷𐌰𐌹𐍂𐍄𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐍄𐌹𐌽", "noun", "𐌷𐌰𐌹𐍂𐍄𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐍄𐌰𐌼", "noun", "𐌷𐌰𐌹𐍂𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐍄𐌰𐌽𐌴", "noun", "𐌷𐌰𐌹𐍂𐍄𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐍄𐍉𐌽𐌰", "noun", "𐌷𐌰𐌹𐍂𐍄𐍉𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐌹𐌽", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐌹𐌽𐍃", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐌰𐌽𐍃", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌿𐍉𐍃", "noun", "𐍃𐍄𐌰𐌿𐍉𐍃", "", "", "", "inflection of 𐍃𐍄𐌰𐌿𐌰"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌿𐌰𐌹", "noun", "𐍃𐍄𐌰𐌿𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌿𐌹𐌽", "noun", "𐍃𐍄𐌰𐌿𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌼𐌹𐌽", "noun", "𐍃𐍄𐍉𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍄𐌹𐌽", "noun", "𐍅𐌰𐍄𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍄𐌹𐌽𐍃", "noun", "𐍅𐌰𐍄𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍄𐌽𐌰𐌼", "noun", "𐍅𐌰𐍄𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌰𐌽", "noun", "𐍆𐌿𐌻𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌹𐌽", "noun", "𐍆𐌿𐌻𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌰𐌽", "noun", "𐍆𐍂𐌰𐌿𐌾𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍃", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌰𐌼", "noun", "𐍆𐍂𐌰𐌿𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌰𐌽𐍃", "noun", "𐍆𐍂𐌰𐌿𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲", "noun", "𐌱𐌰𐌿𐍂𐌲", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐌴", "noun", "𐌱𐌰𐌿𐍂𐌲𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐌹𐌼", "noun", "𐌱𐌰𐌿𐍂𐌲𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄𐌰𐌼", "noun", "𐌽𐌰𐌷𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄", "noun", "𐌽𐌰𐌷𐍄", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽", "noun", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐍉𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌴𐌹𐌽", "noun", "𐌲𐍉𐌻𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼", "noun", "𐌷𐌰𐌹𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐌰𐌹", "noun", "𐌷𐌰𐌹𐌼𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐍉𐍃", "noun", "𐌷𐌰𐌹𐌼𐍉𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐍉", "noun", "𐌷𐌰𐌹𐌼𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐍉𐌼", "noun", "𐌷𐌰𐌹𐌼𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌹𐍃", "noun", "𐍃𐌹𐌲𐌹𐍃𐌰", "𐍃𐌹𐌲𐌹𐍃𐌹𐍃", "𐍃𐌹𐌲𐌹𐍃𐌰", "", "victory"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽", "noun", "𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽𐌰", "𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽𐌹𐍃", "𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽𐌰", "", "prize spoils"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽𐌰", "noun", "𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽𐌰", "", "", "", "inflection of 𐍃𐌹𐌲𐌹𐍃𐌻𐌰𐌿𐌽"]) + let v = native_list_append(v, ["𐌷𐌹𐍅𐌹", "noun", "𐌷𐌹𐍅𐌾𐌰", "𐌷𐌹𐍅𐌾𐌹𐍃", "𐌷𐌹𐍅𐌾𐌰", "", "appearance form"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌹𐌼", "noun", "𐌱𐌰𐌿𐍂𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐍂𐌴𐍆𐍄𐌰𐌹", "noun", "𐌲𐌰𐌲𐍂𐌴𐍆𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐌰𐌹", "noun", "𐌳𐌰𐌹𐌻𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻", "noun", "𐌳𐌰𐌹𐌻", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐌴", "noun", "𐌳𐌰𐌹𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌵𐌴𐌽𐌰𐌹", "noun", "𐌵𐌴𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌵𐌴𐌽𐌰𐌹𐍃", "noun", "𐌵𐌴𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌵𐌴𐌽", "noun", "𐌵𐌴𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌵𐌴𐌽𐌹𐌽𐍃", "noun", "𐌵𐌴𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌹𐍃", "noun", "𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌰", "noun", "𐌷𐌿𐌽𐍃𐌻𐌰𐍃𐍄𐌰𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌹𐍆𐌰𐌳𐌹𐌼", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌹𐍆𐌰𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌽𐌰𐌹", "noun", "𐌻𐌹𐌱𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "noun", "𐌻𐌹𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌽", "noun", "𐌻𐌹𐌱𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐍄𐌹𐌽𐍃", "noun", "𐌻𐌹𐍃𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹𐍃", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌸", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍅𐌹𐍃", "noun", "𐌽𐌰𐍅𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍅𐌴𐌹𐍃", "noun", "𐌽𐌰𐍅𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐍅𐌹𐌽𐍃", "noun", "𐌽𐌰𐍅𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌸", "noun", "𐍃𐌰𐌿𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌳𐌹𐌼", "noun", "𐍃𐌰𐌿𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌸", "noun", "𐍃𐍄𐌰𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳𐌹𐍃", "noun", "𐍃𐍄𐌰𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳𐌰", "noun", "𐍃𐍄𐌰𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳𐌹𐌼", "noun", "𐍃𐍄𐌰𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳𐌴", "noun", "𐍃𐍄𐌰𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳𐌹𐌽𐍃", "noun", "𐍃𐍄𐌰𐌳𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍄", "noun", "𐍅𐌰𐌹𐌷𐍄𐌰", "𐍅𐌰𐌹𐌷𐍄𐌹𐍃", "𐍅𐌰𐌹𐌷𐍄𐌰", "", "thing"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "noun", "𐍅𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍄𐌰𐌹", "noun", "𐍅𐌰𐌹𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍄𐌴", "noun", "𐍅𐌰𐌹𐌷𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍄𐌹𐌽𐍃", "noun", "𐍅𐌰𐌹𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐍃", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐍃", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐌽𐍃", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐌼", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍃𐍄𐌴𐌹𐌽", "noun", "𐌸𐌰𐌿𐍂𐍃𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽", "noun", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽𐍃", "noun", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐌴𐌹"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽𐍉", "noun", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌼", "noun", "𐌼𐌰𐌽𐌰𐌲𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌵𐌰𐌳𐌴𐌹𐌽", "noun", "𐌽𐌰𐌵𐌰𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐍉𐌺𐍂𐍃", "noun", "𐍅𐍉𐌺𐍂𐍉𐍃", "𐍅𐍉𐌺𐍂𐌹𐍃", "𐍅𐍉𐌺𐍂𐌰", "", "usury"]) + let v = native_list_append(v, ["𐍅𐍉𐌺𐍂𐌰", "noun", "𐍅𐍉𐌺𐍂𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐍉𐍃", "noun", "𐌱𐌹𐌳𐍉𐍃", "", "", "", "inflection of 𐌱𐌹𐌳𐌰"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌰𐌹", "noun", "𐌱𐌹𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐍉𐌼", "noun", "𐌱𐌹𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐍉", "noun", "𐌱𐌹𐌳𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐍉𐍃", "noun", "𐌳𐌰𐌹𐌻𐍉𐍃", "", "", "", "inflection of 𐌳𐌰𐌹𐌻𐌰"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐍉", "noun", "𐌳𐌰𐌹𐌻𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐍂𐌺𐌰𐍂𐌰𐌹", "noun", "𐌺𐌰𐍂𐌺𐌰𐍂𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐍂𐌺𐌰𐍂𐍉𐌼", "noun", "𐌺𐌰𐍂𐌺𐌰𐍂𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐌳𐍉𐍃", "noun", "𐍀𐌰𐌹𐌳𐍉𐍃", "", "", "", "inflection of 𐍀𐌰𐌹𐌳𐌰"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐌳𐍉𐌼", "noun", "𐍀𐌰𐌹𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌳𐍉𐍃", "noun", "𐍂𐌰𐌶𐌳𐍉𐍃", "", "", "", "inflection of 𐍂𐌰𐌶𐌳𐌰"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌳𐍉", "noun", "𐍂𐌰𐌶𐌳𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌳𐌰𐌹", "noun", "𐍂𐌰𐌶𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍂𐌰𐌶𐌳𐍉𐌼", "noun", "𐍂𐌰𐌶𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐌿𐌽𐌰𐌹", "noun", "𐍂𐌿𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍂𐌿𐌽𐍉𐍃", "noun", "𐍂𐌿𐌽𐍉𐍃", "", "", "", "inflection of 𐍂𐌿𐌽𐌰"]) + let v = native_list_append(v, ["𐍃𐌿𐌻𐌾𐍉𐌼", "noun", "𐍃𐌿𐌻𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌱𐌽𐍉𐍃", "noun", "𐍃𐍄𐌹𐌱𐌽𐍉𐍃", "", "", "", "inflection of 𐍃𐍄𐌹𐌱𐌽𐌰"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌱𐌽𐌰𐌹", "noun", "𐍃𐍄𐌹𐌱𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌿𐌻𐌲𐌹𐌸𐍉", "noun", "𐍄𐌿𐌻𐌲𐌹𐌸𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌼𐌱𐍉𐍃", "noun", "𐍅𐌰𐌼𐌱𐍉𐍃", "", "", "", "inflection of 𐍅𐌰𐌼𐌱𐌰"]) + let v = native_list_append(v, ["𐍅𐌰𐌼𐌱𐌰𐌹", "noun", "𐍅𐌰𐌼𐌱𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌾𐍉𐍃", "noun", "𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌾𐍉𐍃", "", "", "", "inflection of 𐍅𐌿𐌽𐌳𐌿𐍆𐌽𐌹"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐍉𐍃", "noun", "𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐍉𐍃", "", "", "", "inflection of 𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐌰"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐌰𐌹", "noun", "𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐍉𐍃", "noun", "𐍈𐌴𐌹𐌻𐍉𐍃", "", "", "", "inflection of 𐍈𐌴𐌹𐌻𐌰"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐍉", "noun", "𐍈𐌴𐌹𐌻𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰𐌹", "noun", "𐍈𐌴𐌹𐌻𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌽𐌾𐍉𐌽", "noun", "𐌱𐍂𐌿𐌽𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐍉𐌽", "noun", "𐌵𐌹𐌽𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐍉𐌽𐍃", "noun", "𐌵𐌹𐌽𐍉𐌽𐍃", "", "", "", "inflection of 𐌵𐌹𐌽𐍉"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐍉𐌽𐍉", "noun", "𐌵𐌹𐌽𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐍉𐌼", "noun", "𐌵𐌹𐌽𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌽𐍉𐌽", "noun", "𐍃𐌿𐌽𐌽𐍉𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐍂𐌽𐍉𐌽𐍃", "noun", "𐍃𐍄𐌰𐌹𐍂𐌽𐍉𐌽𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍄𐌿𐌲𐌲𐍉𐌽𐍃", "noun", "𐍄𐌿𐌲𐌲𐍉𐌽𐍃", "", "", "", "inflection of 𐍄𐌿𐌲𐌲𐍉"]) + let v = native_list_append(v, ["𐍄𐌿𐌲𐌲𐍉𐌽", "noun", "𐍄𐌿𐌲𐌲𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐌷𐍉𐌽𐍃", "noun", "𐍆𐌰𐌿𐌷𐍉𐌽𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌷𐍂𐌿𐍃", "noun", "𐌷𐌿𐌷𐍂𐌾𐌿𐍃", "𐌷𐌿𐌷𐍂𐌰𐌿𐍃", "𐌷𐌿𐌷𐍂𐌰𐌿", "", "hunger"]) + let v = native_list_append(v, ["𐌷𐌿𐌷𐍂𐌰𐌿", "noun", "𐌷𐌿𐌷𐍂𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹", "noun", "𐌲𐌰𐌿𐌾𐌰", "𐌲𐌰𐌿𐌾𐌹𐍃", "𐌲𐌰𐌿𐌾𐌰", "", "land region environment"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐌾𐌰", "noun", "𐌲𐌰𐌿𐌾𐌰𐌽𐍃", "𐌲𐌰𐌿𐌾𐌹𐌽𐍃", "𐌲𐌰𐌿𐌾𐌹𐌽", "", "inhabitant of a"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐌾𐌹𐍃", "noun", "𐌲𐌰𐌿𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐌱𐌰𐍃𐌹", "noun", "𐍅𐌴𐌹𐌽𐌰𐌱𐌰𐍃𐌾𐌰", "𐍅𐌴𐌹𐌽𐌰𐌱𐌰𐍃𐌾𐌹𐍃", "𐍅𐌴𐌹𐌽𐌰𐌱𐌰𐍃𐌾𐌰", "", "grape fruit"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐌱𐌰𐍃𐌾𐌰", "noun", "𐍅𐌴𐌹𐌽𐌰𐌱𐌰𐍃𐌾𐌰", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌹", "noun", "𐌷𐌰𐌿𐍂𐌾𐌰", "𐌷𐌰𐌿𐍂𐌾𐌹𐍃", "𐌷𐌰𐌿𐍂𐌾𐌰", "", "coal smouldering material"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌾𐌰", "noun", "𐌷𐌰𐌿𐍂𐌾𐌰", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐍉", "noun", "𐌰𐌲𐌻𐍉𐌽𐍃", "𐌰𐌲𐌻𐍉𐌽𐍃", "𐌰𐌲𐌻𐍉𐌽", "", "trouble tribulation suffering"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐍉𐌽", "noun", "𐌰𐌲𐌻𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐍉𐌽𐍃", "noun", "𐌰𐌲𐌻𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌲𐌻𐍉"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐍉𐌽𐍉", "noun", "𐌰𐌲𐌻𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐍉𐌼", "noun", "𐌰𐌲𐌻𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌿𐌽𐍃", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐍃", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌿𐌼", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽𐍃", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽", "", "apostleship"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽𐍃", "noun", "𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍃𐌰𐌽𐍃", "noun", "𐌰𐍃𐌰𐌽𐌴𐌹𐍃", "𐌰𐍃𐌰𐌽𐌰𐌹𐍃", "𐌰𐍃𐌰𐌽𐌰𐌹", "", "harvest yield of"]) + let v = native_list_append(v, ["𐌰𐍃𐌰𐌽", "noun", "𐌰𐍃𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐍃𐌰𐌽𐌰𐌹𐍃", "noun", "𐌰𐍃𐌰𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌻𐌹𐍄𐍃", "noun", "𐍅𐌻𐌹𐍄𐍉𐍃", "𐍅𐌻𐌹𐍄𐌹𐍃", "𐍅𐌻𐌹𐍄𐌰", "", "face"]) + let v = native_list_append(v, ["𐍅𐌻𐌹𐍄", "noun", "𐍅𐌻𐌹𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌻𐌹𐍄𐌹𐍃", "noun", "𐍅𐌻𐌹𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌻𐌹𐍄𐌰", "noun", "𐍅𐌻𐌹𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌰𐌹𐌽𐌽𐌰", "noun", "𐌲𐌰𐌹𐌰𐌹𐌽𐌽𐌰𐌽𐍃", "𐌲𐌰𐌹𐌰𐌹𐌽𐌽𐌹𐌽𐍃", "𐌲𐌰𐌹𐌰𐌹𐌽𐌽𐌹𐌽", "", "hell"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌰𐌹𐌽𐌽𐌰𐌽", "noun", "𐌲𐌰𐌹𐌰𐌹𐌽𐌽𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌾𐌰", "noun", "𐌷𐌰𐌻𐌾𐍉𐍃", "𐌷𐌰𐌻𐌾𐍉𐍃", "𐌷𐌰𐌻𐌾𐌰𐌹", "", "the underworld"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌾𐌰𐌹", "noun", "𐌷𐌰𐌻𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐍃", "noun", "𐌼𐌴𐍃𐌰", "𐌼𐌴𐍃𐌹𐍃", "𐌼𐌴𐍃𐌰", "", "table"]) + let v = native_list_append(v, ["𐌼𐌴𐍃𐌰", "noun", "𐌼𐌴𐍃𐌰", "", "", "", "inflection of 𐌼𐌴𐍃"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺", "noun", "𐌳𐍂𐌰𐌲𐌺𐌰", "𐌳𐍂𐌰𐌲𐌺𐌹𐍃", "𐌳𐍂𐌰𐌲𐌺𐌰", "", "drink"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐍃", "noun", "𐌳𐍂𐌿𐍃𐌴𐌹𐍃", "𐌳𐍂𐌿𐍃𐌹𐍃", "𐌳𐍂𐌿𐍃𐌰", "", "a fall"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐍃𐌰", "noun", "𐌳𐍂𐌿𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌹", "noun", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌰", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌹𐍃", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌰", "", "mountain"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌰", "noun", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌰", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌹"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌹𐍃", "noun", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌴", "noun", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌰𐌼", "noun", "𐍆𐌰𐌹𐍂𐌲𐌿𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐌱𐍂", "noun", "𐌰𐌹𐌱𐍂𐌰", "𐌰𐌹𐌱𐍂𐌹𐍃", "𐌰𐌹𐌱𐍂𐌰", "", "gift offering"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌿𐍃", "noun", "𐌰𐌹𐍂𐌾𐌿𐍃", "𐌰𐌹𐍂𐌰𐌿𐍃", "𐌰𐌹𐍂𐌰𐌿", "", "messenger envoy"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌿", "noun", "𐌰𐌹𐍂𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌿𐌽𐍃", "noun", "𐌰𐌹𐍂𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌿𐌼", "noun", "𐌰𐌹𐍂𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌴𐌹𐍃", "noun", "𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐍉𐍃", "𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐌴", "𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐌰", "", "one possessed by"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐌰𐌽𐍃", "noun", "𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐍉𐍃", "noun", "𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌹", "noun", "𐌳𐌰𐌹𐌼𐍉𐌽𐌰𐍂𐌹", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌴𐌹", "noun", "𐍆𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "𐍆𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "𐍆𐍂𐍉𐌳𐌴𐌹𐌽", "", "wisdom"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌴𐌹𐌽", "noun", "𐍆𐍂𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌷𐍃𐍄𐌿𐍃", "noun", "𐍅𐌰𐌷𐍃𐍄𐌾𐌿𐍃", "𐍅𐌰𐌷𐍃𐍄𐌰𐌿𐍃", "𐍅𐌰𐌷𐍃𐍄𐌰𐌿", "", "size stature"]) + let v = native_list_append(v, ["𐍅𐌰𐌷𐍃𐍄𐌰𐌿", "noun", "𐍅𐌰𐌷𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌷𐍃𐍄𐌰𐌿𐍃", "noun", "𐍅𐌰𐌷𐍃𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌷𐍃𐍄𐌿", "noun", "𐍅𐌰𐌷𐍃𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍄𐌹", "noun", "𐌽𐌰𐍄𐌾𐌰", "𐌽𐌰𐍄𐌾𐌹𐍃", "𐌽𐌰𐍄𐌾𐌰", "", "net"]) + let v = native_list_append(v, ["𐌽𐌰𐍄𐌾𐌰", "noun", "𐌽𐌰𐍄𐌾𐌰", "", "", "", "inflection of 𐌽𐌰𐍄𐌹"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹𐍃𐍃", "noun", "𐌲𐌰𐍅𐌹𐍃𐍃𐌴𐌹𐍃", "𐌲𐌰𐍅𐌹𐍃𐍃𐌰𐌹𐍃", "𐌲𐌰𐍅𐌹𐍃𐍃𐌰𐌹", "", "joint ligament"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹𐍃𐍃𐌹𐌽𐍃", "noun", "𐌲𐌰𐍅𐌹𐍃𐍃𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐍃", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌴𐌹𐍃", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌰𐌹𐍃", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌰𐌹", "", "commandment"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌹𐌽𐍃", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌴", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌹𐌼", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌰𐌹", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌰𐌹𐍃", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐍃𐌽", "noun", "𐌰𐌽𐌰𐌱𐌿𐍃𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐍂𐌹𐌸𐌰", "noun", "𐌲𐌰𐌿𐍂𐌹𐌸𐍉𐍃", "𐌲𐌰𐌿𐍂𐌹𐌸𐍉𐍃", "𐌲𐌰𐌿𐍂𐌹𐌸𐌰𐌹", "", "grief sorrow"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐍂𐌴𐌹", "noun", "𐌲𐌰𐌿𐍂𐌴𐌹𐌽𐍃", "𐌲𐌰𐌿𐍂𐌴𐌹𐌽𐍃", "𐌲𐌰𐌿𐍂𐌴𐌹𐌽", "", "sorrow"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐍂𐌴𐌹𐌽", "noun", "𐌲𐌰𐌿𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌳𐍅", "noun", "𐌲𐌰𐌹𐌳𐍅𐌰", "𐌲𐌰𐌹𐌳𐍅𐌹𐍃", "𐌲𐌰𐌹𐌳𐍅𐌰", "", "lack want"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌳𐍅𐌰", "noun", "𐌲𐌰𐌹𐌳𐍅𐌰", "", "", "", "inflection of 𐌲𐌰𐌹𐌳𐍅"]) + let v = native_list_append(v, ["𐍆𐍉𐌳𐍂", "noun", "𐍆𐍉𐌳𐍂", "", "", "", "scabbard"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌸𐍂𐌰𐍃𐍄𐌰𐌺𐌴𐌹𐌽𐍃", "noun", "𐌷𐌻𐌴𐌸𐍂𐌰𐍃𐍄𐌰𐌺𐌴𐌹𐌽𐍉𐍃", "𐌷𐌻𐌴𐌸𐍂𐌰𐍃𐍄𐌰𐌺𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐌻𐌴𐌸𐍂𐌰𐍃𐍄𐌰𐌺𐌴𐌹𐌽𐌰𐌹", "", "the feast of"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌸𐍂𐌰", "noun", "𐌷𐌻𐌴𐌹𐌸𐍂𐍉𐍃", "𐌷𐌻𐌴𐌹𐌸𐍂𐍉𐍃", "𐌷𐌻𐌴𐌹𐌸𐍂𐌰𐌹", "", "hut tent"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌸𐍂𐍉𐍃", "noun", "𐌷𐌻𐌴𐌹𐌸𐍂𐍉𐍃", "", "", "", "inflection of 𐌷𐌻𐌴𐌹𐌸𐍂𐌰"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌸𐍂𐌰𐌹", "noun", "𐌷𐌻𐌴𐌹𐌸𐍂𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍀𐌰𐍃𐌺𐌰", "noun", "𐍀𐌰𐍃𐌺𐌰", "", "", "", "Easter"]) + let v = native_list_append(v, ["𐍀𐌰𐍃𐍇𐌰", "noun", "𐍀𐌰𐍃𐍇𐌰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍃", "noun", "𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍉𐍃", "𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "obedience"]) + let v = native_list_append(v, ["𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "noun", "𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽", "noun", "𐌿𐍆𐌷𐌰𐌿𐍃𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐍃", "noun", "𐌼𐌹𐍄𐍉𐌽𐌴𐌹𐍃", "𐌼𐌹𐍄𐍉𐌽𐌰𐌹𐍃", "𐌼𐌹𐍄𐍉𐌽𐌰𐌹", "", "thought opinion deliberation"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽", "noun", "𐌼𐌹𐍄𐍉𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐌹𐌽𐍃", "noun", "𐌼𐌹𐍄𐍉𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐌴", "noun", "𐌼𐌹𐍄𐍉𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐌴𐌹𐍃", "noun", "𐌼𐌹𐍄𐍉𐌽𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "warfare"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "", "a work deed"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐌽𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐌽", "", "a worker"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌼", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐍃", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌽𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌽𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌽", "", "an act deed"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌽", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌽𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌹𐌽𐍃", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌹𐌽", "", "a worker esp."]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌽", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌽𐍃", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌼", "noun", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "fornication adultery lechery"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "noun", "𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌱𐌹", "noun", "𐌸𐌹𐌿𐌱𐌾𐌰", "𐌸𐌹𐌿𐌱𐌾𐌹𐍃", "𐌸𐌹𐌿𐌱𐌾𐌰", "", "theft"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌱𐌾𐌰", "noun", "𐌸𐌹𐌿𐌱𐌾𐌰", "", "", "", "inflection of 𐌸𐌹𐌿𐌱𐌹"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌱𐌴", "noun", "𐌸𐌹𐌿𐌱𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌱𐍉𐍃", "noun", "𐌸𐌹𐌿𐌱𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹", "noun", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹𐌽𐍃", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹𐌽", "", "the sin of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹𐌽", "noun", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹𐌽𐍃", "noun", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐌴𐌹", "noun", "𐌻𐌹𐌿𐍄𐌴𐌹𐌽𐍃", "𐌻𐌹𐌿𐍄𐌴𐌹𐌽𐍃", "𐌻𐌹𐌿𐍄𐌴𐌹𐌽", "", "deceit dishonesty"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐌴𐌹𐌽", "noun", "𐌻𐌹𐌿𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌿𐌷𐍄𐍃", "noun", "𐍃𐌻𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐍃𐌻𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "𐍃𐌻𐌰𐌿𐌷𐍄𐌰𐌹", "", "slaughter"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "noun", "𐍃𐌻𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌴𐌹", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌴𐌹𐌽𐍃", "𐌰𐌲𐌻𐌰𐌹𐍄𐌴𐌹𐌽𐍃", "𐌰𐌲𐌻𐌰𐌹𐍄𐌴𐌹𐌽", "", "fornication lustfulness lewdness"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌴𐌹𐌽", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐍉 𐌿𐌽𐍃𐌴𐌻", "noun", "𐌰𐌿𐌲𐍉 𐌿𐌽𐍃𐌴𐌻", "", "", "", "evil eye"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌴𐌹", "noun", "𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌴𐌹", "𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽𐍃", "𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "", "pride haughtiness hubris"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍄𐌹", "noun", "𐌿𐌽𐍅𐌹𐍄𐌹", "𐌿𐌽𐍅𐌹𐍄𐌾𐌹𐍃", "𐌿𐌽𐍅𐌹𐍄𐌾𐌰", "", "ignorance folly"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍄𐌾𐌹𐍃", "noun", "𐌿𐌽𐍅𐌹𐍄𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐌰", "noun", "𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉𐍃", "𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉𐍃", "𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐌰𐌹", "", "crumb scrap of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉𐍃", "noun", "𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉𐍃", "", "", "", "inflection of 𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐌰"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉", "noun", "𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉𐌼", "noun", "𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌳𐍃", "noun", "𐌷𐌰𐌿𐍂𐌳𐌴𐌹𐍃", "𐌷𐌰𐌿𐍂𐌳𐌰𐌹𐍃", "𐌷𐌰𐌿𐍂𐌳𐌰𐌹", "", "a door especially"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌳𐌰𐌹", "noun", "𐌷𐌰𐌿𐍂𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌳", "noun", "𐌷𐌰𐌿𐍂𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌳𐌹𐌽𐍃", "noun", "𐌷𐌰𐌿𐍂𐌳𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐍃", "noun", "𐌺𐌰𐍃𐌰", "𐌺𐌰𐍃𐌹𐍃", "𐌺𐌰𐍃𐌰", "", "jar pot vessel"]) + let v = native_list_append(v, ["𐌺𐌰𐍃𐌰", "noun", "𐌺𐌰𐍃𐌰", "", "", "", "inflection of 𐌺𐌰𐍃"]) + let v = native_list_append(v, ["𐌺𐌰𐍃𐌴", "noun", "𐌺𐌰𐍃𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐍃𐌰𐌼", "noun", "𐌺𐌰𐍃𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌹𐌸𐌰", "noun", "𐍃𐍅𐌴𐍂𐌹𐌸𐍉𐍃", "𐍃𐍅𐌴𐍂𐌹𐌸𐍉𐍃", "𐍃𐍅𐌴𐍂𐌹𐌸𐌰𐌹", "", "honour"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌹𐌸𐍉𐍃", "noun", "𐍃𐍅𐌴𐍂𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐍃𐍅𐌴𐍂𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌹𐌸𐌰𐌹", "noun", "𐍃𐍅𐌴𐍂𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌹𐌸𐍉", "noun", "𐍃𐍅𐌴𐍂𐌹𐌸𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌰𐍅𐌹𐌳𐌰", "noun", "𐌺𐌿𐌽𐌰𐍅𐌹𐌳𐍉𐍃", "𐌺𐌿𐌽𐌰𐍅𐌹𐌳𐍉𐍃", "𐌺𐌿𐌽𐌰𐍅𐌹𐌳𐌰𐌹", "", "fetter chain"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌰𐍅𐌹𐌳𐍉𐌼", "noun", "𐌺𐌿𐌽𐌰𐍅𐌹𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌹𐌻𐌸𐌰", "noun", "𐌲𐌹𐌻𐌸𐍉𐍃", "𐌲𐌹𐌻𐌸𐍉𐍃", "𐌲𐌹𐌻𐌸𐌰𐌹", "", "sickle"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌳𐌰", "noun", "𐌷𐌰𐌹𐍂𐌳𐍉𐍃", "𐌷𐌰𐌹𐍂𐌳𐍉𐍃", "𐌷𐌰𐌹𐍂𐌳𐌰𐌹", "", "herd group of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌳𐌰𐌹", "noun", "𐌷𐌰𐌹𐍂𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐍂𐍂𐌴𐌹", "noun", "𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽𐍃", "𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽𐍃", "𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽", "", "meekness gentleness"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽", "noun", "𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽𐍃", "noun", "𐌵𐌰𐌹𐍂𐍂𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌵𐌰𐌹𐍂𐍂𐌴𐌹"]) + let v = native_list_append(v, ["𐍅𐍂𐌿𐌲𐌲𐍉", "noun", "𐍅𐍂𐌿𐌲𐌲𐍉𐌽𐍃", "𐍅𐍂𐌿𐌲𐌲𐍉𐌽𐍃", "𐍅𐍂𐌿𐌲𐌲𐍉𐌽", "", "a snare"]) + let v = native_list_append(v, ["𐍅𐍂𐌿𐌲𐌲𐍉𐌽", "noun", "𐍅𐍂𐌿𐌲𐌲𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌳𐌰𐌿", "noun", "𐍃𐌹𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌳𐌿", "noun", "𐍃𐌹𐌳𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌹𐍅𐌰𐌽𐌴𐌹", "noun", "𐌿𐌽𐌳𐌹𐍅𐌰𐌽𐌴𐌹𐌽𐍃", "𐌿𐌽𐌳𐌹𐍅𐌰𐌽𐌴𐌹𐌽𐍃", "𐌿𐌽𐌳𐌹𐍅𐌰𐌽𐌴𐌹𐌽", "", "immortality"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌹𐍅𐌰𐌽𐌴𐌹𐌽", "noun", "𐌿𐌽𐌳𐌹𐍅𐌰𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌸𐌿𐍃", "noun", "𐌻𐌹𐌸𐌾𐌿𐍃", "𐌻𐌹𐌸𐌰𐌿𐍃", "𐌻𐌹𐌸𐌰𐌿", "", "limb member"]) + let v = native_list_append(v, ["𐌻𐌹𐌸𐌿𐌼", "noun", "𐌻𐌹𐌸𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌸𐌹𐍅𐌴", "noun", "𐌻𐌹𐌸𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌸𐌿𐌽𐍃", "noun", "𐌻𐌹𐌸𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌸𐌾𐌿𐍃", "noun", "𐌻𐌹𐌸𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌳𐌿𐍃", "noun", "𐌰𐌿𐌷𐌾𐍉𐌳𐌾𐌿𐍃", "𐌰𐌿𐌷𐌾𐍉𐌳𐌰𐌿𐍃", "𐌰𐌿𐌷𐌾𐍉𐌳𐌰𐌿", "", "tumult"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌳𐌰𐌿", "noun", "𐌰𐌿𐌷𐌾𐍉𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌳𐌿", "noun", "𐌰𐌿𐌷𐌾𐍉𐌳𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐍃𐌰𐌿", "noun", "𐌰𐌿𐌷𐍃𐌰𐌿", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐍃𐌿𐌼", "noun", "𐌰𐌿𐌷𐍃𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "worship"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌿", "noun", "𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "noun", "𐌱𐌻𐍉𐍄𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐍅𐌹𐍄𐌹", "noun", "𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌰", "𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌹𐍃", "𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌰", "", "patience"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌰", "noun", "𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌰", "", "", "", "inflection of 𐍃𐍄𐌹𐍅𐌹𐍄𐌹"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌹𐍃", "noun", "𐍃𐍄𐌹𐍅𐌹𐍄𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺", "noun", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌰", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌹𐍃", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌰", "", "amazement astonishment"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌹𐍂𐌸𐍂", "noun", "𐍃𐌼𐌰𐌹𐍂𐌸𐍂𐌰", "𐍃𐌼𐌰𐌹𐍂𐌸𐍂𐌹𐍃", "𐍃𐌼𐌰𐌹𐍂𐌸𐍂𐌰", "", "fat grease"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌹𐍂𐌸𐍂𐌰", "noun", "𐍃𐌼𐌰𐌹𐍂𐌸𐍂𐌰", "", "", "", "inflection of 𐍃𐌼𐌰𐌹𐍂𐌸𐍂"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌴𐌹", "noun", "𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽", "", "pity compassion mercy"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽", "noun", "𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "noun", "𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌱𐌻𐌴𐌹𐌸𐌴𐌹"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐍇𐌰𐍂𐌹𐍃𐍄𐌹𐌰", "noun", "𐌰𐌹𐍅𐍇𐌰𐍂𐌹𐍃𐍄𐌹𐌰", "", "", "", "thanksgiving the Eucharist"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐍇𐌰𐍂𐌹𐍃𐍄𐌹𐌰𐌽", "noun", "𐌰𐌹𐍅𐍇𐌰𐍂𐌹𐍃𐍄𐌹𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍃𐍄𐌰", "noun", "𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐌽𐍃", "𐍅𐌰𐌹𐌷𐍃𐍄𐌹𐌽𐍃", "𐍅𐌰𐌹𐌷𐍃𐍄𐌹𐌽", "", "corner"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍃𐍄𐌹𐌽𐍃", "noun", "𐍅𐌰𐌹𐌷𐍃𐍄𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐌼", "noun", "𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌲𐌲𐍅𐌰", "noun", "𐍃𐌺𐌿𐌲𐌲𐍅𐌰𐌽𐍃", "𐍃𐌺𐌿𐌲𐌲𐍅𐌹𐌽𐍃", "𐍃𐌺𐌿𐌲𐌲𐍅𐌹𐌽", "", "mirror looking-glass"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌲𐌲𐍅𐌰𐌽", "noun", "𐍃𐌺𐌿𐌲𐌲𐍅𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌵𐍂𐌰𐌼𐌼𐌹𐌸𐌰", "noun", "𐌵𐍂𐌰𐌼𐌼𐌹𐌸𐍉𐍃", "𐌵𐍂𐌰𐌼𐌼𐌹𐌸𐍉𐍃", "𐌵𐍂𐌰𐌼𐌼𐌹𐌸𐌰𐌹", "", "moisture"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌰𐌸𐍅𐍉𐍃", "noun", "𐍆𐍂𐌹𐌰𐌸𐍅𐍉𐍃", "", "", "", "inflection of 𐍆𐍂𐌹𐌾𐌰𐌸𐍅𐌰"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌹", "noun", "𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐌼𐍃", "noun", "𐌷𐌹𐌻𐌼𐍉𐍃", "𐌷𐌹𐌻𐌼𐌹𐍃", "𐌷𐌹𐌻𐌼𐌰", "", "helmet"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐌼𐌰", "noun", "𐌷𐌹𐌻𐌼𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐌼", "noun", "𐌷𐌹𐌻𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹", "noun", "𐌲𐌰𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌾𐍉𐌽𐍃", "noun", "𐌲𐌰𐍆𐍂𐌹𐌾𐍉𐌽𐌴𐌹𐍃", "𐌲𐌰𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹𐍃", "𐌲𐌰𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹", "", "kiss"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐌴𐌹𐍃", "noun", "𐍂𐌰𐌲𐌹𐌽𐌾𐍉𐍃", "𐍂𐌰𐌲𐌹𐌽𐌾𐌴", "𐍂𐌰𐌲𐌹𐌽𐌾𐌰", "", "advisor counsellor"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐌾𐌰𐌼", "noun", "𐍂𐌰𐌲𐌹𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌱𐌰𐍄𐌴", "noun", "𐍃𐌰𐌱𐌱𐌰𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌱𐌰𐍄𐌹𐌼", "noun", "𐍃𐌰𐌱𐌱𐌰𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌹𐌸𐌰", "noun", "𐍅𐌴𐌹𐌷𐌹𐌸𐍉𐍃", "𐍅𐌴𐌹𐌷𐌹𐌸𐍉𐍃", "𐍅𐌴𐌹𐌷𐌹𐌸𐌰𐌹", "", "sanctity holiness"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌹𐌸𐌰𐌹", "noun", "𐍅𐌴𐌹𐌷𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐌰𐌱𐍉𐌺𐌰", "noun", "𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐌰𐌱𐍉𐌺𐍉𐍃", "𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐌰𐌱𐍉𐌺𐍉𐍃", "𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐌰𐌱𐍉𐌺𐌰𐌹", "", "deed of sale"]) + let v = native_list_append(v, ["-𐌹𐌳𐌰", "noun", "-𐌹𐌳𐍉𐍃", "-𐌹𐌳𐍉𐍃", "-𐌹𐌳𐌰𐌹", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐍆", "noun", "𐌱𐌹𐌻𐌰𐌹𐍆", "", "", "", "meaning unknown possibly"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍀", "noun", "𐍅𐌰𐌹𐍀", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍀𐍃", "noun", "𐍅𐌰𐌹𐍀𐍉𐍃", "𐍅𐌰𐌹𐍀𐌹𐍃", "𐍅𐌰𐌹𐍀𐌰", "", "crown laurel wreath"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍄𐍂𐌴𐌹", "noun", "𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽𐍃", "𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽𐍃", "𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽", "", "bitterness"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽", "noun", "𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽𐍃", "noun", "𐌱𐌰𐌹𐍄𐍂𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌱𐌰𐌹𐍄𐍂𐌴𐌹"]) + let v = native_list_append(v, ["𐍅𐌰𐍃𐍄𐌹", "noun", "𐍅𐌰𐍃𐍄𐌾𐍉𐍃", "𐍅𐌰𐍃𐍄𐌾𐍉𐍃", "𐍅𐌰𐍃𐍄𐌾𐌰𐌹", "", "a garment piece"]) + let v = native_list_append(v, ["𐍅𐌰𐍃𐍄𐌾𐍉𐍃", "noun", "𐍅𐌰𐍃𐍄𐌾𐍉𐍃", "", "", "", "inflection of 𐍅𐌰𐍃𐍄𐌹"]) + let v = native_list_append(v, ["𐍅𐌰𐍃𐍄𐌾𐌰", "noun", "𐍅𐌰𐍃𐍄𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍃𐍄𐌾𐌰𐌹", "noun", "𐍅𐌰𐍃𐍄𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍃𐍄𐌾𐍉𐌼", "noun", "𐍅𐌰𐍃𐍄𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹", "noun", "𐌲𐌰𐌱𐌴𐌹𐌽𐍃", "𐌲𐌰𐌱𐌴𐌹𐌽𐍃", "𐌲𐌰𐌱𐌴𐌹𐌽", "", "wealth riches"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌽", "noun", "𐌲𐌰𐌱𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌱𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐌱𐌴𐌹"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌸𐍃", "noun", "𐍆𐌰𐌷𐌴𐌳𐌴𐌹𐍃", "𐍆𐌰𐌷𐌴𐌳𐌰𐌹𐍃", "𐍆𐌰𐌷𐌴𐌳𐌰𐌹", "", "joy"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌳𐍃", "noun", "𐍆𐌰𐌷𐌴𐌳𐌴𐌹𐍃", "𐍆𐌰𐌷𐌴𐌳𐌰𐌹𐍃", "𐍆𐌰𐌷𐌴𐌳𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌳𐌰𐌹", "noun", "𐍆𐌰𐌷𐌴𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌳𐌰𐌹𐍃", "noun", "𐍆𐌰𐌷𐌴𐌳𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌳", "noun", "𐍆𐌰𐌷𐌴𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐌽𐍄𐌴𐌺𐌿𐍃𐍄𐌴", "noun", "𐍀𐌰𐌹𐌽𐍄𐌴𐌺𐌿𐍃𐍄𐌴", "", "", "", "Pentecost"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐌽𐍄𐌴𐌺𐌿𐍃𐍄𐌴𐌽", "noun", "𐍀𐌰𐌹𐌽𐍄𐌴𐌺𐌿𐍃𐍄𐌴𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌿𐍃", "noun", "𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌾𐌿𐍃", "𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌰𐌿𐍃", "𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌰𐌿", "", "deacon"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌿𐌽𐍃", "noun", "𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌾𐌿𐍃", "noun", "𐌳𐌹𐌰𐌺𐌰𐌿𐌽𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌳𐌿𐍃", "noun", "𐍅𐌰𐌹𐍂𐌳𐌾𐌿𐍃", "𐍅𐌰𐌹𐍂𐌳𐌰𐌿𐍃", "𐍅𐌰𐌹𐍂𐌳𐌰𐌿", "", "host"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌽𐌾𐌿𐍃", "noun", "𐌳𐍂𐌿𐌽𐌾𐌾𐌿𐍃", "𐌳𐍂𐌿𐌽𐌾𐌰𐌿𐍃", "𐌳𐍂𐌿𐌽𐌾𐌰𐌿", "", "sound"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌹𐍀𐍀𐌿", "noun", "𐍆𐌹𐌻𐌹𐍀𐍀𐌿", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌹𐍀𐍀𐌰𐌿𐍃", "noun", "𐍆𐌹𐌻𐌹𐍀𐍀𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌹𐍀𐍀𐌰𐌿", "noun", "𐍆𐌹𐌻𐌹𐍀𐍀𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌹𐌸𐌰", "noun", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌹𐌸𐍉𐍃", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌹𐌸𐍉𐍃", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌹𐌸𐌰𐌹", "", "alms"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "noun", "𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "", "", "", "inflection of 𐌱𐌹𐌼𐌰𐌹𐍄"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌹𐍃", "noun", "𐌱𐌹𐌼𐌰𐌹𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄", "noun", "𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "𐌱𐌹𐌼𐌰𐌹𐍄𐌹𐍃", "𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "", "circumcision"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌽𐌽𐌰", "noun", "𐌱𐍂𐌿𐌽𐌽𐌰𐌽𐍃", "𐌱𐍂𐌿𐌽𐌽𐌹𐌽𐍃", "𐌱𐍂𐌿𐌽𐌽𐌹𐌽", "", "source wellspring"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐍅𐌹𐍄𐍉𐌸", "noun", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐍅𐌹𐍄𐍉𐌳𐌰", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐍅𐌹𐍄𐍉𐌳𐌹𐍃", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐍅𐌹𐍄𐍉𐌳𐌰", "", "warfare"]) + let v = native_list_append(v, ["𐌰𐍂𐌺𐌰𐌲𐌲𐌹𐌻𐌿𐍃", "noun", "𐌰𐍂𐌺𐌰𐌲𐌲𐌹𐌻𐌾𐌿𐍃", "𐌰𐍂𐌺𐌰𐌲𐌲𐌹𐌻𐌰𐌿𐍃", "𐌰𐍂𐌺𐌰𐌲𐌲𐌹𐌻𐌰𐌿", "", "archangel"]) + let v = native_list_append(v, ["𐌰𐍂𐌺𐌰𐌲𐌲𐌹𐌻𐌰𐌿𐍃", "noun", "𐌰𐍂𐌺𐌰𐌲𐌲𐌹𐌻𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌹𐌽", "noun", "𐌰𐌹𐌲𐌹𐌽𐌰", "𐌰𐌹𐌲𐌹𐌽𐌹𐍃", "𐌰𐌹𐌲𐌹𐌽𐌰", "", "property"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌹𐌽𐌰", "noun", "𐌰𐌹𐌲𐌹𐌽𐌰", "", "", "", "inflection of 𐌰𐌹𐌲𐌹𐌽"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌹𐌽𐌹𐍃", "noun", "𐌰𐌹𐌲𐌹𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌹𐌽𐌰𐌼", "noun", "𐌰𐌹𐌲𐌹𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐍃", "noun", "𐌸𐌰𐌿𐍂𐍆𐍄𐌴𐌹𐍃", "𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹𐍃", "𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹", "", "need"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹𐍃", "noun", "𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐌴", "noun", "𐌸𐌰𐌿𐍂𐍆𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿", "noun", "𐌼𐌰𐌲𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐌼", "noun", "𐌼𐌰𐌲𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐍃", "noun", "𐌼𐌰𐌲𐌾𐌿𐍃", "𐌼𐌰𐌲𐌰𐌿𐍃", "𐌼𐌰𐌲𐌰𐌿", "", "boy"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌹𐍅𐌴", "noun", "𐌼𐌰𐌲𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌿", "noun", "𐌼𐌰𐌲𐌰𐌿", "", "", "", "vocative/dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲𐌰𐌼𐍉𐌳𐌴𐌹", "noun", "𐌻𐌰𐌲𐌲𐌰𐌼𐍉𐌳𐌴𐌹", "𐌻𐌰𐌲𐌲𐌰𐌼𐍉𐌳𐌴𐌹𐌽𐍃", "𐌻𐌰𐌲𐌲𐌰𐌼𐍉𐌳𐌴𐌹𐌽", "", "longanimity patience forbearance"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲𐌰𐌼𐍉𐌳𐌴𐌹𐌽", "noun", "𐌻𐌰𐌲𐌲𐌰𐌼𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲𐌴𐌹", "noun", "𐌻𐌰𐌲𐌲𐌴𐌹𐌽𐍃", "𐌻𐌰𐌲𐌲𐌴𐌹𐌽𐍃", "𐌻𐌰𐌲𐌲𐌴𐌹𐌽", "", "length"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌹𐌳𐌴𐌹", "noun", "𐌱𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐍃", "𐌱𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐍃", "𐌱𐍂𐌰𐌹𐌳𐌴𐌹𐌽", "", "breadth width"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍀𐌴𐌹", "noun", "𐌳𐌹𐌿𐍀𐌴𐌹𐌽𐍃", "𐌳𐌹𐌿𐍀𐌴𐌹𐌽𐍃", "𐌳𐌹𐌿𐍀𐌴𐌹𐌽", "", "depth"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍀𐌹𐌸𐌰", "noun", "𐌳𐌹𐌿𐍀𐌹𐌸𐍉𐍃", "𐌳𐌹𐌿𐍀𐌹𐌸𐍉𐍃", "𐌳𐌹𐌿𐍀𐌹𐌸𐌰𐌹", "", "depth"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐌸𐌰", "noun", "𐌷𐌰𐌿𐌷𐌹𐌸𐍉𐍃", "𐌷𐌰𐌿𐌷𐌹𐌸𐍉𐍃", "𐌷𐌰𐌿𐌷𐌹𐌸𐌰𐌹", "", "height"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍀𐌹𐌸𐌰𐌹", "noun", "𐌳𐌹𐌿𐍀𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐌸𐍉𐍃", "noun", "𐌷𐌰𐌿𐌷𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐌷𐌰𐌿𐌷𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐌸𐌰𐌹", "noun", "𐌷𐌰𐌿𐌷𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌹𐌸𐌰", "noun", "𐌰𐌲𐌻𐌹𐌸𐍉𐍃", "𐌰𐌲𐌻𐌹𐌸𐍉𐍃", "𐌰𐌲𐌻𐌹𐌸𐌰𐌹", "", "tribulation"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌹𐌸𐍉𐍃", "noun", "𐌰𐌲𐌻𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐌰𐌲𐌻𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌺𐌽𐌹𐌸𐌰", "noun", "𐌰𐌹𐍂𐌺𐌽𐌹𐌸𐍉𐍃", "𐌰𐌹𐍂𐌺𐌽𐌹𐌸𐍉𐍃", "𐌰𐌹𐍂𐌺𐌽𐌹𐌸𐌰𐌹", "", "sincerity purity of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌴𐌹", "noun", "𐌰𐌹𐍂𐌶𐌴𐌹𐌽𐍃", "𐌰𐌹𐍂𐌶𐌴𐌹𐌽𐍃", "𐌰𐌹𐍂𐌶𐌴𐌹𐌽", "", "error of doctrine"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌴𐌹𐌽", "noun", "𐌰𐌹𐍂𐌶𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌴𐌹𐌽𐍃", "noun", "𐌰𐌹𐍂𐌶𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐍂𐌶𐌴𐌹"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌹𐌸𐌰", "noun", "𐌰𐌹𐍂𐌶𐌹𐌸𐍉𐍃", "𐌰𐌹𐍂𐌶𐌹𐌸𐍉𐍃", "𐌰𐌹𐍂𐌶𐌹𐌸𐌰𐌹", "", "error of doctrine"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌹𐌸𐍉𐍃", "noun", "𐌰𐌹𐍂𐌶𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐌰𐌹𐍂𐌶𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌹", "noun", "𐍆𐍂𐌰𐌸𐌾𐌰", "𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "𐍆𐍂𐌰𐌸𐌾𐌰", "", "reason mind intellect"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌾𐌰", "noun", "𐍆𐍂𐌰𐌸𐌾𐌰", "", "", "", "inflection of 𐍆𐍂𐌰𐌸𐌹"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "noun", "𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌾𐌴", "noun", "𐍆𐍂𐌰𐌸𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌾𐌰𐌼", "noun", "𐍆𐍂𐌰𐌸𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌹𐌸𐌰", "noun", "𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌹𐌸𐍉𐍃", "𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌹𐌸𐍉𐍃", "𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "", "renewal"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "noun", "𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐌽𐌰", "noun", "𐌰𐌷𐌰𐌽𐍉𐍃", "𐌰𐌷𐌰𐌽𐍉𐍃", "𐌰𐌷𐌰𐌽𐌰𐌹", "", "chaff"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌼𐌿𐌽𐌳𐌹𐌸𐌰", "noun", "𐌰𐌹𐌽𐌰𐌼𐌿𐌽𐌳𐌹𐌸𐌰", "𐌰𐌹𐌽𐌰𐌼𐌿𐌽𐌳𐌹𐌸𐍉𐍃", "𐌰𐌹𐌽𐌰𐌼𐌿𐌽𐌳𐌹𐌸𐌰𐌹", "", "unity"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌼𐌿𐌽𐌳𐌹𐌸𐍉𐍃", "noun", "𐌰𐌹𐌽𐌰𐌼𐌿𐌽𐌳𐌹𐌸𐍉𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐍂𐍈𐌰𐌶𐌽𐌰", "noun", "𐌰𐍂𐍈𐌰𐌶𐌽𐍉𐍃", "𐌰𐍂𐍈𐌰𐌶𐌽𐍉𐍃", "𐌰𐍂𐍈𐌰𐌶𐌽𐌰𐌹", "", "missile air-based weapon"]) + let v = native_list_append(v, ["𐌰𐍂𐍈𐌰𐌶𐌽𐍉𐍃", "noun", "𐌰𐍂𐍈𐌰𐌶𐌽𐍉𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌰", "noun", "𐌷𐌰𐌽𐌰𐌽𐍃", "𐌷𐌰𐌽𐌹𐌽𐍃", "𐌷𐌰𐌽𐌹𐌽", "", "rooster cock male"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌹𐌽𐍃", "noun", "𐌷𐌰𐌽𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐍉𐍄𐌰", "noun", "𐌱𐍉𐍄𐍉𐍃", "𐌱𐍉𐍄𐍉𐍃", "𐌱𐍉𐍄𐌰𐌹", "", "benefit use"]) + let v = native_list_append(v, ["𐌱𐍉𐍄𐍉𐍃", "noun", "𐌱𐍉𐍄𐍉𐍃", "", "", "", "inflection of 𐌱𐍉𐍄𐌰"]) + let v = native_list_append(v, ["𐌱𐍉𐍄𐍉", "noun", "𐌱𐍉𐍄𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐍉𐍄𐌰𐌹", "noun", "𐌱𐍉𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌱𐌹𐌸𐌰", "noun", "𐌳𐌰𐌿𐌱𐌹𐌸𐌰", "𐌳𐌰𐌿𐌱𐌹𐌸𐍉𐍃", "𐌳𐌰𐌿𐌱𐌹𐌸𐌰𐌹", "", "callousness hardness of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌱𐌹𐌸𐍉𐍃", "noun", "𐌳𐌰𐌿𐌱𐌹𐌸𐍉𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍃", "noun", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐍃", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌹𐍃", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌰", "", "porter gatekeeper"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌰", "noun", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐍃", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐍃", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌰𐌹", "", "female porter or"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐍃", "noun", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌴", "noun", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌰𐌹", "noun", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉", "noun", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐌽𐍃", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐌽𐍃", "𐌳𐌰𐌿𐍂𐌰𐍅𐌰𐍂𐌳𐍉𐌽", "", "female porter or"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌿𐌻𐌰", "noun", "𐌳𐌹𐌰𐌱𐌿𐌻𐍉𐍃", "𐌳𐌹𐌰𐌱𐌿𐌻𐍉𐍃", "𐌳𐌹𐌰𐌱𐌿𐌻𐌰𐌹", "", "slanderer"]) + let v = native_list_append(v, ["𐌳𐌹𐌰𐌱𐌿𐌻𐍉𐍃", "noun", "𐌳𐌹𐌰𐌱𐌿𐌻𐍉𐍃", "", "", "", "inflection of 𐌳𐌹𐌰𐌱𐌿𐌻𐌰"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌹𐌽𐌰", "noun", "𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐍃", "𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐍃", "𐍆𐌰𐌹𐍂𐌹𐌽𐌰𐌹", "", "guilt"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐍃", "noun", "𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐍃", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌹𐌽𐌰"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌹𐌽𐍉", "noun", "𐍆𐌰𐌹𐍂𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌹𐌸𐌰", "noun", "𐍆𐌰𐌹𐍂𐌽𐌹𐌸𐍉𐍃", "𐍆𐌰𐌹𐍂𐌽𐌹𐌸𐍉𐍃", "𐍆𐌰𐌹𐍂𐌽𐌹𐌸𐌰𐌹", "", "antiquity oldness"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌹𐌸𐌰𐌹", "noun", "𐍆𐌰𐌹𐍂𐌽𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌶𐌽𐌰", "noun", "𐍆𐌰𐌹𐍂𐌶𐌽𐍉𐍃", "𐍆𐌰𐌹𐍂𐌶𐌽𐍉𐍃", "𐍆𐌰𐌹𐍂𐌶𐌽𐌰𐌹", "", "heel"]) + let v = native_list_append(v, ["𐍆𐌰𐌸𐌰", "noun", "𐍆𐌰𐌸𐍉𐍃", "𐍆𐌰𐌸𐍉𐍃", "𐍆𐌰𐌸𐌰𐌹", "", "fence hedge"]) + let v = native_list_append(v, ["𐍆𐌰𐌸𐍉𐍃", "noun", "𐍆𐌰𐌸𐍉𐍃", "", "", "", "inflection of 𐍆𐌰𐌸𐌰"]) + let v = native_list_append(v, ["𐍆𐌰𐌸𐍉𐌼", "noun", "𐍆𐌰𐌸𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌴𐍂𐍉", "noun", "𐍆𐌴𐍂𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌴𐍂𐌰𐌹", "noun", "𐍆𐌴𐍂𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌸𐍅𐌰", "noun", "𐍆𐌹𐌾𐌰𐌸𐍅𐍉𐍃", "𐍆𐌹𐌾𐌰𐌸𐍅𐍉𐍃", "𐍆𐌹𐌾𐌰𐌸𐍅𐌰𐌹", "", "hate hatred enmity"]) + let v = native_list_append(v, ["𐍆𐌹𐌰𐌸𐍅𐍉𐍃", "noun", "𐍆𐌹𐌰𐌸𐍅𐍉𐍃", "", "", "", "inflection of 𐍆𐌹𐌾𐌰𐌸𐍅𐌰"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌰𐍀𐌹𐍃", "noun", "𐍃𐌹𐌽𐌰𐍀𐌹𐍃", "", "", "", "mustard plant Sinapis"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐌰𐌻𐌹", "noun", "𐌰𐌿𐍂𐌰𐌻𐌾𐌰", "𐌰𐌿𐍂𐌰𐌻𐌾𐌹𐍃", "𐌰𐌿𐍂𐌰𐌻𐌾𐌰", "", "kerchief napkin"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐌰𐌻𐌾𐌰", "noun", "𐌰𐌿𐍂𐌰𐌻𐌾𐌰", "", "", "", "inflection of 𐌰𐌿𐍂𐌰𐌻𐌹"]) + let v = native_list_append(v, ["𐌱𐌰𐌳𐌹", "noun", "𐌱𐌰𐌳𐌾𐌰", "𐌱𐌰𐌳𐌾𐌹𐍃", "𐌱𐌰𐌳𐌾𐌰", "", "bed"]) + let v = native_list_append(v, ["𐌱𐌰𐌳𐌾𐌰", "noun", "𐌱𐌰𐌳𐌾𐌰", "", "", "", "inflection of 𐌱𐌰𐌳𐌹"]) + let v = native_list_append(v, ["𐌱𐌰𐌳𐌾𐌰𐌼", "noun", "𐌱𐌰𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌹", "noun", "𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌰", "𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌹𐍃", "𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌰", "", "miracle wonder marvel"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌰", "noun", "𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌰", "", "", "", "inflection of 𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌹"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌰𐌼", "noun", "𐍆𐌰𐌿𐍂𐌰𐍄𐌰𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐍅𐌹", "noun", "𐌷𐌰𐍅𐌹", "𐌷𐌰𐌿𐌾𐌹𐍃", "𐌷𐌰𐌿𐌾𐌰", "", "grass hay"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌹", "noun", "𐍄𐍉𐌾𐌰", "𐍄𐍉𐌾𐌹𐍃", "𐍄𐍉𐌾𐌰", "", "deed act accomplishment"]) + let v = native_list_append(v, ["𐍄𐍉𐌾𐌰", "noun", "𐍄𐍉𐌾𐌰", "", "", "", "inflection of 𐍄𐌰𐌿𐌹"]) + let v = native_list_append(v, ["𐍄𐍉𐌾𐌰𐌼", "noun", "𐍄𐍉𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌿𐍄𐌹", "noun", "𐌿𐌽𐍃𐌿𐍄𐌾𐌰", "𐌿𐌽𐍃𐌿𐍄𐌾𐌹𐍃", "𐌿𐌽𐍃𐌿𐍄𐌾𐌰", "", "tumult rioting"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌿𐍄𐌾𐌰𐌼", "noun", "𐌿𐌽𐍃𐌿𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌳𐌹", "noun", "𐍅𐌰𐌳𐌾𐌰", "𐍅𐌰𐌳𐌾𐌹𐍃", "𐍅𐌰𐌳𐌾𐌰", "", "a sum of"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌸𐌽𐌹", "noun", "𐌰𐍄𐌰𐌸𐌽𐌾𐌰", "𐌰𐍄𐌰𐌸𐌽𐌾𐌹𐍃", "𐌰𐍄𐌰𐌸𐌽𐌾𐌰", "", "year"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌸𐌽𐌾𐌹𐍃", "noun", "𐌰𐍄𐌰𐌸𐌽𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌸𐌽𐌰𐌼", "noun", "𐌰𐌸𐌽𐌰𐌼", "", "", "", "years dative plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌽𐍉𐌸", "noun", "𐌼𐌴𐌽𐍉𐌸", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐌽𐍉𐌸𐌿𐌼", "noun", "𐌼𐌴𐌽𐍉𐌸𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐍂𐍀𐌾𐍉", "noun", "𐍃𐌺𐌰𐌿𐍂𐍀𐌾𐍉𐌽𐍃", "𐍃𐌺𐌰𐌿𐍂𐍀𐌾𐍉𐌽𐍃", "𐍃𐌺𐌰𐌿𐍂𐍀𐌾𐍉𐌽", "", "scorpion arachnid"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐍂𐍀𐌾𐍉𐌽𐍉", "noun", "𐍃𐌺𐌰𐌿𐍂𐍀𐌾𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌼𐍃", "noun", "𐍅𐌰𐌿𐍂𐌼𐍉𐍃", "𐍅𐌰𐌿𐍂𐌼𐌹𐍃", "𐍅𐌰𐌿𐍂𐌼𐌰", "", "snake serpent reptile"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌼𐌴", "noun", "𐍅𐌰𐌿𐍂𐌼𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌼𐌰𐌽𐍃", "noun", "𐍅𐌰𐌿𐍂𐌼𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍄𐍃", "noun", "𐍅𐌰𐌿𐍂𐍄𐌴𐌹𐍃", "𐍅𐌰𐌿𐍂𐍄𐌰𐌹𐍃", "𐍅𐌰𐌿𐍂𐍄𐌰𐌹", "", "root part of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍄𐌹𐌽𐍃", "noun", "𐍅𐌰𐌿𐍂𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍄", "noun", "𐍅𐌰𐌿𐍂𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍄𐌹𐌼", "noun", "𐍅𐌰𐌿𐍂𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌴𐌹𐍂𐍉", "noun", "𐍆𐌰𐌹𐌷𐌿𐌲𐌴𐌹𐍂𐍉𐌽𐍃", "𐍆𐌰𐌹𐌷𐌿𐌲𐌴𐌹𐍂𐍉𐌽𐍃", "𐍆𐌰𐌹𐌷𐌿𐌲𐌴𐌹𐍂𐍉𐌽", "", "covetousness greed"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌴𐌹𐍂𐍉𐌽", "noun", "𐍆𐌰𐌹𐌷𐌿𐌲𐌴𐌹𐍂𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐌰", "noun", "𐌲𐌰𐌱𐌹𐌽𐌳𐍉𐍃", "𐌲𐌰𐌱𐌹𐌽𐌳𐍉𐍃", "𐌲𐌰𐌱𐌹𐌽𐌳𐌰𐌹", "", "bond connection"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐍉𐍃", "noun", "𐌲𐌰𐌱𐌹𐌽𐌳𐍉𐍃", "", "", "", "inflection of 𐌲𐌰𐌱𐌹𐌽𐌳𐌰"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐍂𐌿𐌺𐌰", "noun", "𐌲𐌰𐌱𐍂𐌿𐌺𐍉𐍃", "𐌲𐌰𐌱𐍂𐌿𐌺𐍉𐍃", "𐌲𐌰𐌱𐍂𐌿𐌺𐌰𐌹", "", "a fragment piece"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐍂𐌿𐌺𐍉", "noun", "𐌲𐌰𐌱𐍂𐌿𐌺𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌳𐌰", "noun", "𐌲𐌰𐌹𐍂𐌳𐍉𐍃", "𐌲𐌰𐌹𐍂𐌳𐍉𐍃", "𐌲𐌰𐌹𐍂𐌳𐌰𐌹", "", "girdle"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌳𐍉𐍃", "noun", "𐌲𐌰𐌹𐍂𐌳𐍉𐍃", "", "", "", "inflection of 𐌲𐌰𐌹𐍂𐌳𐌰"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐌰", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐌰", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐍉𐍃", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐌰𐌹", "", "righteousness justness"]) + let v = native_list_append(v, ["𐌷𐌿𐍀𐍃", "noun", "𐌷𐌿𐍀𐌴𐌹𐍃", "𐌷𐌿𐍀𐌹𐍃", "𐌷𐌿𐍀𐌰", "", "hip"]) + let v = native_list_append(v, ["𐌷𐌿𐍀", "noun", "𐌷𐌿𐍀", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐍀𐌹𐌽𐍃", "noun", "𐌷𐌿𐍀𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌲𐍂𐌰𐌱𐌰", "noun", "𐌲𐍂𐌰𐌱𐍉𐍃", "𐌲𐍂𐌰𐌱𐍉𐍃", "𐌲𐍂𐌰𐌱𐌰𐌹", "", "ditch trench"]) + let v = native_list_append(v, ["𐌲𐍂𐌰𐌱𐌰𐌹", "noun", "𐌲𐍂𐌰𐌱𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐍂𐍉𐌱𐌰", "noun", "𐌲𐍂𐍉𐌱𐍉𐍃", "𐌲𐍂𐍉𐌱𐍉𐍃", "𐌲𐍂𐍉𐌱𐌰𐌹", "", "foxhole burrow of"]) + let v = native_list_append(v, ["𐌲𐍂𐍉𐌱𐍉𐍃", "noun", "𐌲𐍂𐍉𐌱𐍉𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌹𐌸𐌰𐌹", "noun", "𐌷𐌰𐌿𐌽𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌹𐌸𐌰", "noun", "𐌷𐌰𐌿𐌽𐌹𐌸𐍉𐍃", "𐌷𐌰𐌿𐌽𐌹𐌸𐍉𐍃", "𐌷𐌰𐌿𐌽𐌹𐌸𐌰𐌹", "", "humility"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐌰", "noun", "𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐍉𐍃", "𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐍉𐍃", "𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐌰𐌹", "", "grave"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐍉𐍃", "noun", "𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐍉𐍃", "", "", "", "inflection of 𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐌰"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐍉𐌼", "noun", "𐌷𐌻𐌰𐌹𐍅𐌰𐍃𐌽𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌼𐌼𐌰", "noun", "𐌷𐌻𐌰𐌼𐌼𐍉𐍃", "𐌷𐌻𐌰𐌼𐌼𐍉𐍃", "𐌷𐌻𐌰𐌼𐌼𐌰𐌹", "", "snare trap"]) + let v = native_list_append(v, ["𐌷𐌻𐌿𐍄𐍂𐌹𐌸𐌰𐌹", "noun", "𐌷𐌻𐌿𐍄𐍂𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌿𐍄𐍂𐌹𐌸𐌰", "noun", "𐌷𐌻𐌿𐍄𐍂𐌹𐌸𐍉𐍃", "𐌷𐌻𐌿𐍄𐍂𐌹𐌸𐍉𐍃", "𐌷𐌻𐌿𐍄𐍂𐌹𐌸𐌰𐌹", "", "purity of heart"]) + let v = native_list_append(v, ["𐍈𐍉𐍄𐌰", "noun", "𐍈𐍉𐍄𐍉𐍃", "𐍈𐍉𐍄𐍉𐍃", "𐍈𐍉𐍄𐌰𐌹", "", "threat"]) + let v = native_list_append(v, ["𐍈𐍉𐍄𐍉𐍃", "noun", "𐍈𐍉𐍄𐍉𐍃", "", "", "", "inflection of 𐍈𐍉𐍄𐌰"]) + let v = native_list_append(v, ["𐌷𐍂𐌿𐌲𐌲𐌰", "noun", "𐌷𐍂𐌿𐌲𐌲𐍉𐍃", "𐌷𐍂𐌿𐌲𐌲𐍉𐍃", "𐌷𐍂𐌿𐌲𐌲𐌰𐌹", "", "a staff"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐌰", "noun", "𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐍃", "𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐍃", "𐌹𐌳𐍂𐌴𐌹𐌲𐌰𐌹", "", "repentance"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐍃", "noun", "𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐍃", "", "", "", "inflection of 𐌹𐌳𐍂𐌴𐌹𐌲𐌰"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐌰𐌹", "noun", "𐌹𐌳𐍂𐌴𐌹𐌲𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌹𐌿𐌾𐌹𐌸𐌰", "noun", "𐌹𐌽𐌽𐌹𐌿𐌾𐌹𐌸𐍉𐍃", "𐌹𐌽𐌽𐌹𐌿𐌾𐌹𐌸𐍉𐍃", "𐌹𐌽𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "", "renewal"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐌰", "noun", "𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐍉𐍃", "𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐍉𐍃", "𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐌰𐌹", "", "injustice wickedness"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐍉𐍃", "noun", "𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐌰𐌹", "noun", "𐌹𐌽𐍅𐌹𐌽𐌳𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐍃𐌹𐌻𐌰", "noun", "𐌹𐌿𐍃𐌹𐌻𐍉𐍃", "𐌹𐌿𐍃𐌹𐌻𐍉𐍃", "𐌹𐌿𐍃𐌹𐌻𐌰𐌹", "", "recovery easing"]) + let v = native_list_append(v, ["𐌾𐌹𐌿𐌺𐌰", "noun", "𐌾𐌹𐌿𐌺𐍉𐍃", "𐌾𐌹𐌿𐌺𐍉𐍃", "𐌾𐌹𐌿𐌺𐌰𐌹", "", "wrath"]) + let v = native_list_append(v, ["𐌾𐌹𐌿𐌺𐍉𐍃", "noun", "𐌾𐌹𐌿𐌺𐍉𐍃", "", "", "", "inflection of 𐌾𐌹𐌿𐌺𐌰"]) + let v = native_list_append(v, ["𐌾𐌿𐌽𐌳𐌰𐌹", "noun", "𐌾𐌿𐌽𐌳𐌰𐌹", "", "", "", "youth quality or"]) + let v = native_list_append(v, ["𐌺𐌰𐍂𐌰", "noun", "𐌺𐌰𐍂𐍉𐍃", "𐌺𐌰𐍂𐍉𐍃", "𐌺𐌰𐍂𐌰𐌹", "", "care concern"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌹𐌸𐌰", "noun", "𐌺𐌰𐌿𐍂𐌹𐌸𐍉𐍃", "𐌺𐌰𐌿𐍂𐌹𐌸𐍉𐍃", "𐌺𐌰𐌿𐍂𐌹𐌸𐌰𐌹", "", "burden"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌹𐌸𐍉𐍃", "noun", "𐌺𐌰𐌿𐍂𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐌺𐌰𐌿𐍂𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌱𐌰", "noun", "𐌻𐌰𐌹𐌱𐍉𐍃", "𐌻𐌰𐌹𐌱𐍉𐍃", "𐌻𐌰𐌹𐌱𐌰𐌹", "", "remainder"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌱𐍉𐍃", "noun", "𐌻𐌰𐌹𐌱𐍉𐍃", "", "", "", "inflection of 𐌻𐌰𐌹𐌱𐌰"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌰", "noun", "𐌻𐌹𐌿𐌲𐍉𐍃", "𐌻𐌹𐌿𐌲𐍉𐍃", "𐌻𐌹𐌿𐌲𐌰𐌹", "", "marriage wedlock"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐍉𐍃", "noun", "𐌻𐌹𐌿𐌲𐍉𐍃", "", "", "", "inflection of 𐌻𐌹𐌿𐌲𐌰"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐍉𐌼", "noun", "𐌻𐌹𐌿𐌲𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌹𐌸𐌰", "noun", "𐌼𐌰𐌽𐍅𐌹𐌸𐍉𐍃", "𐌼𐌰𐌽𐍅𐌹𐌸𐍉𐍃", "𐌼𐌰𐌽𐍅𐌹𐌸𐌰𐌹", "", "preparedness readiness preparation"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌹𐌸𐍉", "noun", "𐌼𐌰𐌽𐍅𐌹𐌸𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌹𐌸𐌰𐌹", "noun", "𐌼𐌰𐌽𐍅𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌺𐌰", "noun", "𐌼𐌰𐍂𐌺𐍉𐍃", "𐌼𐌰𐍂𐌺𐍉𐍃", "𐌼𐌰𐍂𐌺𐌰𐌹", "", "border region coast"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌺𐍉𐍃", "noun", "𐌼𐌰𐍂𐌺𐍉𐍃", "", "", "", "inflection of 𐌼𐌰𐍂𐌺𐌰"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌺𐍉𐌼", "noun", "𐌼𐌰𐍂𐌺𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌹𐌸𐌰", "noun", "𐌼𐌴𐍂𐌹𐌸𐍉𐍃", "𐌼𐌴𐍂𐌹𐌸𐍉𐍃", "𐌼𐌴𐍂𐌹𐌸𐌰𐌹", "", "fame renown"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌿𐌼𐌰", "noun", "𐌼𐌹𐌳𐌿𐌼𐍉𐍃", "𐌼𐌹𐌳𐌿𐌼𐍉𐍃", "𐌼𐌹𐌳𐌿𐌼𐌰𐌹", "", "middle midst"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌿𐌼𐌰𐌹", "noun", "𐌼𐌹𐌳𐌿𐌼𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌳𐌹𐌸𐌰", "noun", "𐌼𐌹𐌻𐌳𐌹𐌸𐍉𐍃", "𐌼𐌹𐌻𐌳𐌹𐌸𐍉𐍃", "𐌼𐌹𐌻𐌳𐌹𐌸𐌰𐌹", "", "compassion mildness"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌳𐌹𐌸𐍉", "noun", "𐌼𐌹𐌻𐌳𐌹𐌸𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰", "noun", "𐌼𐍉𐍄𐍉𐍃", "𐌼𐍉𐍄𐍉𐍃", "𐌼𐍉𐍄𐌰𐌹", "", "tax tribute customs"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐌹", "noun", "𐌼𐍉𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌻𐌳𐌰", "noun", "𐌼𐌿𐌻𐌳𐍉𐍃", "𐌼𐌿𐌻𐌳𐍉𐍃", "𐌼𐌿𐌻𐌳𐌰𐌹", "", "dust dirt soil"]) + let v = native_list_append(v, ["𐌽𐌴𐌸𐌻𐌰", "noun", "𐌽𐌴𐌸𐌻𐍉𐍃", "𐌽𐌴𐌸𐌻𐍉𐍃", "𐌽𐌴𐌸𐌻𐌰𐌹", "", "sewing needle"]) + let v = native_list_append(v, ["𐌽𐌴𐌸𐌻𐍉𐍃", "noun", "𐌽𐌴𐌸𐌻𐍉𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌹𐌸𐌰", "noun", "𐌽𐌹𐌿𐌾𐌹𐌸𐍉𐍃", "𐌽𐌹𐌿𐌾𐌹𐌸𐍉𐍃", "𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "", "newness"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "noun", "𐌽𐌹𐌿𐌾𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍀𐌻𐌰𐍀𐌾𐌰", "noun", "𐍀𐌻𐌰𐍀𐌾𐍉𐍃", "𐍀𐌻𐌰𐍀𐌾𐍉𐍃", "𐍀𐌻𐌰𐍀𐌾𐌰𐌹", "", "street"]) + let v = native_list_append(v, ["𐍀𐌻𐌰𐍀𐌾𐍉", "noun", "𐍀𐌻𐌰𐍀𐌾𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍂𐌰𐍃𐍄𐌰", "noun", "𐍂𐌰𐍃𐍄𐍉𐍃", "𐍂𐌰𐍃𐍄𐍉𐍃", "𐍂𐌰𐍃𐍄𐌰𐌹", "", "mile"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐍂𐌿", "noun", "𐌵𐌰𐌹𐍂𐌿", "𐌵𐌰𐌹𐍂𐌰𐌿𐍃", "𐌵𐌰𐌹𐍂𐌰𐌿", "", "stake sharp stick"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐌻𐌳𐌿", "noun", "𐍃𐌺𐌹𐌻𐌳𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹", "noun", "𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹", "𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐌽", "", "incorruption imperishableness immortality"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐌽", "noun", "𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌴𐌹", "noun", "𐍂𐌹𐌿𐍂𐌴𐌹", "𐍂𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "𐍂𐌹𐌿𐍂𐌴𐌹𐌽", "", "corruption disintegration perdition"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌴𐌹𐌽", "noun", "𐍂𐌹𐌿𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐍃", "noun", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐍉𐍃", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐌰𐌹", "", "uncovering revealing revelation"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐌰𐌹", "noun", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽", "noun", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐍉", "noun", "𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌻𐍃", "noun", "𐍃𐌰𐌿𐌻𐌴𐌹𐍃", "𐍃𐌰𐌿𐌻𐌰𐌹𐍃", "𐍃𐌰𐌿𐌻𐌰𐌹", "", "column pillar"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌻𐌴𐌹𐍃", "noun", "𐍃𐌰𐌿𐌻𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍅", "noun", "𐍆𐍂𐌰𐌹𐍅𐌰", "𐍆𐍂𐌰𐌹𐍅𐌹𐍃", "𐍆𐍂𐌰𐌹𐍅𐌰", "", "semen"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍅𐌰", "noun", "𐍆𐍂𐌰𐌹𐍅𐌰", "", "", "", "inflection of 𐍆𐍂𐌰𐌹𐍅"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍅𐌴", "noun", "𐍆𐍂𐌰𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐍃", "noun", "𐍃𐌻𐌰𐌷𐌴𐌹𐍃", "𐍃𐌻𐌰𐌷𐌹𐍃", "𐍃𐌻𐌰𐌷𐌰", "", "blow strike"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌹𐌽𐍃", "noun", "𐍃𐌻𐌰𐌷𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌹𐌼", "noun", "𐍃𐌻𐌰𐌷𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌰", "noun", "𐍃𐌻𐌰𐌷𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷", "noun", "𐍃𐌻𐌰𐌷", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌴𐌹𐍄𐍉", "noun", "𐌷𐌴𐌹𐍄𐍉𐌽𐍃", "𐌷𐌴𐌹𐍄𐍉𐌽𐍃", "𐌷𐌴𐌹𐍄𐍉𐌽", "", "fever"]) + let v = native_list_append(v, ["𐌷𐌴𐌹𐍄𐍉𐌼", "noun", "𐌷𐌴𐌹𐍄𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌴𐌹𐍅𐌰𐍆𐍂𐌰𐌿𐌾𐌰", "noun", "𐌷𐌴𐌹𐍅𐌰𐍆𐍂𐌰𐌿𐌾𐌰𐌽𐍃", "𐌷𐌴𐌹𐍅𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍃", "𐌷𐌴𐌹𐍅𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽", "", "goodman master of"]) + let v = native_list_append(v, ["𐌷𐌴𐌹𐍅𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽", "noun", "𐌷𐌴𐌹𐍅𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌽𐌰𐌹𐍅𐍃", "noun", "𐍃𐌽𐌰𐌹𐍅𐍃", "", "", "", "snow precipitation"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌷𐌼𐌰", "noun", "𐌼𐌹𐌻𐌷𐌼𐌰𐌽𐍃", "𐌼𐌹𐌻𐌷𐌼𐌹𐌽𐍃", "𐌼𐌹𐌻𐌷𐌼𐌹𐌽", "", "cloud visible mass"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌷𐌼𐌹𐌽", "noun", "𐌼𐌹𐌻𐌷𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌷𐌼𐌰𐌼", "noun", "𐌼𐌹𐌻𐌷𐌼𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍂𐌴𐌹𐍃", "noun", "𐌼𐍉𐍄𐌰𐍂𐌾𐍉𐍃", "𐌼𐍉𐍄𐌰𐍂𐌾𐌴", "𐌼𐍉𐍄𐌰𐍂𐌾𐌰", "", "publican tax collector"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍂𐌾𐍉𐍃", "noun", "𐌼𐍉𐍄𐌰𐍂𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍂𐌹", "noun", "𐌼𐍉𐍄𐌰𐍂𐌹", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍂𐌾𐌴", "noun", "𐌼𐍉𐍄𐌰𐍂𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍂𐌾𐌰𐌼", "noun", "𐌼𐍉𐍄𐌰𐍂𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌹𐍃𐌰𐍂𐌴𐌹𐍃", "noun", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐍉𐍃", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌴", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐌰", "", "law teacher"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐍉𐍃", "noun", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌹𐍃𐌰𐍂𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌻𐌰𐍂𐌴𐌹𐍃", "noun", "𐍅𐌿𐌻𐌻𐌰𐍂𐌾𐍉𐍃", "𐍅𐌿𐌻𐌻𐌰𐍂𐌾𐌴", "𐍅𐌿𐌻𐌻𐌰𐍂𐌾𐌰", "", "fuller someone who"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌱𐍉", "noun", "𐌺𐌰𐌻𐌱𐍉𐌽𐍃", "𐌺𐌰𐌻𐌱𐍉𐌽𐍃", "𐌺𐌰𐌻𐌱𐍉𐌽", "", "heifer young cow"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌱𐍉𐌽𐍃", "noun", "𐌺𐌰𐌻𐌱𐍉𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌰", "noun", "𐌱𐌰𐌽𐌳𐍅𐍉𐍃", "𐌱𐌰𐌽𐌳𐍅𐍉𐍃", "𐌱𐌰𐌽𐌳𐍅𐌰𐌹", "", "sign indication"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌰𐌹", "noun", "𐌱𐌰𐌽𐌳𐍅𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐍉", "noun", "𐌱𐌰𐌽𐌳𐍅𐍉𐌽𐍃", "𐌱𐌰𐌽𐌳𐍅𐍉𐌽𐍃", "𐌱𐌰𐌽𐌳𐍅𐍉𐌽", "", "sign token"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐍉𐌽", "noun", "𐌱𐌰𐌽𐌳𐍅𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌰𐌻𐌰", "noun", "𐍃𐌰𐌹𐍅𐌰𐌻𐍉𐍃", "𐍃𐌰𐌹𐍅𐌰𐌻𐍉𐍃", "𐍃𐌰𐌹𐍅𐌰𐌻𐌰𐌹", "", "soul"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌰𐌻𐍉𐍃", "noun", "𐍃𐌰𐌹𐍅𐌰𐌻𐍉𐍃", "", "", "", "inflection of 𐍃𐌰𐌹𐍅𐌰𐌻𐌰"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌰𐌻𐍉", "noun", "𐍃𐌰𐌹𐍅𐌰𐌻𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌰𐌻𐍉𐌼", "noun", "𐍃𐌰𐌹𐍅𐌰𐌻𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍅𐌰𐌻𐌰𐌹", "noun", "𐍃𐌰𐌹𐍅𐌰𐌻𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌳𐍂𐌰", "noun", "𐍃𐌰𐌻𐌳𐍂𐍉𐍃", "𐍃𐌰𐌻𐌳𐍂𐍉𐍃", "𐍃𐌰𐌻𐌳𐍂𐌰𐌹", "", "jesting banter"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌹𐌸𐍅𐍉𐍃", "noun", "𐍃𐌰𐌻𐌹𐌸𐍅𐍉", "", "𐍃𐌰𐌻𐌹𐌸𐍅𐍉𐌼", "", "lodgings guest room"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐍂𐌲𐌰", "noun", "𐍃𐌰𐌿𐍂𐌲𐍉𐍃", "𐍃𐌰𐌿𐍂𐌲𐍉𐍃", "𐍃𐌰𐌿𐍂𐌲𐌰𐌹", "", "grief sorrow"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐍂𐌲𐍉𐍃", "noun", "𐍃𐌰𐌿𐍂𐌲𐍉𐍃", "", "", "", "inflection of 𐍃𐌰𐌿𐍂𐌲𐌰"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐍂𐌲𐌰𐌹", "noun", "𐍃𐌰𐌿𐍂𐌲𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐍂𐌲𐍉𐌼", "noun", "𐍃𐌰𐌿𐍂𐌲𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌸𐌰", "noun", "𐍃𐌰𐌿𐌸𐍉𐍃", "𐍃𐌰𐌿𐌸𐍉𐍃", "𐍃𐌰𐌿𐌸𐌰𐌹", "", "way manner"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌸𐍉", "noun", "𐍃𐌰𐌿𐌸𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌽𐌳𐌰", "noun", "𐍃𐌺𐌰𐌽𐌳𐍉𐍃", "𐍃𐌺𐌰𐌽𐌳𐍉𐍃", "𐍃𐌺𐌰𐌽𐌳𐌰𐌹", "", "shame disgrace"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌽𐌳𐌰𐌹", "noun", "𐍃𐌺𐌰𐌽𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐌹𐌸𐌰", "noun", "𐍃𐌻𐌴𐌹𐌸𐍉𐍃", "𐍃𐌻𐌴𐌹𐌸𐍉𐍃", "𐍃𐌻𐌴𐌹𐌸𐌰𐌹", "", "detriment loss"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐍂𐌽𐌰", "noun", "𐍃𐌼𐌰𐍂𐌽𐍉𐍃", "𐍃𐌼𐌰𐍂𐌽𐍉𐍃", "𐍃𐌼𐌰𐍂𐌽𐌰𐌹", "", "dung feces"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐍂𐌽𐍉𐍃", "noun", "𐍃𐌼𐌰𐍂𐌽𐍉𐍃", "", "", "", "inflection of 𐍃𐌼𐌰𐍂𐌽𐌰"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌳𐌰", "noun", "𐍃𐍀𐌹𐌻𐌳𐍉𐍃", "𐍃𐍀𐌹𐌻𐌳𐍉𐍃", "𐍃𐍀𐌹𐌻𐌳𐌰𐌹", "", "writing-tablet"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐌲𐌽𐌹𐌸𐌰", "noun", "𐍃𐍅𐌴𐌲𐌽𐌹𐌸𐍉𐍃", "𐍃𐍅𐌴𐌲𐌽𐌹𐌸𐍉𐍃", "𐍃𐍅𐌴𐌲𐌽𐌹𐌸𐌰𐌹", "", "jubilance exultation joy"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌹𐌸𐌰", "noun", "𐍃𐍅𐌹𐌺𐌽𐌹𐌸𐍉𐍃", "𐍃𐍅𐌹𐌺𐌽𐌹𐌸𐍉𐍃", "𐍃𐍅𐌹𐌺𐌽𐌹𐌸𐌰𐌹", "", "purity chastity"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌲𐌽𐌹𐌸𐌰", "noun", "𐍃𐍅𐌹𐌲𐌽𐌹𐌸𐍉𐍃", "𐍃𐍅𐌹𐌲𐌽𐌹𐌸𐍉𐍃", "𐍃𐍅𐌹𐌲𐌽𐌹𐌸𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌹𐌸𐌰𐌹", "noun", "𐍃𐍅𐌹𐌺𐌽𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌲𐌽𐌹𐌸𐌰𐌹", "noun", "𐍃𐍅𐌹𐌲𐌽𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐌰", "noun", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐍃", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐍃", "𐍄𐌰𐌹𐌷𐍃𐍅𐌰𐌹", "", "right right hand"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐌰𐌹", "noun", "𐍄𐌰𐌹𐌷𐍃𐍅𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌴𐍅𐌰", "noun", "𐍄𐌴𐍅𐍉𐍃", "𐍄𐌴𐍅𐍉𐍃", "𐍄𐌴𐍅𐌰𐌹", "", "order array"]) + let v = native_list_append(v, ["𐍄𐌴𐍅𐌰𐌹", "noun", "𐍄𐌴𐍅𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐌰", "noun", "𐌸𐌰𐍂𐌱𐍉𐍃", "𐌸𐌰𐍂𐌱𐍉𐍃", "𐌸𐌰𐍂𐌱𐌰𐌹", "", "need want"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐍉𐍃", "noun", "𐌸𐌰𐍂𐌱𐍉𐍃", "", "", "", "inflection of 𐌸𐌰𐍂𐌱𐌰"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐌰𐌹", "noun", "𐌸𐌰𐍂𐌱𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐍉𐌼", "noun", "𐌸𐌰𐍂𐌱𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐍃𐍄𐌹𐌸𐌰", "noun", "𐌸𐍅𐌰𐍃𐍄𐌹𐌸𐍉𐍃", "𐌸𐍅𐌰𐍃𐍄𐌹𐌸𐍉𐍃", "𐌸𐍅𐌰𐍃𐍄𐌹𐌸𐌰𐌹", "", "stability security"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌶𐍅𐌰", "noun", "𐌿𐌱𐌹𐌶𐍅𐍉𐍃", "𐌿𐌱𐌹𐌶𐍅𐍉𐍃", "𐌿𐌱𐌹𐌶𐍅𐌰𐌹", "", "porch portico"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌶𐍅𐌰𐌹", "noun", "𐌿𐌱𐌹𐌶𐍅𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐌰", "noun", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐍉𐍃", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐍉𐍃", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐌰𐌹", "", "impurity uncleanness"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐍉𐍃", "noun", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐌰𐌹", "noun", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌹𐌸𐌰", "noun", "𐌿𐌽𐍃𐍅𐌴𐍂𐌹𐌸𐍉𐍃", "𐌿𐌽𐍃𐍅𐌴𐍂𐌹𐌸𐍉𐍃", "𐌿𐌽𐍃𐍅𐌴𐍂𐌹𐌸𐌰𐌹", "", "dishonour disgrace"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌹𐌸𐌰𐌹", "noun", "𐌿𐌽𐍃𐍅𐌴𐍂𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐌹𐌿𐌳𐌰", "noun", "𐌿𐌽𐌸𐌹𐌿𐌳𐍉𐍃", "𐌿𐌽𐌸𐌹𐌿𐌳𐍉𐍃", "𐌿𐌽𐌸𐌹𐌿𐌳𐌰𐌹", "", "non-people non-nation"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐌹𐌿𐌳𐍉𐌼", "noun", "𐌿𐌽𐌸𐌹𐌿𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰", "noun", "𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐍉𐍃", "𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐍉𐍃", "𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌹", "", "castoff rejection expulsion"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌹", "noun", "𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌳𐌾𐌰𐌱𐍉𐌺𐍉𐍃", "noun", "𐍅𐌰𐌳𐌾𐌰𐌱𐍉𐌺𐍉", "", "𐍅𐌰𐌳𐌾𐌰𐌱𐍉𐌺𐍉𐌼", "", "written pledge debenture"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐍉", "noun", "𐌱𐍉𐌺𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐍉𐌺𐍉𐌼", "noun", "𐌱𐍉𐌺𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐌰", "noun", "𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐌰", "𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐍉𐍃", "𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐌰𐌹", "", "worthiness fittingness sufficiency"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐍉𐍃", "noun", "𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐍉𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐌰𐌹", "noun", "𐍅𐌰𐌹𐍂𐌸𐌹𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌲𐌹𐌸𐌰", "noun", "𐍅𐌰𐍂𐌲𐌹𐌸𐍉𐍃", "𐍅𐌰𐍂𐌲𐌹𐌸𐍉𐍃", "𐍅𐌰𐍂𐌲𐌹𐌸𐌰𐌹", "", "condemnation judgment damnation"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌲𐌹𐌸𐍉𐍃", "noun", "𐍅𐌰𐍂𐌲𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐍅𐌰𐍂𐌲𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐌰", "noun", "𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐍉𐍃", "𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐍉𐍃", "𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐌰𐌹", "", "word-fight logomachy debate"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐍉𐍃", "noun", "𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐍉𐍃", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌳𐌰𐌾𐌹𐌿𐌺𐌰"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐌰", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐍉𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐍉𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐌰𐌹", "", "testimony"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐍉𐍃", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐍉𐍃", "", "", "", "inflection of 𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐌰"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐌰𐌹", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐍉", "noun", "𐍅𐌹𐌽𐌽𐍉𐌽𐍃", "𐍅𐌹𐌽𐌽𐍉𐌽𐍃", "𐍅𐌹𐌽𐌽𐍉𐌽", "", "suffering passion yearning"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐍉𐌽𐍃", "noun", "𐍅𐌹𐌽𐌽𐍉𐌽𐍃", "", "", "", "inflection of 𐍅𐌹𐌽𐌽𐍉"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐍉𐌼", "noun", "𐍅𐌹𐌽𐌽𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐍉𐌽", "noun", "𐍅𐌹𐌽𐌽𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐌰", "noun", "𐍅𐍂𐌰𐌺𐍉𐍃", "𐍅𐍂𐌰𐌺𐍉𐍃", "𐍅𐍂𐌰𐌺𐌰𐌹", "", "persecution"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐍉𐍃", "noun", "𐍅𐍂𐌰𐌺𐍉𐍃", "", "", "", "inflection of 𐍅𐍂𐌰𐌺𐌰"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐍉𐌼", "noun", "𐍅𐍂𐌰𐌺𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌻𐌰", "noun", "𐍅𐌿𐌻𐌻𐍉𐍃", "𐍅𐌿𐌻𐌻𐍉𐍃", "𐍅𐌿𐌻𐌻𐌰𐌹", "", "wool cloth or"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌻𐌰𐌹", "noun", "𐍅𐌿𐌻𐌻𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐍅𐌰", "noun", "𐍅𐌿𐌻𐍅𐍉𐍃", "𐍅𐌿𐌻𐍅𐍉𐍃", "𐍅𐌿𐌻𐍅𐌰𐌹", "", "robbery"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "lordship dominion"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌹𐍅𐌴", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐌰𐍃𐍃𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐍉𐌸𐌿𐍃", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐍉𐌸𐌾𐌿𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐍉𐌸𐌰𐌿𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐍉𐌸𐌰𐌿", "", "pleasure"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐍉𐌸𐌿𐌼", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐍉𐌸𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍇𐍂𐌹𐍃𐍄𐌿𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍇𐍂𐌹𐍃𐍄𐌾𐌿𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍇𐍂𐌹𐍃𐍄𐌰𐌿𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍇𐍂𐌹𐍃𐍄𐌰𐌿", "", "false Christ pseudomessiah"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍇𐍂𐌹𐍃𐍄𐌾𐌿𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍇𐍂𐌹𐍃𐍄𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍇𐍂𐌹𐍃𐍄𐌿𐍃", "noun", "𐍇𐍂𐌹𐍃𐍄𐌿𐍃", "𐍇𐍂𐌹𐍃𐍄𐌰𐌿𐍃", "𐍇𐍂𐌹𐍃𐍄𐌰𐌿", "", "Christ"]) + let v = native_list_append(v, ["𐍇𐍂𐌹𐍃𐍄𐌰𐌿", "noun", "𐍇𐍂𐌹𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍇𐍂𐌹𐍃𐍄𐌰𐌿𐍃", "noun", "𐍇𐍂𐌹𐍃𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍇𐍂𐌹𐍃𐍄𐌿", "noun", "𐍇𐍂𐌹𐍃𐍄𐌿", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿", "", "false prophet pseudoprophet"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌼", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "", "", "", "prophetess"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌽𐍃", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌼", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿𐍃", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐌽𐍉𐌸𐌿𐍃", "noun", "𐌲𐌰𐌿𐌽𐍉𐌸𐌾𐌿𐍃", "𐌲𐌰𐌿𐌽𐍉𐌸𐌰𐌿𐍃", "𐌲𐌰𐌿𐌽𐍉𐌸𐌰𐌿", "", "lamentation mourning"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐌽𐍉𐌸𐌿", "noun", "𐌲𐌰𐌿𐌽𐍉𐌸𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌳𐌿𐍃", "noun", "𐌲𐍂𐌴𐌳𐌾𐌿𐍃", "𐌲𐍂𐌴𐌳𐌰𐌿𐍃", "𐌲𐍂𐌴𐌳𐌰𐌿", "", "hunger"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌳𐌰𐌿", "noun", "𐌲𐍂𐌴𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌲𐌿𐌳𐌾𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌲𐌿𐌳𐌾𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌲𐌿𐌳𐌾𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "priesthood"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌾𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐌲𐌿𐌳𐌾𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌳𐌿𐍃", "noun", "𐌷𐌰𐌹𐌳𐌾𐌿𐍃", "𐌷𐌰𐌹𐌳𐌰𐌿𐍃", "𐌷𐌰𐌹𐌳𐌰𐌿", "", "manner mode fashion"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌳𐌿𐌼", "noun", "𐌷𐌰𐌹𐌳𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌳𐌰𐌿", "noun", "𐌷𐌰𐌹𐌳𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌿𐍃", "noun", "𐌷𐌰𐌹𐍂𐌾𐌿𐍃", "𐌷𐌰𐌹𐍂𐌰𐌿𐍃", "𐌷𐌰𐌹𐍂𐌰𐌿", "", "sword weapon"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌿𐌼", "noun", "𐌷𐌰𐌹𐍂𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌿", "noun", "𐌷𐌰𐌹𐍂𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌹𐌱𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌹𐌱𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌹𐌱𐌽𐌰𐍃𐍃𐌰𐌿", "", "equality"]) + let v = native_list_append(v, ["𐌺𐌿𐌱𐌹𐍄𐌿𐍃", "noun", "𐌺𐌿𐌱𐌹𐍄𐌾𐌿𐍃", "𐌺𐌿𐌱𐌹𐍄𐌰𐌿𐍃", "𐌺𐌿𐌱𐌹𐍄𐌰𐌿", "", "A group of"]) + let v = native_list_append(v, ["𐌺𐌿𐌱𐌹𐍄𐌿𐌽𐍃", "noun", "𐌺𐌿𐌱𐌹𐍄𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌺𐌿𐍃𐍄𐌿𐍃", "noun", "𐌺𐌿𐍃𐍄𐌾𐌿𐍃", "𐌺𐌿𐍃𐍄𐌰𐌿𐍃", "𐌺𐌿𐍃𐍄𐌰𐌿", "", "trial proof"]) + let v = native_list_append(v, ["𐌺𐌿𐍃𐍄𐌿", "noun", "𐌺𐌿𐍃𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐌿𐍃𐍄𐌰𐌿", "noun", "𐌺𐌿𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌴𐌺𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐌻𐌴𐌺𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐌻𐌴𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐌻𐌴𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "healing"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐌻𐌴𐌹𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌷𐍃𐍄𐌿𐍃", "noun", "𐌼𐌰𐌹𐌷𐍃𐍄𐌾𐌿𐍃", "𐌼𐌰𐌹𐌷𐍃𐍄𐌰𐌿𐍃", "𐌼𐌰𐌹𐌷𐍃𐍄𐌰𐌿", "", "manure"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌷𐍃𐍄𐌰𐌿", "noun", "𐌼𐌰𐌹𐌷𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍉𐌳𐌿𐍃", "noun", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍉𐌳𐌾𐌿𐍃", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍉𐌳𐌰𐌿𐍃", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍉𐌳𐌰𐌿", "", "humanity human nature"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍉𐌳𐌰𐌿𐍃", "noun", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍉𐌳𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍂𐌳𐌿𐍃", "noun", "𐌽𐌰𐍂𐌳𐌾𐌿𐍃", "𐌽𐌰𐍂𐌳𐌰𐌿𐍃", "𐌽𐌰𐍂𐌳𐌰𐌿", "", "nard Nardostachys jatamansi"]) + let v = native_list_append(v, ["𐌽𐌰𐍂𐌳𐌰𐌿𐍃", "noun", "𐌽𐌰𐍂𐌳𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍀𐌰𐍂𐌰𐌺𐌻𐌴𐍄𐌿𐍃", "noun", "𐍀𐌰𐍂𐌰𐌺𐌻𐌴𐍄𐌿𐍃", "𐍀𐌰𐍂𐌰𐌺𐌻𐌴𐍄𐌰𐌿𐍃", "𐍀𐌰𐍂𐌰𐌺𐌻𐌴𐍄𐌰𐌿", "", "the Comforter the"]) + let v = native_list_append(v, ["𐍀𐌰𐍂𐌰𐌺𐌻𐌴𐍄𐌿", "noun", "𐍀𐌰𐍂𐌰𐌺𐌻𐌴𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "slavery bondage servitude"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌿𐍃", "noun", "𐌸𐌰𐌿𐍂𐌽𐌾𐌿𐍃", "𐌸𐌰𐌿𐍂𐌽𐌰𐌿𐍃", "𐌸𐌰𐌿𐍂𐌽𐌰𐌿", "", "thorn any shrub"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌾𐌿𐍃", "noun", "𐌸𐌰𐌿𐍂𐌽𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌿𐌽𐍃", "noun", "𐌸𐌰𐌿𐍂𐌽𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌹𐍅𐌴", "noun", "𐌸𐌰𐌿𐍂𐌽𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌿𐌼", "noun", "𐌸𐌰𐌿𐍂𐌽𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌼𐌰𐌲𐌿𐍃", "noun", "𐌸𐌹𐌿𐌼𐌰𐌲𐌾𐌿𐍃", "𐌸𐌹𐌿𐌼𐌰𐌲𐌰𐌿𐍃", "𐌸𐌹𐌿𐌼𐌰𐌲𐌰𐌿", "", "servant boy"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌼𐌰𐌲𐌿", "noun", "𐌸𐌹𐌿𐌼𐌰𐌲𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌼𐌰𐌲𐌰𐌿𐍃", "noun", "𐌸𐌹𐌿𐌼𐌰𐌲𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐌷𐍄𐌿𐍃", "noun", "𐌸𐌿𐌷𐍄𐌾𐌿𐍃", "𐌸𐌿𐌷𐍄𐌰𐌿𐍃", "𐌸𐌿𐌷𐍄𐌰𐌿", "", "conscience"]) + let v = native_list_append(v, ["𐌸𐌿𐌷𐍄𐌰𐌿𐍃", "noun", "𐌸𐌿𐌷𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐌷𐍄𐌿", "noun", "𐌸𐌿𐌷𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌺𐌴𐍄", "noun", "𐌰𐌺𐌴𐍄", "𐌰𐌺𐌴𐍄𐌹𐍃", "𐌰𐌺𐌴𐍄𐌰", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌺𐌴𐍄𐌹𐍃", "noun", "𐌰𐌺𐌴𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰", "noun", "𐌰𐌷𐌰𐌽𐍃", "𐌰𐌷𐌹𐌽𐍃", "𐌰𐌷𐌹𐌽", "", "mind reason"]) + let v = native_list_append(v, ["𐌰𐌷𐌹𐌽𐍃", "noun", "𐌰𐌷𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐌽𐌴", "noun", "𐌰𐌷𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐌹𐌽", "noun", "𐌰𐌷𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌺𐌻𐍃", "noun", "𐍃𐌹𐌺𐌻𐌴", "", "𐍃𐌹𐌺𐌻", "", "shekel ancient Levantine"]) + let v = native_list_append(v, ["𐍃𐌹𐌺𐌻𐌴", "noun", "𐍃𐌹𐌺𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌿𐍃", "noun", "𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌾𐌿𐍃", "𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌰𐌿𐍃", "𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌰𐌿", "", "abundance used positively"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐍃𐍃𐌰𐌿", "noun", "𐌹𐌱𐌽𐌰𐍃𐍃𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐍃𐍃𐌿", "noun", "𐌹𐌱𐌽𐌰𐍃𐍃𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌿", "noun", "𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌰𐌿𐍃", "noun", "𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌰𐌿", "noun", "𐌿𐍆𐌰𐍂𐌰𐍃𐍃𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌿𐍃𐍄𐌿𐍃", "noun", "𐌿𐌽𐌻𐌿𐍃𐍄𐌾𐌿𐍃", "𐌿𐌽𐌻𐌿𐍃𐍄𐌰𐌿𐍃", "𐌿𐌽𐌻𐌿𐍃𐍄𐌰𐌿", "", "apathy listlessness"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌿𐍃𐍄𐌰𐌿", "noun", "𐌿𐌽𐌻𐌿𐍃𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌿𐍃", "noun", "𐍅𐌰𐌻𐌾𐌿𐍃", "𐍅𐌰𐌻𐌰𐌿𐍃", "𐍅𐌰𐌻𐌰𐌿", "", "staff stick"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌿𐌽𐍃", "noun", "𐍅𐌰𐌻𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌱𐌰𐌻𐌲𐍃", "noun", "𐌼𐌰𐍄𐌹𐌱𐌰𐌻𐌲𐌴𐌹𐍃", "𐌼𐌰𐍄𐌹𐌱𐌰𐌻𐌲𐌹𐍃", "𐌼𐌰𐍄𐌹𐌱𐌰𐌻𐌲𐌰", "", "food bag knapsack"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌱𐌰𐌻𐌲", "noun", "𐌼𐌰𐍄𐌹𐌱𐌰𐌻𐌲", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌲𐍃", "noun", "𐌱𐌰𐌻𐌲𐌴𐌹𐍃", "𐌱𐌰𐌻𐌲𐌹𐍃", "𐌱𐌰𐌻𐌲𐌰", "", "bag sack"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌲𐌴𐌹𐍃", "noun", "𐌱𐌰𐌻𐌲𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌲𐌹𐌽𐍃", "noun", "𐌱𐌰𐌻𐌲𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐍃", "noun", "𐌼𐌰𐍄𐌴𐌹𐍃", "𐌼𐌰𐍄𐌹𐍃", "𐌼𐌰𐍄𐌰", "", "food"]) + let v = native_list_append(v, ["𐌼𐌰𐍄", "noun", "𐌼𐌰𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐍃", "noun", "𐌼𐌰𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌴", "noun", "𐌼𐌰𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌽𐍃", "noun", "𐌼𐌰𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌰", "noun", "𐌼𐌰𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄𐍃", "noun", "𐍃𐌺𐌰𐍄𐍄𐍉𐍃", "𐍃𐌺𐌰𐍄𐍄𐌹𐍃", "𐍃𐌺𐌰𐍄𐍄𐌰", "", "a denarius"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄", "noun", "𐍃𐌺𐌰𐍄𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄𐌰𐌽𐍃", "noun", "𐍃𐌺𐌰𐍄𐍄𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄𐌴", "noun", "𐍃𐌺𐌰𐍄𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄𐌾𐌰", "noun", "𐍃𐌺𐌰𐍄𐍄𐌾𐌰𐌽𐍃", "𐍃𐌺𐌰𐍄𐍄𐌾𐌹𐌽𐍃", "𐍃𐌺𐌰𐍄𐍄𐌾𐌹𐌽", "", "moneychanger banker"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄𐌾𐌰𐌽𐌴", "noun", "𐍃𐌺𐌰𐍄𐍄𐌾𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍄𐍄𐌾𐌰𐌼", "noun", "𐍃𐌺𐌰𐍄𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌺𐍃", "noun", "𐌻𐌰𐌹𐌺𐌴𐌹𐍃", "𐌻𐌰𐌹𐌺𐌹𐍃", "𐌻𐌰𐌹𐌺𐌰", "", "dance"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌺𐌹𐌽𐍃", "noun", "𐌻𐌰𐌹𐌺𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌹𐌽𐌰𐍃𐍃𐌿𐍃", "noun", "𐍅𐌰𐌽𐌹𐌽𐌰𐍃𐍃𐌾𐌿𐍃", "𐍅𐌰𐌽𐌹𐌽𐌰𐍃𐍃𐌰𐌿𐍃", "𐍅𐌰𐌽𐌹𐌽𐌰𐍃𐍃𐌰𐌿", "", "lack shortage"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌹𐌽𐌰𐍃𐍃𐌿", "noun", "𐍅𐌰𐌽𐌹𐌽𐌰𐍃𐍃𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐍄𐍉𐌳𐌿𐍃", "noun", "𐍅𐍂𐌰𐍄𐍉𐌳𐌾𐌿𐍃", "𐍅𐍂𐌰𐍄𐍉𐌳𐌰𐌿𐍃", "𐍅𐍂𐌰𐍄𐍉𐌳𐌰𐌿", "", "journey"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐍄𐍉𐌳𐌿𐌼", "noun", "𐍅𐍂𐌰𐍄𐍉𐌳𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌸𐌿𐍃", "noun", "𐍅𐍂𐌹𐌸𐌾𐌿𐍃", "𐍅𐍂𐌹𐌸𐌰𐌿𐍃", "𐍅𐍂𐌹𐌸𐌰𐌿", "", "herd"]) + let v = native_list_append(v, ["𐍆𐌻𐍉𐌳𐌿𐍃", "noun", "𐍆𐌻𐍉𐌳𐌾𐌿𐍃", "𐍆𐌻𐍉𐌳𐌰𐌿𐍃", "𐍆𐌻𐍉𐌳𐌰𐌿", "", "river"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌻𐌿𐌵𐌰𐌹𐍂𐌽𐌿𐍃", "noun", "𐌰𐍃𐌹𐌻𐌿𐌵𐌰𐌹𐍂𐌽𐌾𐌿𐍃", "𐌰𐍃𐌹𐌻𐌿𐌵𐌰𐌹𐍂𐌽𐌰𐌿𐍃", "𐌰𐍃𐌹𐌻𐌿𐌵𐌰𐌹𐍂𐌽𐌰𐌿", "", "millstone"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐌽𐌿𐍃", "noun", "𐌺𐌹𐌽𐌽𐌾𐌿𐍃", "𐌺𐌹𐌽𐌽𐌰𐌿𐍃", "𐌺𐌹𐌽𐌽𐌰𐌿", "", "cheek"]) + let v = native_list_append(v, ["𐌺𐌹𐌽𐌽𐌿", "noun", "𐌺𐌹𐌽𐌽𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐍉", "noun", "𐍅𐌹𐌳𐌿𐍅𐍉𐌽𐍃", "𐍅𐌹𐌳𐌿𐍅𐍉𐌽𐍃", "𐍅𐌹𐌳𐌿𐍅𐍉𐌽", "", "a widow"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐍉𐌽𐍃", "noun", "𐍅𐌹𐌳𐌿𐍅𐍉𐌽𐍃", "", "", "", "inflection of 𐍅𐌹𐌳𐌿𐍅𐍉"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐍉𐌽", "noun", "𐍅𐌹𐌳𐌿𐍅𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐍉𐌽𐍉", "noun", "𐍅𐌹𐌳𐌿𐍅𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐍉𐌼", "noun", "𐍅𐌹𐌳𐌿𐍅𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌰𐌻𐍃", "noun", "𐍃𐌻𐌰𐌷𐌰𐌻𐍉𐍃", "𐍃𐌻𐌰𐌷𐌰𐌻𐌹𐍃", "𐍃𐌻𐌰𐌷𐌰𐌻𐌰", "", "A pugnacious person"]) + let v = native_list_append(v, ["𐌰𐌵𐌹𐌶𐌹", "noun", "𐌰𐌺𐌿𐌶𐌾𐍉𐍃", "𐌰𐌺𐌿𐌶𐌾𐍉𐍃", "𐌰𐌺𐌿𐌶𐌾𐌰𐌹", "", "axe tool for"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍃", "noun", "𐌷𐌰𐌻𐍃𐍉𐍃", "𐌷𐌰𐌻𐍃𐌹𐍃", "𐌷𐌰𐌻𐍃𐌰", "", "neck"]) + let v = native_list_append(v, ["𐌰𐌼𐍃", "noun", "𐌰𐌼𐍃𐍉𐍃", "𐌰𐌼𐍃𐌹𐍃", "𐌰𐌼𐍃𐌰", "", "shoulder"]) + let v = native_list_append(v, ["𐌰𐌼𐍃𐌰𐌽𐍃", "noun", "𐌰𐌼𐍃𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐍆𐍄𐌹𐌼", "noun", "𐍆𐍂𐌰𐌲𐌹𐍆𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐍆𐍄𐍃", "noun", "𐍆𐍂𐌰𐌲𐌹𐍆𐍄𐌴𐌹𐍃", "𐍆𐍂𐌰𐌲𐌹𐍆𐍄𐌰𐌹𐍃", "𐍆𐍂𐌰𐌲𐌹𐍆𐍄𐌰𐌹", "", "gift grant"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐍆𐍄", "noun", "𐍆𐍂𐌰𐌲𐌹𐍆𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌵𐌴𐌹𐌽𐍃", "noun", "𐌵𐌴𐌹𐌽𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌽𐍃", "noun", "𐌳𐌰𐌿𐌽𐌴𐌹𐍃", "𐌳𐌰𐌿𐌽𐌰𐌹𐍃", "𐌳𐌰𐌿𐌽𐌰𐌹", "", "smell odour scent"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌽𐌰𐌹𐍃", "noun", "𐌳𐌰𐌿𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌽𐌰𐌹", "noun", "𐌳𐌰𐌿𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌽", "noun", "𐌳𐌰𐌿𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳", "noun", "𐍃𐍄𐌰𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌱𐌰𐌹𐌼𐌱𐌰𐌹𐍂", "noun", "𐌽𐌰𐌿𐌱𐌰𐌹𐌼𐌱𐌰𐌹𐍂", "", "", "", "The month November."]) + let v = native_list_append(v, ["𐌺𐌽𐍉𐌸𐍃", "noun", "𐌺𐌽𐍉𐌳𐌴𐌹𐍃", "𐌺𐌽𐍉𐌳𐌰𐌹𐍃", "𐌺𐌽𐍉𐌳𐌰𐌹", "", "race people"]) + let v = native_list_append(v, ["𐌺𐌽𐍉𐌳𐌰𐌹", "noun", "𐌺𐌽𐍉𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰𐍄𐌴𐌹𐌽𐍃", "noun", "𐌰𐌷𐌼𐌰𐍄𐌴𐌹𐌽𐍉𐍃", "𐌰𐌷𐌼𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐌷𐌼𐌰𐍄𐌴𐌹𐌽𐌰𐌹", "", "inspiration"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌰𐌷𐌼𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽𐍃", "noun", "𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽𐍉𐍃", "𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "", "a putting-on or"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽", "noun", "𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "noun", "𐌰𐌽𐌰𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "a beginning start"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌴𐌹𐌽𐍃", "noun", "𐌱𐌰𐌻𐍅𐌴𐌹𐌽𐍉𐍃", "𐌱𐌰𐌻𐍅𐌴𐌹𐌽𐌰𐌹𐍃", "𐌱𐌰𐌻𐍅𐌴𐌹𐌽𐌰𐌹", "", "punishment torture"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌴𐌹𐌽", "noun", "𐌱𐌰𐌻𐍅𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌴𐌹𐌽𐌹𐌼", "noun", "𐌱𐌰𐌻𐍅𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌹𐌱𐌰𐌿𐍂𐌲𐌴𐌹𐌽𐍃", "noun", "𐌱𐌹𐌱𐌰𐌿𐍂𐌲𐌴𐌹𐌽𐍉𐍃", "𐌱𐌹𐌱𐌰𐌿𐍂𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "𐌱𐌹𐌱𐌰𐌿𐍂𐌲𐌴𐌹𐌽𐌰𐌹", "", "camp fortified place"]) + let v = native_list_append(v, ["𐌱𐌹𐌱𐌰𐌿𐍂𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌱𐌹𐌱𐌰𐌿𐍂𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐌱𐌹𐍂𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "𐌱𐌹𐍂𐍉𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌱𐌹𐍂𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "murmuring grumbling"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "noun", "𐌱𐌹𐍂𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌰𐌿𐌻𐌴𐌹𐌽𐍃", "noun", "𐌱𐌹𐍃𐌰𐌿𐌻𐌴𐌹𐌽𐍉𐍃", "𐌱𐌹𐍃𐌰𐌿𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌱𐌹𐍃𐌰𐌿𐌻𐌴𐌹𐌽𐌰𐌹", "", "defilement pollution"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌰𐌿𐌻𐌴𐌹𐌽𐍉", "noun", "𐌱𐌹𐍃𐌰𐌿𐌻𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐍃", "noun", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐍉𐍃", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌰𐌹𐍃", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌰𐌹", "", "washing immersion in"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌹𐌼", "noun", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌹𐌽𐍃", "noun", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌽", "noun", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌰𐌹", "noun", "𐌳𐌰𐌿𐍀𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌴𐌹𐌽𐍃", "noun", "𐌳𐌰𐌿𐌸𐌴𐌹𐌽𐍉𐍃", "𐌳𐌰𐌿𐌸𐌴𐌹𐌽𐌰𐌹𐍃", "𐌳𐌰𐌿𐌸𐌴𐌹𐌽𐌰𐌹", "", "dying death"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌴𐌹𐌽", "noun", "𐌳𐌰𐌿𐌸𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌴𐌹𐌽𐌹𐌼", "noun", "𐌳𐌰𐌿𐌸𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌻𐌰𐌲𐌴𐌹𐌽𐍃", "noun", "𐍆𐌰𐌿𐍂𐌻𐌰𐌲𐌴𐌹𐌽𐍉𐍃", "𐍆𐌰𐌿𐍂𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "𐍆𐌰𐌿𐍂𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹", "", "a laying-before a"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐍆𐌰𐌿𐍂𐌻𐌰𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐍆𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "𐍆𐍉𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐍆𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "food"]) + let v = native_list_append(v, ["𐍆𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐍆𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌾𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍃", "noun", "𐍆𐍂𐌰𐌸𐌾𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍉𐍃", "𐍆𐍂𐌰𐌸𐌾𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "𐍆𐍂𐌰𐌸𐌾𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹", "", "deception of the"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍃", "noun", "𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍉𐍃", "𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹", "", "stumbling-block impediment hindrance"]) + let v = native_list_append(v, ["𐍃𐌰𐌲𐌲𐍅𐍃", "noun", "𐍃𐌰𐌲𐌲𐍅𐌴𐌹𐍃", "𐍃𐌰𐌲𐌲𐍅𐌹𐍃", "𐍃𐌰𐌲𐌲𐍅𐌰", "", "song singing"]) + let v = native_list_append(v, ["𐍃𐌰𐌲𐌲𐍅𐌹𐌼", "noun", "𐍃𐌰𐌲𐌲𐍅𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌲𐌲𐍅𐌰", "noun", "𐍃𐌰𐌲𐌲𐍅𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌲𐌲𐍅𐌹𐌽𐍃", "noun", "𐍃𐌰𐌲𐌲𐍅𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌻𐌹𐍃𐍄𐍂", "noun", "𐌷𐌿𐌻𐌹𐍃𐍄𐍂𐌰", "𐌷𐌿𐌻𐌹𐍃𐍄𐍂𐌹𐍃", "𐌷𐌿𐌻𐌹𐍃𐍄𐍂𐌰", "", "covering"]) + let v = native_list_append(v, ["𐌺𐌰𐌹𐍃𐌰𐍂𐌰𐌲𐌹𐌻𐌳", "noun", "𐌺𐌰𐌹𐍃𐌰𐍂𐌰𐌲𐌹𐌻𐌳𐌰", "𐌺𐌰𐌹𐍃𐌰𐍂𐌰𐌲𐌹𐌻𐌳𐌹𐍃", "𐌺𐌰𐌹𐍃𐌰𐍂𐌰𐌲𐌹𐌻𐌳𐌰", "", "tax paid to"]) + let v = native_list_append(v, ["𐌲𐌹𐌻𐌳", "noun", "𐌲𐌹𐌻𐌳𐌰", "𐌲𐌹𐌻𐌳𐌹𐍃", "𐌲𐌹𐌻𐌳𐌰", "", "tax tribute"]) + let v = native_list_append(v, ["𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽", "noun", "𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽𐌰", "𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽𐌹𐍃", "𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽𐌰", "", "trumpet"]) + let v = native_list_append(v, ["𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽𐌰", "noun", "𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽𐌰", "", "", "", "inflection of 𐌸𐌿𐍄𐌷𐌰𐌿𐍂𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌸", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳𐌰", "𐌻𐌹𐌿𐌷𐌰𐌳𐌹𐍃", "𐌻𐌹𐌿𐌷𐌰𐌳𐌰", "", "light"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌰", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳𐌰", "", "", "", "inflection of 𐌻𐌹𐌿𐌷𐌰𐌸"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌹𐍃", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌴𐌹", "noun", "𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌴𐌹𐌽𐍃", "𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌴𐌹𐌽𐍃", "𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌴𐌹𐌽", "", "sorcery witchcraft poison-mongering"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐌹", "noun", "𐌲𐌰𐌱𐌹𐌽𐌳𐌾𐍉𐍃", "𐌲𐌰𐌱𐌹𐌽𐌳𐌾𐍉𐍃", "𐌲𐌰𐌱𐌹𐌽𐌳𐌾𐌰𐌹", "", "a bond tie"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌿𐌽𐌳𐌹", "noun", "𐌲𐌰𐌱𐌿𐌽𐌳𐌾𐍉𐍃", "𐌲𐌰𐌱𐌿𐌽𐌳𐌾𐍉𐍃", "𐌲𐌰𐌱𐌿𐌽𐌳𐌾𐌰𐌹", "", "a bond tie"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌿𐌽𐌳𐌾𐌰𐌹", "noun", "𐌲𐌰𐌱𐌿𐌽𐌳𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌱𐌰𐌽𐌳𐌹", "noun", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌱𐌰𐌽𐌳𐌾𐌰𐌹", "", "iron shackle or"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "noun", "𐌴𐌹𐍃𐌰𐍂𐌽𐌰𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌹", "noun", "𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐌰𐌹", "", "shackle manacle chain"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "noun", "𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "", "", "", "inflection of 𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌹"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉", "noun", "𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "noun", "𐌽𐌰𐌿𐌳𐌹𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌸𐍃", "noun", "𐌽𐌰𐌿𐌸𐌴𐌹𐍃", "𐌽𐌰𐌿𐌸𐌰𐌹𐍃", "𐌽𐌰𐌿𐌸𐌰𐌹", "", "need compulsion duress"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌸𐌹𐌼", "noun", "𐌽𐌰𐌿𐌸𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌸𐌰𐌹", "noun", "𐌽𐌰𐌿𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌹", "noun", "𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐍉𐍃", "𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐍉𐍃", "𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐌰𐌹", "", "lightning flash of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌼𐍉𐌽𐌹", "noun", "𐌻𐌰𐌿𐌷𐌼𐍉𐌽𐌹", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐌰", "noun", "𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐌰𐌹", "noun", "𐌻𐌰𐌿𐌷𐌼𐌿𐌽𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿𐌱𐌰𐌽𐌳𐌹", "noun", "𐍆𐍉𐍄𐌿𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐍆𐍉𐍄𐌿𐌱𐌰𐌽𐌳𐌾𐍉𐍃", "𐍆𐍉𐍄𐌿𐌱𐌰𐌽𐌳𐌾𐌰𐌹", "", "foot-shackle leg-chain"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "noun", "𐍆𐍉𐍄𐌿𐌱𐌰𐌽𐌳𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐍄𐍉𐌱𐌽𐌾𐍉", "noun", "𐍆𐍂𐌰𐌹𐍃𐍄𐍉𐌱𐌽𐌾𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌹", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌾𐍉𐍃", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌾𐍉𐍃", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌾𐌰𐌹", "", "female friend"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌾𐍉𐍃", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌾𐍉𐍃", "", "", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌹"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌹", "noun", "𐌷𐌰𐌹𐍄𐌾𐍉𐍃", "𐌷𐌰𐌹𐍄𐌾𐍉𐍃", "𐌷𐌰𐌹𐍄𐌾𐌰𐌹", "", "order command"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌾𐌰𐌹", "noun", "𐌷𐌰𐌹𐍄𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍈𐍉𐍆𐍄𐌿𐌻𐌹", "noun", "𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐍉𐍃", "𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐍉𐍃", "𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐌰𐌹", "", "rejoicing boasting"]) + let v = native_list_append(v, ["𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐍉𐍃", "noun", "𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐍉𐍃", "", "", "", "inflection of 𐍈𐍉𐍆𐍄𐌿𐌻𐌹"]) + let v = native_list_append(v, ["𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐌰", "noun", "𐍈𐍉𐍆𐍄𐌿𐌻𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐌻𐌿𐌽𐌳𐌹", "noun", "𐌷𐌿𐌻𐌿𐌽𐌳𐌾𐍉𐍃", "𐌷𐌿𐌻𐌿𐌽𐌳𐌾𐍉𐍃", "𐌷𐌿𐌻𐌿𐌽𐌳𐌾𐌰𐌹", "", "cave cavern"]) + let v = native_list_append(v, ["𐌾𐌿𐌺𐌿𐌶𐌹", "noun", "𐌾𐌿𐌺𐌿𐌶𐌾𐍉𐍃", "𐌾𐌿𐌺𐌿𐌶𐌾𐍉𐍃", "𐌾𐌿𐌺𐌿𐌶𐌾𐌰𐌹", "", "yoke burden"]) + let v = native_list_append(v, ["𐌾𐌿𐌺𐌿𐌶𐌾𐌰", "noun", "𐌾𐌿𐌺𐌿𐌶𐌾𐌰", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌾𐌿𐌺𐌿𐌶𐌾𐌰𐌹", "noun", "𐌾𐌿𐌺𐌿𐌶𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌺𐌾𐍉𐌼", "noun", "𐌺𐌰𐌻𐌺𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌳𐌹", "noun", "𐌻𐌰𐌿𐌳𐌾𐍉𐍃", "𐌻𐌰𐌿𐌳𐌾𐍉𐍃", "𐌻𐌰𐌿𐌳𐌾𐌰𐌹", "", "proportions of the"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌳𐌾𐌰𐌹", "noun", "𐌻𐌰𐌿𐌳𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐍂𐌹𐌽𐌹", "noun", "𐍃𐌰𐌿𐍂𐌹𐌽𐌾𐍉𐍃", "𐍃𐌰𐌿𐍂𐌹𐌽𐌾𐍉𐍃", "𐍃𐌰𐌿𐍂𐌹𐌽𐌾𐌰𐌹", "", "Syrian woman"]) + let v = native_list_append(v, ["𐌸𐌹𐍅𐌹", "noun", "𐌸𐌹𐌿𐌾𐍉𐍃", "𐌸𐌹𐌿𐌾𐍉𐍃", "𐌸𐌹𐌿𐌾𐌰𐌹", "", "bondwoman maid"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌾𐍉𐍃", "noun", "𐌸𐌹𐌿𐌾𐍉𐍃", "", "", "", "inflection of 𐌸𐌹𐍅𐌹"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌾𐍉", "noun", "𐌸𐌹𐌿𐌾𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌾𐌰𐌹", "noun", "𐌸𐌹𐌿𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌽𐌳𐌹", "noun", "𐌿𐍃𐍅𐌰𐌽𐌳𐌾𐍉𐍃", "𐌿𐍃𐍅𐌰𐌽𐌳𐌾𐍉𐍃", "𐌿𐍃𐍅𐌰𐌽𐌳𐌾𐌰𐌹", "", "diversion deception"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌽𐌳𐌾𐌰𐌹", "noun", "𐌿𐍃𐍅𐌰𐌽𐌳𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐌿", "noun", "𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐍅𐌰", "𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐍅𐌹𐍃", "𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐍅𐌰", "", "vine climbing plant"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐍅𐌰", "noun", "𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐍅𐌰", "", "", "", "inflection of 𐍅𐌴𐌹𐌽𐌰𐍄𐍂𐌹𐌿"]) + let v = native_list_append(v, ["𐌰𐍅𐌴𐌸𐌹", "noun", "𐌰𐍅𐌴𐌸𐌾𐌰", "𐌰𐍅𐌴𐌸𐌾𐌹𐍃", "𐌰𐍅𐌴𐌸𐌾𐌰", "", "flock of sheep"]) + let v = native_list_append(v, ["𐌰𐍅𐌴𐌸𐌾𐌹𐍃", "noun", "𐌰𐍅𐌴𐌸𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌰𐍂𐌹", "noun", "𐌿𐌽𐌱𐌹𐌰𐍂𐌾𐌰", "𐌿𐌽𐌱𐌹𐌰𐍂𐌾𐌹𐍃", "𐌿𐌽𐌱𐌹𐌰𐍂𐌾𐌰", "", "beast violent/antisocial person"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌰𐍂𐌾𐌰", "noun", "𐌿𐌽𐌱𐌹𐌰𐍂𐌾𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌹𐌽𐌹𐌻𐍉", "noun", "𐌹𐌽𐌹𐌻𐍉𐌽𐍃", "𐌹𐌽𐌹𐌻𐍉𐌽𐍃", "𐌹𐌽𐌹𐌻𐍉𐌽", "", "pretext excuse"]) + let v = native_list_append(v, ["𐌹𐌽𐌹𐌻𐍉𐌽𐍃", "noun", "𐌹𐌽𐌹𐌻𐍉𐌽𐍃", "", "", "", "inflection of 𐌹𐌽𐌹𐌻𐍉"]) + let v = native_list_append(v, ["𐌹𐌽𐌹𐌻𐍉𐌽", "noun", "𐌹𐌽𐌹𐌻𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐍃", "noun", "𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌴𐌹𐍃", "𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌹𐍃", "𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌰", "", "supper"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌹𐍃", "noun", "𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄", "noun", "𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌰", "noun", "𐌽𐌰𐌷𐍄𐌰𐌼𐌰𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐌿𐍂𐌽𐌹𐌼𐌰𐍄𐍃", "noun", "𐌿𐌽𐌳𐌰𐌿𐍂𐌽𐌹𐌼𐌰𐍄𐌴𐌹𐍃", "𐌿𐌽𐌳𐌰𐌿𐍂𐌽𐌹𐌼𐌰𐍄𐌹𐍃", "𐌿𐌽𐌳𐌰𐌿𐍂𐌽𐌹𐌼𐌰𐍄𐌰", "", "a midday meal"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐌿𐍂𐌽𐌹𐌼𐌰𐍄", "noun", "𐌿𐌽𐌳𐌰𐌿𐍂𐌽𐌹𐌼𐌰𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌱𐍂𐌿𐌽𐍃𐍄𐍃", "noun", "𐌰𐌻𐌰𐌱𐍂𐌿𐌽𐍃𐍄𐌴𐌹𐍃", "𐌰𐌻𐌰𐌱𐍂𐌿𐌽𐍃𐍄𐌰𐌹𐍃", "𐌰𐌻𐌰𐌱𐍂𐌿𐌽𐍃𐍄𐌰𐌹", "", "burnt offering holocaust"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌱𐍂𐌿𐌽𐍃𐍄𐌹𐌼", "noun", "𐌰𐌻𐌰𐌱𐍂𐌿𐌽𐍃𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐌰𐌳𐌰𐌿𐍂𐍉", "noun", "𐌰𐌿𐌲𐌰𐌳𐌰𐌿𐍂𐍉𐌽𐌰", "𐌰𐌿𐌲𐌰𐌳𐌰𐌿𐍂𐌹𐌽𐍃", "𐌰𐌿𐌲𐌰𐌳𐌰𐌿𐍂𐌹𐌽", "", "window literally eye-door"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐌻𐍉", "noun", "𐌱𐌰𐍂𐌽𐌹𐌻𐍉𐌽𐌰", "𐌱𐌰𐍂𐌽𐌹𐌻𐌹𐌽𐍃", "𐌱𐌰𐍂𐌽𐌹𐌻𐌹𐌽", "", "young child especially"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐌻𐍉𐌽𐌰", "noun", "𐌱𐌰𐍂𐌽𐌹𐌻𐍉𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌺𐍉", "noun", "𐌸𐌰𐌹𐍂𐌺𐍉𐌽𐌰", "𐌸𐌰𐌹𐍂𐌺𐌹𐌽𐍃", "𐌸𐌰𐌹𐍂𐌺𐌹𐌽", "", "eye hole at"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽𐌰𐌹", "", "manifestation appearance"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽", "noun", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐌰𐌹", "", "compassion pity mercy"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍉", "noun", "𐌲𐌰𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌴𐍄𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍆𐌴𐍄𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍆𐌴𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍆𐌴𐍄𐌴𐌹𐌽𐌰𐌹", "", "clothing"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌴𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍆𐌴𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "possession"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "hearing"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹", "", "cleansing"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌿𐌳𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌼𐌰𐌿𐌳𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌼𐌰𐌿𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌼𐌰𐌿𐌳𐌴𐌹𐌽𐌰𐌹", "", "remembrance recollection"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌿𐌳𐌴𐌹𐌽", "noun", "𐌲𐌰𐌼𐌰𐌿𐌳𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐌰𐌹", "", "writing scripture"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐌹𐌼", "noun", "𐌲𐌰𐌼𐌴𐌻𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "rule ordinance decree"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌹𐌼", "noun", "𐌲𐌰𐍂𐌰𐌹𐌳𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐌰𐌹", "", "correction rectification"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐍃", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐍃", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽", "", "righteousness"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌼", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐍄𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍃𐌰𐍄𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹", "", "foundation"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐍄𐌴𐌹𐌽", "noun", "𐌲𐌰𐍃𐌰𐍄𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐌳𐍅𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍃𐌺𐌰𐌳𐍅𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍃𐌺𐌰𐌳𐍅𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍃𐌺𐌰𐌳𐍅𐌴𐌹𐌽𐌰𐌹", "", "covering clothing"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐌳𐍅𐌴𐌹𐌽", "noun", "𐌲𐌰𐍃𐌺𐌰𐌳𐍅𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐌹𐌳𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍃𐌺𐌰𐌹𐌳𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍃𐌺𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍃𐌺𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "difference"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "", "consolation solace"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽", "noun", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐍉", "noun", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹", "", "edification construction"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐌰𐌹", "", "selection choosing election"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽𐌰𐌹", "", "conversion"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐍂𐌲𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍅𐌰𐍂𐌲𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍅𐌰𐍂𐌲𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍅𐌰𐍂𐌲𐌴𐌹𐌽𐌰𐌹", "", "condemnation"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐍂𐌲𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍅𐌰𐍂𐌲𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐍃𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐍅𐌰𐍃𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐍅𐌰𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍅𐌰𐍃𐌴𐌹𐌽𐌰𐌹", "", "clothing"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐍃", "noun", "𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐍉𐍃", "𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "", "consolation solace"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌲𐌼𐌰𐌽𐍃", "noun", "𐌱𐌰𐌲𐌼𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌲𐌼𐌴", "noun", "𐌱𐌰𐌲𐌼𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌲𐌼𐌰𐌼", "noun", "𐌱𐌰𐌲𐌼𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌹𐍅𐌰𐌿𐍂𐌳𐌴𐌹", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌹𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐌰𐌲𐌻𐌰𐌹𐍄𐌹𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐌰𐌲𐌻𐌰𐌹𐍄𐌹𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "shameful or obscene"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌹𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌹𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌹", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌰", "𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌹𐍃", "𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌰", "", "lewdness lasciviousness"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌰", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌰", "", "", "", "inflection of 𐌰𐌲𐌻𐌰𐌹𐍄𐌹"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌰𐌼", "noun", "𐌰𐌲𐌻𐌰𐌹𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌷𐍄𐌰𐌿𐍄𐌴𐌷𐌿𐌽𐌳", "noun", "𐌰𐌷𐍄𐌰𐌿𐍄𐌴𐌷𐌿𐌽𐌳", "𐌰𐌷𐍄𐌰𐌿𐍄𐌴𐌷𐌿𐌽𐌳𐌹𐍃", "𐌰𐌷𐍄𐌰𐌿𐍄𐌴𐌷𐌿𐌽𐌳𐌰", "", "eighty cardinal number"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐍃", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌴𐌹𐍃", "𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹𐍃", "𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹", "", "kiss"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹", "noun", "𐍆𐍂𐌹𐌾𐍉𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐍃", "noun", "𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌴𐌹𐍃", "𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌰𐌹𐍃", "𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌰𐌹", "", "prayer request supplication"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌹𐌽𐍃", "noun", "𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌰𐌹", "noun", "𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐍃", "noun", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌴𐌹𐍃", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌰𐌹𐍃", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌰𐌹", "", "reconciliation"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽", "noun", "𐌻𐌰𐌸𐍉𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽𐍃", "noun", "𐌻𐌰𐌸𐍉𐌽𐌴𐌹𐍃", "𐌻𐌰𐌸𐍉𐌽𐌰𐌹𐍃", "𐌻𐌰𐌸𐍉𐌽𐌰𐌹", "", "calling"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽𐌰𐌹𐍃", "noun", "𐌻𐌰𐌸𐍉𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽𐌰𐌹", "noun", "𐌻𐌰𐌸𐍉𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉𐌽𐌰𐌹𐍃", "noun", "𐍃𐌰𐌻𐌱𐍉𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉𐌽𐍃", "noun", "𐍃𐌰𐌻𐌱𐍉𐌽𐌴𐌹𐍃", "𐍃𐌰𐌻𐌱𐍉𐌽𐌰𐌹𐍃", "𐍃𐌰𐌻𐌱𐍉𐌽𐌰𐌹", "", "ointment salve"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐍉𐌽𐍃", "noun", "𐍃𐌿𐌽𐌾𐍉𐌽𐌴𐌹𐍃", "𐍃𐌿𐌽𐌾𐍉𐌽𐌰𐌹𐍃", "𐍃𐌿𐌽𐌾𐍉𐌽𐌰𐌹", "", "apologia defence"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐍉𐌽𐌰𐌹", "noun", "𐍃𐌿𐌽𐌾𐍉𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐍉𐌽", "noun", "𐍃𐌿𐌽𐌾𐍉𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌲𐍃", "noun", "𐍅𐌴𐌲𐍉𐍃", "𐍅𐌴𐌲𐌹𐍃", "𐍅𐌴𐌲𐌰", "", "agitation of the"]) + let v = native_list_append(v, ["𐍅𐌴𐌲𐍉𐍃", "noun", "𐍅𐌴𐌲𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐌲𐌰", "noun", "𐍅𐌴𐌲𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌲𐌹𐌼", "noun", "𐍅𐌴𐌲𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐍃", "noun", "𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌴𐌹𐍃", "𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌹𐍃", "𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌰", "", "vineyard"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳", "noun", "𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌹𐍃", "noun", "𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌰", "noun", "𐍅𐌴𐌹𐌽𐌰𐌲𐌰𐍂𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐍄𐌰𐌹𐌽𐍃", "noun", "𐍅𐌴𐌹𐌽𐌰𐍄𐌰𐌹𐌽𐍉𐍃", "𐍅𐌴𐌹𐌽𐌰𐍄𐌰𐌹𐌽𐌹𐍃", "𐍅𐌴𐌹𐌽𐌰𐍄𐌰𐌹𐌽𐌰", "", "vine twig"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌰𐍄𐌰𐌹𐌽𐍉𐍃", "noun", "𐍅𐌴𐌹𐌽𐌰𐍄𐌰𐌹𐌽𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌽𐍃", "noun", "𐍄𐌰𐌹𐌽𐍉𐍃", "𐍄𐌰𐌹𐌽𐌹𐍃", "𐍄𐌰𐌹𐌽𐌰", "", "twig or branch"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌽𐌴", "noun", "𐍄𐌰𐌹𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌳𐍂𐌿𐌲𐌺𐌾𐌰", "noun", "𐍅𐌴𐌹𐌽𐌳𐍂𐌿𐌲𐌺𐌾𐌰𐌽𐍃", "𐍅𐌴𐌹𐌽𐌳𐍂𐌿𐌲𐌺𐌾𐌹𐌽𐍃", "𐍅𐌴𐌹𐌽𐌳𐍂𐌿𐌲𐌺𐌾𐌹𐌽", "", "drunkard winebibber"]) + let v = native_list_append(v, ["𐌻𐌿𐍆𐍄𐌿𐍃", "noun", "𐌻𐌿𐍆𐍄𐌿𐍃", "𐌻𐌿𐍆𐍄𐌰𐌿𐍃", "𐌻𐌿𐍆𐍄𐌰𐌿", "", "air the apparently"]) + let v = native_list_append(v, ["𐌻𐌿𐍆𐍄𐌰𐌿", "noun", "𐌻𐌿𐍆𐍄𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐍆𐍄𐌰𐌿𐍃", "noun", "𐌻𐌿𐍆𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐍆𐍄𐌿", "noun", "𐌻𐌿𐍆𐍄𐌿", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹", "noun", "𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽𐍃", "𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽𐍃", "𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽", "", "manifestation"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽", "noun", "𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐌻", "noun", "𐌼𐌴𐌻𐌰", "𐌼𐌴𐌻𐌹𐍃", "𐌼𐌴𐌻𐌰", "", "time"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌴", "noun", "𐌼𐌴𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌰", "noun", "𐌼𐌴𐌻𐌰𐌽𐍃", "𐌼𐌴𐌻𐌹𐌽𐍃", "𐌼𐌴𐌻𐌹𐌽", "", "a measure of"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌹𐍃", "noun", "𐌼𐌴𐌻𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌰𐌼", "noun", "𐌼𐌴𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌰𐌽", "noun", "𐌼𐌴𐌻𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐍂𐌴𐌹𐌽", "noun", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌹𐍃", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰", "", "parents always plural"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌹𐍃", "noun", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰", "noun", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍆𐌰𐌳𐍂𐌴𐌹𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰𐌼", "noun", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐍃", "noun", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐍉𐍃", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰𐌹", "", "patri-lineage descent kin"]) + let v = native_list_append(v, ["𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐍆𐌰𐌳𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌶𐌰𐍃𐌼𐌹𐌸𐌰", "noun", "𐌰𐌹𐌶𐌰𐍃𐌼𐌹𐌸𐌰𐌽𐍃", "𐌰𐌹𐌶𐌰𐍃𐌼𐌹𐌸𐌹𐌽𐍃", "𐌰𐌹𐌶𐌰𐍃𐌼𐌹𐌸𐌹𐌽", "", "coppersmith"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌻𐌰𐌿𐌲𐌹𐌰", "noun", "𐌰𐌹𐍅𐌻𐌰𐌿𐌲𐌹𐌰𐌽𐍃", "𐌰𐌹𐍅𐌻𐌰𐌿𐌲𐌹𐌹𐌽𐍃", "𐌰𐌹𐍅𐌻𐌰𐌿𐌲𐌹𐌹𐌽", "", "benefaction donation"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌻𐌰𐌿𐌲𐌹𐌰𐌽", "noun", "𐌰𐌹𐍅𐌻𐌰𐌿𐌲𐌹𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌼𐌱𐍂𐌰𐌽𐌰", "noun", "𐌼𐌰𐌹𐌼𐌱𐍂𐌰𐌽𐌰𐌽𐍃", "𐌼𐌰𐌹𐌼𐌱𐍂𐌰𐌽𐌹𐌽𐍃", "𐌼𐌰𐌹𐌼𐌱𐍂𐌰𐌽𐌹𐌽", "", "parchment"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌼𐌱𐍂𐌰𐌽𐌰𐌽𐍃", "noun", "𐌼𐌰𐌹𐌼𐌱𐍂𐌰𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌺𐌿𐌻𐍃", "noun", "𐌷𐌰𐌺𐌿𐌻𐍉𐍃", "𐌷𐌰𐌺𐌿𐌻𐌹𐍃", "𐌷𐌰𐌺𐌿𐌻𐌰", "", "cloak coat"]) + let v = native_list_append(v, ["𐌷𐌰𐌺𐌿𐌻", "noun", "𐌷𐌰𐌺𐌿𐌻", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌿𐍃", "noun", "𐌹𐌿𐌳𐌰𐌹𐌴𐌹𐍃 (𐌾𐌿𐌳𐌰𐌹𐌴𐌹𐍃)", "𐌹𐌿𐌳𐌰𐌹𐌰𐌿𐍃", "𐌹𐌿𐌳𐌰𐌹𐌰𐌿", "", "Jew"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌰𐌿𐍃", "noun", "𐌹𐌿𐌳𐌰𐌹𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌰𐌿", "noun", "𐌹𐌿𐌳𐌰𐌹𐌰𐌿", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌴𐌹𐍃", "noun", "𐌹𐌿𐌳𐌰𐌹𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌿𐌽𐍃", "noun", "𐌹𐌿𐌳𐌰𐌹𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌴", "noun", "𐌹𐌿𐌳𐌰𐌹𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌿𐌼", "noun", "𐌹𐌿𐌳𐌰𐌹𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌰𐌻𐌰𐌽𐌳", "noun", "𐌹𐌿𐌳𐌰𐌹𐌰𐌻𐌰𐌽𐌳𐌰", "𐌹𐌿𐌳𐌰𐌹𐌰𐌻𐌰𐌽𐌳𐌹𐍃", "𐌹𐌿𐌳𐌰𐌹𐌰𐌻𐌰𐌽𐌳𐌰", "", "Judea"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌲𐌰𐍂𐌴𐌹𐍃", "noun", "𐍅𐌰𐌲𐌲𐌰𐍂𐌾𐍉𐍃", "𐍅𐌰𐌲𐌲𐌰𐍂𐌾𐌴", "𐍅𐌰𐌲𐌲𐌰𐍂𐌾𐌰", "", "pillow"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌲𐌰𐍂𐌾𐌰", "noun", "𐍅𐌰𐌲𐌲𐌰𐍂𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐍀𐌽", "noun", "𐍅𐌴𐍀𐌽𐌰", "𐍅𐌴𐍀𐌽𐌹𐍃", "𐍅𐌴𐍀𐌽𐌰", "", "weapon instrument of"]) + let v = native_list_append(v, ["𐍅𐌴𐍀𐌽𐌰", "noun", "𐍅𐌴𐍀𐌽𐌰", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐍀𐌽𐌰𐌼", "noun", "𐍅𐌴𐍀𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍃", "noun", "𐌷𐌰𐌹𐌶𐌰", "𐌷𐌰𐌹𐌶𐌹𐍃", "𐌷𐌰𐌹𐌶𐌰", "", "torch"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌶𐌰𐌼", "noun", "𐌷𐌰𐌹𐌶𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐌼𐌰", "noun", "𐍃𐌺𐌴𐌹𐌼𐌰𐌽𐍃", "𐍃𐌺𐌴𐌹𐌼𐌹𐌽𐍃", "𐍃𐌺𐌴𐌹𐌼𐌹𐌽", "", "lantern torch"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐌼𐌰𐌼", "noun", "𐍃𐌺𐌴𐌹𐌼𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐍂𐌴𐌹𐌺𐍃", "noun", "𐌰𐌻𐌰𐍂𐌴𐌹𐌺𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌰𐌲𐍅𐌰", "noun", "𐌱𐌹𐌳𐌰𐌲𐍅𐌰𐌽𐍃", "𐌱𐌹𐌳𐌰𐌲𐍅𐌹𐌽𐍃", "𐌱𐌹𐌳𐌰𐌲𐍅𐌹𐌽", "", "beggar"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰", "noun", "𐍄𐌹𐌼𐍂𐌾𐌰𐌽𐍃", "𐍄𐌹𐌼𐍂𐌾𐌹𐌽𐍃", "𐍄𐌹𐌼𐍂𐌾𐌹𐌽", "", "carpenter"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰𐌽𐍃", "noun", "𐍄𐌹𐌼𐍂𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐍄𐌾𐌰", "noun", "𐌰𐌿𐍂𐍄𐌾𐌰𐌽𐍃", "𐌰𐌿𐍂𐍄𐌾𐌹𐌽𐍃", "𐌰𐌿𐍂𐍄𐌾𐌹𐌽", "", "husbandman tenant farmer"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐍄𐌾𐌰𐌽𐍃", "noun", "𐌰𐌿𐍂𐍄𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐍄𐌾𐌰𐌼", "noun", "𐌰𐌿𐍂𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐌾𐌰", "noun", "𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐍃", "𐌱𐌰𐌿𐍂𐌲𐌾𐌹𐌽𐍃", "𐌱𐌰𐌿𐍂𐌲𐌾𐌹𐌽", "", "citizen"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐍃", "noun", "𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐌴", "noun", "𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐌹𐌷𐌰𐌹𐍄𐌾𐌰", "noun", "𐌱𐌹𐌷𐌰𐌹𐍄𐌾𐌰𐌽𐍃", "𐌱𐌹𐌷𐌰𐌹𐍄𐌾𐌹𐌽𐍃", "𐌱𐌹𐌷𐌰𐌹𐍄𐌾𐌹𐌽", "", "braggart boaster"]) + let v = native_list_append(v, ["𐌱𐌹𐌷𐌰𐌹𐍄𐌾𐌰𐌽𐍃", "noun", "𐌱𐌹𐌷𐌰𐌹𐍄𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌲𐌰𐌷𐌰𐌹𐍄𐌾𐌰", "noun", "𐌳𐌿𐌻𐌲𐌰𐌷𐌰𐌹𐍄𐌾𐌰𐌽𐍃", "𐌳𐌿𐌻𐌲𐌰𐌷𐌰𐌹𐍄𐌾𐌹𐌽𐍃", "𐌳𐌿𐌻𐌲𐌰𐌷𐌰𐌹𐍄𐌾𐌹𐌽", "", "creditor"]) + let v = native_list_append(v, ["𐌳𐌿𐌻𐌲𐌰𐌷𐌰𐌹𐍄𐌾𐌹𐌽", "noun", "𐌳𐌿𐌻𐌲𐌰𐌷𐌰𐌹𐍄𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌰", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌰𐌽𐍃", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐌽𐍃", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐌽", "", "steward manager"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐌽𐍃", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌰𐌽", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌴𐍂𐌾𐌰", "noun", "𐍆𐌴𐍂𐌾𐌰𐌽𐍃", "𐍆𐌴𐍂𐌾𐌹𐌽𐍃", "𐍆𐌴𐍂𐌾𐌹𐌽", "", "informer"]) + let v = native_list_append(v, ["𐍆𐌴𐍂𐌾𐌰𐌽𐍃", "noun", "𐍆𐌴𐍂𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰", "noun", "𐌲𐌿𐌳𐌰", "", "", "", "inflection of 𐌲𐌿𐌸"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌹𐍃", "noun", "𐌲𐌿𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐌼", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐌿𐍃", "noun", "𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐌿𐍃", "", "", "", "misspelling of 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌱𐌰𐌻𐍃𐍄𐍂𐌰𐌿𐌽", "noun", "𐌰𐌻𐌰𐌱𐌰𐌻𐍃𐍄𐍂𐌰𐌿𐌽𐌰", "𐌰𐌻𐌰𐌱𐌰𐌻𐍃𐍄𐍂𐌰𐌿𐌽𐌹𐍃", "𐌰𐌻𐌰𐌱𐌰𐌻𐍃𐍄𐍂𐌰𐌿𐌽𐌰", "", "A type of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐍃", "noun", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐍉𐍃", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐌰𐌹", "", "honour glory exaltation"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹𐌽", "noun", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐌰𐌹", "noun", "𐌷𐌰𐌿𐌷𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐍃", "noun", "𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐍉𐍃", "𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐌰𐌹", "", "lowliness humility"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌴𐌹𐌽", "noun", "𐌷𐌰𐌿𐌽𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐌰𐌹", "noun", "𐌷𐌰𐌿𐌽𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍃", "noun", "𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍉𐍃", "𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "hearing"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹𐌽", "noun", "𐌷𐌰𐌿𐍃𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "noun", "𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌴𐌹𐌽𐍃", "noun", "𐌷𐌰𐌶𐌴𐌹𐌽𐍉𐍃", "𐌷𐌰𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐌰𐌶𐌴𐌹𐌽𐌰𐌹", "", "praise"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌴𐌹𐌽", "noun", "𐌷𐌰𐌶𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌴𐌹𐌽𐌰𐌹", "noun", "𐌷𐌰𐌶𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌴𐌹𐌽𐍉", "noun", "𐌷𐌰𐌶𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌴𐌹𐌽𐌹𐌼", "noun", "𐌷𐌰𐌶𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐍃", "noun", "𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐍃", "𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹", "", "lowliness abasement humility"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹", "noun", "𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "noun", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍉𐍃", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹", "", "purification cleansing"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍉", "noun", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽", "noun", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌽𐍃", "noun", "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌽𐍉𐍃", "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "exchange substitution"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌽", "noun", "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐍄𐌴𐌹𐌽𐍃", "noun", "𐌻𐌹𐍄𐌴𐌹𐌽𐍉𐍃", "𐌻𐌹𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌻𐌹𐍄𐌴𐌹𐌽𐌰𐌹", "", "intercessory prayer"]) + let v = native_list_append(v, ["𐌻𐌹𐍄𐌴𐌹𐌽𐌹𐌽𐍃", "noun", "𐌻𐌹𐍄𐌴𐌹𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐍃", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐍉𐍃", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐌰𐌹", "", "brightness radiancy illumination"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "noun", "𐌼𐌴𐍂𐌴𐌹𐌽𐍉𐍃", "𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹", "", "proclamation"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹", "noun", "𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐍃", "noun", "𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌴", "𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌹𐍃", "𐌼𐌴𐍂𐌾𐌰𐌽𐌳", "", "preacher"]) + let v = native_list_append(v, ["𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐍃", "noun", "𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐍉𐍃", "𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐌰𐌹", "", "blasphemy"]) + let v = native_list_append(v, ["𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐌹𐌽𐍃", "noun", "𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐍉𐍃", "noun", "𐌽𐌰𐌹𐍄𐌴𐌹𐌽𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌴𐌹𐌽𐍃", "noun", "𐌽𐌰𐍃𐌴𐌹𐌽𐍉𐍃", "𐌽𐌰𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌽𐌰𐍃𐌴𐌹𐌽𐌰𐌹", "", "salvation"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌴𐌹𐌽", "noun", "𐌽𐌰𐍃𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌽𐌰𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌴𐌹𐌽𐌰𐌹", "noun", "𐌽𐌰𐍃𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌷𐍃𐌴𐌹𐌽𐍃", "noun", "𐌽𐌹𐌿𐌷𐍃𐌴𐌹𐌽𐍉𐍃", "𐌽𐌹𐌿𐌷𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌽𐌹𐌿𐌷𐍃𐌴𐌹𐌽𐌰𐌹", "", "visitation inspection"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌷𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌽𐌹𐌿𐌷𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐍃𐍄𐌴𐌹𐌽𐍃", "noun", "𐌵𐌹𐍃𐍄𐌴𐌹𐌽𐍉𐍃", "𐌵𐌹𐍃𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌵𐌹𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "", "destruction ruination"]) + let v = native_list_append(v, ["𐌵𐌹𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌵𐌹𐍃𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌴𐌹𐌽𐍃", "noun", "𐍃𐍉𐌺𐌴𐌹𐌽𐍉𐍃", "𐍃𐍉𐌺𐌴𐌹𐌽𐌰𐌹𐍃", "𐍃𐍉𐌺𐌴𐌹𐌽𐌰𐌹", "", "a search investigation"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽𐍃", "noun", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽𐍉𐍃", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽𐌰𐌹", "", "purification"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽", "noun", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌴𐌹", "noun", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽𐍃", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽𐍃", "𐍃𐍅𐌹𐌺𐌽𐌴𐌹𐌽", "", "purity innocence"]) + let v = native_list_append(v, ["𐍄𐌰𐌻𐌶𐌴𐌹𐌽𐍃", "noun", "𐍄𐌰𐌻𐌶𐌴𐌹𐌽𐍉𐍃", "𐍄𐌰𐌻𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "𐍄𐌰𐌻𐌶𐌴𐌹𐌽𐌰𐌹", "", "instruction"]) + let v = native_list_append(v, ["𐍄𐌰𐌻𐌶𐌴𐌹𐌽𐌰𐌹", "noun", "𐍄𐌰𐌻𐌶𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐍃", "noun", "𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐍉𐍃", "𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐌰𐌹𐍃", "𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐌰𐌹", "", "goodness"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐌰𐌹", "noun", "𐌸𐌹𐌿𐌸𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐍃", "noun", "𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐍉𐍃", "𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹", "", "edification"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹", "noun", "𐍄𐌹𐌼𐍂𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽𐍃", "noun", "𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽𐍉𐍃", "𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽𐌰𐌹", "", "disputation doubting hesitation"]) + let v = native_list_append(v, ["𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽", "noun", "𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽𐌰𐌹", "noun", "𐍄𐍅𐌴𐌹𐍆𐌻𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍃", "noun", "𐌿𐍆𐌰𐍂𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍉𐍃", "𐌿𐍆𐌰𐍂𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍆𐌰𐍂𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "disobedience"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍉", "noun", "𐌿𐍆𐌰𐍂𐌷𐌰𐌿𐍃𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌴𐌹𐌽𐍃", "noun", "𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌴𐌹𐌽𐍉𐍃", "𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌴𐌹𐌽𐌰𐌹", "", "inscription superscription"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌹", "noun", "𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌹𐍃", "𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "", "answer response"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰𐌼", "noun", "𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌴", "noun", "𐌰𐌽𐌳𐌰𐍅𐌰𐌿𐍂𐌳𐌴", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌴𐌹", "noun", "𐌼𐌰𐍂𐌴𐌹𐌽𐍃", "𐌼𐌰𐍂𐌴𐌹𐌽𐍃", "𐌼𐌰𐍂𐌴𐌹𐌽", "", "sea"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌴𐌹𐌽𐍃", "noun", "𐌼𐌰𐍂𐌴𐌹𐌽𐍃", "", "", "", "nominative/accusative/genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌴𐌹𐌽", "noun", "𐌼𐌰𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐌸𐍃", "noun", "𐌷𐍂𐍉𐌸𐌴𐌹𐍃", "𐌷𐍂𐍉𐌸𐌹𐍃", "𐌷𐍂𐍉𐌸𐌰", "", "glory fame triumph"]) + let v = native_list_append(v, ["𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌰", "noun", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌹𐌽𐍃", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌹𐌽", "", "lamp stand candlestick"]) + let v = native_list_append(v, ["𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌹𐌽", "noun", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌰𐌽", "noun", "𐌻𐌿𐌺𐌰𐍂𐌽𐌰𐍃𐍄𐌰𐌸𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌹𐍃", "noun", "𐍂𐌴𐌹𐌺𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌹𐌻𐌰", "noun", "𐌼𐌴𐍂𐌹𐌻𐌰𐌽𐍃", "𐌼𐌴𐍂𐌹𐌻𐌹𐌽𐍃", "𐌼𐌴𐍂𐌹𐌻𐌹𐌽", "", "a male given"]) + let v = native_list_append(v, ["𐌿𐍆𐌹𐍄𐌰𐌷𐌰𐍂𐌹", "noun", "𐌿𐍆𐌹𐍄𐌰𐌷𐌰𐍂𐌹", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐍀𐌰𐍀𐌰", "noun", "𐍀𐌰𐍀𐌰𐌽𐍃", "𐍀𐌰𐍀𐌹𐌽𐍃", "𐍀𐌰𐍀𐌹𐌽", "", "Christian priest clergyman"]) + let v = native_list_append(v, ["𐍀𐌰𐍀𐌰𐌽", "noun", "𐍀𐌰𐍀𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐍂𐌹𐌸", "noun", "𐍅𐌹𐌻𐌾𐌰𐍂𐌹𐌸", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌳𐌹𐌸𐌰𐌿𐍂𐍆𐍄𐍃", "noun", "𐌽𐌰𐌿𐌳𐌹𐌸𐌰𐌿𐍂𐍆𐍄𐌴𐌹𐍃", "𐌽𐌰𐌿𐌳𐌹𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹𐍃", "𐌽𐌰𐌿𐌳𐌹𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹", "", "necessity need"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌳𐌹𐌸𐌰𐌿𐍂𐍆𐍄", "noun", "𐌽𐌰𐌿𐌳𐌹𐌸𐌰𐌿𐍂𐍆𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌰𐌹𐍆𐍂𐌹𐌸𐌰𐍃", "noun", "𐍃𐌿𐌽𐌾𐌰𐌹𐍆𐍂𐌹𐌸𐌰𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌹𐌻𐌿𐌱", "noun", "𐌲𐌿𐌳𐌹𐌻𐌿𐌱", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐍅𐌴𐍂𐌴𐌺𐌰", "noun", "𐍅𐌴𐍂𐌴𐌺𐌰𐌽𐍃", "𐍅𐌴𐍂𐌴𐌺𐌹𐌽𐍃", "𐍅𐌴𐍂𐌴𐌺𐌹𐌽", "", "a male given"]) + let v = native_list_append(v, ["𐍅𐌴𐍂𐌴𐌺𐌰𐌽", "noun", "𐍅𐌴𐍂𐌴𐌺𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐍅𐌹𐌽𐍃", "noun", "𐌱𐌰𐍄𐍅𐌹𐌽𐍃", "𐌱𐌰𐍄𐍅𐌹𐌽𐌹𐍃", "𐌱𐌰𐍄𐍅𐌹𐌽𐌰", "", "a male given"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍂𐌰𐌽𐌽𐌴𐌹𐌽𐍃", "noun", "𐌿𐍆𐌰𐍂𐍂𐌰𐌽𐌽𐌴𐌹𐌽𐍉𐍃", "𐌿𐍆𐌰𐍂𐍂𐌰𐌽𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍆𐌰𐍂𐍂𐌰𐌽𐌽𐌴𐌹𐌽𐌰𐌹", "", "sprinkling"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍂𐌰𐌽𐌽𐌴𐌹𐌽𐌹𐌼", "noun", "𐌿𐍆𐌰𐍂𐍂𐌰𐌽𐌽𐌴𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐍆𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐍃", "noun", "𐌿𐍆𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐍃", "𐌿𐍆𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍆𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹", "", "subjugation subjection"]) + let v = native_list_append(v, ["𐌿𐍆𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽", "noun", "𐌿𐍆𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐍃𐍅𐌰𐌻𐌻𐌴𐌹𐌽𐍃", "noun", "𐌿𐍆𐍃𐍅𐌰𐌻𐌻𐌴𐌹𐌽𐍉𐍃", "𐌿𐍆𐍃𐍅𐌰𐌻𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍆𐍃𐍅𐌰𐌻𐌻𐌴𐌹𐌽𐌰𐌹", "", "swelling bloating"]) + let v = native_list_append(v, ["𐌿𐍆𐍃𐍅𐌰𐌻𐌻𐌴𐌹𐌽𐍉𐍃", "noun", "𐌿𐍆𐍃𐍅𐌰𐌻𐌻𐌴𐌹𐌽𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐍉𐍃", "𐌿𐌽𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐌽𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "self-abasement neglect of"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐌿𐌽𐍆𐍂𐌴𐌹𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍉𐍃", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "", "disbelief faithlessness"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "noun", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽", "noun", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌰𐌿𐍂𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐌺𐌰𐌿𐍂𐌴𐌹𐌽𐍃", "", "", "", "unburdensomeness"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌰𐌿𐍂𐌴𐌹𐌽𐍉𐌼", "noun", "𐌿𐌽𐌺𐌰𐌿𐍂𐌴𐌹𐌽𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌻𐍉𐍄𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐌱𐌻𐍉𐍄𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐌱𐌻𐍉𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐌱𐌻𐍉𐍄𐌴𐌹𐌽𐌰𐌹", "", "supplication imploration prayer"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌻𐍉𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌿𐍃𐌱𐌻𐍉𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐍆𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐍆𐍉𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐍆𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "food nourishment"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐍉𐌳𐌴𐌹𐌽", "noun", "𐌿𐍃𐍆𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐌰𐌹", "", "fulfillment completion"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹", "", "salvation redemption liberation"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽", "noun", "𐌿𐍃𐌻𐌰𐌿𐍃𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌿𐌽𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐌻𐌿𐌽𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐌻𐌿𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐌻𐌿𐌽𐌴𐌹𐌽𐌰𐌹", "", "salvation"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌿𐌽𐌴𐌹𐌽", "noun", "𐌿𐍃𐌻𐌿𐌽𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐍄𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐍃𐌰𐍄𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹", "", "engendering begetting semination"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌿𐍃𐍃𐌰𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽𐌰𐌹", "", "proof revelation showing"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽", "noun", "𐌿𐍃𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌸𐍂𐍉𐌸𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐌸𐍂𐍉𐌸𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐌸𐍂𐍉𐌸𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐌸𐍂𐍉𐌸𐌴𐌹𐌽𐌰𐌹", "", "bodily exercise or"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌻𐍄𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐍅𐌰𐌻𐍄𐌴𐌹𐌽𐍉𐍃", "𐌿𐍃𐍅𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐍅𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹", "", "collapse downfall ruin"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹", "noun", "𐌿𐍃𐍅𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "noun", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍉𐍃", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹", "", "evangelization preaching bringing"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽", "noun", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "noun", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍉𐍃", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹𐍃", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐌰𐌹", "", "blasphemy slander sacrilegious"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽", "noun", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽", "", "", "", "accusative and dative"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽𐍉𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽𐌰𐌹", "", "the act of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌱𐌰𐌿𐍂", "noun", "𐌰𐌹𐌽𐌰𐌱𐌰𐌿𐍂𐌴𐌹𐍃", "𐌰𐌹𐌽𐌰𐌱𐌰𐌿𐍂𐌹𐍃", "𐌰𐌹𐌽𐌰𐌱𐌰𐌿𐍂𐌰", "", "one who is"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌱𐌰𐌿𐍂𐌰", "noun", "𐌰𐌹𐌽𐌰𐌱𐌰𐌿𐍂𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰𐌱𐌰𐌿𐍂", "noun", "𐍆𐍂𐌿𐌼𐌰𐌱𐌰𐌿𐍂𐌴𐌹𐍃", "𐍆𐍂𐌿𐌼𐌰𐌱𐌰𐌿𐍂𐌹𐍃", "𐍆𐍂𐌿𐌼𐌰𐌱𐌰𐌿𐍂𐌰", "", "firstborn"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐍃𐍄𐍃", "noun", "𐌱𐌰𐌽𐍃𐍄𐌴𐌹𐍃", "𐌱𐌰𐌽𐍃𐍄𐌹𐍃", "𐌱𐌰𐌽𐍃𐍄𐌰", "", "barn storehouse"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐍃𐍄𐌹𐌽𐍃", "noun", "𐌱𐌰𐌽𐍃𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐍃𐍄𐌰", "noun", "𐌱𐌰𐌽𐍃𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌼𐍃", "noun", "𐌱𐌰𐍂𐌼𐌴𐌹𐍃", "𐌱𐌰𐍂𐌼𐌹𐍃", "𐌱𐌰𐍂𐌼𐌰", "", "bosom"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌼𐌰", "noun", "𐌱𐌰𐍂𐌼𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌼𐌹𐌼", "noun", "𐌱𐌰𐍂𐌼𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌼", "noun", "𐌱𐌰𐍂𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌰𐍉", "noun", "𐍆𐌰𐍂𐌰𐍉", "", "", "", "Pharaoh"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌰𐍉𐌽𐌹", "noun", "𐍆𐌰𐍂𐌰𐍉𐌽𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌱𐌿𐌺𐌰𐌿𐌳𐌰𐌿𐌽𐌰𐌿𐍃𐌰𐌿𐍂", "noun", "𐌽𐌰𐌱𐌿𐌺𐌰𐌿𐌳𐌰𐌿𐌽𐌰𐌿𐍃𐌰𐌿𐍂", "", "", "", "Nebuchadnezzar"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐍃", "noun", "𐌻𐌰𐌹𐍃𐍄𐌴𐌹𐍃", "𐌻𐌰𐌹𐍃𐍄𐌹𐍃", "𐌻𐌰𐌹𐍃𐍄𐌰", "", "track footprint"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌹𐌼", "noun", "𐌻𐌰𐌹𐍃𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄", "noun", "𐌻𐌰𐌹𐍃𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍃𐍄𐌰𐌸𐍃", "noun", "𐌼𐍉𐍄𐌰𐍃𐍄𐌰𐌳𐌴𐌹𐍃", "𐌼𐍉𐍄𐌰𐍃𐍄𐌰𐌳𐌹𐍃", "𐌼𐍉𐍄𐌰𐍃𐍄𐌰𐌳𐌰", "", "tax booth publicans"]) + let v = native_list_append(v, ["𐌼𐍉𐍄𐌰𐍃𐍄𐌰𐌳𐌰", "noun", "𐌼𐍉𐍄𐌰𐍃𐍄𐌰𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐍃", "noun", "𐌼𐌿𐌽𐌴𐌹𐍃", "𐌼𐌿𐌽𐌹𐍃", "𐌼𐌿𐌽𐌰", "", "preparedness readiness"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌰", "noun", "𐌼𐌿𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽", "noun", "𐌼𐌿𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌹𐌽𐍃", "noun", "𐌼𐌿𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌹𐌰𐌽𐌳𐍃", "noun", "𐍆𐌹𐌰𐌽𐌳𐌴", "𐍆𐌹𐌰𐌽𐌳𐌹𐍃", "𐍆𐌹𐌰𐌽𐌳", "", "alternative form of"]) + let v = native_list_append(v, ["𐌳𐌰𐌼𐌾𐌰𐌽𐌿𐍃", "noun", "𐌳𐌰𐌼𐌾𐌰𐌽𐌿𐍃", "𐌳𐌰𐌼𐌾𐌰𐌽𐌰𐌿𐍃", "𐌳𐌰𐌼𐌾𐌰𐌽𐌰𐌿", "", "a male given"]) + let v = native_list_append(v, ["𐌳𐌰𐌼𐌾𐌰𐌽𐌰𐌿𐍃", "noun", "𐌳𐌰𐌼𐌾𐌰𐌽𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐍃", "noun", "𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐌴", "𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐌹𐍃", "𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳", "", "neighbour"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐌴", "noun", "𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍂𐌰𐌿𐍃", "noun", "𐍂𐌰𐌿𐍃𐌰", "𐍂𐌰𐌿𐍃𐌹𐍃", "𐍂𐌰𐌿𐍃𐌰", "", "cane plant with"]) + let v = native_list_append(v, ["𐍂𐌰𐌿𐍃𐌰", "noun", "𐍂𐌰𐌿𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌰", "noun", "𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌽𐍃", "𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌹𐌽𐍃", "𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌹𐌽", "", "evildoer criminal bandit"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌽𐍃", "noun", "𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌹𐌽", "noun", "𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌽𐌴", "noun", "𐍅𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌹𐌽𐍃", "noun", "𐌰𐌽𐌳𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌹𐍃𐌰𐌹𐍅𐍃", "noun", "𐌼𐌰𐍂𐌹𐍃𐌰𐌹𐍅𐌴𐌹𐍃", "𐌼𐌰𐍂𐌹𐍃𐌰𐌹𐍅𐌹𐍃", "𐌼𐌰𐍂𐌹𐍃𐌰𐌹𐍅𐌰", "", "lake"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌹𐍃𐌰𐌹𐍅", "noun", "𐌼𐌰𐍂𐌹𐍃𐌰𐌹𐍅", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐍃", "noun", "𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌴𐌹𐍃", "𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌰𐌹𐍃", "𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌰𐌹", "", "creation"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌰𐌹", "noun", "𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌰𐌹𐍃", "noun", "𐌲𐌰𐍃𐌺𐌰𐍆𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍆𐍄", "noun", "𐌲𐌰𐍃𐌺𐌰𐍆𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐍃", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐍃", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹𐍃", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌳", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌳", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍆𐍂𐌴𐌹𐌷𐌰𐌻𐍃", "noun", "𐍆𐍂𐌴𐌹𐌷𐌰𐌻𐍃𐍉𐍃", "𐍆𐍂𐌴𐌹𐌷𐌰𐌻𐍃𐌹𐍃", "𐍆𐍂𐌴𐌹𐌷𐌰𐌻𐍃𐌰", "", "freedom liberty"]) + let v = native_list_append(v, ["𐍆𐍂𐌴𐌹𐌷𐌰𐌻𐍃𐌰", "noun", "𐍆𐍂𐌴𐌹𐌷𐌰𐌻𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌴𐌹𐌾𐌷𐌰𐌻𐍃", "noun", "𐍆𐍂𐌴𐌹𐌾𐌷𐌰𐌻𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌵𐌴𐌽𐌴𐍃", "noun", "𐌵𐌴𐌽𐌴𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "noun", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽", "noun", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹", "noun", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌴𐌹𐌽", "", "simplicity singleness"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐍃", "noun", "𐌰𐌻𐌻𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐌴", "𐌰𐌻𐌻𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐌹𐍃", "𐌰𐌻𐌻𐍅𐌰𐌻𐌳𐌰𐌽𐌳", "", "almighty ruler"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌶𐌰", "noun", "𐌰𐌹𐍂𐌹𐌶𐌰𐌽𐍃", "𐌰𐌹𐍂𐌹𐌶𐌹𐌽𐍃", "𐌰𐌹𐍂𐌹𐌶𐌹𐌽", "", "ancestor"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌶𐌰𐌽𐌴", "noun", "𐌰𐌹𐍂𐌹𐌶𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌶𐌰𐌼", "noun", "𐌰𐌹𐍂𐌹𐌶𐌰𐌼", "", "", "", "dative neuter plural"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍄𐍃", "noun", "𐍅𐌹𐍃𐍄𐌴𐌹𐍃", "𐍅𐌹𐍃𐍄𐌰𐌹𐍃", "𐍅𐌹𐍃𐍄𐌰𐌹", "", "nature essence being"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍄𐌰𐌹", "noun", "𐍅𐌹𐍃𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍄𐌹𐌼", "noun", "𐍅𐌹𐍃𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐍆𐌰𐍃𐍄𐌴𐌹𐍃", "noun", "𐍅𐌹𐍄𐍉𐌳𐌰𐍆𐌰𐍃𐍄𐌾𐍉𐍃", "𐍅𐌹𐍄𐍉𐌳𐌰𐍆𐌰𐍃𐍄𐌾𐌴", "𐍅𐌹𐍄𐍉𐌳𐌰𐍆𐌰𐍃𐍄𐌾𐌰", "", "lawyer law scholar"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐍆𐌰𐍃𐍄𐌾𐍉𐍃", "noun", "𐍅𐌹𐍄𐍉𐌳𐌰𐍆𐌰𐍃𐍄𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌹𐍃", "noun", "𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌰", "noun", "𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃𐌺𐌹", "noun", "𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌰", "𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌹𐍃", "𐌰𐌹𐍅𐌹𐍃𐌺𐌾𐌰", "", "shame"]) + let v = native_list_append(v, ["𐌰𐌾𐌿𐌺𐌳𐌿𐌸", "noun", "𐌰𐌾𐌿𐌺𐌳𐌿𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌾𐌿𐌺𐌳𐌿𐌸𐍃", "noun", "𐌰𐌾𐌿𐌺𐌳𐌿𐌸𐌴𐌹𐍃", "𐌰𐌾𐌿𐌺𐌳𐌿𐌸𐌰𐌹𐍃", "𐌰𐌾𐌿𐌺𐌳𐌿𐌸𐌰𐌹", "", "eternity"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌼𐌰𐌽𐍃", "noun", "𐌰𐌻𐌰𐌼𐌰𐌽𐍃", "", "", "", "all of humanity"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌼𐌰𐌽𐌽𐌰𐌼", "noun", "𐌰𐌻𐌰𐌼𐌰𐌽𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍄𐌹𐍃𐌺", "noun", "𐌰𐍄𐌹𐍃𐌺", "", "", "", "cornfields cropland"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌹𐌺𐍂𐌴𐌹𐍄𐌿𐍃", "noun", "𐌼𐌰𐍂𐌹𐌺𐍂𐌴𐌹𐍄𐌾𐌿𐍃", "𐌼𐌰𐍂𐌹𐌺𐍂𐌴𐌹𐍄𐌰𐌿𐍃", "𐌼𐌰𐍂𐌹𐌺𐍂𐌴𐌹𐍄𐌰𐌿", "", "pearl"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌹𐌺𐍂𐌴𐌹𐍄𐌿𐌼", "noun", "𐌼𐌰𐍂𐌹𐌺𐍂𐌴𐌹𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌽𐌿𐍄𐍂𐌴𐌹", "noun", "𐍃𐌽𐌿𐍄𐍂𐌴𐌹𐌽𐍃", "𐍃𐌽𐌿𐍄𐍂𐌴𐌹𐌽𐍃", "𐍃𐌽𐌿𐍄𐍂𐌴𐌹𐌽", "", "cleverness wisdom"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "noun", "𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌻𐌰𐌿𐌷𐍃", "noun", "𐌸𐌻𐌰𐌿𐌷𐌴𐌹𐍃", "𐌸𐌻𐌰𐌿𐌷𐌹𐍃", "𐌸𐌻𐌰𐌿𐌷𐌰", "", "flight"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌽𐍃", "noun", "𐌰𐌿𐌷𐌽𐍉𐍃", "𐌰𐌿𐌷𐌽𐌹𐍃", "𐌰𐌿𐌷𐌽𐌰", "", "furnace oven"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌽", "noun", "𐌰𐌿𐌷𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐌰𐌹𐌼", "noun", "𐌰𐌻𐌳𐌰𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌻𐌳𐍉𐌼𐌹𐌽", "noun", "𐌰𐌻𐌳𐍉𐌼𐌹𐌽", "", "", "", "old age dative"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐍅𐌴𐍂𐌴𐌹", "noun", "𐌰𐌻𐌻𐌰𐍅𐌴𐍂𐌴𐌹𐌽𐍃", "𐌰𐌻𐌻𐌰𐍅𐌴𐍂𐌴𐌹𐌽𐍃", "𐌰𐌻𐌻𐌰𐍅𐌴𐍂𐌴𐌹𐌽", "", "sincerity agreeability simplicity"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐍅𐌴𐍂𐌴𐌹𐌽", "noun", "𐌰𐌻𐌻𐌰𐍅𐌴𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌽𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌹𐌽𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌹𐌽", "", "partaker"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽", "", "fellowship community"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐍃", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌴𐌹𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌰𐌹𐍃", "𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌰𐌹", "", "fellowship communality"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌰𐌹𐍃", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌴", "noun", "𐌲𐌰𐌼𐌰𐌹𐌽𐌳𐌿𐌸𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍀𐌿𐌲𐌲𐍃", "noun", "𐍀𐌿𐌲𐌲𐍉𐍃", "𐍀𐌿𐌲𐌲𐌹𐍃", "𐍀𐌿𐌲𐌲𐌰", "", "money pouch wallet"]) + let v = native_list_append(v, ["𐍀𐌿𐌲𐌲", "noun", "𐍀𐌿𐌲𐌲", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌽𐍃", "noun", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌽𐌴𐌹𐍃", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌽𐌰𐌹𐍃", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌽𐌰𐌹", "", "reading"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌽𐌰𐌹", "noun", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌶𐌰", "noun", "𐌰𐌽𐌶𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐍃", "noun", "𐌰𐌽𐌶𐍉𐍃", "𐌰𐌽𐌶𐌹𐍃", "𐌰𐌽𐌶𐌰", "", "wooden beam"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌴𐌹𐌽", "noun", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌴𐌹", "noun", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌴𐌹", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌴𐌹𐌽𐍃", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌴𐌹𐌽", "", "secrecy"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌲𐌰𐌷𐌴𐌹", "noun", "𐌱𐌰𐌹𐍂𐌲𐌰𐌷𐌴𐌹", "𐌱𐌰𐌹𐍂𐌲𐌰𐌷𐌴𐌹𐌽𐍃", "𐌱𐌰𐌹𐍂𐌲𐌰𐌷𐌴𐌹𐌽", "", "hill country highland"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌲𐌰𐌷𐌴𐌹𐌽", "noun", "𐌱𐌰𐌹𐍂𐌲𐌰𐌷𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌰𐌹", "noun", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐍃", "noun", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌴𐌹𐍃", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌰𐌹𐍃", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌰𐌹", "", "tyranny"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌹𐌼", "noun", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌹𐌽𐌳𐌴𐌹𐍃", "noun", "𐌰𐌽𐌰𐌼𐌹𐌽𐌳𐌴𐌹𐍃", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌹𐌽𐌳𐍃", "noun", "𐌰𐌽𐌰𐌼𐌹𐌽𐌳𐌴𐌹𐍃", "𐌰𐌽𐌰𐌼𐌹𐌽𐌳𐌰𐌹𐍃", "𐌰𐌽𐌰𐌼𐌹𐌽𐌳𐌰𐌹", "", "surmise suspicion supposition"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌰𐌻", "noun", "𐌰𐌽𐌰𐌵𐌰𐌻", "", "", "", "quiet"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌹𐍃𐍃", "noun", "𐌰𐌽𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐌰𐌽𐌰𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐌰𐌽𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "", "blasphemy"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "noun", "𐌰𐌽𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌽", "noun", "𐌲𐌰𐌼𐌰𐌽𐌰", "𐌲𐌰𐌼𐌰𐌽𐌹𐍃", "𐌲𐌰𐌼𐌰𐌽𐌰", "", "companion fellow partner"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌽𐌰", "noun", "𐌲𐌰𐌼𐌰𐌽𐌰", "", "", "", "inflection of 𐌲𐌰𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌽𐌰𐌼", "noun", "𐌲𐌰𐌼𐌰𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐍆𐍃", "noun", "𐍃𐍄𐌰𐌱𐌴𐌹𐍃", "𐍃𐍄𐌰𐌱𐌹𐍃", "𐍃𐍄𐌰𐌱𐌰", "", "element foundation"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌱𐌹𐌼", "noun", "𐍃𐍄𐌰𐌱𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌶𐌴𐍄𐌹", "noun", "𐌰𐌶𐌴𐍄𐌾𐌰", "𐌰𐌶𐌴𐍄𐌾𐌹𐍃", "𐌰𐌶𐌴𐍄𐌾𐌰", "", "ease comfort"]) + let v = native_list_append(v, ["𐌰𐌶𐌴𐍄𐌾𐌰𐌼", "noun", "𐌰𐌶𐌴𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌿𐍃", "noun", "𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌴𐌹𐍃", "𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌰𐌿𐍃", "𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌰𐌿", "", "Pharisee"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌴𐌹𐍃", "noun", "𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌴", "noun", "𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌿𐌼", "noun", "𐍆𐌰𐍂𐌴𐌹𐍃𐌰𐌹𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌴𐌹𐌽", "noun", "𐌲𐌿𐌼𐌴𐌹𐌽𐌰", "𐌲𐌿𐌼𐌴𐌹𐌽𐌹𐍃", "𐌲𐌿𐌼𐌴𐌹𐌽𐌰", "", "a male being"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐌴𐌹𐌽", "noun", "𐌵𐌹𐌽𐌴𐌹𐌽𐌰", "𐌵𐌹𐌽𐌴𐌹𐌽𐌹𐍃", "𐌵𐌹𐌽𐌴𐌹𐌽𐌰", "", "a female being"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐌴𐌹𐌽𐌰", "noun", "𐌵𐌹𐌽𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌵𐌹𐌽𐌴𐌹𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐌼𐌼", "noun", "𐍅𐌰𐌼𐌼𐌰", "𐍅𐌰𐌼𐌼𐌹𐍃", "𐍅𐌰𐌼𐌼𐌰", "", "stain spot blemish"]) + let v = native_list_append(v, ["𐍅𐌰𐌼𐌼𐌴", "noun", "𐍅𐌰𐌼𐌼𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌹𐌻𐌾𐌴𐌹", "noun", "𐌰𐌽𐌰𐍅𐌹𐌻𐌾𐌴𐌹𐌽𐍃", "𐌰𐌽𐌰𐍅𐌹𐌻𐌾𐌴𐌹𐌽𐍃", "𐌰𐌽𐌰𐍅𐌹𐌻𐌾𐌴𐌹𐌽", "", "equanimity moderation dignity"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌹𐌻𐌾𐌴𐌹𐌽", "noun", "𐌰𐌽𐌰𐍅𐌹𐌻𐌾𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐍃𐌹𐌿𐌽𐌾𐍉𐍃", "noun", "𐍃𐌹𐌻𐌱𐌰𐍃𐌹𐌿𐌽𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐍃𐌹𐌿𐌽𐌴𐌹𐍃", "noun", "𐍃𐌹𐌻𐌱𐌰𐍃𐌹𐌿𐌽𐌾𐍉𐍃", "𐍃𐌹𐌻𐌱𐌰𐍃𐌹𐌿𐌽𐌾𐌴", "𐍃𐌹𐌻𐌱𐌰𐍃𐌹𐌿𐌽𐌾𐌰", "", "eyewitness"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌸𐌰𐌹𐌼𐌰", "noun", "𐌰𐌽𐌰𐌸𐌰𐌹𐌼𐌰", "", "", "", "anathema a curse"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌱𐌰𐌿𐌷𐍄𐍃", "noun", "𐌰𐌽𐌳𐌰𐌱𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐌰𐌽𐌳𐌰𐌱𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "𐌰𐌽𐌳𐌰𐌱𐌰𐌿𐌷𐍄𐌰𐌹", "", "ransom"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌱𐌰𐌿𐌷𐍄", "noun", "𐌰𐌽𐌳𐌰𐌱𐌰𐌿𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄𐍃", "noun", "𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄𐌰𐌹", "", "redemption through ransom"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄", "noun", "𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄𐌰𐌹", "noun", "𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐍃𐌽𐌴", "noun", "𐌰𐌿𐌷𐍃𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌱𐌴𐌹𐍄", "noun", "𐌰𐌽𐌳𐌰𐌱𐌴𐌹𐍄𐌰", "𐌰𐌽𐌳𐌰𐌱𐌴𐌹𐍄𐌹𐍃", "𐌰𐌽𐌳𐌰𐌱𐌴𐌹𐍄𐌰", "", "punishment castigation"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌷𐌰𐍆𐍄𐍃", "noun", "𐌰𐌽𐌳𐌰𐌷𐌰𐍆𐍄𐌴𐌹𐍃", "𐌰𐌽𐌳𐌰𐌷𐌰𐍆𐍄𐌰𐌹𐍃", "𐌰𐌽𐌳𐌰𐌷𐌰𐍆𐍄𐌰𐌹", "", "reply answer"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌷𐌰𐍆𐍄", "noun", "𐌰𐌽𐌳𐌰𐌷𐌰𐍆𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄", "noun", "𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌰", "𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌹𐍃", "𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌰", "", "confession profession"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌰", "noun", "𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌰", "", "", "", "inflection of 𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌹𐍃", "noun", "𐌰𐌽𐌳𐌰𐌷𐌰𐌹𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐌷𐌰𐌹𐍄", "noun", "𐌱𐌹𐌷𐌰𐌹𐍄𐌰", "𐌱𐌹𐌷𐌰𐌹𐍄𐌹𐍃", "𐌱𐌹𐌷𐌰𐌹𐍄𐌰", "", "slander false rumors"]) + let v = native_list_append(v, ["𐌱𐌹𐌷𐌰𐌹𐍄𐌰", "noun", "𐌱𐌹𐌷𐌰𐌹𐍄𐌰", "", "", "", "inflection of 𐌱𐌹𐌷𐌰𐌹𐍄"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄", "noun", "𐌲𐌰𐌷𐌰𐌹𐍄𐌰", "𐌲𐌰𐌷𐌰𐌹𐍄𐌹𐍃", "𐌲𐌰𐌷𐌰𐌹𐍄𐌰", "", "promise pledge"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌰", "noun", "𐌲𐌰𐌷𐌰𐌹𐍄𐌰", "", "", "", "inflection of 𐌲𐌰𐌷𐌰𐌹𐍄"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌹𐍃", "noun", "𐌲𐌰𐌷𐌰𐌹𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌴", "noun", "𐌲𐌰𐌷𐌰𐌹𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌼", "noun", "𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌺", "noun", "𐌸𐌰𐌽𐌺", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐍃", "noun", "𐌸𐌰𐌲𐌺𐍉𐍃", "𐌸𐌰𐌲𐌺𐌹𐍃", "𐌸𐌰𐌲𐌺𐌰", "", "thanks"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌻𐌰𐌿𐌽𐌹", "noun", "𐌰𐌽𐌳𐌰𐌻𐌰𐌿𐌽𐌾𐌰", "𐌰𐌽𐌳𐌰𐌻𐌰𐌿𐌽𐌾𐌹𐍃", "𐌰𐌽𐌳𐌰𐌻𐌰𐌿𐌽𐌾𐌰", "", "recompense requital reward"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌼", "noun", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌰", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌹𐍃", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌰", "", "an instance of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌹𐍃", "noun", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌿𐌼𐍄𐍃", "noun", "𐌰𐌽𐌳𐌰𐌽𐌿𐌼𐍄𐌴𐌹𐍃", "𐌰𐌽𐌳𐌰𐌽𐌿𐌼𐍄𐌰𐌹𐍃", "𐌰𐌽𐌳𐌰𐌽𐌿𐌼𐍄𐌰𐌹", "", "taking up acceptance"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌿𐌼𐍄𐌰𐌹𐍃", "noun", "𐌰𐌽𐌳𐌰𐌽𐌿𐌼𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌹𐍃", "noun", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐍉𐍃", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌴", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌰", "", "opponent adversary"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐍉𐍃", "noun", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌰𐌼", "noun", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌰", "noun", "𐌰𐌽𐌳𐌰𐍃𐍄𐌰𐌸𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌼𐌶", "noun", "𐌼𐌹𐌼𐌶𐌰", "𐌼𐌹𐌼𐌶𐌹𐍃", "𐌼𐌹𐌼𐌶𐌰", "", "meat"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌰𐌹𐍂𐌸𐌹", "noun", "𐌰𐌽𐌳𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "𐌰𐌽𐌳𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐍃", "𐌰𐌽𐌳𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "", "purchase price cost"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽𐍃", "noun", "𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽𐌴𐌹𐍃", "𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽𐌰𐌹𐍃", "𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽𐌰𐌹", "", "livelihood wages"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽", "noun", "𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽𐌹𐌼", "noun", "𐌰𐌽𐌳𐌰𐍅𐌹𐌶𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍅𐌻𐌴𐌹𐌶𐌽", "noun", "𐌰𐌽𐌳𐌰𐍅𐌻𐌴𐌹𐌶𐌽𐌰", "𐌰𐌽𐌳𐌰𐍅𐌻𐌴𐌹𐌶𐌽𐌹𐍃", "𐌰𐌽𐌳𐌰𐍅𐌻𐌴𐌹𐌶𐌽𐌰", "", "countenance face"]) + let v = native_list_append(v, ["𐌰𐍃𐌽𐌴𐌹𐍃", "noun", "𐌰𐍃𐌽𐌾𐍉𐍃", "𐌰𐍃𐌽𐌾𐌴", "𐌰𐍃𐌽𐌾𐌰", "", "day laborer hireling"]) + let v = native_list_append(v, ["𐌰𐍃𐌽𐌾𐌰𐌼", "noun", "𐌰𐍃𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍃𐌽𐌾𐌴", "noun", "𐌰𐍃𐌽𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐌴𐍂𐌿𐍃𐌾𐍉𐍃", "noun", "𐌱𐌴𐍂𐌿𐍃𐌾𐌰𐌽𐍃", "𐌱𐌴𐍂𐌿𐍃𐌾𐌴", "𐌱𐌴𐍂𐌿𐍃𐌾𐌰𐌼", "", "parents"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌸", "noun", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌰", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌹𐍃", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌰", "", "prayer of gratitude"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌰", "noun", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌰", "", "", "", "inflection of 𐌰𐍅𐌹𐌻𐌹𐌿𐌸"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌴", "noun", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌰𐌼", "noun", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳", "noun", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐍅𐍉", "noun", "𐌿𐌷𐍄𐍅𐍉𐌽𐍃", "𐌿𐌷𐍄𐍅𐍉𐌽𐍃", "𐌿𐌷𐍄𐍅𐍉𐌽", "", "dawn daybreak"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐍅𐍉𐌽", "noun", "𐌿𐌷𐍄𐍅𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌹𐍃", "noun", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐍃", "noun", "𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌴𐌹𐍃", "𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌰𐌹𐍃", "𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌰𐌹", "", "image representation effigy"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍃𐌰𐌷𐍄", "noun", "𐍆𐍂𐌹𐍃𐌰𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌰𐌹", "noun", "𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌳𐍂𐍉𐌱𐌽𐌰", "noun", "𐌳𐍂𐍉𐌱𐌽𐌰𐌽𐍃", "𐌳𐍂𐍉𐌱𐌽𐌹𐌽𐍃", "𐌳𐍂𐍉𐌱𐌽𐌹𐌽", "", "disturbance trouble tumult"]) + let v = native_list_append(v, ["𐌳𐍂𐍉𐌱𐌽𐌰𐌽𐍃", "noun", "𐌳𐍂𐍉𐌱𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳", "noun", "𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰", "𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌹𐍃", "𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰", "", "supply provision purveyance"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌹𐍃", "noun", "𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐌴𐌹", "noun", "𐌰𐌿𐌳𐌰𐌲𐌴𐌹𐌽𐍃", "𐌰𐌿𐌳𐌰𐌲𐌴𐌹𐌽𐍃", "𐌰𐌿𐌳𐌰𐌲𐌴𐌹𐌽", "", "bliss fortune happiness"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐍃𐍄𐌰𐌹𐌽𐍃", "noun", "𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐍃𐍄𐌰𐌹𐌽𐍉𐍃", "𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐍃𐍄𐌰𐌹𐌽𐌹𐍃", "𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐍃𐍄𐌰𐌹𐌽𐌰", "", "cornerstone quoin"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐍃𐍄𐌰𐌹𐌽𐌰", "noun", "𐍅𐌰𐌹𐌷𐍃𐍄𐌰𐍃𐍄𐌰𐌹𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌹𐌻𐍉", "noun", "𐍅𐌰𐌹𐍂𐌹𐌻𐍉𐌽𐍃", "𐍅𐌰𐌹𐍂𐌹𐌻𐍉𐌽𐍃", "𐍅𐌰𐌹𐍂𐌹𐌻𐍉𐌽", "", "lip"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌹𐌻𐍉𐌼", "noun", "𐍅𐌰𐌹𐍂𐌹𐌻𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌸𐍃", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳", "", "witness"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌹𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "", "testimony"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "", "", "", "inflection of 𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽𐍃", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌽", "", "testimony"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴", "noun", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍄𐌹𐌲𐌿𐍃", "noun", "𐍄𐌹𐌲𐌾𐌿𐍃", "𐍄𐌹𐌲𐌰𐌿𐍃", "𐍄𐌹𐌲𐌰𐌿", "", "decade series of"]) + let v = native_list_append(v, ["𐍄𐌹𐌲𐌿𐌽𐍃", "noun", "𐍄𐌹𐌲𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍄𐌹𐌲𐌹𐍅𐌴", "noun", "𐍄𐌹𐌲𐌹𐍅𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍄𐌹𐌲𐌿𐌼", "noun", "𐍄𐌹𐌲𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌰𐍅𐌴𐍃𐌴𐌹", "noun", "𐌱𐌰𐌻𐍅𐌰𐍅𐌴𐍃𐌴𐌹", "𐌱𐌰𐌻𐍅𐌰𐍅𐌴𐍃𐌴𐌹𐌽𐍃", "𐌱𐌰𐌻𐍅𐌰𐍅𐌴𐍃𐌴𐌹𐌽", "", "wickedness malice"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌰𐍅𐌴𐍃𐌴𐌹𐌽𐍃", "noun", "𐌱𐌰𐌻𐍅𐌰𐍅𐌴𐍃𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌸𐍃", "noun", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌴𐌹𐍃", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌰𐌹𐍃", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌰𐌹", "", "misdeed transgression"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌰𐌹", "noun", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌹𐌼", "noun", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌴", "noun", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌹𐌽𐍃", "noun", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐍃", "noun", "𐌼𐌹𐍃𐍃𐌰𐌳𐌴𐌳𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌸𐍃", "noun", "𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌴𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌰𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌰𐌹", "", "good deed"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌰𐌹𐍃", "noun", "𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍂𐌹𐌲𐌽", "noun", "𐍂𐌹𐌲𐌽𐌰", "𐍂𐌹𐌲𐌽𐌹𐍃", "𐍂𐌹𐌲𐌽𐌰", "", "rain condensed water"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐍆𐌹𐌻𐌰", "noun", "𐍅𐌿𐌻𐍆𐌹𐌻𐌰", "𐍅𐌿𐌻𐍆𐌹𐌻𐌹𐌽𐍃", "𐍅𐌿𐌻𐍆𐌹𐌻𐌹𐌽", "", "a male given"]) + let v = native_list_append(v, ["𐌲𐌹𐌻𐍃𐍄𐍂", "noun", "𐌲𐌹𐌻𐍃𐍄𐍂𐌰", "𐌲𐌹𐌻𐍃𐍄𐍂𐌹𐍃", "𐌲𐌹𐌻𐍃𐍄𐍂𐌰", "", "tax tribute"]) + let v = native_list_append(v, ["𐌲𐌹𐌻𐍃𐍄𐍂𐌰", "noun", "𐌲𐌹𐌻𐍃𐍄𐍂𐌰", "", "", "", "inflection of 𐌲𐌹𐌻𐍃𐍄𐍂"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌸", "noun", "𐌱𐍂𐌿𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐍃", "noun", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌴𐌹𐍃", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌹𐍃", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌸𐍆𐌰𐌳", "noun", "𐌱𐍂𐌿𐌸𐍆𐌰𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌸𐌼𐍃", "noun", "𐌼𐌰𐌹𐌸𐌼𐍉𐍃", "𐌼𐌰𐌹𐌸𐌼𐌹𐍃", "𐌼𐌰𐌹𐌸𐌼𐌰", "", "gift present"]) + let v = native_list_append(v, ["𐌹𐌴𐍃𐌿", "noun", "𐌹𐌴𐍃𐌿", "", "", "", "accusative/dative of 𐌹𐌴𐍃𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌴𐍃𐌿𐌰", "noun", "𐌹𐌴𐍃𐌿𐌰", "", "", "", "dative of 𐌹𐌴𐍃𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌴𐍃𐌿𐌹𐍃", "noun", "𐌹𐌴𐍃𐌿𐌹𐍃", "", "", "", "genitive of 𐌹𐌴𐍃𐌿𐍃"]) + let v = native_list_append(v, ["𐍄𐍂𐌰𐌿𐍃𐍄𐌹", "noun", "𐍄𐍂𐌰𐌿𐍃𐍄𐌾𐌰", "𐍄𐍂𐌰𐌿𐍃𐍄𐌴𐌹𐍃", "𐍄𐍂𐌰𐌿𐍃𐍄𐌾𐌰", "", "covenant pact"]) + let v = native_list_append(v, ["𐍄𐍂𐌰𐌿𐍃𐍄𐌴𐌹𐍃", "noun", "𐍄𐍂𐌰𐌿𐍃𐍄𐌴𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽", "noun", "𐍂𐌰𐌲𐌹𐌽𐌰", "𐍂𐌰𐌲𐌹𐌽𐌹𐍃", "𐍂𐌰𐌲𐌹𐌽𐌰", "", "law decree ordinance"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐌰", "noun", "𐍂𐌰𐌲𐌹𐌽𐌰", "", "", "", "inflection of 𐍂𐌰𐌲𐌹𐌽"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐌰𐌼", "noun", "𐍂𐌰𐌲𐌹𐌽𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍉𐍄𐌿𐌱𐌰𐌿𐍂𐌳", "noun", "𐍆𐍉𐍄𐌿𐌱𐌰𐌿𐍂𐌳𐌰", "𐍆𐍉𐍄𐌿𐌱𐌰𐌿𐍂𐌳𐌹𐍃", "𐍆𐍉𐍄𐌿𐌱𐌰𐌿𐍂𐌳𐌰", "", "footstool"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌲𐌹𐌽𐍃", "noun", "𐌼𐌰𐌿𐍂𐌲𐌹𐌽𐍉𐍃", "𐌼𐌰𐌿𐍂𐌲𐌹𐌽𐌹𐍃", "𐌼𐌰𐌿𐍂𐌲𐌹𐌽𐌰", "", "morning"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌲𐌹𐌽", "noun", "𐌼𐌰𐌿𐍂𐌲𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌲𐌹𐌽𐌰", "noun", "𐌼𐌰𐌿𐍂𐌲𐌹𐌽𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌰𐍃𐍅𐌴𐌹𐍀𐌰𐌹𐌽𐍃", "noun", "𐌼𐌹𐌳𐌾𐌰𐍃𐍅𐌴𐌹𐍀𐌰𐌹𐌽𐌴𐌹𐍃", "𐌼𐌹𐌳𐌾𐌰𐍃𐍅𐌴𐌹𐍀𐌰𐌹𐌽𐌰𐌹𐍃", "𐌼𐌹𐌳𐌾𐌰𐍃𐍅𐌴𐌹𐍀𐌰𐌹𐌽𐌰𐌹", "", "deluge cataclysmic flood"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌴𐌹", "noun", "𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽𐍃", "𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽𐍃", "𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽", "", "greatness majesty"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽𐍃", "noun", "𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐌴𐌹"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽", "noun", "𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌳𐌿𐌸𐍃", "noun", "𐌼𐌹𐌺𐌹𐌻𐌳𐌿𐌸𐌴𐌹𐍃", "𐌼𐌹𐌺𐌹𐌻𐌳𐌿𐌸𐌰𐌹𐍃", "𐌼𐌹𐌺𐌹𐌻𐌳𐌿𐌸𐌰𐌹", "", "magnitude greatness"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌳𐌿𐌸𐌰𐌹𐍃", "noun", "𐌼𐌹𐌺𐌹𐌻𐌳𐌿𐌸𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳𐍃", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳𐌴", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳𐌹𐍃", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳", "", "ruler"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳", "noun", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌴𐌹", "noun", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍃", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍃", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌴𐌹𐌽", "", "otherness difference"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌴𐌹𐌽", "noun", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌽𐍉𐍂𐌾𐍉", "noun", "𐍃𐌽𐍉𐍂𐌾𐍉𐌽𐍃", "𐍃𐌽𐍉𐍂𐌾𐍉𐌽𐍃", "𐍃𐌽𐍉𐍂𐌾𐍉𐌽", "", "a woven basket"]) + let v = native_list_append(v, ["𐍃𐌽𐍉𐍂𐌾𐍉𐌽", "noun", "𐍃𐌽𐍉𐍂𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐍀𐍅𐍂𐌴𐌹𐌳𐌰", "noun", "𐍃𐍀𐍅𐍂𐌴𐌹𐌳𐌰𐌽𐍃", "𐍃𐍀𐍅𐍂𐌴𐌹𐌳𐌹𐌽𐍃", "𐍃𐍀𐍅𐍂𐌴𐌹𐌳𐌹𐌽", "", "a woven basket"]) + let v = native_list_append(v, ["𐍃𐍀𐍅𐍂𐌴𐌹𐌳𐌰𐌽𐍃", "noun", "𐍃𐍀𐍅𐍂𐌴𐌹𐌳𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍂𐌿𐌼𐍉𐌽𐌹𐌼", "noun", "𐍂𐌿𐌼𐍉𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐌿𐌼𐍉𐌽𐍃", "noun", "𐍂𐌿𐌼𐍉𐌽𐌴𐌹𐍃", "𐍂𐌿𐌼𐍉𐌽𐌹𐍃", "𐍂𐌿𐌼𐍉𐌽𐌰", "", "a Roman"]) + let v = native_list_append(v, ["𐍂𐌿𐌼", "noun", "𐍂𐌿𐌼𐌰", "𐍂𐌿𐌼𐌹𐍃", "𐍂𐌿𐌼𐌰", "", "room space"]) + let v = native_list_append(v, ["𐍂𐌿𐌼𐌹𐍃", "noun", "𐍂𐌿𐌼𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍂𐌿𐌼𐌰", "noun", "𐍂𐌿𐌼𐌰", "𐍂𐌿𐌼𐍉𐍃", "𐍂𐌿𐌼𐌰𐌹", "", "Rome a major"]) + let v = native_list_append(v, ["𐍂𐌿𐌼𐌰𐌹", "noun", "𐍂𐌿𐌼𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐍅𐌰", "noun", "𐍆𐌰𐍂𐍅𐌰", "", "", "", "form"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍀", "noun", "𐌸𐌰𐌿𐍂𐍀𐌰", "𐌸𐌰𐌿𐍂𐍀𐌹𐍃", "𐌸𐌰𐌿𐍂𐍀𐌰", "", "farmland"]) + let v = native_list_append(v, ["𐍅𐌴𐌽𐍃", "noun", "𐍅𐌴𐌽𐌴𐌹𐍃", "𐍅𐌴𐌽𐌰𐌹𐍃", "𐍅𐌴𐌽𐌰𐌹", "", "hope expectation"]) + let v = native_list_append(v, ["𐍅𐌴𐌽𐌰𐌹𐍃", "noun", "𐍅𐌴𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌽", "noun", "𐍅𐌴𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌴𐌽𐌰𐌹", "noun", "𐍅𐌴𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌺𐍉", "noun", "𐍅𐌹𐌺𐍉𐌽𐍃", "𐍅𐌹𐌺𐍉𐌽𐍃", "𐍅𐌹𐌺𐍉𐌽", "", "sequence routine"]) + let v = native_list_append(v, ["𐍅𐌹𐌺𐍉𐌽", "noun", "𐍅𐌹𐌺𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌳𐍂𐍃", "noun", "𐌽𐌰𐌳𐍂𐍉𐍃", "𐌽𐌰𐌳𐍂𐌹𐍃", "𐌽𐌰𐌳𐍂𐌰", "", "viper adder venomous"]) + let v = native_list_append(v, ["𐌽𐌰𐌳𐍂𐌴", "noun", "𐌽𐌰𐌳𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐍃", "noun", "𐍃𐌻𐌴𐍀𐍉𐍃", "𐍃𐌻𐌴𐍀𐌹𐍃", "𐍃𐌻𐌴𐍀𐌰", "", "sleep"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐍂𐍅𐌰", "noun", "𐍃𐍀𐌰𐍂𐍅𐌰𐌽𐍃", "𐍃𐍀𐌰𐍂𐍅𐌹𐌽𐍃", "𐍃𐍀𐌰𐍂𐍅𐌹𐌽", "", "sparrow bird"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐍂𐍅𐌰𐌽𐍃", "noun", "𐍃𐍀𐌰𐍂𐍅𐌰𐌽𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐍂𐍅𐌰𐌼", "noun", "𐍃𐍀𐌰𐍂𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌿𐍂𐌳𐍃", "noun", "𐍃𐍀𐌰𐌿𐍂𐌳𐌴", "", "𐍃𐍀𐌰𐌿𐍂𐌳", "", "race racecourse racetrack"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌿𐍂𐌳𐌹𐌼", "noun", "𐍃𐍀𐌰𐌿𐍂𐌳𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌿𐍂𐌳𐌴", "noun", "𐍃𐍀𐌰𐌿𐍂𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌿𐍂𐌳", "noun", "𐍃𐍀𐌰𐌿𐍂𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌰𐌼", "noun", "𐍂𐌴𐌹𐌺𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌼𐌼𐍃", "noun", "𐍃𐍅𐌰𐌼𐌼𐍉𐍃", "𐍃𐍅𐌰𐌼𐌼𐌹𐍃", "𐍃𐍅𐌰𐌼𐌼𐌰", "", "sponge"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌼𐌼", "noun", "𐍃𐍅𐌰𐌼𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌼", "noun", "𐍃𐍅𐌰𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌰𐌽", "noun", "𐌲𐌰𐍂𐌳𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌱𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳", "noun", "𐍃𐌹𐌱𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳", "𐍃𐌹𐌱𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌹𐍃", "𐍃𐌹𐌱𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌰", "", "seventy cardinal number"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌿𐌻𐌿𐌱𐍉", "noun", "𐌱𐍂𐍉𐌸𐍂𐌿𐌻𐌿𐌱𐍉𐌽𐍃", "𐌱𐍂𐍉𐌸𐍂𐌿𐌻𐌿𐌱𐍉𐌽𐍃", "𐌱𐍂𐍉𐌸𐍂𐌿𐌻𐌿𐌱𐍉𐌽", "", "brotherly love"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌰𐌻𐌿𐌱𐍉𐌽", "noun", "𐌱𐍂𐍉𐌸𐍂𐌰𐌻𐌿𐌱𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌿𐌻𐌿𐌱𐍉𐌽", "noun", "𐌱𐍂𐍉𐌸𐍂𐌿𐌻𐌿𐌱𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹", "noun", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌽𐍃", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌽𐍃", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌽", "", "inebriation drunkenness"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌽𐍃", "noun", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌼", "noun", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐍂𐍉𐌼𐌰𐍄𐌰", "noun", "𐌰𐍂𐍉𐌼𐌰𐍄𐌰", "", "", "", "sweet spices"]) + let v = native_list_append(v, ["𐌰𐍃𐍄𐌰𐌸", "noun", "𐌰𐍃𐍄𐌰𐌸", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌰𐍃𐍄𐌰𐌸𐍃", "noun", "𐌰𐍃𐍄𐌰𐌸𐌴𐌹𐍃", "𐌰𐍃𐍄𐌰𐌸𐌰𐌹𐍃", "𐌰𐍃𐍄𐌰𐌸𐌰𐌹", "", "certainty"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌹𐍄𐌰𐌹𐌽𐌰𐌹", "noun", "𐌰𐍄𐍅𐌹𐍄𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌹𐍄𐌰𐌹𐌽𐍃", "noun", "𐌰𐍄𐍅𐌹𐍄𐌰𐌹𐌽𐌴𐌹𐍃", "𐌰𐍄𐍅𐌹𐍄𐌰𐌹𐌽𐌰𐌹𐍃", "𐌰𐍄𐍅𐌹𐍄𐌰𐌹𐌽𐌰𐌹", "", "observation act of"]) + let v = native_list_append(v, ["𐌰𐌿𐍂𐌰𐌷𐌾𐍉𐌼", "noun", "𐌰𐌿𐍂𐌰𐌷𐌾𐍉𐌼", "", "", "", "tombs dative plural"]) + let v = native_list_append(v, ["𐌰𐌶𐍅𐌼𐌴", "noun", "𐌰𐌶𐍅𐌼𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌰𐌶𐍅𐌼𐌿𐍃", "noun", "𐌰𐌶𐍅𐌼𐌴", "", "", "", "unleavened bread"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "noun", "𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌸𐌴𐌹", "noun", "𐌱𐌰𐌻𐌸𐌴𐌹", "𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "", "boldness"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "noun", "𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐍅𐍃𐍃𐌰𐌿𐌽", "noun", "𐌱𐍅𐍃𐍃𐌰𐌿𐌽", "", "", "", "fine linen"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹", "noun", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹𐌽𐍃", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹𐌽𐍃", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹𐌽", "", "childish thing"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹𐌽𐍃", "noun", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌹", "noun", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌹", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌴𐌹𐍃", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌾𐌰", "", "childhood"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌾𐌰", "noun", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰", "noun", "𐍆𐌰", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌲𐌸", "noun", "𐌲𐌸", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌲𐌸𐍃", "noun", "𐌲𐌸𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌲𐌸𐌰", "noun", "𐌲𐌸𐌰", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌹𐌽𐍃", "noun", "𐌱𐌰𐌿𐌰𐌹𐌽𐌴𐌹𐍃", "𐌱𐌰𐌿𐌰𐌹𐌽𐌰𐌹𐍃", "𐌱𐌰𐌿𐌰𐌹𐌽𐌰𐌹", "", "dwelling residence"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌹𐌽", "noun", "𐌱𐌰𐌿𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌹𐌽𐌰𐌹", "noun", "𐌱𐌰𐌿𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐍃𐍄", "noun", "𐌱𐌴𐌹𐍃𐍄", "𐌱𐌴𐌹𐍃𐍄𐌹𐍃", "𐌱𐌴𐌹𐍃𐍄𐌰", "", "leaven agent used"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐍃𐍄𐌰", "noun", "𐌱𐌴𐌹𐍃𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐍃𐍄𐌹𐍃", "noun", "𐌱𐌴𐌹𐍃𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌽𐌽𐍉", "noun", "𐌱𐍂𐌹𐌽𐌽𐍉𐌽𐍃", "𐌱𐍂𐌹𐌽𐌽𐍉𐌽𐍃", "𐌱𐍂𐌹𐌽𐌽𐍉𐌽", "", "fever"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌽𐌽𐍉𐌽", "noun", "𐌱𐍂𐌹𐌽𐌽𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌸𐌴𐌹", "noun", "𐌱𐌰𐌿𐍂𐌸𐌴𐌹𐌽𐍃", "𐌱𐌰𐌿𐍂𐌸𐌴𐌹𐌽𐍃", "𐌱𐌰𐌿𐍂𐌸𐌴𐌹𐌽", "", "burden"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐍂𐌸𐌴𐌹𐌽", "noun", "𐌱𐌰𐌿𐍂𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌸", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌰", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌹𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌰", "", "false god idol"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌰", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌰", "", "", "", "inflection of 𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌸"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌴", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌰𐌼", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌲𐌿𐌳𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌿𐌱𐌰𐌹𐌽𐍃", "noun", "𐌻𐌿𐌱𐌰𐌹𐌽𐌴𐌹𐍃", "𐌻𐌿𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "𐌻𐌿𐌱𐌰𐌹𐌽𐌰𐌹", "", "hope"]) + let v = native_list_append(v, ["𐌻𐌿𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "noun", "𐌻𐌿𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌲𐍃", "noun", "𐌳𐌰𐌹𐌲𐍉𐍃", "𐌳𐌰𐌹𐌲𐌹𐍃", "𐌳𐌰𐌹𐌲𐌰", "", "soft kneadable material"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌲", "noun", "𐌳𐌰𐌹𐌲", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌲𐌰", "noun", "𐌳𐌰𐌹𐌲𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍃𐌺𐌰𐍆𐍄𐍃", "noun", "𐌿𐍆𐌰𐍂𐍃𐌺𐌰𐍆𐍄𐌴𐌹𐍃", "𐌿𐍆𐌰𐍂𐍃𐌺𐌰𐍆𐍄𐌰𐌹𐍃", "𐌿𐍆𐌰𐍂𐍃𐌺𐌰𐍆𐍄𐌰𐌹", "", "first fruits"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐌰𐌹𐍂𐌽𐌰", "noun", "𐍅𐌹𐌳𐌿𐍅𐌰𐌹𐍂𐌽𐌰𐌽𐍃", "𐍅𐌹𐌳𐌿𐍅𐌰𐌹𐍂𐌽𐌹𐌽𐍃", "𐍅𐌹𐌳𐌿𐍅𐌰𐌹𐍂𐌽𐌹𐌽", "", "orphan"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐌿𐍅𐌰𐌹𐍂𐌽𐌰𐌽𐍃", "noun", "𐍅𐌹𐌳𐌿𐍅𐌰𐌹𐍂𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐌰𐌳𐌴𐌹𐌽𐍉𐌼", "noun", "𐍅𐌹𐌲𐌰𐌳𐌴𐌹𐌽𐍉𐌽𐍃", "𐍅𐌹𐌲𐌰𐌳𐌴𐌹𐌽𐍉𐌽𐍃", "𐍅𐌹𐌲𐌰𐌳𐌴𐌹𐌽𐍉𐌽", "", "thistle prickly plant"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌹"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌼", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌹", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌹𐍃", "𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "", "gain profit"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌹", "noun", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌹𐍃", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "", "pecuniary gain profit"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌲𐌻𐌾𐌰", "noun", "𐍃𐍅𐌹𐌲𐌻𐌾𐌰𐌽𐍃", "𐍃𐍅𐌹𐌲𐌻𐌾𐌹𐌽𐍃", "𐍃𐍅𐌹𐌲𐌻𐌾𐌹𐌽", "", "flautist"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌲𐌻𐌾𐌰𐌽𐍃", "noun", "𐍃𐍅𐌹𐌲𐌻𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌱𐌻𐌰", "noun", "𐍃𐍅𐌹𐌱𐌻𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌱𐌻𐍃", "noun", "𐍃𐍅𐌹𐌱𐌻𐍉𐍃", "𐍃𐍅𐌹𐌱𐌻𐌹𐍃", "𐍃𐍅𐌹𐌱𐌻𐌰", "", "sulfur brimstone"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌿𐌽𐌾𐍉", "noun", "𐌲𐌰𐍂𐌿𐌽𐌾𐍉𐌽𐍃", "𐌲𐌰𐍂𐌿𐌽𐌾𐍉𐌽𐍃", "𐌲𐌰𐍂𐌿𐌽𐌾𐍉𐌽", "", "flood"]) + let v = native_list_append(v, ["𐍂𐌿𐌽𐍃", "noun", "𐍂𐌿𐌽𐍉𐍃", "𐍂𐌿𐌽𐌹𐍃", "𐍂𐌿𐌽𐌰", "", "running"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌾𐍉", "noun", "𐍃𐌰𐌺𐌾𐍉𐌽𐍃", "𐍃𐌰𐌺𐌾𐍉𐌽𐍃", "𐍃𐌰𐌺𐌾𐍉𐌽", "", "quarrel argument"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐍉", "noun", "𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐍉𐌽𐍃", "𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐍉𐌽𐍃", "𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐍉𐌽", "", "building edifice"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌿𐌽𐌾𐍉𐌽", "noun", "𐌲𐌰𐍂𐌿𐌽𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌾𐍉𐌽𐍃", "noun", "𐍃𐌰𐌺𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐍃𐌰𐌺𐌾𐍉"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐍉𐌽", "noun", "𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍂𐌿𐌽", "noun", "𐍂𐌿𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌹𐌻𐌹𐌲𐌲𐍃", "noun", "𐌲𐌰𐌳𐌹𐌻𐌹𐌲𐌲𐍉𐍃", "𐌲𐌰𐌳𐌹𐌻𐌹𐌲𐌲𐌹𐍃", "𐌲𐌰𐌳𐌹𐌻𐌹𐌲𐌲𐌰", "", "relative"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐍃𐌿𐍃", "noun", "𐌸𐌰𐌷𐍃𐌾𐌿𐍃", "𐌸𐌰𐌷𐍃𐌰𐌿𐍃", "𐌸𐌰𐌷𐍃𐌰𐌿", "", "badger"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐍃𐌿𐌺𐍃", "noun", "𐌸𐌰𐌷𐍃𐌿𐌺𐍉𐍃", "𐌸𐌰𐌷𐍃𐌿𐌺𐌹𐍃", "𐌸𐌰𐌷𐍃𐌿𐌺𐌰", "", "little badger"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌹", "noun", "𐌺𐌿𐌽𐌸𐌾𐌰", "𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "𐌺𐌿𐌽𐌸𐌾𐌰", "", "knowledge"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌾𐌰", "noun", "𐌺𐌿𐌽𐌸𐌾𐌰", "", "", "", "inflection of 𐌺𐌿𐌽𐌸𐌹"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "noun", "𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐍃𐌽𐍉𐍃", "noun", "𐌳𐍂𐌰𐌿𐍃𐌽𐍉𐍃", "", "", "", "inflection of 𐌳𐍂𐌰𐌿𐌷𐍃𐌽𐌰"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽", "noun", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽𐍃", "noun", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽𐌴𐌹𐍃", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽𐌰𐌹𐍃", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽𐌰𐌹", "", "covetousness greed avarice"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍃𐌰𐌲𐌲𐌰", "noun", "𐌷𐌰𐌻𐍃𐌰𐌲𐌲𐌰𐌽𐍃", "𐌷𐌰𐌻𐍃𐌰𐌲𐌲𐌹𐌽𐍃", "𐌷𐌰𐌻𐍃𐌰𐌲𐌲𐌹𐌽", "", "neck"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍃𐌰𐌲𐌲𐌰𐌽", "noun", "𐌷𐌰𐌻𐍃𐌰𐌲𐌲𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "noun", "𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "", "", "", "inflection of 𐍆𐍂𐌰𐌻𐌴𐍄"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌹𐍅𐌰𐌿𐍂𐌳", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌹𐍅𐌰𐌿𐍂𐌳𐌰", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌹𐍅𐌰𐌿𐍂𐌳𐌹𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌹𐍅𐌰𐌿𐍂𐌳𐌰", "", "genealogy"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄", "noun", "𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "𐍆𐍂𐌰𐌻𐌴𐍄𐌹𐍃", "𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "", "forgiveness remission"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌹𐍅𐌰𐌿𐍂𐌳𐌴", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌹𐍅𐌰𐌿𐍂𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐍃", "noun", "𐍆𐍂𐌰𐌻𐌴𐍄𐍉𐍃", "𐍆𐍂𐌰𐌻𐌴𐍄𐌹𐍃", "𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "", "liberated or freed"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐍃", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌴𐌹𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌰𐌹𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌰𐌹", "", "birth genesis"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌰𐌹𐍃", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌰𐌹", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌸", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌾𐌹𐌿𐌻𐌴𐌹𐍃", "noun", "𐌾𐌹𐌿𐌻𐌾𐍉𐍃", "𐌾𐌹𐌿𐌻𐌾𐌴", "𐌾𐌹𐌿𐌻𐌾𐌰", "", "Yulemonth possibly November"]) + let v = native_list_append(v, ["𐌾𐍉𐍄𐌰", "noun", "𐌾𐍉𐍄𐌰", "", "", "", "iota jot"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱", "noun", "𐌷𐌻𐌰𐌹𐌱", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌱𐍃", "noun", "𐌷𐌻𐌰𐌹𐌱𐍉𐍃", "𐌷𐌻𐌰𐌹𐌱𐌹𐍃", "𐌷𐌻𐌰𐌹𐌱𐌰", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌿𐌾𐌰𐌹", "noun", "𐌱𐌰𐌹𐍂𐌰𐌿𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌿𐌾𐌰", "noun", "𐌱𐌰𐌹𐍂𐌰𐌿𐌾𐌰", "𐌱𐌰𐌹𐍂𐌰𐌿𐌾𐍉𐍃", "𐌱𐌰𐌹𐍂𐌰𐌿𐌾𐌰𐌹", "", "Beroea an ancient"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌷𐍄𐍃", "noun", "𐌳𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐌳𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "𐌳𐌰𐌿𐌷𐍄𐌰𐌹", "", "feast banquet"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹", "noun", "𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹", "𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌽𐍃", "𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌽", "", "fright fear"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌽", "noun", "𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌽𐍃", "noun", "𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐍉", "noun", "𐌳𐍂𐌹𐌿𐍃𐍉𐌽𐍃", "𐌳𐍂𐌹𐌿𐍃𐍉𐌽𐍃", "𐌳𐍂𐌹𐌿𐍃𐍉𐌽", "", "cliff drop steep"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐍉𐌽", "noun", "𐌳𐍂𐌹𐌿𐍃𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐍃𐍃", "noun", "𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐌵𐌹𐍃𐍃𐌰𐌹", "", "speech act of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌵𐌹𐍃𐍃", "noun", "𐍅𐌰𐌹𐌻𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "", "blessing"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌵𐌹𐍃𐍃", "noun", "𐌼𐌹𐍃𐍃𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐌼𐌹𐍃𐍃𐌰𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐌼𐌹𐍃𐍃𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "", "dissidence discord dissension"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌹𐍃𐍃", "noun", "𐌲𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐌲𐌰𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐌲𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "", "concurrence"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "noun", "𐌲𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌵𐌹𐍃𐍃", "noun", "𐍃𐌰𐌼𐌰𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐍃𐌰𐌼𐌰𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐍃𐌰𐌼𐌰𐌵𐌹𐍃𐍃𐌰𐌹", "", "consensus agreement concurrence"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌵𐌹𐍃𐍃𐌴", "noun", "𐍃𐌰𐌼𐌰𐌵𐌹𐍃𐍃𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌹𐌵𐌹𐍃𐍃", "noun", "𐌸𐌹𐌿𐌸𐌹𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐌸𐌹𐌿𐌸𐌹𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐌸𐌹𐌿𐌸𐌹𐌵𐌹𐍃𐍃𐌰𐌹", "", "blessing"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌹𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "noun", "𐌸𐌹𐌿𐌸𐌹𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐍅𐌰𐌳𐍅", "noun", "𐌸𐌹𐍅𐌰𐌳𐍅", "", "", "", "servitude accusative singular"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍃", "noun", "𐌿𐍃𐌵𐌹𐍃𐍃𐌴𐌹𐍃", "𐌿𐍃𐌵𐌹𐍃𐍃𐌰𐌹𐍃", "𐌿𐍃𐌵𐌹𐍃𐍃𐌰𐌹", "", "accusation"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍃𐌰𐌹", "noun", "𐌿𐍃𐌵𐌹𐍃𐍃𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌺𐌻𐌹𐍃𐌼𐍉", "noun", "𐌺𐌻𐌹𐍃𐌼𐍉𐌽𐍃", "𐌺𐌻𐌹𐍃𐌼𐍉𐌽𐍃", "𐌺𐌻𐌹𐍃𐌼𐍉𐌽", "", "cymbal"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌰𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐍃", "noun", "𐌲𐌰𐍂𐌳𐌰𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐌴", "𐌲𐌰𐍂𐌳𐌰𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐌹𐍃", "𐌲𐌰𐍂𐌳𐌰𐍅𐌰𐌻𐌳𐌰𐌽𐌳", "", "master of the"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌰𐍅𐌰𐌻𐌳𐌰𐌽𐌳", "noun", "𐌲𐌰𐍂𐌳𐌰𐍅𐌰𐌻𐌳𐌰𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐍃", "noun", "𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐌴", "𐍅𐌰𐌻𐌳𐌰𐌽𐌳𐌹𐍃", "𐍅𐌰𐌻𐌳𐌰𐌽𐌳", "", "ruler"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽𐍃", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌹𐌽𐍃", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌹𐌽", "", "prophecy"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌼", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽𐍃", "noun", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌰", "noun", "𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌻", "noun", "𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌻𐌰", "𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌻𐌹𐍃", "𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌻𐌰", "", "ink"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌻𐌰", "noun", "𐍃𐍅𐌰𐍂𐍄𐌹𐌶𐌻𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳", "noun", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌹𐍃", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌰", "", "one hundred cardinal"]) + let v = native_list_append(v, ["𐍄𐌹𐌻", "noun", "𐍄𐌹𐌻", "", "", "", "something fitting or"]) + let v = native_list_append(v, ["𐍆𐌹𐌲𐌲𐍂𐌰𐌲𐌿𐌻𐌸", "noun", "𐍆𐌹𐌲𐌲𐍂𐌰𐌲𐌿𐌻𐌸𐌰", "𐍆𐌹𐌲𐌲𐍂𐌰𐌲𐌿𐌻𐌸𐌹𐍃", "𐍆𐌹𐌲𐌲𐍂𐌰𐌲𐌿𐌻𐌸𐌰", "", "finger ring literally"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸", "noun", "𐌸𐌹𐌿𐌸𐌰", "𐌸𐌹𐌿𐌸𐌹𐍃", "𐌸𐌹𐌿𐌸𐌰", "", "a boon a"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌰", "noun", "𐌸𐌹𐌿𐌸𐌰", "", "", "", "inflection of 𐌸𐌹𐌿𐌸"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴", "noun", "𐌸𐌹𐌿𐌸𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐍃𐌾𐌰", "noun", "𐌺𐌰𐍃𐌾𐌰𐌽𐍃", "𐌺𐌰𐍃𐌾𐌹𐌽𐍃", "𐌺𐌰𐍃𐌾𐌹𐌽", "", "potter"]) + let v = native_list_append(v, ["𐌺𐌰𐍃𐌾𐌹𐌽𐍃", "noun", "𐌺𐌰𐍃𐌾𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌺𐍂𐌿𐍃𐍄𐍃", "noun", "𐌺𐍂𐌿𐍃𐍄𐍃", "", "", "", "a gnashing grating"]) + let v = native_list_append(v, ["𐌿𐌶𐌴𐍄𐌰", "noun", "𐌿𐌶𐌴𐍄𐌰𐌽𐍃", "𐌿𐌶𐌴𐍄𐌹𐌽𐍃", "𐌿𐌶𐌴𐍄𐌹𐌽", "", "manger"]) + let v = native_list_append(v, ["𐌿𐌶𐌴𐍄𐌹𐌽", "noun", "𐌿𐌶𐌴𐍄𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌷𐍄𐍅𐍉𐌼", "noun", "𐍅𐌰𐌷𐍄𐍅𐍉𐌼", "", "", "", "watch vigil dative"]) + let v = native_list_append(v, ["𐍃𐍅𐌿𐌼𐍃𐌻", "noun", "𐍃𐍅𐌿𐌼𐍃𐌻𐌰", "𐍃𐍅𐌿𐌼𐍃𐌻𐌹𐍃", "𐍃𐍅𐌿𐌼𐍃𐌻𐌰", "", "pool place for"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂𐌰", "noun", "𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂𐌰", "", "", "", "inflection of 𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂"]) + let v = native_list_append(v, ["𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂", "noun", "𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂𐌰", "𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂𐌹𐍃", "𐍃𐍀𐌰𐌹𐍃𐌺𐌿𐌻𐌳𐍂𐌰", "", "saliva"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐌻𐌰", "noun", "𐌼𐌰𐌲𐌿𐌻𐌰𐌽𐍃", "𐌼𐌰𐌲𐌿𐌻𐌹𐌽𐍃", "𐌼𐌰𐌲𐌿𐌻𐌹𐌽", "", "boy"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐍈𐌰", "noun", "𐌱𐍂𐌰𐍈𐌰", "", "", "", "inflection of 𐌱𐍂𐌰𐍈"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐍈", "noun", "𐌱𐍂𐌰𐍈𐌰", "𐌱𐍂𐌰𐍈𐌹𐍃", "𐌱𐍂𐌰𐍈𐌰", "", "blink glance"]) + let v = native_list_append(v, ["𐍆𐌻𐌰𐌷𐍄𐍉𐌼", "noun", "𐍆𐌻𐌰𐌷𐍄𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌻𐌰𐌷𐍄𐌰", "noun", "𐍆𐌻𐌰𐌷𐍄𐍉𐍃", "𐍆𐌻𐌰𐌷𐍄𐍉𐍃", "𐍆𐌻𐌰𐌷𐍄𐌰𐌹", "", "braid plait"]) + let v = native_list_append(v, ["𐌹𐌱𐌳𐌰𐌻𐌾𐌹𐌽", "noun", "𐌹𐌱𐌳𐌰𐌻𐌾𐌹𐌽", "", "", "", "mountainside hillside descent"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌽𐌾𐍉", "noun", "𐍄𐌰𐌹𐌽𐌾𐍉𐌽𐍃", "𐍄𐌰𐌹𐌽𐌾𐍉𐌽𐍃", "𐍄𐌰𐌹𐌽𐌾𐍉𐌽", "", "basket"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌽𐌾𐍉𐌽𐍃", "noun", "𐍄𐌰𐌹𐌽𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐍄𐌰𐌹𐌽𐌾𐍉"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌿𐌽𐌹", "noun", "𐌲𐌰𐍂𐌿𐌽𐌾𐌰", "𐌲𐌰𐍂𐌿𐌽𐌾𐌹𐍃", "𐌲𐌰𐍂𐌿𐌽𐌾𐌰", "", "counsel"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌻𐌰", "noun", "𐌲𐌹𐌱𐌻𐌰𐌽𐍃", "𐌲𐌹𐌱𐌻𐌹𐌽𐍃", "𐌲𐌹𐌱𐌻𐌹𐌽", "", "pinnacle or apex"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌻𐌹𐌽", "noun", "𐌲𐌹𐌱𐌻𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌰𐌽𐌳", "noun", "𐍆𐌹𐌰𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌽𐍃", "noun", "𐍆𐌹𐌽𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍆𐌹𐌽", "noun", "𐍆𐌹𐌽", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍆𐌰𐌽", "noun", "𐍆𐌰𐌽", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌹𐌿𐌹𐍃", "noun", "𐌹𐌿𐌹𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌹𐌿", "noun", "𐌹𐌿", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌹𐌿𐌰", "noun", "𐌹𐌿𐌰", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌹𐌿𐍃", "noun", "𐌹𐌿𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍇𐌰𐌿", "noun", "𐍇𐌰𐌿", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍇𐌰𐌿𐍃", "noun", "𐍇𐌰𐌿𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍇𐌿", "noun", "𐍇𐌿", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍇𐌿𐍃", "noun", "𐍇𐌿𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐍇𐍃", "noun", "𐍇𐍃", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌻𐍉𐍆𐌰", "noun", "𐌻𐍉𐍆𐌰𐌽𐍃", "𐌻𐍉𐍆𐌹𐌽𐍃", "𐌻𐍉𐍆𐌹𐌽", "", "palm of the"]) + let v = native_list_append(v, ["𐌻𐍉𐍆𐌹𐌽", "noun", "𐌻𐍉𐍆𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐍉𐍆𐌰𐌼", "noun", "𐌻𐍉𐍆𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌾𐌰", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌾𐌰", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌰𐌹𐍃", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌾𐌰𐌹", "", "Macedonia"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐍃", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌴𐌹𐍃", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌹𐍃", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌰", "", "a Macedonian"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌴𐌹𐍃", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌴𐌹𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌹𐌼", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌾𐌰𐌹", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌰𐌹", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌰𐌹𐍃", "noun", "𐌼𐌰𐌺𐌹𐌳𐍉𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌰𐌹𐌳𐍉𐌽𐌾𐌰", "noun", "𐌼𐌰𐌺𐌰𐌹𐌳𐍉𐌽𐌾𐌰", "", "𐌼𐌰𐌺𐌰𐌹𐌳𐍉𐌽𐌾𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌼𐌰𐌺𐌰𐌹𐌳𐍉𐌽𐌾𐌰𐌹", "noun", "𐌼𐌰𐌺𐌰𐌹𐌳𐍉𐌽𐌾𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌹", "noun", "𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌾𐌰", "𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌾𐌹𐍃", "𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌾𐌰", "", "land"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌾𐌰", "noun", "𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌾𐌰", "", "", "", "inflection of 𐌷𐌰𐌹𐌼𐍉𐌸𐌻𐌹"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌸𐍂𐌰𐌼", "noun", "𐌷𐌰𐌹𐍂𐌸𐍂𐌰𐌼", "", "", "", "dative of 𐌷𐌰𐌹𐍂𐌸𐍂𐌰"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌸𐍂𐌰", "noun", "𐌷𐌰𐌹𐍂𐌸𐍂𐌴", "", "𐌷𐌰𐌹𐍂𐌸𐍂𐌰𐌼", "", "bowels"]) + let v = native_list_append(v, ["𐍀𐌻𐌰𐍄", "noun", "𐍀𐌻𐌰𐍄𐌰", "𐍀𐌻𐌰𐍄𐌹𐍃", "𐍀𐌻𐌰𐍄𐌰", "", "a piece of"]) + let v = native_list_append(v, ["𐍀𐌻𐌰𐍄𐌰", "noun", "𐍀𐌻𐌰𐍄𐌰", "", "", "", "inflection of 𐍀𐌻𐌰𐍄"]) + let v = native_list_append(v, ["𐍀𐍃𐌰𐌻𐌼𐍉", "noun", "𐍀𐍃𐌰𐌻𐌼𐍉", "", "", "", "psalm"]) + let v = native_list_append(v, ["𐍀𐍃𐌰𐌻𐌼𐍉𐌽", "noun", "𐍀𐍃𐌰𐌻𐌼𐍉𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍀𐍃𐌰𐌻𐌼𐍉𐌼", "noun", "𐍀𐍃𐌰𐌻𐌼𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌵𐌿𐌼𐍃", "noun", "𐌵𐌿𐌼𐌴𐌹𐍃", "𐌵𐌿𐌼𐌹𐍃", "𐌵𐌿𐌼𐌰", "", "coming arrival"]) + let v = native_list_append(v, ["𐌵𐌿𐌼", "noun", "𐌵𐌿𐌼", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌵𐌿𐌼𐌹𐍃", "noun", "𐌵𐌿𐌼𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌵𐌿𐌼𐌰", "noun", "𐌵𐌿𐌼𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉", "noun", "𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌽𐍃", "𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌽𐍃", "𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌽", "", "a pregnant woman"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌽", "noun", "𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌼", "noun", "𐌵𐌹𐌸𐌿𐌷𐌰𐍆𐍄𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳", "noun", "𐌽𐌹𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳", "𐌽𐌹𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌹𐍃", "𐌽𐌹𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌰", "", "ninety cardinal number"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌹𐍃", "noun", "𐌽𐌹𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐍉", "noun", "𐍂𐌹𐌽𐌽𐍉𐌽𐍃", "𐍂𐌹𐌽𐌽𐍉𐌽𐍃", "𐍂𐌹𐌽𐌽𐍉𐌽", "", "brook runnel"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐍉𐌽", "noun", "𐍂𐌹𐌽𐌽𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐍂𐍉", "noun", "𐍂𐌴𐌹𐍂𐍉𐌽𐍃", "𐍂𐌴𐌹𐍂𐍉𐌽𐍃", "𐍂𐌴𐌹𐍂𐍉𐌽", "", "a trembling"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐍂𐍉𐌽", "noun", "𐍂𐌴𐌹𐍂𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐍂𐍉𐌼", "noun", "𐍂𐌴𐌹𐍂𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐍉𐌷𐍃𐌽𐍃", "noun", "𐍂𐍉𐌷𐍃𐌽𐌴𐌹𐍃", "𐍂𐍉𐌷𐍃𐌽𐌰𐌹𐍃", "𐍂𐍉𐌷𐍃𐌽𐌰𐌹", "", "courtyard"]) + let v = native_list_append(v, ["𐍂𐍉𐌷𐍃𐌽", "noun", "𐍂𐍉𐌷𐍃𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍂𐍉𐌷𐍃𐌽𐌰𐌹", "noun", "𐍂𐍉𐌷𐍃𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍂𐌰𐌺𐌰", "noun", "𐍂𐌰𐌺𐌰", "", "", "", "idiot fool"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄𐍃", "noun", "𐌲𐍂𐌴𐍄𐍉𐍃", "𐌲𐍂𐌴𐍄𐌹𐍃", "𐌲𐍂𐌴𐍄𐌰", "", "weeping crying"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐌿𐍃", "noun", "𐌾𐌿𐌳𐌰𐌹𐌿𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐌴", "noun", "𐌾𐌿𐌳𐌰𐌹𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐌴𐌹", "noun", "𐌾𐌿𐌳𐌰𐌹𐌴𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌴𐌹", "noun", "𐌹𐌿𐌳𐌰𐌹𐌴𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐌿𐌼", "noun", "𐌾𐌿𐌳𐌰𐌹𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐌴𐌹𐍃", "noun", "𐌾𐌿𐌳𐌰𐌹𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐌿𐌽𐍃", "noun", "𐌾𐌿𐌳𐌰𐌹𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌹𐌷𐍂𐍉", "noun", "𐍃𐍅𐌰𐌹𐌷𐍂𐍉𐌽𐍃", "𐍃𐍅𐌰𐌹𐌷𐍂𐍉𐌽𐍃", "𐍃𐍅𐌰𐌹𐌷𐍂𐍉𐌽", "", "mother-in-law"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌹𐌷𐍂𐌰", "noun", "𐍃𐍅𐌰𐌹𐌷𐍂𐌰𐌽𐍃", "𐍃𐍅𐌰𐌹𐌷𐍂𐌹𐌽𐍃", "𐍃𐍅𐌰𐌹𐌷𐍂𐌹𐌽", "", "father-in-law"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌹𐌷𐍂𐍉𐌽", "noun", "𐍃𐍅𐌰𐌹𐌷𐍂𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐍉𐍄𐌰", "noun", "𐌽𐍉𐍄𐌰𐌽𐍃", "𐌽𐍉𐍄𐌹𐌽𐍃", "𐌽𐍉𐍄𐌹𐌽", "", "stern poop"]) + let v = native_list_append(v, ["𐌽𐍉𐍄𐌹𐌽", "noun", "𐌽𐍉𐍄𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌽𐌿𐍄𐌰𐌽𐍃", "noun", "𐌽𐌿𐍄𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌽𐌿𐍄𐌰", "noun", "𐌽𐌿𐍄𐌰𐌽𐍃", "𐌽𐌿𐍄𐌹𐌽𐍃", "𐌽𐌿𐍄𐌹𐌽", "", "one who catches"]) + let v = native_list_append(v, ["𐌰𐌸𐌰𐌻𐌰𐍆𐌿𐌽𐍃", "noun", "𐌰𐌸𐌰𐌻𐌰𐍆𐌿𐌽𐍉𐍃", "𐌰𐌸𐌰𐌻𐌰𐍆𐌿𐌽𐌹𐍃", "𐌰𐌸𐌰𐌻𐌰𐍆𐌿𐌽𐌰", "", "a male given"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐍄", "noun", "𐌷𐍂𐍉𐍄𐌰", "𐌷𐍂𐍉𐍄𐌹𐍃", "𐌷𐍂𐍉𐍄𐌰", "", "roof"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐍄𐌰", "noun", "𐌷𐍂𐍉𐍄𐌰", "", "", "", "inflection of 𐌷𐍂𐍉𐍄"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐍄𐌰𐌼", "noun", "𐌷𐍂𐍉𐍄𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐍂𐌴𐌹𐌺𐍃", "noun", "𐌰𐌹𐍅𐌰𐍂𐌴𐌹𐌺𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍃𐌰𐌻𐌰𐌹𐌺𐍃", "noun", "𐌲𐌰𐌹𐍃𐌰𐌻𐌰𐌹𐌺𐍃", "𐌲𐌰𐌹𐍃𐌰𐌻𐌰𐌹𐌺𐌹𐍃", "𐌲𐌰𐌹𐍃𐌰𐌻𐌰𐌹𐌺𐌰", "", "a male given"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌹𐌻𐌰", "noun", "𐍃𐍅𐌹𐌽𐌸𐌹𐌻𐌰", "𐍃𐍅𐌹𐌽𐌸𐌹𐌻𐌹𐌽𐍃", "𐍃𐍅𐌹𐌽𐌸𐌹𐌻𐌹𐌽", "", "a male given"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌹𐍂𐌴𐌹𐌺𐍃", "noun", "𐍅𐌹𐍄𐌹𐍂𐌴𐌹𐌺𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽𐌰𐌹", "noun", "𐌲𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐍂𐌰𐌼𐍃𐍄𐌰", "noun", "𐌲𐍂𐌰𐌼𐍃𐍄𐌰", "", "", "", "splinter speck dative"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐍉", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽𐍃", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽𐍃", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽", "", "she-devil evil spirit"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽𐍃", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌷𐌿𐌻𐌸𐍉"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽𐍉", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌼", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽", "noun", "𐌿𐌽𐌷𐌿𐌻𐌸𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌸𐌾𐍉", "noun", "𐌽𐌹𐌸𐌾𐍉𐌽𐍃", "𐌽𐌹𐌸𐌾𐍉𐌽𐍃", "𐌽𐌹𐌸𐌾𐍉𐌽", "", "a kinswoman a"]) + let v = native_list_append(v, ["𐌻𐌴𐍅", "noun", "𐌻𐌴𐍅𐌰", "𐌻𐌴𐍅𐌹𐍃", "𐌻𐌴𐍅𐌰", "", "occasion opportunity"]) + let v = native_list_append(v, ["𐌻𐌴𐍅𐌰", "noun", "𐌻𐌴𐍅𐌰", "", "", "", "inflection of 𐌻𐌴𐍅"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍅𐌰", "noun", "𐌻𐌰𐌹𐍅𐌰𐌽𐍃", "𐌻𐌰𐌹𐍅𐌹𐌽𐍃", "𐌻𐌰𐌹𐍅𐌹𐌽", "", "lion animal"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷", "noun", "𐌱𐌹𐍆𐌰𐌹𐌷𐌰", "𐌱𐌹𐍆𐌰𐌹𐌷𐌹𐍃", "𐌱𐌹𐍆𐌰𐌹𐌷𐌰", "", "avarice greed usury"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷𐌰", "noun", "𐌱𐌹𐍆𐌰𐌹𐌷𐌰", "", "", "", "inflection of 𐌱𐌹𐍆𐌰𐌹𐌷"]) + let v = native_list_append(v, ["𐍆𐌰𐌽𐌰", "noun", "𐍆𐌰𐌽𐌰𐌽𐍃", "𐍆𐌰𐌽𐌹𐌽𐍃", "𐍆𐌰𐌽𐌹𐌽", "", "piece of cloth"]) + let v = native_list_append(v, ["𐍆𐌰𐌽𐌹𐌽𐍃", "noun", "𐍆𐌰𐌽𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌽𐌹𐌽", "noun", "𐍆𐌰𐌽𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌽𐌰𐌽", "noun", "𐍆𐌰𐌽𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐌷𐍃 𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐍃𐌰𐌹𐌷𐍃 𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "sixty cardinal number"]) + let v = native_list_append(v, ["𐍆𐌹𐌼𐍆 𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐍆𐌹𐌼𐍆 𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "fifty cardinal number"]) + let v = native_list_append(v, ["𐍆𐌹𐌳𐍅𐍉𐍂 𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐍆𐌹𐌳𐍅𐍉𐍂 𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "forty cardinal number"]) + let v = native_list_append(v, ["𐌸𐍂𐌴𐌹𐍃 𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐌸𐍂𐌴𐌹𐍃 𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "thirty cardinal number"]) + let v = native_list_append(v, ["𐍄𐍅𐌰𐌹 𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐍄𐍅𐌰𐌹 𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "twenty cardinal number"]) + let v = native_list_append(v, ["𐌷𐌴𐌸𐌾𐍉", "noun", "𐌷𐌴𐌸𐌾𐍉𐌽𐍃", "𐌷𐌴𐌸𐌾𐍉𐌽𐍃", "𐌷𐌴𐌸𐌾𐍉𐌽", "", "chamber"]) + let v = native_list_append(v, ["𐌷𐌴𐌸𐌾𐍉𐌽", "noun", "𐌷𐌴𐌸𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌰𐌿𐌷𐌰𐌽", "noun", "𐌲𐌰𐌽𐌰𐌿𐌷𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌸𐍃", "noun", "𐌱𐌹𐌿𐌳𐍉𐍃", "𐌱𐌹𐌿𐌳𐌹𐍃", "𐌱𐌹𐌿𐌳𐌰", "", "table"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌳𐌰", "noun", "𐌱𐌹𐌿𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌳𐌹𐍃", "noun", "𐌱𐌹𐌿𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌿𐌲𐌵", "noun", "𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌰", "𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌹𐍃", "𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌰", "", "stumbling block"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌿𐌲𐌲𐌵𐌹𐍃", "noun", "𐌱𐌹𐍃𐍄𐌿𐌲𐌲𐌵𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌴", "noun", "𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌿𐌻𐍄𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰", "noun", "𐍃𐍅𐌿𐌻𐍄𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌰𐌽𐍃", "𐍃𐍅𐌿𐌻𐍄𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐌽𐍃", "𐍃𐍅𐌿𐌻𐍄𐌰𐍅𐌰𐌹𐍂𐌸𐌾𐌹𐌽", "", "a fey man"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸", "noun", "𐌻𐌹𐌿𐌸𐌰", "𐌻𐌹𐌿𐌸𐌹𐍃", "𐌻𐌹𐌿𐌸𐌰", "", "song"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸𐌰", "noun", "𐌻𐌹𐌿𐌸𐌰", "", "", "", "inflection of 𐌻𐌹𐌿𐌸"]) + let v = native_list_append(v, ["𐌰𐌿𐌶𐌰𐌽𐌳𐌹𐌻", "noun", "𐌰𐌿𐌶𐌰𐌽𐌳𐌹𐌻", "𐌰𐌿𐌶𐌰𐌽𐌳𐌹𐌻𐌹𐍃", "𐌰𐌿𐌶𐌰𐌽𐌳𐌹𐌻𐌰", "", "the morning star"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌰𐌽𐌳𐍃", "noun", "𐌳𐌰𐌲𐌰𐌽𐌳𐌴", "𐌳𐌰𐌲𐌰𐌽𐌳𐌹𐍃", "𐌳𐌰𐌲𐌰𐌽𐌳", "", "day-bringer dawn-bringer"]) + let v = native_list_append(v, ["𐌳𐌰𐌲𐌰𐌽𐌳", "noun", "𐌳𐌰𐌲𐌰𐌽𐌳", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐌼", "noun", "𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹", "noun", "𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐌽𐍃", "𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐌽𐍃", "𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐌽", "", "danger peril"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐍅𐌹𐌽", "noun", "𐌱𐌰𐍄𐍅𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌿𐌽𐌰𐌹𐌽𐍃", "noun", "𐌱𐌹𐍂𐌿𐌽𐌰𐌹𐌽𐌴𐌹𐍃", "𐌱𐌹𐍂𐌿𐌽𐌰𐌹𐌽𐌰𐌹𐍃", "𐌱𐌹𐍂𐌿𐌽𐌰𐌹𐌽𐌰𐌹", "", "scheming beguiling"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌿𐌽𐌰𐌹𐌽", "noun", "𐌱𐌹𐍂𐌿𐌽𐌰𐌹𐌽", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌲𐌰𐌽", "noun", "𐍅𐌹𐌲𐌰𐌽𐌰", "𐍅𐌹𐌲𐌰𐌽𐌹𐍃", "𐍅𐌹𐌲𐌰𐌽𐌰", "", "war"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌿𐍃𐌾𐍉𐍃", "noun", "𐌱𐌹𐍂𐌿𐍃𐌾𐍉𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽𐍃", "noun", "𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐍃", "𐍄𐌰𐌹𐌺𐌽𐌰𐌹𐍃", "𐍄𐌰𐌹𐌺𐌽𐌰𐌹", "", "sign indication"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽", "noun", "𐍄𐌰𐌹𐌺𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽𐌰𐌹", "noun", "𐍄𐌰𐌹𐌺𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽𐌹𐌼", "noun", "𐍄𐌰𐌹𐌺𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽𐌴", "noun", "𐍄𐌰𐌹𐌺𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽𐌹𐌽𐍃", "noun", "𐍄𐌰𐌹𐌺𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐍃", "noun", "𐍄𐌰𐌹𐌺𐌽𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐍃", "noun", "𐍃𐌺𐍉𐌷𐍉𐍃", "𐍃𐌺𐍉𐌷𐌹𐍃", "𐍃𐌺𐍉𐌷𐌰", "", "shoe"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐌴", "noun", "𐍃𐌺𐍉𐌷𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐌹𐍃", "noun", "𐍃𐌺𐍉𐌷𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐌳𐌰𐍂𐌰𐌹𐍀𐍃", "noun", "𐍃𐌺𐌰𐌿𐌳𐌰𐍂𐌰𐌹𐍀𐍉𐍃", "𐍃𐌺𐌰𐌿𐌳𐌰𐍂𐌰𐌹𐍀𐌹𐍃", "𐍃𐌺𐌰𐌿𐌳𐌰𐍂𐌰𐌹𐍀𐌰", "", "sandal strap"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐌳𐌰𐍂𐌰𐌹𐍀", "noun", "𐍃𐌺𐌰𐌿𐌳𐌰𐍂𐌰𐌹𐍀", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍈𐌰𐌹𐍂𐌽𐌴𐌹", "noun", "𐍈𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "𐍈𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "𐍈𐌰𐌹𐍂𐌽𐌴𐌹𐌽", "", "skull"]) + let v = native_list_append(v, ["𐍈𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "noun", "𐍈𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐍈𐌰𐌹𐍂𐌽𐌴𐌹"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴𐌹𐍃", "noun", "𐌻𐌴𐌹𐌺𐌾𐍉𐍃", "𐌻𐌴𐌹𐌺𐌾𐌴", "𐌻𐌴𐌹𐌺𐌾𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌹", "noun", "𐌻𐌴𐌹𐌺𐌹", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌻𐌴𐌺𐌾𐌰𐌼", "noun", "𐌻𐌴𐌺𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌴𐌺𐌾𐌰𐌽𐍃", "noun", "𐌻𐌴𐌺𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌽", "noun", "𐍆𐌽", "", "", "", "nomen sacrum form"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌰", "noun", "𐌰𐍃𐌹𐌰", "𐌰𐍃𐌹𐌰𐌹𐍃", "𐌰𐍃𐌹𐌰𐌹", "", "Asia an ancient"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌰𐌹𐍃", "noun", "𐌰𐍃𐌹𐌰𐌹𐍃", "", "", "", "genitive of 𐌰𐍃𐌹𐌰"]) + let v = native_list_append(v, ["𐌰𐍃𐌹𐌰𐌹", "noun", "𐌰𐍃𐌹𐌰𐌹", "", "", "", "dative of 𐌰𐍃𐌹𐌰"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌷𐍄𐌹", "noun", "𐌱𐌹𐌿𐌷𐍄𐌾𐌰", "𐌱𐌹𐌿𐌷𐍄𐌴𐌹𐍃", "𐌱𐌹𐌿𐌷𐍄𐌾𐌰", "", "custom frequent repetition"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌷𐍄𐌾𐌰", "noun", "𐌱𐌹𐌿𐌷𐍄𐌾𐌰", "", "", "", "inflection of 𐌱𐌹𐌿𐌷𐍄𐌹"]) + let v = native_list_append(v, ["𐌼𐍉𐍃𐌴𐌶𐌹𐍃", "noun", "𐌼𐍉𐍃𐌴𐌶𐌹𐍃", "", "", "", "genitive of 𐌼𐍉𐍃𐌴𐍃"]) + let v = native_list_append(v, ["𐌼𐍉𐍃𐌴", "noun", "𐌼𐍉𐍃𐌴", "", "", "", "dative of 𐌼𐍉𐍃𐌴𐍃"]) + let v = native_list_append(v, ["𐌼𐍉𐍃𐌴𐌶𐌰", "noun", "𐌼𐍉𐍃𐌴𐌶𐌰", "", "", "", "dative of 𐌼𐍉𐍃𐌴𐍃"]) + let v = native_list_append(v, ["𐌼𐍉𐍃𐌴𐌶", "noun", "𐌼𐍉𐍃𐌴𐌶", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍉", "noun", "𐌱𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌱𐍂𐍉𐌸𐍂𐌰𐌷𐌰𐌽𐍃", "noun", "𐌱𐍂𐍉𐌸𐍂𐌰𐌷𐌰𐌽𐌴", "", "𐌱𐍂𐍉𐌸𐍂𐌰𐌷𐌰𐌼", "", "brethren"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌹", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌰", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐍃", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌰", "", "stewardship administration of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐍃", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌰", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌹𐌽𐍃", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌹𐌽", "", "steward manager"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌰𐌼", "noun", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌲𐌲𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌴𐌹", "noun", "𐌳𐌰𐌻𐌴𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌴", "noun", "𐌳𐌰𐌻𐌴", "", "", "", "expected genitive plural"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐍉", "noun", "𐍆𐌰𐌹𐌷𐍉", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌶𐌴𐌻𐍉𐍄𐌴𐍃", "noun", "𐌶𐌴𐌻𐍉𐍄𐌴𐍃", "", "", "", "epithet of Simon"]) + let v = native_list_append(v, ["𐌶𐌴𐌻𐍉𐍄𐌴𐌽", "noun", "𐌶𐌴𐌻𐍉𐍄𐌴𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌻𐌼𐌰", "noun", "𐌼𐌰𐌻𐌼𐌰𐌽𐍃", "𐌼𐌰𐌻𐌼𐌹𐌽𐍃", "𐌼𐌰𐌻𐌼𐌹𐌽", "", "sand"]) + let v = native_list_append(v, ["𐌼𐌰𐌻𐌼𐌹𐌽", "noun", "𐌼𐌰𐌻𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌱𐌰𐍄𐌿𐌼", "noun", "𐍃𐌰𐌱𐌱𐌰𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌷𐍃𐌽𐌹", "noun", "𐍆𐌿𐌻𐌷𐍃𐌽𐌹", "𐍆𐌿𐌻𐌷𐍃𐌽𐌾𐌹𐍃", "𐍆𐌿𐌻𐌷𐍃𐌽𐌾𐌰", "", "secrecy concealment"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌷𐍃𐌽𐌾𐌰", "noun", "𐍆𐌿𐌻𐌷𐍃𐌽𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌹𐌻𐌷", "noun", "𐌿𐍃𐍆𐌹𐌻𐌷𐌰", "𐌿𐍃𐍆𐌹𐌻𐌷𐌹𐍃", "𐌿𐍃𐍆𐌹𐌻𐌷𐌰", "", "burial"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌹𐌻𐌷𐌰", "noun", "𐌿𐍃𐍆𐌹𐌻𐌷𐌰", "", "", "", "inflection of 𐌿𐍃𐍆𐌹𐌻𐌷"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐍃𐌻", "noun", "𐍃𐌺𐍉𐌷𐍃𐌻𐌰", "𐍃𐌺𐍉𐌷𐍃𐌻𐌹𐍃", "𐍃𐌺𐍉𐌷𐍃𐌻𐌰", "", "demon"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐍃𐌻𐌰", "noun", "𐍃𐌺𐍉𐌷𐍃𐌻𐌰", "", "", "", "inflection of 𐍃𐌺𐍉𐌷𐍃𐌻"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐍃𐌻𐌴", "noun", "𐍃𐌺𐍉𐌷𐍃𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐍉𐌷𐍃𐌻𐌰𐌼", "noun", "𐍃𐌺𐍉𐌷𐍃𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌱𐌴𐌹", "noun", "𐌳𐌰𐌿𐌱𐌴𐌹", "𐌳𐌰𐌿𐌱𐌴𐌹𐌽𐍃", "𐌳𐌰𐌿𐌱𐌴𐌹𐌽", "", "callousness hardness of"]) + let v = native_list_append(v, ["𐌳𐌹𐌲𐍂𐌴𐌹", "noun", "𐌳𐌹𐌲𐍂𐌴𐌹𐌽𐍃", "𐌳𐌹𐌲𐍂𐌴𐌹𐌽𐍃", "𐌳𐌹𐌲𐍂𐌴𐌹𐌽", "", "abundance"]) + let v = native_list_append(v, ["𐌳𐌹𐌲𐍂𐌴𐌹𐌽", "noun", "𐌳𐌹𐌲𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌷𐍉𐌷𐌰𐌽", "noun", "𐌷𐍉𐌷𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐍉𐌷𐌰", "noun", "𐌷𐍉𐌷𐌰𐌽𐍃", "𐌷𐍉𐌷𐌹𐌽𐍃", "𐌷𐍉𐌷𐌹𐌽", "", "plough"]) + let v = native_list_append(v, ["𐍃𐌰𐍂𐍅𐌰", "noun", "𐍃𐌰𐍂𐍅𐌴", "", "𐍃𐌰𐍂𐍅𐌰𐌼", "", "armor"]) + let v = native_list_append(v, ["𐍃𐌰𐍂𐍅𐌰𐌼", "noun", "𐍃𐌰𐍂𐍅𐌰𐌼", "", "", "", "dative of 𐍃𐌰𐍂𐍅𐌰"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌿𐍃", "noun", "𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌴𐌹𐍃", "𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌰𐌿𐍃", "𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌰𐌿", "", "a Hebrew"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌿𐌼", "noun", "𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌴𐌹𐍃", "noun", "𐌷𐌰𐌹𐌱𐍂𐌰𐌹𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌹𐍃𐍂𐌰𐌴𐌻𐌴𐌹𐍄𐌴𐍃", "noun", "𐌹𐍃𐍂𐌰𐌴𐌻𐌴𐌹𐍄𐌰𐌹", "", "", "", "an Israelite"]) + let v = native_list_append(v, ["𐌹𐍃𐍂𐌰𐌴𐌻𐌴𐌹𐍄𐌰𐌹", "noun", "𐌹𐍃𐍂𐌰𐌴𐌻𐌴𐌹𐍄𐌰𐌹", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌹𐍃𐍂𐌰𐌴𐌻𐌴𐌹𐍄𐌴𐌹𐍃", "noun", "𐌹𐍃𐍂𐌰𐌴𐌻𐌴𐌹𐍄𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌷𐌿𐌶𐌳", "noun", "𐌷𐌿𐌶𐌳𐌰", "𐌷𐌿𐌶𐌳𐌹𐍃", "𐌷𐌿𐌶𐌳𐌰", "", "treasure hoard"]) + let v = native_list_append(v, ["𐌷𐌿𐌶𐌳𐌰", "noun", "𐌷𐌿𐌶𐌳𐌰", "", "", "", "inflection of 𐌷𐌿𐌶𐌳"]) + let v = native_list_append(v, ["𐌺𐌹𐌻𐌸𐌴𐌹", "noun", "𐌺𐌹𐌻𐌸𐌴𐌹𐌽𐍃", "𐌺𐌹𐌻𐌸𐌴𐌹𐌽𐍃", "𐌺𐌹𐌻𐌸𐌴𐌹𐌽", "", "womb uterus"]) + let v = native_list_append(v, ["𐌺𐌹𐌻𐌸𐌴𐌹𐌽", "noun", "𐌺𐌹𐌻𐌸𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌳𐍉𐍅𐍉", "noun", "𐍅𐌹𐌳𐍉𐍅𐍉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹", "noun", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹", "noun", "𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽", "", "folly foolishness ignorance"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽", "noun", "𐌿𐌽𐍆𐍂𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌴𐌹", "noun", "𐌲𐍉𐌳𐌴𐌹𐌽𐍃", "𐌲𐍉𐌳𐌴𐌹𐌽𐍃", "𐌲𐍉𐌳𐌴𐌹𐌽", "", "goodness virtue"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌴𐌹𐌽𐍉", "noun", "𐌲𐍉𐌳𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌴𐌹", "noun", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌴𐌹𐌽𐍃", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌴𐌹𐌽𐍃", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌴𐌹𐌽", "", "hospitality"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌴𐌹𐌽", "noun", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳", "noun", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌹𐍃", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐌷𐌿𐌽𐌳𐌰", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹", "noun", "𐌳𐍅𐌰𐌻𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐌳𐍅𐌰𐌻𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐌳𐍅𐌰𐌻𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "foolish talk"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐍄𐌰𐌷𐌴𐌹𐌽𐍃", "noun", "𐌳𐌹𐍃𐍄𐌰𐌷𐌴𐌹𐌽𐍃", "𐌳𐌹𐍃𐍄𐌰𐌷𐌴𐌹𐌽𐌰𐌹𐍃", "𐌳𐌹𐍃𐍄𐌰𐌷𐌴𐌹𐌽𐌰𐌹", "", "dispersion diaspora"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐍄𐌰𐌷𐌴𐌹𐌽", "noun", "𐌳𐌹𐍃𐍄𐌰𐌷𐌴𐌹𐌽", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹", "noun", "𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽𐍃", "𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽𐍃", "𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽", "", "wisdom"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽", "noun", "𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽𐍃", "noun", "𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽𐍉", "noun", "𐌷𐌰𐌽𐌳𐌿𐌲𐌴𐌹𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌽𐌰𐍃𐍃𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌻𐌹", "noun", "𐍃𐍀𐌹𐌻𐌻𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐍀𐌹𐌻𐌳𐍉𐌼", "noun", "𐍃𐍀𐌹𐌻𐌳𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌳𐍃", "noun", "𐍃𐍄𐌰𐌳𐌴𐌹𐍃", "𐍃𐍄𐌰𐌳𐌹𐍃", "𐍃𐍄𐌰𐌳𐌰", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐌹", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴𐌹𐌽", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴𐌽", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌹𐌼", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌴𐌹𐍃", "noun", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐍉𐍃", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌴", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌰", "", "a leader chief"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌹", "noun", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌰", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌴𐌹𐍃", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌰", "", "leadership rulership"]) + let v = native_list_append(v, ["𐌼𐌰𐌸𐌻𐌴𐌹𐌽", "noun", "𐌼𐌰𐌸𐌻𐌴𐌹𐌽", "", "", "", "speech discourse accusative"]) + let v = native_list_append(v, ["𐌼𐌴𐌽𐍉𐌸𐌹𐍃", "noun", "𐌼𐌴𐌽𐍉𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌻𐍉", "noun", "𐌼𐌰𐌻𐍉", "", "", "", "moth insect"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌴𐌹", "noun", "𐍆𐍂𐌹𐌾𐌴𐌹𐌽𐍃", "𐍆𐍂𐌹𐌾𐌴𐌹𐌽𐍃", "𐍆𐍂𐌹𐌾𐌴𐌹𐌽", "", "freedom liberty"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌿𐍃", "noun", "𐍆𐍂𐌹𐌿𐍃", "", "", "", "cold low temperature"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌿𐍃𐌰", "noun", "𐍆𐍂𐌹𐌿𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐍄𐌹𐌼", "noun", "𐍆𐍂𐌰𐌲𐌹𐌱𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌿𐌽𐌹", "noun", "𐌲𐌰𐌹𐍂𐌿𐌽𐌹", "𐌲𐌰𐌹𐍂𐌿𐌽𐌾𐌹𐍃", "𐌲𐌰𐌹𐍂𐌿𐌽𐌾𐌰", "", "eagerness greedy desire"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌿𐌽𐌾𐌰", "noun", "𐌲𐌰𐌹𐍂𐌿𐌽𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌴𐌹", "noun", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌴𐌹", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽", "", "the sin of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "noun", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐍅𐌰", "noun", "𐍅𐌹𐌻𐍅𐌰𐌽𐍃", "𐍅𐌹𐌻𐍅𐌹𐌽𐍃", "𐍅𐌹𐌻𐍅𐌹𐌽", "", "robber bandit"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐍅𐌰𐌽𐍃", "noun", "𐍅𐌹𐌻𐍅𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐍅𐌰𐌼", "noun", "𐍅𐌹𐌻𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽", "noun", "𐌻𐌹𐌿𐌲𐌽", "", "", "", "a lie accusative"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐍃", "noun", "𐌻𐌹𐌿𐌲𐌽𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹𐍃", "𐌻𐌹𐌿𐌲𐌽𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿𐍃", "𐌻𐌹𐌿𐌲𐌽𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌰𐌿", "", "false prophet pseudoprophet"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌼", "noun", "𐌻𐌹𐌿𐌲𐌽𐌰𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌾𐌰", "noun", "𐌻𐌹𐌿𐌲𐌽𐌾𐌰𐌽𐍃", "𐌻𐌹𐌿𐌲𐌽𐌾𐌹𐌽𐍃", "𐌻𐌹𐌿𐌲𐌽𐌾𐌹𐌽", "", "liar"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌾𐌰𐌽𐍃", "noun", "𐌻𐌹𐌿𐌲𐌽𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌾𐌰𐌼", "noun", "𐌻𐌹𐌿𐌲𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌰𐍅𐌰𐌿𐍂𐌳𐍃", "noun", "𐌻𐌹𐌿𐌲𐌽𐌰𐍅𐌰𐌿𐍂𐌳𐍉𐍃", "𐌻𐌹𐌿𐌲𐌽𐌰𐍅𐌰𐌿𐍂𐌳𐌹𐍃", "𐌻𐌹𐌿𐌲𐌽𐌰𐍅𐌰𐌿𐍂𐌳𐌰", "", "liar"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌽𐌰𐍅𐌰𐌿𐍂𐌳𐌴", "noun", "𐌻𐌹𐌿𐌲𐌽𐌰𐍅𐌰𐌿𐍂𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐍅𐌹𐍃𐍃𐌰𐌹𐍃", "noun", "𐌳𐌹𐍃𐍅𐌹𐍃𐍃𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐍅𐌹𐍃𐍃", "noun", "𐌳𐌹𐍃𐍅𐌹𐍃𐍃𐌴𐌹𐍃", "𐌳𐌹𐍃𐍅𐌹𐍃𐍃𐌰𐌹𐍃", "𐌳𐌹𐍃𐍅𐌹𐍃𐍃𐌰𐌹", "", "departure"]) + let v = native_list_append(v, ["𐍅𐍂𐍉𐌷𐍃", "noun", "𐍅𐍂𐍉𐌷𐌴𐌹𐍃", "𐍅𐍂𐍉𐌷𐌰𐌹𐍃", "𐍅𐍂𐍉𐌷𐌰𐌹", "", "accusation"]) + let v = native_list_append(v, ["𐍅𐍂𐍉𐌷", "noun", "𐍅𐍂𐍉𐌷", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹", "noun", "𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐌽𐍃", "𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐌽𐍃", "𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐌽", "", "presbytery"]) + let v = native_list_append(v, ["𐍅𐍂𐍉𐌷𐌴", "noun", "𐍅𐍂𐍉𐌷𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐌽", "noun", "𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐍃", "noun", "𐍀𐍂𐌰𐌹𐌶𐌱𐍅𐍄𐌰𐌹𐍂𐌴𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌹𐌳𐌰𐌹", "noun", "𐍆𐌰𐌷𐌴𐌹𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌴𐌹𐌳", "noun", "𐍆𐌰𐌷𐌴𐌹𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐌹𐌰", "noun", "𐌲𐌰𐌻𐌰𐍄𐌹𐌰", "𐌲𐌰𐌻𐌰𐍄𐌹𐌰𐌹𐍃", "𐌲𐌰𐌻𐌰𐍄𐌹𐌰𐌹", "", "Galatia"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐌹𐌰𐌹𐍃", "noun", "𐌲𐌰𐌻𐌰𐍄𐌹𐌰𐌹𐍃", "", "", "", "genitive of 𐌲𐌰𐌻𐌰𐍄𐌹𐌰"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐌹𐌰𐌹", "noun", "𐌲𐌰𐌻𐌰𐍄𐌹𐌰𐌹", "", "", "", "dative of 𐌲𐌰𐌻𐌰𐍄𐌹𐌰"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐍃", "noun", "𐌲𐌰𐌻𐌰𐍄𐌴𐌹𐍃", "𐌲𐌰𐌻𐌰𐍄𐌹𐍃", "𐌲𐌰𐌻𐌰𐍄𐌰", "", "a Galatian"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐌴𐌹𐍃", "noun", "𐌲𐌰𐌻𐌰𐍄𐌴𐌹𐍃", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐌹𐌼", "noun", "𐌲𐌰𐌻𐌰𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐍄𐌹𐌴", "noun", "𐌲𐌰𐌻𐌰𐍄𐌹𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌹𐌸𐌰", "noun", "𐌿𐍃𐌻𐌹𐌸𐌰𐌽𐍃", "𐌿𐍃𐌻𐌹𐌸𐌹𐌽𐍃", "𐌿𐍃𐌻𐌹𐌸𐌹𐌽", "", "a man with"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌹", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌹𐍃", "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "", "communication conversation"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐍅𐌰𐌿𐍂𐌳𐌹"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌹𐌺𐍃𐌰𐌽𐌳𐍂𐌿𐍃", "noun", "𐌰𐌻𐌰𐌹𐌺𐍃𐌰𐌽𐌳𐍂𐌿𐍃", "𐌰𐌻𐌰𐌹𐌺𐍃𐌰𐌽𐌳𐍂𐌰𐌿𐍃", "𐌰𐌻𐌰𐌹𐌺𐍃𐌰𐌽𐌳𐍂𐌰𐌿", "", "Alexander"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌹𐌸𐌰𐌽", "noun", "𐌿𐍃𐌻𐌹𐌸𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌹𐌸𐌹𐌽", "noun", "𐌿𐍃𐌻𐌹𐌸𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌶𐌳𐍃", "noun", "𐌲𐌰𐌶𐌳𐍉𐍃", "𐌲𐌰𐌶𐌳𐌹𐍃", "𐌲𐌰𐌶𐌳𐌰", "", "a sharp pointed"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐌿𐌼𐌰", "noun", "𐌷𐌻𐌹𐌿𐌼𐌰𐌽𐍃", "𐌷𐌻𐌹𐌿𐌼𐌹𐌽𐍃", "𐌷𐌻𐌹𐌿𐌼𐌹𐌽", "", "hearing"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐌿𐌼𐌰𐌽𐍃", "noun", "𐌷𐌻𐌹𐌿𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍃𐌺𐌿𐌻𐌰", "noun", "𐍆𐌰𐌹𐌷𐌿𐍃𐌺𐌿𐌻𐌰𐌽𐍃", "𐍆𐌰𐌹𐌷𐌿𐍃𐌺𐌿𐌻𐌹𐌽𐍃", "𐍆𐌰𐌹𐌷𐌿𐍃𐌺𐌿𐌻𐌹𐌽", "", "a debtor"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍃𐌺𐌿𐌻𐌰𐌽𐌴", "noun", "𐍆𐌰𐌹𐌷𐌿𐍃𐌺𐌿𐌻𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌸𐍂𐌰𐌹𐌷𐌽𐌰", "noun", "𐍆𐌰𐌹𐌷𐌿𐌸𐍂𐌰𐌹𐌷𐌽𐌰", "", "", "", "Mammon personification of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌰𐌷", "noun", "𐌲𐌰𐍆𐌰𐌷𐌰", "𐌲𐌰𐍆𐌰𐌷𐌹𐍃", "𐌲𐌰𐍆𐌰𐌷𐌰", "", "catch something that"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌰𐌷𐌹𐍃", "noun", "𐌲𐌰𐍆𐌰𐌷𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌻", "noun", "𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌻𐌰", "𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌻𐌹𐍃", "𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌻𐌰", "", "spectacle"]) + let v = native_list_append(v, ["𐌷𐌹𐌿𐌷𐌼𐌰", "noun", "𐌷𐌹𐌿𐌷𐌼𐌰𐌽𐍃", "𐌷𐌹𐌿𐌷𐌼𐌹𐌽𐍃", "𐌷𐌹𐌿𐌷𐌼𐌹𐌽", "", "multitude mass"]) + let v = native_list_append(v, ["𐌷𐌹𐌿𐌼𐌰", "noun", "𐌷𐌹𐌿𐌼𐌰𐌽𐍃", "𐌷𐌹𐌿𐌼𐌹𐌽𐍃", "𐌷𐌹𐌿𐌼𐌹𐌽", "", "alternative form of"]) + let v = native_list_append(v, ["𐌷𐌹𐌿𐌼𐌰𐌼", "noun", "𐌷𐌹𐌿𐌼𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌹𐌿𐌷𐌼𐌰𐌽𐍃", "noun", "𐌷𐌹𐌿𐌷𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌹𐌽𐌴", "noun", "𐌷𐌻𐌰𐌹𐌽𐌴", "", "", "", "hill genitive plural"]) + let v = native_list_append(v, ["𐍂𐌰𐌸𐌾𐍉", "noun", "𐍂𐌰𐌸𐌾𐍉𐌽𐍃", "𐍂𐌰𐌸𐌾𐍉𐌽𐍃", "𐍂𐌰𐌸𐌾𐍉𐌽", "", "account number"]) + let v = native_list_append(v, ["𐍂𐌰𐌸𐌾𐍉𐌽", "noun", "𐍂𐌰𐌸𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍃𐍅𐌰𐍂𐌰", "noun", "𐌿𐍆𐌰𐍂𐍃𐍅𐌰𐍂𐌰𐌽𐍃", "𐌿𐍆𐌰𐍂𐍃𐍅𐌰𐍂𐌹𐌽𐍃", "𐌿𐍆𐌰𐍂𐍃𐍅𐌰𐍂𐌹𐌽", "", "perjurer oathbreaker"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍃𐍅𐌰𐍂𐌰𐌼", "noun", "𐌿𐍆𐌰𐍂𐍃𐍅𐌰𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌰𐌽𐌰", "noun", "𐍃𐌰𐍄𐌰𐌽𐌰𐌽𐍃", "𐍃𐌰𐍄𐌰𐌽𐌹𐌽𐍃", "𐍃𐌰𐍄𐌰𐌽𐌹𐌽", "", "Satan"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌰𐌽𐌹𐌽𐍃", "noun", "𐍃𐌰𐍄𐌰𐌽𐌹𐌽𐍃", "", "", "", "genitive of 𐍃𐌰𐍄𐌰𐌽𐌰"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌰𐌽𐌹𐌽", "noun", "𐍃𐌰𐍄𐌰𐌽𐌹𐌽", "", "", "", "dative of 𐍃𐌰𐍄𐌰𐌽𐌰"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌰𐌽𐌰𐌽", "noun", "𐍃𐌰𐍄𐌰𐌽𐌰𐌽", "", "", "", "accusative of 𐍃𐌰𐍄𐌰𐌽𐌰"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌰𐌽𐌰𐍃", "noun", "𐍃𐌰𐍄𐌰𐌽𐌰𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐌰𐌲𐌲𐌵𐌰", "noun", "𐍃𐌰𐌲𐌲𐌵𐌰", "", "", "", "the west compass"]) + let v = native_list_append(v, ["𐍅𐌰𐌽", "noun", "𐍅𐌰𐌽𐌰", "𐍅𐌰𐌽𐌹𐍃", "𐍅𐌰𐌽𐌰", "", "deficiency lack"]) + let v = native_list_append(v, ["𐌲𐌿𐌸𐍃", "noun", "𐌲𐌿𐌸𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌸𐌿𐍃", "noun", "𐍆𐍂𐌹𐌸𐌿𐍃", "𐍆𐍂𐌹𐌸𐌰𐌿𐍃", "𐍆𐍂𐌹𐌸𐌰𐌿", "", "peace"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌹", "noun", "𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌾𐌰", "𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌴𐌹𐍃", "𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌾𐌰", "", "keeping observance of"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌾𐌰", "noun", "𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌾𐌰", "", "", "", "inflection of 𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌹"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌾𐌰𐌼", "noun", "𐍆𐌰𐍃𐍄𐌿𐌱𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌹", "noun", "𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌾𐌰", "𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌾𐌹𐍃", "𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌾𐌰", "", "street"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌾𐌰", "noun", "𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌾𐌰", "", "", "", "inflection of 𐍆𐌰𐌿𐍂𐌰𐌳𐌰𐌿𐍂𐌹"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐍅𐍉", "noun", "𐌲𐌰𐍄𐍅𐍉𐌽𐍃", "𐌲𐌰𐍄𐍅𐍉𐌽𐍃", "𐌲𐌰𐍄𐍅𐍉𐌽", "", "street"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐍅𐍉𐌽𐍃", "noun", "𐌲𐌰𐍄𐍅𐍉𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐍄𐍅𐍉"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌹", "noun", "𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌹", "𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌾𐌹𐍃", "𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌾𐌰", "", "uncircumcision"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌾𐌰", "noun", "𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌾𐌹𐍃", "noun", "𐍆𐌰𐌿𐍂𐌰𐍆𐌹𐌻𐌻𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐌾𐌰𐌽𐍃", "noun", "𐌲𐌰𐌿𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌶𐌰𐌿𐍆𐍅𐌻𐌰𐌺𐌹𐍉", "noun", "𐌲𐌰𐌶𐌰𐌿𐍆𐍅𐌻𐌰𐌺𐌹𐍉", "", "", "", "treasury dative singular"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌿𐍄𐍃", "noun", "𐌷𐌻𐌰𐌿𐍄𐍉𐍃", "𐌷𐌻𐌰𐌿𐍄𐌹𐍃", "𐌷𐌻𐌰𐌿𐍄𐌰", "", "lot"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌿𐍄𐌰", "noun", "𐌷𐌻𐌰𐌿𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌿𐍄𐌹𐍃", "noun", "𐌷𐌻𐌰𐌿𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌳𐍅𐌰", "noun", "𐌽𐌹𐌳𐍅𐌰", "", "", "", "rust corrosion the"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐍄𐍃", "noun", "𐍅𐍂𐌹𐍄𐌴𐌹𐍃", "𐍅𐍂𐌹𐍄𐌹𐍃", "𐍅𐍂𐌹𐍄𐌰", "", "a tittle or"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐍄", "noun", "𐍅𐍂𐌹𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌸𐌹𐍃𐌺𐌰𐌿𐍂𐍉", "noun", "𐍅𐌹𐌽𐌸𐌹𐍃𐌺𐌰𐌿𐍂𐍉𐌽𐍃", "𐍅𐌹𐌽𐌸𐌹𐍃𐌺𐌰𐌿𐍂𐍉𐌽𐍃", "𐍅𐌹𐌽𐌸𐌹𐍃𐌺𐌰𐌿𐍂𐍉𐌽", "", "a tool for"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌸𐌹𐍃𐌺𐌰𐌿𐍂𐍉𐌽", "noun", "𐍅𐌹𐌽𐌸𐌹𐍃𐌺𐌰𐌿𐍂𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌷𐌰𐌷", "noun", "𐍆𐌰𐌿𐍂𐌰𐌷𐌰𐌷𐌰", "𐍆𐌰𐌿𐍂𐌰𐌷𐌰𐌷𐌹𐍃", "𐍆𐌰𐌿𐍂𐌰𐌷𐌰𐌷𐌰", "", "curtain veil"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌰𐌿𐍂𐌸𐍃", "noun", "𐌲𐌰𐍄𐌰𐌿𐍂𐌸𐌴𐌹𐍃", "𐌲𐌰𐍄𐌰𐌿𐍂𐌸𐌰𐌹𐍃", "𐌲𐌰𐍄𐌰𐌿𐍂𐌸𐌰𐌹", "", "destruction a tearing"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌰𐌿𐍂𐌸𐌰𐌹", "noun", "𐌲𐌰𐍄𐌰𐌿𐍂𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌸𐍃", "noun", "𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳𐌴𐌹𐍃", "𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳𐌹𐍃", "𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳𐌰", "", "young man"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌸", "noun", "𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌸", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐍄𐌿𐌲𐌲𐌻", "noun", "𐍄𐌿𐌲𐌲𐌻𐌰", "𐍄𐌿𐌲𐌲𐌻𐌹𐍃", "𐍄𐌿𐌲𐌲𐌻𐌰", "", "The meaning of"]) + let v = native_list_append(v, ["𐍄𐌿𐌲𐌲𐌻𐌰𐌼", "noun", "𐍄𐌿𐌲𐌲𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌿𐌻𐌹", "noun", "𐌼𐌰𐌽𐌰𐌿𐌻𐌾𐌰", "𐌼𐌰𐌽𐌰𐌿𐌻𐌾𐌹𐍃", "𐌼𐌰𐌽𐌰𐌿𐌻𐌾𐌰", "", "human-image human-figure"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌿𐌻𐌾𐌰", "noun", "𐌼𐌰𐌽𐌰𐌿𐌻𐌾𐌰", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌿𐌻𐌹"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹", "noun", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐌽", "", "good reputation"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌰", "noun", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐍉𐍃", "noun", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐍉𐍃", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌴", "noun", "𐍆𐌰𐌿𐍂𐌰𐌼𐌰𐌸𐌻𐌾𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌷𐍄𐌹𐌼", "noun", "𐍃𐌰𐌿𐌷𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌷𐍄𐌹𐌽𐍃", "noun", "𐍃𐌰𐌿𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌷𐍄𐌴", "noun", "𐍃𐌰𐌿𐌷𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌷𐍄𐍃", "noun", "𐍃𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐍃𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "𐍃𐌰𐌿𐌷𐍄𐌰𐌹", "", "sickness illness disease"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌴𐌹𐌽", "noun", "𐍃𐌹𐌿𐌺𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌴𐌹𐌽𐍃", "noun", "𐍃𐌹𐌿𐌺𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐍃𐌹𐌿𐌺𐌴𐌹"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌴𐌹𐌼", "noun", "𐍃𐌹𐌿𐌺𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌴𐌹", "noun", "𐍃𐌹𐌿𐌺𐌴𐌹𐌽𐍃", "𐍃𐌹𐌿𐌺𐌴𐌹𐌽𐍃", "𐍃𐌹𐌿𐌺𐌴𐌹𐌽", "", "sickness illness disease"]) + let v = native_list_append(v, ["𐍄𐌰𐌻𐌶𐌾𐌰𐌽𐌳", "noun", "𐍄𐌰𐌻𐌶𐌾𐌰𐌽𐌳", "", "", "", "accusative/dative/vocative singular of"]) + let v = native_list_append(v, ["𐍄𐌰𐌻𐌶𐌾𐌰𐌽𐌳𐍃", "noun", "𐍄𐌰𐌻𐌶𐌾𐌰𐌽𐌳𐌴", "𐍄𐌰𐌻𐌶𐌾𐌰𐌽𐌳𐌹𐍃", "𐍄𐌰𐌻𐌶𐌾𐌰𐌽𐌳", "", "teacher instructor"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌴𐌹", "noun", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽", "", "purity"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽", "noun", "𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌽𐌴𐌹", "noun", "𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽𐍃", "𐌲𐌰𐌹𐍂𐌽𐌴𐌹𐌽", "", "desire longing"]) + let v = native_list_append(v, ["𐍈𐌰𐍃𐍃𐌴𐌹𐌽", "noun", "𐍈𐌰𐍃𐍃𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍈𐌰𐍃𐍃𐌴𐌹", "noun", "𐍈𐌰𐍃𐍃𐌴𐌹𐌽𐍃", "𐍈𐌰𐍃𐍃𐌴𐌹𐌽𐍃", "𐍈𐌰𐍃𐍃𐌴𐌹𐌽", "", "severity"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰𐍃𐌺𐌰𐌿𐌽𐌴𐌹", "noun", "𐌲𐌿𐌳𐌰𐍃𐌺𐌰𐌿𐌽𐌴𐌹𐌽𐍃", "𐌲𐌿𐌳𐌰𐍃𐌺𐌰𐌿𐌽𐌴𐌹𐌽𐍃", "𐌲𐌿𐌳𐌰𐍃𐌺𐌰𐌿𐌽𐌴𐌹𐌽", "", "form of God"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰𐍃𐌺𐌰𐌿𐌽𐌴𐌹𐌽", "noun", "𐌲𐌿𐌳𐌰𐍃𐌺𐌰𐌿𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌴𐌸𐍃", "noun", "𐌲𐌰𐌳𐌴𐌳𐌴𐌹𐍃", "𐌲𐌰𐌳𐌴𐌳𐌰𐌹𐍃", "𐌲𐌰𐌳𐌴𐌳𐌰𐌹", "", "a deed a"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌴𐌳𐌰𐌹", "noun", "𐌲𐌰𐌳𐌴𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐍂𐌳𐌴𐌹𐌽", "noun", "𐍆𐍂𐌰𐍅𐌰𐍂𐌳𐌴𐌹𐌽", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐍂𐌳𐌴𐌹𐌽𐍃", "noun", "𐍆𐍂𐌰𐍅𐌰𐍂𐌳𐌴𐌹𐌽𐌴𐌹𐍃", "𐍆𐍂𐌰𐍅𐌰𐍂𐌳𐌴𐌹𐌽𐌰𐌹𐍃", "𐍆𐍂𐌰𐍅𐌰𐍂𐌳𐌴𐌹𐌽𐌰𐌹", "", "a destruction ruin"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌽𐌰𐌹𐍂𐌲𐌰𐌹𐍃", "noun", "𐌱𐌰𐌿𐌰𐌽𐌰𐌹𐍂𐌲𐌰𐌹𐍃", "", "", "", "Boanerges an epithet"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌻𐌴𐌹𐌺𐌰", "noun", "𐌼𐌰𐌽𐌻𐌴𐌹𐌺𐌰𐌽𐍃", "𐌼𐌰𐌽𐌻𐌴𐌹𐌺𐌹𐌽𐍃", "𐌼𐌰𐌽𐌻𐌴𐌹𐌺𐌹𐌽", "", "an image likeness"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌻𐌴𐌹𐌺𐌰𐌽", "noun", "𐌼𐌰𐌽𐌻𐌴𐌹𐌺𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌴𐌹", "noun", "𐌿𐌽𐍃𐍅𐌴𐍂𐌴𐌹𐌽𐍃", "𐌿𐌽𐍃𐍅𐌴𐍂𐌴𐌹𐌽𐍃", "𐌿𐌽𐍃𐍅𐌴𐍂𐌴𐌹𐌽", "", "dishonour"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌴𐌹𐌽", "noun", "𐌿𐌽𐍃𐍅𐌴𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌻𐌿𐌽𐍃", "noun", "𐌻𐌿𐌽𐍉𐍃", "𐌻𐌿𐌽𐌹𐍃", "𐌻𐌿𐌽𐌰", "", "ransom"]) + let v = native_list_append(v, ["𐌻𐌿𐌽", "noun", "𐌻𐌿𐌽", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐌰𐌷", "noun", "𐍆𐌰𐌿𐍂𐌷𐌰𐌷𐌰", "𐍆𐌰𐌿𐍂𐌷𐌰𐌷𐌹𐍃", "𐍆𐌰𐌿𐍂𐌷𐌰𐌷𐌰", "", "curtain veil"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍃𐌰𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "noun", "𐌸𐍂𐌰𐍃𐌰𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍃𐌰𐌱𐌰𐌻𐌸𐌴𐌹", "noun", "𐌸𐍂𐌰𐍃𐌰𐌱𐌰𐌻𐌸𐌴𐌹", "𐌸𐍂𐌰𐍃𐌰𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐌸𐍂𐌰𐍃𐌰𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "", "contentiousness"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐍀𐍃", "noun", "𐌷𐍂𐍉𐍀𐍉𐍃", "𐌷𐍂𐍉𐍀𐌹𐍃", "𐌷𐍂𐍉𐍀𐌰", "", "cry clamour"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽", "noun", "𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽𐍃", "noun", "𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌼", "noun", "𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹", "noun", "𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽𐍃", "𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽𐍃", "𐌼𐌹𐌸𐍅𐌹𐍃𐍃𐌴𐌹𐌽", "", "awareness conscience"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌷𐍄𐍃", "noun", "𐌹𐌽𐍃𐌰𐌷𐍄𐌴𐌹𐍃", "𐌹𐌽𐍃𐌰𐌷𐍄𐌰𐌹𐍃", "𐌹𐌽𐍃𐌰𐌷𐍄𐌰𐌹", "", "narrative presentation"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃", "noun", "𐍃𐍅𐌴𐍃𐌰", "𐍃𐍅𐌴𐍃𐌹𐍃", "𐍃𐍅𐌴𐍃𐌰", "", "what is owned"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌿𐌽𐍃𐌰", "noun", "𐌿𐍂𐍂𐌿𐌽𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌿𐌽𐍃", "noun", "𐌿𐍂𐍂𐌿𐌽𐍃", "", "", "", "rise of a"]) + let v = native_list_append(v, ["𐌲𐌿𐌽𐌳", "noun", "𐌲𐌿𐌽𐌳𐌰", "𐌲𐌿𐌽𐌳𐌹𐍃", "𐌲𐌿𐌽𐌳𐌰", "", "gangrene canker"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌷𐌻𐌰", "noun", "𐌸𐍅𐌰𐌷𐌻𐌰", "", "", "", "inflection of 𐌸𐍅𐌰𐌷𐌻"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌷𐌻", "noun", "𐌸𐍅𐌰𐌷𐌻𐌰", "𐌸𐍅𐌰𐌷𐌻𐌹𐍃", "𐌸𐍅𐌰𐌷𐌻𐌰", "", "a washing a"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌾𐌰", "noun", "𐌷𐌰𐌿𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌴𐌹𐍄", "noun", "𐍆𐍂𐌰𐍅𐌴𐌹𐍄", "𐍆𐍂𐌰𐍅𐌴𐌹𐍄𐌹𐍃", "𐍆𐍂𐌰𐍅𐌴𐌹𐍄𐌰", "", "revenge vengeance retribution"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌴𐌹𐍄𐌰𐌽𐌳𐍃", "noun", "𐍆𐍂𐌰𐍅𐌴𐌹𐍄𐌰𐌽𐌳𐌴", "𐍆𐍂𐌰𐍅𐌴𐌹𐍄𐌰𐌽𐌳𐌹𐍃", "𐍆𐍂𐌰𐍅𐌴𐌹𐍄𐌰𐌽𐌳", "", "avenger revenger"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌴𐌹", "noun", "𐌺𐌰𐌿𐍂𐌴𐌹𐌽𐍃", "𐌺𐌰𐌿𐍂𐌴𐌹𐌽𐍃", "𐌺𐌰𐌿𐍂𐌴𐌹𐌽", "", "weight"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌴𐌹𐌽", "noun", "𐌺𐌰𐌿𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌳𐍂𐌴𐌹𐌽", "noun", "𐌼𐌿𐌽𐌳𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌳𐍂𐌴𐌹", "noun", "𐌼𐌿𐌽𐌳𐍂𐌴𐌹𐌽𐍃", "𐌼𐌿𐌽𐌳𐍂𐌴𐌹𐌽𐍃", "𐌼𐌿𐌽𐌳𐍂𐌴𐌹𐌽", "", "goal aim objective"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌹𐍄𐍉𐍂𐌹𐌰𐌿𐌽", "noun", "𐍀𐍂𐌰𐌹𐍄𐍉𐍂𐌹𐌰𐌿𐌽", "", "", "", "pretorium"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌹𐍄𐌰𐌿𐍂𐌹𐌰", "noun", "𐍀𐍂𐌰𐌹𐍄𐌰𐌿𐍂𐌹𐌰", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌹𐍄𐍉𐍂𐌹𐌰", "noun", "𐍀𐍂𐌰𐌹𐍄𐍉𐍂𐌹𐌰", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴", "", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐍅𐌴𐌹𐍄𐍅𐍉𐌳", "", "false witness"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌿𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌰𐌿𐍃", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌰𐌿", "", "false apostle"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐍃", "noun", "𐌲𐌰𐌻𐌹𐌿𐌲𐌰𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴𐌹𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌹𐍃𐍂𐌰𐌴𐌻𐌰", "noun", "𐌹𐍃𐍂𐌰𐌴𐌻𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐍃𐍂𐌰𐌴𐌻𐌹𐍃", "noun", "𐌹𐍃𐍂𐌰𐌴𐌻𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌹𐍃𐍂𐌰𐌴𐌻", "noun", "𐌹𐍃𐍂𐌰𐌴𐌻", "𐌹𐍃𐍂𐌰𐌴𐌻𐌹𐍃", "𐌹𐍃𐍂𐌰𐌴𐌻𐌰", "", "Israel a Biblical"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌹𐌽𐌸𐌰", "noun", "𐌲𐌰𐍃𐌹𐌽𐌸𐌰𐌽𐍃", "𐌲𐌰𐍃𐌹𐌽𐌸𐌹𐌽𐍃", "𐌲𐌰𐍃𐌹𐌽𐌸𐌹𐌽", "", "companion"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌹𐌽𐌸𐌾𐌰", "noun", "𐌲𐌰𐍃𐌹𐌽𐌸𐌾𐌰𐌽𐍃", "𐌲𐌰𐍃𐌹𐌽𐌸𐌾𐌹𐌽𐍃", "𐌲𐌰𐍃𐌹𐌽𐌸𐌾𐌹𐌽", "", "companion"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌹𐌽𐌸𐌰𐌼", "noun", "𐌲𐌰𐍃𐌹𐌽𐌸𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌹𐌽𐌸𐌾𐌰𐌼", "noun", "𐌲𐌰𐍃𐌹𐌽𐌸𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌸𐍃", "noun", "𐍃𐌹𐌽𐌸𐍉𐍃", "𐍃𐌹𐌽𐌸𐌹𐍃", "𐍃𐌹𐌽𐌸𐌰", "", "time occurrence as"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌸𐌰", "noun", "𐍃𐌹𐌽𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌸𐌰𐌼", "noun", "𐍃𐌹𐌽𐌸𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍈𐌰𐌹𐍄𐌴𐌹𐍃", "noun", "𐍈𐌰𐌹𐍄𐌾𐍉𐍃", "𐍈𐌰𐌹𐍄𐌾𐌴", "𐍈𐌰𐌹𐍄𐌾𐌰", "", "a kind of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌴", "noun", "𐍅𐌰𐌹𐌻𐌰𐌳𐌴𐌳𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌼𐌰", "noun", "𐍃𐌺𐌰𐌼𐍉𐍃", "𐍃𐌺𐌰𐌼𐍉𐍃", "𐍃𐌺𐌰𐌼𐌰𐌹", "", "shame"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌰𐍃𐍅𐌴𐌹𐍀𐌰𐌹𐌽𐌰𐌹", "noun", "𐌼𐌹𐌳𐌾𐌰𐍃𐍅𐌴𐌹𐍀𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌹𐌻𐌼𐌴𐌹", "noun", "𐌿𐍃𐍆𐌹𐌻𐌼𐌴𐌹𐌽𐍃", "𐌿𐍃𐍆𐌹𐌻𐌼𐌴𐌹𐌽𐍃", "𐌿𐍃𐍆𐌹𐌻𐌼𐌴𐌹𐌽", "", "fright horror"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌷𐍄𐍃", "noun", "𐌲𐌰𐍃𐌰𐌷𐍄𐌴𐌹𐍃", "𐌲𐌰𐍃𐌰𐌷𐍄𐌰𐌹𐍃", "𐌲𐌰𐍃𐌰𐌷𐍄𐌰𐌹", "", "reproach"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌷𐍄", "noun", "𐌲𐌰𐍃𐌰𐌷𐍄", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌷𐍄𐌰𐌹", "noun", "𐌲𐌰𐍃𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "noun", "𐍆𐌰𐌿𐍂𐍃𐍄𐌰𐍃𐍃𐌾𐍉𐍃", "𐍆𐌰𐌿𐍂𐍃𐍄𐌰𐍃𐍃𐌾𐌴", "𐍆𐌰𐌿𐍂𐍃𐍄𐌰𐍃𐍃𐌾𐌰", "", "one who is"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐍃𐍄𐌰𐍃𐍃𐌾𐌰𐌽𐍃", "noun", "𐍆𐌰𐌿𐍂𐍃𐍄𐌰𐍃𐍃𐌾𐌰𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍉𐌸𐌰", "noun", "𐍃𐍉𐌸𐌰", "", "", "", "inflection of 𐍃𐍉𐌸"]) + let v = native_list_append(v, ["𐍃𐍉𐌸", "noun", "𐍃𐍉𐌸𐌰", "𐍃𐍉𐌸𐌹𐍃", "𐍃𐍉𐌸𐌰", "", "satisfaction satiation"]) + let v = native_list_append(v, ["𐍃𐌽𐌿𐍄𐍂𐌴𐌹𐌽", "noun", "𐍃𐌽𐌿𐍄𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐍃𐌹𐍃", "noun", "𐌷𐌿𐌲𐍃𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌰𐌿𐍂𐌳𐍃", "noun", "𐌲𐌰𐍆𐌰𐌿𐍂𐌳𐌴𐌹𐍃", "𐌲𐌰𐍆𐌰𐌿𐍂𐌳𐌰𐌹𐍃", "𐌲𐌰𐍆𐌰𐌿𐍂𐌳𐌰𐌹", "", "council"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌴𐌹", "noun", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽", "", "uncleanness impurity"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽", "noun", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐍄𐍂𐌿", "noun", "𐍀𐌰𐌹𐍄𐍂𐌿", "", "", "", "accusative/vocative of 𐍀𐌰𐌹𐍄𐍂𐌿𐍃"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐍄𐍂𐌰𐌿𐍃", "noun", "𐍀𐌰𐌹𐍄𐍂𐌰𐌿𐍃", "", "", "", "genitive of 𐍀𐌰𐌹𐍄𐍂𐌿𐍃"]) + let v = native_list_append(v, ["𐍀𐌰𐌹𐍄𐍂𐌰𐌿", "noun", "𐍀𐌰𐌹𐍄𐍂𐌰𐌿", "", "", "", "dative of 𐍀𐌰𐌹𐍄𐍂𐌿𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐍅𐌰𐌿𐍂𐌳𐌴𐌹", "noun", "𐍆𐌹𐌻𐌿𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐍆𐌹𐌻𐌿𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐍆𐌹𐌻𐌿𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "wordiness"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "noun", "𐍆𐌹𐌻𐌿𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉", "noun", "𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉", "𐌴𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉𐌽𐍃", "𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉𐌽", "", "Jericho"]) + let v = native_list_append(v, ["𐌴𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉𐌽𐍃", "noun", "𐌴𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉𐌽𐍃", "", "", "", "genitive of 𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉𐌽", "noun", "𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉𐌽", "", "", "", "accusative/dative of 𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌻𐌴𐌼", "noun", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌻𐌴𐌼", "", "", "", "Jerusalem"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌻𐌴𐌼𐍃", "noun", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌻𐌴𐌼𐍃", "", "", "", "genitive of 𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌻𐌴𐌼"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰", "noun", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐍉𐍃", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰𐌹", "", "alternative form of"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐍉𐍃", "noun", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐍉𐍃", "", "", "", "genitive of 𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰𐌹", "noun", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰𐌹", "", "", "", "dative of 𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐌰"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐍉𐌽", "noun", "𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐍉𐌽", "", "", "", "misspelling of 𐌹𐌰𐌹𐍂𐌿𐍃𐌰𐌿𐌻𐍅𐌼𐍉𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌳𐌿𐍂𐍂𐌰𐌲𐌹𐌽𐌾𐌰", "noun", "𐍆𐌹𐌳𐌿𐍂𐍂𐌰𐌲𐌹𐌽𐌾𐍉𐍃", "𐍆𐌹𐌳𐌿𐍂𐍂𐌰𐌲𐌹𐌽𐌴𐌹𐍃", "𐍆𐌹𐌳𐌿𐍂𐍂𐌰𐌲𐌹𐌽𐌾𐌰𐌼", "", "tetrarch or tetrarchate"]) + let v = native_list_append(v, ["𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐍃𐍃", "noun", "𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "", "discord"]) + let v = native_list_append(v, ["𐍄𐍅𐌹𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "noun", "𐍄𐍅𐌹𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐍃𐍃", "noun", "𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "", "the act of"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐌻𐌾𐌰", "noun", "𐍃𐌺𐌹𐌻𐌾𐌰𐌽𐍃", "𐍃𐌺𐌹𐌻𐌾𐌹𐌽𐍃", "𐍃𐌺𐌹𐌻𐌾𐌹𐌽", "", "butcher"]) + let v = native_list_append(v, ["𐍃𐌺𐌹𐌻𐌾𐌰𐌼", "noun", "𐍃𐌺𐌹𐌻𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐍂𐍉", "noun", "𐍃𐍄𐌰𐌹𐍂𐍉𐌽𐍃", "𐍃𐍄𐌰𐌹𐍂𐍉𐌽𐍃", "𐍃𐍄𐌰𐌹𐍂𐍉𐌽", "", "infertile woman"]) + let v = native_list_append(v, ["𐍄𐍅𐌴𐌹𐍆𐌻", "noun", "𐍄𐍅𐌴𐌹𐍆𐌻𐍉𐍃", "𐍄𐍅𐌴𐌹𐍆𐌻𐌹𐍃", "𐍄𐍅𐌴𐌹𐍆𐌻𐌰", "", "doubt"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌷𐍃𐍄", "noun", "𐌿𐍃𐍅𐌰𐌷𐍃𐍄", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌷𐍃𐍄𐍃", "noun", "𐌿𐍃𐍅𐌰𐌷𐍃𐍄𐌴𐌹𐍃", "𐌿𐍃𐍅𐌰𐌷𐍃𐍄𐌰𐌹𐍃", "𐌿𐍃𐍅𐌰𐌷𐍃𐍄𐌰𐌹", "", "increase growth"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌹𐌲𐍂𐌹", "noun", "𐍆𐌹𐌻𐌹𐌲𐍂𐌾𐌰", "𐍆𐌹𐌻𐌹𐌲𐍂𐌴𐌹𐍃", "𐍆𐌹𐌻𐌹𐌲𐍂𐌾𐌰", "", "den squalid or"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌹𐌲𐍂𐌾𐌰", "noun", "𐍆𐌹𐌻𐌹𐌲𐍂𐌾𐌰", "", "", "", "inflection of 𐍆𐌹𐌻𐌹𐌲𐍂𐌹"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌴𐌲𐍂𐌹", "noun", "𐍆𐌹𐌻𐌴𐌲𐍂𐌾𐌰", "𐍆𐌹𐌻𐌴𐌲𐍂𐌴𐌹𐍃", "𐍆𐌹𐌻𐌴𐌲𐍂𐌾𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌴𐌲𐍂𐌾𐌰", "noun", "𐍆𐌹𐌻𐌴𐌲𐍂𐌾𐌰", "", "", "", "inflection of 𐍆𐌹𐌻𐌴𐌲𐍂𐌹"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌴𐌹𐍃", "noun", "𐍅𐌰𐌻𐌳𐌿𐍆𐌽𐌴𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐍈𐍉", "noun", "𐌸𐌴𐌹𐍈𐍉𐌽𐍃", "𐌸𐌴𐌹𐍈𐍉𐌽𐍃", "𐌸𐌴𐌹𐍈𐍉𐌽", "", "thunder sound caused"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌱𐍃", "noun", "𐌸𐌹𐌿𐌱𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐍈𐍉𐌽𐍃", "noun", "𐌸𐌴𐌹𐍈𐍉𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐍈𐍉𐌽", "noun", "𐌸𐌴𐌹𐍈𐍉𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐌳𐌴𐌹𐍃𐌴𐌹", "noun", "𐍆𐌹𐌻𐌿𐌳𐌴𐌹𐍃𐌴𐌹", "𐍆𐌹𐌻𐌿𐌳𐌴𐌹𐍃𐌴𐌹𐌽𐍃", "𐍆𐌹𐌻𐌿𐌳𐌴𐌹𐍃𐌴𐌹𐌽", "", "craftiness wiliness"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐌳𐌴𐌹𐍃𐌴𐌹𐌽", "noun", "𐍆𐌹𐌻𐌿𐌳𐌴𐌹𐍃𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌷𐌰𐌻𐌸𐌴𐌹𐌽", "noun", "𐍅𐌹𐌻𐌾𐌰𐌷𐌰𐌻𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌷𐌰𐌻𐌸𐌴𐌹", "noun", "𐍅𐌹𐌻𐌾𐌰𐌷𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐍅𐌹𐌻𐌾𐌰𐌷𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐍅𐌹𐌻𐌾𐌰𐌷𐌰𐌻𐌸𐌴𐌹𐌽", "", "bias partisanship partiality"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍆𐍃𐍄𐍃", "noun", "𐌷𐌰𐌹𐍆𐍃𐍄𐌴𐌹𐍃", "𐌷𐌰𐌹𐍆𐍃𐍄𐌰𐌹𐍃", "𐌷𐌰𐌹𐍆𐍃𐍄𐌰𐌹", "", "conflict rivalry contestation"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍆𐍃𐍄𐌰𐌹𐍃", "noun", "𐌷𐌰𐌹𐍆𐍃𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍆𐍃𐍄𐌰𐌹", "noun", "𐌷𐌰𐌹𐍆𐍃𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍆𐍃𐍄", "noun", "𐌷𐌰𐌹𐍆𐍃𐍄", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍆𐍃𐍄𐌴𐌹𐍃", "noun", "𐌷𐌰𐌹𐍆𐍃𐍄𐌴𐌹𐍃", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐍄𐌲𐌰𐌷𐍄𐍃", "noun", "𐌹𐌽𐌽𐌰𐍄𐌲𐌰𐌷𐍄𐌴𐌹𐍃", "𐌹𐌽𐌽𐌰𐍄𐌲𐌰𐌷𐍄𐌰𐌹𐍃", "𐌹𐌽𐌽𐌰𐍄𐌲𐌰𐌷𐍄𐌰𐌹", "", "ingress entrance into"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐍄𐌲𐌰𐌷𐍄𐌰𐌹", "noun", "𐌹𐌽𐌽𐌰𐍄𐌲𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌲𐌰𐌷𐍄𐌰𐌹", "noun", "𐍆𐍂𐌰𐌼𐌲𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌲𐌰𐌷𐍄𐍃", "noun", "𐍆𐍂𐌰𐌼𐌲𐌰𐌷𐍄𐌴𐌹𐍃", "𐍆𐍂𐌰𐌼𐌲𐌰𐌷𐍄𐌰𐌹𐍃", "𐍆𐍂𐌰𐌼𐌲𐌰𐌷𐍄𐌰𐌹", "", "progress advancement"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐍃", "noun", "𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐍃", "𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐌰𐌹𐍃", "𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐌰𐌹", "", "destruction perdition"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐍄", "noun", "𐍆𐍂𐌰𐌻𐌿𐍃𐍄", "", "", "", "vocative/accusative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐌰𐌹𐍃", "noun", "𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐌰𐌹", "noun", "𐍆𐍂𐌰𐌻𐌿𐍃𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌹𐍆", "noun", "𐌹𐌽𐌲𐌹𐌱𐌰", "𐌹𐌽𐌲𐌹𐌱𐌹𐍃", "𐌹𐌽𐌲𐌹𐌱𐌰", "", "poison"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌹𐌱𐌴", "noun", "𐌹𐌽𐌲𐌹𐌱𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳𐌴𐌹𐍃", "noun", "𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳𐌴𐌹𐍃", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳", "noun", "𐌾𐌿𐌲𐌲𐌰𐌻𐌰𐌿𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌽𐌹𐌽", "noun", "𐍃𐌿𐌽𐌽𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐌽𐌰𐌲𐌰", "noun", "𐍃𐌽𐌰𐌲𐌰𐌽𐍃", "𐍃𐌽𐌰𐌲𐌹𐌽𐍃", "𐍃𐌽𐌰𐌲𐌹𐌽", "", "cloak robe"]) + let v = native_list_append(v, ["𐍃𐌽𐌰𐌲𐌹𐌽𐍃", "noun", "𐍃𐌽𐌰𐌲𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌽𐌰𐌲𐌹𐌽", "noun", "𐍃𐌽𐌰𐌲𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐍃", "noun", "𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌴𐌹𐍃", "𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌰𐌹", "", "end completion fulfilment"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "noun", "𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌰𐌹", "noun", "𐌿𐍃𐍄𐌰𐌿𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌳𐌾𐌰", "noun", "𐍅𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "𐍅𐌰𐍂𐌳𐌾𐌹𐌽𐍃", "𐍅𐌰𐍂𐌳𐌾𐌹𐌽", "", "guard sentry"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "noun", "𐍅𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌱𐌹𐌳", "noun", "𐌷𐌰𐌿𐌱𐌹𐌳", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌳𐌿𐌸𐍃", "noun", "𐌼𐌰𐌽𐌰𐌲𐌳𐌿𐌸𐌴𐌹𐍃", "𐌼𐌰𐌽𐌰𐌲𐌳𐌿𐌸𐌰𐌹𐍃", "𐌼𐌰𐌽𐌰𐌲𐌳𐌿𐌸𐌰𐌹", "", "abundance plenty"]) + let v = native_list_append(v, ["𐌲𐍂𐌹𐌸𐍃", "noun", "𐌲𐍂𐌹𐌳𐌴𐌹𐍃", "𐌲𐍂𐌹𐌳𐌰𐌹𐍃", "𐌲𐍂𐌹𐌳𐌰𐌹", "", "rank grade standing"]) + let v = native_list_append(v, ["𐌲𐍂𐌹𐌳", "noun", "𐌲𐍂𐌹𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌿𐌽𐌳𐍃", "noun", "𐌲𐌰𐌼𐌿𐌽𐌳𐌴𐌹𐍃", "𐌲𐌰𐌼𐌿𐌽𐌳𐌰𐌹𐍃", "𐌲𐌰𐌼𐌿𐌽𐌳𐌰𐌹", "", "remembrance"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌿𐌽𐌳", "noun", "𐌲𐌰𐌼𐌿𐌽𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌿𐌽𐌳𐌰𐌹", "noun", "𐌲𐌰𐌼𐌿𐌽𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍈𐌰𐌸𐍉", "noun", "𐍈𐌰𐌸𐍉𐌽𐍃", "𐍈𐌰𐌸𐍉𐌽𐍃", "𐍈𐌰𐌸𐍉𐌽", "", "foam"]) + let v = native_list_append(v, ["𐍈𐌰𐌸𐍉𐌽", "noun", "𐍈𐌰𐌸𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌷𐍄", "noun", "𐌹𐌽𐍃𐌰𐌷𐍄", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌷𐍄𐌰𐌹", "noun", "𐌹𐌽𐍃𐌰𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌰", "noun", "𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌰𐌽𐍃", "𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌹𐌽𐍃", "𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌹𐌽", "", "companion"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌰𐌽", "noun", "𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌰𐌼", "noun", "𐌲𐌰𐌷𐌻𐌰𐌹𐌱𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍂", "noun", "𐍃𐌰𐌹𐍂𐌰", "𐍃𐌰𐌹𐍂𐌹𐍃", "𐍃𐌰𐌹𐍂𐌰", "", "pain"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍂𐌰𐌼", "noun", "𐍃𐌰𐌹𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐍃𐍄𐍃", "noun", "𐌲𐌰𐌽𐌹𐍃𐍄𐌴𐌹𐍃", "𐌲𐌰𐌽𐌹𐍃𐍄𐌰𐌹𐍃", "𐌲𐌰𐌽𐌹𐍃𐍄𐌰𐌹", "", "salvation health"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐍃𐍄𐌰𐌹", "noun", "𐌲𐌰𐌽𐌹𐍃𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐍃𐍄𐌰𐌹𐍃", "noun", "𐌲𐌰𐌽𐌹𐍃𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐍃𐍄", "noun", "𐌲𐌰𐌽𐌹𐍃𐍄", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐍃", "noun", "𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌴𐌹𐍃", "𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌰𐌹𐍃", "𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌰𐌹", "", "a fixed time"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌴𐌷𐍃𐌽", "noun", "𐌲𐌰𐍂𐌴𐌷𐍃𐌽", "", "", "", "accusative/vocative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌰𐌹", "noun", "𐌲𐌰𐍂𐌴𐌷𐍃𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰𐌳𐌴𐌹", "noun", "𐍆𐍂𐌿𐌼𐌰𐌳𐌴𐌹𐌽𐍃", "𐍆𐍂𐌿𐌼𐌰𐌳𐌴𐌹𐌽𐍃", "𐍆𐍂𐌿𐌼𐌰𐌳𐌴𐌹𐌽", "", "preeminence"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰𐌳𐌴𐌹𐌽", "noun", "𐍆𐍂𐌿𐌼𐌰𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻", "noun", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌰", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌹𐍃", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌰", "", "leprosy"]) + let v = native_list_append(v, ["𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌹𐍃", "noun", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰", "noun", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰𐌼", "noun", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌹", "noun", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌹𐍃", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰", "", "beginning that which"]) + let v = native_list_append(v, ["𐌷𐍅𐍃𐍃𐍉𐍀𐍉𐌽", "noun", "𐌷𐍅𐍃𐍃𐍉𐍀𐍉𐌽", "", "", "", "an aromatic plant"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐍃", "noun", "𐍃𐍄𐌹𐌺𐌴𐌹𐍃", "𐍃𐍄𐌹𐌺𐌹𐍃", "𐍃𐍄𐌹𐌺𐌰", "", "point moment"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌺𐌰", "noun", "𐍃𐍄𐌹𐌺𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌹", "noun", "𐌿𐌽𐌻𐌴𐌳𐌹", "𐌿𐌽𐌻𐌴𐌳𐌴𐌹𐍃", "𐌿𐌽𐌻𐌴𐌳𐌾𐌰", "", "poverty"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌾𐌰", "noun", "𐌿𐌽𐌻𐌴𐌳𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌹𐌻𐌰", "noun", "𐌲𐌰𐌳𐌰𐌹𐌻𐌰𐌽𐍃", "𐌲𐌰𐌳𐌰𐌹𐌻𐌹𐌽𐍃", "𐌲𐌰𐌳𐌰𐌹𐌻𐌹𐌽", "", "partner"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌹𐌻𐌰𐌽𐍃", "noun", "𐌲𐌰𐌳𐌰𐌹𐌻𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌱𐌻𐍉𐍃𐍄𐍂𐌴𐌹𐍃", "noun", "𐌲𐌿𐌳𐌱𐌻𐍉𐍃𐍄𐍂𐌾𐍉𐍃", "𐌲𐌿𐌳𐌱𐌻𐍉𐍃𐍄𐍂𐌾𐌴", "𐌲𐌿𐌳𐌱𐌻𐍉𐍃𐍄𐍂𐌾𐌰", "", "worshipper of God"]) + let v = native_list_append(v, ["𐌻𐌹𐍄𐌰", "noun", "𐌻𐌹𐍄𐍉𐍃", "𐌻𐌹𐍄𐍉𐍃", "𐌻𐌹𐍄𐌰𐌹", "", "hypocrisy insincerity"]) + let v = native_list_append(v, ["𐌻𐌹𐍄𐌰𐌹", "noun", "𐌻𐌹𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌹𐌸𐍃", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌹𐌸𐍃", "𐌼𐌰𐌽𐌰𐍃𐌴𐌹𐌳𐌰𐌹𐍃", "𐌼𐌰𐌽𐌰𐍃𐌴𐌹𐌳𐌰𐌹", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐍃𐌴𐌹𐌳𐌰𐌹", "noun", "𐌼𐌰𐌽𐌰𐍃𐌴𐌹𐌳𐌰𐌹", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌼𐍉𐌸𐍃", "noun", "𐌼𐍉𐌳𐍉𐍃", "𐌼𐍉𐌳𐌹𐍃", "𐌼𐍉𐌳𐌰", "", "mood temper"]) + let v = native_list_append(v, ["𐌼𐍉𐌳𐌰", "noun", "𐌼𐍉𐌳𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌼𐍉𐌳𐌹𐍃", "noun", "𐌼𐍉𐌳𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌿𐌺𐌰𐌼𐍉𐌳𐌴𐌹", "noun", "𐌼𐌿𐌺𐌰𐌼𐍉𐌳𐌴𐌹", "𐌼𐌿𐌺𐌰𐌼𐍉𐌳𐌴𐌹𐌽𐍃", "𐌼𐌿𐌺𐌰𐌼𐍉𐌳𐌴𐌹𐌽", "", "meekness gentleness"]) + let v = native_list_append(v, ["𐌼𐌿𐌺𐌰𐌼𐍉𐌳𐌴𐌹𐌽", "noun", "𐌼𐌿𐌺𐌰𐌼𐍉𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌹𐌸𐍃", "noun", "𐍆𐌿𐌻𐌻𐌹𐌸𐌴𐌹𐍃", "𐍆𐌿𐌻𐌻𐌹𐌸𐌰𐌹𐍃", "𐍆𐌿𐌻𐌻𐌹𐌸𐌰𐌹", "", "fullness"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌹𐌸", "noun", "𐍆𐌿𐌻𐌻𐌹𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌴𐌹𐌸", "noun", "𐍆𐌿𐌻𐌻𐌴𐌹𐌸", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌹𐌸𐌴", "noun", "𐍆𐌿𐌻𐌻𐌹𐌸𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌰𐍂𐌹𐍃", "noun", "𐌻𐌰𐌹𐍃𐌰𐍂𐌹𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌴𐌹", "noun", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌴𐌹𐌽𐍃", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌴𐌹𐌽𐍃", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌴𐌹𐌽", "", "unleavened bread"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌴𐌹𐌽", "noun", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺", "noun", "𐌲𐌰𐌾𐌿𐌺𐌰", "𐌲𐌰𐌾𐌿𐌺𐌹𐍃", "𐌲𐌰𐌾𐌿𐌺𐌰", "", "a pair couple"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐌰", "noun", "𐌲𐌰𐌾𐌿𐌺𐌰𐌽𐍃", "𐌲𐌰𐌾𐌿𐌺𐌹𐌽𐍃", "𐌲𐌰𐌾𐌿𐌺𐌹𐌽", "", "companion"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐍉", "noun", "𐌲𐌰𐌾𐌿𐌺𐍉𐌽𐍃", "𐌲𐌰𐌾𐌿𐌺𐍉𐌽𐍃", "𐌲𐌰𐌾𐌿𐌺𐍉𐌽", "", "companion"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐍉𐌽𐍃", "noun", "𐌲𐌰𐌾𐌿𐌺𐍉𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐌾𐌿𐌺𐍉"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐍉𐌽", "noun", "𐌲𐌰𐌾𐌿𐌺𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐍉𐌼", "noun", "𐌲𐌰𐌾𐌿𐌺𐍉𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐍉𐌽𐍉", "noun", "𐌲𐌰𐌾𐌿𐌺𐍉𐌽𐍉", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌾𐌿𐌺𐌰𐌽𐍃", "noun", "𐌲𐌰𐌾𐌿𐌺𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐍃", "noun", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌴𐌹𐍃", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌰𐌹", "", "comfort consolation"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌴", "noun", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "noun", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌰𐌹", "noun", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄", "noun", "𐌲𐌰𐌸𐌻𐌰𐌹𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐍃", "noun", "𐌷𐌿𐌽𐌳𐌰𐍆𐌰𐌳𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍄𐍂𐌰𐌿𐌰𐌹𐌽𐍃", "noun", "𐍄𐍂𐌰𐌿𐌰𐌹𐌽𐌴𐌹𐍃", "𐍄𐍂𐌰𐌿𐌰𐌹𐌽𐌰𐌹𐍃", "𐍄𐍂𐌰𐌿𐌰𐌹𐌽𐌰𐌹", "", "trust confidence"]) + let v = native_list_append(v, ["𐍄𐍂𐌰𐌿𐌰𐌹𐌽", "noun", "𐍄𐍂𐌰𐌿𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍄𐍂𐌰𐌿𐌰𐌹𐌽𐌰𐌹", "noun", "𐍄𐍂𐌰𐌿𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹", "", "stumbling-block impediment"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽", "noun", "𐌲𐌰𐌼𐌰𐍂𐌶𐌴𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌻", "noun", "𐌼𐌰𐌹𐌻𐌰", "𐌼𐌰𐌹𐌻𐌹𐍃", "𐌼𐌰𐌹𐌻𐌰", "", "wrinkle"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌻𐌴", "noun", "𐌼𐌰𐌹𐌻𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐍃𐍃", "noun", "𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌴𐌹𐍃", "𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "", "resurrection"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "noun", "𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "noun", "𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌲𐌲𐍅𐌴𐌹", "noun", "𐌲𐌰𐌰𐌲𐌲𐍅𐌴𐌹𐌽𐍃", "𐌲𐌰𐌰𐌲𐌲𐍅𐌴𐌹𐌽𐍃", "𐌲𐌰𐌰𐌲𐌲𐍅𐌴𐌹𐌽", "", "enforcement"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌲𐌲𐍅𐌴𐌹𐌽", "noun", "𐌲𐌰𐌰𐌲𐌲𐍅𐌴𐌹𐌽", "", "", "", "dative singular/accusative singular"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌸𐌹", "noun", "𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌰", "𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌰", "", "understanding knowledge"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌰", "noun", "𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌰", "", "", "", "inflection of 𐌿𐍆𐌺𐌿𐌽𐌸𐌹"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "noun", "𐌿𐍆𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌿𐌲𐌳𐍃", "noun", "𐌲𐌰𐌷𐌿𐌲𐌳𐌴𐌹𐍃", "𐌲𐌰𐌷𐌿𐌲𐌳𐌰𐌹𐍃", "𐌲𐌰𐌷𐌿𐌲𐌳𐌰𐌹", "", "mind reason disposition"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌿𐌲𐌳", "noun", "𐌲𐌰𐌷𐌿𐌲𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌿𐌲𐌳𐌰𐌹𐍃", "noun", "𐌲𐌰𐌷𐌿𐌲𐌳𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌿𐌲𐌳𐌰𐌹", "noun", "𐌲𐌰𐌷𐌿𐌲𐌳𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐍉", "noun", "𐍄𐍂𐌹𐌲𐍉𐌽𐍃", "𐍄𐍂𐌹𐌲𐍉𐌽𐍃", "𐍄𐍂𐌹𐌲𐍉𐌽", "", "sadness regret"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐍉𐌽", "noun", "𐍄𐍂𐌹𐌲𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐌰𐌿𐌳", "noun", "𐍃𐌰𐌿𐌳", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌶𐌽𐌰", "noun", "𐌲𐌰𐍂𐌰𐌶𐌽𐌰𐌽𐍃", "𐌲𐌰𐍂𐌰𐌶𐌽𐌹𐌽𐍃", "𐌲𐌰𐍂𐌰𐌶𐌽𐌹𐌽", "", "neighbor"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌶𐌽𐌰𐌽𐍃", "noun", "𐌲𐌰𐍂𐌰𐌶𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌶𐌽𐍉", "noun", "𐌲𐌰𐍂𐌰𐌶𐌽𐍉𐌽𐍃", "𐌲𐌰𐍂𐌰𐌶𐌽𐍉𐌽𐍃", "𐌲𐌰𐍂𐌰𐌶𐌽𐍉𐌽", "", "neighbor"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌶𐌽𐍉𐌽𐍃", "noun", "𐌲𐌰𐍂𐌰𐌶𐌽𐍉𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐍂𐌰𐌶𐌽𐍉"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐍂𐌱𐌾𐌰", "noun", "𐌲𐌰𐌰𐍂𐌱𐌾𐌰𐌽𐍃", "𐌲𐌰𐌰𐍂𐌱𐌾𐌹𐌽𐍃", "𐌲𐌰𐌰𐍂𐌱𐌾𐌹𐌽", "", "fellow heir"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐍂𐌱𐌾𐌰𐌽𐍃", "noun", "𐌲𐌰𐌰𐍂𐌱𐌾𐌰𐌽𐍃", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["𐌱𐌰𐌳𐌿𐍃", "noun", "𐌱𐌰𐌳𐌾𐌿𐍃", "𐌱𐌰𐌳𐌰𐌿𐍃", "𐌱𐌰𐌳𐌰𐌿", "", "war"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐌱𐌽𐌹", "noun", "𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌰", "𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌹𐍃", "𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌰", "", "knowledge"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌰", "noun", "𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌰", "", "", "", "inflection of 𐍅𐌹𐍄𐌿𐌱𐌽𐌹"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌹𐍃", "noun", "𐍅𐌹𐍄𐌿𐌱𐌽𐌾𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐍆𐍄𐍂𐌾𐍉𐌼", "noun", "𐍈𐌹𐌻𐍆𐍄𐍂𐌾𐍉𐌼", "", "", "", "coffin bier dative"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌰", "𐌲𐌰𐌱𐌰𐌿𐍂𐌹𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌰", "", "tribute"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌼", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐍉𐍃", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐍉𐍃", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌲𐌾𐌰", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌲𐌾𐌹𐌽𐍃", "𐌲𐌰𐌱𐌰𐌿𐍂𐌲𐌾𐌹𐌽", "", "fellow citizen"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐍃", "noun", "𐌲𐌰𐌱𐌰𐌿𐍂𐌲𐌾𐌰𐌽𐍃", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍅𐌰𐌽𐌴", "noun", "𐌻𐌰𐌹𐍅𐌰𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌸𐌰𐌼", "noun", "𐌼𐌿𐌽𐌸𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌳𐌰𐌽𐌹𐌴𐌻", "noun", "𐌳𐌰𐌽𐌹𐌴𐌻", "", "", "", "Daniel the Biblical"]) + let v = native_list_append(v, ["𐍄𐍉𐌾𐌰 𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴", "noun", "𐍄𐍉𐌾𐌰 𐌰𐍀𐌰𐌿𐍃𐍄𐌰𐌿𐌻𐌴", "", "", "", "Acts of the"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌿𐌺𐌰𐌽𐍃", "noun", "𐌲𐌰𐌳𐌰𐌿𐌺𐌰𐌽𐌴", "", "𐌲𐌰𐌳𐌰𐌿𐌺𐌰𐌼", "", "household"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌹𐌲𐌹𐍃", "noun", "𐌲𐌰𐌳𐌹𐌲𐌹𐍃", "", "", "", "the thing formed"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌰𐌸𐌾𐌴𐌹", "noun", "𐌲𐌰𐍆𐍂𐌰𐌸𐌾𐌴𐌹", "𐌲𐌰𐍆𐍂𐌰𐌸𐌾𐌴𐌹𐌽𐍃", "𐌲𐌰𐍆𐍂𐌰𐌸𐌾𐌴𐌹𐌽", "", "sobriety quality or"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌰𐌸𐌾𐌴𐌹𐌽", "noun", "𐌲𐌰𐍆𐍂𐌰𐌸𐌾𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌴𐌻", "noun", "𐌽𐌰𐌿𐌴𐌻", "𐌽𐌰𐌿𐌴𐌻𐌹𐍃", "𐌽𐌰𐌿𐌴𐌻𐌰", "", "Noah the Biblical"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌴𐌻𐌹𐍃", "noun", "𐌽𐌰𐌿𐌴𐌻𐌹𐍃", "", "", "", "genitive of 𐌽𐌰𐌿𐌴𐌻"]) + let v = native_list_append(v, ["𐌹𐍉𐍃𐌴𐍆𐌹𐍃", "noun", "𐌹𐍉𐍃𐌴𐍆𐌹𐍃", "", "", "", "genitive of 𐌹𐍉𐍃𐌴𐍆"]) + let v = native_list_append(v, ["𐌹𐍉𐍃𐌴𐍆𐌰", "noun", "𐌹𐍉𐍃𐌴𐍆𐌰", "", "", "", "dative of 𐌹𐍉𐍃𐌴𐍆"]) + let v = native_list_append(v, ["𐌹𐍉𐍃𐌴𐌱𐌰", "noun", "𐌹𐍉𐍃𐌴𐌱𐌰", "", "", "", "dative of 𐌹𐍉𐍃𐌴𐍆"]) + let v = native_list_append(v, ["𐌹𐍉𐌷𐌰𐌽𐌽𐌴", "noun", "𐌹𐍉𐌷𐌰𐌽𐌽𐌴", "", "", "", "dative of 𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃"]) + let v = native_list_append(v, ["𐌹𐍉𐌷𐌰𐌽𐌽𐌹𐍃", "noun", "𐌹𐍉𐌷𐌰𐌽𐌽𐌹𐍃", "", "", "", "genitive of 𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃"]) + let v = native_list_append(v, ["𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐌽", "noun", "𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐌽", "", "", "", "accusative of 𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃"]) + let v = native_list_append(v, ["𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐌹𐌽", "noun", "𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐌹𐌽", "", "", "", "accusative of 𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌿𐌳𐌴𐌹", "noun", "𐌲𐌰𐌲𐌿𐌳𐌴𐌹", "𐌲𐌰𐌲𐌿𐌳𐌴𐌹𐌽𐍃", "𐌲𐌰𐌲𐌿𐌳𐌴𐌹𐌽", "", "godliness"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌿𐌳𐌴𐌹𐌽", "noun", "𐌲𐌰𐌲𐌿𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌿𐌳𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌲𐌿𐌳𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽𐍃", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐌽𐍃", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐌽", "", "fellow worker"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽𐍃", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌼", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐌽", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽", "noun", "𐌲𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐍃", "noun", "𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐍃", "𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐌰𐌹", "", "temperance"]) + let v = native_list_append(v, ["𐌷𐌴𐍂𐍉𐌳𐌴𐍃", "noun", "𐌷𐌴𐍂𐍉𐌳𐌴𐍃", "𐌷𐌴𐍂𐍉𐌳𐌴𐌹𐍃", "𐌷𐌴𐍂𐍉𐌳𐌰", "", "Herod the Biblical"]) + let v = native_list_append(v, ["𐌷𐌴𐍂𐍉𐌳𐌹𐍃", "noun", "𐌷𐌴𐍂𐍉𐌳𐌹𐍃", "", "", "", "genitive of 𐌷𐌴𐍂𐍉𐌳𐌴𐍃"]) + let v = native_list_append(v, ["𐌷𐌴𐍂𐍉𐌳𐌴𐌹𐍃", "noun", "𐌷𐌴𐍂𐍉𐌳𐌴𐌹𐍃", "", "", "", "genitive of 𐌷𐌴𐍂𐍉𐌳𐌴𐍃"]) + let v = native_list_append(v, ["𐌷𐌴𐍂𐍉𐌳𐌰", "noun", "𐌷𐌴𐍂𐍉𐌳𐌰", "", "", "", "dative of 𐌷𐌴𐍂𐍉𐌳𐌴𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐌸𐌾𐌹𐍃", "noun", "𐌲𐌰𐌽𐌹𐌸𐌾𐍉𐍃", "𐌲𐌰𐌽𐌹𐌸𐌾𐌴", "𐌲𐌰𐌽𐌹𐌸𐌾𐌰", "", "kinsman"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐌸𐌾𐍉𐍃", "noun", "𐌲𐌰𐌽𐌹𐌸𐌾𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌹𐌸𐌾𐌰𐌼", "noun", "𐌲𐌰𐌽𐌹𐌸𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍂𐌹𐌼𐌹𐍃", "noun", "𐍂𐌹𐌼𐌹𐍃", "𐍂𐌹𐌼𐌹𐍃𐌹𐍃", "𐍂𐌹𐌼𐌹𐍃𐌰", "", "calm tranquility"]) + let v = native_list_append(v, ["𐍂𐌹𐌼𐌹𐍃𐌰", "noun", "𐍂𐌹𐌼𐌹𐍃𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌳𐌴𐌹", "noun", "𐌲𐌰𐍂𐌳𐌴𐌹", "", "", "", "See 𐌸𐌰𐌽𐌴 𐌲𐌰𐍂𐌳𐌴𐌹"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌴𐌹", "noun", "𐍅𐌰𐌿𐍂𐌳𐌴𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌰𐌹𐍃𐌴𐌹𐍃", "noun", "𐌷𐌰𐌹𐍂𐌰𐌹𐍃𐌴𐌹𐍃", "", "", "", "heresies"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌿𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "noun", "𐌷𐌰𐍂𐌳𐌿𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌿𐌷𐌰𐌹𐍂𐍄𐌴𐌹", "noun", "𐌷𐌰𐍂𐌳𐌿𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽𐍃", "𐌷𐌰𐍂𐌳𐌿𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽𐍃", "𐌷𐌰𐍂𐌳𐌿𐌷𐌰𐌹𐍂𐍄𐌴𐌹𐌽", "", "hardheartedness"]) + let v = native_list_append(v, ["𐌷𐌻𐌿𐍄𐍂𐌴𐌹", "noun", "𐌷𐌻𐌿𐍄𐍂𐌴𐌹𐌽𐍃", "𐌷𐌻𐌿𐍄𐍂𐌴𐌹𐌽𐍃", "𐌷𐌻𐌿𐍄𐍂𐌴𐌹𐌽", "", "purity"]) + let v = native_list_append(v, ["𐌷𐌻𐌿𐍄𐍂𐌴𐌹𐌽", "noun", "𐌷𐌻𐌿𐍄𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌼𐌾𐍉", "noun", "𐌹𐌿𐌼𐌾𐍉𐌽𐍃", "𐌹𐌿𐌼𐌾𐍉𐌽𐍃", "𐌹𐌿𐌼𐌾𐍉𐌽", "", "crowd throng multitude"]) + let v = native_list_append(v, ["𐌹𐌿𐌼𐌾𐍉𐌽𐍃", "noun", "𐌹𐌿𐌼𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐌹𐌿𐌼𐌾𐍉"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌰", "noun", "𐌹𐌿𐌳𐌰𐌹𐌰", "𐌹𐌿𐌳𐌰𐌹𐌰𐍃", "", "", "Judea"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌰𐍃", "noun", "𐌹𐌿𐌳𐌰𐌹𐌰𐍃", "", "", "", "genitive of 𐌹𐌿𐌳𐌰𐌹𐌰"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐌰𐌽", "noun", "𐌹𐌿𐌳𐌰𐌹𐌰𐌽", "", "", "", "accusative of 𐌹𐌿𐌳𐌰𐌹𐌰"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌲𐌰𐌹𐍉𐌽", "noun", "𐌻𐌰𐌹𐌲𐌰𐌹𐍉𐌽", "", "", "", "legion"]) + let v = native_list_append(v, ["𐌸𐍂𐌴𐌹𐌷𐍃𐌻", "noun", "𐌸𐍂𐌴𐌹𐌷𐍃𐌻𐌰", "𐌸𐍂𐌴𐌹𐌷𐍃𐌻𐌹𐍃", "𐌸𐍂𐌴𐌹𐌷𐍃𐌻𐌰", "", "difficulty distress"]) + let v = native_list_append(v, ["𐌸𐍂𐌴𐌹𐌷𐍃𐌻𐌰𐌼", "noun", "𐌸𐍂𐌴𐌹𐌷𐍃𐌻𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍄𐌰𐌻𐌴𐌹𐌸𐌰", "noun", "𐍄𐌰𐌻𐌴𐌹𐌸𐌰", "", "", "", "Talitha"]) + let v = native_list_append(v, ["𐍃𐌼𐍅𐍂𐌽", "noun", "𐍃𐌼𐍅𐍂𐌽𐌰", "𐍃𐌼𐍅𐍂𐌽𐌹𐍃", "𐍃𐌼𐍅𐍂𐌽𐌰", "", "myrrh"]) + let v = native_list_append(v, ["𐍃𐌼𐍅𐍂𐌽𐌰", "noun", "𐍃𐌼𐍅𐍂𐌽𐌰", "", "", "", "inflection of 𐍃𐌼𐍅𐍂𐌽"]) + let v = native_list_append(v, ["𐍃𐌽𐌰𐌲𐌰𐌽", "noun", "𐍃𐌽𐌰𐌲𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍂𐌰𐌱𐌱𐌰𐌿𐌽𐌴𐌹", "noun", "𐍂𐌰𐌱𐌱𐌰𐌿𐌽𐌴𐌹", "", "", "", "rabbi"]) + let v = native_list_append(v, ["𐌼𐌰𐌼𐌼𐍉", "noun", "𐌼𐌰𐌼𐌼𐍉𐌽𐍃", "𐌼𐌰𐌼𐌼𐍉𐌽𐍃", "𐌼𐌰𐌼𐌼𐍉𐌽", "", "flesh"]) + let v = native_list_append(v, ["𐌼𐌰𐌼𐌼𐍉𐌽𐍃", "noun", "𐌼𐌰𐌼𐌼𐍉𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌼𐌼𐍉"]) + let v = native_list_append(v, ["𐌼𐌰𐌼𐌼𐍉𐌽𐌰", "noun", "𐌼𐌰𐌼𐌼𐍉𐌽𐌰𐌽𐍃", "𐌼𐌰𐌼𐌼𐍉𐌽𐌹𐌽𐍃", "𐌼𐌰𐌼𐌼𐍉𐌽𐌹𐌽", "", "Mammon"]) + let v = native_list_append(v, ["𐌼𐌰𐌼𐌼𐍉𐌽𐌹𐌽", "noun", "𐌼𐌰𐌼𐌼𐍉𐌽𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌼𐌴𐍄", "noun", "𐌿𐍃𐌼𐌴𐍄𐌰", "𐌿𐍃𐌼𐌴𐍄𐌹𐍃", "𐌿𐍃𐌼𐌴𐍄𐌰", "", "behaviour conduct way"]) + let v = native_list_append(v, ["𐌿𐍃𐌼𐌴𐍄𐌰", "noun", "𐌿𐍃𐌼𐌴𐍄𐌰", "", "", "", "inflection of 𐌿𐍃𐌼𐌴𐍄"]) + let v = native_list_append(v, ["𐌿𐍃𐌼𐌴𐍄𐌹𐍃", "noun", "𐌿𐍃𐌼𐌴𐍄𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌼𐌴𐍄𐌴", "noun", "𐌿𐍃𐌼𐌴𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌳𐍃", "noun", "𐌲𐌰𐌺𐌿𐌽𐌳𐌴𐌹𐍃", "𐌲𐌰𐌺𐌿𐌽𐌳𐌰𐌹𐍃", "𐌲𐌰𐌺𐌿𐌽𐌳𐌰𐌹", "", "persuasion compliance"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌸𐍃", "noun", "𐌲𐌰𐌺𐌿𐌽𐌸𐌴𐌹𐍃", "𐌲𐌰𐌺𐌿𐌽𐌸𐌰𐌹𐍃", "𐌲𐌰𐌺𐌿𐌽𐌸𐌰𐌹", "", "Semantically unclear used"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌸𐌰𐌹", "noun", "𐌲𐌰𐌺𐌿𐌽𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐍃𐍄𐍃", "noun", "𐌲𐌰𐌺𐌿𐍃𐍄𐌴𐌹𐍃", "𐌲𐌰𐌺𐌿𐍃𐍄𐌰𐌹𐍃", "𐌲𐌰𐌺𐌿𐍃𐍄𐌰𐌹", "", "trial test"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐍃𐍄", "noun", "𐌲𐌰𐌺𐌿𐍃𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌹𐌽𐌸𐌹", "noun", "𐌲𐌰𐌼𐌹𐌽𐌸𐌾𐌰", "𐌲𐌰𐌼𐌹𐌽𐌸𐌾𐌹𐍃", "𐌲𐌰𐌼𐌹𐌽𐌸𐌾𐌰", "", "memory remembrance"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌻𐌴𐌹𐌺𐌰𐌽", "noun", "𐌼𐌰𐌽𐌽𐌻𐌴𐌹𐌺𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌹𐍃𐍄𐌰", "noun", "𐌲𐌰𐌻𐌰𐌹𐍃𐍄𐌰𐌽𐍃", "𐌲𐌰𐌻𐌰𐌹𐍃𐍄𐌹𐌽𐍃", "𐌲𐌰𐌻𐌰𐌹𐍃𐍄𐌹𐌽", "", "follower"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌹𐍃𐍄𐌰𐌽𐍃", "noun", "𐌲𐌰𐌻𐌰𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌻𐌰𐍄𐌴𐌹", "noun", "𐌻𐌰𐍄𐌴𐌹𐌽𐍃", "𐌻𐌰𐍄𐌴𐌹𐌽𐍃", "𐌻𐌰𐍄𐌴𐌹𐌽", "", "idleness sloth laxness"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌹", "noun", "𐌲𐌰𐌻𐌴𐌹𐌺𐌾𐌰", "𐌲𐌰𐌻𐌴𐌹𐌺𐌾𐌹𐍃", "𐌲𐌰𐌻𐌴𐌹𐌺𐌾𐌰", "", "likeness"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌾𐌰", "noun", "𐌲𐌰𐌻𐌴𐌹𐌺𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐌹"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍂𐌰𐌿", "noun", "𐌷𐌰𐌹𐍂𐌰𐌿", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐍃𐌽𐌿𐌽𐍃", "noun", "𐌰𐌿𐌷𐍃𐌽𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌸𐌿𐌻𐌰𐌹𐌽𐍃", "noun", "𐌸𐌿𐌻𐌰𐌹𐌽𐌴𐌹𐍃", "𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹", "", "patience"]) + let v = native_list_append(v, ["𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "noun", "𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐌻𐌰𐌹𐌽𐌴", "noun", "𐌸𐌿𐌻𐌰𐌹𐌽𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹", "noun", "𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐌻𐌰𐌹𐌽", "noun", "𐌸𐌿𐌻𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐍂𐌴𐌺𐍉𐍃", "noun", "𐌺𐍂𐌴𐌺𐍉𐍃", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["𐌺𐍂𐌴𐌺𐌹𐍃", "noun", "𐌺𐍂𐌴𐌺𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌴𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼", "noun", "𐌱𐌴𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼", "𐌱𐌴𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼𐌹𐍃", "", "", "Bethlehem a city"]) + let v = native_list_append(v, ["𐌹𐌰𐌹𐍂𐌹𐌺𐍉𐌽", "noun", "𐌹𐌰𐌹𐍂𐌹𐌺𐍉𐌽", "", "", "", "dative of 𐌹𐌰𐌹𐍂𐌴𐌹𐌺𐍉"]) + let v = native_list_append(v, ["𐌷𐍂𐌿𐌺", "noun", "𐌷𐍂𐌿𐌺", "", "", "", "crow cry of"]) + let v = native_list_append(v, ["𐌿𐍃𐌸𐌿𐌻𐌰𐌹𐌽𐍃", "noun", "𐌿𐍃𐌸𐌿𐌻𐌰𐌹𐌽𐌴𐌹𐍃", "𐌿𐍃𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "𐌿𐍃𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹", "", "patience"]) + let v = native_list_append(v, ["𐌿𐍃𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹", "noun", "𐌿𐍃𐌸𐌿𐌻𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌿𐍃", "noun", "𐌻𐌰𐌲𐌾𐌿𐍃", "𐌻𐌰𐌲𐌰𐌿𐍃", "𐌻𐌰𐌲𐌰𐌿", "", "sea ocean"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌽𐍃", "noun", "𐍃𐍉𐌺𐌽𐌴𐌹𐍃", "𐍃𐍉𐌺𐌽𐌰𐌹𐍃", "𐍃𐍉𐌺𐌽𐌰𐌹", "", "question point of"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌽𐌹𐌽𐍃", "noun", "𐍃𐍉𐌺𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌽𐌹𐌼", "noun", "𐍃𐍉𐌺𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐌰𐌽", "noun", "𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐍉𐌽𐌽𐌰", "noun", "𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐍉𐌽𐌽𐌰", "", "", "", "misspelling of 𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐍉𐌽𐌰"]) + let v = native_list_append(v, ["𐍅𐌹𐌶𐌳𐌹𐌻𐌰", "noun", "𐍅𐌹𐌶𐌳𐌹𐌻𐌰𐌽𐍃", "𐍅𐌹𐌶𐌳𐌹𐌻𐌹𐌽𐍃", "𐍅𐌹𐌶𐌳𐌹𐌻𐌹𐌽", "", "woad"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌱𐌰𐌽", "noun", "𐌺𐌰𐌿𐍂𐌱𐌰𐌽", "", "", "", "temple gift offering"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌱𐌰𐌿𐌽𐌰𐌽", "noun", "𐌺𐌰𐌿𐍂𐌱𐌰𐌿𐌽𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌱𐌰𐌿𐌽𐌰𐍃", "noun", "𐌺𐌰𐌿𐍂𐌱𐌰𐌿𐌽𐌰𐍃", "", "", "", "temple treasury"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌸", "noun", "𐌷𐌿𐌽𐌸", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌷𐌿𐌽𐌸𐍃", "noun", "𐌷𐌿𐌽𐌸𐍉𐍃", "𐌷𐌿𐌽𐌸𐌹𐍃", "𐌷𐌿𐌽𐌸𐌰", "", "captivity capture"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌱𐌰𐍄𐌰𐌿𐍃", "noun", "𐍃𐌰𐌱𐌱𐌰𐍄𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌿𐌻𐍃", "noun", "𐍃𐌻𐌰𐌷𐌿𐌻𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌴𐌹", "noun", "𐍃𐍅𐌹𐌽𐌸𐌴𐌹", "𐍃𐍅𐌹𐌽𐌸𐌴𐌹𐌽𐍃", "𐍃𐍅𐌹𐌽𐌸𐌴𐌹𐌽", "", "strength power"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌴𐌹𐌽", "noun", "𐍃𐍅𐌹𐌽𐌸𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌴𐌹𐌽𐍃", "noun", "𐍃𐍅𐌹𐌽𐌸𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌸𐌹𐍃", "noun", "𐍃𐌺𐌰𐌸𐌹𐍃", "𐍃𐌺𐌰𐌸𐌹𐌶𐌹𐍃", "𐍃𐌺𐌰𐌸𐌹𐌶𐌰", "", "wrongdoing"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐌹𐌸𐌴𐌹", "noun", "𐍃𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "𐍃𐌻𐌴𐌹𐌸𐌴𐌹𐌽𐍃", "𐍃𐌻𐌴𐌹𐌸𐌴𐌹𐌽", "", "danger peril"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐌴𐌹", "noun", "𐌲𐌰𐍂𐌹𐌿𐌳𐌴𐌹𐌽𐍃", "𐌲𐌰𐍂𐌹𐌿𐌳𐌴𐌹𐌽𐍃", "𐌲𐌰𐍂𐌹𐌿𐌳𐌴𐌹𐌽", "", "modesty"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐌴𐌹𐌽", "noun", "𐌲𐌰𐍂𐌹𐌿𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐌹", "noun", "𐌲𐌰𐍂𐌹𐌿𐌳𐌹", "𐌲𐌰𐍂𐌹𐌿𐌳𐌾𐌹𐍃", "𐌲𐌰𐍂𐌹𐌿𐌳𐌾𐌰", "", "dignity respectability"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐌾𐌰", "noun", "𐌲𐌰𐍂𐌹𐌿𐌳𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐌾𐌰", "noun", "𐌷𐌻𐌹𐌾𐌰𐌽𐍃", "𐌷𐌻𐌹𐌾𐌹𐌽𐍃", "𐌷𐌻𐌹𐌾𐌹𐌽", "", "booth tent"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐌾𐌰𐌽𐍃", "noun", "𐌷𐌻𐌹𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌹𐍉𐌷", "noun", "𐌹𐍉𐌷", "", "", "", "abbreviation of 𐌹𐍉𐌷𐌰𐌽𐌽𐌴𐍃"]) + let v = native_list_append(v, ["𐌻𐌿𐌺𐌰𐍃", "noun", "𐌻𐌿𐌺𐌰𐍃", "", "", "", "Luke the Biblical"]) + let v = native_list_append(v, ["𐌻𐌿𐌺", "noun", "𐌻𐌿𐌺", "", "", "", "abbreviation of 𐌻𐌿𐌺𐌰𐍃"]) + let v = native_list_append(v, ["𐌻𐌿𐌺𐌰𐌽", "noun", "𐌻𐌿𐌺𐌰𐌽", "", "", "", "accusative of 𐌻𐌿𐌺𐌰𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽𐍃", "noun", "𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽𐌴𐌹𐍃", "𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽𐌰𐌹", "", "rest respite"]) + let v = native_list_append(v, ["𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽", "noun", "𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌰𐌿𐍂𐌰", "noun", "𐌲𐌰𐍄𐌰𐌿𐍂𐌰𐌽𐍃", "𐌲𐌰𐍄𐌰𐌿𐍂𐌹𐌽𐍃", "𐌲𐌰𐍄𐌰𐌿𐍂𐌹𐌽", "", "tear rent"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹", "noun", "𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹", "𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹𐌽𐍃", "𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹𐌽", "", "diligence vigor zeal"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹𐌽", "noun", "𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐌳𐌰𐌿𐌳𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌰𐌿𐌷𐌰", "noun", "𐌲𐌰𐌽𐌰𐌿𐌷𐌰", "𐌲𐌰𐌽𐌰𐌿𐌷𐌹𐌽𐍃", "𐌲𐌰𐌽𐌰𐌿𐌷𐌹𐌽", "", "sufficiency"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐌰𐌿𐌷𐌹𐌽", "noun", "𐌲𐌰𐌽𐌰𐌿𐌷𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌾𐍉", "noun", "𐌿𐍆𐌾𐍉𐌽𐍃", "𐌿𐍆𐌾𐍉𐌽𐍃", "𐌿𐍆𐌾𐍉𐌽", "", "superfluity"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌴𐌹", "noun", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌴𐌹𐌽𐍃", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌴𐌹𐌽𐍃", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌴𐌹𐌽", "", "deceit guile"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌴𐌹𐌽", "noun", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐌹𐌿𐌸", "noun", "𐌿𐌽𐌸𐌹𐌿𐌸𐌰", "𐌿𐌽𐌸𐌹𐌿𐌸𐌹𐍃", "𐌿𐌽𐌸𐌹𐌿𐌸𐌰", "", "evil"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐌹𐌿𐌸𐌰", "noun", "𐌿𐌽𐌸𐌹𐌿𐌸𐌰", "", "", "", "inflection of 𐌿𐌽𐌸𐌹𐌿𐌸"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐌹𐌿𐌸𐌹𐍃", "noun", "𐌿𐌽𐌸𐌹𐌿𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌰𐌹", "noun", "𐌻𐌹𐌿𐌷𐌰𐌳𐌰𐌹", "", "", "", "misspelling of 𐌻𐌹𐌿𐌷𐌰𐌳𐌰"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌰𐌹𐌽𐍃", "noun", "𐌻𐌴𐌹𐌺𐌰𐌹𐌽𐌴𐌹𐍃", "𐌻𐌴𐌹𐌺𐌰𐌹𐌽𐌰𐌹𐍃", "𐌻𐌴𐌹𐌺𐌰𐌹𐌽𐌰𐌹", "", "approval"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌰𐌹𐌽𐌰𐌹", "noun", "𐌻𐌴𐌹𐌺𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌰𐌹𐌽", "noun", "𐌻𐌴𐌹𐌺𐌰𐌹𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌰𐌹𐌽𐍃", "noun", "𐍅𐌰𐌽𐌰𐌹𐌽𐌴𐌹𐍃", "𐍅𐌰𐌽𐌰𐌹𐌽𐌰𐌹𐍃", "𐍅𐌰𐌽𐌰𐌹𐌽𐌰𐌹", "", "waning diminishing"]) + let v = native_list_append(v, ["𐍅𐍉𐌺𐌰𐌹𐌽𐍃", "noun", "𐍅𐍉𐌺𐌰𐌹𐌽𐌴𐌹𐍃", "𐍅𐍉𐌺𐌰𐌹𐌽𐌰𐌹𐍃", "𐍅𐍉𐌺𐌰𐌹𐌽𐌰𐌹", "", "wakefulness watch"]) + let v = native_list_append(v, ["𐍅𐍉𐌺𐌰𐌹𐌽𐌹𐌼", "noun", "𐍅𐍉𐌺𐌰𐌹𐌽𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌹", "noun", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌾𐌰", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌾𐌹𐍃", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌾𐌰", "", "highest height"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌾𐌰𐌼", "noun", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌰𐌹𐌻𐌻𐌹𐌿𐍃", "noun", "𐍃𐌰𐌱𐌰𐌹𐌻𐌻𐌹𐌿𐍃", "𐍃𐌰𐌱𐌰𐌹𐌻𐌻𐌹𐌰𐌿𐍃", "𐍃𐌰𐌱𐌰𐌹𐌻𐌻𐌹𐌰𐌿", "", "Sabellius an early"]) + let v = native_list_append(v, ["𐍃𐌰𐌱𐌰𐌹𐌻𐌻𐌹𐌰𐌿𐍃", "noun", "𐍃𐌰𐌱𐌰𐌹𐌻𐌻𐌹𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌺𐌰𐌿𐌳𐌴𐌼𐌿𐍃", "noun", "𐌽𐌹𐌺𐌰𐌿𐌳𐌴𐌼𐌿𐍃", "𐌽𐌹𐌺𐌰𐌿𐌳𐌴𐌼𐌰𐌿𐍃", "𐌽𐌹𐌺𐌰𐌿𐌳𐌴𐌼𐌰𐌿", "", "Nicodemus a Pharisee"]) + let v = native_list_append(v, ["𐌽𐌴𐌺𐌰𐌿𐌳𐌴𐌼𐌿𐍃", "noun", "𐌽𐌴𐌺𐌰𐌿𐌳𐌴𐌼𐌿𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌽𐌴𐌹𐌺𐌰𐌿𐌳𐌰𐌹𐌼𐌰𐌿", "noun", "𐌽𐌴𐌹𐌺𐌰𐌿𐌳𐌰𐌹𐌼𐌰𐌿", "", "", "", "dative of 𐌽𐌹𐌺𐌰𐌿𐌳𐌴𐌼𐌿𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌺𐌰𐌹𐌻𐌻𐌹𐌿𐍃", "noun", "𐌼𐌰𐍂𐌺𐌰𐌹𐌻𐌻𐌹𐌿𐍃", "𐌼𐌰𐍂𐌺𐌰𐌹𐌻𐌻𐌹𐌰𐌿𐍃", "𐌼𐌰𐍂𐌺𐌰𐌹𐌻𐌻𐌹𐌰𐌿", "", "Marcellus of Ancyra"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌺𐌰𐌹𐌻𐌻𐌹𐌰𐌿𐍃", "noun", "𐌼𐌰𐍂𐌺𐌰𐌹𐌻𐌻𐌹𐌰𐌿𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌴𐌹", "noun", "𐌱𐌹𐍃𐍄𐌿𐌲𐌵𐌴𐌹", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌹", "noun", "𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌾𐌰", "𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌾𐌹𐍃", "𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌾𐌰", "", "fellow servant"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌾𐌰", "noun", "𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐍃𐌺𐌰𐌻𐌺𐌹"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌿𐍃", "noun", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌴𐌹𐍃", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌰𐌿𐍃", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌰𐌿", "", "a Thessalonian"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌴", "noun", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌿𐌼", "noun", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰", "noun", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹𐍃", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹", "", "Thessalonica"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹", "noun", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌹𐌺𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌺𐌰𐌹𐌿𐌼", "noun", "𐌸𐌰𐌹𐍃𐍃𐌰𐌻𐌰𐌿𐌽𐌴𐌺𐌰𐌹𐌿𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌿𐌺𐌰", "noun", "𐌿𐍃𐌻𐌿𐌺𐌰", "", "", "", "inflection of 𐌿𐍃𐌻𐌿𐌺"]) + let v = native_list_append(v, ["𐌿𐍃𐌻𐌿𐌺", "noun", "𐌿𐍃𐌻𐌿𐌺𐌰", "𐌿𐍃𐌻𐌿𐌺𐌹𐍃", "𐌿𐍃𐌻𐌿𐌺𐌰", "", "opening"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐍉", "noun", "𐌸𐌰𐌷𐍉", "𐌸𐌰𐌷𐍉𐌽𐍃", "𐌸𐌰𐌷𐍉𐌽", "", "clay"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐍉𐌽𐍃", "noun", "𐌸𐌰𐌷𐍉𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌾𐌰", "noun", "𐌿𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌾𐌰𐌽𐍃", "𐌿𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌾𐌹𐌽𐍃", "𐌿𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌾𐌹𐌽", "", "the lowest or"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌾𐌹𐌽", "noun", "𐌿𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌾𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌺𐍃", "noun", "𐍃𐍄𐌰𐌺𐌴𐌹𐍃", "𐍃𐍄𐌰𐌺𐌹𐍃", "𐍃𐍄𐌰𐌺𐌰", "", "stigma wound mark"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌺𐌹𐌽𐍃", "noun", "𐍃𐍄𐌰𐌺𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐌹𐍃", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴𐌹", "noun", "𐍃𐍅𐌽𐌰𐌲𐍉𐌲𐌴𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐍂𐌴𐌺𐌴𐌹", "noun", "𐍅𐍂𐌴𐌺𐌴𐌹𐌽𐍃", "𐍅𐍂𐌴𐌺𐌴𐌹𐌽𐍃", "𐍅𐍂𐌴𐌺𐌴𐌹𐌽", "", "persecution"]) + let v = native_list_append(v, ["𐍅𐍂𐌴𐌺𐌴𐌹𐌼", "noun", "𐍅𐍂𐌴𐌺𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍃𐌺", "noun", "𐌲𐌰𐌸𐍂𐌰𐍃𐌺𐌰", "𐌲𐌰𐌸𐍂𐌰𐍃𐌺𐌹𐍃", "𐌲𐌰𐌸𐍂𐌰𐍃𐌺𐌰", "", "threshing floor"]) + let v = native_list_append(v, ["𐍆𐌹𐌼 𐍄𐌹𐌲𐌾𐌿𐍃", "noun", "𐍆𐌹𐌼 𐍄𐌹𐌲𐌾𐌿𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍄𐍅𐌰 𐌷𐌿𐌽𐌳𐌰", "noun", "𐍄𐍅𐌰 𐌷𐌿𐌽𐌳𐌰", "", "", "", "two hundred cardinal"]) + let v = native_list_append(v, ["𐌸𐍂𐌹𐌾𐌰 𐌷𐌿𐌽𐌳𐌰", "noun", "𐌸𐍂𐌹𐌾𐌰 𐌷𐌿𐌽𐌳𐌰", "", "", "", "three hundred cardinal"]) + let v = native_list_append(v, ["𐍆𐌹𐌼𐍆 𐌷𐌿𐌽𐌳𐌰", "noun", "𐍆𐌹𐌼𐍆 𐌷𐌿𐌽𐌳𐌰", "", "", "", "five hundred cardinal"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌽 𐌷𐌿𐌽𐌳𐌰", "noun", "𐌽𐌹𐌿𐌽 𐌷𐌿𐌽𐌳𐌰", "", "", "", "nine hundred cardinal"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐌰𐌹", "noun", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍄𐍅𐍉𐍃 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "noun", "𐍄𐍅𐍉𐍃 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "", "", "", "two thousand cardinal"]) + let v = native_list_append(v, ["𐍆𐌹𐌳𐍅𐍉𐍂 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "noun", "𐍆𐌹𐌳𐍅𐍉𐍂 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "", "", "", "four thousand cardinal"]) + let v = native_list_append(v, ["𐍆𐌹𐌼𐍆 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "noun", "𐍆𐌹𐌼𐍆 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "", "", "", "five thousand cardinal"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "noun", "𐍄𐌰𐌹𐌷𐌿𐌽 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉𐍃", "", "", "", "ten thousand cardinal"]) + let v = native_list_append(v, ["𐍄𐍅𐌰𐌹 𐍄𐌹𐌲𐌾𐌿𐍃 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉", "noun", "𐍄𐍅𐌰𐌹 𐍄𐌹𐌲𐌾𐌿𐍃 𐌸𐌿𐍃𐌿𐌽𐌳𐌾𐍉", "", "", "", "twenty thousand cardinal"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "noun", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐍃", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐍃", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "righteousness justice"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐍃", "noun", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍄𐍃", "noun", "𐌿𐍃𐍅𐌰𐌿𐍂𐍄𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌹𐌰", "noun", "𐌼𐌰𐍂𐌹𐌰", "𐌼𐌰𐍂𐌹𐌹𐌽𐍃", "𐌼𐌰𐍂𐌹𐌹𐌽", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐍉𐌷𐌹", "noun", "𐌲𐌰𐍃𐌺𐍉𐌷𐌹", "𐌲𐌰𐍃𐌺𐍉𐌷𐌴𐌹𐍃", "𐌲𐌰𐍃𐌺𐍉𐌷𐌾𐌰", "", "shoes sandals"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌹𐌽𐍃", "noun", "𐌻𐌰𐌹𐍃𐌴𐌹𐌽𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐌽𐍃", "noun", "𐌼𐌰𐌲𐌿𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌰", "noun", "𐌼𐌰𐌽𐌰𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌰𐌽𐍃", "𐌼𐌰𐌽𐌰𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌹𐌽𐍃", "𐌼𐌰𐌽𐌰𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌹𐌽", "", "manslayer homicide murderer"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌰𐌲𐌺𐌹", "noun", "𐌲𐌰𐌸𐌰𐌲𐌺𐌾𐌰", "𐌲𐌰𐌸𐌰𐌲𐌺𐌾𐌹𐍃", "𐌲𐌰𐌸𐌰𐌲𐌺𐌾𐌰", "", "care deliberation"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌰𐌲𐌺𐌾𐌰", "noun", "𐌲𐌰𐌸𐌰𐌲𐌺𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐍃", "noun", "𐌸𐌴𐌹𐌷𐍃𐌰", "𐌸𐌴𐌹𐌷𐍃𐌹𐍃", "𐌸𐌴𐌹𐌷𐍃𐌰", "", "occasion"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐍃𐌰", "noun", "𐌸𐌴𐌹𐌷𐍃𐌰", "", "", "", "inflection of 𐌸𐌴𐌹𐌷𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐍃", "noun", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌷𐌴𐌹𐍅", "noun", "𐌷𐌴𐌹𐍅𐌰", "𐌷𐌴𐌹𐍅𐌹𐍃", "𐌷𐌴𐌹𐍅𐌰", "", "marriage"]) + let v = native_list_append(v, ["𐌿𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "noun", "𐌿𐍃𐍄𐌰𐍃𐍃𐌰𐌹", "", "", "", "misspelling of 𐌿𐍃𐍃𐍄𐌰𐍃𐍃𐌰𐌹"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌸𐌹", "noun", "𐌿𐌽𐌺𐌿𐌽𐌸𐌾𐌰", "𐌿𐌽𐌺𐌿𐌽𐌸𐌾𐌹𐍃", "𐌿𐌽𐌺𐌿𐌽𐌸𐌾𐌰", "", "ignorance"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍄𐌰", "noun", "𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐍃", "𐌿𐌽𐍅𐌹𐍄𐌹𐌽𐍃", "𐌿𐌽𐍅𐌹𐍄𐌹𐌽", "", "ignorant person fool"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐍃", "noun", "𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐌿𐍃", "noun", "𐌰𐌽𐍃𐌾𐌿𐍃", "𐌰𐌽𐍃𐌰𐌿𐍃", "𐌰𐌽𐍃𐌰𐌿", "", "god or demigod"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹", "noun", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌽𐍃", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌽𐍃", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌽", "", "fasting"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌽", "noun", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌼", "noun", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌴𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌹𐌻𐌹", "noun", "𐌿𐌽𐌷𐌰𐌹𐌻𐌾𐌰", "𐌿𐌽𐌷𐌰𐌹𐌻𐌾𐌹𐍃", "𐌿𐌽𐌷𐌰𐌹𐌻𐌾𐌰", "", "illness weakness infirmity"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌹𐌻𐌾𐌰", "noun", "𐌿𐌽𐌷𐌰𐌹𐌻𐌾𐌰", "", "", "", "inflection of 𐌿𐌽𐌷𐌰𐌹𐌻𐌹"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌽𐌿𐌴𐌻", "noun", "𐌹𐌽𐌼𐌰𐌽𐌿𐌴𐌻", "", "", "", "Immanuel"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐍃𐌴𐌹", "noun", "𐌷𐌻𐌰𐍃𐌴𐌹", "𐌷𐌻𐌰𐍃𐌴𐌹𐌽𐍃", "𐌷𐌻𐌰𐍃𐌴𐌹𐌽", "", "cheerfulness"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐍃𐌴𐌹𐌽", "noun", "𐌷𐌻𐌰𐍃𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐌰𐌷𐌴𐌹", "noun", "𐌹𐌽𐌰𐌷𐌴𐌹𐌽𐍃", "𐌹𐌽𐌰𐌷𐌴𐌹𐌽𐍃", "𐌹𐌽𐌰𐌷𐌴𐌹𐌽", "", "sobriety soundness of"]) + let v = native_list_append(v, ["𐌹𐌽𐌰𐌷𐌴𐌹𐌽", "noun", "𐌹𐌽𐌰𐌷𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌹𐌽𐌰𐌷𐌴𐌹𐌽𐍃", "noun", "𐌹𐌽𐌰𐌷𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌹𐌽𐌰𐌷𐌴𐌹𐌽"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰", "noun", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌹𐌽𐍃", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌹𐌽", "", "a member of"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "noun", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌼", "noun", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌹𐌽𐌺𐌿𐌽𐌾𐌰", "noun", "𐌹𐌽𐌺𐌿𐌽𐌾𐌰𐌽𐍃", "𐌹𐌽𐌺𐌿𐌽𐌾𐌹𐌽𐍃", "𐌹𐌽𐌺𐌿𐌽𐌾𐌹𐌽", "", "countryman"]) + let v = native_list_append(v, ["𐌹𐌽𐌺𐌿𐌽𐌾𐌰𐌼", "noun", "𐌹𐌽𐌺𐌿𐌽𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌽𐌰𐌲𐌻𐍃", "noun", "𐌽𐌰𐌲𐌻𐍉𐍃", "𐌽𐌰𐌲𐌻𐌹𐍃", "𐌽𐌰𐌲𐌻𐌰", "", "nail peg used"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐍃𐍄𐍃", "noun", "𐌿𐍂𐍂𐌹𐍃𐍄𐌴𐌹𐍃", "𐌿𐍂𐍂𐌹𐍃𐍄𐌰𐌹𐍃", "𐌿𐍂𐍂𐌹𐍃𐍄𐌰𐌹", "", "rising or getting"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐍃𐍄", "noun", "𐌿𐍂𐍂𐌹𐍃𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹", "noun", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽𐍃", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "vain jangling"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "noun", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌹", "noun", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌴𐌹𐍃", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "", "vain babbling"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "noun", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "", "", "", "inflection of 𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌹"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐍃", "noun", "𐌲𐌰𐌽𐌴", "", "𐌲𐌰𐌽", "", "goose"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌳𐌾𐍉", "noun", "𐌼𐌹𐍄𐌰𐌳𐌾𐍉𐌽𐍃", "𐌼𐌹𐍄𐌰𐌳𐌾𐍉𐌽𐍃", "𐌼𐌹𐍄𐌰𐌳𐌾𐍉𐌽", "", "measure"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌳𐌾𐍉𐌽", "noun", "𐌼𐌹𐍄𐌰𐌳𐌾𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌽𐌳𐌰", "noun", "𐍅𐌿𐌽𐌳𐍉𐍃", "𐍅𐌿𐌽𐌳𐍉𐍃", "𐍅𐌿𐌽𐌳𐌰𐌹", "", "wound"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍉", "noun", "𐌻𐌰𐌹𐍃𐍉𐌽𐍃", "𐌻𐌰𐌹𐍃𐍉𐌽𐍃", "𐌻𐌰𐌹𐍃𐍉𐌽", "", "doctrine teaching"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐍄𐍃", "noun", "𐍃𐌺𐌰𐌿𐍄𐍉𐍃", "𐍃𐌺𐌰𐌿𐍄𐌹𐍃", "𐍃𐌺𐌰𐌿𐍄𐌰", "", "hem fringe"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐍄𐌰", "noun", "𐍃𐌺𐌰𐌿𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌴𐌹", "noun", "𐍅𐌰𐍂𐌴𐌹𐌽𐍃", "𐍅𐌰𐍂𐌴𐌹𐌽𐍃", "𐍅𐌰𐍂𐌴𐌹𐌽", "", "wariness wiliness"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌴𐌹𐌽", "noun", "𐍅𐌰𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐍃", "noun", "𐍅𐍂𐌰𐌺𐍉𐍃", "𐍅𐍂𐌰𐌺𐌹𐍃", "𐍅𐍂𐌰𐌺𐌰", "", "persecutor punisher"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐌾𐍉", "noun", "𐍅𐌰𐌹𐌷𐌾𐍉𐌽𐍃", "𐍅𐌰𐌹𐌷𐌾𐍉𐌽𐍃", "𐍅𐌰𐌹𐌷𐌾𐍉𐌽", "", "fight quarrel battle"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷𐌾𐍉𐌽𐍃", "noun", "𐍅𐌰𐌹𐌷𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐍅𐌰𐌹𐌷𐌾𐍉"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌲𐌴𐌹𐌽", "noun", "𐌿𐌽𐌰𐌲𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌲𐌴𐌹", "noun", "𐌿𐌽𐌰𐌲𐌴𐌹", "𐌿𐌽𐌰𐌲𐌴𐌹𐌽𐍃", "𐌿𐌽𐌰𐌲𐌴𐌹𐌽", "", "fearlessness"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌹𐌷𐌰", "noun", "𐍃𐍅𐌰𐌹𐌷𐌰𐌽𐍃", "𐍃𐍅𐌰𐌹𐌷𐌹𐌽𐍃", "𐍃𐍅𐌰𐌹𐌷𐌹𐌽", "", "a Swede"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐍃", "noun", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐍃", "𐌿𐌽𐌼𐌰𐌷𐍄𐌰𐌹𐍃", "𐌿𐌽𐌼𐌰𐌷𐍄𐌰𐌹", "", "inability incapacity"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌹𐌽𐍃", "noun", "𐌿𐌽𐌼𐌰𐌷𐍄𐌹𐌽𐍃", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌹𐌼", "noun", "𐌿𐌽𐌼𐌰𐌷𐍄𐌹𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄", "noun", "𐌿𐌽𐌼𐌰𐌷𐍄", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌹", "noun", "𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌾𐌰", "𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌾𐌹𐍃", "𐌿𐍆𐌰𐍂𐌼𐌴𐌻𐌾𐌰", "", "inscription superscription"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌴𐌹", "noun", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐍃", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌴𐌹𐌽𐍃", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌴𐌹𐌽", "", "overfullness overabundance surfeit"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌴𐌹𐌽", "noun", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌲𐌿𐌳𐌾𐌰", "noun", "𐌿𐍆𐌰𐍂𐌲𐌿𐌳𐌾𐌰𐌽𐍃", "𐌿𐍆𐌰𐍂𐌲𐌿𐌳𐌾𐌹𐌽𐍃", "𐌿𐍆𐌰𐍂𐌲𐌿𐌳𐌾𐌹𐌽", "", "high priest"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌲𐌿𐌳𐌾𐌰𐌼", "noun", "𐌿𐍆𐌰𐍂𐌲𐌿𐌳𐌾𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐍄𐌴𐌹𐍅𐍃", "noun", "𐍄𐌴𐌹𐍅𐍉𐍃", "𐍄𐌴𐌹𐍅𐌹𐍃", "𐍄𐌴𐌹𐍅𐌰", "", "The meaning of"]) + let v = native_list_append(v, ["𐌻𐌿𐌱𐍉", "noun", "𐌻𐌿𐌱𐍉𐌽𐍃", "𐌻𐌿𐌱𐍉𐌽𐍃", "𐌻𐌿𐌱𐍉𐌽", "", "love"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹", "noun", "𐌿𐌽𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐍃", "𐌿𐌽𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽𐍃", "𐌿𐌽𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽", "", "unrighteousness"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽", "noun", "𐌿𐌽𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌹𐍃", "noun", "𐌸𐌹𐌿𐌸𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹", "noun", "𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹", "𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹𐌽𐍃", "𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹𐌽", "", "anger wrath ire"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹𐌽", "noun", "𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹𐌽𐍃", "noun", "𐌸𐍅𐌰𐌹𐍂𐌷𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌹𐌽𐍃", "noun", "𐌸𐌰𐌷𐌰𐌹𐌽𐌴𐌹𐍃", "𐌸𐌰𐌷𐌰𐌹𐌽𐌰𐌹𐍃", "𐌸𐌰𐌷𐌰𐌹𐌽𐌰𐌹", "", "silence muteness"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌹𐌽𐌰𐌹", "noun", "𐌸𐌰𐌷𐌰𐌹𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐍅𐌹𐌶𐌽𐍃", "noun", "𐍅𐌰𐌹𐌻𐌰𐍅𐌹𐌶𐌽𐌴𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐍅𐌹𐌶𐌽𐌰𐌹𐍃", "𐍅𐌰𐌹𐌻𐌰𐍅𐌹𐌶𐌽𐌰𐌹", "", "nourishment good food"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐍅𐌹𐌶𐌽𐌰𐌹", "noun", "𐍅𐌰𐌹𐌻𐌰𐍅𐌹𐌶𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐍂𐌿𐍃𐍄𐍃", "noun", "𐌿𐍃𐌳𐍂𐌿𐍃𐍄𐌴𐌹𐍃", "𐌿𐍃𐌳𐍂𐌿𐍃𐍄𐌰𐌹𐍃", "𐌿𐍃𐌳𐍂𐌿𐍃𐍄𐌰𐌹", "", "a rough road"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐍂𐌿𐍃𐍄𐌴𐌹𐍃", "noun", "𐌿𐍃𐌳𐍂𐌿𐍃𐍄𐌴𐌹𐍃", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐍂𐌴𐌹", "noun", "𐌿𐌽𐍅𐌴𐍂𐌴𐌹𐌽𐍃", "𐌿𐌽𐍅𐌴𐍂𐌴𐌹𐌽𐍃", "𐌿𐌽𐍅𐌴𐍂𐌴𐌹𐌽", "", "unwillingness displeasedness"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐍂𐌴𐌹𐌽", "noun", "𐌿𐌽𐍅𐌴𐍂𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄", "noun", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌹𐍃", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "", "uncircumcision"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "noun", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌼𐌼𐌴𐌹", "noun", "𐌿𐌽𐍅𐌰𐌼𐌼𐌴𐌹", "𐌿𐌽𐍅𐌰𐌼𐌼𐌴𐌹𐌽𐍃", "𐌿𐌽𐍅𐌰𐌼𐌼𐌴𐌹𐌽", "", "spotlessness"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌼𐌼𐌴𐌹𐌽𐍃", "noun", "𐌿𐌽𐍅𐌰𐌼𐌼𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌻𐌷", "noun", "𐌸𐍅𐌰𐌻𐌷", "", "", "", "misspelling of 𐌸𐍅𐌰𐌷𐌻"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍃", "noun", "𐌲𐌰𐌹𐌶𐍉𐍃", "𐌲𐌰𐌹𐌶𐌹𐍃", "𐌲𐌰𐌹𐌶𐌰", "", "spear"]) + let v = native_list_append(v, ["𐌸𐌴𐍅𐌹𐍃", "noun", "𐌸𐌴𐍅𐌹𐍃𐌰", "𐌸𐌴𐍅𐌹𐍃𐌹𐍃", "𐌸𐌴𐍅𐌹𐍃𐌰", "", "servant"]) + let v = native_list_append(v, ["𐌸𐌴𐍅𐌹𐍃𐌰", "noun", "𐌸𐌴𐍅𐌹𐍃𐌰", "", "", "", "inflection of 𐌸𐌴𐍅𐌹𐍃"]) + let v = native_list_append(v, ["𐌸𐌴𐍅𐌹𐍃𐌰𐌼", "noun", "𐌸𐌴𐍅𐌹𐍃𐌰𐌼", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["𐌷𐍂𐌹𐌲𐌲𐍃", "noun", "𐌷𐍂𐌹𐌲𐌲𐍉𐍃", "𐌷𐍂𐌹𐌲𐌲𐌹𐍃", "𐌷𐍂𐌹𐌲𐌲𐌰", "", "ring circle"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱𐌿𐍃", "noun", "𐌹𐌰𐌺𐍉𐌱𐌿𐍃", "𐌹𐌰𐌺𐍉𐌱𐌰𐌿𐍃", "𐌹𐌰𐌺𐍉𐌱𐌰𐌿", "", "Jacob the Biblical"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱", "noun", "𐌹𐌰𐌺𐍉𐌱", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱𐌹𐍃", "noun", "𐌹𐌰𐌺𐍉𐌱𐌹𐍃", "", "", "", "genitive of 𐌹𐌰𐌺𐍉𐌱𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱𐌰", "noun", "𐌹𐌰𐌺𐍉𐌱𐌰", "", "", "", "dative of 𐌹𐌰𐌺𐍉𐌱𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱𐌰𐌿𐍃", "noun", "𐌹𐌰𐌺𐍉𐌱𐌰𐌿𐍃", "", "", "", "genitive of 𐌹𐌰𐌺𐍉𐌱𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱𐌰𐌿", "noun", "𐌹𐌰𐌺𐍉𐌱𐌰𐌿", "", "", "", "dative of 𐌹𐌰𐌺𐍉𐌱𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌰𐌺𐍉𐌱𐌿", "noun", "𐌹𐌰𐌺𐍉𐌱𐌿", "", "", "", "accusative of 𐌹𐌰𐌺𐍉𐌱𐌿𐍃"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐍂𐍃", "noun", "𐍅𐌿𐌻𐌸𐍂𐌴𐌹𐍃", "𐍅𐌿𐌻𐌸𐍂𐌰𐌹𐍃", "𐍅𐌿𐌻𐌸𐍂𐌰𐌹", "", "significance importance meaning"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐍂𐌰𐌹𐍃", "noun", "𐍅𐌿𐌻𐌸𐍂𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐍂𐌹𐍃", "noun", "𐍅𐌿𐌻𐌸𐍂𐌹𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐍃", "noun", "𐍃𐌰𐌻𐌴𐌹𐍃", "𐍃𐌰𐌻𐌹𐍃", "𐍃𐌰𐌻𐌰", "", "room hall"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌰𐍂𐌸𐍉", "noun", "𐌿𐍃𐍆𐌰𐍂𐌸𐍉𐌽𐍃", "𐌿𐍃𐍆𐌰𐍂𐌸𐍉𐌽𐍃", "𐌿𐍃𐍆𐌰𐍂𐌸𐍉𐌽", "", "departure? evacuation?"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌰𐍂𐌸𐍉𐌽", "noun", "𐌿𐍃𐍆𐌰𐍂𐌸𐍉𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌴𐌹𐌽", "noun", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌴𐌹", "noun", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌴𐌹𐌽𐍃", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌴𐌹𐌽𐍃", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌴𐌹𐌽", "", "childishness"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐍃𐌰𐍄𐌹𐌸𐍃", "noun", "𐌽𐌹𐌿𐌾𐌰𐍃𐌰𐍄𐌹𐌳𐌰𐌹", "𐌽𐌹𐌿𐌾𐌰𐍃𐌰𐍄𐌹𐌳𐌹𐍃", "𐌽𐌹𐌿𐌾𐌰𐍃𐌰𐍄𐌹𐌳𐌰𐌼𐌼𐌰", "", "novice"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐍃𐌰𐍄𐌹𐌳𐌰𐌽𐌰", "noun", "𐌽𐌹𐌿𐌾𐌰𐍃𐌰𐍄𐌹𐌳𐌰𐌽𐌰", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐍃", "noun", "𐌿𐌽𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐍃", "𐌿𐌽𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "𐌿𐌽𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐌰𐌹", "", "lack of self-control"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "noun", "𐌿𐌽𐌲𐌰𐌷𐍉𐌱𐌰𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌴𐌹", "noun", "𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌴𐌹", "𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌴𐌹𐌽", "", "profligacy unbridledness"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌴𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐍂𐍉𐌽", "noun", "𐌰𐌷𐌰𐍂𐍉𐌽", "𐌰𐌷𐌰𐍂𐍉𐌽𐍃", "", "", "Aaron the Biblical"]) + let v = native_list_append(v, ["𐌰𐌷𐌰𐍂𐍉𐌽𐍃", "noun", "𐌰𐌷𐌰𐍂𐍉𐌽𐍃", "", "", "", "genitive of 𐌰𐌷𐌰𐍂𐍉𐌽"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌹𐍃𐍃𐌹", "noun", "𐌿𐍃𐍅𐌹𐍃𐍃𐌾𐌰", "𐌿𐍃𐍅𐌹𐍃𐍃𐌾𐌹𐍃", "𐌿𐍃𐍅𐌹𐍃𐍃𐌾𐌰", "", "rootlessness disconnectedness looseness"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌹𐍃𐍃𐌾𐌰", "noun", "𐌿𐍃𐍅𐌹𐍃𐍃𐌾𐌰", "", "", "", "inflection of 𐌿𐍃𐍅𐌹𐍃𐍃𐌹"]) + let v = native_list_append(v, ["𐌰𐌱𐌹𐌰𐌸𐌰𐍂", "noun", "𐌰𐌱𐌹𐌰𐌸𐌰𐍂", "", "𐌰𐌱𐌹𐌰𐌸𐌰𐍂𐌰", "", "Abiathar Biblical character"]) + let v = native_list_append(v, ["𐌳𐌰𐍅𐌴𐌹𐌳𐌹𐍃", "noun", "𐌳𐌰𐍅𐌴𐌹𐌳𐌹𐍃", "", "", "", "genitive of 𐌳𐌰𐍅𐌴𐌹𐌳"]) + let v = native_list_append(v, ["𐌰𐌱𐌹𐌰𐌸𐌰𐍂𐌰", "noun", "𐌰𐌱𐌹𐌰𐌸𐌰𐍂𐌰", "", "", "", "dative of 𐌰𐌱𐌹𐌰𐌸𐌰𐍂"]) + let v = native_list_append(v, ["𐌰𐌳𐌰𐌼", "noun", "𐌰𐌳𐌰𐌼", "𐌰𐌳𐌰𐌼𐌹𐍃", "𐌰𐌳𐌰𐌼𐌰", "", "Adam the Biblical"]) + let v = native_list_append(v, ["𐌰𐌳𐌰𐌼𐌰", "noun", "𐌰𐌳𐌰𐌼𐌰", "", "", "", "dative of 𐌰𐌳𐌰𐌼"]) + let v = native_list_append(v, ["𐌰𐌳𐌰𐌼𐌹𐍃", "noun", "𐌰𐌳𐌰𐌼𐌹𐍃", "", "", "", "genitive of 𐌰𐌳𐌰𐌼"]) + let v = native_list_append(v, ["𐌰𐌳𐌳𐌴𐌹", "noun", "𐌰𐌳𐌳𐌴𐌹", "𐌰𐌳𐌳𐌴𐌹𐌽𐍃", "", "", "Addi the Biblical"]) + let v = native_list_append(v, ["𐌰𐌳𐌳𐌴𐌹𐌽𐍃", "noun", "𐌰𐌳𐌳𐌴𐌹𐌽𐍃", "", "", "", "genitive of 𐌰𐌳𐌳𐌴𐌹"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌸𐌰", "noun", "𐍃𐍄𐌰𐌸𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐍄𐍉𐌾𐌹𐍃", "noun", "𐌿𐌱𐌹𐌻𐍄𐍉𐌾𐍉𐍃", "𐌿𐌱𐌹𐌻𐍄𐍉𐌾𐌴", "𐌿𐌱𐌹𐌻𐍄𐍉𐌾𐌰", "", "malefactor evildoer"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌼𐌰𐌿𐌳𐌴𐌹", "noun", "𐌿𐍆𐌰𐍂𐌼𐌰𐌿𐌳𐌴𐌹", "𐌿𐍆𐌰𐍂𐌼𐌰𐌿𐌳𐌴𐌹𐌽𐍃", "𐌿𐍆𐌰𐍂𐌼𐌰𐌿𐌳𐌴𐌹𐌽", "", "forgetfulness oblivion"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌼𐌰𐌿𐌳𐌴𐌹𐌽", "noun", "𐌿𐍆𐌰𐍂𐌼𐌰𐌿𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹", "noun", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌽𐍃", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌽", "", "patience long-suffering"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌽", "noun", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌽", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹", "noun", "𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹𐌽", "", "bickering incessant disputing"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "noun", "𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌿𐍃𐌱𐌰𐌻𐌸𐌴𐌹"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐍃", "noun", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐍃", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌰𐌹𐍃", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌰𐌹", "", "longsuffering"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌰𐌹", "noun", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹", "noun", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽𐍃", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌽", "", "bad reputation"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌴 𐌲𐌰𐍂𐌳𐌴𐌹", "noun", "𐌸𐌰𐌽𐌴 𐌲𐌰𐍂𐌳𐌴𐌹", "", "", "", "whatever house"]) + let v = native_list_append(v, ["𐌾𐌹𐌿𐌷𐍄", "noun", "𐌾𐌹𐌿𐌷𐍄𐌰", "𐌾𐌹𐌿𐌷𐍄𐌹𐍃", "𐌾𐌹𐌿𐌷𐍄𐌰", "", "yoked animal"]) + let v = native_list_append(v, ["𐌾𐌹𐌿𐌷𐍄𐌰", "noun", "𐌾𐌹𐌿𐌷𐍄𐌰", "", "", "", "inflection of 𐌾𐌹𐌿𐌷𐍄"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍀𐍃", "noun", "𐍃𐌺𐌰𐍀𐍉𐍃", "𐍃𐌺𐌰𐍀𐌹𐍃", "𐍃𐌺𐌰𐍀𐌰", "", "creator"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍀𐌰", "noun", "𐍃𐌺𐌰𐍀𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐌸𐌹𐍂𐌴𐌹𐌺𐍃", "noun", "𐌷𐍂𐍉𐌸𐌹𐍂𐌴𐌹𐌺𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌻𐌴𐍄", "noun", "𐍆𐌰𐌹𐍂𐌻𐌴𐍄𐌰", "𐍆𐌰𐌹𐍂𐌻𐌴𐍄𐌹𐍃", "𐍆𐌰𐌹𐍂𐌻𐌴𐍄𐌰", "", "abandonment"]) + let v = native_list_append(v, ["𐌹𐌰𐌴𐌹𐍂𐌿𐍃", "noun", "𐌹𐌰𐌴𐌹𐍂𐌿𐍃", "", "", "", "Jair a Biblical"]) + let v = native_list_append(v, ["𐌾𐌰𐌴𐌹𐍂𐌿𐍃", "noun", "𐌾𐌰𐌴𐌹𐍂𐌿𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌸𐌿𐌲𐌰𐌹𐍂𐌽𐍃", "noun", "𐍆𐍂𐌹𐌸𐌿𐌲𐌰𐌹𐍂𐌽𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰𐍆𐍂𐌹𐌸𐌿𐍃", "noun", "𐌲𐌿𐌳𐌰𐍆𐍂𐌹𐌸𐌿𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍄𐌴", "noun", "𐍅𐌹𐍃𐍄𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌺𐌾𐍉", "noun", "𐌺𐌰𐌻𐌺𐌾𐍉𐌽𐍃", "𐌺𐌰𐌻𐌺𐌾𐍉𐌽𐍃", "𐌺𐌰𐌻𐌺𐌾𐍉𐌽", "", "whore harlot"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌻𐍄𐌴𐌹𐌽𐍃", "noun", "𐌲𐌰𐌼𐌰𐌻𐍄𐌴𐌹𐌽𐍉𐍃", "𐌲𐌰𐌼𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "𐌲𐌰𐌼𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹", "", "melt dissolution"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "noun", "𐌲𐌰𐌼𐌰𐌻𐍄𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌽𐌹𐍃", "noun", "𐌻𐌰𐌿𐌽𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐍃𐌿𐌵𐌽𐌹𐍃", "noun", "𐍃𐌿𐌵𐌽𐌹𐍃", "", "", "", "stomach genitive singular"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌹𐌽", "noun", "𐌲𐌿𐌼𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐍃𐍅𐌼𐌰𐌹𐍉𐌽", "noun", "𐍃𐍅𐌼𐌰𐌹𐍉𐌽", "𐍃𐍅𐌼𐌰𐌹𐍉𐌽𐍃", "", "", "Simeon"]) + let v = native_list_append(v, ["𐍃𐍅𐌼𐌰𐌹𐍉𐌽𐍃", "noun", "𐍃𐍅𐌼𐌰𐌹𐍉𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌴𐌸𐌻𐌰𐌷𐌰𐌹𐌼", "noun", "𐌱𐌴𐌸𐌻𐌰𐌷𐌰𐌹𐌼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼", "noun", "𐌱𐌹𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼𐌹𐍃", "noun", "𐌱𐌹𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼𐌹𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌱𐌴𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼𐌹𐍃", "noun", "𐌱𐌴𐌸𐌻𐌰𐌹𐌷𐌰𐌹𐌼𐌹𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌶𐌰𐌺𐌰𐍂𐌹𐌰𐍃", "noun", "𐌶𐌰𐌺𐌰𐍂𐌹𐌰𐍃", "𐌶𐌰𐌺𐌰𐍂𐌹𐌹𐌽𐍃", "", "", "Zacharias a Hebrew"]) + let v = native_list_append(v, ["𐌶𐌰𐌺𐌰𐍂𐌹𐌰", "noun", "𐌶𐌰𐌺𐌰𐍂𐌹𐌰", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["𐌶𐌰𐌺𐌰𐍂𐌹𐌰𐌽", "noun", "𐌶𐌰𐌺𐌰𐍂𐌹𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌶𐌰𐍇𐌰𐍂𐌹𐌹𐌽𐍃", "noun", "𐌶𐌰𐍇𐌰𐍂𐌹𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌶𐌰𐌺𐌰𐍂𐌹𐌹𐌽𐍃", "noun", "𐌶𐌰𐌺𐌰𐍂𐌹𐌹𐌽𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌶𐌰𐍇𐌰𐍂𐌹𐌰𐍃", "noun", "𐌶𐌰𐍇𐌰𐍂𐌹𐌰𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌱𐌴𐌹𐌻𐌴𐌽𐌹", "noun", "𐌰𐌱𐌴𐌹𐌻𐌴𐌽𐌹", "𐌰𐌱𐌴𐌹𐌻𐌴𐌽𐌴𐍃", "", "", "Abilene a region"]) + let v = native_list_append(v, ["𐌰𐌱𐌴𐌹𐌻𐌴𐌽𐌴𐍃", "noun", "𐌰𐌱𐌴𐌹𐌻𐌴𐌽𐌴𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌸𐌰𐌹𐌿𐍃", "noun", "𐌼𐌰𐍄𐌸𐌰𐌹𐌿𐍃", "𐌼𐌰𐍄𐌸𐌰𐌹𐌰𐌿𐍃", "𐌼𐌰𐍄𐌸𐌰𐌹𐌰𐌿", "", "Matthew the Biblical"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌸𐌰𐌹𐌿", "noun", "𐌼𐌰𐍄𐌸𐌰𐌹𐌿", "", "", "", "accusative of 𐌼𐌰𐍄𐌸𐌰𐌹𐌿𐍃"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌰𐍂𐌴𐌹𐌺𐍃", "noun", "𐌸𐌹𐌿𐌳𐌰𐍂𐌴𐌹𐌺𐍃", "", "", "", "a male given"]) + let v = native_list_append(v, ["ᚷᚢᛏᚨᚾᛁ", "noun", "ᚷᚢᛏᚨᚾᛁ", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌴𐍄𐌾𐌰", "noun", "𐌴𐍄𐌾𐌰𐌽𐍃", "𐌴𐍄𐌾𐌹𐌽𐍃", "𐌴𐍄𐌾𐌹𐌽", "", "eater"]) + let v = native_list_append(v, ["𐌴𐌹𐌺𐌰𐌿𐌽𐌹𐍉", "noun", "𐌴𐌹𐌺𐌰𐌿𐌽𐌹𐍉", "𐌴𐌹𐌺𐌰𐌿𐌽𐌹𐍉𐌽𐍃", "𐌴𐌹𐌺𐌰𐌿𐌽𐌹𐍉𐌽", "", "Konya a city"]) + let v = native_list_append(v, ["𐌴𐌹𐌺𐌰𐌿𐌽𐌹𐍉𐌽", "noun", "𐌴𐌹𐌺𐌰𐌿𐌽𐌹𐍉𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌰𐌽𐍄𐌹𐌰𐌿𐌺𐌹𐌰", "noun", "𐌰𐌽𐍄𐌹𐌰𐌿𐌺𐌹𐌰", "𐌰𐌽𐍄𐌹𐌰𐌿𐌺𐌹𐍉𐍃", "𐌰𐌽𐍄𐌹𐌰𐌿𐌺𐌹𐌰𐌹", "", "Antakya a city"]) + let v = native_list_append(v, ["𐌰𐌽𐍄𐌹𐌰𐌿𐌺𐌹𐌰𐌹", "noun", "𐌰𐌽𐍄𐌹𐌰𐌿𐌺𐌹𐌰𐌹", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌺𐌰𐌱𐌰𐌻𐌻𐌰𐍂𐌴𐌹𐍃", "noun", "𐌺𐌰𐌱𐌰𐌻𐌻𐌰𐍂𐌾𐍉𐍃", "𐌺𐌰𐌱𐌰𐌻𐌻𐌰𐍂𐌾𐌴", "𐌺𐌰𐌱𐌰𐌻𐌻𐌰𐍂𐌾𐌰", "", "horseman rider hostler?"]) + let v = native_list_append(v, ["𐌺𐌰𐌱𐌰𐌻𐌻𐌰𐍂𐌾𐌰", "noun", "𐌺𐌰𐌱𐌰𐌻𐌻𐌰𐍂𐌾𐌰", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐍃", "noun", "𐌹𐌿𐌳𐌰𐍃", "𐌹𐌿𐌳𐌹𐌽𐍃", "𐌹𐌿𐌳𐌹𐌽", "", "Judas Iscariot disciple"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌹𐌽𐍃", "noun", "𐌹𐌿𐌳𐌹𐌽𐍃", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌹𐌽", "noun", "𐌹𐌿𐌳𐌹𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌽", "noun", "𐌹𐌿𐌳𐌰𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌹𐍃𐌰𐌺", "noun", "𐌹𐍃𐌰𐌺", "𐌹𐍃𐌰𐌺𐌹𐍃", "𐌹𐍃𐌰𐌺𐌰", "", "Isaac the Biblical"]) + let v = native_list_append(v, ["𐌹𐍃𐌰𐌺𐌹𐍃", "noun", "𐌹𐍃𐌰𐌺𐌹𐍃", "", "", "", "genitive of 𐌹𐍃𐌰𐌺"]) + let v = native_list_append(v, ["𐌹𐍃𐌰𐌺𐌰", "noun", "𐌹𐍃𐌰𐌺𐌰", "", "", "", "dative of 𐌹𐍃𐌰𐌺"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌰𐌹𐍃", "noun", "𐍆𐌰𐍂𐌰𐌹𐍃", "𐍆𐌰𐍂𐌰𐌹𐌶𐌹𐍃", "", "", "Perez the Biblical"]) + let v = native_list_append(v, ["𐍆𐌰𐍂𐌰𐌹𐌶𐌹𐍃", "noun", "𐍆𐌰𐍂𐌰𐌹𐌶𐌹𐍃", "", "", "", "genitive of 𐍆𐌰𐍂𐌰𐌹𐍃"]) + let v = native_list_append(v, ["𐌹𐍉𐍃𐌴𐍃", "noun", "𐌹𐍉𐍃𐌴𐍃", "𐌹𐍉𐍃𐌴𐌶𐌹𐍃", "", "", "Joses Biblical character"]) + let v = native_list_append(v, ["𐌹𐍉𐍃𐌴𐌶𐌹𐍃", "noun", "𐌹𐍉𐍃𐌴𐌶𐌹𐍃", "", "", "", "genitive of 𐌹𐍉𐍃𐌴𐍃"]) + let v = native_list_append(v, ["𐍃𐌺𐍅𐌸𐌿𐍃", "noun", "𐍃𐌺𐍅𐌸𐌾𐌿𐍃", "𐍃𐌺𐍅𐌸𐌰𐌿𐍃", "𐍃𐌺𐍅𐌸𐌰𐌿", "", "Scythian"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐌻𐌰𐌿𐍃𐍃𐌰𐌹𐌿𐍃", "noun", "𐌺𐌰𐌿𐌻𐌰𐌿𐍃𐍃𐌰𐌹𐌴𐌹𐍃", "𐌺𐌰𐌿𐌻𐌰𐌿𐍃𐍃𐌰𐌹𐌰𐌿𐍃", "𐌺𐌰𐌿𐌻𐌰𐌿𐍃𐍃𐌰𐌹𐌰𐌿", "", "Colossian"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌸𐌰𐍂𐌴𐌹𐌺𐌴𐌹𐍃", "noun", "𐍆𐍂𐌹𐌸𐌰𐍂𐌴𐌹𐌺𐌴𐌹𐍃", "", "𐍆𐍂𐌹𐌸𐌰𐍂𐌴𐌹𐌺𐌾𐌰", "", "a male given"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐍄𐍅𐍂", "noun", "𐌼𐌰𐍂𐍄𐍅𐍂𐌴", "", "", "", "martyr"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐍄𐍅𐍂𐌴", "noun", "𐌼𐌰𐍂𐍄𐍅𐍂𐌴", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐍅𐍄𐍂𐌴", "noun", "𐌼𐌰𐍂𐍅𐍄𐍂𐌴", "", "", "", "misspelling of 𐌼𐌰𐍂𐍄𐍅𐍂𐌴"]) + let v = native_list_append(v, ["𐌰𐍂𐌰𐌼", "noun", "𐌰𐍂𐌰𐌼", "𐌰𐍂𐌰𐌼𐌹𐍃", "", "", "Aram the Biblical"]) + let v = native_list_append(v, ["𐌰𐌼𐌴𐌹𐌽𐌰𐌳𐌰𐌱", "noun", "𐌰𐌼𐌴𐌹𐌽𐌰𐌳𐌰𐌱", "𐌰𐌼𐌴𐌹𐌽𐌰𐌳𐌰𐌱𐌹𐍃", "", "", "Amminadab the Biblical"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐌰𐍃𐍃𐍉𐌽", "noun", "𐌽𐌰𐌷𐌰𐍃𐍃𐍉𐌽", "𐌽𐌰𐌷𐌰𐍃𐍃𐍉𐌽𐌹𐍃", "", "", "Nahshon the Biblical"]) + let v = native_list_append(v, ["𐌽𐌰𐌷𐌰𐍃𐍃𐍉𐌽𐌹𐍃", "noun", "𐌽𐌰𐌷𐌰𐍃𐍃𐍉𐌽𐌹𐍃", "", "", "", "genitive of 𐌽𐌰𐌷𐌰𐍃𐍃𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐌼𐌴𐌹𐌽𐌰𐌳𐌰𐌱𐌹𐍃", "noun", "𐌰𐌼𐌴𐌹𐌽𐌰𐌳𐌰𐌱𐌹𐍃", "", "", "", "genitive of 𐌰𐌼𐌴𐌹𐌽𐌰𐌳𐌰𐌱"]) + let v = native_list_append(v, ["𐌰𐍂𐌰𐌼𐌹𐍃", "noun", "𐌰𐍂𐌰𐌼𐌹𐍃", "", "", "", "genitive of 𐌰𐍂𐌰𐌼"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌼𐌰𐍄𐌹𐌰", "noun", "𐌳𐌰𐌻𐌼𐌰𐍄𐌹𐌰", "", "𐌳𐌰𐌻𐌼𐌰𐍄𐌹𐌰𐌹", "", "Dalmatia"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌼𐌰𐍄𐌹𐌰𐌹", "noun", "𐌳𐌰𐌻𐌼𐌰𐍄𐌹𐌰𐌹", "", "", "", "dative of 𐌳𐌰𐌻𐌼𐌰𐍄𐌹𐌰"]) + let v = native_list_append(v, ["𐌰𐌱𐌹𐌰", "noun", "𐌰𐌱𐌹𐌰", "𐌰𐌱𐌹𐌾𐌹𐌽𐍃", "", "", "Abijah Biblical character"]) + let v = native_list_append(v, ["𐌰𐌱𐌹𐌾𐌹𐌽𐍃", "noun", "𐌰𐌱𐌹𐌾𐌹𐌽𐍃", "", "", "", "genitive of 𐌰𐌱𐌹𐌰"]) + let v = native_list_append(v, ["𐌰𐌳𐍉𐌽𐌴𐌹𐌺𐌰𐌼", "noun", "𐌰𐌳𐍉𐌽𐌴𐌹𐌺𐌰𐌼", "", "𐌰𐌳𐍉𐌽𐌴𐌹𐌺𐌰𐌼𐌹𐍃", "", "Adonikam Biblical character"]) + let v = native_list_append(v, ["𐌰𐌳𐍉𐌽𐌴𐌹𐌺𐌰𐌼𐌹𐍃", "noun", "𐌰𐌳𐍉𐌽𐌴𐌹𐌺𐌰𐌼𐌹𐍃", "", "", "", "genitive of 𐌰𐌳𐍉𐌽𐌴𐌹𐌺𐌰𐌼"]) + let v = native_list_append(v, ["𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌿𐍃", "noun", "𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌿𐍃", "𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌰𐌿𐍃", "", "", "Artaxerxes Persian king"]) + let v = native_list_append(v, ["𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌰𐌿𐍃", "noun", "𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌰𐌿𐍃", "", "", "", "genitive of 𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌿𐍃"]) + let v = native_list_append(v, ["𐌰𐍂𐍄𐌰𐍂𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌰𐌿𐍃", "noun", "𐌰𐍂𐍄𐌰𐍂𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌰𐌿𐍃", "", "", "", "misspelling of 𐌰𐍂𐍄𐌰𐌺𐍃𐌰𐌹𐍂𐌺𐍃𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌰𐍃𐍄𐌿𐍃", "noun", "𐌰𐌹𐍂𐌰𐍃𐍄𐌿𐍃", "", "", "", "Erastus Biblical character"]) + let v = native_list_append(v, ["𐌰𐍂𐌰𐌱𐌹𐌰", "noun", "𐌰𐍂𐌰𐌱𐌹𐌰", "", "", "", "a peninsula of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍄𐌰𐌹", "noun", "𐍅𐌰𐌿𐍂𐍄𐌰𐌹", "", "", "", "expected dative singular"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐍄", "noun", "𐌱𐍂𐌿𐍄𐌰", "𐌱𐍂𐌿𐍄𐌹𐍃", "𐌱𐍂𐌿𐍄𐌰", "", "The meaning of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌽", "verb", "𐌼𐌰𐌲", "𐌼𐌰𐌷𐍄𐌰", "𐌼𐌰𐌷𐍄𐍃", "", "to be able"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐍃", "verb", "frijōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐍄𐌰𐌽", "verb", "𐌹𐍄𐌰", "𐌴𐍄", "𐌹𐍄𐌰𐌽𐍃", "", "to eat"]) + let v = native_list_append(v, ["𐌹𐍃𐍄", "verb", "ist", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽", "verb", "𐌹𐌼", "𐍅𐌰𐍃", "𐍅𐌹𐍃𐌰𐌽𐍃", "", "to be"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽", "verb", "𐌵𐌹𐌼𐌰", "𐌵𐌰𐌼", "𐌵𐌿𐌼𐌰𐌽𐍃", "", "to come"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌽", "verb", "𐍆𐌰𐍃𐍄𐌰", "𐍆𐌰𐍃𐍄𐌰𐌹𐌳𐌰", "𐍆𐌰𐍃𐍄𐌰𐌹𐌸𐍃", "", "to keep to"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽", "verb", "𐌱𐌰𐌹𐍂𐌰", "𐌱𐌰𐍂", "𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "", "to bear to"]) + let v = native_list_append(v, ["𐌻𐌴𐌺𐌹𐌽𐍉𐌽", "verb", "𐌻𐌴𐌺𐌹𐌽𐍉", "𐌻𐌴𐌺𐌹𐌽𐍉𐌳𐌰", "𐌻𐌴𐌺𐌹𐌽𐍉𐌸𐍃", "", "to heal"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐍃", "verb", "fijands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌰𐌽", "verb", "𐌺𐌰𐌽𐌽", "𐌺𐌿𐌽𐌸𐌰", "𐌺𐌿𐌽𐌸𐍃", "", "to know to"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌽", "verb", "𐍅𐌰𐌹𐍄", "𐍅𐌹𐍃𐍃𐌰", "𐍅𐌹𐍃𐍃", "", "to know"]) + let v = native_list_append(v, ["𐌳𐌿𐌲𐌰𐌽", "verb", "𐌳𐌰𐌿𐌲", "𐌳𐌰𐌿𐌷𐍄𐌰", "𐌳𐌰𐌿𐌷𐍄𐍃", "", "to be useful"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌰𐌽", "verb", "𐌸𐌰𐍂𐍆", "𐌸𐌰𐌿𐍂𐍆𐍄𐌰", "𐌸𐌰𐌿𐍂𐍆𐍄𐍃", "", "to need"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐌰𐌽", "verb", "𐌲𐌰𐌳𐌰𐍂𐍃", "𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐍄𐌰", "𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐍄𐍃", "", "to dare"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌰𐌽", "verb", "𐍃𐌺𐌰𐌻", "𐍃𐌺𐌿𐌻𐌳𐌰", "𐍃𐌺𐌿𐌻𐌳𐍃", "", "to owe to"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌰𐌽", "verb", "𐌼𐌰𐌽", "𐌼𐌿𐌽𐌳𐌰", "𐌼𐌿𐌽𐌳𐍃", "", "to reckon to"]) + let v = native_list_append(v, ["𐌹𐍃", "verb", "is", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽", "verb", "𐌳𐌰𐌿𐍀𐌾𐌰", "𐌳𐌰𐌿𐍀𐌹𐌳𐌰", "𐌳𐌰𐌿𐍀𐌹𐌸𐍃", "", "to dip immerse"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌲𐌰𐌲𐌲𐌰", "𐌹𐌳𐌳𐌾𐌰", "𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to go"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽", "verb", "𐍅𐌹𐌻𐌾𐌰𐌿", "𐍅𐌹𐌻𐌳𐌰", "", "", "to want"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌰𐌽", "verb", "𐍆𐍂𐌰𐌹𐌷𐌽𐌰", "𐍆𐍂𐌰𐌷", "𐍆𐍂𐌰𐌹𐌷𐌰𐌽𐍃", "", "to ask to"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐍃𐍄𐌰𐌽𐌳𐌰", "𐍃𐍄𐍉𐌸", "𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to stand"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌱𐌰𐌽", "verb", "𐌱𐌹𐌻𐌴𐌹𐌱𐌰", "𐌱𐌹𐌻𐌰𐌹𐍆", "𐌱𐌹𐌻𐌹𐌱𐌰𐌽𐍃", "", "to remain stay"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐌳𐌰𐌽", "verb", "𐌱𐌴𐌹𐌳𐌰", "𐌱𐌰𐌹𐌸", "𐌱𐌹𐌳𐌰𐌽𐍃", "", "to wait"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐍄𐌰𐌽", "verb", "𐌱𐌴𐌹𐍄𐌰", "𐌱𐌰𐌹𐍄", "𐌱𐌹𐍄𐌰𐌽𐍃", "", "to bite"]) + let v = native_list_append(v, ["𐌳𐍂𐌴𐌹𐌱𐌰𐌽", "verb", "𐌳𐍂𐌴𐌹𐌱𐌰", "𐌳𐍂𐌰𐌹𐍆", "𐌳𐍂𐌹𐌱𐌰𐌽𐍃", "", "to drive force"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐌽𐌰𐌽", "verb", "𐌲𐌰𐌰𐌹𐌽𐌰", "𐌲𐌰𐌰𐌹𐌽𐌰𐌹𐌳𐌰", "𐌲𐌰𐌰𐌹𐌽𐌰𐌹𐌸𐍃", "", "to separate to"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽", "verb", "𐌷𐌰𐌱𐌰", "𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to have"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌽𐌰𐌽", "verb", "𐍆𐌿𐌻𐌻𐌽𐌰", "𐍆𐌿𐌻𐌻𐌽𐍉𐌳𐌰", "", "", "to become full"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌽", "verb", "𐍅𐌰𐌹𐍂𐌸𐌰", "𐍅𐌰𐍂𐌸", "𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍃", "", "to become"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌽", "verb", "𐍂𐌹𐌽𐌽𐌰", "𐍂𐌰𐌽𐌽", "𐍂𐌿𐌽𐌽𐌰𐌽𐍃", "", "to run"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌾𐌰𐌽", "verb", "𐌼𐌴𐌻𐌾𐌰", "𐌼𐌴𐌻𐌹𐌳𐌰", "𐌼𐌴𐌻𐌹𐌸𐍃", "", "to write"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐍉𐌽", "verb", "𐍂𐌰𐌲𐌹𐌽𐍉", "𐍂𐌰𐌲𐌹𐌽𐍉𐌳𐌰", "𐍂𐌰𐌲𐌹𐌽𐍉𐌸𐍃", "", "to rule to"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐌷𐌰𐌹𐍄𐌰", "𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to address call"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌽", "verb", "𐌿𐍂𐍂𐌹𐌽𐌽𐌰", "𐌿𐍂𐍂𐌰𐌽𐌽", "𐌿𐍂𐍂𐌿𐌽𐌽𐌰𐌽𐍃", "", "to go forth"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌱𐌾𐌰𐌽", "verb", "𐌷𐌻𐌴𐌹𐌱𐌾𐌰", "𐌷𐌻𐌴𐌹𐌱𐌹𐌳𐌰", "𐌷𐌻𐌴𐌹𐌱𐌹𐌸𐍃", "", "to spare"]) + let v = native_list_append(v, ["𐌰𐌿𐌺", "verb", "auk", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌲𐌹𐌳𐌰𐌹", "verb", "afagidai", "", "", "", "inflection of 𐌰𐍆𐌰𐌲𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌲𐌹𐌸𐍃", "verb", "afagiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐍆𐌰𐌲𐌾𐌰", "𐌰𐍆𐌰𐌲𐌹𐌳𐌰", "𐌰𐍆𐌰𐌲𐌹𐌸𐍃", "", "to scare away"]) + let v = native_list_append(v, ["𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐌲𐌾𐌰", "𐌰𐌲𐌹𐌳𐌰", "𐌰𐌲𐌹𐌸𐍃", "", "to frighten to"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌲𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "afagjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌰𐌹𐌺", "verb", "afaiaik", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌺𐌰𐌽", "verb", "𐌰𐍆𐌰𐌹𐌺𐌰", "𐌰𐍆𐌰𐌹𐌰𐌹𐌺", "𐌰𐍆𐌰𐌹𐌺𐌰𐌽𐍃", "", "to renounce to"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌺𐌰", "verb", "afaika", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌺𐌹𐍃", "verb", "afaikis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌺𐌹𐌸", "verb", "afaikiþ", "", "", "", "inflection of 𐌰𐍆𐌰𐌹𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌺𐌰𐌼", "verb", "afaikam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐌺𐌰𐌹", "verb", "afaikai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐍂𐌶𐌾𐌰𐌽", "verb", "𐌰𐍆𐌰𐌹𐍂𐌶𐌾𐌰", "𐌰𐍆𐌰𐌹𐍂𐌶𐌹𐌳𐌰", "𐌰𐍆𐌰𐌹𐍂𐌶𐌹𐌸𐍃", "", "to misguide to"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌾𐌰𐌽", "verb", "𐌰𐌹𐍂𐌶𐌾𐌰", "𐌰𐌹𐍂𐌶𐌹𐌳𐌰", "𐌰𐌹𐍂𐌶𐌹𐌸𐍃", "", "to delude to"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐍂𐌶𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "afairzjaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐍂𐌶𐌹𐌳𐌰𐌹", "verb", "afairzidai", "", "", "", "inflection of 𐌰𐍆𐌰𐌹𐍂𐌶𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐌹𐍂𐌶𐌹𐌸𐍃", "verb", "afairziþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌴𐌹𐌸", "verb", "airzeiþ", "", "", "", "inflection of 𐌰𐌹𐍂𐌶𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌾𐌰𐌹", "verb", "airzjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌾𐌰𐌽𐌳𐍃", "verb", "airzjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "airzjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰", "𐌰𐍆𐌰𐍂𐌹𐌳𐌳𐌾𐌰", "𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to go after"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰", "verb", "afargagga", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌹𐌸", "verb", "afargaggiþ", "", "", "", "inflection of 𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽𐌳", "verb", "afargaggand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌽", "verb", "afariddjēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "afargaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "afargaggandeins", "", "", "", "inflection of 𐌰𐍆𐌰𐍂𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰", "verb", "baira", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌹𐍃", "verb", "bairis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌹𐌸", "verb", "bairiþ", "", "", "", "inflection of 𐌱𐌰𐌹𐍂𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽𐌳", "verb", "bairand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌹𐍃", "verb", "bairais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌹", "verb", "bairai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌹𐌼𐌰", "verb", "bairaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌹𐌸", "verb", "bairaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌹𐌽𐌰", "verb", "bairaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌰𐍂", "verb", "bar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌴𐍂𐌿𐌼", "verb", "bērum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌱𐌴𐍂𐌿𐌽", "verb", "bērun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐍃", "verb", "bairands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bairandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "bairandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌰𐌼", "verb", "bairandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌴𐌹", "verb", "bairandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐌳𐌹𐌸", "verb", "beidiþ", "", "", "", "inflection of 𐌱𐌴𐌹𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐌳𐌰𐌼", "verb", "beidam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐌳𐌰𐌹𐌼𐌰", "verb", "beidaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐌳𐌰𐌽𐌳𐍃", "verb", "beidands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "beidandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌿", "verb", "bidjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌰𐌽𐍃", "verb", "bidans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌰𐌽", "verb", "bidan", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌱𐌴𐌹𐍄𐌹𐌸", "verb", "beitiþ", "", "", "", "inflection of 𐌱𐌴𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰", "verb", "gagga", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌹𐍃", "verb", "gaggis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌹𐌸", "verb", "gaggiþ", "", "", "", "inflection of 𐌲𐌰𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐍄𐍃", "verb", "gaggats", "", "", "", "inflection of 𐌲𐌰𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌼", "verb", "gaggam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳", "verb", "gaggand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌹𐍃", "verb", "gaggais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌹", "verb", "gaggai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌹𐌼𐌰", "verb", "gaggaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌹𐌸", "verb", "gaggaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲", "verb", "gagg", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌹𐌳𐌳𐌾𐌰", "verb", "iddja", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌼", "verb", "iddjēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌸", "verb", "iddjēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌽", "verb", "iddjēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "gaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰", "verb", "gagganda", "", "", "", "weak nominative masculine"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌽", "verb", "gaggandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌹𐌽", "verb", "gaggandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gaggandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌼", "verb", "gaggandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹", "verb", "gaggandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍉", "verb", "gaggandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "gaggandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐍂𐍃", "verb", "gadars", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐌿𐌼", "verb", "gadaursum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐌾𐌰𐌿", "verb", "gadaursjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐍄𐌰", "verb", "gadaursta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌿𐍂𐍃𐍄𐌴𐌳𐌿𐌽", "verb", "gadaurstēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼", "verb", "hrainjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌹𐌼", "verb", "im", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌿", "verb", "siju", "", "", "", "first-person dual present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌿𐌼", "verb", "sijum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌿𐌸", "verb", "sijuþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌳", "verb", "sind", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌰𐌿", "verb", "sijau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌰𐌹𐍃", "verb", "sijais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌰𐌹", "verb", "sijai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌰𐌹𐌼𐌰", "verb", "sijaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌰𐌹𐌸", "verb", "sijaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍃𐌹𐌾𐌰𐌹𐌽𐌰", "verb", "sijaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌹𐌸", "verb", "wisiþ", "", "", "", "inflection of 𐍅𐌹𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐍃", "verb", "was", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐍃𐍄", "verb", "wast", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌿𐌼", "verb", "wēsum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌿𐌸", "verb", "wēsuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌿𐌽", "verb", "wēsun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌾𐌰𐌿", "verb", "wēsjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌴𐌹𐍃", "verb", "wēseis", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌹", "verb", "wēsi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌴𐌹𐌼𐌰", "verb", "wēseima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌴𐌹𐌸", "verb", "wēseiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐍃𐌴𐌹𐌽𐌰", "verb", "wēseina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐍃", "verb", "wisands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌰𐌽", "verb", "wisandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "wisandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌹𐌽", "verb", "wisandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wisandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌰𐌼", "verb", "wisandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌴𐌹", "verb", "wisandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "wisandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐌴𐌹𐌼", "verb", "wisandeim", "", "", "", "dative feminine plural"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐍉", "verb", "wisandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "wisandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰", "verb", "daupja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌴𐌹𐌸", "verb", "daupeiþ", "", "", "", "inflection of 𐌳𐌰𐌿𐍀𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳", "verb", "daupjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌳𐌰", "verb", "daupjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌰", "verb", "daupjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "daupjaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌹𐌳𐌰", "verb", "daupida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌹𐌳𐌴𐌳𐌾𐌰𐌿", "verb", "daupidēdjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐍃", "verb", "daupjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌹𐌸𐍃", "verb", "daupiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌹𐌳𐌰𐌹", "verb", "daupidai", "", "", "", "inflection of 𐌳𐌰𐌿𐍀𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌹𐌳𐌰𐌽𐌴", "verb", "daupidanē", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "daupjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "daupjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "daupjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌲", "verb", "daug", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌴𐌹𐌱𐌰𐌽𐌳", "verb", "dreiband", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰", "verb", "qima", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌹𐌸", "verb", "qimiþ", "", "", "", "inflection of 𐌵𐌹𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳", "verb", "qimand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌿", "verb", "qimau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌹", "verb", "qimai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌼", "verb", "qim", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌰", "verb", "qimanda", "", "", "", "weak nominative masculine"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐍃", "verb", "qimands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌵𐌰𐌼", "verb", "qam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌵𐌴𐌼𐌿𐌽", "verb", "qēmun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌵𐌴𐌼𐌾𐌰𐌿", "verb", "qēmjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌵𐌴𐌼𐌹", "verb", "qēmi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌵𐌴𐌼𐌴𐌹𐌽𐌰", "verb", "qēmeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌵𐌿𐌼𐌰𐌽𐍃", "verb", "qumans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌰𐌽", "verb", "qimandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌹𐌽", "verb", "qimandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "qimandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌰𐌼", "verb", "qimandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌴𐌹", "verb", "qimandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "qimandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌵𐌿𐌼𐌰𐌽𐌰𐌽𐌰", "verb", "qumanana", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌵𐌿𐌼𐌰𐌽𐌰", "verb", "qumana", "", "", "", "inflection of 𐌵𐌿𐌼𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰", "verb", "haba", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐍃", "verb", "habais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌸", "verb", "habaiþ", "", "", "", "inflection of 𐌷𐌰𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐍉𐍃", "verb", "habōs", "", "", "", "first-person dual present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌼", "verb", "habām", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳", "verb", "habānd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌰", "verb", "habānda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌿", "verb", "habau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹", "verb", "habai", "", "", "", "inflection of 𐌷𐌰𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌼𐌰", "verb", "habaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌽𐌰", "verb", "habaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "verb", "habaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "habaidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "habaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌴𐌹𐌼𐌰", "verb", "habaidēdeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "habaidēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "habaidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐍃", "verb", "habānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽", "verb", "habāndan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "habāndins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌹𐌽", "verb", "habāndin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "habāndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "habāndanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌼", "verb", "habāndam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌴𐌹", "verb", "habāndei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "habāndein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "habāndeins", "", "", "", "inflection of 𐌷𐌰𐌱𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌱𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "habāndōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰", "verb", "haita", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌹𐌸", "verb", "haitiþ", "", "", "", "inflection of 𐌷𐌰𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌹𐍃", "verb", "haitais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌹𐌽𐌰", "verb", "haitaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄", "verb", "hait", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌳𐌰", "verb", "haitada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌶𐌰", "verb", "haitaza", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "haitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐌰", "verb", "haitanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌹𐌳𐌰𐌿", "verb", "haitaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌹𐌶𐌰𐌿", "verb", "haitaizau", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "verb", "haihait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌷𐌰𐌹𐍄𐌿𐌽", "verb", "haihaitun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "verb", "haitans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐌹𐌽", "verb", "haitandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "haitandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌰𐌽𐌰", "verb", "haitanana", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌰", "verb", "haitana", "", "", "", "inflection of 𐌷𐌰𐌹𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌰𐌽", "verb", "haitanan", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌰𐌽𐌴", "verb", "haitananē", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐍄𐌰𐌽𐌰𐌼", "verb", "haitanam", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌱𐌹𐌳𐌰", "verb", "hleibida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌾𐌰𐌽", "verb", "𐍃𐌰𐍄𐌾𐌰", "𐍃𐌰𐍄𐌹𐌳𐌰", "𐍃𐌰𐍄𐌹𐌸𐍃", "", "to set"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌾𐌹𐌸", "verb", "satjiþ", "", "", "", "inflection of 𐍃𐌰𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌾𐌰𐌹𐌸", "verb", "satjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "satjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌹𐌳𐌰", "verb", "satida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "satidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌿𐌺𐌰𐌽", "verb", "𐌰𐌿𐌺𐌰", "𐌰𐌹𐌰𐌿𐌺", "𐌰𐌿𐌺𐌰𐌽𐍃", "", "to increase grow"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽", "verb", "𐌲𐌹𐌱𐌰", "𐌲𐌰𐍆", "𐌲𐌹𐌱𐌰𐌽𐍃", "", "to give"]) + let v = native_list_append(v, ["𐌰𐌿𐌺𐌰𐌽𐌳𐍃", "verb", "aukands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌿𐌺𐌰𐌽𐌳𐌴𐌹", "verb", "aukandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰", "verb", "giba", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌹𐌸", "verb", "gibiþ", "", "", "", "inflection of 𐌲𐌹𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐍉𐍃", "verb", "gibōs", "", "", "", "first-person dual present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌹", "verb", "gibai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐌳", "verb", "giband", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌿", "verb", "gibau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌹𐍃", "verb", "gibais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌹𐌼𐌰", "verb", "gibaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌹𐍆", "verb", "gif", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌳𐌰", "verb", "gibada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌹𐌳𐌰𐌿", "verb", "gibaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍆", "verb", "gaf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍄", "verb", "gaft", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌲𐌴𐌱𐌿𐌸", "verb", "gēbuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌴𐌱𐌿𐌽", "verb", "gēbun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌴𐌱𐌹", "verb", "gēbi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌴𐌱𐌴𐌹𐌼𐌰", "verb", "gēbeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌴𐌱𐌴𐌹𐌽𐌰", "verb", "gēbeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐌳𐍃", "verb", "gibands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐌳𐌰𐌽", "verb", "gibandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "gibandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gibandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐍃", "verb", "gibans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐌰", "verb", "gibana", "", "", "", "inflection of 𐌲𐌹𐌱𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐍉", "verb", "gibanō", "", "", "", "inflection of 𐌲𐌹𐌱𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌹𐌱𐌰𐌽𐍉𐌽", "verb", "gibanōn", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌹𐌸𐍃", "verb", "satiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌹𐌳𐌰𐌹", "verb", "satidai", "", "", "", "inflection of 𐍃𐌰𐍄𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐍄𐌹𐌸", "verb", "satiþ", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽", "verb", "𐌷𐌰𐌻𐌳𐌰", "𐌷𐌰𐌹𐌷𐌰𐌻𐌳", "𐌷𐌰𐌻𐌳𐌰𐌽𐍃", "", "to hold"]) + let v = native_list_append(v, ["𐍆𐌰𐌷𐌰𐌽", "verb", "𐍆𐌰𐌷𐌰", "𐍆𐌰𐌹𐍆𐌰𐌷", "𐍆𐌰𐌷𐌰𐌽𐍃", "", "to catch seize"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐌰𐌽", "verb", "𐍃𐌻𐌴𐍀𐌰", "𐍃𐌰𐌹𐍃𐌻𐌴𐍀", "𐍃𐌻𐌴𐍀𐌰𐌽𐍃", "", "to sleep"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌹𐌸", "verb", "haldiþ", "", "", "", "inflection of 𐌷𐌰𐌻𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽𐌳𐍃", "verb", "haldands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽𐌳𐌰𐌽", "verb", "haldandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "haldandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽𐍃", "verb", "haldans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌻𐌴𐍄𐌰𐌽", "verb", "𐌻𐌴𐍄𐌰", "𐌻𐌰𐌹𐌻𐍉𐍄", "𐌻𐌴𐍄𐌰𐌽𐍃", "", "to let"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽𐌰𐌹𐌶𐌴", "verb", "haldanaizē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌰𐌽𐌰", "verb", "haldana", "", "", "", "inflection of 𐌷𐌰𐌻𐌳𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄𐌰𐌽", "verb", "𐌲𐍂𐌴𐍄𐌰", "𐌲𐌰𐌹𐌲𐍂𐍉𐍄", "𐌲𐍂𐌴𐍄𐌰𐌽𐍃", "", "to weep cry"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍆𐌰𐌷", "verb", "faifāh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍂𐌴𐌳𐌰𐌽", "verb", "𐍂𐌴𐌳𐌰", "𐍂𐌰𐌹𐍂𐍉𐌸", "𐍂𐌴𐌳𐌰𐌽𐍃", "", "to advise"]) + let v = native_list_append(v, ["𐍄𐌴𐌺𐌰𐌽", "verb", "𐍄𐌴𐌺𐌰", "𐍄𐌰𐌹𐍄𐍉𐌺", "𐍄𐌴𐌺𐌰𐌽𐍃", "", "to touch"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐌹𐌸", "verb", "slēpiþ", "", "", "", "inflection of 𐍃𐌻𐌴𐍀𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐌰𐌽𐌳", "verb", "slēpand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐌰𐌹𐌼𐌰", "verb", "slēpaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍃𐌻𐌴𐍀", "verb", "saislēp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐌰𐌽", "verb", "𐍃𐌰𐌹𐌰", "𐍃𐌰𐌹𐍃𐍉", "𐍃𐌰𐌹𐌰𐌽𐍃", "", "to sow"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐍀𐌰𐌽𐌳𐍃", "verb", "slēpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌰𐌽", "verb", "𐍅𐌰𐌹𐌰", "𐍅𐌰𐌹𐍅𐍉", "𐍅𐌰𐌹𐌰𐌽𐍃", "", "to blow to"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌽", "verb", "𐌸𐌰𐌲𐌺𐌾𐌰", "𐌸𐌰𐌷𐍄𐌰", "𐌸𐌰𐌷𐍄𐍃", "", "to think"]) + let v = native_list_append(v, ["𐌺𐍂𐌹𐌿𐍃𐍄𐌰𐌽", "verb", "𐌺𐍂𐌹𐌿𐍃𐍄𐌰", "𐌺𐍂𐌰𐌿𐍃𐍄", "𐌺𐍂𐌿𐍃𐍄𐌰𐌽𐍃", "", "to gnash grind"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌰𐌽", "verb", "𐌲𐌰𐌱𐌰𐌹𐍂𐌰", "𐌲𐌰𐌱𐌰𐍂", "𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "", "to bear children"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽", "verb", "𐌱𐌹𐌲𐌹𐍄𐌰", "𐌱𐌹𐌲𐌰𐍄", "𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐍃", "", "to find to"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌰𐍄𐌲𐌰𐌲𐌲𐌰", "𐌰𐍄𐌹𐌳𐌳𐌾𐌰", "𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to come up"]) + let v = native_list_append(v, ["𐌷𐌰𐍆𐌾𐌰𐌽", "verb", "𐌷𐌰𐍆𐌾𐌰", "𐌷𐍉𐍆", "𐌷𐌰𐍆𐌰𐌽𐍃", "", "to lift raise"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌽", "verb", "𐌳𐌹𐍃𐌷𐌰𐌱𐌰", "𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to take complete"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌽", "verb", "𐌲𐌰𐌷𐌰𐌱𐌰", "𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to hold onto"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐌰𐌱𐌰𐌽", "verb", "𐌲𐌰𐌳𐌰𐌱𐌰", "𐌲𐌰𐌳𐍉𐍆", "𐌲𐌰𐌳𐌰𐌱𐌰𐌽𐍃", "", "to happen"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌱𐌰𐌽", "verb", "𐍃𐌺𐌰𐌱𐌰", "𐍃𐌺𐍉𐍆", "𐍃𐌺𐌰𐌱𐌰𐌽𐍃", "", "to shave to"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍂𐌰𐌱𐌰𐌽", "verb", "𐌲𐌰𐌳𐍂𐌰𐌱𐌰", "𐌲𐌰𐌳𐍂𐍉𐍆", "𐌲𐌰𐌳𐍂𐌰𐌱𐌰𐌽𐍃", "", "to hew out"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌸𐌾𐌰𐌽", "verb", "𐌰𐍆𐌳𐌰𐌿𐌸𐌾𐌰", "𐌰𐍆𐌳𐌰𐌿𐌸𐌹𐌳𐌰", "𐌰𐍆𐌳𐌰𐌿𐌸𐌹𐌸𐍃", "", "to put to"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌾𐌰𐌽", "verb", "𐌰𐍆𐌳𐍉𐌼𐌾𐌰", "𐌰𐍆𐌳𐍉𐌼𐌹𐌳𐌰", "𐌰𐍆𐌳𐍉𐌼𐌹𐌸𐍃", "", "to condemn"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍂𐌰𐌿𐍃𐌾𐌰𐌽", "verb", "𐌰𐍆𐌳𐍂𐌰𐌿𐍃𐌾𐌰", "𐌰𐍆𐌳𐍂𐌰𐌿𐍃𐌹𐌳𐌰", "𐌰𐍆𐌳𐍂𐌰𐌿𐍃𐌹𐌸𐍃", "", "to cast down"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌽", "verb", "𐌰𐍆𐌷𐍂𐌰𐌹𐌽𐌾𐌰", "𐌰𐍆𐌷𐍂𐌰𐌹𐌽𐌹𐌳𐌰", "𐌰𐍆𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐍃", "", "to wipe off"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐍆𐌻𐌰𐌲𐌾𐌰", "𐌰𐍆𐌻𐌰𐌲𐌹𐌳𐌰", "𐌰𐍆𐌻𐌰𐌲𐌹𐌸𐍃", "", "to lay down"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽", "verb", "afleitan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽", "verb", "𐌰𐍆𐌻𐌴𐍄𐌰", "𐌰𐍆𐌻𐌰𐌹𐌻𐍉𐍄", "𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐍃", "", "to relinquish"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐌹𐍄𐌰𐌽", "verb", "𐌰𐍆𐌼𐌰𐌹𐍄𐌰", "𐌰𐍆𐌼𐌰𐌹𐌼𐌰𐌹𐍄", "𐌰𐍆𐌼𐌰𐌹𐍄𐌰𐌽𐍃", "", "to cut off"]) + let v = native_list_append(v, ["𐌰𐍆𐌽𐌹𐌼𐌰𐌽", "verb", "𐌰𐍆𐌽𐌹𐌼𐌰", "𐌰𐍆𐌽𐌰𐌼", "𐌰𐍆𐌽𐌿𐌼𐌰𐌽𐍃", "", "to take away"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌰𐍄𐌾𐌰𐌽", "verb", "𐌰𐍆𐍃𐌰𐍄𐌾𐌰", "𐌰𐍆𐍃𐌰𐍄𐌹𐌳𐌰", "𐌰𐍆𐍃𐌰𐍄𐌹𐌸𐍃", "", "to set aside"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌰𐌽", "verb", "𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌰", "𐌰𐍆𐍃𐌺𐌰𐌹𐍃𐌺𐌰𐌹𐌳", "𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌰𐌽𐍃", "", "to separate off"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌽𐌰𐌽", "verb", "𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌽𐌰", "𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌽𐍉𐌳𐌰", "", "", "to be amazed"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌹𐌿𐌷𐌰𐌽", "verb", "𐌰𐍆𐍄𐌹𐌿𐌷𐌰", "𐌰𐍆𐍄𐌰𐌿𐌷", "𐌰𐍆𐍄𐌰𐌿𐌷𐌰𐌽𐍃", "", "to pull away"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌹𐍂𐍀𐌰𐌽", "verb", "𐌰𐍆𐍅𐌰𐌹𐍂𐍀𐌰", "𐌰𐍆𐍅𐌰𐍂𐍀", "𐌰𐍆𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃", "", "to cast off"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐌰𐍆𐍅𐌰𐌽𐌳𐌾𐌰", "𐌰𐍆𐍅𐌰𐌽𐌳𐌹𐌳𐌰", "𐌰𐍆𐍅𐌰𐌽𐌳𐌹𐌸𐍃", "", "to cause to"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐍅𐌰𐌷𐌰𐌽", "verb", "𐌰𐍆𐌸𐍅𐌰𐌷𐌰", "𐌰𐍆𐌸𐍅𐍉𐌷", "𐌰𐍆𐌸𐍅𐌰𐌷𐌰𐌽𐍃", "", "to wash off"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌾𐌰𐌽", "verb", "𐌰𐍆𐍈𐌰𐍀𐌾𐌰", "𐌰𐍆𐍈𐌰𐍀𐌹𐌳𐌰", "𐌰𐍆𐍈𐌰𐍀𐌹𐌸𐍃", "", "to choke off"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽", "verb", "𐌰𐌻𐌾𐌰", "𐌰𐌻𐌹𐌳𐌰", "𐌰𐌻𐌹𐌸𐍃", "", "to cause to"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌰𐌿𐌺𐌰𐌽", "verb", "𐌰𐌽𐌰𐌰𐌿𐌺𐌰", "𐌰𐌽𐌰𐌰𐌹𐌰𐌿𐌺", "𐌰𐌽𐌰𐌰𐌿𐌺𐌰𐌽𐍃", "", "to add to"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰𐌽", "verb", "𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰", "𐌰𐌽𐌰𐍆𐌰𐌻𐌷", "𐌰𐌽𐌰𐍆𐌿𐌻𐌷𐌰𐌽𐍃", "", "to entrust with"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌽𐌴𐌹𐍅𐌰𐌽", "verb", "𐌰𐌽𐌰𐌷𐌽𐌴𐌹𐍅𐌰", "𐌰𐌽𐌰𐌷𐌽𐌰𐌹𐍅", "𐌰𐌽𐌰𐌷𐌽𐌹𐍅𐌰𐌽𐍃", "", "to bend down"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰", "𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌹𐌳𐌰", "𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌹𐌸𐍃", "", "to lie down"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌴𐌻𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌼𐌴𐌻𐌾𐌰", "𐌰𐌽𐌰𐌼𐌴𐌻𐌹𐌳𐌰", "𐌰𐌽𐌰𐌼𐌴𐌻𐌹𐌸𐍃", "", "to register enroll"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌰𐌿𐌸𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌽𐌰𐌿𐌸𐌾𐌰", "𐌰𐌽𐌰𐌽𐌰𐌿𐌸𐌹𐌳𐌰", "𐌰𐌽𐌰𐌽𐌰𐌿𐌸𐌹𐌸𐍃", "", "to compel to"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌹𐌿𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌵𐌹𐌿𐌾𐌰", "𐌰𐌽𐌰𐌵𐌹𐍅𐌹𐌳𐌰", "𐌰𐌽𐌰𐌵𐌹𐍅𐌹𐌸𐍃", "", "to revitalize rekindle"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌳𐌰", "𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌸𐍃", "", "to serve to"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌴𐌹𐍄𐌰𐌽", "verb", "𐌰𐌽𐌳𐌱𐌴𐌹𐍄𐌰", "𐌰𐌽𐌳𐌱𐌰𐌹𐍄", "𐌰𐌽𐌳𐌱𐌹𐍄𐌰𐌽𐍃", "", "to bite back"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐌽", "verb", "𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰", "𐌰𐌽𐌳𐌱𐌰𐌽𐌳", "𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "", "to unbind to"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰", "𐌰𐌽𐌳𐌷𐍉𐍆", "𐌰𐌽𐌳𐌷𐌰𐍆𐌰𐌽𐍃", "", "to reply to"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰", "𐌰𐌽𐌳𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to acknowledge to"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌰", "𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌳𐌰", "𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌸𐍃", "", "to uncover to"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌻𐌴𐍄𐌽𐌰𐌽", "verb", "𐌰𐌽𐌳𐌻𐌴𐍄𐌽𐌰", "𐌰𐌽𐌳𐌻𐌴𐍄𐌽𐍉𐌳𐌰", "", "", "to be released"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌽", "verb", "𐌰𐌽𐌳𐌽𐌹𐌼𐌰", "𐌰𐌽𐌳𐌽𐌰𐌼", "𐌰𐌽𐌳𐌽𐌿𐌼𐌰𐌽𐍃", "", "to accept take"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌵𐌹𐌸𐌰𐌽", "verb", "𐌰𐌽𐌳𐌵𐌹𐌸𐌰", "𐌰𐌽𐌳𐌵𐌰𐌸", "𐌰𐌽𐌳𐌵𐌹𐌸𐌰𐌽𐍃", "", "to say farewell"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌻𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐌰𐌻𐌾𐌰", "𐌰𐌽𐌳𐍃𐌰𐌻𐌹𐌳𐌰", "𐌰𐌽𐌳𐍃𐌰𐌻𐌹𐌸𐍃", "", "to pay or"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰", "𐌰𐌽𐌳𐍃𐍄𐍉𐌸", "𐌰𐌽𐌳𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to stand against"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌾𐌰𐌽", "verb", "𐌰𐍄𐌰𐌿𐌲𐌾𐌰", "𐌰𐍄𐌰𐌿𐌲𐌹𐌳𐌰", "𐌰𐍄𐌰𐌿𐌲𐌹𐌸𐍃", "", "to show to"]) + let v = native_list_append(v, ["𐌰𐍄𐌱𐌰𐌹𐍂𐌰𐌽", "verb", "𐌰𐍄𐌱𐌰𐌹𐍂𐌰", "𐌰𐍄𐌱𐌰𐍂", "𐌰𐍄𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "", "to bring to"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽", "verb", "𐌰𐍄𐌲𐌹𐌱𐌰", "𐌰𐍄𐌲𐌰𐍆", "𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐍃", "", "to give to"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐍆𐌾𐌰𐌽", "verb", "𐌰𐍄𐌷𐌰𐍆𐌾𐌰", "𐌰𐍄𐌷𐍉𐍆", "𐌰𐍄𐌷𐌰𐍆𐌰𐌽𐍃", "", "to lift down"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐍄𐌾𐌰𐌽", "verb", "𐌰𐍄𐍃𐌰𐍄𐌾𐌰", "𐌰𐍄𐍃𐌰𐍄𐌹𐌳𐌰", "𐌰𐍄𐍃𐌰𐍄𐌹𐌸𐍃", "", "to set before"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌴𐌺𐌰𐌽", "verb", "𐌰𐍄𐍄𐌴𐌺𐌰", "𐌰𐍄𐍄𐌰𐌹𐍄𐍉𐌺", "𐌰𐍄𐍄𐌴𐌺𐌰𐌽𐍃", "", "to touch to"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌿𐌷𐌰𐌽", "verb", "𐌰𐍄𐍄𐌹𐌿𐌷𐌰", "𐌰𐍄𐍄𐌰𐌿𐌷", "𐌰𐍄𐍄𐌰𐌿𐌷𐌰𐌽𐍃", "", "to bring to"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌹𐍂𐍀𐌰𐌽", "verb", "𐌰𐍄𐍅𐌰𐌹𐍂𐍀𐌰", "𐌰𐍄𐍅𐌰𐍂𐍀", "𐌰𐍄𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃", "", "to throw to"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐍉𐍀𐌾𐌰𐌽", "verb", "𐌰𐍄𐍅𐍉𐍀𐌾𐌰", "𐌰𐍄𐍅𐍉𐍀𐌹𐌳𐌰", "𐌰𐍄𐍅𐍉𐍀𐌹𐌸𐍃", "", "to call to"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌾𐌰𐌽", "verb", "𐌱𐌰𐌻𐍅𐌾𐌰", "𐌱𐌰𐌻𐍅𐌹𐌳𐌰", "𐌱𐌰𐌻𐍅𐌹𐌸𐍃", "", "to torture torment"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌿𐍃𐌽𐌾𐌰𐌽", "verb", "𐌱𐌰𐍂𐌿𐍃𐌽𐌾𐌰", "𐌱𐌰𐍂𐌿𐍃𐌽𐌹𐌳𐌰", "𐌱𐌰𐍂𐌿𐍃𐌽𐌹𐌸𐍃", "", "to show loyalty"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌽", "verb", "𐌱𐌰𐌿𐌰", "𐌱𐌰𐌿𐌰𐌹𐌳𐌰", "𐌱𐌰𐌿𐌰𐌹𐌸𐍃", "", "to dwell inhabit"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽", "verb", "𐌱𐌹𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰", "𐌱𐌹𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌰", "𐌱𐌹𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌸𐍃", "", "to work towards"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌿𐌺𐌽𐌰𐌽", "verb", "𐌱𐌹𐌰𐌿𐌺𐌽𐌰", "𐌱𐌹𐌰𐌿𐌺𐌽𐍉𐌳𐌰", "", "", "to increase to"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽", "verb", "𐌱𐌹𐌳𐌾𐌰", "𐌱𐌰𐌸", "𐌱𐌹𐌳𐌰𐌽𐍃", "", "to request ask"]) + let v = native_list_append(v, ["𐌱𐌹𐌺𐌿𐌺𐌾𐌰𐌽", "verb", "𐌱𐌹𐌺𐌿𐌺𐌾𐌰", "𐌱𐌹𐌺𐌿𐌺𐌹𐌳𐌰", "𐌱𐌹𐌺𐌿𐌺𐌹𐌸𐍃", "", "to kiss all"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌺𐌰𐌽", "verb", "𐌱𐌹𐌻𐌰𐌹𐌺𐌰", "𐌱𐌹𐌻𐌰𐌹𐌻𐌰𐌹𐌺", "𐌱𐌹𐌻𐌰𐌹𐌺𐌰𐌽𐍃", "", "to make fun"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽", "verb", "𐌱𐌹𐌼𐌰𐌹𐍄𐌰", "𐌱𐌹𐌼𐌰𐌹𐌼𐌰𐌹𐍄", "𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐍃", "", "to circumcise"]) + let v = native_list_append(v, ["𐌱𐌹𐌽𐌹𐌿𐌷𐍃𐌾𐌰𐌽", "verb", "𐌱𐌹𐌽𐌹𐌿𐌷𐍃𐌾𐌰", "𐌱𐌹𐌽𐌹𐌿𐌷𐍃𐌹𐌳𐌰", "𐌱𐌹𐌽𐌹𐌿𐌷𐍃𐌹𐌸𐍃", "", "to reconnoiter to"]) + let v = native_list_append(v, ["𐌱𐌹𐍄𐌹𐌿𐌷𐌰𐌽", "verb", "𐌱𐌹𐍄𐌹𐌿𐌷𐌰", "𐌱𐌹𐍄𐌰𐌿𐌷", "𐌱𐌹𐍄𐌰𐌿𐌷𐌰𐌽𐍃", "", "to traverse to"]) + let v = native_list_append(v, ["𐌱𐌻𐌰𐌽𐌳𐌰𐌽", "verb", "𐌱𐌻𐌰𐌽𐌳𐌰", "𐌱𐌰𐌹𐌱𐌻𐌰𐌽𐌳", "𐌱𐌻𐌰𐌽𐌳𐌰𐌽𐍃", "", "to mix to"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌰𐌽", "verb", "𐌱𐌻𐍉𐍄𐌰", "𐌱𐌰𐌹𐌱𐌻𐍉𐍄", "𐌱𐌻𐍉𐍄𐌰𐌽𐍃", "", "to worship to"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌽", "verb", "𐌱𐍂𐌹𐌲𐌲𐌰", "𐌱𐍂𐌰𐌷𐍄𐌰", "𐌱𐍂𐌰𐌷𐍄𐍃", "", "to bring"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌾𐌰𐌽", "verb", "𐌱𐍂𐌿𐌺𐌾𐌰", "𐌱𐍂𐌿𐌷𐍄𐌰", "𐌱𐍂𐌿𐌷𐍄𐍃", "", "to use to"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐌾𐌰𐌽", "verb", "𐌳𐌰𐌹𐌻𐌾𐌰", "𐌳𐌰𐌹𐌻𐌹𐌳𐌰", "𐌳𐌰𐌹𐌻𐌹𐌸𐍃", "", "to share distribute"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌾𐌰𐌽", "verb", "𐌳𐍉𐌼𐌾𐌰", "𐌳𐍉𐌼𐌹𐌳𐌰", "𐌳𐍉𐌼𐌹𐌸𐍃", "", "to judge to"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌰𐌽", "verb", "𐌳𐍂𐌹𐌲𐌲𐌺𐌰", "𐌳𐍂𐌰𐌲𐌲𐌺", "𐌳𐍂𐌿𐌲𐌲𐌺𐌰𐌽𐍃", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌽", "verb", "𐌳𐍂𐌹𐌲𐌺𐌰", "𐌳𐍂𐌰𐌲𐌺", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐍃", "", "to drink"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌲𐌺𐌹𐌳𐌰", "verb", "draggkida", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺𐌾𐌰𐌽", "verb", "𐌳𐍂𐌰𐌲𐌺𐌾𐌰", "𐌳𐍂𐌰𐌲𐌺𐌹𐌳𐌰", "𐌳𐍂𐌰𐌲𐌺𐌹𐌸𐍃", "", "to make drink"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺𐌹𐌳𐌰", "verb", "dragkida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺𐌹𐌸𐍃", "verb", "dragkiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐍉𐌱𐌽𐌰𐌽", "verb", "𐌳𐍂𐍉𐌱𐌽𐌰", "𐌳𐍂𐍉𐌱𐌽𐍉𐌳𐌰", "", "", "to be/become restless"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌰𐌹𐌷𐌰𐌽", "verb", "𐍆𐌰𐌹𐍂𐌰𐌹𐌷", "𐍆𐌰𐌹𐍂𐌰𐌹𐌷𐍄𐌰", "𐍆𐌰𐌹𐍂𐌰𐌹𐌷𐍄𐍃", "", "to partake of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽", "verb", "𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰", "𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌹𐌳𐌰", "𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌹𐌸𐍃", "", "to stare to"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌽", "verb", "𐍆𐍂𐌰𐌹𐍃𐌰", "𐍆𐌰𐌹𐍆𐍂𐌰𐌹𐍃", "𐍆𐍂𐌰𐌹𐍃𐌰𐌽𐍃", "", "to try to"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌹𐌸", "verb", "fraisiþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌹𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌹𐍃", "verb", "fraisais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌹", "verb", "fraisai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌹𐌶𐌰𐌿", "verb", "fraisaizau", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌽𐌳𐍃", "verb", "fraisands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fraisandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐍃𐌰𐌽𐍃", "verb", "fraisans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌻𐌸𐌰𐌽", "verb", "𐍆𐌰𐌻𐌸𐌰", "𐍆𐌰𐌹𐍆𐌰𐌻𐌸", "𐍆𐌰𐌻𐌸𐌰𐌽𐍃", "", "to fold"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍆𐌰𐌻𐌸", "verb", "faifalþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐌰𐌻𐌸", "verb", "falþ", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌹𐌿𐌳𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌱𐌹𐌿𐌳𐌰", "𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌸", "𐍆𐌰𐌿𐍂𐌱𐌿𐌳𐌰𐌽𐍃", "", "to forbid to"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌹𐌿𐌳𐌹𐌸", "verb", "faurbiudiþ", "", "", "", "inflection of 𐍆𐌰𐌿𐍂𐌱𐌹𐌿𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌹𐌿𐌳𐌰𐌹𐍃", "verb", "faurbiudais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌸", "verb", "faurbauþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌱𐌰𐌿𐌳", "verb", "faurbaud", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌻𐌰𐌹𐌺", "verb", "lailaik", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌺𐌰𐌽", "verb", "𐌻𐌰𐌹𐌺𐌰", "𐌻𐌰𐌹𐌻𐌰𐌹𐌺", "𐌻𐌰𐌹𐌺𐌰𐌽𐍃", "", "to jump around"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌺𐌹𐌳", "verb", "laikid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌺𐌹𐌸", "verb", "laikiþ", "", "", "", "inflection of 𐌻𐌰𐌹𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐍃𐌰𐌹𐍈𐌰", "𐍃𐌰𐍈", "𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to see"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐌰𐌹𐍈𐌰", "𐌰𐌽𐌳𐍃𐌰𐍈", "𐌰𐌽𐌳𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to consider"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌹𐍈𐌹𐍃", "verb", "andsaiƕis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "andsaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰", "verb", "saiƕa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌹𐍃", "verb", "saiƕis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌹𐌸", "verb", "saiƕiþ", "", "", "", "inflection of 𐍃𐌰𐌹𐍈𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐍄𐍃", "verb", "saiƕats", "", "", "", "inflection of 𐍃𐌰𐌹𐍈𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌼", "verb", "saiƕam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌽𐌳", "verb", "saiƕand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌹𐌼𐌰", "verb", "saiƕaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌹𐌽𐌰", "verb", "saiƕaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈", "verb", "saiƕ", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍃𐌰𐍈", "verb", "saƕ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌰𐍈𐍄", "verb", "saƕt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍃𐌴𐍈𐌿𐌼", "verb", "sēƕum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍃𐌴𐍈𐌿𐌸", "verb", "sēƕuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍃𐌴𐍈𐌿𐌽", "verb", "sēƕun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌴𐍈𐌹", "verb", "sēƕi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌴𐍈𐌴𐌹𐌽𐌰", "verb", "sēƕeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "saiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "saiƕandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "saiƕandeins", "", "", "", "inflection of 𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌰𐍄𐍃𐌰𐌹𐍈𐌰", "𐌰𐍄𐍃𐌰𐍈", "𐌰𐍄𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to look"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌱𐌹𐍃𐌰𐌹𐍈𐌰", "𐌱𐌹𐍃𐌰𐍈", "𐌱𐌹𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to look for"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌲𐌰𐍃𐌰𐌹𐍈𐌰", "𐌲𐌰𐍃𐌰𐍈", "𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to see perceive"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌹𐌽𐍃𐌰𐌹𐍈𐌰", "𐌹𐌽𐍃𐌰𐍈", "𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to look into"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌸𐌰𐌹𐍂𐌷𐍃𐌰𐌹𐍈𐌰", "𐌸𐌰𐌹𐍂𐌷𐍃𐌰𐍈", "𐌸𐌰𐌹𐍂𐌷𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to see through"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌹𐍈𐌰𐌽", "verb", "𐌿𐍃𐍃𐌰𐌹𐍈𐌰", "𐌿𐍃𐍃𐌰𐍈", "𐌿𐍃𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "to look up"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌽", "verb", "𐌸𐌰𐌷𐌰", "𐌸𐌰𐌷𐌰𐌹𐌳𐌰", "𐌸𐌰𐌷𐌰𐌹𐌸𐍃", "", "to be silent"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐌹𐍈", "verb", "atsaiƕ", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐌹𐍈𐌹𐌸", "verb", "atsaiƕiþ", "", "", "", "inflection of 𐌰𐍄𐍃𐌰𐌹𐍈𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐌹𐍈𐌰𐌹𐌽𐌰", "verb", "atsaiƕaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "bisaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bisaiƕandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰", "verb", "gasaiƕa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌹𐍃", "verb", "gasaiƕis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌹𐌸", "verb", "gasaiƕiþ", "", "", "", "inflection of 𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌼", "verb", "gasaiƕam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳", "verb", "gasaiƕand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌿", "verb", "gasaiƕau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌹𐌼𐌰", "verb", "gasaiƕaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌹𐌽𐌰", "verb", "gasaiƕaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌹𐌶𐌰𐌿", "verb", "gasaiƕaizau", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "gasaiƕaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐍈", "verb", "gasaƕ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐍈𐍄", "verb", "gasaƕt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌴𐍈𐌿𐍄𐍃", "verb", "gasēƕuts", "", "", "", "second-person dual past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌴𐍈𐌿𐌼", "verb", "gasēƕum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌴𐍈𐌿𐌸", "verb", "gasēƕuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌴𐍈𐌿𐌽", "verb", "gasēƕun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌴𐍈𐌹", "verb", "gasēƕi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "gasaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gasaiƕandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌼", "verb", "gasaiƕandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌴𐌹", "verb", "gasaiƕandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "gasaiƕandeins", "", "", "", "inflection of 𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "verb", "gasaiƕans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰𐌽𐍃", "verb", "gasaiƕanans", "", "", "", "inflection of 𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰𐌽𐌴", "verb", "gasaiƕananē", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍉𐌽𐌰", "verb", "gasaiƕanōna", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "þairhsaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "þairhsaiƕandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌸𐌰𐌽", "verb", "𐌷𐌻𐌰𐌸𐌰", "𐌷𐌻𐍉𐌸", "𐌷𐌻𐌰𐌸𐌰𐌽𐍃", "", "to load"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌻𐌰𐌸𐌰𐌽", "verb", "𐌰𐍆𐌷𐌻𐌰𐌸𐌰", "𐌰𐍆𐌷𐌻𐍉𐌸", "𐌰𐍆𐌷𐌻𐌰𐌸𐌰𐌽𐍃", "", "to lade weigh"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌰𐌷𐌰𐌽", "verb", "𐌲𐌰𐌸𐌰𐌷𐌰", "𐌲𐌰𐌸𐌰𐌷𐌰𐌹𐌳𐌰", "𐌲𐌰𐌸𐌰𐌷𐌰𐌹𐌸𐍃", "", "to be completely"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌰𐍆𐍃𐍄𐌰𐌽𐌳𐌰", "𐌰𐍆𐍃𐍄𐍉𐌸", "𐌰𐍆𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to turn away"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌾𐌰", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌹𐌳𐌰", "𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌹𐌸𐍃", "", "to begin"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "andstandands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andstandandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "andstandandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "andstandandands", "", "", "", "misspelling of 𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌶𐌳𐍉𐌽", "verb", "𐌱𐍂𐌿𐌶𐌳𐍉", "𐌱𐍂𐌿𐌶𐌳𐍉𐌳𐌰", "𐌱𐍂𐌿𐌶𐌳𐍉𐌸𐍃", "", "to embroider"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽", "verb", "𐌵𐌹𐌸𐌰", "𐌵𐌰𐌸", "𐌵𐌹𐌸𐌰𐌽𐍃", "", "to say speak"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌹", "verb", "weihai", "", "", "", "inflection of 𐍅𐌴𐌹𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰", "verb", "weiha", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌽", "verb", "𐍅𐌴𐌹𐌷𐌰", "𐍅𐌴𐌹𐌷𐌰𐌹𐌳𐌰", "𐍅𐌴𐌹𐌷𐌰𐌹𐌸𐍃", "", "to hallow consecrate"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌾𐌰𐌽𐌳", "verb", "afwandjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌽", "verb", "𐌽𐌹𐌼𐌰", "𐌽𐌰𐌼", "𐌽𐌿𐌼𐌰𐌽𐍃", "", "to take accept"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌽", "verb", "𐍄𐌹𐌿𐌷𐌰", "𐍄𐌰𐌿𐌷", "𐍄𐌰𐌿𐌷𐌰𐌽𐍃", "", "to pull draw"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌲𐍂𐌾𐌰𐌽", "verb", "𐌷𐌿𐌲𐌲𐍂𐌾𐌰", "𐌷𐌿𐌲𐌲𐍂𐌹𐌳𐌰", "𐌷𐌿𐌲𐌲𐍂𐌹𐌸𐍃", "", "to hunger"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌲𐍂𐌴𐌹𐌸", "verb", "huggreiþ", "", "", "", "inflection of 𐌷𐌿𐌲𐌲𐍂𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "hugjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌽", "verb", "𐌷𐌿𐌲𐌾𐌰", "𐌷𐌿𐌲𐌹𐌳𐌰", "𐌷𐌿𐌲𐌹𐌸𐍃", "", "to think mean"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "hugidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌹𐌸", "verb", "hugjiþ", "", "", "", "inflection of 𐌷𐌿𐌲𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌹𐌼𐌰", "verb", "hugjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌹𐌸", "verb", "hugjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌴𐌹", "verb", "hugei", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌹𐍀𐌰𐌽", "verb", "𐌲𐍂𐌴𐌹𐍀𐌰", "𐌲𐍂𐌰𐌹𐍀", "𐌲𐍂𐌹𐍀𐌰𐌽𐍃", "", "to grab grip"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌹𐍀𐌹𐌸", "verb", "greipiþ", "", "", "", "inflection of 𐌲𐍂𐌴𐌹𐍀𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐍂𐌹𐍀𐌿𐌸", "verb", "gripuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐍂𐌹𐍀𐌿𐌽", "verb", "gripun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌽𐌴𐌹𐍅𐌰𐌽", "verb", "𐌷𐌽𐌴𐌹𐍅𐌰", "𐌷𐌽𐌰𐌹𐍅", "𐌷𐌽𐌹𐍅𐌰𐌽𐍃", "", "to incline bend"]) + let v = native_list_append(v, ["𐌸𐌻𐌹𐌿𐌷𐌰𐌽", "verb", "𐌸𐌻𐌹𐌿𐌷𐌰", "𐌸𐌻𐌰𐌿𐌷", "𐌸𐌻𐌰𐌿𐌷𐌰𐌽𐍃", "", "to flee escape"]) + let v = native_list_append(v, ["𐌸𐌻𐌹𐌿𐌷𐌹𐌸", "verb", "þliuhiþ", "", "", "", "inflection of 𐌸𐌻𐌹𐌿𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌸𐌻𐌹𐌿𐌷𐌰𐌽𐌳", "verb", "þliuhand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌸𐌻𐌹𐌿𐌷𐌰𐌹𐍃", "verb", "þliuhais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌸𐌻𐌹𐌿𐌷𐌰𐌹𐌸", "verb", "þliuhaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌸𐌻𐌹𐌿𐌷", "verb", "þliuh", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰", "verb", "fasta", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹𐍃", "verb", "fastais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹𐌸", "verb", "fastaiþ", "", "", "", "inflection of 𐍆𐌰𐍃𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌼", "verb", "fastam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌽𐌳", "verb", "fastand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹", "verb", "fastai", "", "", "", "inflection of 𐍆𐌰𐍃𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹𐌽𐌰", "verb", "fastaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹𐌳𐌰", "verb", "fastaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "fastaidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌽𐌳𐍃", "verb", "fastānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌹𐌸𐍃", "verb", "fastaiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐌻𐍉𐌺𐌰𐌽", "verb", "𐍆𐌻𐍉𐌺𐌰", "𐍆𐌰𐌹𐍆𐌻𐍉𐌺", "𐍆𐌻𐍉𐌺𐌰𐌽𐍃", "", "to lament mourn"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍆𐌻𐍉𐌺𐌿𐌽", "verb", "faiflōkun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌰𐌷𐌾𐌰𐌽", "verb", "𐍄𐌰𐌷𐌾𐌰", "𐍄𐌰𐌷𐌹𐌳𐌰", "𐍄𐌰𐌷𐌹𐌸𐍃", "", "to tear rend"]) + let v = native_list_append(v, ["𐍄𐌰𐌷𐌾𐌹𐌸", "verb", "tahjiþ", "", "", "", "inflection of 𐍄𐌰𐌷𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌰𐌷𐌹𐌳𐌰", "verb", "tahida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍄𐌰𐌷𐌾𐌰𐌽𐌳𐍃", "verb", "tahjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄", "verb", "aflēt", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰", "verb", "aflēta", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌳𐌰", "verb", "aflētada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌹", "verb", "aflētai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "aflētaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌹𐌸", "verb", "aflētaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌼", "verb", "aflētam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐌳𐌰", "verb", "aflētanda", "𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽𐌳𐌰", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐌳𐍃", "verb", "aflētands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "aflētandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "aflētandans", "𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌹𐌸", "verb", "aflētiþ", "", "", "", "inflection of 𐌰𐍆𐌻𐌴𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽", "verb", "𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰", "𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰", "𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃", "", "to follow"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌴𐌳𐌹", "verb", "afarlaistidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "afarlaistjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "afarlaistjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "afarlaistjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "afarlaistjandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "afarlaistjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌹𐌻𐌾𐌰𐌽", "verb", "𐌰𐍆𐌳𐌰𐌹𐌻𐌾𐌰", "𐌰𐍆𐌳𐌰𐌹𐌻𐌹𐌳𐌰", "𐌰𐍆𐌳𐌰𐌹𐌻𐌹𐌸𐍃", "", "to give distribute"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌹𐌻𐌾𐌰", "verb", "afdailja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌱𐌽𐌰𐌽", "verb", "𐌰𐍆𐌳𐌰𐌿𐌱𐌽𐌰", "𐌰𐍆𐌳𐌰𐌿𐌱𐌽𐍉𐌳𐌰", "", "", "to become numb"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌱𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "afdaubnōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌹𐌸𐍃", "verb", "afdauiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌹𐌳𐌰𐌹", "verb", "afdauidai", "", "", "", "inflection of 𐌰𐍆𐌳𐌰𐌿𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌸𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "afdauþjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌸𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "afdauþidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌸𐌹𐌸𐍃", "verb", "afdauþiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌰𐌿𐌸𐌹𐌳𐌰𐌹", "verb", "afdauþidai", "", "", "", "inflection of 𐌰𐍆𐌳𐌰𐌿𐌸𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌱𐌽𐌰𐌽", "verb", "𐌰𐍆𐌳𐍉𐌱𐌽𐌰", "𐌰𐍆𐌳𐍉𐌱𐌽𐍉𐌳𐌰", "", "", "be silent hold"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌱𐌽", "verb", "afdōbn", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌹𐌸𐍃", "verb", "afdōmiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌾𐌰𐌽𐌳𐌰", "verb", "afdōmjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌾𐌰𐌹𐌸", "verb", "afdōmjaiþ", "𐌰𐍆𐌳𐍉𐌼𐌾𐌰𐌹𐌳", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌾𐌰𐌹𐌳", "verb", "afdōmjaid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐍉𐌼𐌾𐌰𐌳𐌰", "verb", "afdōmjada", "", "", "", "first/third-person present passive"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌿𐌼𐌱𐌽𐌰𐌽", "verb", "𐌰𐍆𐌳𐌿𐌼𐌱𐌽𐌰", "𐌰𐍆𐌳𐌿𐌼𐌱𐌽𐍉𐌳𐌰", "", "", "be silent be"]) + let v = native_list_append(v, ["𐌰𐍆𐌳𐌿𐌼𐌱𐌽", "verb", "afdumbn", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["𐌰𐍆𐍆𐌹𐌻𐌷𐌰𐌽", "verb", "𐌰𐍆𐍆𐌹𐌻𐌷𐌰", "𐌰𐍆𐍆𐌰𐌻𐌷", "𐌰𐍆𐍆𐌿𐌻𐌷𐌰𐌽𐍃", "", "to hide"]) + let v = native_list_append(v, ["𐌰𐍆𐍆𐌰𐌻𐌷𐍄", "verb", "affalht", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌻𐌳𐌰𐌽", "verb", "𐍆𐍂𐌰𐌲𐌹𐌻𐌳𐌰", "𐍆𐍂𐌰𐌲𐌰𐌻𐌳", "𐍆𐍂𐌰𐌲𐌿𐌻𐌳𐌰𐌽𐍃", "", "to pay back"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌻𐌳𐌰", "verb", "fragilda", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌻𐌳𐌰𐌹𐌳𐌰𐌿", "verb", "fragildaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌳𐌴𐌳𐌹", "verb", "andbahtidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌳𐍉𐌽", "verb", "andbahtidōn", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌼", "verb", "andbahtjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰", "verb", "andbahtja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴𐌹𐍃", "verb", "andbahteis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌹𐌽𐌰", "verb", "andbahtjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌹", "verb", "andbahtjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "andbahtidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌳𐌰", "verb", "andbahtida", "", "", "", "inflection of 𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌳𐌴𐌳𐌴𐌹𐌼𐌰", "verb", "andbahtidēdeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌸", "verb", "andbahtiþ", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌹𐌸𐍃", "verb", "andbahtiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴𐌹", "verb", "andbahtei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andbahtjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "andbahtjandeins", "", "", "", "inflection of 𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "andbahtjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌰𐌽", "verb", "𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌰", "𐌼𐌰𐌿𐍂𐌸𐍂𐌹𐌳𐌰", "𐌼𐌰𐌿𐍂𐌸𐍂𐌹𐌸𐍃", "", "to murder kill"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌸𐍂𐌴𐌹𐌸", "verb", "maurþreiþ", "", "", "", "inflection of 𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌰𐌿𐍂𐌸𐍂𐌾𐌰𐌹𐍃", "verb", "maurþrjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌰𐌹𐍂𐌰𐌽", "verb", "𐍆𐍂𐌰𐌱𐌰𐌹𐍂𐌰", "𐍆𐍂𐌰𐌱𐌰𐍂", "𐍆𐍂𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "", "to bear endure"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌾𐌰𐌽", "verb", "𐍅𐍉𐍀𐌾𐌰", "𐍅𐍉𐍀𐌹𐌳𐌰", "𐍅𐍉𐍀𐌹𐌸𐍃", "", "to cry out"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌰𐍆", "verb", "afgaf", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌾𐌰𐌽", "verb", "𐌱𐌻𐌴𐌹𐌸𐌾𐌰", "𐌱𐌻𐌴𐌹𐌸𐌹𐌳𐌰", "𐌱𐌻𐌴𐌹𐌸𐌹𐌸𐍃", "", "to be merciful"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌾𐌰", "verb", "bleiþja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌻𐌰𐌿𐌸𐌾𐌰𐌽", "verb", "𐌱𐌻𐌰𐌿𐌸𐌾𐌰", "𐌱𐌻𐌰𐌿𐌸𐌹𐌳𐌰", "𐌱𐌻𐌰𐌿𐌸𐌹𐌸𐍃", "", "to make void"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌼", "verb", "afgaggandam", "", "", "", "dative plural masculine"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "afgaggandans", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "afgaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌰𐍆𐌲𐌰𐌲𐌲𐌰", "𐌰𐍆𐌹𐌳𐌳𐌾𐌰", "𐌰𐍆𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to depart go"]) + let v = native_list_append(v, ["𐌰𐍆𐌹𐌳𐌳𐌾𐌰", "verb", "afiddja", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌰𐌱𐌰𐌹𐌸", "verb", "afhabaiþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌰𐌱𐌰𐌽", "verb", "𐌰𐍆𐌷𐌰𐌱𐌰", "𐌰𐍆𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌰𐍆𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to abstain with"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌰𐌼𐍉𐌽", "verb", "𐌰𐍆𐌷𐌰𐌼𐍉", "𐌰𐍆𐌷𐌰𐌼𐍉𐌳𐌰", "𐌰𐍆𐌷𐌰𐌼𐍉𐌸𐍃", "", "to undress"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌻𐌰𐌸𐌰𐌽𐌰", "verb", "afhlaþana", "", "", "", "strong nominative singular"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌻𐌰𐌸𐌰𐌽𐍃", "verb", "afhlaþans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐍉𐌻𐍉𐌳𐌰", "verb", "afhōlōda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐍉𐌻𐍉𐌽", "verb", "𐌰𐍆𐌷𐍉𐌻𐍉", "𐌰𐍆𐌷𐍉𐌻𐍉𐌳𐌰", "𐌰𐍆𐌷𐍉𐌻𐍉𐌸𐍃", "", "to cheat someone"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐍂𐌹𐍃𐌾𐌰𐌹𐌸", "verb", "afhrisjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐍂𐌹𐍃𐌾𐌰𐌼", "verb", "afhrisjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐍂𐌹𐍃𐌾𐌰𐌽", "verb", "𐌰𐍆𐌷𐍂𐌹𐍃𐌾𐌰", "𐌰𐍆𐌷𐍂𐌹𐍃𐌹𐌳𐌰", "𐌰𐍆𐌷𐍂𐌹𐍃𐌹𐌸𐍃", "", "to shake off"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌿𐌲𐌹𐌳𐌰", "verb", "afhugida", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌿𐌲𐌾𐌰𐌽", "verb", "𐌰𐍆𐌷𐌿𐌲𐌾𐌰", "𐌰𐍆𐌷𐌿𐌲𐌹𐌳𐌰", "𐌰𐍆𐌷𐌿𐌲𐌹𐌸𐍃", "", "to bewitch lead"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌾𐌹𐌸", "verb", "aflagjiþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌾𐌰𐌹𐌸", "verb", "aflagjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌹𐌳𐌰", "verb", "aflagida", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "aflagjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "aflagjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌴𐍄𐌰", "verb", "lēta", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌻𐍉𐍄", "verb", "lailōt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐌻𐍉𐍄𐌿𐌽", "verb", "lailōtun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌻𐌴𐍄𐌰𐌽𐌳𐍃", "verb", "lētands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌴𐍄𐌹𐌸", "verb", "lētiþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌻𐌴𐍄", "verb", "lēt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌴𐍄𐌰𐌽𐌳", "verb", "lētand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌹𐌻𐍉𐍄", "verb", "aflailōt", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌹𐌻𐍉𐍄𐌿𐌼", "verb", "aflailōtum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌹𐌻𐍉𐍄𐌹", "verb", "aflailōti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌰𐍆𐌻𐌴𐌹𐌸𐌰", "𐌰𐍆𐌻𐌰𐌹𐌸", "𐌰𐍆𐌻𐌹𐌸𐌰𐌽𐍃", "", "to depart withdraw"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐌸𐌹𐌸", "verb", "afleiþiþ", "", "", "", "inflection of 𐌰𐍆𐌻𐌴𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌰𐌹𐌸", "verb", "aflaiþ", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐌸𐌹", "verb", "afliþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐍃", "verb", "afleiþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "afleiþandans", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽𐌳𐌰", "verb", "afleitanda", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "afleitandans", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽𐌰", "verb", "afleitana", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐌰", "verb", "aflētana", "𐌰𐍆𐌻𐌴𐌹𐍄𐌰𐌽𐌰", "", "", "inflection of 𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌴𐍄𐌰𐌽𐍃", "verb", "aflētans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐍆𐌽𐌰𐌽𐌳𐍃", "verb", "aflifnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐍆𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "aflifnandans", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐍆𐌽𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "aflifnandeins", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐍆𐌽𐌰𐌽", "verb", "𐌰𐍆𐌻𐌹𐍆𐌽𐌰", "𐌰𐍆𐌻𐌹𐍆𐌽𐍉𐌳𐌰", "", "", "to remain abide"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐍆𐌽𐌹𐌸", "verb", "aflifniþ", "", "", "", "inflection of 𐌰𐍆𐌻𐌹𐍆𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐍆𐌽𐍉𐌳𐌰", "verb", "aflifnōda", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐌽𐌽𐌹𐌸", "verb", "aflinniþ", "", "", "", "inflection of 𐌰𐍆𐌻𐌹𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌻𐌹𐌽𐌽𐌰𐌽", "verb", "𐌰𐍆𐌻𐌹𐌽𐌽𐌰", "𐌰𐍆𐌻𐌰𐌽𐌽", "𐌰𐍆𐌻𐌿𐌽𐌽𐌰𐌽𐍃", "", "to depart"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐌹𐍄", "verb", "afmait", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐌹𐌼𐌰𐌹𐍄", "verb", "afmaimait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐍂𐌶𐌾𐌰𐌽", "verb", "𐌰𐍆𐌼𐌰𐍂𐌶𐌾𐌰", "𐌰𐍆𐌼𐌰𐍂𐌶𐌹𐌳𐌰", "𐌰𐍆𐌼𐌰𐍂𐌶𐌹𐌸𐍃", "", "to offend"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐍂𐌶𐌾𐌰𐌳𐌰", "verb", "afmarzjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐍂𐌶𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "afmarzjaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐌿𐌹𐌳𐌰𐌹", "verb", "afmauidai", "", "", "", "inflection of 𐌰𐍆𐌼𐌰𐌿𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌼𐌰𐌿𐌹𐌸𐍃", "verb", "afmauiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌽𐌹𐌼𐌰", "verb", "afnima", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌽𐌹𐌼𐌹𐌸", "verb", "afnimiþ", "", "", "", "inflection of 𐌰𐍆𐌽𐌹𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌽𐌹𐌼𐌰𐌹", "verb", "afnimai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌽𐌹𐌼𐌰𐌳𐌰", "verb", "afnimada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐌽𐌹𐌼𐌰𐌽𐌳𐍃", "verb", "afnimands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌵𐌹𐌸𐌹𐌸", "verb", "afqiþiþ", "", "", "", "inflection of 𐌰𐍆𐌵𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌵𐌹𐌸𐌰𐌽", "verb", "𐌰𐍆𐌵𐌹𐌸𐌰", "𐌰𐍆𐌵𐌰𐌸", "𐌰𐍆𐌵𐌹𐌸𐌰𐌽𐍃", "", "to forsake"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌹𐍃", "verb", "qiþis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌹𐌸", "verb", "qiþiþ", "", "", "", "inflection of 𐌵𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌼", "verb", "qiþam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳", "verb", "qiþand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌿", "verb", "qiþau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌹𐍃", "verb", "qiþais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌹", "verb", "qiþai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌹𐍄𐍃", "verb", "qiþaits", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌹𐌼𐌰", "verb", "qiþaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌹𐌸", "verb", "qiþaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌹𐌽𐌰", "verb", "qiþaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸", "verb", "qiþ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌳𐌰", "verb", "qiþada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌵𐌰𐌸", "verb", "qaþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌵𐌰𐍃𐍄", "verb", "qast", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌵𐌴𐌸𐌿𐌽", "verb", "qēþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌵𐌴𐌸𐌾𐌰𐌿", "verb", "qēþjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌵𐌴𐌸𐌹", "verb", "qēþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌵𐌴𐌸𐌴𐌹𐌽𐌰", "verb", "qēþeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰", "verb", "qiþa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐍃", "verb", "qiþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌰𐌽", "verb", "qiþandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "qiþandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌹𐌽", "verb", "qiþandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "qiþandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "qiþandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌰𐌼", "verb", "qiþandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌴𐌹", "verb", "qiþandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "qiþandeins", "", "", "", "inflection of 𐌵𐌹𐌸𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌳𐍉", "verb", "qiþandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌴𐌹𐌸", "verb", "anastōdeiþ", "𐌰𐌽𐍃𐍄𐍉𐌳𐌴𐌹𐌸", "", "", "inflection of 𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "anastōdjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "anastōdjandans", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐍄𐍉𐌳𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "anastōdjandei", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌰𐌿𐌸𐌾𐌰𐌹", "verb", "ananauþjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌴𐌹", "verb", "anakumbei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽𐌳", "verb", "anakumbjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌹𐌳𐌰", "verb", "anakumbida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽𐌳𐍃", "verb", "anakumbjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "anakumbjandan", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "anakumbjandans", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "anakumbjandanē", "", "", "", "genitive plural masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "anakumbjandam", "", "", "", "dative plural masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌽𐌴𐌹𐍅𐌰𐌽𐌳𐍃", "verb", "anahneiwands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌰𐌹𐌰𐌿𐌺", "verb", "anaaiauk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌹", "verb", "aljai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌹𐌸", "verb", "andnimiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌽𐌳", "verb", "andnimand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌹𐍃", "verb", "andnimais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌹", "verb", "andnimai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌹𐌼𐌰", "verb", "andnimaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌹𐌸", "verb", "andnimaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌹𐌽𐌰", "verb", "andnimaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼", "verb", "andnim", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌰𐌼", "verb", "andnam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌰𐌼𐍄", "verb", "andnamt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌴𐌼𐌿𐌸", "verb", "andnēmuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌴𐌼𐌿𐌽", "verb", "andnēmun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌴𐌼𐌾𐌰𐌿", "verb", "andnēmjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌴𐌼𐌹", "verb", "andnēmi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰", "verb", "andnima", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌽𐌳𐍃", "verb", "andnimands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌹𐌼𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andnimandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌿𐌼𐌰𐌽𐍃", "verb", "andnumans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌿𐌼𐌰𐌽", "verb", "andnuman", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌿𐌼𐌰𐌽𐌰𐌹", "verb", "andnumanai", "", "", "", "inflection of 𐌰𐌽𐌳𐌽𐌿𐌼𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌹𐌸", "verb", "andhuljiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌴𐌹", "verb", "andhulei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌰𐌳𐌰", "verb", "andhuljada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "andhuljaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "andhuljaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌳𐌴𐍃", "verb", "andhulidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "andhulidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌸𐍃", "verb", "andhuliþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌸", "verb", "andhuliþ", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌹𐍃", "verb", "andhafjis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌹𐌸", "verb", "andhafjiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰𐌽𐌳", "verb", "andhafjand", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐍉𐍆", "verb", "andhōf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐍉𐍆𐍄", "verb", "andhōft", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐍉𐍆𐌿𐌽", "verb", "andhōfun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰𐌽𐌳𐍃", "verb", "andhafjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andhafjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐍆𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "andhafjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰", "verb", "andhaita", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌹𐍃", "verb", "andhaitis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌹𐌸", "verb", "andhaitiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌽𐌳", "verb", "andhaitand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌳𐌰", "verb", "andhaitada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "verb", "andhaihait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐌷𐌰𐌹𐍃𐍄", "verb", "andhaihaist", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐌷𐌰𐌹𐍄𐌿𐌽", "verb", "andhaihaitun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐌷𐌰𐌹𐍄𐌹", "verb", "andhaihaiti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌹𐌸", "verb", "andbindiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐍄𐍃", "verb", "andbindats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌽𐌳", "verb", "andband", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐌿", "verb", "andbindau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌿𐌽", "verb", "andbundun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌴𐌹𐍄𐌰𐌹𐍃", "verb", "andbeitais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌹𐍄", "verb", "andbait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐍄𐌿𐌽", "verb", "andbitun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌴𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "andbeitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌳𐌰𐌼𐌼𐌰", "verb", "andhulidamma", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰", "verb", "anafilha", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌹𐍃", "verb", "anafilhis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌹𐌸", "verb", "anafilhiþ", "", "", "", "inflection of 𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰𐌼", "verb", "anafilham", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷", "verb", "anafilh", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌰𐌻𐌷", "verb", "anafalh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌿𐌻𐌷𐌿𐌸", "verb", "anafulhuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌿𐌻𐌷𐌿𐌽", "verb", "anafulhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰𐌽𐌳𐍃", "verb", "anafilhands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌹𐌻𐌷𐌰𐌽𐌳𐌰𐌼", "verb", "anafilhandam", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐍃", "verb", "atgibans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐌳", "verb", "atgiband", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌿", "verb", "atgibau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌹", "verb", "atgibai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌳𐌰", "verb", "atgibada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐌳𐌰", "verb", "atgibanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐍆", "verb", "atgaf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐍆𐍄", "verb", "atgaft", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌴𐌱𐌿𐌼", "verb", "atgēbum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌴𐌱𐌿𐌽", "verb", "atgēbun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌴𐌱𐌴𐌹𐌼𐌰", "verb", "atgēbeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌴𐌱𐌴𐌹𐌸", "verb", "atgēbeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌴𐌱𐌴𐌹𐌽𐌰", "verb", "atgēbeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐌰", "verb", "atgibana", "", "", "", "inflection of 𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐍉𐍃", "verb", "atgibanōs", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "atgaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌹𐌸", "verb", "atgaggiþ", "", "", "", "inflection of 𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳", "verb", "atgaggand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌹", "verb", "atgaggai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲", "verb", "atgagg", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌹𐌳𐌳𐌾𐌰", "verb", "atiddja", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌼", "verb", "atiddjēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌽", "verb", "atiddjēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌹𐌳𐌳𐌾𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "atiddjēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌽", "verb", "atgaggandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌹𐌽", "verb", "atgaggandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "atgaggandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌼", "verb", "atgaggandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹", "verb", "atgaggandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "atgaggandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "atgaggandeins", "", "", "", "inflection of 𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹𐌼", "verb", "atgaggandeim", "", "", "", "dative feminine plural"]) + let v = native_list_append(v, ["𐌰𐍄𐌱𐌰𐌹𐍂𐌹𐌸", "verb", "atbairiþ", "", "", "", "inflection of 𐌰𐍄𐌱𐌰𐌹𐍂𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌱𐌰𐌹𐍂", "verb", "atbair", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌱𐌰𐍂", "verb", "atbar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌱𐌴𐍂𐌿𐌽", "verb", "atbērun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌾𐌰", "verb", "ataugja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌴𐌹𐌸", "verb", "ataugeiþ", "", "", "", "inflection of 𐌰𐍄𐌰𐌿𐌲𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌾𐌰𐌹", "verb", "ataugjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌴𐌹", "verb", "ataugei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌹𐌳𐌰", "verb", "ataugida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "ataugidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌹𐌳𐌴𐌳𐌹", "verb", "ataugidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌹𐌸𐍃", "verb", "ataugiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌹𐌸", "verb", "andstandiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳", "verb", "andstandand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐍉𐌸", "verb", "andstōþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐍉𐌸𐌿𐌽", "verb", "andstōþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐍉𐍀𐌹𐌳𐌰", "verb", "atwōpida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐍉𐍀𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "atwōpidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐍉𐍀𐌾𐌰𐌽𐌳𐍃", "verb", "atwōpjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐍂𐍀", "verb", "atwarp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐍃", "verb", "atwairpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃", "verb", "atwaurpans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌿𐌷", "verb", "attauh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌿𐌷𐌿𐌸", "verb", "attauhuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌿𐌷𐌿𐌽", "verb", "attauhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌿𐌷𐌰", "verb", "attiuha", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌿𐌷𐌹𐌸", "verb", "attiuhiþ", "", "", "", "inflection of 𐌰𐍄𐍄𐌹𐌿𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌿𐌷𐌰𐍄𐍃", "verb", "attiuhats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌹𐌿𐌷", "verb", "attiuh", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌴𐌺𐌰", "verb", "attēka", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌴𐌺𐌰𐌹𐌸", "verb", "attēkaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌹𐍄𐍉𐌺", "verb", "attaitōk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌹𐍄𐍉𐌺𐌿𐌽", "verb", "attaitōkun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌹𐍄𐍉𐌺𐌹", "verb", "attaitōki", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍄𐌰𐌹𐍄𐍉𐌺𐌴𐌹𐌽𐌰", "verb", "attaitōkeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐍄𐌾𐌰𐌹𐌼𐌰", "verb", "atsatjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌰𐍄𐌹𐌳𐌰", "verb", "afsatida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌰𐍄𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "afsatjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌹𐌸", "verb", "afskaidiþ", "", "", "", "inflection of 𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌰𐌹", "verb", "afskaidai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌹𐍃𐌺𐌰𐌹𐌳", "verb", "afskaiskaid", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌹𐌳𐌰𐌽𐌳", "verb", "afskaidand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌹𐍃𐌺𐌰𐌹𐌳𐌿𐌽", "verb", "afskaiskaidun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "afslauþnōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳", "verb", "afstandand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌰𐌽𐌳𐌰𐌹", "verb", "afstandai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌰𐌽𐌳", "verb", "afstand", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐍉𐌸𐌿𐌼", "verb", "afstōþum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐍉𐌸𐌹", "verb", "afstōþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌹𐌿𐌷𐌰𐌽𐌳𐍃", "verb", "aftiuhands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌹𐍂𐍀𐌹𐌸", "verb", "afwairpiþ", "", "", "", "inflection of 𐌰𐍆𐍅𐌰𐌹𐍂𐍀𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌹𐍂𐍀𐌰𐌹𐌳𐌰𐌿", "verb", "afwairpaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐍃", "verb", "afwairpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌴𐌹", "verb", "afwandei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐌰", "verb", "afwandjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "afwandida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "afwandidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌾𐌰𐌽𐌳", "verb", "afƕapjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌾𐌰𐌹𐌸", "verb", "afƕapjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "afƕapidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰", "verb", "arma", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌰𐌿𐍆", "verb", "afskauf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌺𐌹𐌿𐌱𐌰𐌽", "verb", "𐌰𐍆𐍃𐌺𐌹𐌿𐌱𐌰", "𐌰𐍆𐍃𐌺𐌰𐌿𐍆", "𐌰𐍆𐍃𐌺𐌿𐌱𐌰𐌽𐍃", "", "to cast away"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌷𐌰𐌽", "verb", "𐌰𐍆𐍃𐌻𐌰𐌷𐌰", "𐌰𐍆𐍃𐌻𐍉𐌷", "𐌰𐍆𐍃𐌻𐌰𐌷𐌰𐌽𐍃", "", "to cut off"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌷𐌰𐌼", "verb", "afslaham", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐍉𐌷", "verb", "afslōh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐍉𐌷𐌿𐌽", "verb", "afslōhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌷𐌰𐌽𐌳𐍃", "verb", "afslahands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐍀𐌾𐌰𐌽", "verb", "𐌰𐍆𐍃𐌻𐌰𐌿𐍀𐌾𐌰", "𐌰𐍆𐍃𐌻𐌰𐌿𐍀𐌹𐌳𐌰", "𐌰𐍆𐍃𐌻𐌰𐌿𐍀𐌹𐌸𐍃", "", "to put off"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐍃", "verb", "afslaupjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐍀𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "afslaupjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌾𐌰𐌽", "verb", "𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌾𐌰", "𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌹𐌳𐌰", "𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌹𐌸𐍃", "", "to be in"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌹𐌸𐍃", "verb", "afslauþiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌹𐌳𐌰𐌹", "verb", "afslauþidai", "", "", "", "inflection of 𐌰𐍆𐍃𐌻𐌰𐌿𐌸𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌴𐌹𐌲", "verb", "afsteig", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐌴𐌹𐌲𐌰𐌽", "verb", "𐌰𐍆𐍃𐍄𐌴𐌹𐌲𐌰", "𐌰𐍆𐍃𐍄𐌰𐌹𐌲", "𐌰𐍆𐍃𐍄𐌹𐌲𐌰𐌽𐍃", "", "to come down"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍄𐍉𐌸", "verb", "afstōþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌾𐌰𐌽", "verb", "𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌾𐌰", "𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌹𐌳𐌰", "𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌹𐌸𐍃", "", "to despair"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌹𐌸𐍃", "verb", "afswaggwiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌹𐌳𐌰𐌹", "verb", "afswaggwidai", "", "", "", "inflection of 𐌰𐍆𐍃𐍅𐌰𐌲𐌲𐍅𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍅𐌰𐌹𐍂𐌱𐌰𐌽𐌳𐍃", "verb", "afswairbands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍃𐍅𐌰𐌹𐍂𐌱𐌰𐌽", "verb", "𐌰𐍆𐍃𐍅𐌰𐌹𐍂𐌱𐌰", "𐌰𐍆𐍃𐍅𐌰𐍂𐌱", "𐌰𐍆𐍃𐍅𐌰𐌿𐍂𐌱𐌰𐌽𐍃", "", "to blot out"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐌹𐌳", "verb", "aftaurnid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐌹𐌸", "verb", "aftaurniþ", "𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐌹𐌳", "", "", "inflection of 𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐌰𐌽", "verb", "𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐌰", "𐌰𐍆𐍄𐌰𐌿𐍂𐌽𐍉𐌳𐌰", "", "", "to be torn"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐍆𐍅𐌰𐌲𐌾𐌰", "𐌰𐍆𐍅𐌰𐌲𐌹𐌳𐌰", "𐌰𐍆𐍅𐌰𐌲𐌹𐌸𐍃", "", "to move away"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌲𐌹𐌸𐍃", "verb", "afwagiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌲𐌹𐌳𐌰𐌹", "verb", "afwagidai", "", "", "", "inflection of 𐌰𐍆𐍅𐌰𐌲𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌻𐍅𐌾𐌰𐌽", "verb", "𐌰𐍆𐍅𐌰𐌻𐍅𐌾𐌰", "𐌰𐍆𐍅𐌰𐌻𐍅𐌹𐌳𐌰", "𐌰𐍆𐍅𐌰𐌻𐍅𐌹𐌸𐍃", "", "to roll away"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌻𐍅𐌾𐌰𐌹", "verb", "afwalwjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌻𐍅𐌹𐌸𐍃", "verb", "afwalwiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "afwandjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐍆𐍅𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "afwandjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐌰𐌿𐍂𐍃𐌹𐌸𐍃", "verb", "afþaursiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐌰𐌿𐍂𐍃𐌹𐌳𐌰𐌽𐌰", "verb", "afþaursidana", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐌰𐌿𐍂𐍃𐌾𐌰𐌽", "verb", "𐌰𐍆𐌸𐌰𐌿𐍂𐍃𐌾𐌰", "𐌰𐍆𐌸𐌰𐌿𐍂𐍃𐌹𐌳𐌰", "𐌰𐍆𐌸𐌰𐌿𐍂𐍃𐌹𐌸𐍃", "", "to be thirsty"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐌻𐌹𐌿𐌷𐌹𐌸", "verb", "afþliuhiþ", "", "", "", "inflection of 𐌰𐍆𐌸𐌻𐌹𐌿𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐌻𐌹𐌿𐌷𐌰𐌽", "verb", "𐌰𐍆𐌸𐌻𐌹𐌿𐌷𐌰", "𐌰𐍆𐌸𐌻𐌰𐌿𐌷", "𐌰𐍆𐌸𐌻𐌰𐌿𐌷𐌰𐌽𐍃", "", "to flee"]) + let v = native_list_append(v, ["𐌰𐍆𐌸𐍅𐍉𐌷", "verb", "afþwōh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌽𐌰𐌽", "verb", "𐌰𐍆𐍈𐌰𐍀𐌽𐌰", "𐌰𐍆𐍈𐌰𐍀𐌽𐍉𐌳𐌰", "", "", "to be choked"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌽𐌹𐌸", "verb", "afƕapniþ", "", "", "", "inflection of 𐌰𐍆𐍈𐌰𐍀𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "afƕapnōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐍈𐌰𐍀𐌽𐌰𐌽𐌳", "verb", "afƕapnand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌹𐍄𐌰", "verb", "ita", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌴𐍄𐌿𐌽", "verb", "ētun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸", "verb", "wairþ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐌹𐍃𐌺𐍉𐌽", "verb", "𐍆𐌹𐍃𐌺𐍉", "𐍆𐌹𐍃𐌺𐍉𐌳𐌰", "𐍆𐌹𐍃𐌺𐍉𐌸𐍃", "", "to fish"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌾𐌰𐌽", "verb", "𐌲𐍉𐌻𐌾𐌰", "𐌲𐍉𐌻𐌹𐌳𐌰", "𐌲𐍉𐌻𐌹𐌸𐍃", "", "to greet to"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐍃", "verb", "mahts", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌹𐍄𐍉𐌽", "verb", "𐌼𐌹𐌻𐌹𐍄𐍉", "𐌼𐌹𐌻𐌹𐍄𐍉𐌳𐌰", "𐌼𐌹𐌻𐌹𐍄𐍉𐌸𐍃", "", "to serve in"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌹𐍄𐍉𐌽𐌳𐍃", "verb", "militōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐌻𐌹𐍄𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "militōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐌷", "verb", "þaih", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽", "verb", "𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰", "𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌰", "𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌸𐍃", "", "to believe"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽", "verb", "𐍂𐍉𐌳𐌾𐌰", "𐍂𐍉𐌳𐌹𐌳𐌰", "𐍂𐍉𐌳𐌹𐌸𐍃", "", "to speak talk"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌹", "verb", "wairþai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌽𐌰𐌽", "verb", "𐍅𐌴𐌹𐌷𐌽𐌰", "𐍅𐌴𐌹𐌷𐌽𐍉𐌳𐌰", "", "", "to become hallowed"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌽𐌰𐌹", "verb", "weihnai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌹", "verb", "briggai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌹𐍃", "verb", "briggais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌿", "verb", "briggau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌾𐌰𐌽", "verb", "𐌻𐌰𐌿𐍃𐌾𐌰", "𐌻𐌰𐌿𐍃𐌹𐌳𐌰", "𐌻𐌰𐌿𐍃𐌹𐌸𐍃", "", "to make loose"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌴𐌹", "verb", "lausei", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰", "verb", "wairþa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "verb", "wairþis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌹𐌸", "verb", "wairþiþ", "", "", "", "inflection of 𐍅𐌰𐌹𐍂𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌼", "verb", "wairþam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐌳", "verb", "wairþand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌿", "verb", "wairþau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌹𐌼𐌰", "verb", "wairþaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌹𐌸", "verb", "wairþaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌹𐌽𐌰", "verb", "wairþaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌸", "verb", "warþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐍃𐍄", "verb", "warst", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌹", "verb", "waurþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌴𐌹𐌼𐌰", "verb", "waurþeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌴𐌹𐌽𐌰", "verb", "waurþeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌿𐌼", "verb", "waurþum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌿𐌸", "verb", "waurþuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌿𐌽", "verb", "waurþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐌳𐍃", "verb", "wairþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍃", "verb", "waurþans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐌰", "verb", "waurþana", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐌰𐌼𐌼𐌰", "verb", "waurþanamma", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐌰𐌹", "verb", "waurþanai", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐌰𐌽𐌰", "verb", "waurþanana", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐌰𐌼", "verb", "waurþanam", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍉", "verb", "waurþanō", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍉𐌽𐍃", "verb", "waurþanōns", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍉𐌽", "verb", "waurþanōn", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽𐍉𐌽𐌰", "verb", "waurþanōna", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌸𐌰𐌽", "verb", "waurþan", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽", "verb", "𐍄𐌰𐌿𐌾𐌰", "𐍄𐌰𐍅𐌹𐌳𐌰", "𐍄𐌰𐍅𐌹𐌸𐍃", "", "do make"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌹𐍃", "verb", "taujais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌽", "verb", "𐌷𐌰𐌿𐍂𐌽𐌾𐌰", "𐌷𐌰𐌿𐍂𐌽𐌹𐌳𐌰", "𐌷𐌰𐌿𐍂𐌽𐌹𐌸𐍃", "", "to sound a"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌹𐍃", "verb", "haurnjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳", "verb", "taujand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄", "verb", "maht", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍀𐌰𐌳𐌰", "verb", "weipada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍀𐌰𐌽", "verb", "𐍅𐌴𐌹𐍀𐌰", "𐍅𐌰𐌹𐍀", "𐍅𐌹𐍀𐌰𐌽𐍃", "", "to wreathe crown"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌽", "verb", "𐌷𐌰𐌿𐌷𐌾𐌰", "𐌷𐌰𐌿𐌷𐌹𐌳𐌰", "𐌷𐌰𐌿𐌷𐌹𐌸𐍃", "", "to elevate lift"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "hauhjaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "hauhjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹", "verb", "hauhei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌴𐌹𐌸", "verb", "hauheiþ", "", "", "", "inflection of 𐌷𐌰𐌿𐌷𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰", "verb", "hauhja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌹", "verb", "hauhjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌹𐌸", "verb", "hauhjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌹𐌽𐌰", "verb", "hauhjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐌳𐌰", "verb", "hauhida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "hauhidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐌸𐍃", "verb", "hauhiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌾𐌰𐌽𐌳𐍃", "verb", "hauhjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍄𐌿𐌻𐌲𐌾𐌰𐌽", "verb", "𐍄𐌿𐌻𐌲𐌾𐌰", "𐍄𐌿𐌻𐌲𐌹𐌳𐌰", "𐍄𐌿𐌻𐌲𐌹𐌸𐍃", "", "to reinforce establish"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌽", "verb", "𐌻𐌰𐌹𐍃𐌾𐌰", "𐌻𐌰𐌹𐍃𐌹𐌳𐌰", "𐌻𐌰𐌹𐍃𐌹𐌸𐍃", "", "to teach according"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌽", "verb", "𐍃𐍉𐌺𐌾𐌰", "𐍃𐍉𐌺𐌹𐌳𐌰", "𐍃𐍉𐌺𐌹𐌸𐍃", "", "to seek look"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸𐍉", "verb", "liuþō", "", "", "", "inflection of 𐌻𐌹𐌿𐌸𐍉𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌸𐍉𐌽", "verb", "𐌻𐌹𐌿𐌸𐍉", "𐌻𐌹𐌿𐌸𐍉𐌳𐌰", "𐌻𐌹𐌿𐌸𐍉𐌸𐍃", "", "to sing"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌴𐌹𐍂𐌾𐌰𐌽", "verb", "𐌲𐌰𐍃𐌺𐌴𐌹𐍂𐌾𐌰", "𐌲𐌰𐍃𐌺𐌴𐌹𐍂𐌹𐌳𐌰", "𐌲𐌰𐍃𐌺𐌴𐌹𐍂𐌹𐌸𐍃", "", "to interpret explain"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌾𐌰𐌽", "verb", "𐌽𐌴𐍈𐌾𐌰", "𐌽𐌴𐍈𐌹𐌳𐌰", "𐌽𐌴𐍈𐌹𐌸𐍃", "", "to approach"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌾𐌰𐌽𐌳𐍃", "verb", "nēƕjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "nēƕjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍀𐌻𐌹𐌽𐍃𐌾𐌰𐌽", "verb", "𐍀𐌻𐌹𐌽𐍃𐌾𐌰", "𐍀𐌻𐌹𐌽𐍃𐌹𐌳𐌰", "𐍀𐌻𐌹𐌽𐍃𐌹𐌸𐍃", "", "to dance"]) + let v = native_list_append(v, ["𐍀𐌻𐌹𐌽𐍃𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "plinsidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍀𐌻𐌹𐌽𐍃𐌾𐌰𐌽𐌳𐍃", "verb", "plinsjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍀𐌻𐌹𐌽𐍃𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "plinsjandein", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐌽𐍉𐌽", "verb", "𐌵𐌰𐌹𐌽𐍉", "𐌵𐌰𐌹𐌽𐍉𐌳𐌰", "𐌵𐌰𐌹𐌽𐍉𐌸𐍃", "", "to cry wail"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐌽𐍉𐌳𐌴𐌳𐌿𐌸", "verb", "qainōdēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐌽𐍉", "verb", "qainō", "", "", "", "inflection of 𐌵𐌰𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐌽𐍉𐌽𐌳𐍃", "verb", "qainōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐌽𐍉𐌽𐌳𐌰𐌼", "verb", "qainōndam", "", "", "", "dative plural masculine"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌰𐌽", "verb", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌾𐌰", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐌳𐌰", "𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐌸𐍃", "", "to preach the"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌰𐌲𐌲𐌴𐌻𐌹𐌳𐌰", "verb", "aiwaggēlida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍀𐍉𐌽", "verb", "𐌺𐌰𐌿𐍀𐍉", "𐌺𐌰𐌿𐍀𐍉𐌳𐌰", "𐌺𐌰𐌿𐍀𐍉𐌸𐍃", "", "to trade barter"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍀𐍉𐌸", "verb", "kaupōþ", "", "", "", "inflection of 𐌺𐌰𐌿𐍀𐍉𐌽"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐌾𐌰𐌽", "verb", "𐍅𐍂𐌰𐌺𐌾𐌰", "𐍅𐍂𐌰𐌺𐌹𐌳𐌰", "𐍅𐍂𐌰𐌺𐌹𐌸𐍃", "", "to persecute"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "wrakjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌽", "verb", "𐍅𐌹𐌽𐌽𐌰", "𐍅𐌰𐌽𐌽", "𐍅𐌿𐌽𐌽𐌰𐌽𐍃", "", "to suffer"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "winnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "winnandans", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌽𐌳𐌰𐌼", "verb", "winnandam", "", "", "", "dative plural masculine"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "winnandōna", "", "", "", "nominative plural neuter"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰", "verb", "winna", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌹", "verb", "winnai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌹𐌽𐌰", "verb", "winnaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌽𐌳", "verb", "winnand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐌽𐌽𐌰𐌼", "verb", "winnam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌿𐌽𐌽𐌿𐌸", "verb", "wunnuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌽𐌴𐌼𐌿𐌼", "verb", "andnēmum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐍂𐌾𐌰𐌽", "verb", "arjan", "", "", "", "to plough to"]) + let v = native_list_append(v, ["𐌰𐍂𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "arjandan", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["𐌰𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "arjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌾𐌰𐌽", "verb", "𐌽𐌰𐍃𐌾𐌰", "𐌽𐌰𐍃𐌹𐌳𐌰", "𐌽𐌰𐍃𐌹𐌸𐍃", "", "to save"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐍃", "verb", "nasjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌴𐌹", "verb", "nasei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌽𐌰𐍃𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "nasjandins", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰", "verb", "swēra", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌽", "verb", "𐍃𐍅𐌴𐍂𐌰", "𐍃𐍅𐌴𐍂𐌰𐌹𐌳𐌰", "𐍃𐍅𐌴𐍂𐌰𐌹𐌸𐍃", "", "to honour"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌹", "verb", "swērai", "", "", "", "inflection of 𐍃𐍅𐌴𐍂𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌹𐌸", "verb", "swēraiþ", "", "", "", "inflection of 𐍃𐍅𐌴𐍂𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌽𐌳", "verb", "swērand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌹𐌽𐌰", "verb", "swēraina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌰", "verb", "leika", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳", "verb", "fijand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "fijandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳", "verb", "frijōnd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "verb", "frawaurhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽", "verb", "𐌼𐌹𐍄𐍉", "𐌼𐌹𐍄𐍉𐌳𐌰", "𐌼𐌹𐍄𐍉𐌸𐍃", "", "to fathom deliberate"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉", "verb", "mitō", "", "", "", "inflection of 𐌼𐌹𐍄𐍉𐌽"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌸", "verb", "mitōþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐌳", "verb", "mitōnd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌳𐌰", "verb", "mitōda", "", "", "", "inflection of 𐌼𐌹𐍄𐍉𐌽"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌳𐌴𐌳𐌿𐌸", "verb", "mitōdēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "mitōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐌳𐍃", "verb", "mitōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "mitōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌸", "verb", "frōþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "hugjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "hugjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "hugjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "hugjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍆𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fastāndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌴𐌹𐌸", "verb", "wōpeiþ", "", "", "", "inflection of 𐍅𐍉𐍀𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌹𐌳𐌰", "verb", "wōpida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "wōpidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌹𐌸𐍃", "verb", "balwiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐍅𐌾𐌰𐌹𐍃", "verb", "balwjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐌴𐌹", "verb", "bleiþei", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌰", "verb", "galaubida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌴𐍃", "verb", "galaubidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "galaubidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "galaubidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "galaubidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰", "verb", "galaubja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐍃", "verb", "galaubeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌸", "verb", "galaubeiþ", "", "", "", "inflection of 𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌼", "verb", "galaubjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳", "verb", "galaubjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌿", "verb", "galaubjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌹", "verb", "galaubjai", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌹𐌼𐌰", "verb", "galaubjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌹𐌸", "verb", "galaubjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌹𐌽𐌰", "verb", "galaubjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌴𐌳𐌹", "verb", "galaubidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "galaubidēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹", "verb", "galaubei", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐍃", "verb", "galaubjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐌸𐍃", "verb", "galaubiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "galaubjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "galaubjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "galaubjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "galaubjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "galaubjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "galaubjandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌴𐌹𐍂𐌾𐌰𐌳𐌰", "verb", "gaskeirjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌴𐌹𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "gaskeirjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌹𐌳𐌰", "verb", "gōlida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌾𐌰", "verb", "gōlja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌴𐌹𐌸", "verb", "gōleiþ", "", "", "", "inflection of 𐌲𐍉𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌾𐌰𐌽𐌳", "verb", "gōljand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐍉𐌻𐌾𐌰𐌹𐌸", "verb", "gōljaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽", "verb", "𐍆𐍂𐌹𐌾𐍉", "𐍆𐍂𐌹𐌾𐍉𐌳𐌰", "𐍆𐍂𐌹𐌾𐍉𐌸𐍃", "", "to love"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌳𐌰", "verb", "frijōda", "𐍆𐍂𐌹𐍉𐌳𐌰", "", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐍃", "verb", "frijōs", "", "", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉", "verb", "frijō", "", "", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌸", "verb", "frijōþ", "𐍆𐍂𐌹𐍉𐌸", "𐍆𐍂𐌹𐌾𐍉𐌳", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌳𐌴𐍃", "verb", "frijōdēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌳𐌴𐌳𐌿𐌸", "verb", "frijōdēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "frijōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌳𐌴𐌳𐌹", "verb", "frijōdēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "frijōdēdeiþ", "𐍆𐍂𐌹𐍉𐌳𐌴𐌳𐌴𐌹𐌸", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "frijōndans", "𐍆𐍂𐌹𐍉𐌽𐌳𐌰𐌽𐍃", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌹𐌽𐍃", "verb", "frijōndins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌰𐌽", "verb", "frijōndan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐌴𐌹𐌸", "verb", "daileiþ", "", "", "", "inflection of 𐌳𐌰𐌹𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌻𐌾𐌰𐌽𐌳𐍃", "verb", "dailjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "dragkidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺𐌴𐌹", "verb", "dragkei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌲𐌺𐌹𐌳𐌰𐌹", "verb", "dragkidai", "", "", "", "inflection of 𐌳𐍂𐌰𐌲𐌺𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌾𐌰", "verb", "dōmja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌴𐌹𐌸", "verb", "dōmeiþ", "", "", "", "inflection of 𐌳𐍉𐌼𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "dōmidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "dōmjaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌾𐌰𐌽𐌳𐍃", "verb", "dōmjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐍉𐌼𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "dōmjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌽𐌳𐍃", "verb", "haurnjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍂𐌽𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "haurnjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌹𐌳𐌰", "verb", "laisida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐍃", "verb", "laiseis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌸", "verb", "laiseiþ", "", "", "", "inflection of 𐌻𐌰𐌹𐍃𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌹", "verb", "laisjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌹𐌽𐌰", "verb", "laisjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹", "verb", "laisei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌽𐌳𐍃", "verb", "laisjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌽𐌳", "verb", "laisjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "laisjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "laisjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "laisjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌴𐌹𐌸", "verb", "lauseiþ", "", "", "", "inflection of 𐌻𐌰𐌿𐍃𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌾𐌰𐌹𐌸", "verb", "lausjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌾𐌰𐌳𐌰𐌿", "verb", "lausjadau", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐍃", "verb", "lausjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌾𐌰", "verb", "mēlja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌴𐌹", "verb", "mēlei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌾𐌰𐌹𐌼𐌰", "verb", "mēljaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌾𐌰𐌼", "verb", "mēljam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌹𐌳𐌰", "verb", "mēlida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌴𐌹𐌸", "verb", "mēleiþ", "", "", "", "inflection of 𐌼𐌴𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌴𐌻𐌾𐌰𐌽𐌳𐍃", "verb", "mēljands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌴𐌹𐌸", "verb", "rōdeiþ", "", "", "", "inflection of 𐍂𐍉𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰", "verb", "rōdja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌴𐌹𐍃", "verb", "rōdeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳", "verb", "rōdjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌼", "verb", "rōdjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐌰", "verb", "rōdida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "rōdidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "rōdidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐌴𐌳𐌾𐌰𐌿", "verb", "rōdidēdjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐌴𐌳𐌹", "verb", "rōdidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌹", "verb", "rōdjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌹𐌸", "verb", "rōdjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌴𐌹", "verb", "rōdei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌳𐌰", "verb", "rōdjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "rōdjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "rōdjandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "rōdjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "rōdjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "rōdjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "rōdjandeins", "", "", "", "inflection of 𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌴𐌹𐌸", "verb", "sōkeiþ", "", "", "", "inflection of 𐍃𐍉𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰", "verb", "sōkja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌽𐌳", "verb", "sōkjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌹", "verb", "sōkjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌴𐌹", "verb", "sōkei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌹𐌳𐌰", "verb", "sōkida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "sōkidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "sōkidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "sōkidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "sōkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "sōkjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "sōkjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "sōkjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌹𐌸", "verb", "taujiþ", "", "", "", "inflection of 𐍄𐌰𐌿𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰", "verb", "tauja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌹𐍃", "verb", "taujis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌿", "verb", "taujau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌹", "verb", "taujai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌹𐌼𐌰", "verb", "taujaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌹𐌸", "verb", "taujaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌹𐌽𐌰", "verb", "taujaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌴𐌹", "verb", "tawei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐍄𐍃", "verb", "taujats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌹𐌳𐌰", "verb", "tawida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "tawidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "tawidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "tawidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌹𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "tawidēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐍃", "verb", "taujands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "taujandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "taujandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "taujandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "taujandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "taujandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "taujandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "fairweitidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "fairweitjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fairweitjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "fairweitjandeins", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "fairweitjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍅𐌴𐌹𐍄𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "fairweitjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌻𐌴𐌺𐌹𐌽𐍉𐌸", "verb", "lēkinōþ", "", "", "", "inflection of 𐌻𐌴𐌺𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐍉𐌽𐌳𐍃", "verb", "raginōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍂𐌰𐌲𐌹𐌽𐍉𐌽𐌳𐌹𐌽", "verb", "raginōndin", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌸", "verb", "gahabaiþ", "", "", "", "inflection of 𐌲𐌰𐌷𐌰𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "verb", "gahabaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌽𐌳", "verb", "gahaband", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "gahabaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌽𐌰", "verb", "gahabaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌽𐌳𐍃", "verb", "gahabands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gahabandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌷𐌰𐌱𐌰𐌽", "verb", "𐌿𐌽𐌲𐌰𐌷𐌰𐌱𐌰", "𐌿𐌽𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌿𐌽𐌲𐌰𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to be incontinent"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌷𐌰𐌱𐌰𐌽𐌳𐍃", "verb", "ungahabands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "ungahabandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌰𐌷𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "gaþahaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌰𐌷𐌰𐌹𐌳𐌴𐌳𐌹", "verb", "gaþahaidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌸", "verb", "dishabaiþ", "", "", "", "inflection of 𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "verb", "dishabaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "verb", "dishabaiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌳𐌰𐌹", "verb", "dishabaidai", "", "", "", "inflection of 𐌳𐌹𐍃𐌷𐌰𐌱𐌰𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌹𐌳𐌰", "verb", "þahaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "þahaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌹𐌳𐌴𐌳𐌹", "verb", "þahaidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌹", "verb", "þahai", "", "", "", "inflection of 𐌸𐌰𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐌰𐌽𐌳𐍃", "verb", "þahānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌽", "verb", "𐌿𐌽𐍃𐍅𐌴𐍂𐌰", "𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹𐌳𐌰", "𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹𐌸𐍃", "", "to dishonour denigrate"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹𐌸", "verb", "unswēraiþ", "", "", "", "inflection of 𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌽𐌳𐍃", "verb", "unswērānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌹𐌳𐌰𐌿", "verb", "swēraidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "unswērandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌿𐌺𐌽𐌰𐌹", "verb", "biauknai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌽𐌰𐌹𐌸", "verb", "fullnaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌽𐌰𐌽𐌳𐍃", "verb", "fullnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐌰𐌽", "verb", "𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐌰", "𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐍉𐌳𐌰", "", "", "to become full"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐍉𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "usfullnōdēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐍉𐌳𐌴𐌳𐌹", "verb", "usfullnōdēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐍉𐌳𐌰", "verb", "usfullnōda", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "usfullnōdēdun", "𐌿𐍃𐍆𐌿𐌻𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌽𐌰𐌿", "verb", "usfullnau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌾𐌰𐌽", "verb", "𐍆𐌿𐌻𐌻𐌾𐌰", "𐍆𐌿𐌻𐌻𐌹𐌳𐌰", "𐍆𐌿𐌻𐌻𐌹𐌸𐍃", "", "to fill"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌾𐌰𐌹", "verb", "fulljai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌾𐌰𐌽𐌳𐍃", "verb", "fulljands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐌰𐌽", "verb", "𐌸𐌴𐌹𐌷𐌰", "𐌸𐌰𐌹𐌷", "𐌸𐌰𐌹𐌷𐌰𐌽𐍃", "", "to prosper"]) + let v = native_list_append(v, ["𐌺𐌿𐌺𐌾𐌰𐌽", "verb", "𐌺𐌿𐌺𐌾𐌰", "𐌺𐌿𐌺𐌹𐌳𐌰", "𐌺𐌿𐌺𐌹𐌸𐍃", "", "to kiss"]) + let v = native_list_append(v, ["𐌺𐌿𐌺𐌹𐌳𐌰", "verb", "kukida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌺𐌿𐌺𐌹𐌳𐌴𐍃", "verb", "kukidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌺𐌿𐌺𐌾𐌰𐌿", "verb", "kukjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐌰𐌽𐌳", "verb", "þeihand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐌰𐌹𐍃", "verb", "þeihais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐌰𐌽𐌳𐍃", "verb", "þeihands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐌰𐌽𐌳𐍉", "verb", "þeihandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌷𐌰𐌽𐌳𐌴𐌹", "verb", "þeihandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌽𐌹𐍃𐍄", "verb", "nist", "", "", "", "isnt contraction of"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐍆", "verb", "bilaif", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐍄𐌰𐌿𐌷", "verb", "bitauh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌽𐌳𐍃", "verb", "tiuhands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌽𐌳𐌴𐌹", "verb", "tiuhandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "tiuhandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌽𐌳𐌰", "verb", "tiuhanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌹𐌸", "verb", "tiuhiþ", "", "", "", "inflection of 𐍄𐌹𐌿𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌽𐌳", "verb", "tiuhand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌷𐌿𐌽", "verb", "tauhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌹𐌿𐌷𐌰𐌹𐌸", "verb", "tiuhaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌷𐌰𐌽𐍃", "verb", "tauhans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌹𐌸", "verb", "drigkiþ", "", "", "", "inflection of 𐌳𐍂𐌹𐌲𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰", "verb", "drigka", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌼", "verb", "drigkam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌽𐌳", "verb", "drigkand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌿𐌽", "verb", "drugkun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌿", "verb", "drigkau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌹𐍃", "verb", "drigkais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌹", "verb", "drigkai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌹𐌸", "verb", "drigkaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌹𐌽𐌰", "verb", "drigkaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌽𐌳𐍃", "verb", "drigkands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "drigkandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐍃", "verb", "drugkans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌰𐌹", "verb", "drugkanai", "", "", "", "inflection of 𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌹𐌸", "verb", "urrinniþ", "", "", "", "inflection of 𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌰𐌽𐌽", "verb", "urrann", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌿𐌽𐌽𐌿𐌸", "verb", "urrunnuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌿𐌽𐌽𐌿𐌽", "verb", "urrunnun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌹", "verb", "urrinnai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "urrinnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "urrinnandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌹𐌽", "verb", "urrinnandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍉", "verb", "urrinnandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰", "verb", "rinna", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍂𐌰𐌽𐌽", "verb", "rann", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌽𐌳", "verb", "rinnand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍂𐌿𐌽𐌽𐌿𐌸", "verb", "runnuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌿", "verb", "rinnau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍂𐌿𐌽𐌽𐌾𐌰𐌿", "verb", "runnjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌹𐌸", "verb", "rinnaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "rinnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "rinnandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "rinnandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐍂", "verb", "gabar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌰𐌳𐌰", "verb", "gabairada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌰𐌹𐌳𐌰𐌿", "verb", "gabairaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌹𐍃", "verb", "gabairis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌰𐌼", "verb", "gabairam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌰𐌽𐌳", "verb", "gabairand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "verb", "gabaurans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐌰𐌹", "verb", "gabauranai", "", "", "", "inflection of 𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐌰", "verb", "gabaurana", "", "", "", "inflection of 𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌰𐌽𐌰𐌼𐌼𐌰", "verb", "gabauranamma", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌽𐌰𐌼", "verb", "nam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌽𐌰𐌼𐍄", "verb", "namt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌽𐌴𐌼𐌿𐌼", "verb", "nēmum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌽𐌴𐌼𐌿𐌸", "verb", "nēmuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌽𐌴𐌼𐌿𐌽", "verb", "nēmun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌽𐌴𐌼𐌴𐌹𐍃", "verb", "nēmeis", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌽𐌴𐌼𐌹", "verb", "nēmi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌽𐌴𐌼𐌴𐌹𐌽𐌰", "verb", "nēmeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌹𐌽𐌰", "verb", "nimaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌹𐌸", "verb", "nimaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌹", "verb", "nimai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌿", "verb", "nimau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌹𐍃", "verb", "nimis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌽𐌳", "verb", "nimand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼", "verb", "nim", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌹𐌸", "verb", "nimiþ", "", "", "", "inflection of 𐌽𐌹𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌽𐌳𐍃", "verb", "nimands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "nimandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌽𐌳𐌴𐌹", "verb", "nimandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌽𐌹𐌼𐌰𐌽𐌳𐌹𐌽", "verb", "nimandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰", "verb", "bidja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌹𐍃", "verb", "bidjis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌹𐌸", "verb", "bidjiþ", "", "", "", "inflection of 𐌱𐌹𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐍉𐍃", "verb", "bidjōs", "", "", "", "first-person dual present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐍄𐍃", "verb", "bidjats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌼", "verb", "bidjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳", "verb", "bidjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌹𐍃", "verb", "bidjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌹", "verb", "bidjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌹𐌸", "verb", "bidjaiþ", "𐌱𐌹𐌳𐌾𐌰𐌹𐌳", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌴𐌹", "verb", "bidei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌳", "verb", "bad", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌴𐌳𐌿𐌸", "verb", "bēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌱𐌴𐌳𐌿𐌽", "verb", "bēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌴𐌳𐌴𐌹𐌼𐌰", "verb", "bēdeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "bidjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bidjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "bidjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "bidjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "bidjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐌳𐍃", "verb", "atgibands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌹𐌱𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "atgibandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰", "verb", "bigita", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌹𐌸", "verb", "bigitiþ", "", "", "", "inflection of 𐌱𐌹𐌲𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐍄𐍃", "verb", "bigitats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌿", "verb", "bigitau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌹𐌼𐌰", "verb", "bigitaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌰𐍄", "verb", "bigat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌰𐍃𐍄", "verb", "bigast", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌴𐍄𐌿𐌽", "verb", "bigētun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌴𐍄𐌹", "verb", "bigēti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌴𐍄𐌴𐌹𐌽𐌰", "verb", "bigēteina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "bigitaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌹𐌳𐌰𐌿", "verb", "bigitaidau", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌳𐌰", "verb", "bigitanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "bigitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bigitandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "bigitandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌳𐌴𐌹", "verb", "bigitandei", "", "", "", "nominative/accusative feminine singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐍃", "verb", "bigitans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌰𐌹", "verb", "bigitanai", "", "", "", "inflection of 𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐌰", "verb", "bigitana", "", "", "", "inflection of 𐌱𐌹𐌲𐌹𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐍈", "verb", "insaƕ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌹𐍈𐌹𐌸", "verb", "insaiƕiþ", "", "", "", "inflection of 𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "insaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "insaiƕandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "insaiƕandeins", "", "", "", "inflection of 𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌴𐌹", "verb", "insaiƕandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐍈", "verb", "ussaƕ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌹𐍈𐌰𐌽𐌳", "verb", "ussaiƕand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌹𐍈𐌰𐌿", "verb", "ussaiƕau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌴𐍈𐌹", "verb", "ussēƕi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌹𐍈", "verb", "ussaiƕ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "ussaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "ussaiƕandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌰", "verb", "fraihna", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌹𐍃", "verb", "fraihnis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌹𐌸", "verb", "fraihniþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌹𐌷𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌰𐌹", "verb", "fraihnai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽", "verb", "fraihn", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌷", "verb", "frah", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌴𐌷𐌿𐌽", "verb", "frēhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌰𐌽𐌳𐍃", "verb", "fraihnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌽𐌰𐌽𐌳𐌰𐌽", "verb", "fraihnandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌹𐌷𐌰𐌽𐍃", "verb", "fraihans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐍆𐌰𐌽𐍃", "verb", "hafans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐍃", "verb", "qiþans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌹𐍃", "verb", "qiþanis", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐌰𐌽𐌰", "verb", "qiþanana", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐍉", "verb", "qiþanō", "", "", "", "inflection of 𐌵𐌹𐌸𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌰𐌽𐍉𐌽𐌰", "verb", "qiþanōna", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐍆𐌰𐌽𐌰𐌽𐌰", "verb", "hafanana", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌱𐌰𐌹𐌳𐌰𐌿", "verb", "skabaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌹𐌸", "verb", "standiþ", "", "", "", "inflection of 𐍃𐍄𐌰𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳", "verb", "standand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌹𐌸", "verb", "standaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳", "verb", "stand", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌸", "verb", "stōþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐍄𐍉𐌸𐌿𐌽", "verb", "stōþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "standands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "standandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "standandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "standandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌴𐌹", "verb", "standandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌺𐌰𐌳𐌰", "verb", "bilaikada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌺𐌰𐌽𐌳", "verb", "bilaikand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌻𐌰𐌹𐌺𐌿𐌽", "verb", "bilailaikun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌺𐌰𐌽𐌳𐍃", "verb", "bilaikands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "andhaitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andhaitandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌺𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bilaikandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌹𐌸", "verb", "bimaitiþ", "", "", "", "inflection of 𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌹", "verb", "bimaitai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐍃", "verb", "bimaitans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐌰𐌹", "verb", "bimaitanai", "", "", "", "inflection of 𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐌰𐌹𐌶𐌴", "verb", "bimaitanaizē", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐌻𐌰𐌽𐌳𐌰𐌹𐌸", "verb", "blandaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌰𐌽𐌳", "verb", "blōtand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌰𐌽𐌳𐍃", "verb", "blōtands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌰𐌽𐌳𐌴𐌹", "verb", "blōtandei", "𐌱𐌻𐍉𐍄𐌰𐌽𐌳𐌴", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐍄𐌰𐌽𐌳𐌴", "verb", "blōtandē", "", "", "", "misspelling of 𐌱𐌻𐍉𐍄𐌰𐌽𐌳𐌴𐌹"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄𐌹𐌸", "verb", "grētiþ", "𐌲𐍂𐌴𐌹𐍄𐌹𐌸", "", "", "inflection of 𐌲𐍂𐌴𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄", "verb", "grēt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌲𐍂𐍉𐍄", "verb", "gaigrōt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌲𐍂𐍉𐍄𐌿𐌸", "verb", "gaigrōtuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌲𐍂𐍉𐍄𐌿𐌽", "verb", "gaigrōtun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄𐌰𐌽𐌳𐍃", "verb", "grētands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "grētandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐍄𐌰𐌽𐌳𐌰𐌼", "verb", "grētandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍄𐌴𐌺𐌰𐌽𐌳𐍃", "verb", "tēkands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍄𐌴𐌺𐌹𐌸", "verb", "tēkiþ", "", "", "", "inflection of 𐍄𐌴𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐍄𐍉𐌺", "verb", "taitōk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌽", "verb", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌳𐌰", "𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌸𐍃", "", "to wage war"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌽𐌳𐍃", "verb", "drauhtinōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌸", "verb", "drauhtinōþ", "", "", "", "inflection of 𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐌷𐍄𐌹𐌽𐍉𐌼", "verb", "drauhtinōm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌰𐌽", "verb", "𐌰𐌹𐌷", "𐌰𐌹𐌷𐍄𐌰", "𐌰𐌹𐌷𐍄𐍃", "", "to possess own"]) + let v = native_list_append(v, ["𐌰𐌹𐌷", "verb", "aih", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌿𐌼", "verb", "aigum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌿𐌽", "verb", "aigun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐌰", "verb", "aihta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "aihtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐌴𐌳𐌴𐌹𐍃", "verb", "aihtēdeis", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌹", "verb", "aigi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌴𐌹𐌸", "verb", "aigeiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌴𐌹𐌽𐌰", "verb", "aigeina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌰𐌽𐌳𐍃", "verb", "aigands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐌰𐌽𐌳𐍃", "verb", "aihands", "no-table-tags", "got-decl-adj-pp", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "aihandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌹𐌲𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "aigandeins", "", "", "", "inflection of 𐌰𐌹𐌲𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐍆", "verb", "þarf", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐍆𐍄", "verb", "þarft", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐌰", "verb", "þaurfta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌿𐌼", "verb", "þaurbum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌿𐌸", "verb", "þaurbuþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌿𐌽", "verb", "þaurbun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌴𐌹𐌼𐌰", "verb", "þaurbeima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌴𐌹𐌸", "verb", "þaurbeiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌰𐌽𐌳𐍃", "verb", "þaurbands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌱𐌰𐌽𐌳𐌹𐌽", "verb", "þaurbandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐍃", "verb", "þaurfts", "𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐌶𐌰", "no-table-tags", "", "past participle of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐌰𐌹", "verb", "þaurftai", "", "", "", "inflection of 𐌸𐌰𐌿𐍂𐍆𐍄𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐍃", "verb", "þaurftōs", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌺𐌰𐌽𐌽", "verb", "kann", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌺𐌰𐌽𐌽𐍄", "verb", "kannt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌰", "verb", "kunþa", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌴𐍃", "verb", "kunþēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌿𐌼", "verb", "kunnum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌴𐌳𐌿𐌼", "verb", "kunþēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌿𐌸", "verb", "kunnuþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌿𐌽", "verb", "kunnun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌴𐌳𐌿𐌽", "verb", "kunþēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌾𐌰𐌿", "verb", "kunnjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌴𐌹𐍃", "verb", "kunneis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌴𐌹𐌽𐌰", "verb", "kunneina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌴𐌹𐌸", "verb", "kunneiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌴𐌳𐌴𐌹𐌸", "verb", "kunþēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "kunnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "kunnandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "kunnandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌼", "verb", "kunnandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐍃", "verb", "kunþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐌰𐌼", "verb", "kunþam", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸", "verb", "kunþ", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌺𐌿𐌽𐌸𐍉𐍃", "verb", "kunþōs", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌰", "verb", "mahta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌰𐌲", "verb", "mag", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿", "verb", "magu", "", "", "", "first-person dual present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐌼", "verb", "magum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐌸", "verb", "maguþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌿𐌽", "verb", "magun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌳𐌿𐌼", "verb", "mahtēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "mahtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌾𐌰𐌿", "verb", "magjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌴𐌹𐍃", "verb", "mageis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌹", "verb", "magi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌳𐌹", "verb", "mahtēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌴𐌹𐌼𐌰", "verb", "mageima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌴𐌹𐌸", "verb", "mageiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "mahtēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌽𐌳𐍃", "verb", "magands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌽𐌳𐌰𐌽", "verb", "magandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "magandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌰𐌽", "verb", "man", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌳𐌰", "verb", "munda", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌳𐌴𐌳𐌿𐌽", "verb", "mundēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌹", "verb", "muni", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌰𐌽𐌳𐍃", "verb", "munands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌰𐌽𐌳𐌹𐌽", "verb", "munandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "munandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "munandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌼𐌿𐌽𐌳𐍃", "verb", "munds", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻", "verb", "skal", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐌰", "verb", "skulda", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐍄", "verb", "skalt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌿𐌼", "verb", "skulum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌿𐌸", "verb", "skuluþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌿𐌽", "verb", "skulun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐌴𐌳𐌿𐌽", "verb", "skuldēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐌴𐌳𐌿𐌼", "verb", "skuldēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌾𐌰𐌿", "verb", "skuljau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌹", "verb", "skuli", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐌴𐌳𐌹", "verb", "skuldēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌴𐌹𐌸", "verb", "skuleiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "skuldēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐍃", "verb", "skulds", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳", "verb", "skuld", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐌰𐌹", "verb", "skuldai", "", "", "", "inflection of 𐍃𐌺𐌿𐌻𐌳𐍃"]) + let v = native_list_append(v, ["𐍃𐌺𐌿𐌻𐌳𐍉", "verb", "skuldō", "", "", "", "inflection of 𐍃𐌺𐌿𐌻𐌳𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍄", "verb", "wait", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌰", "verb", "wissa", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍃𐍄", "verb", "waist", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐍄𐍃", "verb", "wituts", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐌼", "verb", "witum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐌸", "verb", "wituþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌿𐌽", "verb", "witun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌴𐌳𐌿𐌸", "verb", "wissēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌴𐌳𐌿𐌽", "verb", "wissēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌾𐌰𐌿", "verb", "witjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌴𐌹𐍃", "verb", "witeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌹", "verb", "witi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌴𐌹𐌸", "verb", "witeiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "wissēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌴𐌳𐌹", "verb", "wissēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌴𐌳𐌴𐌹𐍃", "verb", "wissēdeis", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐍃𐌴𐌳𐌾𐌰𐌿", "verb", "wissēdjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "witands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "witandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌽𐌳𐌴𐌹", "verb", "witandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐌰𐌽", "verb", "aihan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌳𐌰", "verb", "wilda", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌳𐌴𐌳𐌿𐌼", "verb", "wildēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌳𐌴𐌳𐌿𐌸", "verb", "wildēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌳𐌴𐌳𐌿𐌽", "verb", "wildēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌿", "verb", "wiljau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌴𐌹𐍃", "verb", "wileis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌹", "verb", "wili", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌳𐌴𐌳𐌹", "verb", "wildēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌴𐌹𐍄𐍃", "verb", "wileits", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌴𐌹𐌼𐌰", "verb", "wileima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌴𐌹𐌸", "verb", "wileiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "wildēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌴𐌹𐌽𐌰", "verb", "wileina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐌳𐍃", "verb", "wiljands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wiljandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "wiljandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "wiljandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "wiljandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "wiljandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌸𐌾𐌰", "verb", "fraþja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌰", "𐌰𐌽𐌰𐌽𐌹𐍅𐌹𐌳𐌰", "𐌰𐌽𐌰𐌽𐌹𐍅𐌹𐌸𐍃", "", "to renew"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌹𐌿𐌾𐌰𐌳𐌰", "verb", "ananiujada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐍃", "verb", "fairinōs", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌹𐌽𐍉", "verb", "fairinō", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐌺𐌹𐌿𐍃𐌰𐌽", "verb", "𐌺𐌹𐌿𐍃𐌰", "𐌺𐌰𐌿𐍃", "𐌺𐌿𐍃𐌰𐌽𐍃", "", "to prove test"]) + let v = native_list_append(v, ["𐌺𐌹𐌿𐍃𐌰𐌹", "verb", "kiusai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌺𐌹𐌿𐍃𐌰𐌽𐌳𐍃", "verb", "kiusands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉", "verb", "idreigō", "", "", "", "inflection of 𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌲𐌰", "verb", "liuga", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌹𐍃", "verb", "slahis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌽", "verb", "𐍅𐍂𐌹𐌺𐌰", "𐍅𐍂𐌰𐌺", "𐍅𐍂𐌹𐌺𐌰𐌽𐍃", "", "to persecute"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌺", "verb", "wrak", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌳𐌰", "verb", "wrikada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐍂𐌴𐌺𐌿𐌽", "verb", "wrēkun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌽𐌳", "verb", "wrikand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌽𐍃", "verb", "wrikans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌽𐌰𐌹", "verb", "wrikanai", "", "", "", "inflection of 𐍅𐍂𐌹𐌺𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌽𐌳𐍃", "verb", "wrikands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐍂𐌹𐌺𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wrikandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌾𐌰𐌽", "verb", "𐌸𐌿𐌲𐌺𐌾𐌰", "𐌸𐌿𐌷𐍄𐌰", "𐌸𐌿𐌷𐍄𐍃", "", "to seem appear"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌴𐌹𐌸", "verb", "þugkeiþ", "𐌸𐌿𐌲𐌲𐌺𐌴𐌹𐌸", "", "", "inflection of 𐌸𐌿𐌲𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌲𐌺𐌴𐌹𐌸", "verb", "þuggkeiþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌿𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "þuhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌸𐌿𐌷𐍄𐌰", "verb", "þuhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌾𐌰𐌹𐌼𐌰", "verb", "þugkjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌸𐌿𐌷𐍄𐌴𐌳𐌹", "verb", "þuhtēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "þugkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌲𐌺𐌾𐌰𐌽𐌳", "verb", "þuggkjand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌾𐌰𐌽𐌳", "verb", "þugkjand", "𐌸𐌿𐌲𐌲𐌺𐌾𐌰𐌽𐌳", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "þugkjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌿𐌲𐌺𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "þugkjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰", "𐌿𐍃𐍃𐍄𐍉𐌸", "𐌿𐍃𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to arise stand"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳", "verb", "usstandand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌹𐌸", "verb", "usstandiþ", "𐌿𐍃𐍄𐌰𐌽𐌳𐌹𐌸", "", "", "inflection of 𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐍉𐌸", "verb", "usstōþ", "𐌿𐍃𐍄𐍉𐌸", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐍉𐌸𐌹", "verb", "usstōþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "usstandands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌴𐌹", "verb", "usstandandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "usstandandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌼", "verb", "usstandandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌰𐍄𐍃𐍄𐌰𐌽𐌳𐌰", "𐌰𐍄𐍃𐍄𐍉𐌸", "𐌰𐍄𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to stand halt"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐍉𐌸𐌿𐌽", "verb", "atstōþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "atstandands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌴𐌹", "verb", "atstandandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "atstandandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "atstandandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐌽𐌳𐌰", "𐍄𐍅𐌹𐍃𐍃𐍄𐍉𐌸", "𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to leave depart"]) + let v = native_list_append(v, ["𐍄𐍅𐌹𐍃𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "twisstandands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍄𐍅𐌹𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "twistandands", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌹𐌽𐍃𐍄𐌰𐌽𐌳𐌰", "𐌹𐌽𐍃𐍄𐍉𐌸", "𐌹𐌽𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to be imminent"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐍄𐌰𐌽𐌳𐌰𐌹", "verb", "instandai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐍄𐌰𐌽𐌳", "verb", "instand", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌱𐌹𐍃𐍄𐌰𐌽𐌳𐌰", "𐌱𐌹𐍃𐍄𐍉𐌸", "𐌱𐌹𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to surround"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳", "verb", "bistandand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "bistandands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "bistandandeins", "", "", "", "inflection of 𐌱𐌹𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌰𐍃𐍄𐌰𐌽𐌳𐌰", "𐍆𐌰𐌿𐍂𐌰𐍃𐍄𐍉𐌸", "𐍆𐌰𐌿𐍂𐌰𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to stand near"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "faurastandands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳𐌰𐌼", "verb", "faurastandandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "𐌲𐌰𐍃𐍄𐌰𐌽𐌳𐌰", "𐌲𐌰𐍃𐍄𐍉𐌸", "𐌲𐌰𐍃𐍄𐌰𐌸𐌰𐌽𐍃", "", "to stop halt"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍉𐍃𐍄", "verb", "gastōst", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍉𐌸", "verb", "gastōþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍉𐌸𐌿𐌸", "verb", "gastōþuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍉𐌸𐌿𐌽", "verb", "gastōþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽𐌳", "verb", "gastandand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌽𐌳𐌹𐌸", "verb", "gastandiþ", "", "", "", "inflection of 𐌲𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌽𐌳𐌰𐌹", "verb", "gastandai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌾𐌰𐌽", "verb", "𐌰𐌲𐌻𐌾𐌰", "𐌰𐌲𐌻𐌹𐌳𐌰", "𐌰𐌲𐌻𐌹𐌸𐍃", "", "to hurt injure"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌾𐌰𐌹", "verb", "agljai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐌰𐌲𐌻𐌾𐌰𐌹", "verb", "usagljai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐌰𐌲𐌻𐌾𐌰𐌽", "verb", "𐌿𐍃𐌰𐌲𐌻𐌾𐌰", "𐌿𐍃𐌰𐌲𐌻𐌹𐌳𐌰", "𐌿𐍃𐌰𐌲𐌻𐌹𐌸𐍃", "", "to exhaust weary"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌵𐌰𐌽", "verb", "𐍃𐌹𐌲𐌵𐌰", "𐍃𐌰𐌲𐌵", "𐍃𐌿𐌲𐌵𐌰𐌽𐍃", "", "to sink descend"]) + let v = native_list_append(v, ["𐍃𐌰𐌲𐌵", "verb", "sagq", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌿𐌲𐌵𐌿𐌽", "verb", "sugqun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌰𐌽", "verb", "𐍅𐌰𐌻𐌳𐌰", "𐍅𐌰𐌹𐍅𐌰𐌻𐌳", "𐍅𐌰𐌻𐌳𐌰𐌽𐍃", "", "to rule"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌳𐌰𐌹𐌸", "verb", "waldaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌽", "verb", "𐍆𐍂𐌰𐌲𐌹𐌱𐌰", "𐍆𐍂𐌰𐌲𐌰𐍆", "𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌽𐍃", "", "to forgive"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌰𐍆", "verb", "fragaf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌹𐍃", "verb", "fragibis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌹𐌳𐌰𐌿", "verb", "fragibaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌹𐌸", "verb", "fragibiþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐍆", "verb", "fragif", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌽𐌳𐍃", "verb", "fragibands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌽𐌳𐌰𐌽", "verb", "fragibandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌲𐌹𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fragibandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌶𐌾𐌰𐌽", "verb", "𐌼𐌰𐍂𐌶𐌾𐌰", "𐌼𐌰𐍂𐌶𐌹𐌳𐌰", "𐌼𐌰𐍂𐌶𐌹𐌸𐍃", "", "to impede hamper"]) + let v = native_list_append(v, ["𐌼𐌰𐍂𐌶𐌾𐌰𐌹", "verb", "marzjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌲𐍅𐌰𐌽", "verb", "𐍃𐌹𐌲𐌲𐍅𐌰", "𐍃𐌰𐌲𐌲𐍅", "𐍃𐌿𐌲𐌲𐍅𐌰𐌽𐍃", "", "to sing"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌲𐍅𐌰𐌳𐌰", "verb", "siggwada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌲𐍅𐌰𐌽𐌳𐍃", "verb", "siggwands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌹𐌲𐌲𐍅𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "siggwandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐍄𐌾𐌰𐌽", "verb", "𐌻𐌹𐌿𐌷𐍄𐌾𐌰", "𐌻𐌹𐌿𐌷𐍄𐌹𐌳𐌰", "𐌻𐌹𐌿𐌷𐍄𐌹𐌸𐍃", "", "to give light"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐍄𐌹𐌳𐌰", "verb", "liuhtida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐍄𐌾𐌰𐌹", "verb", "liuhtjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐌴𐌹𐌸", "verb", "liuteiþ", "", "", "", "inflection of 𐌻𐌹𐌿𐌷𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "liuhtjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐍄𐌾𐌰𐌽𐌳𐍉", "verb", "liuhtjandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌽𐌳𐌰𐌽", "verb", "𐌱𐌹𐌽𐌳𐌰", "𐌱𐌰𐌽𐌳", "𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "", "to bind"]) + let v = native_list_append(v, ["𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "verb", "bundans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌱𐌹𐌽𐌳𐌰𐌽", "verb", "𐌱𐌹𐌱𐌹𐌽𐌳𐌰", "𐌱𐌹𐌱𐌰𐌽𐌳", "𐌱𐌹𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "", "to bind up"]) + let v = native_list_append(v, ["𐌱𐌹𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "verb", "bibundans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐌰𐌽", "verb", "𐌲𐌰𐌱𐌹𐌽𐌳𐌰", "𐌲𐌰𐌱𐌰𐌽𐌳", "𐌲𐌰𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "", "to bind bind"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐌹𐌸", "verb", "gabindiþ", "", "", "", "inflection of 𐌲𐌰𐌱𐌹𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌽𐌳", "verb", "gaband", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "verb", "gabundans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌿𐌽𐌳𐌰𐌽𐌰", "verb", "gabundana", "", "", "", "inflection of 𐌲𐌰𐌱𐌿𐌽𐌳𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌿𐌽𐌳𐌰𐌽𐌰𐌽𐌰", "verb", "gabundanana", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌿𐌽𐌳𐌰𐌽", "verb", "gabundan", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "gabindands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gabindandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌽𐌰𐌽", "verb", "𐌲𐌰𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌽𐌰", "𐌲𐌰𐍆𐍂𐌹𐍃𐌰𐌷𐍄𐌽𐍉𐌳𐌰", "", "", "to be depicted"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌹", "verb", "wisai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌼", "verb", "wisam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰", "verb", "wisa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌹𐌸", "verb", "wisaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌹𐍃𐌰𐌹𐍃", "verb", "wisais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐍂𐌲𐌾𐌰𐌽", "verb", "𐌲𐌰𐍅𐌰𐍂𐌲𐌾𐌰", "𐌲𐌰𐍅𐌰𐍂𐌲𐌹𐌳𐌰", "𐌲𐌰𐍅𐌰𐍂𐌲𐌹𐌸𐍃", "", "to condemn"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐍂𐌲𐌹𐌳𐌰", "verb", "gawargida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐍂𐌲𐌾𐌰𐌽𐌳", "verb", "gawargjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽", "verb", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌰", "𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌸𐍃", "", "to console comfort"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌰", "verb", "gaþrafstida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽𐌳𐌰", "verb", "gaþrafstjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌹", "verb", "gaþrafstjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "gaþrafstidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "gaþrafstidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌸𐍃", "verb", "gaþrafstiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌰𐌹", "verb", "gaþrafstidai", "", "", "", "inflection of 𐌲𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽", "verb", "𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰", "𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌰", "𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌸𐍃", "", "to console comfort"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹𐌸", "verb", "þrafsteiþ", "", "", "", "inflection of 𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "þrafstidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹", "verb", "þrafstei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "þrafstjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "þrafstjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌹𐌸", "verb", "þrafstjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌷𐌾𐌰𐌽", "verb", "𐌰𐌷𐌾𐌰", "𐌰𐌷𐌹𐌳𐌰", "𐌰𐌷𐌹𐌸𐍃", "", "to think assume"]) + let v = native_list_append(v, ["𐌰𐌷𐌾𐌰𐌹𐌸", "verb", "ahjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍂𐍉𐌽", "verb", "𐌰𐌹𐌷𐍄𐍂𐍉", "𐌰𐌹𐌷𐍄𐍂𐍉𐌳𐌰", "𐌰𐌹𐌷𐍄𐍂𐍉𐌸𐍃", "", "to pray request"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌳𐍃", "verb", "aihtrōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐍄𐍂𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "aihtrōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽", "verb", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌳𐌰", "𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌸𐍃", "", "to reconcile pacify"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌳𐌴𐌳𐌹", "verb", "gafriþōdēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌳𐍃", "verb", "gafriþōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌽𐌳𐌹𐌽", "verb", "gafriþōndin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌸𐍃", "verb", "gafriþōþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌳𐌰𐌹", "verb", "gafriþōdai", "", "", "", "inflection of 𐌲𐌰𐍆𐍂𐌹𐌸𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽", "verb", "𐌻𐌰𐌸𐍉", "𐌻𐌰𐌸𐍉𐌳𐌰", "𐌻𐌰𐌸𐍉𐌸𐍃", "", "to call invite"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌳𐌰", "verb", "laþōda", "", "", "", "inflection of 𐌻𐌰𐌸𐍉𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉", "verb", "laþō", "", "", "", "inflection of 𐌻𐌰𐌸𐍉𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽𐌳𐍃", "verb", "laþōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽𐌳𐌹𐌽𐍃", "verb", "laþōndins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌽𐌳𐌹𐌽", "verb", "laþōndin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌸𐍃", "verb", "laþōþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐍉𐌳𐌰𐌹", "verb", "laþōdai", "", "", "", "inflection of 𐌻𐌰𐌸𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉𐌽", "verb", "𐍃𐌰𐌻𐌱𐍉", "𐍃𐌰𐌻𐌱𐍉𐌳𐌰", "𐍃𐌰𐌻𐌱𐍉𐌸𐍃", "", "to anoint"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉𐌳𐌰", "verb", "salbōda", "", "", "", "inflection of 𐍃𐌰𐌻𐌱𐍉𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉𐌳𐌴𐍃", "verb", "salbōdēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉", "verb", "salbō", "", "", "", "inflection of 𐍃𐌰𐌻𐌱𐍉𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐌻𐌱𐍉𐌽𐌳𐍃", "verb", "salbōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐍉𐌽", "verb", "𐍃𐌿𐌽𐌾𐍉", "𐍃𐌿𐌽𐌾𐍉𐌳𐌰", "𐍃𐌿𐌽𐌾𐍉𐌸𐍃", "", "to vindicate defend"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐍉𐌼𐌰", "verb", "sunjōma", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐍄𐌾𐌰𐌽", "verb", "𐍅𐌰𐌻𐍄𐌾𐌰", "𐍅𐌰𐌻𐍄𐌹𐌳𐌰", "𐍅𐌰𐌻𐍄𐌹𐌸𐍃", "", "to roll thrash"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "waltidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌰𐌽", "verb", "𐍃𐌻𐌰𐌷𐌰", "𐍃𐌻𐍉𐌷", "𐍃𐌻𐌰𐌷𐌰𐌽𐍃", "", "to hit strike"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌹𐌸", "verb", "slahiþ", "", "", "", "inflection of 𐍃𐌻𐌰𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌻𐍉𐌷", "verb", "slōh", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌻𐍉𐌷𐌿𐌽", "verb", "slōhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌰𐌽𐌳𐍃", "verb", "slahands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌷𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "slahandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌷𐌾𐌰𐌽", "verb", "𐌷𐌻𐌰𐌷𐌾𐌰", "𐌷𐌻𐍉𐌷", "𐌷𐌻𐌰𐌷𐌰𐌽𐍃", "", "to laugh"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌷𐌾𐌰𐌽𐌳𐍃", "verb", "hlahjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐌷𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "hlahjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌷𐌻𐌰𐌷𐌾𐌰𐌽", "verb", "𐌱𐌹𐌷𐌻𐌰𐌷𐌾𐌰", "𐌱𐌹𐌷𐌻𐍉𐌷", "𐌱𐌹𐌷𐌻𐌰𐌷𐌰𐌽𐍃", "", "to laugh at"]) + let v = native_list_append(v, ["𐌱𐌹𐌷𐌻𐍉𐌷𐌿𐌽", "verb", "bihlōhun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌴𐌹", "verb", "bairhtei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰𐌽", "verb", "𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰", "𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌳𐌰", "𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌸𐍃", "", "to make clear"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰𐌽", "verb", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌳𐌰", "𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌸𐍃", "", "to show disclose"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌳𐌰", "verb", "gabairhtida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰", "verb", "gabairhtja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰𐌿", "verb", "gabairhtjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "gabairhtjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌸𐍃", "verb", "gabairhtiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌳𐌰𐌹", "verb", "gabairhtidai", "", "", "", "inflection of 𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "gabairhtjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌹𐍂𐌷𐍄𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "gabairhtjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌾𐌰𐌽", "verb", "𐌱𐌰𐌽𐌳𐍅𐌾𐌰", "𐌱𐌰𐌽𐌳𐍅𐌹𐌳𐌰", "𐌱𐌰𐌽𐌳𐍅𐌹𐌸𐍃", "", "to signify show"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌹𐌳𐌰", "verb", "bandwida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌾𐌰", "verb", "bandwja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌴𐌹𐌸", "verb", "bandweiþ", "", "", "", "inflection of 𐌱𐌰𐌽𐌳𐍅𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "bandwidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌾𐌰𐌽𐌳𐍃", "verb", "bandwjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "bandwjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌹𐌸𐍃", "verb", "bandwiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽", "verb", "𐌹𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉", "𐌹𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌳𐌰", "𐌹𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌸𐍃", "", "to live as"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐌽𐌰𐌽", "verb", "𐍃𐌺𐌴𐌹𐌽𐌰", "𐍃𐌺𐌰𐌹𐌽", "𐍃𐌺𐌹𐌽𐌰𐌽𐍃", "", "to shine"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐌽𐌹𐌸", "verb", "skeiniþ", "", "", "", "inflection of 𐍃𐌺𐌴𐌹𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐌽𐌰𐌽𐌳𐍃", "verb", "skeinands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐌽𐌰𐌽𐌳𐌴𐌹", "verb", "skeinandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌽𐌹𐌼𐌰𐌽", "verb", "𐌼𐌹𐌸𐌽𐌹𐌼𐌰", "𐌼𐌹𐌸𐌽𐌰𐌼", "𐌼𐌹𐌸𐌽𐌿𐌼𐌰𐌽𐍃", "", "to receive"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌹𐌲𐌲𐍅𐌰𐌽", "verb", "𐌿𐍃𐍃𐌹𐌲𐌲𐍅𐌰", "𐌿𐍃𐍃𐌰𐌲𐌲𐍅", "𐌿𐍃𐍃𐌿𐌲𐌲𐍅𐌰𐌽𐍃", "", "to read aloud"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌹𐌲𐌲𐍅𐌹𐍃", "verb", "ussiggwis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌹𐌲𐌲𐍅𐌰𐌹𐌳𐌰𐌿", "verb", "ussiggwaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌿𐌲𐌲𐍅𐌿𐌸", "verb", "ussuggwuþ", "𐌿𐍃𐍃𐌿𐌲𐌲𐍅𐌿𐌳", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰", "verb", "timrja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌾𐌰𐌽", "verb", "𐌷𐌰𐌿𐌽𐌾𐌰", "𐌷𐌰𐌿𐌽𐌹𐌳𐌰", "𐌷𐌰𐌿𐌽𐌹𐌸𐍃", "", "to make humble"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐌾𐌰𐌽𐌳𐍃", "verb", "haunjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽", "verb", "𐌷𐌰𐌿𐍃𐌾𐌰", "𐌷𐌰𐌿𐍃𐌹𐌳𐌰", "𐌷𐌰𐌿𐍃𐌹𐌸𐍃", "", "to hear listen"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰", "verb", "hausja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹𐍃", "verb", "hauseis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌹𐌳𐌰", "verb", "hausida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐍃", "verb", "hausidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "hausidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "hausidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "hausidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌼", "verb", "hausjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳", "verb", "hausjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹𐌸", "verb", "hauseiþ", "", "", "", "inflection of 𐌷𐌰𐌿𐍃𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌴𐌹", "verb", "hausei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌹𐌸", "verb", "hausjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌹𐌽𐌰", "verb", "hausjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌹", "verb", "hausjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐍃", "verb", "hausjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "hausjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "hausjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "hausjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "hausjandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰𐌽", "verb", "𐌷𐌰𐌶𐌾𐌰", "𐌷𐌰𐌶𐌹𐌳𐌰", "𐌷𐌰𐌶𐌹𐌸𐍃", "", "to praise"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰", "verb", "hazja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌹𐌳𐌰", "verb", "hazida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "hazidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰𐌹𐌽𐌰", "verb", "hazjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰𐌿", "verb", "hazjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌹𐌸", "verb", "hazjiþ", "", "", "", "inflection of 𐌷𐌰𐌶𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰𐌽𐌳𐍃", "verb", "hazjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "hazjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌰𐌶𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "hazjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌾𐌰𐌽", "verb", "𐌷𐌽𐌰𐌹𐍅𐌾𐌰", "𐌷𐌽𐌰𐌹𐍅𐌹𐌳𐌰", "𐌷𐌽𐌰𐌹𐍅𐌹𐌸𐍃", "", "to lower"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌴𐌹𐌸", "verb", "hnaiweiþ", "", "", "", "inflection of 𐌷𐌽𐌰𐌹𐍅𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌹𐌸𐍃", "verb", "hnaiwiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌹𐌳𐌰𐌹𐌼", "verb", "hnaiwidaim", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌽", "verb", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰", "𐌷𐍂𐌰𐌹𐌽𐌹𐌳𐌰", "𐌷𐍂𐌰𐌹𐌽𐌹𐌸𐍃", "", "to cleanse purify"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌾𐌰𐌽", "verb", "𐌹𐌽𐌼𐌰𐌹𐌳𐌾𐌰", "𐌹𐌽𐌼𐌰𐌹𐌳𐌹𐌳𐌰", "𐌹𐌽𐌼𐌰𐌹𐌳𐌹𐌸𐍃", "", "to transform change"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌹𐌳𐌰", "verb", "inmaidida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌾𐌰𐌽𐌳𐌰", "verb", "inmaidjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹𐌸", "verb", "inmaideiþ", "", "", "", "inflection of 𐌹𐌽𐌼𐌰𐌹𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌾𐌰𐌹𐌸", "verb", "inmaidjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌹𐌽𐌼𐌰𐌹𐌳𐌹𐌸𐍃", "verb", "inmaidiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌽", "verb", "𐌼𐌴𐍂𐌾𐌰", "𐌼𐌴𐍂𐌹𐌳𐌰", "𐌼𐌴𐍂𐌹𐌸𐍃", "", "to proclaim"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "mērjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "mērjandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌴𐌹𐌸", "verb", "mēreiþ", "", "", "", "inflection of 𐌼𐌴𐍂𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌳𐌰", "verb", "mērjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌹𐌳𐌰", "verb", "mērida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰", "verb", "mērja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌼", "verb", "mērjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌽𐌳", "verb", "mērjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "mēridēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "mēridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌴𐌹", "verb", "mērei", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌹𐌸𐍃", "verb", "mēriþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌹", "verb", "galeikai", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌽", "verb", "𐌲𐌰𐌻𐌴𐌹𐌺𐍉", "𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌳𐌰", "𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌸𐍃", "", "to compare"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉", "verb", "galeikō", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌽", "verb", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌳𐌰", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌸𐍃", "", "to please"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌼", "verb", "galeikōm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌸", "verb", "galeikōþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌳𐌰", "verb", "galeikōda", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌽𐌳𐍃", "verb", "galeikōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌽𐌳𐌰𐌽", "verb", "galeikōndan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "galeikōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽", "verb", "𐌼𐌰𐍄𐌾𐌰", "𐌼𐌰𐍄𐌹𐌳𐌰", "𐌼𐌰𐍄𐌹𐌸𐍃", "", "to eat have"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌳𐌰", "verb", "matida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰", "verb", "matja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "matidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "matidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "matidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌳𐌴𐌳𐌹", "verb", "matidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "matidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌹", "verb", "matjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌹𐍃", "verb", "matjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌿", "verb", "matjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌹𐌽𐌰", "verb", "matjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽𐌳", "verb", "matjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌹𐌸", "verb", "matjiþ", "", "", "", "inflection of 𐌼𐌰𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌼", "verb", "matjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌹𐌸", "verb", "matjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "matjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "matjandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "matjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "matjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌼𐌰𐍄𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "matjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌰𐌷𐍄𐌴𐌳𐌴𐌳𐌿𐌽", "verb", "andbahtēdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽", "verb", "𐌻𐌹𐌲𐌰", "𐌻𐌰𐌲", "𐌻𐌹𐌲𐌰𐌽𐍃", "", "to lie down"]) + let v = native_list_append(v, ["𐌻𐌰𐌲", "verb", "lag", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌹𐌸", "verb", "ligiþ", "", "", "", "inflection of 𐌻𐌹𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽𐌳𐍃", "verb", "ligands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽𐌳𐌴𐌹", "verb", "ligandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "ligandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽𐌳𐍉", "verb", "ligandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽𐌳𐌰𐌽", "verb", "ligandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌲𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "ligandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐍃𐌰𐌽𐌳𐌾𐌰", "𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "", "to send"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌾𐌰", "verb", "sandja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "sandida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "sandidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌴𐌹𐌸", "verb", "sandeiþ", "", "", "", "inflection of 𐍃𐌰𐌽𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "sandjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "sandjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "sandjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐌰𐌽", "verb", "sandjandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍃𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍃𐌰𐌽𐌳𐌾𐌰", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "", "to send forth"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "fauragasandida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐌲𐌰𐍃𐌰𐌽𐌳𐌾𐌰", "𐌲𐌰𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "𐌲𐌰𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "", "to send along"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐌽𐌳𐌾𐌰𐌹𐌸", "verb", "gasandjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰", "𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "", "to send away"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "insandida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌴𐍃", "verb", "insandidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "insandidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "insandidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "insandidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐌰", "verb", "insandjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰", "verb", "insandja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌴𐌳𐌹", "verb", "insandidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌴𐌹", "verb", "insandei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌴𐌹𐌸", "verb", "insandeiþ", "", "", "", "inflection of 𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "insandjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "verb", "insandiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌰𐌽𐍃", "verb", "insandidans", "", "", "", "inflection of 𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐌼𐌹𐌸𐌹𐌽𐍃𐌰𐌽𐌳𐌾𐌰", "𐌼𐌹𐌸𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "𐌼𐌹𐌸𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "", "to send someone"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌹𐌽𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "miþinsandida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐌿𐍃𐍃𐌰𐌽𐌳𐌾𐌰", "𐌿𐍃𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "𐌿𐍃𐍃𐌰𐌽𐌳𐌹𐌸𐍃", "", "to send out"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "ussandida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐌽𐌳𐌾𐌰𐌹", "verb", "ussandjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌽", "verb", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌹𐌳𐌰", "𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌹𐌸𐍃", "", "to blaspheme slander"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌴𐌹𐌸", "verb", "wajamēreiþ", "", "", "", "inflection of 𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳", "verb", "wajamērjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌿", "verb", "mērjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌴𐍂𐌾𐌰𐌹𐌸", "verb", "mērjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌿", "verb", "wajamērjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "wajamērjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "wajamēridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "wajamērjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌾𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wajamērjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰𐌽", "verb", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌹𐌳𐌰", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌹𐌸𐍃", "", "to evangelize preach"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌹𐌳𐌰", "verb", "wailamērida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰𐌳𐌰", "verb", "wailamērjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌰", "verb", "wailamērjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "wailamērjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wailamērjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "wailamērjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌹𐍄𐌹𐌸", "verb", "greitiþ", "", "", "", "inflection of 𐌲𐍂𐌴𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽", "verb", "𐌻𐌰𐌹𐍃𐍄𐌾𐌰", "𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰", "𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃", "", "to follow pursue"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰", "verb", "laistja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰", "verb", "laistida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌴𐌹𐍃", "verb", "laisteis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "laistidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "laistidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌴𐌹𐌸", "verb", "laisteiþ", "", "", "", "inflection of 𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳", "verb", "laistjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌴𐌹", "verb", "laistei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌹𐍃", "verb", "laistjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌹", "verb", "laistjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌹𐌼𐌰", "verb", "laistjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌹𐌸", "verb", "laistjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "laistjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "laistjandeins", "", "", "", "inflection of 𐌻𐌰𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽", "verb", "𐍆𐌹𐌾𐌰", "𐍆𐌹𐌾𐌰𐌹𐌳𐌰", "𐍆𐌹𐌾𐌰𐌹𐌸𐍃", "", "to hate"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌹𐌸", "verb", "fijaiþ", "𐍆𐌹𐌰𐌹𐌸", "𐍆𐌹𐌾𐌰𐌹𐌳", "", "inflection of 𐍆𐌹𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰", "verb", "fija", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌹𐌳𐌰", "verb", "fijaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "fijaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌹", "verb", "fijai", "", "", "", "inflection of 𐍆𐌹𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fijandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐌹𐌰𐌹𐍃", "verb", "fiais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐌹𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fiandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍉𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "friōdēdeiþ", "𐍆𐍂𐌹𐌾𐍉𐌳𐌴𐌳𐌴𐌹𐌸", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍉𐌸", "verb", "friōþ", "𐍆𐍂𐌹𐌾𐍉𐌸", "", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍉𐌳𐌰", "verb", "friōda", "𐍆𐍂𐌹𐌾𐍉𐌳𐌰", "", "", "inflection of 𐍆𐍂𐌹𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "friōndans", "𐍆𐍂𐌹𐌾𐍉𐌽𐌳𐌰𐌽𐍃", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐌹𐌰𐌹𐌸", "verb", "fiaiþ", "", "", "", "inflection of 𐍆𐌹𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐌿𐌸", "verb", "aihuþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐌷𐌿𐌼", "verb", "aihum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌾𐌰𐌽", "verb", "𐌸𐌹𐌿𐌸𐌾𐌰", "𐌸𐌹𐌿𐌸𐌹𐌳𐌰", "𐌸𐌹𐌿𐌸𐌹𐌸𐍃", "", "to bless"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌾𐌰𐌹𐌸", "verb", "þiuþjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌹𐌳𐌰", "verb", "þiuþida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌹𐌸𐍃", "verb", "þiuþiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌾𐌰𐌽𐌳𐍃", "verb", "þiuþjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌹𐌳𐍉", "verb", "þiuþidō", "", "", "", "inflection of 𐌸𐌹𐌿𐌸𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐍀𐌰𐌽", "verb", "𐌷𐌹𐌻𐍀𐌰", "𐌷𐌰𐌻𐍀", "𐌷𐌿𐌻𐍀𐌰𐌽𐍃", "", "to help"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐍀", "verb", "hilp", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐍀𐌰𐌽𐌳𐍃", "verb", "hilpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌹𐌻𐍀𐌰𐌽𐌳𐌰𐌼", "verb", "hilpandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌹𐌻𐍀𐌰𐌽", "verb", "𐌲𐌰𐌷𐌹𐌻𐍀𐌰", "𐌲𐌰𐌷𐌰𐌻𐍀", "𐌲𐌰𐌷𐌿𐌻𐍀𐌰𐌽𐍃", "", "to help"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌻𐍀", "verb", "gahalp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽", "verb", "𐌻𐌹𐌱𐌰", "𐌻𐌹𐌱𐌰𐌹𐌳𐌰", "𐌻𐌹𐌱𐌰𐌹𐌸𐍃", "", "to live"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳𐌰", "verb", "libanda", "", "", "", "weak nominative masculine"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳𐍃", "verb", "libands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "libandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳𐌹𐌽", "verb", "libandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "libandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳𐌴𐌹", "verb", "libandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌸", "verb", "libaiþ", "𐌻𐌹𐌱𐌰𐌹𐌳", "", "", "inflection of 𐌻𐌹𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰", "verb", "liba", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐍃", "verb", "libais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌼", "verb", "libam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌽𐌳", "verb", "liband", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "libaidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌿", "verb", "libau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹", "verb", "libai", "", "", "", "inflection of 𐌻𐌹𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌼𐌰", "verb", "libaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌽𐌰", "verb", "libaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌻𐌹𐌱𐌰𐌹𐌳", "verb", "libaid", "𐌻𐌹𐌱𐌰𐌹𐌸", "", "", "inflection of 𐌻𐌹𐌱𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌻𐌹𐌱𐌰𐌽", "verb", "𐌼𐌹𐌸𐌻𐌹𐌱𐌰", "𐌼𐌹𐌸𐌻𐌹𐌱𐌰𐌹𐌳𐌰", "𐌼𐌹𐌸𐌻𐌹𐌱𐌰𐌹𐌸𐍃", "", "to live with"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌻𐌹𐌱𐌰𐌼", "verb", "miþlibam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽", "verb", "𐍃𐌹𐍄𐌰", "𐍃𐌰𐍄", "𐍃𐌹𐍄𐌰𐌽𐍃", "", "to sit"]) + let v = native_list_append(v, ["𐍃𐌰𐍄", "verb", "sat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌴𐍄𐌿𐌽", "verb", "sētun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌹𐍅𐌰", "verb", "sitaiwa", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐍃𐌹𐍄", "verb", "sit", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "sitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽𐌳𐌰𐌽", "verb", "sitandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "sitandeins", "", "", "", "inflection of 𐍃𐌹𐍄𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽𐌳𐌹𐌽", "verb", "sitandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽𐌳𐌰𐌼", "verb", "sitandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "sitandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌹𐍄𐌰𐌽", "verb", "𐌲𐌰𐍃𐌹𐍄𐌰", "𐌲𐌰𐍃𐌰𐍄", "𐌲𐌰𐍃𐌹𐍄𐌰𐌽𐍃", "", "to sit down"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌰𐍄", "verb", "gasat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "gasitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌹𐍄𐌰𐌽", "verb", "𐌿𐍃𐍃𐌹𐍄𐌰", "𐌿𐍃𐍃𐌰𐍄", "𐌿𐍃𐍃𐌹𐍄𐌰𐌽𐍃", "", "to sit up"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌰𐍄", "verb", "ussat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌹𐍄𐌰𐌽", "verb", "𐌱𐌹𐍃𐌹𐍄𐌰", "𐌱𐌹𐍃𐌰𐍄", "𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐍃", "", "to neighbour live"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "bisitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌹𐍄𐌰𐌽𐌳𐌰𐌼", "verb", "bisitandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐍃𐌹𐍄𐌰𐌽", "verb", "𐌳𐌹𐍃𐍃𐌹𐍄𐌰", "𐌳𐌹𐍃𐍃𐌰𐍄", "𐌳𐌹𐍃𐍃𐌹𐍄𐌰𐌽𐍃", "", "to seize take"]) + let v = native_list_append(v, ["𐌳𐌹𐍃𐍃𐌰𐍄", "verb", "dissat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌹𐍄𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐌹𐍄𐌰", "𐌰𐌽𐌳𐍃𐌰𐍄", "𐌰𐌽𐌳𐍃𐌹𐍄𐌰𐌽𐍃", "", "to be disturbed"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌹𐍄𐌹𐌸", "verb", "andsitiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐍃𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌹𐍄𐌰𐌹𐌸", "verb", "andsitaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "andsitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andsitandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌾𐌰𐌽", "verb", "𐍅𐌰𐍂𐌾𐌰", "𐍅𐌰𐍂𐌹𐌳𐌰", "𐍅𐌰𐍂𐌹𐌸𐍃", "", "to forbid"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌾𐌹𐌸", "verb", "warjiþ", "", "", "", "inflection of 𐍅𐌰𐍂𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "waridēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "waridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌾𐌰𐌹𐍃", "verb", "warjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "warjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "warjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "warjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌾𐌰𐌽", "verb", "𐌲𐌰𐍃𐌺𐌰𐍀𐌾𐌰", "𐌲𐌰𐍃𐌺𐍉𐍀", "𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐍃", "", "to create"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐍉𐍀", "verb", "gaskōp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐍉𐍀𐌹", "verb", "gaskōpi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌾𐌰𐌽𐌳𐍃", "verb", "gaskapjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "gaskapjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐍃", "verb", "gaskapans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐌰", "verb", "gaskapana", "", "", "", "inflection of 𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐌹𐌽", "verb", "gaskapanin", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐌰𐌹", "verb", "gaskapanai", "", "", "", "inflection of 𐌲𐌰𐍃𐌺𐌰𐍀𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌻𐌴𐌹𐌸𐌰", "𐌻𐌰𐌹𐌸", "𐌻𐌹𐌸𐌰𐌽𐍃", "", "to go pass"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌲𐌰𐌻𐌴𐌹𐌸𐌰", "𐌲𐌰𐌻𐌰𐌹𐌸", "𐌲𐌰𐌻𐌹𐌸𐌰𐌽𐍃", "", "to depart go"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌹𐌸", "verb", "galeiþiþ", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌹𐍃", "verb", "galeiþis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰", "verb", "galeiþa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌹𐌸", "verb", "galaiþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐌸𐌿𐌽", "verb", "galiþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳", "verb", "galeiþand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌼", "verb", "galeiþam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐍉𐍃", "verb", "galeiþōs", "", "", "", "first-person dual present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌿", "verb", "galeiþau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌹𐍃", "verb", "galeiþais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌹𐌼𐌰", "verb", "galeiþaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌹𐌸", "verb", "galeiþaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌹𐌽𐌰", "verb", "galeiþaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐍃", "verb", "galeiþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐌴𐌹", "verb", "galeiþandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐌰𐌽", "verb", "galeiþandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "galeiþandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐌰𐌼", "verb", "galeiþandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌱𐌹𐌻𐌴𐌹𐌸𐌰", "𐌱𐌹𐌻𐌰𐌹𐌸", "𐌱𐌹𐌻𐌹𐌸𐌰𐌽𐍃", "", "to leave behind"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌸𐌰", "verb", "bileiþa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌸𐌹𐌸", "verb", "bileiþiþ", "", "", "", "inflection of 𐌱𐌹𐌻𐌴𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌸𐌰𐌹", "verb", "bileiþai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌹𐌸𐌹", "verb", "biliþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌹𐌸𐌿𐌽", "verb", "biliþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐍃𐍄", "verb", "bilaist", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌰𐌹𐌸", "verb", "bilaiþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌸𐌰𐌳𐌰", "verb", "bileiþada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐍃", "verb", "bileiþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌹𐌸𐌰𐌽𐍃", "verb", "biliþans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌻𐌹𐌸𐌰𐌽𐌰𐌹", "verb", "biliþanai", "", "", "", "inflection of 𐌱𐌹𐌻𐌹𐌸𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌷𐌹𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌸𐌰", "𐌷𐌹𐌽𐌳𐌰𐍂𐌻𐌰𐌹𐌸", "𐌷𐌹𐌽𐌳𐌰𐍂𐌻𐌹𐌸𐌰𐌽𐍃", "", "to pass by"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂𐌻𐌴𐌹𐌸", "verb", "hindarleiþ", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰", "𐌹𐌽𐌽𐌲𐌰𐌻𐌰𐌹𐌸", "𐌹𐌽𐌽𐌲𐌰𐌻𐌹𐌸𐌰𐌽𐍃", "", "to enter go"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌹𐌸", "verb", "inngaleiþiþ", "", "", "", "inflection of 𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳", "verb", "inngaleiþand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌹", "verb", "inngaleiþai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌰𐌹𐌸", "verb", "inngalaiþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐍃", "verb", "inngaleiþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "inngaleiþandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰𐌽", "verb", "𐌼𐌹𐌸𐌹𐌽𐌽𐌲𐌰𐌻𐌴𐌹𐌸𐌰", "𐌼𐌹𐌸𐌹𐌽𐌽𐌲𐌰𐌻𐌰𐌹𐌸", "𐌼𐌹𐌸𐌹𐌽𐌽𐌲𐌰𐌻𐌹𐌸𐌰𐌽𐍃", "", "to enter together"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌹𐌽𐌽𐌲𐌰𐌻𐌰𐌹𐌸", "verb", "miþinngalaiþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌽", "verb", "𐌰𐌻𐌰", "𐍉𐌻", "𐌰𐌻𐌰𐌽𐍃", "", "to grow be"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌽𐌳𐍃", "verb", "alands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌻𐌹𐌸𐍃", "verb", "aliþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌻𐌹𐌳𐌰𐌽", "verb", "alidan", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌽𐍉𐌼", "verb", "airinōm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌽𐍉𐌽", "verb", "𐌰𐌹𐍂𐌹𐌽𐍉", "𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐌰", "𐌰𐌹𐍂𐌹𐌽𐍉𐌸𐍃", "", "to be an"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌽𐍉", "verb", "airinō", "", "", "", "inflection of 𐌰𐌹𐍂𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐌹𐍃𐍄𐌰𐌽", "verb", "𐌰𐌹𐍃𐍄𐌰", "𐌰𐌹𐍃𐍄𐌰𐌹𐌳𐌰", "𐌰𐌹𐍃𐍄𐌰𐌹𐌸𐍃", "", "to have regard"]) + let v = native_list_append(v, ["𐌰𐌹𐍃𐍄𐌰𐌽𐌳𐍃", "verb", "aistānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌹𐍃𐍄𐌰", "verb", "aista", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌹𐍃𐍄𐌰𐌽𐌳", "verb", "aistānd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌹𐌿𐍃𐌰𐌽", "verb", "𐍆𐍂𐌰𐌻𐌹𐌿𐍃𐌰", "𐍆𐍂𐌰𐌻𐌰𐌿𐍃", "𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐍃", "", "to lose something"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌹𐌿𐍃𐌹𐌸", "verb", "fraliusiþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌻𐌹𐌿𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌰𐌿𐍃", "verb", "fralaus", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌹𐌿𐍃𐌰𐌽𐌳𐍃", "verb", "fraliusands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐍃", "verb", "fralusans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐍉", "verb", "fralusanō", "", "", "", "inflection of 𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐌹𐌽", "verb", "fralusanin", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐌰𐌽", "verb", "fralusanan", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐌰𐌽𐍃", "verb", "fralusanans", "", "", "", "inflection of 𐍆𐍂𐌰𐌻𐌿𐍃𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌽𐌰𐌽", "verb", "𐍆𐍂𐌰𐌻𐌿𐍃𐌽𐌰", "𐍆𐍂𐌰𐌻𐌿𐍃𐌽𐍉𐌳𐌰", "", "", "to become lost"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌽𐌰𐌽𐌳𐍃", "verb", "fralusnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌿𐍃𐌽𐌰𐌽𐌳𐌰𐌼", "verb", "fralusnandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌹𐌳𐌰", "verb", "weihaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌷", "verb", "waih", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐌷𐌰𐌽𐌳𐍉", "verb", "andwaihandō", "", "", "", "making war upon"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌸", "verb", "aiwiskōþ", "", "", "", "inflection of 𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽", "verb", "𐌰𐌹𐍅𐌹𐍃𐌺𐍉", "𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌳𐌰", "𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌸𐍃", "", "to behave in"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽", "verb", "𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉", "𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌳𐌰", "𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌸𐍃", "", "to disgrace dishonour"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌳𐌰", "verb", "gaaiwiskōda", "", "", "", "inflection of 𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽𐌳𐌰", "verb", "gaaiwiskōnda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "gaaiwiskōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽𐌳𐌰𐌿", "verb", "gaaiwiskōndau", "", "", "", "inflection of 𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌸", "verb", "gaaiwiskōþ", "", "", "", "inflection of 𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌸𐍃", "verb", "gaaiwiskōþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "brahtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌷𐍄𐌴𐌳𐌿𐌼", "verb", "brahtēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌷𐍄𐌰", "verb", "brahta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲", "verb", "brigg", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌹𐌸", "verb", "briggiþ", "", "", "", "inflection of 𐌱𐍂𐌹𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰", "verb", "brigga", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "briggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌽𐌳𐌰", "verb", "brigganda", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌽𐌳𐌰𐌽", "verb", "briggandan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌽𐌳𐌴𐌹", "verb", "briggandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌲𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "briggandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌽", "verb", "𐌱𐌿𐌲𐌾𐌰", "𐌱𐌰𐌿𐌷𐍄𐌰", "𐌱𐌰𐌿𐌷𐍄𐍃", "", "to buy purchase"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽", "verb", "𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "", "to work make"]) + let v = native_list_append(v, ["𐍃𐍄𐍂𐌰𐌿𐌾𐌰𐌽", "verb", "𐍃𐍄𐍂𐌰𐌿𐌾𐌰", "𐍃𐍄𐍂𐌰𐍅𐌹𐌳𐌰", "𐍃𐍄𐍂𐌰𐍅𐌹𐌸𐍃", "", "to strew"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌷𐍄𐌰", "verb", "bruhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌴𐌹𐌸", "verb", "brukeiþ", "", "", "", "inflection of 𐌱𐍂𐌿𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌾𐌰𐌼", "verb", "brukjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌾𐌰𐌹𐌼𐌰", "verb", "brukjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌾𐌰𐌹𐍃", "verb", "brukjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌴𐌹", "verb", "brukei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "brukjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "brūkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌷𐍄𐌰", "verb", "bauhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "bauhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌼", "verb", "bugjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌹𐌼𐌰", "verb", "bugjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌹𐌽𐌰", "verb", "bugjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐌰", "verb", "bugjanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌴𐌹", "verb", "bugei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "bugjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bugjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "verb", "waurhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "waurhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳", "verb", "waurkjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌼", "verb", "waurkjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌴𐌹𐍃", "verb", "waurkeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "verb", "waurkja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌳𐌰", "verb", "waurkjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌴𐌹𐌸", "verb", "waurkeiþ", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌹𐍃", "verb", "waurkjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌹𐌼𐌰", "verb", "waurkjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌹𐌸", "verb", "waurkjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌴𐌹", "verb", "waurkei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "waurkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "waurkjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "waurkjandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "waurkjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐍄𐍂𐌰𐍅𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "strawidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍆𐍃𐍄𐍂𐌰𐌿𐌾𐌰𐌽", "verb", "𐌿𐍆𐍃𐍄𐍂𐌰𐌿𐌾𐌰", "𐌿𐍆𐍃𐍄𐍂𐌰𐍅𐌹𐌳𐌰", "𐌿𐍆𐍃𐍄𐍂𐌰𐍅𐌹𐌸𐍃", "", "to strew or"]) + let v = native_list_append(v, ["𐌿𐍆𐍃𐍄𐍂𐌰𐍅𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "ufstrawidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐍄𐌰", "verb", "þāhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌸𐌰𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "þahtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌿", "verb", "þagkjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌹", "verb", "þagkjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "þagkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "þagkjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "þagkjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌲𐌺𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "þagkjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌰𐌲𐌺𐌾𐌰𐌽", "verb", "𐌱𐌹𐌸𐌰𐌲𐌺𐌾𐌰", "𐌱𐌹𐌸𐌰𐌷𐍄𐌰", "𐌱𐌹𐌸𐌰𐌷𐍄𐍃", "", "to bethink to"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌰𐌲𐌺𐌴𐌹𐌸", "verb", "biþagkeiþ", "", "", "", "inflection of 𐌱𐌹𐌸𐌰𐌲𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌾𐌰𐌽", "verb", "𐌷𐌰𐍄𐌾𐌰", "𐌷𐌰𐍄𐌹𐌳𐌰", "𐌷𐌰𐍄𐌹𐌸𐍃", "", "to hate"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌰𐌽", "verb", "𐌷𐌰𐍄𐌰", "𐌷𐌰𐍄𐌰𐌹𐌳𐌰", "𐌷𐌰𐍄𐌰𐌹𐌸𐍃", "", "to hate"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌰𐌽𐌳𐍃", "verb", "hatānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "hatāndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "hatāndanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "hatjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌷𐌰𐍄𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "hatjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌰𐍄𐌾𐌰𐌽", "verb", "𐌻𐌰𐌿𐌷𐌰𐍄𐌾𐌰", "𐌻𐌰𐌿𐌷𐌰𐍃𐍄𐌰", "𐌻𐌰𐌿𐌷𐌰𐍄𐌹𐌸𐍃", "", "to lighten flash"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌰𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "lauhatjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌷𐌰𐍄𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "lauhatjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐍆𐌰𐌽", "verb", "𐌷𐌻𐌹𐍆𐌰", "𐌷𐌻𐌰𐍆", "𐌷𐌻𐌹𐍆𐌰𐌽𐍃", "", "to steal"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐍆𐌰𐌽𐌳", "verb", "hlifand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐍆𐌰𐌹𐍃", "verb", "hlifais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌷𐌻𐌹𐍆𐌰𐌹", "verb", "hlifai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐍆𐌹", "verb", "hlēfi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌻𐌰𐌽", "verb", "𐍃𐍄𐌹𐌻𐌰", "𐍃𐍄𐌰𐌻", "𐍃𐍄𐌿𐌻𐌰𐌽𐍃", "", "to steal"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌻𐌰𐌽𐌳", "verb", "stiland", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐍄𐌹𐌻𐌰𐌹", "verb", "stilai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐌳𐍉𐍃", "verb", "aljaleikōdōs", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐌸𐍃", "verb", "aljaleikōþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐌽", "verb", "𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉", "𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐌳𐌰", "𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐌸𐍃", "", "to be differently"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽𐍉𐌽", "verb", "𐌰𐌻𐌾𐌰𐌽𐍉", "𐌰𐌻𐌾𐌰𐌽𐍉𐌳𐌰", "𐌰𐌻𐌾𐌰𐌽𐍉𐌸𐍃", "", "to be zealous"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽𐍉𐌽𐌳", "verb", "aljanōnd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽𐍉𐌸", "verb", "aljanōþ", "", "", "", "inflection of 𐌰𐌻𐌾𐌰𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽𐍉𐌽𐌳𐍃", "verb", "aljanōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌹", "verb", "gamainjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌽", "verb", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰", "𐌲𐌰𐌼𐌰𐌹𐌽𐌹𐌳𐌰", "𐌲𐌰𐌼𐌰𐌹𐌽𐌹𐌸𐍃", "", "to partake to"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌹𐌳𐌰", "verb", "gamainida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌴𐌹𐌸", "verb", "gamaineiþ", "", "", "", "inflection of 𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌹𐌸", "verb", "gamainjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌽𐌳𐍃", "verb", "gamainjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌽𐌳𐍉", "verb", "gamainjandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gamainjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌰𐌽", "verb", "𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌰", "𐌰𐌽𐌰𐌱𐌰𐌿𐌸", "𐌰𐌽𐌰𐌱𐌿𐌳𐌰𐌽𐍃", "", "to command instruct"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌰𐌿𐌸", "verb", "anabauþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌰𐌿𐌳", "verb", "anabaud", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌰", "verb", "anabiuda", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌰𐌼", "verb", "anabiudam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐌳𐌿𐌼", "verb", "anabudum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌰𐌿𐍃𐍄", "verb", "anabaust", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌹𐌸", "verb", "anabiudiþ", "", "", "", "inflection of 𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌹𐌿𐌳", "verb", "anabiud", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐌳𐌹", "verb", "anabudi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐌳𐌰𐌽𐍃", "verb", "anabudans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐌳𐌰𐌽𐌰", "verb", "anabudana", "", "", "", "inflection of 𐌰𐌽𐌰𐌱𐌿𐌳𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐌳𐌰𐌽", "verb", "anabudan", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌿𐌳𐌰𐌽𐍉𐌽𐌰", "verb", "anabudanōna", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌱𐌹𐌿𐌳𐌰𐌽𐌳𐍃", "verb", "anabiudands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌳𐍂𐌹𐌲𐌺𐌰𐌽", "verb", "𐌰𐌽𐌰𐌳𐍂𐌹𐌲𐌺𐌰", "𐌰𐌽𐌰𐌳𐍂𐌰𐌲𐌺", "𐌰𐌽𐌰𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐍃", "", "to get drunk"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌳𐍂𐌹𐌲𐌺𐌰𐌹𐌸", "verb", "anadrigkaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌿𐌻𐌷𐌰𐌽𐍃", "verb", "anafulhans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍆𐌿𐌻𐌷𐌰𐌽𐍉", "verb", "anafulhanō", "", "", "", "inflection of 𐌰𐌽𐌰𐍆𐌿𐌻𐌷𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌰𐌽𐌰𐌲𐌰𐌲𐌲𐌰", "𐌰𐌽𐌰𐌹𐌳𐌳𐌾𐌰", "𐌰𐌽𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to approach come"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "anagaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹𐌼", "verb", "anagaggandeim", "", "", "", "dative feminine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌽", "verb", "𐌰𐌽𐌰𐌷𐌰𐌱𐌰", "𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to take hold"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "verb", "anahabaiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "verb", "anahabaida", "", "", "", "inflection of 𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌳𐌰𐌽𐍃", "verb", "anahabaidans", "", "", "", "inflection of 𐌰𐌽𐌰𐌷𐌰𐌱𐌰𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰", "𐌳𐌿𐌰𐍄𐌹𐌳𐌳𐌾𐌰", "𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to approach come"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌹𐌳𐌳𐌾𐌰", "verb", "duatiddja", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌽", "verb", "duatiddjēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "duatgaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌹𐌽", "verb", "duatgaggandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "duatgaggandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌴𐌹", "verb", "duatgaggandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰", "𐌰𐌽𐌰𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to invoke beseech"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰", "verb", "anahaita", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌼", "verb", "anahaitam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌹𐌸", "verb", "anahaitiþ", "", "", "", "inflection of 𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "anahaitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "anahaitandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐌰𐌼", "verb", "anahaitandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌼𐍉𐌽", "verb", "𐌰𐌽𐌰𐌷𐌰𐌼𐍉", "𐌰𐌽𐌰𐌷𐌰𐌼𐍉𐌳𐌰", "𐌰𐌽𐌰𐌷𐌰𐌼𐍉𐌸𐍃", "", "to get dressed"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌽𐌰𐌹𐍅𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌷𐌽𐌰𐌹𐍅𐌾𐌰", "𐌰𐌽𐌰𐌷𐌽𐌰𐌹𐍅𐌹𐌳𐌰", "𐌰𐌽𐌰𐌷𐌽𐌰𐌹𐍅𐌹𐌸𐍃", "", "to lay down"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌽𐌰𐌹𐍅𐌾𐌰𐌹", "verb", "anahnaiwjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌽𐌴𐍅𐌰𐌽𐌳𐍃", "verb", "anahnēwands", "no-table-tags", "got-decl-adj-pp", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌹𐌽𐍃𐌰𐌺𐌰𐌽", "verb", "𐌰𐌽𐌰𐌹𐌽𐍃𐌰𐌺𐌰", "𐌰𐌽𐌰𐌹𐌽𐍃𐍉𐌺", "𐌰𐌽𐌰𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐍃", "", "to impart or"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌹𐌽𐍃𐍉𐌺𐌿𐌽", "verb", "anainsōkun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌺𐌰𐌽", "verb", "𐌹𐌽𐍃𐌰𐌺𐌰", "𐌹𐌽𐍃𐍉𐌺", "𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐍃", "", "to present a"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐍉𐌺", "verb", "insōk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐌳𐍃", "verb", "insakands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐌳𐌹𐌽", "verb", "insakandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐍃", "verb", "insakans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐌰", "verb", "insakana", "", "", "", "inflection of 𐌹𐌽𐍃𐌰𐌺𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌰𐌽", "verb", "𐍃𐌰𐌺𐌰", "𐍃𐍉𐌺", "𐍃𐌰𐌺𐌰𐌽𐍃", "", "to dispute quarrel"]) + let v = native_list_append(v, ["𐍃𐍉𐌺𐌿𐌽", "verb", "sōkun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌰𐌺", "verb", "sak", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌰𐌿𐍂𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌺𐌰𐌿𐍂𐌾𐌰", "𐌰𐌽𐌰𐌺𐌰𐌿𐍂𐌹𐌳𐌰", "𐌰𐌽𐌰𐌺𐌰𐌿𐍂𐌹𐌸𐍃", "", "to overburden overload"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌰𐌿𐍂𐌾𐌰𐌿", "verb", "anakaurjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌾𐌰𐌽", "verb", "𐌺𐌰𐌿𐍂𐌾𐌰", "𐌺𐌰𐌿𐍂𐌹𐌳𐌰", "𐌺𐌰𐌿𐍂𐌹𐌸𐍃", "", "to burden"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌹𐌳𐌰", "verb", "kaurida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "kauridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌾𐌰", "verb", "kaurja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌹𐌳𐌴𐌳𐌾𐌰𐌿", "verb", "kauridēdjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌹𐌳𐌴𐌳𐌴𐌹𐌼𐌰", "verb", "kauridēdeima", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "kaurjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌼𐌱𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "anakumbidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌽", "verb", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰", "𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌸𐍃", "", "to read especially"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰", "verb", "anakunnaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌸", "verb", "anakunnaiþ", "", "", "", "inflection of 𐌰𐌽𐌰𐌺𐌿𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌻𐌰𐌲𐌾𐌰", "𐌰𐌽𐌰𐌻𐌰𐌲𐌹𐌳𐌰", "𐌰𐌽𐌰𐌻𐌰𐌲𐌹𐌸𐍃", "", "to lay upon"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "analagjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "analagjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌰𐌽", "verb", "𐌻𐌰𐌲𐌾𐌰", "𐌻𐌰𐌲𐌹𐌳𐌰", "𐌻𐌰𐌲𐌹𐌸𐍃", "", "to lay set"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌹𐌳𐌰", "verb", "lagida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌹𐌳𐌴𐍃", "verb", "lagidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "lagidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "lagidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌹𐍃", "verb", "lagjis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌰", "verb", "lagja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌰𐌹𐍃", "verb", "lagjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌰𐌹", "verb", "lagjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌴𐌹", "verb", "lagei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌹𐌸", "verb", "lagjiþ", "", "", "", "inflection of 𐌻𐌰𐌲𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "lagjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "lagjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌹𐌳𐌴𐌳𐌹", "verb", "lagidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐍄𐌹𐌳𐌰", "verb", "analatida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐍄𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌻𐌰𐍄𐌾𐌰", "𐌰𐌽𐌰𐌻𐌰𐍄𐌹𐌳𐌰", "𐌰𐌽𐌰𐌻𐌰𐍄𐌹𐌸𐍃", "", "to prevent hinder"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐍄𐌹𐌸𐍃", "verb", "analatiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐍄𐌹𐌳𐌰𐌹", "verb", "analatidai", "", "", "", "inflection of 𐌰𐌽𐌰𐌻𐌰𐍄𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐌳𐌾𐌰𐌽", "verb", "𐌱𐌰𐌹𐌳𐌾𐌰", "𐌱𐌰𐌹𐌳𐌹𐌳𐌰", "𐌱𐌰𐌹𐌳𐌹𐌸𐍃", "", "to force compel"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐌳𐌴𐌹𐍃", "verb", "baideis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐌳𐌹𐌸𐍃", "verb", "baidiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌲𐌰𐌹𐍃", "verb", "bairgais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌲𐌰𐌽", "verb", "𐌱𐌰𐌹𐍂𐌲𐌰", "𐌱𐌰𐍂𐌲", "𐌱𐌰𐌿𐍂𐌲𐌰𐌽𐍃", "", "to keep maintain"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌲𐌹𐌸", "verb", "bairgiþ", "", "", "", "inflection of 𐌱𐌰𐌹𐍂𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌹𐌳𐌰", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌹𐌸𐍃", "", "to do wrong"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "anamahtjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌹𐌸𐍃", "verb", "anamahtiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌳𐌰", "verb", "anamahtjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌹𐍃", "verb", "anamahtjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌹𐌳𐌹𐌽𐍃", "verb", "anamahtidins", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "anamahtjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "anamahtjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "anamahtjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌹𐌸", "verb", "anamahtjaiþ", "𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌹𐌳", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌼𐌰𐌷𐍄𐌾𐌰𐌹𐌳", "verb", "anamahtjaid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌴𐌹𐌸", "verb", "anananþeiþ", "", "", "", "inflection of 𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌾𐌰", "𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌹𐌳𐌰", "𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌹𐌸𐍃", "", "to dare be"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "anananþidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌰𐌽𐌸𐌾𐌰𐌽𐌳𐍃", "verb", "anananþjands", "no-table-tags", "got-decl-adj-pp", "", "present active participle"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌹𐍅𐌹𐌸𐍃", "verb", "ananiwiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌽𐌹𐍅𐌹𐌳𐌹𐌽", "verb", "ananiwidin", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍀𐍂𐌰𐌲𐌲𐌰𐌽𐍃", "verb", "anapraggans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍀𐍂𐌰𐌲𐌲𐌰𐌽", "verb", "𐌰𐌽𐌰𐍀𐍂𐌰𐌲𐌲𐌰", "𐌰𐌽𐌰𐍀𐌰𐌹𐍀𐍂𐌰𐌲𐌲", "𐌰𐌽𐌰𐍀𐍂𐌰𐌲𐌲𐌰𐌽𐍃", "", "to trouble"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍀𐍂𐌰𐌲𐌲𐌰𐌽𐌰𐌹", "verb", "anapragganai", "", "", "", "inflection of 𐌰𐌽𐌰𐍀𐍂𐌰𐌲𐌲𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌹𐌼𐌰𐌽", "verb", "𐌰𐌽𐌰𐌵𐌹𐌼𐌰", "𐌰𐌽𐌰𐌵𐌰𐌼", "𐌰𐌽𐌰𐌵𐌿𐌼𐌰𐌽𐍃", "", "to come upon"]) + let v = native_list_append(v, ["𐌵𐌰𐌼𐍄", "verb", "qamt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌰𐌼", "verb", "anaqam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌹𐌸𐌰𐌽", "verb", "𐌰𐌽𐌰𐌵𐌹𐌸𐌰", "𐌰𐌽𐌰𐌵𐌰𐌸", "𐌰𐌽𐌰𐌵𐌹𐌸𐌰𐌽𐍃", "", "to denounce censure"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌵𐌹𐌸𐌰𐌹𐌳𐌰𐌿", "verb", "anaqiþaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌻𐌴𐍀𐌰𐌽", "verb", "𐌰𐌽𐌰𐍃𐌻𐌴𐍀𐌰", "𐌰𐌽𐌰𐍃𐌰𐌹𐍃𐌻𐌴𐍀", "𐌰𐌽𐌰𐍃𐌻𐌴𐍀𐌰𐌽𐍃", "", "to fall asleep"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌰𐌹𐍃𐌻𐌴𐍀", "verb", "anasaislēp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌰𐌹𐍃𐌻𐌴𐍀𐌿𐌽", "verb", "anasaislēpun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌻𐌴𐍀𐌰𐌽𐌳𐍃", "verb", "anaslēpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌻𐌴𐍀𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "anaslēpandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌹𐌻𐌰𐌹𐌳𐌰", "verb", "anasilaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌹𐌻𐌰𐌽", "verb", "𐌰𐌽𐌰𐍃𐌹𐌻𐌰", "𐌰𐌽𐌰𐍃𐌹𐌻𐌰𐌹𐌳𐌰", "𐌰𐌽𐌰𐍃𐌹𐌻𐌰𐌹𐌸𐍃", "", "to cease stop"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌽", "verb", "gaman", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽", "verb", "𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰", "𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌰", "𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌸𐍃", "", "to work labor"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰", "verb", "arbaidja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌰", "verb", "arbaidida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌼", "verb", "arbaidjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽𐌳", "verb", "arbaidjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌹", "verb", "arbaidjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌴𐌳𐌾𐌰𐌿", "verb", "arbaididēdjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌴𐌹", "verb", "arbaidei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "arbaidjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "arbaidjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "arbaidjandam", "", "", "", "dative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽", "verb", "𐌼𐌹𐌸𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰", "𐌼𐌹𐌸𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌰", "𐌼𐌹𐌸𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌸𐍃", "", "to toil or"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "miþarbaididēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌰𐍂𐌱𐌰𐌹𐌳𐌴𐌹", "verb", "miþarbaidei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽", "verb", "𐌸𐌰𐌹𐍂𐌷𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰", "𐌸𐌰𐌹𐍂𐌷𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌳𐌰", "𐌸𐌰𐌹𐍂𐌷𐌰𐍂𐌱𐌰𐌹𐌳𐌹𐌸𐍃", "", "to work through"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "þairharbaidjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷𐌰𐍂𐌱𐌰𐌹𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "þairharbaidjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌾𐌰", "𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌹𐌳𐌰", "𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌹𐌸𐍃", "", "to hearken heed"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳", "verb", "andhausjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌴𐌹𐌸", "verb", "andhauseiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌴𐌹𐍃", "verb", "andhauseis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌹𐌳𐌰", "verb", "andhausida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐍃", "verb", "andhausidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌹", "verb", "andhausidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌿𐍃𐌾𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "andhausjaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐌾𐌰𐌽", "verb", "𐌰𐌿𐌲𐌾𐌰", "𐌰𐌿𐌲𐌹𐌳𐌰", "𐌰𐌿𐌲𐌹𐌸𐍃", "", "to show"]) + let v = native_list_append(v, ["𐌰𐌿𐌲𐌴𐌹", "verb", "augei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐌲𐌾𐌰𐌽", "verb", "𐌸𐍂𐌰𐌲𐌾𐌰", "𐌸𐍂𐌰𐌲𐌹𐌳𐌰", "𐌸𐍂𐌰𐌲𐌹𐌸𐍃", "", "to run"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐌲𐌹𐌳𐌰", "verb", "þragida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐌲𐌾𐌰𐌹", "verb", "þragjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌸𐍂𐌰𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "þragjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐍂𐌰𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "biþragjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐍂𐌰𐌲𐌾𐌰𐌽", "verb", "𐌱𐌹𐌸𐍂𐌰𐌲𐌾𐌰", "𐌱𐌹𐌸𐍂𐌰𐌲𐌹𐌳𐌰", "𐌱𐌹𐌸𐍂𐌰𐌲𐌹𐌸𐍃", "", "to run ahead"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐍅𐌰𐌽", "verb", "𐍃𐌻𐌰𐍅𐌰", "𐍃𐌻𐌰𐍅𐌰𐌹𐌳𐌰", "𐍃𐌻𐌰𐍅𐌰𐌹𐌸𐍃", "", "to keep quiet"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐍅𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "slawaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐍅𐌰𐌽𐌳", "verb", "slawand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐍅𐌰𐌽𐌳𐍃", "verb", "slawands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐍅𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "slawandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌻𐌰𐍅𐌰𐌽", "verb", "𐌰𐌽𐌰𐍃𐌻𐌰𐍅𐌰", "𐌰𐌽𐌰𐍃𐌻𐌰𐍅𐌰𐌹𐌳𐌰", "𐌰𐌽𐌰𐍃𐌻𐌰𐍅𐌰𐌹𐌸𐍃", "", "to quiet down"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌻𐌰𐍅𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "anaslawaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰𐌽", "verb", "𐍄𐌹𐌼𐍂𐌾𐌰", "𐍄𐌹𐌼𐍂𐌹𐌳𐌰", "𐍄𐌹𐌼𐍂𐌹𐌸𐍃", "", "to build construct"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "timridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌴𐌹𐌸", "verb", "timreiþ", "", "", "", "inflection of 𐍄𐌹𐌼𐍂𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰𐌳𐌰", "verb", "timrjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰𐌹𐌸", "verb", "timrjaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "timrjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐍂𐌾𐌰𐌽𐌳𐌹𐌽", "verb", "timrjandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍄𐌹𐌼𐌱𐍂𐌾𐌰𐌽", "verb", "timbrjan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌾𐌰", "𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌹𐌳𐌰", "𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃", "", "to build upon"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃", "verb", "anatimriþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌹𐌳𐌰𐌹", "verb", "anatimridai", "", "", "", "inflection of 𐌰𐌽𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐌰𐌽", "verb", "𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐌰", "𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌳𐌰", "𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃", "", "to build up"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌳𐌰", "verb", "gatimrida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐌰", "verb", "gatimrja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐌰𐌽𐌳𐍃", "verb", "gatimrjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐌰𐌽", "verb", "𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌾𐌰", "𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌳𐌰", "𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃", "", "to build up"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌳𐌰𐌹", "verb", "miþgatimridai", "", "", "", "inflection of 𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌲𐌰𐍄𐌹𐌼𐍂𐌹𐌸𐍃", "verb", "miþgatimriþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍄𐍂𐌹𐌼𐍀𐌰𐌽", "verb", "𐌰𐌽𐌰𐍄𐍂𐌹𐌼𐍀𐌰", "𐌰𐌽𐌰𐍄𐍂𐌰𐌼𐍀", "𐌰𐌽𐌰𐍄𐍂𐌿𐌼𐍀𐌰𐌽𐍃", "", "to press upon"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍄𐍂𐌰𐌼𐍀", "verb", "anatramp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌼𐌼𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐍅𐌰𐌼𐌼𐌾𐌰", "𐌰𐌽𐌰𐍅𐌰𐌼𐌼𐌹𐌳𐌰", "𐌰𐌽𐌰𐍅𐌰𐌼𐌼𐌹𐌸𐍃", "", "to mar stain"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌼𐌼𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "anawammjaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌸𐌹𐍅𐌰𐌽", "verb", "𐌰𐌽𐌰𐌸𐌹𐍅𐌰", "𐌰𐌽𐌰𐌸𐌹𐍅𐌰𐌹𐌳𐌰", "𐌰𐌽𐌰𐌸𐌹𐍅𐌰𐌹𐌸𐍃", "", "to enslave subjugate"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌸𐌹𐍅𐌰", "verb", "anaþiwa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌹𐍅𐌰𐌽", "verb", "𐌲𐌰𐌸𐌹𐍅𐌰", "𐌲𐌰𐌸𐌹𐍅𐌰𐌹𐌳𐌰", "𐌲𐌰𐌸𐌹𐍅𐌰𐌹𐌸𐍃", "", "to subjugate enthrall"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌹𐍅𐌰𐌹𐌸", "verb", "gaþiwaiþ", "", "", "", "inflection of 𐌲𐌰𐌸𐌹𐍅𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌹𐍅𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "gaþiwaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌹𐍅𐌰𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "gaþiwaidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌹𐍅𐌰𐌽𐌳𐍃", "verb", "gaþiwands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌹𐍅𐌰𐌽𐌳𐌰𐌼", "verb", "gaþiwandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰𐌽", "verb", "𐌰𐌽𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌾𐌰", "𐌰𐌽𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌰", "𐌰𐌽𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌸𐍃", "", "to put in"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌹𐌳𐌰", "verb", "anaþrafstida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌸𐍂𐌰𐍆𐍃𐍄𐌴𐌹", "verb", "anaþrafstei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍈𐌴𐌹𐌻𐌰𐌽", "verb", "𐌰𐌽𐌰𐍈𐌴𐌹𐌻𐌰", "𐌰𐌽𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌳𐌰", "𐌰𐌽𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌸𐍃", "", "to give someone"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍈𐌴𐌹𐌻𐌰𐌹𐌸𐍃", "verb", "anaƕeilaiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰𐌽", "verb", "𐍈𐌴𐌹𐌻𐌰", "𐍈𐌴𐌹𐌻𐌰𐌹𐌳𐌰", "𐍈𐌴𐌹𐌻𐌰𐌹𐌸𐍃", "", "to rest pause"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "ƕeilaidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌿𐌲𐌾𐌰𐌽", "verb", "𐍆𐍂𐌰𐌱𐌿𐌲𐌾𐌰", "𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐌰", "𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐍃", "", "to sell"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐍃", "verb", "frabauhts", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄", "verb", "frabauht", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌰𐌿𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "frabauhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌿𐌲𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "frabugjaidau", "", "", "", "first/third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌿𐌲𐌴𐌹", "verb", "frabugei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "frabugjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "frabugjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐌴", "verb", "frabugjandanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌿𐌲𐌾𐌰𐌽", "verb", "𐌿𐍃𐌱𐌿𐌲𐌾𐌰", "𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐌰", "𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐍃", "", "to buy"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "usbauhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐌰", "verb", "usbauhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "usbugjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌿𐌲𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "usbugjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐍃", "verb", "usbauhts", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐌰𐌹", "verb", "usbauhtai", "", "", "", "inflection of 𐌿𐍃𐌱𐌰𐌿𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐌲𐌰𐌷𐌰𐌹𐍄𐌰", "𐌲𐌰𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to convoke call"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌹𐌸", "verb", "gahaitiþ", "", "", "", "inflection of 𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "verb", "gahaihait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐌷𐌰𐌹𐍄𐌿𐌽", "verb", "gahaihaitun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "gahaitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌷𐌰𐌹𐍄𐌰", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to foretell to"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "verb", "fauragahaitans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐌷𐌰𐌹𐍄𐌰𐌽𐌰𐌽", "verb", "fauragahaitanan", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐌰𐍄𐌷𐌰𐌹𐍄𐌰", "𐌰𐍄𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐌰𐍄𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to summon call"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "verb", "athaihait", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "athaitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐍆𐌰𐌹𐍂𐌷𐌰𐌹𐍄𐌰", "𐍆𐌰𐌹𐍂𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐍆𐌰𐌹𐍂𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to express"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌷𐌰𐌹𐍄𐌹𐍃", "verb", "fairhaitis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐌷𐌰𐌹𐍄𐌰𐌽", "verb", "𐌿𐍃𐌷𐌰𐌹𐍄𐌰", "𐌿𐍃𐌷𐌰𐌹𐌷𐌰𐌹𐍄", "𐌿𐍃𐌷𐌰𐌹𐍄𐌰𐌽𐍃", "", "to provoke challenge"]) + let v = native_list_append(v, ["𐌿𐍃𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "ushaitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐌷𐌰𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "ushaitandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌰𐌸", "verb", "baþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽", "verb", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌳𐌰", "𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌸𐍃", "", "to give thanks"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉", "verb", "awiliudō", "", "", "", "inflection of 𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌳𐌰", "verb", "awiliudōda", "", "", "", "inflection of 𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌸", "verb", "awiliudōþ", "", "", "", "inflection of 𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌼", "verb", "awiliudōm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌳𐌰𐌿", "verb", "awiliudōdau", "", "", "", "inflection of 𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽𐌳𐍃", "verb", "awiliudōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍅𐌹𐌻𐌹𐌿𐌳𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "awiliudōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐌽𐌳𐍃", "verb", "andbindands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andbindandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐌽𐌳𐌰𐌽𐌳𐌰𐌼", "verb", "andbindandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐍄𐌰𐌽𐍃", "verb", "andbitans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌹𐍄𐌰𐌽𐌰𐌹", "verb", "andbitanai", "", "", "", "inflection of 𐌰𐌽𐌳𐌱𐌹𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌰𐌽𐍃", "verb", "andbundans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌰𐌽𐌰𐌹", "verb", "andbundanai", "", "", "", "inflection of 𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌽𐌰𐌽", "verb", "𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌽𐌰", "𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌽𐍉𐌳𐌰", "", "", "to be loosened"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌱𐌿𐌽𐌳𐌽𐍉𐌳𐌰", "verb", "andbundnōda", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌼𐍉𐌽𐌳𐍃", "verb", "andhamōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌰𐌼𐍉𐌽", "verb", "𐌰𐌽𐌳𐌷𐌰𐌼𐍉", "𐌰𐌽𐌳𐌷𐌰𐌼𐍉𐌳𐌰", "𐌰𐌽𐌳𐌷𐌰𐌼𐍉𐌸𐍃", "", "to divest oneself"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐍂𐌿𐍃𐌺𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "andhruskandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐍂𐌿𐍃𐌺𐌰𐌽𐌳𐍃", "verb", "andhruskands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐍂𐌿𐍃𐌺𐌰𐌽", "verb", "𐌰𐌽𐌳𐌷𐍂𐌿𐍃𐌺𐌰", "𐌰𐌽𐌳𐌷𐍂𐌿𐍃𐌺𐌰𐌹𐌳𐌰", "𐌰𐌽𐌳𐌷𐍂𐌿𐍃𐌺𐌰𐌹𐌸𐍃", "", "to investigate explore"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌳𐍃", "verb", "andhulids", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍂𐌹𐌽𐌽𐌰𐌽", "verb", "𐌰𐌽𐌳𐍂𐌹𐌽𐌽𐌰", "𐌰𐌽𐌳𐍂𐌰𐌽𐌽", "𐌰𐌽𐌳𐍂𐌿𐌽𐌽𐌰𐌽𐍃", "", "to dispute argue"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍂𐌿𐌽𐌽𐌿𐌽", "verb", "andrunnun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌿𐌺𐌽𐌰𐌽", "verb", "𐌰𐌿𐌺𐌽𐌰", "𐌰𐌿𐌺𐌽𐍉𐌳𐌰", "", "", "to grow larger"]) + let v = native_list_append(v, ["𐌰𐌿𐌺𐌽𐌰𐌽𐌳𐍃", "verb", "auknands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌿𐌺𐌽𐌰𐌽𐌳𐍉", "verb", "auknandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰𐌽", "verb", "𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰", "𐌲𐌰𐍃𐍄𐌰𐌹𐍃𐍄𐌰𐌻𐌳", "𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐍃", "", "to acquire"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌹𐍃𐍄𐌰𐌻𐌳", "verb", "gastaistald", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐌳", "verb", "gastaldand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰", "verb", "gastalda", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌰𐌹𐍃𐍄𐌰𐌻𐌳𐌾𐌰𐌿", "verb", "gastaistaldjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰", "𐌰𐌽𐌳𐍃𐍄𐌰𐌹𐍃𐍄𐌰𐌻𐌳", "𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐍃", "", "to supply put"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌹𐌸", "verb", "andstaldiþ", "", "", "", "inflection of 𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐌳", "verb", "andstaldand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐌳𐍃", "verb", "andstaldands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐌿𐌳𐌰𐌲𐌾𐌰", "𐌰𐌿𐌳𐌰𐌲𐌹𐌳𐌰", "𐌰𐌿𐌳𐌰𐌲𐌹𐌸𐍃", "", "to bless someone"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐌾𐌰𐌽𐌳", "verb", "audagjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "verb", "weitwōdja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽", "verb", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌳𐌰", "𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐍃", "", "to testify as"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌳𐌰", "verb", "weitwōdida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌳𐌴𐍃", "verb", "weitwōdidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "weitwōdidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "weitwōdidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽𐌳", "verb", "weitwōdjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐍃", "verb", "weitwōdeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌴𐌹𐌸", "verb", "weitwōdeiþ", "", "", "", "inflection of 𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌿", "verb", "weitwōdjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "weitwōdjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "weitwōdjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽", "verb", "𐌼𐌹𐌸𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰", "𐌼𐌹𐌸𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌳𐌰", "𐌼𐌹𐌸𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌹𐌸𐍃", "", "to testify together"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "miþweitwōdjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐍅𐌴𐌹𐍄𐍅𐍉𐌳𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "miþweitwōdjandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐍄𐌿𐌶𐍅𐌴𐍂𐌾𐌰𐌽", "verb", "𐍄𐌿𐌶𐍅𐌴𐍂𐌾𐌰", "𐍄𐌿𐌶𐍅𐌴𐍂𐌹𐌳𐌰", "𐍄𐌿𐌶𐍅𐌴𐍂𐌹𐌸𐍃", "", "to doubt disbelieve"]) + let v = native_list_append(v, ["𐍄𐌿𐌶𐍅𐌴𐍂𐌾𐌰𐌹", "verb", "tuzwērjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐍂𐌾𐌰𐌽", "verb", "𐌿𐌽𐍅𐌴𐍂𐌾𐌰", "𐌿𐌽𐍅𐌴𐍂𐌹𐌳𐌰", "𐌿𐌽𐍅𐌴𐍂𐌹𐌸𐍃", "", "to be displeased"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐍂𐌹𐌳𐌰", "verb", "unwērida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌽", "verb", "𐌼𐌹𐍄𐌰", "𐌼𐌰𐍄", "𐌼𐌹𐍄𐌰𐌽𐍃", "", "to measure gauge"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌳𐌰", "verb", "mitada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌹𐌸", "verb", "mitiþ", "", "", "", "inflection of 𐌼𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌽𐌳𐍃", "verb", "mitands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "mitandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌹𐍄𐌹𐌳", "verb", "mitid", "", "", "", "inflection of 𐌼𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐍂𐌹𐌲𐌽𐌾𐌰𐌽", "verb", "𐍂𐌹𐌲𐌽𐌾𐌰", "𐍂𐌹𐌲𐌽𐌹𐌳𐌰", "𐍂𐌹𐌲𐌽𐌹𐌸𐍃", "", "to make rain"]) + let v = native_list_append(v, ["𐍂𐌹𐌲𐌽𐌴𐌹𐌸", "verb", "rigneiþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍂𐌹𐌲𐌽𐌹𐌳𐌰", "verb", "rignida", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐌰𐌹", "verb", "andsakanai", "", "", "", "inflection of 𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐍃", "verb", "andsakans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐌰𐌺𐌰", "𐌰𐌽𐌳𐍃𐍉𐌺", "𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐍃", "", "to speak against"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍀𐌹𐍅𐌿𐌸", "verb", "andspiwuþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍀𐌴𐌹𐍅𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐍀𐌴𐌹𐍅𐌰", "𐌰𐌽𐌳𐍃𐍀𐌰𐌹𐍅", "𐌰𐌽𐌳𐍃𐍀𐌹𐍅𐌰𐌽𐍃", "", "to despise reject"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌽", "verb", "𐌰𐍂𐌼𐌰", "𐌰𐍂𐌼𐌰𐌹𐌳𐌰", "𐌰𐍂𐌼𐌰𐌹𐌸𐍃", "", "to take pity"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌹", "verb", "armai", "", "", "", "inflection of 𐌰𐍂𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌹𐌸", "verb", "armaiþ", "", "", "", "inflection of 𐌰𐍂𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌽𐌳𐍃", "verb", "armānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "armāndins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌿𐍂𐍂𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "andstaurraidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍃𐍄𐌰𐌿𐍂𐍂𐌰𐌽", "verb", "𐌰𐌽𐌳𐍃𐍄𐌰𐌿𐍂𐍂𐌰", "𐌰𐌽𐌳𐍃𐍄𐌰𐌿𐍂𐍂𐌰𐌹𐌳𐌰", "𐌰𐌽𐌳𐍃𐍄𐌰𐌿𐍂𐍂𐌰𐌹𐌸𐍃", "", "to murmur against"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍄𐌹𐌻𐍉𐌸", "verb", "andtilōþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍄𐌹𐌻𐍉𐌽𐌳𐍃", "verb", "andtilōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍄𐌹𐌻𐍉𐌽", "verb", "𐌰𐌽𐌳𐍄𐌹𐌻𐍉", "𐌰𐌽𐌳𐍄𐌹𐌻𐍉𐌳𐌰", "𐌰𐌽𐌳𐍄𐌹𐌻𐍉𐌸𐍃", "", "to hold to"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌾𐌰𐌽", "verb", "𐌰𐍄𐌻𐌰𐌲𐌾𐌰", "𐌰𐍄𐌻𐌰𐌲𐌹𐌳𐌰", "𐌰𐍄𐌻𐌰𐌲𐌹𐌸𐍃", "", "to lay set"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌴𐌹", "verb", "atlagei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "atlagidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "atlagidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌹𐌳𐌴𐍃", "verb", "atlagidēs", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌾𐌰𐌳𐌰", "verb", "atlagjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌲𐌾𐌰𐌽𐌳𐍃", "verb", "atlagjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌰𐌽", "verb", "𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌰", "𐌰𐍄𐍃𐍄𐌰𐌹𐌲", "𐌰𐍄𐍃𐍄𐌹𐌲𐌰𐌽𐍃", "", "to descend"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌴𐌹𐌲", "verb", "atsteig", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌰𐌳𐌰𐌿", "verb", "atsteigadau", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌹𐌸", "verb", "atsteigiþ", "", "", "", "inflection of 𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌰𐌹𐌲", "verb", "atstaig", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌰𐌹", "verb", "atsteigai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐍄𐌴𐌹𐌲𐌰𐌽𐌳𐍃", "verb", "atsteigands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐍄𐌴𐌹𐌲𐌰𐌽", "verb", "𐍃𐍄𐌴𐌹𐌲𐌰", "𐍃𐍄𐌰𐌹𐌲", "𐍃𐍄𐌹𐌲𐌰𐌽𐍃", "", "to climb ascend"]) + let v = native_list_append(v, ["𐍃𐍄𐌴𐌹𐌲𐌹𐌸", "verb", "steigiþ", "", "", "", "inflection of 𐍃𐍄𐌴𐌹𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌹𐌿𐍃𐌰𐌽", "verb", "𐌰𐍄𐌳𐍂𐌹𐌿𐍃𐌰", "𐌰𐍄𐌳𐍂𐌰𐌿𐍃", "𐌰𐍄𐌳𐍂𐌿𐍃𐌰𐌽𐍃", "", "to fall towards"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌰𐌿𐍃", "verb", "atdraus", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳", "verb", "atdriusand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌿𐍃𐌿𐌽", "verb", "atdrusun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌹𐌿𐍃𐌰𐌹", "verb", "atdriusai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳𐌴𐌹", "verb", "atdriusandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳𐍃", "verb", "atdriusands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌾𐌰𐌽𐌳𐍃", "verb", "wōpjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "wōpjandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wōpjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐍉𐍀𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "wōpjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐍄𐌹𐍃𐍄", "verb", "atist", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌹𐍃𐌰𐌽", "verb", "𐌰𐍄𐌹𐌼", "𐌰𐍄𐍅𐌰𐍃", "𐌰𐍄𐍅𐌹𐍃𐌰𐌽𐍃", "", "to be present"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍅𐌹𐍃𐌰𐌽", "verb", "𐌿𐍆𐌰𐍂𐌹𐌼", "𐌿𐍆𐌰𐍂𐍅𐌰𐍃", "𐌿𐍆𐌰𐍂𐍅𐌹𐍃𐌰𐌽𐍃", "", "to be superior"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌹𐍃𐍄", "verb", "ufarist", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍅𐌹𐍃𐌰𐌽𐌳𐌰𐌼", "verb", "ufarwisandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍅𐌹𐍃𐌰𐌽𐌳𐍃", "verb", "ufarwisands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍀𐌰𐌽", "verb", "𐍅𐌰𐌹𐍂𐍀𐌰", "𐍅𐌰𐍂𐍀", "𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃", "", "to throw"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌽", "verb", "𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰", "𐌿𐍃𐍅𐌰𐍂𐍀", "𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃", "", "to cast away"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍀𐌰𐌼", "verb", "wairpam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍀𐌹𐌸", "verb", "wairpiþ", "", "", "", "inflection of 𐍅𐌰𐌹𐍂𐍀𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍀", "verb", "wairp", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍀𐌴𐌹𐌽𐌰", "verb", "waurpeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "wairpandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐍃", "verb", "wairpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌹𐌸", "verb", "uswairpiþ", "", "", "", "inflection of 𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰", "verb", "uswairpa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐍂𐍀", "verb", "uswarp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌿𐌼", "verb", "uswaurpum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌿𐌽", "verb", "uswaurpun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳", "verb", "uswairpand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌹𐍃", "verb", "uswairpis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌳𐌰", "verb", "uswairpada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐌰", "verb", "uswairpanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌼", "verb", "uswairpam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌹", "verb", "uswaurpi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀", "verb", "uswairp", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃", "verb", "uswaurpans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐌰𐌹", "verb", "uswaurpanai", "", "", "", "inflection of 𐌿𐍃𐍅𐌰𐌿𐍂𐍀𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐍃", "verb", "uswairpands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌹𐍂𐍀𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "uswairpandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌽𐌰𐌽", "verb", "𐌼𐌹𐌺𐌹𐌻𐌽𐌰", "𐌼𐌹𐌺𐌹𐌻𐌽𐍉𐌳𐌰", "", "", "to become large"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌽", "verb", "𐌼𐌹𐌺𐌹𐌻𐌾𐌰", "𐌼𐌹𐌺𐌹𐌻𐌹𐌳𐌰", "𐌼𐌹𐌺𐌹𐌻𐌹𐌸𐍃", "", "to make large"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌾𐌰", "verb", "mikilja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌳𐌰", "verb", "mikiljada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "mikilidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "mikiljaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌸", "verb", "mikileiþ", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌴𐌹𐌳", "verb", "mikileid", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌼𐌴𐌺𐌹𐌻𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "mēkilidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌹𐌳𐍃", "verb", "mikilids", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌽𐌳𐍃", "verb", "mikiljands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "mikiljandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽", "verb", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌳𐌰", "𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌸𐍃", "", "to rule"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳𐍃", "verb", "fraujinōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌸", "verb", "fraujinōþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌼𐌰", "verb", "fraujinōma", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "fraujinōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳𐌰𐌽𐌴", "verb", "fraujinōndanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽", "verb", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌳𐌰", "𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌸𐍃", "", "to serve"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉", "verb", "skalkinō", "", "", "", "inflection of 𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌸", "verb", "skalkinōþ", "", "", "", "inflection of 𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌳𐌰", "verb", "skalkinōda", "", "", "", "inflection of 𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌳𐌴𐌳𐌿𐌼", "verb", "skalkinōdēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌳𐌴𐌳𐌿𐌸", "verb", "skalkinōdēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌼𐌰", "verb", "skalkinōma", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽𐌰", "verb", "skalkinōna", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽𐌳𐍃", "verb", "skalkinōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "skalkinōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌻𐌺𐌹𐌽𐍉𐌽𐌳𐌰𐌼", "verb", "skalkinōndam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽", "verb", "𐌲𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉", "𐌲𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌳𐌰", "𐌲𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌸𐍃", "", "to rule subordinate"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐍂𐌰𐌿𐌾𐌹𐌽𐍉𐌽𐌳", "verb", "gafraujinōnd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌰𐍄𐌽𐌹𐌼𐌰𐌽", "verb", "𐌰𐍄𐌽𐌹𐌼𐌰", "𐌰𐍄𐌽𐌰𐌼", "𐌰𐍄𐌽𐌿𐌼𐌰𐌽𐍃", "", "to take to"]) + let v = native_list_append(v, ["𐌰𐍄𐌽𐌰𐌼", "verb", "atnam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍂𐌹𐌽𐌽𐌰𐌽", "verb", "𐌰𐍄𐍂𐌹𐌽𐌽𐌰", "𐌰𐍄𐍂𐌰𐌽𐌽", "𐌰𐍄𐍂𐌿𐌽𐌽𐌰𐌽𐍃", "", "to run up"]) + let v = native_list_append(v, ["𐌰𐍄𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "atrinnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "atrinnandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐍂𐌹𐌽𐌽𐌰𐌽", "verb", "𐌳𐌿𐌰𐍄𐍂𐌹𐌽𐌽𐌰", "𐌳𐌿𐌰𐍄𐍂𐌰𐌽𐌽", "𐌳𐌿𐌰𐍄𐍂𐌿𐌽𐌽𐌰𐌽𐍃", "", "to run up"]) + let v = native_list_append(v, ["𐌳𐌿𐌰𐍄𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "duatrinnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌺𐌰𐍂𐍉𐌽", "verb", "𐌺𐌰𐍂𐍉", "𐌺𐌰𐍂𐍉𐌳𐌰", "𐌺𐌰𐍂𐍉𐌸𐍃", "", "to care to"]) + let v = native_list_append(v, ["𐌺𐌰𐍂𐍉𐍃", "verb", "karōs", "", "", "", "inflection of 𐌺𐌰𐍂𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌰𐍂𐍉𐌽", "verb", "𐌲𐌰𐌺𐌰𐍂𐍉", "𐌲𐌰𐌺𐌰𐍂𐍉𐌳𐌰", "𐌲𐌰𐌺𐌰𐍂𐍉𐌸𐍃", "", "to care to"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌰𐍂𐍉𐌸", "verb", "gakarōþ", "", "", "", "inflection of 𐌲𐌰𐌺𐌰𐍂𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌸𐍉𐌽", "verb", "𐌰𐍄𐌻𐌰𐌸𐍉", "𐌰𐍄𐌻𐌰𐌸𐍉𐌳𐌰", "𐌰𐍄𐌻𐌰𐌸𐍉𐌸𐍃", "", "to call to"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌸𐍉𐌸𐍃", "verb", "atlaþōþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌰𐌸𐍉𐌳𐌰𐌹", "verb", "atlaþōdai", "", "", "", "inflection of 𐌰𐍄𐌻𐌰𐌸𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌽", "verb", "𐌲𐌰𐌻𐌰𐌸𐍉", "𐌲𐌰𐌻𐌰𐌸𐍉𐌳𐌰", "𐌲𐌰𐌻𐌰𐌸𐍉𐌸𐍃", "", "to call together"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌸", "verb", "galaþōþ", "", "", "", "inflection of 𐌲𐌰𐌻𐌰𐌸𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌳𐌰", "verb", "galaþōda", "", "", "", "inflection of 𐌲𐌰𐌻𐌰𐌸𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌳𐌴𐌳𐌿𐌼", "verb", "galaþōdēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌳𐌴𐌳𐌿𐌸", "verb", "galaþōdēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌸𐍃", "verb", "galaþōþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌸𐍉𐌳𐌰𐌼", "verb", "galaþōdam", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐍄𐌺𐌿𐌽𐌽𐌰𐌽", "verb", "𐌰𐍄𐌺𐌿𐌽𐌽𐌰", "𐌰𐍄𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰", "𐌰𐍄𐌺𐌿𐌽𐌽𐌰𐌹𐌸𐍃", "", "to acknowledge duly"]) + let v = native_list_append(v, ["𐌰𐍄𐌺𐌿𐌽𐌽𐌰𐌹𐌸", "verb", "atkunnaiþ", "", "", "", "inflection of 𐌰𐍄𐌺𐌿𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽", "verb", "𐌿𐍆𐌺𐌿𐌽𐌽𐌰", "𐌿𐍆𐌺𐌿𐌽𐌸𐌰", "𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌸𐍃", "", "to get to"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌸", "verb", "ufkunnaiþ", "", "", "", "inflection of 𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰", "verb", "ufkunna", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽𐌳", "verb", "ufkunnand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌿", "verb", "ufkunnau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹", "verb", "ufkunnai", "", "", "", "inflection of 𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰𐌿", "verb", "ufkunnaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰", "verb", "ufkunnaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "ufkunnānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "ufkunnāndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌼", "verb", "ufkunnāndam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌴𐌹", "verb", "ufkunnāndei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌸𐍃", "verb", "ufkunnaiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰𐌹", "verb", "ufkunnaidai", "", "", "", "inflection of 𐌿𐍆𐌺𐌿𐌽𐌽𐌰𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌽", "verb", "𐌲𐌰𐌺𐌰𐌽𐌽", "𐌲𐌰𐌺𐌿𐌽𐌸𐌰", "𐌲𐌰𐌺𐌿𐌽𐌸𐍃", "", "to subject oneself"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌰𐌽𐌽", "verb", "gakann", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌸𐌴𐌳𐌿𐌼", "verb", "gakunþēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌿𐌽", "verb", "gakunnun", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌸", "verb", "gakunnaiþ", "", "", "", "inflection of 𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐍃", "verb", "gakunnais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "gakunnaidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌴𐌳𐌹", "verb", "gakunnaidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌹𐌳𐌰𐌿", "verb", "gakunnaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐍃", "verb", "gakunnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌽𐌰𐌽", "verb", "𐍆𐍂𐌰𐌺𐌰𐌽𐌽", "𐍆𐍂𐌰𐌺𐌿𐌽𐌸𐌰", "𐍆𐍂𐌰𐌺𐌿𐌽𐌸𐍃", "", "to spurn reject"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌰𐌽𐌽", "verb", "frakann", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌽𐌿𐌸", "verb", "frakunnuþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌸𐌴𐌳𐌿𐌸", "verb", "frakunþēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌽𐌹", "verb", "frakunni", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌽𐌴𐌹𐌸", "verb", "frakunneiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌽𐌴𐌹𐌽𐌰", "verb", "frakunneina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌸𐍃", "verb", "frakunþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌺𐌿𐌽𐌸", "verb", "frakunþ", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌽", "verb", "𐌰𐌿𐌷𐌾𐍉", "𐌰𐌿𐌷𐌾𐍉𐌳𐌰", "𐌰𐌿𐌷𐌾𐍉𐌸𐍃", "", "to make an"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌸", "verb", "auhjōþ", "", "", "", "inflection of 𐌰𐌿𐌷𐌾𐍉𐌽"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌽𐌳𐍃", "verb", "auhjōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌾𐍉𐌽𐌳𐌴𐌹𐌽", "verb", "auhjōndein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌰𐍄𐌸𐌹𐌽𐍃𐌰𐌽", "verb", "𐌰𐍄𐌸𐌹𐌽𐍃𐌰", "𐌰𐍄𐌸𐌰𐌽𐍃", "𐌰𐍄𐌸𐌿𐌽𐍃𐌰𐌽𐍃", "", "to draw drag"]) + let v = native_list_append(v, ["𐌰𐍄𐌸𐌹𐌽𐍃𐌹𐌸", "verb", "atþinsiþ", "", "", "", "inflection of 𐌰𐍄𐌸𐌹𐌽𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌸𐌹𐌽𐍃𐌰", "verb", "atþinsa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌿𐍂𐌳𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐍅𐌰𐌿𐍂𐌳𐌾𐌰", "𐌰𐌽𐌳𐍅𐌰𐌿𐍂𐌳𐌹𐌳𐌰", "𐌰𐌽𐌳𐍅𐌰𐌿𐍂𐌳𐌹𐌸𐍃", "", "to answer"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌿𐍂𐌳𐌾𐌰𐌹𐍃", "verb", "andwaurdjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌽𐌰𐍄𐌾𐌰𐌽", "verb", "𐌽𐌰𐍄𐌾𐌰", "𐌽𐌰𐍄𐌹𐌳𐌰", "𐌽𐌰𐍄𐌹𐌸𐍃", "", "to make wet"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽", "verb", "𐌹𐌳𐍂𐌴𐌹𐌲𐍉", "𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌳𐌰", "𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌸𐍃", "", "to regret repent"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌸", "verb", "idreigōþ", "", "", "", "inflection of 𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌳𐌰", "verb", "idreigōda", "", "", "", "inflection of 𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "idreigōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "idreigōdēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽𐌳𐍃", "verb", "idreigōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽𐌳𐌰𐌽𐌴", "verb", "idreigōndanē", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽𐌳𐌹𐌽𐍃", "verb", "idreigōndins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌽", "verb", "𐌲𐌰𐌹𐌳𐍂𐌴𐌹𐌲𐍉", "𐌲𐌰𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌳𐌰", "𐌲𐌰𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌸𐍃", "", "to regret repent"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌳𐍂𐌴𐌹𐌲𐍉𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "gaidreigōdēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐍃𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "andwasidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐍃𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐍅𐌰𐍃𐌾𐌰", "𐌰𐌽𐌳𐍅𐌰𐍃𐌹𐌳𐌰", "𐌰𐌽𐌳𐍅𐌰𐍃𐌹𐌸𐍃", "", "to strip a"]) + let v = native_list_append(v, ["𐌰𐍄𐌰𐌿𐌲𐌹𐌳𐍃", "verb", "ataugids", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐍄𐌰𐌽", "verb", "𐌽𐌹𐌿𐍄𐌰", "𐌽𐌰𐌿𐍄", "𐌽𐌿𐍄𐌰𐌽𐍃", "", "to reach obtain"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌰", "verb", "driggka", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌰𐍄𐍃", "verb", "driggkats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌹𐌸", "verb", "driggkiþ", "", "", "", "inflection of 𐌳𐍂𐌹𐌲𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌰𐌹𐌸", "verb", "driggkaiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌰𐌹", "verb", "driggkai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌲𐌺𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "driggkandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌸𐌰𐌲𐌲𐌺𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "andþaggkjandins", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌸𐌰𐌲𐌺𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "andþagkjandins", "𐌰𐌽𐌳𐌸𐌰𐌲𐌲𐌺𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌸𐌰𐌲𐌲𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "andþaggkjands", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌸𐌰𐌲𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "andþagkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌸𐌰𐌲𐌺𐌾𐌰𐌽", "verb", "𐌰𐌽𐌳𐌸𐌰𐌲𐌺𐌾𐌰", "𐌰𐌽𐌳𐌸𐌰𐌷𐍄𐌰", "𐌰𐌽𐌳𐌸𐌰𐌷𐍄𐍃", "", "to decide make"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌸𐌰𐌷𐍄𐌰", "verb", "andþāhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐍄𐍉𐌳𐌴𐌹𐌸", "verb", "anstōdeiþ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐍄𐍆𐌰𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "atfaridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐍆𐌰𐍂𐌾𐌰𐌽", "verb", "𐌰𐍄𐍆𐌰𐍂𐌾𐌰", "𐌰𐍄𐍆𐌰𐍂𐌹𐌳𐌰", "𐌰𐍄𐍆𐌰𐍂𐌹𐌸𐍃", "", "to arrive"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌾𐌰𐌹𐍃", "verb", "atgaraihtjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌾𐌰𐌽", "verb", "𐌰𐍄𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌾𐌰", "𐌰𐍄𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌳𐌰", "𐌰𐍄𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌸𐍃", "", "to set in"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌱𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "athabaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌱𐌰𐌽", "verb", "𐌰𐍄𐌷𐌰𐌱𐌰", "𐌰𐍄𐌷𐌰𐌱𐌰𐌹𐌳𐌰", "𐌰𐍄𐌷𐌰𐌱𐌰𐌹𐌸𐍃", "", "to come up"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌷𐌰𐌽𐍃", "verb", "athāhans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌷𐌰𐌽", "verb", "𐌰𐍄𐌷𐌰𐌷𐌰", "𐌰𐍄𐌷𐌰𐌹𐌷𐌰𐌷", "𐌰𐍄𐌷𐌰𐌷𐌰𐌽𐍃", "", "to let down"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌷𐌹𐌳", "verb", "athāhid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "atsaiƕandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍄𐌷𐌰𐌷𐌹𐌸", "verb", "athāhiþ", "𐌰𐍄𐌷𐌰𐌷𐌹𐌳", "", "", "inflection of 𐌰𐍄𐌷𐌰𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "verb", "atsaiƕands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌹𐌲𐌹𐌸", "verb", "atligiþ", "", "", "", "inflection of 𐌰𐍄𐌻𐌹𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌰𐍄𐌻𐌹𐌲𐌰𐌽", "verb", "𐌰𐍄𐌻𐌹𐌲𐌰", "𐌰𐍄𐌻𐌰𐌲", "𐌰𐍄𐌻𐌹𐌲𐌰𐌽𐍃", "", "to be present"]) + let v = native_list_append(v, ["𐌰𐍄𐌽𐌴𐍈𐌹𐌳𐌰", "verb", "atnēƕida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐌽𐌴𐍈𐌾𐌰𐌽", "verb", "𐌰𐍄𐌽𐌴𐍈𐌾𐌰", "𐌰𐍄𐌽𐌴𐍈𐌹𐌳𐌰", "𐌰𐍄𐌽𐌴𐍈𐌹𐌸𐍃", "", "to arrive in"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌽𐌰𐍂𐍀𐌾𐌰𐌹𐍃", "verb", "atsnarpjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌰𐍄𐍃𐌽𐌰𐍂𐍀𐌾𐌰𐌽", "verb", "𐌰𐍄𐍃𐌽𐌰𐍂𐍀𐌾𐌰", "𐌰𐍄𐍃𐌽𐌰𐍂𐍀𐌹𐌳𐌰", "𐌰𐍄𐍃𐌽𐌰𐍂𐍀𐌹𐌸𐍃", "", "to handle"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌻𐍅𐌹𐌳𐌰", "verb", "atwalwida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌻𐍅𐌾𐌰𐌽", "verb", "𐌰𐍄𐍅𐌰𐌻𐍅𐌾𐌰", "𐌰𐍄𐍅𐌰𐌻𐍅𐌹𐌳𐌰", "𐌰𐍄𐍅𐌰𐌻𐍅𐌹𐌸𐍃", "", "to roll transitive"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐍅𐌾𐌰𐌽", "verb", "𐍅𐌰𐌻𐍅𐌾𐌰", "𐍅𐌰𐌻𐍅𐌹𐌳𐌰", "𐍅𐌰𐌻𐍅𐌹𐌸𐍃", "", "to roll transitive"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌽𐌳𐌹𐌳𐌰", "verb", "atwandida", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐍅𐌰𐌽𐌳𐌾𐌰", "𐍅𐌰𐌽𐌳𐌹𐌳𐌰", "𐍅𐌰𐌽𐌳𐌹𐌸𐍃", "", "to turn"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌳𐌴𐌹", "verb", "wandei", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "wandjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌰𐍄𐍅𐌰𐌽𐌳𐌾𐌰𐌽", "verb", "𐌰𐍄𐍅𐌰𐌽𐌳𐌾𐌰", "𐌰𐍄𐍅𐌰𐌽𐌳𐌹𐌳𐌰", "𐌰𐍄𐍅𐌰𐌽𐌳𐌹𐌸𐍃", "", "to return"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌹𐌸", "verb", "witaiþ", "", "", "", "inflection of 𐍅𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌹𐌳𐌰", "verb", "witaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "witaidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐌰𐌹", "verb", "witai", "", "", "", "inflection of 𐍅𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌸𐌾𐌰𐌽", "verb", "𐌱𐌰𐌻𐌸𐌾𐌰", "𐌱𐌰𐌻𐌸𐌹𐌳𐌰", "𐌱𐌰𐌻𐌸𐌹𐌸𐍃", "", "to be bold"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌸𐌴𐌹𐌸", "verb", "balþeiþ", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐌳𐍅𐌹𐌳𐌿𐌷", "verb", "bandwiduh", "", "", "", "contraction of 𐌱𐌰𐌽𐌳𐍅𐌹𐌳𐌰"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰", "verb", "baua", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌹𐌸", "verb", "bauiþ", "", "", "", "inflection of 𐌱𐌰𐌿𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌹", "verb", "bauai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌹𐌼𐌰", "verb", "bauaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌹𐌳𐌰", "verb", "bauaida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌽𐌳𐍃", "verb", "bauands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌰𐌽𐌳𐌴𐌹", "verb", "bauandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌱𐍂𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "biabridēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌱𐍂𐌾𐌰𐌽", "verb", "𐌱𐌹𐌰𐌱𐍂𐌾𐌰", "𐌱𐌹𐌰𐌱𐍂𐌹𐌳𐌰", "𐌱𐌹𐌰𐌱𐍂𐌹𐌸𐍃", "", "to be astonished"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐍄𐌰𐌿", "verb", "niutau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌿𐌺𐌰𐌽", "verb", "𐌱𐌹𐌰𐌿𐌺𐌰", "𐌱𐌹𐌰𐌹𐌰𐌿𐌺", "𐌱𐌹𐌰𐌿𐌺𐌰𐌽𐍃", "", "to increase"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌿𐌺", "verb", "biauk", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌿𐌺𐌰𐌽𐌳𐍃", "verb", "biaukands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌰𐌿𐌺𐌰𐌳𐌰", "verb", "biaukada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌹𐌳", "verb", "bidjaid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃𐌿𐌸", "verb", "bidjandansuþ", "", "", "", "and requesting and"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐍉𐌼𐌾𐌰𐌽", "verb", "𐌱𐌹𐌳𐍉𐌼𐌾𐌰", "𐌱𐌹𐌳𐍉𐌼𐌹𐌳𐌰", "𐌱𐌹𐌳𐍉𐌼𐌹𐌸𐍃", "", "to judge"]) + let v = native_list_append(v, ["𐌱𐌹𐌳𐍉𐌼𐌾𐌰𐌹", "verb", "bidōmjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌰𐌿𐍂𐌳𐌰𐌽𐍃", "verb", "bigaurdans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌰𐌹𐍂𐌳𐌰𐌽", "verb", "𐌱𐌹𐌲𐌰𐌹𐍂𐌳𐌰", "𐌱𐌹𐌲𐌰𐍂𐌳", "𐌱𐌹𐌲𐌰𐌿𐍂𐌳𐌰𐌽𐍃", "", "to gird oneself"]) + let v = native_list_append(v, ["𐌳𐌰𐌹𐌲", "verb", "daig", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌽", "verb", "𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰", "𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌳𐌰", "𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌸𐍃", "", "to fulfill"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹𐌸", "verb", "usfulleiþ", "", "", "", "inflection of 𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰", "verb", "usfullja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌳𐌰", "verb", "usfullida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌳𐌰", "verb", "usfulljada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌽𐌳𐌰", "verb", "usfulljanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌹𐌳𐌰𐌿", "verb", "usfulljaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "usfullidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌹𐍃", "verb", "usfulljais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌳𐌴𐌳𐌹", "verb", "usfullidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌴𐌹", "verb", "usfullei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌸𐍃", "verb", "usfulliþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌹𐌸", "verb", "usfulliþ", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌽𐌳𐍃", "verb", "usfulljands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌽𐌳𐍉", "verb", "usfulljandō", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌿𐌻𐌻𐌾𐌰𐌽𐌳𐌹𐌽𐍃", "verb", "usfulljandins", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌽", "verb", "𐍆𐌰𐌲𐌹𐌽𐍉", "𐍆𐌰𐌲𐌹𐌽𐍉𐌳𐌰", "𐍆𐌰𐌲𐌹𐌽𐍉𐌸𐍃", "", "to rejoice"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌳𐌰", "verb", "faginōda", "", "", "", "inflection of 𐍆𐌰𐌲𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉", "verb", "faginō", "", "", "", "inflection of 𐍆𐌰𐌲𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌳𐌴𐌳𐌿𐌼", "verb", "faginōdēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "faginōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌳𐌴𐌳𐌴𐌹𐌸", "verb", "faginōdēdeiþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌸", "verb", "faginōþ", "", "", "", "inflection of 𐍆𐌰𐌲𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌼", "verb", "faginōm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌽𐌳", "verb", "faginōnd", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌽𐌳𐍃", "verb", "faginōnds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌽𐌳𐌰𐌽𐍃", "verb", "faginōndans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌽𐌳𐌰𐌼", "verb", "faginōndam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌽", "verb", "𐌲𐌰𐌲𐌴𐌹𐌲𐌰", "𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌳𐌰", "𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌸𐍃", "", "to gain"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌸", "verb", "gageigaiþ", "", "", "", "inflection of 𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌿", "verb", "gageigaidēdjau", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌴𐌹𐌲𐌲𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌿", "verb", "gageiggaidēdjau", "", "", "", "misspelling of 𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌿"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌽𐌳𐍃", "verb", "gageigānds", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽", "verb", "𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰", "𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌳𐌰", "𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌸𐍃", "", "to hear"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌴𐌹𐌸", "verb", "gahauseiþ", "", "", "", "inflection of 𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳", "verb", "gahausjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌿", "verb", "gahausjau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌹", "verb", "gahausjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌳𐌰", "verb", "gahausida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "gahausidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "gahausidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐌸", "verb", "gahausidēduþ", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌹𐌳𐌴𐌳𐌿𐍄𐍃", "verb", "gahausidēduts", "", "", "", "second-person dual past"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐍃", "verb", "gahausjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "verb", "gahausjandein", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "gahausjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "gahausjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "gahausjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌿𐍃𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "gahausjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽", "verb", "𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰", "𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "", "to work make"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "verb", "gawaurhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "gawaurhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌴𐌳𐌹", "verb", "gawaurhtēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌴𐌹𐌸", "verb", "gawaurkeiþ", "", "", "", "inflection of 𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌼", "verb", "gawaurkjam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌹", "verb", "gawaurkjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌹𐌼𐌰", "verb", "gawaurkjaima", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "gawaurkjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌺𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "gawaurkjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌲𐌻𐍉𐌽", "verb", "𐍃𐍅𐌹𐌲𐌻𐍉", "𐍃𐍅𐌹𐌲𐌻𐍉𐌳𐌰", "𐍃𐍅𐌹𐌲𐌻𐍉𐌸𐍃", "", "to play the"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌲𐌻𐍉𐌳𐌴𐌳𐌿𐌼", "verb", "swiglōdēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐍃𐌰𐌽", "verb", "𐌲𐌰𐌻𐌹𐍃𐌰", "𐌲𐌰𐌻𐌰𐍃", "𐌲𐌰𐌻𐌹𐍃𐌰𐌽𐍃", "", "to gather together"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐌰𐌽", "verb", "𐌻𐌹𐍃𐌰", "𐌻𐌰𐍃", "𐌻𐌹𐍃𐌰𐌽𐍃", "", "to gather"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐍃𐌿𐌽", "verb", "galēsun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐌰𐌽𐌳", "verb", "lisand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐍃𐌰𐌽𐌳", "verb", "galisand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌵𐌹𐌸𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌰𐌵𐌹𐌸𐌰", "𐍆𐌰𐌿𐍂𐌰𐌵𐌰𐌸", "𐍆𐌰𐌿𐍂𐌰𐌵𐌹𐌸𐌰𐌽𐍃", "", "to prophesy to"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌵𐌴𐌸𐌿𐌽", "verb", "fauraqēþun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌵𐌴𐌸𐌿𐌼", "verb", "fauraqēþum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌵𐌹𐌸𐌰", "verb", "fauraqiþa", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌵𐌰𐌸", "verb", "fauraqaþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍄𐌴𐌹𐌷𐌰𐌽", "verb", "𐍄𐌴𐌹𐌷𐌰", "𐍄𐌰𐌹𐌷", "𐍄𐌰𐌹𐌷𐌰𐌽𐍃", "", "to show point"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌽", "verb", "𐌲𐌰𐍄𐌴𐌹𐌷𐌰", "𐌲𐌰𐍄𐌰𐌹𐌷", "𐌲𐌰𐍄𐌰𐌹𐌷𐌰𐌽𐍃", "", "to show display"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍄𐌴𐌹𐌷𐌰", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍄𐌰𐌹𐌷", "𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍄𐌹𐌷𐌰𐌽𐍃", "", "to foretell"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌽𐌳𐍃", "verb", "gateihands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌽𐌳𐌹𐌽", "verb", "gateihandin", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍄𐌴𐌹𐌷𐌰", "verb", "fauragateiha", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐌰𐌽𐌳𐌰", "verb", "lisanda", "", "", "", "first/second/third-person singular present"]) + let v = native_list_append(v, ["𐌻𐌰𐍃", "verb", "las", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐍃𐌹𐌸", "verb", "galisiþ", "", "", "", "inflection of 𐌲𐌰𐌻𐌹𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐍃𐌰𐌳𐌰", "verb", "galisada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐍃𐌰𐌽𐍃", "verb", "galisans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌹𐍃𐌰𐌽𐌰𐌽𐍃", "verb", "galisanans", "", "", "", "inflection of 𐌲𐌰𐌻𐌹𐍃𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌹𐌸", "verb", "gateihiþ", "", "", "", "inflection of 𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌼", "verb", "gateiham", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐍄𐍃", "verb", "gateihats", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰", "verb", "gateiha", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌰𐌹𐌷", "verb", "gataih", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷𐌰𐌹𐌳𐌰𐌿", "verb", "gateihaidau", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌹𐌷", "verb", "gateih", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰𐌲𐌰𐍄𐌰𐌹𐌷", "verb", "fauragataih", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌲𐌰𐌽", "verb", "𐌱𐌹𐌿𐌲𐌰", "𐌱𐌰𐌿𐌲", "𐌱𐌿𐌲𐌰𐌽𐍃", "", "to bend bow"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌲𐌰", "verb", "biuga", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌲𐌹𐌸", "verb", "biugiþ", "", "", "", "inflection of 𐌱𐌹𐌿𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐌹𐌽𐍉𐌳", "verb", "faginōd", "", "", "", "inflection of 𐍆𐌰𐌲𐌹𐌽𐍉𐌽"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽", "verb", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌳𐌰", "𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌸𐍃", "", "to covet"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌳𐌴𐌳𐌿𐌼", "verb", "bifaihōdēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌳𐌰", "verb", "bifaihōda", "", "", "", "inflection of 𐌱𐌹𐍆𐌰𐌹𐌷𐍉𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌱𐌽𐌾𐌰𐌽", "verb", "𐌲𐌰𐌹𐌱𐌽𐌾𐌰", "𐌲𐌰𐌹𐌱𐌽𐌹𐌳𐌰", "𐌲𐌰𐌹𐌱𐌽𐌹𐌸𐍃", "", "to level to"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌱𐌽𐌾𐌰𐌽𐌳", "verb", "gaibnjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌽", "verb", "𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "𐍆𐍂𐌰𐌻𐌰𐌹𐌻𐍉𐍄", "𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌽𐍃", "", "to let go"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐌹𐍄𐌰𐌽", "verb", "𐍆𐍂𐌰𐌻𐌴𐌹𐍄𐌰", "𐍆𐍂𐌰𐌻𐌰𐌹𐌻𐍉𐍄", "𐍆𐍂𐌰𐌻𐌴𐌹𐍄𐌰𐌽𐍃", "", "alternative form of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌹𐍃", "verb", "fralētais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐌹𐍄𐌰𐌹𐍃", "verb", "fraleitais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰", "verb", "fralēta", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌰𐌹𐌻𐍉𐍄", "verb", "fralailōt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌰𐌹𐌻𐍉𐍄𐌿𐌽", "verb", "fralailōtun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌳𐌰", "verb", "fralētada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌽𐌳𐌰", "verb", "fralētanda", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌹𐍃", "verb", "fralētis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌹𐌸", "verb", "fralētiþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌰𐌹𐌻𐍉𐍄𐌹", "verb", "fralailōti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌿", "verb", "fralētau", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄", "verb", "fralēt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌽𐌳𐍃", "verb", "fralētands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌻𐌴𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "fralētandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌾𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌷𐍄𐌾𐌰", "𐍆𐌰𐌿𐍂𐌷𐍄𐌹𐌳𐌰", "𐍆𐌰𐌿𐍂𐌷𐍄𐌹𐌸𐍃", "", "to fear be"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹𐌸", "verb", "faurhteiþ", "", "", "", "inflection of 𐍆𐌰𐌿𐍂𐌷𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌴𐌹", "verb", "faurhtei", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "faurhtidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌾𐌰𐌹𐌽𐌰", "verb", "faurhtjaina", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌻𐍉𐌽𐌰", "verb", "gatilōna", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐌰𐌽", "verb", "𐌳𐍂𐌹𐌿𐍃𐌰", "𐌳𐍂𐌰𐌿𐍃", "𐌳𐍂𐌿𐍃𐌰𐌽𐍃", "", "to fall"]) + let v = native_list_append(v, ["𐌳𐍂𐌰𐌿𐍃", "verb", "draus", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐍃𐌿𐌽", "verb", "drusun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐌹𐌸", "verb", "driusiþ", "", "", "", "inflection of 𐌳𐍂𐌹𐌿𐍃𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳𐍃", "verb", "driusands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "driusandeins", "", "", "", "inflection of 𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌿𐍃𐌰𐌽𐌳𐌴𐌹𐌽𐍉", "verb", "driusandeinō", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰𐌽", "verb", "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰", "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐍉𐌳𐌰", "", "", "to perish be"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐍉𐌳𐌰", "verb", "fraqistnōda", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐍉𐌳𐌴𐌳𐌿𐌽", "verb", "fraqistnōdēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰𐌽𐌳", "verb", "fraqistnand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰𐌹", "verb", "fraqistnai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰", "verb", "fraqistna", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌹𐌸", "verb", "fraqistniþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰𐌽𐌳𐍃", "verb", "fraqistnands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌽𐌰𐌽𐌳𐌰𐌼", "verb", "fraqistnandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌵𐌹𐍃𐍄𐌾𐌰𐌽", "verb", "𐌵𐌹𐍃𐍄𐌾𐌰", "𐌵𐌹𐍃𐍄𐌹𐌳𐌰", "𐌵𐌹𐍃𐍄𐌹𐌸𐍃", "", "to destroy"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰𐌽", "verb", "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰", "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌹𐌳𐌰", "𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌹𐌸𐍃", "", "to destroy utterly"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌴𐌹𐌸", "verb", "fraqisteiþ", "", "", "", "inflection of 𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰", "verb", "fraqistja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌹𐌳𐌰", "verb", "fraqistida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰𐌹𐍃", "verb", "fraqistjais", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰𐌹", "verb", "fraqistjai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐍃𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "fraqistjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍄𐌾𐌰𐌽", "verb", "𐌿𐍃𐌵𐌹𐍃𐍄𐌾𐌰", "𐌿𐍃𐌵𐌹𐍃𐍄𐌹𐌳𐌰", "𐌿𐍃𐌵𐌹𐍃𐍄𐌹𐌸𐍃", "", "to destroy utterly"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍄𐌴𐌹𐌸", "verb", "usqisteiþ", "", "", "", "inflection of 𐌿𐍃𐌵𐌹𐍃𐍄𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍄𐌹𐌳𐌴𐌳𐌹", "verb", "usqistidēdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍄𐌹𐌳𐌴𐌳𐌴𐌹𐌽𐌰", "verb", "usqistidēdeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐍃𐌵𐌹𐍃𐍄𐌹𐌸𐍃", "verb", "usqistiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌺𐌻𐌹𐍃𐌼𐌾𐌰𐌽", "verb", "𐌺𐌻𐌹𐍃𐌼𐌾𐌰", "𐌺𐌻𐌹𐍃𐌼𐌹𐌳𐌰", "𐌺𐌻𐌹𐍃𐌼𐌹𐌸𐍃", "", "to sound a"]) + let v = native_list_append(v, ["𐌺𐌻𐌹𐍃𐌼𐌾𐌰𐌽𐌳𐍃", "verb", "klismjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌺𐌻𐌹𐍃𐌼𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "klismjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽", "verb", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌹𐌳𐌰", "𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌹𐌸𐍃", "", "to prophesy"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌹𐌳𐌰", "verb", "praufētida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌹𐌳𐌴𐌳𐌿𐌼", "verb", "praufētidēdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽𐌳", "verb", "praufētjand", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌴𐌹", "verb", "praufētei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽𐌳𐍃", "verb", "praufētjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍀𐍂𐌰𐌿𐍆𐌴𐍄𐌾𐌰𐌽𐌳𐌴𐌹", "verb", "praufētjandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌹𐌳", "verb", "qimid", "", "", "", "inflection of 𐌵𐌹𐌼𐌰𐌽"]) + let v = native_list_append(v, ["𐌵𐌹𐌼𐌹", "verb", "qimi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌾𐌰𐌽", "verb", "𐍃𐌹𐍀𐍉𐌽𐌾𐌰", "𐍃𐌹𐍀𐍉𐌽𐌹𐌳𐌰", "𐍃𐌹𐍀𐍉𐌽𐌹𐌸𐍃", "", "to be a"]) + let v = native_list_append(v, ["𐍃𐌹𐍀𐍉𐌽𐌹𐌳𐌰", "verb", "sipōnida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍄𐌰𐍅𐌹𐌳𐌹𐌳𐌴𐌹𐌽𐌰", "verb", "tawidideina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌹𐌳", "verb", "taujid", "", "", "", "inflection of 𐍄𐌰𐌿𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍄𐌰𐌿𐌾𐌰𐌹𐌳", "verb", "taujaid", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐌷𐍂𐌿𐍃𐌺𐌰𐌽", "verb", "𐌷𐍂𐌿𐍃𐌺𐌰", "𐌷𐍂𐌿𐍃𐌺𐌰𐌹𐌳𐌰", "𐌷𐍂𐌿𐍃𐌺𐌰𐌹𐌸𐍃", "", "to be quick"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌳𐌴𐌳𐌾𐌾𐌰𐌿", "verb", "gageigaidēdjjau", "", "", "", "misspelling of 𐌲𐌰𐌲𐌴𐌹𐌲𐌰𐌹𐌳𐌴𐌳𐌾𐌰𐌿"]) + let v = native_list_append(v, ["𐌿𐍃𐌸𐍂𐍉𐌸𐌾𐌰𐌽", "verb", "𐌿𐍃𐌸𐍂𐍉𐌸𐌾𐌰", "𐌿𐍃𐌸𐍂𐍉𐌸𐌹𐌳𐌰", "𐌿𐍃𐌸𐍂𐍉𐌸𐌹𐌸𐍃", "", "to drill train"]) + let v = native_list_append(v, ["𐌿𐍃𐌸𐍂𐍉𐌸𐌹𐌸𐍃", "verb", "usþrōþiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍄𐌰𐌽", "verb", "𐌼𐌰𐌹𐍄𐌰", "𐌼𐌰𐌹𐌼𐌰𐌹𐍄", "𐌼𐌰𐌹𐍄𐌰𐌽𐍃", "", "to cut hew"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌼𐌰𐌹𐍄𐌿𐌽", "verb", "maimaitun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌹𐌱𐌰𐌽", "verb", "𐌰𐍆𐌲𐌹𐌱𐌰", "𐌰𐍆𐌲𐌰𐍆", "𐌰𐍆𐌲𐌹𐌱𐌰𐌽𐍃", "", "to depart"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌾𐌰𐌽", "verb", "𐍅𐌰𐌲𐌾𐌰", "𐍅𐌰𐌲𐌹𐌳𐌰", "𐍅𐌰𐌲𐌹𐌸𐍃", "", "to shake"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌹𐌸𐍃", "verb", "wagiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌹𐌳", "verb", "wagid", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌲𐌹𐌳𐌰𐍄𐌰", "verb", "wagidata", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌳𐍂𐌹𐌲𐌺𐌹𐌳", "verb", "drigkid", "", "", "", "inflection of 𐌳𐍂𐌹𐌲𐌺𐌰𐌽"]) + let v = native_list_append(v, ["𐌺𐌰𐍀𐌹𐌻𐌻𐍉𐌽", "verb", "𐌺𐌰𐍀𐌹𐌻𐌻𐍉", "𐌺𐌰𐍀𐌹𐌻𐌻𐍉𐌳𐌰", "𐌺𐌰𐍀𐌹𐌻𐌻𐍉𐌸𐍃", "", "to get a"]) + let v = native_list_append(v, ["𐌺𐌰𐌽𐍄", "verb", "kant", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐌺𐍂𐌹𐌿𐍃𐍄𐌹𐌸", "verb", "kriustiþ", "", "", "", "inflection of 𐌺𐍂𐌹𐌿𐍃𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌾𐌹𐌳", "verb", "lagjid", "", "", "", "inflection of 𐌻𐌰𐌲𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌴𐌹𐌽𐌰", "verb", "qiþeina", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌵𐌹𐌸𐌴𐌹𐌸", "verb", "qiþeiþ", "", "", "", "inflection of 𐌵𐌹𐌸𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌽𐌲𐌹𐌸", "verb", "bringiþ", "", "", "", "inflection of 𐌱𐍂𐌹𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌽𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "bringandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐌹𐌽𐌸𐌰𐌽", "verb", "𐍆𐌹𐌽𐌸𐌰", "𐍆𐌰𐌽𐌸", "𐍆𐌿𐌽𐌸𐌰𐌽𐍃", "", "to find out"]) + let v = native_list_append(v, ["𐍆𐌰𐌽𐌸", "verb", "fanþ", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐌿𐌽𐌸𐌹", "verb", "funþi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["𐍆𐌹𐌽𐌸𐌰𐌽𐌳𐍃", "verb", "finþands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐌹𐌽𐌸𐌰𐌽𐌳𐌴𐌹𐌽𐍃", "verb", "finþandeins", "", "", "", "inflection of 𐍆𐌹𐌽𐌸𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌾𐌰𐌹𐌳", "verb", "fijaid", "", "", "", "inflection of 𐍆𐌹𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰𐌽", "verb", "𐍆𐍂𐌰𐌵𐌹𐌼𐌰", "𐍆𐍂𐌰𐌵𐌰𐌼", "𐍆𐍂𐌰𐌵𐌿𐌼𐌰𐌽𐍃", "", "to spend use"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰𐌳𐌰", "verb", "fraqimada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌰𐌼", "verb", "fraqam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰", "verb", "fraqima", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰𐌹", "verb", "fraqimai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰𐌹𐌽𐌳𐌰𐌿", "verb", "fraqimaindau", "", "", "", "first/second/third-person plural present"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌿𐌼𐌰𐌽𐍃", "verb", "fraqumans", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌿𐌼𐌰𐌽", "verb", "fraquman", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰𐌽𐌳𐍃", "verb", "fraqimands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌵𐌹𐌼𐌰𐌽𐌳𐌴𐌹", "verb", "fraqimandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌳𐌰𐌼𐌼𐌾𐌰𐌳𐌰", "verb", "faurdammjada", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌳𐌰𐌼𐌼𐌾𐌰𐌽", "verb", "𐍆𐌰𐌿𐍂𐌳𐌰𐌼𐌼𐌾𐌰", "𐍆𐌰𐌿𐍂𐌳𐌰𐌼𐌼𐌹𐌳𐌰", "𐍆𐌰𐌿𐍂𐌳𐌰𐌼𐌼𐌹𐌸𐍃", "", "to obstruct stop"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰𐌽", "verb", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌹𐌳𐌰", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌹𐌸𐍃", "", "to marvel to"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌴𐌹𐌸", "verb", "sildaleikeiþ", "", "", "", "inflection of 𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌹𐌳𐌰", "verb", "sildaleikida", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌹𐌳𐌴𐌳𐌿𐌽", "verb", "sildaleikidēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰", "verb", "sildaleikja", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰𐌽𐌳𐍃", "verb", "sildaleikjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "sildaleikjandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰𐌽𐌳𐍉𐌽𐌰", "verb", "sildaleikjandōna", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌾𐌰𐌽𐌳𐌰𐌼", "verb", "sildaleikjandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌽𐌰𐌽", "verb", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌽𐌰", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌽𐍉𐌳𐌰", "", "", "to be marvelled"]) + let v = native_list_append(v, ["𐍉𐌲𐌰𐌽", "verb", "𐍉𐌲", "𐍉𐌷𐍄𐌰", "𐍉𐌷𐍄𐍃", "", "to fear be"]) + let v = native_list_append(v, ["𐍉𐌲", "verb", "ōg", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["𐍉𐌷𐍄𐌰", "verb", "ōhta", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐍉𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "ōhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐌴𐌳𐌿𐌽", "verb", "uhtēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐍉𐌲𐌴𐌹𐍃", "verb", "ōgeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍉𐌲𐌴𐌹𐌸", "verb", "ōgeiþ", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["𐍉𐌲𐍃", "verb", "ōgs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍉𐌲𐌰𐌽𐌳𐍃", "verb", "ōgands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐍉𐌲𐌰𐌽𐌳𐌴𐌹", "verb", "ōgandei", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍉𐌲𐌰𐌽𐌳𐌰𐌼", "verb", "ōgandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍉𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "verb", "ōgandans", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍉𐌲𐌾𐌰𐌽", "verb", "𐍉𐌲𐌾𐌰", "𐍉𐌲𐌹𐌳𐌰", "𐍉𐌲𐌹𐌸𐍃", "", "to scare frighten"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌾𐌰𐌽", "verb", "𐍂𐌹𐌵𐌹𐌶𐌾𐌰", "𐍂𐌹𐌵𐌹𐌶𐌹𐌳𐌰", "𐍂𐌹𐌵𐌹𐌶𐌹𐌸𐍃", "", "to become dark"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌸", "verb", "riqizeiþ", "", "", "", "inflection of 𐍂𐌹𐌵𐌹𐌶𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐍂𐌹𐌺𐌰𐌽", "verb", "𐍂𐌹𐌺𐌰", "𐍂𐌰𐌺", "𐍂𐌹𐌺𐌰𐌽𐍃", "", "to heap up"]) + let v = native_list_append(v, ["𐍂𐌹𐌺𐌹𐍃", "verb", "rikis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌸𐍃", "verb", "rōdiþs", "no-table-tags", "got-decl-adj-a", "", "past participle of"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌸", "verb", "rōdiþ", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐍉𐌽𐌰", "verb", "rōdidōna", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌹𐌳𐌰𐌽𐌴", "verb", "rōdidanē", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍂𐍉𐌳𐌴𐌹𐌳", "verb", "rōdeid", "", "", "", "inflection of 𐍂𐍉𐌳𐌾𐌰𐌽"]) + let v = native_list_append(v, ["𐌳𐌰𐌳𐌳𐌾𐌰𐌽", "verb", "𐌳𐌰𐌳𐌳𐌾𐌰", "𐌳𐌰𐌾𐌹𐌳𐌰", "𐌳𐌰𐌾𐌹𐌸𐍃", "", "to suckle"]) + let v = native_list_append(v, ["𐌳𐌰𐌳𐌳𐌾𐌰𐌽𐌳𐍃", "verb", "daddjands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌳𐌰𐌳𐌳𐌾𐌰𐌽𐌳𐌴𐌹𐌼", "verb", "daddjandeim", "", "", "", "dative feminine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌰𐌲𐌲𐌰𐌽", "verb", "𐌲𐌰𐌲𐌰𐌲𐌲𐌰", "𐌲𐌰𐌹𐌳𐌳𐌾𐌰", "𐌲𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐍃", "", "to gather together"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌰𐌲𐌲𐌹𐌸", "verb", "gagaggiþ", "", "", "", "inflection of 𐌲𐌰𐌲𐌰𐌲𐌲𐌰𐌽"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌳𐌳𐌾𐌰", "verb", "gaiddja", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐌳𐌳𐌾𐌴𐌳𐌿𐌽", "verb", "gaiddjēdun", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐍃", "verb", "gagaggands", "no-table-tags", "got-decl-adj-pp", "", "present participle of"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌰𐌲𐌲𐌰𐌽𐌳𐌰𐌼", "verb", "gagaggandam", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌱𐌹𐌲𐌹𐍄𐌹𐌳", "verb", "bigitid", "", "", "", "inflection of 𐌱𐌹𐌲𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["𐌱𐍂𐌹𐌺𐌰𐌽", "verb", "𐌱𐍂𐌹𐌺𐌰", "𐌱𐍂𐌰𐌺", "𐌱𐍂𐌿𐌺𐌰𐌽𐍃", "", "to break"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐍃", "adj", "𐌰𐍂𐌼𐍃", "𐌰𐍂𐌼𐍉𐍃𐍄𐍃", "𐌰𐍂𐌼𐌰", "", "poor wretched"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌴𐌹𐌲𐍃", "adj", "𐍃𐌹𐌽𐌴𐌹𐌲𐍃", "𐍃𐌹𐌽𐌹𐍃𐍄𐍃", "𐍃𐌹𐌽𐌴𐌹𐌲𐌰", "", "old"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌲𐍃", "adj", "𐌲𐌰𐌱𐌹𐌲𐍃", "", "𐌲𐌰𐌱𐌹𐌲𐌰", "", "rich wealthy"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍃", "adj", "𐍅𐌴𐌹𐍃", "", "𐍅𐌴𐌹𐍃𐌰", "", "wise"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "adj", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐍉𐌸𐍃", "adj", "𐌱𐌰𐍄𐌹𐌶𐌰", "𐌱𐌰𐍄𐌹𐍃𐍄𐍃", "𐌲𐍉𐌳𐌰", "", "good"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌹𐍃", "adj", "𐌼𐌹𐌳𐌾𐌹𐍃", "", "𐌼𐌹𐌳𐌾𐌰", "", "middle"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌸𐌴𐌹𐍃", "adj", "𐍅𐌹𐌻𐌸𐌴𐌹𐍃", "", "𐍅𐌹𐌻𐌸𐌹", "", "wild"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐍃", "adj", "𐌷𐍂𐌰𐌹𐌽𐍃", "", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰", "", "clean"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌿𐍃", "adj", "𐌷𐌰𐍂𐌳𐌹𐌶𐌰", "", "𐌷𐌰𐍂𐌳𐌾𐌰", "", "hard"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐍃", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐍃", "", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰", "", "superlative degree of"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐌹𐌶𐌰", "adj", "𐌱𐌰𐍄𐌹𐌶𐌰", "", "𐌱𐌰𐍄𐌹𐌶𐌴𐌹", "", "better comparative degree"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐌹𐍃𐍄𐍃", "adj", "𐌱𐌰𐍄𐌹𐍃𐍄𐍃", "", "𐌱𐌰𐍄𐌹𐍃𐍄𐌰", "", "best superlative degree"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻𐍃", "adj", "𐌼𐌹𐌽𐌽𐌹𐌶𐌰", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐍃", "𐌻𐌴𐌹𐍄𐌹𐌻𐌰", "", "small little"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐌶𐌰", "adj", "𐌼𐌹𐌽𐌽𐌹𐌶𐌰", "", "𐌼𐌹𐌽𐌽𐌹𐌶𐌴𐌹", "", "smaller less comparative"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐍃", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐍃", "", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰", "", "smallest least superlative"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐍃", "adj", "𐌼𐌰𐌹𐌶𐌰", "𐌼𐌰𐌹𐍃𐍄𐍃", "𐌼𐌹𐌺𐌹𐌻𐌰", "", "large great big"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌶𐌰", "adj", "𐌼𐌰𐌹𐌶𐌰", "", "𐌼𐌰𐌹𐌶𐌴𐌹", "", "greater more comparative"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃𐍄𐍃", "adj", "𐌼𐌰𐌹𐍃𐍄𐍃", "", "𐌼𐌰𐌹𐍃𐍄𐌰", "", "greatest most superlative"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐍃", "adj", "𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌰", "𐍅𐌰𐌹𐍂𐍃𐌹𐍃𐍄𐍃", "𐌿𐌱𐌹𐌻𐌰", "", "bad evil"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌰", "adj", "𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌰", "", "𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌴𐌹", "", "worse comparative degree"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍃𐌹𐍃𐍄𐍃", "adj", "𐍅𐌰𐌹𐍂𐍃𐌹𐍃𐍄𐍃", "", "𐍅𐌰𐌹𐍂𐍃𐌹𐍃𐍄𐌰", "", "worst superlative degree"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰", "adj", "𐍆𐍂𐌿𐌼𐌰", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐍃", "𐍆𐍂𐌿𐌼𐌴𐌹", "", "the former the"]) + let v = native_list_append(v, ["𐌸𐍂𐌹𐌳𐌾𐌰", "adj", "𐌸𐍂𐌹𐌳𐌾𐌰", "", "𐌸𐍂𐌹𐌳𐌾𐍉", "", "the third"]) + let v = native_list_append(v, ["𐍆𐌹𐌼𐍆𐍄𐌰", "adj", "𐍆𐌹𐌼𐍆𐍄𐌰", "", "𐍆𐌹𐌼𐍆𐍄𐍉", "", "the fifth"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐌷𐍃𐍄𐌰", "adj", "𐍃𐌰𐌹𐌷𐍃𐍄𐌰", "", "𐍃𐌰𐌹𐌷𐍃𐍄𐍉", "", "the sixth"]) + let v = native_list_append(v, ["𐌰𐌷𐍄𐌿𐌳𐌰", "adj", "𐌰𐌷𐍄𐌿𐌳𐌰", "", "𐌰𐌷𐍄𐌿𐌳𐍉", "", "the eighth"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌽𐌳𐌰", "adj", "𐌽𐌹𐌿𐌽𐌳𐌰", "", "𐌽𐌹𐌿𐌽𐌳𐍉", "", "the ninth"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌰", "adj", "𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌰", "", "𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍉", "", "the tenth"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰", "𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍃", "𐌼𐌰𐌽𐌰𐌲𐌰", "", "many"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐍃", "adj", "𐍆𐌿𐌻𐌻𐍃", "", "𐍆𐌿𐌻𐌻𐌰", "", "full not empty"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌱𐍃", "adj", "𐌷𐌰𐌻𐌱𐍃", "", "𐌷𐌰𐌻𐌱𐌰", "", "the half consisting"]) + let v = native_list_append(v, ["𐌰𐌱𐍂𐍃", "adj", "𐌰𐌱𐍂𐍃", "", "𐌰𐌱𐍂𐌰", "", "severe extreme"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌾𐌰𐌹", "adj", "𐌰𐌹𐍂𐌶𐌾𐌰𐌹", "", "", "", "inflection of 𐌰𐌹𐍂𐌶𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌰𐌷𐍄𐌿𐌳𐌹𐌽", "adj", "𐌰𐌷𐍄𐌿𐌳𐌹𐌽", "", "", "", "dative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌽𐌰", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌹𐍃", "adj", "𐌰𐌽𐌸𐌰𐍂𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌼𐌼𐌰", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌹", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌹", "", "", "", "nominative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌽𐍃", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌶𐌴", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌼", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌼", "", "", "", "dative masculine/feminine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰", "", "", "", "inflection of 𐌰𐌽𐌸𐌰𐍂"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐍉𐍃", "adj", "𐌰𐌽𐌸𐌰𐍂𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌶𐍉", "adj", "𐌰𐌽𐌸𐌰𐍂𐌰𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌲𐌰𐌼𐌼𐌰", "adj", "𐌲𐌰𐌱𐌹𐌲𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌲𐌰𐌹", "adj", "𐌲𐌰𐌱𐌹𐌲𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐌱𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐍃", "adj", "𐌲𐍉𐌳𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌲𐍉𐌳", "adj", "𐌲𐍉𐌳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌽𐌰", "adj", "𐌲𐍉𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌹𐍃", "adj", "𐌲𐍉𐌳𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌼𐌼𐌰", "adj", "𐌲𐍉𐌳𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌹", "adj", "𐌲𐍉𐌳𐌰𐌹", "", "", "", "inflection of 𐌲𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌽𐍃", "adj", "𐌲𐍉𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌹𐌼", "adj", "𐌲𐍉𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰", "adj", "𐌲𐍉𐌳𐌰", "", "", "", "inflection of 𐌲𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌹𐌶𐍉𐍃", "adj", "𐌲𐍉𐌳𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌲𐍉𐌸", "adj", "𐌲𐍉𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌹𐌽", "adj", "𐌲𐍉𐌳𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐍉", "adj", "𐌲𐍉𐌳𐍉", "", "", "", "inflection of 𐌲𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐍉𐌽", "adj", "𐌲𐍉𐌳𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌹𐌶𐌴", "adj", "𐌲𐍉𐌳𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌱𐌰", "adj", "𐌷𐌰𐌻𐌱𐌰", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌱𐌰𐍄𐌰", "adj", "𐌷𐌰𐌻𐌱𐌰𐍄𐌰", "", "", "", "accusative neuter singular"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌿", "adj", "𐌷𐌰𐍂𐌳𐌿", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼𐌼𐌰", "adj", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹", "adj", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹", "", "", "", "inflection of 𐌷𐍂𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹𐌼", "adj", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽", "adj", "𐌷𐍂𐌰𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌸𐍂𐌹𐌳𐌾𐌰𐌽", "adj", "𐌸𐍂𐌹𐌳𐌾𐌰𐌽", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌸𐍂𐌹𐌳𐌾𐌹𐌽", "adj", "𐌸𐍂𐌹𐌳𐌾𐌹𐌽", "", "", "", "dative masculine singular"]) + let v = native_list_append(v, ["𐌸𐍂𐌹𐌳𐌾𐍉", "adj", "𐌸𐍂𐌹𐌳𐌾𐍉", "", "", "", "inflection of 𐌸𐍂𐌹𐌳𐌾𐌰"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐌼𐌼𐌰", "adj", "𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐌹", "adj", "𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐌹", "", "", "", "inflection of 𐌻𐌴𐌹𐍄𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻𐌰", "adj", "𐌻𐌴𐌹𐍄𐌹𐌻𐌰", "", "", "", "inflection of 𐌻𐌴𐌹𐍄𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻", "adj", "𐌻𐌴𐌹𐍄𐌹𐌻", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐍄𐌰", "adj", "𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐌽𐌴", "adj", "𐌻𐌴𐌹𐍄𐌹𐌻𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌼𐌼𐌰", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌹", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌹", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌽𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌹𐌶𐌴", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌹𐌼", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌹𐌶𐍉𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐍉𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲", "adj", "𐌼𐌰𐌽𐌰𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌰𐌼", "adj", "𐌼𐌰𐌽𐌰𐌲𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐍉𐌽𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐍉𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌰𐌹", "adj", "𐌼𐌹𐌳𐌾𐌰𐌹", "", "", "", "inflection of 𐌼𐌹𐌳𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌰𐌽𐍃", "adj", "𐌼𐌹𐌳𐌾𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌰𐌹𐌼", "adj", "𐌼𐌹𐌳𐌾𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌼𐌹𐌳𐌾𐌰", "adj", "𐌼𐌹𐌳𐌾𐌰", "", "", "", "inflection of 𐌼𐌹𐌳𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰𐌽𐌰", "adj", "𐌼𐌹𐌺𐌹𐌻𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰𐌼𐌼𐌰", "adj", "𐌼𐌹𐌺𐌹𐌻𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰𐌹", "adj", "𐌼𐌹𐌺𐌹𐌻𐌰𐌹", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰𐌽𐍃", "adj", "𐌼𐌹𐌺𐌹𐌻𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰", "adj", "𐌼𐌹𐌺𐌹𐌻𐌰", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐍉𐍃", "adj", "𐌼𐌹𐌺𐌹𐌻𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻", "adj", "𐌼𐌹𐌺𐌹𐌻", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰𐍄𐌰", "adj", "𐌼𐌹𐌺𐌹𐌻𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌹𐌽𐍃", "adj", "𐌼𐌹𐌺𐌹𐌻𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌹𐌽", "adj", "𐌼𐌹𐌺𐌹𐌻𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐍉𐌽", "adj", "𐌼𐌹𐌺𐌹𐌻𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌽𐌳𐍉𐌽", "adj", "𐌽𐌹𐌿𐌽𐌳𐍉𐌽", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌽𐌰", "adj", "𐌿𐌱𐌹𐌻𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌹𐍃", "adj", "𐌿𐌱𐌹𐌻𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌼𐌼𐌰", "adj", "𐌿𐌱𐌹𐌻𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌹", "adj", "𐌿𐌱𐌹𐌻𐌰𐌹", "", "", "", "inflection of 𐌿𐌱𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌽𐍃", "adj", "𐌿𐌱𐌹𐌻𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌱𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌹𐌶𐌴", "adj", "𐌿𐌱𐌹𐌻𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌹𐌼", "adj", "𐌿𐌱𐌹𐌻𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰", "adj", "𐌿𐌱𐌹𐌻𐌰", "", "", "", "inflection of 𐌿𐌱𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐍉𐍃", "adj", "𐌿𐌱𐌹𐌻𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌹𐌶𐍉", "adj", "𐌿𐌱𐌹𐌻𐌰𐌹𐌶𐍉", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻", "adj", "𐌿𐌱𐌹𐌻", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌽", "adj", "𐌿𐌱𐌹𐌻𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐍉𐌽𐌰", "adj", "𐌿𐌱𐌹𐌻𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌹𐌽", "adj", "𐌿𐌱𐌹𐌻𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐌷𐍃𐍄𐌹𐌽", "adj", "𐍃𐌰𐌹𐌷𐍃𐍄𐌹𐌽", "", "", "", "dative masculine singular"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐌷𐍃𐍄𐍉", "adj", "𐍃𐌰𐌹𐌷𐍃𐍄𐍉", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌰𐌹𐌷𐍃𐍄𐍉𐌽", "adj", "𐍃𐌰𐌹𐌷𐍃𐍄𐍉𐌽", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌴𐌹𐌲𐍉𐍃", "adj", "𐍃𐌹𐌽𐌴𐌹𐌲𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍉𐌽", "adj", "𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍉𐌽", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐌼𐌼𐌰", "adj", "𐍆𐌿𐌻𐌻𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐌹", "adj", "𐍆𐌿𐌻𐌻𐌰𐌹", "", "", "", "inflection of 𐍆𐌿𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐌽𐍃", "adj", "𐍆𐌿𐌻𐌻𐌰𐌽𐍃", "", "", "", "inflection of 𐍆𐌿𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐍉𐍃", "adj", "𐍆𐌿𐌻𐌻𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐍉", "adj", "𐍆𐌿𐌻𐌻𐍉", "", "", "", "inflection of 𐍆𐌿𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐍉𐌽", "adj", "𐍆𐌿𐌻𐌻𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐍉𐌽𐍃", "adj", "𐍆𐌿𐌻𐌻𐍉𐌽𐍃", "", "", "", "inflection of 𐍆𐌿𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰𐌽", "adj", "𐍆𐍂𐌿𐌼𐌰𐌽", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐌽", "adj", "𐍆𐍂𐌿𐌼𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌰𐌽𐍃", "adj", "𐍆𐍂𐌿𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐍉", "adj", "𐍆𐍂𐌿𐌼𐍉", "", "", "", "accusative neuter singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌴𐌹", "adj", "𐍆𐍂𐌿𐌼𐌴𐌹", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌴𐌹𐌽", "adj", "𐍆𐍂𐌿𐌼𐌴𐌹𐌽", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐌹𐍃𐍄𐌰", "adj", "𐌱𐌰𐍄𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐌱𐌰𐍄𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐌼𐌰𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃𐍄", "adj", "𐌼𐌰𐌹𐍃𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃𐍄𐌹𐌽𐍃", "adj", "𐌼𐌰𐌹𐍃𐍄𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃𐍄𐌹𐌽", "adj", "𐌼𐌰𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃𐍄𐌰𐌼", "adj", "𐌼𐌰𐌹𐍃𐍄𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰𐌽", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌹𐌽", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰𐌽𐌴", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐍉𐌽𐍉", "adj", "𐌼𐌹𐌽𐌽𐌹𐍃𐍄𐍉𐌽𐍉", "", "", "", "weak genitive feminine"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰𐌼𐌼𐌰", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "weak nominative masculine"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌹𐌽", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰𐌼", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌰𐌼", "", "", "", "weak dative masculine"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐍉𐌽", "adj", "𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐌹𐌶𐌰𐌽𐍃", "adj", "𐌱𐌰𐍄𐌹𐌶𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌱𐌰𐍄𐌹𐌶𐍉", "adj", "𐌱𐌰𐍄𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌶𐍉", "adj", "𐌼𐌰𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌶𐌴𐌹", "adj", "𐌼𐌰𐌹𐌶𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌶𐌴𐌹𐌽", "adj", "𐌼𐌰𐌹𐌶𐌴𐌹𐌽", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐌶𐍉𐌽𐌰", "adj", "𐌼𐌰𐌹𐌶𐍉𐌽𐌰", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌹𐌽", "adj", "𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌴𐌹", "adj", "𐍅𐌰𐌹𐍂𐍃𐌹𐌶𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐌶𐌹𐌽𐍃", "adj", "𐌼𐌹𐌽𐌽𐌹𐌶𐌹𐌽𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐌶𐌹𐌽", "adj", "𐌼𐌹𐌽𐌽𐌹𐌶𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐌶𐌴𐌹", "adj", "𐌼𐌹𐌽𐌽𐌹𐌶𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐌽𐌹𐌶𐍉", "adj", "𐌼𐌹𐌽𐌽𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐍃", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐍃", "", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "", "true"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌽𐌰", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌹", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌹", "", "", "", "inflection of 𐍄𐍂𐌹𐌲𐌲𐍅𐍃"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌹𐌼", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "", "", "", "inflection of 𐍄𐍂𐌹𐌲𐌲𐍅𐍃"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐍉𐍃", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌹𐌽", "adj", "𐍄𐍂𐌹𐌲𐌲𐍅𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍃", "adj", "𐍅𐌴𐌹𐌷𐍃", "", "𐍅𐌴𐌹𐌷𐌰", "", "holy sacred"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐌽𐍃", "adj", "𐍃𐌺𐌰𐌿𐌽𐍃", "", "𐍃𐌺𐌰𐌿𐌽𐌾𐌰", "", "beautiful"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌿𐌽𐌾𐌰𐌹", "adj", "𐍃𐌺𐌰𐌿𐌽𐌾𐌰𐌹", "", "", "", "inflection of 𐍃𐌺𐌰𐌿𐌽𐍃"]) + let v = native_list_append(v, ["𐍂𐌿𐌼𐍃", "adj", "𐍂𐌿𐌼𐍃", "", "𐍂𐌿𐌼𐌰", "", "roomy spacious"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌽𐌰", "adj", "𐍅𐌴𐌹𐌷𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌹𐍃", "adj", "𐍅𐌴𐌹𐌷𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌼𐌼𐌰", "adj", "𐍅𐌴𐌹𐌷𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌹", "adj", "𐍅𐌴𐌹𐌷𐌰𐌹", "", "", "", "inflection of 𐍅𐌴𐌹𐌷𐍃"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌽𐍃", "adj", "𐍅𐌴𐌹𐌷𐌰𐌽𐍃", "", "", "", "inflection of 𐍅𐌴𐌹𐌷𐍃"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌹𐌶𐌴", "adj", "𐍅𐌴𐌹𐌷𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌹𐌼", "adj", "𐍅𐌴𐌹𐌷𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰", "adj", "𐍅𐌴𐌹𐌷𐌰", "", "", "", "inflection of 𐍅𐌴𐌹𐌷𐍃"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌹𐌶𐍉𐍃", "adj", "𐍅𐌴𐌹𐌷𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍉𐍃", "adj", "𐍅𐌴𐌹𐌷𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷", "adj", "𐍅𐌴𐌹𐌷", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐍄𐌰", "adj", "𐍅𐌴𐌹𐌷𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌽", "adj", "𐍅𐌴𐌹𐌷𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌹𐌽", "adj", "𐍅𐌴𐌹𐌷𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌽𐌴", "adj", "𐍅𐌴𐌹𐌷𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌼", "adj", "𐍅𐌴𐌹𐌷𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍉𐌽", "adj", "𐍅𐌴𐌹𐌷𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐍉𐌽𐌰", "adj", "𐍅𐌴𐌹𐌷𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺𐍃", "adj", "𐌱𐍂𐌿𐌺𐍃", "", "𐌱𐍂𐌿𐌺𐌾𐌰", "", "useful profitable"]) + let v = native_list_append(v, ["𐍅𐍉𐌸𐌴𐌹𐍃", "adj", "𐍅𐍉𐌸𐌴𐌹𐍃", "", "𐍅𐍉𐌸𐌹", "", "sweet pleasant"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌴𐌹𐍃", "adj", "𐍂𐌴𐌹𐌺𐌴𐌹𐍃", "𐍂𐌴𐌹𐌺𐌹𐍃𐍄𐍃", "𐍂𐌴𐌹𐌺𐌹", "", "kingly royal regal"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌷𐌰𐍆𐍄𐍃", "adj", "𐌰𐌿𐌳𐌰𐌷𐌰𐍆𐍄𐍃", "", "𐌰𐌿𐌳𐌰𐌷𐌰𐍆𐍄𐌰", "", "fortunate blessed"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌰𐌹𐌼𐌾𐌰𐌹", "adj", "𐌰𐍆𐌷𐌰𐌹𐌼𐌾𐌰𐌹", "", "", "", "strong dative feminine"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌿𐌳𐍉𐌽", "adj", "𐌰𐍆𐌲𐌿𐌳𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌸𐌿", "adj", "𐍃𐌴𐌹𐌸𐌿", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌻𐌸𐌴𐌹𐍃", "adj", "𐌰𐌻𐌸𐌹𐌶𐌰", "", "𐌰𐌻𐌸𐌹", "", "old"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰𐌲", "adj", "𐌷𐌰𐌹𐌻𐌰𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["ᚺᚨᛁᛚᚨᚷ", "adj", "ᚺᚨᛁᛚᚨᚷ", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰𐌲𐍃", "adj", "𐌷𐌰𐌹𐌻𐌰𐌲𐍃", "", "𐌷𐌰𐌹𐌻𐌰𐌲𐌰", "", "holy sacred"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐍂𐍃", "adj", "𐍃𐌺𐌴𐌹𐍂𐍃", "", "𐍃𐌺𐌴𐌹𐍂𐌾𐌰", "", "clear lucid"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍃", "adj", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍃", "", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰", "", "human"]) + let v = native_list_append(v, ["𐌰𐌻𐌸𐌾𐍉𐌽𐌰", "adj", "𐌰𐌻𐌸𐌾𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌷𐌰𐍆𐍄𐌰", "adj", "𐌰𐌿𐌳𐌰𐌷𐌰𐍆𐍄𐌰", "", "", "", "inflection of 𐌰𐌿𐌳𐌰𐌷𐌰𐍆𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐍆𐍄𐍃", "adj", "𐌷𐌰𐍆𐍄𐍃", "", "𐌷𐌰𐍆𐍄𐌰", "", "bound laden with"]) + let v = native_list_append(v, ["𐌷𐌰𐍆𐍄𐌰𐌼", "adj", "𐌷𐌰𐍆𐍄𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌰𐌽𐍃", "adj", "𐌰𐍆𐍄𐌿𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌰", "adj", "𐌰𐍆𐍄𐌿𐌼𐌰", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐍃", "𐌰𐍆𐍄𐌿𐌼𐌴𐌹", "", "last final"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐍃", "adj", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐍃", "", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌰", "", "very last last"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌰", "adj", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄", "adj", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌰𐌽", "adj", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌹𐌽", "adj", "𐌰𐍆𐍄𐌿𐌼𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐍅𐌿𐍃", "adj", "𐌰𐌲𐌲𐍅𐌿𐍃", "", "𐌰𐌲𐌲𐍅𐌾𐌰", "", "narrow"]) + let v = native_list_append(v, ["𐌰𐌲𐌲𐍅𐌿", "adj", "𐌰𐌲𐌲𐍅𐌿", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌽𐌰𐌷𐍃", "adj", "𐍅𐌰𐌹𐌽𐌰𐌷𐍃", "", "𐍅𐌰𐌹𐌽𐌰𐌷𐌰", "", "wretched unhappy miserable"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍃", "adj", "𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍃", "", "𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰", "", "carnal corporeal"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐍃", "adj", "𐌳𐍅𐌰𐌻𐍃", "", "𐌳𐍅𐌰𐌻𐌰", "", "foolish"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸", "adj", "𐍅𐌰𐌹𐍂𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐍃", "adj", "𐍅𐌰𐌹𐍂𐌸𐍃", "", "𐍅𐌰𐌹𐍂𐌸𐌰", "", "worthy suitable useful"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐍃", "adj", "𐌱𐌻𐌹𐌽𐌳𐍃", "", "𐌱𐌻𐌹𐌽𐌳𐌰", "", "blind"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐍂𐍃", "adj", "𐌲𐌰𐌿𐍂𐍃", "", "𐌲𐌰𐌿𐍂𐌰", "", "sad sorrowful"]) + let v = native_list_append(v, ["𐌷𐌻𐌿𐍄𐍂𐍃", "adj", "𐌷𐌻𐌿𐍄𐍂𐍃", "", "𐌷𐌻𐌿𐍄𐍂𐌰", "", "clean pure"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍃", "adj", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍃", "", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰", "", "faithful religious"]) + let v = native_list_append(v, ["𐌳𐌿𐌼𐌱𐍃", "adj", "𐌳𐌿𐌼𐌱𐍃", "", "𐌳𐌿𐌼𐌱𐌰", "", "dumb mute speechless"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃", "", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰", "", "powerful mighty"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃", "", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰", "", "weak"]) + let v = native_list_append(v, ["𐌰𐌽𐍃𐍄𐌴𐌹𐌲𐍃", "adj", "𐌰𐌽𐍃𐍄𐌴𐌹𐌲𐍃", "", "𐌰𐌽𐍃𐍄𐌴𐌹𐌲𐌰", "", "merciful"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐍄𐌴𐌹𐌲𐍃", "adj", "𐌻𐌹𐍃𐍄𐌴𐌹𐌲𐍃", "", "𐌻𐌹𐍃𐍄𐌴𐌹𐌲𐌰", "", "cunning crafty sly"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐍆𐍃", "adj", "𐌳𐌰𐌿𐍆𐍃", "", "𐌳𐌰𐌿𐌱𐌰", "", "hardened hard-hearted callous"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍀𐍃", "adj", "𐌳𐌹𐌿𐍀𐍃", "", "𐌳𐌹𐌿𐍀𐌰", "", "deep"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌸𐌹𐍅𐌹𐍃𐌺𐍃", "adj", "𐌷𐌰𐌹𐌸𐌹𐍅𐌹𐍃𐌺𐍃", "", "𐌷𐌰𐌹𐌸𐌹𐍅𐌹𐍃𐌺𐌰", "", "wild"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌸𐌹𐍅𐌹𐍃𐌺", "adj", "𐌷𐌰𐌹𐌸𐌹𐍅𐌹𐍃𐌺", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐌲𐍃", "adj", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐌲𐍃", "", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐌲𐌰", "", "peaceful peaceable"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐌲𐌰𐌹", "adj", "𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐌲𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐍅𐌰𐌹𐍂𐌸𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐍃𐌴𐌻𐍃", "adj", "𐍃𐌴𐌻𐍃", "", "𐍃𐌴𐌻𐌾𐌰", "", "good kind"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌷𐍃", "adj", "𐌰𐌹𐌽𐌰𐌷𐍃", "", "𐌰𐌹𐌽𐌰𐌷𐌰", "", "only sole"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌷𐌰", "adj", "𐌰𐌹𐌽𐌰𐌷𐌰", "", "", "", "weak nominative masculine"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐍃", "adj", "𐌰𐌲𐌻𐍃", "", "𐌰𐌲𐌻𐌰", "", "shameful humiliating disgraceful"]) + let v = native_list_append(v, ["𐌰𐌲𐌻", "adj", "𐌰𐌲𐌻", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍃", "adj", "𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍃", "", "𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐌰", "", "daily"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐌰𐌽", "adj", "𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰", "adj", "𐍅𐌰𐌹𐍂𐌸𐌰", "", "", "", "inflection of 𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍉", "adj", "𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍉", "", "", "", "inflection of 𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍉𐌼", "adj", "𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍉𐌼", "", "", "", "weak dative feminine"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽𐍃", "adj", "𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽𐍃", "", "𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽𐌰", "", "dark"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽𐌰𐌹", "adj", "𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽", "adj", "𐍂𐌹𐌵𐌹𐌶𐌴𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐍉𐍃𐍄𐌰𐌹", "adj", "𐌰𐍂𐌼𐍉𐍃𐍄𐌰𐌹", "", "", "", "inflection of 𐌰𐍂𐌼𐍉𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐍃", "adj", "𐌻𐌹𐌿𐍄𐍃", "", "𐌻𐌹𐌿𐍄𐌰", "", "hypocritical dishonest"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐌰𐌽𐍃", "adj", "𐌻𐌹𐌿𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌻𐌹𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐌰", "adj", "𐌻𐌹𐌿𐍄𐌰", "", "", "", "inflection of 𐌻𐌹𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍄𐌰𐌹", "adj", "𐌻𐌹𐌿𐍄𐌰𐌹", "", "", "", "inflection of 𐌻𐌹𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐍃", "adj", "𐌷𐌰𐌹𐌻𐍃", "", "𐌷𐌰𐌹𐌻𐌰", "", "whole"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌴𐌹𐍃", "adj", "𐌰𐌿𐌸𐌴𐌹𐍃", "", "𐌰𐌿𐌸𐌹", "", "deserted desolate barren"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌾𐌰𐌽𐌰", "adj", "𐌰𐌿𐌸𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌾𐌰𐌼𐌼𐌰", "adj", "𐌰𐌿𐌸𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌾𐌰𐌹𐌼", "adj", "𐌰𐌿𐌸𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌸𐌾𐍉𐌽𐍃", "adj", "𐌰𐌿𐌸𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌿𐌸𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍄𐌿𐌻𐌲𐌿𐍃", "adj", "𐍄𐌿𐌻𐌲𐌿𐍃", "", "𐍄𐌿𐌻𐌲𐌾𐌰", "", "steadfast resistant firm"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "sinful"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌸𐍃", "adj", "𐍆𐍂𐍉𐌳𐍉𐌶𐌰", "", "𐍆𐍂𐍉𐌳𐌰", "", "wise"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐍃", "adj", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐍃", "", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌰", "", "amazing marvelous"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐌸𐌴𐌹𐌲𐌰𐌽𐍃", "adj", "𐌷𐍂𐍉𐌸𐌴𐌹𐌲𐌰𐌽𐍃", "", "", "", "inflection of 𐌷𐍂𐍉𐌸𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌷𐍂𐍉𐌸𐌴𐌹𐌲𐍃", "adj", "𐌷𐍂𐍉𐌸𐌴𐌹𐌲𐍃", "", "𐌷𐍂𐍉𐌸𐌴𐌹𐌲𐌰", "", "glorious"]) + let v = native_list_append(v, ["𐍃𐌿𐍄𐌹𐍃", "adj", "𐍃𐌿𐍄𐌹𐍃", "", "𐍃𐌿𐍄𐌹𐌶𐌰", "", "mild tolerable"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐍃", "adj", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐍃", "", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌰", "", "merciful compassionate"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌰𐌹", "adj", "𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐌰𐌹", "", "", "", "inflection of 𐌰𐍂𐌼𐌰𐌷𐌰𐌹𐍂𐍄𐍃"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐍃", "adj", "𐌳𐌰𐌿𐌸𐍃", "", "𐌳𐌰𐌿𐌸𐌰", "", "dead"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌸𐍃", "adj", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌸𐍃", "", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌳𐌰", "", "dyed purple"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌳𐌰𐌹", "adj", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌳𐌰𐌹", "", "", "", "inflection of 𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌳𐍉𐌽", "adj", "𐍀𐌰𐌿𐍂𐍀𐌿𐍂𐍉𐌳𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰𐌹", "adj", "𐌳𐌰𐌿𐌸𐌰𐌹", "", "", "", "inflection of 𐌳𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰𐌹𐌼", "adj", "𐌳𐌰𐌿𐌸𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰𐌽𐍃", "adj", "𐌳𐌰𐌿𐌸𐌰𐌽𐍃", "", "", "", "inflection of 𐌳𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰", "adj", "𐌳𐌰𐌿𐌸𐌰", "", "", "", "inflection of 𐌳𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌰𐌹𐌶𐌴", "adj", "𐌳𐌰𐌿𐌸𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌹𐌽𐍃", "adj", "𐌳𐌰𐌿𐌸𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌰", "adj", "𐍃𐌿𐌽𐌾𐌰", "", "", "", "inflection of 𐍃𐌿𐌽𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "adj", "𐌿𐌽𐍃𐌴𐌻𐌴𐌹𐌽𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐍃", "adj", "𐌿𐌽𐍃𐌴𐌻𐍃", "", "𐌿𐌽𐍃𐌴𐌻𐌾𐌰", "", "evil wicked"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐍃", "adj", "𐍃𐍅𐌴𐍂𐍃", "", "𐍃𐍅𐌴𐍂𐌰", "", "honored dear"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌹𐌼", "adj", "𐍃𐍅𐌴𐍂𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍂𐌰𐌽𐍃", "adj", "𐍃𐍅𐌴𐍂𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐍅𐌴𐍂𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐍃", "adj", "𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐍃", "", "𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌰", "", "earthen"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌰", "adj", "𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌰𐌹𐌼", "adj", "𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌹𐌽𐍃", "adj", "𐌰𐌹𐍂𐌸𐌴𐌹𐌽𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐍃", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐍃", "", "𐌰𐌹𐍅𐌴𐌹𐌽𐌰", "", "eternal everlasting"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐌰", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌰𐌹𐍅𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐍃", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐍉", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐍉", "", "", "", "inflection of 𐌰𐌹𐍅𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐌽𐍃", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌹𐍅𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐌽", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐌹𐍃", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌽𐌰", "adj", "𐌰𐌹𐍅𐌴𐌹𐌽𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌹𐍂𐌷𐍃", "adj", "𐌸𐍅𐌰𐌹𐍂𐌷𐍃", "", "𐌸𐍅𐌰𐌹𐍂𐌷𐌰", "", "angry"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "adj", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰", "adj", "𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌲𐌰𐌻𐌰𐌿𐌱𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "", "", "strong nominative masculine"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐌽𐍃", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐍃", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌼𐌼𐌰", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐌼", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐌶𐌴", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐍃", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "", "", "inflection of 𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍉𐌽", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌳𐌰𐌲𐍃", "adj", "𐌲𐍂𐌴𐌳𐌰𐌲𐍃", "", "𐌲𐍂𐌴𐌳𐌰𐌲𐌰", "", "hungry"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌳𐌰𐌲𐌰𐌹", "adj", "𐌲𐍂𐌴𐌳𐌰𐌲𐌰𐌹", "", "", "", "inflection of 𐌲𐍂𐌴𐌳𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌳𐌰𐌲𐌰𐌽𐍃", "adj", "𐌲𐍂𐌴𐌳𐌰𐌲𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐍂𐌴𐌳𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌲𐍂𐌴𐌳𐌰𐌲𐌰𐌽𐌰", "adj", "𐌲𐍂𐌴𐌳𐌰𐌲𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌳𐌿𐌼𐌱𐌰", "adj", "𐌳𐌿𐌼𐌱𐌰", "", "", "", "inflection of 𐌳𐌿𐌼𐌱𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐍆𐍃", "adj", "𐌻𐌹𐌿𐍆𐍃", "", "𐌻𐌹𐌿𐌱𐌰", "", "dear beloved"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰𐌽𐍃", "adj", "𐌻𐌹𐌿𐌱𐌰𐌽𐍃", "", "", "", "inflection of 𐌻𐌹𐌿𐍆𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰𐌹", "adj", "𐌻𐌹𐌿𐌱𐌰𐌹", "", "", "", "inflection of 𐌻𐌹𐌿𐍆𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰", "adj", "𐌻𐌹𐌿𐌱𐌰", "", "", "", "inflection of 𐌻𐌹𐌿𐍆𐍃"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰𐌽𐌰", "adj", "𐌻𐌹𐌿𐌱𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌹𐌽", "adj", "𐌻𐌹𐌿𐌱𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰𐌽", "adj", "𐌻𐌹𐌿𐌱𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐍉𐌽", "adj", "𐌻𐌹𐌿𐌱𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰𐌻𐌴𐌹𐌺𐍃", "adj", "𐌻𐌹𐌿𐌱𐌰𐌻𐌴𐌹𐌺𐍃", "", "𐌻𐌹𐌿𐌱𐌰𐌻𐌴𐌹𐌺𐌰", "", "lovely"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌱𐌰𐌻𐌴𐌹𐌺", "adj", "𐌻𐌹𐌿𐌱𐌰𐌻𐌴𐌹𐌺", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌴𐌹𐍃", "adj", "𐍆𐍂𐌴𐌹𐍃", "", "𐍆𐍂𐌹𐌾𐌰", "", "free"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌹𐍃", "adj", "𐌽𐌹𐌿𐌾𐌹𐍃", "", "𐌽𐌹𐌿𐌾𐌰", "", "new"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐍃", "adj", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐍃", "", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐌰", "", "effective useful operational"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐍉𐌽𐍃", "adj", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐍉𐌽𐍃", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐌰", "adj", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐌰", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲", "adj", "𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌴𐌹𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐍃", "adj", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐍃", "", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰", "", "covetous"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰𐌹", "adj", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰𐌹", "", "", "", "inflection of 𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰𐌽𐍃", "adj", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰𐌽𐍃", "", "", "", "inflection of 𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰𐌼", "adj", "𐍆𐌰𐌹𐌷𐌿𐍆𐍂𐌹𐌺𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐍃", "adj", "𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐍃", "", "𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌰", "", "high-hearted haughty"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌰𐌹", "adj", "𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐌰𐌹", "", "", "", "inflection of 𐌷𐌰𐌿𐌷𐌷𐌰𐌹𐍂𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐍃", "adj", "*𐌷𐌰𐌿𐌷𐌹𐌶𐌰", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐍃", "𐌷𐌰𐌿𐌷𐌰", "", "high"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷", "adj", "𐌷𐌰𐌿𐌷", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌰𐍄𐌰", "adj", "𐌷𐌰𐌿𐌷𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐍉", "adj", "𐌷𐌰𐌿𐌷𐍉", "", "", "", "inflection of 𐌷𐌰𐌿𐌷𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐍃", "adj", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐍃", "", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌰", "", "highest superlative degree"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌹𐌽𐍃", "adj", "𐌷𐌰𐌿𐌷𐌹𐍃𐍄𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰", "", "", "", "inflection of 𐌱𐌻𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰𐌹", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰𐌹", "", "", "", "inflection of 𐌱𐌻𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰𐌼𐌼𐌰", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰𐌹𐌼", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰𐌽𐍃", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌱𐌻𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌹𐌽𐍃", "adj", "𐌱𐌻𐌹𐌽𐌳𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌹𐌽", "adj", "𐌱𐌻𐌹𐌽𐌳𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰𐌽", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐍂𐌰𐌹", "adj", "𐌲𐌰𐌿𐍂𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐌿𐍂𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌿𐍂𐌰𐌽𐌰", "adj", "𐌲𐌰𐌿𐍂𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌱𐌰𐍄𐌰", "adj", "𐌳𐌰𐌿𐌱𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍀𐍉", "adj", "𐌳𐌹𐌿𐍀𐍉", "", "", "", "inflection of 𐌳𐌹𐌿𐍀𐍃"]) + let v = native_list_append(v, ["𐌳𐌹𐌿𐍀𐌰𐌹𐌶𐍉𐍃", "adj", "𐌳𐌹𐌿𐍀𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐍉𐌽𐍃", "adj", "𐌳𐍅𐌰𐌻𐍉𐌽𐍃", "", "", "", "inflection of 𐌳𐍅𐌰𐌻𐍃"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐍉𐌽𐌰", "adj", "𐌳𐍅𐌰𐌻𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐌰", "adj", "𐌳𐍅𐌰𐌻𐌰", "", "", "", "inflection of 𐌳𐍅𐌰𐌻𐍃"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐌰𐌹", "adj", "𐌳𐍅𐌰𐌻𐌰𐌹", "", "", "", "inflection of 𐌳𐍅𐌰𐌻𐍃"]) + let v = native_list_append(v, ["𐌳𐍅𐌰𐌻𐌰𐌼𐌼𐌰", "adj", "𐌳𐍅𐌰𐌻𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰", "adj", "𐌷𐌰𐌹𐌻𐌰", "", "", "", "inflection of 𐌷𐌰𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰𐌽𐌰", "adj", "𐌷𐌰𐌹𐌻𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰𐌹", "adj", "𐌷𐌰𐌹𐌻𐌰𐌹", "", "", "", "inflection of 𐌷𐌰𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐍉𐌽", "adj", "𐌷𐌰𐌹𐌻𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰𐌹𐌶𐌴", "adj", "𐌷𐌰𐌹𐌻𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌻𐌰𐌹𐌼", "adj", "𐌷𐌰𐌹𐌻𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌷𐌻𐌿𐍄𐍂𐌰𐌽𐍃", "adj", "𐌷𐌻𐌿𐍄𐍂𐌰𐌽𐍃", "", "", "", "inflection of 𐌷𐌻𐌿𐍄𐍂𐍃"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰", "adj", "𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰𐌹", "adj", "𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰𐌹𐌼", "adj", "𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍉𐌽", "adj", "𐌻𐌴𐌹𐌺𐌴𐌹𐌽𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌻𐌹𐍃𐍄𐌴𐌹𐌲𐍉𐌽", "adj", "𐌻𐌹𐍃𐍄𐌴𐌹𐌲𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰", "", "", "", "inflection of 𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌽𐍃", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍉", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍉", "", "", "", "inflection of 𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍉𐌽𐍃", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍉𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌹𐌽", "adj", "𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰", "adj", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰", "", "", "", "inflection of 𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰𐌼𐌼𐌰", "adj", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰𐌹𐌼", "adj", "𐌼𐌰𐌽𐌽𐌹𐍃𐌺𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰", "", "", "", "inflection of 𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌽𐌰", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌹", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌽𐍃", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍉", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍉", "", "", "", "inflection of 𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌼", "adj", "𐌿𐌽𐌼𐌰𐌷𐍄𐌴𐌹𐌲𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌾𐌰𐌽𐌴", "adj", "𐍂𐌴𐌹𐌺𐌾𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌹𐍃𐍄𐍃", "adj", "𐍂𐌴𐌹𐌺𐌹𐍃𐍄𐍃", "", "𐍂𐌴𐌹𐌺𐌹𐍃𐍄𐌰", "", "greatest most powerful"]) + let v = native_list_append(v, ["𐍂𐌴𐌹𐌺𐌹𐍃𐍄𐌹𐌽", "adj", "𐍂𐌴𐌹𐌺𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺", "adj", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐌿𐍄𐌹𐌶𐍉", "adj", "𐍃𐌿𐍄𐌹𐌶𐍉", "", "", "", "inflection of 𐍃𐌿𐍄𐌹𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐍄𐌰", "adj", "𐍅𐌰𐌹𐍂𐌸𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐌰", "adj", "𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐍃", "adj", "𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐍃", "", "", "", "inflection of 𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐍅𐍉𐌸𐌹", "adj", "𐍅𐍉𐌸𐌹", "", "", "", "inflection of 𐍅𐍉𐌸𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍅𐍉𐌸𐌾𐌰𐌹", "adj", "𐍅𐍉𐌸𐌾𐌰𐌹", "", "", "", "inflection of 𐍅𐍉𐌸𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌰𐌼𐌼𐌰", "adj", "𐍆𐍂𐍉𐌳𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌰𐌹𐌼", "adj", "𐍆𐍂𐍉𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌰𐌹", "adj", "𐍆𐍂𐍉𐌳𐌰𐌹", "", "", "", "inflection of 𐍆𐍂𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌰𐌽𐌴", "adj", "𐍆𐍂𐍉𐌳𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐍂𐌿𐌺", "adj", "𐌱𐍂𐌿𐌺", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻", "adj", "𐌿𐌽𐍃𐌴𐌻", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌾𐌰", "adj", "𐌿𐌽𐍃𐌴𐌻𐌾𐌰", "", "", "", "inflection of 𐌿𐌽𐍃𐌴𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌾𐌰𐌹", "adj", "𐌿𐌽𐍃𐌴𐌻𐌾𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍃𐌴𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌾𐌹𐌽𐍃", "adj", "𐌿𐌽𐍃𐌴𐌻𐌾𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌾𐌹𐌽", "adj", "𐌿𐌽𐍃𐌴𐌻𐌾𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌴𐌻𐌾𐌰𐌼", "adj", "𐌿𐌽𐍃𐌴𐌻𐌾𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌴𐌻𐌾𐌰𐌼𐌼𐌰", "adj", "𐍃𐌴𐌻𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌴𐌻𐌾𐌰𐌹", "adj", "𐍃𐌴𐌻𐌾𐌰𐌹", "", "", "", "inflection of 𐍃𐌴𐌻𐍃"]) + let v = native_list_append(v, ["𐍃𐌺𐌴𐌹𐍂𐌹𐍃", "adj", "𐍃𐌺𐌴𐌹𐍂𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍄𐌿𐌻𐌲𐌾𐌰𐌹", "adj", "𐍄𐌿𐌻𐌲𐌾𐌰𐌹", "", "", "", "strong dative feminine"]) + let v = native_list_append(v, ["𐍂𐌰𐌿𐌸𐍃", "adj", "𐍂𐌰𐌿𐌸𐍃", "", "𐍂𐌰𐌿𐌳𐌰", "", "red"]) + let v = native_list_append(v, ["𐍂𐌰𐌿𐌳𐌰𐌹", "adj", "𐍂𐌰𐌿𐌳𐌰𐌹", "", "", "", "inflection of 𐍂𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐍃", "adj", "𐌿𐌽𐍃𐍅𐌴𐍂𐍃", "", "𐌿𐌽𐍃𐍅𐌴𐍂𐌰", "", "without honor dishonorable"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹", "adj", "𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍃𐍅𐌴𐍂𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹𐌼", "adj", "𐌿𐌽𐍃𐍅𐌴𐍂𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐍃", "adj", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐍃", "", "𐌳𐍂𐌿𐌲𐌺𐌰𐌽𐌰", "", "intoxicated drunk drunken"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍉𐍆", "adj", "𐌲𐌰𐌳𐍉𐍆", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍉𐌱", "adj", "𐌲𐌰𐌳𐍉𐌱", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍄𐍂𐍃", "adj", "𐌱𐌰𐌹𐍄𐍂𐍃", "", "𐌱𐌰𐌹𐍄𐍂𐌰", "", "bitter"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍄𐍂𐌰𐌹", "adj", "𐌱𐌰𐌹𐍄𐍂𐌰𐌹", "", "", "", "inflection of 𐌱𐌰𐌹𐍄𐍂𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐌶𐍉", "adj", "𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲𐍃", "adj", "𐌻𐌰𐌲𐌲𐍃", "", "𐌻𐌰𐌲𐌲𐌰", "", "long"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲𐌰", "adj", "𐌻𐌰𐌲𐌲𐌰", "", "", "", "inflection of 𐌻𐌰𐌲𐌲𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲", "adj", "𐌻𐌰𐌲𐌲", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌻𐌰𐌲𐌲𐌰𐌹", "adj", "𐌻𐌰𐌲𐌲𐌰𐌹", "", "", "", "inflection of 𐌻𐌰𐌲𐌲𐍃"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌹𐌸𐍃", "adj", "𐌱𐍂𐌰𐌹𐌸𐍃", "", "𐌱𐍂𐌰𐌹𐌳𐌰", "", "broad wide"]) + let v = native_list_append(v, ["𐌱𐍂𐌰𐌹𐌳", "adj", "𐌱𐍂𐌰𐌹𐌳", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌶𐌴𐌹𐍃", "adj", "𐌰𐌹𐍂𐌶𐌴𐌹𐍃", "", "𐌰𐌹𐍂𐌶𐌹", "", "erroneous deceived"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐍄𐍃", "adj", "𐍈𐌴𐌹𐍄𐍃", "", "𐍈𐌴𐌹𐍄𐌰", "", "white"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐍄𐌰", "adj", "𐍈𐌴𐌹𐍄𐌰", "", "", "", "inflection of 𐍈𐌴𐌹𐍄𐍃"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐍄", "adj", "𐍈𐌴𐌹𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐍄𐌰𐌹", "adj", "𐍈𐌴𐌹𐍄𐌰𐌹", "", "", "", "inflection of 𐍈𐌴𐌹𐍄𐍃"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐍄𐍉𐍃", "adj", "𐍈𐌴𐌹𐍄𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐍄𐌰𐌹𐌼", "adj", "𐍈𐌴𐌹𐍄𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐌰", "adj", "𐍄𐌰𐌹𐌷𐍃𐍅𐌰", "", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉", "", "right of direction"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐍉", "adj", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉", "", "", "", "inflection of 𐍄𐌰𐌹𐌷𐍃𐍅𐌰"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐌽", "adj", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐌽", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐌽𐍃", "adj", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐌽𐍃", "", "", "", "accusative feminine plural"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐌽𐌰", "adj", "𐍄𐌰𐌹𐌷𐍃𐍅𐍉𐌽𐌰", "", "", "", "accusative neuter plural"]) + let v = native_list_append(v, ["𐌱𐌻𐌴𐌹𐌸𐍃", "adj", "𐌱𐌻𐌴𐌹𐌸𐍃", "", "𐌱𐌻𐌴𐌹𐌳𐌰", "", "merciful kindhearted"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌿𐍃", "adj", "𐌰𐌲𐌻𐌿𐍃", "", "𐌰𐌲𐌻𐌾𐌰", "", "difficult"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌿", "adj", "𐌰𐌲𐌻𐌿", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐍃", "adj", "𐌰𐌲𐌻𐌰𐌹𐍄𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐍃", "", "𐌰𐌲𐌻𐌰𐌹𐍄𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰", "", "shamelessly greedy"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌰𐌹𐍄𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐍃", "adj", "𐌰𐌲𐌻𐌰𐌹𐍄𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌰𐌲𐌻𐌰𐌹𐍄𐌲𐌰𐍃𐍄𐌰𐌻𐌳𐍃"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐍃", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐍃", "", "𐌰𐌷𐌼𐌴𐌹𐌽𐌰", "", "spiritual"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌹", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐌰𐌷𐌼𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐍉𐌽𐌰", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐍉", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐍉", "", "", "", "inflection of 𐌰𐌷𐌼𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌹𐌼", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌽𐍃", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌽𐍃", "", "", "", "inflection of 𐌰𐌷𐌼𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐍉𐌽", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌽", "adj", "𐌰𐌷𐌼𐌴𐌹𐌽𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌷𐍄𐌰𐌿𐌳𐍉𐌲𐍃", "adj", "𐌰𐌷𐍄𐌰𐌿𐌳𐍉𐌲𐍃", "", "𐌰𐌷𐍄𐌰𐌿𐌳𐍉𐌲𐌰", "", "having lasted eight"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌹𐍃", "adj", "𐍃𐌿𐌽𐌾𐌹𐍃", "", "𐍃𐌿𐌽𐌾𐌰", "", "true truthful correct"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌰𐌽𐌰", "adj", "𐍃𐌿𐌽𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌽𐌽𐌰𐍃", "adj", "𐍅𐌴𐌹𐌽𐌽𐌰𐍃", "", "", "", "drunk wine-addicted"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐍃", "adj", "𐌱𐌰𐌹𐍂𐌷𐍄𐍃", "", "𐌱𐌰𐌹𐍂𐌷𐍄𐌰", "", "bright clear"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌰", "adj", "𐌱𐌰𐌹𐍂𐌷𐍄𐌰", "", "", "", "inflection of 𐌱𐌰𐌹𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄", "adj", "𐌱𐌰𐌹𐍂𐌷𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌰𐌹", "adj", "𐌱𐌰𐌹𐍂𐌷𐍄𐌰𐌹", "", "", "", "inflection of 𐌱𐌰𐌹𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐍃", "adj", "𐌷𐌰𐌽𐌳𐌿𐌲𐍉𐌶𐌰", "", "𐌷𐌰𐌽𐌳𐌿𐌲𐌰", "", "wise"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐍉𐌶𐌰", "adj", "𐌷𐌰𐌽𐌳𐌿𐌲𐍉𐌶𐌰", "", "𐌷𐌰𐌽𐌳𐌿𐌲𐍉𐌶𐌴𐌹", "", "comparative degree of"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐌲𐍉𐌶𐌴𐌹", "adj", "𐌷𐌰𐌽𐌳𐌿𐌲𐍉𐌶𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐍃", "adj", "𐍃𐍅𐌹𐌽𐌸𐍉𐌶𐌰", "", "𐍃𐍅𐌹𐌽𐌸𐌰", "", "strong healthy"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌹𐍃", "adj", "𐍃𐍅𐌹𐌽𐌸𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌰𐌹", "adj", "𐍃𐍅𐌹𐌽𐌸𐌰𐌹", "", "", "", "inflection of 𐍃𐍅𐌹𐌽𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐍉𐍃", "adj", "𐍃𐍅𐌹𐌽𐌸𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐌰𐌽", "adj", "𐍃𐍅𐌹𐌽𐌸𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐍉𐌶𐌰", "adj", "𐍃𐍅𐌹𐌽𐌸𐍉𐌶𐌰", "", "𐍃𐍅𐌹𐌽𐌸𐍉𐌶𐌴𐌹", "", "stronger comparative degree"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌽𐌸𐍉𐌶𐌰𐌽𐍃", "adj", "𐍃𐍅𐌹𐌽𐌸𐍉𐌶𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐍃", "adj", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐍃", "", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽𐌰", "", "bright luminous"]) + let v = native_list_append(v, ["𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽", "adj", "𐌻𐌹𐌿𐌷𐌰𐌳𐌴𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐍃", "adj", "𐍃𐍅𐌹𐌺𐌽𐍃", "", "𐍃𐍅𐌹𐌺𐌽𐌰", "", "innocent pure"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌰", "adj", "𐍃𐍅𐌹𐌺𐌽𐌰", "", "", "", "inflection of 𐍃𐍅𐌹𐌺𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽", "adj", "𐍃𐍅𐌹𐌺𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌰𐌽𐌰", "adj", "𐍃𐍅𐌹𐌺𐌽𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐍉𐍃", "adj", "𐍃𐍅𐌹𐌺𐌽𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍃", "adj", "𐌲𐌰𐌻𐌴𐌹𐌺𐍃", "", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰", "", "alike similar"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺", "adj", "𐌲𐌰𐌻𐌴𐌹𐌺", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌰", "adj", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌹", "adj", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐍉", "adj", "𐌲𐌰𐌻𐌴𐌹𐌺𐍉", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌽𐍃", "adj", "𐌲𐌰𐌻𐌴𐌹𐌺𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐍄𐌹𐍃", "adj", "𐍆𐍂𐌰𐍅𐌰𐌿𐍂𐍄𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌰", "adj", "𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐍃𐌹𐌻𐌳𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌳𐌿𐍂𐌳𐍉𐌲𐍃", "adj", "𐍆𐌹𐌳𐌿𐍂𐌳𐍉𐌲𐍃", "", "𐍆𐌹𐌳𐌿𐍂𐌳𐍉𐌲𐌰", "", "having lasted four"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰", "adj", "𐍆𐍂𐌹𐌾𐌰", "", "", "", "inflection of 𐍆𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌹𐌶𐍉𐍃", "adj", "𐍆𐍂𐌹𐌾𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌹", "adj", "𐍆𐍂𐌹𐌾𐌰𐌹", "", "", "", "inflection of 𐍆𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌽𐍃", "adj", "𐍆𐍂𐌹𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐍆𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌾𐌰𐌽𐌰", "adj", "𐍆𐍂𐌹𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌺𐌻𐌰", "adj", "𐌰𐌹𐌽𐌰𐌺𐌻𐌰", "", "", "", "inflection of 𐌰𐌹𐌽𐌰𐌺𐌻𐍃"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌺𐌻𐍃", "adj", "𐌰𐌹𐌽𐌰𐌺𐌻𐍃", "", "𐌰𐌹𐌽𐌰𐌺𐌻𐌰", "", "alone without companion"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍆𐌰𐌻𐌸", "adj", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸", "", "", "", "strong nominative neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐍃", "adj", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐍃", "", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌰", "", "simple uncomplicated"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍉𐌷𐍉", "adj", "𐌰𐌹𐌽𐍉𐌷𐍉", "", "", "", "misspelling of 𐌰𐌹𐌽𐌰𐌷𐍉"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌷𐍉", "adj", "𐌰𐌹𐌽𐌰𐌷𐍉", "", "", "", "inflection of 𐌰𐌹𐌽𐌰𐌷𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌸𐌾𐍉𐌽𐍉", "adj", "𐌰𐌻𐌸𐌾𐍉𐌽𐍉", "", "", "", "weak genitive feminine"]) + let v = native_list_append(v, ["𐌰𐌻𐌸𐌹𐌶𐌰", "adj", "𐌰𐌻𐌸𐌹𐌶𐌰", "", "𐌰𐌻𐌸𐌹𐌶𐌴𐌹", "", "older elder comparative"]) + let v = native_list_append(v, ["𐌰𐍂𐌼𐍉𐍃𐍄𐍃", "adj", "𐌰𐍂𐌼𐍉𐍃𐍄𐍃", "", "𐌰𐍂𐌼𐍉𐍃𐍄𐌰", "", "most wretched superlative"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌶𐌰", "adj", "𐌰𐌹𐍂𐌹𐌶𐌰", "", "𐌰𐌹𐍂𐌹𐌶𐌴𐌹", "", "earlier sooner"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌶𐌰𐌽𐌴", "adj", "𐌰𐌹𐍂𐌹𐌶𐌰𐌽𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐌶𐌰𐌼", "adj", "𐌰𐌹𐍂𐌹𐌶𐌰𐌼", "", "", "", "dative neuter plural"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐌰", "adj", "𐌰𐌹𐍂𐌸𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐌰", "", "", "", "strong accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌸𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌰𐌹𐍂𐌸𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌰𐌹𐍂𐌸𐌰𐌺𐌿𐌽𐌳𐌰", "", "born of the"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃", "adj", "𐌻𐌰𐌿𐍃", "", "𐌻𐌰𐌿𐍃𐌰", "", "empty devoid"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐌽𐍃", "adj", "𐌻𐌰𐌿𐍃𐌰𐌽𐍃", "", "", "", "inflection of 𐌻𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐌽𐌰", "adj", "𐌻𐌰𐌿𐍃𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰", "adj", "𐌻𐌰𐌿𐍃𐌰", "", "", "", "inflection of 𐌻𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐌹", "adj", "𐌻𐌰𐌿𐍃𐌰𐌹", "", "", "", "inflection of 𐌻𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐌹𐌼", "adj", "𐌻𐌰𐌿𐍃𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌰𐌺𐍂𐌰𐌽𐌰𐌻𐌰𐌿𐍃", "adj", "𐌰𐌺𐍂𐌰𐌽𐌰𐌻𐌰𐌿𐍃", "", "𐌰𐌺𐍂𐌰𐌽𐌰𐌻𐌰𐌿𐍃𐌰", "", "profitless fruitless"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌹𐌻𐌰𐌿𐍃", "adj", "𐌰𐌽𐌳𐌹𐌻𐌰𐌿𐍃", "", "𐌰𐌽𐌳𐌹𐌻𐌰𐌿𐍃𐌰", "", "endless"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌹𐌻𐌰𐌿𐍃𐌰𐌹𐌶𐌴", "adj", "𐌰𐌽𐌳𐌹𐌻𐌰𐌿𐍃𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌹𐌶𐌴", "adj", "𐌰𐌽𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰𐌻𐌰𐌿𐍃", "adj", "𐌲𐌿𐌳𐌰𐌻𐌰𐌿𐍃", "", "𐌲𐌿𐌳𐌰𐌻𐌰𐌿𐍃𐌰", "", "godless"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌹", "adj", "𐌲𐌿𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌹", "", "", "", "inflection of 𐌲𐌿𐌳𐌰𐌻𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃", "adj", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃", "", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰", "", "lawless"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌹𐌼", "adj", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌽𐍃", "adj", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌽𐍃", "", "", "", "inflection of 𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌼", "adj", "𐍅𐌹𐍄𐍉𐌳𐌰𐌻𐌰𐌿𐍃𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌸𐌰𐍂𐌱𐌰", "adj", "𐌰𐌻𐌰𐌸𐌰𐍂𐌱𐌰", "", "𐌰𐌻𐌰𐌸𐌰𐍂𐌱𐍉", "", "in want needy"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽𐌴𐌹𐌽𐍃", "adj", "𐌴𐌹𐍃𐌰𐍂𐌽𐌴𐌹𐌽𐍃", "", "𐌴𐌹𐍃𐌰𐍂𐌽𐌴𐌹𐌽𐌰", "", "made of iron"]) + let v = native_list_append(v, ["𐌴𐌹𐍃𐌰𐍂𐌽𐌴𐌹𐌽𐌰𐌹𐌼", "adj", "𐌴𐌹𐍃𐌰𐍂𐌽𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌾𐌰", "adj", "𐌰𐌻𐌴𐍅𐌾𐌰", "", "𐌰𐌻𐌴𐍅𐌾𐍉", "", "of olives pertaining"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌾𐍉", "adj", "𐌰𐌻𐌴𐍅𐌾𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌴𐍅𐌾𐌹𐌽", "adj", "𐌰𐌻𐌴𐍅𐌾𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐍃", "adj", "𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐍃", "", "𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐌾𐌰", "", "of different kin"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐌾𐌰", "adj", "𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐌾𐌰", "", "", "", "inflection of 𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌺𐍉𐌽𐌾𐌰𐌹", "adj", "𐌰𐌻𐌾𐌰𐌺𐍉𐌽𐌾𐌰𐌹", "", "", "", "inflection of 𐌰𐌻𐌾𐌰𐌺𐌿𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌺𐌿𐌽𐍃", "adj", "𐍃𐌰𐌼𐌰𐌺𐌿𐌽𐍃", "", "𐍃𐌰𐌼𐌰𐌺𐌿𐌽𐌾𐌰", "", "of the same"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌺𐌿𐌽𐌾𐌰𐌽𐍃", "adj", "𐍃𐌰𐌼𐌰𐌺𐌿𐌽𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐌰𐌼𐌰𐌺𐌿𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽𐍃", "adj", "𐌰𐌻𐌻𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "adj", "𐌰𐌻𐌻𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "", "𐌰𐌻𐌻𐌰𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐍉", "", "perfect all-accomplishing"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐍃", "adj", "𐌲𐌰𐌼𐌰𐌹𐌽𐍃", "", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰", "", "common shared"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌹𐌼", "adj", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰", "adj", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐌼𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌹", "adj", "𐌲𐌰𐌼𐌰𐌹𐌽𐌾𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐌼𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌽", "adj", "𐌲𐌰𐌼𐌰𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌴𐌹𐍃", "adj", "𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌴𐌹𐍃", "", "𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌹", "", "present at home"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌾𐌰𐌹𐌼", "adj", "𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌾𐌰𐌹", "adj", "𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌾𐌰𐌹", "", "", "", "inflection of 𐌰𐌽𐌰𐌷𐌰𐌹𐌼𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌿𐍃", "adj", "𐌺𐌰𐌿𐍂𐌿𐍃", "", "𐌺𐌰𐌿𐍂𐌾𐌰", "", "burdensome"]) + let v = native_list_append(v, ["𐌺𐌰𐌿𐍂𐌾𐍉𐍃", "adj", "𐌺𐌰𐌿𐍂𐌾𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐍃", "adj", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐍃", "", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌾𐌰", "", "secret concealed"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽", "adj", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌾𐍉𐌽𐌰", "adj", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌾𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌾𐌰𐌼", "adj", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌾𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌹𐌿𐌽", "adj", "𐌰𐌽𐌰𐍃𐌹𐌿𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐌾𐍉", "adj", "𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐌾𐍉", "", "", "", "inflection of 𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐍃", "adj", "𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐍃", "", "𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐌾𐌰", "", "visible"]) + let v = native_list_append(v, ["𐌰𐌶𐌴𐍄𐌹𐌶𐌰", "adj", "𐌰𐌶𐌴𐍄𐌹𐌶𐌰", "", "𐌰𐌶𐌴𐍄𐌹𐌶𐌴𐌹", "", "easier more pleasant"]) + let v = native_list_append(v, ["𐌰𐌶𐌴𐍄𐌹𐌶𐍉", "adj", "𐌰𐌶𐌴𐍄𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌶𐌴𐍄𐍃", "adj", "𐌰𐌶𐌴𐍄𐌹𐌶𐌰", "", "𐌰𐌶𐌴𐍄𐌰", "", "easy pleasant"]) + let v = native_list_append(v, ["𐌰𐌶𐌹𐍄𐌹𐌶𐍉", "adj", "𐌰𐌶𐌹𐍄𐌹𐌶𐍉", "", "", "", "misspelling of 𐌰𐌶𐌴𐍄𐌹𐌶𐍉"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐌴𐌹𐌽", "adj", "𐌵𐌹𐌽𐌴𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐍃", "adj", "𐍆𐌿𐌻𐍃", "", "𐍆𐌿𐌻𐌰", "", "foul putrid fetid"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍃", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍃", "", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰", "", "of the future"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰𐌹", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰𐌹", "", "", "", "inflection of 𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍉", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍉", "", "", "", "inflection of 𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰𐌽", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌹𐌽", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐌴", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍉𐌽𐍃", "adj", "𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌽𐌰𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹𐌻𐌾𐌹𐍃", "adj", "𐌲𐌰𐍅𐌹𐌻𐌾𐌹𐍃", "", "𐌲𐌰𐍅𐌹𐌻𐌾𐌰", "", "concordant unanimous of"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹𐌻𐌾𐌰", "adj", "𐌲𐌰𐍅𐌹𐌻𐌾𐌰", "", "", "", "inflection of 𐌲𐌰𐍅𐌹𐌻𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹𐌻𐌾𐌰𐌹", "adj", "𐌲𐌰𐍅𐌹𐌻𐌾𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐍅𐌹𐌻𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐍅𐌹𐌻𐌾𐌹𐍃", "adj", "𐍃𐌹𐌻𐌱𐌰𐍅𐌹𐌻𐌾𐌹𐍃", "", "𐍃𐌹𐌻𐌱𐌰𐍅𐌹𐌻𐌾𐌰", "", "voluntary"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐍅𐌹𐌻𐌾𐍉𐍃", "adj", "𐍃𐌹𐌻𐌱𐌰𐍅𐌹𐌻𐌾𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐌰𐌽𐍃", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐌰𐌽𐍃", "", "", "", "inflection of 𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐍃", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐍃", "", "𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐌰", "", "opposite opposed hostile"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐍉", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐍉", "", "", "", "inflection of 𐌰𐌽𐌳𐌰𐌽𐌴𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌼", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐍃", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐍃", "", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌾𐌰", "", "acceptable pleasant"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌴𐌹𐌲𐍃", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌴𐌹𐌲𐍃", "", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌴𐌹𐌲𐌰", "", "taking accepting holding"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌾𐌰𐌼𐌼𐌰", "adj", "𐌰𐌽𐌳𐌰𐌽𐌴𐌼𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐌴𐍄𐍃", "adj", "𐌰𐌽𐌳𐌰𐍃𐌴𐍄𐍃", "", "𐌰𐌽𐌳𐌰𐍃𐌴𐍄𐌾𐌰", "", "abominable"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐌴𐍄", "adj", "𐌰𐌽𐌳𐌰𐍃𐌴𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐍃𐌴𐍄𐌾𐌰𐌹", "adj", "𐌰𐌽𐌳𐌰𐍃𐌴𐍄𐌾𐌰𐌹", "", "", "", "inflection of 𐌰𐌽𐌳𐌰𐍃𐌴𐍄𐍃"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌸𐌿𐍃", "adj", "𐍃𐌴𐌹𐌸𐌿𐍃", "", "𐍃𐌴𐌹𐌸𐌾𐌰", "", "late"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐍃", "adj", "𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐍃", "", "𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐌰", "", "sensible rational thoughtful"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐌰𐌽𐌰", "adj", "𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐌰𐌽", "adj", "𐌰𐌽𐌳𐌰𐌸𐌰𐌷𐍄𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐍃", "adj", "𐌰𐌿𐌳𐌰𐌲𐍃", "", "𐌰𐌿𐌳𐌰𐌲𐌰", "", "blessed fortunate"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐌰𐌹", "adj", "𐌰𐌿𐌳𐌰𐌲𐌰𐌹", "", "", "", "inflection of 𐌰𐌿𐌳𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐌰", "adj", "𐌰𐌿𐌳𐌰𐌲𐌰", "", "", "", "inflection of 𐌰𐌿𐌳𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌰𐌿𐌳𐌰𐌲𐌹𐌽𐍃", "adj", "𐌰𐌿𐌳𐌰𐌲𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌰", "adj", "𐌰𐌿𐌷𐌿𐌼𐌰", "", "𐌰𐌿𐌷𐌿𐌼𐌴𐌹", "", "higher superior"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌰𐌽", "adj", "𐌰𐌿𐌷𐌿𐌼𐌰𐌽", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐍃", "adj", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐍃", "", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰", "", "highest greatest superlative"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰", "adj", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌹𐌽𐍃", "adj", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌹𐌽", "adj", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰𐌼", "adj", "𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐍃", "adj", "𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐍃", "", "𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐌰", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐌰𐌼", "adj", "𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐍉", "adj", "𐌰𐌿𐌷𐌼𐌹𐍃𐍄𐍉", "", "", "", "inflection of 𐌰𐌿𐌷𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌲𐍃", "adj", "𐍅𐌿𐌻𐌸𐌰𐌲𐍃", "", "𐍅𐌿𐌻𐌸𐌰𐌲𐌰", "", "glorious splendid wonderful"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌲𐌰", "adj", "𐍅𐌿𐌻𐌸𐌰𐌲𐌰", "", "", "", "inflection of 𐍅𐌿𐌻𐌸𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌲𐌰𐌹", "adj", "𐍅𐌿𐌻𐌸𐌰𐌲𐌰𐌹", "", "", "", "inflection of 𐍅𐌿𐌻𐌸𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌲𐌰𐌹𐌼", "adj", "𐍅𐌿𐌻𐌸𐌰𐌲𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌲𐍉", "adj", "𐍅𐌿𐌻𐌸𐌰𐌲𐍉", "", "", "", "inflection of 𐍅𐌿𐌻𐌸𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐌰𐌲", "adj", "𐍅𐌿𐌻𐌸𐌰𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍃", "adj", "𐍆𐌰𐍅𐌹𐌶𐌰", "", "𐍆𐌰𐍅𐌰", "", "few not many"]) + let v = native_list_append(v, ["𐍆𐌰𐍅𐌰𐌼𐌼𐌰", "adj", "𐍆𐌰𐍅𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐍅𐌰𐌹", "adj", "𐍆𐌰𐍅𐌰𐌹", "", "", "", "inflection of 𐍆𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐍅𐌰𐌽𐍃", "adj", "𐍆𐌰𐍅𐌰𐌽𐍃", "", "", "", "inflection of 𐍆𐌰𐌿𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐍅𐌰𐌹𐌼", "adj", "𐍆𐌰𐍅𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐍅𐌹𐌶𐌰", "adj", "𐍆𐌰𐍅𐌹𐌶𐌰", "", "𐍆𐌰𐍅𐌹𐌶𐌴𐌹", "", "fewer less comparative"]) + let v = native_list_append(v, ["𐍆𐌰𐍅𐌹𐌶𐍉", "adj", "𐍆𐌰𐍅𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌳𐍃", "adj", "𐌺𐌰𐌻𐌳𐍃", "", "𐌺𐌰𐌻𐌳𐌰", "", "cold having a"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌳𐌹𐍃", "adj", "𐌺𐌰𐌻𐌳𐌹𐍃", "", "", "", "genitive neuter singular"]) + let v = native_list_append(v, ["𐌺𐌰𐌻𐌳", "adj", "𐌺𐌰𐌻𐌳", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃", "adj", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃", "", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌰", "", "present in the"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌰𐌹", "adj", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌰𐌹", "", "", "", "inflection of 𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍉", "adj", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍉", "", "", "", "inflection of 𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍉𐌽𐍃", "adj", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍉𐌽𐍃", "", "", "", "inflection of 𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹𐌽", "adj", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳𐌰", "", "male"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳", "adj", "𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳𐌰𐌹𐌶𐌴", "adj", "𐌲𐌿𐌼𐌰𐌺𐌿𐌽𐌳𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐌰𐌺𐌿𐌽𐌳", "adj", "𐌵𐌹𐌽𐌰𐌺𐌿𐌽𐌳", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌵𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌵𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "", "female"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌸𐌿𐌷𐍄𐍃", "adj", "𐌼𐌹𐌺𐌹𐌻𐌸𐌿𐌷𐍄𐍃", "", "𐌼𐌹𐌺𐌹𐌻𐌸𐌿𐌷𐍄𐌰", "", "arrogant of great"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌸𐌿𐌷𐍄𐍃", "adj", "𐌷𐌰𐌿𐌷𐌸𐌿𐌷𐍄𐍃", "", "𐌷𐌰𐌿𐌷𐌸𐌿𐌷𐍄𐌰", "", "haughty"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌸𐌿𐌷𐍄𐌰𐌽𐍃", "adj", "𐌼𐌹𐌺𐌹𐌻𐌸𐌿𐌷𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌹𐌺𐌹𐌻𐌸𐌿𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌹𐌶𐌰", "adj", "𐌷𐌰𐍂𐌳𐌹𐌶𐌰", "", "𐌷𐌰𐍂𐌳𐌹𐌶𐌴𐌹", "", "harder comparative degree"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌹𐌶𐍉", "adj", "𐌷𐌰𐍂𐌳𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌹𐌿𐍃𐌹𐌶𐌰", "adj", "𐌹𐌿𐍃𐌹𐌶𐌰", "", "𐌹𐌿𐍃𐌹𐌶𐌴𐌹", "", "better comparative degree"]) + let v = native_list_append(v, ["𐍅𐍉𐌳𐍃", "adj", "𐍅𐍉𐌳𐍃", "", "𐍅𐍉𐌳𐌰", "", "possessed by a"]) + let v = native_list_append(v, ["𐍅𐍉𐌳𐌰𐌽", "adj", "𐍅𐍉𐌳𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐍃", "adj", "𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐍃", "", "𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐌰", "", "made of barley"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐌰𐌽𐍃", "adj", "𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐌰𐌽𐍃", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐌰𐌼", "adj", "𐌱𐌰𐍂𐌹𐌶𐌴𐌹𐌽𐌰𐌼", "", "", "", "weak dative masculine"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐍃", "adj", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐍃", "", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌰", "", "childlike being a"]) + let v = native_list_append(v, ["𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌰𐌹", "adj", "𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐌰𐌹", "", "", "", "inflection of 𐌱𐌰𐍂𐌽𐌹𐍃𐌺𐍃"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌸𐍃", "adj", "𐌱𐌰𐌿𐌸𐍃", "", "𐌱𐌰𐌿𐌳𐌰", "", "deaf"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌳𐌰𐌽𐍃", "adj", "𐌱𐌰𐌿𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌱𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌳𐌰𐌽𐌰", "adj", "𐌱𐌰𐌿𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌳𐌰𐌹", "adj", "𐌱𐌰𐌿𐌳𐌰𐌹", "", "", "", "inflection of 𐌱𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌱𐌰𐌿𐌳", "adj", "𐌱𐌰𐌿𐌳", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐍃𐌺𐍃", "adj", "𐌸𐌹𐌿𐌳𐌹𐍃𐌺𐍃", "", "𐌸𐌹𐌿𐌳𐌹𐍃𐌺𐌰", "", "popular"]) + let v = native_list_append(v, ["𐍆𐌹𐌼𐍆𐍄𐌰𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌰", "adj", "𐍆𐌹𐌼𐍆𐍄𐌰𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌰", "", "𐍆𐌹𐌼𐍆𐍄𐌰𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍉", "", "the fifteenth"]) + let v = native_list_append(v, ["𐍆𐌹𐌼𐍆𐍄𐌰𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌹𐌽", "adj", "𐍆𐌹𐌼𐍆𐍄𐌰𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐌹𐌽", "", "", "", "dative neuter singular"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌸𐌰𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "adj", "𐌱𐌻𐍉𐌸𐌰𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐍃", "", "𐌱𐌻𐍉𐌸𐌰𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌴𐌹", "", "overflowing with blood"]) + let v = native_list_append(v, ["𐌱𐌻𐍉𐌸𐌰𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌴𐌹", "adj", "𐌱𐌻𐍉𐌸𐌰𐍂𐌹𐌽𐌽𐌰𐌽𐌳𐌴𐌹", "", "", "", "strong nominative feminine"]) + let v = native_list_append(v, ["𐍃𐌴𐌽𐌴𐌹𐌲𐌰𐌽𐌰", "adj", "𐍃𐌴𐌽𐌴𐌹𐌲𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌹𐍃𐍄𐍃", "adj", "𐍃𐌹𐌽𐌹𐍃𐍄𐍃", "", "𐍃𐌹𐌽𐌹𐍃𐍄𐌰", "", "eldest superlative degree"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌹𐍃𐍄𐌰𐌼", "adj", "𐍃𐌹𐌽𐌹𐍃𐍄𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐍃𐌹𐌽𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐌹𐌽𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐌹𐍃𐍄𐌰𐌽𐌴", "adj", "𐍃𐌹𐌽𐌹𐍃𐍄𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌰𐌷𐍃", "adj", "𐍃𐍄𐌰𐌹𐌽𐌰𐌷𐍃", "", "𐍃𐍄𐌰𐌹𐌽𐌰𐌷𐌰", "", "stony rocky"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌰𐌷𐌰𐌼𐌼𐌰", "adj", "𐍃𐍄𐌰𐌹𐌽𐌰𐌷𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐍃", "adj", "𐌹𐌱𐌽𐍃", "", "𐌹𐌱𐌽𐌰", "", "even"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰", "adj", "𐌹𐌱𐌽𐌰", "", "", "", "inflection of 𐌹𐌱𐌽𐍃"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐌽𐍃", "adj", "𐌹𐌱𐌽𐌰𐌽𐍃", "", "", "", "inflection of 𐌹𐌱𐌽𐍃"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐌼𐌼𐌰", "adj", "𐌹𐌱𐌽𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐍉𐌽", "adj", "𐌹𐌱𐌽𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐌻𐌴𐌹𐌺𐍃", "adj", "𐌹𐌱𐌽𐌰𐌻𐌴𐌹𐌺𐍃", "", "𐌹𐌱𐌽𐌰𐌻𐌴𐌹𐌺𐌰", "", "of equal substance"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐌻𐌴𐌹𐌺𐌰", "adj", "𐌹𐌱𐌽𐌰𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐌹𐌱𐌽𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐍃𐌺𐌰𐌿𐌽𐍃", "adj", "𐌹𐌱𐌽𐌰𐍃𐌺𐌰𐌿𐌽𐍃", "", "𐌹𐌱𐌽𐌰𐍃𐌺𐌰𐌿𐌽𐌾𐌰", "", "of equal beauty"]) + let v = native_list_append(v, ["𐌹𐌱𐌽𐌰𐍃𐌺𐌰𐌿𐌽𐌾𐌰𐌼𐌼𐌰", "adj", "𐌹𐌱𐌽𐌰𐍃𐌺𐌰𐌿𐌽𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐍄𐍃", "adj", "𐍃𐍅𐌰𐍂𐍄𐍃", "", "𐍃𐍅𐌰𐍂𐍄𐌰", "", "black"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐍄", "adj", "𐍃𐍅𐌰𐍂𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌿𐌸𐍃", "adj", "𐌰𐍆𐌲𐌿𐌸𐍃", "", "𐌰𐍆𐌲𐌿𐌳𐌰", "", "godless ungodly impious"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌸𐍃", "adj", "𐌲𐌰𐌼𐌰𐌹𐌸𐍃", "", "𐌲𐌰𐌼𐌰𐌹𐌳𐌰", "", "crippled wounded maimed"]) + let v = native_list_append(v, ["𐌲𐌰𐌼𐌰𐌹𐌳𐌰𐌽𐍃", "adj", "𐌲𐌰𐌼𐌰𐌹𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐌼𐌰𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐍃", "adj", "𐍆𐌰𐌿𐍂𐌷𐍄𐍃", "", "𐍆𐌰𐌿𐍂𐌷𐍄𐌰", "", "fearful afraid scared"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "adj", "𐍆𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "", "", "inflection of 𐍆𐌰𐌿𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌻𐍃", "adj", "𐌲𐌰𐍄𐌹𐌻𐍃", "", "𐌲𐌰𐍄𐌹𐌻𐌰", "", "fit"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌻𐍉𐌽𐌰", "adj", "𐌲𐌰𐍄𐌹𐌻𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌹𐍃𐍃", "adj", "𐌲𐌰𐌵𐌹𐍃𐍃", "", "𐌲𐌰𐌵𐌹𐍃𐍃𐌰", "", "concurring agreeing"]) + let v = native_list_append(v, ["𐌲𐌰𐌵𐌹𐍃𐍃𐌰𐌽𐍃", "adj", "𐌲𐌰𐌵𐌹𐍃𐍃𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐌵𐌹𐍃𐍃"]) + let v = native_list_append(v, ["𐌵𐌰𐌹𐍂𐍂𐌿𐍃", "adj", "𐌵𐌰𐌹𐍂𐍂𐌿𐍃", "", "𐌵𐌰𐌹𐍂𐍂𐌾𐌰", "", "gentle patient calm"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍆𐌰𐌻𐌸𐍃", "adj", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍆𐌰𐌻𐌸𐍃", "", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍆𐌰𐌻𐌸𐌰", "", "hundredfold multiplied by"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍆𐌰𐌻𐌸", "adj", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌰𐌹𐌷𐌿𐌽𐌳𐍆𐌰𐌻𐌸", "", "", "", "strong accusative neuter"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐍅𐌾𐌰𐌼", "adj", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐍅𐌾𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐍅𐌴𐌹𐍃", "adj", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐍅𐌴𐌹𐍃", "", "𐍄𐌰𐌹𐌷𐌿𐌽𐍄𐌴𐍅𐌹", "", "ordered by tens"]) + let v = native_list_append(v, ["𐍆𐌹𐌳𐌿𐍂𐍆𐌰𐌻𐌸", "adj", "𐍆𐌹𐌳𐌿𐍂𐍆𐌰𐌻𐌸", "", "", "", "strong accusative neuter"]) + let v = native_list_append(v, ["𐍆𐌹𐌳𐌿𐍂𐍆𐌰𐌻𐌸𐍃", "adj", "𐍆𐌹𐌳𐌿𐍂𐍆𐌰𐌻𐌸𐍃", "", "𐍆𐌹𐌳𐌿𐍂𐍆𐌰𐌻𐌸𐌰", "", "fourfold four times"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌺𐌰𐍅𐍃", "adj", "𐌿𐍃𐍃𐌺𐌰𐍅𐍃", "", "𐌿𐍃𐍃𐌺𐌰𐍅𐌰", "", "vigilant watchful"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐍅𐍃", "adj", "𐍃𐌺𐌰𐍅𐍃", "", "𐍃𐌺𐌰𐍅𐌰", "", "watchful"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌺𐌰𐍅𐌰𐌹", "adj", "𐌿𐍃𐍃𐌺𐌰𐍅𐌰𐌹", "", "", "", "inflection of 𐌿𐍃𐍃𐌺𐌰𐍅𐍃"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐍃", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐍃", "", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰", "", "good"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰𐌼𐌼𐌰", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰", "", "", "", "inflection of 𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰𐌽𐌰", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐍉", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐍉", "", "", "", "inflection of 𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌹𐌽𐍃", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌵𐌹𐌿𐍃", "adj", "𐌵𐌹𐌿𐍃", "", "𐌵𐌹𐍅𐌰", "", "alive lively"]) + let v = native_list_append(v, ["𐌵𐌹𐍅𐌰𐌹𐌼", "adj", "𐌵𐌹𐍅𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌵𐌹𐍅𐌰𐌹𐌶𐌴", "adj", "𐌵𐌹𐍅𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌵𐌹𐍅𐌰𐌽𐍃", "adj", "𐌵𐌹𐍅𐌰𐌽𐍃", "", "", "", "inflection of 𐌵𐌹𐌿𐍃"]) + let v = native_list_append(v, ["𐌵𐌹𐍅𐌰𐌹", "adj", "𐌵𐌹𐍅𐌰𐌹", "", "", "", "inflection of 𐌵𐌹𐌿𐍃"]) + let v = native_list_append(v, ["𐌵𐌹𐍅𐌰𐌽𐌰", "adj", "𐌵𐌹𐍅𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌰𐌸𐍃", "adj", "𐍃𐌰𐌸𐍃", "", "𐍃𐌰𐌳𐌰", "", "full sated"]) + let v = native_list_append(v, ["𐍃𐌰𐌳𐍃", "adj", "𐍃𐌰𐌳𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐌰𐌳𐌰", "adj", "𐍃𐌰𐌳𐌰", "", "", "", "inflection of 𐍃𐌰𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌸", "adj", "𐍃𐌰𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐌰𐌳𐌰𐌹", "adj", "𐍃𐌰𐌳𐌰𐌹", "", "", "", "inflection of 𐍃𐌰𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌳𐌰𐌽𐍃", "adj", "𐍃𐌰𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐌰𐌸𐍃"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "", "born of heaven"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "", "", "", "inflection of 𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌹𐍃", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌹𐌼", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌼", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌹𐌽𐍃", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐌰", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍉𐌽", "adj", "𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐍆𐍅𐌽𐌹𐌺𐌹𐍃𐌺𐍃", "adj", "𐍆𐍅𐌽𐌹𐌺𐌹𐍃𐌺𐍃", "", "𐍆𐍅𐌽𐌹𐌺𐌹𐍃𐌺𐌰", "", "Phoenician"]) + let v = native_list_append(v, ["𐍆𐍅𐌽𐌹𐌺𐌹𐍃𐌺𐌰", "adj", "𐍆𐍅𐌽𐌹𐌺𐌹𐍃𐌺𐌰", "", "", "", "inflection of 𐍆𐍅𐌽𐌹𐌺𐌹𐍃𐌺𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌽𐌹𐍃𐌺𐍉𐍃", "adj", "𐍆𐌿𐌽𐌹𐍃𐌺𐍉𐍃", "", "", "", "strong accusative feminine"]) + let v = native_list_append(v, ["𐍆𐌿𐌽𐌹𐍃𐌺𐍃", "adj", "𐍆𐌿𐌽𐌹𐍃𐌺𐍃", "", "𐍆𐌿𐌽𐌹𐍃𐌺𐌰", "", "fiery having been"]) + let v = native_list_append(v, ["𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃", "adj", "𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃", "", "𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌰", "", "skilled in witchcraft"]) + let v = native_list_append(v, ["𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌰𐌹", "adj", "𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃𐌰𐌹", "", "", "", "inflection of 𐌻𐌿𐌱𐌾𐌰𐌻𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐍃", "adj", "𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐍃", "", "𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰", "", "made of silver"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰", "adj", "𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "adj", "𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰𐌼", "adj", "𐍃𐌹𐌻𐌿𐌱𐍂𐌴𐌹𐌽𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌿𐌱𐍂𐌹𐌽𐌰𐌹𐌶𐌴", "adj", "𐍃𐌹𐌻𐌿𐌱𐍂𐌹𐌽𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍀𐌹𐍃𐍄𐌹𐌺𐌴𐌹𐌽𐍃", "adj", "𐍀𐌹𐍃𐍄𐌹𐌺𐌴𐌹𐌽𐍃", "", "𐍀𐌹𐍃𐍄𐌹𐌺𐌴𐌹𐌽𐌰", "", "pure undiluted"]) + let v = native_list_append(v, ["𐍀𐌹𐍃𐍄𐌹𐌺𐌴𐌹𐌽𐌹𐍃", "adj", "𐍀𐌹𐍃𐍄𐌹𐌺𐌴𐌹𐌽𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐍂𐍃", "adj", "𐍆𐌰𐌲𐍂𐍃", "", "𐍆𐌰𐌲𐍂𐌰", "", "fair proper suitable"]) + let v = native_list_append(v, ["𐍆𐌰𐌲𐍂", "adj", "𐍆𐌰𐌲𐍂", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌲𐍂𐌰𐌼", "adj", "𐌿𐌽𐍆𐌰𐌲𐍂𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌲𐍂𐍃", "adj", "𐌿𐌽𐍆𐌰𐌲𐍂𐍃", "", "𐌿𐌽𐍆𐌰𐌲𐍂𐌰", "", "ungrateful"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐍃", "adj", "𐍆𐌰𐌹𐍂𐌽𐍃", "", "𐍆𐌰𐌹𐍂𐌽𐌰", "", "foregoing previous"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌴𐌹𐍃", "adj", "𐍆𐌰𐌹𐍂𐌽𐌴𐌹𐍃", "", "𐍆𐌰𐌹𐍂𐌽𐌹", "", "old"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌹𐌽", "adj", "𐍆𐌰𐌹𐍂𐌽𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐍉", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐍉", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌽𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐌹𐌽", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐍉𐌽𐍃", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐍉𐌽𐍃", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌽𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌽𐍃", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌽𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌼𐌼𐌰", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌹", "adj", "𐍆𐌰𐌹𐍂𐌽𐌹", "", "", "", "inflection of 𐍆𐌰𐌹𐍂𐌽𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌽𐌰", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌽", "adj", "𐍆𐌰𐌹𐍂𐌽𐌾𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐍃", "adj", "𐌾𐌿𐌷𐌹𐌶𐌰", "", "𐌾𐌿𐌲𐌲𐌰", "", "young"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐍉𐌽𐍃", "adj", "𐌾𐌿𐌲𐌲𐍉𐌽𐍃", "", "", "", "inflection of 𐌾𐌿𐌲𐌲𐍃"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐌰𐌽𐍃", "adj", "𐌾𐌿𐌲𐌲𐌰𐌽𐍃", "", "", "", "inflection of 𐌾𐌿𐌲𐌲𐍃"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲", "adj", "𐌾𐌿𐌲𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐌰𐍄𐌰", "adj", "𐌾𐌿𐌲𐌲𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌾𐌿𐌲𐌲𐍉𐍃", "adj", "𐌾𐌿𐌲𐌲𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌾𐌿𐌷𐌹𐌶𐌰", "adj", "𐌾𐌿𐌷𐌹𐌶𐌰", "", "𐌾𐌿𐌷𐌹𐌶𐌴𐌹", "", "younger comparative degree"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍃", "adj", "𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍃", "", "𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐌰", "", "Jewish"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐌰𐌹𐌶𐌴", "adj", "𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌼", "adj", "𐌾𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉𐌼", "", "", "", "weak dative feminine"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐍄𐌰", "adj", "𐌽𐌹𐌿𐌾𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐌹𐌶𐍉𐍃", "adj", "𐌽𐌹𐌿𐌾𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐌼𐌼𐌰", "adj", "𐌽𐌹𐌿𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐌹𐌼", "adj", "𐌽𐌹𐌿𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰𐌽𐍃", "adj", "𐌽𐌹𐌿𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐌽𐌹𐌿𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌰", "adj", "𐌽𐌹𐌿𐌾𐌰", "", "", "", "inflection of 𐌽𐌹𐌿𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐌹𐌽", "adj", "𐌽𐌹𐌿𐌾𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌾𐍉", "adj", "𐌽𐌹𐌿𐌾𐍉", "", "", "", "inflection of 𐌽𐌹𐌿𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌲𐌿𐌻𐌸𐌴𐌹𐌽𐍃", "adj", "𐌲𐌿𐌻𐌸𐌴𐌹𐌽𐍃", "", "𐌲𐌿𐌻𐌸𐌴𐌹𐌽𐌰", "", "golden"]) + let v = native_list_append(v, ["𐌲𐌿𐌻𐌸𐌴𐌹𐌽𐌰", "adj", "𐌲𐌿𐌻𐌸𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌲𐌿𐌻𐌸𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐍃", "adj", "𐌱𐌹𐍂𐌴𐌹𐌺𐌴𐌹𐍃", "", "𐌱𐌹𐍂𐌴𐌹𐌺𐌹", "", "in jeopardy in"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌴𐌹𐌺𐌾𐌰𐌹", "adj", "𐌱𐌹𐍂𐌴𐌹𐌺𐌾𐌰𐌹", "", "", "", "strong nominative masculine"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌴𐌺𐌴𐌹𐍃", "adj", "𐌱𐌹𐍂𐌴𐌺𐌴𐌹𐍃", "", "𐌱𐌹𐍂𐌴𐌺𐌹", "", "alternative form or"]) + let v = native_list_append(v, ["𐌱𐌹𐍂𐌴𐌺𐌾𐌰𐌹", "adj", "𐌱𐌹𐍂𐌴𐌺𐌾𐌰𐌹", "", "", "", "strong nominative masculine"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌺𐌽𐍃", "adj", "𐌰𐌹𐍂𐌺𐌽𐍃", "", "𐌰𐌹𐍂𐌺𐌽𐌰", "", "holy sincere or"]) + let v = native_list_append(v, ["𐌵𐌹𐌽𐌴𐌹𐌽𐍃", "adj", "𐌵𐌹𐌽𐌴𐌹𐌽𐍃", "", "𐌵𐌹𐌽𐌴𐌹𐌽𐌰", "", "female"]) + let v = native_list_append(v, ["𐌽𐌰𐌵𐌰𐌸𐍃", "adj", "𐌽𐌰𐌵𐌰𐌸𐍃", "", "𐌽𐌰𐌵𐌰𐌳𐌰", "", "naked nude"]) + let v = native_list_append(v, ["𐌱𐌹𐌿𐌷𐍄𐍃", "adj", "𐌱𐌹𐌿𐌷𐍄𐍃", "", "𐌱𐌹𐌿𐌷𐍄𐌰", "", "accustomed wont"]) + let v = native_list_append(v, ["𐌱𐌻𐌹𐌽𐌳𐌰𐌽𐌰", "adj", "𐌱𐌻𐌹𐌽𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌿𐌱𐌻𐌾𐌰𐌽𐍃", "adj", "𐌳𐌰𐌿𐌸𐌿𐌱𐌻𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐌳𐌰𐌿𐌸𐌿𐌱𐌻𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌳𐌰𐌿𐌸𐌿𐌱𐌻𐌴𐌹𐍃", "adj", "𐌳𐌰𐌿𐌸𐌿𐌱𐌻𐌴𐌹𐍃", "", "𐌳𐌰𐌿𐌸𐌿𐌱𐌻𐌹", "", "marked for death"]) + let v = native_list_append(v, ["𐌳𐌹𐌲𐌰𐌽𐍃", "adj", "𐌳𐌹𐌲𐌰𐌽𐍃", "", "𐌳𐌹𐌲𐌰𐌽𐌰", "", "earthen made of"]) + let v = native_list_append(v, ["𐌳𐌹𐌲𐌰𐌽𐌰", "adj", "𐌳𐌹𐌲𐌰𐌽𐌰", "", "", "", "inflection of 𐌳𐌹𐌲𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌸𐌴𐌹𐍃", "adj", "𐍆𐍂𐌰𐌼𐌰𐌸𐌴𐌹𐍃", "", "𐍆𐍂𐌰𐌼𐌰𐌸𐌹", "", "strange alien"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌽𐌰", "adj", "𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌹", "adj", "𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌹", "", "", "", "inflection of 𐍆𐍂𐌰𐌼𐌰𐌸𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌹𐌼", "adj", "𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌹𐌽", "adj", "𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌹𐌽", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌽𐌴", "adj", "𐍆𐍂𐌰𐌼𐌰𐌸𐌾𐌰𐌽𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌹𐌽𐌺𐌹𐌻𐌸𐍃", "adj", "𐌹𐌽𐌺𐌹𐌻𐌸𐍃", "", "𐌹𐌽𐌺𐌹𐌻𐌸𐌰", "", "pregnant"]) + let v = native_list_append(v, ["𐌹𐌽𐌺𐌹𐌻𐌸𐍉𐌽", "adj", "𐌹𐌽𐌺𐌹𐌻𐌸𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌹𐌽𐌺𐌹𐌻𐌸𐍉", "adj", "𐌹𐌽𐌺𐌹𐌻𐌸𐍉", "", "", "", "inflection of 𐌹𐌽𐌺𐌹𐌻𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌸𐍃", "adj", "𐌿𐌽𐍆𐍂𐍉𐌸𐍃", "", "𐌿𐌽𐍆𐍂𐍉𐌳𐌰", "", "foolish ignorant unwise"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌳𐌰𐌽𐌰", "adj", "𐌿𐌽𐍆𐍂𐍉𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐍆𐍂𐍉𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍆𐍂𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌳𐌰𐌹", "adj", "𐌿𐌽𐍆𐍂𐍉𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍆𐍂𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐌳𐌴𐌹", "", "uncomprehending"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "adj", "𐌿𐌽𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐌳𐌴𐌹𐌽", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌸𐍃", "adj", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌸𐍃", "", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐌰", "", "hospitable welcoming"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐍃", "adj", "𐌲𐌰𐍃𐍄𐌹𐌲𐍉𐌳𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍄𐍅𐌰𐌻𐌹𐌱𐍅𐌹𐌽𐍄𐍂𐌿𐍃", "adj", "𐍄𐍅𐌰𐌻𐌹𐌱𐍅𐌹𐌽𐍄𐍂𐌿𐍃", "", "𐍄𐍅𐌰𐌻𐌹𐌱𐍅𐌹𐌽𐍄𐍂𐌾𐌰", "", "twelve years old"]) + let v = native_list_append(v, ["𐌽𐌰𐌵𐌰𐌳𐌰𐌹", "adj", "𐌽𐌰𐌵𐌰𐌳𐌰𐌹", "", "", "", "inflection of 𐌽𐌰𐌵𐌰𐌸𐍃"]) + let v = native_list_append(v, ["𐌽𐌰𐌵𐌰𐌳𐌰𐌽𐌰", "adj", "𐌽𐌰𐌵𐌰𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "adj", "𐍃𐍄𐌰𐌹𐌽𐌴𐌹𐌽𐍃", "", "𐍃𐍄𐌰𐌹𐌽𐌴𐌹𐌽𐌰", "", "stonen made of"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹𐌼", "adj", "𐍃𐍄𐌰𐌹𐌽𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌿𐍃", "adj", "𐌼𐌰𐌽𐍅𐌿𐍃", "", "𐌼𐌰𐌽𐍅𐌾𐌰", "", "ready prepared"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌿", "adj", "𐌼𐌰𐌽𐍅𐌿", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌾𐌰𐍄𐌰", "adj", "𐌼𐌰𐌽𐍅𐌾𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌾𐌰𐌹𐌼", "adj", "𐌼𐌰𐌽𐍅𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌾𐌰𐌽𐌰", "adj", "𐌼𐌰𐌽𐍅𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐍃", "adj", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐍃", "", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌰", "", "avaricious covetous greedy"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌰𐌹", "adj", "𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐌰𐌹", "", "", "", "inflection of 𐍆𐌰𐌹𐌷𐌿𐌲𐌰𐌹𐍂𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌲𐌰𐌹𐍂𐌽𐍃", "adj", "𐍃𐌴𐌹𐌽𐌰𐌲𐌰𐌹𐍂𐌽𐍃", "", "𐍃𐌴𐌹𐌽𐌰𐌲𐌰𐌹𐍂𐌽𐌰", "", "selfish"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌹𐌲𐌰𐌹𐍂𐌽𐌰𐌹", "adj", "𐍃𐌴𐌹𐌽𐌰𐌹𐌲𐌰𐌹𐍂𐌽𐌰𐌹", "", "", "", "inflection of 𐍃𐌴𐌹𐌽𐌰𐌲𐌰𐌹𐍂𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌹𐍂𐌽𐍃", "adj", "𐌲𐌰𐌹𐍂𐌽𐍃", "", "𐌲𐌰𐌹𐍂𐌽𐌰", "", "eager willing"]) + let v = native_list_append(v, ["𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍃", "adj", "𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍃", "", "𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐌰", "", "witherward opposite against."]) + let v = native_list_append(v, ["𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸", "adj", "𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍉", "adj", "𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍉", "", "", "", "inflection of 𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍃"]) + let v = native_list_append(v, ["𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍉𐌽", "adj", "𐍅𐌹𐌸𐍂𐌰𐍅𐌰𐌹𐍂𐌸𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐍃", "adj", "𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐍃", "", "𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰", "", "amenable agreeable persuadable"]) + let v = native_list_append(v, ["𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰𐌼", "adj", "𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐍉𐌶𐌰𐌽𐍃", "adj", "𐍆𐍂𐍉𐌳𐍉𐌶𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐍉𐌶𐌰", "adj", "𐍆𐍂𐍉𐌳𐍉𐌶𐌰", "", "𐍆𐍂𐍉𐌳𐍉𐌶𐌴𐌹", "", "wiser comparative degree"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍃", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍉𐌶𐌰", "", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰", "", "righteous just"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰", "", "", "", "inflection of 𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌹", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌹𐌶𐍉𐍃", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐍃", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌼𐌼𐌰", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌹𐌶𐌴", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌽", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍉𐌽", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌽𐌰", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌽𐍃", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐍂𐌰𐌹𐌷𐍄𐍃", "adj", "𐍂𐌰𐌹𐌷𐍄𐍃", "", "𐍂𐌰𐌹𐌷𐍄𐌰", "", "straight"]) + let v = native_list_append(v, ["𐍂𐌰𐌹𐌷𐍄𐌰", "adj", "𐍂𐌰𐌹𐌷𐍄𐌰", "", "", "", "inflection of 𐍂𐌰𐌹𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐍂𐌰𐌹𐌷𐍄𐌰𐌼𐌼𐌰", "adj", "𐍂𐌰𐌹𐌷𐍄𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍂𐌰𐌹𐌷𐍄𐍉𐍃", "adj", "𐍂𐌰𐌹𐌷𐍄𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍉𐌶𐌰", "adj", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍉𐌶𐌰", "", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐍉𐌶𐌴𐌹", "", "comparative degree of"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐍃", "adj", "𐍅𐌰𐌽𐍃", "", "𐍅𐌰𐌽𐌰", "", "lacking missing void"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌰𐍄𐌰", "adj", "𐍅𐌰𐌽𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌰", "adj", "𐍅𐌰𐌽𐌰", "", "", "", "inflection of 𐍅𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌰𐌹", "adj", "𐍅𐌰𐌽𐌰𐌹", "", "", "", "inflection of 𐍅𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌽𐌰𐌽𐍃", "adj", "𐍅𐌰𐌽𐌰𐌽𐍃", "", "", "", "inflection of 𐍅𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌲𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐌰𐌲𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐌰𐌲𐌰𐌽𐌳𐌴𐌹", "", "fearless"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐌰𐌲𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌰𐌲𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌻𐌴𐌹𐌽𐍃", "adj", "𐍆𐌹𐌻𐌻𐌴𐌹𐌽𐍃", "", "𐍆𐌹𐌻𐌻𐌴𐌹𐌽𐌰", "", "made of leather"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌻𐌴𐌹𐌽𐌰", "adj", "𐍆𐌹𐌻𐌻𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍆𐌹𐌻𐌻𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐍅𐌴𐌹𐌽𐍃", "adj", "𐍄𐍂𐌹𐍅𐌴𐌹𐌽𐍃", "", "𐍄𐍂𐌹𐍅𐌴𐌹𐌽𐌰", "", "wooden made of"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐍅𐌴𐌹𐌽𐌰", "adj", "𐍄𐍂𐌹𐍅𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍄𐍂𐌹𐍅𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐍉𐌷𐍃", "adj", "𐌲𐌰𐌽𐍉𐌷𐍃", "", "𐌲𐌰𐌽𐍉𐌷𐌰", "", "abundant plentiful sufficient"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐍉𐌷𐌰", "adj", "𐌲𐌰𐌽𐍉𐌷𐌰", "", "", "", "inflection of 𐌲𐌰𐌽𐍉𐌷𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐍉𐌷", "adj", "𐌲𐌰𐌽𐍉𐌷", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌽𐍉𐌷𐌰𐌹", "adj", "𐌲𐌰𐌽𐍉𐌷𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐌽𐍉𐌷𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌽𐌰𐍅𐌰𐍂𐌲𐍃", "adj", "𐌻𐌰𐌿𐌽𐌰𐍅𐌰𐍂𐌲𐍃", "", "𐌻𐌰𐌿𐌽𐌰𐍅𐌰𐍂𐌲𐌰", "", "unthankful ungrateful"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐌽𐌰𐍅𐌰𐍂𐌲𐍉𐍃", "adj", "𐌻𐌰𐌿𐌽𐌰𐍅𐌰𐍂𐌲𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰𐌹", "adj", "𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐍃", "adj", "𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐍃", "", "𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰", "", "disobedient unruly"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰", "adj", "𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐌰", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐍈𐌰𐌹𐍂𐌱𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰𐌽𐍃", "adj", "𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰𐌹𐌼", "adj", "𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰𐌹", "adj", "𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐍃", "adj", "𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐍃", "", "𐌿𐌽𐌰𐌹𐍂𐌺𐌽𐌰", "", "unholy"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌼", "adj", "𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐍉𐌼", "adj", "𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐍉𐌼", "", "", "", "weak dative feminine"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐍃", "adj", "𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐍃", "", "𐌼𐌹𐍃𐍃𐌰𐌻𐌴𐌹𐌺𐌰", "", "diverse various"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰𐌽𐍃", "adj", "𐍃𐌹𐌿𐌺𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐌹𐌿𐌺𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰", "adj", "𐍃𐌹𐌿𐌺𐌰", "", "", "", "inflection of 𐍃𐌹𐌿𐌺𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌹𐍃", "adj", "𐍃𐌹𐌿𐌺𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰𐌹", "adj", "𐍃𐌹𐌿𐌺𐌰𐌹", "", "", "", "inflection of 𐍃𐌹𐌿𐌺𐍃"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰𐌼", "adj", "𐍃𐌹𐌿𐌺𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰𐌹𐌼", "adj", "𐍃𐌹𐌿𐌺𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰𐌽𐌰", "adj", "𐍃𐌹𐌿𐌺𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐌰𐌽", "adj", "𐍃𐌹𐌿𐌺𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌹𐌿𐌺𐍃", "adj", "𐍃𐌹𐌿𐌺𐍃", "", "𐍃𐌹𐌿𐌺𐌰", "", "sick weak"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃𐌰𐌽𐍃", "adj", "𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃", "adj", "𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃", "", "𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃𐌰", "", "unrestrained"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌷𐌰𐌼𐌼𐌰", "adj", "𐌷𐌰𐌹𐌷𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌹𐌷𐍃", "adj", "𐌷𐌰𐌹𐌷𐍃", "", "𐌷𐌰𐌹𐌷𐌰", "", "one-eyed"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌰𐍆𐌰𐌿𐍂𐌷𐍄𐍃", "adj", "𐌲𐌿𐌳𐌰𐍆𐌰𐌿𐍂𐌷𐍄𐍃", "", "𐌲𐌿𐌳𐌰𐍆𐌰𐌿𐍂𐌷𐍄𐌰", "", "god-fearing devout"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍉𐌽", "adj", "𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄", "adj", "𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "adj", "𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "", "𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "handwrought made by"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐌰", "adj", "𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "adj", "𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "", "", "inflection of 𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "adj", "𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "", "𐌿𐌽𐌷𐌰𐌽𐌳𐌿𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "not made by"]) + let v = native_list_append(v, ["𐌹𐌱𐌿𐌺𐌰𐌽𐌰", "adj", "𐌹𐌱𐌿𐌺𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌹𐌱𐌿𐌺𐌰𐌹", "adj", "𐌹𐌱𐌿𐌺𐌰𐌹", "", "", "", "inflection of 𐌹𐌱𐌿𐌺𐍃"]) + let v = native_list_append(v, ["𐌹𐌱𐌿𐌺𐍃", "adj", "𐌹𐌱𐌿𐌺𐍃", "", "𐌹𐌱𐌿𐌺𐌰", "", "backward back"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌰", "adj", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌰", "", "", "", "inflection of 𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐍃", "adj", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐍃", "", "𐌿𐍆𐌰𐍂𐍆𐌿𐌻𐌻𐌰", "", "full to overflowing"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸", "adj", "𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸𐍉", "adj", "𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸𐍉", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸𐍃", "", "𐌼𐌰𐌽𐌰𐌲𐍆𐌰𐌻𐌸𐌰", "", "manifold"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌰𐌼𐌼𐌰", "adj", "𐌲𐌰𐌻𐌰𐌿𐌱𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐌱𐌰𐌹𐌼", "adj", "𐌲𐌰𐌻𐌰𐌿𐌱𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌻𐌰𐌿𐍆𐍃", "adj", "𐌲𐌰𐌻𐌰𐌿𐍆𐍃", "", "𐌲𐌰𐌻𐌰𐌿𐌱𐌰", "", "valuable costly expensive"]) + let v = native_list_append(v, ["𐌿𐌽𐌵𐌴𐌸𐌾𐌰", "adj", "𐌿𐌽𐌵𐌴𐌸𐌾𐌰", "", "", "", "inflection of 𐌿𐌽𐌵𐌴𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌵𐌴𐌸𐍃", "adj", "𐌿𐌽𐌵𐌴𐌸𐍃", "", "𐌿𐌽𐌵𐌴𐌸𐌾𐌰", "", "unsayable unspeakable that"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌼𐌼𐌰𐌽𐌰", "adj", "𐍃𐍄𐌰𐌼𐌼𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍄𐌰𐌼𐌼𐍃", "adj", "𐍃𐍄𐌰𐌼𐌼𐍃", "", "𐍃𐍄𐌰𐌼𐌼𐌰", "", "stammering"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰", "adj", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰", "", "", "", "inflection of 𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸", "adj", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰𐌹", "adj", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰𐌹", "", "", "", "inflection of 𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐍃", "adj", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰𐌽𐍃", "adj", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐌺𐌿𐌽𐌸𐌰𐌼𐌼𐌰", "adj", "𐍃𐍅𐌴𐌺𐌿𐌽𐌸𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍃", "adj", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍃", "", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰", "", "known openly conspicuously"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐍉𐌽𐌰", "adj", "𐍃𐍅𐌴𐍃𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰", "adj", "𐍃𐍅𐌴𐍃𐌰", "", "", "", "inflection of 𐍃𐍅𐌴𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰𐌽𐍃", "adj", "𐍃𐍅𐌴𐍃𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰𐌹𐌼", "adj", "𐍃𐍅𐌴𐍃𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰𐌼𐌼𐌰", "adj", "𐍃𐍅𐌴𐍃𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰𐌽𐌰", "adj", "𐍃𐍅𐌴𐍃𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰𐌹", "adj", "𐍃𐍅𐌴𐍃𐌰𐌹", "", "", "", "inflection of 𐍃𐍅𐌴𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃", "adj", "𐍃𐍅𐌴𐍃", "", "𐍃𐍅𐌴𐍃𐌰", "", "own"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐍃𐌰𐍄𐌰", "adj", "𐍃𐍅𐌴𐍃𐌰𐍄𐌰", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐍃", "adj", "𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐍃", "", "𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐌰", "", "earthy made of"]) + let v = native_list_append(v, ["𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐌰", "adj", "𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐌰𐌽𐍃", "adj", "𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌿𐌻𐌳𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍃𐌾𐌰𐌽𐌰", "adj", "𐌸𐌰𐌿𐍂𐍃𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍃𐌾𐌰", "adj", "𐌸𐌰𐌿𐍂𐍃𐌾𐌰", "", "", "", "inflection of 𐌸𐌰𐌿𐍂𐍃𐌿𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍃𐌿𐍃", "adj", "𐌸𐌰𐌿𐍂𐍃𐌿𐍃", "", "𐌸𐌰𐌿𐍂𐍃𐌾𐌰", "", "lacking water dry"]) + let v = native_list_append(v, ["𐌲𐍉𐌳𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌲𐍉𐌳𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌲𐍉𐌳𐌰𐌺𐌿𐌽𐌳𐌰", "", "noble birth"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌷𐌰𐌹𐍂𐍄𐍃", "adj", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌷𐌰𐌹𐍂𐍄𐍃", "", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌷𐌰𐌹𐍂𐍄𐌰", "", "pure-hearted goodhearted"]) + let v = native_list_append(v, ["𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌷𐌰𐌹𐍂𐍄𐌰𐌽𐍃", "adj", "𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌷𐌰𐌹𐍂𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌷𐌰𐌹𐍂𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌹𐌻𐌼𐌰𐌽𐍃", "adj", "𐌿𐍃𐍆𐌹𐌻𐌼𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌹𐌻𐌼𐌰", "adj", "𐌿𐍃𐍆𐌹𐌻𐌼𐌰", "", "𐌿𐍃𐍆𐌹𐌻𐌼𐍉", "", "frightened scared"]) + let v = native_list_append(v, ["𐍃𐌽𐌿𐍄𐍂𐌰𐌽𐌴", "adj", "𐍃𐌽𐌿𐍄𐍂𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐌽𐌿𐍄𐍂𐌰𐌹𐌼", "adj", "𐍃𐌽𐌿𐍄𐍂𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍃𐌽𐌿𐍄𐍂𐍃", "adj", "𐍃𐌽𐌿𐍄𐍂𐍃", "", "𐍃𐌽𐌿𐍄𐍂𐌰", "", "wise clever sagacious"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐍃", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐍃", "", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰", "", "unclean"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰", "", "", "", "inflection of 𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌽𐌰", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹𐌼", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹𐌶𐌴", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌹𐌶𐌴", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌽𐍃", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌹𐌽", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼", "adj", "𐌿𐌽𐌷𐍂𐌰𐌹𐌽𐌾𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌰𐌿𐌸𐍃", "adj", "𐍃𐍅𐌰𐌻𐌰𐌿𐌸𐍃", "", "𐍃𐍅𐌰𐌻𐌰𐌿𐌳𐌰", "", "so great so"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌰𐌿𐌳𐌰", "adj", "𐍃𐍅𐌰𐌻𐌰𐌿𐌳𐌰", "", "", "", "inflection of 𐍃𐍅𐌰𐌻𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌲𐌹𐌽𐍃", "adj", "𐍆𐌿𐌻𐌲𐌹𐌽𐍃", "", "𐍆𐌿𐌻𐌲𐌹𐌽𐌰", "", "concealed covered"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌲𐌹𐌽𐌹𐍃", "adj", "𐍆𐌿𐌻𐌲𐌹𐌽𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌲𐌹𐌽", "adj", "𐍆𐌿𐌻𐌲𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍈𐌰𐍃𐍃", "adj", "𐍈𐌰𐍃𐍃", "", "𐍈𐌰𐍃𐍃𐌰", "", "sharp"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐍆𐌰𐌹𐌷𐍃", "adj", "𐍆𐌹𐌻𐌿𐍆𐌰𐌹𐌷𐍃", "", "𐍆𐌹𐌻𐌿𐍆𐌰𐌹𐌷𐌰", "", "manifold"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐍆𐌰𐌹𐌷𐍉", "adj", "𐍆𐌹𐌻𐌿𐍆𐌰𐌹𐌷𐍉", "", "", "", "inflection of 𐍆𐌹𐌻𐌿𐍆𐌰𐌹𐌷𐍃"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐌲𐌰𐌻𐌰𐌿𐍆𐍃", "adj", "𐍆𐌹𐌻𐌿𐌲𐌰𐌻𐌰𐌿𐍆𐍃", "", "𐍆𐌹𐌻𐌿𐌲𐌰𐌻𐌰𐌿𐌱𐌰", "", "very costly"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐍃", "adj", "𐍆𐌹𐌻𐌿𐌲𐌰𐌻𐌰𐌿𐌱𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐍆𐌻𐌰𐌿𐍄𐌰𐌹", "adj", "𐍆𐌻𐌰𐌿𐍄𐌰𐌹", "", "", "", "inflection of 𐍆𐌻𐌰𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐍆𐌻𐌰𐌿𐍄𐍃", "adj", "𐍆𐌻𐌰𐌿𐍄𐍃", "", "𐍆𐌻𐌰𐌿𐍄𐌰", "", "vainglorious"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍃", "adj", "𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍃", "", "𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐌰", "", "advanced in years"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐌰", "adj", "𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐌰", "", "", "", "inflection of 𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍉𐌶𐌰", "adj", "𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍉𐌶𐌰", "", "𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍉𐌶𐌴𐌹", "", "advanced in age"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍉𐌶𐌴𐌹", "adj", "𐍆𐍂𐌰𐌼𐌰𐌻𐌳𐍂𐍉𐌶𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌿𐌼𐌰𐌽", "adj", "𐌹𐌽𐌽𐌿𐌼𐌰𐌽", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌽𐍃", "adj", "𐌷𐌰𐌿𐌽𐍃", "", "𐌷𐌰𐌿𐌽𐌾𐌰", "", "low humble"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰", "", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹", "", "more numerous additional"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹𐌽", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹𐌽", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹𐌽𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐍉", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰𐌽𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰𐌼", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌰𐌼", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹𐌼", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐌶𐌴𐌹𐌼", "", "", "", "dative feminine plural"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍃", "", "𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐌰", "", "most superlative degree"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍉𐌽𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍉𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌼𐌰𐌽𐌰𐌲𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌳", "adj", "𐍃𐌰𐌳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌸𐌹", "adj", "𐍅𐌹𐌻𐌸𐌹", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌽𐌿𐍄𐍃", "adj", "𐌿𐌽𐌽𐌿𐍄𐍃", "", "𐌿𐌽𐌽𐌿𐍄𐌾𐌰", "", "useless foolish"]) + let v = native_list_append(v, ["𐌿𐌽𐌽𐌿𐍄𐌾𐌰𐌽𐍃", "adj", "𐌿𐌽𐌽𐌿𐍄𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌽𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐍄𐍃", "adj", "𐌻𐌰𐍄𐍃", "", "𐌻𐌰𐍄𐌰", "", "lazy slothful"]) + let v = native_list_append(v, ["𐌻𐌰𐍄𐍉𐍃", "adj", "𐌻𐌰𐍄𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌼𐍉𐌳𐌰𐌲𐍃", "adj", "𐌼𐍉𐌳𐌰𐌲𐍃", "", "𐌼𐍉𐌳𐌰𐌲𐌰", "", "angry"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌼𐌹𐌻𐌳𐌾𐌰𐌹", "adj", "𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌼𐌹𐌻𐌳𐌾𐌰𐌹", "", "", "", "inflection of 𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌼𐌹𐌻𐌳𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌼𐌹𐌻𐌳𐌴𐌹𐍃", "adj", "𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌼𐌹𐌻𐌳𐌴𐌹𐍃", "", "𐍆𐍂𐌹𐌰𐌸𐍅𐌰𐌼𐌹𐌻𐌳𐌹", "", "feeling kind affection"]) + let v = native_list_append(v, ["𐍆𐍂𐌿𐌼𐌴", "adj", "𐍆𐍂𐌿𐌼𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐍃", "adj", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐍃", "", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌰", "", "leprous"]) + let v = native_list_append(v, ["𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌰𐌹", "adj", "𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐌰𐌹", "", "", "", "inflection of 𐌸𐍂𐌿𐍄𐍃𐍆𐌹𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃", "adj", "𐌾𐌰𐌹𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐍃", "", "𐌾𐌰𐌹𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌰", "", "thither-turned turned towards"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐌴𐌹𐌲𐍃", "adj", "𐌿𐌷𐍄𐌴𐌹𐌲𐍃", "", "𐌿𐌷𐍄𐌴𐌹𐌲𐌰", "", "at leisure"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐌴𐌹𐌲𐌰𐌹", "adj", "𐌿𐌷𐍄𐌴𐌹𐌲𐌰𐌹", "", "", "", "inflection of 𐌿𐌷𐍄𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌹𐍃𐌺𐍃", "adj", "𐌲𐌿𐌳𐌹𐍃𐌺𐍃", "", "𐌲𐌿𐌳𐌹𐍃𐌺𐌰", "", "divine"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌹𐍃𐌺𐌰𐌼𐌼𐌰", "adj", "𐌲𐌿𐌳𐌹𐍃𐌺𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌹𐍃𐌺𐌰𐌹", "adj", "𐌲𐌿𐌳𐌹𐍃𐌺𐌰𐌹", "", "", "", "inflection of 𐌲𐌿𐌳𐌹𐍃𐌺𐍃"]) + let v = native_list_append(v, ["𐌲𐌿𐌳𐌹𐍃𐌺𐌰𐌹𐌶𐍉𐍃", "adj", "𐌲𐌿𐌳𐌹𐍃𐌺𐌰𐌹𐌶𐍉𐍃", "", "", "", "strong genitive feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌲𐍃", "adj", "𐌲𐌰𐌱𐌴𐌹𐌲𐍃", "", "𐌲𐌰𐌱𐌴𐌹𐌲𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌲𐌰", "adj", "𐌲𐌰𐌱𐌴𐌹𐌲𐌰", "", "", "", "inflection of 𐌲𐌰𐌱𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌲𐌹𐌽𐍃", "adj", "𐌲𐌰𐌱𐌴𐌹𐌲𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌲𐌰𐌽𐍃", "adj", "𐌲𐌰𐌱𐌴𐌹𐌲𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌴𐌹𐌲𐌰𐌼", "adj", "𐌲𐌰𐌱𐌴𐌹𐌲𐌰𐌼", "", "", "", "weak dative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌸𐍃", "adj", "𐌿𐌽𐌻𐌴𐌸𐍃", "", "𐌿𐌽𐌻𐌴𐌳𐌰", "", "poor"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐍃", "adj", "𐌿𐌽𐌻𐌴𐌳𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌰𐌹", "adj", "𐌿𐌽𐌻𐌴𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌻𐌴𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐌻𐌴𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌻𐌴𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌰𐌹𐌼", "adj", "𐌿𐌽𐌻𐌴𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌰𐌼", "adj", "𐌿𐌽𐌻𐌴𐌳𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌰𐌽𐌴", "adj", "𐌿𐌽𐌻𐌴𐌳𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌴𐌳𐌹𐌽", "adj", "𐌿𐌽𐌻𐌴𐌳𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐍃𐌻𐌰𐌹𐍃𐌹𐌸𐍃", "adj", "𐌿𐌽𐌿𐍃𐌻𐌰𐌹𐍃𐌹𐌸𐍃", "", "𐌿𐌽𐌿𐍃𐌻𐌰𐌹𐍃𐌹𐌳𐌰", "", "uneducated"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍄𐍉𐌾𐌹𐍃", "adj", "𐍆𐌿𐌻𐌻𐌰𐍄𐍉𐌾𐌹𐍃", "", "𐍆𐌿𐌻𐌻𐌰𐍄𐍉𐌾𐌰", "", "perfect"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍄𐍉𐌾𐌰𐌹", "adj", "𐍆𐌿𐌻𐌻𐌰𐍄𐍉𐌾𐌰𐌹", "", "", "", "inflection of 𐍆𐌿𐌻𐌻𐌰𐍄𐍉𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍅𐌴𐌹𐍃", "adj", "𐍆𐌿𐌻𐌻𐌰𐍅𐌴𐌹𐍃", "", "𐍆𐌿𐌻𐌻𐌰𐍅𐌴𐌹𐍃𐌰", "", "mature grown up"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍅𐌴𐌹𐍃𐌰𐌹", "adj", "𐍆𐌿𐌻𐌻𐌰𐍅𐌴𐌹𐍃𐌰𐌹", "", "", "", "inflection of 𐍆𐌿𐌻𐌻𐌰𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐍃", "adj", "𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐍃", "", "𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐌰", "", "perfect"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐌰𐌽", "adj", "𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐌰𐌽𐍃", "adj", "𐍆𐌿𐌻𐌻𐌰𐍅𐌹𐍄𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌸𐍃", "adj", "𐍃𐍀𐌴𐌳𐌹𐌶𐌰", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐍃 / 𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐍃", "𐍃𐍀𐌴𐌳𐌰", "", "late"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐍃", "adj", "𐌹𐌽𐍅𐌹𐌽𐌳𐍃", "", "𐌹𐌽𐍅𐌹𐌽𐌳𐌰", "", "turned aside perverse"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌼𐌼𐌰", "adj", "𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌹𐌼", "adj", "𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌹", "adj", "𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌹", "", "", "", "inflection of 𐌹𐌽𐍅𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌽𐍃", "adj", "𐌹𐌽𐍅𐌹𐌽𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌹𐌽𐍅𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐌽𐌳𐍉", "adj", "𐌹𐌽𐍅𐌹𐌽𐌳𐍉", "", "", "", "inflection of 𐌹𐌽𐍅𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐍃", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐍃", "", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰", "", "latest last of"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌼𐌼𐌰", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌹𐌼", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌹𐌽", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌽𐍃", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌽𐌰", "adj", "𐍃𐍀𐌴𐌳𐌹𐍃𐍄𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍃", "adj", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍃", "", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰", "", "truthful factual"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰", "adj", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰𐌹", "adj", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌴𐌹𐌽", "adj", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍉", "adj", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍉", "", "", "", "inflection of 𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰𐌽", "adj", "𐍃𐌿𐌽𐌾𐌴𐌹𐌽𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌺𐍃", "adj", "𐌷𐌰𐌻𐌺𐍃", "", "𐌷𐌰𐌻𐌺𐌰", "", "in vain vain"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌺𐌰", "adj", "𐌷𐌰𐌻𐌺𐌰", "", "", "", "inflection of 𐌷𐌰𐌻𐌺𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌺𐌰𐌼", "adj", "𐌷𐌰𐌻𐌺𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌰𐍆𐌷𐌰𐌹𐌼𐌴𐌹𐍃", "adj", "𐌰𐍆𐌷𐌰𐌹𐌼𐌴𐌹𐍃", "", "𐌰𐍆𐌷𐌰𐌹𐌼𐌹", "", "away from home"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐌶𐌰", "adj", "𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐌶𐌰", "", "𐌸𐌰𐌿𐍂𐍆𐍄𐍉𐌶𐌴𐌹", "", "comparative degree of"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐍃", "adj", "𐌷𐌽𐌰𐌹𐍅𐍃", "", "𐌷𐌽𐌰𐌹𐍅𐌰", "", "low lowly"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐌹𐍅𐌰𐌼", "adj", "𐌷𐌽𐌰𐌹𐍅𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌷𐍄𐍃", "adj", "𐌻𐌴𐌹𐌷𐍄𐍃", "", "𐌻𐌴𐌹𐌷𐍄𐌰", "", "light in weight"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌷𐍄𐌹𐍃", "adj", "𐌻𐌴𐌹𐌷𐍄𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐌷𐍄", "adj", "𐌻𐌴𐌹𐌷𐍄", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌾𐌰𐌽𐌴", "adj", "𐌼𐌰𐌽𐍅𐌾𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌰𐌿𐍂𐍃", "adj", "𐌲𐌰𐍆𐌰𐌿𐍂𐍃", "", "𐌲𐌰𐍆𐌰𐌿𐍂𐌾𐌰", "", "well-behaved sober"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌰𐌿𐍂𐌾𐍉𐍃", "adj", "𐌲𐌰𐍆𐌰𐌿𐍂𐌾𐍉𐍃", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐍃", "adj", "𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐍃", "", "𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐌰", "", "concealed covered"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐌰", "adj", "𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐌰", "", "", "", "inflection of 𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽", "adj", "𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐍉𐌽𐍃", "adj", "𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐍉𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐍆𐌿𐌻𐌲𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌿𐌳𐍃", "adj", "𐌲𐌰𐌲𐌿𐌳𐍃", "", "𐌲𐌰𐌲𐌿𐌳𐌰", "", "godly honorable"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐌻𐍃", "adj", "𐌲𐌰𐌷𐌰𐌹𐌻𐍃", "", "𐌲𐌰𐌷𐌰𐌹𐌻𐌰", "", "whole"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌹𐌻𐌰𐌽𐌰", "adj", "𐌲𐌰𐌷𐌰𐌹𐌻𐌰𐌽𐌰", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["𐌰𐌲𐌹𐍃𐌻𐌴𐌹𐌺𐍃", "adj", "𐌰𐌲𐌹𐍃𐌻𐌴𐌹𐌺𐍃", "", "𐌰𐌲𐌹𐍃𐌻𐌴𐌹𐌺𐌰", "", "terrible fearful frightening"]) + let v = native_list_append(v, ["𐌰𐌲𐌹𐍃𐌻𐌴𐌹𐌺𐌰𐌼𐌼𐌰", "adj", "𐌰𐌲𐌹𐍃𐌻𐌴𐌹𐌺𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌿𐌻𐌸𐍃", "adj", "𐌷𐌿𐌻𐌸𐍃", "", "𐌷𐌿𐌻𐌸𐌰", "", "gracious kind clement"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌿𐌼𐌰", "adj", "𐌹𐌽𐌽𐌿𐌼𐌰", "", "𐌹𐌽𐌽𐌿𐌼𐌴𐌹", "", "inner interior"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌿𐌼𐌹𐌽", "adj", "𐌹𐌽𐌽𐌿𐌼𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐍃", "adj", "𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐍃", "", "𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐌰", "", "made of thorn"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐌰", "adj", "𐌸𐌰𐌿𐍂𐌽𐌴𐌹𐌽𐌰", "", "", "", "strong accusative feminine"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌰", "adj", "𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌰", "", "𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌴𐌹", "", "left west side"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌴𐌹", "adj", "𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌴𐌹𐌽", "adj", "𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐌴𐌹𐌽", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐍉𐌽𐌰", "adj", "𐌷𐌻𐌴𐌹𐌳𐌿𐌼𐍉𐌽𐌰", "", "", "", "accusative neuter plural"]) + let v = native_list_append(v, ["𐍃𐌰𐌺𐌿𐌻𐍃", "adj", "𐍃𐌰𐌺𐌿𐌻𐍃", "", "𐍃𐌰𐌺𐌿𐌻𐌰", "", "quarrelsome"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌸𐌿𐌻𐍃", "adj", "𐍃𐌺𐌰𐌸𐌿𐌻𐍃", "", "𐍃𐌺𐌰𐌸𐌿𐌻𐌰", "", "injurious"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌸𐌿𐌻𐌰𐌽𐍃", "adj", "𐍃𐌺𐌰𐌸𐌿𐌻𐌰𐌽𐍃", "", "", "", "inflection of 𐍃𐌺𐌰𐌸𐌿𐌻𐍃"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌸𐌿𐌻𐌰", "adj", "𐍃𐌺𐌰𐌸𐌿𐌻𐌰", "", "", "", "inflection of 𐍃𐌺𐌰𐌸𐌿𐌻𐍃"]) + let v = native_list_append(v, ["𐍃𐌺𐌰𐌸𐌰𐌹𐌻𐌰", "adj", "𐍃𐌺𐌰𐌸𐌰𐌹𐌻𐌰", "", "", "", "misspelling of 𐍃𐌺𐌰𐌸𐌿𐌻𐌰"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐌹𐌸𐍃", "adj", "𐍃𐌻𐌴𐌹𐌸𐍃", "", "𐍃𐌻𐌴𐌹𐌳𐌾𐌰", "", "fierce dangerous"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐌹𐌳𐌾𐌰", "adj", "𐍃𐌻𐌴𐌹𐌳𐌾𐌰", "", "", "", "inflection of 𐍃𐌻𐌴𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌻𐌴𐌹𐌳𐌾𐌰𐌹", "adj", "𐍃𐌻𐌴𐌹𐌳𐌾𐌰𐌹", "", "", "", "inflection of 𐍃𐌻𐌴𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌸𐍃", "adj", "𐌲𐌰𐍂𐌹𐌿𐌸𐍃", "", "𐌲𐌰𐍂𐌹𐌿𐌳𐌰", "", "respectable honorable dignified"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐍃", "adj", "𐌲𐌰𐍂𐌹𐌿𐌳𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐍉𐍃", "adj", "𐌲𐌰𐍂𐌹𐌿𐌳𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳𐌰𐌽𐍃", "adj", "𐌲𐌰𐍂𐌹𐌿𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐌰𐍂𐌹𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌸", "adj", "𐌲𐌰𐍂𐌹𐌿𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌹𐌿𐌳", "adj", "𐌲𐌰𐍂𐌹𐌿𐌳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌸𐍃", "adj", "𐌿𐍃𐌳𐌰𐌿𐌳𐍉𐌶𐌰", "", "𐌿𐍃𐌳𐌰𐌿𐌳𐌰", "", "earnest diligent vigorous"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐌰𐌽𐌰", "adj", "𐌿𐍃𐌳𐌰𐌿𐌳𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐍉𐌶𐌰", "adj", "𐌿𐍃𐌳𐌰𐌿𐌳𐍉𐌶𐌰", "", "𐌿𐍃𐌳𐌰𐌿𐌳𐍉𐌶𐌴𐌹", "", "more diligent or"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐍉𐌶𐌰𐌽", "adj", "𐌿𐍃𐌳𐌰𐌿𐌳𐍉𐌶𐌰𐌽", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌻𐌰𐌵𐌿𐍃", "adj", "𐌸𐌻𐌰𐌵𐌿𐍃", "", "𐌸𐌻𐌰𐌵𐌾𐌰", "", "tender"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "adj", "𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍃", "", "𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰", "", "unseen invisible"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌹𐍃", "adj", "𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰𐌽𐌴", "adj", "𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍉𐌽𐌰", "adj", "𐌿𐌽𐌲𐌰𐍃𐌰𐌹𐍈𐌰𐌽𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌴𐌹", "", "unspeaking mute"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽", "adj", "𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐍂𐍉𐌳𐌾𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌴𐌹", "", "unseeing"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐍃𐌰𐌹𐍈𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐍂𐌹𐌲𐌲𐍅𐍃", "adj", "𐌿𐌽𐍄𐍂𐌹𐌲𐌲𐍅𐍃", "", "𐌿𐌽𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "", "untrue disloyal"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "adj", "𐌿𐌽𐍄𐍂𐌹𐌲𐌲𐍅𐌰", "", "", "", "inflection of 𐌿𐌽𐍄𐍂𐌹𐌲𐌲𐍅𐍃"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃", "adj", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃", "", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌰", "", "deceitful insincere"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌰𐌹", "adj", "𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌰𐌹", "", "", "", "inflection of 𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃", "adj", "𐌿𐌽𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃", "", "𐌿𐌽𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌰", "", "sincere unpretending"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌰𐌹", "adj", "𐌿𐌽𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌷𐌹𐌽𐌳𐌰𐍂𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃", "adj", "𐌿𐌽𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃", "", "𐌿𐌽𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃𐌰", "", "unwitting without forethought"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃𐌰𐌽𐌴", "adj", "𐌿𐌽𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐌹𐍃", "adj", "𐌿𐌽𐍅𐌴𐌹𐍃", "", "𐌿𐌽𐍅𐌴𐌹𐍃𐌰", "", "unlearned ignorant"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐌹𐍃𐌰𐌹", "adj", "𐌿𐌽𐍅𐌴𐌹𐍃𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐌹𐍃𐌰𐌽𐍃", "adj", "𐌿𐌽𐍅𐌴𐌹𐍃𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐍅𐌰𐌿𐍂𐌳𐍃", "adj", "𐌿𐌱𐌹𐌻𐍅𐌰𐌿𐍂𐌳𐍃", "", "𐌿𐌱𐌹𐌻𐍅𐌰𐌿𐍂𐌳𐌰", "", "abusive maligning railing"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌰𐌷𐍃", "adj", "𐍅𐌰𐌿𐍂𐌳𐌰𐌷𐍃", "", "𐍅𐌰𐌿𐍂𐌳𐌰𐌷𐌰", "", "pertaining to words"]) + let v = native_list_append(v, ["𐍅𐌰𐌿𐍂𐌳𐌰𐌷𐌰𐌹", "adj", "𐍅𐌰𐌿𐍂𐌳𐌰𐌷𐌰𐌹", "", "", "", "inflection of 𐍅𐌰𐌿𐍂𐌳𐌰𐌷𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌸𐍃", "adj", "𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌸𐍃", "", "𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌳𐌰", "", "unfathomable indescribable"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌳𐌰", "adj", "𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌳𐌰", "", "", "", "inflection of 𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌳𐍉𐌽𐍃", "adj", "𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌳𐍉𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌿𐍃𐍃𐍀𐌹𐌻𐌻𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌹𐌵𐍃", "adj", "𐍅𐍂𐌰𐌹𐌵𐍃", "", "𐍅𐍂𐌰𐌹𐌵𐌰", "", "crooked"]) + let v = native_list_append(v, ["𐍅𐍂𐌰𐌹𐌵𐍉", "adj", "𐍅𐍂𐌰𐌹𐌵𐍉", "", "", "", "inflection of 𐍅𐍂𐌰𐌹𐌵𐍃"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌹𐍃𐌰", "adj", "𐍅𐌰𐌻𐌹𐍃𐌰", "", "𐍅𐌰𐌻𐌹𐍃𐍉", "", "true genuine"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌹𐍃𐌰𐌽𐍃", "adj", "𐍅𐌰𐌻𐌹𐍃𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌹𐍃𐌹𐌽", "adj", "𐍅𐌰𐌻𐌹𐍃𐌹𐌽", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌻𐌹𐍃𐍉", "adj", "𐍅𐌰𐌻𐌹𐍃𐍉", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍅𐌰𐌲𐌹𐌸𐍃", "adj", "𐌿𐌽𐌲𐌰𐍅𐌰𐌲𐌹𐌸𐍃", "", "𐌿𐌽𐌲𐌰𐍅𐌰𐌲𐌹𐌳𐌰", "", "unmoved unshaken"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐍃", "adj", "𐌸𐌰𐍂𐌱𐍃", "", "𐌸𐌰𐍂𐌱𐌰", "", "necessary"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐌰𐌽𐍃", "adj", "𐌸𐌰𐍂𐌱𐌰𐌽𐍃", "", "", "", "inflection of 𐌸𐌰𐍂𐌱𐍃"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱", "adj", "𐌸𐌰𐍂𐌱", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐌰𐌼", "adj", "𐌸𐌰𐍂𐌱𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌱𐌰𐌽𐌴", "adj", "𐌸𐌰𐍂𐌱𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌸𐍃", "adj", "𐌲𐌰𐍂𐌰𐌹𐌸𐍃", "", "𐌲𐌰𐍂𐌰𐌹𐌳𐌰", "", "appointed ordained"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌳𐍉𐌽", "adj", "𐌲𐌰𐍂𐌰𐌹𐌳𐍉𐌽", "", "", "", "feminine accusative/dative singular"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌳", "adj", "𐌲𐌰𐍂𐌰𐌹𐌳", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "adj", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐍃", "", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "righteous just"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐍃", "adj", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐌴", "adj", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "adj", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰", "", "", "", "inflection of 𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐌰", "adj", "𐌿𐍃𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐍉𐌷𐍃", "adj", "𐌲𐌰𐍃𐌺𐍉𐌷𐍃", "", "𐌲𐌰𐍃𐌺𐍉𐌷𐌰", "", "shod"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐌺𐍉𐌷𐌰𐌹", "adj", "𐌲𐌰𐍃𐌺𐍉𐌷𐌰𐌹", "", "", "", "inflection of 𐌲𐌰𐍃𐌺𐍉𐌷𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌹𐍃𐌴𐌹𐌲𐍃", "adj", "𐌻𐌰𐌹𐍃𐌴𐌹𐌲𐍃", "", "𐌻𐌰𐌹𐍃𐌴𐌹𐌲𐌰", "", "skilled at teaching"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍉𐌾𐌰𐌽𐍃", "adj", "𐌲𐌰𐍃𐍄𐍉𐌾𐌰𐌽𐍃", "", "𐌲𐌰𐍃𐍄𐍉𐌾𐌰𐌽𐌰", "", "unreasonable? wicked?"]) + let v = native_list_append(v, ["𐌲𐌰𐍃𐍄𐍉𐌾𐌰𐌽𐌰𐌹𐌼", "adj", "𐌲𐌰𐍃𐍄𐍉𐌾𐌰𐌽𐌰𐌹𐌼", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["𐌻𐌴𐌹𐍃", "adj", "𐌻𐌴𐌹𐍃", "", "𐌻𐌴𐌹𐍃𐌰", "", "skilled knowledgeable"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌴𐌹𐌷𐍃", "adj", "𐌿𐍃𐍅𐌴𐌹𐌷𐍃", "", "𐌿𐍃𐍅𐌴𐌹𐌷𐌰", "", "profane"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌴𐌹𐌷𐌰𐌹𐌼", "adj", "𐌿𐍃𐍅𐌴𐌹𐌷𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌴𐌹𐌷𐍉𐌽𐌰", "adj", "𐌿𐍃𐍅𐌴𐌹𐌷𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌰𐌻𐍃", "adj", "𐌿𐌽𐍄𐌰𐌻𐍃", "", "𐌿𐌽𐍄𐌰𐌻𐌰", "", "undisciplined untrained uneducated"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌼𐌼", "adj", "𐌲𐌰𐍅𐌰𐌼𐌼", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌼𐌼𐍃", "adj", "𐌲𐌰𐍅𐌰𐌼𐌼𐍃", "", "𐌲𐌰𐍅𐌰𐌼𐌼𐌰", "", "unclean"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍄𐌰𐌼𐌼𐌰", "adj", "𐌷𐌰𐌻𐍄𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍄𐌰𐌽𐍃", "adj", "𐌷𐌰𐌻𐍄𐌰𐌽𐍃", "", "", "", "inflection of 𐌷𐌰𐌻𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍄𐌰𐌹", "adj", "𐌷𐌰𐌻𐍄𐌰𐌹", "", "", "", "inflection of 𐌷𐌰𐌻𐍄𐍃"]) + let v = native_list_append(v, ["𐍄𐌰𐌻𐍃", "adj", "𐍄𐌰𐌻𐍃", "", "𐍄𐌰𐌻𐌰", "", "trained disciplined obedient"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌰𐍂𐌽𐌰𐌷𐍃", "adj", "𐌿𐌽𐌱𐌰𐍂𐌽𐌰𐌷𐍃", "", "𐌿𐌽𐌱𐌰𐍂𐌽𐌰𐌷𐌰", "", "childless"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐍄𐍃", "adj", "𐌲𐌰𐍅𐌰𐌿𐍂𐍄𐍃", "", "𐌲𐌰𐍅𐌰𐌿𐍂𐍄𐌰", "", "rooted"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "adj", "𐌲𐌰𐍅𐌰𐌿𐍂𐌷𐍄𐌰𐌹", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐍃", "adj", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐍃", "", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐌰", "", "different"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌴𐌹", "", "unknowing ignorant"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌹𐌽", "adj", "𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌹𐌽", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌼", "adj", "𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌼", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐌺𐌿𐌽𐌽𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "strong nominative/accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌾𐌰𐌽𐌰", "adj", "𐌿𐌽𐍂𐌹𐌿𐍂𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌾𐌰𐌽𐌰", "adj", "𐍂𐌹𐌿𐍂𐌾𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌴𐌹𐍃", "adj", "𐍂𐌹𐌿𐍂𐌴𐌹𐍃", "", "𐍂𐌹𐌿𐍂𐌹", "", "corruptible perishable mortal"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌾𐌰𐌼𐌼𐌰", "adj", "𐍂𐌹𐌿𐍂𐌾𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌾𐍉", "adj", "𐍂𐌹𐌿𐍂𐌾𐍉", "", "", "", "inflection of 𐍂𐌹𐌿𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍂𐌹𐌿𐍂𐌾𐌰", "adj", "𐍂𐌹𐌿𐍂𐌾𐌰", "", "", "", "inflection of 𐍂𐌹𐌿𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌰𐌻𐌰𐌹𐌼", "adj", "𐌿𐌽𐍄𐌰𐌻𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌰𐌻𐌰𐌽𐍃", "adj", "𐌿𐌽𐍄𐌰𐌻𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍄𐌰𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌰𐌻𐍉𐌽𐍃", "adj", "𐌿𐌽𐍄𐌰𐌻𐍉𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍄𐌰𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐌺𐌿𐌽𐌸𐍃", "adj", "𐌿𐍃𐌺𐌿𐌽𐌸𐍃", "", "𐌿𐍃𐌺𐌿𐌽𐌸𐌰", "", "well-known manifest"]) + let v = native_list_append(v, ["𐌿𐍃𐌺𐌿𐌽𐌸𐌰", "adj", "𐌿𐍃𐌺𐌿𐌽𐌸𐌰", "", "", "", "inflection of 𐌿𐍃𐌺𐌿𐌽𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐌺𐌿𐌽𐌸𐌰𐌽𐌰", "adj", "𐌿𐍃𐌺𐌿𐌽𐌸𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐍃𐌺𐌿𐌽𐌸", "adj", "𐌿𐍃𐌺𐌿𐌽𐌸", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌸𐍃", "adj", "𐌿𐌽𐌺𐌿𐌽𐌸𐍃", "", "𐌿𐌽𐌺𐌿𐌽𐌸𐌰", "", "unknown"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐍄𐍃", "adj", "𐌷𐌰𐌻𐍄𐍃", "", "𐌷𐌰𐌻𐍄𐌰", "", "lame limp"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐍃", "adj", "𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐍃", "", "𐌿𐌽𐍂𐌹𐌿𐍂𐌹", "", "incorruptible imperishable immortal"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌾𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐍂𐌹𐌿𐍂𐌾𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍂𐌹𐌿𐍂𐌾𐌰𐌹", "adj", "𐌿𐌽𐍂𐌹𐌿𐍂𐌾𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍂𐌹𐌿𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐍅𐌹𐌶𐌽𐌴𐌹𐌲𐍃", "adj", "𐌲𐌰𐍅𐌹𐌶𐌽𐌴𐌹𐌲𐍃", "", "𐌲𐌰𐍅𐌹𐌶𐌽𐌴𐌹𐌲𐌰", "", "full of delight"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐍄𐌴𐌹𐌽𐍃", "adj", "𐍃𐌴𐌹𐍄𐌴𐌹𐌽𐍃", "", "𐍃𐌴𐌹𐍄𐌴𐌹𐌽𐌰", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐍄𐌴𐌹𐌽𐌰", "adj", "𐍃𐌴𐌹𐍄𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍃𐌴𐌹𐍄𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌲𐌰𐌸𐌰𐌿𐍂𐌱𐍃", "adj", "𐌲𐌰𐌸𐌰𐌿𐍂𐌱𐍃", "", "𐌲𐌰𐌸𐌰𐌿𐍂𐌱𐌰", "", "temperate"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐍃", "adj", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐍃", "", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌰", "", "empty-bellied"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌰𐌽𐍃", "adj", "𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐌰𐌽𐍃", "", "", "", "inflection of 𐌻𐌰𐌿𐍃𐌵𐌹𐌸𐍂𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌳𐍃", "adj", "𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌳𐍃", "", "𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌳𐌴𐌹", "", "irreproachable"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌸𐍃", "adj", "𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌸𐍃", "", "𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐌰", "", "irreproachable"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐌰𐌹", "adj", "𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐍉𐍃", "adj", "𐌿𐌽𐌲𐌰𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐍂𐍉𐌸𐌰𐌽𐍃", "adj", "𐌿𐌽𐍆𐍂𐍉𐌸𐌰𐌽𐍃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌹𐌻𐍃", "adj", "𐌿𐌽𐌷𐌰𐌹𐌻𐍃", "", "𐌿𐌽𐌷𐌰𐌹𐌻𐌰", "", "unwell sick"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌹𐌻𐌰𐌽𐍃", "adj", "𐌿𐌽𐌷𐌰𐌹𐌻𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌷𐌰𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌹𐌻𐌰𐌹", "adj", "𐌿𐌽𐌷𐌰𐌹𐌻𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌷𐌰𐌹𐌻𐍃"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐍃𐍄𐍃", "adj", "𐌸𐍅𐌰𐍃𐍄𐍃", "", "", "", "strong stable"]) + let v = native_list_append(v, ["𐌲𐍂𐌹𐌽𐌳𐌰𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "adj", "𐌲𐍂𐌹𐌽𐌳𐌰𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "", "𐌲𐍂𐌹𐌽𐌳𐌰𐍆𐍂𐌰𐌸𐌾𐌰", "", "faint-hearted timid demoralized"]) + let v = native_list_append(v, ["𐌲𐍂𐌹𐌽𐌳𐌰𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐍃", "adj", "𐌲𐍂𐌹𐌽𐌳𐌰𐍆𐍂𐌰𐌸𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐌲𐍂𐌹𐌽𐌳𐌰𐍆𐍂𐌰𐌸𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌷𐌰𐌼𐍆𐍃", "adj", "𐌷𐌰𐌼𐍆𐍃", "", "𐌷𐌰𐌼𐍆𐌰", "", "maimed"]) + let v = native_list_append(v, ["𐌷𐌰𐌼𐍆𐌰𐌼𐌼𐌰", "adj", "𐌷𐌰𐌼𐍆𐌰𐌼𐌼𐌰", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌱𐌹𐌸𐍅𐌿𐌽𐌳𐍃", "adj", "𐌷𐌰𐌿𐌱𐌹𐌸𐍅𐌿𐌽𐌳𐍃", "", "𐌷𐌰𐌿𐌱𐌹𐌸𐍅𐌿𐌽𐌳𐌰", "", "wounded in the"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌱𐌹𐌸𐍅𐌿𐌽𐌳𐌰𐌽", "adj", "𐌷𐌰𐌿𐌱𐌹𐌸𐍅𐌿𐌽𐌳𐌰𐌽", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌿𐌼𐌹𐍃𐍄𐍃", "adj", "𐌷𐌹𐌽𐌳𐌿𐌼𐌹𐍃𐍄𐍃", "", "𐌷𐌹𐌽𐌳𐌿𐌼𐌹𐍃𐍄𐌰", "", "outer outermost"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌿𐌼𐌹𐍃𐍄𐍉", "adj", "𐌷𐌹𐌽𐌳𐌿𐌼𐌹𐍃𐍄𐍉", "", "", "", "inflection of 𐌷𐌹𐌽𐌳𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐍃", "adj", "𐌷𐌻𐌰𐍃𐍉𐌶𐌰", "", "𐌷𐌻𐌰𐍃𐌰", "", "cheerful"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐍃𐍉𐌶𐌰", "adj", "𐌷𐌻𐌰𐍃𐍉𐌶𐌰", "", "𐌷𐌻𐌰𐍃𐍉𐌶𐌴𐌹", "", "comparative degree of"]) + let v = native_list_append(v, ["𐌷𐌻𐌰𐍃𐌰𐌽𐌰", "adj", "𐌷𐌻𐌰𐍃𐌰𐌽𐌰", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐍃𐌵𐌿𐍃", "adj", "𐌷𐌽𐌰𐍃𐌵𐌿𐍃", "", "𐌷𐌽𐌰𐍃𐌵𐌾𐌰", "", "soft"]) + let v = native_list_append(v, ["𐌷𐌽𐌰𐍃𐌵𐌾𐌰𐌹𐌼", "adj", "𐌷𐌽𐌰𐍃𐌵𐌾𐌰𐌹𐌼", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["𐌹𐍆𐍄𐌿𐌼𐌹𐌽", "adj", "𐌹𐍆𐍄𐌿𐌼𐌹𐌽", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["𐌹𐍆𐍄𐌿𐌼𐌰", "adj", "𐌹𐍆𐍄𐌿𐌼𐌰", "", "𐌹𐍆𐍄𐌿𐌼𐌴𐌹", "", "next following"]) + let v = native_list_append(v, ["𐌹𐌽𐌰𐌷𐍃", "adj", "𐌹𐌽𐌰𐌷𐍃", "", "𐌹𐌽𐌰𐌷𐌰", "", "wise"]) + let v = native_list_append(v, ["𐌹𐌽𐌰𐌷𐌰𐌹", "adj", "𐌹𐌽𐌰𐌷𐌰𐌹", "", "", "", "inflection of 𐌹𐌽𐌰𐌷𐍃"]) + let v = native_list_append(v, ["𐌲𐌻𐌰𐌲𐌲𐍅𐍃", "adj", "𐌲𐌻𐌰𐌲𐌲𐍅𐍃", "", "𐌲𐌻𐌰𐌲𐌲𐍅𐌰", "", "precise diligent meticulous"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌿𐌽𐌸𐌰𐌹", "adj", "𐌿𐌽𐌺𐌿𐌽𐌸𐌰𐌹", "", "", "", "strong nominative masculine"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰", "adj", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰", "", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐍉", "", "that is in"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐌽", "adj", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐍉𐌽", "", "", "", "feminine accusative/dative singular"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "adj", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌽𐍃", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌼", "adj", "𐌹𐌽𐌲𐌰𐍂𐌳𐌾𐌰𐌼", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "", "of one’s household"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐍃", "adj", "𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌹", "adj", "𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌹", "", "", "", "inflection of 𐌹𐌽𐌽𐌰𐌺𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃", "adj", "𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃", "", "𐍆𐌰𐌿𐍂𐍅𐌴𐌹𐍃𐌰", "", "witting with forethought"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐍃𐌰𐌽𐌳𐍃", "adj", "𐌹𐌽𐍅𐌹𐍃𐌰𐌽𐌳𐍃", "", "𐌹𐌽𐍅𐌹𐍃𐌰𐌽𐌳𐌴𐌹", "", "past having already"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐍃𐌰𐌽𐌳𐌹𐌽𐍃", "adj", "𐌹𐌽𐍅𐌹𐍃𐌰𐌽𐌳𐌹𐌽𐍃", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["𐌹𐌽𐍅𐌹𐍄𐍉𐌸𐍃", "adj", "𐌹𐌽𐍅𐌹𐍄𐍉𐌸𐍃", "", "𐌹𐌽𐍅𐌹𐍄𐍉𐌳𐌰", "", "under the law"]) + let v = native_list_append(v, ["𐌻𐌰𐍃𐌹𐍅𐍃", "adj", "𐌻𐌰𐍃𐌹𐍅𐍃", "𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐍃", "𐌻𐌰𐍃𐌹𐍅𐌰", "", "feeble weak"]) + let v = native_list_append(v, ["𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐍃", "adj", "𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐍃", "", "𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐌰", "", "superlative degree of"]) + let v = native_list_append(v, ["𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐌰𐌹", "adj", "𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐌰𐌹", "", "", "", "inflection of 𐌻𐌰𐍃𐌹𐍅𐍉𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "adj", "𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "", "", "", "inflection of 𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐍄𐌰𐌹", "adj", "𐌻𐌰𐍄𐌰𐌹", "", "", "", "inflection of 𐌻𐌰𐍄𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐍄𐌰", "adj", "𐌻𐌰𐍄𐌰", "", "", "", "inflection of 𐌻𐌰𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐌻𐍄𐌰𐌽𐍃", "adj", "𐌿𐌽𐍃𐌰𐌻𐍄𐌰𐌽𐍃", "", "𐌿𐌽𐍃𐌰𐌻𐍄𐌰", "", "unsalted"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐌻𐍄𐌰𐌽", "adj", "𐌿𐌽𐍃𐌰𐌻𐍄𐌰𐌽", "", "", "", "weak accusative masculine"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐌹𐍅𐌰𐌿𐍂𐌳𐌰𐌹", "adj", "𐌻𐌰𐌿𐍃𐌰𐌹𐍅𐌰𐌿𐍂𐌳𐌰𐌹", "", "", "", "misspelling of 𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌰𐌹"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌰𐌹", "adj", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌰𐌹", "", "", "", "inflection of 𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐍃"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐍃", "adj", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐍃", "", "𐌻𐌰𐌿𐍃𐌰𐍅𐌰𐌿𐍂𐌳𐌰", "", "talking vainly speaking"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌷𐌰𐌽𐌳𐌾𐌰", "adj", "𐌻𐌰𐌿𐍃𐌷𐌰𐌽𐌳𐌾𐌰", "", "𐌻𐌰𐌿𐍃𐌷𐌰𐌽𐌳𐌿𐍃", "", "empty-handed"]) + let v = native_list_append(v, ["𐌻𐌰𐌿𐍃𐌷𐌰𐌽𐌳𐌾𐌰𐌽", "adj", "𐌻𐌰𐌿𐍃𐌷𐌰𐌽𐌳𐌾𐌰𐌽", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌿𐍃𐌰𐌼𐌰", "adj", "𐌻𐌿𐍃𐍄𐌿𐍃𐌰𐌼𐌰", "", "𐌻𐌿𐍃𐍄𐌿𐍃𐌰𐌼𐌰𐌹𐌶𐍉𐍃", "", "longed for"]) + let v = native_list_append(v, ["𐌻𐌿𐍃𐍄𐌿𐍃𐌰𐌼𐌰𐌽𐍃", "adj", "𐌻𐌿𐍃𐍄𐌿𐍃𐌰𐌼𐌰𐌽𐍃", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌹𐌷𐍄𐍃", "adj", "𐍃𐌻𐌰𐌹𐌷𐍄𐍃", "", "𐍃𐌻𐌰𐌹𐌷𐍄𐌰", "", "smooth"]) + let v = native_list_append(v, ["𐍃𐌻𐌰𐌹𐌷𐍄𐌰𐌹𐌼", "adj", "𐍃𐌻𐌰𐌹𐌷𐍄𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐍃", "adj", "𐍅𐌰𐍂𐍃", "", "𐍅𐌰𐍂𐌰", "", "alert wary"]) + let v = native_list_append(v, ["𐍅𐌰𐍂𐌰𐌹", "adj", "𐍅𐌰𐍂𐌰𐌹", "", "", "", "inflection of 𐍅𐌰𐍂𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌹𐍅𐌹𐍃𐌺𐍃", "adj", "𐌿𐌽𐌰𐌹𐍅𐌹𐍃𐌺𐍃", "", "𐌿𐌽𐌰𐌹𐍅𐌹𐍃𐌺𐌰", "", "without shame"]) + let v = native_list_append(v, ["𐌰𐌹𐍅𐌹𐍃𐌺𐍃", "adj", "𐌰𐌹𐍅𐌹𐍃𐌺𐍃", "", "𐌰𐌹𐍅𐌹𐍃𐌺𐌰", "", "shameful disgraceful"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌹𐍅𐌹𐍃𐌺𐌰𐌽𐌰", "adj", "𐌿𐌽𐌰𐌹𐍅𐌹𐍃𐌺𐌰𐌽𐌰", "", "", "", "strong accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌸𐍃", "adj", "𐌿𐌽𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌸𐍃", "", "𐌿𐌽𐌰𐌽𐌳𐌷𐌿𐌻𐌹𐌳𐌰", "", "not uncovered unrevealed"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐍃", "adj", "𐌿𐌽𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐍃", "", "𐌿𐌽𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐌰", "", "undisputed unopposed"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐌰", "adj", "𐌿𐌽𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐌰", "", "", "", "inflection of 𐌿𐌽𐌰𐌽𐌳𐍃𐌰𐌺𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌽𐌳𐍃𐍉𐌺𐍃", "adj", "𐌿𐌽𐌰𐌽𐌳𐍃𐍉𐌺𐍃", "", "𐌿𐌽𐌰𐌽𐌳𐍃𐍉𐌺𐌰", "", "indisputable"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌴𐌹", "", "not bearing"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌴𐌹", "adj", "𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌴𐌹", "", "", "", "weak nominative feminine"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌰𐌽𐌴", "adj", "𐌿𐌽𐌱𐌰𐌹𐍂𐌰𐌽𐌳𐌰𐌽𐌴", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "adj", "𐌿𐌽𐌱𐌰𐌿𐍂𐌰𐌽𐍃", "", "𐌿𐌽𐌱𐌰𐌿𐍂𐌰𐌽𐌰", "", "unborn"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌰𐌿𐍂𐌰𐌽𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐌱𐌰𐌿𐍂𐌰𐌽𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌹𐌻𐌰𐌼𐌰𐌻𐍃𐌺𐍃", "adj", "𐌿𐌽𐍄𐌹𐌻𐌰𐌼𐌰𐌻𐍃𐌺𐍃", "", "𐌿𐌽𐍄𐌹𐌻𐌰𐌼𐌰𐌻𐍃𐌺𐌰", "", "reckless overconfident rash"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌹𐌻𐌰𐌼𐌰𐌻𐍃𐌺𐌰𐌹", "adj", "𐌿𐌽𐍄𐌹𐌻𐌰𐌼𐌰𐌻𐍃𐌺𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍄𐌹𐌻𐌰𐌼𐌰𐌻𐍃𐌺𐍃"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "adj", "𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐍃", "", "𐌿𐍆𐌰𐍂𐌷𐌹𐌼𐌹𐌽𐌰𐌺𐌿𐌽𐌳𐌰", "", "born of heaven"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐌶𐌰", "adj", "𐍃𐍀𐌴𐌳𐌹𐌶𐌰", "", "𐍃𐍀𐌴𐌳𐌹𐌶𐌴𐌹", "", "comparative degree of"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌹𐌳𐌹𐌶𐌴𐌹", "adj", "𐍃𐍀𐌴𐌹𐌳𐌹𐌶𐌴𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌹𐌶𐌴𐌹", "adj", "𐍃𐍀𐌴𐌳𐌹𐌶𐌴𐌹", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐍂𐌰𐌸𐌹𐌶𐌰", "adj", "𐍂𐌰𐌸𐌹𐌶𐌰", "", "𐍂𐌰𐌸𐌹𐌶𐌴𐌹", "", "easier"]) + let v = native_list_append(v, ["𐍂𐌰𐌸𐌹𐌶𐍉", "adj", "𐍂𐌰𐌸𐌹𐌶𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐍆𐍃", "adj", "𐌿𐌽𐌻𐌹𐌿𐍆𐍃", "", "𐌿𐌽𐌻𐌹𐌿𐌱𐌰", "", "unloved"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐌱𐍉𐌽", "adj", "𐌿𐌽𐌻𐌹𐌿𐌱𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌿𐌽𐌵𐌴𐌽𐌹𐌸𐍃", "adj", "𐌿𐌽𐌵𐌴𐌽𐌹𐌸𐍃", "", "𐌿𐌽𐌵𐌴𐌽𐌹𐌳𐌰", "", "wifeless"]) + let v = native_list_append(v, ["𐌿𐌽𐌵𐌴𐌽𐌹𐌳𐌰𐌼", "adj", "𐌿𐌽𐌵𐌴𐌽𐌹𐌳𐌰𐌼", "", "", "", "weak dative masculine/neuter"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐍃", "adj", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐍃", "", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌹", "", "of good repute"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌹", "adj", "𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌹", "", "", "", "inflection of 𐍅𐌰𐌹𐌻𐌰𐌼𐌴𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐍅𐌹𐌻𐌸𐌴𐌹𐌽𐍃", "adj", "𐍅𐌹𐌻𐌸𐌴𐌹𐌽𐍃", "", "", "", "weak genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐌳𐌴𐌹", "", "unknowing"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐍅𐌹𐍄𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐍂𐌿𐌺𐍃", "adj", "𐌿𐌽𐌱𐍂𐌿𐌺𐍃", "", "𐌿𐌽𐌱𐍂𐌿𐌺𐌾𐌰", "", "useless unprofitable"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐍂𐌿𐌺𐌾𐌰𐌹", "adj", "𐌿𐌽𐌱𐍂𐌿𐌺𐌾𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌱𐍂𐌿𐌺𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂𐌹𐍃𐍄𐍃", "adj", "𐌿𐌽𐌳𐌰𐍂𐌹𐍃𐍄𐍃", "", "𐌿𐌽𐌳𐌰𐍂𐌹𐍃𐍄𐌰", "", "lowest undermost"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂𐌹𐍃𐍄𐍉", "adj", "𐌿𐌽𐌳𐌰𐍂𐌹𐍃𐍄𐍉", "", "", "", "inflection of 𐌿𐌽𐌳𐌰𐍂𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍄𐌴𐍅𐌹𐌸𐍃", "adj", "𐌿𐌽𐌲𐌰𐍄𐌴𐍅𐌹𐌸𐍃", "", "𐌿𐌽𐌲𐌰𐍄𐌴𐍅𐌹𐌳𐌰", "", "disorderly"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍄𐌴𐍅𐌹𐌳𐌰𐌹", "adj", "𐌿𐌽𐌲𐌰𐍄𐌴𐍅𐌹𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐍄𐌴𐍅𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐌴𐌹", "", "lacking not having"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐌹𐌽", "adj", "𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐌷𐌰𐌱𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌿𐌽𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐍅𐌿𐌽𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐍅𐌿𐌽𐌰𐌽𐌳𐌴𐌹", "", "discontent unhappy"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐍃", "adj", "𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐍃", "", "𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐌰", "", "latest last of"]) + let v = native_list_append(v, ["𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐌰", "adj", "𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐍃𐍀𐌴𐌳𐌿𐌼𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌻𐌹𐍃𐍄𐍃", "adj", "𐍃𐌼𐌰𐌻𐌹𐍃𐍄𐍃", "", "𐍃𐌼𐌰𐌻𐌹𐍃𐍄𐌰", "", "smallest superlative degree"]) + let v = native_list_append(v, ["𐍃𐌼𐌰𐌻𐌹𐍃𐍄𐌰", "adj", "𐍃𐌼𐌰𐌻𐌹𐍃𐍄𐌰", "", "", "", "inflection of 𐍃𐌼𐌰𐌻𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐍆𐌱𐍂𐌹𐌺𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐌿𐍆𐌱𐍂𐌹𐌺𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐌿𐍆𐌱𐍂𐌹𐌺𐌰𐌽𐌳𐌴𐌹", "", "not spurning or"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐍆𐌱𐍂𐌹𐌺𐌰𐌽𐌳𐌰𐌽𐍃", "adj", "𐌿𐌽𐌿𐍆𐌱𐍂𐌹𐌺𐌰𐌽𐌳𐌰𐌽𐍃", "", "", "", "weak nominative/accusative masculine"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "adj", "𐍃𐌰𐌼𐌰𐍆𐍂𐌰𐌸𐌾𐌹𐍃", "", "𐍃𐌰𐌼𐌰𐍆𐍂𐌰𐌸𐌾𐌰", "", "of one mind"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌽𐍅𐌿𐍃", "adj", "𐌿𐌽𐌼𐌰𐌽𐍅𐌿𐍃", "", "𐌿𐌽𐌼𐌰𐌽𐍅𐌾𐌰", "", "unprepared unready"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌽𐍅𐌾𐌰𐌽𐍃", "adj", "𐌿𐌽𐌼𐌰𐌽𐍅𐌾𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌼𐌰𐌽𐍅𐌿𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐍆𐍂𐌰𐌸𐌾𐌰𐌹", "adj", "𐍃𐌰𐌼𐌰𐍆𐍂𐌰𐌸𐌾𐌰𐌹", "", "", "", "inflection of 𐍃𐌰𐌼𐌰𐍆𐍂𐌰𐌸𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌽𐌳𐌴𐌹", "", "unlying"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌹𐌸𐍃", "adj", "𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌹𐌸𐍃", "", "𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌹𐌳𐌰", "", "unmarried"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌹𐌳𐌰𐌹", "adj", "𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌹𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌻𐌹𐌿𐌲𐌰𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌼𐌼𐍃", "adj", "𐌿𐌽𐍅𐌰𐌼𐌼𐍃", "", "𐌿𐌽𐍅𐌰𐌼𐌼𐌰", "", "unblemished spotless"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐍅𐌰𐌼𐌼𐌰", "", "", "", "inflection of 𐌿𐌽𐍅𐌰𐌼𐌼𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌼𐌼𐌰𐌹", "adj", "𐌿𐌽𐍅𐌰𐌼𐌼𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍅𐌰𐌼𐌼𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌼𐌼𐌰𐌽𐍃", "adj", "𐌿𐌽𐍅𐌰𐌼𐌼𐌰𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍅𐌰𐌼𐌼𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐍄𐍃", "adj", "𐌿𐌽𐌻𐌹𐌿𐍄𐍃", "", "𐌿𐌽𐌻𐌹𐌿𐍄𐌰", "", "sincere honest unhypocritical"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐍄𐌰", "adj", "𐌿𐌽𐌻𐌹𐌿𐍄𐌰", "", "", "", "inflection of 𐌿𐌽𐌻𐌹𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌻𐌹𐌿𐍄𐍉𐌽𐍃", "adj", "𐌿𐌽𐌻𐌹𐌿𐍄𐍉𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐌻𐌹𐌿𐍄𐍃"]) + let v = native_list_append(v, ["𐍈𐌴𐌻𐌰𐌿𐌸𐍃", "adj", "𐍈𐌴𐌻𐌰𐌿𐌸𐍃", "", "𐍈𐌴𐌻𐌰𐌿𐌳𐌰", "", "how large how"]) + let v = native_list_append(v, ["𐍈𐌴𐌻𐌰𐌿𐌳𐌰", "adj", "𐍈𐌴𐌻𐌰𐌿𐌳𐌰", "", "", "", "inflection of 𐍈𐌴𐌻𐌰𐌿𐌸𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌻𐌰𐌿𐌸𐍃", "adj", "𐍃𐌰𐌼𐌰𐌻𐌰𐌿𐌸𐍃", "", "𐍃𐌰𐌼𐌰𐌻𐌰𐌿𐌳𐌰", "", "as large as"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌰𐌿𐌳", "adj", "𐍃𐍅𐌰𐌻𐌰𐌿𐌳", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌻𐌰𐌿𐌳", "adj", "𐍃𐌰𐌼𐌰𐌻𐌰𐌿𐌳", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱𐍃", "adj", "𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱𐍃", "", "𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱𐌰", "", "temporary transient"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱", "adj", "𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱𐌰𐌹", "adj", "𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱𐌰𐌹", "", "", "", "inflection of 𐍈𐌴𐌹𐌻𐌰𐍈𐌰𐌹𐍂𐌱𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍃", "adj", "𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍃", "", "𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐌰", "", "identical having the"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐌰", "adj", "𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍉𐍃", "adj", "𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍉𐍃", "", "", "", "strong nominative/accusative feminine"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐍃𐌰𐌹𐍅𐌰𐌻𐍃", "adj", "𐍃𐌰𐌼𐌰𐍃𐌰𐌹𐍅𐌰𐌻𐍃", "", "𐍃𐌰𐌼𐌰𐍃𐌰𐌹𐍅𐌰𐌻𐌰", "", "of the same"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐍃𐌰𐌹𐍅𐌰𐌻𐌰𐌹", "adj", "𐍃𐌰𐌼𐌰𐍃𐌰𐌹𐍅𐌰𐌻𐌰𐌹", "", "", "", "inflection of 𐍃𐌰𐌼𐌰𐍃𐌰𐌹𐍅𐌰𐌻𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌾𐍉𐌸𐍃", "adj", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌾𐍉𐌸𐍃", "", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌾𐍉𐌳𐌰", "", "unleavened"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌾𐍉𐌳𐌰𐌹", "adj", "𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌾𐍉𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌱𐌴𐌹𐍃𐍄𐌾𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍃𐍃", "adj", "𐌿𐌽𐍅𐌹𐍃𐍃", "", "𐌿𐌽𐍅𐌹𐍃𐍃𐌰", "", "uncertain"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌹𐍃𐍃𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐍅𐌹𐍃𐍃𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐌲𐍅𐌰𐌹", "adj", "𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐌲𐍅𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐌲𐍅𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐍅𐌰𐌹", "adj", "𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐍅𐌰𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐌲𐍅𐍃", "adj", "𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐌲𐍅𐍃", "", "𐌿𐌽𐌼𐌰𐌽𐌰𐍂𐌹𐌲𐌲𐍅𐌰", "", "untamed wild savage"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌹𐌻𐌳𐌴𐌹𐍃", "adj", "𐌿𐌽𐌼𐌹𐌻𐌳𐌴𐌹𐍃", "", "𐌿𐌽𐌼𐌹𐌻𐌳𐌹", "", "not mild unkind"]) + let v = native_list_append(v, ["𐌿𐌽𐌼𐌹𐌻𐌳𐌾𐌰𐌹", "adj", "𐌿𐌽𐌼𐌹𐌻𐌳𐌾𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌼𐌹𐌻𐌳𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐍃", "adj", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐍃", "", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐌰", "", "uncircumcised"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐌰𐌹", "adj", "𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌱𐌹𐌼𐌰𐌹𐍄𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐍂𐌹𐌶𐌰", "adj", "𐍅𐌿𐌻𐌸𐍂𐌹𐌶𐌰", "", "𐍅𐌿𐌻𐌸𐍂𐌹𐌶𐌴𐌹", "", "more significant more"]) + let v = native_list_append(v, ["𐍅𐌿𐌻𐌸𐍂𐌹𐌶𐌰𐌽𐍃", "adj", "𐍅𐌿𐌻𐌸𐍂𐌹𐌶𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐍃", "adj", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐍃", "", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌰", "", "childish"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌰𐌹𐌼", "adj", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌰𐌹", "adj", "𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐌰𐌹", "", "", "", "inflection of 𐌽𐌹𐌿𐌺𐌻𐌰𐌷𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌹𐌱𐌾𐌹𐍃", "adj", "𐌿𐌽𐍃𐌹𐌱𐌾𐌹𐍃", "", "𐌿𐌽𐍃𐌹𐌱𐌾𐌰", "", "impious lawless"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌹𐌱𐌾𐌰𐌹𐌼", "adj", "𐌿𐌽𐍃𐌹𐌱𐌾𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌹𐌱𐌾𐍉𐌽𐌰", "adj", "𐌿𐌽𐍃𐌹𐌱𐌾𐍉𐌽𐌰", "", "", "", "weak nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌷𐍃", "adj", "𐌿𐌽𐍅𐌰𐌷𐍃", "", "𐌿𐌽𐍅𐌰𐌷𐌰", "", "uncrooked blameless"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌷𐌰", "adj", "𐌿𐌽𐍅𐌰𐌷𐌰", "", "", "", "inflection of 𐌿𐌽𐍅𐌰𐌷𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌹𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃", "adj", "𐌿𐌽𐍆𐌰𐌹𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃", "", "𐌿𐌽𐍆𐌰𐌹𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰", "", "unsearchable inscrutable"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌹𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐍉𐌽", "adj", "𐌿𐌽𐍆𐌰𐌹𐍂𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐍉𐌽", "", "", "", "weak accusative/dative feminine"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃", "adj", "𐌿𐌽𐌱𐌹𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃", "", "𐌿𐌽𐌱𐌹𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰", "", "unsearchable inscrutable"]) + let v = native_list_append(v, ["𐌿𐌽𐌱𐌹𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰𐌹", "adj", "𐌿𐌽𐌱𐌹𐌻𐌰𐌹𐍃𐍄𐌹𐌳𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌱𐌹𐌻𐌰𐌹𐍃𐍄𐌹𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌽𐍃𐌻𐌰𐌲𐍃", "adj", "𐌿𐌽𐌷𐌿𐌽𐍃𐌻𐌰𐌲𐍃", "", "𐌿𐌽𐌷𐌿𐌽𐍃𐌻𐌰𐌲𐌰", "", "admitting of no"]) + let v = native_list_append(v, ["𐌿𐌽𐌷𐌿𐌽𐍃𐌻𐌰𐌲𐌰𐌹", "adj", "𐌿𐌽𐌷𐌿𐌽𐍃𐌻𐌰𐌲𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌷𐌿𐌽𐍃𐌻𐌰𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐍄𐍉𐌸𐍃", "adj", "𐌿𐌽𐌲𐌰𐍃𐍄𐍉𐌸𐍃", "", "𐌿𐌽𐌲𐌰𐍃𐍄𐍉𐌳𐌰", "", "homeless"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍃𐍄𐍉𐌸𐌰𐌹", "adj", "𐌿𐌽𐌲𐌰𐍃𐍄𐍉𐌸𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐍃𐍄𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐍃", "adj", "𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐍃", "", "𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐌴𐌹", "", "unquenchable inextinguishable"]) + let v = native_list_append(v, ["𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐌹𐌽", "adj", "𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐍉", "adj", "𐌿𐌽𐍈𐌰𐍀𐌽𐌰𐌽𐌳𐍉", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐍆𐍃", "adj", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐍆𐍃", "", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌰", "", "of little value"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌰𐌼𐌼𐌰", "adj", "𐌿𐌽𐌲𐌰𐌻𐌰𐌿𐌱𐌰𐌼𐌼𐌰", "", "", "", "strong dative masculine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌺𐌿𐍃𐌰𐌽𐍃", "adj", "𐌿𐌽𐌲𐌰𐌺𐌿𐍃𐌰𐌽𐍃", "", "𐌿𐌽𐌲𐌰𐌺𐌿𐍃𐌰𐌽𐌰", "", "unfit reprobate"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐌺𐌿𐍃𐌰𐌽𐌰𐌹", "adj", "𐌿𐌽𐌲𐌰𐌺𐌿𐍃𐌰𐌽𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐌲𐌰𐌺𐌿𐍃𐌰𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌹𐍃𐍃", "adj", "𐌿𐍃𐍅𐌹𐍃𐍃", "", "𐌿𐍃𐍅𐌹𐍃𐍃𐌰", "", "disconnected loosened detached"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌹𐍃𐍃𐌰𐌹", "adj", "𐌿𐍃𐍅𐌹𐍃𐍃𐌰𐌹", "", "", "", "inflection of 𐌿𐍃𐍅𐌹𐍃𐍃"]) + let v = native_list_append(v, ["𐌿𐍆𐍅𐌰𐌹𐍂𐌰", "adj", "𐌿𐍆𐍅𐌰𐌹𐍂𐌰", "", "𐌿𐍆𐍅𐌰𐌹𐍂𐍉", "", "married having a"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌰𐍂𐌾𐌰", "adj", "𐌿𐌽𐌺𐌰𐍂𐌾𐌰", "", "𐌿𐌽𐌺𐌰𐍂𐌾𐍉", "", "careless negligent"]) + let v = native_list_append(v, ["𐌿𐌽𐌺𐌰𐍂𐌾𐌰𐌽𐍃", "adj", "𐌿𐌽𐌺𐌰𐍂𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐌰", "adj", "𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐌰", "", "𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐍉", "", "blameless"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌰", "adj", "𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌰", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌿𐌽𐍈𐌴𐌹𐌻𐌰", "adj", "𐌿𐌽𐍈𐌴𐌹𐌻𐌰", "", "𐌿𐌽𐍈𐌴𐌹𐌻𐍉", "", "ceaseless"]) + let v = native_list_append(v, ["𐌿𐌽𐍈𐌴𐌹𐌻𐍉", "adj", "𐌿𐌽𐍈𐌴𐌹𐌻𐍉", "", "", "", "inflection of 𐌿𐌽𐍈𐌴𐌹𐌻𐌰"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐌰", "adj", "𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐌰", "", "𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐍉", "", "blameless"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌰", "adj", "𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌽𐌰", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐌰𐌽𐍃", "adj", "𐌿𐍃𐍆𐌰𐌹𐍂𐌹𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐍃𐌲𐍂𐌿𐌳𐌾𐌰", "adj", "𐌿𐍃𐌲𐍂𐌿𐌳𐌾𐌰", "", "𐌿𐍃𐌲𐍂𐌿𐌳𐌾𐍉", "", "exhausted faint weary"]) + let v = native_list_append(v, ["𐌿𐍃𐌲𐍂𐌿𐌳𐌾𐌰𐌽𐍃", "adj", "𐌿𐍃𐌲𐍂𐌿𐌳𐌾𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐍃𐌷𐌰𐌹𐍃𐍄𐌰", "adj", "𐌿𐍃𐌷𐌰𐌹𐍃𐍄𐌰", "", "𐌿𐍃𐌷𐌰𐌹𐍃𐍄𐍉", "", "needy wanting lacking"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌴𐌽𐌰", "adj", "𐌿𐍃𐍅𐌴𐌽𐌰", "", "𐌿𐍃𐍅𐌴𐌽𐍉", "", "without hope despairing"]) + let v = native_list_append(v, ["𐌿𐍃𐍅𐌴𐌽𐌰𐌽𐍃", "adj", "𐌿𐍃𐍅𐌴𐌽𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐍅𐌰𐌹𐍂𐌷𐌰𐌹", "adj", "𐌸𐍅𐌰𐌹𐍂𐌷𐌰𐌹", "", "", "", "inflection of 𐌸𐍅𐌰𐌹𐍂𐌷𐍃"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐌹𐌿𐌲", "adj", "𐌿𐌷𐍄𐌹𐌿𐌲", "", "", "", "strong nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐌹𐌸𐌴𐌹𐍃", "adj", "𐌿𐍆𐌰𐌹𐌸𐌴𐌹𐍃", "", "𐌿𐍆𐌰𐌹𐌸𐌹", "", "bound by an"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐌹𐌸𐌾𐌰𐌹", "adj", "𐌿𐍆𐌰𐌹𐌸𐌾𐌰𐌹", "", "", "", "inflection of 𐌿𐍆𐌰𐌹𐌸𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐍃", "adj", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐍃", "", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐌰", "", "patient long-suffering"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐌰", "adj", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐌰", "", "", "", "inflection of 𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐌰𐌹", "adj", "𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐌰𐌹", "", "", "", "inflection of 𐌿𐍃𐌱𐌴𐌹𐍃𐌽𐌴𐌹𐌲𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌿𐍂𐍃", "adj", "𐌿𐌽𐍆𐌰𐌿𐍂𐍃", "", "𐌿𐌽𐍆𐌰𐌿𐍂𐌾𐌰", "", "gossipy tattling"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌿𐍂𐌾𐍉𐍃", "adj", "𐌿𐌽𐍆𐌰𐌿𐍂𐌾𐍉𐍃", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌹𐌷𐌹𐍃", "adj", "𐌸𐌰𐍂𐌹𐌷𐌹𐍃", "", "", "", "strong genitive masculine/neuter"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌹𐌷𐍃", "adj", "𐌸𐌰𐍂𐌹𐌷𐍃", "", "𐌸𐌰𐍂𐌹𐌷𐌰", "", "unprocessed unrefined new"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐍅𐌰𐌷𐌰𐌽𐍃", "adj", "𐌿𐌽𐌸𐍅𐌰𐌷𐌰𐌽𐍃", "", "𐌿𐌽𐌸𐍅𐌰𐌷𐌰𐌽𐌰", "", "unwashed"]) + let v = native_list_append(v, ["𐌿𐌽𐌸𐍅𐌰𐌷𐌰𐌽𐌰𐌹𐌼", "adj", "𐌿𐌽𐌸𐍅𐌰𐌷𐌰𐌽𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍃", "adj", "𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐌶𐌰", "", "𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰", "", "unknown not well"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐌶𐌰", "adj", "𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐌶𐌰", "", "𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐌶𐌴𐌹", "", "comparative degree of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐌶𐌴𐌹", "adj", "𐌿𐌽𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐍉𐌶𐌴𐌹", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐍃", "adj", "𐌿𐌽𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐍃", "", "𐌿𐌽𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐌰", "", "idle averse to"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐍉𐌽𐍃", "adj", "𐌿𐌽𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐍉𐌽𐍃", "", "", "", "inflection of 𐌿𐌽𐍅𐌰𐌿𐍂𐍃𐍄𐍅𐍃"]) + let v = native_list_append(v, ["𐌿𐍃𐌰𐌻𐌸𐌰𐌽𐍃", "adj", "𐌿𐍃𐌰𐌻𐌸𐌰𐌽𐍃", "", "𐌿𐍃𐌰𐌻𐌸𐌰𐌽𐌰", "", "outdated old-fashioned"]) + let v = native_list_append(v, ["𐌿𐍃𐌰𐌻𐌸𐌰𐌽𐌰𐌹𐌶𐍉", "adj", "𐌿𐍃𐌰𐌻𐌸𐌰𐌽𐌰𐌹𐌶𐍉", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰𐌹𐌼", "adj", "𐌸𐌹𐌿𐌸𐌴𐌹𐌲𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌿𐌲𐌺𐍃", "adj", "𐌿𐍂𐍂𐌿𐌲𐌺𐍃", "", "𐌿𐍂𐍂𐌿𐌲𐌺𐌰", "", "outcast? reprobate? depraved?"]) + let v = native_list_append(v, ["𐌿𐍂𐍂𐌿𐌲𐌺𐌰𐌹", "adj", "𐌿𐍂𐍂𐌿𐌲𐌺𐌰𐌹", "", "", "", "inflection of 𐌿𐍂𐍂𐌿𐌲𐌺𐍃"]) + let v = native_list_append(v, ["𐌰𐍆𐌲𐌿𐌳𐌰𐌹𐌼", "adj", "𐌰𐍆𐌲𐌿𐌳𐌰𐌹𐌼", "", "", "", "strong dative masculine/feminine/neuter"]) + let v = native_list_append(v, ["𐌲𐌰𐌳𐍉𐍆𐍃", "adj", "𐌲𐌰𐌳𐍉𐍆𐍃", "", "𐌲𐌰𐌳𐍉𐌱𐌾𐌰", "", "proper becoming seemly"]) + let v = native_list_append(v, ["𐌰𐌾𐌿𐌺𐍃", "adj", "𐌰𐌾𐌿𐌺𐍃", "", "𐌰𐌾𐌿𐌺𐌾𐌰", "", "eternal"]) + let v = native_list_append(v, ["f", "other", "f", "", "", "", "romanization of 𐍆"]) + let v = native_list_append(v, ["fa", "other", "fa", "", "", "", "romanization of 𐍆𐌰"]) + let v = native_list_append(v, ["abba", "other", "abba", "", "", "", "romanization of 𐌰𐌱𐌱𐌰"]) + let v = native_list_append(v, ["nu", "other", "nu", "", "", "", "romanization of 𐌽𐌿"]) + let v = native_list_append(v, ["ik", "other", "ik", "", "", "", "romanization of 𐌹𐌺"]) + let v = native_list_append(v, ["in", "other", "in", "", "", "", "romanization of 𐌹𐌽"]) + let v = native_list_append(v, ["o", "other", "o", "", "", "", "romanization of 𐍉"]) + let v = native_list_append(v, ["i", "other", "i", "", "", "", "romanization of 𐌹"]) + let v = native_list_append(v, ["mann", "other", "mann", "", "", "", "romanization of 𐌼𐌰𐌽𐌽"]) + let v = native_list_append(v, ["man", "other", "man", "", "", "", "romanization of 𐌼𐌰𐌽"]) + let v = native_list_append(v, ["is", "other", "is", "", "", "", "romanization of 𐌹𐍃"]) + let v = native_list_append(v, ["hund", "other", "hund", "", "", "", "romanization of 𐌷𐌿𐌽𐌳"]) + let v = native_list_append(v, ["and", "other", "and", "", "", "", "romanization of 𐌰𐌽𐌳"]) + let v = native_list_append(v, ["fero", "other", "fero", "", "", "", "romanization of 𐍆𐌴𐍂𐍉"]) + let v = native_list_append(v, ["stand", "other", "stand", "", "", "", "romanization of 𐍃𐍄𐌰𐌽𐌳"]) + let v = native_list_append(v, ["at", "other", "at", "", "", "", "romanization of 𐌰𐍄"]) + let v = native_list_append(v, ["an", "other", "an", "", "", "", "romanization of 𐌰𐌽"]) + let v = native_list_append(v, ["his", "other", "his", "", "", "", "romanization of *𐌷𐌹𐍃"]) + let v = native_list_append(v, ["her", "other", "her", "", "", "", "romanization of 𐌷𐌴𐍂"]) + let v = native_list_append(v, ["air", "other", "air", "", "", "", "romanization of 𐌰𐌹𐍂"]) + let v = native_list_append(v, ["all", "other", "all", "", "", "", "romanization of 𐌰𐌻𐌻"]) + let v = native_list_append(v, ["was", "other", "was", "", "", "", "romanization of 𐍅𐌰𐍃"]) + let v = native_list_append(v, ["jah", "other", "jah", "", "", "", "romanization of 𐌾𐌰𐌷"]) + let v = native_list_append(v, ["god", "other", "god", "", "", "", "romanization of 𐌲𐍉𐌳"]) + let v = native_list_append(v, ["ans", "other", "ans", "", "", "", "romanization of 𐌰𐌽𐍃"]) + let v = native_list_append(v, ["ba", "other", "ba", "", "", "", "romanization of 𐌱𐌰"]) + let v = native_list_append(v, ["bad", "other", "bad", "", "", "", "romanization of 𐌱𐌰𐌳"]) + let v = native_list_append(v, ["bai", "other", "bai", "", "", "", "romanization of 𐌱𐌰𐌹"]) + let v = native_list_append(v, ["so", "other", "so", "", "", "", "romanization of 𐍃𐍉"]) + let v = native_list_append(v, ["us", "other", "us", "", "", "", "romanization of 𐌿𐍃"]) + let v = native_list_append(v, ["plata", "other", "plata", "", "", "", "romanization of 𐍀𐌻𐌰𐍄𐌰"]) + let v = native_list_append(v, ["kara", "other", "kara", "", "", "", "romanization of 𐌺𐌰𐍂𐌰"]) + let v = native_list_append(v, ["sama", "other", "sama", "", "", "", "romanization of 𐍃𐌰𐌼𐌰"]) + let v = native_list_append(v, ["braid", "other", "braid", "", "", "", "romanization of 𐌱𐍂𐌰𐌹𐌳"]) + let v = native_list_append(v, ["let", "other", "let", "", "", "", "romanization of 𐌻𐌴𐍄"]) + let v = native_list_append(v, ["run", "other", "run", "", "", "", "romanization of 𐍂𐌿𐌽"]) + let v = native_list_append(v, ["sit", "other", "sit", "", "", "", "romanization of 𐍃𐌹𐍄"]) + let v = native_list_append(v, ["sat", "other", "sat", "", "", "", "romanization of 𐍃𐌰𐍄"]) + let v = native_list_append(v, ["swam", "other", "swam", "", "", "", "romanization of 𐍃𐍅𐌰𐌼"]) + let v = native_list_append(v, ["bi", "other", "bi", "", "", "", "romanization of 𐌱𐌹"]) + let v = native_list_append(v, ["du", "other", "du", "", "", "", "romanization of 𐌳𐌿"]) + let v = native_list_append(v, ["salt", "other", "salt", "", "", "", "romanization of 𐍃𐌰𐌻𐍄"]) + let v = native_list_append(v, ["e", "other", "e", "", "", "", "romanization of 𐌴"]) + let v = native_list_append(v, ["b", "other", "b", "", "", "", "romanization of 𐌱"]) + let v = native_list_append(v, ["d", "other", "d", "", "", "", "romanization of 𐌳"]) + let v = native_list_append(v, ["g", "other", "g", "", "", "", "romanization of 𐌲"]) + let v = native_list_append(v, ["h", "other", "h", "", "", "", "romanization of 𐌷"]) + let v = native_list_append(v, ["j", "other", "j", "", "", "", "romanization of 𐌾"]) + let v = native_list_append(v, ["k", "other", "k", "", "", "", "romanization of 𐌺"]) + let v = native_list_append(v, ["l", "other", "l", "", "", "", "romanization of 𐌻"]) + let v = native_list_append(v, ["m", "other", "m", "", "", "", "romanization of 𐌼"]) + let v = native_list_append(v, ["n", "other", "n", "", "", "", "romanization of 𐌽"]) + let v = native_list_append(v, ["p", "other", "p", "", "", "", "romanization of 𐍀"]) + let v = native_list_append(v, ["q", "other", "q", "", "", "", "romanization of 𐌵"]) + let v = native_list_append(v, ["r", "other", "r", "", "", "", "romanization of 𐍂"]) + let v = native_list_append(v, ["s", "other", "s", "", "", "", "romanization of 𐍃"]) + let v = native_list_append(v, ["t", "other", "t", "", "", "", "romanization of 𐍄"]) + let v = native_list_append(v, ["u", "other", "u", "", "", "", "romanization of 𐌿"]) + let v = native_list_append(v, ["w", "other", "w", "", "", "", "romanization of 𐍅"]) + let v = native_list_append(v, ["z", "other", "z", "", "", "", "romanization of 𐌶"]) + let v = native_list_append(v, ["las", "other", "las", "", "", "", "romanization of 𐌻𐌰𐍃"]) + let v = native_list_append(v, ["aha", "other", "aha", "", "", "", "romanization of 𐌰𐌷𐌰"]) + let v = native_list_append(v, ["ni", "other", "ni", "", "", "", "romanization of 𐌽𐌹"]) + let v = native_list_append(v, ["sei", "other", "sei", "", "", "", "romanization of 𐍃𐌴𐌹"]) + let v = native_list_append(v, ["mela", "other", "mela", "", "", "", "romanization of 𐌼𐌴𐌻𐌰"]) + let v = native_list_append(v, ["dag", "other", "dag", "", "", "", "romanization of 𐌳𐌰𐌲"]) + let v = native_list_append(v, ["dal", "other", "dal", "", "", "", "romanization of 𐌳𐌰𐌻"]) + let v = native_list_append(v, ["un-", "other", "un-", "", "", "", "romanization of 𐌿𐌽-"]) + let v = native_list_append(v, ["ne", "other", "ne", "", "", "", "romanization of 𐌽𐌴"]) + let v = native_list_append(v, ["si", "other", "si", "", "", "", "romanization of 𐍃𐌹"]) + let v = native_list_append(v, ["wan", "other", "wan", "", "", "", "romanization of 𐍅𐌰𐌽"]) + let v = native_list_append(v, ["laus", "other", "laus", "", "", "", "romanization of 𐌻𐌰𐌿𐍃"]) + let v = native_list_append(v, ["gras", "other", "gras", "", "", "", "romanization of 𐌲𐍂𐌰𐍃"]) + let v = native_list_append(v, ["ei", "other", "ei", "", "", "", "romanization of 𐌴𐌹"]) + let v = native_list_append(v, ["mate", "other", "mate", "", "", "", "romanization of 𐌼𐌰𐍄𐌴"]) + let v = native_list_append(v, ["waist", "other", "waist", "", "", "", "romanization of 𐍅𐌰𐌹𐍃𐍄"]) + let v = native_list_append(v, ["mail", "other", "mail", "", "", "", "romanization of 𐌼𐌰𐌹𐌻"]) + let v = native_list_append(v, ["bar", "other", "bar", "", "", "", "romanization of 𐌱𐌰𐍂"]) + let v = native_list_append(v, ["fan", "other", "fan", "", "", "", "romanization of 𐍆𐌰𐌽"]) + let v = native_list_append(v, ["in-", "other", "in-", "", "", "", "romanization of 𐌹𐌽-"]) + let v = native_list_append(v, ["banjo", "other", "banjo", "", "", "", "romanization of 𐌱𐌰𐌽𐌾𐍉"]) + let v = native_list_append(v, ["banjos", "other", "banjos", "", "", "", "romanization of 𐌱𐌰𐌽𐌾𐍉𐍃"]) + let v = native_list_append(v, ["grid", "other", "grid", "", "", "", "romanization of 𐌲𐍂𐌹𐌳"]) + let v = native_list_append(v, ["land", "other", "land", "", "", "", "romanization of 𐌻𐌰𐌽𐌳"]) + let v = native_list_append(v, ["lewa", "other", "lewa", "", "", "", "romanization of 𐌻𐌴𐍅𐌰"]) + let v = native_list_append(v, ["papa", "other", "papa", "", "", "", "romanization of 𐍀𐌰𐍀𐌰"]) + let v = native_list_append(v, ["sein", "other", "sein", "", "", "", "romanization of 𐍃𐌴𐌹𐌽"]) + let v = native_list_append(v, ["gast", "other", "gast", "", "", "", "romanization of 𐌲𐌰𐍃𐍄"]) + let v = native_list_append(v, ["sum", "other", "sum", "", "", "", "romanization of 𐍃𐌿𐌼"]) + let v = native_list_append(v, ["wen", "other", "wen", "", "", "", "romanization of 𐍅𐌴𐌽"]) + let v = native_list_append(v, ["soh", "other", "soh", "", "", "", "romanization of 𐍃𐍉𐌷"]) + let v = native_list_append(v, ["ja", "other", "ja", "", "", "", "romanization of 𐌾𐌰"]) + let v = native_list_append(v, ["arma", "other", "arma", "", "", "", "romanization of 𐌰𐍂𐌼𐌰"]) + let v = native_list_append(v, ["wit", "other", "wit", "", "", "", "romanization of 𐍅𐌹𐍄"]) + let v = native_list_append(v, ["lamb", "other", "lamb", "", "", "", "romanization of 𐌻𐌰𐌼𐌱"]) + let v = native_list_append(v, ["sik", "other", "sik", "", "", "", "romanization of 𐍃𐌹𐌺"]) + let v = native_list_append(v, ["mik", "other", "mik", "", "", "", "romanization of 𐌼𐌹𐌺"]) + let v = native_list_append(v, ["dom", "other", "dom", "", "", "", "romanization of 𐌳𐍉𐌼"]) + let v = native_list_append(v, ["stol", "other", "stol", "", "", "", "romanization of 𐍃𐍄𐍉𐌻"]) + let v = native_list_append(v, ["barn", "other", "barn", "", "", "", "romanization of 𐌱𐌰𐍂𐌽"]) + let v = native_list_append(v, ["nei", "other", "nei", "", "", "", "romanization of 𐌽𐌴𐌹"]) + let v = native_list_append(v, ["amen", "other", "amen", "", "", "", "romanization of 𐌰𐌼𐌴𐌽"]) + let v = native_list_append(v, ["abu", "other", "abu", "", "", "", "romanization of 𐌰𐌱𐌿"]) + let v = native_list_append(v, ["farao", "other", "farao", "", "", "", "romanization of 𐍆𐌰𐍂𐌰𐍉"]) + let v = native_list_append(v, ["hunds", "other", "hunds", "", "", "", "romanization of 𐌷𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["bi-", "other", "bi-", "", "", "", "romanization of 𐌱𐌹-"]) + let v = native_list_append(v, ["agustus", "other", "agustus", "", "", "", "romanization of 𐌰𐌲𐌿𐍃𐍄𐌿𐍃"]) + let v = native_list_append(v, ["sa", "other", "sa", "", "", "", "romanization of 𐍃𐌰"]) + let v = native_list_append(v, ["sabbato", "other", "sabbato", "", "", "", "romanization of 𐍃𐌰𐌱𐌱𐌰𐍄𐍉"]) + let v = native_list_append(v, ["sai", "other", "sai", "", "", "", "romanization of 𐍃𐌰𐌹"]) + let v = native_list_append(v, ["ruma", "other", "ruma", "", "", "", "romanization of 𐍂𐌿𐌼𐌰"]) + let v = native_list_append(v, ["sad", "other", "sad", "", "", "", "romanization of 𐍃𐌰𐌳"]) + let v = native_list_append(v, ["trigon", "other", "trigon", "", "", "", "romanization of 𐍄𐍂𐌹𐌲𐍉𐌽"]) + let v = native_list_append(v, ["und", "other", "und", "", "", "", "romanization of 𐌿𐌽𐌳"]) + let v = native_list_append(v, ["dis-", "other", "dis-", "", "", "", "romanization of 𐌳𐌹𐍃-"]) + let v = native_list_append(v, ["luk", "other", "luk", "", "", "", "romanization of 𐌻𐌿𐌺"]) + let v = native_list_append(v, ["inu", "other", "inu", "", "", "", "romanization of 𐌹𐌽𐌿"]) + let v = native_list_append(v, ["fin", "other", "fin", "", "", "", "romanization of 𐍆𐌹𐌽"]) + let v = native_list_append(v, ["mesa", "other", "mesa", "", "", "", "romanization of 𐌼𐌴𐍃𐌰"]) + let v = native_list_append(v, ["wait", "other", "wait", "", "", "", "romanization of 𐍅𐌰𐌹𐍄"]) + let v = native_list_append(v, ["dale", "other", "dale", "", "", "", "romanization of 𐌳𐌰𐌻𐌴"]) + let v = native_list_append(v, ["magus", "other", "magus", "", "", "", "romanization of 𐌼𐌰𐌲𐌿𐍃"]) + let v = native_list_append(v, ["stain", "other", "stain", "", "", "", "romanization of 𐍃𐍄𐌰𐌹𐌽"]) + let v = native_list_append(v, ["baud", "other", "baud", "", "", "", "romanization of 𐌱𐌰𐌿𐌳"]) + let v = native_list_append(v, ["ut", "other", "ut", "", "", "", "romanization of 𐌿𐍄"]) + let v = native_list_append(v, ["aba", "other", "aba", "", "", "", "romanization of 𐌰𐌱𐌰"]) + let v = native_list_append(v, ["wai", "other", "wai", "", "", "", "romanization of 𐍅𐌰𐌹"]) + let v = native_list_append(v, ["mel", "other", "mel", "", "", "", "romanization of 𐌼𐌴𐌻"]) + let v = native_list_append(v, ["inn", "other", "inn", "", "", "", "romanization of 𐌹𐌽𐌽"]) + let v = native_list_append(v, ["anno", "other", "anno", "", "", "", "romanization of 𐌰𐌽𐌽𐍉"]) + let v = native_list_append(v, ["anna", "other", "anna", "", "", "", "romanization of 𐌰𐌽𐌽𐌰"]) + let v = native_list_append(v, ["jus", "other", "jus", "", "", "", "romanization of 𐌾𐌿𐍃"]) + let v = native_list_append(v, ["guma", "other", "guma", "", "", "", "romanization of 𐌲𐌿𐌼𐌰"]) + let v = native_list_append(v, ["mes", "other", "mes", "", "", "", "romanization of 𐌼𐌴𐍃"]) + let v = native_list_append(v, ["mag", "other", "mag", "", "", "", "romanization of 𐌼𐌰𐌲"]) + let v = native_list_append(v, ["-a", "other", "-a", "", "", "", "romanization of -𐌰"]) + let v = native_list_append(v, ["mat", "other", "mat", "", "", "", "romanization of 𐌼𐌰𐍄"]) + let v = native_list_append(v, ["plat", "other", "plat", "", "", "", "romanization of 𐍀𐌻𐌰𐍄"]) + let v = native_list_append(v, ["sidus", "other", "sidus", "", "", "", "romanization of 𐍃𐌹𐌳𐌿𐍃"]) + let v = native_list_append(v, ["sniwan", "other", "sniwan", "", "", "", "romanization of 𐍃𐌽𐌹𐍅𐌰𐌽"]) + let v = native_list_append(v, ["þ", "other", "þ", "", "", "", "romanization of 𐌸"]) + let v = native_list_append(v, ["ƕ", "other", "ƕ", "", "", "", "a letter used"]) + let v = native_list_append(v, ["𐍈", "other", "𐍈", "", "", "", "The twenty-fifth letter"]) + let v = native_list_append(v, ["𐌰", "other", "𐌰", "", "", "", "The first letter"]) + let v = native_list_append(v, ["lima", "other", "lima", "", "", "", "romanization of 𐌻𐌹𐌼𐌰"]) + let v = native_list_append(v, ["qen", "other", "qen", "", "", "", "romanization of 𐌵𐌴𐌽"]) + let v = native_list_append(v, ["barm", "other", "barm", "", "", "", "romanization of 𐌱𐌰𐍂𐌼"]) + let v = native_list_append(v, ["-u", "other", "-u", "", "", "", "romanization of -𐌿"]) + let v = native_list_append(v, ["ita", "other", "ita", "", "", "", "romanization of 𐌹𐍄𐌰"]) + let v = native_list_append(v, ["wast", "other", "wast", "", "", "", "romanization of 𐍅𐌰𐍃𐍄"]) + let v = native_list_append(v, ["wig", "other", "wig", "", "", "", "romanization of 𐍅𐌹𐌲"]) + let v = native_list_append(v, ["þe", "other", "þe", "", "", "", "romanization of 𐌸𐌴"]) + let v = native_list_append(v, ["-ja", "other", "-ja", "", "", "", "romanization of -𐌾𐌰"]) + let v = native_list_append(v, ["-on", "other", "-on", "", "", "", "romanization of -𐍉𐌽"]) + let v = native_list_append(v, ["lag", "other", "lag", "", "", "", "romanization of 𐌻𐌰𐌲"]) + let v = native_list_append(v, ["hals", "other", "hals", "", "", "", "romanization of 𐌷𐌰𐌻𐍃"]) + let v = native_list_append(v, ["-o", "other", "-o", "", "", "", "romanization of -𐍉"]) + let v = native_list_append(v, ["alan", "other", "alan", "", "", "", "romanization of 𐌰𐌻𐌰𐌽"]) + let v = native_list_append(v, ["ana", "other", "ana", "", "", "", "romanization of 𐌰𐌽𐌰"]) + let v = native_list_append(v, ["auk", "other", "auk", "", "", "", "romanization of 𐌰𐌿𐌺"]) + let v = native_list_append(v, ["twa", "other", "twa", "", "", "", "romanization of 𐍄𐍅𐌰"]) + let v = native_list_append(v, ["wadi", "other", "wadi", "", "", "", "romanization of 𐍅𐌰𐌳𐌹"]) + let v = native_list_append(v, ["fret", "other", "fret", "", "", "", "romanization of 𐍆𐍂𐌴𐍄"]) + let v = native_list_append(v, ["ist", "other", "ist", "", "", "", "romanization of 𐌹𐍃𐍄"]) + let v = native_list_append(v, ["trigo", "other", "trigo", "", "", "", "romanization of 𐍄𐍂𐌹𐌲𐍉"]) + let v = native_list_append(v, ["magi", "other", "magi", "", "", "", "romanization of 𐌼𐌰𐌲𐌹"]) + let v = native_list_append(v, ["tewa", "other", "tewa", "", "", "", "romanization of 𐍄𐌴𐍅𐌰"]) + let v = native_list_append(v, ["alla", "other", "alla", "", "", "", "romanization of 𐌰𐌻𐌻𐌰"]) + let v = native_list_append(v, ["rum", "other", "rum", "", "", "", "romanization of 𐍂𐌿𐌼"]) + let v = native_list_append(v, ["reiki", "other", "reiki", "", "", "", "romanization of 𐍂𐌴𐌹𐌺𐌹"]) + let v = native_list_append(v, ["mauja", "other", "mauja", "", "", "", "romanization of 𐌼𐌰𐌿𐌾𐌰"]) + let v = native_list_append(v, ["stad", "other", "stad", "", "", "", "romanization of 𐍃𐍄𐌰𐌳"]) + let v = native_list_append(v, ["garda", "other", "garda", "", "", "", "romanization of 𐌲𐌰𐍂𐌳𐌰"]) + let v = native_list_append(v, ["mis", "other", "mis", "", "", "", "romanization of 𐌼𐌹𐍃"]) + let v = native_list_append(v, ["stoma", "other", "stoma", "", "", "", "romanization of 𐍃𐍄𐍉𐌼𐌰"]) + let v = native_list_append(v, ["aglo", "other", "aglo", "", "", "", "romanization of 𐌰𐌲𐌻𐍉"]) + let v = native_list_append(v, ["akra", "other", "akra", "", "", "", "romanization of 𐌰𐌺𐍂𐌰"]) + let v = native_list_append(v, ["gard", "other", "gard", "", "", "", "romanization of 𐌲𐌰𐍂𐌳"]) + let v = native_list_append(v, ["-i", "other", "-i", "", "", "", "romanization of -𐌹"]) + let v = native_list_append(v, ["blinda", "other", "blinda", "", "", "", "romanization of 𐌱𐌻𐌹𐌽𐌳𐌰"]) + let v = native_list_append(v, ["boto", "other", "boto", "", "", "", "romanization of 𐌱𐍉𐍄𐍉"]) + let v = native_list_append(v, ["runs", "other", "runs", "", "", "", "romanization of 𐍂𐌿𐌽𐍃"]) + let v = native_list_append(v, ["skip", "other", "skip", "", "", "", "romanization of 𐍃𐌺𐌹𐍀"]) + let v = native_list_append(v, ["gods", "other", "gods", "", "", "", "romanization of 𐌲𐍉𐌳𐍃"]) + let v = native_list_append(v, ["sind", "other", "sind", "", "", "", "romanization of 𐍃𐌹𐌽𐌳"]) + let v = native_list_append(v, ["mais", "other", "mais", "", "", "", "romanization of 𐌼𐌰𐌹𐍃"]) + let v = native_list_append(v, ["malo", "other", "malo", "", "", "", "romanization of 𐌼𐌰𐌻𐍉"]) + let v = native_list_append(v, ["writ", "other", "writ", "", "", "", "romanization of 𐍅𐍂𐌹𐍄"]) + let v = native_list_append(v, ["spill", "other", "spill", "", "", "", "romanization of 𐍃𐍀𐌹𐌻𐌻"]) + let v = native_list_append(v, ["mata", "other", "mata", "", "", "", "romanization of 𐌼𐌰𐍄𐌰"]) + let v = native_list_append(v, ["swart", "other", "swart", "", "", "", "romanization of 𐍃𐍅𐌰𐍂𐍄"]) + let v = native_list_append(v, ["sabana", "other", "sabana", "", "", "", "romanization of 𐍃𐌰𐌱𐌰𐌽𐌰"]) + let v = native_list_append(v, ["jota", "other", "jota", "", "", "", "romanization of 𐌾𐍉𐍄𐌰"]) + let v = native_list_append(v, ["hais", "other", "hais", "", "", "", "romanization of 𐌷𐌰𐌹𐍃"]) + let v = native_list_append(v, ["hait", "other", "hait", "", "", "", "romanization of 𐌷𐌰𐌹𐍄"]) + let v = native_list_append(v, ["ius", "other", "ius", "", "", "", "romanization of 𐌹𐌿𐍃"]) + let v = native_list_append(v, ["als", "other", "als", "", "", "", "romanization of 𐌰𐌻𐍃"]) + let v = native_list_append(v, ["sair", "other", "sair", "", "", "", "romanization of 𐍃𐌰𐌹𐍂"]) + let v = native_list_append(v, ["Ƕ", "other", "Ƕ", "", "", "", "a letter used"]) + let v = native_list_append(v, ["israel", "other", "israel", "", "", "", "romanization of 𐌹𐍃𐍂𐌰𐌴𐌻"]) + let v = native_list_append(v, ["fula", "other", "fula", "", "", "", "romanization of 𐍆𐌿𐌻𐌰"]) + let v = native_list_append(v, ["afar", "other", "afar", "", "", "", "romanization of 𐌰𐍆𐌰𐍂"]) + let v = native_list_append(v, ["maria", "other", "maria", "", "", "", "romanization of 𐌼𐌰𐍂𐌹𐌰"]) + let v = native_list_append(v, ["daniel", "other", "daniel", "", "", "", "romanization of 𐌳𐌰𐌽𐌹𐌴𐌻"]) + let v = native_list_append(v, ["adam", "other", "adam", "", "", "", "romanization of 𐌰𐌳𐌰𐌼"]) + let v = native_list_append(v, ["xu", "other", "xu", "", "", "", "romanization of 𐍇𐌿"]) + let v = native_list_append(v, ["asia", "other", "asia", "", "", "", "romanization of 𐌰𐍃𐌹𐌰"]) + let v = native_list_append(v, ["matins", "other", "matins", "", "", "", "romanization of 𐌼𐌰𐍄𐌹𐌽𐍃"]) + let v = native_list_append(v, ["muna", "other", "muna", "", "", "", "romanization of 𐌼𐌿𐌽𐌰"]) + let v = native_list_append(v, ["sada", "other", "sada", "", "", "", "romanization of 𐍃𐌰𐌳𐌰"]) + let v = native_list_append(v, ["ara", "other", "ara", "", "", "", "romanization of 𐌰𐍂𐌰"]) + let v = native_list_append(v, ["suns", "other", "suns", "", "", "", "romanization of 𐍃𐌿𐌽𐍃"]) + let v = native_list_append(v, ["sah", "other", "sah", "", "", "", "romanization of 𐍃𐌰𐌷"]) + let v = native_list_append(v, ["mun", "other", "mun", "", "", "", "romanization of 𐌼𐌿𐌽"]) + let v = native_list_append(v, ["sau", "other", "sau", "", "", "", "romanization of 𐍃𐌰𐌿"]) + let v = native_list_append(v, ["ahma", "other", "ahma", "", "", "", "romanization of 𐌰𐌷𐌼𐌰"]) + let v = native_list_append(v, ["nam", "other", "nam", "", "", "", "romanization of 𐌽𐌰𐌼"]) + let v = native_list_append(v, ["uns", "other", "uns", "", "", "", "romanization of 𐌿𐌽𐍃"]) + let v = native_list_append(v, ["iu", "other", "iu", "", "", "", "romanization of 𐌹𐌿"]) + let v = native_list_append(v, ["winds", "other", "winds", "", "", "", "romanization of 𐍅𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["eis", "other", "eis", "", "", "", "romanization of 𐌴𐌹𐍃"]) + let v = native_list_append(v, ["wein", "other", "wein", "", "", "", "romanization of 𐍅𐌴𐌹𐌽"]) + let v = native_list_append(v, ["mota", "other", "mota", "", "", "", "romanization of 𐌼𐍉𐍄𐌰"]) + let v = native_list_append(v, ["jai", "other", "jai", "", "", "", "romanization of 𐌾𐌰𐌹"]) + let v = native_list_append(v, ["twos", "other", "twos", "", "", "", "romanization of 𐍄𐍅𐍉𐍃"]) + let v = native_list_append(v, ["ferja", "other", "ferja", "", "", "", "romanization of 𐍆𐌴𐍂𐌾𐌰"]) + let v = native_list_append(v, ["mein", "other", "mein", "", "", "", "romanization of 𐌼𐌴𐌹𐌽"]) + let v = native_list_append(v, ["nota", "other", "nota", "", "", "", "romanization of 𐌽𐍉𐍄𐌰"]) + let v = native_list_append(v, ["og", "other", "og", "", "", "", "romanization of 𐍉𐌲"]) + let v = native_list_append(v, ["skilja", "other", "skilja", "", "", "", "romanization of 𐍃𐌺𐌹𐌻𐌾𐌰"]) + let v = native_list_append(v, ["smakka", "other", "smakka", "", "", "", "romanization of 𐍃𐌼𐌰𐌺𐌺𐌰"]) + let v = native_list_append(v, ["til", "other", "til", "", "", "", "romanization of 𐍄𐌹𐌻"]) + let v = native_list_append(v, ["þau", "other", "þau", "", "", "", "romanization of 𐌸𐌰𐌿"]) + let v = native_list_append(v, ["þar", "other", "þar", "", "", "", "romanization of 𐌸𐌰𐍂"]) + let v = native_list_append(v, ["leika", "other", "leika", "", "", "", "romanization of 𐌻𐌴𐌹𐌺𐌰"]) + let v = native_list_append(v, ["guþ", "other", "guþ", "", "", "", "romanization of 𐌲𐌿𐌸"]) + let v = native_list_append(v, ["niman", "other", "niman", "", "", "", "romanization of 𐌽𐌹𐌼𐌰𐌽"]) + let v = native_list_append(v, ["bindan", "other", "bindan", "", "", "", "romanization of 𐌱𐌹𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["standan", "other", "standan", "", "", "", "romanization of 𐍃𐍄𐌰𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["ain", "other", "ain", "", "", "", "romanization of 𐌰𐌹𐌽"]) + let v = native_list_append(v, ["ald", "other", "ald", "", "", "", "romanization of 𐌰𐌻𐌳"]) + let v = native_list_append(v, ["bruk", "other", "bruk", "", "", "", "romanization of 𐌱𐍂𐌿𐌺"]) + let v = native_list_append(v, ["hors", "other", "hors", "", "", "", "romanization of 𐌷𐍉𐍂𐍃"]) + let v = native_list_append(v, ["maþa", "other", "maþa", "", "", "", "romanization of 𐌼𐌰𐌸𐌰"]) + let v = native_list_append(v, ["fon", "other", "fon", "", "", "", "romanization of 𐍆𐍉𐌽"]) + let v = native_list_append(v, ["hatan", "other", "hatan", "", "", "", "romanization of 𐌷𐌰𐍄𐌰𐌽"]) + let v = native_list_append(v, ["sums", "other", "sums", "", "", "", "romanization of 𐍃𐌿𐌼𐍃"]) + let v = native_list_append(v, ["-þ", "other", "-þ", "", "", "", "romanization of -𐌸"]) + let v = native_list_append(v, ["sunu", "other", "sunu", "", "", "", "romanization of 𐍃𐌿𐌽𐌿"]) + let v = native_list_append(v, ["af", "other", "af", "", "", "", "romanization of 𐌰𐍆"]) + let v = native_list_append(v, ["gild", "other", "gild", "", "", "", "romanization of 𐌲𐌹𐌻𐌳"]) + let v = native_list_append(v, ["kant", "other", "kant", "", "", "", "romanization of 𐌺𐌰𐌽𐍄"]) + let v = native_list_append(v, ["ins", "other", "ins", "", "", "", "romanization of 𐌹𐌽𐍃"]) + let v = native_list_append(v, ["spille", "other", "spille", "", "", "", "romanization of 𐍃𐍀𐌹𐌻𐌻𐌴"]) + let v = native_list_append(v, ["im", "other", "im", "", "", "", "romanization of 𐌹𐌼"]) + let v = native_list_append(v, ["wulf", "other", "wulf", "", "", "", "romanization of 𐍅𐌿𐌻𐍆"]) + let v = native_list_append(v, ["mans", "other", "mans", "", "", "", "romanization of 𐌼𐌰𐌽𐍃"]) + let v = native_list_append(v, ["salida", "other", "salida", "", "", "", "romanization of 𐍃𐌰𐌻𐌹𐌳𐌰"]) + let v = native_list_append(v, ["bidan", "other", "bidan", "", "", "", "romanization of 𐌱𐌹𐌳𐌰𐌽"]) + let v = native_list_append(v, ["luns", "other", "luns", "", "", "", "romanization of 𐌻𐌿𐌽𐍃"]) + let v = native_list_append(v, ["arms", "other", "arms", "", "", "", "romanization of 𐌰𐍂𐌼𐍃"]) + let v = native_list_append(v, ["blotan", "other", "blotan", "", "", "", "romanization of 𐌱𐌻𐍉𐍄𐌰𐌽"]) + let v = native_list_append(v, ["swa", "other", "swa", "", "", "", "romanization of 𐍃𐍅𐌰"]) + let v = native_list_append(v, ["haba", "other", "haba", "", "", "", "romanization of 𐌷𐌰𐌱𐌰"]) + let v = native_list_append(v, ["jut", "other", "jut", "", "", "", "romanization of 𐌾𐌿𐍄"]) + let v = native_list_append(v, ["nimis", "other", "nimis", "", "", "", "romanization of 𐌽𐌹𐌼𐌹𐍃"]) + let v = native_list_append(v, ["witan", "other", "witan", "", "", "", "romanization of 𐍅𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["mito", "other", "mito", "", "", "", "romanization of 𐌼𐌹𐍄𐍉"]) + let v = native_list_append(v, ["kuni", "other", "kuni", "", "", "", "romanization of 𐌺𐌿𐌽𐌹"]) + let v = native_list_append(v, ["faran", "other", "faran", "", "", "", "romanization of 𐍆𐌰𐍂𐌰𐌽"]) + let v = native_list_append(v, ["uta", "other", "uta", "", "", "", "romanization of 𐌿𐍄𐌰"]) + let v = native_list_append(v, ["þis", "other", "þis", "", "", "", "romanization of 𐌸𐌹𐍃"]) + let v = native_list_append(v, ["þu", "other", "þu", "", "", "", "romanization of 𐌸𐌿"]) + let v = native_list_append(v, ["writs", "other", "writs", "", "", "", "romanization of 𐍅𐍂𐌹𐍄𐍃"]) + let v = native_list_append(v, ["laun", "other", "laun", "", "", "", "romanization of 𐌻𐌰𐌿𐌽"]) + let v = native_list_append(v, ["skuld", "other", "skuld", "", "", "", "romanization of 𐍃𐌺𐌿𐌻𐌳"]) + let v = native_list_append(v, ["saur", "other", "saur", "", "", "", "romanization of 𐍃𐌰𐌿𐍂"]) + let v = native_list_append(v, ["dugan", "other", "dugan", "", "", "", "romanization of 𐌳𐌿𐌲𐌰𐌽"]) + let v = native_list_append(v, ["paska", "other", "paska", "", "", "", "romanization of 𐍀𐌰𐍃𐌺𐌰"]) + let v = native_list_append(v, ["barna", "other", "barna", "", "", "", "romanization of 𐌱𐌰𐍂𐌽𐌰"]) + let v = native_list_append(v, ["lata", "other", "lata", "", "", "", "romanization of 𐌻𐌰𐍄𐌰"]) + let v = native_list_append(v, ["x", "other", "x", "", "", "", "romanization of 𐍇"]) + let v = native_list_append(v, ["kasa", "other", "kasa", "", "", "", "romanization of 𐌺𐌰𐍃𐌰"]) + let v = native_list_append(v, ["fins", "other", "fins", "", "", "", "romanization of 𐍆𐌹𐌽𐍃"]) + let v = native_list_append(v, ["fim", "other", "fim", "", "", "", "romanization of 𐍆𐌹𐌼"]) + let v = native_list_append(v, ["wars", "other", "wars", "", "", "", "romanization of 𐍅𐌰𐍂𐍃"]) + let v = native_list_append(v, ["kann", "other", "kann", "", "", "", "romanization of 𐌺𐌰𐌽𐌽"]) + let v = native_list_append(v, ["rums", "other", "rums", "", "", "", "romanization of 𐍂𐌿𐌼𐍃"]) + let v = native_list_append(v, ["gawas", "other", "gawas", "", "", "", "romanization of 𐌲𐌰𐍅𐌰𐍃"]) + let v = native_list_append(v, ["wens", "other", "wens", "", "", "", "romanization of 𐍅𐌴𐌽𐍃"]) + let v = native_list_append(v, ["gif", "other", "gif", "", "", "", "romanization of 𐌲𐌹𐍆"]) + let v = native_list_append(v, ["ganas", "other", "ganas", "", "", "", "romanization of 𐌲𐌰𐌽𐌰𐍃"]) + let v = native_list_append(v, ["runa", "other", "runa", "", "", "", "romanization of 𐍂𐌿𐌽𐌰"]) + let v = native_list_append(v, ["lists", "other", "lists", "", "", "", "romanization of 𐌻𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["manna", "other", "manna", "", "", "", "romanization of 𐌼𐌰𐌽𐌽𐌰"]) + let v = native_list_append(v, ["ake", "other", "ake", "", "", "", "romanization of 𐌰𐌺𐌴"]) + let v = native_list_append(v, ["marka", "other", "marka", "", "", "", "romanization of 𐌼𐌰𐍂𐌺𐌰"]) + let v = native_list_append(v, ["sis", "other", "sis", "", "", "", "romanization of 𐍃𐌹𐍃"]) + let v = native_list_append(v, ["rann", "other", "rann", "", "", "", "romanization of 𐍂𐌰𐌽𐌽"]) + let v = native_list_append(v, ["-ei", "other", "-ei", "", "", "", "romanization of -𐌴𐌹"]) + let v = native_list_append(v, ["-ini", "other", "-ini", "", "", "", "romanization of -𐌹𐌽𐌹"]) + let v = native_list_append(v, ["iku", "other", "iku", "", "", "", "romanization of 𐌹𐌺𐌿"]) + let v = native_list_append(v, ["fera", "other", "fera", "", "", "", "romanization of 𐍆𐌴𐍂𐌰"]) + let v = native_list_append(v, ["ak", "other", "ak", "", "", "", "romanization of 𐌰𐌺"]) + let v = native_list_append(v, ["aina", "other", "aina", "", "", "", "romanization of 𐌰𐌹𐌽𐌰"]) + let v = native_list_append(v, ["kas", "other", "kas", "", "", "", "romanization of 𐌺𐌰𐍃"]) + let v = native_list_append(v, ["liba", "other", "liba", "", "", "", "romanization of 𐌻𐌹𐌱𐌰"]) + let v = native_list_append(v, ["landa", "other", "landa", "", "", "", "romanization of 𐌻𐌰𐌽𐌳𐌰"]) + let v = native_list_append(v, ["sido", "other", "sido", "", "", "", "romanization of 𐍃𐌹𐌳𐍉"]) + let v = native_list_append(v, ["rasta", "other", "rasta", "", "", "", "romanization of 𐍂𐌰𐍃𐍄𐌰"]) + let v = native_list_append(v, ["ferai", "other", "ferai", "", "", "", "romanization of 𐍆𐌴𐍂𐌰𐌹"]) + let v = native_list_append(v, ["lats", "other", "lats", "", "", "", "romanization of 𐌻𐌰𐍄𐍃"]) + let v = native_list_append(v, ["galga", "other", "galga", "", "", "", "romanization of 𐌲𐌰𐌻𐌲𐌰"]) + let v = native_list_append(v, ["sinapis", "other", "sinapis", "", "", "", "romanization of 𐍃𐌹𐌽𐌰𐍀𐌹𐍃"]) + let v = native_list_append(v, ["juk", "other", "juk", "", "", "", "romanization of 𐌾𐌿𐌺"]) + let v = native_list_append(v, ["redan", "other", "redan", "", "", "", "romanization of *𐍂𐌴𐌳𐌰𐌽"]) + let v = native_list_append(v, ["hina", "other", "hina", "", "", "", "romanization of 𐌷𐌹𐌽𐌰"]) + let v = native_list_append(v, ["niu", "other", "niu", "", "", "", "romanization of 𐌽𐌹𐌿"]) + let v = native_list_append(v, ["winnan", "other", "winnan", "", "", "", "romanization of 𐍅𐌹𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["winda", "other", "winda", "", "", "", "romanization of 𐍅𐌹𐌽𐌳𐌰"]) + let v = native_list_append(v, ["hlas", "other", "hlas", "", "", "", "romanization of 𐌷𐌻𐌰𐍃"]) + let v = native_list_append(v, ["brak", "other", "brak", "", "", "", "romanization of 𐌱𐍂𐌰𐌺"]) + let v = native_list_append(v, ["grob", "other", "grob", "", "", "", "romanization of 𐌲𐍂𐍉𐌱"]) + let v = native_list_append(v, ["ur-", "other", "ur-", "", "", "", "romanization of 𐌿𐍂-"]) + let v = native_list_append(v, ["slep", "other", "slep", "", "", "", "romanization of 𐍃𐌻𐌴𐍀"]) + let v = native_list_append(v, ["lisan", "other", "lisan", "", "", "", "romanization of 𐌻𐌹𐍃𐌰𐌽"]) + let v = native_list_append(v, ["papan", "other", "papan", "", "", "", "romanization of 𐍀𐌰𐍀𐌰𐌽"]) + let v = native_list_append(v, ["bigat", "other", "bigat", "", "", "", "romanization of 𐌱𐌹𐌲𐌰𐍄"]) + let v = native_list_append(v, ["guda", "other", "guda", "", "", "", "romanization of 𐌲𐌿𐌳𐌰"]) + let v = native_list_append(v, ["ina", "other", "ina", "", "", "", "romanization of 𐌹𐌽𐌰"]) + let v = native_list_append(v, ["daun", "other", "daun", "", "", "", "romanization of 𐌳𐌰𐌿𐌽"]) + let v = native_list_append(v, ["blinds", "other", "blinds", "", "", "", "romanization of 𐌱𐌻𐌹𐌽𐌳𐍃"]) + let v = native_list_append(v, ["fruma", "other", "fruma", "", "", "", "romanization of 𐍆𐍂𐌿𐌼𐌰"]) + let v = native_list_append(v, ["wigs", "other", "wigs", "", "", "", "romanization of 𐍅𐌹𐌲𐍃"]) + let v = native_list_append(v, ["litai", "other", "litai", "", "", "", "romanization of 𐌻𐌹𐍄𐌰𐌹"]) + let v = native_list_append(v, ["godo", "other", "godo", "", "", "", "romanization of 𐌲𐍉𐌳𐍉"]) + let v = native_list_append(v, ["jer", "other", "jer", "", "", "", "romanization of 𐌾𐌴𐍂"]) + let v = native_list_append(v, ["jau", "other", "jau", "", "", "", "romanization of 𐌾𐌰𐌿"]) + let v = native_list_append(v, ["lauf", "other", "lauf", "", "", "", "romanization of 𐌻𐌰𐌿𐍆"]) + let v = native_list_append(v, ["aste", "other", "aste", "", "", "", "romanization of 𐌰𐍃𐍄𐌴"]) + let v = native_list_append(v, ["marja", "other", "marja", "", "", "", "romanization of 𐌼𐌰𐍂𐌾𐌰"]) + let v = native_list_append(v, ["magan", "other", "magan", "", "", "", "romanization of 𐌼𐌰𐌲𐌰𐌽"]) + let v = native_list_append(v, ["dragan", "other", "dragan", "", "", "", "romanization of 𐌳𐍂𐌰𐌲𐌰𐌽"]) + let v = native_list_append(v, ["fram", "other", "fram", "", "", "", "romanization of 𐍆𐍂𐌰𐌼"]) + let v = native_list_append(v, ["gretan", "other", "gretan", "", "", "", "romanization of 𐌲𐍂𐌴𐍄𐌰𐌽"]) + let v = native_list_append(v, ["rinnan", "other", "rinnan", "", "", "", "romanization of 𐍂𐌹𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["maht", "other", "maht", "", "", "", "romanization of 𐌼𐌰𐌷𐍄"]) + let v = native_list_append(v, ["naht", "other", "naht", "", "", "", "romanization of 𐌽𐌰𐌷𐍄"]) + let v = native_list_append(v, ["pund", "other", "pund", "", "", "", "romanization of 𐍀𐌿𐌽𐌳"]) + let v = native_list_append(v, ["raka", "other", "raka", "", "", "", "romanization of 𐍂𐌰𐌺𐌰"]) + let v = native_list_append(v, ["fagr", "other", "fagr", "", "", "", "romanization of 𐍆𐌰𐌲𐍂"]) + let v = native_list_append(v, ["sloh", "other", "sloh", "", "", "", "romanization of 𐍃𐌻𐍉𐌷"]) + let v = native_list_append(v, ["soþ", "other", "soþ", "", "", "", "romanization of 𐍃𐍉𐌸"]) + let v = native_list_append(v, ["spilla", "other", "spilla", "", "", "", "romanization of 𐍃𐍀𐌹𐌻𐌻𐌰"]) + let v = native_list_append(v, ["spinnan", "other", "spinnan", "", "", "", "romanization of 𐍃𐍀𐌹𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["tagl", "other", "tagl", "", "", "", "romanization of 𐍄𐌰𐌲𐌻"]) + let v = native_list_append(v, ["wiste", "other", "wiste", "", "", "", "romanization of 𐍅𐌹𐍃𐍄𐌴"]) + let v = native_list_append(v, ["þus", "other", "þus", "", "", "", "romanization of 𐌸𐌿𐍃"]) + let v = native_list_append(v, ["windan", "other", "windan", "", "", "", "romanization of *𐍅𐌹𐌽𐌳𐌰𐌽"]) + let v = native_list_append(v, ["wis", "other", "wis", "", "", "", "romanization of 𐍅𐌹𐍃"]) + let v = native_list_append(v, ["ibai", "other", "ibai", "", "", "", "romanization of 𐌹𐌱𐌰𐌹"]) + let v = native_list_append(v, ["akr", "other", "akr", "", "", "", "romanization of 𐌰𐌺𐍂"]) + let v = native_list_append(v, ["samo", "other", "samo", "", "", "", "romanization of 𐍃𐌰𐌼𐍉"]) + let v = native_list_append(v, ["namo", "other", "namo", "", "", "", "romanization of 𐌽𐌰𐌼𐍉"]) + let v = native_list_append(v, ["fana", "other", "fana", "", "", "", "romanization of 𐍆𐌰𐌽𐌰"]) + let v = native_list_append(v, ["sunno", "other", "sunno", "", "", "", "romanization of 𐍃𐌿𐌽𐌽𐍉"]) + let v = native_list_append(v, ["psalmo", "other", "psalmo", "", "", "", "romanization of 𐍀𐍃𐌰𐌻𐌼𐍉"]) + let v = native_list_append(v, ["ubil", "other", "ubil", "", "", "", "romanization of 𐌿𐌱𐌹𐌻"]) + let v = native_list_append(v, ["weih", "other", "weih", "", "", "", "romanization of 𐍅𐌴𐌹𐌷"]) + let v = native_list_append(v, ["uf", "other", "uf", "", "", "", "romanization of 𐌿𐍆"]) + let v = native_list_append(v, ["innana", "other", "innana", "", "", "", "romanization of 𐌹𐌽𐌽𐌰𐌽𐌰"]) + let v = native_list_append(v, ["filu", "other", "filu", "", "", "", "romanization of 𐍆𐌹𐌻𐌿"]) + let v = native_list_append(v, ["mele", "other", "mele", "", "", "", "romanization of 𐌼𐌴𐌻𐌴"]) + let v = native_list_append(v, ["manag", "other", "manag", "", "", "", "romanization of 𐌼𐌰𐌽𐌰𐌲"]) + let v = native_list_append(v, ["dail", "other", "dail", "", "", "", "romanization of 𐌳𐌰𐌹𐌻"]) + let v = native_list_append(v, ["fimf", "other", "fimf", "", "", "", "romanization of 𐍆𐌹𐌼𐍆"]) + let v = native_list_append(v, ["sibun", "other", "sibun", "", "", "", "romanization of 𐍃𐌹𐌱𐌿𐌽"]) + let v = native_list_append(v, ["niun", "other", "niun", "", "", "", "romanization of 𐌽𐌹𐌿𐌽"]) + let v = native_list_append(v, ["hana", "other", "hana", "", "", "", "romanization of 𐌷𐌰𐌽𐌰"]) + let v = native_list_append(v, ["fasta", "other", "fasta", "", "", "", "romanization of 𐍆𐌰𐍃𐍄𐌰"]) + let v = native_list_append(v, ["dags", "other", "dags", "", "", "", "romanization of 𐌳𐌰𐌲𐍃"]) + let v = native_list_append(v, ["nati", "other", "nati", "", "", "", "romanization of 𐌽𐌰𐍄𐌹"]) + let v = native_list_append(v, ["lamba", "other", "lamba", "", "", "", "romanization of 𐌻𐌰𐌼𐌱𐌰"]) + let v = native_list_append(v, ["stade", "other", "stade", "", "", "", "romanization of 𐍃𐍄𐌰𐌳𐌴"]) + let v = native_list_append(v, ["slahan", "other", "slahan", "", "", "", "romanization of 𐍃𐌻𐌰𐌷𐌰𐌽"]) + let v = native_list_append(v, ["boko", "other", "boko", "", "", "", "romanization of 𐌱𐍉𐌺𐍉"]) + let v = native_list_append(v, ["aram", "other", "aram", "", "", "", "romanization of 𐌰𐍂𐌰𐌼"]) + let v = native_list_append(v, ["namne", "other", "namne", "", "", "", "romanization of 𐌽𐌰𐌼𐌽𐌴"]) + let v = native_list_append(v, ["gaman", "other", "gaman", "", "", "", "romanization of 𐌲𐌰𐌼𐌰𐌽"]) + let v = native_list_append(v, ["ana-", "other", "ana-", "", "", "", "romanization of 𐌰𐌽𐌰-"]) + let v = native_list_append(v, ["𐌱", "other", "𐌱", "", "", "", "The second letter"]) + let v = native_list_append(v, ["𐌲", "other", "𐌲", "", "", "", "The third letter"]) + let v = native_list_append(v, ["𐌳", "other", "𐌳", "", "", "", "The fourth letter"]) + let v = native_list_append(v, ["𐌴", "other", "𐌴", "", "", "", "The fifth letter"]) + let v = native_list_append(v, ["𐌵", "other", "𐌵", "", "", "", "The sixth letter"]) + let v = native_list_append(v, ["𐌶", "other", "𐌶", "", "", "", "The seventh letter"]) + let v = native_list_append(v, ["𐌷", "other", "𐌷", "", "", "", "The eighth letter"]) + let v = native_list_append(v, ["𐌸", "other", "𐌸", "", "", "", "The ninth letter"]) + let v = native_list_append(v, ["𐌹", "other", "𐌹", "", "", "", "The tenth letter"]) + let v = native_list_append(v, ["𐌺", "other", "𐌺", "", "", "", "The eleventh letter"]) + let v = native_list_append(v, ["𐌻", "other", "𐌻", "", "", "", "The twelfth letter"]) + let v = native_list_append(v, ["𐌾", "other", "𐌾", "", "", "", "The fifteenth letter"]) + let v = native_list_append(v, ["𐌽", "other", "𐌽", "", "", "", "The fourteenth letter"]) + let v = native_list_append(v, ["𐌼", "other", "𐌼", "", "", "", "The thirteenth letter"]) + let v = native_list_append(v, ["𐌿", "other", "𐌿", "", "", "", "The sixteenth letter"]) + let v = native_list_append(v, ["𐍀", "other", "𐍀", "", "", "", "The seventeenth letter"]) + let v = native_list_append(v, ["𐍁", "other", "𐍁", "", "", "", "The eighteenth letter"]) + let v = native_list_append(v, ["𐍂", "other", "𐍂", "", "", "", "The nineteenth letter"]) + let v = native_list_append(v, ["𐍃", "other", "𐍃", "", "", "", "The twentieth letter"]) + let v = native_list_append(v, ["𐍄", "other", "𐍄", "", "", "", "The twenty-first letter"]) + let v = native_list_append(v, ["𐍅", "other", "𐍅", "", "", "", "The twenty-second letter"]) + let v = native_list_append(v, ["𐍆", "other", "𐍆", "", "", "", "The twenty-third letter"]) + let v = native_list_append(v, ["𐍇", "other", "𐍇", "", "", "", "The twenty-fourth letter"]) + let v = native_list_append(v, ["𐍉", "other", "𐍉", "", "", "", "The twenty-sixth letter"]) + let v = native_list_append(v, ["𐍊", "other", "𐍊", "", "", "", "The twenty-seventh letter"]) + let v = native_list_append(v, ["-ons", "other", "-ons", "", "", "", "romanization of -𐍉𐌽𐍃"]) + let v = native_list_append(v, ["sak", "other", "sak", "", "", "", "romanization of 𐍃𐌰𐌺"]) + let v = native_list_append(v, ["maist", "other", "maist", "", "", "", "romanization of 𐌼𐌰𐌹𐍃𐍄"]) + let v = native_list_append(v, ["fn", "other", "fn", "", "", "", "romanization of 𐍆𐌽"]) + let v = native_list_append(v, ["aƕa", "other", "aƕa", "", "", "", "romanization of 𐌰𐍈𐌰"]) + let v = native_list_append(v, ["andi", "other", "andi", "", "", "", "romanization of 𐌰𐌽𐌳𐌹"]) + let v = native_list_append(v, ["hugs", "other", "hugs", "", "", "", "romanization of 𐌷𐌿𐌲𐍃"]) + let v = native_list_append(v, ["salta", "other", "salta", "", "", "", "romanization of 𐍃𐌰𐌻𐍄𐌰"]) + let v = native_list_append(v, ["saltan", "other", "saltan", "", "", "", "romanization of 𐍃𐌰𐌻𐍄𐌰𐌽"]) + let v = native_list_append(v, ["bota", "other", "bota", "", "", "", "romanization of 𐌱𐍉𐍄𐌰"]) + let v = native_list_append(v, ["liban", "other", "liban", "", "", "", "romanization of 𐌻𐌹𐌱𐌰𐌽"]) + let v = native_list_append(v, ["arman", "other", "arman", "", "", "", "romanization of 𐌰𐍂𐌼𐌰𐌽"]) + let v = native_list_append(v, ["gaurs", "other", "gaurs", "", "", "", "romanization of 𐌲𐌰𐌿𐍂𐍃"]) + let v = native_list_append(v, ["megs", "other", "megs", "", "", "", "romanization of 𐌼𐌴𐌲𐍃"]) + let v = native_list_append(v, ["godis", "other", "godis", "", "", "", "romanization of 𐌲𐍉𐌳𐌹𐍃"]) + let v = native_list_append(v, ["fija", "other", "fija", "", "", "", "romanization of 𐍆𐌹𐌾𐌰"]) + let v = native_list_append(v, ["fijan", "other", "fijan", "", "", "", "romanization of 𐍆𐌹𐌾𐌰𐌽"]) + let v = native_list_append(v, ["graba", "other", "graba", "", "", "", "romanization of 𐌲𐍂𐌰𐌱𐌰"]) + let v = native_list_append(v, ["graban", "other", "graban", "", "", "", "romanization of 𐌲𐍂𐌰𐌱𐌰𐌽"]) + let v = native_list_append(v, ["hunda", "other", "hunda", "", "", "", "romanization of 𐌷𐌿𐌽𐌳𐌰"]) + let v = native_list_append(v, ["fulls", "other", "fulls", "", "", "", "romanization of 𐍆𐌿𐌻𐌻𐍃"]) + let v = native_list_append(v, ["gasts", "other", "gasts", "", "", "", "romanization of 𐌲𐌰𐍃𐍄𐍃"]) + let v = native_list_append(v, ["hails", "other", "hails", "", "", "", "romanization of 𐌷𐌰𐌹𐌻𐍃"]) + let v = native_list_append(v, ["hafts", "other", "hafts", "", "", "", "romanization of 𐌷𐌰𐍆𐍄𐍃"]) + let v = native_list_append(v, ["stains", "other", "stains", "", "", "", "romanization of 𐍃𐍄𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["halts", "other", "halts", "", "", "", "romanization of 𐌷𐌰𐌻𐍄𐍃"]) + let v = native_list_append(v, ["lambe", "other", "lambe", "", "", "", "romanization of 𐌻𐌰𐌼𐌱𐌴"]) + let v = native_list_append(v, ["lita", "other", "lita", "", "", "", "romanization of 𐌻𐌹𐍄𐌰"]) + let v = native_list_append(v, ["silbo", "other", "silbo", "", "", "", "romanization of 𐍃𐌹𐌻𐌱𐍉"]) + let v = native_list_append(v, ["silba", "other", "silba", "", "", "", "romanization of 𐍃𐌹𐌻𐌱𐌰"]) + let v = native_list_append(v, ["silban", "other", "silban", "", "", "", "romanization of 𐍃𐌹𐌻𐌱𐌰𐌽"]) + let v = native_list_append(v, ["suma", "other", "suma", "", "", "", "romanization of 𐍃𐌿𐌼𐌰"]) + let v = native_list_append(v, ["suman", "other", "suman", "", "", "", "romanization of 𐍃𐌿𐌼𐌰𐌽"]) + let v = native_list_append(v, ["unte", "other", "unte", "", "", "", "romanization of 𐌿𐌽𐍄𐌴"]) + let v = native_list_append(v, ["mats", "other", "mats", "", "", "", "romanization of 𐌼𐌰𐍄𐍃"]) + let v = native_list_append(v, ["sels", "other", "sels", "", "", "", "romanization of 𐍃𐌴𐌻𐍃"]) + let v = native_list_append(v, ["gaf", "other", "gaf", "", "", "", "romanization of 𐌲𐌰𐍆"]) + let v = native_list_append(v, ["moda", "other", "moda", "", "", "", "romanization of 𐌼𐍉𐌳𐌰"]) + let v = native_list_append(v, ["nim", "other", "nim", "", "", "", "romanization of 𐌽𐌹𐌼"]) + let v = native_list_append(v, ["barms", "other", "barms", "", "", "", "romanization of 𐌱𐌰𐍂𐌼𐍃"]) + let v = native_list_append(v, ["skapa", "other", "skapa", "", "", "", "romanization of 𐍃𐌺𐌰𐍀𐌰"]) + let v = native_list_append(v, ["lagga", "other", "lagga", "", "", "", "romanization of 𐌻𐌰𐌲𐌲𐌰"]) + let v = native_list_append(v, ["kald", "other", "kald", "", "", "", "romanization of 𐌺𐌰𐌻𐌳"]) + let v = native_list_append(v, ["leis", "other", "leis", "", "", "", "romanization of *𐌻𐌴𐌹𐍃"]) + let v = native_list_append(v, ["aromata", "other", "aromata", "", "", "", "romanization of 𐌰𐍂𐍉𐌼𐌰𐍄𐌰"]) + let v = native_list_append(v, ["afstand", "other", "afstand", "", "", "", "romanization of 𐌰𐍆𐍃𐍄𐌰𐌽𐌳"]) + let v = native_list_append(v, ["kunnan", "other", "kunnan", "", "", "", "romanization of 𐌺𐌿𐌽𐌽𐌰𐌽"]) + let v = native_list_append(v, ["arka", "other", "arka", "", "", "", "romanization of 𐌰𐍂𐌺𐌰"]) + let v = native_list_append(v, ["siud", "other", "siud", "", "", "", "romanization of 𐍃𐌹𐌿𐌳"]) + let v = native_list_append(v, ["ju", "other", "ju", "", "", "", "romanization of 𐌾𐌿"]) + let v = native_list_append(v, ["meinata", "other", "meinata", "", "", "", "romanization of 𐌼𐌴𐌹𐌽𐌰𐍄𐌰"]) + let v = native_list_append(v, ["ligands", "other", "ligands", "", "", "", "romanization of 𐌻𐌹𐌲𐌰𐌽𐌳𐍃"]) + let v = native_list_append(v, ["afta", "other", "afta", "", "", "", "romanization of 𐌰𐍆𐍄𐌰"]) + let v = native_list_append(v, ["lun", "other", "lun", "", "", "", "romanization of 𐌻𐌿𐌽"]) + let v = native_list_append(v, ["skipa", "other", "skipa", "", "", "", "romanization of 𐍃𐌺𐌹𐍀𐌰"]) + let v = native_list_append(v, ["skula", "other", "skula", "", "", "", "romanization of 𐍃𐌺𐌿𐌻𐌰"]) + let v = native_list_append(v, ["meina", "other", "meina", "", "", "", "romanization of 𐌼𐌴𐌹𐌽𐌰"]) + let v = native_list_append(v, ["framis", "other", "framis", "", "", "", "romanization of 𐍆𐍂𐌰𐌼𐌹𐍃"]) + let v = native_list_append(v, ["merja", "other", "merja", "", "", "", "romanization of 𐌼𐌴𐍂𐌾𐌰"]) + let v = native_list_append(v, ["skal", "other", "skal", "", "", "", "romanization of 𐍃𐌺𐌰𐌻"]) + let v = native_list_append(v, ["-areis", "other", "-areis", "", "", "", "romanization of -𐌰𐍂𐌴𐌹𐍃"]) + let v = native_list_append(v, ["wisa", "other", "wisa", "", "", "", "romanization of 𐍅𐌹𐍃𐌰"]) + let v = native_list_append(v, ["alls", "other", "alls", "", "", "", "romanization of 𐌰𐌻𐌻𐍃"]) + let v = native_list_append(v, ["magu", "other", "magu", "", "", "", "romanization of 𐌼𐌰𐌲𐌿"]) + let v = native_list_append(v, ["mikil", "other", "mikil", "", "", "", "romanization of 𐌼𐌹𐌺𐌹𐌻"]) + let v = native_list_append(v, ["skalt", "other", "skalt", "", "", "", "romanization of 𐍃𐌺𐌰𐌻𐍄"]) + let v = native_list_append(v, ["badi", "other", "badi", "", "", "", "romanization of 𐌱𐌰𐌳𐌹"]) + let v = native_list_append(v, ["liutai", "other", "liutai", "", "", "", "romanization of 𐌻𐌹𐌿𐍄𐌰𐌹"]) + let v = native_list_append(v, ["faraoni", "other", "faraoni", "", "", "", "romanization of 𐍆𐌰𐍂𐌰𐍉𐌽𐌹"]) + let v = native_list_append(v, ["melan", "other", "melan", "", "", "", "romanization of 𐌼𐌴𐌻𐌰𐌽"]) + let v = native_list_append(v, ["fani", "other", "fani", "", "", "", "romanization of 𐍆𐌰𐌽𐌹"]) + let v = native_list_append(v, ["maran", "other", "maran", "", "", "", "romanization of 𐌼𐌰𐍂𐌰𐌽"]) + let v = native_list_append(v, ["muni", "other", "muni", "", "", "", "romanization of 𐌼𐌿𐌽𐌹"]) + let v = native_list_append(v, ["frodai", "other", "frodai", "", "", "", "romanization of 𐍆𐍂𐍉𐌳𐌰𐌹"]) + let v = native_list_append(v, ["gaits", "other", "gaits", "", "", "", "romanization of 𐌲𐌰𐌹𐍄𐍃"]) + let v = native_list_append(v, ["munds", "other", "munds", "", "", "", "romanization of 𐌼𐌿𐌽𐌳𐍃"]) + let v = native_list_append(v, ["wists", "other", "wists", "", "", "", "romanization of 𐍅𐌹𐍃𐍄𐍃"]) + let v = native_list_append(v, ["haitan", "other", "haitan", "", "", "", "romanization of 𐌷𐌰𐌹𐍄𐌰𐌽"]) + let v = native_list_append(v, ["haita", "other", "haita", "", "", "", "romanization of 𐌷𐌰𐌹𐍄𐌰"]) + let v = native_list_append(v, ["ahman", "other", "ahman", "", "", "", "romanization of 𐌰𐌷𐌼𐌰𐌽"]) + let v = native_list_append(v, ["leiki", "other", "leiki", "", "", "", "romanization of 𐌻𐌴𐌹𐌺𐌹"]) + let v = native_list_append(v, ["kustu", "other", "kustu", "", "", "", "romanization of 𐌺𐌿𐍃𐍄𐌿"]) + let v = native_list_append(v, ["munan", "other", "munan", "", "", "", "romanization of 𐌼𐌿𐌽𐌰𐌽"]) + let v = native_list_append(v, ["mammona", "other", "mammona", "", "", "", "romanization of 𐌼𐌰𐌼𐌼𐍉𐌽𐌰"]) + let v = native_list_append(v, ["satana", "other", "satana", "", "", "", "romanization of 𐍃𐌰𐍄𐌰𐌽𐌰"]) + let v = native_list_append(v, ["𐍉", "particle", "𐍉", "", "", "", "O ... !"]) + let v = native_list_append(v, ["𐌴𐌹", "particle", "𐌴𐌹", "", "", "", "in that case"]) + let v = native_list_append(v, ["𐌾𐌰", "particle", "𐌾𐌰", "", "", "", "yes confirmation particle"]) + let v = native_list_append(v, ["𐌽𐌹", "particle", "𐌽𐌹", "", "", "", "not"]) + let v = native_list_append(v, ["-𐌿", "particle", "-𐌿", "", "", "", "Added to the"]) + let v = native_list_append(v, ["𐌰𐌽", "particle", "𐌰𐌽", "", "", "", "an interrogative particle"]) + let v = native_list_append(v, ["𐌹𐌱𐌰𐌹", "particle", "𐌹𐌱𐌰𐌹", "", "", "", "Interrogative particle starts"]) + let v = native_list_append(v, ["𐌽𐌴", "particle", "𐌽𐌴", "", "", "", "no negation particle"]) + let v = native_list_append(v, ["𐌾𐌰𐌹", "particle", "𐌾𐌰𐌹", "", "", "", "yes yea"]) + let v = native_list_append(v, ["𐌸𐌴𐌹", "particle", "𐌸𐌴𐌹", "", "", "", "that"]) + let v = native_list_append(v, ["𐌾𐌰𐌿", "particle", "𐌾𐌰𐌿", "", "", "", "whether"]) + let v = native_list_append(v, ["𐌽𐌹𐌿", "particle", "𐌽𐌹𐌿", "", "", "", "not…?"]) + let v = native_list_append(v, ["𐌸𐌴", "particle", "𐌸𐌴", "", "", "", "only used in"]) + let v = native_list_append(v, ["𐌰𐍆", "prep", "𐌰𐍆", "", "", "", "s of from"]) + let v = native_list_append(v, ["𐌹𐌽", "prep", "𐌹𐌽", "", "", "", "in within among"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼", "prep", "𐍆𐍂𐌰𐌼", "", "", "", "from"]) + let v = native_list_append(v, ["𐍅𐌹𐌸𐍂𐌰", "prep", "𐍅𐌹𐌸𐍂𐌰", "", "", "", "against"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂", "prep", "𐌿𐌽𐌳𐌰𐍂", "", "", "", "under beneath stationary"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐍂𐌷", "prep", "𐌸𐌰𐌹𐍂𐌷", "", "", "", "through"]) + let v = native_list_append(v, ["𐌼𐌹𐌸", "prep", "𐌼𐌹𐌸", "", "", "", "together with"]) + let v = native_list_append(v, ["𐌰𐌽𐌳", "prep", "𐌰𐌽𐌳", "", "", "", "along through into"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂", "prep", "𐍆𐌰𐌿𐍂", "", "", "", "before spatial and"]) + let v = native_list_append(v, ["𐌹𐌽𐌿", "prep", "𐌹𐌽𐌿", "", "", "", "without except"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰", "prep", "𐌰𐌻𐌾𐌰", "", "", "", "besides apart from"]) + let v = native_list_append(v, ["𐌳𐌿", "prep", "𐌳𐌿", "", "", "", "to towards"]) + let v = native_list_append(v, ["𐌿𐍃", "prep", "𐌿𐍃", "", "", "", "out of from"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰", "prep", "𐍆𐌰𐌿𐍂𐌰", "", "", "", "before spatial and"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌰", "prep", "𐌽𐌴𐍈𐌰", "", "", "", "close to near"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍂𐌰", "prep", "𐍆𐌰𐌹𐍂𐍂𐌰", "", "", "", "far away from"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂𐍉", "prep", "𐌿𐌽𐌳𐌰𐍂𐍉", "", "", "", "under"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "prep", "𐌰𐌽𐌳𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "", "", "", "opposite"]) + let v = native_list_append(v, ["𐌰𐍄", "prep", "𐌰𐍄", "", "", "", "at a place"]) + let v = native_list_append(v, ["𐌰𐌽𐌰", "prep", "𐌰𐌽𐌰", "", "", "", "onto to at"]) + let v = native_list_append(v, ["𐌰𐍆𐌰𐍂", "prep", "𐌰𐍆𐌰𐍂", "", "", "", "after following in"]) + let v = native_list_append(v, ["𐌱𐌹", "prep", "𐌱𐌹", "", "", "", "near at a"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐍂", "prep", "𐌷𐌹𐌽𐌳𐌰𐍂", "", "", "", "behind beyond"]) + let v = native_list_append(v, ["𐌿𐍆", "prep", "𐌿𐍆", "", "", "", "under going beneath"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂", "prep", "𐌿𐍆𐌰𐍂", "", "", "", "over moving across"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐍉", "prep", "𐌿𐍆𐌰𐍂𐍉", "", "", "", "over moving across"]) + let v = native_list_append(v, ["𐌹𐌽𐌿𐌷", "prep", "𐌹𐌽𐌿𐌷", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌿𐌽𐌳", "prep", "𐌿𐌽𐌳", "", "", "", "unto until up"]) + let v = native_list_append(v, ["𐌿𐍄𐌰𐌽𐌰", "prep", "𐌿𐍄𐌰𐌽𐌰", "", "", "", "outside"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌳𐌰𐌽𐌰", "prep", "𐌷𐌹𐌽𐌳𐌰𐌽𐌰", "", "", "", "beyond"]) + let v = native_list_append(v, ["𐌰𐍆", "adv", "𐌰𐍆", "", "", "", "away"]) + let v = native_list_append(v, ["𐍈𐌰𐍂", "adv", "𐍈𐌰𐍂", "", "", "", "where"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼", "adv", "𐍆𐍂𐌰𐌼", "", "", "", "forwards forth"]) + let v = native_list_append(v, ["𐌸𐌰𐍂", "adv", "𐌸𐌰𐍂", "", "", "", "there in that"]) + let v = native_list_append(v, ["𐌿𐌽𐌳𐌰𐍂", "adv", "𐌿𐌽𐌳𐌰𐍂", "", "", "", "under beneath"]) + let v = native_list_append(v, ["𐌼𐌹𐌸", "adv", "𐌼𐌹𐌸", "", "", "", "along together"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌰", "adv", "𐍆𐌰𐌿𐍂𐌰", "", "", "", "in front before"]) + let v = native_list_append(v, ["𐌸𐌰𐌽", "adv", "𐌸𐌰𐌽", "", "", "", "then at that"]) + let v = native_list_append(v, ["𐌿𐍆", "adv", "𐌿𐍆", "", "", "", "under"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂", "adv", "𐌿𐍆𐌰𐍂", "", "", "", "over above"]) + let v = native_list_append(v, ["𐌷𐌴𐍂", "adv", "𐌷𐌴𐍂", "", "", "", "here in this"]) + let v = native_list_append(v, ["𐌷𐌹𐌳𐍂𐌴", "adv", "𐌷𐌹𐌳𐍂𐌴", "", "", "", "hither here to"]) + let v = native_list_append(v, ["𐌿𐍄", "adv", "𐌿𐍄", "", "", "", "out of in"]) + let v = native_list_append(v, ["𐌿𐍄𐌰", "adv", "𐌿𐍄𐌰", "", "", "", "outside"]) + let v = native_list_append(v, ["𐌹𐌽𐌽", "adv", "𐌹𐌽𐌽", "", "", "", "in in the"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰", "adv", "𐌹𐌽𐌽𐌰", "", "", "", "within inside"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐌸𐍂𐍉", "adv", "𐌹𐌽𐌽𐌰𐌸𐍂𐍉", "", "", "", "from inside from"]) + let v = native_list_append(v, ["𐌹𐌽𐌽𐌰𐌽𐌰", "adv", "𐌹𐌽𐌽𐌰𐌽𐌰", "", "", "", "from inside from"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐌻𐌰", "adv", "𐍅𐌰𐌹𐌻𐌰", "", "", "", "well in a"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿", "adv", "𐍆𐌹𐌻𐌿", "", "", "", "much a lot"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐍂", "adv", "𐌾𐌰𐌹𐌽𐌰𐍂", "", "", "", "over there yonder"]) + let v = native_list_append(v, ["𐌽𐌿", "adv", "𐌽𐌿", "", "", "", "now"]) + let v = native_list_append(v, ["𐍃𐍅𐌰", "adv", "𐍃𐍅𐌰", "", "", "", "so thus like"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐍂", "adv", "𐌰𐌻𐌾𐌰𐍂", "", "", "", "elsewhere somewhere else"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌿𐌷", "adv", "𐍈𐌰𐍂𐌿𐌷", "", "", "", "anywhere everywhere"]) + let v = native_list_append(v, ["𐌰𐌹𐍂", "adv", "𐌰𐌹𐍂", "", "", "", "early soon"]) + let v = native_list_append(v, ["𐌰𐌿𐌺", "adv", "𐌰𐌿𐌺", "", "", "", "also"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌰𐌿𐍃", "adv", "𐍆𐌹𐌻𐌰𐌿𐍃", "", "", "", "greatly"]) + let v = native_list_append(v, ["𐌽𐌴𐍈", "adv", "𐌽𐌴𐍈", "", "", "", "near close"]) + let v = native_list_append(v, ["𐌰𐌱𐍂𐌰𐌱𐌰", "adv", "𐌰𐌱𐍂𐌰𐌱𐌰", "", "", "", "very severely extremely"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌳𐌹𐍃", "adv", "𐌷𐌰𐌻𐌳𐌹𐍃", "", "", "", "more"]) + let v = native_list_append(v, ["𐌰𐌼𐌴𐌽", "adv", "𐌰𐌼𐌴𐌽", "", "", "", "amen"]) + let v = native_list_append(v, ["𐌼𐌰𐌹𐍃", "adv", "𐌼𐌰𐌹𐍃", "", "", "", "more"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌰𐌽𐌰", "adv", "𐌰𐍆𐍄𐌰𐌽𐌰", "", "", "", "from behind"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌰𐍂𐍉", "adv", "𐌰𐍆𐍄𐌰𐍂𐍉", "", "", "", "behind"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐍂𐌰", "adv", "𐌰𐍆𐍄𐍂𐌰", "", "", "", "again"]) + let v = native_list_append(v, ["𐌾𐌿", "adv", "𐌾𐌿", "", "", "", "already yet"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍃𐍅𐌴", "adv", "𐍃𐍅𐌰𐍃𐍅𐌴", "", "", "", "relative adverb as"]) + let v = native_list_append(v, ["𐌳𐌿𐍈𐌴", "adv", "𐌳𐌿𐍈𐌴", "", "", "", "why"]) + let v = native_list_append(v, ["𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍉", "adv", "𐍃𐌹𐌽𐍄𐌴𐌹𐌽𐍉", "", "", "", "always"]) + let v = native_list_append(v, ["𐍆𐌰𐌹𐍂𐍂𐌰𐌸𐍂𐍉", "adv", "𐍆𐌰𐌹𐍂𐍂𐌰𐌸𐍂𐍉", "", "", "", "from afar"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌸𐍂𐍉", "adv", "𐌾𐌰𐌹𐌽𐌸𐍂𐍉", "", "", "", "from there"]) + let v = native_list_append(v, ["𐌹𐌿𐍀𐌰𐌸𐍂𐍉", "adv", "𐌹𐌿𐍀𐌰𐌸𐍂𐍉", "", "", "", "from above"]) + let v = native_list_append(v, ["𐌹𐌿𐍀𐌰", "adv", "𐌹𐌿𐍀𐌰", "", "", "", "above"]) + let v = native_list_append(v, ["𐍈𐌰𐌸𐍂𐍉", "adv", "𐍈𐌰𐌸𐍂𐍉", "", "", "", "whence from where"]) + let v = native_list_append(v, ["𐌸𐌰𐌸𐍂𐍉", "adv", "𐌸𐌰𐌸𐍂𐍉", "", "", "", "thence from there"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌰𐌸𐍂𐍉", "adv", "𐌳𐌰𐌻𐌰𐌸𐍂𐍉", "", "", "", "from below"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌰𐌸", "adv", "𐌳𐌰𐌻𐌰𐌸", "", "", "", "down downwards"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌸𐍂𐍉", "adv", "𐌰𐌻𐌾𐌰𐌸𐍂𐍉", "", "", "", "from elsewhere"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌸𐍂𐍉", "adv", "𐌰𐌻𐌻𐌰𐌸𐍂𐍉", "", "", "", "from every direction"]) + let v = native_list_append(v, ["𐌿𐍄𐌰𐌸𐍂𐍉", "adv", "𐌿𐍄𐌰𐌸𐍂𐍉", "", "", "", "from outside"]) + let v = native_list_append(v, ["𐍃𐌹𐌼𐌻𐌴", "adv", "𐍃𐌹𐌼𐌻𐌴", "", "", "", "once sometime in"]) + let v = native_list_append(v, ["𐌰𐌹𐍅", "adv", "𐌰𐌹𐍅", "", "", "", "ever always"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌺𐍃", "adv", "𐌰𐌽𐌰𐌺𐍃", "", "", "", "suddenly"]) + let v = native_list_append(v, ["𐌰𐍂𐌽𐌹𐌱𐌰", "adv", "𐌰𐍂𐌽𐌹𐌱𐌰", "", "", "", "securely surely"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌱𐌾𐍉", "adv", "𐌸𐌹𐌿𐌱𐌾𐍉", "", "", "", "secretly furtively covertly"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌹𐍃", "adv", "𐌷𐌰𐌿𐌷𐌹𐍃", "", "", "", "higher comparative degree"]) + let v = native_list_append(v, ["𐌷𐌰𐌿𐌷𐌰𐌱𐌰", "adv", "𐌷𐌰𐌿𐌷𐌰𐌱𐌰", "", "", "", "highly"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌸𐌰𐌱𐌰", "adv", "𐍅𐌰𐌹𐍂𐌸𐌰𐌱𐌰", "", "", "", "worthily"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍄𐍂𐌰𐌱𐌰", "adv", "𐌱𐌰𐌹𐍄𐍂𐌰𐌱𐌰", "", "", "", "bitterly"]) + let v = native_list_append(v, ["𐌰𐌲𐌻𐌿𐌱𐌰", "adv", "𐌰𐌲𐌻𐌿𐌱𐌰", "", "", "", "with difficulty"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌾𐌰𐌱𐌰", "adv", "𐍃𐌿𐌽𐌾𐌰𐌱𐌰", "", "", "", "truthfully"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐍂𐌷𐍄𐌰𐌱𐌰", "adv", "𐌱𐌰𐌹𐍂𐌷𐍄𐌰𐌱𐌰", "", "", "", "brightly clearly"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐌷𐌿𐌽", "adv", "𐌸𐌹𐍃𐌷𐌿𐌽", "", "", "", "especially particularly above"]) + let v = native_list_append(v, ["𐌸𐌹𐌿𐌳𐌹𐍃𐌺𐍉", "adv", "𐌸𐌹𐌿𐌳𐌹𐍃𐌺𐍉", "", "", "", "in a manner"]) + let v = native_list_append(v, ["𐌹𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉", "adv", "𐌹𐌿𐌳𐌰𐌹𐍅𐌹𐍃𐌺𐍉", "", "", "", "Jewishly in a"]) + let v = native_list_append(v, ["𐍈𐌰𐌽", "adv", "𐍈𐌰𐌽", "", "", "", "when"]) + let v = native_list_append(v, ["𐍈𐌰𐌳𐍂𐌴", "adv", "𐍈𐌰𐌳𐍂𐌴", "", "", "", "whither"]) + let v = native_list_append(v, ["𐍈𐌰𐌸", "adv", "𐍈𐌰𐌸", "", "", "", "whither"]) + let v = native_list_append(v, ["𐍈𐌴", "adv", "𐍈𐌴", "", "", "", "with/to whom/what?"]) + let v = native_list_append(v, ["-𐌷𐌿𐌽", "adv", "-𐌷𐌿𐌽", "", "", "", "Forms indefinite adverbs"]) + let v = native_list_append(v, ["𐍈𐌴𐌹𐌻𐍉𐌷𐌿𐌽", "adv", "𐍈𐌴𐌹𐌻𐍉𐌷𐌿𐌽", "", "", "", "for an hour"]) + let v = native_list_append(v, ["𐍈𐌰𐌽𐌷𐌿𐌽", "adv", "𐍈𐌰𐌽𐌷𐌿𐌽", "", "", "", "ever at any"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌼", "adv", "𐌰𐌹𐌽𐌰𐌼", "", "", "", "alone"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌰𐌱𐌰", "adv", "𐌰𐌹𐌽𐍆𐌰𐌻𐌸𐌰𐌱𐌰", "", "", "", "simply in a"]) + let v = native_list_append(v, ["𐌰𐌹𐍂𐌹𐍃", "adv", "𐌰𐌹𐍂𐌹𐍃", "", "", "", "earlier sooner"]) + let v = native_list_append(v, ["𐌰𐌻𐌰𐌺𐌾𐍉", "adv", "𐌰𐌻𐌰𐌺𐌾𐍉", "", "", "", "all together in"]) + let v = native_list_append(v, ["𐌰𐍂𐍅𐌾𐍉", "adv", "𐌰𐍂𐍅𐌾𐍉", "", "", "", "for free without"]) + let v = native_list_append(v, ["𐍃𐍀𐍂𐌰𐌿𐍄𐍉", "adv", "𐍃𐍀𐍂𐌰𐌿𐍄𐍉", "", "", "", "quickly hastily"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐍃", "adv", "𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉𐍃", "", "", "", "otherwise differently comparative"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉", "adv", "𐌰𐌻𐌾𐌰𐌻𐌴𐌹𐌺𐍉", "", "", "", "otherwise differently"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌸", "adv", "𐌰𐌻𐌾𐌰𐌸", "", "", "", "to elsewhere elsewhither"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌽𐌳𐌾𐍉", "adv", "𐌰𐌻𐌻𐌰𐌽𐌳𐌾𐍉", "", "", "", "completely wholly totally"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌹𐌱𐌰", "adv", "𐌰𐌽𐌰𐌻𐌰𐌿𐌲𐌽𐌹𐌱𐌰", "", "", "", "secretly"]) + let v = native_list_append(v, ["𐌰𐌽𐌰𐌻𐌴𐌹𐌺𐍉", "adv", "𐌰𐌽𐌰𐌻𐌴𐌹𐌺𐍉", "", "", "", "likewise similarly"]) + let v = native_list_append(v, ["𐍃𐌽𐌹𐌿𐌼𐌿𐌽𐌳𐍉", "adv", "𐍃𐌽𐌹𐌿𐌼𐌿𐌽𐌳𐍉", "", "", "", "quickly hurriedly"]) + let v = native_list_append(v, ["𐍃𐌽𐌹𐌿𐌼𐌿𐌽𐌳𐍉𐍃", "adv", "𐍃𐌽𐌹𐌿𐌼𐌿𐌽𐌳𐍉𐍃", "", "", "", "more urgently with"]) + let v = native_list_append(v, ["𐌰𐌶𐌴𐍄𐌰𐌱𐌰", "adv", "𐌰𐌶𐌴𐍄𐌰𐌱𐌰", "", "", "", "easily readily"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌿𐌲𐌹𐌱𐌰", "adv", "𐌰𐌽𐌳𐌰𐌿𐌲𐌹𐌱𐌰", "", "", "", "openly in plain"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌰𐌿𐌲𐌾𐍉", "adv", "𐌰𐌽𐌳𐌰𐌿𐌲𐌾𐍉", "", "", "", "openly in plain"]) + let v = native_list_append(v, ["𐌲𐌹𐍃𐍄𐍂𐌰𐌳𐌰𐌲𐌹𐍃", "adv", "𐌲𐌹𐍃𐍄𐍂𐌰𐌳𐌰𐌲𐌹𐍃", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["𐍈𐌰𐌹𐍅𐌰", "adv", "𐍈𐌰𐌹𐍅𐌰", "", "", "", "how"]) + let v = native_list_append(v, ["𐌰𐌿𐍆𐍄𐍉", "adv", "𐌰𐌿𐍆𐍄𐍉", "", "", "", "perhaps indicates a"]) + let v = native_list_append(v, ["𐌱𐌰𐌻𐌸𐌰𐌱𐌰", "adv", "𐌱𐌰𐌻𐌸𐌰𐌱𐌰", "", "", "", "boldly frankly openly"]) + let v = native_list_append(v, ["𐌼𐌹𐌺𐌹𐌻𐌰𐌱𐌰", "adv", "𐌼𐌹𐌺𐌹𐌻𐌰𐌱𐌰", "", "", "", "greatly"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐍉", "adv", "𐌰𐌽𐌸𐌰𐍂𐌻𐌴𐌹𐌺𐍉", "", "", "", "otherwise differently"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐍃", "adv", "𐍃𐌿𐌽𐍃", "", "", "", "immediately at once"]) + let v = native_list_append(v, ["𐌽𐌴𐌹", "adv", "𐌽𐌴𐌹", "", "", "", "not at all"]) + let v = native_list_append(v, ["𐌷𐌹𐌳𐍂𐌴𐌹", "adv", "𐌷𐌹𐌳𐍂𐌴𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌱𐌹𐍃𐌿𐌽𐌾𐌰𐌽𐌴", "adv", "𐌱𐌹𐍃𐌿𐌽𐌾𐌰𐌽𐌴", "", "", "", "round about"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌴", "adv", "𐌱𐌹𐌸𐌴", "", "", "", "later afterward"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌴𐌷", "adv", "𐌱𐌹𐌸𐌴𐌷", "", "", "", "then"]) + let v = native_list_append(v, ["𐌱𐌹𐍈𐌴", "adv", "𐌱𐌹𐍈𐌴", "", "", "", "whereby how?"]) + let v = native_list_append(v, ["𐌳𐌰𐌻𐌰𐌸𐌰", "adv", "𐌳𐌰𐌻𐌰𐌸𐌰", "", "", "", "below beneath"]) + let v = native_list_append(v, ["𐌳𐌿𐌸𐌸𐌴", "adv", "𐌳𐌿𐌸𐌸𐌴", "", "", "", "wherefore"]) + let v = native_list_append(v, ["𐍆𐍂𐍉𐌳𐌰𐌱𐌰", "adv", "𐍆𐍂𐍉𐌳𐌰𐌱𐌰", "", "", "", "intelligently"]) + let v = native_list_append(v, ["𐌿𐌱𐌹𐌻𐌰𐌱𐌰", "adv", "𐌿𐌱𐌹𐌻𐌰𐌱𐌰", "", "", "", "badly evilly"]) + let v = native_list_append(v, ["𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌱𐌰", "adv", "𐍄𐍂𐌹𐌲𐌲𐍅𐌰𐌱𐌰", "", "", "", "faithfully"]) + let v = native_list_append(v, ["𐌼𐌹𐌽𐍃", "adv", "𐌼𐌹𐌽𐍃", "", "", "", "less fewer"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍅𐌿𐌱𐌰", "adv", "𐌼𐌰𐌽𐍅𐌿𐌱𐌰", "", "", "", "preparedly"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌿𐌱𐌰", "adv", "𐌷𐌰𐍂𐌳𐌿𐌱𐌰", "", "", "", "harshly"]) + let v = native_list_append(v, ["𐌷𐌰𐍂𐌳𐌰𐌱𐌰", "adv", "𐌷𐌰𐍂𐌳𐌰𐌱𐌰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌳𐌿𐌷𐌸𐌴", "adv", "𐌳𐌿𐌷𐌸𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌳𐌿𐌸𐌴", "adv", "𐌳𐌿𐌸𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌳𐌿𐌸𐌴𐌹", "adv", "𐌳𐌿𐌸𐌴𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌱𐌰", "adv", "𐌲𐌰𐍂𐌰𐌹𐌷𐍄𐌰𐌱𐌰", "", "", "", "righteously justly"]) + let v = native_list_append(v, ["𐍂𐌰𐌹𐌷𐍄𐌰𐌱𐌰", "adv", "𐍂𐌰𐌹𐌷𐍄𐌰𐌱𐌰", "", "", "", "correctly rightly"]) + let v = native_list_append(v, ["𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃𐌰𐌱𐌰", "adv", "𐌿𐌽𐌲𐌰𐍄𐌰𐍃𐍃𐌰𐌱𐌰", "", "", "", "untidily unrulily disorderly"]) + let v = native_list_append(v, ["𐍈𐌰𐍃𐍃𐌰𐌱𐌰", "adv", "𐍈𐌰𐍃𐍃𐌰𐌱𐌰", "", "", "", "sharply"]) + let v = native_list_append(v, ["𐌿𐍆𐍄𐌰", "adv", "𐌿𐍆𐍄𐌰", "", "", "", "often ofttimes"]) + let v = native_list_append(v, ["𐌿𐍆𐍄𐍉", "adv", "𐌿𐍆𐍄𐍉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰𐌱𐌰", "adv", "𐍃𐍅𐌹𐌺𐌿𐌽𐌸𐌰𐌱𐌰", "", "", "", "openly"]) + let v = native_list_append(v, ["𐌷𐌰𐌻𐌹𐍃𐌰𐌹𐍅", "adv", "𐌷𐌰𐌻𐌹𐍃𐌰𐌹𐍅", "", "", "", "hardly ever scarcely"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐌷𐍄𐌰𐌱𐌰", "adv", "𐌿𐌽𐍃𐌰𐌷𐍄𐌰𐌱𐌰", "", "", "", "undisputably incontrovertibly"]) + let v = native_list_append(v, ["𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐌰𐌱𐌰", "adv", "𐌿𐌽𐍆𐌰𐌹𐍂𐌹𐌽𐍉𐌳𐌰𐌱𐌰", "", "", "", "unblamably blamelessly"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌸𐌹𐍃", "adv", "𐍆𐌰𐌿𐍂𐌸𐌹𐍃", "", "", "", "first"]) + let v = native_list_append(v, ["𐌲𐌰𐌷𐌰𐌷𐌾𐍉", "adv", "𐌲𐌰𐌷𐌰𐌷𐌾𐍉", "", "", "", "coherently"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍄𐌴𐌹", "adv", "𐍅𐌰𐌹𐍄𐌴𐌹", "", "", "", "perhaps"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐌹𐍃", "adv", "𐍆𐍂𐌰𐌼𐌹𐍃", "", "", "", "far"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "adv", "𐍆𐍂𐌰𐌼𐍅𐌰𐌹𐍂𐌸𐌹𐍃", "", "", "", "continuing into the"]) + let v = native_list_append(v, ["𐌲𐌰𐍂𐌴𐌳𐌰𐌱𐌰", "adv", "𐌲𐌰𐍂𐌴𐌳𐌰𐌱𐌰", "", "", "", "commendably honestly properly"]) + let v = native_list_append(v, ["𐍆𐍂𐌰𐌼𐍅𐌹𐌲𐌹𐍃", "adv", "𐍆𐍂𐌰𐌼𐍅𐌹𐌲𐌹𐍃", "", "", "", "forever evermore"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐌰𐌻𐌴𐌹𐌺𐍉", "adv", "𐍅𐌰𐌹𐍂𐌰𐌻𐌴𐌹𐌺𐍉", "", "", "", "in a manly"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐌴", "adv", "𐍃𐍅𐌰𐍂𐌴", "", "", "", "without a reason"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌸", "adv", "𐍃𐌰𐌼𐌰𐌸", "", "", "", "together"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐌳𐍂𐍉", "adv", "𐍃𐌿𐌽𐌳𐍂𐍉", "", "", "", "alone asunder apart"]) + let v = native_list_append(v, ["𐌼𐌹𐍃𐍃𐍉", "adv", "𐌼𐌹𐍃𐍃𐍉", "", "", "", "reciprocally the one"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌳", "adv", "𐌾𐌰𐌹𐌽𐌳", "", "", "", "thither to there"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌳𐍂𐌴", "adv", "𐌾𐌰𐌹𐌽𐌳𐍂𐌴", "", "", "", "thither to there"]) + let v = native_list_append(v, ["𐌿𐌷𐍄𐌴𐌹𐌲𐍉", "adv", "𐌿𐌷𐍄𐌴𐌹𐌲𐍉", "", "", "", "seasonably opportunely"]) + let v = native_list_append(v, ["𐌹𐌽 𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰𐌼", "adv", "𐌹𐌽 𐍆𐍂𐌿𐌼𐌹𐍃𐍄𐌾𐌰𐌼", "", "", "", "first of all"]) + let v = native_list_append(v, ["𐍉𐌷𐍄𐌴𐌹𐌲𐍉", "adv", "𐍉𐌷𐍄𐌴𐌹𐌲𐍉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐌽𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐌹𐌱𐌰", "adv", "𐌿𐌽𐌰𐌽𐌰𐍃𐌹𐌿𐌽𐌹𐌱𐌰", "", "", "", "invisibly"]) + let v = native_list_append(v, ["𐌹𐌿𐍀", "adv", "𐌹𐌿𐍀", "", "", "", "upwards up"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌰𐌹𐌽𐌴𐌹", "adv", "𐌸𐌰𐍄𐌰𐌹𐌽𐌴𐌹", "", "", "", "only"]) + let v = native_list_append(v, ["𐍈𐌰𐌳", "adv", "𐍈𐌰𐌳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐌰𐌱𐌰", "adv", "𐌲𐌰𐌱𐌰𐌿𐍂𐌾𐌰𐌱𐌰", "", "", "", "gladly happily"]) + let v = native_list_append(v, ["𐌲𐌰𐌱𐌹𐌲𐌰𐌱𐌰", "adv", "𐌲𐌰𐌱𐌹𐌲𐌰𐌱𐌰", "", "", "", "richly"]) + let v = native_list_append(v, ["𐌲𐌰𐍆𐌴𐌷𐌰𐌱𐌰", "adv", "𐌲𐌰𐍆𐌴𐌷𐌰𐌱𐌰", "", "", "", "honestly"]) + let v = native_list_append(v, ["𐌲𐌰𐌲𐌿𐌳𐌰𐌱𐌰", "adv", "𐌲𐌰𐌲𐌿𐌳𐌰𐌱𐌰", "", "", "", "godly in a"]) + let v = native_list_append(v, ["𐌻𐌹𐌼𐌰", "adv", "𐌻𐌹𐌼𐌰", "", "", "", "why said by"]) + let v = native_list_append(v, ["𐍅𐌰𐌹𐍂𐍃", "adv", "𐍅𐌰𐌹𐍂𐍃", "", "", "", "worse"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐌷𐌰𐌱𐌰", "adv", "𐍅𐌴𐌹𐌷𐌰𐌱𐌰", "", "", "", "holily"]) + let v = native_list_append(v, ["𐌻𐌰𐌸𐌰𐌻𐌴𐌹𐌺𐍉", "adv", "𐌻𐌰𐌸𐌰𐌻𐌴𐌹𐌺𐍉", "", "", "", "hospitably charitably"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐌹𐌽𐌳𐍉", "adv", "𐌿𐍃𐍃𐌹𐌽𐌳𐍉", "", "", "", "particularly especially"]) + let v = native_list_append(v, ["𐌿𐌽𐌿𐌷𐍄𐌴𐌹𐌲𐍉", "adv", "𐌿𐌽𐌿𐌷𐍄𐌴𐌹𐌲𐍉", "", "", "", "unseasonably inopportunely untimely"]) + let v = native_list_append(v, ["𐌲𐌻𐌰𐌲𐌲𐍅𐌰𐌱𐌰", "adv", "𐌲𐌻𐌰𐌲𐌲𐍅𐌰𐌱𐌰", "", "", "", "diligently meticulously precisely"]) + let v = native_list_append(v, ["𐌲𐌻𐌰𐌲𐌲𐍅𐌿𐌱𐌰", "adv", "𐌲𐌻𐌰𐌲𐌲𐍅𐌿𐌱𐌰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌿𐍃𐌳𐌰𐌿𐌳𐍉", "adv", "𐌿𐍃𐌳𐌰𐌿𐌳𐍉", "", "", "", "diligently"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌴𐌽𐌹𐌲𐌲𐍉", "adv", "𐌿𐌽𐍅𐌴𐌽𐌹𐌲𐌲𐍉", "", "", "", "unexpectedly"]) + let v = native_list_append(v, ["𐍅𐌹𐍄𐍉𐌳𐌴𐌹𐌲𐍉", "adv", "𐍅𐌹𐍄𐍉𐌳𐌴𐌹𐌲𐍉", "", "", "", "lawfully"]) + let v = native_list_append(v, ["𐌹𐌿𐍀𐌰𐌽𐌰", "adv", "𐌹𐌿𐍀𐌰𐌽𐌰", "", "", "", "anew afresh from"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌴𐌼𐌹𐌱𐌰", "adv", "𐌲𐌰𐍄𐌴𐌼𐌹𐌱𐌰", "", "", "", "appropriately congruently"]) + let v = native_list_append(v, ["𐌲𐌰𐍄𐌹𐌻𐌰𐌱𐌰", "adv", "𐌲𐌰𐍄𐌹𐌻𐌰𐌱𐌰", "", "", "", "suitably fittingly"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌰𐌼𐌰𐌹𐍃", "adv", "𐌸𐌰𐌽𐌰𐌼𐌰𐌹𐍃", "", "", "", "yet more further"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌰𐍃𐌴𐌹𐌸𐍃", "adv", "𐌸𐌰𐌽𐌰𐍃𐌴𐌹𐌸𐍃", "", "", "", "since thereafter"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌽𐌰", "adv", "𐍃𐌰𐌼𐌰𐌽𐌰", "", "", "", "together"]) + let v = native_list_append(v, ["𐍃𐍅𐌹𐌺𐌽𐌰𐌱𐌰", "adv", "𐍃𐍅𐌹𐌺𐌽𐌰𐌱𐌰", "", "", "", "innocently sincerely"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌽", "adv", "𐍃𐌿𐌼𐌰𐌽", "", "", "", "once at some"]) + let v = native_list_append(v, ["𐌲𐌻𐌰𐌲𐌲𐍅𐍉", "adv", "𐌲𐌻𐌰𐌲𐌲𐍅𐍉", "", "", "", "exactly precisely"]) + let v = native_list_append(v, ["𐌿𐌽𐍅𐌰𐌹𐍂𐌸𐌰𐌱𐌰", "adv", "𐌿𐌽𐍅𐌰𐌹𐍂𐌸𐌰𐌱𐌰", "", "", "", "unworthily"]) + let v = native_list_append(v, ["𐌿𐍄𐌰𐌽𐌰", "adv", "𐌿𐍄𐌰𐌽𐌰", "", "", "", "outside"]) + let v = native_list_append(v, ["𐌰𐍆𐍄𐌰", "adv", "𐌰𐍆𐍄𐌰", "", "", "", "behind"]) + let v = native_list_append(v, ["𐌾𐌿𐌸𐌰𐌽", "adv", "𐌾𐌿𐌸𐌰𐌽", "", "", "", "now by now"]) + let v = native_list_append(v, ["𐍈𐌴𐌷", "adv", "𐍈𐌴𐌷", "", "", "", "only just"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍉", "adv", "𐍃𐌰𐌼𐌰𐌻𐌴𐌹𐌺𐍉", "", "", "", "likewise similarly"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌸𐌰𐌽", "adv", "𐌼𐌹𐌸𐌸𐌰𐌽", "", "", "", "meanwhile"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐍂𐌿𐌷", "adv", "𐌸𐌹𐍃𐍈𐌰𐍂𐌿𐌷", "", "", "", "wherever"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐌳𐌿𐌷", "adv", "𐌸𐌹𐍃𐍈𐌰𐌳𐌿𐌷", "", "", "", "to wherever whithersoever"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌷", "adv", "𐌽𐌰𐌿𐌷", "", "", "", "yet still"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌷𐌸𐌰𐌽", "adv", "𐌽𐌰𐌿𐌷𐌸𐌰𐌽", "", "", "", "still yet"]) + let v = native_list_append(v, ["𐌽𐌰𐌿𐌷𐌸𐌰𐌽𐌿𐌷", "adv", "𐌽𐌰𐌿𐌷𐌸𐌰𐌽𐌿𐌷", "", "", "", "still yet"]) + let v = native_list_append(v, ["𐌽𐌴𐍈𐌹𐍃", "adv", "𐌽𐌴𐍈𐌹𐍃", "", "", "", "nearer closer comparative"]) + let v = native_list_append(v, ["𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌹𐌱𐌰", "adv", "𐌿𐍃𐍃𐍄𐌹𐌿𐍂𐌹𐌱𐌰", "", "", "", "profligately unbridledly"]) + let v = native_list_append(v, ["𐌿𐍆𐌰𐍂𐌾𐌰𐌹𐌽𐌰", "adv", "𐌿𐍆𐌰𐍂𐌾𐌰𐌹𐌽𐌰", "", "", "", "beyond"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐍃𐌰𐌹𐍅", "adv", "𐍃𐌿𐌽𐍃𐌰𐌹𐍅", "", "", "", "immediately at once"]) + let v = native_list_append(v, ["𐍃𐍅𐌴𐌸𐌰𐌿𐌷", "adv", "𐍃𐍅𐌴𐌸𐌰𐌿𐌷", "", "", "", "indeed nevertheless however"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌷", "adv", "𐍃𐍅𐌰𐌷", "", "", "", "so thus"]) + let v = native_list_append(v, ["𐌸𐌰𐌳𐌴𐌹", "adv", "𐌸𐌰𐌳𐌴𐌹", "", "", "", "whither to where"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐌳𐌿𐌷 𐌸𐌰𐌳𐌴𐌹", "adv", "𐌸𐌹𐍃𐍈𐌰𐌳𐌿𐌷 𐌸𐌰𐌳𐌴𐌹", "", "", "", "whithersoever to wherever"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌽𐌿", "adv", "𐌸𐌰𐌽𐌽𐌿", "", "", "", "therefore in consequence"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌴𐌹", "adv", "𐌸𐌰𐍂𐌴𐌹", "", "", "", "where"]) + let v = native_list_append(v, ["𐌸𐌰𐍂𐌿𐌷", "adv", "𐌸𐌰𐍂𐌿𐌷", "", "", "", "there also and"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌰𐌹𐌽", "adv", "𐌸𐌰𐍄𐌰𐌹𐌽", "", "", "", "only after 𐌽𐌹"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌰𐌹𐌽𐌴", "adv", "𐌸𐌰𐍄𐌰𐌹𐌽𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌰𐌸𐍂𐍉𐌴𐌹", "adv", "𐌸𐌰𐌸𐍂𐍉𐌴𐌹", "", "", "", "from whence"]) + let v = native_list_append(v, ["𐌸𐌰𐌸𐍂𐍉𐌷", "adv", "𐌸𐌰𐌸𐍂𐍉𐌷", "", "", "", "thence"]) + let v = native_list_append(v, ["𐌸𐌰𐌸𐍂𐍉𐌸𐌸𐌰𐌽", "adv", "𐌸𐌰𐌸𐍂𐍉𐌸𐌸𐌰𐌽", "", "", "", "then afterward"]) + let v = native_list_append(v, ["𐌽𐌹 𐌸𐌴 𐌷𐌰𐌻𐌳𐌹𐍃", "adv", "𐌽𐌹 𐌸𐌴 𐌷𐌰𐌻𐌳𐌹𐍃", "", "", "", "nevertheless"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍂𐌴𐌹", "adv", "𐍃𐍅𐌰𐍂𐌴𐌹", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐍃", "det", "𐌸𐌴𐌹𐌽𐍃", "", "", "", "your yours thy"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐍃", "det", "𐌼𐌴𐌹𐌽𐍃", "", "", "", "my mine"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐍃", "det", "𐍃𐌴𐌹𐌽𐍃", "", "", "", "his/her/its/their own third"]) + let v = native_list_append(v, ["𐌿𐌲𐌺𐌰𐍂", "det", "𐌿𐌲𐌺𐌰𐍂", "", "", "", "of us two"]) + let v = native_list_append(v, ["𐌹𐌲𐌵𐌰𐍂", "det", "𐌹𐌲𐌵𐌰𐍂", "", "", "", "of you two"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂", "det", "𐌿𐌽𐍃𐌰𐍂", "", "", "", "our first-person plural"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂", "det", "𐌹𐌶𐍅𐌰𐍂", "", "", "", "your second-person plural"]) + let v = native_list_append(v, ["𐍃𐌰", "det", "𐍃𐌰", "", "", "", "that singular those"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌹𐍃", "det", "𐍈𐌰𐍂𐌾𐌹𐍃", "", "", "", "which what of"]) + let v = native_list_append(v, ["𐍈𐌰𐌸𐌰𐍂", "det", "𐍈𐌰𐌸𐌰𐍂", "", "", "", "which what of"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰", "det", "𐌰𐌻𐌾𐌰", "", "", "", "inflection of 𐌰𐌻𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐍃", "det", "𐌾𐌰𐌹𐌽𐍃", "", "", "", "that over there"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐍃", "det", "𐌰𐌻𐌻𐍃", "", "", "", "all"]) + let v = native_list_append(v, ["𐍃𐌰𐌷", "det", "𐍃𐌰𐌷", "", "", "", "that particular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌹𐌶𐌿𐌷", "det", "𐍈𐌰𐍂𐌾𐌹𐌶𐌿𐌷", "", "", "", "each every of"]) + let v = native_list_append(v, ["𐍈𐌰𐌸𐌰𐍂𐌿𐌷", "det", "𐍈𐌰𐌸𐌰𐍂𐌿𐌷", "", "", "", "each every of"]) + let v = native_list_append(v, ["𐌰𐌽𐌸𐌰𐍂", "det", "𐌰𐌽𐌸𐌰𐍂", "", "", "", "the other of"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰", "det", "𐍃𐌰𐌼𐌰", "", "", "", "same"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐍃", "det", "𐍃𐌿𐌼𐍃", "", "", "", "some one a"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐍃", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐍃", "", "", "", "such that kind"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺𐍃", "det", "𐍈𐌹𐌻𐌴𐌹𐌺𐍃", "", "", "", "what kind of"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌹𐍃", "det", "𐌰𐌻𐌾𐌹𐍃", "", "", "", "other another"]) + let v = native_list_append(v, ["𐌰𐌻𐌻", "det", "𐌰𐌻𐌻", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌹", "det", "𐌰𐌻𐌾𐌰𐌹", "", "", "", "inflection of 𐌰𐌻𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰𐌽𐌰", "det", "𐌰𐌻𐌾𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌽𐌰", "det", "𐌰𐌻𐌻𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌹𐍃", "det", "𐌰𐌻𐌻𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌼𐌼𐌰", "det", "𐌰𐌻𐌻𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌹", "det", "𐌰𐌻𐌻𐌰𐌹", "", "", "", "inflection of 𐌰𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌽𐍃", "det", "𐌰𐌻𐌻𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌹𐌶𐌴", "det", "𐌰𐌻𐌻𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌹𐌼", "det", "𐌰𐌻𐌻𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰", "det", "𐌰𐌻𐌻𐌰", "", "", "", "inflection of 𐌰𐌻𐌻𐍃"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌹𐌶𐍉𐍃", "det", "𐌰𐌻𐌻𐌰𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐍉𐍃", "det", "𐌰𐌻𐌻𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐌹𐌶𐍉", "det", "𐌰𐌻𐌻𐌰𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐌰𐌻𐌻𐌰𐍄𐌰", "det", "𐌰𐌻𐌻𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐍉", "det", "𐍃𐍉", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["𐌸𐍉", "det", "𐌸𐍉", "", "", "", "inflection of 𐍃𐌰"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌰", "det", "𐌸𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌸𐍉𐍃", "det", "𐌸𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌹", "det", "𐌸𐌰𐌹", "", "", "", "nominative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐍃", "det", "𐌸𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌰", "det", "𐌸𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌼𐌼𐌰", "det", "𐌸𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌹𐍃", "det", "𐌸𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐌼", "det", "𐌸𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌴", "det", "𐌸𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐍉", "det", "𐌸𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐍉𐍃", "det", "𐌸𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌰𐌹", "det", "𐌸𐌹𐌶𐌰𐌹", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰", "det", "𐌼𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌼𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰", "det", "𐌸𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐌸𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰", "det", "𐍃𐌴𐌹𐌽𐌰", "", "", "", "inflection of 𐍃𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰", "det", "𐌿𐌽𐍃𐌰𐍂𐌰", "", "", "", "inflection of 𐌿𐌽𐍃𐌰𐍂"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰", "det", "𐌹𐌶𐍅𐌰𐍂𐌰", "", "", "", "inflection of 𐌹𐌶𐍅𐌰𐍂"]) + let v = native_list_append(v, ["𐌸𐍉𐌷", "det", "𐌸𐍉𐌷", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌿𐌷", "det", "𐌸𐌰𐍄𐌿𐌷", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐍉𐌷", "det", "𐍃𐍉𐌷", "", "", "", "nominative/accusative feminine singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐌼𐌿𐌷", "det", "𐌸𐌰𐌹𐌼𐌿𐌷", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌼𐌼𐌿𐌷", "det", "𐌸𐌰𐌼𐌼𐌿𐌷", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌿𐌷", "det", "𐌸𐌹𐌶𐌿𐌷", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌿𐌷", "det", "𐌸𐌰𐌽𐌿𐌷", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐌷", "det", "𐌸𐌰𐌹𐌷", "", "", "", "nominative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌶𐌿𐌷", "det", "𐌸𐌰𐌽𐌶𐌿𐌷", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽", "det", "𐌸𐌴𐌹𐌽", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌽𐌰", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌹𐌼𐌼𐌰", "det", "𐌷𐌹𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌹𐌼", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌹𐌶𐌴", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌹𐍃", "det", "𐌿𐌽𐍃𐌰𐍂𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌹", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌹", "", "", "", "inflection of 𐌿𐌽𐍃𐌰𐍂"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌹𐌶𐍉𐍃", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌼𐌼𐌰", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰𐌽𐍃", "det", "𐌿𐌽𐍃𐌰𐍂𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐍉𐍃", "det", "𐌿𐌽𐍃𐌰𐍂𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌷𐌹𐌽𐌰", "det", "𐌷𐌹𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌷𐌹𐍄𐌰", "det", "𐌷𐌹𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰𐌼𐌼𐌰", "det", "𐌹𐌶𐍅𐌰𐍂𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰𐌽𐍃", "det", "𐌹𐌶𐍅𐌰𐍂𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰𐌽𐌰", "det", "𐌹𐌶𐍅𐌰𐍂𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌹𐍃", "det", "𐌹𐌶𐍅𐌰𐍂𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰𐌹𐌼", "det", "𐌹𐌶𐍅𐌰𐍂𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐍉𐍃", "det", "𐌹𐌶𐍅𐌰𐍂𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰𐌹𐌶𐍉𐍃", "det", "𐌹𐌶𐍅𐌰𐍂𐌰𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰𐌹", "det", "𐌹𐌶𐍅𐌰𐍂𐌰𐌹", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "det", "𐌸𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌹𐌼", "det", "𐌸𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌹𐍃", "det", "𐌸𐌴𐌹𐌽𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "det", "𐌸𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "det", "𐌸𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌹𐌶𐍉", "det", "𐌸𐌴𐌹𐌽𐌰𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌹", "det", "𐌸𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐌸𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐍉𐍃", "det", "𐌸𐌴𐌹𐌽𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌽𐍃", "det", "𐌸𐌴𐌹𐌽𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐌽𐌰", "det", "𐌸𐌴𐌹𐌽𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐌼𐌼𐌰", "det", "𐌾𐌰𐌹𐌽𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐌹𐌼", "det", "𐌾𐌰𐌹𐌽𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌹𐍃", "det", "𐌾𐌰𐌹𐌽𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐌹𐌶𐌴", "det", "𐌾𐌰𐌹𐌽𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐌹", "det", "𐌾𐌰𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐌾𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐍄𐌰", "det", "𐌾𐌰𐌹𐌽𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰", "det", "𐌾𐌰𐌹𐌽𐌰", "", "", "", "inflection of 𐌾𐌰𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐌽𐌰", "det", "𐌾𐌰𐌹𐌽𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌾𐌰𐌹𐌽𐌰𐌽𐍃", "det", "𐌾𐌰𐌹𐌽𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "det", "𐌼𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌹𐌼", "det", "𐌼𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌹", "det", "𐌼𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐌼𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽", "det", "𐌼𐌴𐌹𐌽", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐍄𐌰", "det", "𐌼𐌴𐌹𐌽𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐍉𐍃", "det", "𐌼𐌴𐌹𐌽𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "det", "𐌼𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌹𐍃", "det", "𐌼𐌴𐌹𐌽𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "det", "𐌼𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌹𐌶𐍉", "det", "𐌼𐌴𐌹𐌽𐌰𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌽𐍃", "det", "𐌼𐌴𐌹𐌽𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌽𐌰", "det", "𐌼𐌴𐌹𐌽𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌼𐌼𐌰", "det", "𐍃𐌿𐌼𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌹𐌼", "det", "𐍃𐌿𐌼𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌹", "det", "𐍃𐌿𐌼𐌰𐌹", "", "", "", "inflection of 𐍃𐌿𐌼𐍃"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌹𐍃", "det", "𐍃𐌿𐌼𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌹𐌶𐌴", "det", "𐍃𐌿𐌼𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰", "det", "𐍃𐌿𐌼𐌰", "", "", "", "inflection of 𐍃𐌿𐌼𐍃"]) + let v = native_list_append(v, ["𐍃𐌿𐌼", "det", "𐍃𐌿𐌼", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐍄𐌰", "det", "𐍃𐌿𐌼𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌽𐍃", "det", "𐍃𐌿𐌼𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐌿𐌼𐌰𐌽𐌰", "det", "𐍃𐌿𐌼𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐍄𐌰", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌹", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌹", "", "", "", "inflection of 𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌼𐌼𐌰", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌽𐌰", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌼", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌶𐌴", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌽𐍃", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐍉𐍃", "det", "𐍃𐍅𐌰𐌻𐌴𐌹𐌺𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌼𐌼𐌴𐌷", "det", "𐍈𐌰𐍂𐌾𐌰𐌼𐌼𐌴𐌷", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌽𐍉𐌷", "det", "𐍈𐌰𐍂𐌾𐌰𐌽𐍉𐌷", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐍉𐌷", "det", "𐍈𐌰𐍂𐌾𐍉𐌷", "", "", "", "nominative/accusative feminine singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐍄𐍉𐌷", "det", "𐍈𐌰𐍂𐌾𐌰𐍄𐍉𐌷", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰", "det", "𐍈𐌰𐍂𐌾𐌰", "", "", "", "inflection of 𐍈𐌰𐍂𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐍉𐍃", "det", "𐍈𐌰𐍂𐌾𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌽𐌰", "det", "𐍈𐌰𐍂𐌾𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌽𐍃", "det", "𐍈𐌰𐍂𐌾𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌼𐌼𐌰", "det", "𐍈𐌰𐍂𐌾𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌹", "det", "𐍈𐌰𐍂𐌾𐌰𐌹", "", "", "", "inflection of 𐍈𐌰𐍂𐌾𐌹𐍃"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺𐌰", "det", "𐍈𐌹𐌻𐌴𐌹𐌺𐌰", "", "", "", "inflection of 𐍈𐌹𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺", "det", "𐍈𐌹𐌻𐌴𐌹𐌺", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺𐌰𐌼𐌼𐌰", "det", "𐍈𐌹𐌻𐌴𐌹𐌺𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺𐌰𐌹", "det", "𐍈𐌹𐌻𐌴𐌹𐌺𐌰𐌹", "", "", "", "inflection of 𐍈𐌹𐌻𐌴𐌹𐌺𐍃"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺𐍉𐍃", "det", "𐍈𐌹𐌻𐌴𐌹𐌺𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐍈𐌹𐌻𐌴𐌹𐌺𐌰𐌹𐌼", "det", "𐍈𐌹𐌻𐌴𐌹𐌺𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐍉", "det", "𐍃𐌰𐌼𐍉", "", "", "", "inflection of 𐍃𐌰𐌼𐌰"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐍉𐌽", "det", "𐍃𐌰𐌼𐍉𐌽", "", "", "", "accusative/dative feminine singular"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌹𐌽", "det", "𐍃𐌰𐌼𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐍉𐌽𐌰", "det", "𐍃𐌰𐌼𐍉𐌽𐌰", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐌰𐌼", "det", "𐍃𐌰𐌼𐌰𐌼", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌰𐌼𐍉𐌽𐍉", "det", "𐍃𐌰𐌼𐍉𐌽𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽", "det", "𐍃𐌴𐌹𐌽", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐍄𐌰", "det", "𐍃𐌴𐌹𐌽𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌽𐌰", "det", "𐍃𐌴𐌹𐌽𐌰𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌽𐍃", "det", "𐍃𐌴𐌹𐌽𐌰𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌹𐍃", "det", "𐍃𐌴𐌹𐌽𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "det", "𐍃𐌴𐌹𐌽𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "det", "𐍃𐌴𐌹𐌽𐌰𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌹", "det", "𐍃𐌴𐌹𐌽𐌰𐌹", "", "", "", "inflection of 𐍃𐌴𐌹𐌽𐍃"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐍉𐍃", "det", "𐍃𐌴𐌹𐌽𐍉𐍃", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌹𐌼", "det", "𐍃𐌴𐌹𐌽𐌰𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "det", "𐍃𐌴𐌹𐌽𐌰𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰𐌹𐌶𐍉", "det", "𐍃𐌴𐌹𐌽𐌰𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰𐍄𐌰", "det", "𐌸𐌴𐌹𐌽𐌰𐍄𐌰", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌱𐌰𐌹", "det", "𐌱𐌰𐌹", "", "", "", "both one and"]) + let v = native_list_append(v, ["𐌱𐌰𐌹𐌼", "det", "𐌱𐌰𐌹𐌼", "", "", "", "dative masculine of"]) + let v = native_list_append(v, ["𐌱𐌰𐌽𐍃", "det", "𐌱𐌰𐌽𐍃", "", "", "", "accusative masculine of"]) + let v = native_list_append(v, ["𐌱𐌰", "det", "𐌱𐌰", "", "", "", "nominative/accusative neuter of"]) + let v = native_list_append(v, ["𐌷𐌹𐍃", "det", "𐌷𐌹𐍃", "", "", "", "this"]) + let v = native_list_append(v, ["𐌹𐌲𐌲𐌵𐌰𐍂𐌰𐌹", "det", "𐌹𐌲𐌲𐌵𐌰𐍂𐌰𐌹", "", "", "", "inflection of 𐌹𐌲𐌵𐌰𐍂"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰𐌹𐍃", "det", "𐌼𐌴𐌹𐌽𐌰𐌹𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍈𐌰𐍂𐌾𐌰𐌽𐍉", "det", "𐍈𐌰𐍂𐌾𐌰𐌽𐍉", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍈𐌴𐌻𐌴𐌹𐌺𐌰", "det", "𐍈𐌴𐌻𐌴𐌹𐌺𐌰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐍈𐌰𐌸𐌰𐍂𐌰𐌼𐌼𐌴", "det", "𐍈𐌰𐌸𐌰𐍂𐌰𐌼𐌼𐌴", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌹𐌺", "pron", "𐌹𐌺", "", "", "", "first person singular"]) + let v = native_list_append(v, ["𐌸𐌿", "pron", "𐌸𐌿", "", "", "", "thou you second-person"]) + let v = native_list_append(v, ["𐌹𐍃", "pron", "𐌹𐍃", "", "", "", "he she it"]) + let v = native_list_append(v, ["𐍅𐌴𐌹𐍃", "pron", "𐍅𐌴𐌹𐍃", "", "", "", "we first-person plural"]) + let v = native_list_append(v, ["𐌾𐌿𐍃", "pron", "𐌾𐌿𐍃", "", "", "", "you ye second-person"]) + let v = native_list_append(v, ["𐍅𐌹𐍄", "pron", "𐍅𐌹𐍄", "", "", "", "we two the"]) + let v = native_list_append(v, ["𐌾𐌿𐍄", "pron", "𐌾𐌿𐍄", "", "", "", "you two the"]) + let v = native_list_append(v, ["𐍃𐌰", "pron", "𐍃𐌰", "", "", "", "that that one"]) + let v = native_list_append(v, ["𐍈𐌰𐍃", "pron", "𐍈𐌰𐍃", "", "", "", "who what"]) + let v = native_list_append(v, ["𐌼𐌹𐍃", "pron", "𐌼𐌹𐍃", "", "", "", "dative of 𐌹𐌺"]) + let v = native_list_append(v, ["𐌼𐌹𐌺", "pron", "𐌼𐌹𐌺", "", "", "", "accusative of 𐌹𐌺"]) + let v = native_list_append(v, ["𐌸𐌿𐌺", "pron", "𐌸𐌿𐌺", "", "", "", "accusative of 𐌸𐌿"]) + let v = native_list_append(v, ["𐌸𐌿𐍃", "pron", "𐌸𐌿𐍃", "", "", "", "dative of 𐌸𐌿"]) + let v = native_list_append(v, ["𐍃𐌹𐌺", "pron", "𐍃𐌹𐌺", "", "", "", "Accusative form of"]) + let v = native_list_append(v, ["𐍃𐌹𐍃", "pron", "𐍃𐌹𐍃", "", "", "", "Dative form of"]) + let v = native_list_append(v, ["𐌿𐌲𐌺𐌹𐍃", "pron", "𐌿𐌲𐌺𐌹𐍃", "", "", "", "accusative/dative of 𐍅𐌹𐍄"]) + let v = native_list_append(v, ["𐌿𐌽𐍃", "pron", "𐌿𐌽𐍃", "", "", "", "accusative/dative of 𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌹𐍃", "pron", "𐌿𐌽𐍃𐌹𐍃", "", "", "", "accusative/dative of 𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌹𐌲𐌵𐌹𐍃", "pron", "𐌹𐌲𐌵𐌹𐍃", "", "", "", "accusative/dative of 𐌾𐌿𐍄"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌹𐍃", "pron", "𐌹𐌶𐍅𐌹𐍃", "", "", "", "accusative/dative of 𐌾𐌿𐍃"]) + let v = native_list_append(v, ["𐍃𐌰𐌷", "pron", "𐍃𐌰𐌷", "", "", "", "that particular"]) + let v = native_list_append(v, ["𐍃𐌰𐌴𐌹", "pron", "𐍃𐌰𐌴𐌹", "", "", "", "the person/thing who"]) + let v = native_list_append(v, ["𐍈𐌰𐌶𐌿𐌷", "pron", "𐍈𐌰𐌶𐌿𐌷", "", "", "", "each everyone everything"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰", "pron", "𐍃𐌹𐌻𐌱𐌰", "", "", "", "self"]) + let v = native_list_append(v, ["𐍆𐌹𐌻𐌿", "pron", "𐍆𐌹𐌻𐌿", "", "", "", "much a lot"]) + let v = native_list_append(v, ["𐌹𐌼", "pron", "𐌹𐌼", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌹𐍄𐌰", "pron", "𐌹𐍄𐌰", "", "", "", "it nominative/accusative neuter"]) + let v = native_list_append(v, ["𐌼𐌴𐌹𐌽𐌰", "pron", "𐌼𐌴𐌹𐌽𐌰", "", "", "", "genitive of 𐌹𐌺"]) + let v = native_list_append(v, ["𐌸𐌴𐌹𐌽𐌰", "pron", "𐌸𐌴𐌹𐌽𐌰", "", "", "", "genitive of 𐌸𐌿"]) + let v = native_list_append(v, ["𐍃𐌴𐌹𐌽𐌰", "pron", "𐍃𐌴𐌹𐌽𐌰", "", "", "", "Genitive form of"]) + let v = native_list_append(v, ["𐌿𐌽𐍃𐌰𐍂𐌰", "pron", "𐌿𐌽𐍃𐌰𐍂𐌰", "", "", "", "genitive of 𐍅𐌴𐌹𐍃"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌰𐍂𐌰", "pron", "𐌹𐌶𐍅𐌰𐍂𐌰", "", "", "", "genitive of 𐌾𐌿𐍃"]) + let v = native_list_append(v, ["𐌹𐌾𐌰", "pron", "𐌹𐌾𐌰", "", "", "", "they them nominative/accusative"]) + let v = native_list_append(v, ["𐌹𐌾𐍉𐍃", "pron", "𐌹𐌾𐍉𐍃", "", "", "", "they nominative/accusative feminine"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌴𐌹", "pron", "𐌸𐌰𐍄𐌴𐌹", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐍉", "pron", "𐍃𐌹𐌻𐌱𐍉", "", "", "", "inflection of 𐍃𐌹𐌻𐌱𐌰"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐌽", "pron", "𐍃𐌹𐌻𐌱𐌰𐌽", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌹𐌽𐍃", "pron", "𐍃𐌹𐌻𐌱𐌹𐌽𐍃", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌹𐌽", "pron", "𐍃𐌹𐌻𐌱𐌹𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐍉𐌽𐍃", "pron", "𐍃𐌹𐌻𐌱𐍉𐌽𐍃", "", "", "", "inflection of 𐍃𐌹𐌻𐌱𐌰"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐌽𐍃", "pron", "𐍃𐌹𐌻𐌱𐌰𐌽𐍃", "", "", "", "nominative/accusative masculine plural"]) + let v = native_list_append(v, ["𐍃𐌹𐌻𐌱𐌰𐌼", "pron", "𐍃𐌹𐌻𐌱𐌰𐌼", "", "", "", "dative masculine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐍉𐌴𐌹", "pron", "𐌸𐍉𐌴𐌹", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["𐌸𐍉𐌶𐌴𐌹", "pron", "𐌸𐍉𐌶𐌴𐌹", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐍃𐍉𐌴𐌹", "pron", "𐍃𐍉𐌴𐌹", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐌴𐌹", "pron", "𐌸𐌰𐌹𐌴𐌹", "", "", "", "nominative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌶𐌴𐌹", "pron", "𐌸𐌰𐌽𐌶𐌴𐌹", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌴𐌹", "pron", "𐌸𐌰𐌽𐌴𐌹", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌴𐌹", "pron", "𐌸𐌹𐌶𐌴𐌹", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌴𐌴𐌹", "pron", "𐌸𐌹𐌶𐌴𐌴𐌹", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌹𐌼𐌴𐌹", "pron", "𐌸𐌰𐌹𐌼𐌴𐌹", "", "", "", "dative masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["𐌸𐌰𐌼𐌼𐌴𐌹", "pron", "𐌸𐌰𐌼𐌼𐌴𐌹", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌰𐌹𐌴𐌹", "pron", "𐌸𐌹𐌶𐌰𐌹𐌴𐌹", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐍉𐌶𐌴𐌹", "pron", "𐌸𐌹𐌶𐍉𐌶𐌴𐌹", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌹𐌼𐌼𐌰", "pron", "𐌹𐌼𐌼𐌰", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌹𐌶𐌰𐌹", "pron", "𐌹𐌶𐌰𐌹", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐌹𐌶𐌴", "pron", "𐌹𐌶𐌴", "", "", "", "genitive masculine/neuter plural"]) + let v = native_list_append(v, ["𐌹𐌶𐍉𐍃", "pron", "𐌹𐌶𐍉𐍃", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["𐌹𐌶𐍉", "pron", "𐌹𐌶𐍉", "", "", "", "genitive feminine plural"]) + let v = native_list_append(v, ["𐍃𐌹", "pron", "𐍃𐌹", "", "", "", "she nominative feminine"]) + let v = native_list_append(v, ["𐌹𐌽𐍃", "pron", "𐌹𐌽𐍃", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐌴𐌹𐍃", "pron", "𐌴𐌹𐍃", "", "", "", "they nominative masculine"]) + let v = native_list_append(v, ["𐌹𐌽𐌰", "pron", "𐌹𐌽𐌰", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐍈𐌰𐌽𐌶𐌿𐌷", "pron", "𐍈𐌰𐌽𐌶𐌿𐌷", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["𐍈𐌹𐌶𐌿𐌷", "pron", "𐍈𐌹𐌶𐌿𐌷", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐍈𐌰𐌼𐌼𐌴𐌷", "pron", "𐍈𐌰𐌼𐌼𐌴𐌷", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐍈𐍉𐌷", "pron", "𐍈𐍉𐌷", "", "", "", "nominative/accusative feminine singular"]) + let v = native_list_append(v, ["𐍈𐌰𐌽𐌰", "pron", "𐍈𐌰𐌽𐌰", "", "", "", "accusative masculine of"]) + let v = native_list_append(v, ["𐍈𐌹𐍃", "pron", "𐍈𐌹𐍃", "", "", "", "genitive masculine/neuter of"]) + let v = native_list_append(v, ["𐍈𐌰𐌼𐌼𐌰", "pron", "𐍈𐌰𐌼𐌼𐌰", "", "", "", "dative masculine/neuter of"]) + let v = native_list_append(v, ["𐍈𐌰", "pron", "𐍈𐌰", "", "", "", "nominative/accusative neuter of"]) + let v = native_list_append(v, ["𐍈𐌹𐌶𐌰𐌹", "pron", "𐍈𐌹𐌶𐌰𐌹", "", "", "", "dative feminine of"]) + let v = native_list_append(v, ["𐍈𐍉", "pron", "𐍈𐍉", "", "", "", "nominative/accusative feminine of"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌰𐌹𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐌰𐌹𐌷𐌿𐌽", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍃𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐍃𐌷𐌿𐌽", "", "", "", "anyone anything"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍉𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐍉𐌷𐌿𐌽", "", "", "", "inflection of 𐌰𐌹𐌽𐍃𐌷𐌿𐌽"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐌷𐌿𐌽", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌹𐍃𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐌹𐍃𐌷𐌿𐌽", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌽𐍉𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐌽𐍉𐌷𐌿𐌽", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐌿𐌼𐌼𐌴𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐌿𐌼𐌼𐌴𐌷𐌿𐌽", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["-𐌷𐌿𐌽", "pron", "-𐌷𐌿𐌽", "", "", "", "Forms indefinite pronouns"]) + let v = native_list_append(v, ["𐍈𐌰𐍃𐌷𐌿𐌽", "pron", "𐍈𐌰𐍃𐌷𐌿𐌽", "", "", "", "anyone"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌰𐌷𐌿𐌽", "pron", "𐌼𐌰𐌽𐌽𐌰𐌷𐌿𐌽", "", "", "", "anyone"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍉𐌼𐌴𐌷𐌿𐌽", "pron", "𐌰𐌹𐌽𐍉𐌼𐌴𐌷𐌿𐌽", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌹𐌶𐌿𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌹𐌶𐌿𐌷", "", "", "", "every one"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌰𐌽𐍉𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌰𐌽𐍉𐌷", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌰𐌼𐌼𐌴𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌰𐌼𐌼𐌴𐌷", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐍉𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐍉𐌷", "", "", "", "nominative/accusative feminine singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌰𐍄𐍉𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐍂𐌾𐌰𐍄𐍉𐌷", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐌸𐌰𐍂𐌿𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐌸𐌰𐍂𐌿𐌷", "", "", "", "each of two"]) + let v = native_list_append(v, ["𐌰𐌹𐌽𐍈𐌰𐌸𐌰𐍂𐌰𐌼𐌼𐌴𐌷", "pron", "𐌰𐌹𐌽𐍈𐌰𐌸𐌰𐍂𐌰𐌼𐌼𐌴𐌷", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["𐌱𐌰𐌾𐍉𐌸𐍃", "pron", "𐌱𐌰𐌾𐍉𐌸𐍃", "", "", "", "both referring to"]) + let v = native_list_append(v, ["𐌱𐌰𐌾𐍉𐌸𐌿𐌼", "pron", "𐌱𐌰𐌾𐍉𐌸𐌿𐌼", "", "", "", "dative of 𐌱𐌰𐌾𐍉𐌸𐍃"]) + let v = native_list_append(v, ["𐌸𐍉𐌶𐌴", "pron", "𐌸𐍉𐌶𐌴", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["𐌿𐌲𐌲𐌺𐌹𐍃", "pron", "𐌿𐌲𐌲𐌺𐌹𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌹𐌲𐌲𐌵𐌰𐍂𐌰", "pron", "𐌹𐌲𐌲𐌵𐌰𐍂𐌰", "", "", "", "genitive of 𐌾𐌿𐍄"]) + let v = native_list_append(v, ["𐌸𐌿𐌴𐌹", "pron", "𐌸𐌿𐌴𐌹", "", "", "", "you who ..."]) + let v = native_list_append(v, ["𐌹𐌲𐌲𐌵𐌹𐍃", "pron", "𐌹𐌲𐌲𐌵𐌹𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌹𐌽𐌵𐌹𐍃", "pron", "𐌹𐌽𐌵𐌹𐍃", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐍈𐌰𐌽𐍉𐌷", "pron", "𐍈𐌰𐌽𐍉𐌷", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌹𐌺𐌴𐌹", "pron", "𐌹𐌺𐌴𐌹", "", "", "", "I who ..."]) + let v = native_list_append(v, ["𐌹𐌺𐌿", "pron", "𐌹𐌺𐌿", "", "", "", "whether I"]) + let v = native_list_append(v, ["𐌹𐌶𐌴𐌹", "pron", "𐌹𐌶𐌴𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌾𐌿𐌶𐌴𐌹", "pron", "𐌾𐌿𐌶𐌴𐌹", "", "", "", "who with the"]) + let v = native_list_append(v, ["𐌹𐌶𐍅𐌹𐌶𐌴𐌹", "pron", "𐌹𐌶𐍅𐌹𐌶𐌴𐌹", "", "", "", "dative of 𐌾𐌿𐌶𐌴𐌹"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌰𐌽𐌷𐌿𐌽", "pron", "𐌼𐌰𐌽𐌽𐌰𐌽𐌷𐌿𐌽", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐍃𐌷𐌿𐌽", "pron", "𐌼𐌰𐌽𐍃𐌷𐌿𐌽", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["𐌼𐌰𐌽𐌽𐌷𐌿𐌽", "pron", "𐌼𐌰𐌽𐌽𐌷𐌿𐌽", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["𐌸𐌿𐌶𐌴𐌹", "pron", "𐌸𐌿𐌶𐌴𐌹", "", "", "", "dative of 𐌸𐌿𐌴𐌹"]) + let v = native_list_append(v, ["𐌸𐌹𐌶𐌴𐌹𐌴𐌹", "pron", "𐌸𐌹𐌶𐌴𐌹𐌴𐌹", "", "", "", "misspelling of 𐌸𐌹𐌶𐌴𐌴𐌹"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐌶𐌿𐌷", "pron", "𐌸𐌹𐍃𐍈𐌰𐌶𐌿𐌷", "", "", "", "whoever whosoever anyone"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐌽𐍉𐌷", "pron", "𐌸𐌹𐍃𐍈𐌰𐌽𐍉𐌷", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌹𐌶𐌿𐌷", "pron", "𐌸𐌹𐍃𐍈𐌹𐌶𐌿𐌷", "", "", "", "genitive masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐌼𐌼𐌴𐌷", "pron", "𐌸𐌹𐍃𐍈𐌰𐌼𐌼𐌴𐌷", "", "", "", "dative masculine/neuter singular"]) + let v = native_list_append(v, ["𐌸𐌹𐍃𐍈𐌰𐌷", "pron", "𐌸𐌹𐍃𐍈𐌰𐌷", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["𐍃𐌰𐍈𐌰𐌶𐌿𐌷", "pron", "𐍃𐌰𐍈𐌰𐌶𐌿𐌷", "", "", "", "whoever whosoever followed"]) + let v = native_list_append(v, ["𐍃𐌴𐌹", "pron", "𐍃𐌴𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌴", "pron", "𐌸𐌰𐌽𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌰𐌹𐌽", "pron", "𐌸𐌰𐍄𐌰𐌹𐌽", "", "", "", "the one thing"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌰𐍈𐌰𐌷", "pron", "𐌸𐌰𐍄𐌰𐍈𐌰𐌷", "", "", "", "whatever whatsoever followed"]) + let v = native_list_append(v, ["𐌸𐌿𐌺𐌴𐌹", "pron", "𐌸𐌿𐌺𐌴𐌹", "", "", "", "accusative of 𐌸𐌿𐌴𐌹"]) + let v = native_list_append(v, ["𐌰𐌸𐌸𐌰𐌽", "conj", "𐌰𐌸𐌸𐌰𐌽", "", "", "", "but but then"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌳𐌴", "conj", "𐌸𐌰𐌽𐌳𐌴", "", "", "", "while as long"]) + let v = native_list_append(v, ["𐌰𐌻𐌾𐌰", "conj", "𐌰𐌻𐌾𐌰", "", "", "", "than except unless"]) + let v = native_list_append(v, ["𐌾𐌰𐌷", "conj", "𐌾𐌰𐌷", "", "", "", "and"]) + let v = native_list_append(v, ["𐌹𐌸", "conj", "𐌹𐌸", "", "", "", "but however though"]) + let v = native_list_append(v, ["-𐌿𐌷", "conj", "-𐌿𐌷", "", "", "", "and"]) + let v = native_list_append(v, ["𐌰𐌺", "conj", "𐌰𐌺", "", "", "", "but however"]) + let v = native_list_append(v, ["𐌽𐌿", "conj", "𐌽𐌿", "", "", "", "and so so"]) + let v = native_list_append(v, ["𐍃𐍅𐌴", "conj", "𐍃𐍅𐌴", "", "", "", "like similar to"]) + let v = native_list_append(v, ["𐌰𐌿𐌺", "conj", "𐌰𐌿𐌺", "", "", "", "for because"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐍃𐍅𐌴", "conj", "𐍃𐍅𐌰𐍃𐍅𐌴", "", "", "", "so that"]) + let v = native_list_append(v, ["𐌰𐌺𐌴𐌹", "conj", "𐌰𐌺𐌴𐌹", "", "", "", "but"]) + let v = native_list_append(v, ["𐌸𐌰𐍄𐌴𐌹", "conj", "𐌸𐌰𐍄𐌴𐌹", "", "", "", "that"]) + let v = native_list_append(v, ["𐌿𐌽𐍄𐌴", "conj", "𐌿𐌽𐍄𐌴", "", "", "", "until as long"]) + let v = native_list_append(v, ["𐌰𐌹𐌸𐌸𐌰𐌿", "conj", "𐌰𐌹𐌸𐌸𐌰𐌿", "", "", "", "or"]) + let v = native_list_append(v, ["𐌾𐌰𐌱𐌰𐌹", "conj", "𐌾𐌰𐌱𐌰𐌹", "", "", "", "if"]) + let v = native_list_append(v, ["𐌹𐌱𐌰", "conj", "𐌹𐌱𐌰", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌹𐌱𐌰𐌹", "conj", "𐌹𐌱𐌰𐌹", "", "", "", "lest"]) + let v = native_list_append(v, ["𐌽𐌿𐌽𐌿", "conj", "𐌽𐌿𐌽𐌿", "", "", "", "now then therefore"]) + let v = native_list_append(v, ["𐌰𐌺𐌴", "conj", "𐌰𐌺𐌴", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐌴𐌹𐌸𐌰𐌽", "conj", "𐌴𐌹𐌸𐌰𐌽", "", "", "", "for which reason"]) + let v = native_list_append(v, ["𐌰𐌽𐌳𐌹𐌶𐌿𐌷", "conj", "𐌰𐌽𐌳𐌹𐌶𐌿𐌷", "", "", "", "either introduces the"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌴", "conj", "𐌱𐌹𐌸𐌴", "", "", "", "when as"]) + let v = native_list_append(v, ["𐌱𐌹𐌸𐌴𐌷", "conj", "𐌱𐌹𐌸𐌴𐌷", "", "", "", "when"]) + let v = native_list_append(v, ["𐍂𐌰𐌹𐌷𐍄𐌹𐍃", "conj", "𐍂𐌰𐌹𐌷𐍄𐌹𐍃", "", "", "", "truly indeed difficult-to-translate"]) + let v = native_list_append(v, ["𐌸𐌰𐌿", "conj", "𐌸𐌰𐌿", "", "", "", "or instead"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌸𐌹𐌶𐌴𐌹", "conj", "𐍆𐌰𐌿𐍂𐌸𐌹𐌶𐌴𐌹", "", "", "", "before"]) + let v = native_list_append(v, ["𐍆𐌰𐌿𐍂𐌸𐌹𐌶𐌴", "conj", "𐍆𐌰𐌿𐍂𐌸𐌹𐌶𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐌷𐌾𐌰𐌱𐌰𐌹", "conj", "𐌸𐌰𐌿𐌷𐌾𐌰𐌱𐌰𐌹", "", "", "", "even though"]) + let v = native_list_append(v, ["𐌸𐌰𐌿𐌷", "conj", "𐌸𐌰𐌿𐌷", "", "", "", "though"]) + let v = native_list_append(v, ["𐍃𐍅𐌰𐌴𐌹", "conj", "𐍃𐍅𐌰𐌴𐌹", "", "", "", "so that insomuch"]) + let v = native_list_append(v, ["𐌸𐌴𐌹", "conj", "𐌸𐌴𐌹", "", "", "", "that so that"]) + let v = native_list_append(v, ["𐌽𐌹𐌷", "conj", "𐌽𐌹𐌷", "", "", "", "and not neither"]) + let v = native_list_append(v, ["𐌸𐌰𐌽𐌳𐌴𐌹", "conj", "𐌸𐌰𐌽𐌳𐌴𐌹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌾𐌰𐌸𐌸𐌴", "conj", "𐌾𐌰𐌸𐌸𐌴", "", "", "", "if and if"]) + let v = native_list_append(v, ["𐌽𐌿𐌷", "conj", "𐌽𐌿𐌷", "", "", "", "then therefore"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌸𐌰𐌽𐌴𐌹", "conj", "𐌼𐌹𐌸𐌸𐌰𐌽𐌴𐌹", "", "", "", "while as"]) + let v = native_list_append(v, ["𐌼𐌹𐌸𐌸𐌰𐌽𐌴", "conj", "𐌼𐌹𐌸𐌸𐌰𐌽𐌴", "", "", "", "misspelling of 𐌼𐌹𐌸𐌸𐌰𐌽𐌴𐌹"]) + let v = native_list_append(v, ["𐌽𐌹𐌱𐌰", "conj", "𐌽𐌹𐌱𐌰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌽𐌹𐌱𐌰𐌹", "conj", "𐌽𐌹𐌱𐌰𐌹", "", "", "", "if…not though…not unless"]) + let v = native_list_append(v, ["𐍃𐌿𐌽𐍃𐌴𐌹", "conj", "𐍃𐌿𐌽𐍃𐌴𐌹", "", "", "", "as soon as"]) + let v = native_list_append(v, ["𐌽𐌹𐌸𐌸𐌰𐌽", "conj", "𐌽𐌹𐌸𐌸𐌰𐌽", "", "", "", "and not neither"]) + let v = native_list_append(v, ["𐌾𐌰𐌷 𐌸𐌴", "conj", "𐌾𐌰𐌷 𐌸𐌴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐌸𐌴𐌴𐌹", "conj", "𐌸𐌴𐌴𐌹", "", "", "", "in order that"]) + return v +} + +fn vocab_got_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_got_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-grc.el b/elp/src/vocabulary-grc.el new file mode 100644 index 0000000..5dc99c5 --- /dev/null +++ b/elp/src/vocabulary-grc.el @@ -0,0 +1,12231 @@ +// vocabulary-grc.el — Ancient Greek vocabulary seed +// 12210 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 62896 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_grc_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["σκύλος", "noun", "σκῠ́λη", "σκῠ́λεος", "σκῠ́λει", "", "skin hide"]) + let v = native_list_append(v, ["κύων", "noun", "αἱ κῠ́νες", "κῠνός", "τῇ κῠνῐ́", "", "a dog"]) + let v = native_list_append(v, ["Κύπρος", "noun", "Κύπρος", "Κῠ́πρου", "Κῠ́πρῳ", "", "Cyprus an island"]) + let v = native_list_append(v, ["λύκος", "noun", "λῠ́κοι", "λῠ́κου", "λῠ́κῳ", "", "wolf"]) + let v = native_list_append(v, ["δημοκρατία", "noun", "δημοκρᾰτῐ́αι", "δημοκρᾰτῐ́ᾱς", "δημοκρᾰτῐ́ᾳ", "", "democracy popular government"]) + let v = native_list_append(v, ["νίκη", "noun", "νῖκαι", "νῑ́κης", "νῑ́κῃ", "", "the act of"]) + let v = native_list_append(v, ["μύκης", "noun", "μῠ́κητες", "μῠ́κητος", "μῠ́κητῐ", "", "mushroom or other"]) + let v = native_list_append(v, ["μέλι", "noun", "μέλῐτᾰ", "μέλῐτος", "μέλῐτῐ", "", "honey"]) + let v = native_list_append(v, ["χώρα", "noun", "χῶραι", "χώρᾱς", "χώρᾳ", "", "location place spot"]) + let v = native_list_append(v, ["φῶς", "noun", "φῶτᾰ", "φωτός", "φωτῐ́", "", "Attic form of"]) + let v = native_list_append(v, ["κόσμος", "noun", "κόσμοι", "κόσμου", "κόσμῳ", "", "order"]) + let v = native_list_append(v, ["μηχανή", "noun", "μηχᾰναί", "μηχᾰνῆς", "μηχᾰνῇ", "", "contrivance machine device"]) + let v = native_list_append(v, ["Μακεδονία", "noun", "Μακεδονία", "Μᾰκεδονῐ́ᾱς", "Μᾰκεδονῐ́ᾳ", "", "Macedon Macedonia an"]) + let v = native_list_append(v, ["μουσική", "noun", "μουσῐκαί", "μουσῐκῆς", "μουσῐκῇ", "", "any of the"]) + let v = native_list_append(v, ["χάλιξ", "noun", "αἱ χᾰ́λῐκες", "χᾰ́λῐκος", "τῇ χᾰ́λῐκῐ", "", "small stone pebble"]) + let v = native_list_append(v, ["μελῳδία", "noun", "μελῳδῐ́αι", "μελῳδῐ́ᾱς", "μελῳδῐ́ᾳ", "", "song singing chant"]) + let v = native_list_append(v, ["βασιλεύς", "noun", "βᾰσῐλῆς", "βᾰσῐλέως", "βᾰσῐλεῖ", "", "chief master"]) + let v = native_list_append(v, ["ἵππος", "noun", "αἱ ῐ̔́πποι", "ῐ̔́ππου", "τῇ ῐ̔́ππῳ", "", "a horse feminine"]) + let v = native_list_append(v, ["θάλασσα", "noun", "θᾰ́λᾰσσαι", "θᾰλᾰ́σσης", "θᾰλᾰ́σσῃ", "", "sea"]) + let v = native_list_append(v, ["ἐρώμενος", "noun", "ἐρώμενοι", "ἐρωμένου", "ἐρωμένῳ", "", "he who is"]) + let v = native_list_append(v, ["ἐραστής", "noun", "ἐρᾰσταί", "ἐρᾰστοῦ", "ἐρᾰστῇ", "", "lover erastes"]) + let v = native_list_append(v, ["παιδιά", "noun", "παιδῐαί", "παιδῐᾶς", "παιδῐᾷ", "", "childish play fun"]) + let v = native_list_append(v, ["ἀνήρ", "noun", "ᾰ̓́νδρες", "ᾰ̓νδρός", "ᾰ̓νδρῐ́", "", "man adult male"]) + let v = native_list_append(v, ["σπόγγος", "noun", "σπόγγοι", "σπόγγου", "σπόγγῳ", "", "sponge"]) + let v = native_list_append(v, ["λεπίδα", "noun", "λεπίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["βασίλεια", "noun", "βᾰσῐ́λειαι", "βᾰσῐλείᾱς", "βᾰσῐλείᾳ", "", "queen"]) + let v = native_list_append(v, ["γῆ", "noun", "γαῖ", "γῆς", "γῇ", "", "earth land"]) + let v = native_list_append(v, ["δίνη", "noun", "δῖναι", "δῑ́νης", "δῑ́νῃ", "", "whirlpool eddy"]) + let v = native_list_append(v, ["κόρη", "noun", "κόραι", "κόρης", "κόρῃ", "", "girl young woman"]) + let v = native_list_append(v, ["ἄγγελος", "noun", "ἄγγελοι", "ᾰ̓γγέλου", "ἀγγέλῳ", "", "a messenger"]) + let v = native_list_append(v, ["ἄνθρωπος", "noun", "αἱ ᾰ̓́νθρωποι", "ᾰ̓νθρώπου", "τῇ ᾰ̓νθρώπῳ", "", "human being person"]) + let v = native_list_append(v, ["τέρας", "noun", "τέρᾰτᾰ", "τέρᾰτος", "τέρᾰτῐ", "", "sign marvel wonder"]) + let v = native_list_append(v, ["πίθηκος", "noun", "πῐ́θηκοι", "πῐθήκου", "πῐθήκῳ", "", "ape monkey"]) + let v = native_list_append(v, ["λαιμός", "noun", "λαιμοί", "λαιμοῦ", "λαιμῷ", "", "throat gullet"]) + let v = native_list_append(v, ["διάβολος", "noun", "δῐᾰ́βολοι", "δῐᾰβόλου", "δῐᾰβόλῳ", "", "slanderer"]) + let v = native_list_append(v, ["κόρος", "noun", "κόροι", "κόρου", "κόρῳ", "", "boy youth"]) + let v = native_list_append(v, ["ὑποκρίσει", "noun", "ὑποκρίσει", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Λέσβος", "noun", "Λέσβος", "Λέσβου", "Λέσβῳ", "", "Lesbos"]) + let v = native_list_append(v, ["Χριστός", "noun", "Χρῑστοί", "Χρῑστοῦ", "Χρῑστῷ", "", "Messiah or Christ"]) + let v = native_list_append(v, ["Ζεύς", "noun", "Ζεύς", "Δῐός", "Δῐῐ̈́", "", "Zeus"]) + let v = native_list_append(v, ["Παρασκευή", "noun", "Παρασκευή", "Πᾰρᾰσκευῆς", "Πᾰρᾰσκευῇ", "", "Friday day of"]) + let v = native_list_append(v, ["Κυριακή", "noun", "Κυριακή", "", "", "", "Sunday Lords Day"]) + let v = native_list_append(v, ["γράμμα", "noun", "γρᾰ́μμᾰτᾰ", "γρᾰ́μμᾰτος", "γρᾰ́μμᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["γραμματική", "noun", "γρᾰμμᾰτῐκαί", "γρᾰμμᾰτῐκῆς", "γρᾰμμᾰτῐκῇ", "", "animate senses"]) + let v = native_list_append(v, ["φόβος", "noun", "φόβοι", "φόβου", "φόβῳ", "", "fear terror alarm"]) + let v = native_list_append(v, ["ἄστρον", "noun", "ᾰ̓́στρᾰ", "ᾰ̓́στρου", "ᾰ̓́στρῳ", "", "A celestial body"]) + let v = native_list_append(v, ["μαστός", "noun", "μᾰστοί", "μᾰστοῦ", "μᾰστῷ", "", "a breast organ"]) + let v = native_list_append(v, ["παῖς", "noun", "αἱ παῖδες", "παιδός", "τῇ παιδῐ́", "", "child"]) + let v = native_list_append(v, ["φιλία", "noun", "φῐλῐ́αι", "φῐλῐ́ᾱς", "φῐλῐ́ᾳ", "", "friendship love affection"]) + let v = native_list_append(v, ["Γῆ", "noun", "Γῆ", "Γῆς", "Γῇ", "", "the Earth personified"]) + let v = native_list_append(v, ["Νίκη", "noun", "Νίκη", "Νῑ́κης", "Νῑ́κῃ", "", "Nike"]) + let v = native_list_append(v, ["ἄλφα", "noun", "ἄλφα", "", "", "", "alpha the name"]) + let v = native_list_append(v, ["κλέος", "noun", "κλέος", "*κλέεος", "", "", "rumour report"]) + let v = native_list_append(v, ["πατέρας", "noun", "πατέρας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δέρμα", "noun", "δέρμᾰτᾰ", "δέρμᾰτος", "δέρμᾰτῐ", "", "skin hide"]) + let v = native_list_append(v, ["μητέρα", "noun", "μητέρα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["κόλπος", "noun", "κόλποι", "κόλπου", "κόλπῳ", "", "bosom lap"]) + let v = native_list_append(v, ["γάμμα", "noun", "γάμμα", "", "", "", "gamma the name"]) + let v = native_list_append(v, ["δέλτα", "noun", "δέλτα", "", "", "", "delta the name"]) + let v = native_list_append(v, ["σίγμα", "noun", "σῑ́γμᾰτᾰ", "σῑ́γμᾰτος", "σῑ́γμᾰτῐ", "", "alternative form of"]) + let v = native_list_append(v, ["Κρήτη", "noun", "Κρήτη", "Κρήτης", "Κρήτῃ", "", "Crete."]) + let v = native_list_append(v, ["δρόμος", "noun", "δρόμοι", "δρόμου", "δρόμῳ", "", "race running"]) + let v = native_list_append(v, ["πνεῦμα", "noun", "πνεύμᾰτᾰ", "πνεύματος", "πνεύμᾰτῐ", "", "air"]) + let v = native_list_append(v, ["Ἰησοῦς", "noun", "Ἰησοῦς", "Ῐ̓ησοῦ", "Ῐ̓ησοῖ", "", "Jesus Jeshua Yeshua"]) + let v = native_list_append(v, ["κύριος", "noun", "κῡ́ρῐοι", "κῡρῐ́ου", "κῡρῐ́ῳ", "", "lord master guardian"]) + let v = native_list_append(v, ["θεός", "noun", "θεοί", "θεοῦ", "θεῷ", "", "a deity a"]) + let v = native_list_append(v, ["Μαρία", "noun", "Μαρία", "Μᾰρῐ́ᾱς", "Μᾰρῐ́ᾳ", "", "Mary Maria"]) + let v = native_list_append(v, ["ἅγιος", "noun", "ᾰ̔́γῐοι", "ᾰ̔γῐ́ου", "ᾰ̔γῐ́ῳ", "", "a Christian"]) + let v = native_list_append(v, ["Ἰσραήλ", "noun", "Ἰσραήλ", "", "", "", "Israel a name"]) + let v = native_list_append(v, ["θάνατος", "noun", "θᾰ́νᾰτοι", "θᾰνᾰ́του", "θᾰνᾰ́τῳ", "", "death"]) + let v = native_list_append(v, ["Ναζαρέθ", "noun", "Ναζαρέθ", "Νᾱζᾰρέθ", "Νᾱζᾰρέθ", "", "alternative form of"]) + let v = native_list_append(v, ["Δαβίδ", "noun", "Δαβίδ", "", "", "", "David"]) + let v = native_list_append(v, ["Ἰωσήφ", "noun", "Ἰωσήφ", "", "", "", "Joseph eleventh and"]) + let v = native_list_append(v, ["παιδίον", "noun", "παιδῐ́ᾰ", "παιδῐ́ου", "παιδῐ́ῳ", "", "little child young"]) + let v = native_list_append(v, ["Ἱερουσαλήμ", "noun", "Ῐ̔ερουσᾱλήμ", "", "", "", "Jerusalem a city"]) + let v = native_list_append(v, ["ἔθνος", "noun", "ἔθνη", "ἔθνεος", "ἔθνει", "", "group of people"]) + let v = native_list_append(v, ["μήτηρ", "noun", "μητέρες", "μητέρος", "μητρῐ́", "", "mother"]) + let v = native_list_append(v, ["πατήρ", "noun", "πᾰτέρες", "πᾰτρός", "πᾰτρῐ́", "", "father"]) + let v = native_list_append(v, ["σοφία", "noun", "σοφῐ́αι", "σοφῐ́ᾱς", "σοφῐ́ᾳ", "", "skill in a"]) + let v = native_list_append(v, ["Ζαχαρίας", "noun", "Ζαχαρίας", "Ζαχαρίου", "Ζαχαρίᾳ", "", "Zechariah"]) + let v = native_list_append(v, ["βίβλος", "noun", "βῐ́βλοι", "βῐ́βλου", "βῐ́βλῳ", "", "Attic form of"]) + let v = native_list_append(v, ["λόγος", "noun", "λόγοι", "λόγου", "λόγῳ", "", "that which is"]) + let v = native_list_append(v, ["προφήτης", "noun", "προφῆται", "προφήτου", "προφήτῃ", "", "one who speaks"]) + let v = native_list_append(v, ["φωνή", "noun", "φωναί", "φωνῆς", "φωνῇ", "", "sound"]) + let v = native_list_append(v, ["βάπτισμα", "noun", "βαπτίσμᾰτᾰ", "βαπτίσματος", "βαπτίσμᾰτῐ", "", "baptism"]) + let v = native_list_append(v, ["ἡγεμονία", "noun", "ἡγεμονῐ́αι", "ἡγεμονῐ́ᾱς", "ἡγεμονῐ́ᾳ", "", "the act of"]) + let v = native_list_append(v, ["ἀγάπη", "noun", "ᾰ̓γᾰ́παι", "ᾰ̓γᾰ́πης", "ᾰ̓γᾰ́πῃ", "", "love affection esteem"]) + let v = native_list_append(v, ["δένδρον", "noun", "δένδρᾰ", "δένδρου", "δένδρῳ", "", "tree"]) + let v = native_list_append(v, ["ἰατρός", "noun", "ῑ̓ᾱτροί", "ῑ̓ᾱτροῦ", "ῑ̓ᾱτρῷ", "", "physician surgeon medical"]) + let v = native_list_append(v, ["πόλις", "noun", "πόλεις", "πόλεως", "πόλει", "", "city"]) + let v = native_list_append(v, ["Ἰωάννης", "noun", "Ἰωάννης", "Ῐ̓ωᾰ́ννου", "Ῐ̓ωᾰ́ννῃ", "", "a male given"]) + let v = native_list_append(v, ["κεφαλή", "noun", "κεφᾰλαί", "κεφᾰλῆς", "κεφᾰλῇ", "", "head"]) + let v = native_list_append(v, ["πέτρα", "noun", "πέτραι", "πέτρᾱς", "πέτρᾳ", "", "rock formation cliff"]) + let v = native_list_append(v, ["σπόρος", "noun", "σπόροι", "σπόρου", "σπόρῳ", "", "a sowing"]) + let v = native_list_append(v, ["ἡδονή", "noun", "ἡδοναί", "ἡδονῆς", "ἡδονῇ", "", "delight pleasure enjoyment"]) + let v = native_list_append(v, ["καρδία", "noun", "κᾰρδῐ́αι", "κᾰρδῐ́ᾱς", "κᾰρδῐ́ᾳ", "", "heart as the"]) + let v = native_list_append(v, ["πλῆθος", "noun", "πλήθη", "πλήθεος", "πλήθει", "", "a large number"]) + let v = native_list_append(v, ["Γαβριήλ", "noun", "Γαβριήλ", "", "", "", "a male given"]) + let v = native_list_append(v, ["γαστήρ", "noun", "γᾰστέρες", "γᾰστέρος", "γᾰστέρῐ", "", "paunch belly hollow"]) + let v = native_list_append(v, ["Γαλιλαία", "noun", "Γαλιλαία", "Γᾰλῑλαίᾱς", "Γᾰλῑλαίᾳ", "", "Galilee a mountainous"]) + let v = native_list_append(v, ["Ἀβραάμ", "noun", "Ἀβραάμ", "", "", "", "Abraham"]) + let v = native_list_append(v, ["στόμα", "noun", "στόμᾰτᾰ", "στόμᾰτος", "στόμᾰτῐ", "", "mouth especially as"]) + let v = native_list_append(v, ["ἀρχή", "noun", "ᾰ̓ρχαί", "ᾰ̓ρχῆς", "ᾰ̓ρχῇ", "", "beginning origin"]) + let v = native_list_append(v, ["τέλος", "noun", "τέλη", "τέλους", "τέλει", "", "aim purpose end"]) + let v = native_list_append(v, ["Ἔφεσος", "noun", "Ἔφεσος", "Ἐφέσου", "Ἐφέσῳ", "", "Ephesus an ancient"]) + let v = native_list_append(v, ["Ἀσία", "noun", "Ἀσία", "Ᾰ̓σῐ́ᾱς", "Ᾰ̓σῐ́ᾳ", "", "Anatolia Asia Minor"]) + let v = native_list_append(v, ["Φιλαδέλφεια", "noun", "Φιλαδέλφεια", "Φῐλᾰδελφείᾱς", "Φῐλᾰδελφείᾳ", "", "Philadelphia the name"]) + let v = native_list_append(v, ["ἐκκλησία", "noun", "ἐκκλησῐ́αι", "ἐκκλησῐ́ᾱς", "ἐκκλησῐ́ᾳ", "", "assembly"]) + let v = native_list_append(v, ["ᾍδης", "noun", "ᾍδης", "ᾍδου", "ᾍδῃ", "", "Hades Greek god"]) + let v = native_list_append(v, ["μυστήριον", "noun", "μῠστήρῐᾰ", "μῠστηρῐ́ου", "μῠστηρῐ́ῳ", "", "revealed secret"]) + let v = native_list_append(v, ["καιρός", "noun", "καιροί", "καιροῦ", "καιρῷ", "", "measure proportion fitness"]) + let v = native_list_append(v, ["νεκρός", "noun", "νεκροί", "νεκροῦ", "νεκρῷ", "", "a dead body"]) + let v = native_list_append(v, ["ὀφθαλμός", "noun", "ὀφθᾰλμοί", "ὀφθᾰλμοῦ", "ὀφθᾰλμῷ", "", "eye"]) + let v = native_list_append(v, ["ἀστήρ", "noun", "ᾰ̓στέρες", "ᾰ̓στέρος", "ᾰ̓στέρῐ", "", "a celestial body"]) + let v = native_list_append(v, ["πεντηκοστή", "noun", "πεντηκοσταί", "πεντηκοστῆς", "πεντηκοστῇ", "", "Pentecost - From"]) + let v = native_list_append(v, ["Ἰουδαία", "noun", "Ῐ̓ουδαῖαι", "Ῐ̓ουδαίᾱς", "Ῐ̓ουδαίᾳ", "", "Jewess substantive form"]) + let v = native_list_append(v, ["Καππαδοκία", "noun", "Καππαδοκία", "Καππαδοκῐ́ᾱς", "Καππαδοκῐ́ᾳ", "", "Cappadocia a historical"]) + let v = native_list_append(v, ["Λιβύη", "noun", "Λιβύη", "Λῐβῠ́ης", "Λῐβῠ́ῃ", "", "North Africa"]) + let v = native_list_append(v, ["Κυρήνη", "noun", "Κυρήνη", "Κῡρήνης", "Κῡρήνῃ", "", "Cyrene an ancient"]) + let v = native_list_append(v, ["ψυχή", "noun", "ψῡχαί", "ψῡχῆς", "ψῡχῇ", "", "The animating principle"]) + let v = native_list_append(v, ["ἀπόστολος", "noun", "ᾰ̓πόστολοι", "ᾰ̓ποστόλου", "ᾰ̓ποστόλῳ", "", "one who is"]) + let v = native_list_append(v, ["Κρής", "noun", "Κρῆτες", "Κρητός", "Κρητῐ́", "", "Cretan"]) + let v = native_list_append(v, ["Παῦλος", "noun", "Παῦλος", "Παύλου", "Παύλῳ", "", "Paul a common"]) + let v = native_list_append(v, ["γνῶσις", "noun", "γνώσεις", "γνώσεως", "γνώσει", "", "inquiry"]) + let v = native_list_append(v, ["ἀσθένεια", "noun", "ἀσθένειαι", "ἀσθενείᾱς", "ἀσθενείᾳ", "", "weakness"]) + let v = native_list_append(v, ["μάχαιρα", "noun", "μᾰ́χαιραι", "μᾰχαίρᾱς", "μᾰχαίρᾳ", "", "large knife short"]) + let v = native_list_append(v, ["προφητεία", "noun", "προφητεῖαι", "προφητείᾱς", "προφητείᾳ", "", "the interpretation of"]) + let v = native_list_append(v, ["κυβέρνησις", "noun", "κῠβερνήσεις", "κῠβερνήσεως", "κῠβερνήσει", "", "steering pilotage"]) + let v = native_list_append(v, ["χάρισμα", "noun", "χᾰρῐ́σμᾰτᾰ", "χᾰρῐ́σμᾰτος", "χᾰρῐ́σμᾰτῐ", "", "a favourable disposition"]) + let v = native_list_append(v, ["Ἕλλην", "noun", "Ἕλληνες", "Ἕλληνος", "Ἕλληνῐ", "", "Greek a person"]) + let v = native_list_append(v, ["Ῥώμη", "noun", "Ῥώμη", "Ῥώμης", "Ῥώμῃ", "", "Rome a major"]) + let v = native_list_append(v, ["πορνεία", "noun", "πορνεῖαι", "πορνείᾱς", "πορνείᾳ", "", "prostitution whoring provision"]) + let v = native_list_append(v, ["σκληρότης", "noun", "σκληρότητες", "σκληρότητος", "σκληρότητῐ", "", "hardness rigidity"]) + let v = native_list_append(v, ["ἀποκάλυψις", "noun", "ᾰ̓ποκᾰλῠ́ψεις", "ᾰ̓ποκᾰλῠ́ψεως", "ᾰ̓ποκᾰλῠ́ψει", "", "uncovering revelation disclosure"]) + let v = native_list_append(v, ["ἡμέρα", "noun", "ἡμέραι", "ἡμέρᾱς", "ἡμέρᾳ", "", "day"]) + let v = native_list_append(v, ["ζωή", "noun", "ζωαί", "ζωῆς", "ζωῇ", "", "a living property"]) + let v = native_list_append(v, ["Ἰουδαῖος", "noun", "Ἰουδαῖοι", "Ῐ̓ουδαίου", "Ἰουδαίῳ", "", "Jew or Judean"]) + let v = native_list_append(v, ["νόμος", "noun", "νόμοι", "νόμου", "νόμῳ", "", "usage custom"]) + let v = native_list_append(v, ["ποιητής", "noun", "ποιηταί", "ποιητοῦ", "ποιητῇ", "", "A maker inventor"]) + let v = native_list_append(v, ["λογισμός", "noun", "λογῐσμοί", "λογῐσμοῦ", "λογῐσμῷ", "", "calculation computation"]) + let v = native_list_append(v, ["ἔργον", "noun", "ἔργᾰ", "ἔργου", "ἔργῳ", "", "work labour task"]) + let v = native_list_append(v, ["διδάσκαλος", "noun", "αἱ δῐδᾰ́σκᾰλοι", "δῐδᾰσκᾰ́λου", "τῇ δῐδᾰσκᾰ́λῳ", "", "teacher master director"]) + let v = native_list_append(v, ["μόρφωσις", "noun", "μορφώσεις", "μορφώσεως", "μορφώσει", "", "shaping"]) + let v = native_list_append(v, ["ἀλήθεια", "noun", "ᾰ̓λήθειαι", "ἀληθείας", "ᾰ̓ληθείᾳ", "", "not a lie"]) + let v = native_list_append(v, ["εἴδωλον", "noun", "εἴδωλᾰ", "εἰδώλου", "εἰδώλῳ", "", "phantom ghost"]) + let v = native_list_append(v, ["περιτομή", "noun", "περῐτομαί", "περῐτομῆς", "περῐτομῇ", "", "circular incision"]) + let v = native_list_append(v, ["φύσις", "noun", "φῠ́σεις", "φῠ́σεως", "φῠ́σει", "", "origin birth"]) + let v = native_list_append(v, ["σάρξ", "noun", "σᾰ́ρκες", "σᾰρκός", "σᾰρκῐ́", "", "the material which"]) + let v = native_list_append(v, ["Ἀράμ", "noun", "Ἀράμ", "", "", "", "Aram an Israelite"]) + let v = native_list_append(v, ["Ἰσαάκ", "noun", "Ἰσαάκ", "", "", "", "Isaac"]) + let v = native_list_append(v, ["Ἰακώβ", "noun", "Ἰακώβ", "", "", "", "Jacob"]) + let v = native_list_append(v, ["Βαβυλών", "noun", "Βαβυλών", "Βᾰβῠλῶνος", "Βᾰβῠλῶνῐ", "", "Babel"]) + let v = native_list_append(v, ["Ἐμμανουήλ", "noun", "Ἐμμανουήλ", "", "", "", "Emmanuel a term"]) + let v = native_list_append(v, ["ὕπνος", "noun", "ῠ̔́πνοι", "ῠ̔́πνου", "ῠ̔́πνῳ", "", "sleep slumber"]) + let v = native_list_append(v, ["γυνή", "noun", "γῠναῖκες", "γῠναικός", "γῠναικῐ́", "", "woman female"]) + let v = native_list_append(v, ["Βηθλεέμ", "noun", "Βηθλεέμ", "", "", "", "Bethlehem a city"]) + let v = native_list_append(v, ["Ἱεροσόλυμα", "noun", "Ῐ̔εροσόλῠμᾰ", "Ῐ̔εροσολῠ́μων", "Ῐ̔εροσολῠ́μοις", "", "Jerusalem a city"]) + let v = native_list_append(v, ["Ἡρῴδης", "noun", "Ἡρῴδης", "Ἡρῴδου", "Ἡρῴδῃ", "", "Herod the name"]) + let v = native_list_append(v, ["ἀρχιερεύς", "noun", "ἀρχιερῆς", "ἀρχιερέως", "ἀρχιερεῖ", "", "chief priest high"]) + let v = native_list_append(v, ["γραμματεύς", "noun", "γραμμᾰτῆς", "γραμματέως", "γραμμᾰτεῖ", "", "secretary registrar clerk"]) + let v = native_list_append(v, ["ἡγεμών", "noun", "αἱ ἡγεμόνες", "ἡγεμόνος", "τῇ ἡγεμόνῐ", "", "one who goes"]) + let v = native_list_append(v, ["μάγος", "noun", "μᾰ́γοι", "μάγου", "μᾰ́γῳ", "", "magician and derogatorily"]) + let v = native_list_append(v, ["χρόνος", "noun", "χρόνοι", "χρόνου", "χρόνῳ", "", "time in the"]) + let v = native_list_append(v, ["οὐρανός", "noun", "οὐρᾰνοί", "οὐρᾰνοῦ", "οὐρᾰνῷ", "", "the vaulted sky"]) + let v = native_list_append(v, ["Φαρισαῖος", "noun", "Φαρισαῖοι", "Φαρισαίου", "Φαρισαίῳ", "", "Pharisee a member"]) + let v = native_list_append(v, ["κρίσις", "noun", "κρῐ́σεις", "κρῐ́σεως", "κρῐ́σει", "", "decision determination judgment"]) + let v = native_list_append(v, ["συνέδριον", "noun", "σῠνέδρῐᾰ", "σῠνεδρῐ́ου", "σῠνεδρῐ́ῳ", "", "council advising or"]) + let v = native_list_append(v, ["γέεννα", "noun", "γέενναι", "γεέννης", "γεέννῃ", "", "Gehenna"]) + let v = native_list_append(v, ["σκάνδαλον", "noun", "σκᾰ́νδᾰλᾰ", "σκᾰνδᾰ́λου", "σκᾰνδᾰ́λῳ", "", "trap snare"]) + let v = native_list_append(v, ["σῶμα", "noun", "σώμᾰτᾰ", "σώμᾰτος", "σώμᾰτῐ", "", "body both that"]) + let v = native_list_append(v, ["θρόνος", "noun", "θρόνοι", "θρόνου", "θρόνῳ", "", "seat"]) + let v = native_list_append(v, ["ὀδούς", "noun", "ὀδόντες", "ὀδόντος", "ὀδόντῐ", "", "tooth tusk"]) + let v = native_list_append(v, ["ἥλιος", "noun", "ἥλῐοι", "ἡλῐ́ου", "ἡλῐ́ῳ", "", "sun"]) + let v = native_list_append(v, ["ἐλεημοσύνη", "noun", "ἐλεημοσῠ́ναι", "ἐλεημοσῠ́νης", "ἐλεημοσῠ́νῃ", "", "pity mercy"]) + let v = native_list_append(v, ["ὑποκριτής", "noun", "ῠ̔ποκρῐταί", "ῠ̔ποκρῐτοῦ", "ῠ̔ποκρῐτῇ", "", "one who answers"]) + let v = native_list_append(v, ["συναγωγή", "noun", "σῠνᾰγωγαί", "σῠνᾰγωγῆς", "σῠνᾰγωγῇ", "", "gathering collection"]) + let v = native_list_append(v, ["θησαυρός", "noun", "θησαυροί", "θησαυροῦ", "θησαυρῷ", "", "treasure"]) + let v = native_list_append(v, ["κλέπτης", "noun", "κλέπται", "κλέπτου", "κλέπτῃ", "", "thief"]) + let v = native_list_append(v, ["μαμμωνᾶς", "noun", "μαμμωναῖ", "μαμμωνᾶ", "μαμμωνᾷ", "", "alternative form of"]) + let v = native_list_append(v, ["ἀγρός", "noun", "ᾰ̓γροί", "ᾰ̓γροῦ", "ᾰ̓γρῷ", "", "field land countryside"]) + let v = native_list_append(v, ["Σολομών", "noun", "Σολομών", "Σολομῶντος", "Σολομῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["κακία", "noun", "κᾰκῐ́αι", "κᾰκῐ́ᾱς", "κᾰκῐ́ᾳ", "", "lack of quality"]) + let v = native_list_append(v, ["μέτρον", "noun", "μέτρᾰ", "μέτρου", "μέτρῳ", "", "something used to"]) + let v = native_list_append(v, ["λίθος", "noun", "αἱ λῐ́θοι", "λῐ́θου", "τῇ λῐ́θῳ", "", "a stone"]) + let v = native_list_append(v, ["ἰχθύς", "noun", "ῐ̓χθῠ́ες", "ῐ̓χθῠ́ος", "ῐ̓χθῠ́ῐ̈", "", "fish"]) + let v = native_list_append(v, ["Μωϋσῆς", "noun", "Μωϋσῆς", "Μωϋσέως", "Μωϋσεῖ", "", "alternative form of"]) + let v = native_list_append(v, ["Καπερναούμ", "noun", "Καπερναούμ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Γάζα", "noun", "Γάζα", "Γᾰ́ζης", "Γᾰ́ζῃ", "", "Gaza a city"]) + let v = native_list_append(v, ["Ἱεριχώ", "noun", "Ἱεριχώ", "Ῐ̔ερῑχοῦς", "Ῐ̔ερῑχοῖ", "", "alternative form of"]) + let v = native_list_append(v, ["Σαμάρεια", "noun", "Σαμάρεια", "Σᾰμᾰρείᾱς", "Σᾰμᾰρείᾳ", "", "Samaria"]) + let v = native_list_append(v, ["Σόδομα", "noun", "Σόδομᾰ", "Σοδόμων", "Σοδόμοις", "", "Sodom a historical"]) + let v = native_list_append(v, ["Χαναάν", "noun", "Χαναάν", "", "", "", "Canaan an ancient"]) + let v = native_list_append(v, ["θεράπων", "noun", "θερᾰ́ποντες", "θερᾰ́ποντος", "θερᾰ́ποντῐ", "", "companion of lower"]) + let v = native_list_append(v, ["ὥρα", "noun", "ὧραι", "ὥρᾱς", "ὥρᾳ", "", "any defined period"]) + let v = native_list_append(v, ["Πέτρος", "noun", "Πέτρος", "Πέτρου", "Πέτρῳ", "", "Peter"]) + let v = native_list_append(v, ["Σίμων", "noun", "Σίμων", "Σῐ́μωνος", "Σῐ́μωνῐ", "", "Simon or Simo"]) + let v = native_list_append(v, ["Συμεών", "noun", "Συμεών", "Συμεῶνος", "Σῠμεῶνῐ", "", "Simeon Simon"]) + let v = native_list_append(v, ["Ἰάκωβος", "noun", "Ἰάκωβος", "Ἰακώβου", "Ἰακώβῳ", "", "a male given"]) + let v = native_list_append(v, ["Ματθαῖος", "noun", "Ματθαῖος", "Ματθαίου", "Ματθαίῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀνδρέας", "noun", "Ἀνδρέας", "Ἀνδρέου", "Ἀνδρέᾳ", "", "a male given"]) + let v = native_list_append(v, ["Κλεοπᾶς", "noun", "Κλεοπᾶς", "Κλεοπᾶ", "Κλεοπᾷ", "", "a male given"]) + let v = native_list_append(v, ["Φίλιππος", "noun", "Φῐ́λῐπποι", "Φῐλῐ́ππου", "Φῐλῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Βαρθολομαῖος", "noun", "Βαρθολομαῖος", "Βαρθολομαίου", "Βαρθολομαίῳ", "", "Bartholomew a disciple"]) + let v = native_list_append(v, ["Θωμᾶς", "noun", "Θωμᾶς", "Θωμᾶ", "Θωμᾷ", "", "Thomas"]) + let v = native_list_append(v, ["Σουσάννα", "noun", "Σουσάννα", "Σουσάννᾱς", "Σουσάννᾳ", "", "Susanna."]) + let v = native_list_append(v, ["Ἰωάννα", "noun", "Ἰωάννα", "Ῐ̓ωᾰ́ννᾱς", "Ῐ̓ωᾰ́ννᾳ", "", "a female given"]) + let v = native_list_append(v, ["ἀνθρακιά", "noun", "ᾰ̓νθρᾰκῐαί", "ᾰ̓νθρᾰκῐᾶς", "ᾰ̓νθρᾰκῐᾷ", "", "a pile of"]) + let v = native_list_append(v, ["ἄνθραξ", "noun", "ᾰ̓́νθρᾰκες", "ᾰ̓́νθρᾰκος", "ᾰ̓́νθρᾰκῐ", "", "charcoal"]) + let v = native_list_append(v, ["Ἰωνᾶς", "noun", "Ἰωνᾶς", "Ἰωνᾶ", "Ἰωνᾷ", "", "Jonah a given"]) + let v = native_list_append(v, ["Ἀλέξανδρος", "noun", "Ᾰ̓λέξᾰνδροι", "Ᾰ̓λεξᾰ́νδρου", "Ᾰ̓λεξᾰ́νδρῳ", "", "a title held"]) + let v = native_list_append(v, ["στῆθος", "noun", "στήθη", "στήθεος", "στήθει", "", "breast of both"]) + let v = native_list_append(v, ["Θαδδαῖος", "noun", "Θαδδαῖος", "Θαδδαίου", "Θαδδαίῳ", "", "Thaddaeus one of"]) + let v = native_list_append(v, ["ἔξοδος", "noun", "ἔξοδοι", "ἐξόδου", "ἐξόδῳ", "", "departure leaving"]) + let v = native_list_append(v, ["αἴνιγμα", "noun", "αἰνίγμᾰτᾰ", "αἰνίγματος", "αἰνίγμᾰτῐ", "", "riddle"]) + let v = native_list_append(v, ["ἄνθος", "noun", "ᾰ̓́νθη", "ᾰ̓́νθεος", "ᾰ̓́νθει", "", "flower blossom bloom"]) + let v = native_list_append(v, ["βίος", "noun", "βῐ́οι", "βῐ́ου", "βῐ́ῳ", "", "life often with"]) + let v = native_list_append(v, ["ὄνομα", "noun", "ὀνόμᾰτᾰ", "ὀνόμᾰτος", "ὀνόμᾰτῐ", "", "name"]) + let v = native_list_append(v, ["αἷμα", "noun", "αἵμᾰτᾰ", "αἵμᾰτος", "αἵμᾰτῐ", "", "blood"]) + let v = native_list_append(v, ["Γολγοθᾶ", "noun", "Γολγοθᾶ", "Γολγοθᾶς", "Γολγοθᾷ", "", "Golgotha"]) + let v = native_list_append(v, ["κρανίον", "noun", "κρᾱνῐ́ᾰ", "κρᾱνῐ́ου", "κρᾱνῐ́ῳ", "", "the upper part"]) + let v = native_list_append(v, ["Δαμασκός", "noun", "Δαμασκός", "Δαμασκοῦ", "Δαμασκῷ", "", "a city in"]) + let v = native_list_append(v, ["Ἀλεξανδρεύς", "noun", "Ᾰ̓λεξᾰνδρῆς", "Ᾰ̓λεξᾰνδρέως", "Ᾰ̓λεξᾰνδρεῖ", "", "An Alexandrian"]) + let v = native_list_append(v, ["Σαμψών", "noun", "Σαμψών", "Σαμψῶνος", "Σαμψῶνῐ", "", "Samson a judge"]) + let v = native_list_append(v, ["πρεσβυτέριον", "noun", "πρεσβῠτέρῐᾰ", "πρεσβῠτερῐ́ου", "πρεσβῠτερῐ́ῳ", "", "council body of"]) + let v = native_list_append(v, ["Νικόδημος", "noun", "Νικόδημος", "Νῑκοδήμου", "Νῑκοδήμῳ", "", "a male given"]) + let v = native_list_append(v, ["Καϊάφας", "noun", "Καϊάφας", "Κᾰῐ̈ᾱ́φᾱ", "Κᾰῐ̈ᾱ́φᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἰσραηλίτης", "noun", "Ῐ̓σρᾱηλῖται", "Ῐ̓σρᾱηλῑ́του", "Ῐ̓σρᾱηλῑ́τῃ", "", "Israelite"]) + let v = native_list_append(v, ["Ἱερεμίας", "noun", "Ἱερεμίας", "Ἱερεμίου", "Ἱερεμίᾳ", "", "Jeremiah the Hebrew"]) + let v = native_list_append(v, ["Ἠσαΐας", "noun", "Ἠσαΐας", "Ἠσᾰῐ̈́ου", "Ἠσᾰῐ̈́ᾳ", "", "Isaiah"]) + let v = native_list_append(v, ["Ζεβεδαῖος", "noun", "Ζεβεδαῖος", "Ζεβεδαίου", "Ζεβεδαίῳ", "", "Zebedee the father"]) + let v = native_list_append(v, ["Ἐλιέζερ", "noun", "Ἐλιέζερ", "", "", "", "Eliezer mentioned in"]) + let v = native_list_append(v, ["Δανιήλ", "noun", "Δανιήλ", "", "", "", "a male given"]) + let v = native_list_append(v, ["Βενιαμίν", "noun", "Βενιαμίν", "Βενιᾱμῑ́ν", "Βενιᾱμῑ́ν", "", "a male given"]) + let v = native_list_append(v, ["Δαλματία", "noun", "Δαλματία", "Δαλματίας", "Δαλμᾰτῐ́ᾳ", "", "Dalmatia a region"]) + let v = native_list_append(v, ["Θεσσαλονίκη", "noun", "Θεσσαλονίκη", "Θεσσᾰλονῑ́κης", "Θεσσᾰλονῑ́κῃ", "", "Thessaloniki a city"]) + let v = native_list_append(v, ["Ἱεράπολις", "noun", "Ἱεράπολις", "Ἱερᾱπόλεως", "Ῐ̔ερᾱπόλει", "", "Hierapolis a city"]) + let v = native_list_append(v, ["Κιλικία", "noun", "Κιλικία", "Κῐλῐκῐ́ᾱς", "Κῐλῐκῐ́ᾳ", "", "Cilicia an ancient"]) + let v = native_list_append(v, ["Κολοσσαί", "noun", "Κολοσσῶν", "Κολοσσῶν", "Κολοσσαῖς", "", "Colossae a city"]) + let v = native_list_append(v, ["Λαοδίκεια", "noun", "Λαοδίκεια", "Λᾱοδῐκείᾱς", "Λᾱοδῐκείᾳ", "", "Laodicea the name"]) + let v = native_list_append(v, ["Μίλητος", "noun", "Μίλητος", "Μῑλήτου", "Μῑλήτῳ", "", "Miletus an ancient"]) + let v = native_list_append(v, ["Παμφυλία", "noun", "Παμφυλία", "Παμφῡλῐ́ᾱς", "Παμφῡλῐ́ᾳ", "", "Pamphylia an Ancient"]) + let v = native_list_append(v, ["Πέργαμος", "noun", "Πέργαμος", "Περγᾰ́μου", "Περγᾰ́μῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Πόντος", "noun", "Πόντος", "Πόντου", "Πόντῳ", "", "Black Sea a"]) + let v = native_list_append(v, ["Ταρσός", "noun", "Ταρσός", "Ταρσοῦ", "Ταρσῷ", "", "Tarsus a city"]) + let v = native_list_append(v, ["Φρυγία", "noun", "Φρυγία", "Φρῠγῐ́ᾱς", "Φρῠγῐ́ᾳ", "", "Phrygia a geographic"]) + let v = native_list_append(v, ["Σελεύκεια", "noun", "Σελεύκεια", "Σελευκείᾱς", "Σελευκείᾳ", "", "Seleucia the name"]) + let v = native_list_append(v, ["Συρία", "noun", "Συρία", "Σῠρῐ́ᾱς", "Σῠρῐ́ᾳ", "", "Syria a historical"]) + let v = native_list_append(v, ["Σύρος", "noun", "Σύρος", "Σῠ́ρου", "Σῠ́ρῳ", "", "A common male"]) + let v = native_list_append(v, ["Δεκάπολις", "noun", "Δεκάπολις", "Δεκᾰπόλεως", "Δεκᾰπόλει", "", "Decapolis the ten"]) + let v = native_list_append(v, ["Ἀντιόχεια", "noun", "Ἀντιόχεια", "Ἀντῐοχείᾱς", "Ᾰ̓ντῐοχείᾳ", "", "Antioch the name"]) + let v = native_list_append(v, ["Βηθαβαρά", "noun", "Βηθαβαρά", "", "", "", "Bethabara a place"]) + let v = native_list_append(v, ["Ἀδρίας", "noun", "Ἀδρίας", "Ᾰ̓δρῐ́ου", "Ᾰ̓δρῐ́ᾳ", "", "Adriatic Sea"]) + let v = native_list_append(v, ["Ἀπολλωνία", "noun", "Ἀπολλωνία", "Ἀπολλωνίᾱς", "Ἀπολλωνίᾳ", "", "Apollonia the name"]) + let v = native_list_append(v, ["Ἄρειος Πάγος", "noun", "Ἄρειος Πάγος", "Ἀρείου Πᾰ́γου", "Ἀρείῳ Πᾰ́γῳ", "", "Areopagus Hill of"]) + let v = native_list_append(v, ["Ἁριμαθαία", "noun", "Ἁριμαθαία", "Ἁριμαθαίᾱς", "Ἁριμαθαίᾳ", "", "Arimathea an ancient"]) + let v = native_list_append(v, ["Γόμορρα", "noun", "Γόμορρᾰ", "Γομόρρᾱς", "Γομόρρᾳ", "", "Gomorrah."]) + let v = native_list_append(v, ["Ἐμμαούς", "noun", "Ἐμμαούς", "Ἐμμαοῦντος", "Ἐμμαοῦντῐ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἐφραίμ", "noun", "Ἐφραίμ", "", "", "", "Ephraim son of"]) + let v = native_list_append(v, ["θέατρον", "noun", "θέᾱτρᾰ", "θεᾱ́τρου", "θεᾱ́τρῳ", "", "theatre gathering place"]) + let v = native_list_append(v, ["Μαγδαλά", "noun", "Μαγδαλά", "Μαγδᾱλᾶς", "Μαγδᾱλᾷ", "", "Magdala."]) + let v = native_list_append(v, ["Νικόπολις", "noun", "Νικόπολις", "Νῑκοπόλεως", "Νῑκοπόλει", "", "Nicopolis a city"]) + let v = native_list_append(v, ["παράδεισος", "noun", "πᾰρᾰ́δεισοι", "πᾰρᾰδείσου", "πᾰρᾰδείσῳ", "", "the garden owned"]) + let v = native_list_append(v, ["Σαλαμίς", "noun", "Σαλαμίς", "Σᾰλᾰμῖνος", "Σᾰλᾰμῖνῐ", "", "Salamis a Greek"]) + let v = native_list_append(v, ["Σιδών", "noun", "Σιδών", "Σιδῶνος", "Σῑδῶνῐ", "", "Sidon or Zidon"]) + let v = native_list_append(v, ["τόπος", "noun", "τόποι", "τόπου", "τόπῳ", "", "place location"]) + let v = native_list_append(v, ["Τύρος", "noun", "Τύρος", "Τῠ́ρου", "Τῠ́ρῳ", "", "Tyre a Phoenician"]) + let v = native_list_append(v, ["Φίλιπποι", "noun", "Φίλιπποι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Φοῖνιξ", "noun", "Φοῖνιξ", "Φοίνῑκος", "", "", "Phoenician"]) + let v = native_list_append(v, ["Νικόλαος", "noun", "Νικόλαος", "Νῑκολᾱ́ου", "Νῑκολᾱ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀθῆναι", "noun", "Ἀθηνῶν", "Ἀθηνῶν", "Ἀθήναις", "", "Athens the capital"]) + let v = native_list_append(v, ["κάμηλος", "noun", "αἱ κᾰ́μηλοι", "κᾰμήλου", "τῇ κᾰμήλῳ", "", "camel"]) + let v = native_list_append(v, ["θρίξ", "noun", "τρῐ́χες", "τρῐχός", "τρῐχῐ́", "", "hair"]) + let v = native_list_append(v, ["ὕδωρ", "noun", "ῠ̔́δᾰτᾰ", "ῡ̆̔́δᾰτος", "ῠ̔́δᾰτῐ", "", "water"]) + let v = native_list_append(v, ["ἅλς", "noun", "ᾰ̔́λες", "ᾰ̔λός", "ᾰ̔λῐ́", "", "salt"]) + let v = native_list_append(v, ["εἰρήνη", "noun", "εἰρῆναι", "εἰρήνης", "εἰρήνῃ", "", "peace"]) + let v = native_list_append(v, ["κόκκος", "noun", "κόκκοι", "κόκκου", "κόκκῳ", "", "grain seed kernel"]) + let v = native_list_append(v, ["κράτος", "noun", "κρᾰ́τη", "κρᾰ́τους", "κρᾰ́τει", "", "might strength"]) + let v = native_list_append(v, ["λέων", "noun", "λέοντες", "λέοντος", "λέοντῐ", "", "lion"]) + let v = native_list_append(v, ["μέρος", "noun", "μέρη", "μέρεος", "μέρει", "", "part component region"]) + let v = native_list_append(v, ["νέφος", "noun", "νέφη", "νέφεος", "νέφει", "", "cloud"]) + let v = native_list_append(v, ["ξένος", "noun", "ξένοι", "ξένου", "ξένῳ", "", "of parties giving"]) + let v = native_list_append(v, ["ὅπλον", "noun", "ὅπλᾰ", "ὅπλου", "ὅπλῳ", "", "tool instrument"]) + let v = native_list_append(v, ["οὖς", "noun", "ὦτᾰ", "ὠτός", "ὠτῐ́", "", "ear"]) + let v = native_list_append(v, ["στέφανος", "noun", "στέφᾰνοι", "στεφᾰ́νου", "στεφᾰ́νῳ", "", "that which encircles"]) + let v = native_list_append(v, ["στίγμα", "noun", "στῐ́γμᾰτᾰ", "στῐ́γμᾰτος", "στῐ́γμᾰτῐ", "", "stigma a permanent"]) + let v = native_list_append(v, ["ταῦρος", "noun", "ταῦροι", "ταύρου", "ταύρῳ", "", "bull"]) + let v = native_list_append(v, ["υἱός", "noun", "υἱεῖς", "υἱέος", "υἱεῖ", "", "son"]) + let v = native_list_append(v, ["φλόξ", "noun", "φλόγες", "φλογός", "φλογῐ́", "", "flame blaze"]) + let v = native_list_append(v, ["εὐαγγέλιον", "noun", "εὐαγγέλιᾰ", "εὐαγγελίου", "εὐαγγελίῳ", "", "a reward for"]) + let v = native_list_append(v, ["μαρτύριον", "noun", "μᾰρτῠ́ρῐᾰ", "μᾰρτῠρῐ́ου", "μᾰρτῠρῐ́ῳ", "", "testimony evidence proof"]) + let v = native_list_append(v, ["μάρτυς", "noun", "αἱ μᾰ́ρτῠρες", "μᾰ́ρτῠρος", "τῇ μᾰ́ρτῠρῐ", "", "witness"]) + let v = native_list_append(v, ["Ἰορδάνης", "noun", "Ἰορδάνης", "Ἰορδάνου", "Ἰορδάνῃ", "", "Jordan a river"]) + let v = native_list_append(v, ["Σατανᾶς", "noun", "Σατανᾶς", "Σᾰτᾰνᾶ", "Σᾰτᾰνᾷ", "", "alternative form of"]) + let v = native_list_append(v, ["Σατᾶν", "noun", "Σατᾶν", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["διάκονος", "noun", "δῐᾱ́κονοι", "δῐᾱκόνου", "δῐᾱκόνῳ", "", "messenger courier"]) + let v = native_list_append(v, ["διακονία", "noun", "δῐᾱκονῐ́αι", "δῐᾱκονῐ́ᾱς", "δῐᾱκονῐ́ᾳ", "", "service"]) + let v = native_list_append(v, ["αἰών", "noun", "αἱ αἰῶνες", "αἰῶνος", "τῇ αἰῶνῐ", "", "lifetime life"]) + let v = native_list_append(v, ["σάββατον", "noun", "σάββατᾰ", "σαββάτου", "σαββάτῳ", "", "Sabbath"]) + let v = native_list_append(v, ["πυρετός", "noun", "πῠρετοί", "πῠρετοῦ", "πῠρετῷ", "", "heat"]) + let v = native_list_append(v, ["πυρά", "noun", "πῠρᾰ́", "πῠρῶν", "πῠροῖς", "", "watchfires"]) + let v = native_list_append(v, ["πῦρ", "noun", "πῦρ", "πῠρός", "πῠρῐ́", "", "a fire"]) + let v = native_list_append(v, ["Συράκουσαι", "noun", "Συρᾱ́κουσαι", "Συρακουσῶν", "Σῠρᾱκούσαις", "", "Syracuse a city"]) + let v = native_list_append(v, ["φίλος", "noun", "φῐ́λοι", "φῐ́λου", "φῐ́λῳ", "", "friend"]) + let v = native_list_append(v, ["λέπρα", "noun", "λέπραι", "λέπρᾱς", "λέπρᾳ", "", "psoriasis & similar"]) + let v = native_list_append(v, ["λεπίς", "noun", "λεπῐ́δες", "λεπῐ́δος", "λεπῐ́δῐ", "", "scale flake shell"]) + let v = native_list_append(v, ["καθαρισμός", "noun", "κᾰθᾰρῐσμοί", "κᾰθᾰρῐσμοῦ", "κᾰθᾰρῐσμῷ", "", "cleansing purification"]) + let v = native_list_append(v, ["Λευΐς", "noun", "Λευΐς", "Λευῑ̈́", "Λευῑ̈́", "", "Levi"]) + let v = native_list_append(v, ["Λευΐ", "noun", "Λευΐ", "", "", "", "Levi"]) + let v = native_list_append(v, ["σχίσμα", "noun", "σχῐ́σμᾰτᾰ", "σχῐ́σμᾰτος", "σχῐ́σμᾰτῐ", "", "That which is"]) + let v = native_list_append(v, ["Ἀβιαθάρ", "noun", "Ἀβιαθάρ", "", "", "", "Abiathar a Hebrew"]) + let v = native_list_append(v, ["ἀήρ", "noun", "ᾱ̓έρες", "ᾱ̓έρος", "ᾱ̓έρῐ", "", "mist haze"]) + let v = native_list_append(v, ["Ἰδουμαία", "noun", "Ἰδουμαία", "Ἰδουμαίᾱς", "Ἰδουμαίᾳ", "", "Edom or Idumea"]) + let v = native_list_append(v, ["Βοανεργές", "noun", "Βοανεργές", "", "", "", "Boanerges an epithet"]) + let v = native_list_append(v, ["Ἀαρών", "noun", "Ἀαρών", "", "", "", "Aaron the brother"]) + let v = native_list_append(v, ["Ἀβαδδών", "noun", "Ἀβαδδών", "", "", "", "Abaddon the destroying"]) + let v = native_list_append(v, ["Ἁρμαγεδών", "noun", "Ἁρμαγεδών", "", "", "", "Armageddon a mythological"]) + let v = native_list_append(v, ["Ἀλφαῖος", "noun", "Ἀλφαῖος", "Ἀλφαίου", "Ἁλφαίῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Βεελζεβούλ", "noun", "Βεελζεβούλ", "", "", "", "Beelzebub a name"]) + let v = native_list_append(v, ["παραβολή", "noun", "πᾰρᾰβολαί", "παραβολῆς", "πᾰρᾰβολῇ", "", "a placing of"]) + let v = native_list_append(v, ["ἀδελφός", "noun", "ᾰ̓δελφοί", "ᾰ̓δελφοῦ", "ᾰ̓δελφῷ", "", "brother male sibling"]) + let v = native_list_append(v, ["διδαχή", "noun", "δῐδᾰχαί", "δῐδᾰχῆς", "δῐδᾰχῇ", "", "teaching instruction"]) + let v = native_list_append(v, ["ῥίζα", "noun", "ῥῐ́ζαι", "ῥῐ́ζης", "ῥῐ́ζῃ", "", "root of a"]) + let v = native_list_append(v, ["καρπός", "noun", "κᾰρποί", "κᾰρποῦ", "κᾰρπῷ", "", "fruit grain produce"]) + let v = native_list_append(v, ["ἑξήκοντα", "noun", "ἑξήκοντᾰ", "ἑξήκοντᾰ", "ἑξήκοντᾰ", "", "a college of"]) + let v = native_list_append(v, ["σίναπι", "noun", "σῐνᾱ́πη", "σῐνᾱ́πεως", "σῐνᾱ́πει", "", "the mustard plant"]) + let v = native_list_append(v, ["προσκεφάλαιον", "noun", "προσκεφᾰ́λαιᾰ", "προσκεφαλαίου", "προσκεφᾰλαίῳ", "", "pillow"]) + let v = native_list_append(v, ["ὕψος", "noun", "ῠ̔́ψη", "ῠ̔́ψεος", "ῠ̔́ψει", "", "height"]) + let v = native_list_append(v, ["λεγεών", "noun", "λεγεῶνες", "λεγεῶνος", "λεγεῶνῐ", "", "legion"]) + let v = native_list_append(v, ["φρήν", "noun", "φρένες", "φρενός", "φρενῐ́", "", "the midriff stomach"]) + let v = native_list_append(v, ["ἀρχισυνάγωγος", "noun", "ᾰ̓ρχῐσῠνᾰ́γωγοι", "ᾰ̓ρχῐσῠνᾰγώγου", "ᾰ̓ρχῐσῠνᾰγώγῳ", "", "archisynagogue the president"]) + let v = native_list_append(v, ["ἀρχιτέκτων", "noun", "ἀρχιτέκτονες", "ἀρχιτέκτονος", "ἀρχιτέκτονῐ", "", "chief constructor master"]) + let v = native_list_append(v, ["τέκτων", "noun", "τέκτονες", "τέκτονος", "τέκτονῐ", "", "one who works"]) + let v = native_list_append(v, ["τιμωρία", "noun", "τῑμωρῐ́αι", "τῑμωρῐ́ᾱς", "τῑμωρῐ́ᾳ", "", "vengeance revenge retribution"]) + let v = native_list_append(v, ["τιμή", "noun", "τῑμαί", "τῑμῆς", "τῑμῇ", "", "honor worship esteem"]) + let v = native_list_append(v, ["ἔτος", "noun", "ἔτη", "ἔτους", "ἔτει", "", "year"]) + let v = native_list_append(v, ["πίστις", "noun", "πῐ́στεις", "πῐ́στεως", "πῐ́στει", "", "trust in others"]) + let v = native_list_append(v, ["ἔκστασις", "noun", "ἐκστᾰ́σεις", "ἐκστᾰ́σεως", "ἐκστᾰ́σει", "", "displacement from proper"]) + let v = native_list_append(v, ["πατριά", "noun", "πᾰτρῐαί", "πᾰτρῐᾶς", "πᾰτρῐᾷ", "", "lineage descent"]) + let v = native_list_append(v, ["πατρίς", "noun", "πᾰτρῐ́δες", "πᾰτρῐ́δος", "πᾰτρῐ́δῐ", "", "The place of"]) + let v = native_list_append(v, ["ἀδελφή", "noun", "ᾰ̓δελφαί", "ᾰ̓δελφῆς", "ᾰ̓δελφῇ", "", "sister"]) + let v = native_list_append(v, ["θέρος", "noun", "θέρη", "θέρους", "θέρει", "", "heat"]) + let v = native_list_append(v, ["σανδάλιον", "noun", "σανδάλιᾰ", "σανδαλίου", "σανδαλίῳ", "", "a light strap-shoe"]) + let v = native_list_append(v, ["Ἡλίας", "noun", "Ἡλίας", "Ἡλίου", "Ἡλίᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["γάμος", "noun", "γᾰ́μοι", "γᾰ́μου", "γᾰ́μῳ", "", "marriage wedding bridelock"]) + let v = native_list_append(v, ["Ἡρῳδιάς", "noun", "Ἡρῳδιάς", "Ἡρῳδιάδος", "Ἡρῳδῐᾰ́δῐ", "", "Herodias a given"]) + let v = native_list_append(v, ["γενέσια", "noun", "γενέσιᾰ", "γενεσίων", "γενεσίοις", "", "birthday"]) + let v = native_list_append(v, ["γενεαλογία", "noun", "γενεᾱλογῐ́αι", "γενεᾱλογῐ́ᾱς", "γενεᾱλογῐ́ᾳ", "", "genealogy"]) + let v = native_list_append(v, ["γένεσις", "noun", "γενέσεις", "γενέσεως", "γενέσει", "", "origin source"]) + let v = native_list_append(v, ["γενεά", "noun", "γενεαί", "γενεᾶς", "γενεᾷ", "", "birth"]) + let v = native_list_append(v, ["γένος", "noun", "γένη", "γένεος", "γένει", "", "race stock kin"]) + let v = native_list_append(v, ["Γεννησαρέτ", "noun", "Γεννησαρέτ", "", "", "", "Gennesaret"]) + let v = native_list_append(v, ["βαπτιστής", "noun", "βᾰπτῐσταί", "βᾰπτῐστοῦ", "βᾰπτῐστῇ", "", "baptist commonly as"]) + let v = native_list_append(v, ["βαπτισμός", "noun", "βᾰπτῐσμοί", "βᾰπτῐσμοῦ", "βᾰπτῐσμῷ", "", "a dipping a"]) + let v = native_list_append(v, ["Βαραββᾶς", "noun", "Βαραββᾶς", "Βαραββᾶ", "Βαραββᾷ", "", "Barabbas a criminal"]) + let v = native_list_append(v, ["ἀββα", "noun", "ἀββα", "", "", "", "father"]) + let v = native_list_append(v, ["Ἄρτεμις", "noun", "Ἄρτεμις", "Ἀρτέμῐδος", "Ἀρτεμῐδος", "", "Artemis one of"]) + let v = native_list_append(v, ["Ἀρίσταρχος", "noun", "Ἀρίσταρχος", "Ἀριστάρχου", "Ἀριστάρχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀριστόβουλος", "noun", "Ἀριστόβουλος", "Ἀριστοβούλου", "Ἀριστοβούλῳ", "", "a male given"]) + let v = native_list_append(v, ["ἄριστον", "noun", "ἄρῑστᾰ", "ᾱ̓ρῑ́στου", "ἀρῑ́στῳ", "", "morning meal breakfast"]) + let v = native_list_append(v, ["Ἀρχέλαος", "noun", "Ἀρχέλαος", "Ἀρχελᾱ́ου", "Ἀρχελᾱ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["πτῶμα", "noun", "πτώμᾰτᾰ", "πτώμᾰτος", "πτώμᾰτῐ", "", "fall"]) + let v = native_list_append(v, ["ἰδέα", "noun", "ῐ̓δέαι", "ῐ̓δέᾱς", "ῐ̓δέᾳ", "", "form shape"]) + let v = native_list_append(v, ["ἴδιος", "noun", "αἱ ῐ̓́δῐοι", "ῐ̓δῐ́ου", "τῇ ῐ̓δῐ́ῳ", "", "someone who is"]) + let v = native_list_append(v, ["Ἀγρίππας", "noun", "Ἀγρίππας", "Ᾰ̓γρῐ́ππᾱ", "Ᾰ̓γρῐ́ππᾳ", "", "Agrippa the name"]) + let v = native_list_append(v, ["δηνάριον", "noun", "δηνάριᾰ", "δηναρίου", "δηναρίῳ", "", "a denarius"]) + let v = native_list_append(v, ["μέσος", "noun", "μέσοι", "μέσου", "μέσῳ", "", "the middle finger"]) + let v = native_list_append(v, ["Μεσοποταμία", "noun", "Μεσοποταμία", "Μεσοποταμίᾱς", "Μεσοποτᾰμίᾳ", "", "Mesopotamia a geographic"]) + let v = native_list_append(v, ["Αἴγυπτος", "noun", "Αἴγυπτος", "Αἰγύπτου", "τῇ Αἰγύπτῳ", "", "the Aegyptus river"]) + let v = native_list_append(v, ["ποταμός", "noun", "ποτᾰμοί", "ποτᾰμοῦ", "ποτᾰμῷ", "", "river stream"]) + let v = native_list_append(v, ["μορφή", "noun", "μορφαί", "μορφῆς", "μορφῇ", "", "shape form"]) + let v = native_list_append(v, ["σάλος", "noun", "σᾰ́λοι", "σάλου", "σᾰ́λῳ", "", "a rolling or"]) + let v = native_list_append(v, ["Ἰουδά", "noun", "Ἰουδά", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ἰωσίας", "noun", "Ἰωσίας", "Ἰωσίου", "Ἰωσίᾳ", "", "Josiah king of"]) + let v = native_list_append(v, ["Εὐφράτης", "noun", "Εὐφράτης", "Εὐφρᾱ́του", "Εὐφρᾱ́τῃ", "", "Euphrates a river"]) + let v = native_list_append(v, ["Ζαβουλών", "noun", "Ζαβουλών", "Ζᾰβουλών", "Ζᾰβουλών", "", "Zebulun"]) + let v = native_list_append(v, ["Ἑλληνίς", "noun", "Ἑλληνῐ́δες", "Ἑλληνῐ́δος", "Ἑλληνῐ́δῐ", "", "a Greek woman"]) + let v = native_list_append(v, ["Ἑλλάς", "noun", "Ἑλλάς", "Ἑλλᾰ́δος", "Ἑλλᾰ́δῐ", "", "various areas in"]) + let v = native_list_append(v, ["Ἑρμῆς", "noun", "Ἑρμῆς", "Ἑρμοῦ", "Ἑρμῇ", "", "Hermes"]) + let v = native_list_append(v, ["ἰῶτα", "noun", "ἰῶτα", "", "", "", "iota the name"]) + let v = native_list_append(v, ["Ἀπολλύων", "noun", "Ἀπολλύων", "Ἀπολλῡ́ονος", "Ἀπολλῡ́ονῐ", "", "Apollyon the angel"]) + let v = native_list_append(v, ["Βάαλ", "noun", "Βάαλ", "", "", "", "Baal a Canaanite"]) + let v = native_list_append(v, ["Ἡλί", "noun", "Ἡλί", "", "", "", "Eli a given"]) + let v = native_list_append(v, ["ἀλέκτωρ", "noun", "ᾰ̓λέκτορες", "ᾰ̓λέκτορος", "ᾰ̓λέκτορῐ", "", "cock rooster"]) + let v = native_list_append(v, ["χάρις", "noun", "χᾰ́ρῐτες", "χᾰ́ρῐτος", "χᾰ́ρῐτῐ", "", "beauty elegance charm"]) + let v = native_list_append(v, ["βάρος", "noun", "βᾰ́ρη", "βᾰ́ρους", "βᾰ́ρει", "", "weight burden load"]) + let v = native_list_append(v, ["βάθος", "noun", "βᾰ́θη", "βᾰ́θους", "βᾰ́θει", "", "extension in space"]) + let v = native_list_append(v, ["Ἅβελ", "noun", "Ἅβελ", "", "", "", "Abel the son"]) + let v = native_list_append(v, ["Ἀβιά", "noun", "Ἀβιά", "", "", "", "Abijah the name"]) + let v = native_list_append(v, ["Σήμ", "noun", "Σήμ", "Σήμας", "Σήμᾳ", "", "Shem one of"]) + let v = native_list_append(v, ["Ῥωμαῖος", "noun", "Ῥωμαῖοι", "Ῥωμαίου", "Ῥωμαίῳ", "", "a Roman"]) + let v = native_list_append(v, ["ῥύσις", "noun", "ῥῠ́σεις", "ῥῠ́σεως", "ῥῠ́σει", "", "flow"]) + let v = native_list_append(v, ["Στέφανος", "noun", "Στέφανος", "Στεφάνου", "Στεφᾰ́νῳ", "", "a male given"]) + let v = native_list_append(v, ["διάδημα", "noun", "δῐᾰδήμᾰτᾰ", "δῐᾰδήμᾰτος", "δῐᾰδήμᾰτῐ", "", "headband"]) + let v = native_list_append(v, ["στρατηγός", "noun", "στρᾰτηγοί", "στρᾰτηγοῦ", "στρᾰτηγῷ", "", "A leader or"]) + let v = native_list_append(v, ["νᾶνος", "noun", "νᾶνοι", "νᾱ́νου", "νᾱ́νῳ", "", "dwarf"]) + let v = native_list_append(v, ["Μίθρας", "noun", "Μίθρας", "Μῐ́θρου", "Μῐ́θρᾳ", "", "Greek form of"]) + let v = native_list_append(v, ["Περσίς", "noun", "Περσίς", "Περσῐ́δος", "", "", "Persia"]) + let v = native_list_append(v, ["Ὡσηέ", "noun", "Ὡσηέ", "", "", "", "Hosea"]) + let v = native_list_append(v, ["Μοῦσα", "noun", "Μοῦσαι", "Μούσης", "Μούσῃ", "", "Muse"]) + let v = native_list_append(v, ["καλλιγραφία", "noun", "καλλιγραφία", "κᾰλλῐγρᾰφίᾱς", "κᾰλλῐγρᾰφίᾳ", "", "calligraphy beautiful writing"]) + let v = native_list_append(v, ["ἔκλειψις", "noun", "ἐκλείψεις", "ἐκλείψεως", "ἐκλείψει", "", "disappearance abandonment"]) + let v = native_list_append(v, ["βροντή", "noun", "βρονταί", "βροντῆς", "βροντῇ", "", "thunder"]) + let v = native_list_append(v, ["μέτοικος", "noun", "αἱ μέτοικοι", "μετοίκου", "τῇ μετοίκῳ", "", "metic settler from"]) + let v = native_list_append(v, ["Θεός", "noun", "Θεός", "Θεοῦ", "Θεῷ", "", "God"]) + let v = native_list_append(v, ["φιλοσοφία", "noun", "φῐλοσοφῐ́αι", "φῐλοσοφῐ́ᾱς", "φῐλοσοφῐ́ᾳ", "", "love of knowledge"]) + let v = native_list_append(v, ["κόθορνος", "noun", "κόθορνοι", "κοθόρνου", "κοθόρνῳ", "", "buskin high boot"]) + let v = native_list_append(v, ["βοήθεια", "noun", "βοήθειαι", "βοηθείᾱς", "βοηθείᾳ", "", "aid help assistance"]) + let v = native_list_append(v, ["λίπος", "noun", "λῐ́πη", "λῐ́πους", "λῐ́πει", "", "animal fat lard"]) + let v = native_list_append(v, ["στρύχνος", "noun", "στρῠ́χνοι", "στρύχνου", "στρῠ́χνῳ", "", "alternative form of"]) + let v = native_list_append(v, ["πούς", "noun", "πόδες", "ποδός", "ποδῐ́", "", "foot"]) + let v = native_list_append(v, ["Πλούτων", "noun", "Πλούτων", "Πλούτωνος", "Πλούτωνῐ", "", "Hades the god"]) + let v = native_list_append(v, ["δοῦλος", "noun", "δοῦλοι", "δούλου", "δούλῳ", "", "born slave or"]) + let v = native_list_append(v, ["ὅπλα", "noun", "ὅπλα", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ἀνδρός", "noun", "ἀνδρός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μαζός", "noun", "μᾰζοί", "μαζοῦ", "μᾰζῷ", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ζῷον", "noun", "ζῷᾰ", "ζῴου", "ζῴῳ", "", "animal beast"]) + let v = native_list_append(v, ["πάθος", "noun", "πᾰ́θη", "πᾰ́θους", "πᾰ́θει", "", "pain suffering death"]) + let v = native_list_append(v, ["προῦμνον", "noun", "προῦμνᾰ", "προύμνου", "προύμνῳ", "", "plum fruit"]) + let v = native_list_append(v, ["προύμνου", "noun", "προύμνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κερασός", "noun", "κερᾰσοί", "κερᾰσοῦ", "κερᾰσῷ", "", "bird cherry Prunus"]) + let v = native_list_append(v, ["κερασοῦ", "noun", "κερασοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ὀστέον", "noun", "ὀστέᾰ", "ὀστέου", "ὀστέῳ", "", "bone"]) + let v = native_list_append(v, ["ὁδός", "noun", "ὁδοί", "ὁδοῦ", "ὁδῷ", "", "road path way"]) + let v = native_list_append(v, ["ὁδοῦ", "noun", "ὁδοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νόσος", "noun", "νόσοι", "νόσου", "νόσῳ", "", "sickness disease illness"]) + let v = native_list_append(v, ["δῶρον", "noun", "δῶρᾰ", "δώρου", "δώρῳ", "", "gift"]) + let v = native_list_append(v, ["φυγή", "noun", "φῠγαί", "φῠγῆς", "φῠγῇ", "", "flight retreat escape"]) + let v = native_list_append(v, ["θεά", "noun", "θεαί", "θεᾶς", "θεᾷ", "", "goddess"]) + let v = native_list_append(v, ["θεᾶς", "noun", "θεᾶς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νόσου", "noun", "νόσου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δώρου", "noun", "δώρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ὀστοῦ", "noun", "ὀστοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χώρας", "noun", "χώρας", "", "", "", "inflection of χώρᾱ"]) + let v = native_list_append(v, ["γνώμη", "noun", "γνῶμαι", "γνώμης", "γνώμῃ", "", "means of knowing"]) + let v = native_list_append(v, ["γνώμης", "noun", "γνώμης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νάρδος", "noun", "νᾰ́ρδοι", "νᾰ́ρδου", "νᾰ́ρδῳ", "", "nard plant spikenard"]) + let v = native_list_append(v, ["Κοινή", "noun", "Κοινή", "Κοινῆς", "Κοινῇ", "", "Koine Greek"]) + let v = native_list_append(v, ["νεανίας", "noun", "νεᾱνῐ́αι", "νεᾱνῐ́ου", "νεᾱνῐ́ᾳ", "", "young man youth"]) + let v = native_list_append(v, ["νεανίου", "noun", "νεανίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νεφέλη", "noun", "νεφέλαι", "νεφέλης", "νεφέλῃ", "", "cloud mass of"]) + let v = native_list_append(v, ["νεφέλης", "noun", "νεφέλης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ξένου", "noun", "ξένου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λόγου", "noun", "λόγου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἔργου", "noun", "ἔργου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φυγῆς", "noun", "φυγῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τέχνη", "noun", "τέχναι", "τέχνης", "τέχνῃ", "", "craft skill trade"]) + let v = native_list_append(v, ["ἀνθρώπου", "noun", "ἀνθρώπου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θεοῦ", "noun", "θεοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πολίτης", "noun", "πολῖται", "πολῑ́του", "πολῑ́τῃ", "", "citizen freeman"]) + let v = native_list_append(v, ["πολίτου", "noun", "πολίτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["παιδεία", "noun", "παιδεῖαι", "παιδείᾱς", "παιδείᾳ", "", "upbringing"]) + let v = native_list_append(v, ["τέχνης", "noun", "τέχνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θάλαττα", "noun", "θᾰ́λᾰτται", "θᾰλᾰ́ττης", "θᾰλᾰ́ττῃ", "", "Attic form of"]) + let v = native_list_append(v, ["θαλάσσης", "noun", "θαλάσσης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θαλάττης", "noun", "θαλάττης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψυχῆς", "noun", "ψυχῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λίθου", "noun", "λίθου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μοῖρα", "noun", "μοῖραι", "μοίρᾱς", "μοίρᾳ", "", "part portion"]) + let v = native_list_append(v, ["μοίρας", "noun", "μοίρας", "", "", "", "inflection of μοῖρᾰ"]) + let v = native_list_append(v, ["Μοῖρα", "noun", "Μοῖραι", "Μοίρᾱς", "Μοίρᾳ", "", "one of the"]) + let v = native_list_append(v, ["Μοίρας", "noun", "Μοίρας", "", "", "", "inflection of Μοῖρᾰ"]) + let v = native_list_append(v, ["κριτής", "noun", "κρῐταί", "κρῐτοῦ", "κρῐτῇ", "", "umpire"]) + let v = native_list_append(v, ["κριτοῦ", "noun", "κριτοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δόξα", "noun", "δόξαι", "δόξης", "δόξῃ", "", "expectation"]) + let v = native_list_append(v, ["δοξοσοφία", "noun", "δοξοσοφῐ́αι", "δοξοσοφῐ́ᾱς", "δοξοσοφῐ́ᾳ", "", "conceit of wisdom"]) + let v = native_list_append(v, ["δοξοσοφίας", "noun", "δοξοσοφίας", "", "", "", "inflection of δοξοσοφῐ́ᾱ"]) + let v = native_list_append(v, ["δοξάριον", "noun", "δοξᾰ́ρῐᾰ", "δοξᾰρῐ́ου", "δοξᾰρῐ́ῳ", "", "diminutive of δόξα"]) + let v = native_list_append(v, ["δοξολογία", "noun", "δοξολογῐ́αι", "δοξολογῐ́ᾱς", "δοξολογῐ́ᾳ", "", "laudation paean"]) + let v = native_list_append(v, ["δοξολογίας", "noun", "δοξολογίας", "", "", "", "inflection of δοξολογῐ́ᾱ"]) + let v = native_list_append(v, ["νεώς", "noun", "νεῴ", "νεώ", "νεῷ", "", "Attic prose form"]) + let v = native_list_append(v, ["νεώ", "noun", "νεώ", "", "", "", "inflection of νεώς"]) + let v = native_list_append(v, ["νηός", "noun", "νηοί", "νηοῦ", "νηῷ", "", "Ionic form of"]) + let v = native_list_append(v, ["νηοῦ", "noun", "νηοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ναός", "noun", "νᾱοί", "νᾱοῦ", "νᾱῷ", "", "a temple"]) + let v = native_list_append(v, ["ναοῦ", "noun", "ναοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δίφθογγος", "noun", "δῐ́φθογγοι", "δῐφθόγγου", "δῐφθόγγῳ", "", "a diphthong"]) + let v = native_list_append(v, ["διφθόγγου", "noun", "διφθόγγου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δίφθογγον", "noun", "δίφθογγον", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["στόχος", "noun", "στόχοι", "στόχου", "στόχῳ", "", "pillar of brick"]) + let v = native_list_append(v, ["στόχου", "noun", "στόχου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἱπποτοξότης", "noun", "ῐ̔πποτοξόται", "ῐ̔πποτοξότου", "ῐ̔πποτοξότῃ", "", "a mounted archer"]) + let v = native_list_append(v, ["ἱπποτοξότου", "noun", "ἱπποτοξότου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψηφοφορία", "noun", "ψηφοφορῐ́αι", "ψηφοφορῐ́ᾱς", "ψηφοφορῐ́ᾳ", "", "vote by ballot"]) + let v = native_list_append(v, ["γλῶττα", "noun", "γλῶτται", "γλώττης", "γλώττῃ", "", "Attic form of"]) + let v = native_list_append(v, ["γλῶσσα", "noun", "γλῶσσαι", "γλώσσης", "γλώσσῃ", "", "the tongue"]) + let v = native_list_append(v, ["ἀληθείας", "noun", "ἀληθείας", "", "", "", "inflection of ᾰ̓λήθειᾰ"]) + let v = native_list_append(v, ["ἦχος", "noun", "ἦχοι", "ἤχου", "ἤχῳ", "", "sound noise ringing"]) + let v = native_list_append(v, ["στροφή", "noun", "στροφαί", "στροφῆς", "στροφῇ", "", "turning a turn"]) + let v = native_list_append(v, ["στροφῆς", "noun", "στροφῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μέλισσα", "noun", "μέλισσαι", "μελίσσης", "μελίσσῃ", "", "bee"]) + let v = native_list_append(v, ["μέλιττα", "noun", "μέλιτται", "μελίττης", "μελίττῃ", "", "Attic form of"]) + let v = native_list_append(v, ["μελίσσης", "noun", "μελίσσης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μελίττης", "noun", "μελίττης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πυρός", "noun", "πῡροί", "πῡροῦ", "πῡρῷ", "", "wheat"]) + let v = native_list_append(v, ["μάρτυρ", "noun", "μᾰ́ρτῠρες", "μᾰ́ρτῠρος", "μᾰ́ρτῠρῐ", "", "Aeolic form of"]) + let v = native_list_append(v, ["δήμου", "noun", "δήμου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δῆμος", "noun", "δῆμοι", "δήμου", "δήμῳ", "", "district country land"]) + let v = native_list_append(v, ["ἀγγέλου", "noun", "ἀγγέλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γέννησις", "noun", "γεννήσεις", "γεννήσεως", "γεννήσει", "", "producing"]) + let v = native_list_append(v, ["γέννασις", "noun", "γεννᾱ́σεις", "γεννᾱ́σεως", "γεννᾱ́σει", "", "Doric form of"]) + let v = native_list_append(v, ["γεννάσεως", "noun", "γεννάσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γεννήσεως", "noun", "γεννήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γενέσεως", "noun", "γενέσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ὑμήν", "noun", "ῠ̔μένες", "ῠ̔μένος", "ῠ̔μένῐ", "", "thin skin membrane"]) + let v = native_list_append(v, ["πτερόν", "noun", "πτερᾰ́", "πτεροῦ", "πτερῷ", "", "feather"]) + let v = native_list_append(v, ["ὑμένος", "noun", "ὑμένος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἕλμινς", "noun", "ἕλμῐνθες", "ἕλμῐνθος", "ἕλμῐνθῐ", "", "parasitic worm"]) + let v = native_list_append(v, ["ἀγών", "noun", "ᾰ̓γῶνες", "ᾰ̓γῶνος", "ᾰ̓γῶνῐ", "", "a gathering an"]) + let v = native_list_append(v, ["ἀγῶνος", "noun", "ἀγῶνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νῆμα", "noun", "νήμᾰτᾰ", "νήμᾰτος", "νήμᾰτῐ", "", "That which is"]) + let v = native_list_append(v, ["νήματος", "noun", "νήματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πονηρός", "noun", "πονηροί", "πονηροῦ", "πονηρῷ", "", "one who suffers"]) + let v = native_list_append(v, ["θής", "noun", "θῆτες", "θητός", "θητῐ́", "", "serf or bondsman"]) + let v = native_list_append(v, ["θητός", "noun", "θητός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Μάρτιος", "noun", "Μᾱ́ρτῐοι", "Μᾱρτίου", "Μᾱρτῐ́ῳ", "", "March"]) + let v = native_list_append(v, ["γλώττης", "noun", "γλώττης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στέγος", "noun", "στέγη", "στέγους", "στέγει", "", "roof"]) + let v = native_list_append(v, ["σαῦρος", "noun", "σαῦροι", "σαύρου", "σαύρῳ", "", "alternative form of"]) + let v = native_list_append(v, ["σκευοθήκη", "noun", "σκευοθῆκαι", "σκευοθήκης", "σκευοθήκῃ", "", "chest for all"]) + let v = native_list_append(v, ["Κέρκυρα", "noun", "Κέρκυρα", "Κερκῡ́ρᾱς", "Κερκῡ́ρᾳ", "", "A nymph daughter"]) + let v = native_list_append(v, ["ἄρθρον", "noun", "ᾰ̓́ρθρᾰ", "ᾰ̓́ρθρου", "ᾰ̓́ρθρῳ", "", "joint"]) + let v = native_list_append(v, ["ποδός", "noun", "ποδός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["εὐθυντηρία", "noun", "εὐθῡντηρῐ́αι", "εὐθῡντηρῐ́ᾱς", "εὐθῡντηρῐ́ᾳ", "", "The part of"]) + let v = native_list_append(v, ["σατυρίασις", "noun", "σᾰτῠρῐᾱ́σεις", "σᾰτῠρῐᾱ́σεως", "σᾰτῠρῐᾱ́σει", "", "satyriasis"]) + let v = native_list_append(v, ["σατυριάσεως", "noun", "σατυριάσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σατυρίησις", "noun", "σᾰτῠρῐήσεις", "σᾰτῠρῐήσεως", "σᾰτῠρῐήσει", "", "Ionic form of"]) + let v = native_list_append(v, ["σατυριήσεως", "noun", "σατυριήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σάτυρος", "noun", "σᾰ́τῠροι", "σᾰτῠ́ρου", "σᾰτῠ́ρῳ", "", "satyr"]) + let v = native_list_append(v, ["σατύρου", "noun", "σατύρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τίτυρος", "noun", "τῑ́τῠροι", "τῑτῠ́ρου", "τῑτῠ́ρῳ", "", "satyr"]) + let v = native_list_append(v, ["τιτύρου", "noun", "τιτύρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δόξις", "noun", "δόξεις", "δόξεως", "δόξει", "", "expectation"]) + let v = native_list_append(v, ["δόξεως", "noun", "δόξεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χάλικος", "noun", "χάλικος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἔθος", "noun", "ἔθη", "ἔθους", "ἔθει", "", "habit custom manner"]) + let v = native_list_append(v, ["παιδί", "noun", "παιδί", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["χιμάραρχος", "noun", "χῐμᾰ́ρᾰρχοι", "χῐμᾰρᾰ́ρχου", "χῐμᾰρᾰ́ρχῳ", "", "the lead goat"]) + let v = native_list_append(v, ["χιμαράρχου", "noun", "χιμαράρχου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἴγαγρος", "noun", "αἱ αἴγᾰγροι", "αἰγᾰ́γρου", "τῇ αἰγᾰ́γρῳ", "", "a wild goat"]) + let v = native_list_append(v, ["αἰγάγρου", "noun", "αἰγάγρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τράγος", "noun", "τρᾰ́γοι", "τρᾰ́γου", "τρᾰ́γῳ", "", "billy-goat"]) + let v = native_list_append(v, ["τράγου", "noun", "τράγου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἴξ", "noun", "αἱ αἶγες", "αἰγός", "τῇ αἰγῐ́", "", "goat especially a"]) + let v = native_list_append(v, ["αἰγός", "noun", "αἰγός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κάπρος", "noun", "κᾰ́προι", "κᾰ́πρου", "κᾰ́πρῳ", "", "boar especially wild"]) + let v = native_list_append(v, ["κάπρου", "noun", "κάπρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σοφίας", "noun", "σοφίας", "", "", "", "inflection of σοφῐ́ᾱ"]) + let v = native_list_append(v, ["χριστός", "noun", "χριστός", "χριστοῦ", "", "", "anointed one translation"]) + let v = native_list_append(v, ["λεπίδος", "noun", "λεπίδος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γάλα", "noun", "γᾰ́λᾰκτᾰ", "γᾰ́λᾰκτος", "γᾰ́λᾰκτῐ", "", "milk"]) + let v = native_list_append(v, ["γαλαξίας", "noun", "γᾰλᾰξῐ́αι", "γᾰλᾰξῐ́ου", "γᾰλᾰξῐ́ᾳ", "", "the Milky Way"]) + let v = native_list_append(v, ["ἄρκτος", "noun", "ᾰ̓́ρκτοι", "ᾰ̓́ρκτου", "ᾰ̓́ρκτῳ", "", "bear"]) + let v = native_list_append(v, ["θέλημα", "noun", "θελήμᾰτᾰ", "θελήμᾰτος", "θελήμᾰτῐ", "", "will desire"]) + let v = native_list_append(v, ["φυλή", "noun", "φῡλαί", "φῡλῆς", "φῡλῇ", "", "a union of"]) + let v = native_list_append(v, ["πόλεμος", "noun", "πόλεμοι", "πολέμου", "πολέμῳ", "", "war battle"]) + let v = native_list_append(v, ["χρυσός", "noun", "χρῡσοί", "χρῡσοῦ", "χρῡσῷ", "", "gold substance"]) + let v = native_list_append(v, ["πτόλεμος", "noun", "πτόλεμοι", "πτολέμου", "πτολέμῳ", "", "Epic form of"]) + let v = native_list_append(v, ["ποιμήν", "noun", "ποιμένες", "ποιμένος", "ποιμένῐ", "", "shepherd herdsman"]) + let v = native_list_append(v, ["Ἰεσσαί", "noun", "Ἰεσσαί", "", "", "", "Jesse"]) + let v = native_list_append(v, ["μυθολογία", "noun", "μῡθολογῐ́αι", "μῡθολογῐ́ᾱς", "μῡθολογῐ́ᾳ", "", "romance fiction legend"]) + let v = native_list_append(v, ["μῦθος", "noun", "μῦθοι", "μῡ́θου", "μῡ́θῳ", "", "something said word"]) + let v = native_list_append(v, ["ποίησις", "noun", "ποιήσεις", "ποιήσεως", "ποιήσει", "", "creation fabrication production"]) + let v = native_list_append(v, ["Βαρναβᾶς", "noun", "Βαρναβᾶς", "Βαρναβᾶ", "Βαρναβᾷ", "", "Barnabas"]) + let v = native_list_append(v, ["Βηθανία", "noun", "Βηθανία", "Βηθᾰνῐ́ᾱς", "Βηθᾰνῐ́ᾳ", "", "Bethany"]) + let v = native_list_append(v, ["Γομόρρας", "noun", "Γομόρρας", "Γομόρρου", "Γομόρρᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Δαυείδ", "noun", "Δαυείδ", "", "", "", "David"]) + let v = native_list_append(v, ["Δαυΐδ", "noun", "Δαυΐδ", "", "", "", "David"]) + let v = native_list_append(v, ["Καπαρναούμ", "noun", "Καπαρναούμ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Καφαρναούμ", "noun", "Καφαρναούμ", "", "", "", "Capernaum an ancient"]) + let v = native_list_append(v, ["Καππαδοκίη", "noun", "Καππαδοκίη", "Κᾰππᾰδοκῐ́ης", "Κᾰππᾰδοκῐ́ῃ", "", "Ionic form of"]) + let v = native_list_append(v, ["ξίφος", "noun", "ξῐ́φη", "ξῐ́φεος", "ξῐ́φει", "", "sword the short"]) + let v = native_list_append(v, ["θεωρία", "noun", "θεωρῐ́αι", "θεωρῐ́ᾱς", "θεωρῐ́ᾳ", "", "sending of state-ambassadors"]) + let v = native_list_append(v, ["χόρτος", "noun", "χόρτοι", "χόρτου", "χόρτῳ", "", "feeding place for"]) + let v = native_list_append(v, ["Μαριάμ", "noun", "Μαριάμ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Μαθθαῖος", "noun", "Μαθθαῖος", "Μαθθαίου", "Μαθθαίῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Ναζαρά", "noun", "Ναζαρά", "Νᾱζᾰρᾱ́", "Νᾱζᾰρᾱ́", "", "alternative form of"]) + let v = native_list_append(v, ["Ναζαράθ", "noun", "Ναζαράθ", "Νᾱζᾰράθ", "Νᾱζᾰράθ", "", "alternative form of"]) + let v = native_list_append(v, ["Ναζαράτ", "noun", "Ναζαράτ", "Νᾱζᾰράτ", "Νᾱζᾰράτ", "", "alternative form of"]) + let v = native_list_append(v, ["Ναζαρέτ", "noun", "Ναζαρέτ", "Νᾱζᾰρέτ", "Νᾱζᾰρέτ", "", "Nazareth the hometown"]) + let v = native_list_append(v, ["Ἀδρίης", "noun", "Ἀδρίης", "Ἀδρίεω", "Ἀδρίῃ", "", "Ionic form of"]) + let v = native_list_append(v, ["Ἁλφαῖος", "noun", "Ἁλφαῖος", "Ἁλφαίου", "Ἁλφαίῳ", "", "a male given"]) + let v = native_list_append(v, ["κάθαρσις", "noun", "κᾰθᾰ́ρσεις", "κᾰθᾰ́ρσεως", "κᾰθᾰ́ρσει", "", "cleansing purification in"]) + let v = native_list_append(v, ["Ἐμμαοῦς", "noun", "Ἐμμαοῦς", "Ἐμμαοῦντος", "Ἐμμαοῦντῐ", "", "Emmaus a town"]) + let v = native_list_append(v, ["Ἠλί", "noun", "Ἠλί", "", "", "", "Eli a given"]) + let v = native_list_append(v, ["Ἡλεί", "noun", "Ἡλεί", "", "", "", "Eli a given"]) + let v = native_list_append(v, ["Ἠλίας", "noun", "Ἠλίας", "Ἠλίου", "Ἡλίᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἡρώδης", "noun", "Ἡρώδης", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ἰνδία", "noun", "Ἰνδία", "Ἰνδῐ́ᾱς", "Ἰνδῐ́ᾳ", "", "India a region"]) + let v = native_list_append(v, ["Ἰούδας", "noun", "Ἰούδας", "Ἰούδᾱ", "Ἰούδᾳ", "", "Judah one of"]) + let v = native_list_append(v, ["παράδειγμα", "noun", "πᾰρᾰδείγμᾰτᾰ", "πᾰρᾰδείγμᾰτος", "πᾰρᾰδείγμᾰτῐ", "", "pattern model plan"]) + let v = native_list_append(v, ["κύκλος", "noun", "κῠ́κλοι", "κῠ́κλου", "κῠ́κλῳ", "", "circle ring"]) + let v = native_list_append(v, ["Ἰερεμίας", "noun", "Ἰερεμίας", "Ἰερεμίου", "Ἰερεμίᾳ", "", "Jeremiah the Hebrew"]) + let v = native_list_append(v, ["Ἰεριχώ", "noun", "Ἰεριχώ", "Ἰερῑχώ", "Ἰερῑχώ", "", "Jericho"]) + let v = native_list_append(v, ["Χανάαν", "noun", "Χανάαν", "Χᾰνᾰ́ᾰν", "Χᾰνᾰ́ᾰν", "", "Canaan a son"]) + let v = native_list_append(v, ["μίασμα", "noun", "μῐάσμᾰτᾰ", "μῐάσμᾰτος", "μῐάσμᾰτῐ", "", "pollution defilement"]) + let v = native_list_append(v, ["ἀπονία", "noun", "ἀπονῐ́αι", "ἀπονῐ́ᾱς", "ἀπονῐ́ᾳ", "", "laziness freedom from"]) + let v = native_list_append(v, ["βασιλεία", "noun", "βᾰσῐλεῖαι", "βᾰσῐλείᾱς", "βᾰσῐλείᾳ", "", "A kingdom a"]) + let v = native_list_append(v, ["τράπεζα", "noun", "τρᾰ́πεζαι", "τρᾰπέζης", "τρᾰπέζῃ", "", "table"]) + let v = native_list_append(v, ["ἐπίδειξις", "noun", "ἐπῐδείξεις", "ἐπιδείξεως", "ἐπῐδείξει", "", "exhibition display"]) + let v = native_list_append(v, ["συγγένεια", "noun", "συγγένειαι", "συγγενείᾱς", "συγγενείᾳ", "", "kinship kindred"]) + let v = native_list_append(v, ["Ἄρκτος", "noun", "Ᾰ̓́ρκτοι", "Ἄρκτου", "Ᾰ̓́ρκτῳ", "", "Ursa Major"]) + let v = native_list_append(v, ["πρόβλημα", "noun", "προβλήμᾰτᾰ", "προβλήμᾰτος", "προβλήμᾰτῐ", "", "anything thrown forward"]) + let v = native_list_append(v, ["ἁνήρ", "noun", "ἁνήρ", "", "", "", "contraction of ὁ"]) + let v = native_list_append(v, ["δοκιμή", "noun", "δοκῐμαί", "δοκῐμῆς", "δοκῐμῇ", "", "test trial examination"]) + let v = native_list_append(v, ["κρέας", "noun", "κρέᾱ", "κρέως", "κρέᾳ", "", "flesh meat"]) + let v = native_list_append(v, ["συγγνώμη", "noun", "σῠγγνῶμαι", "σῠγγνώμης", "σῠγγνώμῃ", "", "acknowledgement confession"]) + let v = native_list_append(v, ["σαύρα", "noun", "σαῦραι", "σαύρᾱς", "σαύρᾳ", "", "lizard"]) + let v = native_list_append(v, ["ἥμισυς", "noun", "ἡμῐ́σεις", "ἡμῐ́σεος", "ἡμῐ́σει", "", "half"]) + let v = native_list_append(v, ["κυβερνισμός", "noun", "κῠβερνῐσμοί", "κῠβερνῐσμοῦ", "κῠβερνῐσμῷ", "", "steering pilotage"]) + let v = native_list_append(v, ["ὀνοματοποιία", "noun", "ὀνομᾰτοποιῐ́αι", "ὀνομᾰτοποιῐ́ᾱς", "ὀνομᾰτοποιῐ́ᾳ", "", "Onomatopoeia the creation"]) + let v = native_list_append(v, ["ἀκρόαμα", "noun", "ἀκροᾱ́μᾰτᾰ", "ἀκροᾱ́μᾰτος", "ἀκροᾱ́μᾰτῐ", "", "something heard"]) + let v = native_list_append(v, ["ἁλιαίετος", "noun", "ᾰ̔λῐαίετοι", "ᾰ̔λῐαιέτου", "ᾰ̔λῐαιέτῳ", "", "Poetic form of"]) + let v = native_list_append(v, ["τέλεσμα", "noun", "τελέσμᾰτᾰ", "τελέσμᾰτος", "τελέσμᾰτῐ", "", "payment toll taxes"]) + let v = native_list_append(v, ["ὅσιος", "noun", "ὅσῐοι", "ὁσῐ́ου", "ὁσῐ́ῳ", "", "title of five"]) + let v = native_list_append(v, ["στιγμή", "noun", "στῐγμαί", "στῐγμῆς", "στῐγμῇ", "", "spot"]) + let v = native_list_append(v, ["σάπων", "noun", "σᾱ́πωνες", "σᾱ́πωνος", "σᾱ́πωνῐ", "", "soap"]) + let v = native_list_append(v, ["θεῖον", "noun", "θεῖᾰ", "θείου", "θείῳ", "", "divinity"]) + let v = native_list_append(v, ["ὀρθοέπεια", "noun", "ὀρθοέπειαι", "ὀρθοεπείᾱς", "ὀρθοεπείᾳ", "", "correct diction especially"]) + let v = native_list_append(v, ["Μάγος", "noun", "Μᾰ́γοι", "Μάγου", "Μᾰ́γῳ", "", "magician and derogatorily"]) + let v = native_list_append(v, ["χρονογράφος", "noun", "χρονογρᾰ́φοι", "χρονογρᾰ́φου", "χρονογρᾰ́φῳ", "", "the recording of"]) + let v = native_list_append(v, ["σκοπός", "noun", "σκοποί", "σκοποῦ", "σκοπῷ", "", "watcher lookout"]) + let v = native_list_append(v, ["κωλοβαθριστής", "noun", "κωλοβᾰθρῐσταί", "κωλοβᾰθρῐστοῦ", "κωλοβᾰθρῐστῇ", "", "one who walks"]) + let v = native_list_append(v, ["κωλόβαθρον", "noun", "κωλόβᾰθρᾰ", "κωλοβᾰ́θρου", "κωλοβᾰ́θρῳ", "", "stilt"]) + let v = native_list_append(v, ["κῶλον", "noun", "κῶλᾰ", "κώλου", "κώλῳ", "", "part of something"]) + let v = native_list_append(v, ["μαμωνᾶς", "noun", "μαμωναῖ", "μαμωνᾶ", "μαμωνᾷ", "", "wealth property money"]) + let v = native_list_append(v, ["γραφίς", "noun", "γρᾰφῐ́δες", "γρᾰφῐ́δος", "γρᾰφῐ́δῐ", "", "stilus"]) + let v = native_list_append(v, ["ἐπιθυμία", "noun", "ἐπῐθῡμῐ́αι", "ἐπῐθῡμῐ́ᾱς", "ἐπῐθῡμῐ́ᾳ", "", "yearning longing desire"]) + let v = native_list_append(v, ["κακοφωνία", "noun", "κᾰκοφωνῐ́αι", "κᾰκοφωνῐ́ᾱς", "κᾰκοφωνῐ́ᾳ", "", "an ill-sound cacophony"]) + let v = native_list_append(v, ["κακοποιία", "noun", "κᾰκοποιῐ́αι", "κᾰκοποιῐ́ᾱς", "κᾰκοποιῐ́ᾳ", "", "ill-doing evil-doing"]) + let v = native_list_append(v, ["μήν", "noun", "μῆνες", "μηνός", "μηνῐ́", "", "Attic form of"]) + let v = native_list_append(v, ["ψευδοπροφήτης", "noun", "ψευδοπροφῆται", "ψευδοπροφήτου", "ψευδοπροφήτῃ", "", "false prophet"]) + let v = native_list_append(v, ["χοραγός", "noun", "χοραγός", "χορᾱγοῦ", "", "", "Doric form of"]) + let v = native_list_append(v, ["γάζα", "noun", "γᾰ́ζαι", "γᾰ́ζης", "γᾰ́ζῃ", "", "treasury treasure"]) + let v = native_list_append(v, ["παράκλητος", "noun", "πᾰρᾰ́κλητοι", "πᾰρᾰκλήτου", "πᾰρᾰκλήτῳ", "", "an advocate or"]) + let v = native_list_append(v, ["διάλεκτος", "noun", "δῐᾰ́λεκτοι", "δῐᾰλέκτου", "δῐᾰλέκτῳ", "", "discourse conversation"]) + let v = native_list_append(v, ["φοῖνιξ", "noun", "φοίνῑκες", "φοίνῑκος", "φοίνῑκῐ", "", "purple or crimson"]) + let v = native_list_append(v, ["ἀβακίσκος", "noun", "ᾰ̓βᾰκῐ́σκοι", "ᾰ̓βᾰκῐ́σκου", "ᾰ̓βᾰκῐ́σκῳ", "", "A coloured stone"]) + let v = native_list_append(v, ["ἄβαξ", "noun", "ᾰ̓́βᾰκες", "ἄβᾰκος", "ᾰ̓́βᾰκῐ", "", "board slab"]) + let v = native_list_append(v, ["Ἕλληνες", "noun", "Ἕλληνες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Ξέρξης", "noun", "Ξέρξης", "Ξέρξου", "Ξέρξῃ", "", "a male given"]) + let v = native_list_append(v, ["Δαρεῖος", "noun", "Δαρεῖος", "Δᾱρείου", "Δᾱρείῳ", "", "a male given"]) + let v = native_list_append(v, ["Κῦρος", "noun", "Κῦρος", "Κῡ́ρου", "Κῡ́ρῳ", "", "Cyrus"]) + let v = native_list_append(v, ["σχίσις", "noun", "σχῐ́σεις", "σχῐ́σεως", "σχῐ́σει", "", "cleaving parting division"]) + let v = native_list_append(v, ["ὄγκος", "noun", "ὄγκοι", "ὄγκου", "ὄγκῳ", "", "bend curve angle"]) + let v = native_list_append(v, ["αἴσθησις", "noun", "αἰσθήσεις", "αἰσθήσεως", "αἰσθήσει", "", "Perception from the"]) + let v = native_list_append(v, ["ἐξουσία", "noun", "ἐξουσῐ́αι", "ἐξουσῐ́ᾱς", "ἐξουσῐ́ᾳ", "", "power means license"]) + let v = native_list_append(v, ["χόνδρος", "noun", "χόνδροι", "χόνδρου", "χόνδρῳ", "", "a small rounded"]) + let v = native_list_append(v, ["πλοῦτος", "noun", "πλοῦτοι", "πλούτου", "πλούτῳ", "", "wealth riches"]) + let v = native_list_append(v, ["πλουτοκρατία", "noun", "πλουτοκρᾰτῐ́αι", "πλουτοκρᾰτῐ́ᾱς", "πλουτοκρᾰτῐ́ᾳ", "", "An oligarchy of"]) + let v = native_list_append(v, ["τρωγλοδύτης", "noun", "τρωγλοδῠ́ται", "τρωγλοδῠ́του", "τρωγλοδῠ́τῃ", "", "One who crawls"]) + let v = native_list_append(v, ["σχολή", "noun", "σχολαί", "σχολῆς", "σχολῇ", "", "leisure free time"]) + let v = native_list_append(v, ["νᾶμα", "noun", "νᾱ́μᾰτᾰ", "νᾱ́μᾰτος", "νᾱ́μᾰτῐ", "", "running water fountain"]) + let v = native_list_append(v, ["τρώγλη", "noun", "τρῶγλαι", "τρώγλης", "τρώγλῃ", "", "hole hollow"]) + let v = native_list_append(v, ["ὄνυξ", "noun", "ὄνῠχες", "ὄνῠχος", "ὄνῠχῐ", "", "claw nail hoof"]) + let v = native_list_append(v, ["Εὔα", "noun", "Εὔα", "Εὔᾱς", "Εὔᾳ", "", "Eve wife of"]) + let v = native_list_append(v, ["Ἀδάμ", "noun", "Ἀδάμ", "", "", "", "Adam husband of"]) + let v = native_list_append(v, ["χάλαζα", "noun", "χᾰ́λᾰζαι", "χᾰλᾰ́ζης", "χᾰλᾰ́ζῃ", "", "hail sleet"]) + let v = native_list_append(v, ["πτέρυξ", "noun", "πτέρῠγες", "πτέρῠγος", "πτέρῠγῐ", "", "wing of a"]) + let v = native_list_append(v, ["πύλη", "noun", "πῠ́λαι", "πῠ́λης", "πῠ́λῃ", "", "a wing of"]) + let v = native_list_append(v, ["Ἀθήνας", "noun", "Ἀθήνας", "", "", "", "accusative of Ἀθῆναι"]) + let v = native_list_append(v, ["ἀμφίσβαινα", "noun", "ᾰ̓μφῐ́σβαιναι", "ᾰ̓μφῐσβαίνης", "ᾰ̓μφῐσβαίνῃ", "", "a kind of"]) + let v = native_list_append(v, ["ψαλτήριον", "noun", "ψᾰλτήρῐᾰ", "ψᾰλτηρῐ́ου", "ψᾰλτηρῐ́ῳ", "", "stringed instrument harp"]) + let v = native_list_append(v, ["Παρθενών", "noun", "Παρθενών", "Παρθενῶνος", "Παρθενῶνῐ", "", "Parthenon the famous"]) + let v = native_list_append(v, ["Κέρβερος", "noun", "Κέρβερος", "Κερβέρου", "Κερβέρῳ", "", "Cerberus the three-headed"]) + let v = native_list_append(v, ["Αἰθιοπία", "noun", "Αἰθιοπία", "Αἰθιοπίᾱς", "Αἰθιοπίᾳ", "", "Ethiopia a historical"]) + let v = native_list_append(v, ["ἀψίνθιον", "noun", "ἀψίνθιᾰ", "ἀψινθίου", "ἀψινθίῳ", "", "wormwood Artemisia absinthium"]) + let v = native_list_append(v, ["ἄβυσσος", "noun", "ἄβυσσοι", "ἀβύσσου", "ἀβύσσῳ", "", "bottomless pit abyss"]) + let v = native_list_append(v, ["γλαῦξ", "noun", "γλαῦκες", "γλαυκός", "γλαυκῐ́", "", "owl Athene noctua"]) + let v = native_list_append(v, ["γλαῦκες", "noun", "γλαῦκες", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["παρθένος", "noun", "παρθένοι", "παρθένου", "παρθένῳ", "", "young unmarried woman"]) + let v = native_list_append(v, ["σοφιστής", "noun", "σοφῐσταί", "σοφῐστοῦ", "σοφῐστῇ", "", "A master of"]) + let v = native_list_append(v, ["Σκυθία", "noun", "Σκυθία", "Σκῠθῐ́ᾱς", "Σκῠθῐ́ᾳ", "", "Scythia a geographic"]) + let v = native_list_append(v, ["ζύθος", "noun", "ζύθος", "", "", "", "codical variant of"]) + let v = native_list_append(v, ["σμίλη", "noun", "σμῖλαι", "σμῑ́λης", "σμῑ́λῃ", "", "a tool for"]) + let v = native_list_append(v, ["κλειδί", "noun", "κλειδί", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["κλείς", "noun", "κλεῖδες", "κλειδός", "κλειδῐ́", "", "bar bolt"]) + let v = native_list_append(v, ["οὐροπύγιον", "noun", "οὐροπῡ́γῐᾰ", "οὐροπῡγῐ́ου", "οὐροπῡγῐ́ῳ", "", "The rump and"]) + let v = native_list_append(v, ["Αἰσχύλος", "noun", "Αἰσχύλος", "Αἰσχῠ́λου", "Αἰσχῠ́λῳ", "", "a male given"]) + let v = native_list_append(v, ["ἀκακία", "noun", "ἀκᾰκῐ́αι", "ἀκᾰκίᾱς", "ἀκᾰκῐ́ᾳ", "", "An acacia tree"]) + let v = native_list_append(v, ["Ἀχαιός", "noun", "Ἀχαιοί", "Ἀχαιοῦ", "Ἀχαιῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀχαΐα", "noun", "Ᾰ̓χᾱΐαι", "Ἀχᾱΐᾱς", "Ᾰ̓χᾱΐᾳ", "", "Achaea a region"]) + let v = native_list_append(v, ["Ἀγαμέμνων", "noun", "Ἀγαμέμνων", "Ἀγαμέμνονος", "Ἀγαμέμνονῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀμαζών", "noun", "Ᾰ̓μᾰζόνες", "Ᾰ̓μᾰζόνος", "Ᾰ̓μᾰζόνῐ", "", "Amazons a mythical"]) + let v = native_list_append(v, ["ἀνδρεῖος", "noun", "ᾰ̓νδρεῖοι", "ᾰ̓νδρεῖου", "ᾰ̓νδρείῳ", "", "One who is"]) + let v = native_list_append(v, ["Ἀρκαδία", "noun", "Ἀρκαδία", "Ἀρκᾰδίᾱς", "Ἀρκᾰδίᾳ", "", "Arcadia an ancient"]) + let v = native_list_append(v, ["παρατηρητής", "noun", "πᾰρᾰτηρηταί", "πᾰρᾰτηρητοῦ", "πᾰρᾰτηρητῇ", "", "One who watches"]) + let v = native_list_append(v, ["εἶδος", "noun", "εἴδη", "εἴδους", "εἴδει", "", "form image shape"]) + let v = native_list_append(v, ["ψιττακός", "noun", "ψιττᾰκοί", "ψιττᾰκοῦ", "ψιττᾰκῷ", "", "parrot"]) + let v = native_list_append(v, ["δράκων", "noun", "δρᾰ́κοντες", "δρᾰ́κοντος", "δρᾰ́κοντῐ", "", "dragon serpent"]) + let v = native_list_append(v, ["σῖγμα", "noun", "σῑ́γμᾰτᾰ", "σῑ́γμᾰτος", "σῑ́γμᾰτῐ", "", "sigma the name"]) + let v = native_list_append(v, ["βουκόλος", "noun", "βουκόλοι", "βουκόλου", "βουκόλῳ", "", "A person who"]) + let v = native_list_append(v, ["βοῦς", "noun", "αἱ βόες", "βοός", "τῇ βοῐ̈́", "", "cow ox cattle"]) + let v = native_list_append(v, ["δύναμις", "noun", "δῠνᾰ́μεις", "δῠνᾰ́μεως", "δῠνᾰ́μει", "", "power might strength"]) + let v = native_list_append(v, ["Αἰθίοψ", "noun", "Αἰθῐ́οπες", "Αἰθίοπος", "Αἰθῐ́οπῐ", "", "Ethiopian"]) + let v = native_list_append(v, ["ὤψ", "noun", "ὦπες", "ὠπός", "ὠπῐ́", "", "to the eye"]) + let v = native_list_append(v, ["Ἑβραῖος", "noun", "Ἑβραῖοι", "Ἑβραίου", "Ἑβραίῳ", "", "a Hebrew Israelite"]) + let v = native_list_append(v, ["Λάκων", "noun", "Λᾰ́κωνες", "Λᾰ́κωνος", "Λᾰ́κωνῐ", "", "Laconian inhabitant of"]) + let v = native_list_append(v, ["Ὠκεανός", "noun", "Ὠκεᾰνοί", "Ὠκεᾰνοῦ", "Ὠκεᾰνῷ", "", "Oceanus a Greek"]) + let v = native_list_append(v, ["χαίτη", "noun", "χαῖται", "χαίτης", "χαίτῃ", "", "loose flowing hair"]) + let v = native_list_append(v, ["Πάν", "noun", "Πάν", "Πᾱνός", "Πᾱνῐ́", "", "Pan the Greek"]) + let v = native_list_append(v, ["πάνθηρ", "noun", "πᾰ́νθηρες", "πᾰ́νθηρος", "πᾰ́νθηρῐ", "", "panther"]) + let v = native_list_append(v, ["Προκύων", "noun", "Προκύων", "Προκῠνός", "Προκῠνῐ́", "", "Procyon a star"]) + let v = native_list_append(v, ["Σείριος", "noun", "Σείριος", "Σειρίου", "Σειρίῳ", "", "Sirius the dog"]) + let v = native_list_append(v, ["στῦλος", "noun", "στῦλοι", "στῡ́λου", "στῡ́λῳ", "", "pillar column support"]) + let v = native_list_append(v, ["βυσσός", "noun", "βῠσσοί", "βῠσσοῦ", "βῠσσῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀκαδημία", "noun", "Ἀκαδημία", "Ἀκᾰδημῐ́ᾱς", "Ἀκᾰδημῐ́ᾳ", "", "The Academy an"]) + let v = native_list_append(v, ["ἀκαλήφη", "noun", "ἀκαλῆφαι", "ἀκᾰλήφης", "ἀκαλήφῃ", "", "stinging nettle Urtica"]) + let v = native_list_append(v, ["Ἄκανθος", "noun", "Ἄκανθος", "Ᾰ̓κᾰ́νθου", "Ᾰ̓κᾰ́νθῳ", "", "Acanthus a town"]) + let v = native_list_append(v, ["ἀκή", "noun", "ᾰ̓καί", "ᾰ̓κῆς", "ᾰ̓κῇ", "", "point"]) + let v = native_list_append(v, ["ἁψίς", "noun", "ᾰ̔ψῖδες", "ᾰ̔ψῖδος", "ᾰ̔ψῖδῐ", "", "net mesh"]) + let v = native_list_append(v, ["ὕλη", "noun", "ὗλαι", "ῡ̔́λης", "ῡ̔́λῃ", "", "wood trees forest"]) + let v = native_list_append(v, ["χάλασις", "noun", "χᾰλᾰ́σεις", "χᾰλᾰ́σεως", "χᾰλᾰ́σει", "", "relaxation slackening loosening"]) + let v = native_list_append(v, ["Σύβαρις", "noun", "Σύβαρις", "Σῠβᾰ́ρεως", "Σῠβᾰ́ρει", "", "Sybaris an ancient"]) + let v = native_list_append(v, ["Συβαρίτης", "noun", "Σῠβᾰρῖται", "Σῠβᾰρῑ́του", "Σῠβᾰρῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["οὖρος", "noun", "οὖροι", "οὔρου", "οὔρῳ", "", "fair wind"]) + let v = native_list_append(v, ["Ἀρκτοῦρος", "noun", "Ἀρκτοῦρος", "Ᾰ̓ρκτούρου", "Ᾰ̓ρκτούρῳ", "", "Arcturus a bright"]) + let v = native_list_append(v, ["ἄδυτον", "noun", "ἄδῠτᾰ", "ἀδύτου", "ἀδῠ́τῳ", "", "innermost sanctuary shrine"]) + let v = native_list_append(v, ["ἀλκυών", "noun", "ᾰ̓λκῠόνες", "ᾰ̓λκῠόνος", "ᾰ̓λκῠόνῐ", "", "kingfisher halcyon"]) + let v = native_list_append(v, ["ἀναρχία", "noun", "ᾰ̓νᾰρχῐ́αι", "ᾰ̓νᾰρχῐ́ᾱς", "ᾰ̓νᾰρχῐ́ᾳ", "", "lack of a"]) + let v = native_list_append(v, ["ἀντλία", "noun", "ἀντλῐ́αι", "ἀντλῐ́ᾱς", "ἀντλῐ́ᾳ", "", "A baling out"]) + let v = native_list_append(v, ["χλαμύς", "noun", "χλᾰμῠ́δες", "χλᾰμῠ́δος", "χλᾰμῠ́δῐ", "", "cloak robe mantle"]) + let v = native_list_append(v, ["μονάς", "noun", "μονᾰ́δες", "μονᾰ́δος", "μονᾰ́δῐ", "", "unit"]) + let v = native_list_append(v, ["ἄρωμα", "noun", "ἀρώμᾰτᾰ", "ἀρώματος", "ἀρώμᾰτῐ", "", "herb spice"]) + let v = native_list_append(v, ["βιβλιοθήκη", "noun", "βῐβλῐοθῆκαι", "βῐβλῐοθήκης", "βῐβλῐοθήκῃ", "", "bookcase"]) + let v = native_list_append(v, ["θρίαμβος", "noun", "θρῐ́ᾰμβοι", "θρῐᾰ́μβου", "θρῐᾰ́μβῳ", "", "thriambus hymn to"]) + let v = native_list_append(v, ["Θρίαμβος", "noun", "Θρίαμβος", "Θρῐᾰ́μβου", "Θρῐᾰ́μβῳ", "", "An epithet of"]) + let v = native_list_append(v, ["ὄρεξις", "noun", "ὀρέξεις", "ὀρέξεως", "ὀρέξει", "", "yearning longing desire"]) + let v = native_list_append(v, ["βιβλίον", "noun", "βῐβλῐ́ᾰ", "βῐβλῐ́ου", "βῐβλῐ́ῳ", "", "strip of papyrus"]) + let v = native_list_append(v, ["ἱστορία", "noun", "ῐ̔στορῐ́αι", "ῐ̔στορῐ́ᾱς", "ῐ̔στορῐ́ᾳ", "", "inquiry examination systematic"]) + let v = native_list_append(v, ["ἵππου", "noun", "ἵππου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γόμφος", "noun", "γόμφοι", "γόμφου", "γόμφῳ", "", "bolt dowel nail"]) + let v = native_list_append(v, ["ἕλιξ", "noun", "ἕλῐκες", "ἕλῐκος", "ἕλῐκῐ", "", "anything twisted winding"]) + let v = native_list_append(v, ["ὑπερβολή", "noun", "ὑπερβολαί", "ὑπερβολῆς", "ὑπερβολῇ", "", "overshooting"]) + let v = native_list_append(v, ["ὀδόντος", "noun", "ὀδόντος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θήκη", "noun", "θῆκαι", "θήκης", "θήκῃ", "", "box chest"]) + let v = native_list_append(v, ["καμηλοπάρδαλις", "noun", "κᾰμηλοπᾰρδᾰ́λεις", "κᾰμηλοπαρδάλεως", "κᾰμηλοπᾰρδᾰ́λει", "", "giraffe"]) + let v = native_list_append(v, ["πάρδαλις", "noun", "πᾰρδᾰ́λεις", "πᾰρδᾰ́λεως", "πᾰρδᾰ́λει", "", "leopard"]) + let v = native_list_append(v, ["Ὠκεανοῦ", "noun", "Ὠκεανοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Κένταυρος", "noun", "Κένταυρος", "Κενταύρου", "", "", "Centaur a member"]) + let v = native_list_append(v, ["κένταυρος", "noun", "κένταυροι", "κενταύρου", "κενταύρῳ", "", "centaur alternative form"]) + let v = native_list_append(v, ["ἰδία", "noun", "ῐ̓δῐ́αι", "ῐ̓δῐ́ᾱς", "ῐ̓δῐ́ᾳ", "", "ones place of"]) + let v = native_list_append(v, ["ἴδιον", "noun", "ῐ̓́δῐᾰ", "ῐ̓δῐ́ου", "ῐ̓δῐ́ῳ", "", "something which belongs"]) + let v = native_list_append(v, ["κολοσσός", "noun", "Κολοσσοί", "κολοσσοῦ", "Κολοσσῴ", "", "large statue"]) + let v = native_list_append(v, ["ἀποστασία", "noun", "ἀποστασῐ́αι", "ἀποστασίᾱς", "ἀποστασῐ́ᾳ", "", "defection revolt rebellion"]) + let v = native_list_append(v, ["ἄγνοια", "noun", "ᾰ̓́γνοιαι", "ᾰ̓γνοίᾱς", "ᾰ̓γνοίᾳ", "", "The state of"]) + let v = native_list_append(v, ["κροκόδειλος", "noun", "κροκόδειλοι", "κροκοδείλου", "κροκοδείλῳ", "", "lizard"]) + let v = native_list_append(v, ["λαός", "noun", "λᾱοί", "λᾱοῦ", "λᾱῷ", "", "people people assembled"]) + let v = native_list_append(v, ["γαμβρός", "noun", "γαμβροί", "γαμβροῦ", "γαμβρῷ", "", "son-in-law"]) + let v = native_list_append(v, ["ἄκρα", "noun", "ᾰ̓́κραι", "ᾰ̓́κρᾱς", "ᾰ̓́κρᾳ", "", "end point top"]) + let v = native_list_append(v, ["φύλακας", "noun", "φύλακας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["φύλακες", "noun", "φύλακες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["νύμφη", "noun", "νῠ́μφαι", "νῠ́μφης", "νῠ́μφῃ", "", "bride young wife"]) + let v = native_list_append(v, ["θέρεος", "noun", "θέρεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θέρους", "noun", "θέρους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κάρυον", "noun", "κᾰ́ρῠᾰ", "κᾰρῠ́ου", "κᾰρῠ́ῳ", "", "nut hard-shelled seed"]) + let v = native_list_append(v, ["σύγχυσις", "noun", "σῠγχῠ́σεις", "σῠγχῠ́σεως", "σῠγχῠ́σει", "", "a mixing"]) + let v = native_list_append(v, ["νύμφης", "noun", "νύμφης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θύρα", "noun", "θῠ́ραι", "θῠ́ρᾱς", "θῠ́ρᾳ", "", "door"]) + let v = native_list_append(v, ["ἀθεότης", "noun", "ἀθεότητες", "ἀθεότητος", "ἀθεότητῐ", "", "godlessness"]) + let v = native_list_append(v, ["Θρᾴκη", "noun", "Θρᾴκη", "Θρᾴκης", "Θρᾴκῃ", "", "Thrace a historical"]) + let v = native_list_append(v, ["Θρῄκη", "noun", "Θρῄκη", "Θρῄκης", "Θρῄκῃ", "", "Poetic form of"]) + let v = native_list_append(v, ["Θρᾷξ", "noun", "Θρᾷξ", "Θρᾳκός", "", "", "Thrax"]) + let v = native_list_append(v, ["Θρῇξ", "noun", "Θρῇξ", "Θρῃκός", "", "", "Tragic and Epic"]) + let v = native_list_append(v, ["Κελτός", "noun", "Κελτοί", "Κελτοῦ", "Κελτῷ", "", "a Celt"]) + let v = native_list_append(v, ["Γότθος", "noun", "Γότθοι", "Γότθου", "Γότθῳ", "", "a Goth"]) + let v = native_list_append(v, ["χορός", "noun", "χοροί", "χοροῦ", "χορῷ", "", "dance ring round"]) + let v = native_list_append(v, ["κρύσταλλος", "noun", "κρύσταλλοι", "κρυστάλλου", "κρυστάλλῳ", "", "ice"]) + let v = native_list_append(v, ["στοργή", "noun", "στοργαί", "στοργῆς", "στοργῇ", "", "love affection especially"]) + let v = native_list_append(v, ["Κίλιξ", "noun", "Κῐ́λῐκες", "Κῐ́λῐκος", "Κῐ́λῐκῐ", "", "a Cilician"]) + let v = native_list_append(v, ["τροφή", "noun", "τροφαί", "τροφῆς", "τροφῇ", "", "nourishment food"]) + let v = native_list_append(v, ["Σκλάβος", "noun", "Σκλᾰ́βοι", "Σκλᾰ́βου", "Σκλᾰ́βῳ", "", "Slav"]) + let v = native_list_append(v, ["πάπας", "noun", "πάπας", "πᾰ́που", "πᾰ́πᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["ὀνομαστικόν", "noun", "ὀνομᾰστῐκᾰ́", "ὀνομᾰστῐκοῦ", "ὀνομᾰστῐκῷ", "", "vocabulary arranged by"]) + let v = native_list_append(v, ["χάρτης", "noun", "χᾰ́ρται", "χᾰ́ρτου", "χᾰ́ρτῃ", "", "sheet of paper"]) + let v = native_list_append(v, ["ἄρκτου", "noun", "ἄρκτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀψινθίου", "noun", "ἀψινθίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βάθεος", "noun", "βάθεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βάθους", "noun", "βάθους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βάρεος", "noun", "βάρεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βάρους", "noun", "βάρους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γάλακος", "noun", "γάλακος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γάλακτος", "noun", "γάλακτος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σιγή", "noun", "σῑγαί", "σῑγῆς", "σῑγῇ", "", "silence"]) + let v = native_list_append(v, ["γλυφή", "noun", "γλῠφαί", "γλῠφῆς", "γλῠφῇ", "", "carving carved work"]) + let v = native_list_append(v, ["γλυφῆς", "noun", "γλυφῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀβακίσκου", "noun", "ἀβακίσκου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄβακος", "noun", "ἄβακος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀγάπης", "noun", "ἀγάπης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀγνοίας", "noun", "ἀγνοίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀγροῦ", "noun", "ἀγροῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀδελφῆς", "noun", "ἀδελφῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ᾍδου", "noun", "ᾍδου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀδύτου", "noun", "ἀδύτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀέρος", "noun", "ἀέρος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀθεότητος", "noun", "ἀθεότητος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Αἰθίοπος", "noun", "Αἰθίοπος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἵματος", "noun", "αἵματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἰνίγματος", "noun", "αἰνίγματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἰσθήσεως", "noun", "αἰσθήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἰῶνος", "noun", "αἰῶνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀκακίας", "noun", "ἀκακίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀκαλήφης", "noun", "ἀκαλήφης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Τραπεζοῦς", "noun", "Τραπεζοῦς", "Τρᾰπεζοῦντος", "Τρᾰπεζοῦντῐ", "", "Trapezus a colony"]) + let v = native_list_append(v, ["Κερασοῦς", "noun", "Κερασοῦς", "Κερᾰσοῦντος", "Κερᾰσοῦντῐ", "", "Cerasus Giresun Turkey"]) + let v = native_list_append(v, ["Τάρας", "noun", "Τάρας", "Τᾰ́ρᾰντος", "Τᾰ́ρᾰντῐ", "", "Taras a colony"]) + let v = native_list_append(v, ["Κολχίς", "noun", "Κολχίς", "Κολχῐ́δος", "Κολχῐ́δῐ", "", "Colchis a historical"]) + let v = native_list_append(v, ["Βύζας", "noun", "Βύζας", "Βῡ́ζᾰντος", "Βῡ́ζᾰντῐ", "", "a male given"]) + let v = native_list_append(v, ["Βυζάντιον", "noun", "Βυζάντιον", "Βῡζᾰντῐ́ου", "Βῡζᾰντῐ́ῳ", "", "Byzantium an ancient"]) + let v = native_list_append(v, ["Κωνσταντῖνος", "noun", "Κωνσταντῖνος", "Κωνστᾰντῑ́νου", "Κωνστᾰντῑ́νῳ", "", "Constantine"]) + let v = native_list_append(v, ["Κωνσταντινούπολις", "noun", "Κωνσταντινούπολις", "Κωνστᾰντῑνουπόλεως", "Κωνστᾰντῑνουπόλεῐ̈", "", "Constantinople the former"]) + let v = native_list_append(v, ["Εὔβοια", "noun", "Εὔβοια", "Εὐβοίᾱς", "Εὐβοίᾳ", "", "Euboea"]) + let v = native_list_append(v, ["Ἀττική", "noun", "Ἀττική", "Ἀττικῆς", "Ἀττῐκῇ", "", "Attica"]) + let v = native_list_append(v, ["Χαλκίς", "noun", "Χαλκίς", "Χαλκῐ́δος", "Χαλκῐ́δῐ", "", "Chalcis"]) + let v = native_list_append(v, ["Χαλκιδική", "noun", "Χαλκιδική", "Χαλκῐδῐκῆς", "Χᾰλκῐδῐκῇ", "", "Chalcidice Chalkidiki a"]) + let v = native_list_append(v, ["Οὗννος", "noun", "Οὗννοι", "Οὕννου", "Οὕννῳ", "", "Hun"]) + let v = native_list_append(v, ["Ἄραψ", "noun", "αἱ Ᾰ̓́ρᾰβες", "Ἄρᾰβος", "τῇ Ᾰ̓́ρᾰβῐ", "", "Arab"]) + let v = native_list_append(v, ["Ἀραβία", "noun", "Ἀραβία", "Ἀρᾰβῐ́ᾱς", "Ἀρᾰβίᾳ", "", "a peninsula of"]) + let v = native_list_append(v, ["Γερμανός", "noun", "Γερμᾱνοί", "Γερμᾱνοῦ", "Γερμᾱνῷ", "", "A Germanic person"]) + let v = native_list_append(v, ["Γερμανία", "noun", "Γερμανία", "Γερμᾱνῐ́ᾱς", "Γερμᾱνῐ́ᾳ", "", "Germania an ancient"]) + let v = native_list_append(v, ["Ἰταλία", "noun", "Ἰταλία", "Ῑ̓τᾰλῐ́ᾱς", "Ῑ̓τᾰλῐ́ᾳ", "", "southernmost Italy roughly"]) + let v = native_list_append(v, ["Καπύη", "noun", "Καπύη", "Κᾰπύης", "Καπύῃ", "", "Capua an Etruscan"]) + let v = native_list_append(v, ["κάθαρμα", "noun", "κᾰθᾰ́ρμᾰτᾰ", "κᾰθάρμᾰτος", "κᾰθᾰ́ρμᾰτῐ", "", "offscouring"]) + let v = native_list_append(v, ["ἀκάνθου", "noun", "ἀκάνθου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀκῆς", "noun", "ἀκῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀκροάματος", "noun", "ἀκροάματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀλέκτορος", "noun", "ἀλέκτορος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἁλιαιέτου", "noun", "ἁλιαιέτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀλκυόνος", "noun", "ἀλκυόνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἁλός", "noun", "ἁλός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀμφισβαίνης", "noun", "ἀμφισβαίνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀναρχίας", "noun", "ἀναρχίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τανδρός", "noun", "τανδρός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄνθους", "noun", "ἄνθους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀνθρακιᾶς", "noun", "ἀνθρακιᾶς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀντλίας", "noun", "ἀντλίας", "", "", "", "inflection of ἀντλῐ́ᾱ"]) + let v = native_list_append(v, ["ἀποκαλύψεως", "noun", "ἀποκαλύψεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βδέλλα", "noun", "βδέλλαι", "βδέλλης", "βδέλλῃ", "", "leech a blood-sucking"]) + let v = native_list_append(v, ["Κῶς", "noun", "Κῶς", "Κῶ", "Κῷ", "", "Kos an island"]) + let v = native_list_append(v, ["Κυκλάς", "noun", "Κῠκλᾰ́δες", "Κῠκλᾰ́δος", "Κῠκλᾰ́δῐ", "", "An Aegean island"]) + let v = native_list_append(v, ["Θήρα", "noun", "Θήρα", "Θήρᾱς", "Θήρᾳ", "", "Thira Santorini an"]) + let v = native_list_append(v, ["Κόρινθος", "noun", "Κόρινθος", "Κορῐ́νθου", "Κορῐ́νθῳ", "", "Corinth"]) + let v = native_list_append(v, ["Κυρηναϊκή", "noun", "Κυρηναϊκή", "Κῡρηνᾰῐ̈κῆς", "Κῡρηνᾰῐ̈κῇ", "", "Cyrenaica a geographic"]) + let v = native_list_append(v, ["Σικελία", "noun", "Σικελία", "Σῐκελῐ́ᾱς", "Σῐκελῐ́ᾳ", "", "Sicily an island"]) + let v = native_list_append(v, ["Σπάρτη", "noun", "Σπάρτη", "Σπᾰ́ρτης", "Σπᾰ́ρτῃ", "", "Sparta Sparti a"]) + let v = native_list_append(v, ["Μυκῆναι", "noun", "Μῠκῆναι", "Μῠκηνῶν", "Μῠκήναις", "", "Mycenae"]) + let v = native_list_append(v, ["Θῆβαι", "noun", "Θηβῶν", "Θηβῶν", "Θήβαις", "", "Thebes the name"]) + let v = native_list_append(v, ["Θεσσαλία", "noun", "Θεσσαλία", "Θεσσᾰλῐ́ᾱς", "Θεσσᾰλῐ́ᾳ", "", "a historical region"]) + let v = native_list_append(v, ["Παφλαγονία", "noun", "Παφλαγονία", "Παφλᾰγονῐ́ᾱς", "Παφλᾰγονῐ́ᾳ", "", "Paphlagonia a historical"]) + let v = native_list_append(v, ["Βιθυνία", "noun", "Βιθυνία", "Βῑθῡνῐ́ᾱς", "Βῑθῡνῐ́ᾳ", "", "Bithynia a geographic"]) + let v = native_list_append(v, ["Θυνία", "noun", "Θυνία", "Θῡνῐ́ᾱς", "Θῡνῐ́ᾳ", "", "Thynia"]) + let v = native_list_append(v, ["Τρωάς", "noun", "Τρωάς", "Τρωᾰ́δος", "Τρωᾰ́δῐ", "", "the Troas the"]) + let v = native_list_append(v, ["Τροία", "noun", "Τροία", "Τροίας", "Τροίᾳ", "", "Troy"]) + let v = native_list_append(v, ["Ἰωνία", "noun", "Ἰωνία", "Ἰωνῐ́ᾱς", "Ῐ̓ωνῐ́ᾳ", "", "Ionia"]) + let v = native_list_append(v, ["Καρία", "noun", "Καρία", "Κᾱρῐ́ᾱς", "Κᾱρῐ́ᾳ", "", "Caria a historical"]) + let v = native_list_append(v, ["Γαλατία", "noun", "Γαλατία", "Γᾰλᾰτῐ́ᾱς", "Γᾰλᾰτῐ́ᾳ", "", "Galatia a historical"]) + let v = native_list_append(v, ["Λυκαονία", "noun", "Λυκαονία", "Λῠκᾱονῐ́ᾱς", "Λῠκᾱονῐ́ᾳ", "", "Lycaonia"]) + let v = native_list_append(v, ["Λυκία", "noun", "Λυκία", "Λῠκῐ́ᾱς", "Λῠκῐ́ᾳ", "", "Lycia a historical"]) + let v = native_list_append(v, ["Λυδία", "noun", "Λυδία", "Λῡδῐ́ᾱς", "Λῡδῐ́ᾳ", "", "Lydia a historical"]) + let v = native_list_append(v, ["Μυσία", "noun", "Μυσία", "Μῡσῐ́ᾱς", "Μῡσῐ́ᾳ", "", "Mysia"]) + let v = native_list_append(v, ["Μοισία", "noun", "Μοισία", "Μοισῐ́ᾱς", "Μοισῐ́ᾳ", "", "Moesia"]) + let v = native_list_append(v, ["Βοιωτία", "noun", "Βοιωτία", "Βοιωτῐ́ᾱς", "Βοιωτῐ́ᾳ", "", "Boeotia a historical"]) + let v = native_list_append(v, ["Ἀρμενία", "noun", "Ἀρμενία", "Ἀρμενίᾱς", "Ἀρμενίᾳ", "", "Armenia an ancient"]) + let v = native_list_append(v, ["Ἐρυθραία", "noun", "Ἐρυθραία", "Ἐρῠθραίᾱς", "Ἐρῠθραίᾳ", "", "Erythraea the land"]) + let v = native_list_append(v, ["Αἰτωλία", "noun", "Αἰτωλία", "Αἰτωλῐ́ᾱς", "Αἰτωλῐ́ᾳ", "", "Aetolia a mountainous"]) + let v = native_list_append(v, ["Ἀκαρνανία", "noun", "Ἀκαρνανία", "Ἀκαρνᾱνίᾱς", "Ἀκαρνᾱνίᾳ", "", "Acarnania an ancient"]) + let v = native_list_append(v, ["Τυρρηνία", "noun", "Τυρρηνία", "Τυρρηνῐ́ᾱς", "Τυρρηνῐ́ᾳ", "", "Tyrrhenia Etruria"]) + let v = native_list_append(v, ["Τυρσηνία", "noun", "Τυρσηνία", "Τυρσηνῐ́ᾱς", "Τυρσηνῐ́ᾳ", "", "Ionic form of"]) + let v = native_list_append(v, ["Καλαβρία", "noun", "Καλαβρία", "Κᾰλᾰβρῐ́ᾱς", "Κᾰλᾰβρῐ́ᾳ", "", "Calabria"]) + let v = native_list_append(v, ["Καμπανία", "noun", "Καμπανία", "Καμπᾱνίᾱς", "Καμπᾱνίᾳ", "", "Campania"]) + let v = native_list_append(v, ["Ἀπουλία", "noun", "Ἀπουλία", "Ἀπουλῐ́ᾱς", "Ἀπουλῐ́ᾳ", "", "Apulia a former"]) + let v = native_list_append(v, ["Μασσαλία", "noun", "Μασσαλία", "Μασσᾰλίᾱς", "Μασσᾰλίᾳ", "", "Massalia ancient Greek"]) + let v = native_list_append(v, ["Γαλλία", "noun", "Γαλλία", "Γᾰλλῐ́ᾱς", "Γᾰλλῐ́ᾳ", "", "Gaul"]) + let v = native_list_append(v, ["Λυσιτανία", "noun", "Λυσιτανία", "Λῡσῐτᾱνῐ́ᾱς", "Λῡσῐτᾱνῐ́ᾳ", "", "Lusitania"]) + let v = native_list_append(v, ["Βακτρία", "noun", "Βακτρία", "Βακτρίᾱς", "Βακτρίᾳ", "", "Bactria"]) + let v = native_list_append(v, ["Ἰκαρία", "noun", "Ἰκαρία", "Ῑ̓κᾰρῐ́ᾱς", "Ῑ̓κᾰρῐ́ᾳ", "", "Ikaria"]) + let v = native_list_append(v, ["Ἰλλυρία", "noun", "Ἰλλυρία", "Ἰλλῠρῐ́ᾱς", "Ἰλλῠρῐ́ᾳ", "", "Illyria a vaguely-defined"]) + let v = native_list_append(v, ["Δακία", "noun", "Δακία", "Δακίας", "Δακίᾳ", "", "Dacia"]) + let v = native_list_append(v, ["Ῥωμανία", "noun", "Ῥωμανία", "Ῥωμᾱνῐ́ᾱς", "Ῥωμᾱνῐ́ᾳ", "", "Roman Empire an"]) + let v = native_list_append(v, ["Βλαχία", "noun", "Βλαχία", "Βλαχῐ́ᾱς", "Βλαχῐ́ᾳ", "", "Wallachia a historical"]) + let v = native_list_append(v, ["Παρθία", "noun", "Παρθία", "Πᾰρθῐ́ᾱς", "Πᾰρθῐ́ᾳ", "", "Parthia Parthian Empire"]) + let v = native_list_append(v, ["Πελασγία", "noun", "Πελασγία", "Πελασγῐ́ᾱς", "Πελασγῐ́ᾳ", "", "Pelasgia"]) + let v = native_list_append(v, ["Μύρρα", "noun", "Μύρρα", "Μύρρᾱς", "Μύρρᾳ", "", "Myrrha the mother"]) + let v = native_list_append(v, ["Σμύρνη", "noun", "Σμύρνη", "Σμύρνης", "Σμύρνῃ", "", "Ionic form of"]) + let v = native_list_append(v, ["Αἰολίς", "noun", "Αἰολίς", "Αἰολῐ́δος", "Αἰολῐ́δῐ", "", "Aeolis"]) + let v = native_list_append(v, ["Ἄγκυρα", "noun", "Ἄγκυρα", "Ἀγκῡ́ρᾱς", "Ἀγκῡ́ρᾳ", "", "Ancyra Angora Ankara"]) + let v = native_list_append(v, ["Προῦσα", "noun", "Προῦσα", "Προύσης", "Προύσῃ", "", "Prusa Bursa Turkey"]) + let v = native_list_append(v, ["Ἁδριανούπολις", "noun", "Ἁδριανούπολις", "Ἁδριανουπόλεως", "Ἁδριανουπόλει", "", "Adrianople Edirne Turkey"]) + let v = native_list_append(v, ["Τραϊανούπολις", "noun", "Τραϊανούπολις", "Τραϊανουπόλεως", "Τραϊᾱνουπόλει", "", "Trajanopolis"]) + let v = native_list_append(v, ["Νεάπολις", "noun", "Νεάπολις", "Νεᾱπόλεως", "Νεᾱπόλει", "", "Any one of"]) + let v = native_list_append(v, ["Ἄβδηρα", "noun", "Ᾰ̓́βδηρᾰ", "Ᾰ̓βδήρων", "Ᾰ̓βδήροις", "", "Abdera a city"]) + let v = native_list_append(v, ["Ἄβυδος", "noun", "Ἄβυδος", "Ἄβῡδου", "Ἀβύδῳ", "", "Abydos an ancient"]) + let v = native_list_append(v, ["Ἀβροκόμας", "noun", "Ἀβροκόμας", "Ἀβροκόμου", "Ἀβροκόμᾳ", "", "Abrocomas a satrap"]) + let v = native_list_append(v, ["Ἀκάμας", "noun", "Ἀκάμας", "Ᾰ̓κᾰ́μᾰντος", "Ᾰ̓κᾰ́μᾰντῐ", "", "Acamas one of"]) + let v = native_list_append(v, ["ἄκανθος", "noun", "ἄκᾰνθοι", "ἀκᾰ́νθου", "ἀκᾰ́νθῳ", "", "The acanthus plant"]) + let v = native_list_append(v, ["Ἄκαστος", "noun", "Ἄκαστος", "Ἀκάστου", "Ἀκάστῳ", "", "Acastus one of"]) + let v = native_list_append(v, ["Ἀκεσίνης", "noun", "Ἀκεσίνης", "Ἀκεσίνου", "Ἀκεσίνῃ", "", "Acesines Chenab a"]) + let v = native_list_append(v, ["Ἀχαιμένης", "noun", "Ἀχαιμένης", "Ᾰ̓χαιμένους", "Ᾰ̓χαιμένει", "", "Achaemenes the founder"]) + let v = native_list_append(v, ["Ἀχαρναί", "noun", "Ἀχαρνῶν", "Ἀχαρνῶν", "Ἀχαρναῖς", "", "Acharnae"]) + let v = native_list_append(v, ["Ἀχελῷος", "noun", "Ἀχελῷος", "Ἀχελῴου", "Ἀχελῴῳ", "", "Achelous a name"]) + let v = native_list_append(v, ["Ἀχέρων", "noun", "Ἀχέρων", "Ἀχέροντος", "Ἀχέροντῐ", "", "Acheron a river"]) + let v = native_list_append(v, ["Ἀχιλλᾶς", "noun", "Ἀχιλλᾶς", "Ἀχιλλᾶ", "Ἀχιλλᾷ", "", "Achillas a Pope"]) + let v = native_list_append(v, ["Ἀχιλλεύς", "noun", "Ἀχιλλεύς", "Ᾰ̓χῐλλέως", "Ᾰ̓χῐλλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἀκύλιος", "noun", "Ἀκύλιος", "Ἀκῠλίου", "Ἀκυλίῳ", "", "Acilius"]) + let v = native_list_append(v, ["Ἀκρίσιος", "noun", "Ἀκρίσιος", "Ᾰ̓κρῐ̆σῐ́ου", "Ᾰ̓κρῐσῐ́ῳ", "", "Acrisius a mythological"]) + let v = native_list_append(v, ["Ἀκροκόρινθος", "noun", "Ἀκροκόρινθος", "Ᾰ̓κροκορῐ́νθου", "Ᾰ̓κροκορῐ́νθῳ", "", "Acrocorinth"]) + let v = native_list_append(v, ["Ἀκταίων", "noun", "Ἀκταίων", "Ἀκταίωνος", "Ἀκταίωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἄκτιον", "noun", "Ἄκτιον", "Ἀκτίου", "Ἀκτίῳ", "", "Actium now called"]) + let v = native_list_append(v, ["Ἄκτωρ", "noun", "Ἄκτωρ", "Ἄκτορος", "Ἄκτορῐ", "", "Actor a mens"]) + let v = native_list_append(v, ["Ἀδείμαντος", "noun", "Ἀδείμαντος", "Ἀδειμάντου", "Ᾰ̓δειμᾰ́ντῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀτισών", "noun", "Ἀτισών", "Ἀτισῶνος", "Ἀτισῶνῐ", "", "Adige/Etsch a river"]) + let v = native_list_append(v, ["Ἄδμητος", "noun", "Ἄδμητος", "Ἀδμήτου", "Ἀδμήτῳ", "", "Admetus"]) + let v = native_list_append(v, ["Ἄδωνις", "noun", "Ἄδωνις", "Ἀδώνῐδος", "Ἀδώνῐδῐ", "", "Adonis"]) + let v = native_list_append(v, ["Ἀτραμύττιον", "noun", "Ἀτραμύττιον", "Ἀτρᾰμυττῐ́ου", "Ἀτρᾰμυττῐ́ῳ", "", "Edremit a city"]) + let v = native_list_append(v, ["Ἀδράστεια", "noun", "Ἀδράστεια", "Ᾰ̓δρᾱστείᾱς", "Ᾰ̓δρᾱστείᾳ", "", "Adrastea Adrasteia"]) + let v = native_list_append(v, ["Ἄδραστος", "noun", "Ἄδραστος", "Ᾰ̓δρᾱ́στου", "Ᾰ̓δρᾱ́στῳ", "", "Adrastus"]) + let v = native_list_append(v, ["Αἰακός", "noun", "Αἰακός", "Αἰᾰκοῦ", "Αἰᾰκῷ", "", "Aeacus"]) + let v = native_list_append(v, ["Αἴδουος", "noun", "Αἴδουοι", "Αἰδούου", "Αἰδούῳ", "", "one of the"]) + let v = native_list_append(v, ["Αἰήτης", "noun", "Αἰήτης", "Αἰήτου", "Αἰήτῃ", "", "Aeëtes a king"]) + let v = native_list_append(v, ["βασίλισσα", "noun", "βᾰσῐ́λῐσσαι", "βᾰσῐλῐ́σσης", "βᾰσῐλῐ́σσῃ", "", "queen a female"]) + let v = native_list_append(v, ["πύργος", "noun", "πῠ́ργοι", "πῠ́ργου", "πῠ́ργῳ", "", "tower watchtower"]) + let v = native_list_append(v, ["Αἰγαῖον", "noun", "Αἰγαῖον", "Αἰγαίου", "Αἰγαίῳ", "", "Aegean Sea a"]) + let v = native_list_append(v, ["Αἰγεύς", "noun", "Αἰγεύς", "Αἰγέως", "Αἰγεῖ", "", "a male given"]) + let v = native_list_append(v, ["Αἰγιαλεύς", "noun", "Αἰγῐᾰλῆς", "Αἰγῐᾰλέως", "Αἰγῐᾰλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Αἴγινα", "noun", "Αἴγινα", "Αἰγῑ́νης", "Αἰγῑ́νῃ", "", "Aegina an island"]) + let v = native_list_append(v, ["Αἴγισθος", "noun", "Αἴγισθος", "Αἰγίσθου", "Αἰγίσθῳ", "", "Aegisthus"]) + let v = native_list_append(v, ["Αἰμίλιος", "noun", "Αἰμίλῐοι", "Αἰμιλῐ́ου", "Αἰμιλῐ́ῳ", "", "Aemilius any individual"]) + let v = native_list_append(v, ["Αἰνείας", "noun", "Αἰνείας", "Αἰνείου", "Αἰνείᾳ", "", "Aeneas"]) + let v = native_list_append(v, ["Αἶνος", "noun", "Αἶνος", "Αἴνου", "Αἴνῳ", "", "Aenus"]) + let v = native_list_append(v, ["Αἴολος", "noun", "Αἴολος", "Αἰόλου", "Αἰόλῳ", "", "Aeolus"]) + let v = native_list_append(v, ["Ἀερόπη", "noun", "Ἀερόπη", "Ᾱ̓ερόπης", "Ᾱ̓ερόπῃ", "", "Aerope"]) + let v = native_list_append(v, ["Αἰσχίνης", "noun", "Αἰσχίνης", "Αἰσχῐ́νου", "Αἰσχῐ́νῃ", "", "a male given"]) + let v = native_list_append(v, ["Αἴσωπος", "noun", "Αἴσωπος", "Αἰσώπου", "Αἰσώπῳ", "", "Aesop"]) + let v = native_list_append(v, ["Αἴθρα", "noun", "Αἴθρα", "Αἴθρᾱς", "Αἴθρᾳ", "", "Aethra"]) + let v = native_list_append(v, ["Ἀφρική", "noun", "Ἀφρική", "Ἀφρικῆς", "Ἀφρῐκῇ", "", "Africa a former"]) + let v = native_list_append(v, ["Ἀγασίας", "noun", "Ἀγασίας", "Ἀγᾰσίου", "Ἀγᾰσίᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀγάθων", "noun", "Ἀγάθων", "Ᾰ̓γᾰ́θωνος", "Ᾰ̓γᾰ́θωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀγαύη", "noun", "Ἀγαύη", "Ᾰ̓γαύης", "Ᾰ̓γαύῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἀγήνωρ", "noun", "Ἀγήνωρ", "Ᾰ̓γήνορος", "Ᾰ̓γήνορῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀγησίλαος", "noun", "Ἀγησίλαος", "Ᾱ̓γησῐλᾱ́ου", "Ᾱ̓γησῐλᾱ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀκράγας", "noun", "Ἀκράγας", "Ἀκράγαντος", "Ἀκρᾰ́γᾰντῐ", "", "Acragas Agrigentum Agrigento"]) + let v = native_list_append(v, ["Ἀγριππίνη", "noun", "Ἀγριππίνη", "Ἀγριππῑ́νης", "Ἀγριππῑ́νῃ", "", "Agrippina"]) + let v = native_list_append(v, ["Ἀγύρριος", "noun", "Ἀγύρριος", "Ἀγυρρίου", "Ἀγυρρίῳ", "", "Agyrrhius"]) + let v = native_list_append(v, ["Ἄλας", "noun", "Ἄλας", "Ᾱ̓́λᾱ", "Ᾱ̓́λᾳ", "", "Ahala"]) + let v = native_list_append(v, ["Ἀηνόβαρβος", "noun", "Ἀηνόβαρβος", "Ἀηνοβάρβου", "Ἀηνοβάρβῳ", "", "Ahenobarbus"]) + let v = native_list_append(v, ["Αἴας", "noun", "Αἴᾰντες", "Αἴᾰντος", "Αἴᾰντῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἄλβη", "noun", "Ἄλβη", "Ἄλβης", "Ἄλβῃ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀλκαῖος", "noun", "Ἀλκαῖος", "Ἀλκαίου", "Ἀλκαίῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀλκαμένης", "noun", "Ἀλκαμένης", "Ἀλκᾰμένους", "Ἀλκᾰμένει", "", "a male given"]) + let v = native_list_append(v, ["Ἄλκηστις", "noun", "Ἄλκηστις", "Ἀλκήστῐδος", "Ἀλκήστῐδῐ", "", "Alcestis"]) + let v = native_list_append(v, ["Ἀλκιβιάδης", "noun", "Ἀλκιβιάδης", "Ἀλκῐβιάδου", "Ἀλκῐβιάδῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἀλκμαίων", "noun", "Ἀλκμαίων", "Ᾰ̓λκμαίωνος", "Ᾰ̓λκμαίωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀλκμήνη", "noun", "Ἀλκμήνη", "Ἀλκμήνης", "Ἀλκμήνῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἄλεος", "noun", "Ἄλεος", "Ἀλέου", "Ἀλέῳ", "", "Aleus king of"]) + let v = native_list_append(v, ["Ἀλίας", "noun", "Ἀλίας", "Ἀλίᾱ", "Ἀλίᾳ", "", "Allia"]) + let v = native_list_append(v, ["Ἀλόπη", "noun", "Ἀλόπη", "Ἀλόπης", "Ἀλόπῃ", "", "Alope Phthiotis Greece"]) + let v = native_list_append(v, ["Ἀλφεσίβοια", "noun", "Ἀλφεσίβοια", "Ἀλφεσῐβοίᾱς", "Ἀλφεσῐβοίᾳ", "", "Alphesiboea"]) + let v = native_list_append(v, ["Ἀλφειός", "noun", "Ἀλφειός", "Ἀλφειοῦ", "Ἀλφειῷ", "", "Alpheus or Alfeios"]) + let v = native_list_append(v, ["Ἄλπεις", "noun", "Ᾰ̓́λπεις", "Ἄλπεων", "Ᾰ̓́λπεσῐ", "", "Alps"]) + let v = native_list_append(v, ["Ἀλθαία", "noun", "Ἀλθαία", "Ἀλθαίᾱς", "Ἀλθαίᾳ", "", "Althaea"]) + let v = native_list_append(v, ["Ἀλυάττης", "noun", "Ἀλυάττης", "Ἀλυάττου", "Ἀλυάττῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἄμανος", "noun", "Ἄμανος", "Ᾰ̓μᾱ́νου", "Ᾰ̓μᾱ́νῳ", "", "Amanus Nur Mountains"]) + let v = native_list_append(v, ["Ἄμασις", "noun", "Ἄμασις", "Ᾰ̓μᾱ́σεως", "Ᾰ̓μᾱ́σει", "", "Amasis"]) + let v = native_list_append(v, ["Ἀμαθοῦς", "noun", "Ἀμαθοῦς", "Ᾰ̓μᾰθοῦντος", "Ᾰ̓μᾰθοῦντῐ", "", "Amathus an ancient"]) + let v = native_list_append(v, ["Ἀμπρακία", "noun", "Ἀμπρακία", "Ἀμπρᾰκῐ́ᾱς", "Ἀμπρᾰκῐ́ᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀμεινίας", "noun", "Ἀμεινίας", "Ἀμεινίου", "Ἀμεινίᾳ", "", "Ameinias a common"]) + let v = native_list_append(v, ["Ἄμμων", "noun", "Ἄμμων", "Ᾰ̓́μμωνος", "Ᾰ̓́μμωνῐ", "", "Amun"]) + let v = native_list_append(v, ["Ἀμομφάρετος", "noun", "Ἀμομφάρετος", "Ᾰ̓μομφᾰρέτου", "Ᾰ̓μομφᾰρέτῳ", "", "Amompharetus"]) + let v = native_list_append(v, ["Ἀμφιλοχία", "noun", "Ἀμφιλοχία", "Ἀμφῐλοχῐ́ᾱς", "Ἀμφῐλοχῐ́ᾳ", "", "Amphilochia a district"]) + let v = native_list_append(v, ["Ἀμφίλοχος", "noun", "Ἀμφίλοχος", "Ἀμφῐλόχου", "Ἀμφῐλόχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀμφίων", "noun", "Ἀμφίων", "Ἀμφῑ́ονος", "Ἀμφῑ́ονῐ", "", "Amphion"]) + let v = native_list_append(v, ["Ἀμφίπολις", "noun", "Ἀμφίπολις", "Ᾰ̓μφῐπόλεως", "Ᾰ̓μφῐπόλει", "", "Amphipolis a city"]) + let v = native_list_append(v, ["Ἄμφισσα", "noun", "Ἄμφισσα", "Ἀμφίσσης", "Ἀμφίσσῃ", "", "Amphissa Amfissa"]) + let v = native_list_append(v, ["Ἀμφιτρύων", "noun", "Ἀμφιτρύων", "Ἀμφῐτρῡ́ωνος", "Ἀμφῐτρῡ́ωνῐ", "", "Amphitryon"]) + let v = native_list_append(v, ["Ἀμούλιος", "noun", "Ἀμούλιος", "Ᾰ̓μουλῐ́ου", "Ᾰ̓μουλῐ́ῳ", "", "Amulius"]) + let v = native_list_append(v, ["Ἀμύκλαι", "noun", "Ἀμῠ́κλαι", "Ἀμῠκλῶν", "Ἀμῠ́κλαις", "", "Amyclae Amykles"]) + let v = native_list_append(v, ["Ἀμύντας", "noun", "Ἀμύντας", "Ἀμύντου", "Ἀμύντᾳ", "", "Amyntas"]) + let v = native_list_append(v, ["Ἀμύντωρ", "noun", "Ἀμύντωρ", "Ᾰ̓μύντορος", "Ᾰ̓μύντορῐ", "", "Amyntor"]) + let v = native_list_append(v, ["Ἀνακρέων", "noun", "Ἀνακρέων", "Ᾰ̓νᾰκρέοντος", "Ᾰ̓νᾰκρέοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀνακτορία", "noun", "Ἀνακτορία", "Ἀνακτορῐ́ᾱς", "Ἀνακτορῐ́ᾳ", "", "a female given"]) + let v = native_list_append(v, ["Ἄναια", "noun", "Ἄναιᾰ", "Ἀναίων", "Ἀναίοις", "", "Anaea"]) + let v = native_list_append(v, ["Ἄναπος", "noun", "Ἄναπος", "Ἄνᾱ́που", "Ἀνᾱ́πῳ", "", "It was a"]) + let v = native_list_append(v, ["Γεώργιος", "noun", "Γεώργιος", "Γεωργῐ́ου", "Γεωργῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀναξαγόρας", "noun", "Ἀναξαγόρας", "Ἀναξᾰγόρου", "Ἀναξᾰγόρᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀναξίβιος", "noun", "Ἀναξίβιος", "Ἀναξῐβῐ́ου", "Ἀναξῐβῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀναξίμανδρος", "noun", "Ἀναξίμανδρος", "Ἀναξῐμᾰ́νδρου", "Ἀναξῐμᾰ́νδρῳ", "", "Anaximander Ionian philosopher"]) + let v = native_list_append(v, ["Ἀγκαῖος", "noun", "Ἀγκαῖος", "Ἀγκαίου", "Ἀγκαίῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀγχίσης", "noun", "Ἀγχίσης", "Ἀγχῑ́σου", "Ἀγχῑ́σῃ", "", "a male given"]) + let v = native_list_append(v, ["Αἰκατερίνη", "noun", "Αἰκατερίνη", "Αἰκατερίνης", "Αἰκατερῑ́νῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἀνδοκίδης", "noun", "Ἀνδοκίδης", "Ἀνδοκίδου", "Ἀνδοκίδῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἀνδραίμων", "noun", "Ἀνδραίμων", "Ἀνδραίμονος", "Ἀνδραίμονῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀνδρομέδα", "noun", "Ἀνδρομέδα", "Ᾰ̓νδρομέδᾱς", "Ᾰ̓νδρομέδᾳ", "", "Andromeda"]) + let v = native_list_append(v, ["Ἄνδρος", "noun", "Ἄνδρος", "Ᾰ̓́νδρου", "Ᾰ̓́νδρῳ", "", "Andros an island"]) + let v = native_list_append(v, ["Ἀνδροτίων", "noun", "Ἀνδροτίων", "Ἀνδροτῑ́ωνος", "Ἀνδροτῑ́ωνῐ", "", "Androtion"]) + let v = native_list_append(v, ["Ἀνίων", "noun", "Ἀνίων", "Ἀνίωνος", "Ἀνίωνῐ", "", "Anio Aniene"]) + let v = native_list_append(v, ["Ἀνταλκίδας", "noun", "Ἀνταλκίδας", "Ἀνταλκῐ́δου", "Ἀνταλκῐ́δᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἄντανδρος", "noun", "Ἄντανδρος", "Ἀντᾰ́νδρου", "Ἀντᾰ́νδρῳ", "", "Antandrus a city"]) + let v = native_list_append(v, ["Ἀντήνωρ", "noun", "Ἀντήνωρ", "Ἀντήνορος", "Ἀντήνορῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀνθεμοῦς", "noun", "Ἀνθεμοῦς", "Ᾰ̓νθεμοῦντος", "Ᾰ̓νθεμοῦντῐ", "", "Anthemus a town"]) + let v = native_list_append(v, ["Ἀντίκλεια", "noun", "Ἀντίκλεια", "Ἀντῐκλείᾱς", "Ἀντῐκλείᾳ", "", "Anticlea"]) + let v = native_list_append(v, ["Ἀντικύρα", "noun", "Ἀντικύρα", "Ἀντῐκύρᾱς", "Ἀντῐκύρᾳ", "", "Anticyra a city"]) + let v = native_list_append(v, ["Ἀντιγόνη", "noun", "Ἀντιγόνη", "Ᾰ̓ντῐγόνης", "Ᾰ̓ντῐγόνῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἀντίγονος", "noun", "Ἀντίγονος", "Ἀντῐγόνου", "Ἀντῐγόνῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀντίλοχος", "noun", "Ἀντίλοχος", "Ἀντῐλόχου", "Ἀντῐλόχῳ", "", "Antilochus"]) + let v = native_list_append(v, ["Ἀντίπατρος", "noun", "Ἀντίπατρος", "Ᾰ̓ντῐπᾰ́τρου", "Ᾰ̓ντῐπᾰ́τρῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀντίμαχος", "noun", "Ἀντίμαχος", "Ἀντιμᾰ́χου", "Ᾰ̓ντῐμᾰ́χῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀντίοχος", "noun", "Ἀντίοχος", "Ᾰ̓ντῐόχου", "Ᾰ̓ντῐόχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀντιφῶν", "noun", "Ἀντιφῶν", "Ᾰ̓ντῐφῶντος", "Ᾰ̓ντῐφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀμεινοκλῆς", "noun", "Ἀμεινοκλῆς", "Ἀμεινοκλέους", "Ἀμεινοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἀνδροκλῆς", "noun", "Ἀνδροκλῆς", "Ἀνδροκλέους", "Ἀνδροκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἀντισθένης", "noun", "Ἀντισθένης", "Ᾰ̓ντῐσθένους", "Ᾰ̓ντῐσθένει", "", "a male given"]) + let v = native_list_append(v, ["Ἄντιον", "noun", "Ἄντιον", "Ἀντῐ́ου", "Ἀντῐ́ῳ", "", "Antium an ancient"]) + let v = native_list_append(v, ["Ἀντώνιος", "noun", "Ᾰ̓ντώνῐοι", "Ᾰ̓ντωνῐ́ου", "Ᾰ̓ντωνῐ́ῳ", "", "Antonius Antony"]) + let v = native_list_append(v, ["Ἀντωνία", "noun", "Ᾰ̓ντωνῐ́αι", "Ᾰ̓ντωνῐ́ᾱς", "Ᾰ̓ντωνῐ́ᾳ", "", "Antonia"]) + let v = native_list_append(v, ["Αἰμιλία", "noun", "Αἰμιλία", "Αἰμιλίᾱς", "Αἰμιλίᾳ", "", "Aemilia any female"]) + let v = native_list_append(v, ["Ἄνυτος", "noun", "Ἄνυτος", "Ἀνύτου", "Ἀνύτῳ", "", "Anytus"]) + let v = native_list_append(v, ["Ἀπατούρια", "noun", "Ἀπᾰτούρῐα", "Ἀπᾰτουρίων", "Ἀπατουρίοις", "", "Apaturia"]) + let v = native_list_append(v, ["Ἀπελλῆς", "noun", "Ἀπελλῆς", "Ἀπελλοῦ", "Ἀπελλῇ", "", "Apelles"]) + let v = native_list_append(v, ["Ἀφίδναι", "noun", "Ἀφῐ́δναι", "Ἀφῐδνῶν", "Ᾰ̓φῐ́δναις", "", "Aphidnae Afidnes Greece"]) + let v = native_list_append(v, ["Ἀφροδίτη", "noun", "Ἀφροδίτη", "Ᾰ̓φροδῑ́της", "Ᾰ̓φροδῑ́τῃ", "", "Aphrodite"]) + let v = native_list_append(v, ["Ἀπιδανός", "noun", "Ἀπιδανός", "Ᾱ̓πῐδᾰνοῦ", "Ᾱ̓πῐδᾰνῷ", "", "Apidanus a river"]) + let v = native_list_append(v, ["Ἀπόλλων", "noun", "Ἀπόλλων", "Ᾰ̓πόλλωνος", "Ἀπόλλωνῐ", "", "Apollo"]) + let v = native_list_append(v, ["Ἄππιος", "noun", "Ἄππιος", "Ἀππῐ́ου", "Ἀππῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀπουλήϊος", "noun", "Ἀπουλήϊος", "Ᾱ̓πουληΐου", "Ᾱ̓πουληΐῳ", "", "Apuleius"]) + let v = native_list_append(v, ["Ἀκύλλιος", "noun", "Ἀκύλλιος", "Ἀκυλλίου", "Ἀκυλλίῳ", "", "Aquilius"]) + let v = native_list_append(v, ["Ἄραρ", "noun", "Ἄραρ", "Ἄραρος", "Ἄραρῐ", "", "Arar Saône"]) + let v = native_list_append(v, ["Ἄρατος", "noun", "Ἄρατος", "Ἀρᾱ́του", "Ἀρᾱ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀράξης", "noun", "Ἀράξαι", "Ἀράξου", "Ἀράξῃ", "", "Araxes Araks a"]) + let v = native_list_append(v, ["Ἀρκεσίλαος", "noun", "Ἀρκεσίλαος", "Ἀρκεσῐλᾱ́ου", "Ἀρκεσιλᾱ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρχέστρατος", "noun", "Ἀρχέστρατος", "Ᾰ̓ρχεστρᾰ́του", "Ᾰ̓ρχεστρᾰ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρχίας", "noun", "Ἀρχίας", "Ἀρχίου", "Ἀρχίᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρχίλοχος", "noun", "Ἀρχίλοχος", "Ἀρχῐλόχου", "Ἀρχιλόχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρχιμήδης", "noun", "Ἀρχιμήδης", "Ᾰ̓ρχῐμήδους", "Ᾰ̓ρχῐμήδει", "", "a male given"]) + let v = native_list_append(v, ["Ἄρης", "noun", "Ἄρης", "Ᾰ̓́ρεως", "Ἄρει", "", "Ares"]) + let v = native_list_append(v, ["Ἀρέθουσα", "noun", "Ἀρέθουσα", "Ἀρεθούσης", "Ἀρεθούσῃ", "", "Arethusa"]) + let v = native_list_append(v, ["Ἄργιλος", "noun", "Ἄργιλος", "Ἀργίλου", "Ἀργίλῳ", "", "Argilus"]) + let v = native_list_append(v, ["Ἀργινοῦσαι", "noun", "Ἀργινουσῶν", "Ἀργινουσῶν", "Ἀργινούσαις", "", "Arginusae"]) + let v = native_list_append(v, ["Ἀργώ", "noun", "Ἀργώ", "Ᾰ̓ργοῦς", "Ᾰ̓ργοῖ", "", "Argo ship"]) + let v = native_list_append(v, ["Ἄργος", "noun", "Ἄργος", "Ἄργεος", "Ᾰ̓́ργει", "", "Argos"]) + let v = native_list_append(v, ["Ἀργολίς", "noun", "Ἀργολίς", "Ἀργολίδος", "Ἀργολῐ́δῐ", "", "Argolis an ancient"]) + let v = native_list_append(v, ["Ἀριάδνη", "noun", "Ἀριάδνη", "Ἀρῐάδνης", "Ἀριάδνῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἀριαῖος", "noun", "Ἀριαῖος", "Ἀριαίου", "Ἀριαίῳ", "", "Ariaeus"]) + let v = native_list_append(v, ["Ἀριμασπός", "noun", "Ἀριμασποί", "Ἀρῐμασποῦ", "Ἀριμασπῷ", "", "Any individual among"]) + let v = native_list_append(v, ["Ἀρίμενον", "noun", "Ἀρίμενον", "Ἀριμένου", "Ἀριμένῳ", "", "Ariminum Rimini Italy"]) + let v = native_list_append(v, ["Ἀριοβαρζάνης", "noun", "Ἀριοβαρζάνης", "Ἀρῐοβαρζάνους", "Ἀρῐοβαρζάνει", "", "a male given"]) + let v = native_list_append(v, ["Ἀρίων", "noun", "Ἀρίων", "Ἀρῑ́ονος", "Ἀρῑ́ονῐ", "", "Arion"]) + let v = native_list_append(v, ["Ἀριόβυστος", "noun", "Ἀριόβυστος", "Ἀριοβύστου", "Ἀριοβύστῳ", "", "Ariovistus"]) + let v = native_list_append(v, ["Ἀρισταῖος", "noun", "Ἀρισταῖος", "Ᾰ̓ρισταίου", "Ἀρισταίῳ", "", "Aristaeus"]) + let v = native_list_append(v, ["Ἀρισταγόρας", "noun", "Ἀρισταγόρας", "Ἀριστᾰγόρου", "Ἀρισταγόρᾳ", "", "Aristagoras"]) + let v = native_list_append(v, ["Ἀριστεύς", "noun", "Ἀριστεύς", "Ἀριστέως", "Ᾰ̓ρῐστεῖ", "", "Aristeus"]) + let v = native_list_append(v, ["Ἀριστείδης", "noun", "Ἀριστείδης", "Ᾰ̓ριστείδου", "Ᾰ̓ριστείδῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρίστιππος", "noun", "Ἀρίστιππος", "Ᾰ̓ρῐστῐ́ππου", "Ᾰ̓ρῐστῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀριστογείτων", "noun", "Ἀριστογείτων", "Ᾰ̓ρῐστογείτονος", "Ᾰ̓ρῐστογείτονῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρίστων", "noun", "Ἀρίστων", "Ἀρίστωνος", "Ἀρίστωνῐ", "", "Ariston"]) + let v = native_list_append(v, ["Ἀριστώνυμος", "noun", "Ἀριστώνυμος", "Ἀριστωνύμου", "Ἀριστωνύμῳ", "", "a male given"]) + let v = native_list_append(v, ["Ναυσικάα", "noun", "Ναυσικάα", "Ναυσῐκᾰ́ᾱς", "Ναυσῐκᾰ́ᾳ", "", "Nausicaa"]) + let v = native_list_append(v, ["Εὐγένιος", "noun", "Εὐγένῐοι", "Εὐγενῐ́ου", "Εὐγενῐ́ῳ", "", "Eugenius Eugene"]) + let v = native_list_append(v, ["Εὐγενία", "noun", "Εὐγενία", "Εὐγενῐ́ᾱς", "Εὐγενῐ́ᾳ", "", "Eugenia"]) + let v = native_list_append(v, ["Ἀριστοφάνης", "noun", "Ἀριστοφάνης", "Ᾰ̓ρῐστοφᾰ́νους", "Ᾰ̓ρῐστοφᾰ́νει", "", "a male given"]) + let v = native_list_append(v, ["Ἀριστοτέλης", "noun", "Ἀριστοτέλης", "Ἀριστοτέλους", "Ἀριστοτέλει", "", "a male given"]) + let v = native_list_append(v, ["Ἄρνη", "noun", "Ἄρνη", "Ἄρνης", "Ἄρνῃ", "", "Arne"]) + let v = native_list_append(v, ["Ἄρποι", "noun", "Ᾰ̓́ρποι", "Ἄρπων", "Ᾰ̓́ρποις", "", "Arpi"]) + let v = native_list_append(v, ["Ἀρσάκης", "noun", "Ἀρσάκης", "Ἀρσάκου", "Ἀρσάκῃ", "", "Arsaces"]) + let v = native_list_append(v, ["Ἀρτάβανος", "noun", "Ἀρτάβανος", "Ἀρταβᾱ́νου", "Ἀρταβᾱ́νῳ", "", "Artabanus"]) + let v = native_list_append(v, ["Ἀρτάβαζος", "noun", "Ἀρτάβαζοι", "Ἀρταβάζου", "Ἀρταβάζῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρταφέρνης", "noun", "Ἀρταφέρνης", "Ἀρτᾰφέρνους", "Ἀρταφέρνει", "", "a male given"]) + let v = native_list_append(v, ["Ἀρτάξατα", "noun", "Ἀρτάξᾰτᾰ", "Ἀρταξάτων", "Ἀρταξάτοις", "", "Artaxata Artashat Armenia"]) + let v = native_list_append(v, ["Ἀρταξέρξης", "noun", "Ἀρταξέρξης", "Ἀρταξέρξου", "Ἀρταξέρξῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρτεμισία", "noun", "Ἀρτεμισία", "Ἀρτεμῑσῐ́ᾱς", "Ἀρτεμῑσῐ́ᾳ", "", "Artemisia"]) + let v = native_list_append(v, ["Ἀρτεμίσιον", "noun", "Ἀρτεμίσιον", "Ἀρτεμῑσίου", "Ἀρτεμῑσίῳ", "", "Artemisium"]) + let v = native_list_append(v, ["Ἄρβερνος", "noun", "Ἄρβερνος", "Ἀρβέρνου", "", "", "A Celtic god"]) + let v = native_list_append(v, ["Ἀσκάλων", "noun", "Ἀσκάλων", "Ἀσκάλωνος", "Ἀσκάλωνῐ", "", "Ashkelon a coastal"]) + let v = native_list_append(v, ["Ἀσκάνιος", "noun", "Ἀσκάνιος", "Ἀσκᾰνίου", "Ἀσκανῐ́ῳ", "", "Ascanius"]) + let v = native_list_append(v, ["Ἀσκληπιός", "noun", "Ἀσκληπιός", "Ἀσκληπῐοῦ", "Ἀσκληπιῷ", "", "Asclepius"]) + let v = native_list_append(v, ["Ἄσκλον", "noun", "Ἄσκλον", "Ἄσκλου", "Ᾰ̓́σκλῳ", "", "Asculum"]) + let v = native_list_append(v, ["Ἀσέα", "noun", "Ἀσέα", "Ἀσέᾱς", "Ἀσέᾳ", "", "Asea Greece"]) + let v = native_list_append(v, ["Ἄζωτος", "noun", "Ἄζωτος", "Ᾰ̓ζώτου", "Ᾰ̓ζώτῳ", "", "Azotus the Greek"]) + let v = native_list_append(v, ["Ἀσίνη", "noun", "Ἀσίνη", "Ἀσῐ́νης", "Ἀσῐ́νῃ", "", "Asine"]) + let v = native_list_append(v, ["Ἀσώπιος", "noun", "Ἀσώπιος", "Ᾱ̓σωπίου", "Ᾱ̓σωπῐ́ῳ", "", "Asopius"]) + let v = native_list_append(v, ["Ἀσωπός", "noun", "Ἀσωπός", "Ᾱ̓σωποῦ", "Ᾱ̓σωπῷ", "", "Asopus"]) + let v = native_list_append(v, ["Ἀσπασία", "noun", "Ἀσπασία", "Ἀσπᾰσίᾱς", "Ἀσπασίᾳ", "", "Aspasia"]) + let v = native_list_append(v, ["Ἄσπενδος", "noun", "Ἄσπενδος", "Ἀσπένδου", "Ἀσπένδῳ", "", "Aspendos Aspendus"]) + let v = native_list_append(v, ["Ἀσσίναρος", "noun", "Ἀσσίναρος", "Ἀσσῐνάρου", "Ἀσσινάρῳ", "", "Assinarus today Asinaro"]) + let v = native_list_append(v, ["Ἀσσυρία", "noun", "Ἀσσυρία", "Ἀσσῠρίᾱς", "Ἀσσυρίᾳ", "", "Assyria an ancient"]) + let v = native_list_append(v, ["Ἄστακος", "noun", "Ἄστακος", "Ἀστάκου", "Ἀστᾰ́κῳ", "", "Astacus Astakos Greece"]) + let v = native_list_append(v, ["Ἀστυάγης", "noun", "Ἀστυάγης", "Ᾰ̓στῠάγους", "Ᾰ̓στῠάγει", "", "a male given"]) + let v = native_list_append(v, ["Ἀστυάναξ", "noun", "Ἀστυάναξ", "Ᾰ̓στῠᾰ́νᾰκτος", "Ᾰ̓στῠᾰ́νᾰκτῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἀστύοχος", "noun", "Ἀστύοχος", "Ᾰ̓στῠόχου", "Ᾰ̓στῠόχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀταλάντη", "noun", "Ἀταλάντη", "Ᾰ̓τᾰλᾰ́ντης", "Ᾰ̓τᾰλᾰ́ντῃ", "", "Atalanta"]) + let v = native_list_append(v, ["Ἀταρνεύς", "noun", "Ἀταρνεύς", "Ἀταρνέως", "Ἀταρνεῖ", "", "Atarneus"]) + let v = native_list_append(v, ["Ἀθάμας", "noun", "Ἀθάμας", "Ᾰ̓θᾰ́μᾰντος", "Ᾰ̓θᾰ́μᾰντῐ", "", "Athamas mythological king"]) + let v = native_list_append(v, ["Παλλάς", "noun", "Παλλάς", "Παλλάδος", "Πᾰλλᾰ́δῐ", "", "Pallas Athena"]) + let v = native_list_append(v, ["Ἀθήνη", "noun", "Ἀθήνη", "Ᾰ̓θήνης", "Ᾰ̓θήνῃ", "", "Athena"]) + let v = native_list_append(v, ["Ἀθηναία", "noun", "Ἀθηναία", "Ἀθηναίᾱς", "Ἀθηναίᾳ", "", "Athena"]) + let v = native_list_append(v, ["Ἀθηνᾶ", "noun", "Ἀθηνᾶ", "Ᾰ̓θηνᾶς", "Ᾰ̓θηνᾷ", "", "Athena"]) + let v = native_list_append(v, ["Ἀθάνα", "noun", "Ἀθάνα", "Ᾰ̓θᾱ́νᾱς", "Ᾰ̓θᾱ́νᾳ", "", "Athena"]) + let v = native_list_append(v, ["Κραναά", "noun", "Κραναά", "Κρᾰνᾰᾶς", "Κρᾰνᾰᾷ", "", "Cranaa Athens"]) + let v = native_list_append(v, ["Ἄθως", "noun", "Ἄθως", "Ἄθω", "Ἄθῳ", "", "Athos a character"]) + let v = native_list_append(v, ["Ἄτλας", "noun", "Ᾰ̓́τλᾰντες", "Ἄτλαντος", "Ᾰ̓́τλᾰντῐ", "", "Atlas"]) + let v = native_list_append(v, ["Ἀτλαντικόν", "noun", "Ἀτλαντικόν", "Ἀτλᾰντῐκοῦ", "Ἀτλᾰντῐκῷ", "", "Atlantic Ocean"]) + let v = native_list_append(v, ["Ἀτλαντίς", "noun", "Ἀτλαντίς", "Ἀτλᾰντῐ́δος", "Ἀτλᾰντῐ́δῐ", "", "Atlantic Ocean"]) + let v = native_list_append(v, ["Ἄτοσσα", "noun", "Ἄτοσσα", "Ἀτόσσης", "Ἀτόσσῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἄτροπος", "noun", "Ἄτροπος", "Ᾰ̓τρόπου", "Ᾰ̓τρόπῳ", "", "Atropos"]) + let v = native_list_append(v, ["Ἀτρεύς", "noun", "Ἀτρεύς", "Ἀτρέως", "Ἀτρεῖ", "", "Atreus"]) + let v = native_list_append(v, ["Ἀτρείδης", "noun", "Ἀτρεῖδαι", "Ἀτρείδου", "Ἀτρείδῃ", "", "a child of"]) + let v = native_list_append(v, ["Ἀτθίς", "noun", "Ἀτθίς", "Ἀτθίδος", "Ἀτθῐ́δῐ", "", "Attica an ancient"]) + let v = native_list_append(v, ["Ἄτυς", "noun", "Ἄτυς", "Ᾰ̓́τῠος", "Ᾰ̓́τῠῐ̈", "", "Atys"]) + let v = native_list_append(v, ["Αὔγη", "noun", "Αὔγη", "Αὔγης", "Αὔγῃ", "", "a female given"]) + let v = native_list_append(v, ["Αὐγείας", "noun", "Αὐγείας", "Αὐγείου", "Αὐγείᾳ", "", "a male given"]) + let v = native_list_append(v, ["Σεβαστός", "noun", "Σεβαστός", "Σεβᾰστοῦ", "Σεβᾰστῷ", "", "Augustus Sebastus"]) + let v = native_list_append(v, ["Σεβάστεια", "noun", "Σεβάστεια", "Σεβαστείᾱς", "Σεβαστείᾳ", "", "Sivas a city"]) + let v = native_list_append(v, ["Αὔγουστος", "noun", "Αὔγουστος", "Αὐγούστου", "Αὐγούστῳ", "", "Augustus the Roman"]) + let v = native_list_append(v, ["Αὐλίς", "noun", "Αὐλίς", "Αὐλῐ́δος", "Αὐλῐ́δῐ", "", "Aulis a port"]) + let v = native_list_append(v, ["Ἕως", "noun", "Ἕως", "Ἕω", "Ἕῳ", "", "Attic form of"]) + let v = native_list_append(v, ["Αὐτονόη", "noun", "Αὐτονόη", "Αὐτονόης", "Αὐτονόῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἀβεντῖνον", "noun", "Ἀβεντῖνον", "Ἀβεντῑ́νου", "Ἀβεντῑ́νῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀξιός", "noun", "Ἀξιός", "Ἀξῐοῦ", "Ἀξιῷ", "", "Axius an ancient"]) + let v = native_list_append(v, ["Μαιῶτις", "noun", "Μαιῶτις", "Μαιώτῐδος", "Μαιώτῐδῐ", "", "Sea of Azov"]) + let v = native_list_append(v, ["Βαβυλωνία", "noun", "Βαβυλωνία", "Βᾰβῠλωνῐ́ᾱς", "Βᾰβῠλωνῐ́ᾳ", "", "Babylonia an ancient"]) + let v = native_list_append(v, ["Βάκχος", "noun", "Βάκχος", "Βᾰ́κχου", "Βᾰ́κχῳ", "", "Bacchus"]) + let v = native_list_append(v, ["Ἴακχος", "noun", "Ἴακχος", "Ἴακχου", "Ἰάκχῳ", "", "Iacchus"]) + let v = native_list_append(v, ["Βάκις", "noun", "Βάκις", "Βᾰ́κῐδος", "Βᾰ́κῐδῐ", "", "Bakis"]) + let v = native_list_append(v, ["Βαῖτις", "noun", "Βαῖτις", "Βαίτῐος", "Βαίτῑ", "", "Baetis Guadalquivir a"]) + let v = native_list_append(v, ["Βαΐαι", "noun", "Βᾰῐ̈́αι", "Βαϊῶν", "Βᾰῐ̈́αις", "", "Baiae Baia Italy"]) + let v = native_list_append(v, ["Βάρκη", "noun", "Βάρκη", "Βάρκης", "Βάρκῃ", "", "Marj a city"]) + let v = native_list_append(v, ["Βάττος", "noun", "Βάττος", "Βᾰ́ττου", "Βᾰ́ττῳ", "", "Battus"]) + let v = native_list_append(v, ["Βητριακόν", "noun", "Βητριακόν", "Βητριακοῦ", "Βητριακῷ", "", "Bedriacum Calvatone Italy"]) + let v = native_list_append(v, ["Βῆλος", "noun", "Βῆλος", "Βήλου", "Βήλῳ", "", "Bel Belus"]) + let v = native_list_append(v, ["Βέλγης", "noun", "Βέλγαι", "Βέλγου", "Βέλγῃ", "", "Any individual among"]) + let v = native_list_append(v, ["Βέλγαι", "noun", "Βέλγαι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Βελλεροφόντης", "noun", "Βελλεροφόντης", "Βελλεροφόντου", "Βελλεροφόντῃ", "", "Bellerophon"]) + let v = native_list_append(v, ["Βέροια", "noun", "Βέροιαι", "Βεροίᾱς", "Βεροίᾳ", "", "Beroea an ancient"]) + let v = native_list_append(v, ["Βηστίας", "noun", "Βηστῐ́αι", "Βηστῐ́ᾱ", "Βηστῐ́ᾳ", "", "Bestia"]) + let v = native_list_append(v, ["Βηρυτός", "noun", "Βηρυτός", "Βηρῡτοῦ", "Βηρῡτῷ", "", "Berytus Beirut the"]) + let v = native_list_append(v, ["Βίας", "noun", "Βίας", "Βίᾰντος", "Βίᾰντῐ", "", "Bias"]) + let v = native_list_append(v, ["Βίβλος", "noun", "Βίβλος", "Βῐ́βλου", "Βῐ́βλῳ", "", "Marcus Calpurnius Bibulus"]) + let v = native_list_append(v, ["Βισάλτης", "noun", "Βῐσᾰ́λται", "Βισάλτου", "Βῐσᾰ́λτῃ", "", "Any individual among"]) + let v = native_list_append(v, ["Βίστων", "noun", "Βίστονες", "Βίστονος", "Βίστονῐ", "", "Any individual among"]) + let v = native_list_append(v, ["Βόλβη", "noun", "Βόλβη", "Βόλβης", "Βόλβῃ", "", "Bolbe a mythological"]) + let v = native_list_append(v, ["Βορέας", "noun", "Βορέας", "Βορέᾱ", "Βορέᾳ", "", "the north wind"]) + let v = native_list_append(v, ["Βορρᾶς", "noun", "Βορρᾶς", "Βορρᾶ", "Βορρᾷ", "", "Attic form of"]) + let v = native_list_append(v, ["Βορυσθένης", "noun", "Βορυσθένης", "Βορυσθένους", "Βορυσθένει", "", "Borysthenes Dnieper river"]) + let v = native_list_append(v, ["Βόσπορος", "noun", "Βόσπορος", "Βοσπόρου", "Βοσπόρῳ", "", "Bosporus"]) + let v = native_list_append(v, ["Βοττιαία", "noun", "Βοττιαία", "Βοττῐαίᾱς", "Βοττῐαίᾳ", "", "Bottiaea"]) + let v = native_list_append(v, ["Βοττία", "noun", "Βοττία", "Βοττῐ́ᾱς", "Βοττῐ́ᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Βραγχίδης", "noun", "Βρᾰγχῐ́δαι", "Βρᾰγχῐ́δου", "Βρᾰγχῐ́δῃ", "", "any individual among"]) + let v = native_list_append(v, ["Βρασίδας", "noun", "Βρασίδας", "Βρᾱσῐ́δου", "Βρᾱσῐ́δᾳ", "", "a male given"]) + let v = native_list_append(v, ["Βραυρών", "noun", "Βραυρών", "Βραυρῶνος", "Βραυρῶνῐ", "", "Brauron an ancient"]) + let v = native_list_append(v, ["Βρέννος", "noun", "Βρέννος", "Βρέννου", "Βρέννῳ", "", "Brennus"]) + let v = native_list_append(v, ["Βριάρεως", "noun", "Βριάρεως", "Βρῐᾰ́ρεω", "Βρῐᾰ́ρεῳ", "", "Briareus"]) + let v = native_list_append(v, ["Βρίξιλλον", "noun", "Βρίξιλλον", "Βριξίλλου", "Βριξίλλῳ", "", "Brixellum Brescello Italy"]) + let v = native_list_append(v, ["Βρεντέσιον", "noun", "Βρεντέσιον", "Βρεντεσίου", "Βρεντεσίῳ", "", "Brindisi a city"]) + let v = native_list_append(v, ["Βρέττιος", "noun", "Βρέττιοι", "Βρεττίου", "Βρεττίῳ", "", "Any individual among"]) + let v = native_list_append(v, ["Βροῦτος", "noun", "Βροῦτος", "Βρούτου", "Βρούτῳ", "", "Brutus"]) + let v = native_list_append(v, ["Βουκεφάλας", "noun", "Βουκεφάλας", "Βουκεφᾰ́λᾱ", "Βουκεφᾰ́λᾳ", "", "Bucephalus"]) + let v = native_list_append(v, ["Βούσιρις", "noun", "Βούσιρις", "Βουσῑ́ρεως", "Βουσῑ́ρει", "", "Busiris"]) + let v = native_list_append(v, ["Γάδειρα", "noun", "Γᾱ́δειρᾰ", "Γᾱδείρων", "Γᾱδείροις", "", "Cadiz a port"]) + let v = native_list_append(v, ["Κάδμος", "noun", "Κάδμος", "Κᾰ́δμου", "Κᾰ́δμῳ", "", "Cadmus"]) + let v = native_list_append(v, ["Καδμεία", "noun", "Καδμεία", "Κᾰδμείᾱς", "Κᾰδμείᾳ", "", "Cadmea"]) + let v = native_list_append(v, ["Καικίλιος", "noun", "Καικῐ́λῐοι", "Καικῐλῐ́ου", "Καικῐλῐ́ῳ", "", "Lucius Caecilius Iucundus"]) + let v = native_list_append(v, ["Καικιλία", "noun", "Καικῐλῐ́αι", "Καικῐλῐ́ᾱς", "Καικῐλῐ́ᾳ", "", "Any individual named"]) + let v = native_list_append(v, ["Καικίνας", "noun", "Καικίνας", "Καικῑ́νᾱ", "Καικῑ́νᾳ", "", "Caecina"]) + let v = native_list_append(v, ["Καιπίων", "noun", "Καιπίων", "Καιπῐ́ωνος", "Καιπῐ́ωνῐ", "", "Caepio"]) + let v = native_list_append(v, ["Καῖσαρ", "noun", "Καίσᾰρες", "Καίσᾰρος", "Καίσᾰρῐ", "", "Caesar"]) + let v = native_list_append(v, ["Καισάρεια", "noun", "Καισάρεια", "Καισᾰρείᾱς", "Καισᾰρείᾳ", "", "Caesarea any of"]) + let v = native_list_append(v, ["Καϊκός", "noun", "Καϊκός", "Καῑ̈κοῦ", "Καῑ̈κῷ", "", "Caicus Bakırçay river"]) + let v = native_list_append(v, ["Γάϊος", "noun", "Γάϊος", "Γᾱῐ̈́ου", "Γᾱῐ̈́ῳ", "", "Gaius"]) + let v = native_list_append(v, ["Κάϊος", "noun", "Κάϊος", "Κᾱ́ΐου", "Κᾱΐῳ", "", "Caius"]) + let v = native_list_append(v, ["Κάλχας", "noun", "Κάλχας", "Κάλχᾰντος", "Κάλχᾰντῐ", "", "a male given"]) + let v = native_list_append(v, ["Καλλίας", "noun", "Καλλίας", "Κᾰλλῐ́ου", "Κᾰλλῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Καλλικρατίδας", "noun", "Καλλικρατίδας", "Κᾰλλῐκρᾰτῐ́δου", "Κᾰλλῐκρᾰτῐ́δᾳ", "", "a male given"]) + let v = native_list_append(v, ["Καλλίμαχος", "noun", "Καλλίμαχος", "Κᾰλλῐμᾰ́χου", "Κᾰλλῐμᾰ́χῳ", "", "a male given"]) + let v = native_list_append(v, ["Καλλιόπη", "noun", "Καλλιόπη", "Κᾰλλῐόπης", "Κᾰλλῐόπῃ", "", "Calliope the muse"]) + let v = native_list_append(v, ["Καλλίξενος", "noun", "Κᾰλλῐ́ξενοι", "Κᾰλλῐξένου", "Κᾰλλῐξένῳ", "", "a male given"]) + let v = native_list_append(v, ["Κάλπη", "noun", "Κάλπη", "Κάλπης", "Κάλπῃ", "", "Calpe Gibraltar"]) + let v = native_list_append(v, ["Καλπουρνία", "noun", "Καλπουρνία", "Καλπουρνίᾱς", "Καλπουρνίᾳ", "", "Calpurnia"]) + let v = native_list_append(v, ["Καλπούρνιος", "noun", "Καλπούρνιοι", "Καλπουρνίου", "Καλπουρνίῳ", "", "Titus Calpurnius Siculus"]) + let v = native_list_append(v, ["Καλβῖνος", "noun", "Καλβῖνος", "Καλβῑ́νου", "Καλβῑ́νῳ", "", "Calvinus Calvin"]) + let v = native_list_append(v, ["Καλυδών", "noun", "Καλυδών", "Κᾰλῠδῶνος", "τῇ Κᾰλῠδῶνῐ", "", "Calydon an ancient"]) + let v = native_list_append(v, ["Καλυψώ", "noun", "Καλυψώ", "Κᾰλῠψοῦς", "Κᾰλῠψοῖ", "", "Calypso"]) + let v = native_list_append(v, ["Καμάρινα", "noun", "Καμάρινα", "Κᾰμᾰρῑ́νης", "Καμαρίνῃ", "", "Kamarina an ancient"]) + let v = native_list_append(v, ["Καμβύσης", "noun", "Καμβύσης", "Καμβῡ́σου", "Καμβῡ́σῃ", "", "Cambyses"]) + let v = native_list_append(v, ["Κάμιλλος", "noun", "Κάμιλλος", "Κᾰμῐ́λλου", "Κᾰμῐ́λλῳ", "", "Camillus"]) + let v = native_list_append(v, ["Καμίλλη", "noun", "Καμίλλη", "Κᾰμῐ́λλης", "Κᾰμῐ́λλῃ", "", "Camilla"]) + let v = native_list_append(v, ["Κάμειρος", "noun", "Κάμειρος", "Κᾰμείρου", "Κᾰμείρῳ", "", "Camirus Kameiros Greece"]) + let v = native_list_append(v, ["Κάνναι", "noun", "Κᾰ́νναι", "Κᾰννῶν", "Κᾰ́νναις", "", "Cannae Canne della"]) + let v = native_list_append(v, ["Κάνωβος", "noun", "Κάνωβος", "Κᾰνώβου", "Κᾰνώβῳ", "", "Canopus"]) + let v = native_list_append(v, ["Κανύσιον", "noun", "Κανύσιον", "Κᾰνῠσίου", "Κανυσίῳ", "", "Canusium Canosa di"]) + let v = native_list_append(v, ["Καπανεύς", "noun", "Καπανεύς", "Κᾰπᾰνέως", "Κᾰπᾰνεῖ", "", "Capaneus"]) + let v = native_list_append(v, ["Καφηρεύς", "noun", "Καφηρεύς", "Καφηρέως", "Κᾰφηρεῖ", "", "Caphereus"]) + let v = native_list_append(v, ["Καπιτώλιον", "noun", "Καπιτώλιον", "Κᾰπῐτωλῐ́ου", "Κᾰπῐτωλῐ́ῳ", "", "Capitoline Hill"]) + let v = native_list_append(v, ["Βαρκινών", "noun", "Βαρκινών", "Βαρκινῶνος", "Βαρκινῶνῐ", "", "Barcelona the capital"]) + let v = native_list_append(v, ["Κάρβων", "noun", "Κᾰ́ρβωνες", "Κᾰ́ρβωνος", "Κᾰ́ρβωνῐ", "", "Any individual among"]) + let v = native_list_append(v, ["Κάρκινος", "noun", "Κάρκινος", "Κᾰρκῐ́νου", "Κᾰρκῐ́νῳ", "", "Carcinus"]) + let v = native_list_append(v, ["Καρδία", "noun", "Καρδία", "Κᾰρδῐ́ᾱς", "Κᾰρδῐ́ᾳ", "", "Cardia an ancient"]) + let v = native_list_append(v, ["Κάρνεια", "noun", "Κάρνειᾰ", "Καρνείων", "Καρνείοις", "", "Carnea a festival"]) + let v = native_list_append(v, ["Αὐεντῖνον", "noun", "Αὐεντῖνον", "Αὐεντῑ́νου", "Αὐεντῑ́νῳ", "", "Aventine Hill a"]) + let v = native_list_append(v, ["Κάϊν", "noun", "Κάϊν", "", "", "", "Cain"]) + let v = native_list_append(v, ["Νῶε", "noun", "Νῶε", "", "", "", "Noah"]) + let v = native_list_append(v, ["Ῥουβήν", "noun", "Ῥουβήν", "", "", "", "Reuben"]) + let v = native_list_append(v, ["Ῥαχήλ", "noun", "Ῥαχήλ", "", "", "", "Rachel"]) + let v = native_list_append(v, ["Λεία", "noun", "Λεία", "Λείᾱς", "Λείᾳ", "", "Leah"]) + let v = native_list_append(v, ["Βαλλά", "noun", "Βαλλά", "Βᾰλλᾶς", "Βᾰλλᾷ", "", "Bilhah"]) + let v = native_list_append(v, ["Ζελφά", "noun", "Ζελφά", "Ζελφᾶς", "Ζελφᾷ", "", "Zilpah"]) + let v = native_list_append(v, ["Δάν", "noun", "Δάν", "", "", "", "Dan"]) + let v = native_list_append(v, ["Νεφθαλείμ", "noun", "Νεφθαλείμ", "", "", "", "Naphtali"]) + let v = native_list_append(v, ["Γάδ", "noun", "Γάδ", "", "", "", "Gad"]) + let v = native_list_append(v, ["Ἀσήρ", "noun", "Ἀσήρ", "", "", "", "Asher"]) + let v = native_list_append(v, ["Ἰσσάχαρ", "noun", "Ἰσσάχαρ", "", "", "", "Issachar"]) + let v = native_list_append(v, ["Δείνα", "noun", "Δείνα", "Δείνᾱς", "Δείνᾳ", "", "Dinah"]) + let v = native_list_append(v, ["Σάρα", "noun", "Σάρα", "Σᾱ́ρᾱς", "Σᾱ́ρᾳ", "", "Sarah"]) + let v = native_list_append(v, ["Ἄγαρ", "noun", "Ἄγαρ", "", "", "", "Hagar"]) + let v = native_list_append(v, ["Ἰσμαήλ", "noun", "Ἰσμαήλ", "", "", "", "Ishmael"]) + let v = native_list_append(v, ["Σάρρα", "noun", "Σάρρα", "Σᾱ́ρρᾱς", "Σᾱ́ρρᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Ῥεβέκκα", "noun", "Ῥεβέκκα", "Ῥεβέκκᾱς", "Ῥεβέκκᾳ", "", "Rebekah Rebecca"]) + let v = native_list_append(v, ["Ἡσαῦ", "noun", "Ἡσαῦ", "", "", "", "Esau"]) + let v = native_list_append(v, ["Λάβαν", "noun", "Λάβαν", "", "", "", "Laban"]) + let v = native_list_append(v, ["Ἀσεννέθ", "noun", "Ἀσεννέθ", "", "", "", "Asenath"]) + let v = native_list_append(v, ["Μανασσῆς", "noun", "Μανασσῆς", "Μανασσῆ", "", "", "Manasseh"]) + let v = native_list_append(v, ["Κάρραι", "noun", "Κᾰ́ρραι", "Καρρῶν", "Κᾰ́ρραις", "", "Carrhae Harran Turkey"]) + let v = native_list_append(v, ["Καρχηδών", "noun", "Καρχηδών", "Καρχηδόνος", "Καρχηδόνῐ", "", "Carthage an ancient"]) + let v = native_list_append(v, ["Κάρυστος", "noun", "Κάρυστος", "Καρύστου", "Κᾰρύστῳ", "", "Carystus Euboea Greece"]) + let v = native_list_append(v, ["Κάσκας", "noun", "Κάσκας", "Κάσκᾱ", "Κάσκᾳ", "", "Servilius Casca"]) + let v = native_list_append(v, ["Κασπία", "noun", "Κασπία", "Κασπῐ́ᾱς", "Κασπῐ́ᾳ", "", "Caspian Sea"]) + let v = native_list_append(v, ["Κάσσανδρος", "noun", "Κάσσανδρος", "Κασσάνδρου", "Κασσάνδρῳ", "", "a male given"]) + let v = native_list_append(v, ["Κασσάνδρα", "noun", "Κασσάνδρα", "Κασσάνδρᾱς", "Κασσάνδρᾳ", "", "a female given"]) + let v = native_list_append(v, ["Ἀλεξάνδρα", "noun", "Ἀλεξάνδρα", "Ᾰ̓λεξᾰ́νδρᾱς", "Ᾰ̓λεξᾰ́νδρᾳ", "", "Alexandra"]) + let v = native_list_append(v, ["Κασταλία", "noun", "Κασταλία", "Καστᾰλῐ́ᾱς", "Καστᾰλῐ́ᾳ", "", "Castalia"]) + let v = native_list_append(v, ["Κάστωρ", "noun", "Κάστωρ", "Κᾰ́στορος", "Κᾰ́στορῐ", "", "Castor"]) + let v = native_list_append(v, ["Καταλίνας", "noun", "Καταλίνας", "Κᾰτᾰλίνᾱ", "Καταλίνᾳ", "", "Catiline"]) + let v = native_list_append(v, ["Κατάνη", "noun", "Κατάνη", "Κᾰτᾰ́νης", "Κᾰτᾰ́νῃ", "", "Catana Catania a"]) + let v = native_list_append(v, ["Κάτων", "noun", "Κᾰ́τωνες", "Κᾰ́τωνος", "Κᾰ́τωνῐ", "", "Cato"]) + let v = native_list_append(v, ["Κάτλος", "noun", "Κᾰ́τλοι", "Κᾰ́τλου", "Κᾰ́τλῳ", "", "Catulus"]) + let v = native_list_append(v, ["Καύκασος", "noun", "Καύκασος", "Καυκᾰ́σου", "Καυκᾰ́σῳ", "", "Caucasus"]) + let v = native_list_append(v, ["Καῦνος", "noun", "Καῦνος", "Καύνου", "Καύνῳ", "", "Caunus Kaunos Turkey"]) + let v = native_list_append(v, ["Κάϋστρος", "noun", "Κάϋστροι", "Κᾰΰστρου", "Καΰστρῳ", "", "Cayster river Küçük"]) + let v = native_list_append(v, ["Κεβριόνης", "noun", "Κεβριόνης", "Κεβριόνου", "Κεβρῐόνῃ", "", "Cebriones Kebriones"]) + let v = native_list_append(v, ["Κέκροψ", "noun", "Κέκροψ", "Κέκροπος", "Κέκροπῐ", "", "Cecrops"]) + let v = native_list_append(v, ["Κελαιναί", "noun", "Κελαινῶν", "Κελαινῶν", "Κελαιναῖς", "", "Celaenae Phrygia Turkey"]) + let v = native_list_append(v, ["Κελεός", "noun", "Κελεός", "Κελεοῦ", "Κελεῷ", "", "Celeus"]) + let v = native_list_append(v, ["Κεγχρεαί", "noun", "Κεγχρεῶν", "Κεγχρεῶν", "Κεγχρεαῖς", "", "Cenchreae Kechries a"]) + let v = native_list_append(v, ["Κεγχρειαί", "noun", "Κεγχρειῶν", "Κεγχρειῶν", "Κεγχρειαῖς", "", "alternative form of"]) + let v = native_list_append(v, ["Κέως", "noun", "Κέως", "Κέω", "Κέῳ", "", "Ceos Kea Cyclades"]) + let v = native_list_append(v, ["Κεφαλληνία", "noun", "Κεφαλληνία", "Κεφαλληνίᾱς", "Κεφαλληνίᾳ", "", "Cephallenia Kefalonia Greece"]) + let v = native_list_append(v, ["Ἀμαζονομαχία", "noun", "Ᾰ̓μᾰζονομᾰχῐ́αι", "Ᾰ̓μᾰζονομᾰχῐ́ᾱς", "Ᾰ̓μᾰζονομᾰχῐ́ᾳ", "", "a battle with"]) + let v = native_list_append(v, ["Ἑρμιόνη", "noun", "Ἑρμιόνη", "Ἑρμιόνης", "Ἑρμιόνῃ", "", "a female given"]) + let v = native_list_append(v, ["Λύκειον", "noun", "Λύκειον", "Λῠκείου", "Λῠκείῳ", "", "Lyceum a gymnasium"]) + let v = native_list_append(v, ["Κέφαλος", "noun", "Κέφαλος", "Κεφάλου", "Κεφᾰ́λῳ", "", "Cephalus"]) + let v = native_list_append(v, ["Κηφεύς", "noun", "Κηφεύς", "Κηφέως", "Κηφεῖ", "", "Cepheus"]) + let v = native_list_append(v, ["Κηφισσός", "noun", "Κηφισσός", "Κηφῐσσοῦ", "Κηφῐσσῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Κηφισός", "noun", "Κηφισός", "Κηφῑσοῦ", "Κηφῑσῷ", "", "Cephisus a river"]) + let v = native_list_append(v, ["Κεραμεικός", "noun", "Κεραμεικός", "Κερᾰμεικοῦ", "", "", "a neighbourhood of"]) + let v = native_list_append(v, ["Κορνήλιος", "noun", "Κορνήλῐοι", "Κορνηλῐ́ου", "Κορνηλῐ́ῳ", "", "Cornelius any individual"]) + let v = native_list_append(v, ["Κορνηλία", "noun", "Κορνηλῐ́αι", "Κορνηλῐ́ᾱς", "Κορνηλῐ́ᾳ", "", "Cornelia any female"]) + let v = native_list_append(v, ["Κέθηγος", "noun", "Κέθηγοι", "Κεθήγου", "Κεθήγῳ", "", "Cethegus"]) + let v = native_list_append(v, ["Χαβρίας", "noun", "Χαβρίας", "Χαβρῐ́ου", "Χαβρῐ́ᾳ", "", "Chabrias"]) + let v = native_list_append(v, ["Χαιρέας", "noun", "Χαιρέας", "Χαιρέου", "Χαιρέᾳ", "", "Chaereas"]) + let v = native_list_append(v, ["Χαιρεφῶν", "noun", "Χαιρεφῶν", "Χαιρεφῶντος", "Χαιρεφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Χαιρώνεια", "noun", "Χαιρώνεια", "Χαιρωνείᾱς", "Χαιρωνείᾳ", "", "Chaeronea Boeotia Greece"]) + let v = native_list_append(v, ["Χαλκηδών", "noun", "Χαλκηδών", "Χαλκηδόνος", "Χαλκηδόνῐ", "", "Chalcedon"]) + let v = native_list_append(v, ["Χαλδαία", "noun", "Χαλδαία", "Χᾰλδαίᾱς", "Χᾰλδαίᾳ", "", "Chaldea an ancient"]) + let v = native_list_append(v, ["Χαλδαῖος", "noun", "Χᾰλδαῖοι", "Χᾰλδαίου", "Χᾰλδαίῳ", "", "a Chaldean"]) + let v = native_list_append(v, ["Χάλυψ", "noun", "Χᾰ́λῠβες", "Χᾰ́λῠβος", "Χᾰ́λῠβῐ", "", "Any individual among"]) + let v = native_list_append(v, ["Χάων", "noun", "Χάων", "Χᾱ́ονος", "", "", "Chaon"]) + let v = native_list_append(v, ["Χαονία", "noun", "Χαονία", "Χᾱονῐ́ᾱς", "Χᾱονῐ́ᾳ", "", "Chaonia"]) + let v = native_list_append(v, ["χάος", "noun", "χάος", "χᾰ́εος", "χᾰ́ει", "", "chaos the primordial"]) + let v = native_list_append(v, ["Χάρης", "noun", "Χάρης", "Χᾰ́ρητος", "Χᾰ́ρητῐ", "", "a male given"]) + let v = native_list_append(v, ["Χαρικλῆς", "noun", "Χαρικλῆς", "Χᾰρῐκλέους", "Χᾰρῐκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Χριστόφορος", "noun", "Χρῑστόφοροι", "Χρῑστοφόρου", "Χρῑστοφόρῳ", "", "a male given"]) + let v = native_list_append(v, ["Χαρμίδης", "noun", "Χαρμίδης", "Χᾰρμῐ́δου", "Χᾰρμῐ́δῃ", "", "a male given"]) + let v = native_list_append(v, ["Χάρων", "noun", "Χάρων", "Χᾰ́ροντος", "Χᾰ́ροντῐ", "", "Charon"]) + let v = native_list_append(v, ["Χάρυβδις", "noun", "Χάρυβδις", "Χᾰρύβδεως", "Χᾰρῠ́βδει", "", "Charybdis"]) + let v = native_list_append(v, ["Χείλων", "noun", "Χείλων", "Χείλωνος", "Χείλωνῐ", "", "Chilon"]) + let v = native_list_append(v, ["Χειρίσοφος", "noun", "Χειρῐ́σοφοι", "Χειρῐσόφου", "Χειρῐσόφῳ", "", "a male given"]) + let v = native_list_append(v, ["Χείρων", "noun", "Χείρων", "Χείρωνος", "Χείρωνῐ", "", "Cheiron Chiron"]) + let v = native_list_append(v, ["Χοάσπης", "noun", "Χοάσπης", "Χοάσπου", "Χοάσπῃ", "", "river Choaspes Karkheh"]) + let v = native_list_append(v, ["Χερσόνησος", "noun", "Χερσόνησος", "Χερσονήσου", "Χερσονήσῳ", "", "Chersonese"]) + let v = native_list_append(v, ["Χίμαιρα", "noun", "Χῐ́μαιραι", "Χῐμαίρᾱς", "Χῐμαίρᾳ", "", "Chimera a mythological"]) + let v = native_list_append(v, ["Χίος", "noun", "Χίος", "Χῐ́ου", "Χῐ́ῳ", "", "Chios an island"]) + let v = native_list_append(v, ["Χρύση", "noun", "Χρύση", "Χρῡ́σης", "Χρῡ́σῃ", "", "Chryse the name"]) + let v = native_list_append(v, ["χυμός", "noun", "χῡμοί", "χῡμοῦ", "χῡμῷ", "", "juice of plants"]) + let v = native_list_append(v, ["ζωμός", "noun", "ζωμοί", "ζωμοῦ", "ζωμῷ", "", "soup or sauce"]) + let v = native_list_append(v, ["κλίνη", "noun", "κλῖναι", "κλῑ́νης", "κλῑ́νῃ", "", "bed couch"]) + let v = native_list_append(v, ["κοίτη", "noun", "κοῖται", "κοίτης", "κοίτῃ", "", "bed resting place"]) + let v = native_list_append(v, ["Χάλκη", "noun", "Χάλκη", "Χᾰ́λκης", "Χᾰ́λκῃ", "", "Chalce Chalki Halki"]) + let v = native_list_append(v, ["Χρύσης", "noun", "Χρύσης", "Χρῡ́σου", "Χρῡ́σῃ", "", "a male given"]) + let v = native_list_append(v, ["Χρυσηΐς", "noun", "Χρυσηΐς", "Χρῡσηῐ̈́δος", "Χρῡσηῐ̈́δῐ", "", "Chryseis"]) + let v = native_list_append(v, ["Χρύσιππος", "noun", "Χρύσιππος", "Χρῡσῐ́ππου", "Χρῡσῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Χρυσίς", "noun", "Χρυσίς", "Χρῡσῐ́δος", "Χρῡσῐ́δῐ", "", "Chrysis"]) + let v = native_list_append(v, ["Χρυσόπολις", "noun", "Χρυσόπολις", "Χρῡσοπόλεως", "Χρῡσοπόλει", "", "Chrysopolis Üsküdar Turkey"]) + let v = native_list_append(v, ["Χρυσόθεμις", "noun", "Χρυσόθεμις", "Χρῡσοθέμῐδος", "Χρῡσοθέμῐδῐ", "", "Chrysothemis"]) + let v = native_list_append(v, ["Κικέρων", "noun", "Κικέρων", "Κῐκέρωνος", "Κῐκέρωνῐ", "", "Cicero"]) + let v = native_list_append(v, ["Κίμβρος", "noun", "Κῐ́μβροι", "Κίμβρου", "Κῐ́μβρῳ", "", "an individual member"]) + let v = native_list_append(v, ["Κίμβροι", "noun", "Κίμβροι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Κιμμερία", "noun", "Κιμμερία", "Κιμμερίᾱς", "", "", "Cimmeria the ancient"]) + let v = native_list_append(v, ["Κιμμέριος", "noun", "Κῐμμέρῐοι", "Κιμμερίου", "Κῐμμερῐ́ῳ", "", "a Cimmerian one"]) + let v = native_list_append(v, ["Κίμων", "noun", "Κίμων", "Κῑ́μωνος", "Κῑ́μωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Κινέας", "noun", "Κινέας", "Κῑνέου", "Κῑνέᾳ", "", "Cineas"]) + let v = native_list_append(v, ["Κίννας", "noun", "Κίνναι", "Κίννᾱ", "Κίννᾳ", "", "Cinna any individual"]) + let v = native_list_append(v, ["Κίρκη", "noun", "Κίρκη", "Κίρκης", "Κίρκῃ", "", "Circe a name"]) + let v = native_list_append(v, ["Κιρκαῖον", "noun", "Κιρκαῖον", "Κιρκαίου", "Κιρκαίῳ", "", "Mount Circeo"]) + let v = native_list_append(v, ["Κισσεύς", "noun", "Κισσεύς", "Κισσέως", "Κισσεῖ", "", "Cisseus"]) + let v = native_list_append(v, ["Κιθαιρών", "noun", "Κιθαιρών", "Κῐθαιρῶνος", "Κῐθαιρῶνῐ", "", "Cithaeron Kithairon"]) + let v = native_list_append(v, ["Κίτιον", "noun", "Κίτιον", "Κῐτῐ́ου", "Κῐτῐ́ῳ", "", "Citium Larnaca Cyprus"]) + let v = native_list_append(v, ["Κλάρος", "noun", "Κλάρος", "Κλᾰ́ρου", "Κλᾰ́ρῳ", "", "Clarus"]) + let v = native_list_append(v, ["Κλαύδιος", "noun", "Κλαύδῐοι", "Κλαυδῐ́ου", "Κλαυδῐ́ῳ", "", "Claudius any individual"]) + let v = native_list_append(v, ["Κλαυδία", "noun", "Κλαυδῐ́αι", "Κλαυδῐ́ᾱς", "Κλαυδῐ́ᾳ", "", "Claudia any female"]) + let v = native_list_append(v, ["Κλαζομεναί", "noun", "Κλᾰζομεναί", "Κλαζομενῶν", "Κλᾰζομεναῖς", "", "Clazomenae Klazomenai Kilizman"]) + let v = native_list_append(v, ["Κλεαίνετος", "noun", "Κλεαίνετος", "Κλεαινέτου", "Κλεαινέτῳ", "", "a male given"]) + let v = native_list_append(v, ["Κλέανδρος", "noun", "Κλέανδρος", "Κλεᾰ́νδρου", "Κλεᾰ́νδρῳ", "", "a male given"]) + let v = native_list_append(v, ["Κλεάνωρ", "noun", "Κλεάνωρ", "Κλεᾱ́νορος", "Κλεᾱ́νορῐ", "", "Cleanor"]) + let v = native_list_append(v, ["Κλέαρχος", "noun", "Κλέαρχος", "Κλεᾰ́ρχου", "Κλεᾰ́ρχῳ", "", "a male given"]) + let v = native_list_append(v, ["Κλεινίας", "noun", "Κλεινίας", "Κλεινῐ́ου", "Κλεινῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Κλεισθένης", "noun", "Κλεισθένης", "Κλεισθένους", "Κλεισθένει", "", "a male given"]) + let v = native_list_append(v, ["Κλειτοφῶν", "noun", "Κλειτοφῶν", "Κλειτοφῶντος", "Κλειτοφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Κλεῖτος", "noun", "Κλεῖτος", "Κλείτου", "Κλείτῳ", "", "a male given"]) + let v = native_list_append(v, ["Κωνσταντινουπολίτης", "noun", "Κωνστᾰντῑνουπολῖται", "Κωνστᾰντῑνουπολῑ́του", "Κωνστᾰντῑνουπολῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Κλεόμβροτος", "noun", "Κλεόμβροτος", "Κλεομβρότου", "Κλεομβρότῳ", "", "a male given"]) + let v = native_list_append(v, ["Κλεομένης", "noun", "Κλεομένης", "Κλεομένους", "Κλεομένει", "", "a male given"]) + let v = native_list_append(v, ["Κλέων", "noun", "Κλέων", "Κλέωνος", "Κλέωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Κλεωναί", "noun", "Κλεωνῶν", "Κλεωνῶν", "Κλεωναῖς", "", "Cleonae Kleones an"]) + let v = native_list_append(v, ["Κλεώνυμος", "noun", "Κλεώνυμος", "Κλεωνῠ́μου", "Κλεωνῠ́μῳ", "", "a male given"]) + let v = native_list_append(v, ["Κλεοπάτρα", "noun", "Κλεοπάτρα", "Κλεοπᾰ́τρᾱς", "Κλεοπᾰ́τρᾳ", "", "Cleopatra"]) + let v = native_list_append(v, ["Κλεοφῶν", "noun", "Κλεοφῶν", "Κλεοφῶντος", "Κλεοφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Κλειώ", "noun", "Κλειώ", "Κλειοῦς", "Κλειοῖ", "", "Clio"]) + let v = native_list_append(v, ["Κλώδιος", "noun", "Κλώδῐοι", "Κλωδῐ́ου", "Κλωδῐ́ῳ", "", "Clodius"]) + let v = native_list_append(v, ["Κλωδία", "noun", "Κλωδῐ́αι", "Κλωδῐ́ᾱς", "Κλωδῐ́ᾳ", "", "Clodia"]) + let v = native_list_append(v, ["Κλωθώ", "noun", "Κλωθώ", "Κλωθοῦς", "Κλωθοῖ", "", "Clotho youngest of"]) + let v = native_list_append(v, ["Κλούσιον", "noun", "Κλούσιον", "Κλουσῐ́ου", "Κλουσῐ́ῳ", "", "Clusium a city"]) + let v = native_list_append(v, ["Κλυταιμνήστρα", "noun", "Κλυταιμνήστρα", "Κλῠταιμνήστρᾱς", "Κλῠταιμνήστρᾳ", "", "a female given"]) + let v = native_list_append(v, ["Κνῆμος", "noun", "Κνῆμος", "Κνήμου", "Κνήμῳ", "", "Cnemus"]) + let v = native_list_append(v, ["Κνίδος", "noun", "Κνίδος", "Κνῐ́δου", "Κνῐ́δῳ", "", "Cnidus Knidos south-western"]) + let v = native_list_append(v, ["Κνωσσός", "noun", "Κνωσσός", "Κνωσσοῦ", "Κνωσσῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Κνωσός", "noun", "Κνωσός", "Κνωσοῦ", "Κνωσῷ", "", "Cnossus Gnossus Knossos"]) + let v = native_list_append(v, ["Κοκκήϊος", "noun", "Κοκκήϊος", "Κοκκηῐ̈́ου", "Κοκκηῐ̈́ῳ", "", "Cocceius"]) + let v = native_list_append(v, ["Κωκυτός", "noun", "Κωκυτός", "Κωκῡτοῦ", "Κωκῡτῷ", "", "Cocytus a river"]) + let v = native_list_append(v, ["Κόδρος", "noun", "Κόδρος", "Κόδρου", "Κόδρῳ", "", "Codrus"]) + let v = native_list_append(v, ["Κολωναί", "noun", "Κολωνῶν", "Κολωνῶν", "Κολωναῖς", "", "the city of"]) + let v = native_list_append(v, ["Κολωνός", "noun", "Κολωνός", "Κολωνοῦ", "Κολωνῷ", "", "Colonus Greece"]) + let v = native_list_append(v, ["Κολοφῶν", "noun", "Κολοφῶν", "Κολοφῶνος", "Κολοφῶνῐ", "", "Colophon"]) + let v = native_list_append(v, ["Κομμαγηνή", "noun", "Κομμαγηνή", "Κομμαγηνής", "Κομμαγηνῇ", "", "Commagene an ancient"]) + let v = native_list_append(v, ["Κόνων", "noun", "Κόνων", "Κόνωνος", "Κόνωνῐ", "", "Conon"]) + let v = native_list_append(v, ["Βύβλος", "noun", "Βύβλος", "Βῠ́βλου", "Βῠ́βλῳ", "", "Byblos a port"]) + let v = native_list_append(v, ["Κωπαΐς", "noun", "Κωπαΐς", "Κωπᾱῐ̈́δος", "Κωπᾱῐ̈́δῐ", "", "Copais a former"]) + let v = native_list_append(v, ["Κόρη", "noun", "Κόρη", "Κόρης", "Κόρῃ", "", "Cora or Kore"]) + let v = native_list_append(v, ["Κορδύβη", "noun", "Κορδύβη", "Κορδῠ́βης", "Κορδῠ́βῃ", "", "Corduba Cordova Cordoba"]) + let v = native_list_append(v, ["Κορώνεια", "noun", "Κορώνεια", "Κορωνείᾱς", "Κορωνείᾳ", "", "Coronea or Koroneia"]) + let v = native_list_append(v, ["Κόρωνος", "noun", "Κόρωνος", "Κορώνου", "Κορώνῳ", "", "Coronus"]) + let v = native_list_append(v, ["Κύρνος", "noun", "Κύρνος", "Κῠ́ρνου", "Κῠ́ρνῳ", "", "Corsica"]) + let v = native_list_append(v, ["Κορύβας", "noun", "Κορῠ́βᾰντες", "Κορῠ́βᾰντος", "Κορῠ́βᾰντῐ", "", "any individual among"]) + let v = native_list_append(v, ["φύλλον", "noun", "φῠ́λλᾰ", "φῠ́λλου", "φῠ́λλῳ", "", "leaf"]) + let v = native_list_append(v, ["μίσχος", "noun", "μῐ́σχοι", "μῐ́σχου", "μῐ́σχῳ", "", "stalk of leaves"]) + let v = native_list_append(v, ["κράνος", "noun", "κρᾰ́νη", "κρᾰ́νους", "κρᾰ́νει", "", "helmet"]) + let v = native_list_append(v, ["νόμισμα", "noun", "νομῐ́σμᾰτᾰ", "νομῐ́σμᾰτος", "νομῐ́σμᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["κέρμα", "noun", "κέρμᾰτᾰ", "κέρμᾰτος", "κέρμᾰτῐ", "", "fragment"]) + let v = native_list_append(v, ["Λαυρέντιος", "noun", "Λαυρέντιος", "Λαυρεντῐ́ου", "Λαυρεντῐ́ῳ", "", "Laurentius Lawrence"]) + let v = native_list_append(v, ["Βικέντιος", "noun", "Βικέντιος", "Βικεντίου", "Βικεντίῳ", "", "Vincentius Vicentius Vincent"]) + let v = native_list_append(v, ["Βίκτωρ", "noun", "Βίκτωρ", "Βῐ́κτορος", "Βῐ́κτορῐ", "", "Victor"]) + let v = native_list_append(v, ["Γρηγόριος", "noun", "Γρηγόριος", "Γρηγορῐ́ου", "Γρηγορῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["καπνός", "noun", "κᾰπνοί", "καπνοῦ", "κᾰπνῷ", "", "smoke"]) + let v = native_list_append(v, ["κράμβη", "noun", "κράμβη", "κρᾰ́μβης", "", "", "cabbage"]) + let v = native_list_append(v, ["τάφος", "noun", "τᾰ́φοι", "τᾰ́φου", "τᾰ́φῳ", "", "funeral rites burial"]) + let v = native_list_append(v, ["Κωρυκίς", "noun", "Κωρυκίς", "Κωρῠκῐ́δος", "Κωρῠκῐ́δῐ", "", "Corycian Cave"]) + let v = native_list_append(v, ["Κώρυκος", "noun", "Κώρυκος", "Κωρῠ́κου", "Κωρῠ́κῳ", "", "Corycus Kızkalesi Turkey"]) + let v = native_list_append(v, ["Κόττας", "noun", "Κόττας", "Κόττᾱ", "Κόττᾳ", "", "Any individual named"]) + let v = native_list_append(v, ["Κότυς", "noun", "Κότυς", "Κότῠος", "Κότῠῐ̈", "", "a male given"]) + let v = native_list_append(v, ["Κράνων", "noun", "Κράνων", "Κρᾱ́νωνος", "Κρᾱ́νωνῐ", "", "Cranon"]) + let v = native_list_append(v, ["Κρατῖνος", "noun", "Κρατῖνος", "Κρᾰτῑ́νου", "Κρᾰτῑ́νῳ", "", "a male given"]) + let v = native_list_append(v, ["Κρεμώνη", "noun", "Κρεμώνη", "Κρεμώνης", "Κρεμώνῃ", "", "Cremona Lombardy Italy"]) + let v = native_list_append(v, ["Κρέων", "noun", "Κρέων", "Κρέοντος", "Κρέοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Κρέουσα", "noun", "Κρέουσα", "Κρεούσης", "Κρεούσῃ", "", "Creusa"]) + let v = native_list_append(v, ["Κρεῦσις", "noun", "Κρεῦσις", "Κρεύσῐος", "Κρεύσῑ", "", "Creusis"]) + let v = native_list_append(v, ["Ταῦρος", "noun", "Ταῦροι", "Ταύρου", "Ταύρῳ", "", "Any individual among"]) + let v = native_list_append(v, ["Ταυρική", "noun", "Ταυρική", "Ταυρῐκῆς", "Ταυρῐκῇ", "", "Tauris Taurica an"]) + let v = native_list_append(v, ["Κρῖσα", "noun", "Κρῖσα", "Κρῑ́σης", "Κρῑ́σῃ", "", "Crisa a city"]) + let v = native_list_append(v, ["Κριτίας", "noun", "Κριτίας", "Κρῐτῐ́ου", "Κριτίᾳ", "", "Critias"]) + let v = native_list_append(v, ["Κρίτων", "noun", "Κρίτων", "Κρῑ́τωνος", "Κρῑ́τωνῐ", "", "Crito"]) + let v = native_list_append(v, ["Κροῖσος", "noun", "Κροῖσος", "Κροίσου", "Κροίσῳ", "", "Croesus"]) + let v = native_list_append(v, ["Κρομμύων", "noun", "Κρομμύων", "Κρομμύωνος", "Κρομμύωνῐ", "", "Crommyon"]) + let v = native_list_append(v, ["Ἀβδηρίτης", "noun", "Ἀβδηρῖται", "Ἀβδηρῑ́του", "Ἀβδηρῑ́τῃ", "", "An inhabitant of"]) + let v = native_list_append(v, ["Ἀβυδηνός", "noun", "Ἀβῡδηνοί", "Ἀβῡδηνοῦ", "Ἀβῡδηνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἁδριανουπολίτης", "noun", "Ἁδριανουπολίται", "Ἁδριανουπολίτου", "Ἁδριανουπολίτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Αἰγινήτης", "noun", "Αἰγῑνῆται", "Αἰγῑνήτου", "Αἰγῑνήτῃ", "", "an Aeginetan inhabitant"]) + let v = native_list_append(v, ["Αἰολεύς", "noun", "Αἰολῆς", "Αἰολέως", "Αἰολεῖ", "", "an Aeolian an"]) + let v = native_list_append(v, ["Αἰτωλός", "noun", "Αἰτωλός", "Αἰτωλοῦ", "Αἰτωλῷ", "", "Aetolus"]) + let v = native_list_append(v, ["Αἰτωλίς", "noun", "Αἰτωλῐ́δες", "Αἰτωλῐ́δος", "Αἰτωλῐ́δῐ", "", "a female inhabitant"]) + let v = native_list_append(v, ["Ἀκαρνάν", "noun", "Ἀκαρνάν", "Ἀκαρνᾶνος", "", "", "Acarnan"]) + let v = native_list_append(v, ["Ἀλβανός", "noun", "Ἀλβᾱνοί", "Ἀλβᾱνοῦ", "Ἀλβᾱνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀλκμαιωνίδης", "noun", "Ᾰ̓λκμαιωνῐ́δαι", "Ἀλκμαιωνίδου", "Ᾰ̓λκμαιωνῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Ἀμπρακιώτης", "noun", "Ἀμπρᾰκῐῶται", "Ἀμπρᾰκῐώτου", "Ἀμπρᾰκῐώτῃ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀμφιπολίτης", "noun", "Ἀμφῐπολῖται", "Ἀμφῐπολῑ́του", "Ἀμφῐπολῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀμφισσεύς", "noun", "Ἀμφισσῆς", "Ἀμφισσέως", "Ἀμφισσεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀναιίτης", "noun", "Ἀναιῖται", "Ἀναιῑ́του", "Ἀναιῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀνακτόριος", "noun", "Ἀνακτόρῐοι", "Ἀνακτορῐ́ου", "Ἀνακτορῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀντικυρεύς", "noun", "Ἀντῐκυρῆς", "Ἀντῐκυρέως", "Ἀντῐκυρεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀντιάτης", "noun", "Ἀντῐᾶται", "Ἀντῐᾱ́του", "Ἀντῐᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀντιοχεύς", "noun", "Ᾰ̓ντῐοχῆς", "Ᾰ̓ντῐοχέως", "Ᾰ̓ντῐοχεῖ", "", "Antiochian Antiochene"]) + let v = native_list_append(v, ["Ἀπολλωνιάτης", "noun", "Ἀπολλωνιᾶται", "Ἀπολλωνιᾱ́του", "Ἀπολλωνιᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀργεῖος", "noun", "Ᾰ̓ργεῖοι", "Ᾰ̓ργείου", "Ᾰ̓ργείῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀρκάς", "noun", "αἱ Ᾰ̓ρκᾰ́δες", "Ᾰ̓ρκᾰ́δος", "τῇ Ᾰ̓ρκᾰ́δῐ", "", "an inhabitant of"]) + let v = native_list_append(v, ["λόγχη", "noun", "λόγχαι", "λόγχης", "λόγχῃ", "", "spearhead"]) + let v = native_list_append(v, ["Ἀρσακίδης", "noun", "Ἀρσακῐ́δαι", "Ἀρσᾰκίδου", "Ἀρσακῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Ἀσεάτης", "noun", "Ἀσεᾶται", "Ἀσεᾱ́του", "Ἀσεᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀσιανός", "noun", "Ᾰ̓σῐᾱνοί", "Ᾰ̓σῐᾱνοῦ", "Ᾰ̓σῐᾱνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀσκαλωνίτης", "noun", "Ἀσκαλωνίται", "Ἀσκαλωνίτου", "Ἀσκαλωνίτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἀχαιμενίδης", "noun", "Ᾰ̓χαιμενῐ́δαι", "Ᾰ̓χαιμενῐ́δου", "Ᾰ̓χαιμενῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Ἀχαρνεύς", "noun", "Ἀχαρνῆς", "Ἀχαρνέως", "Ἀχαρνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Βάκτριος", "noun", "Βάκτριοι", "Βακτρίου", "Βακτρίῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Βλάχος", "noun", "Βλᾰ́χοι", "Βλάχου", "Βλᾰ́χῳ", "", "a Vlach"]) + let v = native_list_append(v, ["Βοιωτός", "noun", "Βοιωτός", "Βοιωτοῦ", "", "", "Boeotus"]) + let v = native_list_append(v, ["Βοσπορίτης", "noun", "Βοσπορῖται", "Βοσπορῑ́του", "Βοσπορῑ́τῃ", "", "an inhabitant along"]) + let v = native_list_append(v, ["Βοττιαῖοι", "noun", "Βοττῐαῖοι", "Βοττῐαίων", "Βοττῐαίοις", "", "the Bottiaeans"]) + let v = native_list_append(v, ["Δάκης", "noun", "Δάκαι", "Δάκου", "Δάκῃ", "", "a Dacian"]) + let v = native_list_append(v, ["Δεκαπολίτης", "noun", "Δεκᾰπολῖται", "Δεκᾰπολῑ́του", "Δεκᾰπολῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἑρμιονεύς", "noun", "Ἑρμῐονῆς", "Ἑρμῐονέως", "Ἑρμῐονεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Εὐβοεύς", "noun", "Εὐβοῆς", "Εὐβοέως", "Εὐβοεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Θεσσαλός", "noun", "Θεσσαλός", "Θεσσᾰλοῦ", "", "", "Thessalus"]) + let v = native_list_append(v, ["Θεσσαλίς", "noun", "Θεσσᾰλῐ́δες", "Θεσσᾰλῐ́δος", "Θεσσᾰλῐ́δῐ", "", "a female inhabitant"]) + let v = native_list_append(v, ["Ἱεραπολίτης", "noun", "Ῑ̔ερᾱπολῖται", "Ῑ̔ερᾱπολῑ́του", "Ῑ̔ερᾱπολῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἰλλύριος", "noun", "Ἰλλῠ́ρῐοι", "Ἰλλῠρῐ́ου", "Ἰλλῠρῐ́ῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἰνδός", "noun", "Ἰνδός", "Ἰνδοῦ", "Ἰνδῷ", "", "Indus a river"]) + let v = native_list_append(v, ["Ἰταλός", "noun", "Ἰταλός", "Ῑ̓τᾰλοῦ", "Ῑ̓τᾰλῷ", "", "Italus"]) + let v = native_list_append(v, ["Ἰταλιώτης", "noun", "Ῑ̓τᾰλῐῶται", "Ῑ̓τᾰλῐώτου", "Ῑ̓τᾰλῐώτῃ", "", "an Italiote"]) + let v = native_list_append(v, ["τρίχες", "noun", "τρίχες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["νύξ", "noun", "νῠ́κτες", "νῠκτός", "νῠκτῐ́", "", "night"]) + let v = native_list_append(v, ["ἔλυτρον", "noun", "ἔλυτρᾰ", "ἐλύτρου", "ἐλύτρῳ", "", "cover case"]) + let v = native_list_append(v, ["οἶκος", "noun", "οἶκοι", "οἴκου", "οἴκῳ", "", "dwelling place settlement"]) + let v = native_list_append(v, ["οἰκία", "noun", "οἰκῐ́αι", "οἰκῐ́ᾱς", "οἰκῐ́ᾳ", "", "house dwelling lair"]) + let v = native_list_append(v, ["κοντός", "noun", "κοντοί", "κοντοῦ", "κοντῷ", "", "pole"]) + let v = native_list_append(v, ["φίλη", "noun", "φῐ́λαι", "φίλης", "φῐ́λῃ", "", "female friend woman"]) + let v = native_list_append(v, ["μέσα", "noun", "μέσα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["σεμίδαλις", "noun", "σεμῐδᾱ́λεις", "σεμῐδᾱ́λῐος", "σεμῐδᾱ́λει", "", "the finest wheaten"]) + let v = native_list_append(v, ["πολεμιστής", "noun", "πολεμῐσταί", "πολεμιστοῦ", "πολεμῐστῇ", "", "warrior fighter"]) + let v = native_list_append(v, ["κάππα", "noun", "κάππα", "", "", "", "kappa the name"]) + let v = native_list_append(v, ["ῥίς", "noun", "ῥῖνες", "ῥῑνός", "ῥῑνῐ́", "", "nose snout"]) + let v = native_list_append(v, ["κορμός", "noun", "κορμοί", "κορμοῦ", "κορμῷ", "", "trunk of a"]) + let v = native_list_append(v, ["δίκη", "noun", "δῐ́και", "δῐ́κης", "δῐ́κῃ", "", "custom manner fashion"]) + let v = native_list_append(v, ["Αἰακίδης", "noun", "Αἰᾰκῐ́δαι", "Αἰᾰκῐ́δου", "Αἰᾰκῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["μάννα", "noun", "μάννα", "", "", "", "manna"]) + let v = native_list_append(v, ["Ἀσκληπιάδης", "noun", "Ἀσκληπιᾰ́δαι", "Ἀσκληπιάδου", "Ἀσκληπιᾰ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Ἀσκληπίδης", "noun", "Ἀσκληπῐ́δαι", "Ἀσκληπίδου", "Ἀσκληπῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["κόμμα", "noun", "κόμμᾰτᾰ", "κόμμᾰτος", "κόμμᾰτῐ", "", "stamp or impression"]) + let v = native_list_append(v, ["φωτός", "noun", "φωτός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χαράδρα", "noun", "χᾰρᾰ́δραι", "χᾰρᾰ́δρᾱς", "χᾰρᾰ́δρᾳ", "", "torrent mountain stream"]) + let v = native_list_append(v, ["φῦλον", "noun", "φῦλᾰ", "φῡ́λου", "φῡ́λῳ", "", "a set of"]) + let v = native_list_append(v, ["δάσος", "noun", "δᾰ́σεᾰ", "δάσεος", "δᾰ́σεῐ̈", "", "thicket copse"]) + let v = native_list_append(v, ["μάχη", "noun", "μᾰ́χαι", "μᾰ́χης", "μᾰ́χῃ", "", "battle combat"]) + let v = native_list_append(v, ["γραμμή", "noun", "γρᾰμμαί", "γρᾰμμῆς", "γρᾰμμῇ", "", "a stroke or"]) + let v = native_list_append(v, ["πόλη", "noun", "πόλη", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["ἀγγελία", "noun", "ἀγγελῐ́αι", "ἀγγελῐ́ᾱς", "ἀγγελῐ́ᾳ", "", "message news report"]) + let v = native_list_append(v, ["ἠχώ", "noun", "ἠχοί", "ἠχοῦς", "ἠχοῖ", "", "echo reflected sound"]) + let v = native_list_append(v, ["τριβή", "noun", "τρῐβαί", "τρῐβῆς", "τρῐβῇ", "", "a rubbing down"]) + let v = native_list_append(v, ["Κρόνος", "noun", "Κρόνος", "Κρόνου", "Κρόνῳ", "", "Cronus Kronos"]) + let v = native_list_append(v, ["Κρονίδης", "noun", "Κρονῐ́δαι", "Κρονίδου", "Κρονῐ́δῃ", "", "Son of Cronus"]) + let v = native_list_append(v, ["Κρότων", "noun", "Κρότων", "Κρότωνος", "Κρότωνῐ", "", "Croton Crotone a"]) + let v = native_list_append(v, ["Κροτωνιάτης", "noun", "Κροτωνῐᾶται", "Κροτωνῐᾱ́του", "Κροτωνῐᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Κτησίας", "noun", "Κτησίας", "Κτησῐ́ου", "Κτησῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Κτησιφῶν", "noun", "Κτησιφῶν", "Κτησῐφῶντος", "Κτησῐφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Κούναξα", "noun", "Κούνᾰξᾰ", "Κουνάξων", "Κουνᾰ́ξοις", "", "Cunaxa an ancient"]) + let v = native_list_append(v, ["Ἔρως", "noun", "Ἔρως", "Ἔρωτος", "Ἔρωτῐ", "", "Eros"]) + let v = native_list_append(v, ["Καρδοῦχος", "noun", "Καρδοῦχοι", "Καρδούχου", "Καρδούχῳ", "", "a Kurd"]) + let v = native_list_append(v, ["Κουρίων", "noun", "Κουρῐ́ωνες", "Κουρῐ́ωνος", "Κουρῐ́ωνῐ", "", "any Roman individual"]) + let v = native_list_append(v, ["Κούριον", "noun", "Κούριον", "Κουρῐ́ου", "Κουρῐ́ῳ", "", "Kourion Cyprus Curium"]) + let v = native_list_append(v, ["Κούρτιος", "noun", "Κούρτῐοι", "Κουρτῐ́ου", "Κουρτῐ́ῳ", "", "Curtius any individual"]) + let v = native_list_append(v, ["Κυαξάρης", "noun", "Κυαξάρης", "Κυαξάρου", "Κῠᾰξᾰ́ρῃ", "", "Cyaxares"]) + let v = native_list_append(v, ["Κυβέλη", "noun", "Κυβέλη", "Κῠβέλης", "Κῠβέλῃ", "", "Cybele"]) + let v = native_list_append(v, ["Κύκλωψ", "noun", "Κῠ́κλωπες", "Κύκλωπος", "Κῠ́κλωπῐ", "", "a cyclops"]) + let v = native_list_append(v, ["Κύκνος", "noun", "Κύκνος", "Κύκνου", "Κῠ́κνῳ", "", "any individual named"]) + let v = native_list_append(v, ["Κύδνος", "noun", "Κύδνος", "Κῠ́δνου", "Κῠ́δνῳ", "", "Cydnus river Tarsus"]) + let v = native_list_append(v, ["Κυδωνία", "noun", "Κυδωνία", "Κῠδωνῐ́ᾱς", "Κῠδωνῐ́ᾳ", "", "Cydonia Crete Greece"]) + let v = native_list_append(v, ["Κυδωνιάτης", "noun", "Κῠδωνῐᾶται", "Κῠδωνῐᾱ́του", "Κῠδωνῐᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Κυλλήνη", "noun", "Κυλλήνη", "Κυλλήνης", "Κυλλήνῃ", "", "Cyllene an oread"]) + let v = native_list_append(v, ["Κύλων", "noun", "Κύλων", "Κῠ́λωνος", "Κῠ́λωνῐ", "", "Cylon"]) + let v = native_list_append(v, ["Κύμη", "noun", "Κύμη", "Κῡ́μης", "Κῡ́μῃ", "", "Cyme an ancient"]) + let v = native_list_append(v, ["Κυνὸς Κεφαλαί", "noun", "Κῠνὸς Κεφᾰλαί", "Κῠνὸς Κεφᾰλῶν", "Κυνος Κεφαλαῖς", "", "Cynoscephalae the location"]) + let v = native_list_append(v, ["Κυνὸς Σῆμα", "noun", "Κυνὸς Σῆμα", "Κῠνὸς Σήμᾰτος", "", "", "Cynossema a location"]) + let v = native_list_append(v, ["Κυνοσούρα", "noun", "Κυνοσούρα", "Κῠνοσούρᾱς", "Κῠνοσούρᾳ", "", "Cynosura"]) + let v = native_list_append(v, ["Κύνθος", "noun", "Κύνθος", "Κῠ́νθου", "Κῠ́νθῳ", "", "Cynthus a mountain"]) + let v = native_list_append(v, ["Κυνουρία", "noun", "Κυνουρία", "Κυνουρῐ́ᾱς", "Κυνουρῐ́ᾳ", "", "Cynuria"]) + let v = native_list_append(v, ["Κύψελος", "noun", "Κύψελος", "Κυψέλου", "Κυψέλῳ", "", "Cypselus"]) + let v = native_list_append(v, ["Κύθηρα", "noun", "Κῠ́θηρᾰ", "Κῠθήρων", "Κῠθήροις", "", "Kythira also spelt"]) + let v = native_list_append(v, ["Ἀντικύθηρα", "noun", "Ἀντῐκῠ́θηρᾰ", "Ἀντῐκῠθήρων", "Ἀντῐκῠθήροις", "", "Anticythera Antikythera or"]) + let v = native_list_append(v, ["Κύζικος", "noun", "Κύζικος", "Κῡζῐ́κου", "Κῡζῐ́κῳ", "", "Cyzicus Kyzikos Turkey"]) + let v = native_list_append(v, ["Δαίδαλος", "noun", "Δαίδαλος", "Δαιδᾰ́λου", "Δαιδᾰ́λῳ", "", "Daedalus"]) + let v = native_list_append(v, ["Κυζικηνός", "noun", "Κῡζῐκηνοί", "Κυζῐκηνοῦ", "Κῡζῐκηνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Δανάη", "noun", "Δανάη", "Δᾰνάης", "Δανάῃ", "", "Danae"]) + let v = native_list_append(v, ["Δαναός", "noun", "Δαναός", "Δᾰνᾰοῦ", "Δᾰνᾰῷ", "", "Danaus"]) + let v = native_list_append(v, ["Δαναοί", "noun", "Δᾰνᾰοί", "Δᾰνᾰῶν", "Δᾰνᾰοῖς", "", "the Danaans the"]) + let v = native_list_append(v, ["Δαναΐδης", "noun", "Δᾰνᾰΐδαι", "Δᾰνᾰΐδου", "Δᾰνᾰΐδῃ", "", "a child of"]) + let v = native_list_append(v, ["Δαναΐς", "noun", "Δᾰνᾰῐ̈́δες", "Δᾰνᾰΐδος", "Δᾰνᾰῐ̈́δῐ", "", "a Danaid daughter"]) + let v = native_list_append(v, ["Ἴστρος", "noun", "Ἴστρος", "Ἴστρου", "τῇ Ῐ̓́στρῳ", "", "Istros Histria an"]) + let v = native_list_append(v, ["Δαφναί", "noun", "Δᾰφναί", "Δᾰφνῶν", "Δᾰφναῖς", "", "Daphnae a city"]) + let v = native_list_append(v, ["Δάρδανος", "noun", "Δάρδανος", "Δαρδάνου", "Δαρδᾰ́νῳ", "", "Dardanus a hero"]) + let v = native_list_append(v, ["Δαρδανεύς", "noun", "Δαρδᾰνῆς", "Δαρδανέως", "Δαρδᾰνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Δασκύλειον", "noun", "Δασκύλειᾰ", "Δασκυλείου", "Δασκυλείῳ", "", "Dascylium"]) + let v = native_list_append(v, ["Δασκύλιον", "noun", "Δασκύλιον", "Δασκῠλίου", "Δασκυλίῳ", "", "Dascylium a city"]) + let v = native_list_append(v, ["Δαυλίς", "noun", "Δαυλίς", "Δαυλῐ́δος", "Δαυλῐ́δῐ", "", "Daulis a city"]) + let v = native_list_append(v, ["Θάνατος", "noun", "Θάνατος", "Θᾰνᾰ́του", "Θᾰνᾰ́τῳ", "", "Thanatos"]) + let v = native_list_append(v, ["Δεκέλεια", "noun", "Δεκέλεια", "Δεκελείᾱς", "Δεκελείᾳ", "", "Decelea a city"]) + let v = native_list_append(v, ["Δῃάνειρα", "noun", "Δῃάνειρα", "Δῃᾰνείρᾱς", "Δῃᾰνείρᾳ", "", "Deianira third wife"]) + let v = native_list_append(v, ["Δηϊδάμεια", "noun", "Δηϊδάμεια", "Δηϊδᾰμείᾱς", "Δηϊδᾰμείᾳ", "", "a female given"]) + let v = native_list_append(v, ["Δηϊόκης", "noun", "Δηϊόκης", "Δηϊόκου", "Δηϊόκῃ", "", "Deioces"]) + let v = native_list_append(v, ["Δηΐφοβος", "noun", "Δηΐφοβος", "Δηῐ̈φόβου", "Δηῐ̈φόβῳ", "", "a male given"]) + let v = native_list_append(v, ["Δῆλος", "noun", "Δῆλος", "Δήλου", "Δήλῳ", "", "Delos"]) + let v = native_list_append(v, ["Δελφοί", "noun", "Δελφῶν", "Δελφῶν", "Δελφοῖς", "", "Delphi a town"]) + let v = native_list_append(v, ["Δελφός", "noun", "Δελφοί", "Δελφοῦ", "Δελφῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Δελφίς", "noun", "Δελφῐ́δες", "Δελφῐ́δος", "Δελφῐ́δῐ", "", "a female inhabitant"]) + let v = native_list_append(v, ["Δημάρατος", "noun", "Δημάρατος", "Δημᾰρᾱ́του", "Δημᾰρᾱ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Δημήτηρ", "noun", "Δημήτηρ", "Δήμητρος", "Δήμητρῐ", "", "Demeter"]) + let v = native_list_append(v, ["Δημήτριος", "noun", "Δημήτριος", "Δημητρίου", "Δημητρίῳ", "", "a male given"]) + let v = native_list_append(v, ["θανάτου", "noun", "θανάτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Δημοφῶν", "noun", "Δημοφῶν", "Δημοφῶντος", "Δημοφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Δημοσθένης", "noun", "Δημοσθένης", "Δημοσθένους", "Δημοσθένει", "", "a male given"]) + let v = native_list_append(v, ["Δερκυλίδας", "noun", "Δερκυλίδας", "Δερκυλῐ́δου", "Δερκυλῐ́δᾳ", "", "a male given"]) + let v = native_list_append(v, ["Δέρδας", "noun", "Δέρδας", "Δέρδου", "Δέρδᾳ", "", "a male given"]) + let v = native_list_append(v, ["Δέξιππος", "noun", "Δέξιππος", "Δεξῐ́ππου", "Δεξίππῳ", "", "a male given"]) + let v = native_list_append(v, ["Δευκαλίων", "noun", "Δευκαλίων", "Δευκᾰλίωνος", "Δευκᾰλίωνῐ", "", "Deucalion"]) + let v = native_list_append(v, ["Διαγόρας", "noun", "Διαγόρας", "Δῐᾰγόρου", "Δῐᾰγόρᾳ", "", "a male given"]) + let v = native_list_append(v, ["Δίκτυννα", "noun", "Δίκτυννα", "Δικτύννης", "Δικτύννῃ", "", "Dictynna Britomartis"]) + let v = native_list_append(v, ["Δίνδυμον", "noun", "Δίνδυμον", "Δινδύμου", "Δινδῠ́μῳ", "", "Dindymon or Dindymum"]) + let v = native_list_append(v, ["Δίων", "noun", "Δίων", "Δῐ́ωνος", "Δῐ́ωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Διόδοτος", "noun", "Διόδοτος", "Δῐοδότου", "Δῐοδότῳ", "", "a male given"]) + let v = native_list_append(v, ["Διογένης", "noun", "Διογένης", "Δῐογένεος", "Δῐογένει", "", "a male given"]) + let v = native_list_append(v, ["Διομήδης", "noun", "Διομήδης", "Δῐομήδους", "Δῐομήδει", "", "a male given"]) + let v = native_list_append(v, ["Διομέδων", "noun", "Διομέδων", "Δῐομέδοντος", "Δῐομέδοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Διώνη", "noun", "Διώνη", "Δῐώνης", "Δῐώνῃ", "", "Dione"]) + let v = native_list_append(v, ["Διόνυσος", "noun", "Διόνυσος", "Δῐονῡ́σου", "Δῐονῡ́σῳ", "", "Dionysus"]) + let v = native_list_append(v, ["Διονύσιος", "noun", "Διονύσιος", "Δῐονῡσίου", "Δῐονῡσῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Διοπείθης", "noun", "Διοπείθης", "Δῐοπείθους", "Δῐοπείθει", "", "a male given"]) + let v = native_list_append(v, ["Διόσκορος", "noun", "Δῐόσκοροι", "Δῐοσκόρου", "Δῐοσκόρῳ", "", "a Dioscurus one"]) + let v = native_list_append(v, ["Διόσκοροι", "noun", "Διόσκοροι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Διόσκουρος", "noun", "Δῐόσκουροι", "Δῐόσκοῦρου", "Δῐοσκούρῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Διότιμος", "noun", "Διότιμος", "Δῐοτῑ́μου", "Δῐοτῑ́μῳ", "", "a male given"]) + let v = native_list_append(v, ["Δῖον", "noun", "Δῖον", "Δίου", "Δῑ́ῳ", "", "Dion or Dium"]) + let v = native_list_append(v, ["Δίρκη", "noun", "Δίρκη", "Δίρκης", "Δίρκῃ", "", "Dirce"]) + let v = native_list_append(v, ["Δόβηρος", "noun", "Δόβηρος", "Δοβήρου", "τῇ Δοβήρῳ", "", "Doberus a city"]) + let v = native_list_append(v, ["Δωδώνη", "noun", "Δωδώνη", "Δωδώνης", "Δωδώνῃ", "", "Dodona a town"]) + let v = native_list_append(v, ["Δόλων", "noun", "Δόλων", "Δόλωνος", "Δόλωνῐ", "", "Dolon"]) + let v = native_list_append(v, ["Δολογκός", "noun", "Δολογκοί", "Δολογκοῦ", "Δολογκῷ", "", "any individual among"]) + let v = native_list_append(v, ["Δόλοψ", "noun", "Δόλοπες", "Δόλοπος", "Δόλοπῐ", "", "any individual among"]) + let v = native_list_append(v, ["Δομιτιανός", "noun", "Δομιτιανός", "Δομῐτῐᾱνοῦ", "Δομιτιᾱνῷ", "", "Domitian"]) + let v = native_list_append(v, ["Δομίτιος", "noun", "Δομίτιος", "Δομῐτίου", "Δομιτίῳ", "", "Domitius"]) + let v = native_list_append(v, ["Δῶρος", "noun", "Δῶρος", "Δώρου", "Δώρῳ", "", "Dorus"]) + let v = native_list_append(v, ["Δωριεύς", "noun", "Δωρῐῆς", "Δωρῐῶς", "Δωρῐεῖ", "", "a Dorian"]) + let v = native_list_append(v, ["Δωρίς", "noun", "Δωρίς", "Δωρῐ́δος", "Δωρῐ́δῐ", "", "Doris an Oceanid"]) + let v = native_list_append(v, ["Δόρισκος", "noun", "Δόρισκος", "Δορίσκου", "Δορίσκῳ", "", "Doriscus a location"]) + let v = native_list_append(v, ["Δράκων", "noun", "Δράκων", "Δρᾰ́κοντος", "Δρᾰ́κοντῐ", "", "Draco"]) + let v = native_list_append(v, ["Δύμη", "noun", "Δύμη", "Δῡ́μης", "Δῡ́μῃ", "", "Dyme a city"]) + let v = native_list_append(v, ["Δυρράχιον", "noun", "Δυρράχιον", "Δῠρρᾰχῐ́ου", "Δῠρρᾰχῐ́ῳ", "", "Dyrrhachium Durrës a"]) + let v = native_list_append(v, ["Ἐκβάτανα", "noun", "Ἐκβᾰ́τᾰνᾰ", "Ἐκβᾰτᾰ́νων", "Ἐκβᾰτᾰ́νοις", "", "Ecbatana"]) + let v = native_list_append(v, ["Ἐχίων", "noun", "Ἐχίων", "Ἐχῑ́ονος", "Ἐχῑ́ονῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἠχώ", "noun", "Ἠχοί", "Ἠχοῦς", "Ἠχοῖ", "", "Echo a nymph"]) + let v = native_list_append(v, ["νικητής", "noun", "νῑκηταί", "νῑκητοῦ", "νῑκητῇ", "", "winner in games"]) + let v = native_list_append(v, ["Ἠδωνός", "noun", "Ἠδωνοί", "Ἠδωνοῦ", "Ἠδωνῷ", "", "one of the"]) + let v = native_list_append(v, ["Ἠδών", "noun", "Ἠδῶνες", "Ἠδῶνος", "Ἠδῶνῐ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἠδωνίς", "noun", "Ἠδωνίς", "Ἠδωνῐ́δος", "Ἠδωνῐ́δῐ", "", "Edonis an ancient"]) + let v = native_list_append(v, ["Ἠετίων", "noun", "Ἠετίων", "Ἠετῐ́ωνος", "Ἠετῐ́ωνῐ", "", "Eetion"]) + let v = native_list_append(v, ["Ἠετιονεία", "noun", "Ἠετιονεία", "Ἠετῐονείᾱς", "Ἠετῐονείᾳ", "", "Eetionea or Eetionia"]) + let v = native_list_append(v, ["Ἠγερία", "noun", "Ἠγερία", "Ἠγερῐ́ᾱς", "Ἠγερῐ́ᾳ", "", "Egeria"]) + let v = native_list_append(v, ["Ἤγεστα", "noun", "Ἤγεστα", "Ἠγέστης", "Ἠγέστῃ", "", "Egesta Segesta Sicily"]) + let v = native_list_append(v, ["Εἰλείθυια", "noun", "Εἰλείθυια", "Εἰλειθυίᾱς", "Εἰλειθυίᾳ", "", "Eileithyia"]) + let v = native_list_append(v, ["Ἠϊών", "noun", "Ἠιόνες", "Ἠιόνος", "Ἠιόνῐ", "", "Eion"]) + let v = native_list_append(v, ["Ἐλαιοῦς", "noun", "Ἐλαιοῦς", "Ἐλαιοῦντος", "Ἐλαιοῦντῐ", "", "Elaeus"]) + let v = native_list_append(v, ["Ἐλάτεια", "noun", "Ἐλάτεια", "Ἐλᾰτείᾱς", "Ἐλᾰτείᾳ", "", "Elateia Thessaly Greece"]) + let v = native_list_append(v, ["Ἐλέα", "noun", "Ἐλέα", "Ἐλέᾱς", "Ἐλέᾳ", "", "Hyele or Elea"]) + let v = native_list_append(v, ["Ἠλέκτρα", "noun", "Ἠλέκτρα", "Ἠλέκτρᾱς", "Ἠλέκτρᾳ", "", "a female given"]) + let v = native_list_append(v, ["Ἠλεκτρύων", "noun", "Ἠλεκτρύων", "Ἠλεκτρῠ́ονος", "Ἠλεκτρῠ́ονῐ", "", "Electryon"]) + let v = native_list_append(v, ["Ἐλεφαντίνη", "noun", "Ἐλεφαντίνη", "Ἐλεφαντῑ́νης", "Ἐλεφαντῑ́νῃ", "", "Elephantine"]) + let v = native_list_append(v, ["Ἐλευσίς", "noun", "Ἐλευσίς", "Ἐλευσῖνος", "Ἐλευσῖνῐ", "", "Eleusis Eleusina Attica"]) + let v = native_list_append(v, ["Ἐλευθεραί", "noun", "Ἐλευθερῶν", "Ἐλευθερῶν", "Ἐλευθεραῖς", "", "Eleutherae Boeotia Greece"]) + let v = native_list_append(v, ["Ἦλις", "noun", "Ἦλις", "Ἤλῐδος", "Ἤλῐδῐ", "", "Elis Greece"]) + let v = native_list_append(v, ["Ἔλυμος", "noun", "Ἔλυμοι", "Ἐλύμου", "Ἐλύμῳ", "", "one of the"]) + let v = native_list_append(v, ["Ἠλύσιον", "noun", "Ἠλῠ́σῐᾰ", "Ἠλῠσῐ́ου", "Ἠλῠσῐ́ῳ", "", "Elysium an Elysian"]) + let v = native_list_append(v, ["Ἐμπεδοκλῆς", "noun", "Ἐμπεδοκλῆς", "Ἐμπεδοκλέους", "Ἐμπεδοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἔμπουσα", "noun", "Ἔμπουσα", "Ἐμπούσης", "Ἐμπούσῃ", "", "Empusa a kind"]) + let v = native_list_append(v, ["Ἐγκέλαδος", "noun", "Ἐγκέλαδος", "Ἐγκελᾰ́δου", "Ἐγκελᾰ́δῳ", "", "Enceladus"]) + let v = native_list_append(v, ["Ἔνδιος", "noun", "Ἔνδιος", "Ἐνδίου", "Ἐνδῐ́ῳ", "", "Endius"]) + let v = native_list_append(v, ["Ἐνδυμίων", "noun", "Ἐνδυμίων", "Ἐνδῠμίωνος", "Ἐνδυμίωνῐ", "", "Endymion"]) + let v = native_list_append(v, ["Ἐνιπεύς", "noun", "Ἐνιπεύς", "Ἐνῑπέως", "Ἐνῑπεῖ", "", "the river Enipeus"]) + let v = native_list_append(v, ["Ἐνυάλιος", "noun", "Ἐνυάλιος", "Ἐνῡᾰλῐ́ου", "Ἐνῡᾰλῐ́ῳ", "", "Enyalius"]) + let v = native_list_append(v, ["Ἐνυώ", "noun", "Ἐνυώ", "Ἐνῡοῦς", "Ἐνῡοῖ", "", "Enyo goddess of"]) + let v = native_list_append(v, ["Ἐπαμεινώνδας", "noun", "Ἐπαμεινώνδας", "Ἐπαμεινώνδου", "Ἐπαμεινώνδᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ἔπαφος", "noun", "Ἔπαφος", "Ἐπάφου", "Ἐπάφῳ", "", "Epaphus"]) + let v = native_list_append(v, ["Ἐπειός", "noun", "Ἐπειός", "Ἐπειοῦ", "Ἐπειῷ", "", "Epeius"]) + let v = native_list_append(v, ["Ἐφιάλτης", "noun", "Ἐφιάλτης", "Ἐφῐάλτου", "Ἐφῐάλτῃ", "", "Ephialtes"]) + let v = native_list_append(v, ["Ἐπίχαρμος", "noun", "Ἐπίχαρμος", "Ἐπιχάρμου", "Ἐπιχάρμῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἐπίκτητος", "noun", "Ἐπίκτητος", "Ἐπικτήτου", "Ἐπῐκτήτῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἐπίκουρος", "noun", "Ἐπίκουρος", "Ἐπῐκούρου", "Ἐπῐκούρῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἐπίδαμνος", "noun", "Ἐπίδαμνος", "Ἐπῐδάμνου", "Ἐπῐδᾰ́μνῳ", "", "Epidamnus later called"]) + let v = native_list_append(v, ["Ἐπίδαυρος", "noun", "Ἐπίδαυρος", "Ἐπῐδαύρου", "Ἐπιδαύρῳ", "", "Epidaurus an ancient"]) + let v = native_list_append(v, ["Ἐπίγονος", "noun", "Ἐπίγονοι", "Ἐπῐγόνου", "Ἐπιγόνῳ", "", "One a member"]) + let v = native_list_append(v, ["Ἐπίγονοι", "noun", "Ἐπίγονοι", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["Ἐπιμενίδης", "noun", "Ἐπιμενίδης", "Ἐπῐμενίδου", "Ἐπιμενίδῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἐπιμηθεύς", "noun", "Ἐπιμηθεύς", "Ἐπῐμηθέως", "Ἐπιμηθεῖ", "", "Epimetheus"]) + let v = native_list_append(v, ["Ἐπιπολαί", "noun", "Ἐπῐπολαί", "Ἐπῐπολῶν", "Ἐπῐπολαῖς", "", "Epipolae a strategically"]) + let v = native_list_append(v, ["Ἤπειρος", "noun", "Ἤπειρος", "Ἠπείρου", "Ἠπείρῳ", "", "Epirus a historical"]) + let v = native_list_append(v, ["Ἐπύαξα", "noun", "Ἐπύαξα", "Ἐπυάξης", "Ἐπυάξῃ", "", "Epyaxa"]) + let v = native_list_append(v, ["Ἠπειρώτης", "noun", "Ἠπειρῶται", "Ἠπειρώτου", "Ἠπειρώτῃ", "", "An inhabitant of"]) + let v = native_list_append(v, ["Ἐρατώ", "noun", "Ἐρατώ", "Ἐρᾰτοῦς", "Ἐρᾰτοῖ", "", "Erato"]) + let v = native_list_append(v, ["Ἔρεβος", "noun", "Ἔρεβος", "Ἐρέβεος", "Ἐρέβει", "", "Erebus"]) + let v = native_list_append(v, ["Ἐρεχθεύς", "noun", "Ἐρεχθεύς", "Ἐρεχθέως", "Ἐρεχθεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἐρεχθείδης", "noun", "Ἐρεχθείδης", "Ἐρεχθείδου", "Ἐρεχθείδῃ", "", "a child of"]) + let v = native_list_append(v, ["Ἐρέτρια", "noun", "Ἐρέτρια", "Ἐρετρῐ́ᾱς", "Ἐρετρῐ́ᾳ", "", "Eretria"]) + let v = native_list_append(v, ["Ἐρετριεύς", "noun", "Ἐρετρῐῆς", "Ἐρετρῐῶς", "Ἐρετρῐεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἐρίβοια", "noun", "Ἐρίβοια", "Ἐρῐβοίᾱς", "Ἐρῐβοίᾳ", "", "Eriboea wife of"]) + let v = native_list_append(v, ["Ἐριχθόνιος", "noun", "Ἐρῐχθόνῐοι", "Ἐρῐχθονῐ́ου", "Ἐρῐχθονῐ́ῳ", "", "Erichthonius"]) + let v = native_list_append(v, ["Ἠριδανός", "noun", "Ἠριδανός", "Ἠρῐδᾰνοῦ", "Ἠρῐδᾰνῷ", "", "Eridanus former name"]) + let v = native_list_append(v, ["Ἐρινεός", "noun", "Ἐρινεός", "Ἐρῑνεοῦ", "Ἐρῑνεῷ", "", "Erineus"]) + let v = native_list_append(v, ["Ἐριφύλη", "noun", "Ἐριφύλη", "Ἐρῐφῡ́λης", "Ἐρῐφῡ́λῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἐρύμανθος", "noun", "Ἐρύμανθος", "Ἐρῠμάνθου", "Ἐρῠμάνθῳ", "", "Mount Erymanthus"]) + let v = native_list_append(v, ["Ἐρυθραί", "noun", "Ἐρῠθραί", "Ἐρῠθρῶν", "Ἐρῠθραῖς", "", "Erythrae Ildırı Turkey"]) + let v = native_list_append(v, ["Ἔρυξ", "noun", "Ἔρυξ", "Ἔρῠκος", "Ἔρῠκῐ", "", "Eryx Erice Sicily"]) + let v = native_list_append(v, ["Ἐτεοκλῆς", "noun", "Ἐτεοκλῆς", "Ἐτεοκλέους", "Ἐτεοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἐτεοκλέης", "noun", "Ἐτεοκλέης", "Ἐτεοκλέους", "Ἐτεοκλέει", "", "Poetic and Epic"]) + let v = native_list_append(v, ["Ἐτέοκλος", "noun", "Ἐτέοκλος", "Ἐτεόκλου", "Ἐτεόκλῳ", "", "Eteoclus"]) + let v = native_list_append(v, ["Ἐτεόνικος", "noun", "Ἐτεόνικος", "Ἐτεονῑ́κου", "Ἐτεονῑ́κῳ", "", "a male given"]) + let v = native_list_append(v, ["Αἴτνη", "noun", "Αἴτνη", "Αἴτνης", "Αἴτνῃ", "", "Aetna Sicilian nymph"]) + let v = native_list_append(v, ["Τυρρηνός", "noun", "Τυρρηνοί", "Τυρρηνοῦ", "Τυρρηνῷ", "", "an Etruscan"]) + let v = native_list_append(v, ["Τυρσηνός", "noun", "Τυρσηνοί", "Τυρσηνοῦ", "Τυρσηνῷ", "", "Ionic form of"]) + let v = native_list_append(v, ["Εὔβουλος", "noun", "Εὔβουλος", "Εὐβούλου", "Εὐβούλῳ", "", "a male given"]) + let v = native_list_append(v, ["Εὐκλείδης", "noun", "Εὐκλείδης", "Εὐκλείδου", "Εὐκλείδῃ", "", "a male given"]) + let v = native_list_append(v, ["Εὐκλῆς", "noun", "Εὐκλῆς", "Εὐκλέους", "Εὐκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Εὔμολπος", "noun", "Εὔμολπος", "Εὐμόλπου", "Εὐμόλπῳ", "", "a male given"]) + let v = native_list_append(v, ["Εὐμολπίδης", "noun", "Εὐμολπῐ́δαι", "Εὐμολπίδου", "Εὐμολπῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Εὔφημος", "noun", "Εὔφημος", "Εὐφήμου", "Εὐφήμῳ", "", "a male given"]) + let v = native_list_append(v, ["Εὔφρων", "noun", "Εὔφρων", "Εὔφρονος", "Εὔφρονῐ", "", "Euphron"]) + let v = native_list_append(v, ["Εὔπολις", "noun", "Εὔπολις", "Εὐπόλῐδος", "Εὐπόλῐδῐ", "", "Eupolis an Athenian"]) + let v = native_list_append(v, ["Εὐριπίδης", "noun", "Εὐριπίδης", "Εὐρῑπῐ́δου", "Εὐρῑπῐ́δῃ", "", "a male given"]) + let v = native_list_append(v, ["Εὔριπος", "noun", "Εὔριπος", "Εὐρῑ́που", "Εὐρῑ́πῳ", "", "Euripus Strait"]) + let v = native_list_append(v, ["Εὐρώπη", "noun", "Εὐρώπη", "Εὐρώπης", "Εὐρώπῃ", "", "Europa several characters"]) + let v = native_list_append(v, ["Εὐρώτας", "noun", "Εὐρώτας", "Εὐρώτᾱ", "Εὐρώτᾳ", "", "Eurotas a man"]) + let v = native_list_append(v, ["Εὐρυβιάδης", "noun", "Εὐρυβιάδης", "Εὐρῠβῐάδου", "Εὐρῠβῐάδῃ", "", "a male given"]) + let v = native_list_append(v, ["Εὐρύκλεια", "noun", "Εὐρύκλεια", "Εὐρῠκλείᾱς", "Εὐρῠκλείᾳ", "", "a female given"]) + let v = native_list_append(v, ["Εὐρυκλῆς", "noun", "Εὐρυκλῆς", "Εὐρῠκλέους", "Εὐρῠκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Εὐρύηλος", "noun", "Εὐρύηλος", "Εὐρῠήλου", "Εὐρῠήλῳ", "", "Euryelus"]) + let v = native_list_append(v, ["Εὐρυδίκη", "noun", "Εὐρυδίκη", "Εὐρῠδίκης", "Εὐρῠδίκῃ", "", "a female given"]) + let v = native_list_append(v, ["Εὐρύλοχος", "noun", "Εὐρύλοχος", "Εὐρῠλόχου", "Εὐρῠλόχῳ", "", "a male given"]) + let v = native_list_append(v, ["Εὐρύμαχος", "noun", "Εὐρύμαχος", "Εὐρῠμάχου", "Εὐρῠμᾰ́χῳ", "", "a male given"]) + let v = native_list_append(v, ["Εὐρυμέδων", "noun", "Εὐρυμέδων", "Εὐρῠμέδοντος", "Εὐρῠμέδοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Εὐρυπτόλεμος", "noun", "Εὐρυπτόλεμος", "Εὐρῠπτολέμου", "Εὐρῠπτολέμῳ", "", "a male given"]) + let v = native_list_append(v, ["Τηθύς", "noun", "Τηθύς", "Τηθῠ́ος", "Τηθῠ́ῐ̈", "", "Tethys a Titan"]) + let v = native_list_append(v, ["Ζέφυρος", "noun", "Ζέφυρος", "Ζεφῠ́ρου", "Ζεφῠ́ρῳ", "", "Zephyrus the west"]) + let v = native_list_append(v, ["Εὐρυσάκης", "noun", "Εὐρυσάκης", "Εὐρῠσᾰ́κους", "Εὐρῠσᾰ́κει", "", "a male given"]) + let v = native_list_append(v, ["Εὐρυσθεύς", "noun", "Εὐρυσθεύς", "Εὐρυσθέως", "Εὐρυσθεῖ", "", "Eurystheus"]) + let v = native_list_append(v, ["Εὔρυτος", "noun", "Εὔρυτος", "Εὐρῠ́του", "Εὐρῠ́τῳ", "", "Eurytus"]) + let v = native_list_append(v, ["Εὐθύδημος", "noun", "Εὐθύδημος", "Εὐθῠδήμου", "Εὐθῠδήμῳ", "", "a male given"]) + let v = native_list_append(v, ["Εὐθύφρων", "noun", "Εὐθύφρων", "Εὐθῠ́φρονος", "Εὐθῠ́φρονῐ", "", "a male given"]) + let v = native_list_append(v, ["Εὔξεινος", "noun", "Εὔξεινος", "Εὐξείνου", "Εὐξείνῳ", "", "Euxine Sea Black"]) + let v = native_list_append(v, ["Εὐάδνη", "noun", "Εὐάδνη", "Εὐάδνης", "Εὐάδνῃ", "", "Evadne"]) + let v = native_list_append(v, ["Εὐαγόρας", "noun", "Εὐαγόρας", "Εὐᾰγόρου", "Εὐᾰγόρᾳ", "", "a male given"]) + let v = native_list_append(v, ["Εὔανδρος", "noun", "Εὔανδρος", "Εὐᾰ́νδρου", "Εὐᾰ́νδρῳ", "", "Evander"]) + let v = native_list_append(v, ["Εὐήνωρ", "noun", "Εὐήνωρ", "Εὐήνορος", "Εὐήνορῐ", "", "Evenor"]) + let v = native_list_append(v, ["Εὔηνος", "noun", "Εὔηνος", "Εὐήνου", "Εὐήνῳ", "", "Evenus the name"]) + let v = native_list_append(v, ["βασιλέας", "noun", "βασιλέας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["Νικολαΐδης", "noun", "Νῑκολᾱῐ̈́δαι", "Νῑκολᾱῐ̈́δου", "Νῑκολᾱῐ̈́δῃ", "", "a son of"]) + let v = native_list_append(v, ["Νικολαΐς", "noun", "Νῑκολᾱῐ̈́δες", "Νῑκολᾱῐ̈́δος", "Νῑκολᾱῐ̈́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Φάβιος", "noun", "Φᾰ́βῐοι", "Φᾰβῐ́ου", "Φᾰβῐ́ῳ", "", "Fabius"]) + let v = native_list_append(v, ["Φαβρίκιος", "noun", "Φᾱβρῐ́κῐοι", "Φᾱβρῐκῐ́ου", "Φᾱβρῐκῐ́ῳ", "", "Fabricius"]) + let v = native_list_append(v, ["Φαλέριος", "noun", "Φᾰλέρῐοι", "Φᾰλερῐ́ου", "Φᾰλερῐ́ῳ", "", "one of the"]) + let v = native_list_append(v, ["Φαῦνος", "noun", "Φαῦνος", "Φαύνου", "Φαύνῳ", "", "Faunus"]) + let v = native_list_append(v, ["Φαύστυλος", "noun", "Φαύστυλος", "Φαυστῠ́λου", "Φαυστῠ́λῳ", "", "Faustulus"]) + let v = native_list_append(v, ["Φαώνιος", "noun", "Φαώνιος", "Φᾰωνῐ́ου", "Φᾰωνῐ́ῳ", "", "Favonius"]) + let v = native_list_append(v, ["Φιδήνη", "noun", "Φιδήνη", "Φῑδήνης", "Φῑδήνῃ", "", "Fidenae"]) + let v = native_list_append(v, ["Φιδηνάτης", "noun", "Φῑδηνᾶται", "Φῑδηνᾱ́του", "Φῑδηνᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Φλαμίνιος", "noun", "Φλαμίνιος", "Φλᾱμῐνῐ́ου", "Φλᾱμῐνῐ́ῳ", "", "Flaminius"]) + let v = native_list_append(v, ["Φλαμίνινος", "noun", "Φλαμίνινος", "Φλᾱμῐνῑ́νου", "Φλᾱμῐνῑ́νῳ", "", "Flamininus"]) + let v = native_list_append(v, ["Φλαούιος", "noun", "Φλᾱούῐοι", "Φλᾱουῐ́ου", "Φλᾱουῐ́ῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Φλάβιος", "noun", "Φλᾱ́βῐοι", "Φλᾱβῐ́ου", "Φλᾱβῐ́ῳ", "", "Flavius"]) + let v = native_list_append(v, ["Φλαύιος", "noun", "Φλαύῐοι", "Φλαυῐ́ου", "Φλαυῐ́ῳ", "", "Flavius"]) + let v = native_list_append(v, ["Φλῶρος", "noun", "Φλῶρος", "Φλώρου", "Φλώρῳ", "", "Florius"]) + let v = native_list_append(v, ["Τύχη", "noun", "Τύχη", "Τῠ́χης", "Τῠ́χῃ", "", "Tyche Fortuna Lady"]) + let v = native_list_append(v, ["Φρέγελλα", "noun", "Φρέγελλα", "Φρεγέλλης", "Φρεγέλλῃ", "", "Fregellae"]) + let v = native_list_append(v, ["Φούλβιος", "noun", "Φούλβῐοι", "Φουλβῐ́ου", "Φουλβῐ́ῳ", "", "Fulvius"]) + let v = native_list_append(v, ["Φούριος", "noun", "Φούρῐοι", "Φουρῐ́ου", "Φουρῐ́ῳ", "", "Furius"]) + let v = native_list_append(v, ["Κήρ", "noun", "Κῆρες", "Κηρός", "Κηρῐ́", "", "Ker goddess of"]) + let v = native_list_append(v, ["Κῆρες", "noun", "Κῆρες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Ἐρινύς", "noun", "Ἐρῑνῠ́ες", "Ἐρινύος", "Ἐρῑνῠ́ῐ̈", "", "one of the"]) + let v = native_list_append(v, ["Εὐμενίς", "noun", "Εὐμενῐ́δες", "Εὐμενίδος", "Εὐμενῐ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Γαδάτας", "noun", "Γαδάτας", "Γαδάτᾱ", "Γαδάτᾳ", "", "Gadatas name of"]) + let v = native_list_append(v, ["Γαῖα", "noun", "Γαῖα", "Γαίᾱς", "Γαίᾳ", "", "Gaia or Gaea"]) + let v = native_list_append(v, ["Χθών", "noun", "Χθών", "Χθονός", "Χθονῐ́", "", "the Earth personified"]) + let v = native_list_append(v, ["Γάλβας", "noun", "Γάλβας", "Γάλβᾱ", "Γάλβᾳ", "", "Galba"]) + let v = native_list_append(v, ["Γαληψός", "noun", "Γαληψοί", "Γαληψοῦ", "Γαληψῷ", "", "Galepsus"]) + let v = native_list_append(v, ["Γανυμήδης", "noun", "Γανυμήδης", "Γᾰνῠμήδεος", "Γᾰνῠμήδεῐ̈", "", "a male given"]) + let v = native_list_append(v, ["Γαρούνας", "noun", "Γαρούνας", "Γαρούνᾱ", "Γαρούνᾳ", "", "the river Garonne"]) + let v = native_list_append(v, ["Γέλας", "noun", "Γέλας", "Γέλου", "Γέλᾳ", "", "the river Gela"]) + let v = native_list_append(v, ["Γέλα", "noun", "Γέλα", "Γέλᾱς", "Γέλᾳ", "", "Gela a city"]) + let v = native_list_append(v, ["Γέλων", "noun", "Γέλων", "Γέλωνος", "Γέλωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Γαλάτης", "noun", "Γᾰλᾰ́ται", "Γᾰλᾰ́του", "Γᾰλᾰ́τῃ", "", "Gaul native or"]) + let v = native_list_append(v, ["Γεραιστός", "noun", "Γεραιστός", "Γεραιστοῦ", "Γεραιστῷ", "", "Geraestus Euboea Greece"]) + let v = native_list_append(v, ["Γηρυόνης", "noun", "Γηρυόνης", "Γηρῠόνου", "Γηρῠόνῃ", "", "Geryon"]) + let v = native_list_append(v, ["Γηρυών", "noun", "Γηρῠόνες", "Γηρῠόνος", "Γηρῠόνῐ", "", "alternative form of"]) + let v = native_list_append(v, ["Γέτης", "noun", "Γέται", "Γέτου", "Γέτῃ", "", "one of the"]) + let v = native_list_append(v, ["Γίγας", "noun", "Γῐ́γᾰντες", "Γῐ́γᾰντος", "Γῐ́γᾰντῐ", "", "one of the"]) + let v = native_list_append(v, ["Γέσκων", "noun", "Γέσκων", "Γέσκωνος", "Γέσκωνῐ", "", "Gisco"]) + let v = native_list_append(v, ["Γλαυκίας", "noun", "Γλαυκίας", "Γλαυκῐ́ᾱ", "Γλαυκῐ́ᾳ", "", "Glaucia"]) + let v = native_list_append(v, ["Γλαύκων", "noun", "Γλαύκων", "Γλαύκωνος", "Γλαύκωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Γλαῦκος", "noun", "Γλαῦκος", "Γλαύκου", "Γλαύκῳ", "", "Glaucus"]) + let v = native_list_append(v, ["Γοβρύας", "noun", "Γοβρύας", "Γοβρύου", "Γοβρύᾳ", "", "a male given"]) + let v = native_list_append(v, ["Γόμφοι", "noun", "Γόμφων", "Γόμφων", "Γόμφῳ", "", "Gomphi Gomfoi Trikala"]) + let v = native_list_append(v, ["Γονατᾶς", "noun", "Γονατᾶς", "Γονατᾶ", "Γονατᾷ", "", "Antigonus II Gonatas"]) + let v = native_list_append(v, ["Γόννος", "noun", "Γόννος", "Γόννου", "Γόννῳ", "", "Gonnus Gonnoi Larissa"]) + let v = native_list_append(v, ["Γόρδιον", "noun", "Γόρδιον", "Γορδῐ́ου", "Γορδῐ́ῳ", "", "Gordium Gordion a"]) + let v = native_list_append(v, ["Γοργίας", "noun", "Γοργίας", "Γοργίου", "Γοργῐ́ᾳ", "", "Gorgias"]) + let v = native_list_append(v, ["Γοργώ", "noun", "Γοργοί", "Γοργοῦς", "Γοργοῖ", "", "gorgon"]) + let v = native_list_append(v, ["Γόρτυς", "noun", "Γόρτυς", "Γόρτῡνος", "Γόρτῡνῐ", "", "Gortyn a city"]) + let v = native_list_append(v, ["Γόρτυν", "noun", "Γόρτυν", "Γόρτῡνος", "Γόρτῡνῐ", "", "alternative form of"]) + let v = native_list_append(v, ["Γορτύνη", "noun", "Γορτύνη", "Γορτῡ́νης", "Γορτῡ́νῃ", "", "alternative form of"]) + let v = native_list_append(v, ["Γράγχος", "noun", "Γρᾰ́γχοι", "Γράγχου", "Γρᾰ́γχῳ", "", "Gracchus a member"]) + let v = native_list_append(v, ["Χάρις", "noun", "Χᾰ́ρῐτες", "Χᾰ́ρῐτος", "Χᾰ́ρῐτῐ", "", "one of the"]) + let v = native_list_append(v, ["Χάριτες", "noun", "Χάριτες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Γρανικός", "noun", "Γρανικός", "Γρᾱνῑκοῦ", "Γρᾱνῑκῷ", "", "Granicus Biga Çayı"]) + let v = native_list_append(v, ["Πανέλληνες", "noun", "Πᾰνέλληνες", "Πανελλήνων", "Πᾰνέλλησῐ", "", "all Greeks the"]) + let v = native_list_append(v, ["Γύγης", "noun", "Γύγης", "Γῡ́γου", "Γῡ́γῃ", "", "Gyges"]) + let v = native_list_append(v, ["Γύλιππος", "noun", "Γύλιππος", "Γῠλῐ́ππου", "Γῠλῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Γύρτων", "noun", "Γύρτων", "Γύρτωνος", "Γύρτωνῐ", "", "Gyrton a town"]) + let v = native_list_append(v, ["Γύθειον", "noun", "Γύθειον", "Γῠθείου", "Γῠθείῳ", "", "Gythium Gytheio Laconia"]) + let v = native_list_append(v, ["Γύθιον", "noun", "Γύθιον", "Γῠθίου", "Γυθῐ́ῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Αἵμων", "noun", "Αἵμων", "Αἵμονος", "Αἵμονῐ", "", "Haemon"]) + let v = native_list_append(v, ["Αἷμος", "noun", "Αἷμος", "Αἵμου", "Αἵμῳ", "", "Haemus"]) + let v = native_list_append(v, ["Ἅγνων", "noun", "Ἅγνων", "Ἅγνωνος", "Ἅγνωνῐ", "", "Hagnon"]) + let v = native_list_append(v, ["Ἁλίαρτος", "noun", "Ἁλίαρτος", "Ἁλιάρτου", "Ἁλιάρτῳ", "", "Haliartus a city"]) + let v = native_list_append(v, ["Ἁλικαρνασσός", "noun", "Ἁλικαρνασσός", "Ἁλῐκαρνασσοῦ", "Ἁλικαρνᾱσσῷ", "", "Halicarnassus Petronium Bodrum"]) + let v = native_list_append(v, ["Ἁλικαρνασσεύς", "noun", "Ἁλῐκαρνᾱσσῆς", "Ἁλῐκαρνασσέως", "Ἁλῐκαρνᾱσσεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἅλυς", "noun", "Ἅλυς", "Ἅλῠος", "Ᾰ̔́λῠῐ̈", "", "The river Halys"]) + let v = native_list_append(v, ["Ἀμίλκας", "noun", "Ἀμίλκας", "Ἀμίλκᾱ", "Ἀμίλκᾳ", "", "Hamilcar"]) + let v = native_list_append(v, ["Ἀννίβας", "noun", "Ἀννίβας", "Ἀννίβου", "Ἀννίβᾳ", "", "Hannibal"]) + let v = native_list_append(v, ["Ἄννων", "noun", "Ἄννων", "Ἄννωνος", "Ἄννωνῐ", "", "Hanno"]) + let v = native_list_append(v, ["Ἁρμόδιος", "noun", "Ἁρμόδιος", "Ἁρμοδίου", "Ἁρμοδίῳ", "", "Harmodius"]) + let v = native_list_append(v, ["Ἁρμονία", "noun", "Ἁρμονία", "Ἁρμονίᾱς", "Ἁρμονίᾳ", "", "Harmonia"]) + let v = native_list_append(v, ["Ἅρπαγος", "noun", "Ἅρπαγος", "Ᾰ̔ρπᾰ́γου", "Ᾰ̔ρπᾰ́γῳ", "", "Harpagus"]) + let v = native_list_append(v, ["ἅρπυια", "noun", "ἅρπυιαι", "ἁρπυίᾱς", "ἁρπυίᾳ", "", "a harpy"]) + let v = native_list_append(v, ["Ἁσδρούβας", "noun", "Ἁσδρούβας", "Ἀσδρούβᾱ", "Ἁσδρούβᾳ", "", "Hasdrubal"]) + let v = native_list_append(v, ["Ἥβη", "noun", "Ἥβη", "Ἥβης", "Ἥβῃ", "", "Hebe"]) + let v = native_list_append(v, ["Ἕβρος", "noun", "Ἕβρος", "Ἕβρου", "Ἕβρῳ", "", "the river Hebrus"]) + let v = native_list_append(v, ["Κάρ", "noun", "Κάρ", "Κᾱρός", "", "", "Car or Kar"]) + let v = native_list_append(v, ["Ἑκάτη", "noun", "Ἑκάτη", "Ἑκᾰ́της", "Ἑκᾰ́τῃ", "", "Hecate"]) + let v = native_list_append(v, ["Ἑκαταῖος", "noun", "Ἑκαταῖος", "Ἑκᾰταίου", "Ἑκᾰταίῳ", "", "Hecataeus"]) + let v = native_list_append(v, ["Ἕκτωρ", "noun", "Ἕκτωρ", "Ἕκτορος", "Ἕκτορῐ", "", "Hector"]) + let v = native_list_append(v, ["ἄφθα", "noun", "ᾰ̓́φθαι", "ἄφθης", "ᾰ̓́φθῃ", "", "aphtha mouth ulcer"]) + let v = native_list_append(v, ["Πλάτων", "noun", "Πλάτων", "Πλᾰ́τωνος", "Πλᾰ́τωνῐ", "", "Plato"]) + let v = native_list_append(v, ["Ἑκάβη", "noun", "Ἑκάβη", "Ἑκᾰ́βης", "Ἑκᾰ́βῃ", "", "Hecuba Hekabe"]) + let v = native_list_append(v, ["Ἡγησιπύλη", "noun", "Ἡγησιπύλη", "Ἡγησῐπῠ́λης", "Ἡγησῐπῠ́λῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἑλένη", "noun", "Ἑλένη", "Ἑλένης", "Ἑλένῃ", "", "Helen a goddess"]) + let v = native_list_append(v, ["Ἕλενος", "noun", "Ἕλενος", "Ἑλένου", "Ἑλένῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἑλικών", "noun", "Ἑλικών", "Ἑλῐκῶνος", "Ἑλῐκῶνῐ", "", "Mount Helicon Boeotia"]) + let v = native_list_append(v, ["Ἡλίου πόλις", "noun", "Ἡλίου πόλις", "Ἡλίου πόλεως", "", "", "Heliopolis"]) + let v = native_list_append(v, ["Ἑλλάνικος", "noun", "Ἑλλάνικος", "Ἑλλᾱνῑ́κου", "Ἑλλᾱνῑ́κῳ", "", "Hellanicus"]) + let v = native_list_append(v, ["Ἕλλη", "noun", "Ἕλλη", "Ἕλλης", "Ἕλλῃ", "", "Helle"]) + let v = native_list_append(v, ["Ἑλλήσποντος", "noun", "Ἑλλήσποντος", "Ἑλλησπόντου", "Ἑλλησπόντῳ", "", "the Hellespont later"]) + let v = native_list_append(v, ["Ἕλος", "noun", "Ἕλος", "Ἕλους", "Ἕλει", "", "Helos Elos Laconia"]) + let v = native_list_append(v, ["Εἵλως", "noun", "Εἵλωτες", "Εἵλωτος", "Εἵλωτῐ", "", "a helot"]) + let v = native_list_append(v, ["Εἱλώτης", "noun", "Εἱλῶται", "Εἱλώτου", "Εἱλώτῃ", "", "a Helot"]) + let v = native_list_append(v, ["Ἑλβήττιος", "noun", "Ἑλβήττιοι", "Ἑλβηττίου", "Ἑλβηττίῳ", "", "one of the"]) + let v = native_list_append(v, ["Ἑλβίδιος", "noun", "Ἑλβίδιος", "Ἑλβιδίου", "Ἑλβιδίῳ", "", "Helvidius"]) + let v = native_list_append(v, ["Ἡφαιστίων", "noun", "Ἡφαιστίων", "Ἡφαιστῐ́ωνος", "Ἡφαιστῐ́ωνῐ", "", "Hephaestion"]) + let v = native_list_append(v, ["Ἥφαιστος", "noun", "Ἥφαιστος", "Ἡφαίστου", "Ἡφαίστῳ", "", "Hephaestus"]) + let v = native_list_append(v, ["Ἥρα", "noun", "Ἥρα", "Ἥρᾱς", "Ἥρᾳ", "", "Hera"]) + let v = native_list_append(v, ["Ἡρακλῆς", "noun", "Ἡρακλῆς", "Ἡρακλέους", "Ἡρακλεῖ", "", "Heracles Hercules"]) + let v = native_list_append(v, ["Ἡράκλεια", "noun", "Ἡράκλεια", "Ἡρακλείᾱς", "Ἡρακλείᾳ", "", "Heraclea"]) + let v = native_list_append(v, ["Ἡρακλεώτης", "noun", "Ἡρακλεῶται", "Ἡρακλεώτου", "Ἡρακλεώτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἡρακλείδης", "noun", "Ἡρᾰκλεῖδαι", "Ἡρᾰκλείδου", "Ἡρᾰκλείδῃ", "", "one of the"]) + let v = native_list_append(v, ["Ἡράκλειτος", "noun", "Ἡράκλειτος", "Ἡρακλείτου", "Ἡρακλείτῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἡράκλανον", "noun", "Ἡράκλανον", "Ἡρακλᾱ́νου", "Ἡρακλᾱ́νῳ", "", "Herculaneum Ercolano Campania"]) + let v = native_list_append(v, ["Ἕρμιππος", "noun", "Ἕρμιππος", "Ἑρμίππου", "Ἑρμίππῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἑρμοκράτης", "noun", "Ἑρμοκράτης", "Ἑρμοκρᾰ́τους", "Ἑρμοκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Ὑάκινθος", "noun", "Ὑάκινθος", "Ῠ̔ᾰκίνθου", "Ῠ̔ᾰκίνθῳ", "", "Hyacinthus"]) + let v = native_list_append(v, ["Ὑακίνθη", "noun", "Ὑακίνθη", "Ῠ̔ᾰκίνθης", "Ῠ̔ᾰκίνθῃ", "", "Hyacinth as a"]) + let v = native_list_append(v, ["Ἕρμος", "noun", "Ἕρμος", "Ἕρμου", "Ἕρμῳ", "", "Hermus"]) + let v = native_list_append(v, ["Ἡρόδοτος", "noun", "Ἡρόδοτος", "Ἡροδότου", "Ἡροδότῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἡσίοδος", "noun", "Ἡσίοδος", "Ἡσῐόδου", "Ἡσῐόδῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἑσπερίς", "noun", "Ἑσπερῐ́δες", "Ἑσπερῐ́δος", "Ἑσπερῐ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Ἕσπερος", "noun", "Ἕσπερος", "Ἑσπέρου", "Ἑσπέρῳ", "", "Hesperus"]) + let v = native_list_append(v, ["Ἱάμψας", "noun", "Ἱάμψας", "Ἱάμψᾱ", "Ἱάμψᾳ", "", "Hiempsal"]) + let v = native_list_append(v, ["Ἱέρων", "noun", "Ἱέρων", "Ἱέρωνος", "Ἱέρωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἱερώνυμος", "noun", "Ἱερώνυμος", "Ῑ̔ερωνῠ́μου", "Ἱερωνύμῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἱεροφῶν", "noun", "Ἱεροφῶν", "Ῑ̔εροφῶντος", "Ῑ̔εροφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἱμέρα", "noun", "Ἱμέρα", "Ῑ̔μέρᾱς", "Ῑ̔μέρᾳ", "", "Himera Termini Imerese"]) + let v = native_list_append(v, ["Ἵππαρχος", "noun", "Ἵππαρχος", "Ῐ̔ππᾰ́ρχου", "Ῐ̔ππᾰ́ρχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἱππίας", "noun", "Ἱππίας", "Ῐ̔ππῐ́ου", "Ῐ̔ππῐ́ᾳ", "", "Hippias a common"]) + let v = native_list_append(v, ["Ἱπποκράτης", "noun", "Ἱπποκράτης", "Ῐ̔πποκρᾰ́τους", "Ῐ̔πποκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Ἱπποδάμεια", "noun", "Ἱπποδάμεια", "Ἱπποδᾰμείᾱς", "Ἱπποδᾰμείᾳ", "", "a female given"]) + let v = native_list_append(v, ["Ἱππόλυτος", "noun", "Ἱππόλυτος", "Ῐ̔ππολῠ́του", "Ῐ̔ππολῠ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἱππολύτη", "noun", "Ἱππολύτη", "Ῐ̔ππολῠ́της", "Ῐ̔ππολῠ́τῃ", "", "Hippolyte or Hippolyta"]) + let v = native_list_append(v, ["Ἱππομέδων", "noun", "Ἱππομέδων", "Ῐ̔ππομέδοντος", "Ῐ̔ππομέδοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἱστιαία", "noun", "Ἱστιαία", "Ἱστιαίᾱς", "Ἱστιαίᾳ", "", "Histiaea Istiaia Euboea"]) + let v = native_list_append(v, ["Ἱστιαῖος", "noun", "Ἱστιαῖος", "Ἱστιαίου", "Ἱστιαίῳ", "", "Histiaeus"]) + let v = native_list_append(v, ["Ὅμηρος", "noun", "Ὅμηρος", "Ὁμήρου", "Ὁμήρῳ", "", "Homer"]) + let v = native_list_append(v, ["Ὡράτιος", "noun", "Ὡρᾱ́τῐοι", "Ὡρᾱτῐ́ου", "Ὡρᾱτῐ́ῳ", "", "Horatius Horatio Horace"]) + let v = native_list_append(v, ["Ὁρτήσιος", "noun", "Ὁρτήσιος", "Ὁρτησῐ́ου", "Ὁρτησῐ́ῳ", "", "Hortensius"]) + let v = native_list_append(v, ["Ὥρα", "noun", "Ὧραι", "Ὥρᾱς", "Ὥρᾳ", "", "one of the"]) + let v = native_list_append(v, ["Ὧραι", "noun", "Ὧραι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Ὧρος", "noun", "Ὧρος", "Ὥρου", "Ὥρῳ", "", "Horus an Egyptian"]) + let v = native_list_append(v, ["Ὑάς", "noun", "Ῠ̔ᾰ́δες", "Ῡ̆̔ᾰ́δος", "Ῠ̔ᾰ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Ὑάδες", "noun", "Ὑάδες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Ὕβλα", "noun", "Ὕβλα", "Ὕβλᾱς", "Ὕβλᾳ", "", "A mother goddess"]) + let v = native_list_append(v, ["Ἰώ", "noun", "Ἰώ", "Ἰοῦς", "Ῑ̓οῖ", "", "Io"]) + let v = native_list_append(v, ["Ὕκκαρα", "noun", "Ὕκκᾰρᾰ", "Ὑκκᾰ́ρων", "Ὑκκᾰ́ροις", "", "Hyccara Carini Sicily"]) + let v = native_list_append(v, ["Ὑδάσπης", "noun", "Ὑδάσπης", "Ῠ̔δάσπου", "Ῠ̔δάσπῃ", "", "Hydaspes Jhelum a"]) + let v = native_list_append(v, ["Ὕλας", "noun", "Ὕλας", "Ῠ̔́λου", "Ῠ̔́λᾳ", "", "Hylas"]) + let v = native_list_append(v, ["Ὕλλος", "noun", "Ὕλλος", "Ὕλλου", "Ῠ̔́λλῳ", "", "Hyllus"]) + let v = native_list_append(v, ["Ὑμήν", "noun", "Ὑμήν", "Ῡ̔μένος", "Ῡ̔μένῐ", "", "Hymen or Hymenaios"]) + let v = native_list_append(v, ["Ὑμέναιος", "noun", "Ὑμέναιος", "Ῡ̔μεναίου", "Ῡ̔μεναίῳ", "", "Hymenaios"]) + let v = native_list_append(v, ["Ὑπέρβολος", "noun", "Ὑπέρβολος", "Ῠ̔περβόλου", "Ῠ̔περβόλῳ", "", "a male given"]) + let v = native_list_append(v, ["Ὑπερείδης", "noun", "Ὑπερείδης", "Ῠ̔περείδου", "Ῠ̔περείδῃ", "", "a male given"]) + let v = native_list_append(v, ["Ὑρκανία", "noun", "Ὑρκανία", "Ὑρκᾰνῐ́ᾱς", "Ὑρκᾰνῐ́ᾳ", "", "Hyrcania"]) + let v = native_list_append(v, ["Ὑσιαί", "noun", "Ὑσιῶν", "Ὑσιῶν", "Ὑσιαῖς", "", "Hysiae"]) + let v = native_list_append(v, ["Ὑστάσπης", "noun", "Ὑστάσπης", "Ὑστάσπου", "Ὑστάσπῃ", "", "a male given"]) + let v = native_list_append(v, ["Ἰαλυσός", "noun", "Ἰαλυσός", "Ἰᾱλῡσοῦ", "Ἰᾱλῡσῷ", "", "Ialysos a town"]) + let v = native_list_append(v, ["Ἰαπετός", "noun", "Ἰαπετός", "Ῑ̓ᾰπετοῦ", "Ῑ̓ᾰπετῷ", "", "Iapetus"]) + let v = native_list_append(v, ["Ἰαπυγία", "noun", "Ἰαπυγία", "Ἰ̆ᾱπῠγῐ́ᾱς", "Ῐ̓ᾱπῠγῐ́ᾳ", "", "Iapygia Salento Italy"]) + let v = native_list_append(v, ["Ἰᾶπυξ", "noun", "Ῐ̓ᾱ́πῠγες", "Ἰ̆ᾱ́πῠγος", "Ῐ̓ᾱ́πῠγῐ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἴασος", "noun", "Ἴασος", "Ἰάσου", "Ἰᾰ́σῳ", "", "Iasos a city"]) + let v = native_list_append(v, ["Ἴβυκος", "noun", "Ἴβυκος", "Ῐ̓βῠ́κου", "Ῐ̓βῠ́κῳ", "", "Ibycus"]) + let v = native_list_append(v, ["Ἴκαρος", "noun", "Ἴκαρος", "Ῑ̓κᾰ́ρου", "Ῑ̓κᾰ́ρῳ", "", "Icarus"]) + let v = native_list_append(v, ["Ἰκάριος", "noun", "Ἰκάριος", "Ῑ̓κᾰρῐ́ου", "Ῑ̓κᾰρῐ́ῳ", "", "Icarius"]) + let v = native_list_append(v, ["Ἰκόνιον", "noun", "Ἰκόνιον", "Ἰ̄κονῐ́ου", "Ῑ̓κονῐ́ῳ", "", "Konya a city"]) + let v = native_list_append(v, ["Ἴδη", "noun", "Ἴδη", "Ῑ̓́δης", "Ῑ̓́δῃ", "", "Mount Ida"]) + let v = native_list_append(v, ["Ἴδας", "noun", "Ἴδας", "Ῑ̓́δᾱ", "Ῑ̓́δᾳ", "", "Idas"]) + let v = native_list_append(v, ["Ἰδομένη", "noun", "Ἰδομένη", "Ἰδομένης", "Ῑ̓δομένῃ", "", "Idomene a city"]) + let v = native_list_append(v, ["Ἰδομενεύς", "noun", "Ἰδομενεύς", "Ῑ̓δομενέως", "Ῑ̓δομενεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ἰλισός", "noun", "Ἰλισός", "Ῑ̓λῑσοῦ", "Ῑ̓λῑσῷ", "", "the river Ilissos"]) + let v = native_list_append(v, ["Ἰλισσός", "noun", "Ἰλισσός", "Ῑ̓λῐσσοῦ", "Ῑ̓λῐσσῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἴλιον", "noun", "Ἴλιον", "Ῑ̓λῐ́ου", "Ῑ̓λῐ́ῳ", "", "Ilium Troy"]) + let v = native_list_append(v, ["Ἰλιάς", "noun", "Ἰλιάς", "Ῑ̓λῐᾰ́δος", "Ῑ̓λῐᾰ́δῐ", "", "the Iliad an"]) + let v = native_list_append(v, ["Ἴμβρος", "noun", "Ἴμβρος", "Ἴμβρου", "Ῐ̓́μβρῳ", "", "Imbros İmroz Gökçeada"]) + let v = native_list_append(v, ["Ἴναχος", "noun", "Ἴναχος", "Ῑ̓νᾰ́χου", "Ῑ̓νᾰ́χῳ", "", "Inachus"]) + let v = native_list_append(v, ["Ἰνάρως", "noun", "Ἰνάρως", "Ἰνάρω", "Ἰνάρῳ", "", "Inaros"]) + let v = native_list_append(v, ["Ἰνδική", "noun", "Ἰνδική", "Ἰνδῐκῆς", "Ἰνδῐκῇ", "", "India"]) + let v = native_list_append(v, ["Ἐρυθρά", "noun", "Ἐρυθρά", "Ἐρῠθρᾶς", "Ἐρῠθρᾷ", "", "Red Sea"]) + let v = native_list_append(v, ["Ἰνώ", "noun", "Ῑ̓νοί", "Ῑ̓νοῦς", "Ῑ̓νοῖ", "", "Ino"]) + let v = native_list_append(v, ["Ἰόλαος", "noun", "Ἰόλαος", "Ῐ̓ολᾱ́ου", "Ῐ̓ολᾱ́ῳ", "", "Iolaus"]) + let v = native_list_append(v, ["Ἰωλκός", "noun", "Ἰωλκός", "Ἰωλκοῦ", "Ἰωλκῷ", "", "Iolcos"]) + let v = native_list_append(v, ["Ἰόλη", "noun", "Ἰόλη", "Ῐ̓όλης", "Ῐ̓όλῃ", "", "Iole"]) + let v = native_list_append(v, ["Ἴων", "noun", "Ἴων", "Ἴωνος", "", "", "Ion the mythological"]) + let v = native_list_append(v, ["Ἰάων", "noun", "Ῐ̓ᾱ́ονες", "Ῐ̓ᾱ́ονος", "Ῐ̓ᾱ́ονῐ", "", "an Ionian"]) + let v = native_list_append(v, ["Ἰόνιος", "noun", "Ἰόνιος", "Ῑ̓ονῐ́ου", "Ῑ̓ονῐ́ῳ", "", "the Ionian Gulf"]) + let v = native_list_append(v, ["Ἰοφῶν", "noun", "Ἰοφῶν", "Ἰοφῶντος", "Ἰοφῶντῐ", "", "Iophon"]) + let v = native_list_append(v, ["Ἴφικλος", "noun", "Ἴφικλος", "Ῑ̓φῐ́κλου", "Ῑ̓φῐ́κλῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἰφικράτης", "noun", "Ἰφικράτης", "Ῑ̓φῐκρᾰ́τους", "Ῑ̓φῐκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Ἰφιγένεια", "noun", "Ἰφιγένεια", "Ῑ̓φῐγενείᾱς", "Ῑ̓φῐγενείᾳ", "", "strong-born mighty an"]) + let v = native_list_append(v, ["Ἶφις", "noun", "Ῑ̓́φῐδες", "Ῑ̓́φῐδος", "Ῑ̓́φῐδῐ", "", "Iphis"]) + let v = native_list_append(v, ["Ἴφιτος", "noun", "Ἴφιτος", "Ῑ̓φῐ́του", "Ῑ̓φῐ́τῳ", "", "Iphitus"]) + let v = native_list_append(v, ["Ἰέρνη", "noun", "Ἰέρνη", "Ῑ̓έρνης", "Ῑ̓έρνῃ", "", "Ireland a large"]) + let v = native_list_append(v, ["Ἰουερνία", "noun", "Ἰουερνία", "Ῑ̓ουερνῐ́ᾱς", "Ῑ̓ουερνῐ́ᾳ", "", "Ireland"]) + let v = native_list_append(v, ["Ἶρις", "noun", "Ἶρις", "Ῑ̓́ρῐδος", "Ῑ̓́ρῐδῐ", "", "Iris"]) + let v = native_list_append(v, ["Ἰσαῖος", "noun", "Ἰσαῖος", "Ἰσαίου", "Ἰσαίῳ", "", "Isaeus"]) + let v = native_list_append(v, ["Ἶσις", "noun", "Ἶσις", "Ῑ̓́σῐδος", "Ῑ̓́σῐδῐ", "", "Isis"]) + let v = native_list_append(v, ["Ἰσμήνη", "noun", "Ἰσμήνη", "Ἰσμήνης", "Ἰσμήνῃ", "", "Ismene"]) + let v = native_list_append(v, ["Ἑλίκη", "noun", "Ἑλίκη", "Ἑλίκης", "Ἑλίκῃ", "", "Helike a nymph"]) + let v = native_list_append(v, ["Ἰσμηνίας", "noun", "Ἰσμηνίας", "Ἰσμηνῐ́ου", "Ἰσμηνῐ́ᾳ", "", "Ismenias"]) + let v = native_list_append(v, ["Ἰσμηνός", "noun", "Ἰσμηνός", "Ἰσμηνοῦ", "Ἰσμηνῷ", "", "the river Ismenus"]) + let v = native_list_append(v, ["Ἰσοκράτης", "noun", "Ἰσοκράτης", "Ἰσοκρᾰ́τους", "Ἰσοκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Ἰσθμός", "noun", "Ἰσθμός", "Ῐ̓σθμοῦ", "Ῐ̓σθμῷ", "", "Isthmus of Corinth"]) + let v = native_list_append(v, ["Ἰστώνη", "noun", "Ἰστώνη", "Ἰστώνης", "Ἰστώνῃ", "", "Mount Istone"]) + let v = native_list_append(v, ["Ἰστρία", "noun", "Ἰστρία", "Ἰστρῐ́ᾱς", "Ἰστρῐ́ᾳ", "", "Istria"]) + let v = native_list_append(v, ["Ἰθάκη", "noun", "Ἰθάκη", "Ῐ̓θᾰ́κης", "Ῐ̓θᾰ́κῃ", "", "Ithaca"]) + let v = native_list_append(v, ["Ἴθακος", "noun", "Ῐ̓́θᾰκοι", "Ῐ̓θᾰ́κου", "Ῐ̓θᾰ́κῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἰθώμη", "noun", "Ἰθώμη", "Ἰθώμης", "Ἰθώμῃ", "", "Ithome"]) + let v = native_list_append(v, ["Ἰθωμήτης", "noun", "Ῐ̓θωμῆται", "Ῐ̓θωμήτου", "Ῐ̓θωμήτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἴτυς", "noun", "Ἴτυς", "Ῐ̓́τῠος", "Ῐ̓́τῠῐ̈", "", "Itys"]) + let v = native_list_append(v, ["Ἰξίων", "noun", "Ἰξίων", "Ἰξῑ́ονος", "Ἰξῑ́ονῐ", "", "Ixion"]) + let v = native_list_append(v, ["Ἰανοῦκλον", "noun", "Ἰανοῦκλον", "Ἰᾱνούκλου", "Ἰᾱνούκλῳ", "", "Janiculum"]) + let v = native_list_append(v, ["Ἰανός", "noun", "Ἰανός", "Ἰᾱνοῦ", "Ἰᾱνῷ", "", "Janus"]) + let v = native_list_append(v, ["Ἰάσων", "noun", "Ἰάσων", "Ἰᾱ́σονος", "Ἰᾱ́σονῐ", "", "a male given"]) + let v = native_list_append(v, ["Ἰοκάστη", "noun", "Ἰοκάστη", "Ἰοκάστης", "Ἰοκάστῃ", "", "Jocasta"]) + let v = native_list_append(v, ["Ἰόβας", "noun", "Ἰόβας", "Ἰόβᾱ", "Ἰόβᾳ", "", "Juba"]) + let v = native_list_append(v, ["Ἰουγούρθας", "noun", "Ἰουγούρθας", "Ἰουγούρθᾱ", "Ἰουγούρθᾳ", "", "Jugurtha"]) + let v = native_list_append(v, ["Ἰούλιος", "noun", "Ῐ̓ούλῐοι", "Ῐ̓ουλῐ́ου", "Ῐ̓ουλῐ́ῳ", "", "Julius a Latin"]) + let v = native_list_append(v, ["Ἰουλία", "noun", "Ῐ̓ουλῐ́αι", "Ῐ̓ουλῐ́ᾱς", "Ῐ̓ουλῐ́ᾳ", "", "Julia a Latin"]) + let v = native_list_append(v, ["Ἰούνιος", "noun", "Ῐ̓ούνῐοι", "Ῐ̓ουνῐ́ου", "Ῐ̓ουνῐ́ῳ", "", "a member of"]) + let v = native_list_append(v, ["Ἰουνία", "noun", "Ῐ̓ουνῐ́αι", "Ῐ̓ουνῐ́ᾱς", "Ῐ̓ουνῐ́ᾳ", "", "a female member"]) + let v = native_list_append(v, ["Δίκη", "noun", "Δῐ́και", "Δίκης", "Δῐ́κῃ", "", "Dike"]) + let v = native_list_append(v, ["Λάβδακος", "noun", "Λάβδᾰκοι", "Λαβδᾰ́κου", "Λαβδᾰ́κῳ", "", "Labdacus"]) + let v = native_list_append(v, ["Λαβδακίδης", "noun", "Λαβδᾰκῐ́δαι", "Λαβδᾰκῐ́δου", "Λαβδᾰκῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Λάβδαλον", "noun", "Λάβδαλον", "Λαβδάλου", "Λᾰβδᾰ́λῳ", "", "Labdalum an ancient"]) + let v = native_list_append(v, ["Λακεδαίμων", "noun", "Λακεδαίμων", "Λᾰκεδαίμονος", "Λᾰκεδαίμονῐ", "", "Lacedaemon"]) + let v = native_list_append(v, ["Λακεδαιμόνιος", "noun", "Λᾰκεδαιμόνῐοι", "Λᾰκεδαιμονῐ́ου", "Λᾰκεδαιμονῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Λάκαινα", "noun", "Λᾰ́καιναι", "Λᾰκαίνης", "Λᾰκαίνῃ", "", "a female Laconian"]) + let v = native_list_append(v, ["Λακωνική", "noun", "Λακωνική", "Λᾰκωνῐκῆς", "Λᾰκωνῐκῇ", "", "Laconia"]) + let v = native_list_append(v, ["Λάδη", "noun", "Λάδη", "Λάδης", "Λάδῃ", "", "Lade former island"]) + let v = native_list_append(v, ["Λαίλιος", "noun", "Λαίλιος", "Λαιλῐ́ου", "Λαιλῐ́ῳ", "", "Laelius"]) + let v = native_list_append(v, ["Λαέρτης", "noun", "Λαέρτης", "Λᾱέρτου", "Λᾱέρτῃ", "", "a male given"]) + let v = native_list_append(v, ["Λαιστρύγων", "noun", "Λαιστρῡ́γονες", "Λαιστρῡ́γονος", "Λαιστρῡ́γονῐ", "", "a Laestrygonian"]) + let v = native_list_append(v, ["Λαίβινος", "noun", "Λαίβινος", "Λαιβῑ́νου", "Λαιβῑ́νῳ", "", "Laevinus"]) + let v = native_list_append(v, ["διαθήκη", "noun", "δῐᾰθῆκαι", "δῐᾰθήκης", "δῐᾰθήκῃ", "", "testament will legal"]) + let v = native_list_append(v, ["κόσμημα", "noun", "κοσμήμᾰτᾰ", "κοσμήμᾰτος", "κοσμήμᾰτῐ", "", "an ornament decoration"]) + let v = native_list_append(v, ["Λαΐς", "noun", "Λαΐς", "Λᾱῐ̈́δος", "Λᾱῐ̈́δῐ", "", "a female given"]) + let v = native_list_append(v, ["Λάϊος", "noun", "Λάϊος", "Λᾱῐ̈́ου", "Λᾱῐ̈́ῳ", "", "Laius"]) + let v = native_list_append(v, ["Λάμαχος", "noun", "Λάμαχος", "Λᾱμᾰ́χου", "Λᾱμᾰ́χῳ", "", "Lamachus"]) + let v = native_list_append(v, ["Λαμία", "noun", "Λαμία", "Λᾰμῐ́ᾱς", "Λᾰμῐ́ᾳ", "", "Lamia"]) + let v = native_list_append(v, ["Λάμψακος", "noun", "Λάμψακος", "Λαμψᾰ́κου", "Λαμψᾰ́κῳ", "", "Lampsacum Lapseki Turkey"]) + let v = native_list_append(v, ["Λαμψακηνός", "noun", "Λαμψᾰκηνοί", "Λαμψᾰκηνοῦ", "Λαμψᾰκηνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Λαομέδων", "noun", "Λαομέδων", "Λᾱομέδοντος", "Λᾱομέδοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Λαπίθης", "noun", "Λᾰπῐ́θαι", "Λᾰπῐ́θου", "Λᾰπῐ́θῃ", "", "one of the"]) + let v = native_list_append(v, ["Λάρισσα", "noun", "Λάρισσα", "Λᾱρίσσης", "Λᾱρίσσῃ", "", "alternative form of"]) + let v = native_list_append(v, ["Λάρισα", "noun", "Λάρισα", "Λᾱρῑ́σης", "Λᾱρῑ́σῃ", "", "Larissa Thessaly Greece"]) + let v = native_list_append(v, ["Λατῖνος", "noun", "Λατῖνος", "Λᾰτῑ́νου", "Λᾰτῑ́νῳ", "", "Latinus a figure"]) + let v = native_list_append(v, ["Λάτιον", "noun", "Λάτιον", "Λᾰτῐ́ου", "Λᾰτῐ́ῳ", "", "Latium a historical"]) + let v = native_list_append(v, ["Λαύρειον", "noun", "Λαύρειον", "Λαυρείου", "Λαυρείῳ", "", "Laurium Lavrio Attica"]) + let v = native_list_append(v, ["Λαύριον", "noun", "Λαύριον", "Λαυρῐ́ου", "Λαυρῐ́ῳ", "", "Laurium Lavrio Attica"]) + let v = native_list_append(v, ["Λαβίνιον", "noun", "Λαβίνιον", "Λᾱβῑνῐ́ου", "Λᾱβῑνῐ́ῳ", "", "Lavinium"]) + let v = native_list_append(v, ["Λεβάδεια", "noun", "Λεβάδεια", "Λεβαδείᾱς", "Λεβαδείᾳ", "", "Lebadea Livadeia Boeotia"]) + let v = native_list_append(v, ["Λίβανος", "noun", "Λίβανος", "Λιβᾰ́νου", "Λιβᾰ́νῳ", "", "Lebanon Mount Lebanon"]) + let v = native_list_append(v, ["Λέβεδος", "noun", "Λέβεδος", "Λεβέδου", "Λεβέδῳ", "", "Lebedus"]) + let v = native_list_append(v, ["Λέχαιον", "noun", "Λέχαιον", "Λεχαίου", "Λεχαίῳ", "", "Lechaeum Lechaio Corinthia"]) + let v = native_list_append(v, ["Λήδα", "noun", "Λήδα", "Λήδᾱς", "Λήδᾳ", "", "Leda"]) + let v = native_list_append(v, ["Λῆμνος", "noun", "Λῆμνος", "Λήμνου", "Λήμνῳ", "", "Lemnos"]) + let v = native_list_append(v, ["Λέντλος", "noun", "Λέντλοι", "Λέντλου", "Λέντλῳ", "", "Lentulus a member"]) + let v = native_list_append(v, ["Λέων", "noun", "Λέων", "Λέοντος", "Λέοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Λεωνίδας", "noun", "Λεωνίδας", "Λεωνῐ́δᾱ", "Λεωνῐ́δᾳ", "", "a male given"]) + let v = native_list_append(v, ["Λεοντῖνοι", "noun", "Λεοντῑ́νων", "Λεοντῑ́νων", "Λεοντῑ́νοις", "", "Leontini an ancient"]) + let v = native_list_append(v, ["Λεοντῖνος", "noun", "Λεοντῖνοι", "Λεοντῑ́νου", "Λεοντῑ́νῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Λεωτυχίδης", "noun", "Λεωτυχίδης", "Λεωτῠχῐ́δου", "Λεωτῠχῐ́δῃ", "", "a male given"]) + let v = native_list_append(v, ["Λέπρεον", "noun", "Λέπρεον", "Λεπρέου", "Λεπρέῳ", "", "Lepreum"]) + let v = native_list_append(v, ["Λεπρεάτης", "noun", "Λεπρεᾶται", "Λεπρεᾱ́του", "Λεπρεᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Λέρνη", "noun", "Λέρνη", "Λέρνης", "Λέρνῃ", "", "Lerna"]) + let v = native_list_append(v, ["Λήθη", "noun", "Λήθη", "Λήθης", "Λήθῃ", "", "the river Lethe"]) + let v = native_list_append(v, ["Λητώ", "noun", "Λητώ", "Λητοῦς", "Λητοῖ", "", "Leto"]) + let v = native_list_append(v, ["Λευκάς", "noun", "Λευκάς", "Λευκᾰ́δος", "Λευκᾰ́δῐ", "", "Leucas Lefkada Ionian"]) + let v = native_list_append(v, ["Λευκοθέα", "noun", "Λευκοθέα", "Λευκοθέᾱς", "Λευκοθέᾳ", "", "Leucothea"]) + let v = native_list_append(v, ["Λεῦκτρα", "noun", "Λεῦκτρᾰ", "Λεύκτρων", "Λεύκτροις", "", "Leuctra Lefktra Boeotia"]) + let v = native_list_append(v, ["στρατός", "noun", "στρᾰτοί", "στρᾰτοῦ", "στρᾰτῷ", "", "army military force"]) + let v = native_list_append(v, ["στρατιά", "noun", "στρᾰτῐαί", "στρᾰτῐᾶς", "στρᾰτῐᾷ", "", "army"]) + let v = native_list_append(v, ["στράτευμα", "noun", "στρᾰτεύμᾰτᾰ", "στρᾰτεύμᾰτος", "στρᾰτεύμᾰτῐ", "", "army host"]) + let v = native_list_append(v, ["νίκης", "noun", "νίκης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Διόσκουροι", "noun", "Διόσκουροι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["παλάμη", "noun", "πᾰλᾰ́μαι", "πᾰλᾰ́μης", "πᾰλᾰ́μῃ", "", "palm hand"]) + let v = native_list_append(v, ["πελαργός", "noun", "πελᾱργοί", "πελᾱργοῦ", "πελᾱργῷ", "", "stork"]) + let v = native_list_append(v, ["δουλεία", "noun", "δουλεῖαι", "δουλείᾱς", "δουλείᾳ", "", "slavery bondage"]) + let v = native_list_append(v, ["Σεβαστιανός", "noun", "Σεβαστιανός", "Σεβᾰστῐᾱνοῦ", "Σεβᾰστῐᾱνῷ", "", "Sebastian"]) + let v = native_list_append(v, ["ἀνάστασις", "noun", "ᾰ̓νᾰστᾰ́σεις", "ᾰ̓νᾰστᾰ́σεως", "ᾰ̓νᾰστᾰ́σει", "", "standing up"]) + let v = native_list_append(v, ["Ἀναστάσιος", "noun", "Ἀναστάσιος", "Ᾰ̓νᾰστᾰσῐ́ου", "Ᾰ̓νᾰστᾰσῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀναστασία", "noun", "Ἀναστασία", "Ᾰ̓νᾰστᾰσῐ́ᾱς", "Ᾰ̓νᾰστᾰσῐ́ᾳ", "", "a female given"]) + let v = native_list_append(v, ["Λιβυρνός", "noun", "Λῐβυρνοί", "Λῐβυρνοῦ", "Λῐβυρνῷ", "", "one of the"]) + let v = native_list_append(v, ["Λίβυς", "noun", "Λῐ́βῠες", "Λῐ́βῠος", "Λῐ́βῠῐ̈", "", "a Berber"]) + let v = native_list_append(v, ["Λίχας", "noun", "Λίχας", "Λῐ́χου", "Λῐ́χᾳ", "", "Lichas"]) + let v = native_list_append(v, ["Λικίννιος", "noun", "Λικίννῐοι", "Λικιννῐ́ου", "Λικιννῐ́ῳ", "", "Licinius a member"]) + let v = native_list_append(v, ["Λικιννία", "noun", "Λικιννῐ́αι", "Λικιννῐ́ᾱς", "Λικιννῐ́ᾳ", "", "Licinia a female"]) + let v = native_list_append(v, ["Λίγυς", "noun", "Λῐ́γῠες", "Λῐ́γῠος", "Λῐ́γῠῐ̈", "", "one of the"]) + let v = native_list_append(v, ["Λιγυστική", "noun", "Λιγυστική", "Λῐγῠστῐκῆς", "Λῐγῠστῐκῇ", "", "Liguria"]) + let v = native_list_append(v, ["Λιλύβαιον", "noun", "Λιλύβαιον", "Λιλυβαίου", "Λιλυβαίῳ", "", "Lilybaeum Marsala Sicily"]) + let v = native_list_append(v, ["Λίνδον", "noun", "Λίνδον", "Λίνδου", "Λῐ́νδῳ", "", "Lindum Colonia Lincoln"]) + let v = native_list_append(v, ["Λίνδος", "noun", "Λίνδος", "Λίνδου", "Λῐ́νδῳ", "", "Lindos Rhodes Dodecanese"]) + let v = native_list_append(v, ["Λιπάρα", "noun", "Λιπάρα", "Λῐπᾰ́ρᾱς", "Λῐπᾰ́ρᾳ", "", "Lipari Aeolian Islands"]) + let v = native_list_append(v, ["Λείγηρ", "noun", "Λείγηρ", "Λείγηρος", "Λείγηρῐ", "", "the river Loire"]) + let v = native_list_append(v, ["Λίβιος", "noun", "Λίβιος", "Λῑβῐ́ου", "Λῑβῐ́ῳ", "", "Livy"]) + let v = native_list_append(v, ["Λιβία", "noun", "Λιβία", "Λῑβῐ́ᾱς", "Λῑβῐ́ᾳ", "", "Livia"]) + let v = native_list_append(v, ["Λοκρός", "noun", "Λοκροί", "Λοκροῦ", "Λοκρῷ", "", "a Locrian"]) + let v = native_list_append(v, ["Λοκρίς", "noun", "Λοκρίς", "Λοκρῐ́δος", "Λοκρῐ́δῐ", "", "Locris an ancient"]) + let v = native_list_append(v, ["Λονδίνη", "noun", "Λονδίνη", "Λονδῑ́νης", "Λονδῑ́νῃ", "", "Londinium London"]) + let v = native_list_append(v, ["Λωτοφάγος", "noun", "Λωτοφᾰ́γοι", "Λωτοφᾰ́γου", "Λωτοφᾰ́γῳ", "", "one of the"]) + let v = native_list_append(v, ["Λευκανός", "noun", "Λευκᾱνοί", "Λευκᾱνοῦ", "Λευκᾱνῷ", "", "one of the"]) + let v = native_list_append(v, ["Λευκανία", "noun", "Λευκανία", "Λευκᾱνῐ́ᾱς", "Λευκᾱνῐ́ᾳ", "", "Lucania"]) + let v = native_list_append(v, ["Λούκη", "noun", "Λούκη", "Λούκης", "Λούκῃ", "", "Luca Lucca Tuscany"]) + let v = native_list_append(v, ["Λουκίλλιος", "noun", "Λουκίλλῐοι", "Λουκιλλῐ́ου", "Λουκιλλῐ́ῳ", "", "Lucilius a member"]) + let v = native_list_append(v, ["Λεύκιος", "noun", "Λεύκιος", "Λευκῐ́ου", "Λευκῐ́ῳ", "", "Lucius"]) + let v = native_list_append(v, ["Λευκία", "noun", "Λευκία", "Λευκῐ́ᾱς", "Λευκῐ́ᾳ", "", "Lucia"]) + let v = native_list_append(v, ["Λουκρητία", "noun", "Λουκρητία", "Λουκρητῐ́ᾱς", "Λουκρητῐ́ᾳ", "", "Lucretia"]) + let v = native_list_append(v, ["Λουκρήτιος", "noun", "Λουκρήτιος", "Λουκρητῐ́ου", "Λουκρητῐ́ῳ", "", "Lucretius"]) + let v = native_list_append(v, ["Λεύκουλλος", "noun", "Λεύκουλλος", "Λευκούλλου", "Λευκούλλῳ", "", "Lucullus"]) + let v = native_list_append(v, ["Λουτάτιος", "noun", "Λουτᾱ́τῐοι", "Λουτᾱτῐ́ου", "Λουτᾱτῐ́ῳ", "", "Lutatius a member"]) + let v = native_list_append(v, ["Λυκαβηττός", "noun", "Λυκαβηττός", "Λυκαβηττοῦ", "Λυκαβηττῷ", "", "a hill in"]) + let v = native_list_append(v, ["Λυκάων", "noun", "Λυκάων", "Λῠκᾱ́ονος", "Λῠκᾱ́ονῐ", "", "Lycaon"]) + let v = native_list_append(v, ["Λυκίδας", "noun", "Λυκίδας", "Λῠκῐ́δου", "Λῠκῐ́δᾳ", "", "Lycidas"]) + let v = native_list_append(v, ["Λυκομήδης", "noun", "Λυκομήδης", "Λῠκομήδους", "Λῠκομήδει", "", "a male given"]) + let v = native_list_append(v, ["Λυκόφρων", "noun", "Λυκόφρων", "Λῠκόφρονος", "Λῠκόφρονῐ", "", "a male given"]) + let v = native_list_append(v, ["Λυκοῦργος", "noun", "Λυκοῦργος", "Λῠκούργου", "Λῠκούργῳ", "", "a male given"]) + let v = native_list_append(v, ["Λύκος", "noun", "Λύκος", "Λῠ́κου", "Λῠ́κῳ", "", "a male given"]) + let v = native_list_append(v, ["Λυδός", "noun", "Λυδός", "Λῡδοῦ", "", "", "Lydus legendary first"]) + let v = native_list_append(v, ["Λύγδαμις", "noun", "Λύγδαμις", "Λυγδάμεως", "Λυγδάμει", "", "A king of"]) + let v = native_list_append(v, ["Λύγκος", "noun", "Λύγκος", "Λύγκου", "Λῠ́γκῳ", "", "Lyncus"]) + let v = native_list_append(v, ["Λύσανδρος", "noun", "Λύσανδρος", "Λῠσᾰ́νδρου", "Λῠσᾰ́νδρῳ", "", "a male given"]) + let v = native_list_append(v, ["Λυσικλῆς", "noun", "Λυσικλῆς", "Λῡσῐκλέους", "Λῡσῐκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Λυσίμαχος", "noun", "Λυσίμαχος", "Λῡσῐμᾰ́χου", "Λῡσῐμᾰ́χῳ", "", "a male given"]) + let v = native_list_append(v, ["Λύσιππος", "noun", "Λύσιππος", "Λῡσῐ́ππου", "Λῡσῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Λύσις", "noun", "Λύσις", "Λῠ́σῐδος", "Λῠ́σῐδῐ", "", "Lysis"]) + let v = native_list_append(v, ["Λυσίστρατος", "noun", "Λυσίστρατος", "Λῡσῐστρᾰ́του", "Λῡσῐστρᾰ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Λυσιστράτη", "noun", "Λυσιστράτη", "Λῡσῐστρᾰ́της", "Λῡσῐστρᾰ́τῃ", "", "a female given"]) + let v = native_list_append(v, ["Μακαρία", "noun", "Μακαρία", "Μᾰκᾰρῐ́ᾱς", "Μᾰκᾰρῐ́ᾳ", "", "Macaria"]) + let v = native_list_append(v, ["Μακεδών", "noun", "Μᾰκεδόνες", "Μᾰκεδόνος", "Μᾰκεδόνῐ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μαχάων", "noun", "Μαχάων", "Μᾰχᾱ́ονος", "Μᾰχᾱ́ονῐ", "", "Machaon"]) + let v = native_list_append(v, ["Μάκρων", "noun", "Μάκρωνες", "Μάκρωνος", "Μάκρωνῐ", "", "one of the"]) + let v = native_list_append(v, ["Μαίανδρος", "noun", "Μαίανδρος", "Μαιάνδρου", "Μαιάνδρῳ", "", "the river Maeander"]) + let v = native_list_append(v, ["Μαικήνας", "noun", "Μαικήνας", "Μαικήνᾱ", "Μαικήνᾳ", "", "Maecenas"]) + let v = native_list_append(v, ["ὄνειρος", "noun", "ὄνειροι", "ὀνείρου", "ὀνείρῳ", "", "dream"]) + let v = native_list_append(v, ["Μαίναλον", "noun", "Μαίναλον", "Μαινάλου", "Μαινᾰ́λῳ", "", "Maenalus Mainalo"]) + let v = native_list_append(v, ["Μαίων", "noun", "Μαίονες", "Μαίονος", "Μαίονῐ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μαίονες", "noun", "Μαίονες", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["Μαιονία", "noun", "Μαιονία", "Μαιονῐ́ᾱς", "Μαιονῐ́ᾳ", "", "Maeonia Lydia"]) + let v = native_list_append(v, ["Μάγνης", "noun", "Μάγνητες", "Μάγνητος", "Μάγνητῐ", "", "one of the"]) + let v = native_list_append(v, ["Μάγνητες", "noun", "Μάγνητες", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["Μαγνησία", "noun", "Μαγνησία", "Μᾰγνησῐ́ᾱς", "Μᾰγνησῐ́ᾳ", "", "Magnesia Thessaly Greece"]) + let v = native_list_append(v, ["Μάγων", "noun", "Μάγων", "Μάγωνος", "Μᾰ́γωνῐ", "", "Mago"]) + let v = native_list_append(v, ["Μαῖα", "noun", "Μαῖα", "Μαίᾱς", "Μαίᾳ", "", "Maia daughter of"]) + let v = native_list_append(v, ["Μαιάς", "noun", "Μαιάς", "Μαιᾰ́δος", "Μαιᾰ́δῐ", "", "alternative form of"]) + let v = native_list_append(v, ["Μαλέα", "noun", "Μαλέα", "Μᾰλέᾱς", "Μᾰλέᾳ", "", "Cape Malea Greece"]) + let v = native_list_append(v, ["Μηλίς", "noun", "Μηλίς", "Μηλῐ́δος", "Μηλῐ́δῐ", "", "Malis"]) + let v = native_list_append(v, ["Μηλιεύς", "noun", "Μηλῐῆς", "Μηλῐῶς", "Μηλῐεῖ", "", "a Malian"]) + let v = native_list_append(v, ["Μανδάνη", "noun", "Μανδάνη", "Μανδάνης", "Μανδάνῃ", "", "Mandane"]) + let v = native_list_append(v, ["Μανία", "noun", "Μανία", "Μᾱνῐ́ᾱς", "Μᾱνῐ́ᾳ", "", "Mania"]) + let v = native_list_append(v, ["Μάλλιος", "noun", "Μάλλιοι", "Μαλλίου", "Μαλλίῳ", "", "Manlius a member"]) + let v = native_list_append(v, ["Μαντίνεια", "noun", "Μαντίνεια", "Μαντινείᾱς", "Μαντινείᾳ", "", "Mantinea Mantineia"]) + let v = native_list_append(v, ["Μαντινεύς", "noun", "Μᾰντῐνῆς", "Μᾰντῐνέως", "Μᾰντῐνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μαραθών", "noun", "Μαραθών", "Μᾰρᾰθῶνος", "Μᾰρᾰθῶνῐ", "", "Marathon Attica Greece"]) + let v = native_list_append(v, ["Μαρδόνιος", "noun", "Μαρδόνιος", "Μαρδονίου", "Μαρδονίῳ", "", "a male given"]) + let v = native_list_append(v, ["Μάρεια", "noun", "Μάρεια", "Μᾰρείᾱς", "Μᾰρείᾳ", "", "Marea Lake Mariout"]) + let v = native_list_append(v, ["Μάρων", "noun", "Μάρων", "Μᾰ́ρωνος", "Μᾰ́ρωνῐ", "", "Maro"]) + let v = native_list_append(v, ["Μάρπησσα", "noun", "Μάρπησσα", "Μαρπήσσης", "Μαρπήσσῃ", "", "Marpessa"]) + let v = native_list_append(v, ["Μασσαλιώτης", "noun", "Μασσᾰλῐῶται", "Μασσᾰλῐώτου", "Μασσᾰλῐώτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μαρσός", "noun", "Μαρσοί", "Μαρσοῦ", "Μαρσῷ", "", "one of the"]) + let v = native_list_append(v, ["Μαρσύας", "noun", "Μαρσύας", "Μαρσύου", "Μᾰρσῠ́ᾳ", "", "Marsyas"]) + let v = native_list_append(v, ["Μασσανάσσης", "noun", "Μασσανάσσης", "Μασσᾰνάσσου", "Μασσᾰνάσσῃ", "", "Masinissa or Massinissa"]) + let v = native_list_append(v, ["Μαυρουσία", "noun", "Μαυρουσία", "Μαυρουσῐ́ᾱς", "Μαυρουσῐ́ᾳ", "", "Mauretania ancient Berber"]) + let v = native_list_append(v, ["Μαυρούσιος", "noun", "Μαυρούσῐοι", "Μαυρουσῐ́ου", "Μαυρουσῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μαύσωλος", "noun", "Μαύσωλοι", "Μαυσώλου", "Μαυσώλῳ", "", "a male given"]) + let v = native_list_append(v, ["Μαυσωλεῖον", "noun", "Μαυσωλεῖον", "Μαυσωλείου", "Μαυσωλείῳ", "", "the Mausoleum of"]) + let v = native_list_append(v, ["Μήδεια", "noun", "Μήδεια", "Μηδείᾱς", "Μηδείᾳ", "", "Medea"]) + let v = native_list_append(v, ["Μῆδος", "noun", "Μῆδοι", "Μήδου", "Μήδῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μηδία", "noun", "Μηδία", "Μηδῐ́ᾱς", "Μηδῐ́ᾳ", "", "Media a geographic"]) + let v = native_list_append(v, ["Μεγαβάτης", "noun", "Μεγαβάτης", "Μεγᾰβάτου", "Μεγαβάτῃ", "", "a male given"]) + let v = native_list_append(v, ["Μεγάβαζος", "noun", "Μεγάβαζος", "Μεγᾰβάζου", "Μεγᾰβᾰ́ζῳ", "", "Megabazus"]) + let v = native_list_append(v, ["Μεγάβυζος", "noun", "Μεγάβυζος", "Μεγαβύζου", "Μεγαβύζῳ", "", "a male given"]) + let v = native_list_append(v, ["Μεγακλῆς", "noun", "Μεγακλῆς", "Μεγᾰκλέους", "Μεγᾰκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Μεγακλέης", "noun", "Μεγακλέης", "Μεγᾰκλέους", "Μεγᾰκλέει", "", "Poetic and Ionic"]) + let v = native_list_append(v, ["Μεγαλόπολις", "noun", "Μεγαλόπολις", "Μεγᾰλοπόλεως", "Μεγᾰλοπόλει", "", "Megalopolis Arcadia Greece"]) + let v = native_list_append(v, ["Μεγαλοπολίτης", "noun", "Μεγᾰλοπολῖται", "Μεγᾰλοπολῑ́του", "Μεγᾰλοπολῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μεγάρα", "noun", "Μεγάρα", "Μεγᾰ́ρᾱς", "Μεγᾰ́ρᾳ", "", "Megara wife of"]) + let v = native_list_append(v, ["Μέγαρα", "noun", "Μέγᾰρᾰ", "Μεγᾰ́ρων", "Μεγᾰ́ροις", "", "Megara Megaris a"]) + let v = native_list_append(v, ["Μεγαρεύς", "noun", "Μεγᾰρῆς", "Μεγᾰρέως", "Μεγᾰρεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μεγαρίς", "noun", "Μεγαρίς", "Μεγᾰρῐ́δος", "Μεγᾰρῐ́δῐ", "", "Megaris or Megarid"]) + let v = native_list_append(v, ["Μελάμπους", "noun", "Μελάμπους", "Μελᾰ́μποδος", "Μελᾰ́μποδῐ", "", "Melampus"]) + let v = native_list_append(v, ["Μελανίππη", "noun", "Μελανίππη", "Μελᾰνῐ́ππης", "Μελᾰνῐ́ππῃ", "", "a female given"]) + let v = native_list_append(v, ["Μελάνιππος", "noun", "Μελάνιππος", "Μελᾰνῐ́ππου", "Μελᾰνῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Μελέαγρος", "noun", "Μελέαγρος", "Μελεᾰ́γρου", "Μελεᾰ́γρῳ", "", "a male given"]) + let v = native_list_append(v, ["Μέλητος", "noun", "Μέλητος", "Μελήτου", "Μελήτῳ", "", "Meletus"]) + let v = native_list_append(v, ["Μέλισσα", "noun", "Μέλισσα", "Μελίσσης", "Μελίσσῃ", "", "a female given"]) + let v = native_list_append(v, ["Μῆλος", "noun", "Μῆλος", "Μήλου", "Μήλῳ", "", "Malos or Melos"]) + let v = native_list_append(v, ["Μέμνων", "noun", "Μέμνων", "Μέμνονος", "Μέμνονῐ", "", "Memnon"]) + let v = native_list_append(v, ["Μέμφις", "noun", "Μέμφις", "Μέμφῐδος", "Μέμφῐδῐ", "", "Memphis mythological founder"]) + let v = native_list_append(v, ["Μένανδρος", "noun", "Μένανδρος", "Μενάνδρου", "Μενᾰ́νδρῳ", "", "a male given"]) + let v = native_list_append(v, ["Μένδη", "noun", "Μένδη", "Μένδης", "Μένδῃ", "", "Mende Chalcidice Greece"]) + let v = native_list_append(v, ["Μενέλαος", "noun", "Μενέλαος", "Μενελάου", "Μενελᾱ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Κολχός", "noun", "Κολχοί", "Κολχοῦ", "Κολχῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ῥωμανός", "noun", "Ῥωμᾱνοί", "Ῥωμᾱνοῦ", "Ῥωμᾱνῷ", "", "synonym of Ῥωμαῖος"]) + let v = native_list_append(v, ["Βιθυνός", "noun", "Βῑθῡνοί", "Βῑθῡνοῦ", "Βῑθῡνῷ", "", "one of the"]) + let v = native_list_append(v, ["Θυνός", "noun", "Θῡνοί", "Θῡνοῦ", "Θῡνῷ", "", "one of the"]) + let v = native_list_append(v, ["Χαιρωνεύς", "noun", "Χαιρωνῆς", "Χαιρωνέως", "Χαιρωνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μενήνιος", "noun", "Μενήνιος", "Μενηνῐ́ου", "Μενηνῐ́ῳ", "", "Menenius"]) + let v = native_list_append(v, ["Μένων", "noun", "Μένων", "Μένωνος", "Μένωνῐ", "", "Meno"]) + let v = native_list_append(v, ["Μενοικεύς", "noun", "Μενοικεύς", "Μενοικέως", "Μενοικεῖ", "", "a male given"]) + let v = native_list_append(v, ["Μενοίτιος", "noun", "Μενοίτιος", "Μενοιτῐ́ου", "Μενοιτῐ́ῳ", "", "the name of"]) + let v = native_list_append(v, ["βουλευτής", "noun", "βουλευταί", "βουλευτοῦ", "βουλευτῇ", "", "councillor senator bouleutes"]) + let v = native_list_append(v, ["νῦ", "noun", "νῦ", "", "", "", "nu the name"]) + let v = native_list_append(v, ["μνήμη", "noun", "μνῆμαι", "μνήμης", "μνήμῃ", "", "memory remembrance"]) + let v = native_list_append(v, ["βρῶσις", "noun", "βρώσεις", "βρώσεως", "βρώσει", "", "the act of"]) + let v = native_list_append(v, ["Φερενίκη", "noun", "Φερενίκη", "Φερενῑ́κης", "Φερενῑ́κῃ", "", "a female given"]) + let v = native_list_append(v, ["Βερενίκη", "noun", "Βερενίκη", "Βερενῑ́κης", "Βερενῑ́κῃ", "", "a female given"]) + let v = native_list_append(v, ["Πελασγοί", "noun", "Πελασγοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["κανδάκη", "noun", "κανδάκαι", "κανδάκης", "κανδάκῃ", "", "A candace any"]) + let v = native_list_append(v, ["Κανδάκη", "noun", "Κανδάκη", "Κανδάκης", "Κανδάκῃ", "", "Candace a name"]) + let v = native_list_append(v, ["χορηγός", "noun", "χορηγοί", "χορηγοῦ", "χορηγῷ", "", "a chorus leader"]) + let v = native_list_append(v, ["Πέρσης", "noun", "Πέρσης", "Πέρσου", "Πέρσῃ", "", "Perses the son"]) + let v = native_list_append(v, ["φαρσί", "noun", "φαρσί", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["λέβητας", "noun", "λέβητας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["τέλμα", "noun", "τέλμᾰτᾰ", "τέλμᾰτος", "τέλμᾰτῐ", "", "standing water pond"]) + let v = native_list_append(v, ["Ἀλεξάνδρεια", "noun", "Ἀλεξάνδρεια", "Ᾰ̓λεξᾰνδρείᾱς", "Ᾰ̓λεξᾰνδρείᾳ", "", "Alexandria any of"]) + let v = native_list_append(v, ["Ἀλεξανδρέττα", "noun", "Ἀλεξανδρέττα", "Ᾰ̓λεξᾰνδρέττᾱς", "Ᾰ̓λεξᾰνδρέττᾳ", "", "Alexandretta Iskenderun Turkey"]) + let v = native_list_append(v, ["Μηριόνης", "noun", "Μηριόνης", "Μηρῐόνου", "Μηρῐόνῃ", "", "Meriones hero of"]) + let v = native_list_append(v, ["Μερόπη", "noun", "Μερόπη", "Μερόπης", "Μερόπῃ", "", "Merope"]) + let v = native_list_append(v, ["Μέροψ", "noun", "Μέροψ", "Μέροπος", "Μέροπῐ", "", "Merops"]) + let v = native_list_append(v, ["Μεσσάλας", "noun", "Μεσσάλας", "Μεσσάλᾱ", "Μεσσάλᾳ", "", "Messala"]) + let v = native_list_append(v, ["Μεσσάπιος", "noun", "Μεσσάπιοι", "Μεσσαπίου", "Μεσσαπίῳ", "", "one of the"]) + let v = native_list_append(v, ["Μεσσήνη", "noun", "Μεσσήνη", "Μεσσήνης", "Μεσσήνῃ", "", "Messene Messenia Greece"]) + let v = native_list_append(v, ["Μεσσηνία", "noun", "Μεσσηνία", "Μεσσηνῐ́ᾱς", "Μεσσηνῐ́ᾳ", "", "Messenia Greece"]) + let v = native_list_append(v, ["Μεταπόντιον", "noun", "Μεταπόντιον", "Μετᾰποντῐ́ου", "Μετᾰποντῐ́ῳ", "", "Metapontum Magna Graecia"]) + let v = native_list_append(v, ["Μεταποντῖνος", "noun", "Μετᾰποντῖνοι", "Μετᾰποντῑ́νου", "Μετᾰποντῑ́νῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μεταπόντιος", "noun", "Μετᾰπόντῐοι", "Μετᾰποντῐ́ου", "Μετᾰποντῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μέταυρος", "noun", "Μέταυρος", "Μεταύρου", "Μεταύρῳ", "", "the river Metaurus"]) + let v = native_list_append(v, ["σκηνή", "noun", "σκηναί", "σκηνῆς", "σκηνῇ", "", "tent"]) + let v = native_list_append(v, ["Μέτελλος", "noun", "Μέτελλοι", "Μετέλλου", "Μετέλλῳ", "", "Metellus one of"]) + let v = native_list_append(v, ["Μεθώνη", "noun", "Μεθώνη", "Μεθώνης", "Μεθώνῃ", "", "Methoni a village"]) + let v = native_list_append(v, ["Μεθύδριον", "noun", "Μεθύδριον", "Μεθῠδρῐ́ου", "Μεθῠδρῐ́ῳ", "", "Methydrium a town"]) + let v = native_list_append(v, ["Μεθυδριεύς", "noun", "Μεθυδριῆς", "Μεθυδριῶς", "Μεθυδριεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Μήθυμνα", "noun", "Μήθυμνα", "Μηθῠ́μνης", "Μηθῠ́μνῃ", "", "Methymna Mithymna Lesbos"]) + let v = native_list_append(v, ["Μέτων", "noun", "Μέτων", "Μέτωνος", "Μέτωνῐ", "", "Meton"]) + let v = native_list_append(v, ["Μίδας", "noun", "Μίδας", "Μῐ́δου", "Μῐ́δᾳ", "", "Midas"]) + let v = native_list_append(v, ["Μειδίας", "noun", "Μειδίας", "Μειδῐ́ου", "Μειδῐ́ᾳ", "", "Meidias"]) + let v = native_list_append(v, ["Μεδιόλανον", "noun", "Μεδιόλανον", "Μεδῐολᾱ́νου", "Μεδῐολᾱ́νῳ", "", "any one of"]) + let v = native_list_append(v, ["Μίλων", "noun", "Μίλων", "Μῐ́λωνος", "Μῐ́λωνῐ", "", "Milo Milon"]) + let v = native_list_append(v, ["Μιλτιάδης", "noun", "Μιλτιάδης", "Μῐλτῐᾰ́δου", "Μῐλτῐᾰ́δῃ", "", "Miltiades"]) + let v = native_list_append(v, ["Μίνδαρος", "noun", "Μίνδαρος", "Μινδᾰ́ρου", "Μινδᾰ́ρῳ", "", "Mindarus"]) + let v = native_list_append(v, ["Μινώα", "noun", "Μινώα", "Μῑνώᾱς", "Μῑνώᾳ", "", "Minoan civilization"]) + let v = native_list_append(v, ["Μίνως", "noun", "Μίνως", "Μῑ́νωος", "Μῑ́νῳ", "", "Minos"]) + let v = native_list_append(v, ["Μινώταυρος", "noun", "Μινώταυρος", "Μῑνωταύρου", "Μῑνωταύρῳ", "", "Minotaur"]) + let v = native_list_append(v, ["Μιντούρνη", "noun", "Μιντοῦρναι", "Μιντούρνης", "Μιντούρνῃ", "", "Minturnae Latium Minturno"]) + let v = native_list_append(v, ["Μινούκιος", "noun", "Μινούκιος", "Μῐνουκῐ́ου", "Μῐνουκῐ́ῳ", "", "Minucius"]) + let v = native_list_append(v, ["Μινύης", "noun", "Μῐνῠ́αι", "Μῐνῠ́ου", "Μῐνῠ́ῃ", "", "one of the"]) + let v = native_list_append(v, ["Μιθριδάτης", "noun", "Μιθριδάτης", "Μιθριδᾱ́του", "Μιθριδᾱ́τῃ", "", "a male given"]) + let v = native_list_append(v, ["Μοῖρις", "noun", "Μοῖρις", "Μοίρῐδος", "Μοίρῐδῐ", "", "Lake Moeris Egypt"]) + let v = native_list_append(v, ["Μολοσσός", "noun", "Μολοσσός", "Μολοσσοῦ", "Μολοσσῷ", "", "Molossus son of"]) + let v = native_list_append(v, ["Μολοσσία", "noun", "Μολοσσία", "Μολοσσῐ́ᾱς", "Μολοσσῐ́ᾳ", "", "Molossia"]) + let v = native_list_append(v, ["Μολύκρειον", "noun", "Μολύκρειον", "Μολῠκρείου", "Μολυκρείῳ", "", "Molycreum Molykreio Aetolia-Acarnania"]) + let v = native_list_append(v, ["Μόρσιμος", "noun", "Μόρσιμος", "Μορσῐ́μου", "Μορσῐ́μῳ", "", "Morsimus"]) + let v = native_list_append(v, ["Μοτύη", "noun", "Μοτύη", "Μοτύης", "Μοτύῃ", "", "Motya Mozia Sicily"]) + let v = native_list_append(v, ["Μόμμιος", "noun", "Μόμμιος", "Μομμῐ́ου", "Μομμῐ́ῳ", "", "Mummius"]) + let v = native_list_append(v, ["Μουνυχία", "noun", "Μουνυχία", "Μουνῠχῐ́ᾱς", "Μουνῠχῐ́ᾳ", "", "Munychia Piraeus Attica"]) + let v = native_list_append(v, ["Μουρρήνας", "noun", "Μουρρῆναι", "Μουρρήνᾱ", "Μουρρήνᾳ", "", "a member of"]) + let v = native_list_append(v, ["Μουσαῖος", "noun", "Μουσαῖος", "Μουσαίου", "Μουσαίῳ", "", "Musaeus"]) + let v = native_list_append(v, ["Μυκάλη", "noun", "Μυκάλη", "Μῠκᾰ́λης", "Μῠκᾰ́λῃ", "", "Mycale"]) + let v = native_list_append(v, ["Μυκαλησσός", "noun", "Μυκαλησσός", "Μυκαλησσοῦ", "Μῠκᾰλησσῷ", "", "Mycalessus"]) + let v = native_list_append(v, ["Μύκονος", "noun", "Μύκονος", "Μῠκόνου", "Μῠκόνῳ", "", "Mykonos Cyclades Greece"]) + let v = native_list_append(v, ["Μυγδονία", "noun", "Μυγδονία", "Μυγδονῐ́ᾱς", "Μυγδονῐ́ᾳ", "", "Mygdonia Macedonia Greece"]) + let v = native_list_append(v, ["Μύλασα", "noun", "Μύλᾰσᾰ", "Μυλάσης", "Μῠλᾰ́σῃ", "", "Mylasa Caria Milas"]) + let v = native_list_append(v, ["Μύρων", "noun", "Μύρων", "Μῠ́ρωνος", "Μῠ́ρωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Μύρκινος", "noun", "Μύρκινος", "Μυρκίνου", "Μυρκίνῳ", "", "Myrcinus"]) + let v = native_list_append(v, ["Μυρμιδών", "noun", "Μῠρμῐδόνες", "Μυρμῐδόνος", "Μῠρμῐδόνῐ", "", "a Myrmidon one"]) + let v = native_list_append(v, ["Μυρωνίδης", "noun", "Μυρωνίδης", "Μῠρωνῐ́δου", "Μῠρωνῐ́δῃ", "", "Myronides"]) + let v = native_list_append(v, ["Μυσός", "noun", "Μῡσοί", "Μῡσοῦ", "Μῡσῷ", "", "a Mysian"]) + let v = native_list_append(v, ["Μυτιλήνη", "noun", "Μυτιλήνη", "Μῠτῐλήνης", "Μῠτῐλήνῃ", "", "the city of"]) + let v = native_list_append(v, ["Μυοῦς", "noun", "Μυοῦς", "Μυοῦντος", "Μυοῦντῐ", "", "Myus a city"]) + let v = native_list_append(v, ["Νίκαια", "noun", "Νίκαια", "Νῑκαίᾱς", "Νῑκαίᾳ", "", "any one of"]) + let v = native_list_append(v, ["Ναϊάς", "noun", "Νᾱῐ̈ᾰ́δες", "Νᾱῐ̈ᾰ́δος", "Νᾱῐ̈ᾰ́δῐ", "", "a naiad"]) + let v = native_list_append(v, ["Νεαπολίτης", "noun", "Νεᾱπολῖται", "Νεᾱπολῑ́του", "Νεᾱπολῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Νάρβων", "noun", "Νάρβων", "Νάρβωνος", "Νάρβωνῐ", "", "Narbo Gallia Narbonensis"]) + let v = native_list_append(v, ["Νασικᾶς", "noun", "Νασικᾶς", "Νᾱσῑκᾶ", "Νᾱσῑκᾷ", "", "Nasica"]) + let v = native_list_append(v, ["Ναύκρατις", "noun", "Ναύκρατις", "Ναυκρᾰ́τῐος", "Ναυκρᾰ́τῑ", "", "Naucratis"]) + let v = native_list_append(v, ["Ναύπακτος", "noun", "Ναύπακτος", "Ναυπᾰ́κτου", "Ναυπᾰ́κτῳ", "", "Naupactus"]) + let v = native_list_append(v, ["Ναύπλιος", "noun", "Ναύπλιος", "Ναυπλῐ́ου", "Ναυπλῐ́ῳ", "", "Nauplius"]) + let v = native_list_append(v, ["Ναυπλία", "noun", "Ναυπλία", "Ναυπλῐ́ᾱς", "Ναυπλῐ́ᾳ", "", "Nauplia Nafplio Argolis"]) + let v = native_list_append(v, ["Νάξος", "noun", "Νάξος", "Νᾰ́ξου", "Νᾰ́ξῳ", "", "Naxos"]) + let v = native_list_append(v, ["Νεκῶς", "noun", "Νεκῶς", "Νεκῶ", "Νεκῷ", "", "Necho"]) + let v = native_list_append(v, ["Νηλεύς", "noun", "Νηλεύς", "Νηλέως", "Νηλεῖ", "", "Neleus"]) + let v = native_list_append(v, ["Νεμέα", "noun", "Νεμέα", "Νεμέᾱς", "Νεμέᾳ", "", "Nemea"]) + let v = native_list_append(v, ["Νέμεσις", "noun", "Νέμεσις", "Νεμέσεως", "Νεμέσει", "", "Nemesis goddess of"]) + let v = native_list_append(v, ["Νεοκλῆς", "noun", "Νεοκλῆς", "Νεοκλέους", "Νεοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Νεοπτόλεμος", "noun", "Νεοπτόλεμος", "Νεοπτολέμου", "Νεοπτολέμῳ", "", "a male given"]) + let v = native_list_append(v, ["Νέπως", "noun", "Νέπως", "Νέπωτος", "Νέπωτῐ", "", "Nepos"]) + let v = native_list_append(v, ["Νηρῇς", "noun", "Νηρῇδες", "Νηρῇδος", "Νηρῇδῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Νηρηΐς", "noun", "Νηρηῐ̈́δες", "Νηρηῐ̈́δος", "Νηρηῐ̈́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Νηρεύς", "noun", "Νηρεύς", "Νηρέως", "Νηρεῖ", "", "Nereus"]) + let v = native_list_append(v, ["Νέρων", "noun", "Νέρων", "Νέρωνος", "Νέρωνῐ", "", "Nero"]) + let v = native_list_append(v, ["Νέρβιος", "noun", "Νέρβῐοι", "Νερβῐ́ου", "Νερβῐ́ῳ", "", "one of the"]) + let v = native_list_append(v, ["Νέσσος", "noun", "Νέσσος", "Νέσσου", "Νέσσῳ", "", "Nessus"]) + let v = native_list_append(v, ["Νέστωρ", "noun", "Νέστωρ", "Νέστορος", "Νέστορῐ", "", "Nestor"]) + let v = native_list_append(v, ["Νέστος", "noun", "Νέστος", "Νέστου", "Νέστῳ", "", "the river Mesta"]) + let v = native_list_append(v, ["Νικήρατος", "noun", "Νικήρατος", "Νῑκηρᾰ́του", "Νῑκηρᾰ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Νικίας", "noun", "Νικίας", "Νικίου", "Νῑκῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Νικομήδης", "noun", "Νικομήδης", "Νῑκομήδους", "Νῑκομήδει", "", "a male given"]) + let v = native_list_append(v, ["Νικομήδεια", "noun", "Νικομήδεια", "Νῑκομηδείᾱς", "Νῑκομηδείᾳ", "", "Nicomedia"]) + let v = native_list_append(v, ["Νικόστρατος", "noun", "Νικόστρατος", "Νῑκοστρᾰ́του", "Νῑκοστρᾰ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Νύξ", "noun", "Νύξ", "Νῠκτός", "Νῠκτῐ́", "", "Nyx"]) + let v = native_list_append(v, ["Νεῖλος", "noun", "Νεῖλος", "Νείλου", "Νείλῳ", "", "the river Nile"]) + let v = native_list_append(v, ["Νίνος", "noun", "Νίνος", "Νῐ́νου", "Νῐ́νῳ", "", "m Ninus the"]) + let v = native_list_append(v, ["Νιόβη", "noun", "Νιόβη", "Νῐόβης", "Νῐόβῃ", "", "Niobe"]) + let v = native_list_append(v, ["Νίσαια", "noun", "Νίσαια", "Νῑσαίᾱς", "Νῑσαίᾳ", "", "Nisaea"]) + let v = native_list_append(v, ["Νίσιβις", "noun", "Νίσιβις", "Νισίβῐος", "Νισίβῑ", "", "Nisibis Nusaybin Mardin"]) + let v = native_list_append(v, ["Νῖσος", "noun", "Νῖσος", "Νῑ́σου", "Νῑ́σῳ", "", "Nisos Nisus"]) + let v = native_list_append(v, ["Νίτωκρις", "noun", "Νίτωκρις", "Νιτώκρεως", "Νιτώκρει", "", "Nitocris"]) + let v = native_list_append(v, ["Νῶλα", "noun", "Νῶλα", "Νώλης", "Νώλῃ", "", "Nola a city"]) + let v = native_list_append(v, ["Νωλανός", "noun", "Νωλᾱνοί", "Νωλᾱνοῦ", "Νωλᾱνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Νωρβανός", "noun", "Νωρβανός", "Νωρβᾱνοῦ", "Νωρβᾱνῷ", "", "Norbanus"]) + let v = native_list_append(v, ["Νότιον", "noun", "Νότιον", "Νοτῐ́ου", "Νοτῐ́ῳ", "", "Notium Aeolis Turkey"]) + let v = native_list_append(v, ["Νομαντία", "noun", "Νομαντία", "Νομᾰντῐ́ᾱς", "Νομᾰντῐ́ᾳ", "", "Numantia"]) + let v = native_list_append(v, ["Νομαντῖνος", "noun", "Νομᾰντῖνοι", "Νομᾰντῑ́νου", "Νομᾰντῑ́νῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Νομάς", "noun", "αἱ Νομᾰ́δες", "Νομᾰ́δος", "τῇ Νομᾰ́δῐ", "", "a Numidian"]) + let v = native_list_append(v, ["Νομαδική", "noun", "Νομαδική", "Νομᾰδῐκῆς", "Νομᾰδῐκῇ", "", "Numidia"]) + let v = native_list_append(v, ["Νομήτωρ", "noun", "Νομήτωρ", "Νομήτορος", "Νομήτορῐ", "", "Numitor"]) + let v = native_list_append(v, ["Νοῦσσα", "noun", "Νοῦσσᾰ", "Νούσσων", "Νούσσοις", "", "Nursia Norcia Umbria"]) + let v = native_list_append(v, ["Νῦσα", "noun", "Νῦσα", "Νῡ́σης", "Νῡ́σῃ", "", "Nysa mountainous land"]) + let v = native_list_append(v, ["Ὠκεανίς", "noun", "Ὠκεᾰνῐ́δες", "Ὠκεᾰνῐ́δος", "Ὠκεᾰνῐ́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Ὀκταούιος", "noun", "Ὀκταούιος", "Ὀκτᾱουῐ́ου", "Ὀκτᾱουῐ́ῳ", "", "Octavius"]) + let v = native_list_append(v, ["Ὀκταουία", "noun", "Ὀκταουία", "Ὀκτᾱουῐ́ᾱς", "Ὀκτᾱουῐ́ᾳ", "", "Octavia"]) + let v = native_list_append(v, ["Ὀκταουιανός", "noun", "Ὀκταουιανός", "Ὀκτᾱουῐᾱνοῦ", "Ὀκτᾱουῐᾱνῷ", "", "Octavian"]) + let v = native_list_append(v, ["ᾨδεῖον", "noun", "ᾨδεῖᾰ", "ᾨδείου", "ᾨδείῳ", "", "the Odeon or"]) + let v = native_list_append(v, ["Ὀδρύσης", "noun", "Ὀδρῠ́σαι", "Ὀδρῠ́σου", "Ὀδρῠ́σῃ", "", "one of the"]) + let v = native_list_append(v, ["Ὀδυσσεύς", "noun", "Ὀδυσσεύς", "Ὀδῠσσέως", "Ὀδῠσσεῖ", "", "Odysseus"]) + let v = native_list_append(v, ["Ὀδυσσεία", "noun", "Ὀδυσσεία", "Ὀδῠσσείᾱς", "Ὀδῠσσείᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Οἴαγρος", "noun", "Οἴαγρος", "Οἰάγρου", "Οἰάγρῳ", "", "Oeagrus"]) + let v = native_list_append(v, ["Οἴαξ", "noun", "Οἴαξ", "Οἴᾱκος", "Οἴᾱκῐ", "", "a male given"]) + let v = native_list_append(v, ["Οἰχαλία", "noun", "Οἰχαλία", "Οἰχᾰλῐ́ᾱς", "Οἰχᾰλῐ́ᾳ", "", "Oechalia"]) + let v = native_list_append(v, ["Οἰκλῆς", "noun", "Οἰκλῆς", "Οἰκλέους", "Οἰκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Οἰκλείδης", "noun", "Οἰκλείδης", "Οἰκλείδου", "Οἰκλείδῃ", "", "a son of"]) + let v = native_list_append(v, ["Οἰδίπους", "noun", "Οἰδῐ́ποδες", "Οἰδῐ́ποδος", "Οἰδῐ́ποδῐ", "", "Oedipus"]) + let v = native_list_append(v, ["Οἰνεύς", "noun", "Οἰνεύς", "Οἰνέως", "Οἰνεῖ", "", "a male given"]) + let v = native_list_append(v, ["Οἰνιάδαι", "noun", "Οἰνιᾰ́δαι", "Οἰνιᾰδῶν", "Οἰνιᾰ́δαις", "", "Oeniadae Oiniades Aetolia-Acarnania"]) + let v = native_list_append(v, ["Οἰνόη", "noun", "Οἰνόη", "Οἰνόης", "Οἰνόῃ", "", "any one of"]) + let v = native_list_append(v, ["Οἰνόμαος", "noun", "Οἰνόμαος", "Οἰνομάου", "Οἰνομάῳ", "", "Oenomaus"]) + let v = native_list_append(v, ["Οἰνώνη", "noun", "Οἰνώνη", "Οἰνώνης", "Οἰνώνῃ", "", "Oenone a woman"]) + let v = native_list_append(v, ["Οἰνόφυτα", "noun", "Οἰνόφῠτᾰ", "Οἰνοφῠ́των", "Οἰνοφῠ́τοις", "", "Oenophyta"]) + let v = native_list_append(v, ["Ὀδύσσεια", "noun", "Ὀδύσσεια", "Ὀδῠσσείᾱς", "Ὀδῠσσείᾳ", "", "the Odyssey an"]) + let v = native_list_append(v, ["Οἴνωτρος", "noun", "Οἴνωτρος", "Οἰνώτρου", "Οἰνώτρῳ", "", "Oenotrus"]) + let v = native_list_append(v, ["Οἰνωτρία", "noun", "Οἰνωτρία", "Οἰνωτρῐ́ᾱς", "Οἰνωτρῐ́ᾳ", "", "Oenotria"]) + let v = native_list_append(v, ["Οἴτη", "noun", "Οἴτη", "Οἴτης", "Οἴτῃ", "", "Mount Oeta"]) + let v = native_list_append(v, ["Οἰλεύς", "noun", "Οἰλεύς", "Οἰλέως", "Οἰλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ὀϊλεύς", "noun", "Ὀϊλεύς", "Ὀῑ̈λέως", "Ὀῑ̈λῆῐ̈", "", "Epic form of"]) + let v = native_list_append(v, ["Ὠλήν", "noun", "Ὠλήν", "Ὠλένος", "Ὠλένῐ", "", "Olen"]) + let v = native_list_append(v, ["Ὤλενος", "noun", "Ὤλενος", "Ὠλένου", "Ὠλένῳ", "", "Olenus"]) + let v = native_list_append(v, ["Ὄλορος", "noun", "Ὄλορος", "Ὀλόρου", "Ὀλόρῳ", "", "a male given"]) + let v = native_list_append(v, ["Ὄλπαι", "noun", "Ὀλπῶν", "Ὀλπῶν", "Ὄλπαις", "", "Olpae"]) + let v = native_list_append(v, ["Ὄλυμπος", "noun", "Ὄλυμπος", "Ὀλῠ́μπου", "Ὀλῠ́μπῳ", "", "Olympus a mountain"]) + let v = native_list_append(v, ["Ὀλυμπία", "noun", "Ὀλυμπία", "Ὀλυμπῐ́ᾱς", "Ὀλυμπῐ́ᾳ", "", "Olympia"]) + let v = native_list_append(v, ["Ὀλύμπια", "noun", "Ὀλύμπῐᾰ", "Ὀλυμπῐ́ων", "Ὀλυμπῐ́οις", "", "the ancient Olympic"]) + let v = native_list_append(v, ["Ὀλυμπιάς", "noun", "Ὀλυμπῐᾰ́δες", "Ὀλυμπῐᾰ́δος", "Ὀλυμπῐᾰ́δῐ", "", "the Olympiad"]) + let v = native_list_append(v, ["Ὄλυνθος", "noun", "Ὄλυνθος", "Ὀλύνθου", "Ὀλύνθῳ", "", "Olynthus"]) + let v = native_list_append(v, ["Ὀμφάλη", "noun", "Ὀμφάλη", "Ὀμφᾰ́λης", "Ὀμφᾰ́λῃ", "", "Omphale a woman"]) + let v = native_list_append(v, ["Ὄνειον", "noun", "Ὄνειον", "Ὀμνείου", "Ὀνείῳ", "", "Mount Oneum"]) + let v = native_list_append(v, ["Ὀποῦς", "noun", "Ὀποῦς", "Ὀποῦντος", "Ὀποῦντῐ", "", "Opus Greece"]) + let v = native_list_append(v, ["Ὀρχομενός", "noun", "Ὀρχομενός", "Ὀρχομενοῦ", "Ὀρχομενῷ", "", "m a male"]) + let v = native_list_append(v, ["Ὀρέστης", "noun", "Ὀρέστης", "Ὀρέστου", "Ὀρέστῃ", "", "Orestes"]) + let v = native_list_append(v, ["Ὀρεστεία", "noun", "Ὀρεστεία", "Ὀρεστείᾱς", "Ὀρεστείᾳ", "", "Orestes an ancient"]) + let v = native_list_append(v, ["Ὠρεός", "noun", "Ὠρεός", "Ὠρεοῦ", "Ὠρεῷ", "", "Oreus Euboea Greece"]) + let v = native_list_append(v, ["Ὠρείτης", "noun", "Ὠρεῖται", "Ὠρείτου", "Ὠρείτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ὠρικόν", "noun", "Ὠρικόν", "Ὠρικοῦ", "Ὠρικῷ", "", "Oricum"]) + let v = native_list_append(v, ["Ὠρίων", "noun", "Ὠρίων", "Ὠρῑ́ωνος", "Ὠρῑ́ωνῐ", "", "Orion"]) + let v = native_list_append(v, ["Ὠρείθυια", "noun", "Ὠρείθυια", "Ὠρειθυίᾱς", "Ὠρειθυίᾳ", "", "Oreithyia or Orithyia"]) + let v = native_list_append(v, ["Ὀρνεαί", "noun", "Ὀρνεῶν", "Ὀρνεῶν", "Ὀρνεαῖς", "", "Orneae"]) + let v = native_list_append(v, ["Ὀρνεάτης", "noun", "Ὀρνεᾶται", "Ὀρνεᾱ́του", "Ὀρνεᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ὀρόντης", "noun", "Ὀρόντης", "Ὀρόντου", "Ὀρόντῃ", "", "Orontes river"]) + let v = native_list_append(v, ["Ὠρωπός", "noun", "Ὠρωπός", "Ὠρωποῦ", "τῇ Ὠρωπῷ", "", "Oropus Oropos Attica"]) + let v = native_list_append(v, ["Ὀρφεύς", "noun", "Ὀρφεύς", "Ὀρφέως", "Ὀρφεῖ", "", "Orpheus"]) + let v = native_list_append(v, ["Ὀρσίλοχος", "noun", "Ὀρσίλοχος", "Ὀρσῐλόχου", "Ὀρσῐλόχῳ", "", "Orsilochus"]) + let v = native_list_append(v, ["Ὄσιρις", "noun", "Ὄσιρις", "Ὀσῑ́ρῐος", "Ὀσῑ́ρῐῐ̈", "", "Osiris the Egyptian"]) + let v = native_list_append(v, ["Ὄσσα", "noun", "Ὄσσα", "Ὄσσης", "Ὄσσῃ", "", "Mount Ossa Mount"]) + let v = native_list_append(v, ["Ὠστία", "noun", "Ὠστία", "Ὠστῐ́ᾱς", "Ὠστῐ́ᾳ", "", "Ostia"]) + let v = native_list_append(v, ["Ὄθων", "noun", "Ὄθων", "Ὄθωνος", "Ὄθωνῐ", "", "Otho Otto"]) + let v = native_list_append(v, ["Ὄθρυς", "noun", "Ὄθρυς", "Ὄθρῠος", "Ὄθρῠῐ̈", "", "mount Othrys Thessaly"]) + let v = native_list_append(v, ["Ὦτος", "noun", "Ὦτος", "Ὤτου", "Ὤτῳ", "", "Otus"]) + let v = native_list_append(v, ["Ὦξος", "noun", "Ὦξος", "Ὤξου", "Ὤξῳ", "", "the river Oxus"]) + let v = native_list_append(v, ["Πάχης", "noun", "Πάχης", "Πάχητος", "Πάχητῐ", "", "Paches"]) + let v = native_list_append(v, ["Πάχυνος", "noun", "Πάχυνος", "Πᾰχῡ́νου", "Πᾰχῡ́νῳ", "", "Cape Pachynus Capo"]) + let v = native_list_append(v, ["Πακτωλός", "noun", "Πακτωλός", "Πᾰκτωλοῦ", "Πᾰκτωλῷ", "", "the river Pactolus"]) + let v = native_list_append(v, ["Πατάβιον", "noun", "Πατάβιον", "Πᾰτᾰβῐ́ου", "Πᾰτᾰβῐ́ῳ", "", "Patavium Padua Padova"]) + let v = native_list_append(v, ["Παίων", "noun", "Παίονες", "Παίονος", "Παίονῐ", "", "a Paionian"]) + let v = native_list_append(v, ["Παιονία", "noun", "Παιονία", "Παιονῐ́ᾱς", "Παιονῐ́ᾳ", "", "Paeonia the land"]) + let v = native_list_append(v, ["Παγασαί", "noun", "Πᾰγᾰσαί", "Πᾰγᾰσῶν", "Πᾰγᾰσαῖς", "", "Pagasae Pagases Magnesia"]) + let v = native_list_append(v, ["Παγώνδας", "noun", "Παγώνδας", "Παγώνδου", "Παγώνδᾳ", "", "Pagondas a Theban"]) + let v = native_list_append(v, ["Παλαίμων", "noun", "Παλαίμων", "Πᾰλαίμονος", "Πᾰλαίμονῐ", "", "Palaemon"]) + let v = native_list_append(v, ["Παλαμήδης", "noun", "Παλαμήδης", "Πᾰλᾰμήδους", "Πᾰλᾰμήδει", "", "Palamedes"]) + let v = native_list_append(v, ["Παλάτιον", "noun", "Παλάτιον", "Πᾰλᾱτῐ́ου", "Πᾰλᾱτῐ́ῳ", "", "Palatine Hill Rome"]) + let v = native_list_append(v, ["Παλαιστίνη", "noun", "Παλαιστίνη", "Παλαιστῑ́νης", "Παλαιστῑ́νῃ", "", "Palestine the Land"]) + let v = native_list_append(v, ["Πάλλας", "noun", "Πάλλας", "Πᾰ́λλᾰντος", "Πᾰ́λλᾰντῐ", "", "Pallas the name"]) + let v = native_list_append(v, ["Παλλαντίδης", "noun", "Πᾰλλᾰντῐ́δαι", "Πᾰλλᾰντῐ́δου", "Πᾰλλᾰντῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Παλλάντιον", "noun", "Παλλάντιον", "Πᾰλλᾰντῐ́ου", "Πᾰλλᾰντῐ́ῳ", "", "Pallantium Latium"]) + let v = native_list_append(v, ["Παλλήνη", "noun", "Παλλήνη", "Παλλήνης", "Παλλήνῃ", "", "Pallene one of"]) + let v = native_list_append(v, ["Παλληνεύς", "noun", "Παλληνῆς", "Παλληνέως", "Παλληνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πάμφιλος", "noun", "Πάμφιλος", "Πᾰμφῐ́λου", "Πᾰμφῐ́λῳ", "", "Pamphilus"]) + let v = native_list_append(v, ["Πάμφυλος", "noun", "Πᾰ́μφῡλοι", "Πᾰμφύλου", "Πᾰμφῡ́λῳ", "", "one of the"]) + let v = native_list_append(v, ["Παναίτιος", "noun", "Παναίτιος", "Πᾰναιτῐ́ου", "Πᾰναιτῐ́ῳ", "", "Panaetius of Rhodes"]) + let v = native_list_append(v, ["Πάνακτον", "noun", "Πάνακτον", "Πᾰνάκτου", "Πᾰνάκτῳ", "", "Panactum"]) + let v = native_list_append(v, ["Παναθήναια", "noun", "Πᾰνᾰθήναιᾰ", "Πᾰνᾰθηναίων", "Πᾰνᾰθηναίοις", "", "the Panathenaea"]) + let v = native_list_append(v, ["Πάνδαρος", "noun", "Πάνδαρος", "Πᾰνδᾰ́ρου", "Πᾰνδᾰ́ρῳ", "", "Pandarus"]) + let v = native_list_append(v, ["Πανδίων", "noun", "Πανδίων", "Πᾰνδῑ́ονος", "Πᾰνδῑ́ονῐ", "", "Pandion"]) + let v = native_list_append(v, ["Πανδώρα", "noun", "Πανδώρα", "Πᾰνδώρᾱς", "Πᾰνδώρᾳ", "", "Pandora"]) + let v = native_list_append(v, ["Πάνδροσος", "noun", "Πάνδροσος", "Πᾰνδρόσου", "Πᾰνδρόσῳ", "", "Pandrosus"]) + let v = native_list_append(v, ["Παγγαῖος", "noun", "Παγγαῖος", "Πᾰγγαίου", "Πᾰγγαίῳ", "", "Pangaion hills"]) + let v = native_list_append(v, ["Παγγαῖον", "noun", "Παγγαῖον", "Πᾰγγαίου", "Πᾰγγαίῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Παννονία", "noun", "Παννονία", "Πᾰννονῐ́ᾱς", "Πᾰννονῐ́ᾳ", "", "Pannonia a geographic"]) + let v = native_list_append(v, ["Πάνορμος", "noun", "Πάνορμος", "Πανόρμου", "Πᾰνόρμῳ", "", "Panormus an ancient"]) + let v = native_list_append(v, ["Πάνσας", "noun", "Πάνσας", "Πάνσᾱ", "Πάνσᾳ", "", "Pansa"]) + let v = native_list_append(v, ["Παντακύας", "noun", "Παντακύας", "Παντᾰκύου", "Παντακύᾳ", "", "the river Pantacyas"]) + let v = native_list_append(v, ["Παντικάπαιον", "noun", "Παντικάπαιον", "Παντῐκᾰπαίου", "Παντικαπαίῳ", "", "Panticapaeum Kerch Crimea"]) + let v = native_list_append(v, ["Παφλαγών", "noun", "Πᾰφλᾰγόνες", "Παφλᾰγόνος", "Πᾰφλᾰγόνῐ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πάφος", "noun", "Πάφος", "Πᾰ́φου", "Πᾰ́φῳ", "", "Paphos Cyprus"]) + let v = native_list_append(v, ["Παπείριος", "noun", "Πᾰπείρῐοι", "Πᾰπειρῐ́ου", "Πᾰπειρῐ́ῳ", "", "Papirius"]) + let v = native_list_append(v, ["Πάραλος", "noun", "Πάραλος", "Πᾰρᾰ́λου", "Πᾰρᾰ́λῳ", "", "Paralus"]) + let v = native_list_append(v, ["Λευκετία", "noun", "Λευκετία", "Λευκετῐ́ᾱς", "Λευκετῐ́ᾳ", "", "Lutetia ancient Roman"]) + let v = native_list_append(v, ["Πάρις", "noun", "Πάρις", "Πᾰ́ρῐδος", "Πᾰ́ρῐδῐ", "", "Paris"]) + let v = native_list_append(v, ["Παρμενίδης", "noun", "Παρμενίδης", "Παρμενῐ́δου", "Παρμενῐ́δῃ", "", "a male given"]) + let v = native_list_append(v, ["Παρμενίων", "noun", "Παρμενίων", "Παρμενῐ́ωνος", "Παρμενῐ́ωνῐ", "", "Parmenion Parmenio"]) + let v = native_list_append(v, ["Παρνασός", "noun", "Παρνασός", "Παρνᾱσοῦ", "Παρνᾱσῷ", "", "Mount Parnassus"]) + let v = native_list_append(v, ["Παρνασσός", "noun", "Παρνασσός", "Παρνασσοῦ", "Παρνασσῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Πάρνης", "noun", "Πάρνης", "Πάρνηθος", "Πάρνηθῐ", "", "Mount Parnes Mount"]) + let v = native_list_append(v, ["Πάρος", "noun", "Πάρος", "Πᾰ́ρου", "Πᾰ́ρῳ", "", "Paros Cyclades Greece"]) + let v = native_list_append(v, ["Παρθάων", "noun", "Παρθάων", "Παρθᾱ́ονος", "Παρθᾱ́ονῐ", "", "a male given"]) + let v = native_list_append(v, ["Παρθενοπαῖος", "noun", "Παρθενοπαῖος", "Παρθενοπαίου", "Παρθενοπαίῳ", "", "Parthenopaeus"]) + let v = native_list_append(v, ["Πάρθος", "noun", "Πᾰ́ρθοι", "Πᾰ́ρθου", "Πᾰ́ρθῳ", "", "a Parthian"]) + let v = native_list_append(v, ["Παρύσατις", "noun", "Παρύσατις", "Παρυσάτιδος", "Πᾰρῠσᾱ́τῐδῐ", "", "a female given"]) + let v = native_list_append(v, ["Πασαργάδαι", "noun", "Πασαργᾰ́δαι", "Πασαργᾰδῶν", "Πασαργᾰ́δαις", "", "Pasargadae"]) + let v = native_list_append(v, ["Πασίων", "noun", "Πασίων", "Πᾱσίωνος", "Πᾱσίωνῐ", "", "Pasion"]) + let v = native_list_append(v, ["Πασιφάη", "noun", "Πασιφάη", "Πᾱσῐφᾰ́ης", "Πᾱῐ̔φᾰ́ῃ", "", "Pasiphae"]) + let v = native_list_append(v, ["Πάτμος", "noun", "Πάτμος", "Πᾰ́τμου", "Πᾰ́τμῳ", "", "Patmos Dodecanese Greece"]) + let v = native_list_append(v, ["Πάτραι", "noun", "Πᾰ́τραι", "Πᾰτρῶν", "Πᾰ́τραις", "", "Patras Achaea Greece"]) + let v = native_list_append(v, ["Πατρεύς", "noun", "Πατρεύς", "Πᾰτρέως", "", "", "Patreus the legendary"]) + let v = native_list_append(v, ["Πάτροκλος", "noun", "Πάτροκλος", "Πᾰτρόκλου", "Πᾰτρόκλῳ", "", "a male given"]) + let v = native_list_append(v, ["Παυλῖνος", "noun", "Παυλῖνος", "Παυλίνου", "Παυλῑ́νῳ", "", "Paulinus"]) + let v = native_list_append(v, ["Παυσανίας", "noun", "Παυσανίας", "Παυσᾰνῐ́ου", "Παυσᾰνῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Πεδάριτος", "noun", "Πεδάριτος", "Πεδαρίτου", "Πεδαρίτῳ", "", "Pedaritus"]) + let v = native_list_append(v, ["Πήδασα", "noun", "Πήδᾰσᾰ", "Πηδᾰ́σων", "Πηδᾰ́σοις", "", "Pedasa"]) + let v = native_list_append(v, ["Πηδασεύς", "noun", "Πηδᾰσῆς", "Πηδᾰσέως", "Πηδᾰσεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πηγαί", "noun", "Πηγῶν", "Πηγῶν", "Πηγαῖς", "", "Pegae"]) + let v = native_list_append(v, ["Πήγασος", "noun", "Πήγασος", "Πηγᾰ́σου", "Πηγᾰ́σῳ", "", "Pegasus"]) + let v = native_list_append(v, ["Πελασγός", "noun", "Πελασγοί", "Πελασγοῦ", "Πελασγῷ", "", "a Pelasgian"]) + let v = native_list_append(v, ["Πελασγίς", "noun", "Πελασγῐ́δες", "Πελασγῐ́δος", "Πελασγῐ́δῐ", "", "a female Pelasgian"]) + let v = native_list_append(v, ["Πελασγιώτης", "noun", "Πελασγῐῶται", "Πελασγιώτου", "Πελασγῐώτῃ", "", "a Pelasgian"]) + let v = native_list_append(v, ["Πελασγιῶτις", "noun", "Πελασγῐώτῐδες", "Πελασγιώτιδος", "Πελασγῐώτῐδῐ", "", "a female Pelasgian"]) + let v = native_list_append(v, ["Πηλεύς", "noun", "Πηλεύς", "Πηλέως", "Πηλεῖ", "", "Peleus"]) + let v = native_list_append(v, ["Πελίας", "noun", "Πελίας", "Πελίου", "Πελίᾳ", "", "Pelias"]) + let v = native_list_append(v, ["Πελιάς", "noun", "Πελιᾰ́δες", "Πελιᾰ́δος", "Πελιᾰ́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Πήλιον", "noun", "Πήλιον", "Πηλῐ́ου", "Πηλῐ́ῳ", "", "Pelion Thessaly Greece"]) + let v = native_list_append(v, ["Πέλλα", "noun", "Πέλλα", "Πέλλης", "Πέλλῃ", "", "Pella Macedonia Greece"]) + let v = native_list_append(v, ["Πελλήνη", "noun", "Πελλήνη", "Πελλήνης", "Πελλήνῃ", "", "Pellana Pellene Laconia"]) + let v = native_list_append(v, ["Πελληνεύς", "noun", "Πελληνῆς", "Πελληνέως", "Πελληνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πελοπίδας", "noun", "Πελοπίδας", "Πελοπῐ́δου", "Πελοπῐ́δᾳ", "", "Aeolic and Doric"]) + let v = native_list_append(v, ["Πελοπόννησος", "noun", "Πελοπόννησος", "Πελοποννήσου", "Πελοποννήσῳ", "", "the Peloponnese or"]) + let v = native_list_append(v, ["Πέλοψ", "noun", "Πέλοψ", "Πέλοπος", "Πέλοπῐ", "", "Pelops"]) + let v = native_list_append(v, ["Πελοπίδης", "noun", "Πελοπίδης", "Πελοπῐ́δου", "Πελοπῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Περσεφόνη", "noun", "Περσεφόνη", "Περσεφόνης", "Περσεφόνῃ", "", "Persephone Proserpina"]) + let v = native_list_append(v, ["Πέλωρος", "noun", "Πέλωρος", "Πελώρου", "Πελώρῳ", "", "Cape Pelorus Capo"]) + let v = native_list_append(v, ["Πηλούσιον", "noun", "Πηλούσιον", "Πηλουσῐ́ου", "Πηλουσῐ́ῳ", "", "Pelusium Lower Egypt"]) + let v = native_list_append(v, ["Πηνελόπη", "noun", "Πηνελόπη", "Πηνελόπης", "Πηνελόπῃ", "", "a female given"]) + let v = native_list_append(v, ["Πηνειός", "noun", "Πηνειός", "Πηνειοῦ", "Πηνειῷ", "", "Peneus a river"]) + let v = native_list_append(v, ["Πενθεύς", "noun", "Πενθεύς", "Πενθέως", "Πενθεῖ", "", "Pentheus"]) + let v = native_list_append(v, ["Πεπάρηθος", "noun", "Πεπάρηθος", "Πεπᾰρήθου", "Πεπᾰρήθῳ", "", "The name of"]) + let v = native_list_append(v, ["Περδίκκας", "noun", "Περδίκκας", "Περδῐ́κκου", "Περδῐ́κκᾳ", "", "Perdiccas"]) + let v = native_list_append(v, ["Πέργαμον", "noun", "Πέργαμον", "Περγᾰ́μου", "Περγᾰ́μῳ", "", "Pergamon Pergamum Bergama"]) + let v = native_list_append(v, ["Περίανδρος", "noun", "Περῐ́ᾰνδροι", "Περῐᾰ́νδρου", "Περῐᾰ́νδρῳ", "", "a male given"]) + let v = native_list_append(v, ["Περικλῆς", "noun", "Περικλῆς", "Περῐκλέους", "Περῐκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Περικλύμενος", "noun", "Περῐκλῠ́μενοι", "Περῐκλῠμένου", "Περῐκλῠμένῳ", "", "Poriclymenus Periclymenus"]) + let v = native_list_append(v, ["Πέρινθος", "noun", "Πέρινθος", "Περίνθου", "Περῐ́νθῳ", "", "Perinthus Heraclea Thrace"]) + let v = native_list_append(v, ["Περραιβός", "noun", "Περραιβοί", "Περραιβοῦ", "Περραιβῷ", "", "a Perrhaebian"]) + let v = native_list_append(v, ["Περραιβία", "noun", "Περραιβία", "Περραιβῐ́ᾱς", "Περραιβῐ́ᾳ", "", "Perrhaebia"]) + let v = native_list_append(v, ["Περσική", "noun", "Περσική", "Περσῐκῆς", "Περσῐκῇ", "", "Persia"]) + let v = native_list_append(v, ["Φαίαξ", "noun", "Φαίαξ", "Φαίᾱκος", "Φαίᾱκῐ", "", "Phaeax"]) + let v = native_list_append(v, ["Φαίδων", "noun", "Φαίδων", "Φαίδωνος", "Φαίδωνῐ", "", "Phaedo"]) + let v = native_list_append(v, ["Φαίδρα", "noun", "Φαίδρα", "Φαίδρᾱς", "Φαίδρᾳ", "", "Phaedra"]) + let v = native_list_append(v, ["Φαιδρία", "noun", "Φαιδρία", "Φαιδρῐ́ᾱς", "Φαιδρῐ́ᾳ", "", "Phaedria"]) + let v = native_list_append(v, ["Φαῖδρος", "noun", "Φαῖδρος", "Φαίδρου", "Φαίδρῳ", "", "Phaedrus"]) + let v = native_list_append(v, ["Φαέθων", "noun", "Φαέθων", "Φᾰέθοντος", "Φᾰέθοντῐ", "", "one of the"]) + let v = native_list_append(v, ["Φάληρον", "noun", "Φάληρον", "Φᾰλήρου", "Φᾰλήρῳ", "", "Phalerum Faliro Attica"]) + let v = native_list_append(v, ["Φαληρεύς", "noun", "Φᾰληρῆς", "Φᾰληρέως", "Φᾰληρεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Φαρνάβαζος", "noun", "Φαρνάβαζος", "Φαρναβάζου", "Φαρναβάζῳ", "", "a male given"]) + let v = native_list_append(v, ["Φαρνάκης", "noun", "Φαρνάκης", "Φᾰρνᾰ́κου", "Φᾰρνᾰ́κῃ", "", "a male given"]) + let v = native_list_append(v, ["Φάρος", "noun", "Φάρος", "Φᾰ́ρου", "Φᾰ́ρῳ", "", "Pharos a former"]) + let v = native_list_append(v, ["Φάρσαλος", "noun", "Φάρσαλος", "Φᾰρσᾱ́λου", "Φᾰρσᾱ́λῳ", "", "Pharsalus Farsala Thessaly"]) + let v = native_list_append(v, ["Φαρσαλία", "noun", "Φαρσαλία", "Φᾰρσᾱλῐ́ᾱς", "Φᾰρσᾱλῐ́ᾳ", "", "Pharsalia"]) + let v = native_list_append(v, ["Φασηλίς", "noun", "Φασηλίς", "Φᾰσηλῐ́δος", "Φᾰσηλῐ́δῐ", "", "Phaselis"]) + let v = native_list_append(v, ["Φασηλίτης", "noun", "Φᾰσηλῖται", "Φᾰσηλῑ́του", "Φᾰσηλῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Φᾶσις", "noun", "Φᾶσις", "Φᾱ́σῐος", "Φᾱ́σῑ", "", "the river Phasis"]) + let v = native_list_append(v, ["Φειά", "noun", "Φειά", "Φειᾶς", "Φειᾷ", "", "Pheia"]) + let v = native_list_append(v, ["Φήμιος", "noun", "Φήμιος", "Φημῐ́ου", "Φημῐ́ῳ", "", "Phemius"]) + let v = native_list_append(v, ["Φεραί", "noun", "Φερῶν", "Φερῶν", "Φεραῖς", "", "Pherae Thessaly Greece"]) + let v = native_list_append(v, ["Φέρης", "noun", "Φέρης", "Φέρητος", "Φέρητῐ", "", "Pheres"]) + let v = native_list_append(v, ["Φερητίδης", "noun", "Φερητῐ́δαι", "Φερητῐ́δου", "Φερητῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Φειδίας", "noun", "Φειδίας", "Φειδῐ́ου", "Φειδῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Φειδιππίδης", "noun", "Φειδιππίδης", "Φειδῐππῐ́δου", "Φειδῐππῐ́δῃ", "", "Pheidippides Phidippides"]) + let v = native_list_append(v, ["Φείδων", "noun", "Φείδων", "Φείδωνος", "Φείδωνῐ", "", "Phidon Pheido"]) + let v = native_list_append(v, ["Φίλαι", "noun", "Φῐ́λαι", "Φῐλῶν", "Φῐ́λαις", "", "Philae"]) + let v = native_list_append(v, ["Φιλάμμων", "noun", "Φιλάμμων", "Φῐλάμμονος", "Φῐλάμμονῐ", "", "Philammon"]) + let v = native_list_append(v, ["Φίληβος", "noun", "Φίληβος", "Φῐλήβου", "Φῐλήβῳ", "", "a male given"]) + let v = native_list_append(v, ["Φιλήμων", "noun", "Φιλήμων", "Φῐλήμονος", "Φῐλήμονῐ", "", "a male given"]) + let v = native_list_append(v, ["Φίλισκος", "noun", "Φίλισκος", "Φῐλῐ́σκου", "Φῐλῐ́σκῳ", "", "a male given"]) + let v = native_list_append(v, ["Φίλων", "noun", "Φίλων", "Φῐ́λωνος", "Φῐ́λωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Φιλοκράτης", "noun", "Φιλοκράτης", "Φῐλοκρᾰ́τους", "Φῐλοκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Φιλοκτήτης", "noun", "Φιλοκτήτης", "Φῐλοκτήτου", "Φῐλοκτήτῃ", "", "a male given"]) + let v = native_list_append(v, ["Φιλομήλη", "noun", "Φιλομήλη", "Φῐλομήλης", "Φῐλομήλῃ", "", "a female given"]) + let v = native_list_append(v, ["Φιλοποίμην", "noun", "Φιλοποίμην", "Φῐλοποίμενος", "Φῐλοποίμενῐ", "", "Philopoemen"]) + let v = native_list_append(v, ["Φινεύς", "noun", "Φινεύς", "Φῑνέως", "Φῑνεῖ", "", "Phineus"]) + let v = native_list_append(v, ["Φλεγέθων", "noun", "Φλεγέθων", "Φλεγέθοντος", "Φλεγέθοντῐ", "", "the river Phlegethon"]) + let v = native_list_append(v, ["Φλέγρα", "noun", "Φλέγρα", "Φλέγρᾱς", "Φλέγρᾳ", "", "Phlegra"]) + let v = native_list_append(v, ["Φλεγραία", "noun", "Φλεγραία", "Φλεγραίᾱς", "Φλεγραίᾳ", "", "the Phlegraean Fields"]) + let v = native_list_append(v, ["Φλεγύας", "noun", "Φλεγύας", "Φλεγύου", "Φλεγύᾳ", "", "Phlegyas"]) + let v = native_list_append(v, ["Φλειοῦς", "noun", "Φλειοῦς", "Φλειοῦντος", "Φλειοῦντῐ", "", "Phlius Argolis Greece"]) + let v = native_list_append(v, ["Φῶκος", "noun", "Φῶκος", "Φώκου", "Φώκῳ", "", "Phocus"]) + let v = native_list_append(v, ["Φωκίς", "noun", "Φωκίς", "Φωκῐ́δος", "Φωκῐ́δῐ", "", "Phocis a region"]) + let v = native_list_append(v, ["Φωκεύς", "noun", "Φωκῆς", "Φωκέως", "Φωκεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Φώκαια", "noun", "Φώκαια", "Φωκαίᾱς", "Φωκαίᾳ", "", "Phocaea an ancient"]) + let v = native_list_append(v, ["Φωκαιεύς", "noun", "Φωκαιῆς", "Φωκαιέως", "Φωκαιεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Φωκίων", "noun", "Φωκίων", "Φωκῐ́ωνος", "Φωκῐ́ωνῐ", "", "Phocion"]) + let v = native_list_append(v, ["Φοῖβος", "noun", "Φοῖβος", "Φοίβου", "Φοίβῳ", "", "Phoebus"]) + let v = native_list_append(v, ["Φοίβη", "noun", "Φοίβη", "Φοίβης", "Φοίβῃ", "", "Phoebe"]) + let v = native_list_append(v, ["Φοιβίδας", "noun", "Φοιβίδας", "Φοιβῐ́δου", "Φοιβῐ́δᾳ", "", "a male given"]) + let v = native_list_append(v, ["Φοινίκη", "noun", "Φοινίκη", "Φοινῑ́κης", "Φοινῑ́κῃ", "", "Phoenicia"]) + let v = native_list_append(v, ["Φοίνισσα", "noun", "Φοίνισσα", "Φοινῑ́σσης", "Φοινῑ́σσῃ", "", "Phoenicia"]) + let v = native_list_append(v, ["Φολόη", "noun", "Φολόη", "Φολόης", "Φολόῃ", "", "Mount Pholoe"]) + let v = native_list_append(v, ["Φόρβας", "noun", "Φόρβας", "Φόρβᾰντος", "Φόρβᾰντῐ", "", "Phorbas"]) + let v = native_list_append(v, ["Φόρκυς", "noun", "Φόρκυς", "Φόρκῠος", "Φόρκῠῐ̈", "", "Phorcys"]) + let v = native_list_append(v, ["Φόρκος", "noun", "Φόρκος", "Φόρκου", "Φόρκῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Φορκίς", "noun", "Φορκῐ́δες", "Φορκῐ́δος", "Φορκῐ́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Φορμίων", "noun", "Φορμίων", "Φορμῐ́ωνος", "Φορμῐ́ωνῐ", "", "Phormio"]) + let v = native_list_append(v, ["Φρίξος", "noun", "Φρίξος", "Φρῐ́ξου", "Φρῐ́ξῳ", "", "Phrixus"]) + let v = native_list_append(v, ["Φρύξ", "noun", "Φρῠ́γες", "Φρῠγός", "Φρῠγῐ́", "", "a Phrygian"]) + let v = native_list_append(v, ["Φρύνη", "noun", "Φρύνη", "Φρῡ́νης", "Φρῡ́νῃ", "", "Mnesarete a courtesan"]) + let v = native_list_append(v, ["Φρύνιχος", "noun", "Φρύνιχος", "Φρῡνῐ́χου", "Φρῡνῐ́χῳ", "", "Phrynichus"]) + let v = native_list_append(v, ["Φθία", "noun", "Φθία", "Φθῑ́ᾱς", "Φθῑ́ᾳ", "", "Phthia Greece"]) + let v = native_list_append(v, ["Φθίη", "noun", "Φθίη", "Φθῑ́ης", "Φθῑ́ῃ", "", "Ionic form of"]) + let v = native_list_append(v, ["Φθιώτης", "noun", "Φθῑῶται", "Φθῑώτου", "Φθῑώτῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Φθιῶτις", "noun", "Φθιῶτις", "Φθῑώτῐδος", "Φθῑώτῐδῐ", "", "the land of"]) + let v = native_list_append(v, ["Φυλή", "noun", "Φυλή", "Φῡλῆς", "Φῡλῇ", "", "Phyle Fyli Attica"]) + let v = native_list_append(v, ["Μήνη", "noun", "Μήνη", "Μήνης", "Μήνῃ", "", "The Moon."]) + let v = native_list_append(v, ["Λῖνος", "noun", "Λῖνος", "Λῑ́νου", "Λῑ́νῳ", "", "a male given"]) + let v = native_list_append(v, ["Πικηνός", "noun", "Πῑκηνοί", "Πῑκηνοῦ", "Πῑκηνῷ", "", "one of the"]) + let v = native_list_append(v, ["Πικηνίς", "noun", "Πικηνίς", "Πῑκηνῐ́δος", "Πῑκηνῐ́δῐ", "", "Picenum Marche Italy"]) + let v = native_list_append(v, ["Πίερες", "noun", "Πῑ́ερες", "Πῑέρων", "Πῑ́ερσῐ", "", "Pieres a Thracian"]) + let v = native_list_append(v, ["Πιερία", "noun", "Πιερία", "Πῑερῐ́ᾱς", "Πῑερῐ́ᾳ", "", "Pieria Macedonia Greece"]) + let v = native_list_append(v, ["Πίγρης", "noun", "Πίγρης", "Πίγρητος", "Πίγρητῐ", "", "Pigres"]) + let v = native_list_append(v, ["Πίνδαρος", "noun", "Πίνδαρος", "Πινδᾰ́ρου", "Πινδᾰ́ρῳ", "", "Pindar"]) + let v = native_list_append(v, ["Πίνδος", "noun", "Πίνδος", "Πῐ́νδου", "Πῐ́νδῳ", "", "Mount Pindus"]) + let v = native_list_append(v, ["Πειραεύς", "noun", "Πειραεύς", "Πειρᾱέως", "Πειρᾱεῖ", "", "Piraeus Athens Attica"]) + let v = native_list_append(v, ["Πειραιεύς", "noun", "Πειραιεύς", "Πειραιῶς", "Πειραιεῖ", "", "Piraeus Athens Attica"]) + let v = native_list_append(v, ["Πειρήνη", "noun", "Πειρήνη", "Πειρήνης", "Πειρήνῃ", "", "Pirene"]) + let v = native_list_append(v, ["Πειρίθους", "noun", "Πειρίθους", "Πειρῐ́θου", "Πειρῐ́θῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Πειρίθοος", "noun", "Πειρίθοος", "Πειρῐθόου", "Πειρῐθόῳ", "", "a male given"]) + let v = native_list_append(v, ["Πῖσα", "noun", "Πῖσα", "Πῑ́σης", "Πῑ́σῃ", "", "Pisa ancient place"]) + let v = native_list_append(v, ["Πισάτης", "noun", "Πῑσᾶται", "Πῑσᾱ́του", "Πῑσᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πείσανδρος", "noun", "Πείσανδρος", "Πεισᾰ́νδρου", "Πεισᾰ́νδρῳ", "", "a male given"]) + let v = native_list_append(v, ["Πισίδης", "noun", "Πῐσῐ́δαι", "Πῐσῐ́δου", "Πῐσῐ́δῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πισιδία", "noun", "Πισιδία", "Πῐσῐδῐ́ᾱς", "Πῐσῐδῐ́ᾳ", "", "Pisidia"]) + let v = native_list_append(v, ["Πνύξ", "noun", "Πνύξ", "Πῠκνός", "Πῠκνῐ́", "", "The Pnyx Athens"]) + let v = native_list_append(v, ["Πεισίστρατος", "noun", "Πεισίστρατος", "Πεισῐστρᾰ́του", "Πεισῐστρᾰ́τῳ", "", "a male given"]) + let v = native_list_append(v, ["Πεισιστρατίδης", "noun", "Πεισῐστρᾰτῐ́δαι", "Πεισῐστρᾰτῐ́δου", "Πεισῐστρᾰτῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Πείσων", "noun", "Πείσωνες", "Πείσωνος", "Πείσωνῐ", "", "Piso a member"]) + let v = native_list_append(v, ["Πισσούθνης", "noun", "Πισσούθνης", "Πισσούθνου", "Πισσούθνῃ", "", "a male given"]) + let v = native_list_append(v, ["Πιττακός", "noun", "Πιττακός", "Πιττᾰκοῦ", "Πιττᾰκῷ", "", "Pittacus"]) + let v = native_list_append(v, ["Πιτθεύς", "noun", "Πιτθεύς", "Πιτθέως", "Πῐτθεῖ", "", "Pittheus"]) + let v = native_list_append(v, ["Πλακεντία", "noun", "Πλακεντία", "Πλᾰκεντῐ́ᾱς", "Πλᾰκεντῐ́ᾳ", "", "Placentia Piacenza Emilia-Romagna"]) + let v = native_list_append(v, ["Πλάγχος", "noun", "Πλάγχος", "Πλᾰ́γχου", "Πλᾰ́γχῳ", "", "Plancus"]) + let v = native_list_append(v, ["Πλάταια", "noun", "Πλάταια", "Πλᾰταίᾱς", "Πλᾰταίᾳ", "", "Plataea Boeotia Greece"]) + let v = native_list_append(v, ["Πλαταιαί", "noun", "Πλᾰταιαί", "Πλᾰταιῶν", "Πλᾰταιαῖς", "", "alternative form of"]) + let v = native_list_append(v, ["Πλαταιεύς", "noun", "Πλᾰταιῆς", "Πλᾰταιέως", "Πλᾰταιεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πλειάς", "noun", "Πλειᾰ́δες", "Πλειᾰ́δος", "Πλειᾰ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Κυκλάδες", "noun", "Κυκλάδες", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["Πλείσταρχος", "noun", "Πλείσταρχος", "Πλειστᾰ́ρχου", "Πλειστᾰ́ρχῳ", "", "a male given"]) + let v = native_list_append(v, ["Πλειστοάναξ", "noun", "Πλειστοάναξ", "Πλειστοᾰ́νᾰκτος", "Πλειστοᾰ́νᾰκτῐ", "", "a male given"]) + let v = native_list_append(v, ["Πλειστός", "noun", "Πλειστός", "Πλειστοῦ", "Πλειστῷ", "", "the river Pleistus"]) + let v = native_list_append(v, ["Πλημμύριον", "noun", "Πλημμύριον", "Πλημμῡρῐ́ου", "Πλημμῡρῐ́ῳ", "", "Plemmyrium"]) + let v = native_list_append(v, ["Πλευρών", "noun", "Πλευρών", "Πλευρῶνος", "Πλευρῶνῐ", "", "Pleuron a son"]) + let v = native_list_append(v, ["Πλούταρχος", "noun", "Πλούταρχος", "Πλουτάρχου", "Πλουτᾰ́ρχῳ", "", "a male given"]) + let v = native_list_append(v, ["Πλοῦτος", "noun", "Πλοῦτος", "Πλούτου", "Πλούτῳ", "", "Plutus"]) + let v = native_list_append(v, ["Πάδος", "noun", "Πάδος", "Πᾰ́δου", "Πᾰ́δῳ", "", "the river Po"]) + let v = native_list_append(v, ["Ποίας", "noun", "Ποίας", "Ποίᾰντος", "Ποίᾰντῐ", "", "a male given"]) + let v = native_list_append(v, ["Πολυδεύκης", "noun", "Πολυδεύκης", "Πολῠδεύκου", "Πολῠδεύκῃ", "", "Polydeuces Pollux"]) + let v = native_list_append(v, ["Πόλυβος", "noun", "Πόλυβος", "Πολῠ́βου", "Πολῠ́βῳ", "", "a male given"]) + let v = native_list_append(v, ["Πολύβιος", "noun", "Πολῠ́βῐοι", "Πολῠβῐ́ου", "Πολῠβῐ́ῳ", "", "Polybius"]) + let v = native_list_append(v, ["Πολυκράτης", "noun", "Πολυκράτης", "Πολῠκρᾰ́τους", "Πολῠκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Πολύδωρος", "noun", "Πολύδωρος", "Πολῠδώρου", "Πολῠδώρῳ", "", "a male given"]) + let v = native_list_append(v, ["Πολύγνωτος", "noun", "Πολύγνωτος", "Πολῠγνώτου", "Πολῠγνώτῳ", "", "a male given"]) + let v = native_list_append(v, ["Πολυμνία", "noun", "Πολυμνία", "Πολῡμνῐ́ᾱς", "Πολῡμνῐ́ᾳ", "", "Polyhymnia"]) + let v = native_list_append(v, ["Πολυμήστωρ", "noun", "Πολυμήστωρ", "Πολῠμήστορος", "Πολῠμήστορῐ", "", "Polymestor"]) + let v = native_list_append(v, ["Πολυνείκης", "noun", "Πολυνείκης", "Πολῠνείκους", "Πολῠνείκει", "", "Polynices"]) + let v = native_list_append(v, ["Ἀμάσεια", "noun", "Ἀμάσεια", "Ἀμασείᾱς", "Ἀμασείᾳ", "", "Amaseia Pontus Amasya"]) + let v = native_list_append(v, ["Πολύφημος", "noun", "Πολύφημος", "Πολῠφήμου", "Πολῠφήμῳ", "", "a male given"]) + let v = native_list_append(v, ["Πολυξένη", "noun", "Πολυξένη", "Πολῠξένης", "Πολῠξένῃ", "", "a female given"]) + let v = native_list_append(v, ["Πομπήϊος", "noun", "Πομπήϊος", "Πομπηῐ̈́ου", "Πομπηῐ̈́ῳ", "", "Pompey"]) + let v = native_list_append(v, ["Πομπήϊοι", "noun", "Πομπήῐ̈οι", "Πομπηῐ̈́ων", "Πομπηῐ̈́οις", "", "Pompeii Pompei Campania"]) + let v = native_list_append(v, ["Πομπίλιος", "noun", "Πομπίλιος", "Πομπῐλῐ́ου", "Πομπῐλῐ́ῳ", "", "Pompilius"]) + let v = native_list_append(v, ["Πομπώνιος", "noun", "Πομπώνῐοι", "Πομπωνῐ́ου", "Πομπωνῐ́ῳ", "", "Pomponius a member"]) + let v = native_list_append(v, ["Πομπωνία", "noun", "Πομπωνῐ́αι", "Πομπωνῐ́ᾱς", "Πομπωνῐ́ᾳ", "", "Pomponia a female"]) + let v = native_list_append(v, ["Πορφυρίων", "noun", "Πορφυρίων", "Πορφῠρῐ́ωνος", "Πορφῠρῐ́ωνῐ", "", "Porphyrion"]) + let v = native_list_append(v, ["Θερμοπύλαι", "noun", "Θερμοπῠ́λαι", "Θερμοπῠλῶν", "Θερμοπῠ́λαις", "", "Thermopylae a narrow"]) + let v = native_list_append(v, ["Πορσίνας", "noun", "Πορσίνας", "Πορσῐ́νᾱ", "Πορσῐ́νᾳ", "", "Lars Porsena"]) + let v = native_list_append(v, ["Πῶρος", "noun", "Πῶρος", "Πώρου", "Πώρῳ", "", "Porus"]) + let v = native_list_append(v, ["Ποσειδῶν", "noun", "Ποσειδῶν", "Ποσειδῶνος", "Ποσειδῶνῐ", "", "Poseidon"]) + let v = native_list_append(v, ["πυραμίς", "noun", "πῡρᾰμῐ́δες", "πῡρᾰμῐ́δος", "πῡρᾰμῐ́δῐ", "", "pyramid"]) + let v = native_list_append(v, ["μηνίσκος", "noun", "μηνῐ́σκοι", "μηνῐ́σκου", "μηνῐ́σκῳ", "", "crescent"]) + let v = native_list_append(v, ["Ποστούμιος", "noun", "Ποστούμιος", "Ποστουμῐ́ου", "Ποστουμῐ́ῳ", "", "Postumius"]) + let v = native_list_append(v, ["Ποτίδαια", "noun", "Ποτίδαια", "Ποτῑδαίᾱς", "Ποτῑδαίᾳ", "", "Potidaea"]) + let v = native_list_append(v, ["Ποτιδαιάτης", "noun", "Ποτῑδαιᾶται", "Ποτῑδαιᾱ́του", "Ποτῑδαιᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πραινεστόν", "noun", "Πραινεστόν", "Πραινεστοῦ", "Πραινεστῷ", "", "Praeneste Latium Palestrina"]) + let v = native_list_append(v, ["Πραινεστῖνος", "noun", "Πραινεστῖνοι", "Πραινεστῑ́νου", "Πραινεστῑ́νῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Πρασιαί", "noun", "Πρᾰσιαί", "Πρᾰσιῶν", "Πρᾰσιαῖς", "", "Prasiae Arcadia Greece"]) + let v = native_list_append(v, ["Πρίαμος", "noun", "Πρίαμος", "Πρῐᾰ́μου", "Πρῐᾰ́μῳ", "", "Priam"]) + let v = native_list_append(v, ["Πριαμίδης", "noun", "Πρῐᾰμῐ́δαι", "Πρῐᾰμῐ́δου", "Πρῐᾰμῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Πριήνη", "noun", "Πριήνη", "Πριήνης", "Πριήνῃ", "", "Priene Ionia"]) + let v = native_list_append(v, ["Πριηνεύς", "noun", "Πριηνῆς", "Πριηνέως", "Πριηνεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Προκλῆς", "noun", "Προκλῆς", "Προκλέους", "Προκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Πρόκνη", "noun", "Πρόκνη", "Πρόκνης", "Πρόκνῃ", "", "Procne"]) + let v = native_list_append(v, ["Προκόννησος", "noun", "Προκόννησος", "Προκοννήσου", "Προκοννήσῳ", "", "Proconnesus Marmara Island"]) + let v = native_list_append(v, ["Πρόκρις", "noun", "Πρόκρις", "Πρόκρῐδος", "Πρόκρῐδῐ", "", "Procris"]) + let v = native_list_append(v, ["Προκρούστης", "noun", "Προκρούστης", "Προκρούστου", "Προκρούστῃ", "", "Procrustes"]) + let v = native_list_append(v, ["Προκλήϊος", "noun", "Προκλήϊος", "Προκληῐ̈́ου", "Προκληῐ̈́ῳ", "", "Proculeius"]) + let v = native_list_append(v, ["Πρόδικος", "noun", "Πρόδικος", "Προδῐ́κου", "Προδῐ́κῳ", "", "Prodicus"]) + let v = native_list_append(v, ["Προῖτος", "noun", "Προῖτος", "Προίτου", "Προίτῳ", "", "Proetus"]) + let v = native_list_append(v, ["Προμηθεύς", "noun", "Προμηθεύς", "Προμηθέως", "Προμηθεῖ", "", "Prometheus"]) + let v = native_list_append(v, ["Προποντίς", "noun", "Προποντίς", "Προποντῐ́δος", "Προποντῐ́δῐ", "", "Sea of Marmara"]) + let v = native_list_append(v, ["Πρωταγόρας", "noun", "Πρωταγόρας", "Πρωτᾰγόρου", "Πρωτᾰγόρᾳ", "", "a male given"]) + let v = native_list_append(v, ["Πρωτεσίλαος", "noun", "Πρωτεσίλαος", "Πρωτεσῐλᾱ́ου", "Πρωτεσῐλᾱ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["Πρωτεύς", "noun", "Πρωτεύς", "Πρωτέως", "Πρωτεῖ", "", "Proteus"]) + let v = native_list_append(v, ["Πρόξενος", "noun", "Πρόξενος", "Προξένου", "Προξένῳ", "", "a male given"]) + let v = native_list_append(v, ["Προυσίας", "noun", "Προυσίας", "Προυσῐ́ου", "Προυσῐ́ᾳ", "", "Prusias"]) + let v = native_list_append(v, ["Ψαμμήτιχος", "noun", "Ψαμμήτιχος", "Ψᾰμμητῐ́χος", "Ψᾰμμητῐ́χῳ", "", "a male given"]) + let v = native_list_append(v, ["Πτολεμαῖος", "noun", "Πτολεμαῖος", "Πτολεμαίου", "Πτολεμαίῳ", "", "a male given"]) + let v = native_list_append(v, ["Σελήνη", "noun", "Σελήνη", "Σελήνης", "Σελήνῃ", "", "the earths Moon"]) + let v = native_list_append(v, ["Ποπλίκιος", "noun", "Ποπλίκιος", "Ποπλῐκῐ́ου", "Ποπλῐκῐ́ῳ", "", "Publicius"]) + let v = native_list_append(v, ["Ποπλικόλας", "noun", "Ποπλικόλας", "Ποπλῐκόλᾱ", "Ποπλῐκόλᾳ", "", "Publicola"]) + let v = native_list_append(v, ["Πόπλιος", "noun", "Πόπλιος", "Ποπλῐ́ου", "Ποπλῐ́ῳ", "", "Publius"]) + let v = native_list_append(v, ["Πύδνα", "noun", "Πύδνα", "Πύδνης", "Πῠ́δνῃ", "", "Pydna Pieria Macedonia"]) + let v = native_list_append(v, ["Πυλάδης", "noun", "Πυλάδης", "Πῠλᾰ́δου", "Πῠλᾰ́δῃ", "", "Pylades"]) + let v = native_list_append(v, ["Πύλαι", "noun", "Πῠ́λαι", "Πῠλῶν", "Πῠ́λαις", "", "Pylae"]) + let v = native_list_append(v, ["Πύλος", "noun", "Πύλος", "Πῠ́λου", "Πῠ́λῳ", "", "Pylos Messenia Greece"]) + let v = native_list_append(v, ["Πύραμος", "noun", "Πύραμος", "Πῡρᾰ́μου", "Πῡρᾰ́μῳ", "", "the river Pyramus"]) + let v = native_list_append(v, ["Πυρήνη", "noun", "Πυρήνη", "Πῡρήνης", "Πῡρήνῃ", "", "the Pyrenees mountains"]) + let v = native_list_append(v, ["Πυριλάμπης", "noun", "Πυριλάμπης", "Πῠρῐλᾰ́μπου", "Πῠρῐλᾰ́μπῃ", "", "Pyrilampes"]) + let v = native_list_append(v, ["Πύρρα", "noun", "Πύρρα", "Πῠ́ρρᾱς", "Πῠ́ρρᾳ", "", "Pyrrha"]) + let v = native_list_append(v, ["Πύρρος", "noun", "Πύρρος", "Πῠ́ρρου", "Πῠ́ρρῳ", "", "Pyrrhus"]) + let v = native_list_append(v, ["Πυθαγόρας", "noun", "Πῡθᾰγόραι", "Πῡθᾰγόρου", "Πῡθᾰγόρᾳ", "", "a male given"]) + let v = native_list_append(v, ["Πυθαγορικός", "noun", "Πῡθᾰγορῐκοί", "Πῡθᾰγορῐκοῦ", "Πῡθᾰγορῐκῷ", "", "a Pythagorean"]) + let v = native_list_append(v, ["Πυθόδωρος", "noun", "Πυθόδωρος", "Πῡθοδώρου", "Πῡθοδώρῳ", "", "a male given"]) + let v = native_list_append(v, ["Κυντίλιος", "noun", "Κυντίλιος", "Κυντῐλῐ́ου", "Κυντῐλῐ́ῳ", "", "Quintilius"]) + let v = native_list_append(v, ["ὑμνογράφος", "noun", "ῠ̔μνογρᾰ́φοι", "ῠ̔μνογρᾰ́φου", "ῠ̔μνογρᾰ́φῳ", "", "a poet who"]) + let v = native_list_append(v, ["Πυθώ", "noun", "Πυθώ", "Πῡθοῦς", "Πῡθοῖ", "", "Pytho the ancient"]) + let v = native_list_append(v, ["Κόϊντος", "noun", "Κόϊντος", "Κοῐ̈́ντου", "Κοῐ̈́ντῳ", "", "Quintus"]) + let v = native_list_append(v, ["Κυρῖνος", "noun", "Κυρῖνος", "Κυρῑ́νου", "Κυρῑ́νῳ", "", "Quirinus"]) + let v = native_list_append(v, ["Κυρίτης", "noun", "Κυρῖται", "Κυρῑ́του", "Κυρῑ́τῃ", "", "one of the"]) + let v = native_list_append(v, ["Ῥάβεννα", "noun", "Ῥάβεννα", "Ῥᾰβέννης", "Ῥᾰβέννῃ", "", "Ravenna Emilia-Romagna Italy"]) + let v = native_list_append(v, ["Ῥῶμος", "noun", "Ῥῶμος", "Ῥώμου", "Ῥώμῳ", "", "Remus"]) + let v = native_list_append(v, ["Ῥώμυλος", "noun", "Ῥώμυλος", "Ῥωμῠ́λου", "Ῥωμῠ́λῳ", "", "Romulus"]) + let v = native_list_append(v, ["ῥῆξ", "noun", "ῥῆγες", "ῥηγός", "ῥηγῐ́", "", "alternative form of"]) + let v = native_list_append(v, ["Ῥαδάμανθυς", "noun", "Ῥαδάμανθυς", "Ῥᾰδᾰμάνθῠος", "Ῥᾰδᾰμάνθῠῐ̈", "", "Rhadamanthys Rhadamanthus"]) + let v = native_list_append(v, ["Ῥαμνοῦς", "noun", "Ῥαμνοῦς", "Ῥᾰμνοῦντος", "Ῥᾰμνοῦντῐ", "", "Rhamnus Attica Greece"]) + let v = native_list_append(v, ["Ῥέα", "noun", "Ῥέα", "Ῥέᾱς", "Ῥέᾳ", "", "Rhea"]) + let v = native_list_append(v, ["Ῥήγιον", "noun", "Ῥήγιον", "Ῥηγῐ́ου", "Ῥηγῐ́ῳ", "", "Rhegium Magna Graecia"]) + let v = native_list_append(v, ["Ῥηγῖνος", "noun", "Ῥηγῖνοι", "Ῥηγῑ́νου", "Ῥηγῑ́νῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ῥήνεια", "noun", "Ῥήνεια", "Ῥηνείᾱς", "Ῥηνείᾳ", "", "Rhenea Rineia Cyclades"]) + let v = native_list_append(v, ["Ῥῆσος", "noun", "Ῥῆσος", "Ῥήσου", "Ῥήσῳ", "", "Rhesus of Thrace"]) + let v = native_list_append(v, ["Ῥῆνος", "noun", "Ῥῆνος", "Ῥήνου", "Ῥήνῳ", "", "the river Rhine"]) + let v = native_list_append(v, ["Ῥίον", "noun", "Ῥῐ́ᾰ", "Ῥῐ́ου", "Ῥῐ́ῳ", "", "Rhium Rio Achaea"]) + let v = native_list_append(v, ["Ῥόδος", "noun", "Ῥόδος", "Ῥόδου", "Ῥόδῳ", "", "Rhodes Dodecanese Greece"]) + let v = native_list_append(v, ["Ῥοδόπη", "noun", "Ῥοδόπη", "Ῥοδόπης", "Ῥοδόπῃ", "", "Rhodope a woman"]) + let v = native_list_append(v, ["Ῥοδῶπις", "noun", "Ῥοδῶπις", "Ῥοδώπῐος", "Ῥοδώπῑ", "", "Rhodopis"]) + let v = native_list_append(v, ["Ῥοίτειον", "noun", "Ῥοίτειον", "Ῥοιτείου", "Ῥοιτείῳ", "", "Rhoeteum Troas Turkey"]) + let v = native_list_append(v, ["Ῥοδανός", "noun", "Ῥοδανός", "Ῥοδᾰνοῦ", "Ῥοδᾰνῷ", "", "Rhone Rhône a"]) + let v = native_list_append(v, ["Ῥώσκιος", "noun", "Ῥώσκιος", "Ῥωσκῐ́ου", "Ῥωσκῐ́ῳ", "", "Roscius"]) + let v = native_list_append(v, ["Ῥωξάνη", "noun", "Ῥωξάνη", "Ῥωξᾱ́νης", "Ῥωξᾱ́νῃ", "", "Roxana wife of"]) + let v = native_list_append(v, ["Ῥουβίκων", "noun", "Ῥουβίκων", "Ῥουβῐ́κωνος", "Ῥουβῐ́κωνῐ", "", "the river Rubicon"]) + let v = native_list_append(v, ["Ῥοῦφος", "noun", "Ῥοῦφος", "Ῥούφου", "Ῥούφῳ", "", "Rufus"]) + let v = native_list_append(v, ["Σαβῖνος", "noun", "Σαβῖνος", "Σᾰβῑ́νου", "Σᾰβῑ́νῳ", "", "Sabinus mythological ancestor"]) + let v = native_list_append(v, ["Σάκης", "noun", "Σᾰ́και", "Σᾰ́κου", "Σᾰ́κῃ", "", "one of the"]) + let v = native_list_append(v, ["Σαδυάττης", "noun", "Σαδυάττης", "Σᾰδῠάττου", "Σαδυάττῃ", "", "Sadyattes"]) + let v = native_list_append(v, ["Σάϊς", "noun", "Σάϊς", "Σάεως", "Σάει", "", "Sais Egypt"]) + let v = native_list_append(v, ["Σαΐτης", "noun", "Σαῗται", "Σαΐτου", "Σαῑ̈́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σαλαμινία", "noun", "Σαλαμινία", "Σᾰλᾰμῑνῐ́ᾱς", "Σᾰλᾰμῑνῐ́ᾳ", "", "the Salaminia"]) + let v = native_list_append(v, ["Σάλιος", "noun", "Σάλῐοι", "Σαλῐ́ου", "Σαλῐ́ῳ", "", "one of the"]) + let v = native_list_append(v, ["Σαλούστιος", "noun", "Σαλούστιος", "Σαλουστῐ́ου", "Σαλουστῐ́ῳ", "", "Sallustius Sallust"]) + let v = native_list_append(v, ["Σαλμωνεύς", "noun", "Σαλμωνεύς", "Σαλμωνέως", "Σαλμωνεῖ", "", "Salmoneus the mythological"]) + let v = native_list_append(v, ["Σαλμύδησος", "noun", "Σαλμύδησος", "Σαλμῠδήσου", "Σαλμῠδήσῳ", "", "Salmydessus Kırklareli Turkey"]) + let v = native_list_append(v, ["Σαυνίτης", "noun", "Σαυνῖται", "Σαυνῑ́του", "Σαυνῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σάμος", "noun", "Σάμος", "Σᾰ́μου", "Σᾰ́μῳ", "", "Samos Northern Aegean"]) + let v = native_list_append(v, ["Σαμοθρᾴκη", "noun", "Σαμοθρᾴκη", "Σᾰμοθρᾴκης", "Σᾰμοθρᾴκῃ", "", "Samothrace East Macedonia"]) + let v = native_list_append(v, ["Σαμόθρᾳξ", "noun", "Σᾰμόθρᾳκες", "Σᾰμόθρᾳκος", "Σᾰμόθρᾳκῐ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σάνη", "noun", "Σάνη", "Σάνης", "Σάνῃ", "", "Sane Sani Greece"]) + let v = native_list_append(v, ["Σαπφώ", "noun", "Σαπφώ", "Σαπφοῦς", "Σαπφοῖ", "", "Sappho"]) + let v = native_list_append(v, ["Σαρακηνός", "noun", "Σαρακηνοί", "Σαρακηνοῦ", "Σαρακηνῷ", "", "a desert-dwelling Arabic"]) + let v = native_list_append(v, ["Σαρδανάπαλλος", "noun", "Σαρδανάπαλλος", "Σαρδᾰνᾰπάλλου", "Σᾰρδᾰνᾰπᾰ́λλῳ", "", "Sardanapallus Sardanapalus"]) + let v = native_list_append(v, ["Σαρδανάπαλος", "noun", "Σαρδανάπαλος", "Σαρδᾱνᾰπάλου", "Σᾰρδᾱνᾰπᾰ́λῳ", "", "Sardanapallus Sardanapalus"]) + let v = native_list_append(v, ["Σαρδώ", "noun", "Σαρδοί", "Σαρδόος", "Σαρδοῖ", "", "Sardinia an island"]) + let v = native_list_append(v, ["Σάρδεις", "noun", "Σᾰ́ρδεις", "Σᾰ́ρδεων", "Σᾰ́ρδεσῐ", "", "Sardis Lydia Sart"]) + let v = native_list_append(v, ["Σαυρομάτης", "noun", "Σαυρομᾰ́ται", "Σαυρομᾰ́του", "Σαυρομᾰ́τῃ", "", "a Sarmatian"]) + let v = native_list_append(v, ["Σαρωνικός", "noun", "Σαρωνικός", "Σᾰρωνῐκοῦ", "Σᾰρωνῐκῷ", "", "the Saronic Gulf"]) + let v = native_list_append(v, ["Τόχαρος", "noun", "Τόχαροι", "Τοχάρου", "Τοχάρῳ", "", "a member of"]) + let v = native_list_append(v, ["Λωΐς", "noun", "Λωΐς", "Λωΐδος", "Λωῐ̈́δῐ", "", "Lois"]) + let v = native_list_append(v, ["Εὐνίκη", "noun", "Εὐνίκη", "Εὐνῑ́κης", "Εὐνῑ́κῃ", "", "a female given"]) + let v = native_list_append(v, ["Ῥόδη", "noun", "Ῥόδη", "Ῥόδης", "Ῥόδῃ", "", "Rhoda"]) + let v = native_list_append(v, ["Τιμόθεος", "noun", "Τιμόθεος", "Τῑμοθέου", "Τῑμοθέῳ", "", "a male given"]) + let v = native_list_append(v, ["Τίτος", "noun", "Τίτος", "Τῐ́του", "Τῐ́τῳ", "", "Titus"]) + let v = native_list_append(v, ["Σαρπηδών", "noun", "Σαρπηδών", "Σαρπηδόνος", "Σαρπηδόνῐ", "", "Sarpedon"]) + let v = native_list_append(v, ["Σατόρνινος", "noun", "Σατόρνινος", "Σατορνῑ́νου", "Σατορνῑ́νῳ", "", "Saturninus"]) + let v = native_list_append(v, ["Σκαιβόλας", "noun", "Σκαιβόλας", "Σκαιβόλᾱ", "Σκαιβόλᾳ", "", "Scaevola"]) + let v = native_list_append(v, ["Σκάμανδρος", "noun", "Σκάμανδρος", "Σκᾰμάνδρου", "Σκᾰμάνδρῳ", "", "the river Scamander"]) + let v = native_list_append(v, ["Σκίαθος", "noun", "Σκίαθος", "Σκιάθου", "Σκιᾰ́θῳ", "", "Sciathus Skiathos Sporades"]) + let v = native_list_append(v, ["Σκιώνη", "noun", "Σκιώνη", "Σκιώνης", "Σκιώνῃ", "", "Scione"]) + let v = native_list_append(v, ["Σκηπίων", "noun", "Σκηπίων", "Σκηπῐ́ωνος", "Σκηπῐ́ωνῐ", "", "Scipio"]) + let v = native_list_append(v, ["Σκίρων", "noun", "Σκίρων", "Σκῑ́ρωνος", "Σκῑ́ρωνῐ", "", "Sciron a Corinthian"]) + let v = native_list_append(v, ["Σκόπας", "noun", "Σκόπας", "Σκόπᾱ", "Σκόπᾳ", "", "Scopas"]) + let v = native_list_append(v, ["Καληδονία", "noun", "Καληδονία", "Κᾰληδονῐ́ᾱς", "Κᾰληδονῐ́ᾳ", "", "Caledonia"]) + let v = native_list_append(v, ["Καληδόνιος", "noun", "Κᾰληδόνῐοι", "Κᾰληδονῐ́ου", "Κᾰληδονῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σκότουσα", "noun", "Σκότουσαι", "Σκοτούσης", "Σκοτούσῃ", "", "Scotusa Skotousa Macedonia"]) + let v = native_list_append(v, ["Σκριβωνία", "noun", "Σκριβωνία", "Σκρῑβωνῐ́ᾱς", "Σκρῑβωνῐ́ᾳ", "", "Scribonia"]) + let v = native_list_append(v, ["Σκύλλα", "noun", "Σκύλλα", "Σκῠ́λλης", "Σκῠ́λλῃ", "", "Scylla"]) + let v = native_list_append(v, ["Σκῦρος", "noun", "Σκῦρος", "Σκῡ́ρου", "Σκῡ́ρῳ", "", "Scyrus Skyros one"]) + let v = native_list_append(v, ["Σκυθική", "noun", "Σκυθική", "Σκῠθῐκής", "Σκῠθῐκῇ", "", "Scythia"]) + let v = native_list_append(v, ["Σκύθης", "noun", "Σκῠ́θαι", "Σκῠ́θου", "Σκῠ́θῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σκύθαινα", "noun", "Σκῠ́θαιναι", "Σκῠθαίνης", "Σκῠθαίνῃ", "", "a female inhabitant"]) + let v = native_list_append(v, ["Σηκοάνας", "noun", "Σηκοάνας", "Σηκοᾰ́νᾱ", "Σηκοᾰ́νᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Σέλευκος", "noun", "Σέλευκος", "Σελεύκου", "Σελεύκῳ", "", "a male given"]) + let v = native_list_append(v, ["Σελευκίδης", "noun", "Σελευκῐ́δαι", "Σελευκῐ́δου", "Σελευκῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Σελευκεύς", "noun", "Σελευκῆς", "Σελευκέως", "Σελευκεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σελινοῦς", "noun", "Σελινοῦς", "Σελῑνοῦντος", "Σελῑνοῦντῐ", "", "Selinus Selinunte Sicily"]) + let v = native_list_append(v, ["Σηκουάνας", "noun", "Σηκουάνας", "Σηκουᾰ́νᾱ", "Σηκουᾰ́νᾳ", "", "the river Sequana"]) + let v = native_list_append(v, ["ταυροκαθάψια", "noun", "ταυροκαθάψια", "", "", "", "bull leaping -"]) + let v = native_list_append(v, ["Σελλασία", "noun", "Σελλασία", "Σελλασῐ́ᾱς", "Σελλασῐ́ᾳ", "", "Sellasia Laconia Greece"]) + let v = native_list_append(v, ["Σηλυμβρία", "noun", "Σηλυμβρία", "Σηλυμβρίᾱς", "Σηλῠμβρῐ́ᾳ", "", "Selymbria Thrace Silivri"]) + let v = native_list_append(v, ["Σηλυμβριανός", "noun", "Σηλυμβριᾱνοί", "Σηλυμβρῐᾱνοῦ", "Σηλυμβριᾱνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σεμέλη", "noun", "Σεμέλη", "Σεμέλης", "Σεμέλῃ", "", "Semele mother of"]) + let v = native_list_append(v, ["Σεμίραμις", "noun", "Σεμίραμις", "Σεμῑρᾰ́μεως", "Σεμῑρᾰ́μει", "", "Semiramis"]) + let v = native_list_append(v, ["Σεμπρώνιος", "noun", "Σεμπρώνῐοι", "Σεμπρωνῐ́ου", "Σεμπρωνῐ́ῳ", "", "Sempronius a member"]) + let v = native_list_append(v, ["Σαναχάριβος", "noun", "Σαναχάριβος", "Σᾰνᾰχᾱρῑ́βου", "Σᾰνᾰχᾱρῑ́βῳ", "", "Sennacherib"]) + let v = native_list_append(v, ["Σηκουανός", "noun", "Σηκουᾰνοί", "Σηκουᾰνοῦ", "Σηκουᾰνῷ", "", "one of the"]) + let v = native_list_append(v, ["Σηκοανός", "noun", "Σηκοᾰνοί", "Σηκοᾰνοῦ", "Σηκοᾰνῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Σέριφος", "noun", "Σέριφος", "Σερῑ́φου", "Σερῑ́φῳ", "", "Seriphus Serifos Cyclades"]) + let v = native_list_append(v, ["Σέρρειον", "noun", "Σέρρειον", "Σερρείου", "Σερείῳ", "", "Serrheum"]) + let v = native_list_append(v, ["Σερτώριος", "noun", "Σερτώριος", "Σερτωρίου", "Σερτωρῐ́ῳ", "", "Sertorius"]) + let v = native_list_append(v, ["Σερβίλιος", "noun", "Σερβῑ́λῐοι", "Σερβῑλῐ́ου", "Σερβῑλῐ́ῳ", "", "Servilius a member"]) + let v = native_list_append(v, ["Σέρβιος", "noun", "Σέρβιος", "Σερβῐ́ου", "Σερβῐ́ῳ", "", "Servius"]) + let v = native_list_append(v, ["Σέσωστρις", "noun", "Σέσωστρις", "Σεσώστρεως", "Σεσώστρει", "", "Sesostris"]) + let v = native_list_append(v, ["Σῆστος", "noun", "Σῆστος", "Σήστου", "Σήστῳ", "", "Sestos Thracian Chersonese"]) + let v = native_list_append(v, ["Σήστιος", "noun", "Σήστιος", "Σηστῐ́ου", "Σηστῐ́ῳ", "", "Sestius"]) + let v = native_list_append(v, ["Σεύθης", "noun", "Σεύθης", "Σεύθου", "Σεύθῃ", "", "a male given"]) + let v = native_list_append(v, ["Σίβυλλα", "noun", "Σῐ́βυλλαι", "Σιβύλλης", "Σῐβύλλῃ", "", "Sibyl"]) + let v = native_list_append(v, ["Σούγουμβρος", "noun", "Σούγουμβροι", "Σουγούμβρου", "Σουγούμβρῳ", "", "one of the"]) + let v = native_list_append(v, ["Σικανός", "noun", "Σῐκᾱνοί", "Σῐκᾱνοῦ", "Σῐκᾱνῷ", "", "a Sican or"]) + let v = native_list_append(v, ["Σικανία", "noun", "Σικανία", "Σῐκᾱνῐ́ᾱς", "Σῐκᾱνῐ́ᾳ", "", "Sicania"]) + let v = native_list_append(v, ["Σικελιώτης", "noun", "Σῐκελῐῶται", "Σῐκελῐώτου", "Σῐκελῐώτῃ", "", "a Greek inhabitant"]) + let v = native_list_append(v, ["Σικυών", "noun", "Σικυών", "Σῐκῠῶνος", "τῇ Σῐκῠῶνῐ", "", "Sicyon Sikyona Corinthia"]) + let v = native_list_append(v, ["Σίγειον", "noun", "Σίγειον", "Σῑγείου", "Σῑγείῳ", "", "Sigeum"]) + let v = native_list_append(v, ["Σειληνός", "noun", "Σειληνοί", "Σειληνοῦ", "Σειληνῷ", "", "alternative form of"]) + let v = native_list_append(v, ["Σιμωνίδης", "noun", "Σιμωνίδης", "Σῐμωνῐ́δου", "Σῐμωνῐ́δῃ", "", "Simonides"]) + let v = native_list_append(v, ["Σιμόεις", "noun", "Σιμόεις", "Σῐμόεντος", "Σῐμόεντῐ", "", "the river Simois"]) + let v = native_list_append(v, ["Σίνις", "noun", "Σίνις", "Σῐ́νῐδος", "Σῐ́νῐδῐ", "", "Sinis"]) + let v = native_list_append(v, ["Σινώπη", "noun", "Σινώπη", "Σῐνώπης", "Σῐνώπῃ", "", "Sinope Paphlagonia Sinop"]) + let v = native_list_append(v, ["Σινωπεύς", "noun", "Σῐνωπῆς", "Σῐνωπέως", "Σῐνωπεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σιντός", "noun", "Σιντοί", "Σιντοῦ", "Σιντῷ", "", "a Sintian"]) + let v = native_list_append(v, ["Σῖφαι", "noun", "Σῑφῶν", "Σῑφῶν", "Σῑ́φαις", "", "Siphae"]) + let v = native_list_append(v, ["Σίφνος", "noun", "Σίφνος", "Σῐ́φνου", "Σῐ́φνῳ", "", "Siphnus Sifnos Cyclades"]) + let v = native_list_append(v, ["Σίπυλος", "noun", "Σίπυλος", "Σῐπῠ́λου", "Σῐπῠ́λῳ", "", "Mount Sipylus Spil"]) + let v = native_list_append(v, ["Σειρήν", "noun", "Σειρῆνες", "Σειρῆνος", "Σειρῆνῐ", "", "siren"]) + let v = native_list_append(v, ["Σίσυφος", "noun", "Σίσυφος", "Σῑσῠ́φου", "Σῑσῠ́φῳ", "", "Sisyphus"]) + let v = native_list_append(v, ["Σιτάλκης", "noun", "Σιτάλκης", "Σῑτᾰ́λκου", "Σῑτᾰ́λκῃ", "", "a male given"]) + let v = native_list_append(v, ["Σιθωνία", "noun", "Σιθωνία", "Σῑθωνῐ́ᾱς", "Σῑθωνῐ́ᾳ", "", "Sithonia"]) + let v = native_list_append(v, ["Ὕπνος", "noun", "Ὕπνος", "Ῠ̔́πνου", "Ῠ̔́πνῳ", "", "Hypnos the Greek"]) + let v = native_list_append(v, ["Σμέρδις", "noun", "Σμέρδις", "Σμέρδεως", "Σμέρδῑ", "", "Smerdis Bardiya"]) + let v = native_list_append(v, ["Σόλοι", "noun", "Σόλων", "Σόλων", "Σόλοις", "", "Soli a city"]) + let v = native_list_append(v, ["Σόλλιον", "noun", "Σόλλιον", "Σολλῐ́ου", "Σολλῐ́ῳ", "", "Sollium"]) + let v = native_list_append(v, ["Σολόεις", "noun", "Σολόεις", "Σολόεντος", "Σολόεντῐ", "", "the river Solois"]) + let v = native_list_append(v, ["Σόλων", "noun", "Σόλων", "Σόλωνος", "Σόλωνῐ", "", "Solon"]) + let v = native_list_append(v, ["Σοφαίνετος", "noun", "Σοφαίνετος", "Σοφαινέτου", "Σοφαινέτῳ", "", "a male given"]) + let v = native_list_append(v, ["Σοφοκλῆς", "noun", "Σοφοκλῆς", "Σοφοκλέους", "Σοφοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Σωσίας", "noun", "Σωσίας", "Σωσῐ́ου", "Σωσῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Σωστράτη", "noun", "Σωστράτη", "Σωστρᾰ́της", "Σωστρᾰ́τῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἴβηρ", "noun", "Ἴβηρες", "Ἴβηρος", "Ἴβηρῐ", "", "Iberian an inhabitant"]) + let v = native_list_append(v, ["Ἰβηρία", "noun", "Ἰβηρία", "Ἰβηρῐ́ᾱς", "Ἰβηρῐ́ᾳ", "", "Iberia Iberian Peninsula"]) + let v = native_list_append(v, ["Σπαρτιάτης", "noun", "Σπᾰρτῐᾶται", "Σπᾰρτῐᾱ́του", "Σπᾰρτῐᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σπαρτιᾶτις", "noun", "Σπᾰρτῐᾱ́τῐδες", "Σπᾰρτῐᾱ́τῐδος", "Σπᾰρτῐᾱ́τῐδῐ", "", "a female inhabitant"]) + let v = native_list_append(v, ["Σπάρτωλος", "noun", "Σπάρτωλος", "Σπᾰρτώλου", "Σπᾰρτώλῳ", "", "Spartolus"]) + let v = native_list_append(v, ["Σπερχειός", "noun", "Σπερχειός", "Σπερχειοῦ", "Σπερχειῷ", "", "the river Spercheus"]) + let v = native_list_append(v, ["Σφακτηρία", "noun", "Σφακτηρία", "Σφακτηρῐ́ᾱς", "Σφακτηρῐ́ᾳ", "", "Sphacteria Sphagia Messenia"]) + let v = native_list_append(v, ["Σφίγξ", "noun", "Σφῐ́γγες", "Σφῐγγός", "Σφῐγγῐ́", "", "Sphinx sphinx"]) + let v = native_list_append(v, ["Σφοδρίας", "noun", "Σφοδρίας", "Σφοδρῐ́ου", "Σφοδρῐ́ᾳ", "", "Sphodrias"]) + let v = native_list_append(v, ["Σπόριος", "noun", "Σπόριος", "Σπορῐ́ου", "Σπορῐ́ῳ", "", "Spurius"]) + let v = native_list_append(v, ["Στάτειρα", "noun", "Στάτειρα", "Στατείρᾱς", "Στατείρᾳ", "", "Statira Stateira"]) + let v = native_list_append(v, ["Στησίχορος", "noun", "Στησίχορος", "Στησῐχόρου", "Στησῐχόρῳ", "", "a male given"]) + let v = native_list_append(v, ["Σθενελαΐδας", "noun", "Σθενελαΐδας", "Σθενελᾱῐ̈́δου", "Σθενελᾱῐ̈́δᾳ", "", "Sthenelaidas"]) + let v = native_list_append(v, ["Δευτερονόμιον", "noun", "Δευτερονόμιον", "Δευτερονομίου", "Δευτερονομίῳ", "", "Deuteronomy"]) + let v = native_list_append(v, ["Στάγειρος", "noun", "Στάγειρος", "Σταγείρου", "Σταγείρῳ", "", "Stagirus Stagira Stageira"]) + let v = native_list_append(v, ["Στάγειρα", "noun", "Στάγειρᾰ", "Σταγείρων", "Σταγείροις", "", "alternative form of"]) + let v = native_list_append(v, ["Σταγειρίτης", "noun", "Σταγειρῖται", "Σταγειρῑ́του", "Σταγειρῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Σθένελος", "noun", "Σθένελος", "Σθενέλου", "Σθενέλῳ", "", "a male given"]) + let v = native_list_append(v, ["Σθενόβοια", "noun", "Σθενόβοια", "Σθενοβοίᾱς", "Σθενοβοίᾳ", "", "Sthenoboea"]) + let v = native_list_append(v, ["Στωϊκός", "noun", "Στωῐ̈κοί", "Στωῐ̈κοῦ", "Στωῐ̈κῷ", "", "a follower of"]) + let v = native_list_append(v, ["Στρατονίκη", "noun", "Στρατονίκη", "Στρᾰτονῑ́κης", "Στρᾰτονῑ́κῃ", "", "a female given"]) + let v = native_list_append(v, ["Στράτος", "noun", "Στράτος", "Στρᾰ́του", "τῇ Στρᾰ́τῳ", "", "Stratus Stratos Aetolia-Acarnania"]) + let v = native_list_append(v, ["Στράτιος", "noun", "Στρᾰ́τῐοι", "Στρᾰτῐ́ου", "Στρᾰτῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Στρομβιχίδης", "noun", "Στρομβιχίδης", "Στρομβιχῐ́δου", "Στρομβιχῐ́δῃ", "", "Strombichides"]) + let v = native_list_append(v, ["Στρογγύλη", "noun", "Στρογγύλη", "Στρογγῠ́λης", "Στρογγῠ́λῃ", "", "Strongyle the name"]) + let v = native_list_append(v, ["Στρόφιος", "noun", "Στρόφιος", "Στροφῐ́ου", "Στροφῐ́ῳ", "", "Strophius"]) + let v = native_list_append(v, ["Στρούθας", "noun", "Στρούθας", "Στρούθου", "Στρούθᾳ", "", "a male given"]) + let v = native_list_append(v, ["Στρυμών", "noun", "Στρυμών", "Στρῡμόνος", "Στρῡμόνῐ", "", "the river Strymon"]) + let v = native_list_append(v, ["Στυμφαλίς", "noun", "Στυμφαλίς", "Στυμφᾱλῐ́δος", "Στυμφᾱλῐ́δῐ", "", "Lake Stymphalia"]) + let v = native_list_append(v, ["Στύξ", "noun", "Στύξ", "Στῠγός", "Στῠγῐ́", "", "the river Styx"]) + let v = native_list_append(v, ["Σουητώνιος", "noun", "Σουητώνιος", "Σουητωνῐ́ου", "Σουητωνῐ́ῳ", "", "Suetonius"]) + let v = native_list_append(v, ["Σούηβος", "noun", "Σούηβοι", "Σουήβου", "Σουήβῳ", "", "one of the"]) + let v = native_list_append(v, ["Σύλλας", "noun", "Σύλλας", "Σύλλᾱ", "Σύλλᾳ", "", "Sulla"]) + let v = native_list_append(v, ["Σουλπίκιος", "noun", "Σουλπίκιος", "Σουλπῐκῐ́ου", "Σουλπῐκῐ́ῳ", "", "Sulpicius"]) + let v = native_list_append(v, ["Σούνιον", "noun", "Σούνιον", "Σουνίου", "Σουνῐ́ῳ", "", "Cape Sunium Attica"]) + let v = native_list_append(v, ["Σουνιεύς", "noun", "Σουνῐῆς", "Σουνῐέως", "Σουνῐεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ἥλιος", "noun", "Ἥλιος", "Ἡλῐ́ου", "Ἡλῐ́ῳ", "", "Helios"]) + let v = native_list_append(v, ["Σούρας", "noun", "Σούρας", "Σούρᾱ", "Σούρᾳ", "", "Sura"]) + let v = native_list_append(v, ["Σοῦσα", "noun", "Σοῦσᾰ", "Σούσων", "Σούσοις", "", "Susa an ancient"]) + let v = native_list_append(v, ["Συβαρῖτις", "noun", "Σῠβᾰρῑ́τῐδες", "Σῠβᾰρῑ́τῐδος", "Σῠβᾰρῑ́τῐδῐ", "", "a female inhabitant"]) + let v = native_list_append(v, ["Σύβοτα", "noun", "Σῠ́βοτᾰ", "Σῠβότων", "Σῠβότοις", "", "Sybota Thesprotia Greece"]) + let v = native_list_append(v, ["Συέννεσις", "noun", "Συέννεσις", "Συεννέσῐος", "Συεννέσῑ", "", "Syennesis"]) + let v = native_list_append(v, ["Σύμη", "noun", "Σύμη", "Σῡ́μης", "Σῡ́μῃ", "", "Syme an island"]) + let v = native_list_append(v, ["Συμπληγάς", "noun", "Σῠμπληγᾰ́δες", "Σῠμπληγᾰ́δος", "Σῠμπληγᾰ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Κυάνεα", "noun", "Κῠᾰ́νεαι", "Κῠᾰνέᾱς", "Κῠᾰνέᾳ", "", "one of the"]) + let v = native_list_append(v, ["Ταίναρος", "noun", "Ταίναρος", "Ταινᾰ́ρου", "Ταινᾰ́ρῳ", "", "Cape Taenarus"]) + let v = native_list_append(v, ["Ταλαός", "noun", "Ταλαός", "Τᾰλᾰοῦ", "Τᾰλᾰῷ", "", "Talaus"]) + let v = native_list_append(v, ["Ταλθύβιος", "noun", "Ταλθύβιος", "Ταλθῠβῐ́ου", "Ταλθῠβῐ́ῳ", "", "Talthybius"]) + let v = native_list_append(v, ["Τάναγρα", "noun", "Τάναγρα", "Τᾰνᾰ́γρᾱς", "Τᾰνᾰ́γρᾳ", "", "Tanagra Boeotia Greece"]) + let v = native_list_append(v, ["Τάναϊς", "noun", "Τάναϊς", "Τᾰνᾰ́ῐ̈δος", "Τᾰνᾰ́ῐ̈δῐ", "", "Tanais Don a"]) + let v = native_list_append(v, ["Τάνταλος", "noun", "Τάνταλος", "Ταντᾰ́λου", "Ταντᾰ́λῳ", "", "Tantalus"]) + let v = native_list_append(v, ["Τάφιος", "noun", "Τάφιος", "Τᾰφῐ́ου", "Τᾰφῐ́ῳ", "", "Taphius the colonizer"]) + let v = native_list_append(v, ["Ταρπηΐα", "noun", "Ταρπηΐα", "Ταρπηῐ̈́ᾱς", "Ταρπηῐ̈́ᾳ", "", "Tarpeia"]) + let v = native_list_append(v, ["Ταρπήϊος", "noun", "Ταρπήϊος", "Ταρπηῐ̈́ου", "Ταρπηῐ̈́ῳ", "", "the Tarpeian Rock"]) + let v = native_list_append(v, ["Ταρκύνιος", "noun", "Ταρκῠ́νῐοι", "Ταρκῠνῐ́ου", "Ταρκῠνῐ́ῳ", "", "Tarquinius a member"]) + let v = native_list_append(v, ["Ταρκύνιοι", "noun", "Ταρκῠ́νῐοι", "Ταρκῠνῐ́ων", "Ταρκῠνῐ́οις", "", "Tarquinii Latium Tarquinia"]) + let v = native_list_append(v, ["Ταρσοί", "noun", "Ταρσῶν", "Ταρσῶν", "Ταρσοῖς", "", "alternative form of"]) + let v = native_list_append(v, ["Ταρσεύς", "noun", "Ταρσῆς", "Ταρσέως", "Ταρσεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Τάρταρος", "noun", "Τάρταρος", "Ταρτᾰ́ρου", "Ταρτᾰ́ρῳ", "", "Tartarus"]) + let v = native_list_append(v, ["Ταρτησσός", "noun", "Ταρτησσός", "Ταρτησσοῦ", "τῇ Ταρτησσῷ", "", "Tartessus Tartessos"]) + let v = native_list_append(v, ["Τάτιος", "noun", "Τάτιος", "Τᾰτῐ́ου", "Τᾰτῐ́ῳ", "", "Tatius"]) + let v = native_list_append(v, ["Ταυρομένιον", "noun", "Ταυρομένιον", "Ταυρομενῐ́ου", "Ταυρομενῐ́ῳ", "", "Tauromenium Taormina Sicily"]) + let v = native_list_append(v, ["Ταυρομενίτης", "noun", "Ταυρομενῖται", "Ταυρομενῑ́του", "Ταυρομενῑ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Ταΰγετον", "noun", "Ταΰγετον", "Τᾱῠ̈γέτου", "Τᾱῠ̈γέτῳ", "", "the Taygetus Mountains"]) + let v = native_list_append(v, ["Ταΰγετος", "noun", "Ταΰγετος", "Τᾱῠ̈γέτου", "Τᾱῠ̈γέτῳ", "", "alternative form of"]) + let v = native_list_append(v, ["Τέκμησσα", "noun", "Τέκμησσα", "Τεκμήσσης", "Τεκμήσσῃ", "", "Tecmessa"]) + let v = native_list_append(v, ["Τεγέα", "noun", "Τεγέα", "Τεγέᾱς", "Τεγέᾳ", "", "Tegea Arcadia Greece"]) + let v = native_list_append(v, ["Τεγεάτης", "noun", "Τεγεᾶται", "Τεγεᾱ́του", "Τεγεᾱ́τῃ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Τελαμών", "noun", "Τελαμών", "Τελᾰμῶνος", "Τελᾰμῶνῐ", "", "Telamon"]) + let v = native_list_append(v, ["Τηλέμαχος", "noun", "Τηλέμαχος", "Τηλεμᾰ́χου", "Τηλεμᾰ́χῳ", "", "a male given"]) + let v = native_list_append(v, ["Τήλεφος", "noun", "Τήλεφος", "Τηλέφου", "Τηλέφῳ", "", "a male given"]) + let v = native_list_append(v, ["Τελεύτας", "noun", "Τελεύτας", "Τελεύτᾰντος", "Τελεύτᾰντῐ", "", "a male given"]) + let v = native_list_append(v, ["Τελευτίας", "noun", "Τελευτίας", "Τελευτῐ́ου", "Τελευτῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Τέλλις", "noun", "Τέλλις", "Τέλλῐδος", "Τέλλῐδῐ", "", "Tellis"]) + let v = native_list_append(v, ["Τήμενος", "noun", "Τήμενος", "Τημένου", "Τημένῳ", "", "Temenus"]) + let v = native_list_append(v, ["Τημενίδης", "noun", "Τημενῐ́δαι", "Τημενῐ́δου", "Τημενῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Τέμπη", "noun", "Τεμπῶν", "Τεμπῶν", "Τέμπεσῐ", "", "the Vale of"]) + let v = native_list_append(v, ["Τεντερίτης", "noun", "Τεντερῖται", "Τεντερῑ́του", "Τεντερῑ́τῃ", "", "one of the"]) + let v = native_list_append(v, ["Τένεδος", "noun", "Τένεδος", "Τενέδου", "Τενέδῳ", "", "Tenedos Bozcaada Çanakkale"]) + let v = native_list_append(v, ["Τῆνος", "noun", "Τῆνος", "Τήνου", "Τήνῳ", "", "Tenos Tinos Cyclades"]) + let v = native_list_append(v, ["Τέως", "noun", "Τέως", "Τέω", "Τέῳ", "", "Teos Ionia now"]) + let v = native_list_append(v, ["Τήρης", "noun", "Τήρης", "Τήρου", "Τήρῃ", "", "a male given"]) + let v = native_list_append(v, ["Τηρεύς", "noun", "Τηρεύς", "Τηρέως", "Τηρεῖ", "", "Tereus"]) + let v = native_list_append(v, ["Τέρμων", "noun", "Τέρμων", "Τέρμονος", "Τέρμονῐ", "", "Terminus"]) + let v = native_list_append(v, ["Τερψιχόρα", "noun", "Τερψιχόρα", "Τερψῐχόρᾱς", "Τερψῐχόρᾳ", "", "Terpsichore"]) + let v = native_list_append(v, ["Τερψιχόρη", "noun", "Τερψιχόρη", "Τερψῐχόρης", "Τερψῐχόρῃ", "", "Terpsichore"]) + let v = native_list_append(v, ["Τεῦκρος", "noun", "Τεῦκρος", "Τεύκρου", "Τεύκρῳ", "", "Teucer"]) + let v = native_list_append(v, ["Τευκρός", "noun", "Τευκροί", "Τευκροῦ", "Τευκρῷ", "", "one of the"]) + let v = native_list_append(v, ["Τεύτων", "noun", "Τεύτονες", "Τεύτονος", "Τεύτονῐ", "", "one of the"]) + let v = native_list_append(v, ["Θαμύρας", "noun", "Θαμύρας", "Θᾰμῠ́ρου", "Θᾰμῠ́ρᾳ", "", "Attic form of"]) + let v = native_list_append(v, ["Θάμυρις", "noun", "Θάμυρις", "Θᾰμῠ́ρῐδος", "Θᾰμῠ́ρῐδῐ", "", "a male given"]) + let v = native_list_append(v, ["Θάψακος", "noun", "Θάψακος", "Θαψᾰ́κου", "Θαψᾰ́κῳ", "", "Thapsacus Tiphsah"]) + let v = native_list_append(v, ["Θαψακηνός", "noun", "Θαψᾰκηνοί", "Θαψᾰκηνοῦ", "Θαψᾰκηνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Θάψος", "noun", "Θάψος", "Θᾰ́ψου", "Θᾰ́ψῳ", "", "Thapsus Tunisia"]) + let v = native_list_append(v, ["Θάσος", "noun", "Θάσος", "Θᾰ́σου", "Θᾰ́σῳ", "", "Thasos North Aegean"]) + let v = native_list_append(v, ["Θαύμας", "noun", "Θαύμας", "Θαύμᾰντος", "Θαύμᾰντῐ", "", "Thaumas"]) + let v = native_list_append(v, ["Θέμις", "noun", "Θέμις", "Θέμῐδος", "Θέμῐδῐ", "", "Themis"]) + let v = native_list_append(v, ["Θεμιστοκλῆς", "noun", "Θεμιστοκλῆς", "Θεμῐστοκλέους", "Θεμῐστοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Θεοκλύμενος", "noun", "Θεοκλύμενος", "Θεοκλῠμένου", "Θεοκλῠμένῳ", "", "Theoclymenus"]) + let v = native_list_append(v, ["Θεόδωρος", "noun", "Θεόδωρος", "Θεοδώρου", "Θεοδώρῳ", "", "a male given"]) + let v = native_list_append(v, ["Θεοδοσία", "noun", "Θεοδοσία", "Θεοδοσῐ́ᾱς", "Θεοδοσῐ́ᾳ", "", "a female given"]) + let v = native_list_append(v, ["Θεογένης", "noun", "Θεογένης", "Θεογένους", "Θεογένει", "", "a male given"]) + let v = native_list_append(v, ["Θέογνις", "noun", "Θέογνις", "Θεόγνῐδος", "Θεόγνῐδῐ", "", "Theognis"]) + let v = native_list_append(v, ["Θεονόη", "noun", "Θεονόη", "Θεονόης", "Θεονόῃ", "", "Theonoe"]) + let v = native_list_append(v, ["Θεόπομπος", "noun", "Θεόπομποι", "Θεοπόμπου", "Θεοπόμπῳ", "", "a male given"]) + let v = native_list_append(v, ["Θηραμένης", "noun", "Θηραμένης", "Θηρᾱμένους", "Θηρᾱμένει", "", "a male given"]) + let v = native_list_append(v, ["Θεράπνη", "noun", "Θεράπνη", "Θερᾰ́πνης", "Θερᾰ́πνῃ", "", "alternative form of"]) + let v = native_list_append(v, ["Θεράπναι", "noun", "Θερᾰ́πναι", "Θερᾰπνῶν", "Θερᾰ́πναις", "", "Therapne Therapnae Therapnes"]) + let v = native_list_append(v, ["Θέρμη", "noun", "Θέρμη", "Θέρμης", "Θέρμῃ", "", "Therma Macedonia Greece"]) + let v = native_list_append(v, ["Θερμαῖος κόλπος", "noun", "Θερμαῖος κόλπος", "Θερμαίου κόλπου", "Θερμαίῳ κόλπῳ", "", "the Thermaic Gulf"]) + let v = native_list_append(v, ["Θερμώδων", "noun", "Θερμώδων", "Θερμώδοντος", "Θερμώδοντῐ", "", "Thermodon Terme a"]) + let v = native_list_append(v, ["Θαλῆς", "noun", "Θαλῆς", "Θᾰλοῦ", "Θᾰλῇ", "", "a male given"]) + let v = native_list_append(v, ["Θήρων", "noun", "Θήρων", "Θήρωνος", "Θήρωνῐ", "", "Theron"]) + let v = native_list_append(v, ["Θερσίτης", "noun", "Θερσίτης", "Θερσῑ́του", "Θερσῑ́τῃ", "", "a male given"]) + let v = native_list_append(v, ["Θησεύς", "noun", "Θησεύς", "Θησέως", "Θησεῖ", "", "Theseus"]) + let v = native_list_append(v, ["Θησείδης", "noun", "Θησεῖδαι", "Θησείδου", "Θησείδῃ", "", "a child of"]) + let v = native_list_append(v, ["Θεσμοφόρια", "noun", "Θεσμοφόρῐᾰ", "Θεσμοφορῐ́ων", "Θεσμοφορῐ́οις", "", "the Thesmophoria"]) + let v = native_list_append(v, ["Θεσπιαί", "noun", "Θεσπῐαί", "Θεσπῐῶν", "Θεσπῐαῖς", "", "Thespiae a city"]) + let v = native_list_append(v, ["Θεσπιεύς", "noun", "Θεσπῐῆς", "Θεσπῐέως", "Θεσπῐεῖ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Θέσπις", "noun", "Θέσπις", "Θέσπεως", "Θέσπει", "", "Thespis"]) + let v = native_list_append(v, ["Θεσπρωτός", "noun", "Θεσπρωτοί", "Θεσπρωτοῦ", "Θεσπρωτῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Θεσπρωτίς", "noun", "Θεσπρωτίς", "Θεσπρωτῐ́δος", "Θεσπρωτῐ́δῐ", "", "Thesprotis Thesprotia Epirus"]) + let v = native_list_append(v, ["Θέστωρ", "noun", "Θέστωρ", "Θέστορος", "Θέστορῐ", "", "Thestor"]) + let v = native_list_append(v, ["Θέστιος", "noun", "Θέστιος", "Θεστῐ́ου", "Θεστῐ́ῳ", "", "Thestius"]) + let v = native_list_append(v, ["Θεστιάς", "noun", "Θεστῐᾰ́δες", "Θεστῐᾰ́δος", "Θεστῐᾰ́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Θέτις", "noun", "Θέτις", "Θέτῐδος", "Θέτῐδῐ", "", "Thetis"]) + let v = native_list_append(v, ["Θίμβρων", "noun", "Θίμβρων", "Θῐ́μβρωνος", "Θῐ́μβρωνῐ", "", "Thimbron"]) + let v = native_list_append(v, ["Θίσβαι", "noun", "Θῐ́σβαι", "Θῐσβῶν", "Θῐ́σβαις", "", "Thisbae Boeotia Greece"]) + let v = native_list_append(v, ["Θίσβη", "noun", "Θίσβη", "Θῐ́σβης", "Θῐ́σβῃ", "", "Thisbe"]) + let v = native_list_append(v, ["Θόας", "noun", "Θόας", "Θόᾰντος", "Θόᾰντῐ", "", "a male given"]) + let v = native_list_append(v, ["Θρᾷσσα", "noun", "Θρᾷσσαι", "Θρᾴσσης", "Θρᾴσσῃ", "", "female inhabitant of"]) + let v = native_list_append(v, ["Θρῇσσα", "noun", "Θρῇσσαι", "Θρῄσσης", "Θρῄσσῃ", "", "Tragic form of"]) + let v = native_list_append(v, ["Ὑπερίων", "noun", "Ὑπερίων", "Ῠ̔περῑ́ονος", "Ῠ̔περῑ́ονῐ", "", "Hyperion"]) + let v = native_list_append(v, ["χαλκός", "noun", "χᾰλκοί", "χᾰλκοῦ", "χᾰλκῷ", "", "copper"]) + let v = native_list_append(v, ["Θρᾷττα", "noun", "Θρᾷτται", "Θρᾴττης", "Θρᾴττῃ", "", "Attic form of"]) + let v = native_list_append(v, ["ἦτα", "noun", "ἦτα", "", "", "", "eta the name"]) + let v = native_list_append(v, ["Θρασύβουλος", "noun", "Θρασύβουλος", "Θρᾰσῠβούλου", "Θρᾰσῠβούλῳ", "", "a male given"]) + let v = native_list_append(v, ["Θράσυλλος", "noun", "Θράσυλλος", "Θρᾰσύλλου", "Θρᾰσῠ́λλῳ", "", "a male given"]) + let v = native_list_append(v, ["Θρία", "noun", "Θρία", "Θρῐ́ᾱς", "Θρῐ́ᾳ", "", "Thria a town"]) + let v = native_list_append(v, ["Θριάσιον", "noun", "Θριάσιον", "Θρῐᾰσῐ́ου", "Θρῐᾰσῐ́ῳ", "", "the Thrasian Plain"]) + let v = native_list_append(v, ["Θουκυδίδης", "noun", "Θουκυδίδης", "Θουκῡδῐ́δου", "Θουκῡδῐ́δῃ", "", "a male given"]) + let v = native_list_append(v, ["Θούριοι", "noun", "Θούρῐοι", "Θουρῐ́ων", "Θουρῐ́οις", "", "Thurii an ancient"]) + let v = native_list_append(v, ["Θούριος", "noun", "Θούρῐοι", "Θουρῐ́ου", "Θουρῐ́ῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Θυέστης", "noun", "Θυέστης", "Θῠέστου", "Θῠέστῃ", "", "Thyestes"]) + let v = native_list_append(v, ["Θύμβρα", "noun", "Θύμβρα", "Θῠ́μβρᾱς", "Θῠ́μβρᾳ", "", "Thymbra"]) + let v = native_list_append(v, ["Θυρέα", "noun", "Θυρέα", "Θυρέᾱς", "Θυρέᾳ", "", "Thyrea the ancient"]) + let v = native_list_append(v, ["Τιβαρηνοί", "noun", "Τῐβᾰρηνοί", "Τῐβᾰρηνῶν", "Τῐβᾰρηνοῖς", "", "Tabal Tibareni Anatolia"]) + let v = native_list_append(v, ["Τιβαρηνός", "noun", "Τῐβᾰρηνοί", "Τῐβᾰρηνοῦ", "Τῐβᾰρηνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Τίβερις", "noun", "Τίβερις", "Τῐβέρεως", "Τῐβέρει", "", "the river Tiber"]) + let v = native_list_append(v, ["Τιβέριος", "noun", "Τιβέριος", "Τῐβερῐ́ου", "Τῐβερῐ́ῳ", "", "Tiberius"]) + let v = native_list_append(v, ["Τιβεριάς", "noun", "Τιβεριάς", "Τῐβερῐᾰ́δος", "Τῐβερῐᾰ́δῐ", "", "Tiberias Israel"]) + let v = native_list_append(v, ["Τιγράνης", "noun", "Τιγράνης", "Τιγρᾱ́νου", "Τιγρᾱ́νῃ", "", "Tigranes"]) + let v = native_list_append(v, ["Τιγρανόκερτα", "noun", "Τιγρᾱνόκερτᾰ", "Τιγρανοκέρτων", "Τιγρᾱνοκέρτοις", "", "Tigranocerta Tigranakert"]) + let v = native_list_append(v, ["Τίγρης", "noun", "Τίγρης", "Τῐ́γρητος", "Τῐ́γρητῐ", "", "the river Tigris"]) + let v = native_list_append(v, ["Τιμασίων", "noun", "Τιμασίων", "Τῑμᾱσῐ́ωνος", "Τῑμᾱσῐ́ωνῐ", "", "Timasion"]) + let v = native_list_append(v, ["Τιμοκράτης", "noun", "Τιμοκράτης", "Τῑμοκρᾰ́τους", "Τῑμοκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["Τιμολέων", "noun", "Τιμολέων", "Τῑμολέοντος", "Τῑμολέοντῐ", "", "a male given"]) + let v = native_list_append(v, ["Τίμων", "noun", "Τίμων", "Τῑ́μωνος", "Τῑ́μωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Τειρεσίας", "noun", "Τειρεσίας", "Τειρεσῐ́ου", "Τειρεσῐ́ᾳ", "", "Tiresias"]) + let v = native_list_append(v, ["Τιρίβαζος", "noun", "Τιρίβαζος", "Τιριβάζου", "Τιριβάζῳ", "", "a male given"]) + let v = native_list_append(v, ["Τίρων", "noun", "Τίρων", "Τῑ́ρωνος", "Τῑ́ρωνῐ", "", "Tiro"]) + let v = native_list_append(v, ["Τίρυνς", "noun", "Τίρυνς", "Τῑ́ρῠνθος", "τῇ Τῑ́ρῠνθῐ", "", "Tiryns Tiryntha Argolis"]) + let v = native_list_append(v, ["πέος", "noun", "πέεᾰ", "πέεος", "πέεῐ̈", "", "penis"]) + let v = native_list_append(v, ["Τισαμενός", "noun", "Τισαμενός", "Τῑσᾰμενοῦ", "Τῑσᾰμενῷ", "", "a male given"]) + let v = native_list_append(v, ["Τισίας", "noun", "Τισίας", "Τῑσῐ́ου", "Τῑσῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Τισσαφέρνης", "noun", "Τισσαφέρναι", "Τισσαφέρνου", "Τισσαφέρνει", "", "a male given"]) + let v = native_list_append(v, ["Τιτάν", "noun", "Τῑτᾶνες", "Τῑτᾶνος", "Τῑτᾶνῐ", "", "one of the"]) + let v = native_list_append(v, ["Τιτανίς", "noun", "Τῑτᾱνῐ́δες", "Τῑτᾱνῐ́δος", "Τῑτᾱνῐ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Τιθωνός", "noun", "Τιθωνός", "Τῑθωνοῦ", "Τῑθωνῷ", "", "Tithonos Tithonus"]) + let v = native_list_append(v, ["Τιθραύστης", "noun", "Τιθραύστης", "Τιθραύστου", "Τιθραύστῃ", "", "a male given"]) + let v = native_list_append(v, ["Τιτυός", "noun", "Τιτυός", "Τῐτῠοῦ", "Τῐτῠῷ", "", "Tityus Tityos"]) + let v = native_list_append(v, ["Τληπόλεμος", "noun", "Τληπόλεμος", "Τληπολέμου", "Τληπολέμῳ", "", "a male given"]) + let v = native_list_append(v, ["Τμῶλος", "noun", "Τμῶλος", "Τμώλου", "Τμώλῳ", "", "Tmolus a king"]) + let v = native_list_append(v, ["βροχή", "noun", "βροχαί", "βροχῆς", "βροχῇ", "", "rain"]) + let v = native_list_append(v, ["Τολμίδης", "noun", "Τολμίδης", "Τολμῐ́δου", "Τολμῐ́δῃ", "", "Tolmides"]) + let v = native_list_append(v, ["Τολούμνιος", "noun", "Τολούμνιος", "Τολουμνῐ́ου", "Τολουμνῐ́ῳ", "", "Tolumnius"]) + let v = native_list_append(v, ["Τορώνη", "noun", "Τορώνη", "Τορώνης", "Τορώνῃ", "", "Torone Toroni Chalcidice"]) + let v = native_list_append(v, ["Τορκούατος", "noun", "Τορκούατος", "Τορκουᾱ́του", "Τορκουᾱ́τῳ", "", "Torquatus"]) + let v = native_list_append(v, ["Τραχίς", "noun", "Τραχίς", "Τρᾱχῖνος", "Τρᾱχῖνῐ", "", "Trachis"]) + let v = native_list_append(v, ["Τράλλεις", "noun", "Τρᾰ́λλεις", "Τράλλεων", "Τρᾰ́λλεσῐ", "", "Aydin a city"]) + let v = native_list_append(v, ["Τρεβίας", "noun", "Τρεβίας", "Τρεβῐ́ᾱ", "Τρεβῐ́ᾳ", "", "the river Trebia"]) + let v = native_list_append(v, ["Τριβαλλός", "noun", "Τρῐβαλλοί", "Τρῐβαλλοῦ", "Τρῐβαλλῷ", "", "one of the"]) + let v = native_list_append(v, ["Τρινακρία", "noun", "Τρινακρία", "Τρῑνᾰκρῐ́ᾱς", "Τρῑνᾰκρῐ́ᾳ", "", "Trinacria or Thrinacia"]) + let v = native_list_append(v, ["Τριόπιον", "noun", "Τριόπιον", "Τριοπίου", "Τριοπίῳ", "", "the Triopian Promontory"]) + let v = native_list_append(v, ["Τριφυλία", "noun", "Τριφυλία", "Τρῐφῡλῐ́ᾱς", "Τρῐφῡλῐ́ᾳ", "", "Triphylia"]) + let v = native_list_append(v, ["Τριπτόλεμος", "noun", "Τριπτόλεμος", "Τρῐπτολέμου", "Τρῐπτολέμῳ", "", "Triptolemus"]) + let v = native_list_append(v, ["Τριτογενής", "noun", "Τριτογενής", "Τρῑτογενοῦς", "Τρῑτογενεῖ", "", "Tritogenia an epithet"]) + let v = native_list_append(v, ["Τριτογένεια", "noun", "Τρῑτογένειαι", "Τρῑτογενείᾱς", "Τρῑτογενείᾳ", "", "Tritogenia an epithet"]) + let v = native_list_append(v, ["Τρίτων", "noun", "Τρίτων", "Τρῑ́τωνος", "Τρῑ́τωνῐ", "", "Triton god of"]) + let v = native_list_append(v, ["Τροιζήν", "noun", "Τροιζήν", "Τροιζῆνος", "Τροιζῆνῐ", "", "Troezen Peloponnese Troizina"]) + let v = native_list_append(v, ["Τρώγιλος", "noun", "Τρώγιλος", "Τρωγίλου", "Τρωγίλῳ", "", "Trogilus Sicily Italy"]) + let v = native_list_append(v, ["Τροφώνιος", "noun", "Τροφώνιος", "Τροφωνῐ́ου", "Τροφωνῐ́ῳ", "", "Trophonius"]) + let v = native_list_append(v, ["Τρώς", "noun", "Τρῶες", "Τρωός", "Τρῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Τοῦσκλον", "noun", "Τοῦσκλον", "Τούσκλου", "Τούσκλῳ", "", "Tusculum Latium Tuscolo"]) + let v = native_list_append(v, ["Τουσκλᾶνος", "noun", "Τουσκλᾶνοι", "Τουσκλᾱ́νου", "Τουσκλᾱ́νῳ", "", "an inhabitant of"]) + let v = native_list_append(v, ["Τυδεύς", "noun", "Τυδεύς", "Τῡδέως", "Τῡδεῖ", "", "a male given"]) + let v = native_list_append(v, ["Τυνδάρεως", "noun", "Τυνδάρεως", "Τῠνδᾰ́ρεω", "Τῠνδᾰ́ρεῳ", "", "Tyndareus"]) + let v = native_list_append(v, ["Τυνδαρίδης", "noun", "Τῠνδᾰρῐ́δαι", "Τῠνδᾰρῐ́δου", "Τῠνδᾰρῐ́δῃ", "", "a child of"]) + let v = native_list_append(v, ["Τυνδαρίς", "noun", "Τῠνδᾰρῐ́δες", "Τῠνδᾰρῐ́δος", "Τῠνδᾰρῐ́δῐ", "", "a daughter of"]) + let v = native_list_append(v, ["Τυφῶν", "noun", "Τυφῶν", "Τῡφῶνος", "Τῡφῶνῐ", "", "Typhon"]) + let v = native_list_append(v, ["Ὀμβρικός", "noun", "Ὀμβρῐκοί", "Ὀμβρῐκοῦ", "Ὀμβρῐκῷ", "", "one of the"]) + let v = native_list_append(v, ["Ὀμβρική", "noun", "Ὀμβρική", "Ὀμβρῐκής", "Ὀμβρῐκῇ", "", "Umbria Italy"]) + let v = native_list_append(v, ["Οὐρανός", "noun", "Οὐρανός", "Οὐρᾰνοῦ", "Οὐρᾰνῷ", "", "Uranus a primordial"]) + let v = native_list_append(v, ["Οὐρανία", "noun", "Οὐρανία", "Οὐρᾰνῐ́ᾱς", "Οὐρᾰνῐ́ᾳ", "", "Urania"]) + let v = native_list_append(v, ["Ἰτύκη", "noun", "Ἰτύκη", "Ἰτύκης", "Ἰτύκῃ", "", "Utica an ancient"]) + let v = native_list_append(v, ["Οὐάλης", "noun", "Οὐάλης", "Οὐάλεντος", "Οὐάλεντῐ", "", "Valens"]) + let v = native_list_append(v, ["Οὐαλέριος", "noun", "Οὐᾰλέρῐοι", "Οὐᾰλερῐ́ου", "Οὐᾰλερῐ́ῳ", "", "Valerius a member"]) + let v = native_list_append(v, ["Οὐαλερία", "noun", "Οὐᾰλερῐ́αι", "Οὐᾰλερῐ́ᾱς", "Οὐᾰλερῐ́ᾳ", "", "Valeria a female"]) + let v = native_list_append(v, ["Οὐάρρων", "noun", "Οὐάρρων", "Οὐᾰ́ρρωνος", "Οὐᾰ́ρρωνῐ", "", "Varro"]) + let v = native_list_append(v, ["Βάρρων", "noun", "Βάρρων", "Βᾰ́ρρωνος", "Βᾰ́ρρωνῐ", "", "Varro"]) + let v = native_list_append(v, ["Οὔαρος", "noun", "Οὔαρος", "Οὐᾱ́ρου", "Οὐᾱ́ρῳ", "", "Varus"]) + let v = native_list_append(v, ["Οὐατίνιος", "noun", "Οὐατίνιος", "Οὐᾰτῑνῐ́ου", "Οὐᾰτῑνῐ́ῳ", "", "Vatinius"]) + let v = native_list_append(v, ["Οὐηΐοι", "noun", "Οὐηῐ̈́οι", "Οὐηΐων", "Οὐηῐ̈́οις", "", "Veii a city"]) + let v = native_list_append(v, ["Βήϊοι", "noun", "Βηΐων", "Βηΐων", "Βηΐοις", "", "alternative form of"]) + let v = native_list_append(v, ["Ὑέλη", "noun", "Ὑέλη", "Ὑέλης", "Ὑέλῃ", "", "alternative form of"]) + let v = native_list_append(v, ["Ἐνετός", "noun", "Ἐνετοί", "Ἐνετοῦ", "Ἐνετῷ", "", "One of the"]) + let v = native_list_append(v, ["Βενυσία", "noun", "Βενυσία", "Βενῠσῐ́ᾱς", "Βενῠσῐ́ᾳ", "", "Venusia Venosa a"]) + let v = native_list_append(v, ["Οὐεργίλιος", "noun", "Οὐεργίλιος", "Οὐεργῐλῐ́ου", "Οὐεργῐλῐ́ῳ", "", "Vergilius Virgilius Virgil"]) + let v = native_list_append(v, ["Οὐεργιλία", "noun", "Οὐεργιλία", "Οὐεργῐλῐ́ᾱς", "Οὐεργῐλῐ́ᾳ", "", "Vergilia Virgilia"]) + let v = native_list_append(v, ["Βέρρης", "noun", "Βέρρης", "Βέρρου", "Βέρρῃ", "", "Verres"]) + let v = native_list_append(v, ["Οὐεσπασίανος", "noun", "Οὐεσπασίανος", "Οὐεσπᾰσῐᾱ́νου", "Οὐεσπᾰσῐᾱ́νῳ", "", "Vespasian"]) + let v = native_list_append(v, ["Ἑστία", "noun", "Ἑστία", "Ἑστῐ́ᾱς", "Ἑστῐ́ᾳ", "", "Hestia"]) + let v = native_list_append(v, ["Οὐίνδιξ", "noun", "Οὐίνδιξ", "Οὐίνδικος", "Οὐίνδικῐ", "", "Vindex"]) + let v = native_list_append(v, ["Οὐιτέλλιος", "noun", "Οὐιτέλλιος", "Οὐῐτελλῐ́ου", "Οὐῐτελλῐ́ῳ", "", "Vitellius"]) + let v = native_list_append(v, ["Βοκώνιος", "noun", "Βοκώνιος", "Βοκωνῐ́ου", "Βοκωνῐ́ῳ", "", "Voconius"]) + let v = native_list_append(v, ["Οὐολοῦσκος", "noun", "Οὐολοῦσκοι", "Οὐολούσκου", "Οὐολούσκῳ", "", "one of the"]) + let v = native_list_append(v, ["Οὐολουμνία", "noun", "Οὐολουμνία", "Οὐολουμνῐ́ᾱς", "Οὐολουμνῐ́ᾳ", "", "Volumnia"]) + let v = native_list_append(v, ["Ξανθίας", "noun", "Ξανθίας", "Ξᾰνθῐ́ου", "Ξᾰνθῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ξάνθιππος", "noun", "Ξάνθιππος", "Ξᾰνθῐ́ππου", "Ξᾰνθῐ́ππῳ", "", "a male given"]) + let v = native_list_append(v, ["Ξανθίππη", "noun", "Ξανθίππη", "Ξᾰνθῐ́ππης", "Ξᾰνθῐ́ππῃ", "", "a female given"]) + let v = native_list_append(v, ["Ξενίας", "noun", "Ξενίας", "Ξενῐ́ου", "Ξενῐ́ᾳ", "", "a male given"]) + let v = native_list_append(v, ["Ξενοκλῆς", "noun", "Ξενοκλῆς", "Ξενοκλέους", "Ξενοκλεῖ", "", "a male given"]) + let v = native_list_append(v, ["Ξενοκλείδας", "noun", "Ξενοκλείδας", "Ξενοκλείδου", "Ξενοκλείδᾳ", "", "Doric form of"]) + let v = native_list_append(v, ["Ξενοφάνης", "noun", "Ξενοφάνης", "Ξενοφᾰ́νους", "Ξενοφᾰ́νει", "", "a male given"]) + let v = native_list_append(v, ["Ξενοφῶν", "noun", "Ξενοφῶν", "Ξενοφῶντος", "Ξενοφῶντῐ", "", "a male given"]) + let v = native_list_append(v, ["Ξοῦθος", "noun", "Ξοῦθος", "Ξούθου", "Ξούθῳ", "", "Xuthus"]) + let v = native_list_append(v, ["Ζάβατος", "noun", "Ζάβατος", "Ζαβάτου", "Ζαβάτῳ", "", "the river Zab"]) + let v = native_list_append(v, ["Ζάκυνθος", "noun", "Ζάκυνθος", "Ζᾰκῠ́νθου", "Ζᾰκῠ́νθῳ", "", "Zakynthos Zacynthus Zante"]) + let v = native_list_append(v, ["Ζάγκλη", "noun", "Ζάγκλη", "Ζᾰ́γκλης", "Ζᾰ́γκλῃ", "", "Zancle a city"]) + let v = native_list_append(v, ["Ζήνων", "noun", "Ζήνων", "Ζήνωνος", "Ζήνωνῐ", "", "a male given"]) + let v = native_list_append(v, ["Ζῆθος", "noun", "Ζῆθος", "Ζήθου", "Ζήθῳ", "", "Zethus"]) + let v = native_list_append(v, ["Ζεῦξις", "noun", "Ζεῦξις", "Ζεύξεως", "Ζεύξει", "", "a male given"]) + let v = native_list_append(v, ["Ζώπυρος", "noun", "Ζώπυρος", "Ζωπῠ́ρου", "Ζωπῠ́ρῳ", "", "Zopyrus"]) + let v = native_list_append(v, ["Ζωροάστρης", "noun", "Ζωροάστρης", "Ζωροᾰ́στρου", "Ζωροᾰ́στρῃ", "", "Zarathustra Zoroaster"]) + let v = native_list_append(v, ["Εἰρήνη", "noun", "Εἰρήνη", "Εἰρήνης", "Εἰρήνῃ", "", "a female given"]) + let v = native_list_append(v, ["Ἰουστῖνος", "noun", "Ἰουστῖνος", "Ἰουστίνου", "Ἰουστῑ́νῳ", "", "Justin"]) + let v = native_list_append(v, ["Ἰουστινιανός", "noun", "Ἰουστινιανός", "Ἰουστῑνῐᾱνοῦ", "Ἰουστῑνῐᾱνῷ", "", "Justinian"]) + let v = native_list_append(v, ["προσθήκη", "noun", "προσθῆκαι", "προσθήκης", "προσθήκῃ", "", "addition supplement"]) + let v = native_list_append(v, ["καταγραφή", "noun", "κᾰτᾰγρᾰφαί", "κᾰτᾰγρᾰφῆς", "κᾰτᾰγρᾰφῇ", "", "drawing delineation depiction"]) + let v = native_list_append(v, ["γάδος", "noun", "γᾰ́δοι", "γάδου", "γᾰ́δῳ", "", "cod Gadus morhua"]) + let v = native_list_append(v, ["βυθός", "noun", "βῠθοί", "βῠθοῦ", "βῠθῷ", "", "depth"]) + let v = native_list_append(v, ["γενική", "noun", "γενῐκαί", "γενῐκῆς", "γενῐκῇ", "", "the genitive case"]) + let v = native_list_append(v, ["ἁρμός", "noun", "ἁρμοί", "ἁρμοῦ", "ἁρμῷ", "", "joint"]) + let v = native_list_append(v, ["κρύος", "noun", "κρῠ́η", "κρῠ́ους", "κρῠ́ει", "", "cold chilliness"]) + let v = native_list_append(v, ["ξυλεία", "noun", "ξῠλεῖαι", "ξῠλείᾱς", "ξῠλείᾳ", "", "felling and carrying"]) + let v = native_list_append(v, ["νεκροί", "noun", "νεκροί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πατρίδα", "noun", "πατρίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["νηστεία", "noun", "νηστεῖαι", "νηστείᾱς", "νηστείᾳ", "", "fast period of"]) + let v = native_list_append(v, ["δίαιτα", "noun", "δῐ́αιται", "δῐαίτης", "δῐαίτῃ", "", "way of living"]) + let v = native_list_append(v, ["μισθός", "noun", "μισθοί", "μισθοῦ", "μισθῷ", "", "wages pay hire"]) + let v = native_list_append(v, ["δωρεάν", "noun", "δωρεάν", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Αἰολία", "noun", "Αἰολία", "Αἰολῐ́ᾱς", "Αἰολῐ́ᾳ", "", "Aeolia the land"]) + let v = native_list_append(v, ["νόθος", "noun", "νόθοι", "νόθου", "νόθῳ", "", "a child of"]) + let v = native_list_append(v, ["κατάλογος", "noun", "κᾰτᾰ́λογοι", "κᾰτᾰλόγου", "κᾰτᾰλόγῳ", "", "enrolment"]) + let v = native_list_append(v, ["νομός", "noun", "νομοί", "νομοῦ", "νομῷ", "", "pasture field"]) + let v = native_list_append(v, ["περιφέρεια", "noun", "περῐφέρειαι", "περιφερείᾱς", "περῐφερείᾳ", "", "a periphery outer"]) + let v = native_list_append(v, ["λύγξ", "noun", "αἱ λῠ́γκες", "λῠγκός", "τῇ λῠγκῐ́", "", "lynx"]) + let v = native_list_append(v, ["κόρακας", "noun", "κόρακας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["χημεία", "noun", "χημεία", "χημείᾱς", "χημείᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["Δάφνη", "noun", "Δάφνη", "Δάφνης", "Δάφνῃ", "", "Daphne"]) + let v = native_list_append(v, ["οὐρανοῦ", "noun", "οὐρανοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["οἶνος", "noun", "οἶνοι", "οἴνου", "οἴνῳ", "", "wine alcoholic beverage"]) + let v = native_list_append(v, ["ἱερός", "noun", "ῑ̆̔εροί", "ῑ̆̔εροῦ", "ῑ̆̔ερῷ", "", "a male member"]) + let v = native_list_append(v, ["λόχος", "noun", "λόχοι", "λόχου", "λόχῳ", "", "ambush"]) + let v = native_list_append(v, ["Θηβῶν", "noun", "Θηβῶν", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἥρως", "noun", "ἥρωες", "ἥρωος", "ἥρῳ", "", "a hero of"]) + let v = native_list_append(v, ["ἐλέφας", "noun", "αἱ ἐλέφᾰντες", "ἐλέφαντος", "τῇ ἐλέφᾰντῐ", "", "elephant"]) + let v = native_list_append(v, ["Βούβαστις", "noun", "Βούβαστις", "Βουβάστῐος", "Βουβᾰ́στῑ", "", "Bubastis a city"]) + let v = native_list_append(v, ["ζύμη", "noun", "ζῦμαι", "ζῡ́μης", "ζῡ́μῃ", "", "leaven"]) + let v = native_list_append(v, ["βάσις", "noun", "βᾰ́σεις", "βᾰ́σεως", "βᾰ́σει", "", "stepping step collective"]) + let v = native_list_append(v, ["χρήματα", "noun", "χρήματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ἠριγένεια", "noun", "ἠρῐγένειαι", "ἠρῐγενείᾱς", "ἠρῐγενείᾳ", "", "early-born Homeric epithet"]) + let v = native_list_append(v, ["Ἠώς", "noun", "Ἠώς", "Ἠοῦς", "Ἠοῖ", "", "the goddess Eos"]) + let v = native_list_append(v, ["μήτρα", "noun", "μῆτραι", "μήτρᾱς", "μήτρᾳ", "", "womb"]) + let v = native_list_append(v, ["ὗς", "noun", "αἱ ῠ̔́ες", "ῠ̔ός", "τῇ ῠ̔ῐ̈́", "", "pig swine hog"]) + let v = native_list_append(v, ["ὄχλος", "noun", "ὄχλοι", "ὄχλου", "ὄχλῳ", "", "multitude of people"]) + let v = native_list_append(v, ["ὤρα", "noun", "ὦραι", "ὤρᾱς", "ὤρᾳ", "", "care concern"]) + let v = native_list_append(v, ["χείρ", "noun", "χεῖρες", "χειρός", "χειρῐ́", "", "hand"]) + let v = native_list_append(v, ["τίγρις", "noun", "τῐ́γρεις", "τῐ́γρεως", "τῐ́γρει", "", "tiger"]) + let v = native_list_append(v, ["ὕαινα", "noun", "ῠ̔́αιναι", "ῠ̔αίνης", "ῠ̔αίνῃ", "", "hyena"]) + let v = native_list_append(v, ["σῦς", "noun", "αἱ σῠ́ες", "σῠός", "τῇ σῠῐ̈́", "", "pig swine hog"]) + let v = native_list_append(v, ["ἀλώπηξ", "noun", "ᾰ̓λώπεκες", "ᾰ̓λώπεκος", "ᾰ̓λώπεκῐ", "", "fox small canine"]) + let v = native_list_append(v, ["ἔλαφος", "noun", "αἱ ἔλᾰφοι", "ἐλᾰ́φου", "τῇ ἐλᾰ́φῳ", "", "red deer Cervus"]) + let v = native_list_append(v, ["κῆτος", "noun", "κήτη", "κήτους", "κήτει", "", "whale sea monster"]) + let v = native_list_append(v, ["βάτραχος", "noun", "βᾰ́τρᾰχοι", "βᾰτρᾰ́χου", "βᾰτρᾰ́χῳ", "", "frog small hopping"]) + let v = native_list_append(v, ["ὄρνις", "noun", "αἱ ὄρνῑθες", "ὄρνῑθος", "τῇ ὄρνῑθῐ", "", "bird"]) + let v = native_list_append(v, ["κόλυμβος", "noun", "κόλυμβοι", "κολύμβου", "κολύμβῳ", "", "alternative form of"]) + let v = native_list_append(v, ["θρησκεία", "noun", "θρησκεῖαι", "θρησκείᾱς", "θρησκείᾳ", "", "religious worship ritual"]) + let v = native_list_append(v, ["θέμα", "noun", "θέμᾰτᾰ", "θέμᾰτος", "θέμᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["κλητική", "noun", "κλητῐκαί", "κλητῐκῆς", "κλητῐκῇ", "", "the vocative case"]) + let v = native_list_append(v, ["προσπάθεια", "noun", "προσπάθεια", "", "", "", "passionate attachment"]) + let v = native_list_append(v, ["πόλος", "noun", "πόλοι", "πόλου", "πόλῳ", "", "pivot hinge axis"]) + let v = native_list_append(v, ["διαβήτης", "noun", "δῐᾰβῆται", "δῐᾰβήτου", "δῐᾰβήτῃ", "", "pair of compasses"]) + let v = native_list_append(v, ["κεραία", "noun", "κεραῖαι", "κεραίᾱς", "κεραίᾳ", "", "antennae of the"]) + let v = native_list_append(v, ["φάκελος", "noun", "φάκελοι", "φακέλου", "φακέλῳ", "", "bundle faggot"]) + let v = native_list_append(v, ["θώρακας", "noun", "θώρακας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ἰά", "noun", "ῐ̓αί", "ῐ̓ᾱ́ς", "ῐ̓ᾷ", "", "clamor shout cry"]) + let v = native_list_append(v, ["ἴασις", "noun", "ῑ̓ᾱ́σεις", "ῑ̓ᾱ́σεως", "ῑ̓ᾱ́σει", "", "cure remedy"]) + let v = native_list_append(v, ["Χέοψ", "noun", "Χέοψ", "Χέοπος", "Χέοπῐ", "", "Cheops a king"]) + let v = native_list_append(v, ["ἐτυμολογία", "noun", "ἐτῠμολογῐ́αι", "ἐτῠμολογῐ́ᾱς", "ἐτῠμολογῐ́ᾳ", "", "etymology"]) + let v = native_list_append(v, ["τυπογράφος", "noun", "τῠπογρᾰ́φοι", "τῠπογρᾰ́φου", "τῠπογρᾰ́φῳ", "", "a certified copy"]) + let v = native_list_append(v, ["σπέρμα", "noun", "σπέρμᾰτᾰ", "σπέρμᾰτος", "σπέρμᾰτῐ", "", "seed"]) + let v = native_list_append(v, ["περίοδος", "noun", "περῐ́οδοι", "περῐόδου", "περῐόδῳ", "", "going round in"]) + let v = native_list_append(v, ["φάλαινα", "noun", "φάλαιναι", "φαλαίνης", "φαλαίνῃ", "", "alternative form of"]) + let v = native_list_append(v, ["καταρράκτης", "noun", "κᾰτᾰρρᾶκται", "κᾰταρρᾱ́κτου", "κᾰτᾰρρᾱ́κτῃ", "", "waterfall"]) + let v = native_list_append(v, ["φοιτητής", "noun", "φοιτηταί", "φοιτητοῦ", "φοιτητῇ", "", "pupil"]) + let v = native_list_append(v, ["παρών", "noun", "πᾰρῶνες", "πᾰρῶνος", "πᾰρῶνῐ", "", "a kind of"]) + let v = native_list_append(v, ["σπάνιος", "noun", "σπάνιος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["καταστροφή", "noun", "κᾰτᾰστροφαί", "κᾰτᾰστροφῆς", "κᾰτᾰστροφῇ", "", "overturning"]) + let v = native_list_append(v, ["ἴς", "noun", "ἶνες", "ῑ̓νός", "ῑ̓νῐ́", "", "force power"]) + let v = native_list_append(v, ["ποίημα", "noun", "ποιήμᾰτᾰ", "ποιήμᾰτος", "ποιήμᾰτῐ", "", "a work creation"]) + let v = native_list_append(v, ["Γραικός", "noun", "Γραικός", "Γραικοῦ", "Γραικῷ", "", "Graecus a character"]) + let v = native_list_append(v, ["σαρκοφάγος", "noun", "σᾰρκοφᾰ́γοι", "σᾰρκοφᾰ́γου", "σᾰρκοφᾰ́γῳ", "", "sarcophagus"]) + let v = native_list_append(v, ["ζωγράφος", "noun", "ζωγρᾰ́φοι", "ζωγρᾰ́φου", "ζωγρᾰ́φῳ", "", "one who paints"]) + let v = native_list_append(v, ["διαδικασία", "noun", "δῐᾰδῐκᾰσῐ́αι", "δῐᾰδῐκᾰσῐ́ᾱς", "δῐᾰδῐκᾰσῐ́ᾳ", "", "a suit to"]) + let v = native_list_append(v, ["Μάϊος", "noun", "Μᾱ́ϊοι", "Μᾱΐου", "Μᾱΐῳ", "", "May"]) + let v = native_list_append(v, ["σκιά", "noun", "σκῐαί", "σκῐᾶς", "σκῐᾷ", "", "shadow"]) + let v = native_list_append(v, ["λωτός", "noun", "λωτοί", "λωτοῦ", "λωτῷ", "", "name of various"]) + let v = native_list_append(v, ["Νεφελοκοκκυγία", "noun", "Νεφελοκοκκῡγῐ́αι", "Νεφελοκοκκῡγῐ́ᾱς", "Νεφελοκοκκῡγῐ́ᾳ", "", "cloud-cuckoo-land"]) + let v = native_list_append(v, ["λίμνη", "noun", "λῐ́μναι", "λῐ́μνης", "λῐ́μνῃ", "", "lake marsh basin"]) + let v = native_list_append(v, ["γέφυρα", "noun", "γέφῡραι", "γεφῡ́ρᾱς", "γεφῡ́ρᾳ", "", "dam dyke"]) + let v = native_list_append(v, ["ποιότητα", "noun", "ποιότητα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["σαββατισμός", "noun", "σαββᾰτῐσμοί", "σαββᾰτῐσμοῦ", "σαββᾰτῐσμῷ", "", "keeping of the"]) + let v = native_list_append(v, ["ἱπποκένταυρος", "noun", "ῐ̔πποκένταυροι", "ῐ̔πποκενταύρου", "ῐ̔πποκενταύρῳ", "", "centaur"]) + let v = native_list_append(v, ["πόνος", "noun", "πόνοι", "πόνου", "πόνῳ", "", "labor work especially"]) + let v = native_list_append(v, ["κύκλῳ", "noun", "κύκλῳ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ἐπένθεσις", "noun", "ἐπενθέσεις", "ἐπενθέσεως", "ἐπενθέσει", "", "Insertion of a"]) + let v = native_list_append(v, ["μήνη", "noun", "μῆναι", "μήνης", "μήνῃ", "", "moon"]) + let v = native_list_append(v, ["τάπητας", "noun", "τάπητας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["κατάστημα", "noun", "κατάστημα", "κᾰτᾰστήμᾰτος", "", "", "a state condition"]) + let v = native_list_append(v, ["κίνημα", "noun", "κῑνήμᾰτᾰ", "κῑνήμᾰτος", "κῑνήμᾰτῐ", "", "movement"]) + let v = native_list_append(v, ["περίπατος", "noun", "περῐ́πᾰτοι", "περῐπᾰ́του", "περῐπᾰ́τῳ", "", "a walking"]) + let v = native_list_append(v, ["στολή", "noun", "στολαί", "στολῆς", "στολῇ", "", "equipment"]) + let v = native_list_append(v, ["περιπάτου", "noun", "περιπάτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δίδυμος", "noun", "δῐ́δῠμοι", "δῐδῠ́μου", "δῐδῠ́μῳ", "", "twins"]) + let v = native_list_append(v, ["φλόος", "noun", "φλόοι", "φλόου", "φλόῳ", "", "rind bark peel"]) + let v = native_list_append(v, ["ὑπόκρισις", "noun", "ῠ̔ποκρῐ́σεις", "ῠ̔ποκρῐ́σεως", "ῠ̔ποκρῐ́σει", "", "reply answer"]) + let v = native_list_append(v, ["κωμῳδία", "noun", "κωμῳδῐ́αι", "κωμῳδῐ́ᾱς", "κωμῳδῐ́ᾳ", "", "comedy"]) + let v = native_list_append(v, ["κῶμος", "noun", "κῶμοι", "κώμου", "κώμῳ", "", "festival procession revel"]) + let v = native_list_append(v, ["ᾠδή", "noun", "ᾠδαί", "ᾠδῆς", "ᾠδῇ", "", "the art of"]) + let v = native_list_append(v, ["ἀοιδή", "noun", "ᾰ̓οιδαί", "ᾰ̓οιδῆς", "ᾰ̓οιδῇ", "", "the art of"]) + let v = native_list_append(v, ["ἀοιδός", "noun", "ᾰ̓οιδοί", "ᾰ̓οιδοῦ", "ᾰ̓οιδῷ", "", "singer minstrel bard"]) + let v = native_list_append(v, ["Φωσφόρος", "noun", "Φωσφόροι", "Φωσφόρου", "Φωσφόρῳ", "", "the star that"]) + let v = native_list_append(v, ["Λευκωσία", "noun", "Λευκωσία", "Λευκωσίᾱς", "Λευκωσῐ́ᾳ", "", "an island off"]) + let v = native_list_append(v, ["ἰδιοσυγκρασία", "noun", "ῐ̓δῐοσῠγκρᾱσῐ́αι", "ῐ̓δῐοσῠγκρᾱσῐ́ᾱς", "ῐ̓δῐοσῠγκρᾱσῐ́ᾳ", "", "peculiar temperament or"]) + let v = native_list_append(v, ["κρᾶσις", "noun", "κρᾱ́σεις", "κρᾱ́σεως", "κρᾱ́σει", "", "mixture compound union"]) + let v = native_list_append(v, ["προσευχή", "noun", "προσευχαί", "προσευχῆς", "προσευχῇ", "", "prayer"]) + let v = native_list_append(v, ["βραχίων", "noun", "βρᾰχῑ́ονες", "βρᾰχῑ́ονος", "βρᾰχῑ́ονῐ", "", "upper arm"]) + let v = native_list_append(v, ["δελφύς", "noun", "δελφῠ́ες", "δελφῠ́ος", "δελφῠ́ῐ̈", "", "the womb"]) + let v = native_list_append(v, ["κύβος", "noun", "κῠ́βοι", "κύβου", "κῠ́βῳ", "", "square"]) + let v = native_list_append(v, ["λιμός", "noun", "αἱ λῑμοί", "λῑμοῦ", "τῇ λῑμῷ", "", "famine hunger starvation"]) + let v = native_list_append(v, ["θυγάτηρ", "noun", "θῠγᾰτέρες", "θῠγᾰτέρος", "θῠγᾰτρί", "", "daughter"]) + let v = native_list_append(v, ["δάκρυον", "noun", "δᾰ́κρῠᾰ", "δᾰκρῠ́ου", "δᾰκρῠ́ῳ", "", "alternative form of"]) + let v = native_list_append(v, ["δάκρυ", "noun", "δᾰ́κρῠᾰ", "δᾰ́κρῠος", "δᾰ́κρῠῐ̈", "", "tear drop of"]) + let v = native_list_append(v, ["δόμος", "noun", "δόμοι", "δόμου", "δόμῳ", "", "house"]) + let v = native_list_append(v, ["φηγός", "noun", "φηγοί", "φηγοῦ", "φηγῷ", "", "oak"]) + let v = native_list_append(v, ["φράτηρ", "noun", "φρᾱ́τερες", "φρᾱ́τερος", "φρᾱ́τερῐ", "", "member of a"]) + let v = native_list_append(v, ["ἐνωμοτία", "noun", "ἐνωμοτίαι", "ἐνωμοτίᾱς", "ἐνωμοτίᾳ", "", "A band of"]) + let v = native_list_append(v, ["ἐνωμοτάρχης", "noun", "ἐνωμοτᾰ́ρχαι", "ἐνωμοτάρχου", "ἐνωμοτᾰ́ρχῃ", "", "the leader of"]) + let v = native_list_append(v, ["πίνακας", "noun", "πίνακας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ἄττα", "noun", "ἄττα", "", "", "", "father a mode"]) + let v = native_list_append(v, ["νόημα", "noun", "νοήμᾰτᾰ", "νοήμᾰτος", "νοήμᾰτῐ", "", "perception"]) + let v = native_list_append(v, ["στρατιώτης", "noun", "στρᾰτῐῶται", "στρᾰτῐώτου", "στρᾰτῐώτῃ", "", "soldier warrior"]) + let v = native_list_append(v, ["στήλη", "noun", "στῆλαι", "στήλης", "στήλῃ", "", "block of stone"]) + let v = native_list_append(v, ["τέφρα", "noun", "τέφραι", "τέφρᾱς", "τέφρᾳ", "", "ashes as of"]) + let v = native_list_append(v, ["ἄκμων", "noun", "ᾰ̓́κμονες", "ᾰ̓́κμονος", "ᾰ̓́κμονῐ", "", "meteoric stone"]) + let v = native_list_append(v, ["διαρροή", "noun", "δῐᾰρροαί", "δῐᾰρροῆς", "δῐᾰρροῇ", "", "that through which"]) + let v = native_list_append(v, ["πρόοδος", "noun", "πρόοδοι", "προόδου", "προόδῳ", "", "going on advance"]) + let v = native_list_append(v, ["δίψα", "noun", "δῐ́ψαι", "δῐ́ψης", "δῐ́ψῃ", "", "thirst"]) + let v = native_list_append(v, ["κῦδος", "noun", "κῦδος", "κῡ́δεος", "κῡ́δεῐ̈", "", "renown glory"]) + let v = native_list_append(v, ["μαθητής", "noun", "μᾰθηταί", "μᾰθητοῦ", "μᾰθητῇ", "", "learner pupil"]) + let v = native_list_append(v, ["δειράς", "noun", "δειρᾰ́δες", "δειρᾰ́δος", "δειρᾰ́δῐ", "", "The ridge of"]) + let v = native_list_append(v, ["πομπός", "noun", "πομποί", "πομποῦ", "πομπῷ", "", "conductor guide"]) + let v = native_list_append(v, ["μέρισμα", "noun", "μερῐ́σμᾰτᾰ", "μερῐ́σμᾰτος", "μερῐ́σμᾰτῐ", "", "part"]) + let v = native_list_append(v, ["πολύσπαστον", "noun", "πολύσπᾰστᾰ", "πολυσπάστου", "πολυσπᾰ́στῳ", "", "compound pulley"]) + let v = native_list_append(v, ["δρῦς", "noun", "δρῠ́ες", "δρῠός", "δρῠῐ̈́", "", "tree timber"]) + let v = native_list_append(v, ["δαήρ", "noun", "δᾱέρες", "δᾱέρος", "δᾱέρῐ", "", "husbands brother brother-in-law"]) + let v = native_list_append(v, ["θράσος", "noun", "θρᾰ́ση", "θρᾰ́σεος", "θρᾰ́σει", "", "confidence courage boldness"]) + let v = native_list_append(v, ["ὀφρύς", "noun", "ὀφρῠ́ες", "ὀφρῠ́ος", "ὀφρῠ́ῐ̈", "", "eyebrow"]) + let v = native_list_append(v, ["πυθμήν", "noun", "πῠθμένες", "πῠθμένος", "πῠθμένῐ", "", "bottom of a"]) + let v = native_list_append(v, ["ᾠόν", "noun", "ᾠᾰ́", "ᾠοῦ", "ᾠῷ", "", "egg"]) + let v = native_list_append(v, ["βακτηρία", "noun", "βᾰκτηρῐ́αι", "βᾰκτηρῐ́ᾱς", "βᾰκτηρῐ́ᾳ", "", "rod staff cane"]) + let v = native_list_append(v, ["λεκάνη", "noun", "λεκᾰ́ναι", "λεκᾰ́νης", "λεκᾰ́νῃ", "", "dish pot pan"]) + let v = native_list_append(v, ["συνώνυμον", "noun", "σῠνώνῠμᾰ", "σῠνωνῠ́μου", "σῠνωνῠ́μῳ", "", "synonym"]) + let v = native_list_append(v, ["ἔκδυσις", "noun", "ἐκδῠ́σεις", "ἐκδῠ́σεως", "ἐκδῠ́σει", "", "A stripping shedding"]) + let v = native_list_append(v, ["φάσηλος", "noun", "φᾰ́σηλοι", "φᾰσήλου", "φᾰσήλῳ", "", "cowpea"]) + let v = native_list_append(v, ["κύδος", "noun", "κῠ́δοι", "κύδου", "κῠ́δῳ", "", "taunt"]) + let v = native_list_append(v, ["εἰρωνεία", "noun", "εἰρωνεῖαι", "εἰρωνείᾱς", "εἰρωνείᾳ", "", "hypocrisy deception especially"]) + let v = native_list_append(v, ["εἴρων", "noun", "εἴρωνες", "εἴρωνος", "εἴρωνῐ", "", "One who says"]) + let v = native_list_append(v, ["ἱερόδουλος", "noun", "ῑ̔ερόδουλοι", "ῑ̔εροδούλου", "ῑ̔εροδούλῳ", "", "hierodule a temple"]) + let v = native_list_append(v, ["ῥαβδομαντεία", "noun", "ῥᾰβδομᾰντεῖαι", "ῥᾰβδομᾰντείᾱς", "ῥᾰβδομᾰντείᾳ", "", "divination by means"]) + let v = native_list_append(v, ["ῥάβδος", "noun", "ῥᾰ́βδοι", "ῥᾰ́βδου", "ῥᾰ́βδῳ", "", "rod wand stick"]) + let v = native_list_append(v, ["μαντεία", "noun", "μᾰντεῖαι", "μᾰντείᾱς", "μᾰντείᾳ", "", "prophecy divination oracle"]) + let v = native_list_append(v, ["μάντις", "noun", "μᾰ́ντεις", "μᾰ́ντεως", "μᾰ́ντει", "", "prophet or seer"]) + let v = native_list_append(v, ["κεφάλαιον", "noun", "κεφᾰ́λαιᾰ", "κεφᾰλαίου", "κεφᾰλαίῳ", "", "main point gist"]) + let v = native_list_append(v, ["ἐρείπια", "noun", "ἐρείπια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἐρείπιον", "noun", "ἐρείπῐᾰ", "ἐρειπῐ́ου", "ἐρειπῐ́ῳ", "", "ruin wreck"]) + let v = native_list_append(v, ["λοπαδο­τεμαχο­σελαχο­γαλεο­κρανιο­λειψανο­δριμυ­ποτριμματο­σιλφιο­καραβο­μελιτο­κατακεχυμενο­κιχλε­πικοσσυφο­φαττο­περιστερα­λεκτρυο­νοπτο­κεφαλλιο­κιγκλο­πελειο­λαγῳο­σιραιο­βαφητραγανοπτερύγων", "noun", "λοπαδο­τεμαχο­σελαχο­γαλεο­κρανιο­λειψανο­δριμυ­ποτριμματο­σιλφιο­καραβο­μελιτο­κατακεχυμενο­κιχλε­πικοσσυφο­φαττο­περιστερα­λεκτρυο­νοπτο­κεφαλλιο­κιγκλο­πελειο­λαγῳο­σιραιο­βαφητραγανοπτερύγων", "", "", "", "a dish created"]) + let v = native_list_append(v, ["λοπάς", "noun", "λοπᾰ́δες", "λοπᾰ́δος", "λοπᾰ́δῐ", "", "flat dish plate"]) + let v = native_list_append(v, ["τέμαχος", "noun", "τεμᾰ́χη", "τεμᾰ́χους", "τεμᾰ́χει", "", "slice of fish"]) + let v = native_list_append(v, ["σέλαχος", "noun", "σελᾰ́χη", "σελᾰ́χους", "σελᾰ́χει", "", "cartilaginous fish shark"]) + let v = native_list_append(v, ["γαλεός", "noun", "γᾰλεοί", "γᾰλεοῦ", "γᾰλεῷ", "", "small shark dogfish"]) + let v = native_list_append(v, ["κόγχος", "noun", "κόγχοι", "κόγχου", "κόγχῳ", "", "mussel cockle"]) + let v = native_list_append(v, ["αἶθος", "noun", "αἶθοι", "αἴθου", "αἴθῳ", "", "heat fire"]) + let v = native_list_append(v, ["λείψανον", "noun", "λείψᾰνᾰ", "λειψᾰ́νου", "λειψᾰ́νῳ", "", "That which is"]) + let v = native_list_append(v, ["ὕδρος", "noun", "ῠ̔́δροι", "ῠ̔́δρου", "ῠ̔́δρῳ", "", "water serpent"]) + let v = native_list_append(v, ["ὕδρα", "noun", "ῠ̔́δραι", "ῠ̔́δρᾱς", "ῠ̔́δρᾳ", "", "sea serpent"]) + let v = native_list_append(v, ["ἐχῖνος", "noun", "ἐχῖνοι", "ἐχῑ́νου", "ἐχῑ́νῳ", "", "hedgehog"]) + let v = native_list_append(v, ["τοπογραφία", "noun", "τοπογρᾰφῐ́αι", "τοπογρᾰφῐ́ᾱς", "τοπογρᾰφῐ́ᾳ", "", "description of a"]) + let v = native_list_append(v, ["νότος", "noun", "νότοι", "νότου", "νότῳ", "", "the southwest wind"]) + let v = native_list_append(v, ["δαίμων", "noun", "αἱ δαίμονες", "δαίμονος", "τῇ δαίμονῐ", "", "god goddess demigod"]) + let v = native_list_append(v, ["τύπος", "noun", "τῠ́ποι", "τῠ́που", "τῠ́πῳ", "", "A blow pressing"]) + let v = native_list_append(v, ["πελάτης", "noun", "πελᾰ́ται", "πελάτου", "πελᾰ́τῃ", "", "one who approaches"]) + let v = native_list_append(v, ["κέντρον", "noun", "κέντρᾰ", "κέντρου", "κέντρῳ", "", "something with a"]) + let v = native_list_append(v, ["ἐνάτηρ", "noun", "εἰνᾰ́τερες", "εἰνάτερος", "ἐνατρί", "", "brother’s wife"]) + let v = native_list_append(v, ["εἰνάτερες", "noun", "εἰνάτερες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["λόφος", "noun", "λόφοι", "λόφου", "λόφῳ", "", "the back of"]) + let v = native_list_append(v, ["σεισμός", "noun", "σεισμοί", "σεισμοῦ", "σεισμῷ", "", "shaking shock"]) + let v = native_list_append(v, ["κέρας", "noun", "κέρᾱτᾰ", "κέρᾱτος", "κέρᾱτῐ", "", "horn of an"]) + let v = native_list_append(v, ["πίθηκοι", "noun", "πίθηκοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["μῦς", "noun", "μῠ́ες", "μῠός", "μῠῐ̈́", "", "mouse"]) + let v = native_list_append(v, ["πληθυσμός", "noun", "πληθῠσμοί", "πληθῠσμοῦ", "πληθῠσμῷ", "", "increasing enlargement multiplication"]) + let v = native_list_append(v, ["πληθύς", "noun", "πληθύς", "πληθῠ́ος", "πληθῠ́ῐ̈", "", "Ionic and Epic"]) + let v = native_list_append(v, ["ἤπειρος", "noun", "ἤπειροι", "ἠπείρου", "ἠπείρῳ", "", "mainland land"]) + let v = native_list_append(v, ["ἔκτασις", "noun", "ἐκτᾰ́σεις", "ἐκτᾰ́σεως", "ἐκτᾰ́σει", "", "A stretching out"]) + let v = native_list_append(v, ["μασχάλη", "noun", "μᾰσχᾰ́λαι", "μᾰσχᾰ́λης", "μᾰσχᾰ́λῃ", "", "armpit axilla"]) + let v = native_list_append(v, ["μανία", "noun", "μᾰνῐ́αι", "μᾰνῐ́ᾱς", "μᾰνῐ́ᾳ", "", "madness frenzy enthusiasm"]) + let v = native_list_append(v, ["ὕμνος", "noun", "ῠ̔́μνοι", "ῠ̔́μνου", "ῠ̔́μνῳ", "", "song hymn ode"]) + let v = native_list_append(v, ["ἁρμονία", "noun", "ἁρμονίαι", "ἁρμονίᾱς", "ἁρμονίᾳ", "", "a fitting together"]) + let v = native_list_append(v, ["πορνογράφος", "noun", "πορνογρᾰ́φοι", "πορνογρᾰ́φου", "πορνογρᾰ́φῳ", "", "a pornographer a"]) + let v = native_list_append(v, ["ἀκτή", "noun", "ἀκταί", "ἀκτῆς", "ἀκτῇ", "", "headland cape promontory"]) + let v = native_list_append(v, ["Ἰλλυριός", "noun", "Ἰλλῠρῐοί", "Ἰλλῠρῐοῦ", "Ἰλλῠρῐῷ", "", "an Illyrian"]) + let v = native_list_append(v, ["φελλός", "noun", "φελλοί", "φελλοῦ", "φελλῷ", "", "cork oak Quercus"]) + let v = native_list_append(v, ["κόρυδος", "noun", "κόρῠδοι", "κορῠ́δου", "κορῠ́δῳ", "", "crested lark Galerida"]) + let v = native_list_append(v, ["κορυφή", "noun", "κορῠφαί", "κορῠφῆς", "κορῠφῇ", "", "top of the"]) + let v = native_list_append(v, ["κάρη", "noun", "κᾰ́ρητᾰ", "κᾰ́ρητος", "κᾰ́ρητῐ", "", "Homeric and Ionic"]) + let v = native_list_append(v, ["συμφωνία", "noun", "σῠμφωνῐ́αι", "σῠμφωνῐ́ᾱς", "σῠμφωνῐ́ᾳ", "", "agreement in sound"]) + let v = native_list_append(v, ["διάστημα", "noun", "διαστήμᾰτᾰ", "διαστήματος", "διαστήμᾰτῐ", "", "An interval or"]) + let v = native_list_append(v, ["κῆρ", "noun", "κῆρ", "κῆρος", "κῆρῐ", "", "heart"]) + let v = native_list_append(v, ["λαβύρινθος", "noun", "λᾰβῠ́ρῐνθοι", "λᾰβῠρῐ́νθου", "λᾰβῠρῐ́νθῳ", "", "A labyrinth maze"]) + let v = native_list_append(v, ["βαθμός", "noun", "βᾰθμοί", "βαθμοῦ", "βᾰθμῷ", "", "step"]) + let v = native_list_append(v, ["κρόταφος", "noun", "κρότᾰφοι", "κροτάφου", "κροτᾰ́φῳ", "", "temple side of"]) + let v = native_list_append(v, ["ἑρπετόν", "noun", "ἑρπετᾰ́", "ἑρπετοῦ", "ἑρπετῷ", "", "Any animal which"]) + let v = native_list_append(v, ["φιλανθρωπία", "noun", "φιλανθρωπία", "φιλανθρωπῐ́ᾱς", "φιλανθρωπῐ́ᾳ", "", "humanity benevolence kind-heartedness"]) + let v = native_list_append(v, ["κιθάρα", "noun", "κῐθᾰ́ραι", "κῐθᾰ́ρᾱς", "κῐθᾰ́ρᾳ", "", "lyre"]) + let v = native_list_append(v, ["λύρα", "noun", "λῠ́ραι", "λῠ́ρᾱς", "λῠ́ρᾳ", "", "lyre string instrument"]) + let v = native_list_append(v, ["πέρδιξ", "noun", "αἱ πέρδῑκες", "πέρδῑκος", "τῇ πέρδῑκῐ", "", "partridge"]) + let v = native_list_append(v, ["παιδαγωγός", "noun", "παιδᾰγωγοί", "παιδᾰγωγοῦ", "παιδᾰγωγῷ", "", "originally a slave"]) + let v = native_list_append(v, ["κρόκος", "noun", "κρόκοι", "κρόκου", "κρόκῳ", "", "saffron Crocus sativus"]) + let v = native_list_append(v, ["παιδαγωγία", "noun", "παιδᾰγωγῐ́αι", "παιδᾰγωγῐ́ᾱς", "παιδᾰγωγῐ́ᾳ", "", "the act of"]) + let v = native_list_append(v, ["δυσφορία", "noun", "δῠσφορῐ́αι", "δῠσφορῐ́ᾱς", "δῠσφορῐ́ᾳ", "", "extreme or unbearable"]) + let v = native_list_append(v, ["ἀπορία", "noun", "ᾰ̓πορῐ́αι", "ᾰ̓πορῐ́ᾱς", "ᾰ̓πορῐ́ᾳ", "", "a difficulty in"]) + let v = native_list_append(v, ["πόρος", "noun", "πόροι", "πόρου", "πόρῳ", "", "a means of"]) + let v = native_list_append(v, ["μέθυ", "noun", "μέθυ", "μέθῠος", "μέθῠῐ̈", "", "wine"]) + let v = native_list_append(v, ["ἀλφός", "noun", "ᾰ̓λφοί", "ᾰ̓λφοῦ", "ᾰ̓λφῷ", "", "alphos a type"]) + let v = native_list_append(v, ["Στέντωρ", "noun", "Στέντωρ", "Στέντορος", "Στέντορῐ", "", "Stentor"]) + let v = native_list_append(v, ["ὑπότριμμα", "noun", "ῠ̔ποτρῑ́μμᾰτᾰ", "ῠ̔ποτρῑ́μμᾰτος", "ῠ̔ποτρῑ́μμᾰτῐ", "", "a pungent dish"]) + let v = native_list_append(v, ["ἀπόφθεγμα", "noun", "ἀποφθέγμᾰτᾰ", "ἀποφθέγματος", "ἀποφθέγμᾰτῐ", "", "a thing uttered"]) + let v = native_list_append(v, ["προσβολή", "noun", "προσβολαί", "προσβολῆς", "προσβολῇ", "", "a putting to"]) + let v = native_list_append(v, ["ἐπιφάνεια", "noun", "ἐπῐφᾰ́νειαι", "ἐπῐφᾰνείᾱς", "ἐπῐφᾰνείᾳ", "", "appearance manifestation especially"]) + let v = native_list_append(v, ["σίλφιον", "noun", "σῐ́λφῐᾰ", "σῐλφῐ́ου", "σῐλφῐ́ῳ", "", "laserwort silphium silphion"]) + let v = native_list_append(v, ["κάραβος", "noun", "κᾱ́ρᾰβοι", "κᾱρᾰ́βου", "κᾱρᾰ́βῳ", "", "a kind of"]) + let v = native_list_append(v, ["δεσπότης", "noun", "δεσπόται", "δεσπότου", "δεσπότῃ", "", "master lord most"]) + let v = native_list_append(v, ["ζυγόν", "noun", "ζῠγᾰ́", "ζῠγοῦ", "ζῠγῷ", "", "yoke for joining"]) + let v = native_list_append(v, ["πόσις", "noun", "πόσεις", "πόσιος", "πόσει", "", "husband"]) + let v = native_list_append(v, ["ὄσσε", "noun", "ὄσσων", "ὄσσων", "ὄσσοις", "", "eyes"]) + let v = native_list_append(v, ["κίχλη", "noun", "κῐ́χλαι", "κῐ́χλης", "κῐ́χλῃ", "", "thrush bird"]) + let v = native_list_append(v, ["κόσσυφος", "noun", "κόσσῠφοι", "κοσσῠ́φου", "κοσσῠ́φῳ", "", "blackbird"]) + let v = native_list_append(v, ["φάττα", "noun", "φᾰ́τται", "φᾰ́ττης", "φᾰ́ττῃ", "", "Attic form of"]) + let v = native_list_append(v, ["περιστερός", "noun", "περῐστεροί", "περῐστεροῦ", "περῐστερῷ", "", "masculine of περῐστερᾱ́"]) + let v = native_list_append(v, ["περιστερά", "noun", "περῐστεραί", "περῐστερᾶς", "περῐστερᾷ", "", "pigeon dove"]) + let v = native_list_append(v, ["ἀλεκτρυών", "noun", "αἱ ᾰ̓λεκτρῠόνες", "ᾰ̓λεκτρῠόνος", "τῇ ᾰ̓λεκτρῠόνῐ", "", "a male chicken"]) + let v = native_list_append(v, ["κεφάλιον", "noun", "κεφᾰ́λῐᾰ", "κεφᾰλῐ́ου", "κεφᾰλῐ́ῳ", "", "little head"]) + let v = native_list_append(v, ["κίγκλος", "noun", "κῐ́γκλοι", "κῐ́γκλου", "κῐ́γκλῳ", "", "dipper Cinclus cinclus"]) + let v = native_list_append(v, ["πέλεια", "noun", "πέλειαι", "πελείᾱς", "πελείᾳ", "", "rock pigeon"]) + let v = native_list_append(v, ["λαγῷος", "noun", "λᾰγῷοι", "λᾰγῴου", "λᾰγῴῳ", "", "hares flesh"]) + let v = native_list_append(v, ["σίραιον", "noun", "σῐ́ραιᾰ", "σῐραίου", "σῐραίῳ", "", "boiled down new"]) + let v = native_list_append(v, ["βαφή", "noun", "βᾰφαί", "βᾰφῆς", "βᾰφῇ", "", "a dipping"]) + let v = native_list_append(v, ["τραγανός", "noun", "τρᾰγᾰνοί", "τρᾰγᾰνοῦ", "τρᾰγᾰνῷ", "", "goat"]) + let v = native_list_append(v, ["χολέρα", "noun", "χολέραι", "χολέρᾱς", "χολέρᾳ", "", "cholera a disease"]) + let v = native_list_append(v, ["Ἐλισάβετ", "noun", "Ἐλισάβετ", "", "", "", "Elizabeth mother of"]) + let v = native_list_append(v, ["πλάνης", "noun", "πλᾰ́νητες", "πλᾰ́νητος", "πλᾰ́νητῐ", "", "wanderer roamer vagabond"]) + let v = native_list_append(v, ["πλανήτης", "noun", "πλᾰνῆται", "πλᾰνήτου", "πλᾰνήτῃ", "", "wanderer vagabond"]) + let v = native_list_append(v, ["ἕρμα", "noun", "ἕρμᾰτᾰ", "ἕρμᾰτος", "ἕρμᾰτῐ", "", "prop support foundation"]) + let v = native_list_append(v, ["λεξικά", "noun", "λεξικά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["λύκοι", "noun", "λύκοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["λύκων", "noun", "λύκων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["λύκους", "noun", "λύκους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["λύκου", "noun", "λύκου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λύκε", "noun", "λύκε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ἱερεύς", "noun", "ῐ̔ερῆς", "ῐ̔ερέως", "ῐ̔ερεῖ", "", "priest diviner sacrificer"]) + let v = native_list_append(v, ["κιθάρας", "noun", "κιθάρας", "", "", "", "inflection of κῐθᾰ́ρᾱ"]) + let v = native_list_append(v, ["γλώσσας", "noun", "γλώσσας", "", "", "", "inflection of γλῶσσᾰ"]) + let v = native_list_append(v, ["τέκνα", "noun", "τέκνα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["τέκνου", "noun", "τέκνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τέκνων", "noun", "τέκνων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τέκνον", "noun", "τέκνᾰ", "τέκνου", "τέκνῳ", "", "child of either"]) + let v = native_list_append(v, ["σκύλους", "noun", "σκύλους", "", "", "", "contracted genitive singular"]) + let v = native_list_append(v, ["μονή", "noun", "μοναί", "μονῆς", "μονῇ", "", "a staying abiding"]) + let v = native_list_append(v, ["πλατεία", "noun", "πλατεία", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["νεῦρον", "noun", "νεῦρᾰ", "νεύρου", "νεύρῳ", "", "sinew tendon"]) + let v = native_list_append(v, ["μόλυβδος", "noun", "μόλῠβδοι", "μολῠ́βδου", "μολῠ́βδῳ", "", "lead metal"]) + let v = native_list_append(v, ["πόλεις", "noun", "πόλεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πόλεων", "noun", "πόλεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πόλεως", "noun", "πόλεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χειμών", "noun", "χειμῶνες", "χειμῶνος", "χειμῶνῐ", "", "winter"]) + let v = native_list_append(v, ["χεῖμα", "noun", "χείμᾰτᾰ", "χείμᾰτος", "χείμᾰτῐ", "", "winter"]) + let v = native_list_append(v, ["ἄργυρος", "noun", "ᾰ̓́ργῠροι", "ᾰ̓ργῠ́ρου", "ᾰ̓ργῠ́ρῳ", "", "silver"]) + let v = native_list_append(v, ["Ἀστάρτη", "noun", "Ἀστάρτη", "Ᾰ̓στᾰ́ρτης", "Ᾰ̓στᾰ́ρτῃ", "", "Astarte"]) + let v = native_list_append(v, ["πέλαγος", "noun", "πελᾰ́γη", "πελᾰ́γους", "πελᾰ́γει", "", "sea"]) + let v = native_list_append(v, ["ἁγνεία", "noun", "ᾰ̔γνεῖαι", "ᾰ̔γνείᾱς", "ᾰ̔γνείᾳ", "", "purity chastity"]) + let v = native_list_append(v, ["κώμυς", "noun", "κώμῡθες", "κώμῡθος", "κώμῡθῐ", "", "a bundle of"]) + let v = native_list_append(v, ["λήθαργος", "noun", "λήθᾱργοι", "ληθᾱ́ργου", "ληθᾱ́ργῳ", "", "lethargy"]) + let v = native_list_append(v, ["εὐκινησία", "noun", "εὐκῑνησῐ́αι", "εὐκῑνησῐ́ᾱς", "εὐκῑνησῐ́ᾳ", "", "ease of motion"]) + let v = native_list_append(v, ["εἰκάς", "noun", "εἰκᾰ́δες", "εἰκᾰ́δος", "εἰκᾰ́δῐ", "", "The twentieth day"]) + let v = native_list_append(v, ["εἰδωλολατρία", "noun", "εἰδωλολᾰτρῐ́αι", "εἰδωλολᾰτρῐ́ᾱς", "εἰδωλολᾰτρῐ́ᾳ", "", "idolatry the worship"]) + let v = native_list_append(v, ["βωλίτης", "noun", "βωλῖται", "βωλῑ́του", "βωλῑ́τῃ", "", "mushroom especially champignon"]) + let v = native_list_append(v, ["παράλειψις", "noun", "πᾰρᾰλείψεις", "πᾰρᾰλείψεως", "πᾰρᾰλείψει", "", "neglect"]) + let v = native_list_append(v, ["αὐλή", "noun", "αὐλαί", "αὐλῆς", "αὐλῇ", "", "open court courtyard"]) + let v = native_list_append(v, ["ἁγιασμός", "noun", "ᾰ̔γῐᾰσμοί", "ᾰ̔γῐᾰσμοῦ", "ᾰ̔γῐᾰσμῷ", "", "consecration sanctification holiness"]) + let v = native_list_append(v, ["κατηγορία", "noun", "κᾰτηγορῐ́αι", "κᾰτηγορῐ́ᾱς", "κᾰτηγορῐ́ᾳ", "", "charge accusation"]) + let v = native_list_append(v, ["δεσμός", "noun", "δεσμοί", "δεσμοῦ", "δεσμῷ", "", "bond fetter"]) + let v = native_list_append(v, ["μήλου", "noun", "μήλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μήλων", "noun", "μήλων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["γόνυ", "noun", "γόνᾰτᾰ", "γόνᾰτος", "γόνᾰτῐ", "", "knee"]) + let v = native_list_append(v, ["ἀετός", "noun", "ᾱ̓ετοί", "ᾱ̓ετοῦ", "ᾱ̓ετῷ", "", "eagle"]) + let v = native_list_append(v, ["τεῖχος", "noun", "τείχη", "τείχεος", "τείχει", "", "a wall especially"]) + let v = native_list_append(v, ["ἐλευθερία", "noun", "ἐλευθερῐ́αι", "ἐλευθερῐ́ᾱς", "ἐλευθερῐ́ᾳ", "", "freedom liberty"]) + let v = native_list_append(v, ["βαττολογία", "noun", "βαττολογῐ́αι", "βαττολογῐ́ᾱς", "βαττολογῐ́ᾳ", "", "stuttering"]) + let v = native_list_append(v, ["χθών", "noun", "χθόνες", "χθονός", "χθονῐ́", "", "ground soil surface"]) + let v = native_list_append(v, ["ὀδμή", "noun", "ὀδμαί", "ὀδμῆς", "ὀδμῇ", "", "smell scent odour"]) + let v = native_list_append(v, ["ὀσμή", "noun", "ὀσμαί", "ὀσμῆς", "ὀσμῇ", "", "smell scent odour"]) + let v = native_list_append(v, ["ὄζον", "noun", "ὄζον", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ἀπόδρασις", "noun", "ἀποδρᾱ́σεις", "ἀποδρᾱ́σεως", "ἀποδρᾱ́σει", "", "escape evasion"]) + let v = native_list_append(v, ["θυμός", "noun", "θῡμοί", "θῡμοῦ", "θῡμῷ", "", "soul as the"]) + let v = native_list_append(v, ["γένυς", "noun", "γένῠες", "γένῠος", "γένῠῐ̈", "", "jaw"]) + let v = native_list_append(v, ["γάλως", "noun", "γᾰ́λῳ", "γᾰ́λω", "γᾰ́λῳ", "", "sister-in-law husbands sister"]) + let v = native_list_append(v, ["χήν", "noun", "αἱ χῆνες", "χηνός", "τῇ χηνῐ́", "", "goose"]) + let v = native_list_append(v, ["ἴσος", "noun", "αἱ ῐ̓́σοι", "ῐ̓́σου", "τῇ ῐ̓́σῳ", "", "an equal person"]) + let v = native_list_append(v, ["θυγατέρα", "noun", "θυγατέρα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["συγάτηρ", "noun", "συγάτηρ", "", "", "", "daughter"]) + let v = native_list_append(v, ["τίσις", "noun", "τῐ́σεις", "τῐ́σεως", "τῐ́σει", "", "payment"]) + let v = native_list_append(v, ["χεῖλος", "noun", "χείλη", "χείλεος", "χείλει", "", "lip"]) + let v = native_list_append(v, ["χορδή", "noun", "χορδαί", "χορδῆς", "χορδῇ", "", "guts intestines tripe"]) + let v = native_list_append(v, ["ἔορ", "noun", "ἔορες", "ἔορος", "ἔορῐ", "", "daughter of a"]) + let v = native_list_append(v, ["κοινά", "noun", "κοινά", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["σκάριφος", "noun", "σκᾰ́ρῑφοι", "σκᾰρῑ́φου", "σκᾰρῑ́φῳ", "", "planing"]) + let v = native_list_append(v, ["ὄϊς", "noun", "αἱ ὄῐ̈ες", "ὄῐ̈ος", "τῇ ὄῑ̈", "", "alternative form of"]) + let v = native_list_append(v, ["οἶς", "noun", "αἱ οἶες", "οἰός", "τῇ οἰῐ̈́", "", "sheep either a"]) + let v = native_list_append(v, ["νέα", "noun", "νέα", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["νέες", "noun", "νέες", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["νέας", "noun", "νέας", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["δυνάμεις", "noun", "δυνάμεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["δυνάμεων", "noun", "δυνάμεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["δυνάμεως", "noun", "δυνάμεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κόρης", "noun", "κόρης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἐπιχαιρεκακία", "noun", "ἐπῐχαιρεκᾰκῐ́αι", "ἐπῐχαιρεκᾰκῐ́ᾱς", "ἐπῐχαιρεκᾰκῐ́ᾳ", "", "joy at the"]) + let v = native_list_append(v, ["προσῳδία", "noun", "προσῳδῐ́αι", "προσῳδῐ́ᾱς", "προσῳδῐ́ᾳ", "", "a song with"]) + let v = native_list_append(v, ["ἄγος", "noun", "ᾰ̓́γη", "ᾰ̓́γεος", "ᾰ̓́γει", "", "awe reverence dread"]) + let v = native_list_append(v, ["μένος", "noun", "μένη", "μένεος", "μένει", "", "mind"]) + let v = native_list_append(v, ["οὖθαρ", "noun", "οὔθᾰτᾰ", "οὔθᾰτος", "οὔθᾰτῐ", "", "udder"]) + let v = native_list_append(v, ["ἄκρις", "noun", "ᾰ̓́κρῐες", "ᾰ̓́κρῐος", "ᾰ̓́κρῑ", "", "peak mountaintop hilltop"]) + let v = native_list_append(v, ["ὄκρις", "noun", "ὄκρῐες", "ὄκρῐος", "ὄκρῑ", "", "point prominence"]) + let v = native_list_append(v, ["ἐπιστολή", "noun", "ἐπῐστολαί", "ἐπῐστολῆς", "ἐπῐστολῇ", "", "message letter"]) + let v = native_list_append(v, ["σατράπης", "noun", "σατράπαι", "σᾰτράπου", "σατράπῃ", "", "a satrap title"]) + let v = native_list_append(v, ["πῶϋ", "noun", "πώεᾰ", "πώεος", "πώεῐ̈", "", "flock of sheep"]) + let v = native_list_append(v, ["πῶμα", "noun", "πώμᾰτᾰ", "πώμᾰτος", "πώμᾰτῐ", "", "lid cover"]) + let v = native_list_append(v, ["πτέρνη", "noun", "πτέρναι", "πτέρνης", "πτέρνῃ", "", "heel"]) + let v = native_list_append(v, ["πέρνα", "noun", "πέρναι", "πέρνης", "πέρνῃ", "", "ham"]) + let v = native_list_append(v, ["ἔγχελυς", "noun", "ἐγχέλῠες", "ἐγχέλῠος", "ἐγχέλῠῐ̈", "", "eel"]) + let v = native_list_append(v, ["ἔχις", "noun", "αἱ ἔχεις", "ἔχῐος", "τῇ ἔχει", "", "snake adder viper"]) + let v = native_list_append(v, ["ὄφις", "noun", "ὄφεις", "ὄφεως", "ὄφει", "", "serpent snake"]) + let v = native_list_append(v, ["προσδοκία", "noun", "προσδοκῐ́αι", "προσδοκῐ́ᾱς", "προσδοκῐ́ᾳ", "", "expectation"]) + let v = native_list_append(v, ["κλῖμαξ", "noun", "κλῑ́μᾰκες", "κλῑ́μᾰκος", "κλῑ́μᾰκῐ", "", "ladder"]) + let v = native_list_append(v, ["πνευμονία", "noun", "πνευμονῐ́αι", "πνευμονῐ́ᾱς", "πνευμονῐ́ᾳ", "", "a disease of"]) + let v = native_list_append(v, ["πέταλον", "noun", "πέτᾰλᾰ", "πετᾰ́λου", "πετᾰ́λῳ", "", "leaf of plant"]) + let v = native_list_append(v, ["πόντος", "noun", "πόντοι", "πόντου", "πόντῳ", "", "the sea"]) + let v = native_list_append(v, ["πέλμα", "noun", "πέλμᾰτᾰ", "πέλμᾰτος", "πέλμᾰτῐ", "", "sole of the"]) + let v = native_list_append(v, ["ψύλλα", "noun", "ψῠ́λλαι", "ψῠ́λλης", "ψῠ́λλῃ", "", "flea"]) + let v = native_list_append(v, ["πλεύμων", "noun", "πλεύμονες", "πλεύμονος", "πλεύμονῐ", "", "lung"]) + let v = native_list_append(v, ["ἔπος", "noun", "ἔπη", "ἔπεος", "ἔπει", "", "something spoken speech"]) + let v = native_list_append(v, ["πυλεών", "noun", "πῠλεῶνες", "πῠλεῶνος", "πῠλεῶνῐ", "", "alternative form of"]) + let v = native_list_append(v, ["ἐνέργεια", "noun", "ἐνέργειαι", "ἐνεργείᾱς", "ἐνεργείᾳ", "", "activity operation vigour"]) + let v = native_list_append(v, ["ἄτρακτος", "noun", "αἱ ἄτρακτοι", "ἀτράκτου", "τῇ ἀτράκτῳ", "", "spindle"]) + let v = native_list_append(v, ["τέρθρον", "noun", "τέρθρᾰ", "τέρθρου", "τέρθρῳ", "", "the end of"]) + let v = native_list_append(v, ["τετράων", "noun", "τετράωνες", "τετράωνος", "τετράωνῐ", "", "grouse"]) + let v = native_list_append(v, ["τέρεμνον", "noun", "τέρεμνᾰ", "τερέμνου", "τερέμνῳ", "", "alternative form of"]) + let v = native_list_append(v, ["στρουθός", "noun", "στρουθοί", "στρουθοῦ", "στρουθῷ", "", "house sparrow Passer"]) + let v = native_list_append(v, ["σάκος", "noun", "σᾰ́κη", "σᾰ́κεος", "σᾰ́κει", "", "a shield"]) + let v = native_list_append(v, ["κρατήρ", "noun", "κρᾱτῆρες", "κρᾱτῆρος", "κρᾱτῆρῐ", "", "mixing bowl for"]) + let v = native_list_append(v, ["κριός", "noun", "κρῑοί", "κρῑοῦ", "κρῑῷ", "", "ram"]) + let v = native_list_append(v, ["κλύδων", "noun", "κλῠ́δωνες", "κλῠ́δωνος", "κλῠ́δωνῐ", "", "wave billow and"]) + let v = native_list_append(v, ["κόραξ", "noun", "κόρᾰκες", "κόρᾰκος", "κόρᾰκῐ", "", "raven crow"]) + let v = native_list_append(v, ["χέρσος", "noun", "χέρσοι", "χέρσου", "χέρσῳ", "", "dry land as"]) + let v = native_list_append(v, ["θήρ", "noun", "αἱ θῆρες", "θηρός", "τῇ θηρῐ́", "", "a wild beast"]) + let v = native_list_append(v, ["καικίας", "noun", "καικίαι", "καικίου", "καικίᾳ", "", "the north-east wind"]) + let v = native_list_append(v, ["κάλλος", "noun", "κᾰ́λλη", "κᾰ́λλεος", "κᾰ́λλει", "", "beauty"]) + let v = native_list_append(v, ["σθένος", "noun", "σθένος", "σθένεος", "σθένει", "", "strength might power"]) + let v = native_list_append(v, ["κανθός", "noun", "κανθοί", "κανθοῦ", "κανθῷ", "", "corner of the"]) + let v = native_list_append(v, ["κέδρος", "noun", "κέδροι", "κέδρου", "κέδρῳ", "", "cedar tree of"]) + let v = native_list_append(v, ["κηρός", "noun", "κηροί", "κηροῦ", "κηρῷ", "", "beeswax honeycomb"]) + let v = native_list_append(v, ["κόλλα", "noun", "κόλλαι", "κόλλης", "κολλη", "", "glue"]) + let v = native_list_append(v, ["κοίρανος", "noun", "κοίρᾰνοι", "κοιρᾰ́νου", "κοιρᾰ́νῳ", "", "king ruler leader"]) + let v = native_list_append(v, ["γελανδρόν", "noun", "γελανδρόν", "", "", "", "Hesychius gives the"]) + let v = native_list_append(v, ["γέρανος", "noun", "αἱ γέρᾰνοι", "γερᾰ́νου", "τῇ γερᾰ́νῳ", "", "a crane Grus"]) + let v = native_list_append(v, ["χελιδών", "noun", "χελῑδόνες", "χελῑδόνος", "χελῑδόνῐ", "", "the swallow"]) + let v = native_list_append(v, ["χελώνη", "noun", "χελῶναι", "χελώνης", "χελώνῃ", "", "tortoise"]) + let v = native_list_append(v, ["χλεύη", "noun", "χλεῦαι", "χλεύης", "χλεύῃ", "", "joke jest"]) + let v = native_list_append(v, ["κρῖ", "noun", "κρῖθᾰ", "κρῑθός", "κρῑθῐ́", "", "Epic form of"]) + let v = native_list_append(v, ["πραπίς", "noun", "πρᾰπῐ́δες", "πρᾰπῐ́δος", "πρᾰπῐ́δῐ", "", "midriff diaphragm"]) + let v = native_list_append(v, ["βορά", "noun", "βοραί", "βορᾶς", "βορᾷ", "", "food meat properly"]) + let v = native_list_append(v, ["βρῶμα", "noun", "βρώμᾰτᾰ", "βρώμᾰτος", "βρώμᾰτῐ", "", "a shipworm Teredo"]) + let v = native_list_append(v, ["βρέφος", "noun", "βρέφη", "βρέφους", "βρέφει", "", "baby infant"]) + let v = native_list_append(v, ["μεῖδος", "noun", "μεῖδος", "", "", "", "Hesychius gives the"]) + let v = native_list_append(v, ["στεῖρα", "noun", "στεῖραι", "στείρᾱς", "στείρᾳ", "", "heifer a cow"]) + let v = native_list_append(v, ["σκεπάρνιον", "noun", "σκεπάρνιον", "σκεπαρνίου", "", "", "pier"]) + let v = native_list_append(v, ["σκέπαρνον", "noun", "σκέπαρνᾰ", "σκεπάρνου", "σκεπάρνῳ", "", "carpenters axe adze"]) + let v = native_list_append(v, ["σμύρις", "noun", "σμῠ́ρῐδες", "σμύρῐδος", "σμῠ́ρῐδῐ", "", "emery-powder used by"]) + let v = native_list_append(v, ["νίψ", "noun", "νῐ́φες", "νῐφός", "νῐφῐ́", "", "snow"]) + let v = native_list_append(v, ["νοῦθος", "noun", "νοῦθοι", "νούθου", "νούθῳ", "", "tramp of feet"]) + let v = native_list_append(v, ["νυός", "noun", "νῠοί", "νῠοῦ", "νῠῷ", "", "daughter-in-law"]) + let v = native_list_append(v, ["σπλήν", "noun", "σπλῆνες", "σπληνός", "σπληνῐ́", "", "milt spleen"]) + let v = native_list_append(v, ["ἑκυρός", "noun", "ἑκῠροί", "ἑκῠροῦ", "ἑκῠρῷ", "", "father-in-law"]) + let v = native_list_append(v, ["ἦτορ", "noun", "ἤτορᾰ", "ἤτορος", "ἤτορῐ", "", "the heart as"]) + let v = native_list_append(v, ["ὠλένη", "noun", "ὠλέναι", "ὠλένης", "ὠλένῃ", "", "elbow lower arm"]) + let v = native_list_append(v, ["ἀδήν", "noun", "αἱ ᾰ̓δένες", "ᾰ̓δένος", "τῇ ᾰ̓δένῐ", "", "gland"]) + let v = native_list_append(v, ["ἔριφος", "noun", "αἱ ἔρῐφοι", "ἐρῐ́φου", "τῇ ἐρῐ́φῳ", "", "kid young goat"]) + let v = native_list_append(v, ["ὄροβος", "noun", "ὄροβοι", "ὀρόβου", "ὀρόβῳ", "", "bitter vetch Vicia"]) + let v = native_list_append(v, ["ὦμος", "noun", "ὦμοι", "ὤμου", "ὤμῳ", "", "shoulder with the"]) + let v = native_list_append(v, ["ἔαρ", "noun", "ἔᾰρᾰ", "ἔᾰρος", "ἔᾰρῐ", "", "blood gore"]) + let v = native_list_append(v, ["ἀξίνη", "noun", "ἀξῖναι", "ἀξῑ́νης", "ἀξῑ́νῃ", "", "axe-head"]) + let v = native_list_append(v, ["ἀμνός", "noun", "αἱ ᾰ̓́ρνες", "ᾰ̓ρνός", "τῇ ᾰ̓ρνῐ́", "", "a lamb"]) + let v = native_list_append(v, ["αἴτιος", "noun", "αἴτῐοι", "αἰτίου", "αἰτῐ́ῳ", "", "defendant the accused"]) + let v = native_list_append(v, ["κράταιγος", "noun", "κρᾰ́ταιγοι", "κρᾰταίγου", "κρᾰταίγῳ", "", "hawthorn Crataegus heldreichii"]) + let v = native_list_append(v, ["ἄλφιτον", "noun", "ᾰ̓́λφῐτᾰ", "ᾰ̓λφῐ́του", "ᾰ̓λφῐ́τῳ", "", "barley-groats barley flour"]) + let v = native_list_append(v, ["ἀννίς", "noun", "ἀννίς", "(possibly ãννιοσ)", "", "", "maternal or paternal"]) + let v = native_list_append(v, ["ἄλκη", "noun", "ᾰ̓́λκαι", "ἄλκης", "ᾰ̓́λκῃ", "", "moose elk"]) + let v = native_list_append(v, ["στίχος", "noun", "στῐ́χοι", "στῐ́χου", "στῐ́χῳ", "", "a row or"]) + let v = native_list_append(v, ["ἄνεμος", "noun", "ᾰ̓́νεμοι", "ᾰ̓νέμου", "ᾰ̓νέμῳ", "", "wind breeze gale"]) + let v = native_list_append(v, ["ἐχέτλη", "noun", "ἐχέτλαι", "ἐχέτλης", "ἐχέτλῃ", "", "a plough-handle"]) + let v = native_list_append(v, ["νῆττα", "noun", "νῆτται", "νήττης", "νήττῃ", "", "a duck"]) + let v = native_list_append(v, ["ἄγκος", "noun", "ᾰ̓́γκη", "ᾰ̓́γκεος", "ᾰ̓́γκει", "", "bend hollow"]) + let v = native_list_append(v, ["ἄσπρις", "noun", "ἄσπρῐδες", "ἄσπρῐδος", "ἄσπρῐδῐ", "", "Turkey oak Quercus"]) + let v = native_list_append(v, ["ἀροτήρ", "noun", "ᾰ̓ροτῆρες", "ᾰ̓ροτῆρος", "ᾰ̓ροτῆρῐ", "", "a plower plowman"]) + let v = native_list_append(v, ["αὐγή", "noun", "αὐγαί", "αὐγῆς", "αὐγῇ", "", "light of the"]) + let v = native_list_append(v, ["ἠώς", "noun", "ἠώς", "ἠοῦς", "ἠοῖ", "", "The morning red"]) + let v = native_list_append(v, ["ἄρκευθος", "noun", "ᾰ̓́ρκευθοι", "ἀρκεύθου", "ᾰ̓ρκεύθῳ", "", "juniper Juniperus macrocarpa"]) + let v = native_list_append(v, ["αἰγίλωψ", "noun", "αἰγῐ́λωπες", "αἰγῐ́λωπος", "αἰγῐ́λωπῐ", "", "haver-grass Aegilops neglecta"]) + let v = native_list_append(v, ["ὄζος", "noun", "ὄζοι", "ὄζου", "ὄζῳ", "", "bough branch twig"]) + let v = native_list_append(v, ["οὐρά", "noun", "οὐραί", "οὐρᾶς", "οὐρᾷ", "", "the tail of"]) + let v = native_list_append(v, ["ὄρχις", "noun", "αἱ ὄρχεις", "ὄρχεως", "τῇ ὄρχει", "", "testicle"]) + let v = native_list_append(v, ["ὀμφαλός", "noun", "ὀμφᾰλοί", "ὀμφᾰλοῦ", "ὀμφᾰλῷ", "", "navel"]) + let v = native_list_append(v, ["ὄρνεον", "noun", "ὄρνεᾰ", "ὀρνέου", "ὀρνέῳ", "", "a bird"]) + let v = native_list_append(v, ["ὀπώρα", "noun", "ὀπῶραι", "ὀπώρᾱς", "ὀπώρᾳ", "", "the part of"]) + let v = native_list_append(v, ["ἧπαρ", "noun", "ἥπᾰτᾰ", "ἥπᾰτος", "ἥπᾰτῐ", "", "liver"]) + let v = native_list_append(v, ["κραιπάλη", "noun", "κραιπᾰ́λαι", "κραιπᾰ́λης", "κραιπᾰ́λῃ", "", "bout of drinking"]) + let v = native_list_append(v, ["κάρα", "noun", "κᾰ́ρᾱτᾰ", "κᾰ́ρᾱτος", "κᾰ́ρᾱτῐ", "", "head face"]) + let v = native_list_append(v, ["ὑφή", "noun", "ῠ̔φαί", "ῠ̔φῆς", "ῠ̔φῇ", "", "web"]) + let v = native_list_append(v, ["πέπλος", "noun", "πέπλοι", "πέπλου", "πέπλῳ", "", "any woven cloth"]) + let v = native_list_append(v, ["πλευρά", "noun", "πλευραί", "πλευρᾶς", "πλευρᾷ", "", "A rib."]) + let v = native_list_append(v, ["κύβας", "noun", "κῠ́βαι", "κῠ́βου", "κῠ́βᾳ", "", "synonym of σορός"]) + let v = native_list_append(v, ["σορός", "noun", "σοροί", "σοροῦ", "σορῷ", "", "a vessel for"]) + let v = native_list_append(v, ["λῆνος", "noun", "λήνη", "λήνους", "λήνει", "", "wool"]) + let v = native_list_append(v, ["ὄχος", "noun", "ὄχοι", "ὄχου", "ὄχῳ", "", "anything which holds"]) + let v = native_list_append(v, ["ῥόμος", "noun", "ῥόμοι", "ῥόμου", "ῥόμῳ", "", "woodworm"]) + let v = native_list_append(v, ["ἀρνός", "noun", "ἀρνός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βουνιάς", "noun", "βουνῐᾰ́δες", "βουνιάδος", "βουνῐᾰ́δῐ", "", "rapeseed Brassica napus"]) + let v = native_list_append(v, ["ῥάπυς", "noun", "ῥᾰ́πῠες", "ῥᾰ́πῠος", "ῥᾰ́πῠῐ̈", "", "turnip"]) + let v = native_list_append(v, ["ῥάφυς", "noun", "ῥᾰ́φῠες", "ῥᾰ́φῠος", "ῥᾰ́φῠῐ̈", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἅρπη", "noun", "ᾰ̔́ρπαι", "ἅρπης", "ᾰ̔́ρπῃ", "", "a bird of"]) + let v = native_list_append(v, ["παῦσις", "noun", "παύσεις", "παύσεως", "παύσει", "", "stopping ceasing"]) + let v = native_list_append(v, ["αἴγιλος", "noun", "αἴγῐλοι", "αἰγῐ́λου", "αἰγῐ́λῳ", "", "alternative form of"]) + let v = native_list_append(v, ["ἀγχίλωψ", "noun", "ἀγχίλωπες", "ἀγχίλωπος", "ἀγχίλωπῐ", "", "a swelling which"]) + let v = native_list_append(v, ["λάκκος", "noun", "λᾰ́κκοι", "λᾰ́κκου", "λᾰ́κκῳ", "", "pond in which"]) + let v = native_list_append(v, ["λάταξ", "noun", "λᾰ́τᾰγες", "λᾰ́τᾰγος", "λᾰ́τᾰγῐ", "", "the drops of"]) + let v = native_list_append(v, ["λέχος", "noun", "λέχη", "λέχους", "λέχει", "", "couch bed"]) + let v = native_list_append(v, ["λοχέος", "noun", "λοχέοι", "λοχέου", "λοχέῳ", "", "alternative form of"]) + let v = native_list_append(v, ["λεχώ", "noun", "λεχοί", "λεχόος", "λεχοῖ", "", "a woman in"]) + let v = native_list_append(v, ["λοῦσις", "noun", "λούσεις", "λούσεως", "λούσει", "", "washing bathing"]) + let v = native_list_append(v, ["γέρων", "noun", "γέροντες", "γέροντος", "γέροντῐ", "", "an old man"]) + let v = native_list_append(v, ["λίνον", "noun", "λῐ́νᾰ", "λῐ́νου", "λῐ́νῳ", "", "flax Linum usitatissimum"]) + let v = native_list_append(v, ["λεία", "noun", "λεῖαι", "λείᾱς", "λείᾳ", "", "booty plunder"]) + let v = native_list_append(v, ["κλών", "noun", "κλῶνες", "κλωνός", "κλωνῐ́", "", "twig spray slip"]) + let v = native_list_append(v, ["μῆχος", "noun", "μήχη", "μήχους", "μήχει", "", "means expedient remedy"]) + let v = native_list_append(v, ["μάρη", "noun", "μᾰ́ραι", "μᾰ́ρης", "μᾰ́ρῃ", "", "hand"]) + let v = native_list_append(v, ["μέδος", "noun", "μέδος", "", "", "", "mead"]) + let v = native_list_append(v, ["μύλη", "noun", "μῠ́λαι", "μῠ́λης", "μῠ́λῃ", "", "A mill a"]) + let v = native_list_append(v, ["μῆνιγξ", "noun", "μήνῐγγες", "μήνῐγγος", "μήνῐγγῐ", "", "membrane cuticle in"]) + let v = native_list_append(v, ["βρότος", "noun", "βρότος", "βρότου", "βρότῳ", "", "blood that has"]) + let v = native_list_append(v, ["βροτός", "noun", "βροτοί", "βροτοῦ", "βροτῷ", "", "mortal man human"]) + let v = native_list_append(v, ["βουνός", "noun", "βουνοί", "βουνοῦ", "βουνῷ", "", "hill heap"]) + let v = native_list_append(v, ["ὄρος", "noun", "ὄρη", "ὄρεος", "ὄρει", "", "mountain hill"]) + let v = native_list_append(v, ["μάννος", "noun", "μᾰ́ννοι", "μάννου", "μᾰ́ννῳ", "", "necklace"]) + let v = native_list_append(v, ["μανιάκιον", "noun", "μᾰνῐᾰ́κῐᾰ", "μᾰνῐᾰκῐ́ου", "μᾰνῐᾰκῐ́ῳ", "", "diminutive of μανιάκης"]) + let v = native_list_append(v, ["μανιάκης", "noun", "μᾰνῐᾰ́και", "μᾰνῐᾰ́κου", "μᾰνῐᾰ́κῃ", "", "necklace torc armlet"]) + let v = native_list_append(v, ["χίμαιρα", "noun", "χῐ́μαιραι", "χῐμαίρᾱς", "χῐμαίρᾳ", "", "a she-goat"]) + let v = native_list_append(v, ["χίμαρος", "noun", "χῐ́μᾰροι", "χῐμᾰ́ρου", "χῐμᾰ́ρῳ", "", "a he-goat"]) + let v = native_list_append(v, ["μόναπος", "noun", "μόνᾰποι", "μονᾰ́που", "μονᾰ́πῳ", "", "European bison"]) + let v = native_list_append(v, ["μόρον", "noun", "μόρᾰ", "μόρου", "μόρῳ", "", "black mulberry"]) + let v = native_list_append(v, ["μύρμηξ", "noun", "μῠ́ρμηκες", "μῠ́ρμηκος", "μῠ́ρμηκῐ", "", "ant"]) + let v = native_list_append(v, ["μυῖα", "noun", "μυῖαι", "μυίᾱς", "μυίᾳ", "", "a fly the"]) + let v = native_list_append(v, ["νεφρός", "noun", "νεφροί", "νεφροῦ", "νεφρῷ", "", "kidney"]) + let v = native_list_append(v, ["νειός", "noun", "νειοί", "νειοῦ", "νειῷ", "", "fallow-land"]) + let v = native_list_append(v, ["ναῦς", "noun", "νῆες", "νᾱός", "νηΐ", "", "a ship"]) + let v = native_list_append(v, ["ἀνεψιός", "noun", "ᾰ̓νεψῐοί", "ᾰ̓νεψῐοῦ", "ᾰ̓νεψῐῷ", "", "first cousin cousin"]) + let v = native_list_append(v, ["κάλαμος", "noun", "κᾰ́λᾰμοι", "κᾰλᾰ́μου", "κᾰλᾰ́μῳ", "", "a reed"]) + let v = native_list_append(v, ["κῆδος", "noun", "κήδη", "κήδους", "κήδει", "", "care for others"]) + let v = native_list_append(v, ["λιμένας", "noun", "λιμένας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["φύλλου", "noun", "φύλλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φύλλα", "noun", "φύλλα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["φύλλων", "noun", "φύλλων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κύματος", "noun", "κύματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κύματα", "noun", "κύματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["κυμάτων", "noun", "κυμάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πάτος", "noun", "πᾰ́τοι", "πᾰ́του", "πᾰ́τῳ", "", "trodden or beaten"]) + let v = native_list_append(v, ["γωνία", "noun", "γωνῐ́αι", "γωνίᾱς", "γωνῐ́ᾳ", "", "corner angle"]) + let v = native_list_append(v, ["ἔλπος", "noun", "ἔλπος", "", "", "", "Hesychius gives the"]) + let v = native_list_append(v, ["λαιός", "noun", "λαιοί", "λαιοῦ", "λαιῷ", "", "blue rock thrush"]) + let v = native_list_append(v, ["μέλκιον", "noun", "μέλκιον", "", "", "", "spring fountain"]) + let v = native_list_append(v, ["κύλινδρος", "noun", "κῠ́λινδροι", "κῠλίνδρου", "κῠλίνδρῳ", "", "round stone tumbler"]) + let v = native_list_append(v, ["ἄσβεστος", "noun", "ἄσβεστοι", "ἄσβέστου", "ἀσβέστῳ", "", "unslaked lime calcium"]) + let v = native_list_append(v, ["κόστος", "noun", "κόστοι", "κόστου", "κόστῳ", "", "costus Saussurea costus"]) + let v = native_list_append(v, ["κυβερνήτης", "noun", "κῠβερνῆται", "κῠβερνήτου", "κῠβερνήτῃ", "", "captain steersman pilot"]) + let v = native_list_append(v, ["βάραθρον", "noun", "βᾰ́ρᾰθρᾰ", "βᾰρᾰ́θρου", "βᾰρᾰ́θρῳ", "", "gulf cleft pit"]) + let v = native_list_append(v, ["μισογυνία", "noun", "μῑσογῠνῐ́αι", "μῑσογῠνῐ́ᾱς", "μῑσογῠνῐ́ᾳ", "", "hatred of women"]) + let v = native_list_append(v, ["μισογύνης", "noun", "μῑσογῠ́ναι", "μῑσογῠ́νου", "μῑσογῠ́νῃ", "", "a woman-hater"]) + let v = native_list_append(v, ["λοχαγός", "noun", "λοχαγός", "λοχᾱγοῦ", "", "", "leader of an"]) + let v = native_list_append(v, ["σημασία", "noun", "σημᾰσῐ́αι", "σημᾰσῐ́ᾱς", "σημᾰσῐ́ᾳ", "", "the giving of"]) + let v = native_list_append(v, ["γαλήνη", "noun", "γᾰλῆναι", "γᾰλήνης", "γᾰλήνῃ", "", "calm stillness"]) + let v = native_list_append(v, ["δημιουργός", "noun", "δημῐουργοί", "δημῐουργοῦ", "δημῐουργῷ", "", "one who works"]) + let v = native_list_append(v, ["μητρός", "noun", "μητρός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πατρός", "noun", "πατρός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κοινωνία", "noun", "κοινωνῐ́αι", "κοινωνίᾱς", "κοινωνῐ́ᾳ", "", "communion association partnership"]) + let v = native_list_append(v, ["φυλακή", "noun", "φῠλᾰκαί", "φῠλᾰκῆς", "φῠλᾰκῇ", "", "detention custody"]) + let v = native_list_append(v, ["προορισμός", "noun", "προορισμός", "", "", "", "early determination determining"]) + let v = native_list_append(v, ["ἀρήν", "noun", "αἱ ᾰ̓́ρνες", "ᾰ̓ρνός", "τῇ ᾰ̓ρνῐ́", "", "alternative form of"]) + let v = native_list_append(v, ["θυμέλη", "noun", "θῠμέλαι", "θῠμέλης", "θῠμέλῃ", "", "a place of"]) + let v = native_list_append(v, ["ἄλγος", "noun", "ᾰ̓́λγη", "ἄλγους", "ᾰ̓́λγει", "", "pain of either"]) + let v = native_list_append(v, ["κάκτος", "noun", "αἱ κᾰ́κτοι", "κᾰ́κτου", "τῇ κᾰ́κτῳ", "", "the cardoon Cynara"]) + let v = native_list_append(v, ["μάθημα", "noun", "μαθήμᾰτᾰ", "μαθήματος", "μαθήμᾰτῐ", "", "something that is"]) + let v = native_list_append(v, ["Οὐκαλέγων", "noun", "Οὐκαλέγων", "Οὐκᾰλέγοντος", "Οὐκᾰλέγοντῐ", "", "Ucalegon one of"]) + let v = native_list_append(v, ["στερέωμα", "noun", "στερεώμᾰτᾰ", "στερεώμᾰτος", "στερεώμᾰτῐ", "", "foundation framework firmament"]) + let v = native_list_append(v, ["ἕσπερος", "noun", "ἕσπεροι", "ἑσπέρου", "ἑσπέρῳ", "", "evening"]) + let v = native_list_append(v, ["γόνος", "noun", "αἱ γόνοι", "γόνου", "τῇ γόνῳ", "", "That which is"]) + let v = native_list_append(v, ["λόγια", "noun", "λόγια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["λόγοι", "noun", "λόγοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ἑσπέρα", "noun", "ἑσπέραι", "ἑσπέρᾱς", "ἑσπέρᾳ", "", "evening"]) + let v = native_list_append(v, ["ποινή", "noun", "ποιναί", "ποινῆς", "ποινῇ", "", "blood money wergeld"]) + let v = native_list_append(v, ["θεατής", "noun", "θεᾱταί", "θεᾱτοῦ", "θεᾱτῇ", "", "one who sees"]) + let v = native_list_append(v, ["θεολόγος", "noun", "θεολόγοι", "θεολόγου", "θεολόγῳ", "", "one who speaks"]) + let v = native_list_append(v, ["πνεύμων", "noun", "πνεύμονες", "πνεύμονος", "πνεύμονῐ", "", "lung"]) + let v = native_list_append(v, ["σύνοδος", "noun", "σῠ́νοδοι", "σῠνόδου", "σῠνόδῳ", "", "assembly meeting"]) + let v = native_list_append(v, ["κηδεία", "noun", "κηδεῖαι", "κηδείᾱς", "κηδείᾳ", "", "connection by marriage"]) + let v = native_list_append(v, ["ἱπποφοβάς", "noun", "ῐ̔πποφοβᾰ́δες", "ῐ̔πποφοβᾰ́δος", "ῐ̔πποφοβᾰ́δῐ", "", "horse-fear a fabulous"]) + let v = native_list_append(v, ["πρόγραμμα", "noun", "προγρᾰ́μμᾰτᾰ", "προγράμμᾰτος", "προγρᾰ́μμᾰτῐ", "", "public proclamation notice"]) + let v = native_list_append(v, ["διαστολή", "noun", "δῐᾰστολαί", "δῐᾰστολῆς", "δῐᾰστολῇ", "", "dilatation"]) + let v = native_list_append(v, ["δύσπνοια", "noun", "δῠ́σπνοιαι", "δῠσπνοἰᾱς", "δῠσπνοίᾳ", "", "difficulty breathing shortness"]) + let v = native_list_append(v, ["μισθοφόρος", "noun", "μισθοφόροι", "μισθοφόρου", "μισθοφόρῳ", "", "mercenary"]) + let v = native_list_append(v, ["ἀρχηγέτης", "noun", "ἀρχηγέται", "ἀρχηγέτου", "ἀρχηγέτῃ", "", "founding leader/chieftain original"]) + let v = native_list_append(v, ["φάλαγξ", "noun", "φᾰ́λᾰγγες", "φᾰ́λᾰγγος", "φᾰ́λᾰγγῐ", "", "line of battle"]) + let v = native_list_append(v, ["φάλαγγες", "noun", "φάλαγγες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["δηλητήρ", "noun", "δηλητῆρες", "δηλητῆρος", "δηλητῆρῐ", "", "destroyer"]) + let v = native_list_append(v, ["συνθήκη", "noun", "σῠνθῆκαι", "σῠνθήκης", "σῠνθήκῃ", "", "a compounding especially"]) + let v = native_list_append(v, ["ζώνη", "noun", "ζῶναι", "ζώνης", "ζώνῃ", "", "belt sash"]) + let v = native_list_append(v, ["φυτόν", "noun", "φῠτᾰ́", "φῠτοῦ", "φῠτῷ", "", "plant tree"]) + let v = native_list_append(v, ["τόξον", "noun", "τόξᾰ", "τόξου", "τόξῳ", "", "bow weapon for"]) + let v = native_list_append(v, ["ὁρμή", "noun", "ὁρμαί", "ὁρμῆς", "ὁρμῇ", "", "violent pressure assault"]) + let v = native_list_append(v, ["φάντασμα", "noun", "φᾰντᾰ́σμᾰτᾰ", "φᾰντᾰ́σμᾰτος", "φᾰντᾰ́σμᾰτῐ", "", "phantom apparition ghost"]) + let v = native_list_append(v, ["φαλλός", "noun", "φαλλοί", "φαλλοῦ", "φαλλῷ", "", "penis phallus"]) + let v = native_list_append(v, ["πρωκτός", "noun", "πρωκτοί", "πρωκτού", "πρωκτῷ", "", "anus rectum"]) + let v = native_list_append(v, ["δόρυ", "noun", "δόρᾰτᾰ", "δόρᾰτος", "δόρᾰτῐ", "", "wood tree stem"]) + let v = native_list_append(v, ["δρυτόμος", "noun", "δρῡ̆τόμοι", "δρῡ̆τόμου", "δρῡ̆τόμῳ", "", "cutting wood"]) + let v = native_list_append(v, ["φώνημα", "noun", "φωνήμᾰτᾰ", "φωνήματος", "φωνήμᾰτῐ", "", "sound made utterance"]) + let v = native_list_append(v, ["Φώτιος", "noun", "Φώτιος", "Φωτῐ́ου", "Φωτῐ́ῳ", "", "a male given"]) + let v = native_list_append(v, ["ὄμβρος", "noun", "ὄμβροι", "ὄμβρου", "ὄμβρῳ", "", "storm of rain"]) + let v = native_list_append(v, ["ἀφρός", "noun", "ᾰ̓φροί", "ᾰ̓φροῦ", "ᾰ̓φρῷ", "", "foam of the"]) + let v = native_list_append(v, ["ἀλφάβητος", "noun", "ἀλφάβητοι", "ἀλφαβήτου", "ἀλφαβήτῳ", "", "alphabet"]) + let v = native_list_append(v, ["ἰός", "noun", "ῑ̓οί", "ῑ̓οῦ", "ῑ̓ῷ", "", "arrow"]) + let v = native_list_append(v, ["ἐπίληψις", "noun", "ἐπῐλήψεις", "ἐπῐλήψεως", "ἐπῐλήψει", "", "taking hold of"]) + let v = native_list_append(v, ["ἀρετή", "noun", "ᾰ̓ρεταί", "ᾰ̓ρετῆς", "ᾰ̓ρετῇ", "", "goodness excellence"]) + let v = native_list_append(v, ["θυσία", "noun", "θῠσῐ́αι", "θῠσῐ́ᾱς", "θῠσῐ́ᾳ", "", "offering sacrifice a"]) + let v = native_list_append(v, ["ὅρος", "noun", "ὅροι", "ὅρου", "ὅρῳ", "", "boundary limit frontier"]) + let v = native_list_append(v, ["ὑπόστρωμα", "noun", "ῠ̔ποστρώμᾰτᾰ", "ῠ̔ποστρώμᾰτος", "ῠ̔ποστρώμᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["θηλή", "noun", "θηλαί", "θηλῆς", "θηλῇ", "", "a teat a"]) + let v = native_list_append(v, ["σκορπίος", "noun", "σκορπῐ́οι", "σκορπῐ́ου", "σκορπῐ́ῳ", "", "scorpion"]) + let v = native_list_append(v, ["πανδοχεῖον", "noun", "πανδοχεῖᾰ", "πανδοχείου", "πανδοχείῳ", "", "alternative form of"]) + let v = native_list_append(v, ["πανδοκεῖον", "noun", "πᾰνδοκεῖᾰ", "πανδοκείου", "πᾰνδοκείῳ", "", "inn"]) + let v = native_list_append(v, ["πύξος", "noun", "πῠ́ξοι", "πῠ́ξου", "πῠ́ξῳ", "", "box tree Buxus"]) + let v = native_list_append(v, ["πυξίς", "noun", "πῠξῐ́δες", "πῠξῐ́δος", "πῠξῐ́δῐ", "", "box made of"]) + let v = native_list_append(v, ["ἐλαία", "noun", "ἐλαῖαι", "ἐλαίᾱς", "ἐλαίᾳ", "", "olive tree"]) + let v = native_list_append(v, ["θρηνῳδία", "noun", "θρηνῳδῐ́αι", "θρηνῳδῐ́ᾱς", "θρηνῳδῐ́ᾳ", "", "lamentation mourning"]) + let v = native_list_append(v, ["θρῆνος", "noun", "θρῆνοι", "θρήνου", "θρήνῳ", "", "wailing lamenting dirge"]) + let v = native_list_append(v, ["ἤλεκτρον", "noun", "ἤλεκτρᾰ", "ἠλέκτρου", "ἠλέκτρῳ", "", "amber"]) + let v = native_list_append(v, ["αἰκία", "noun", "αἰκῖαι", "αἰκῑ́ᾱς", "αἰκῑ́ᾳ", "", "insult outrage affront"]) + let v = native_list_append(v, ["γῦρος", "noun", "γῦροι", "γῡ́ρου", "γῡ́ρῳ", "", "ring circle"]) + let v = native_list_append(v, ["λήκυθος", "noun", "λήκῠθοι", "ληκῠ́θου", "ληκῠ́θῳ", "", "oil flask oil"]) + let v = native_list_append(v, ["λογική", "noun", "λογική", "λογῐκῆς", "λογῐκῇ", "", "speech prose"]) + let v = native_list_append(v, ["πλάτος", "noun", "πλᾰ́τη", "πλᾰ́τους", "πλᾰ́τει", "", "breadth width"]) + let v = native_list_append(v, ["ὄρανος", "noun", "ὄρᾰνοι", "ὀρᾰ́νου", "ὀρᾰ́νω", "", "Aeolic form of"]) + let v = native_list_append(v, ["τέρψις", "noun", "τέρψεις", "τέρψεως", "τέρψει", "", "full enjoyment delight"]) + let v = native_list_append(v, ["Λέσβου", "noun", "Λέσβου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πέη", "noun", "πέη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πέους", "noun", "πέους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τερψίχορος", "noun", "τερψῐ́χοροι", "τερψῐχόρου", "τερψῐχόρῳ", "", "enjoying a dance"]) + let v = native_list_append(v, ["ἠΐθεος", "noun", "ἠΐθεοι", "ἠῐ̈θέου", "ἠϊθέῳ", "", "unmarried young man"]) + let v = native_list_append(v, ["εἶ", "noun", "εἶ", "", "", "", "Old name of"]) + let v = native_list_append(v, ["σύνδεσμος", "noun", "σῠ́νδεσμοι", "σῠνδέσμου", "σῠνδέσμῳ", "", "bond band fetter"]) + let v = native_list_append(v, ["σπῆλυγξ", "noun", "σπήλῠγγες", "σπήλῠγγος", "σπήλῠγγῐ", "", "cave"]) + let v = native_list_append(v, ["ταμίας", "noun", "τᾰμῐ́αι", "τᾰμῐ́ου", "τᾰμῐ́ᾳ", "", "steward dispenser"]) + let v = native_list_append(v, ["σωτήρ", "noun", "σωτῆρες", "σωτῆρος", "σωτῆρῐ", "", "saviour deliverer preserver"]) + let v = native_list_append(v, ["σύστημα", "noun", "σῠστήμᾰτᾰ", "συστήμᾰτος", "σῠστήμᾰτῐ", "", "a whole made"]) + let v = native_list_append(v, ["δωράκινον", "noun", "δωράκινᾰ", "δωρακίνου", "δωρακίνῳ", "", "a type of"]) + let v = native_list_append(v, ["ἐπίσκοπος", "noun", "ἐπῐ́σκοποι", "ἐπισκόπου", "ἐπῐσκόπῳ", "", "watcher guardian"]) + let v = native_list_append(v, ["ἔχιδνα", "noun", "ἔχῐδναι", "ἐχίδνης", "ἐχῐ́δνῃ", "", "snake traditionally held"]) + let v = native_list_append(v, ["οἰσοφάγος", "noun", "οἰσοφᾰ́γοι", "οἰσοφᾰ́γου", "οἰσοφᾰ́γῳ", "", "oesophagus gullet"]) + let v = native_list_append(v, ["κάστωρ", "noun", "κάστορες", "κάστορος", "κάστορῐ", "", "beaver"]) + let v = native_list_append(v, ["κοπάδιον", "noun", "κοπᾰ́δῐᾰ", "κοπᾰδῐ́ου", "κοπᾰδῐ́ῳ", "", "alternative spelling of"]) + let v = native_list_append(v, ["κόπαιον", "noun", "κόπαιᾰ", "κοπαίου", "κοπαίῳ", "", "piece"]) + let v = native_list_append(v, ["κύκνος", "noun", "κῠ́κνοι", "κύκνου", "κῠ́κνῳ", "", "swan"]) + let v = native_list_append(v, ["λάγηνος", "noun", "λᾰ́γηνοι", "λᾰγήνου", "λᾰγήνῳ", "", "alternative form of"]) + let v = native_list_append(v, ["λάγυνος", "noun", "αἱ λᾰ́γῡνοι", "λαγῡ́νου", "τῇ λᾰγῡ́νῳ", "", "flagon pitcher flask"]) + let v = native_list_append(v, ["λεξικόν", "noun", "λεξῐκᾰ́", "λεξῐκοῦ", "λεξῐκῷ", "", "lexicon dictionary"]) + let v = native_list_append(v, ["ἔτυμον", "noun", "ἔτῠμᾰ", "ἐτῠ́μου", "ἐτῠ́μῳ", "", "the true sense"]) + let v = native_list_append(v, ["νάφθα", "noun", "νάφθα", "νᾰ́φθης", "νᾰ́φθῃ", "", "naphtha naturally occurring"]) + let v = native_list_append(v, ["ὄργανον", "noun", "ὄργᾰνᾰ", "ὀργᾰ́νου", "ὀργᾰ́νῳ", "", "instrument implement tool"]) + let v = native_list_append(v, ["ὁρίζων", "noun", "ὁρῐ́ζοντες", "ὁρῐ́ζοντος", "ὁρῐ́ζοντῐ", "", "horizon"]) + let v = native_list_append(v, ["πεῖσις", "noun", "πείσεις", "πείσεως", "πείσει", "", "persuasion"]) + let v = native_list_append(v, ["πεῖσα", "noun", "πεῖσαι", "πείσης", "πείσῃ", "", "obedience"]) + let v = native_list_append(v, ["πειθώ", "noun", "πειθοί", "πειθόος", "πειθοῖ", "", "persuasion"]) + let v = native_list_append(v, ["πίναξ", "noun", "πῐ́νᾰκες", "πῐ́νᾰκος", "πῐ́νᾰκῐ", "", "board plank"]) + let v = native_list_append(v, ["πιττάκιον", "noun", "πῐττᾰ́κῐᾰ", "πιττᾰκίου", "πῐττᾰκῐ́ῳ", "", "writing tablet"]) + let v = native_list_append(v, ["πρόσωπον", "noun", "πρόσωπᾰ", "προσώπου", "προσώπῳ", "", "face visage countenance"]) + let v = native_list_append(v, ["στοά", "noun", "στοαί", "στοᾶς", "στοᾷ", "", "a colonnade"]) + let v = native_list_append(v, ["στόμαχος", "noun", "στόμᾰχοι", "στομᾰ́χου", "στομᾰ́χῳ", "", "throat gullet"]) + let v = native_list_append(v, ["πεῖσαι", "noun", "πεῖσαι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["τάξις", "noun", "τᾰ́ξεις", "τᾰ́ξεως", "τᾰ́ξει", "", "arrangement ordering"]) + let v = native_list_append(v, ["ταώς", "noun", "τᾰῴ", "τᾰώ", "τᾰῴ", "", "peacock"]) + let v = native_list_append(v, ["φιλόσοφος", "noun", "φῐλόσοφοι", "φῐλοσόφου", "φῐλοσόφῳ", "", "lover of knowledge"]) + let v = native_list_append(v, ["ὠκεανός", "noun", "ὠκεᾰνοί", "ὠκεᾰνοῦ", "ὠκεᾰνῷ", "", "ocean"]) + let v = native_list_append(v, ["σελήνη", "noun", "σελῆναι", "σελήνης", "σελήνῃ", "", "moon"]) + let v = native_list_append(v, ["λῃστής", "noun", "λῃσταί", "λῃστοῦ", "λῃστῇ", "", "robber"]) + let v = native_list_append(v, ["φλέγμα", "noun", "φλέγμᾰτᾰ", "φλέγμᾰτος", "φλέγμᾰτῐ", "", "flame fire heat"]) + let v = native_list_append(v, ["πήγανον", "noun", "πήγᾰνᾰ", "πηγᾰ́νου", "πηγᾰ́νῳ", "", "rue a plant"]) + let v = native_list_append(v, ["κάδος", "noun", "κᾰ́δοι", "κᾰ́δου", "κᾰ́δῳ", "", "pail bucket jar"]) + let v = native_list_append(v, ["θερμός", "noun", "θερμοί", "θερμοῦ", "θερμῷ", "", "lupine especially Lupinus"]) + let v = native_list_append(v, ["μεταπλασμός", "noun", "μετᾰπλᾰσμοί", "μετᾰπλᾰσμοῦ", "μετᾰπλᾰσμῷ", "", "metaplasm the formation"]) + let v = native_list_append(v, ["Γόριλλαι", "noun", "Γόρῐλλαι", "Γοριλλῶν", "Γορῐ́λλαις", "", "Gorillai a tribe"]) + let v = native_list_append(v, ["ῥῆμα", "noun", "ῥήμᾰτᾰ", "ῥήμᾰτος", "ῥήμᾰτῐ", "", "word saying statement"]) + let v = native_list_append(v, ["ἔμβολον", "noun", "ἔμβολᾰ", "ἐμβόλου", "ἐμβόλῳ", "", "wedge peg stopper"]) + let v = native_list_append(v, ["βήρυλλος", "noun", "βήρυλλοι", "βηρύλλου", "βηρύλλῳ", "", "beryl"]) + let v = native_list_append(v, ["φήμη", "noun", "φῆμαι", "φήμης", "φήμῃ", "", "prophetic voice oracle"]) + let v = native_list_append(v, ["μέλος", "noun", "μέλη", "μέλους", "μέλει", "", "part of a"]) + let v = native_list_append(v, ["δράκος", "noun", "δρᾰ́κεᾰ", "δρᾰ́κεος", "δρᾰ́κεῐ̈", "", "eye"]) + let v = native_list_append(v, ["ξῖ", "noun", "ξῖ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ξεῖ", "noun", "ξεῖ", "", "", "", "xi the name"]) + let v = native_list_append(v, ["πατέρος", "noun", "πατέρος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Αὐσονία", "noun", "Αὐσονία", "Αὐσονῐ́ᾱς", "Αὐσονῐ́ᾳ", "", "Italy"]) + let v = native_list_append(v, ["φθίσις", "noun", "φθῐ́σεις", "φθῐ́σεως", "φθῐ́σει", "", "decline decay"]) + let v = native_list_append(v, ["ὄνειρον", "noun", "ὄνειρᾰ", "ὀνείρου", "ὀνείρῳ", "", "alternative form of"]) + let v = native_list_append(v, ["φθόνος", "noun", "φθόνοι", "φθόνου", "φθόνῳ", "", "envy jealousy"]) + let v = native_list_append(v, ["βιβλία", "noun", "βιβλία", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["βιβλίου", "noun", "βιβλίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βιβλίων", "noun", "βιβλίων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["βιβλιοθήκης", "noun", "βιβλιοθήκης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νῆσος", "noun", "νῆσοι", "νήσου", "νήσῳ", "", "island"]) + let v = native_list_append(v, ["ὀκτώπους", "noun", "ὀκτώποδες", "ὀκτώποδος", "ὀκτώποδῐ", "", "octopus"]) + let v = native_list_append(v, ["Ἐχινάς", "noun", "Ἐχῑνᾰ́δες", "Ἐχῑνᾰ́δος", "Ἐχῑνᾰ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Σποράς", "noun", "Σπορᾰ́δες", "Σπορᾰ́δος", "Σπορᾰ́δῐ", "", "one of the"]) + let v = native_list_append(v, ["Ἐνετία", "noun", "Ἐνετία", "Ἐνετίᾱς", "Ἐνετίᾳ", "", "Venetia a region"]) + let v = native_list_append(v, ["Πιθηκοῦσαι", "noun", "Πῐθηκοῦσαι", "Πιῐθηκουσῶν", "Πῐθηκούσαις", "", "Pithecusae Ischia Campania"]) + let v = native_list_append(v, ["αἰθήρ", "noun", "αἰθέρες", "αἰθέρος", "αἰθέρῐ", "", "sky"]) + let v = native_list_append(v, ["φορά", "noun", "φοραί", "φορᾶς", "φορᾷ", "", "an act"]) + let v = native_list_append(v, ["μονομαχία", "noun", "μονομᾰχῐ́αι", "μονομᾰχίᾱς", "μονομᾰχῐ́ᾳ", "", "single combat"]) + let v = native_list_append(v, ["ἀγορά", "noun", "ᾰ̓γοραί", "ᾰ̓γορᾶς", "ᾰ̓γορᾷ", "", "assembly especially an"]) + let v = native_list_append(v, ["βουλή", "noun", "βουλαί", "βουλῆς", "βουλῇ", "", "will determination esp."]) + let v = native_list_append(v, ["σφόνδυλος", "noun", "σφόνδῠλοι", "σφονδῠ́λου", "σφονδῠ́λῳ", "", "vertebra especially the"]) + let v = native_list_append(v, ["σπόνδυλος", "noun", "σπόνδῠλοι", "σπονδῠ́λου", "σπονδῠ́λῳ", "", "Ionic and Attic"]) + let v = native_list_append(v, ["πρᾶξις", "noun", "πρᾱ́ξεις", "πρᾱ́ξεως", "πρᾱ́ξει", "", "act action activity"]) + let v = native_list_append(v, ["τραπέζια", "noun", "τραπέζια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["στρουθοκάμηλος", "noun", "αἱ στρουθοκᾰ́μηλοι", "στρουθοκᾰμήλου", "τῇ στρουθοκᾰμήλῳ", "", "ostrich Struthio camelus"]) + let v = native_list_append(v, ["νάρκη", "noun", "νάρκαι", "νάρκης", "νάρκῃ", "", "numbness torpor"]) + let v = native_list_append(v, ["κασσίτερος", "noun", "κασσίτεροι", "κασσῐτέρου", "κασσιτέρῳ", "", "tin"]) + let v = native_list_append(v, ["κατηγόρημα", "noun", "κᾰτηγορήμᾰτᾰ", "κᾰτηγορήμᾰτος", "κᾰτηγορήμᾰτῐ", "", "an accusation"]) + let v = native_list_append(v, ["λεωφόρος", "noun", "λεωφόροι", "λεωφόρου", "λεωφόρῳ", "", "main street"]) + let v = native_list_append(v, ["κόνις", "noun", "κόνῐες", "κόνεως", "κόνῑ", "", "dust"]) + let v = native_list_append(v, ["τύχη", "noun", "τῠ́χαι", "τῠ́χης", "τῠ́χῃ", "", "the act of"]) + let v = native_list_append(v, ["χρῆσις", "noun", "χρήσεις", "χρήσεως", "χρήσει", "", "use usage employment"]) + let v = native_list_append(v, ["πέδον", "noun", "πέδᾰ", "πέδου", "πέδῳ", "", "ground earth"]) + let v = native_list_append(v, ["στοιχεῖον", "noun", "στοιχεῖᾰ", "στοιχείου", "στοιχείῳ", "", "one of a"]) + let v = native_list_append(v, ["συνουσία", "noun", "σῠνουσῐ́αι", "σῠνουσίᾱς", "σῠνουσῐ́ᾳ", "", "social intercourse society"]) + let v = native_list_append(v, ["χολή", "noun", "χολαί", "χολῆς", "χολῇ", "", "gall bile"]) + let v = native_list_append(v, ["πηγή", "noun", "πηγαί", "πηγῆς", "πηγῇ", "", "spring well fountain"]) + let v = native_list_append(v, ["δραχμή", "noun", "δρᾰχμαί", "δρᾰχμῆς", "δρᾰχμῇ", "", "drachma"]) + let v = native_list_append(v, ["παίκτης", "noun", "παῖκται", "παίκτου", "παίκτῃ", "", "player"]) + let v = native_list_append(v, ["σίελος", "noun", "σίελος", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ναύτης", "noun", "ναῦται", "ναύτου", "ναύτῃ", "", "sailor seaman"]) + let v = native_list_append(v, ["ζῶον", "noun", "ζῶᾰ", "ζώου", "ζώῳ", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἰχώρ", "noun", "ῑ̓χῶρες", "ῑ̓χῶρος", "ῑ̓χῶρῐ", "", "ichor the fluid"]) + let v = native_list_append(v, ["νυχθήμερον", "noun", "νῠχθήμερᾰ", "νῠχθημέρου", "νῠχθημέρῳ", "", "a day and"]) + let v = native_list_append(v, ["ἀγωγός", "noun", "αἱ ᾰ̓γωγοί", "ᾰ̓γωγοῦ", "τῇ ᾰ̓γωγῷ", "", "guide"]) + let v = native_list_append(v, ["ἀγωνιστής", "noun", "ᾰ̓γωνῐσταί", "ᾰ̓γωνῐστοῦ", "ᾰ̓γωνῐστῇ", "", "combatant rival contestant"]) + let v = native_list_append(v, ["εὐχαριστία", "noun", "εὐχᾰρῐστῐ́αι", "εὐχᾰρῐστῐ́ᾱς", "εὐχᾰρῐστῐ́ᾳ", "", "thanks gratitude"]) + let v = native_list_append(v, ["νίτρον", "noun", "νῐ́τρᾰ", "νῐ́τρου", "νῐ́τρῳ", "", "sodium carbonate or"]) + let v = native_list_append(v, ["σχῆμα", "noun", "σχήμᾰτᾰ", "σχήμᾰτος", "σχήμᾰτῐ", "", "form shape figure"]) + let v = native_list_append(v, ["ψωλή", "noun", "ψωλαί", "ψωλῆς", "ψωλῇ", "", "penis with the"]) + let v = native_list_append(v, ["δυσθυμία", "noun", "δῠσθῡμῐ́αι", "δῠσθῡμῐ́ᾱς", "δῠσθῡμῐ́ᾳ", "", "despondency despair"]) + let v = native_list_append(v, ["Κύριλλος", "noun", "Κύριλλος", "Κῡρίλλου", "Κῡρίλλῳ", "", "a male given"]) + let v = native_list_append(v, ["δίπλωμα", "noun", "δῐπλώμᾰτᾰ", "δῐπλώμᾰτος", "δῐπλώμᾰτῐ", "", "something double"]) + let v = native_list_append(v, ["δοκιμασία", "noun", "δοκῐμᾰσῐ́αι", "δοκῐμᾰσῐ́ᾱς", "δοκῐμᾰσῐ́ᾳ", "", "examination scrutiny of"]) + let v = native_list_append(v, ["ἀνδράποδον", "noun", "ᾰ̓νδρᾰ́ποδᾰ", "ᾰ̓νδρᾰπόδου", "ᾰ̓νδρᾰπόδῳ", "", "slave especially one"]) + let v = native_list_append(v, ["ἀνδραποδιστής", "noun", "ᾰ̓νδρᾰποδῐσταί", "ᾰ̓νδρᾰποδῐστοῦ", "ᾰ̓νδρᾰποδῐστῇ", "", "slave dealer one"]) + let v = native_list_append(v, ["μῆλον", "noun", "μῆλᾰ", "μήλου", "μήλῳ", "", "apple"]) + let v = native_list_append(v, ["πρεσβεία", "noun", "πρεσβεία", "πρεσβείας", "", "", "embassy"]) + let v = native_list_append(v, ["λιτανεία", "noun", "λῐτᾰνεῖαι", "λῐτᾰνείᾱς", "λῐτᾰνείᾳ", "", "entreaty"]) + let v = native_list_append(v, ["ῥήτωρ", "noun", "ῥήτορες", "ῥήτορος", "ῥήτορῐ", "", "orator public speaker"]) + let v = native_list_append(v, ["ἔβενος", "noun", "ἔβενοι", "ἐβένου", "ἐβένῳ", "", "ebony tree wood"]) + let v = native_list_append(v, ["ἱερόν", "noun", "ἱερόν", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["πειρατής", "noun", "πειρᾱταί", "πειρᾱτοῦ", "πειρᾱτῇ", "", "brigand robber especially"]) + let v = native_list_append(v, ["𐠀𐠰𐠦𐠡𐠩", "noun", "𐠀𐠰𐠦𐠡𐠩", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["ἱπποπόταμος", "noun", "ῐ̔πποπότᾰμοι", "ῐ̔πποποτᾰ́μου", "ῐ̔πποποτᾰ́μῳ", "", "hippopotamus"]) + let v = native_list_append(v, ["ξενία", "noun", "ξενῐ́αι", "ξενῐ́ᾱς", "ξενῐ́ᾳ", "", "hospitality hospitable reception"]) + let v = native_list_append(v, ["ὄγκινος", "noun", "ὄγκῑνοι", "ὀγκῑ́νου", "ὀγκῑ́νῳ", "", "hook"]) + let v = native_list_append(v, ["χαρακτήρ", "noun", "χᾰρᾰκτῆρες", "χᾰρᾰκτῆρος", "χᾰρᾰκτῆρῐ", "", "instrument used for"]) + let v = native_list_append(v, ["δορκάς", "noun", "δορκᾰ́δες", "δορκᾰ́δος", "δορκᾰ́δῐ", "", "roe gazelle antelope"]) + let v = native_list_append(v, ["πεδίον", "noun", "πεδῐ́ᾰ", "πεδίου", "πεδῐ́ῳ", "", "open country field"]) + let v = native_list_append(v, ["σωρός", "noun", "σωροί", "σωροῦ", "σωρῷ", "", "heap pile mound"]) + let v = native_list_append(v, ["σωρίτης", "noun", "σωρῖται", "σωρῑ́του", "σωρῑ́τῃ", "", "sorites a heap"]) + let v = native_list_append(v, ["σωρείτης", "noun", "σωρεῖται", "σωρείτου", "σωρείτῃ", "", "alternative spelling of"]) + let v = native_list_append(v, ["ῥακά", "noun", "ῥακά", "", "", "", "idiot fool blockhead"]) + let v = native_list_append(v, ["τύραννος", "noun", "αἱ τῠ́ρᾰννοι", "τῠρᾰ́ννου", "τῇ τῠρᾰ́ννῳ", "", "absolute ruler originally"]) + let v = native_list_append(v, ["ἔντερον", "noun", "ἔντερᾰ", "ἐντέρου", "ἐντέρῳ", "", "guts viscera intestine"]) + let v = native_list_append(v, ["ἔντερα", "noun", "ἔντερα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μετοχή", "noun", "μετοχαί", "μετοχῆς", "μετοχῇ", "", "participation"]) + let v = native_list_append(v, ["σίδηρος", "noun", "σῐ́δηροι", "σῐδήρου", "σῐδήρῳ", "", "iron"]) + let v = native_list_append(v, ["ἄκρον", "noun", "ᾰ̓́κρᾰ", "ᾰ̓́κρου", "ᾰ̓́κρῳ", "", "peak e.g. of"]) + let v = native_list_append(v, ["σκίουρος", "noun", "σκῐ́ουροι", "σκῐούρου", "σκῐούρῳ", "", "squirrel"]) + let v = native_list_append(v, ["ἀμυγδάλη", "noun", "ᾰ̓μῠγδᾰ́λαι", "ᾰ̓μῠγδᾰ́λης", "ᾰ̓μῠγδᾰ́λῃ", "", "almond"]) + let v = native_list_append(v, ["ἀνατομή", "noun", "ἀνατομαί", "ἀνατομῆς", "ἀνατομῇ", "", "a cutting up"]) + let v = native_list_append(v, ["ἄγκυρα", "noun", "ᾰ̓́γκῡραι", "ᾰ̓γκῡ́ρᾱς", "ᾰ̓γκῡ́ρᾳ", "", "anchor"]) + let v = native_list_append(v, ["φλόγα", "noun", "φλόγα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["θεότητα", "noun", "θεότητα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["τροχός", "noun", "τροχοί", "τροχοῦ", "τροχῷ", "", "wheel"]) + let v = native_list_append(v, ["ἔλεος", "noun", "ἔλεοι", "ἐλέου", "ἐλέῳ", "", "pity mercy compassion"]) + let v = native_list_append(v, ["ψευδάργυρος", "noun", "ψευδᾰ́ργῠροι", "ψευδᾰργῠ́ρου", "ψευδᾰργῠ́ρῳ", "", "mock silver false"]) + let v = native_list_append(v, ["βόμβος", "noun", "βόμβοι", "βόμβου", "βόμβῳ", "", "any deep hollow"]) + let v = native_list_append(v, ["καταπέλτης", "noun", "κᾰτᾰπέλται", "κᾰτᾰπέλτου", "κᾰτᾰπέλτῃ", "", "Literary form of"]) + let v = native_list_append(v, ["Σατάν", "noun", "Σατάν", "", "", "", "Satan"]) + let v = native_list_append(v, ["χαμαιλέων", "noun", "χᾰμαιλέοντες", "χᾰμαιλέοντος", "χᾰμαιλέοντῐ", "", "chameleon"]) + let v = native_list_append(v, ["σταυρός", "noun", "σταυροί", "σταυροῦ", "σταυρῷ", "", "upright stake or"]) + let v = native_list_append(v, ["καστάνεια", "noun", "κᾰστᾰ́νειᾰ", "κᾰστᾰνείων", "κᾰστᾰνείοις", "", "alternative form of"]) + let v = native_list_append(v, ["κάστανον", "noun", "κᾰ́στᾰνᾰ", "κᾰστᾰ́νου", "κᾰστᾰ́νῳ", "", "Rare singular form"]) + let v = native_list_append(v, ["κάστανα", "noun", "κᾰ́στᾰνᾰ", "κᾰστᾰ́νων", "κᾰστᾰ́νοις", "", "sweet chestnuts"]) + let v = native_list_append(v, ["μαδάρωσις", "noun", "μᾰδᾰρώσεις", "μᾰδᾰρώσεως", "μᾰδᾰρώσει", "", "a falling off"]) + let v = native_list_append(v, ["γεωγραφία", "noun", "γεωγρᾰφῐ́αι", "γεωγρᾰφῐ́ᾱς", "γεωγρᾰφῐ́ᾳ", "", "geography"]) + let v = native_list_append(v, ["γλουτός", "noun", "γλουτοί", "γλουτοῦ", "γλουτῷ", "", "rump buttock"]) + let v = native_list_append(v, ["κέρκουρος", "noun", "κέρκουροι", "κερκούρου", "κερκούρῳ", "", "boat small ship"]) + let v = native_list_append(v, ["μέση", "noun", "μέσαι", "μέσης", "μέσῃ", "", ""]) + let v = native_list_append(v, ["γηγενής", "noun", "γηγενεῖς", "γηγενοῦς", "γηγενεῖ", "", "a mortal"]) + let v = native_list_append(v, ["λυκάνθρωπος", "noun", "αἱ λῠκάνθρωποι", "λῠκανθρώπου", "τῇ λῠκανθρώπῳ", "", "werewolf lycanthrope"]) + let v = native_list_append(v, ["πολιορκία", "noun", "πολῐορκῐ́αι", "πολῐορκῐ́ᾱς", "πολῐορκῐ́ᾳ", "", "siege of a"]) + let v = native_list_append(v, ["μαθηματικά", "noun", "μαθηματικά", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["σκελετός", "noun", "σκελετοί", "σκελετοῦ", "σκελετῷ", "", "dried body mummy"]) + let v = native_list_append(v, ["διάμετρος", "noun", "δῐᾰ́μετροι", "δῐᾰμέτρου", "δῐᾰμέτρῳ", "", "the diameter or"]) + let v = native_list_append(v, ["αὐτονομία", "noun", "αὐτονομῐ́αι", "αὐτονομῐ́ᾱς", "αὐτονομῐ́ᾳ", "", "autonomy independence freedom"]) + let v = native_list_append(v, ["μαργαρίτης", "noun", "μαργᾰρῖται", "μαργᾰρῑ́του", "μαργᾰρῑ́τῃ", "", "pearl"]) + let v = native_list_append(v, ["ὀπτίων", "noun", "ὀπτῐ́ονες", "ὀπτῐ́ονος", "ὀπτῐ́ονῐ", "", "assistant especially in"]) + let v = native_list_append(v, ["σκάφη", "noun", "σκᾰ́φαι", "σκᾰ́φης", "σκᾰ́φῃ", "", "bowl tub basin"]) + let v = native_list_append(v, ["ἱδρώς", "noun", "ῐ̔δρῶτες", "ῐ̔δρῶτος", "ῐ̔δρῶτῐ", "", "sweat perspiration"]) + let v = native_list_append(v, ["ἰδίω", "noun", "ἰδίω", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["πάγκρεας", "noun", "πᾰγκρέᾰτᾰ", "πᾰγκρέᾰτος", "πᾰγκρέᾰτῐ", "", "pancreas sweetbread"]) + let v = native_list_append(v, ["προκοπή", "noun", "προκοπαί", "προκοπῆς", "προκοπῇ", "", "progress in a"]) + let v = native_list_append(v, ["φάρος", "noun", "φᾰ́ρη", "φᾰ́ρους", "φᾰ́ρει", "", "plough"]) + let v = native_list_append(v, ["ὀδών", "noun", "ὀδόντες", "ὀδόντος", "ὀδόντῐ", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἀθήρωμα", "noun", "ἀθηρώμᾰτᾰ", "ἀθηρώματος", "ἀθηρώμᾰτῐ", "", "tumour"]) + let v = native_list_append(v, ["ἠχή", "noun", "ἠχαί", "ἠχῆς", "ἠχῇ", "", "sound noise"]) + let v = native_list_append(v, ["κριτήριον", "noun", "κρῐτήρῐᾰ", "κρῐτηρῐ́ου", "κρῐτηρῐ́ῳ", "", "means of judging"]) + let v = native_list_append(v, ["ξηρίον", "noun", "ξηρῐ́ᾰ", "ξηρῐ́ου", "ξηρῐ́ῳ", "", "a desiccative powder"]) + let v = native_list_append(v, ["ῥυθμός", "noun", "ῥῠθμοί", "ῥῠθμοῦ", "ῥῠθμῷ", "", "a repeating regular"]) + let v = native_list_append(v, ["φαντασία", "noun", "φᾰντᾰσῐ́αι", "φᾰντᾰσῐ́ᾱς", "φᾰντᾰσῐ́ᾳ", "", "look appearance presentation"]) + let v = native_list_append(v, ["τριήρης", "noun", "τρῐήρεις", "τριήρους", "τρῐήρει", "", "trireme"]) + let v = native_list_append(v, ["οἴαξ", "noun", "οἴᾱκες", "οἴᾱκος", "οἴᾱκῐ", "", "tiller the handle"]) + let v = native_list_append(v, ["οἰήϊον", "noun", "οἰήϊᾰ", "οἰηΐου", "οἰηΐῳ", "", "Epic form of"]) + let v = native_list_append(v, ["κανών", "noun", "κᾰνόνες", "κᾰνόνος", "κᾰνόνῐ", "", "rod pole bar"]) + let v = native_list_append(v, ["καῦμα", "noun", "καύμᾰτᾰ", "καύμᾰτος", "καύμᾰτῐ", "", "burning glow heat"]) + let v = native_list_append(v, ["συμπόσιον", "noun", "σῠμπόσῐᾰ", "σῠμποσῐ́ου", "σῠμποσῐ́ῳ", "", "drinking party entertainment"]) + let v = native_list_append(v, ["φράσις", "noun", "φρᾰ́σεις", "φρᾰ́σεως", "φρᾰ́σει", "", "speech"]) + let v = native_list_append(v, ["αὔρα", "noun", "αὖραι", "αὔρᾱς", "αὔρᾳ", "", "cool air in"]) + let v = native_list_append(v, ["κίνδυνος", "noun", "κῐ́νδῡνοι", "κῐνδῡ́νου", "κῐνδῡ́νῳ", "", "danger risk hazard"]) + let v = native_list_append(v, ["κορώνη", "noun", "κορῶναι", "κορώνης", "κορώνῃ", "", "a type of"]) + let v = native_list_append(v, ["κῶμα", "noun", "κώμᾰτᾰ", "κώμᾰτος", "κώμᾰτῐ", "", "deep sleep lethargy"]) + let v = native_list_append(v, ["χάσμα", "noun", "χάσματᾰ", "χάσματος", "χάσματῐ", "", "hollow chasm gulf"]) + let v = native_list_append(v, ["πραικόκιον", "noun", "πραικόκῐᾰ", "πραικοκῐ́ου", "πραικοκῐ́ῳ", "", "apricot"]) + let v = native_list_append(v, ["μονοπώλιον", "noun", "μονοπώλῐᾰ", "μονοπωλῐ́ου", "μονοπωλῐ́ῳ", "", "right of monopoly"]) + let v = native_list_append(v, ["μονοπώλια", "noun", "μονοπώλια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μονοπωλία", "noun", "μονοπωλῐ́αι", "μονοπωλῐ́ᾱς", "μονοπωλῐ́ᾳ", "", "exclusive sale monopoly"]) + let v = native_list_append(v, ["κυκεών", "noun", "κῠκεῶνες", "κῠκεῶνος", "κῠκεῶνῐ", "", "a potion or"]) + let v = native_list_append(v, ["ἀρτηρία", "noun", "ᾰ̓ρτηρῐ́αι", "ᾰ̓ρτηρῐ́ᾱς", "ᾰ̓ρτηρῐ́ᾳ", "", "windpipe trachea"]) + let v = native_list_append(v, ["λάρυγξ", "noun", "λᾰ́ρῠγγες", "λᾰ́ρῠγγος", "λᾰ́ρῠγγῐ", "", "larynx upper part"]) + let v = native_list_append(v, ["φάρυγξ", "noun", "φᾰ́ρῠγγες", "φᾰ́ρῠγγος", "φᾰ́ρῠγγῐ", "", "throat windpipe esophagus"]) + let v = native_list_append(v, ["θέσις", "noun", "θέσεις", "θέσεως", "θέσει", "", "a setting placement"]) + let v = native_list_append(v, ["ἀντίθεσις", "noun", "ᾰ̓ντῐθέσεις", "ᾰ̓ντῐθέσεως", "ᾰ̓ντῐθέσει", "", "opposition resistance"]) + let v = native_list_append(v, ["Μαυρίκιος", "noun", "Μαυρίκιος", "Μαυρικίου", "Μαυρικίῳ", "", "a male surname"]) + let v = native_list_append(v, ["θεία", "noun", "θεῖαι", "θείᾱς", "θείᾳ", "", "aunt"]) + let v = native_list_append(v, ["πάγος", "noun", "πᾰ́γοι", "πᾰ́γου", "πᾰ́γῳ", "", "mountain peak rocky"]) + let v = native_list_append(v, ["ἔμφασις", "noun", "ἐμφᾰ́σεις", "ἐμφᾰ́σεως", "ἐμφᾰ́σει", "", "appearance"]) + let v = native_list_append(v, ["εὐλογία", "noun", "εὐλογῐ́αι", "εὐλογῐ́ᾱς", "εὐλογῐ́ᾳ", "", "good speaking good"]) + let v = native_list_append(v, ["εἰκών", "noun", "εἰκόνες", "εἰκόνος", "εἰκόνῐ", "", "figure image likeness"]) + let v = native_list_append(v, ["ζιζάνιον", "noun", "ζῐζᾰ́νῐᾰ", "ζῐζᾰνῐ́ου", "ζῐζᾰνῐ́ῳ", "", "darnel ryegrass Lolium"]) + let v = native_list_append(v, ["ζιζάνια", "noun", "ζιζάνια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ἰδιώτης", "noun", "ῐ̓δῐῶται", "ῐ̓δῐώτου", "ῐ̓δῐώτῃ", "", "a private person"]) + let v = native_list_append(v, ["κόμης", "noun", "κόμητες", "κόμητος", "κόμητῐ", "", "a companion comrade"]) + let v = native_list_append(v, ["Κοῖος", "noun", "Κοῖος", "Κοίου", "Κοίῳ", "", "Coeus son of"]) + let v = native_list_append(v, ["μαχανά", "noun", "μαχανά", "μᾱχᾰνᾱ́ς", "", "", "Doric form of"]) + let v = native_list_append(v, ["παρένθεσις", "noun", "πᾰρενθέσεις", "πᾰρενθέσεως", "πᾰρενθέσει", "", "a putting in"]) + let v = native_list_append(v, ["ῥόμβος", "noun", "ῥόμβοι", "ῥόμβου", "ῥόμβῳ", "", "bullroarer an instrument"]) + let v = native_list_append(v, ["συμμετρία", "noun", "σῠμμετρῐ́αι", "σῠμμετρῐ́ᾱς", "σῠμμετρῐ́ᾳ", "", "commensurability"]) + let v = native_list_append(v, ["συμπάθεια", "noun", "σῠμπᾰ́θειαι", "σῠμπᾰθείᾱς", "σῠμπᾰθείᾳ", "", "fellow feeling sympathy"]) + let v = native_list_append(v, ["σύνθεσις", "noun", "σῠνθέσεις", "σῠνθέσεως", "σῠνθέσει", "", "a putting together"]) + let v = native_list_append(v, ["σύνταξις", "noun", "σῠντᾰ́ξεις", "σῠντᾰ́ξεως", "σῠντᾰ́ξει", "", "an arranging putting"]) + let v = native_list_append(v, ["σῦριγξ", "noun", "σῡ́ρῐγγες", "σῡ́ρῐγγος", "σῡ́ρῐγγῐ", "", "pan pipes"]) + let v = native_list_append(v, ["ὑπόθεσις", "noun", "ῠ̔ποθέσεις", "ῠ̔ποθέσεως", "ῠ̔ποθέσει", "", "proposal proposed action"]) + let v = native_list_append(v, ["ψάμμος", "noun", "αἱ ψᾰ́μμοι", "ψᾰ́μμου", "τῇ ψᾰ́μμῳ", "", "sand"]) + let v = native_list_append(v, ["μάρμαρος", "noun", "μάρμᾰροι", "μαρμᾰ́ρου", "μαρμᾰ́ρῳ", "", "crystalline rock"]) + let v = native_list_append(v, ["Ἀκύλας", "noun", "Ἀκύλας", "Ἀκύλου", "Ἀκύλᾳ", "", "Aquila"]) + let v = native_list_append(v, ["ἁμαρτία", "noun", "ᾰ̔μᾰρτῐ́αι", "ᾰ̔μᾰρτίᾱς", "ᾰ̔μᾰρτῐ́ᾳ", "", "error mistake fault"]) + let v = native_list_append(v, ["δικαιοσύνη", "noun", "δῐκαιοσῠ́ναι", "δῐκαιοσῠ́νης", "δῐκαιοσῠ́νῃ", "", "righteousness justice"]) + let v = native_list_append(v, ["ἀργύριον", "noun", "ᾰ̓ργῠ́ρῐᾰ", "ᾰ̓ργῠρῐ́ου", "ᾰ̓ργῠρῐ́ῳ", "", "small coin coinage"]) + let v = native_list_append(v, ["βέλος", "noun", "βέλη", "βέλους", "βέλει", "", "missile arrow dart"]) + let v = native_list_append(v, ["βελόνη", "noun", "βελόναι", "βελόνης", "βελόνῃ", "", "needle"]) + let v = native_list_append(v, ["ἐλπίς", "noun", "ἐλπῐ́δες", "ἐλπῐ́δος", "ἐλπῐ́δῐ", "", "hope expectation belief"]) + let v = native_list_append(v, ["κίνησις", "noun", "κῑνήσεις", "κῑνήσεως", "κῑνήσει", "", "motion"]) + let v = native_list_append(v, ["καλοκαγαθία", "noun", "κᾰλοκᾰγᾰθῐ́αι", "κᾰλοκᾰγᾰθῐ́ᾱς", "κᾰλοκᾰγᾰθῐ́ᾳ", "", "gentlemanliness nobility the"]) + let v = native_list_append(v, ["κυπάρισσος", "noun", "κῠπᾰ́ρῐσσοι", "κῠπᾰρῐ́σσου", "κῠπᾰρῐ́σσῳ", "", "cypress Cupressus sempervirens"]) + let v = native_list_append(v, ["ὄνος", "noun", "ὄνοι", "ὄνου", "ὄνῳ", "", "ass donkey jack"]) + let v = native_list_append(v, ["ὄπιον", "noun", "ὄπῐᾰ", "ὀπῐ́ου", "ὀπῐ́ῳ", "", "poppy juice opium"]) + let v = native_list_append(v, ["ῥοία", "noun", "ῥοῖαι", "ῥοίᾱς", "ῥοίᾳ", "", "flow flux"]) + let v = native_list_append(v, ["σκέπη", "noun", "σκέπαι", "σκέπης", "σκέπῃ", "", "cover shelter"]) + let v = native_list_append(v, ["ὑφέν", "noun", "ῠ̔φέν", "ῠ̔φέν", "ῠ̔φέν", "", "hyphen"]) + let v = native_list_append(v, ["δώτωρ", "noun", "δώτορες", "δώτορος", "δώτορῐ", "", "giver"]) + let v = native_list_append(v, ["εὖνις", "noun", "εὔνῐδες", "εὔνῐδος", "εὔνῐδῐ", "", "bedfellow wife"]) + let v = native_list_append(v, ["εὐνή", "noun", "εὐναί", "εὐνῆς", "εὐνῇ", "", "bed"]) + let v = native_list_append(v, ["ἐρυσίπελας", "noun", "ἐρῠσῐπέλᾰτᾰ", "ἐρῠσῐπέλᾰτος", "ἐρῠσῐπέλᾰτῐ", "", "erysipelas a skin"]) + let v = native_list_append(v, ["στάτωρ", "noun", "στάτορες", "στάτορος", "στάτορῐ", "", "stator usher in"]) + let v = native_list_append(v, ["προστάτης", "noun", "προστᾰ́ται", "προστάτου", "προστᾰ́τῃ", "", "front ranksman"]) + let v = native_list_append(v, ["μητέρες", "noun", "μητέρες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["μητέρας", "noun", "μητέρας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["μητέρων", "noun", "μητέρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πατέρες", "noun", "πατέρες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πατέρα", "noun", "πατέρα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["πατέρων", "noun", "πατέρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἀγγεῖον", "noun", "ᾰ̓γγεῖᾰ", "ᾰ̓γγείου", "ᾰ̓γγείῳ", "", "vessel jar vase"]) + let v = native_list_append(v, ["γεωργός", "noun", "γεωργοί", "γεωργοῦ", "γεωργῷ", "", "farmer"]) + let v = native_list_append(v, ["δούξ", "noun", "δοῦκες", "δουκός", "δουκῐ́", "", "military leader leader"]) + let v = native_list_append(v, ["θύρσος", "noun", "θῠ́ρσοι", "θῠ́ρσου", "θῠ́ρσῳ", "", "thyrsus a wand"]) + let v = native_list_append(v, ["καρκίνος", "noun", "καρκῐ́νᾰ", "καρκῐ́νου", "καρκῐ́νῳ", "", "crab"]) + let v = native_list_append(v, ["κεραμίς", "noun", "κερᾰμῐ́δες", "κερᾰμῐ́δος", "κερᾰμῐ́δῐ", "", "roof-tile"]) + let v = native_list_append(v, ["κεραμίδιον", "noun", "κερᾰμῐ́δῐᾰ", "κερᾰμῐδῐ́ου", "κερᾰμῐδῐ́ῳ", "", "small tile"]) + let v = native_list_append(v, ["κάννα", "noun", "κᾰ́νναι", "κᾰ́ννης", "κᾰ́ννῃ", "", "giant reed Arundo"]) + let v = native_list_append(v, ["κίρκος", "noun", "κῐ́ρκοι", "κίρκου", "κῐ́ρκῳ", "", "type of hawk"]) + let v = native_list_append(v, ["κρίκος", "noun", "κρῐ́κοι", "κρῐ́κου", "κρῐ́κῳ", "", "ring"]) + let v = native_list_append(v, ["κονίς", "noun", "κονῐ́δες", "κονῐ́δος", "κονῐ́δῐ", "", "nit egg of"]) + let v = native_list_append(v, ["κράββατος", "noun", "κρᾰ́ββᾰτοι", "κρᾰββᾰ́του", "κρᾰββᾰ́τῳ", "", "couch mattress pallet"]) + let v = native_list_append(v, ["μῆκος", "noun", "μήκη", "μήκους", "μήκει", "", "length spatial measurement"]) + let v = native_list_append(v, ["μᾶκος", "noun", "μᾱ́κεᾰ", "μᾱ́κεος", "μᾱ́κεῐ̈", "", "Doric form of"]) + let v = native_list_append(v, ["μέταξα", "noun", "μέταξαι", "μετάξης", "μετάξῃ", "", "raw silk"]) + let v = native_list_append(v, ["ὄντος", "noun", "ὄντος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τάλαντον", "noun", "τᾰ́λᾰντᾰ", "τᾰλᾰ́ντου", "τᾰλᾰ́ντῳ", "", "balance scale usually"]) + let v = native_list_append(v, ["τετράς", "noun", "τετρᾰ́δες", "τετρᾰ́δος", "τετρᾰ́δῐ", "", "the number four"]) + let v = native_list_append(v, ["υἱύς", "noun", "υἱεῖς", "υἱέος", "υἱεῖ", "", "Old Attic form"]) + let v = native_list_append(v, ["φασιανός", "noun", "φᾱσῐᾱνοί", "φᾱσῐᾱνοῦ", "φᾱσῐᾱνῷ", "", "pheasant Phasianus colchicus"]) + let v = native_list_append(v, ["κέρασος", "noun", "κέρᾰσοι", "κερᾰ́σου", "κερᾰ́σῳ", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἀββᾶς", "noun", "ἀββᾶδες", "ἀββᾶ", "ἀββᾷ", "", "declinable form of"]) + let v = native_list_append(v, ["ἐκχύμωσις", "noun", "ἐκχῡμώσεις", "ἐκχῡμώσεως", "ἐκχῡμώσει", "", "bruise ecchymosis"]) + let v = native_list_append(v, ["κριθή", "noun", "κρῑθαί", "κρῑθῆς", "κρῑθῇ", "", "barley"]) + let v = native_list_append(v, ["ὄρρος", "noun", "ὄρροι", "ὄρρου", "ὄρρῳ", "", "butt ass"]) + let v = native_list_append(v, ["ἐκκύκλημα", "noun", "ἐκκῠκλήμᾰτᾰ", "ἐκκῠκλήμᾰτος", "ἐκκῠκλήμᾰτῐ", "", "a wheeled device"]) + let v = native_list_append(v, ["ἀπόπτυγμα", "noun", "ἀποπτύγμᾰτᾰ", "ἀποπτύγματος", "ἀποπτύγμᾰτῐ", "", "a portion of"]) + let v = native_list_append(v, ["χιτών", "noun", "χῐτῶνες", "χῐτῶνος", "χῐτῶνῐ", "", "tunic"]) + let v = native_list_append(v, ["πέτασος", "noun", "αἱ πέτᾰσοι", "πετᾰ́σου", "τῇ πετᾰ́σῳ", "", "broad-brimmed hat commonly"]) + let v = native_list_append(v, ["ἀκόνιτον", "noun", "ᾰ̓κόνῑτᾰ", "ᾰ̓κονῑ́του", "ᾰ̓κονῑ́τῳ", "", "leopards bane Aconitum"]) + let v = native_list_append(v, ["Ἀτροπατηνή", "noun", "Ἀτροπατηνή", "Ἀτροπατηνῆς", "Ἀτροπατηνῇ", "", "Atropatene an ancient"]) + let v = native_list_append(v, ["Ἀλβανία", "noun", "Ἀλβανία", "Ἀλβᾰνῐ́ᾱς", "Ἀλβᾰνῐ́ᾳ", "", "Caucasian Albania an"]) + let v = native_list_append(v, ["τρίγωνον", "noun", "τρῐ́γωνᾰ", "τρῐγώνου", "τρῐγώνῳ", "", "triangle geometric shape"]) + let v = native_list_append(v, ["ἀριθμός", "noun", "ᾰ̓ρῐθμοί", "ᾰ̓ρῐθμοῦ", "ᾰ̓ρῐθμῷ", "", "number"]) + let v = native_list_append(v, ["τόκος", "noun", "τόκοι", "τόκου", "τόκῳ", "", "childbirth parturition"]) + let v = native_list_append(v, ["τόμος", "noun", "τόμοι", "τόμου", "τόμῳ", "", "slice piece"]) + let v = native_list_append(v, ["τομάριον", "noun", "τομᾰ́ρῐᾰ", "τομᾰρῐ́ου", "τομᾰρῐ́ῳ", "", "small volume tract"]) + let v = native_list_append(v, ["ἔρως", "noun", "ἔρωτες", "ἔρωτος", "ἔρωτῐ", "", "love desire usually"]) + let v = native_list_append(v, ["ματαιότης", "noun", "μᾰταιότητες", "μᾰταιότητος", "μᾰταιότητῐ", "", "emptiness purposelessness futility"]) + let v = native_list_append(v, ["κεραμεύς", "noun", "κερᾰμῆς", "κερᾰμέως", "κερᾰμεῖ", "", "potter"]) + let v = native_list_append(v, ["πέτρος", "noun", "αἱ πέτροι", "πέτρου", "τῇ πέτρῳ", "", "rock stone boulder"]) + let v = native_list_append(v, ["κονίδες", "noun", "κονίδες", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["σταφυλῖνος", "noun", "στᾰφῠλῖνοι", "στᾰφῠλῑ́νου", "στᾰφῠλῑ́νῳ", "", "a carrot"]) + let v = native_list_append(v, ["βαλανεῖον", "noun", "βᾰλᾰνεῖᾰ", "βᾰλᾰνείου", "βᾰλᾰνείῳ", "", "bath an area"]) + let v = native_list_append(v, ["ὄφελος", "noun", "ὀφέλη", "ὀφέλους", "ὀφέλει", "", "furtherance advantage help"]) + let v = native_list_append(v, ["χρεία", "noun", "χρεῖαι", "χρείᾱς", "χρείᾳ", "", "need want necessity"]) + let v = native_list_append(v, ["ποτήριον", "noun", "ποτήρῐᾰ", "ποτηρῐ́ου", "ποτηρῐ́ῳ", "", "cup"]) + let v = native_list_append(v, ["παρουσία", "noun", "πᾰρουσῐ́αι", "πᾰρουσῐ́ᾱς", "πᾰρουσῐ́ᾳ", "", "presence"]) + let v = native_list_append(v, ["ὀστοῦν", "noun", "ὀστᾶ", "ὀστοῦ", "ὀστῷ", "", "contracted form of"]) + let v = native_list_append(v, ["ὄστρεον", "noun", "ὄστρεᾰ", "ὀστρέου", "ὀστρέῳ", "", "bivalve"]) + let v = native_list_append(v, ["ὄστρακον", "noun", "ὄστρᾰκᾰ", "ὀστρᾰ́κου", "ὀστρᾰ́κῳ", "", "earthen vessel"]) + let v = native_list_append(v, ["μῆδος", "noun", "μῆδος", "", "", "", "hypothetical nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["πάσχα", "noun", "πάσχα", "", "", "", "Passover"]) + let v = native_list_append(v, ["ὕπαρξις", "noun", "ῠ̔πᾰ́ρξεις", "ῠ̔πᾰ́ρξεως", "ῠ̔πᾰ́ρξει", "", "existence reality"]) + let v = native_list_append(v, ["ἱστορίας", "noun", "ἱστορίας", "", "", "", "inflection of ῐ̔στορῐ́ᾱ"]) + let v = native_list_append(v, ["φίλει", "noun", "φίλει", "", "", "", "inflection of φῖλος"]) + let v = native_list_append(v, ["ψυχῇ", "noun", "ψυχῇ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["πλατείας", "noun", "πλατείας", "", "", "", "inflection of πλᾰτεῖᾰ"]) + let v = native_list_append(v, ["ὄνυμα", "noun", "ὀνῠ́μᾰτᾰ", "ὀνῠ́μᾰτος", "ὀνῠ́μᾰτῐ", "", "Doric and Aeolic"]) + let v = native_list_append(v, ["ὀνείρων", "noun", "ὀνείρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["χρείαν", "noun", "χρείαν", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["χεῖρα", "noun", "χεῖρα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["κεραμέως", "noun", "κεραμέως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μάτη", "noun", "μᾰ́ται", "μᾰ́της", "μᾰ́τῃ", "", "folly fault"]) + let v = native_list_append(v, ["Ἄρη", "noun", "Ἄρη", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["αὐλός", "noun", "αὐλοί", "αὐλοῦ", "αὐλῷ", "", "any pipe-shaped instrument"]) + let v = native_list_append(v, ["δάκτυλος", "noun", "δᾰ́κτῠλοι", "δᾰκτῠ́λου", "δᾰκτῠ́λῳ", "", "finger"]) + let v = native_list_append(v, ["λύκαινα", "noun", "λῠ́καιναι", "λῠκαίνης", "λῠκαίνῃ", "", "she-wolf"]) + let v = native_list_append(v, ["οἰκουμένη", "noun", "οἰκουμέναι", "οἰκουμένης", "οἰκουμένῃ", "", "inhabited region"]) + let v = native_list_append(v, ["παροιμία", "noun", "πᾰροιμῐ́αι", "πᾰροιμῐ́ᾱς", "πᾰροιμῐ́ᾳ", "", "a byword saying"]) + let v = native_list_append(v, ["αὐθέντης", "noun", "αὐθένται", "αὐθέντου", "αὐθέντῃ", "", "a perpetrator of"]) + let v = native_list_append(v, ["γραφή", "noun", "γρᾰφαί", "γρᾰφῆς", "γρᾰφῇ", "", "drawing"]) + let v = native_list_append(v, ["πλάσμα", "noun", "πλᾰ́σμᾰτᾰ", "πλᾰ́σμᾰτος", "πλᾰ́σμᾰτῐ", "", "something formed figure"]) + let v = native_list_append(v, ["ψίξ", "noun", "αἱ ψῖχες", "ψῑχός", "τῇ ψῑχῐ́", "", "crumb morsel bit"]) + let v = native_list_append(v, ["ψῖχες", "noun", "ψῖχες", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["πάχνη", "noun", "πάχναι", "πάχνης", "πάχνῃ", "", "hoarfrost rime"]) + let v = native_list_append(v, ["ἕδρα", "noun", "ἕδραι", "ἕδρᾱς", "ἕδρᾳ", "", "seat chair stool"]) + let v = native_list_append(v, ["δάφνη", "noun", "δᾰ́φναι", "δᾰ́φνης", "δᾰ́φνῃ", "", "sweet bay Laurus"]) + let v = native_list_append(v, ["λατρεία", "noun", "λᾰτρεῖαι", "λᾰτρείᾱς", "λᾰτρείᾳ", "", "service"]) + let v = native_list_append(v, ["φυγάς", "noun", "αἱ φῠγᾰ́δες", "φῠγᾰ́δος", "τῇ φῠγᾰ́δῐ", "", "one who flees"]) + let v = native_list_append(v, ["φρουρά", "noun", "φρουραί", "φρουρᾶς", "φρουρᾷ", "", "the duty of"]) + let v = native_list_append(v, ["Σωκράτης", "noun", "Σωκράτης", "Σωκρᾰ́τους", "Σωκρᾰ́τει", "", "a male given"]) + let v = native_list_append(v, ["πόσθη", "noun", "πόσθαι", "πόσθης", "πόσθῃ", "", "penis"]) + let v = native_list_append(v, ["τοξότης", "noun", "τοξόται", "τοξότου", "τοξότῃ", "", "archer bowman"]) + let v = native_list_append(v, ["πόρνη", "noun", "πόρναι", "πόρνης", "πόρνῃ", "", "a female prostitute"]) + let v = native_list_append(v, ["βαρεία", "noun", "βαρεία", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["μνήμα", "noun", "μνήμα", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["μηρός", "noun", "μηροί", "μηροῦ", "μηρῷ", "", "a thigh"]) + let v = native_list_append(v, ["στόλος", "noun", "στόλοι", "στόλου", "στόλῳ", "", "expedition"]) + let v = native_list_append(v, ["προδότης", "noun", "προδόται", "προδότου", "προδότῃ", "", "traitor betrayer"]) + let v = native_list_append(v, ["κέφαλος", "noun", "κέφᾰλοι", "κεφᾰ́λου", "κεφᾰ́λῳ", "", "a species of"]) + let v = native_list_append(v, ["σχεδία", "noun", "σχεδῐ́αι", "σχεδῐ́ᾱς", "σχεδῐ́ᾳ", "", "raft float"]) + let v = native_list_append(v, ["κύτος", "noun", "κῠ́τη", "κῠ́τους", "κῠ́τει", "", "a hollow"]) + let v = native_list_append(v, ["Βασίλειος", "noun", "Βασίλειος", "Βασιλείου", "Βασιλείῳ", "", "a male given"]) + let v = native_list_append(v, ["λύτρα", "noun", "λύτρα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["θεέ", "noun", "θεέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["μεταφορά", "noun", "μετᾰφοραί", "μετᾰφορᾶς", "μετᾰφορᾷ", "", "transference"]) + let v = native_list_append(v, ["τομή", "noun", "τομαί", "τομῆς", "τομῇ", "", "intersection"]) + let v = native_list_append(v, ["τόνος", "noun", "τόνοι", "τόνου", "τόνῳ", "", "tension as produced"]) + let v = native_list_append(v, ["ῥύγχος", "noun", "ῥῠ́γχη", "ῥῠ́γχους", "ῥῠ́γχει", "", "snout the nose"]) + let v = native_list_append(v, ["πατριάρχης", "noun", "πᾰτρῐᾰ́ρχαι", "πᾰτρῐᾰ́ρχου", "πᾰτρῐᾰ́ρχῃ", "", "a patriarch the"]) + let v = native_list_append(v, ["τραπεζίτης", "noun", "τρᾰπεζῖται", "τρᾰπεζῑ́του", "τρᾰπεζῑ́τῃ", "", "banker money changer"]) + let v = native_list_append(v, ["φαρμακοποιία", "noun", "φᾰρμᾰκοποιῐ́αι", "φᾰρμᾰκοποιῐ́ᾱς", "φᾰρμᾰκοποιῐ́ᾳ", "", "preparation of drugs"]) + let v = native_list_append(v, ["κτίσμα", "noun", "κτῐ́σμᾰτᾰ", "κτίσμᾰτος", "κτῐ́σμᾰτῐ", "", "colony foundation"]) + let v = native_list_append(v, ["μέταλλον", "noun", "μέτᾰλλᾰ", "μετᾰ́λλου", "μετᾰ́λλῳ", "", "a mine quarry"]) + let v = native_list_append(v, ["γεωργία", "noun", "γεωργῐ́αι", "γεωργῐ́ᾱς", "γεωργῐ́ᾳ", "", "tillage"]) + let v = native_list_append(v, ["μάγειρος", "noun", "μᾰ́γειροι", "μᾰγείρου", "μᾰγείρῳ", "", "cook"]) + let v = native_list_append(v, ["τεχνίτης", "noun", "τέχνῑται", "τέχνῑ́του", "τεχνῑ́τῃ", "", "artisan craftsman"]) + let v = native_list_append(v, ["σιδηρουργός", "noun", "σῐδηρουργοί", "σῐδηρουργοῦ", "σῐδηρουργῷ", "", "ironsmith blacksmith"]) + let v = native_list_append(v, ["Ἀγαθή", "noun", "Ἀγαθή", "Ᾰ̓γᾰθῆς", "Ᾰ̓γᾰθῇ", "", "a female given"]) + let v = native_list_append(v, ["χορευτής", "noun", "χορευταί", "χορευτοῦ", "χορευτῇ", "", "a choral dancer"]) + let v = native_list_append(v, ["τέρμα", "noun", "τέρμᾰτᾰ", "τέρμᾰτος", "τέρμᾰτῐ", "", "end boundary"]) + let v = native_list_append(v, ["δρυμός", "noun", "δρῡμοί", "δρῡμοῦ", "δρῡμῷ", "", "A copse a"]) + let v = native_list_append(v, ["σπείρα", "noun", "σπείρα", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["σκάλα", "noun", "σκάλαι", "σκάλας", "σκάλᾳ", "", "ladder"]) + let v = native_list_append(v, ["ταινία", "noun", "ταινῐ́αι", "ταινῐ́ᾱς", "ταινῐ́ᾳ", "", "band fillet headband"]) + let v = native_list_append(v, ["Βρεττανία", "noun", "Βρεττᾰνῐ́αι", "Βρεττᾰνίᾱς", "Βρεττᾰνῐ́ᾳ", "", "Great Britain Britain"]) + let v = native_list_append(v, ["Βρεττανός", "noun", "Βρεττᾰνοί", "Βρεττᾰνοῦ", "Βρεττᾰνῷ", "", "an inhabitant of"]) + let v = native_list_append(v, ["ὀφειλέτης", "noun", "ὀφειλέται", "ὀφειλέτου", "ὀφειλέτῃ", "", "a debtor"]) + let v = native_list_append(v, ["Ἀμύνανδρος", "noun", "Ἀμύνανδρος", "Ἀμυνάνδρου", "Ἀμυνάνδῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀλέξαρχος", "noun", "Ἀλέξαρχος", "Ᾰ̓λεξᾰ́ρχου", "Ᾰ̓λεξᾰ́ρχῳ", "", "a male given"]) + let v = native_list_append(v, ["Ἀρσίνοος", "noun", "Ἀρσίνοος", "Ἀρσινόου", "Ἀρσινόῳ", "", "a male given"]) + let v = native_list_append(v, ["νοῦς", "noun", "νοῖ", "νοῦ", "νῷ", "", "contracted form of"]) + let v = native_list_append(v, ["ἄρσις", "noun", "ᾰ̓́ρσεις", "ᾰ̓́ρσεως", "ᾰ̓́ρσει", "", "raising elevation"]) + let v = native_list_append(v, ["πεύκη", "noun", "πεῦκαι", "πεύκης", "πεύκῃ", "", "pine"]) + let v = native_list_append(v, ["πευκέδανος", "noun", "πευκέδᾰνοι", "πευκεδᾰ́νου", "πευκεδᾰ́νῳ", "", "alternative form of"]) + let v = native_list_append(v, ["πελίδνωμα", "noun", "πελιδνώμᾰτᾰ", "πελιδνώμᾰτος", "πελιδνώμᾰτῐ", "", "dark spot"]) + let v = native_list_append(v, ["ἀσπίς", "noun", "ᾰ̓σπῐ́δες", "ᾰ̓σπίδος", "ᾰ̓σπῐ́δῐ", "", "shield"]) + let v = native_list_append(v, ["λέπαδνον", "noun", "λέπᾰδνᾰ", "λεπάδνου", "λεπᾰ́δνῳ", "", "broad leather strap"]) + let v = native_list_append(v, ["σίπυδνος", "noun", "σῐ́πῠδνοι", "σῐπύδνου", "σῐπῠ́δνῳ", "", "a meal-tub"]) + let v = native_list_append(v, ["ἀράχιδνα", "noun", "ᾰ̓ρᾰ́χῐδναι", "ἀρᾰχίδνης", "ᾰ̓ρᾰχῐ́δνῃ", "", "ground pea Lathyrus"]) + let v = native_list_append(v, ["μαχητής", "noun", "μᾰχηταί", "μᾰχητοῦ", "μᾰχητῇ", "", "fighter warrior"]) + let v = native_list_append(v, ["κύμινον", "noun", "κύμῑνᾰ", "κυμίνου", "κυμῑ́νῳ", "", "cumin"]) + let v = native_list_append(v, ["πώς", "noun", "πώς", "ποδός", "", "", "Doric form of"]) + let v = native_list_append(v, ["βρόχος", "noun", "βρόχοι", "βρόχου", "βρόχῳ", "", "noose slip knot"]) + let v = native_list_append(v, ["κόμπος", "noun", "κόμποι", "κόμπου", "κόμπῳ", "", "din clash racket"]) + let v = native_list_append(v, ["κόμβος", "noun", "κόμβοι", "κόμβου", "κόμβῳ", "", "roll band girth"]) + let v = native_list_append(v, ["πλήμνη", "noun", "πλῆμναι", "πλήμνης", "πλήμνῃ", "", "nave of a"]) + let v = native_list_append(v, ["κοίλωμα", "noun", "κοιλώμᾰτᾰ", "κοιλώμᾰτος", "κοιλώμᾰτῐ", "", "a hollow cavity"]) + let v = native_list_append(v, ["πίτα", "noun", "πίτα", "πίτας", "", "", "alternative form of"]) + let v = native_list_append(v, ["διάλειμμα", "noun", "δῐᾰλείμμᾰτᾰ", "δῐᾰλείμμᾰτος", "δῐᾰλείμμᾰτῐ", "", "intervening space gap"]) + let v = native_list_append(v, ["σημαία", "noun", "σημαῖαι", "σημαίᾱς", "σημαίᾳ", "", "alternative form of"]) + let v = native_list_append(v, ["περιγραφή", "noun", "περῐγρᾰφαί", "περῐγρᾰφῆς", "περῐγρᾰφῇ", "", "outline general description"]) + let v = native_list_append(v, ["βαλλίστρα", "noun", "βᾰλλῐ́στραι", "βαλλίστρᾱς", "βᾰλλῐ́στρᾳ", "", "catapult engine of"]) + let v = native_list_append(v, ["κατάστρωμα", "noun", "κᾰτᾰστρώμᾰτᾰ", "κᾰταστρώμᾰτος", "κᾰτᾰστρώμᾰτῐ", "", "deck floor-like covering"]) + let v = native_list_append(v, ["κομμάτιον", "noun", "κομμᾰ́τῐᾰ", "κομμᾰτίου", "κομμᾰτῐ́ῳ", "", "small logs"]) + let v = native_list_append(v, ["Πλειάδες", "noun", "Πλειᾰ́δες", "Πλειάδων", "Πλειᾰ́σῐ", "", "Pleiades star cluster"]) + let v = native_list_append(v, ["κλαγγή", "noun", "κλᾰγγαί", "κλᾰγγῆς", "κλᾰγγῇ", "", "clang clash sharp"]) + let v = native_list_append(v, ["ἄρτημα", "noun", "ἀρτήμᾰτᾰ", "ἀρτήμᾰτος", "ἀρτήμᾰτῐ", "", "earring"]) + let v = native_list_append(v, ["ἐπιτήδειος", "noun", "ἐπῐτήδειοι", "ἐπῐτηδείου", "ἐπῐτηδείῳ", "", "close friend"]) + let v = native_list_append(v, ["πλατεῖα", "noun", "πλᾰτεῖαι", "πλᾰτείᾱς", "πλᾰτείᾳ", "", "street usually of"]) + let v = native_list_append(v, ["κουρά", "noun", "κουραί", "κουρᾶς", "κουρᾷ", "", "cropping of the"]) + let v = native_list_append(v, ["Μωσῆς", "noun", "Μωσῆς", "Μωσέως", "Μωσεῖ", "", "alternative form of"]) + let v = native_list_append(v, ["Τίγρις", "noun", "Τίγρις", "Τῐ́γρῐδος", "Τῐ́γρῐδῐ", "", "alternative spelling of"]) + let v = native_list_append(v, ["βλαστός", "noun", "βλᾰστοί", "βλᾰστοῦ", "βλᾰστῷ", "", "sprout shoot bud"]) + let v = native_list_append(v, ["φακός", "noun", "φᾰκοί", "φᾰκοῦ", "φᾰκῷ", "", "lentil Lens culinaris"]) + let v = native_list_append(v, ["λογία", "noun", "λογίαι", "λογίᾱς", "λογίᾳ", "", "Koine spelling of"]) + let v = native_list_append(v, ["καταιγίδα", "noun", "καταιγίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["σύμπτωμα", "noun", "σῠμπτώμᾰτᾰ", "σῠμπτώμᾰτος", "σῠμπτώμᾰτῐ", "", "anything that has"]) + let v = native_list_append(v, ["λαλιά", "noun", "λᾰλῐαί", "λᾰλῐᾶς", "λᾰλῐᾷ", "", "talking talk chat"]) + let v = native_list_append(v, ["φιάλη", "noun", "φιάλαι", "φιάλης", "φιάλῃ", "", "round and shallow"]) + let v = native_list_append(v, ["ὄργια", "noun", "ὄργῐᾰ", "ὀργῐ́ων", "ὀργῐ́οις", "", "secret rites secret"]) + let v = native_list_append(v, ["στέμμα", "noun", "στέμμᾰτᾰ", "στέμμᾰτος", "στέμμᾰτῐ", "", "wreath garland chaplet"]) + let v = native_list_append(v, ["συσκευή", "noun", "σῠσκευαί", "συσκευῆς", "σῠσκευῇ", "", "intrigue plot"]) + let v = native_list_append(v, ["τάγμα", "noun", "τᾰ́γμᾰτᾰ", "τάγμᾰτος", "τᾰ́γμᾰτῐ", "", "command order"]) + let v = native_list_append(v, ["ψύλλος", "noun", "ψῠ́λλοι", "ψύλλου", "ψῠ́λλῳ", "", "synonym of ψύλλα"]) + let v = native_list_append(v, ["βωμός", "noun", "βωμοί", "βωμοῦ", "βωμῷ", "", "raised platform pedestal"]) + let v = native_list_append(v, ["τάφρος", "noun", "τᾰ́φροι", "τάφρου", "τᾰ́φρῳ", "", "ditch trench moat"]) + let v = native_list_append(v, ["σκαπάνη", "noun", "σκᾰπᾰ́ναι", "σκᾰπᾰ́νης", "σκᾰπᾰ́νῃ", "", "spade mattock digging"]) + let v = native_list_append(v, ["θάλαμος", "noun", "θᾰ́λᾰμοι", "θᾰλᾰ́μου", "θᾰλᾰ́μῳ", "", "an inner chamber"]) + let v = native_list_append(v, ["γίγαντας", "noun", "γίγαντας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πένθος", "noun", "πένθη", "πένθους", "πένθει", "", "grief sorrow"]) + let v = native_list_append(v, ["Περσεύς", "noun", "Περσεύς", "Περσέως", "Περσεῖ", "", "Perseus a mythological"]) + let v = native_list_append(v, ["φολίδα", "noun", "φολίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Κασσιόπη", "noun", "Κασσιόπη", "Κασσῐόπης", "Κᾰσσῐόπῃ", "", "alternative form of"]) + let v = native_list_append(v, ["βολβός", "noun", "βολβοί", "βολβοῦ", "βολβῷ", "", "bulb of various"]) + let v = native_list_append(v, ["γεωμετρία", "noun", "γεωμετρῐ́αι", "γεωμετρῐ́ᾱς", "γεωμετρῐ́ᾳ", "", "geometry"]) + let v = native_list_append(v, ["κατασκευή", "noun", "κᾰτᾰσκευαί", "κᾰτᾰσκευῆς", "κᾰτᾰσκευῇ", "", "preparation construction fitting"]) + let v = native_list_append(v, ["γλαύκωμα", "noun", "γλαυκώμᾰτᾰ", "γλαυκώμᾰτος", "γλαυκώμᾰτῐ", "", "cataract opacity of"]) + let v = native_list_append(v, ["πικραλίδα", "noun", "πικραλίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["πικρίς", "noun", "πικρῐ́δες", "πικρῐ́δος", "πικρῐ́δῐ", "", "bristly oxtongue Helminthotheca"]) + let v = native_list_append(v, ["ὑπηρέτης", "noun", "ὑπηρέται", "ὑπηρέτου", "ὑπηρέτῃ", "", "An Ancient Greek"]) + let v = native_list_append(v, ["βόθρος", "noun", "βόθροι", "βόθρου", "βόθρῳ", "", "hole trench or"]) + let v = native_list_append(v, ["λάτρις", "noun", "αἱ λᾰ́τρῐες", "λᾰ́τρῐος", "τῇ λᾰ́τρῑ", "", "a hired servant"]) + let v = native_list_append(v, ["βάσεις", "noun", "βάσεις", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ψίχαι", "noun", "ψίχαι", "", "", "", "animate alternative plural"]) + let v = native_list_append(v, ["κιχώριον", "noun", "κιχώριον", "κιχωρίου", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["μοναρχία", "noun", "μονᾰρχῐ́αι", "μονᾰρχῐ́ᾱς", "μονᾰρχῐ́ᾳ", "", "monarchy"]) + let v = native_list_append(v, ["μονάρχης", "noun", "μονᾰ́ρχαι", "μονᾰ́ρχου", "μονᾰ́ρχῃ", "", "alternative form of"]) + let v = native_list_append(v, ["μοχλός", "noun", "μοχλοί", "μοχλοῦ", "μοχλῷ", "", "lever bar crowbar"]) + let v = native_list_append(v, ["χρυσόμαλλον δέρας", "noun", "χρυσόμαλλον δέρας", "", "", "", "Golden Fleece"]) + let v = native_list_append(v, ["πολιτεία", "noun", "πολῑτεῖαι", "πολιτείᾱς", "πολῑτείᾳ", "", "the relation in"]) + let v = native_list_append(v, ["χήρα", "noun", "χῆραι", "χήρᾱς", "χήρᾳ", "", "widow"]) + let v = native_list_append(v, ["φόνος", "noun", "φόνοι", "φόνου", "φόνῳ", "", "murder slaughter"]) + let v = native_list_append(v, ["ἦθος", "noun", "ἤθη", "ἤθους", "ἤθει", "", "the usual or"]) + let v = native_list_append(v, ["μᾶζα", "noun", "μᾶζαι", "μᾱ́ζης", "μᾱ́ζῃ", "", "barley-bread or cake"]) + let v = native_list_append(v, ["τρόπος", "noun", "τρόποι", "τρόπου", "τρόπῳ", "", "a turn way"]) + let v = native_list_append(v, ["χορεία", "noun", "χορεῖαι", "χορείᾱς", "χορείᾳ", "", "dance especially choral"]) + let v = native_list_append(v, ["ῥόδον", "noun", "ῥόδᾰ", "ῥόδου", "ῥόδῳ", "", "rose usually Rosa"]) + let v = native_list_append(v, ["θήραμα", "noun", "θηρᾱ́μᾰτᾰ", "θηρᾱ́μᾰτος", "θηρᾱ́μᾰτῐ", "", "prey spoil game"]) + let v = native_list_append(v, ["ἐμπειρία", "noun", "ἐμπειρίαι", "ἐμπειρίᾱς", "ἐμπειρίᾳ", "", "experience mere experience"]) + let v = native_list_append(v, ["μετριότητα", "noun", "μετριότητα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["θεραπεία", "noun", "θερᾰπεῖαι", "θερᾰπείᾱς", "θερᾰπείᾳ", "", "a waiting on"]) + let v = native_list_append(v, ["κυψέλη", "noun", "κῠψέλαι", "κῠψέλης", "κῠψέλῃ", "", "chest box any"]) + let v = native_list_append(v, ["κύστις", "noun", "κῠ́στεις", "κύστεως", "κῠ́στει", "", "bladder"]) + let v = native_list_append(v, ["πηλός", "noun", "αἱ πηλοί", "πηλοῦ", "τῇ πηλῷ", "", "clay earth used"]) + let v = native_list_append(v, ["μέθη", "noun", "μέθαι", "μέθης", "μέθῃ", "", "strong drink heavy"]) + let v = native_list_append(v, ["διατριβή", "noun", "δῐᾰτρῐβαί", "δῐᾰτρῐβῆς", "δῐᾰτρῐβῇ", "", "a way of"]) + let v = native_list_append(v, ["πραγματεία", "noun", "πρᾱγμᾰτεῖαι", "πρᾱγμᾰτείᾱς", "πρᾱγμᾰτείᾳ", "", "prosecution of business"]) + let v = native_list_append(v, ["ἀτμός", "noun", "ἀτμοί", "ἀτμοῦ", "ἀτμῷ", "", "vapor steam smoke"]) + let v = native_list_append(v, ["τρίαινα", "noun", "τρῐ́αιναι", "τρῐαίνης", "τρῐαίνῃ", "", "trident the badge"]) + let v = native_list_append(v, ["πέλεκυς", "noun", "πελέκεις", "πελέκεως", "πελέκει", "", "two-edged axe for"]) + let v = native_list_append(v, ["συλλαβή", "noun", "σῠλλᾰβαί", "σῠλλᾰβῆς", "σῠλλᾰβῇ", "", "conception pregnancy"]) + let v = native_list_append(v, ["σφαγή", "noun", "σφᾰγαί", "σφᾰγῆς", "σφᾰγῇ", "", "slaughter butchery"]) + let v = native_list_append(v, ["παράγραφος", "noun", "παράγραφος", "παραγράφου", "", "", "short stroke in"]) + let v = native_list_append(v, ["τιμόνι", "noun", "τιμόνι", "", "", "", "rudder tiller helm"]) + let v = native_list_append(v, ["θεωρός", "noun", "θεωροί", "θεωροῦ", "θεωρῷ", "", "spectator"]) + let v = native_list_append(v, ["ἀρχός", "noun", "ᾰ̓ρχοί", "ᾰ̓ρχοῦ", "ᾰ̓ρχῷ", "", "ruler leader prince"]) + let v = native_list_append(v, ["ἄρχων", "noun", "ᾰ̓́ρχοντες", "ᾰ̓́ρχοντος", "ᾰ̓́ρχοντῐ", "", "ruler"]) + let v = native_list_append(v, ["λέξις", "noun", "λέξεις", "λέξεως", "λέξει", "", "a saying speech"]) + let v = native_list_append(v, ["φάγος", "noun", "φᾰ́γοι", "φᾰ́γου", "φᾰ́γῳ", "", "glutton"]) + let v = native_list_append(v, ["ξύλον", "noun", "ξῠ́λᾰ", "ξῠ́λου", "ξῠ́λῳ", "", "cut wood timber"]) + let v = native_list_append(v, ["πεῖρα", "noun", "πεῖραι", "πείρᾱς", "πείρᾳ", "", "trial experiment attempt"]) + let v = native_list_append(v, ["ἀπάτη", "noun", "ᾰ̓πᾰ́ται", "ᾰ̓πᾰ́της", "ᾰ̓πᾰ́τῃ", "", "deceit fraud"]) + let v = native_list_append(v, ["βιογραφία", "noun", "βιογραφίαι", "βιογραφίᾱς", "βιογραφίᾳ", "", "biography"]) + let v = native_list_append(v, ["φλέψ", "noun", "φλέβες", "φλεβός", "φλεβῐ́", "", "vein"]) + let v = native_list_append(v, ["θέα", "noun", "θέαι", "θέᾱς", "θέᾳ", "", "view sight"]) + let v = native_list_append(v, ["σειρά", "noun", "σειραί", "σειρᾶς", "σειρᾷ", "", "cord rope"]) + let v = native_list_append(v, ["σῆμα", "noun", "σήμᾰτᾰ", "σήμᾰτος", "σήμᾰτῐ", "", "mark sign token"]) + let v = native_list_append(v, ["σημεῖον", "noun", "σημεῖᾰ", "σημείου", "σημείῳ", "", "a mark a"]) + let v = native_list_append(v, ["βουβών", "noun", "βουβῶνες", "βουβῶνος", "βουβῶνῐ", "", "groin abdomen"]) + let v = native_list_append(v, ["φάρμακον", "noun", "φᾰ́ρμᾰκᾰ", "φᾰρμᾰ́κου", "φᾰρμᾰ́κῳ", "", "drug whether healing"]) + let v = native_list_append(v, ["φαρμακεία", "noun", "φαρμακεία", "φᾰρμᾰκείᾱς", "", "", "pharmacy the use"]) + let v = native_list_append(v, ["σῆψις", "noun", "σήψεις", "σήψεως", "σήψει", "", "putrefaction sepsis"]) + let v = native_list_append(v, ["κοσμοκράτωρ", "noun", "κοσμοκρᾰ́τορες", "κοσμοκράτορος", "κοσμοκρᾰ́τορῐ", "", "lord of the"]) + let v = native_list_append(v, ["τρίγλη", "noun", "τρῖγλαι", "τρῑ́γλης", "τρῑ́γλῃ", "", "red mullet Mullus"]) + let v = native_list_append(v, ["χρῶμα", "noun", "χρώμᾰτᾰ", "χρώμᾰτος", "χρώμᾰτῐ", "", "skin esp. the"]) + let v = native_list_append(v, ["τυρός", "noun", "τῡροί", "τῡροῦ", "τῡρῷ", "", "cheese"]) + let v = native_list_append(v, ["σῦκον", "noun", "σῦκᾰ", "σῡ́κου", "σῡ́κῳ", "", "fig the fruit"]) + let v = native_list_append(v, ["ἀποθήκη", "noun", "ᾰ̓ποθῆκαι", "ᾰ̓ποθήκης", "ᾰ̓ποθήκῃ", "", "repository storehouse warehouse"]) + let v = native_list_append(v, ["κόφινος", "noun", "κόφῐνοι", "κοφῐ́νου", "κοφῐ́νῳ", "", "basket"]) + let v = native_list_append(v, ["χερσόνησος", "noun", "χερσόνησοι", "χερσονήσου", "χερσονήσῳ", "", "peninsula"]) + let v = native_list_append(v, ["θέρμη", "noun", "θέρμαι", "θέρμης", "θέρμῃ", "", "heat"]) + let v = native_list_append(v, ["πατριώτης", "noun", "πᾰτρῐῶται", "πᾰτρῐώτου", "πᾰτρῐώτῃ", "", "one of the"]) + let v = native_list_append(v, ["ἐπιστήμη", "noun", "ἐπιστῆμαι", "ἐπιστήμης", "ἐπιστήμῃ", "", "science"]) + let v = native_list_append(v, ["φρόνησις", "noun", "φρονήσεις", "φρονήσεως", "φρονήσει", "", "prudence practical wisdom"]) + let v = native_list_append(v, ["πάππος", "noun", "πᾰ́πποι", "πᾰ́ππου", "πᾰ́ππῳ", "", "grandfather both maternal"]) + let v = native_list_append(v, ["γεννήτορας", "noun", "γεννήτορας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πρόγονος", "noun", "πρόγονοι", "προγόνου", "προγόνῳ", "", "forefather ancestor"]) + let v = native_list_append(v, ["βία", "noun", "βῐ́αι", "βῐ́ᾱς", "βῐ́ᾳ", "", "bodily strength force"]) + let v = native_list_append(v, ["χύτρα", "noun", "χῠ́τραι", "χύτρᾱς", "χῠ́τρᾳ", "", "an earthen pot"]) + let v = native_list_append(v, ["κλίμα", "noun", "κλῐ́μᾰτᾰ", "κλῐ́μᾰτος", "κλῐ́μᾰτῐ", "", "a slope incline"]) + let v = native_list_append(v, ["ποιότης", "noun", "ποιότητες", "ποιότητος", "ποιότητῐ", "", "quality attribute"]) + let v = native_list_append(v, ["κληρικός", "noun", "κληρῐκοί", "κληρῐκοῦ", "κληρῐκῷ", "", "clergyman"]) + let v = native_list_append(v, ["κλῆρος", "noun", "κλῆροι", "κλήρου", "κλήρῳ", "", "a lot"]) + let v = native_list_append(v, ["ἀξίωμα", "noun", "ἀξῐώμᾰτᾰ", "ἀξῐώμᾰτος", "ἀξῐώμᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["λοβός", "noun", "λοβοί", "λοβοῦ", "λοβῷ", "", "lobe of the"]) + let v = native_list_append(v, ["τέμενος", "noun", "τεμένη", "τεμένους", "τεμένει", "", "a piece of"]) + let v = native_list_append(v, ["σκάφος", "noun", "σκᾰ́φεᾰ", "σκᾰ́φεος", "σκᾰ́φεῐ̈", "", "hull of a"]) + let v = native_list_append(v, ["γάγγραινα", "noun", "γάγγραιναι", "γαγγραίνης", "γαγγραίνῃ", "", "gangrene"]) + let v = native_list_append(v, ["μάρσιππος", "noun", "μᾰ́ρσῐπποι", "μᾰρσῐ́ππου", "μᾰρσῐ́ππῳ", "", "bag pouch"]) + let v = native_list_append(v, ["πομπή", "noun", "πομπαί", "πομπῆς", "πομπῇ", "", "an escort"]) + let v = native_list_append(v, ["ὄψις", "noun", "ὄψεις", "ὄψεως", "ὄψει", "", "view"]) + let v = native_list_append(v, ["τροπή", "noun", "τροπαί", "τροπῆς", "τροπῇ", "", "a turning"]) + let v = native_list_append(v, ["ἐντροπία", "noun", "ἐντροπῐ́αι", "ἐντροπῐ́ᾱς", "ἐντροπῐ́ᾳ", "", "a turning towards"]) + let v = native_list_append(v, ["ἐπαγωγή", "noun", "ἐπᾰγωγαί", "ἐπᾰγωγῆς", "ἐπᾰγωγῇ", "", "leading in bringing"]) + let v = native_list_append(v, ["βιαστής", "noun", "βιασταί", "βιαστοῦ", "βιαστῇ", "", "violent person"]) + let v = native_list_append(v, ["κατοικία", "noun", "κᾰτοικῐ́αι", "κᾰτοικῐ́ᾱς", "κᾰτοικῐ́ᾳ", "", "habitation"]) + let v = native_list_append(v, ["δέος", "noun", "δέη", "δέους", "δέει", "", "fear alarm"]) + let v = native_list_append(v, ["δεῖγμα", "noun", "δείγμᾰτᾰ", "δείγμᾰτος", "δείγμᾰτῐ", "", "specimen sample"]) + let v = native_list_append(v, ["χρέος", "noun", "χρέᾰ", "χρέους", "χρέει", "", "want need"]) + let v = native_list_append(v, ["πρίσμα", "noun", "πρῐ́σμᾰτᾰ", "πρίσμᾰτος", "πρῐ́σμᾰτῐ", "", "anything sawn sawdust"]) + let v = native_list_append(v, ["προσοχή", "noun", "προσοχαί", "προσοχῆς", "προσοχῇ", "", "attention"]) + let v = native_list_append(v, ["κέρδος", "noun", "κέρδη", "κέρδους", "κέρδει", "", "gain profit"]) + let v = native_list_append(v, ["φάλαγγα", "noun", "φάλαγγα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["γραφίδα", "noun", "γραφίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["δακτύλιος", "noun", "δᾰκτῠ́λῐοι", "δᾰκτῠλῐ́ου", "δᾰκτῠλῐ́ῳ", "", "ring finger ring"]) + let v = native_list_append(v, ["διάγραμμα", "noun", "διαγράμμᾰτᾰ", "διαγράμματος", "διαγράμμᾰτῐ", "", "That which is"]) + let v = native_list_append(v, ["πλάκα", "noun", "πλάκα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["λύπη", "noun", "λῦπαι", "λῡ́πης", "λῡ́πῃ", "", "grief sadness"]) + let v = native_list_append(v, ["θαυμασμός", "noun", "θαυμᾰσμοί", "θαυμᾰσμοῦ", "θαυμᾰσμῷ", "", "a wondering"]) + let v = native_list_append(v, ["συγκοπή", "noun", "σῠγκοπαί", "σῠγκοπῆς", "σῠγκοπῇ", "", "a cutting up"]) + let v = native_list_append(v, ["παροξυσμός", "noun", "πᾰροξῠσμοί", "πᾰροξῠσμοῦ", "πᾰροξῠσμῷ", "", "irritation exasperation"]) + let v = native_list_append(v, ["σπασμός", "noun", "σπασμοί", "σπασμοῦ", "σπασμῷ", "", "synonym of σπάσμα"]) + let v = native_list_append(v, ["πρᾶγμα", "noun", "πρᾱ́γμᾰτᾰ", "πρᾱ́γμᾰτος", "πρᾱ́γμᾰτῐ", "", "deed act fact"]) + let v = native_list_append(v, ["παράνοια", "noun", "πᾰρᾰ́νοιαι", "πᾰρᾰνοίᾱς", "πᾰρᾰνοίᾳ", "", "derangement madness"]) + let v = native_list_append(v, ["μύστης", "noun", "μῠ́σται", "μῠ́στου", "μῠ́στῃ", "", "one who has"]) + let v = native_list_append(v, ["θεραπευτής", "noun", "θερᾰπευταί", "θερᾰπευτοῦ", "θερᾰπευτῇ", "", "One who waits"]) + let v = native_list_append(v, ["ἄχος", "noun", "ᾰ̓́χη", "ᾰ̓́χεος", "ᾰ̓́χει", "", "distress"]) + let v = native_list_append(v, ["ἔσχατον", "noun", "ἔσχᾰτᾰ", "ἐσχᾰ́του", "ἐσχᾰ́τῳ", "", "the end"]) + let v = native_list_append(v, ["ἔγκατα", "noun", "ἔγκᾰτᾰ", "ἐγκᾰ́των", "ἔγκᾰσῐ", "", "bowels entrails intestines"]) + let v = native_list_append(v, ["θεῖος", "noun", "θεῖοι", "θείου", "θείῳ", "", "the brother of"]) + let v = native_list_append(v, ["λαβή", "noun", "λᾰβαί", "λᾰβῆς", "λᾰβῇ", "", "handle haft"]) + let v = native_list_append(v, ["δίσκος", "noun", "δῐ́σκοι", "δίσκου", "δῐ́σκῳ", "", "quoit disc discus"]) + let v = native_list_append(v, ["βιβλιογραφία", "noun", "βιβλιογραφία", "βῐβλῐογρᾰφῐ́ᾱς", "βῐβλῐογρᾰφῐ́ᾳ", "", "writing of books"]) + let v = native_list_append(v, ["κεραυνός", "noun", "κεραυνοί", "κεραυνοῦ", "κεραυνῷ", "", "thunderbolt lightning strike"]) + let v = native_list_append(v, ["φυσιολογία", "noun", "φυσιολογία", "φῠσῐολογίᾱς", "φῠσῐολογῐ́ᾳ", "", "inquiry into natural"]) + let v = native_list_append(v, ["νεκρομαντεία", "noun", "νεκρομᾰντεῖαι", "νεκρομᾰντείᾱς", "νεκρομᾰντείᾳ", "", "necromancy"]) + let v = native_list_append(v, ["μέθοδος", "noun", "μέθοδοι", "μεθόδου", "μεθόδῳ", "", "following after pursuit"]) + let v = native_list_append(v, ["δόγμα", "noun", "δόγμᾰτᾰ", "δόγμᾰτος", "δόγμᾰτῐ", "", "opinion belief"]) + let v = native_list_append(v, ["σκοπιά", "noun", "σκοπῐαί", "σκοπῐᾶς", "σκοπῐᾷ", "", "lookout place"]) + let v = native_list_append(v, ["συγγραφέας", "noun", "συγγραφέας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["σύμπαν", "noun", "σῠ́μπᾰντᾰ", "σῠ́μπᾰντος", "σῠ́μπᾰντῐ", "", "universe"]) + let v = native_list_append(v, ["σύρμα", "noun", "σῠ́ρμᾰτᾰ", "σύρμᾰτος", "σῠ́ρμᾰτῐ", "", "Anything trailed or"]) + let v = native_list_append(v, ["παλμός", "noun", "πᾰλμοί", "παλμοῦ", "πᾰλμῷ", "", "quivering motion pulsation"]) + let v = native_list_append(v, ["χυλός", "noun", "χῡλοί", "χῡλοῦ", "χῡλῷ", "", "juice"]) + let v = native_list_append(v, ["καλάμη", "noun", "κᾰλᾰ́μαι", "κᾰλᾰ́μης", "κᾰλᾰ́μῃ", "", "reed stalk"]) + let v = native_list_append(v, ["λύσσα", "noun", "λῠ́σσαι", "λῠ́σσης", "λῠ́σσῃ", "", "rage fury"]) + let v = native_list_append(v, ["γομφίος", "noun", "γομφῐ́οι", "γομφίου", "γομφῐ́ῳ", "", "molar back tooth"]) + let v = native_list_append(v, ["κυνόδοντας", "noun", "κυνόδοντας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["μετεωρολογία", "noun", "μετεωρολογία", "μετεωρολογίᾱς", "μετεωρολογῐ́ᾳ", "", "treatise on celestial"]) + let v = native_list_append(v, ["νίκην", "noun", "νίκην", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["νίκῃ", "noun", "νίκῃ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["νίκας", "noun", "νίκας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["νικῶν", "noun", "νικῶν", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["διάρκεια", "noun", "δῐᾰ́ρκειαι", "δῐαρκείᾱς", "δῐᾰρκείᾳ", "", "sufficiency"]) + let v = native_list_append(v, ["κλίμακα", "noun", "κλίμακα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["περόνη", "noun", "περόναι", "περόνης", "περόνῃ", "", "pin or tongue"]) + let v = native_list_append(v, ["πλεονεξία", "noun", "πλεονεξῐ́αι", "πλεονεξῐ́ᾱς", "πλεονεξῐ́ᾳ", "", "greediness greed avarice"]) + let v = native_list_append(v, ["κάψα", "noun", "κᾰ́ψαι", "κάψης", "κᾰ́ψῃ", "", "basket case"]) + let v = native_list_append(v, ["στραβισμός", "noun", "στρᾰβῐσμοί", "στρᾰβῐσμοῦ", "στρᾰβῐσμῷ", "", "a squinting"]) + let v = native_list_append(v, ["σύνταγμα", "noun", "σῠντᾰ́γμᾰτᾰ", "συντάγμᾰτος", "σῠντᾰ́γμᾰτῐ", "", "a body of"]) + let v = native_list_append(v, ["γεννήτρια", "noun", "γεννήτριαι", "γεννητρίᾱς", "γεννητρίᾳ", "", "synonym of γεννήτειρᾰ"]) + let v = native_list_append(v, ["θεσμός", "noun", "θεσμοί", "θεσμοῦ", "θεσμῷ", "", "that which is"]) + let v = native_list_append(v, ["καμάρα", "noun", "κᾰμᾰ́ραι", "κᾰμᾰ́ρᾱς", "κᾰμᾰ́ρᾳ", "", "anything with an"]) + let v = native_list_append(v, ["ἱπποκρατία", "noun", "ῐ̔πποκρᾰτῐ́αι", "ῐ̔πποκρᾰτῐ́ᾱς", "ῐ̔πποκρᾰτῐ́ᾳ", "", "victory in a"]) + let v = native_list_append(v, ["χηλή", "noun", "χηλαί", "χηλῆς", "χηλῇ", "", "hoof"]) + let v = native_list_append(v, ["ἀνάγκη", "noun", "ᾰ̓νᾰ́γκαι", "ᾰ̓νᾰ́γκης", "ᾰ̓νᾰ́γκῃ", "", "force"]) + let v = native_list_append(v, ["μῖσος", "noun", "μῑ́ση", "μῑ́σους", "μῑ́σει", "", "hatred hate"]) + let v = native_list_append(v, ["ἴχνος", "noun", "ῐ̓́χνη", "ῐ̓́χνους", "ῐ̓́χνει", "", "track footstep footprint"]) + let v = native_list_append(v, ["ὕβρις", "noun", "ῠ̔́βρεις", "ῠ̔́βρεως", "ῠ̔́βρει", "", "pride"]) + let v = native_list_append(v, ["μῖμος", "noun", "μῖμοι", "μῑ́μου", "μῑ́μῳ", "", "mime actor"]) + let v = native_list_append(v, ["ῥεῦμα", "noun", "ῥεύμᾰτᾰ", "ῥεύμᾰτος", "ῥεύμᾰτῐ", "", "stream flow current"]) + let v = native_list_append(v, ["ἐποχή", "noun", "ἐποχαί", "ἐποχῆς", "ἐποχῇ", "", "check cessation"]) + let v = native_list_append(v, ["φάος", "noun", "φᾰ́εᾰ", "φᾰ́εος", "φᾰ́εῐ̈", "", "light especially daylight"]) + let v = native_list_append(v, ["πτυχή", "noun", "πτῠχαί", "πτῠχῆς", "πτῠχῇ", "", "fold"]) + let v = native_list_append(v, ["στάσις", "noun", "στᾰ́σεις", "στᾰ́σεως", "στᾰ́σει", "", "a standing placing"]) + let v = native_list_append(v, ["παρῳδία", "noun", "πᾰρῳδῐ́αι", "πᾰρῳδῐ́ᾱς", "πᾰρῳδῐ́ᾳ", "", "parody"]) + let v = native_list_append(v, ["εὐφορία", "noun", "εὐφορῐ́αι", "εὐφορῐ́ᾱς", "εὐφορῐ́ᾳ", "", "power of bearing/enduring"]) + let v = native_list_append(v, ["μηχάνημα", "noun", "μηχᾰνήμᾰτᾰ", "μηχᾰνήμᾰτος", "μηχᾰνήμᾰτῐ", "", "machine mechanical device"]) + let v = native_list_append(v, ["κλάδος", "noun", "κλᾰ́δοι", "κλᾰ́δου", "κλᾰ́δῳ", "", "young slip or"]) + let v = native_list_append(v, ["κλάσμα", "noun", "κλᾰ́σμᾰτᾰ", "κλᾰ́σμᾰτος", "κλᾰ́σμᾰτῐ", "", "A fragment a"]) + let v = native_list_append(v, ["πρωταγωνιστής", "noun", "πρωτᾰγωνῐσταί", "πρωτᾰγωνῐστοῦ", "πρωτᾰγωνῐστῇ", "", "lead actor actor"]) + let v = native_list_append(v, ["καταλύτης", "noun", "κᾰτᾰλύται", "κᾰτᾰλύτου", "κᾰτᾰλύτῃ", "", "lodger"]) + let v = native_list_append(v, ["πίσσα", "noun", "πῐ́σσαι", "πίσσης", "πῐ́σσῃ", "", "pitch"]) + let v = native_list_append(v, ["ποιήτρια", "noun", "ποιήτρῐαι", "ποιητρῑ́ᾱς", "ποιητρῐ́ᾳ", "", "poetess"]) + let v = native_list_append(v, ["θρόμβος", "noun", "θρόμβοι", "θρόμβου", "θρόμβῳ", "", "piece lump clump"]) + let v = native_list_append(v, ["γοητεία", "noun", "γοητεῖαι", "γοητείᾱς", "γοητείᾳ", "", "witchcraft"]) + let v = native_list_append(v, ["νομοθέτης", "noun", "νομοθέται", "νομοθέτου", "νομοθέτῃ", "", "legislator lawmaker lawgiver"]) + let v = native_list_append(v, ["πονηροί", "noun", "πονηροί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πονηρά", "noun", "πονηρά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πονηρούς", "noun", "πονηρούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πονηρέ", "noun", "πονηρέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["πέρας", "noun", "πέρᾰτᾰ", "πέρᾰτος", "πέρᾰτῐ", "", "end limit boundary"]) + let v = native_list_append(v, ["λέμβος", "noun", "λέμβοι", "λέμβου", "λέμβῳ", "", "dinghy cockboat"]) + let v = native_list_append(v, ["Θεοδώρα", "noun", "Θεοδώρα", "Θεοδώρᾱς", "Θεοδώρᾳ", "", "a female given"]) + let v = native_list_append(v, ["ἐργάτης", "noun", "ἐργᾰ́ται", "ἐργᾰ́του", "ἐργᾰ́τῃ", "", "worker workman labourer"]) + let v = native_list_append(v, ["χῶρος", "noun", "χῶροι", "χώρου", "χώρῳ", "", "space room place"]) + let v = native_list_append(v, ["λειτουργία", "noun", "λειτουργῐ́αι", "λειτουργῐ́ᾱς", "λειτουργῐ́ᾳ", "", "public service"]) + let v = native_list_append(v, ["ψῆφος", "noun", "ψῆφοι", "ψήφου", "ψήφῳ", "", "a pebble"]) + let v = native_list_append(v, ["διάρροια", "noun", "δῐᾰ́ρροιαι", "δῐᾰρροίᾱς", "δῐᾰρροίᾳ", "", "flowing through diarrhoea"]) + let v = native_list_append(v, ["δίγαμμα", "noun", "δίγαμμα", "", "", "", "digamma the name"]) + let v = native_list_append(v, ["τελετή", "noun", "τελεταί", "τελετῆς", "τελετῇ", "", "rite esp. initiation"]) + let v = native_list_append(v, ["σταγόνα", "noun", "σταγόνα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ἄμυλον", "noun", "ἄμῠλᾰ", "ἀμύλου", "ἀμῠ́λῳ", "", "starch"]) + let v = native_list_append(v, ["ζυγός", "noun", "ζῠγοί", "ζῠγοῦ", "ζῠγῷ", "", "alternative form of"]) + let v = native_list_append(v, ["πολιτικός", "noun", "πολῑτῐκοί", "πολῑτῐκοῦ", "πολῑτῐκῷ", "", "a statesman or"]) + let v = native_list_append(v, ["γυρῖνος", "noun", "γῠρῖνοι", "γῠρῑ́νου", "γῠρῑ́νῳ", "", "tadpole"]) + let v = native_list_append(v, ["τεχνολογία", "noun", "τεχνολογῐ́αι", "τεχνολογῐ́ᾱς", "τεχνολογῐ́ᾳ", "", "systematic treatment of"]) + let v = native_list_append(v, ["σφαῖρα", "noun", "σφαῖραι", "σφαίρᾱς", "σφαίρᾳ", "", "ball globe sphere"]) + let v = native_list_append(v, ["πληγή", "noun", "πληγαί", "πληγῆς", "πληγῇ", "", "stroke from a"]) + let v = native_list_append(v, ["παράλυσις", "noun", "πᾰρᾰλῠ́σεις", "παραλύσεως", "πᾰρᾰλῠ́σει", "", "paralysis"]) + let v = native_list_append(v, ["κυρία", "noun", "κῡρῐ́αι", "κῡρῐ́ᾱς", "κῡρῐ́ᾳ", "", "authority power"]) + let v = native_list_append(v, ["μαστίχη", "noun", "μαστίχαι", "μαστίχης", "μαστίχῃ", "", "mastic"]) + let v = native_list_append(v, ["μοναχός", "noun", "μονᾰχοί", "μονᾰχοῦ", "μονᾰχῷ", "", "monk monastic"]) + let v = native_list_append(v, ["βλέννα", "noun", "βλένναι", "βλέννης", "βλέννῃ", "", "mucus a slippery"]) + let v = native_list_append(v, ["θάμνος", "noun", "θᾰ́μνοι", "θᾰ́μνου", "θᾰ́μνῳ", "", "bush shrub"]) + let v = native_list_append(v, ["κόκκυξ", "noun", "κόκκῡγες", "κόκκῡγος", "κόκκῡγῐ", "", "cuckoo Cuculus canorus"]) + let v = native_list_append(v, ["συναφή", "noun", "σῠνᾰφαί", "σῠνᾰφῆς", "σῠνᾰφῇ", "", "connection union junction"]) + let v = native_list_append(v, ["δίλημμα", "noun", "δῐλήμμᾰτᾰ", "δῐλήμμᾰτος", "δῐλήμμᾰτῐ", "", "a conclusion from"]) + let v = native_list_append(v, ["λῆμμα", "noun", "λήμμᾰτᾰ", "λήμμᾰτος", "λήμμᾰτῐ", "", "gain income"]) + let v = native_list_append(v, ["Πλειάδα", "noun", "Πλειάδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["κόρακα", "noun", "κόρακα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["κόρακες", "noun", "κόρακες", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["κοράκων", "noun", "κοράκων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἐγκέφαλος", "noun", "ἐγκέφᾰλοι", "ἐγκεφᾰ́λου", "ἐγκεφᾰ́λῳ", "", "brain"]) + let v = native_list_append(v, ["δρυοκολάπτης", "noun", "δρῠοκολᾰ́πται", "δρῠοκολᾰ́πτου", "δρῠοκολᾰ́πτῃ", "", "woodpecker bird of"]) + let v = native_list_append(v, ["μαγεία", "noun", "μᾰγεῖαι", "μᾰγείᾱς", "μᾰγείᾳ", "", "theology of the"]) + let v = native_list_append(v, ["σανίδα", "noun", "σανίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["πολύπους", "noun", "πολύποδες", "πολύποδος", "πολύποδῐ", "", "octopus polypus"]) + let v = native_list_append(v, ["γλύπτης", "noun", "γλῠ́πται", "γλῠ́πτου", "γλῠ́πτῃ", "", "a carver a"]) + let v = native_list_append(v, ["ἀτοπία", "noun", "ἀτοπία", "", "", "", "extraordinariness uncommonness"]) + let v = native_list_append(v, ["φρουρώ", "noun", "φρουρώ", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["δίοδος", "noun", "δῐ́οδοι", "δῐόδου", "δῐόδῳ", "", "passage way through"]) + let v = native_list_append(v, ["Ἰερουσαλήμ", "noun", "Ῐ̓ερουσᾱλήμ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["μαχαίρα", "noun", "μαχαίρα", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["κοινών", "noun", "κοινῶνες", "κοινῶνος", "κοινῶνῐ", "", "companion partner fellow"]) + let v = native_list_append(v, ["συνταγματάρχης", "noun", "σῠντᾰγμᾰτᾰ́ρχαι", "σῠντᾰγμᾰτᾰ́ρχου", "σῠντᾰγμᾰτᾰ́ρχῃ", "", "the leader of"]) + let v = native_list_append(v, ["ἀξία", "noun", "ἀξῐ́αι", "ἀξίᾱς", "ἀξῐ́ᾳ", "", "worth value"]) + let v = native_list_append(v, ["μάγμα", "noun", "μᾰ́γμᾰτᾰ", "μάγμᾰτος", "μᾰ́γμᾰτῐ", "", "A kind of"]) + let v = native_list_append(v, ["τυραννία", "noun", "τῠρᾰννῐ́αι", "τῠραννίᾱς", "τῠρᾰννῐ́ᾳ", "", "synonym of τυραννίς"]) + let v = native_list_append(v, ["τρίπους", "noun", "τρῐ́ποδες", "τρῐ́ποδος", "τρῐ́ποδῐ", "", "tripod three-legged cauldron"]) + let v = native_list_append(v, ["ἐνθουσιασμός", "noun", "ἐνθουσῐᾰσμοί", "ἐνθουσῐᾰσμοῦ", "ἐνθουσῐᾰσμῷ", "", "inspiration enthusiasm"]) + let v = native_list_append(v, ["ἐνθουσιαστής", "noun", "ἐνθουσῐᾰσταί", "ἐνθουσῐᾰστοῦ", "ἐνθουσῐᾰστῇ", "", "an enthusiast a"]) + let v = native_list_append(v, ["νάρκωσις", "noun", "ναρκώσεις", "ναρκόσεως", "ναρκώσει", "", "benumbing"]) + let v = native_list_append(v, ["συλλογή", "noun", "σῠλλογαί", "σῠλλογῆς", "σῠλλογῇ", "", "gathering collecting"]) + let v = native_list_append(v, ["βαρύτητα", "noun", "βαρύτητα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["φρενῖτις", "noun", "φρενῖτις", "", "", "", "inflammation of the"]) + let v = native_list_append(v, ["Κάρπαθος", "noun", "Κάρπαθος", "Καρπάθου", "Καρπᾰ́θῳ", "", "Karpathos Dodecanese Greece"]) + let v = native_list_append(v, ["θολός", "noun", "θολοί", "θολοῦ", "θολῷ", "", "mud dirt especially"]) + let v = native_list_append(v, ["μαθήτρια", "noun", "μᾰθήτρῐαι", "μᾰθητρίᾱς", "μᾰθητρῐ́ᾳ", "", "pupil student schoolgirl"]) + let v = native_list_append(v, ["κάλος", "noun", "κᾰ́λοι", "κᾰ́λου", "κᾰ́λῳ", "", "alternative form of"]) + let v = native_list_append(v, ["δρᾶμα", "noun", "δρᾱ́μᾰτᾰ", "δρᾱ́μᾰτος", "δρᾱ́μᾰτῐ", "", "a deed act"]) + let v = native_list_append(v, ["δώρων", "noun", "δώρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["γένους", "noun", "γένους", "", "", "", "genitive singular contracted"]) + let v = native_list_append(v, ["γένη", "noun", "γένη", "", "", "", "nominative/accusative/vocative plural contracted"]) + let v = native_list_append(v, ["βαθμοί", "noun", "βαθμοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["βαθμούς", "noun", "βαθμούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["βαθμέ", "noun", "βαθμέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["μετάλλου", "noun", "μετάλλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μετάλλων", "noun", "μετάλλων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["μέταλλα", "noun", "μέταλλα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ναέ", "noun", "ναέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ναοί", "noun", "ναοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ναούς", "noun", "ναούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["κροκόδιλος", "noun", "κροκόδῑλοι", "κροκοδῑ́λου", "κροκοδῑ́λῳ", "", "alternative spelling of"]) + let v = native_list_append(v, ["τεκτονική", "noun", "τεκτονική", "τεκτονῐκῆς", "τεκτονικῇ", "", "joiners’ work carpentry"]) + let v = native_list_append(v, ["γάλατος", "noun", "γάλατος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["συνοικία", "noun", "σῠνοικῐ́αι", "σῠνοικῐ́ᾱς", "σῠνοικῐ́ᾳ", "", "body of people"]) + let v = native_list_append(v, ["φύλακα", "noun", "φύλακα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["φυλάκων", "noun", "φυλάκων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἀμνηστία", "noun", "ᾰ̓μνηστῐ́αι", "ᾰ̓μνηστῐ́ᾱς", "ᾰ̓μνηστῐ́ᾳ", "", "forgetfulness"]) + let v = native_list_append(v, ["σακχάρου", "noun", "σακχάρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σχίσματος", "noun", "σχίσματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σχίσματα", "noun", "σχίσματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["σχισμάτων", "noun", "σχισμάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["γαλήνης", "noun", "γαλήνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["συνήθεια", "noun", "σῠνήθειαι", "σῠνηθῐ́ᾱς", "σῠνηθείᾳ", "", "habit custom"]) + let v = native_list_append(v, ["σημείωμα", "noun", "σημειώμᾰτᾰ", "σημειώμᾰτος", "σημειώμᾰτῐ", "", "records"]) + let v = native_list_append(v, ["ζιζανίου", "noun", "ζιζανίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ζιζανίων", "noun", "ζιζανίων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἀφροσύνη", "noun", "ἀφροσύναι", "̆ἀφροσύνης", "ἀφροσύνῃ", "", "folly thoughtlessness meaninglessness"]) + let v = native_list_append(v, ["μυωπία", "noun", "μῠωπῐ́αι", "μῠωπίᾱς", "μῠωπῐ́ᾳ", "", "shortsightedness"]) + let v = native_list_append(v, ["λύσις", "noun", "λῠ́σεις", "λῠ́σεως", "λῠ́σει", "", "loosing releasing release"]) + let v = native_list_append(v, ["χαλινάρια", "noun", "χαλινάρια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["στερεώματος", "noun", "στερεώματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θαύματος", "noun", "θαύματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γεωδαισία", "noun", "γεωδαισία", "γεωδαισίᾱς", "γεωδαισῐ́ᾳ", "", "land-dividing"]) + let v = native_list_append(v, ["τρίχα", "noun", "τρίχα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["τρίχας", "noun", "τρίχας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["μυός", "noun", "μυός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μύες", "noun", "μύες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["μυών", "noun", "μῡῶνες", "μῡῶνος", "μῡῶνῐ", "", "a cluster of"]) + let v = native_list_append(v, ["σπάθη", "noun", "σπᾰ́θαι", "σπᾰ́θης", "σπᾰ́θῃ", "", "any broad blade"]) + let v = native_list_append(v, ["Πλάτωνος", "noun", "Πλάτωνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Πλάτωνα", "noun", "Πλάτωνα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Κύπρου", "noun", "Κύπρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["προφορά", "noun", "προφοραί", "προφορᾶς", "προφορᾷ", "", "pronunciation utterance"]) + let v = native_list_append(v, ["μόχθος", "noun", "μόχθοι", "μόχθου", "μόχθῳ", "", "toil trouble hardship"]) + let v = native_list_append(v, ["ἔλαιον", "noun", "ἔλαιᾰ", "ἐλαίου", "ἐλαίῳ", "", "olive oil commonly"]) + let v = native_list_append(v, ["ἁμάρτημα", "noun", "ᾰ̔μᾰρτήμᾰτᾰ", "ᾰ̔μᾰρτήμᾰτος", "ᾰ̔μᾰρτήμᾰτῐ", "", "a failure fault"]) + let v = native_list_append(v, ["θεότητας", "noun", "θεότητας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["θεότητες", "noun", "θεότητες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["θεοτήτων", "noun", "θεοτήτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["δρόμοι", "noun", "δρόμοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ἀγαρικόν", "noun", "ἀγαρικᾰ́", "ἀγᾰρῐκοῦ", "ἀγαρικῷ", "", "type of tree-fungus"]) + let v = native_list_append(v, ["ἄγρωστις", "noun", "ᾰ̓γρώστῐδες", "ᾰ̓γρώστῐδος", "ᾰ̓γρώστῐδῐ", "", "a grass that"]) + let v = native_list_append(v, ["αἴλουρος", "noun", "αἱ αἴλουροι", "αἰλούρου", "τῇ αἰλούρῳ", "", "cat domestic cat"]) + let v = native_list_append(v, ["ταύρους", "noun", "ταύρους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ταύρων", "noun", "ταύρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἀνδρόγυνος", "noun", "ᾰ̓νδρόγῠνοι", "ᾰ̓νδρογῠ́νου", "ᾰ̓νδρογῠ́νῳ", "", "hermaphrodite"]) + let v = native_list_append(v, ["ἄνεσις", "noun", "ᾰ̓νέσεις", "ᾰ̓νέσεως", "ᾰ̓νέσει", "", "a loosening relaxing"]) + let v = native_list_append(v, ["ἀντιτείχισμα", "noun", "ᾰ̓ντῐτειχῐ́σμᾰτᾰ", "ᾰ̓ντῐτειχῐ́σμᾰτος", "ᾰ̓ντῐτειχῐ́σμᾰτῐ", "", "counter-fortification"]) + let v = native_list_append(v, ["ἀπάθεια", "noun", "ἀπάθειαι", "ἀπᾰθείᾱς", "ἀπαθείᾳ", "", "want of sensation"]) + let v = native_list_append(v, ["δαπάνη", "noun", "δᾰπᾰ́ναι", "δᾰπᾰ́νης", "δᾰπᾰ́νῃ", "", "cost expenditure"]) + let v = native_list_append(v, ["δαπάνης", "noun", "δαπάνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄπους", "noun", "ᾰ̓́ποδες", "ᾰ̓́ποδος", "ᾰ̓́ποδῐ", "", "swift Apus apus"]) + let v = native_list_append(v, ["ἄλευρον", "noun", "ᾰ̓́λευρᾰ", "ἀλεύρου", "ᾰ̓λεύρῳ", "", "wheat flour wheatmeal"]) + let v = native_list_append(v, ["ἀλόη", "noun", "ᾰ̓λόαι", "ᾰ̓λόης", "ᾰ̓λόῃ", "", "aloe Aloe vera"]) + let v = native_list_append(v, ["ἀστρολογία", "noun", "ἀστρολογία", "ἀστρολογίᾱς", "ἀστρολογῐ́ᾳ", "", "astronomy"]) + let v = native_list_append(v, ["κάτοικος", "noun", "κᾰ́τοικοι", "κᾰτοίκου", "κᾰτοίκῳ", "", "inhabitant"]) + let v = native_list_append(v, ["ψευδαργύρου", "noun", "ψευδαργύρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψευδάργυρε", "noun", "ψευδάργυρε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ἀδάμας", "noun", "ᾰ̓δᾰ́μᾰντες", "ἀδᾰ́μᾰντος", "ᾰ̓δᾰ́μᾰντῐ", "", "adamant the hardest"]) + let v = native_list_append(v, ["ἀκμή", "noun", "ᾰ̓κμαί", "ᾰ̓κμῆς", "ᾰ̓κμῇ", "", "point edge"]) + let v = native_list_append(v, ["μέλους", "noun", "μέλους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μέλη", "noun", "μέλη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μέσης", "noun", "μέσης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πολιορκίας", "noun", "πολιορκίας", "", "", "", "inflection of πολῐορκῐ́ᾱ"]) + let v = native_list_append(v, ["γεωμετρίας", "noun", "γεωμετρίας", "", "", "", "inflection of γεωμετρῐ́ᾱ"]) + let v = native_list_append(v, ["δόρατος", "noun", "δόρατος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δόρατα", "noun", "δόρατα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["δοράτων", "noun", "δοράτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τάπητα", "noun", "τάπητα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["τάπητες", "noun", "τάπητες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ταπήτων", "noun", "ταπήτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τέρματος", "noun", "τέρματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τέρματα", "noun", "τέρματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["τερμάτων", "noun", "τερμάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κάστρου", "noun", "κάστρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κάστρων", "noun", "κάστρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κάστρα", "noun", "κάστρα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μήκους", "noun", "μήκους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πλάτη", "noun", "πλᾰ́ται", "πλᾰ́της", "πλᾰ́τῃ", "", "a flat or"]) + let v = native_list_append(v, ["βάθη", "noun", "βάθη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πράξεως", "noun", "πράξεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πράξεων", "noun", "πράξεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πράξεις", "noun", "πράξεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["θύελλα", "noun", "θῠ́ελλαι", "θῠέλλης", "θῠέλλῃ", "", "hurricane squall"]) + let v = native_list_append(v, ["χριστιανός", "noun", "χρῑστῐᾱνοί", "χρῑστῐᾱνοῦ", "χρῑστῐᾱνῷ", "", "alternative letter-case form"]) + let v = native_list_append(v, ["κοχλίας", "noun", "κοχλῐ́αι", "κοχλίου", "κοχλῐ́ᾳ", "", "snail with a"]) + let v = native_list_append(v, ["δρυός", "noun", "δρυός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δρύες", "noun", "δρύες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["σιωπή", "noun", "σῐωπαί", "σῐωπῆς", "σῐωπῇ", "", "silence"]) + let v = native_list_append(v, ["φράγμα", "noun", "φρᾰ́γμᾰτᾰ", "φράγμᾰτος", "φρᾰ́γμᾰτῐ", "", "A fence a"]) + let v = native_list_append(v, ["στάθμη", "noun", "στᾰ́θμαι", "στᾰ́θμης", "στᾰ́θμῃ", "", "carpenters line or"]) + let v = native_list_append(v, ["μονογαμία", "noun", "μονογαμία", "μονογᾰμίᾱς", "μονογᾰμῐ́ᾳ", "", "monogamy state of"]) + let v = native_list_append(v, ["δέκτης", "noun", "δέκται", "δέκτου", "δέκτῃ", "", "beggar"]) + let v = native_list_append(v, ["κυνισμός", "noun", "κῠνῐσμοί", "κῠνῐσμοῦ", "κῠνῐσμῷ", "", "Cynical philosophy or"]) + let v = native_list_append(v, ["ζύμης", "noun", "ζύμης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μηρούς", "noun", "μηρούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["συνθέσεως", "noun", "συνθέσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψηφοφορίας", "noun", "ψηφοφορίας", "", "", "", "inflection of ψηφοφορῐ́ᾱ"]) + let v = native_list_append(v, ["κόλον", "noun", "κόλᾰ", "κόλου", "κόλῳ", "", "colon last part"]) + let v = native_list_append(v, ["πίσω", "noun", "πίσω", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["λέσχη", "noun", "λέσχαι", "λέσχης", "λέσχῃ", "", "couch hence funeral"]) + let v = native_list_append(v, ["φλοιός", "noun", "φλοιοί", "φλοιοῦ", "φλοιῷ", "", "bark of trees"]) + let v = native_list_append(v, ["γέννα", "noun", "γένναι", "γέννης", "γέννῃ", "", "Ancient Greek"]) + let v = native_list_append(v, ["κέλυφος", "noun", "κελῡ́φη", "κελῡ́φους", "κελῡ́φει", "", "sheath case"]) + let v = native_list_append(v, ["γύψος", "noun", "γῠ́ψοι", "γῠ́ψου", "γῠ́ψῳ", "", "chalk"]) + let v = native_list_append(v, ["Κάιος", "noun", "Κάιος", "", "", "", "rare spelling of"]) + let v = native_list_append(v, ["μαγειρική", "noun", "μᾰγειρῐκαί", "μᾰγειρῐκῆς", "μᾰγειρῐκῇ", "", "cookery"]) + let v = native_list_append(v, ["μαλακός", "noun", "μᾰλᾰκοί", "μᾰλᾰκοῦ", "μᾰλᾰκῷ", "", "A person who"]) + let v = native_list_append(v, ["μαλακοί", "noun", "μαλακοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["μαλακία", "noun", "μᾰλᾰκῐ́αι", "μᾰλᾰκίᾱς", "μᾰλᾰκῐ́ᾳ", "", "softness delicacy effeminacy"]) + let v = native_list_append(v, ["μαλακίας", "noun", "μαλακίας", "", "", "", "inflection of μαλακίᾱ"]) + let v = native_list_append(v, ["γνάθος", "noun", "γνᾰ́θοι", "γνᾰ́θου", "γνᾰ́θῳ", "", "jaw"]) + let v = native_list_append(v, ["συνδρομή", "noun", "σῠνδρομαί", "σῠνδρομῆς", "σῠνδρομῇ", "", "a concourse of"]) + let v = native_list_append(v, ["λευκόχρυσος", "noun", "λευκόχρῡσοι", "λευκοχρῡ́σου", "λευκοχρῡ́σῳ", "", "kind of gem"]) + let v = native_list_append(v, ["τέλους", "noun", "τέλους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τέλη", "noun", "τέλη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["σαρκασμός", "noun", "σᾰρκᾰσμοί", "σᾰρκᾰσμοῦ", "σᾰρκᾰσμῷ", "", "bitter irony"]) + let v = native_list_append(v, ["συμπέρασμα", "noun", "σῠμπερᾰ́σμᾰτᾰ", "σῠμπερᾰ́σμᾰτος", "σῠμπερᾰ́σμᾰτῐ", "", "finishing end"]) + let v = native_list_append(v, ["μανδύας", "noun", "μᾰνδῠ́αι", "μανδύου", "μᾰνδῠ́ᾳ", "", "cloak cape mantle"]) + let v = native_list_append(v, ["δαπέδου", "noun", "δαπέδου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δαπέδων", "noun", "δαπέδων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["δάπεδα", "noun", "δάπεδα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["διψάς", "noun", "διψᾰ́δες", "διψᾰ́δος", "διψᾰ́δῐ", "", "venomous serpent whose"]) + let v = native_list_append(v, ["δημοκρατίας", "noun", "δημοκρατίας", "", "", "", "inflection of δημοκρᾰτῐ́ᾱ"]) + let v = native_list_append(v, ["διδύμου", "noun", "διδύμου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["διδύμων", "noun", "διδύμων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["διδύμους", "noun", "διδύμους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δίδυμοι", "noun", "δίδυμοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["δίδυμε", "noun", "δίδυμε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["πανοπλία", "noun", "πᾰνοπλῐ́αι", "πᾰνοπλῐ́ᾱς", "πᾰνοπλῐ́ᾳ", "", "suit of armour"]) + let v = native_list_append(v, ["δίκης", "noun", "δίκης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δραματουργός", "noun", "δρᾱμᾰτουργοί", "δρᾱμᾰτουργοῦ", "δρᾱμᾰτουργῷ", "", "contriver"]) + let v = native_list_append(v, ["κορώνας", "noun", "κορώνας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["στέμματα", "noun", "στέμματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ζύθου", "noun", "ζύθου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ζύθε", "noun", "ζύθε", "", "", "", "codical variant of"]) + let v = native_list_append(v, ["ζύθοι", "noun", "ζύθοι", "", "", "", "codical variant of"]) + let v = native_list_append(v, ["ζύθους", "noun", "ζύθους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ζύθων", "noun", "ζύθων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["μοναχή", "noun", "μονᾰχαί", "μονᾰχῆς", "μονᾰχῇ", "", "kind of linen"]) + let v = native_list_append(v, ["ὑποθέσει", "noun", "ὑποθέσει", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["δέσποινα", "noun", "δέσποιναι", "δεσποίνης", "δεσποίνῃ", "", "lady mistress"]) + let v = native_list_append(v, ["Νεφελοκοκκυγίας", "noun", "Νεφελοκοκκυγίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θείας", "noun", "θείας", "", "", "", "inflection of θείᾱ"]) + let v = native_list_append(v, ["θείων", "noun", "θείων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["θυσίας", "noun", "θυσίας", "", "", "", "inflection of θῠσῐ́ᾱ"]) + let v = native_list_append(v, ["θέματος", "noun", "θέματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θέματα", "noun", "θέματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["θεμάτων", "noun", "θεμάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ἄθλημα", "noun", "ἀθλήμᾰτᾰ", "ἀθλήματος", "ἀθλήμᾰτῐ", "", "sport"]) + let v = native_list_append(v, ["θύρας", "noun", "θύρας", "", "", "", "inflection of θύρᾱ"]) + let v = native_list_append(v, ["κινήσεως", "noun", "κινήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κινήσεων", "noun", "κινήσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κινήσεις", "noun", "κινήσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["Πέρση", "noun", "Πέρση", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ἴαμβος", "noun", "ῐ̓́ᾰμβοι", "ῐ̓ᾰ́μβου", "ῐ̓ᾰ́μβῳ", "", "iamb a metrical"]) + let v = native_list_append(v, ["ἀρχεῖον", "noun", "ἀρχεῖᾰ", "ἀρχείου", "ἀρχείῳ", "", "public building town"]) + let v = native_list_append(v, ["ποδάγρα", "noun", "ποδᾰ́γραι", "ποδᾰ́γρᾱς", "ποδᾰ́γρᾳ", "", "trap for the"]) + let v = native_list_append(v, ["φάρου", "noun", "φάρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φάρε", "noun", "φάρε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["φάροι", "noun", "φάροι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["φάρων", "noun", "φάρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["φάρους", "noun", "φάρους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χρόνου", "noun", "χρόνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χρόνε", "noun", "χρόνε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["χρόνοι", "noun", "χρόνοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["χρόνων", "noun", "χρόνων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["χρόνους", "noun", "χρόνους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["Ζωή", "noun", "Ζωή", "Ζωῆς", "Ζωῇ", "", "a female given"]) + let v = native_list_append(v, ["σιγά", "noun", "σῑγαί", "σῑγᾱ́ς", "σῑγᾷ", "", "Doric form of"]) + let v = native_list_append(v, ["πατρί", "noun", "πατρί", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["κόπος", "noun", "κόποι", "κόπου", "κόπῳ", "", "striking beating"]) + let v = native_list_append(v, ["δούλου", "noun", "δούλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δούλων", "noun", "δούλων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["δούλους", "noun", "δούλους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δούλας", "noun", "δούλας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["μέσου", "noun", "μέσου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μέσε", "noun", "μέσε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["μέσοι", "noun", "μέσοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["μέσων", "noun", "μέσων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["μέσους", "noun", "μέσους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["νόμου", "noun", "νόμου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νόμε", "noun", "νόμε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["νόμοι", "noun", "νόμοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["νόμων", "noun", "νόμων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["νόμους", "noun", "νόμους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δέον", "noun", "δέον", "", "", "", "That which is"]) + let v = native_list_append(v, ["δυστυχία", "noun", "δῠστῠχῐ́αι", "δῠστῠχῐ́ᾱς", "δῠστῠχῐ́ᾳ", "", "misfortune ill luck"]) + let v = native_list_append(v, ["ψήφου", "noun", "ψήφου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψήφων", "noun", "ψήφων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ψήφους", "noun", "ψήφους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ψυχώσεως", "noun", "ψυχώσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψυχώσεων", "noun", "ψυχώσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ψυχώσεις", "noun", "ψυχώσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πολιτικέ", "noun", "πολιτικέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["πολιτικοί", "noun", "πολιτικοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πολιτικούς", "noun", "πολιτικούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πολιτική", "noun", "πολῑτῐκαί", "πολῑτῐκῆς", "πολῑτῐκῇ", "", "the art of"]) + let v = native_list_append(v, ["πολιτικά", "noun", "πολιτικά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["χυμοί", "noun", "χυμοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["χυμούς", "noun", "χυμούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["μάχης", "noun", "μάχης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["-ισσα", "noun", "-ῐσσαι", "-ῐ́σσης", "-ῐσσῃ", "", "femininizes masculine nouns"]) + let v = native_list_append(v, ["διάμετρον", "noun", "δῐᾰ́μετρᾰ", "δῐᾰμέτρου", "δῐᾰμέτρῳ", "", "diagonal of a"]) + let v = native_list_append(v, ["ἀμβροσία", "noun", "ᾰ̓μβροσῐ́αι", "ἀμβροσῐ́ᾱς", "ᾰ̓μβροσῐ́ᾳ", "", "ambrosia"]) + let v = native_list_append(v, ["θείου", "noun", "θείου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θείους", "noun", "θείους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["λιτή", "noun", "λῐταί", "λῐτῆς", "λῐτῇ", "", "prayer entreaty"]) + let v = native_list_append(v, ["κόλπου", "noun", "κόλπου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κολάσεως", "noun", "κολάσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θραύστης", "noun", "θραῦσται", "θραύστου", "θραύστῃ", "", "one who breaks"]) + let v = native_list_append(v, ["κτήνους", "noun", "κτήνους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κτήνη", "noun", "κτήνη", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["κτήματος", "noun", "κτήματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κτήματα", "noun", "κτήματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["κτημάτων", "noun", "κτημάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κυρίου", "noun", "κυρίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κυρίων", "noun", "κυρίων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κυρίους", "noun", "κυρίους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["κύριοι", "noun", "κύριοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["κύριε", "noun", "κύριε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["κρατήσεως", "noun", "κρατήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κράσεως", "noun", "κράσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κράσεων", "noun", "κράσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κράσεις", "noun", "κράσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["Λευκάδα", "noun", "Λευκάδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["κεφαλαίου", "noun", "κεφαλαίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κεφαλαίων", "noun", "κεφαλαίων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κεφάλαια", "noun", "κεφάλαια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["δρόμου", "noun", "δρόμου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δρόμων", "noun", "δρόμων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["δρόμους", "noun", "δρόμους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["λαιμόν", "noun", "λαιμόν", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["τελειότητα", "noun", "τελειότητα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Τιτανομαχία", "noun", "Τῑτᾱνομᾰχῐ́αι", "Τῑτᾱνομᾰχῐ́ᾱς", "Τῑτᾱνομᾰχῐ́ᾳ", "", "a battle of"]) + let v = native_list_append(v, ["θεούς", "noun", "θεούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["θεοί", "noun", "θεοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["χάους", "noun", "χάους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μουστάκια", "noun", "μουστάκιᾰ", "μουστακίων", "μουστακίοις", "", "mustaceus a kind"]) + let v = native_list_append(v, ["ἅμαξα", "noun", "ᾰ̔́μαξαι", "ᾰ̔μάξης", "ᾰ̔μάξῃ", "", "wagon"]) + let v = native_list_append(v, ["πείνας", "noun", "πείνας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["παράδεισοι", "noun", "παράδεισοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["παραδείσους", "noun", "παραδείσους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["παραδείσου", "noun", "παραδείσου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["παραδείσων", "noun", "παραδείσων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["φούρνου", "noun", "φούρνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φούρνων", "noun", "φούρνων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["φούρνους", "noun", "φούρνους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["βαλλίστρας", "noun", "βαλλίστρας", "", "", "", "inflection of βαλλίστρᾱ"]) + let v = native_list_append(v, ["στίχου", "noun", "στίχου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στίχε", "noun", "στίχε", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["στίχοι", "noun", "στίχοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["στίχους", "noun", "στίχους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["στίχων", "noun", "στίχων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["σέλας", "noun", "σέλᾱ", "σέλᾰος", "σέλαι", "", "light brightness the"]) + let v = native_list_append(v, ["καταστρώματος", "noun", "καταστρώματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["καταστρώματα", "noun", "καταστρώματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["καταστρωμάτων", "noun", "καταστρωμάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["προκλήσεως", "noun", "προκλήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["προκλήσεων", "noun", "προκλήσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["προκλήσεις", "noun", "προκλήσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["φιλοσόφου", "noun", "φιλοσόφου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φιλόσοφε", "noun", "φιλόσοφε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["φιλόσοφοι", "noun", "φιλόσοφοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["φιλοσόφους", "noun", "φιλοσόφους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["φιλοσόφων", "noun", "φιλοσόφων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["χώρου", "noun", "χώρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χώρους", "noun", "χώρους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["χώρων", "noun", "χώρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["φώς", "noun", "φῶτες", "φωτός", "φωτῐ́", "", "man mortal"]) + let v = native_list_append(v, ["μύθου", "noun", "μύθου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μύθων", "noun", "μύθων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["μύθους", "noun", "μύθους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ἀράχνη", "noun", "ᾰ̓ρᾰ́χναι", "ᾰ̓ρᾰ́χνης", "ᾰ̓ρᾰ́χνῃ", "", "feminine form of"]) + let v = native_list_append(v, ["τόξου", "noun", "τόξου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τόξων", "noun", "τόξων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τόξα", "noun", "τόξα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["φασίολος", "noun", "φᾰσίολοι", "φασιόλου", "φᾰσιόλῳ", "", "Hellenistic synonym of"]) + let v = native_list_append(v, ["σταφυλή", "noun", "στᾰφῠλαί", "στᾰφῠλῆς", "στᾰφῠλῇ", "", "bunch of grapes"]) + let v = native_list_append(v, ["στήλης", "noun", "στήλης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φίλης", "noun", "φίλης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φίλων", "noun", "φίλων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["σχέσεως", "noun", "σχέσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σχέσεων", "noun", "σχέσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["σχέσεις", "noun", "σχέσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["χείλους", "noun", "χείλους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χείλη", "noun", "χείλη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["σύκου", "noun", "σύκου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["παραδείγματα", "noun", "παραδείγματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["νέφους", "noun", "νέφους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νέφη", "noun", "νέφη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["Καρπάθου", "noun", "Καρπάθου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φάσις", "noun", "φᾰ́σεις", "φᾰ́σεως", "φᾰ́σει", "", "appearance"]) + let v = native_list_append(v, ["στρέμμα", "noun", "στρέμμᾰτᾰ", "στρέμμᾰτος", "στρέμμᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["βραχίονα", "noun", "βραχίονα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ἀφεδρών", "noun", "ἀφεδρῶνες", "ἀφεδρῶνος", "ἀφεδρῶνῐ", "", "toilet latrine"]) + let v = native_list_append(v, ["πάπα", "noun", "πάπα", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["πεδίλου", "noun", "πεδίλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πεδίλων", "noun", "πεδίλων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πέδιλα", "noun", "πέδιλα", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["πελάγους", "noun", "πελάγους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πετάλου", "noun", "πετάλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πέταλα", "noun", "πέταλα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πωλήσεις", "noun", "πωλήσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πολέμου", "noun", "πολέμου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πολέμων", "noun", "πολέμων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πολέμους", "noun", "πολέμους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πόλεμοι", "noun", "πόλεμοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πόλεμε", "noun", "πόλεμε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["πύλης", "noun", "πύλης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πυλών", "noun", "πῠλῶνες", "πῠλῶνος", "πῠλῶνῐ", "", "a gateway"]) + let v = native_list_append(v, ["προόδου", "noun", "προόδου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["προβάτου", "noun", "προβάτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["προβάτων", "noun", "προβάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πρόβατα", "noun", "πρόβατα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["χημείας", "noun", "χημείας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φαράγγια", "noun", "φαράγγια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["χαράδρας", "noun", "χαράδρας", "", "", "", "inflection of χᾰρᾰ́δρα"]) + let v = native_list_append(v, ["πάππου", "noun", "πάππου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σελίνου", "noun", "σελίνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σελίνων", "noun", "σελίνων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["σέλινα", "noun", "σέλινα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ἁμαρτωλός", "noun", "ἁμαρτωλοί", "ἁμαρτωλοῦ", "ἁμαρτωλῷ", "", "sinner"]) + let v = native_list_append(v, ["βούτυρος", "noun", "βούτῡροι", "βουτῡ́ρου", "βουτῡ́ρῳ", "", "alternative form of"]) + let v = native_list_append(v, ["βούτυρον", "noun", "βούτῡρᾰ", "βουτῡ́ρου", "βουτῡ́ρῳ", "", "butter"]) + let v = native_list_append(v, ["σκόρδου", "noun", "σκόρδου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σκόρδων", "noun", "σκόρδων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["σκόρδα", "noun", "σκόρδα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["Κρήτης", "noun", "Κρήτης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φύλαξ", "noun", "αἱ φῠ́λᾰκες", "φῠ́λᾰκος", "τῇ φῠ́λᾰκῐ", "", "guard sentry"]) + let v = native_list_append(v, ["φύλακος", "noun", "φύλακος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πάλη", "noun", "πᾰ́λαι", "πᾰ́λης", "πᾰ́λῃ", "", "wrestling fight"]) + let v = native_list_append(v, ["φαναρίου", "noun", "φαναρίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φανάρια", "noun", "φανάρια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πτωχός", "noun", "πτωχοί", "πτωχοῦ", "πτωχῷ", "", "beggar one who"]) + let v = native_list_append(v, ["Δία", "noun", "Δία", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Κρόνου", "noun", "Κρόνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νόσοι", "noun", "νόσοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["νόσων", "noun", "νόσων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["νόσους", "noun", "νόσους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["στόματος", "noun", "στόματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στόματα", "noun", "στόματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["στομάτων", "noun", "στομάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["χαλκέ", "noun", "χαλκέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ξένη", "noun", "ξέναι", "ξένης", "ξένῃ", "", "female stranger foreigner"]) + let v = native_list_append(v, ["ξένα", "noun", "ξένα", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["ξένων", "noun", "ξένων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ξένους", "noun", "ξένους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ξένοι", "noun", "ξένοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ξένε", "noun", "ξένε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ξένης", "noun", "ξένης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χρυσέ", "noun", "χρυσέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["χρυσοί", "noun", "χρυσοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["χρυσούς", "noun", "χρυσούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["χάλυβας", "noun", "χάλυβας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["χάλυβα", "noun", "χάλυβα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["χάλυβες", "noun", "χάλυβες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["χαλύβων", "noun", "χαλύβων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πόρνος", "noun", "πόρνοι", "πόρνου", "πόρνῳ", "", "male prostitute"]) + let v = native_list_append(v, ["κρίσεως", "noun", "κρίσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κρίσεων", "noun", "κρίσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κρίσεις", "noun", "κρίσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μαθηματικός", "noun", "μᾰθημᾰτῐκοί", "μᾰθημᾰτῐκοῦ", "μᾰθημᾰτῐκῷ", "", "mathematician"]) + let v = native_list_append(v, ["φάλαγγας", "noun", "φάλαγγας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["φαλάγγων", "noun", "φαλάγγων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["στοιχείου", "noun", "στοιχείου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στοιχείων", "noun", "στοιχείων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πρεσβύτερος", "noun", "πρεσβῠ́τεροι", "πρεσβῠτέρου", "πρεσβῠτέρῳ", "", "the older or"]) + let v = native_list_append(v, ["συστήματος", "noun", "συστήματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["συστημάτων", "noun", "συστημάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["συστήματα", "noun", "συστήματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μήνις", "noun", "μήνις", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πόρου", "noun", "πόρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πόρε", "noun", "πόρε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["πόροι", "noun", "πόροι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πόρους", "noun", "πόρους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πόρων", "noun", "πόρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["μῆνις", "noun", "μήνῐες", "μήνῐος", "μήνῑ", "", "rage wrath especially"]) + let v = native_list_append(v, ["πρέσβυς", "noun", "πρέσβεις", "πρέσβεως", "πρέσβει", "", "old man"]) + let v = native_list_append(v, ["Ἔρις", "noun", "Ἔρις", "Ἔρῐδος", "Ἔρῐδῐ", "", "Eris"]) + let v = native_list_append(v, ["συμβολή", "noun", "σῠμβολαί", "συμβολῆς", "σῠμβολῇ", "", "coming together meeting"]) + let v = native_list_append(v, ["φυσιολογίας", "noun", "φυσιολογίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κινήτρου", "noun", "κινήτρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Σύρτις", "noun", "Σύρτις", "Σῠ́ρτεως", "Σῠ́ρτει", "", "Gulf of Sidra"]) + let v = native_list_append(v, ["θυμέ", "noun", "θυμέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["θυμοί", "noun", "θυμοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["θυμούς", "noun", "θυμούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["γυναικών", "noun", "γῠναικῶνες", "γῠναικῶνος", "γῠναικῶνῐ", "", "womens apartment in"]) + let v = native_list_append(v, ["συγγραφέα", "noun", "συγγραφέα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["συγγραφέων", "noun", "συγγραφέων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["φιλοσοφίας", "noun", "φιλοσοφίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στέλεχος", "noun", "στελέχη", "στελέχους", "στελέχει", "", "the crown of"]) + let v = native_list_append(v, ["λειτουργός", "noun", "λειτουργοί", "λειτουργοῦ", "λειτουργῷ", "", "public servant"]) + let v = native_list_append(v, ["στρατοπέδου", "noun", "στρατοπέδου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στρατοπέδων", "noun", "στρατοπέδων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["στρατόπεδα", "noun", "στρατόπεδα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["δίνης", "noun", "δίνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["διαρκείας", "noun", "διαρκείας", "", "", "", "inflection of διάρκεια"]) + let v = native_list_append(v, ["κύαμος", "noun", "κῠ́ᾰμοι", "κῠᾰ́μου", "κῠᾰ́μῳ", "", "bean Vicia faba"]) + let v = native_list_append(v, ["βούβαλος", "noun", "βούβᾰλοι", "βουβᾰ́λου", "βουβᾰ́λῳ", "", "an antelope possibly"]) + let v = native_list_append(v, ["γάδαρος", "noun", "γάδαρος", "γαδάρου", "", "", "donkey"]) + let v = native_list_append(v, ["φλέβα", "noun", "φλέβα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["δασύπους", "noun", "δᾰσῠ́ποδες", "δᾰσῠ́ποδος", "δᾰσῠ́ποδῐ", "", "European hare Lepus"]) + let v = native_list_append(v, ["λεόπαρδος", "noun", "λεόπαρδοι", "λεοπάρδου", "λεοπάρδῳ", "", "may denote a"]) + let v = native_list_append(v, ["χελώνα", "noun", "χελώνα", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["πάγουρος", "noun", "πᾰ́γουροι", "πᾰγούρου", "πᾰγούρῳ", "", "crab"]) + let v = native_list_append(v, ["σκολόπενδρα", "noun", "σκολόπενδραι", "σκολοπένδρᾱς", "σκολοπένδρᾳ", "", "millipede"]) + let v = native_list_append(v, ["πώγων", "noun", "πώγωνες", "πώγωνος", "πώγωνῐ", "", "beard"]) + let v = native_list_append(v, ["πινακοθήκη", "noun", "πῐνᾰκοθῆκαι", "πῐνᾰκοθήκης", "πῐνᾰκοθήκῃ", "", "picture gallery"]) + let v = native_list_append(v, ["κληρονόμος", "noun", "κληρονόμοι", "κληρονόμου", "κληρονόμῳ", "", "heir"]) + let v = native_list_append(v, ["Ἄδαμος", "noun", "Ἄδαμος", "Ᾱ̓δᾱ́μου", "Ᾱ̓δᾱ́μῳ", "", "alternative form of"]) + let v = native_list_append(v, ["συνώνυμα", "noun", "συνώνυμα", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["λεπτά", "noun", "λεπτά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["μεθοδικοί", "noun", "μεθοδῐκοί", "μεθοδῐκῶν", "μεθοδῐκοῖς", "", "“methodic” physicians as"]) + let v = native_list_append(v, ["ψιλή", "noun", "ψῑλαί", "ψῑλής", "ψῑλῇ", "", "smooth breathing diacritical"]) + let v = native_list_append(v, ["ψιλά", "noun", "ψιλά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["βασιλικά", "noun", "βασιλικά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ζυγοί", "noun", "ζυγοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ζυγά", "noun", "ζυγά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["ζυγούς", "noun", "ζυγούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["θερμοί", "noun", "θερμοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["θερμούς", "noun", "θερμούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["μαθηματική", "noun", "μᾰθημᾰτῐκαί", "μᾰθημᾰτῐκῆς", "μᾰθημᾰτῐκῇ", "", "mathematics"]) + let v = native_list_append(v, ["πλαστή", "noun", "πλᾰσταί", "πλᾰστῆς", "πλᾰστῇ", "", "mudwall enclosure made"]) + let v = native_list_append(v, ["πλαστά", "noun", "πλαστά", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["ἐντολή", "noun", "ἐντολαί", "ἐντολῆς", "ἐντολῇ", "", "injunction order command"]) + let v = native_list_append(v, ["ἐπαγγελία", "noun", "ἐπαγγελίαι", "ἐπαγγελίᾱς", "ἐπαγγελίᾳ", "", "announcement"]) + let v = native_list_append(v, ["μαρτυρία", "noun", "μᾰρτῠρῐ́αι", "μᾰρτῠρῐ́ᾱς", "μᾰρτῠρῐ́ᾳ", "", "testimony"]) + let v = native_list_append(v, ["ἀδικία", "noun", "ᾰ̓δῐκῐ́αι", "ᾰ̓δῐκῐ́ᾱς", "ᾰ̓δῐκῐ́ᾳ", "", "injustice iniquity"]) + let v = native_list_append(v, ["χαρά", "noun", "χᾰραί", "χᾰρᾶς", "χᾰρᾷ", "", "joy exultation"]) + let v = native_list_append(v, ["σωτηρία", "noun", "σωτηρῐ́αι", "σωτηρῐ́ᾱς", "σωτηρῐ́ᾳ", "", "deliverance salvation"]) + let v = native_list_append(v, ["κυνηγός", "noun", "αἱ κῠνηγοί", "κῠνηγοῦ", "τῇ κῠνηγῷ", "", "hunter"]) + let v = native_list_append(v, ["φράκτης", "noun", "φρᾰ́κται", "φράκτου", "φρᾰ́κτῃ", "", "sluice with gates"]) + let v = native_list_append(v, ["φόρος", "noun", "φόροι", "φόρου", "φόρῳ", "", "tribute"]) + let v = native_list_append(v, ["φόρου", "noun", "φόρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δραματουργέ", "noun", "δραματουργέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["δραματουργοί", "noun", "δραματουργοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["δραματουργούς", "noun", "δραματουργούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["τοίχου", "noun", "τοίχου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τοίχων", "noun", "τοίχων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τοίχους", "noun", "τοίχους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["παλαιοί", "noun", "πᾰλαιοί", "πᾰλαιῶν", "πᾰλαιοῖς", "", "the ancients those"]) + let v = native_list_append(v, ["παλαιούς", "noun", "παλαιούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δημαγωγός", "noun", "δημᾰγωγοί", "δημᾰγωγοῦ", "δημᾰγωγῷ", "", "a popular leader"]) + let v = native_list_append(v, ["καιροί", "noun", "καιροί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["καιρούς", "noun", "καιρούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["καιρέ", "noun", "καιρέ", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["συνάλλαγμα", "noun", "σῠνᾰλλᾰ́γμᾰτᾰ", "σῠνᾰλλᾰ́γμᾰτος", "σῠνᾰλλᾰ́γμᾰτῐ", "", "covenant contract agreement"]) + let v = native_list_append(v, ["σφάλμα", "noun", "σφᾰ́λμᾰτᾰ", "σφᾰ́λμᾰτος", "σφᾰ́λμᾰτῐ", "", "a trip a"]) + let v = native_list_append(v, ["ἔρις", "noun", "ἔρῐδες", "ἔρῐδος", "ἔρῐδῐ", "", "strife quarrel especially"]) + let v = native_list_append(v, ["εἰκονομαχία", "noun", "εἰκονομᾰχῐ́αι", "εἰκονομαχῐ́ᾱς", "εἰκονομᾰχῐ́ᾳ", "", "iconomachy iconoclasm"]) + let v = native_list_append(v, ["μαστροπός", "noun", "αἱ μᾰστροποί", "μᾰστροποῦ", "τῇ μᾰστροπῷ", "", "pimp or procuress"]) + let v = native_list_append(v, ["κόμμι", "noun", "κόμμη", "κόμμεως", "κόμμει", "", "gum obtained from"]) + let v = native_list_append(v, ["κάλου", "noun", "κάλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κάλοι", "noun", "κάλοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["κάλων", "noun", "κάλων", "", "", "", "inflection of κᾰ́λως"]) + let v = native_list_append(v, ["κάλους", "noun", "κάλους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["κάλε", "noun", "κάλε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["κάλλους", "noun", "κάλλους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κάλλη", "noun", "κάλλη", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["δούλη", "noun", "δοῦλαι", "δούλης", "δούλῃ", "", "female slave"]) + let v = native_list_append(v, ["χαρτοφύλακες", "noun", "χαρτοφύλακες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["χαρτοφυλάκων", "noun", "χαρτοφυλάκων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["χαρτοφυλακίου", "noun", "χαρτοφυλακίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χαρτοφυλάκια", "noun", "χαρτοφυλάκια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["χαρτοφυλακίων", "noun", "χαρτοφυλακίων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["γεωδαισίας", "noun", "γεωδαισίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["διόδου", "noun", "διόδου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["διόδων", "noun", "διόδων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["διόδους", "noun", "διόδους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δίοδε", "noun", "δίοδε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["δίοδοι", "noun", "δίοδοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["δουλείας", "noun", "δουλείας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θεσμοί", "noun", "θεσμοί", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["θεσμούς", "noun", "θεσμούς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["λουκάνικα", "noun", "λουκάνικα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["φάγου", "noun", "φάγου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σταθμός", "noun", "στᾰθμοί", "σταθμοῦ", "στᾰθμῷ", "", "standing place"]) + let v = native_list_append(v, ["κέρατος", "noun", "κέρατος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κέρατα", "noun", "κέρατα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["κεράτων", "noun", "κεράτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["γεύσεως", "noun", "γεύσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γεύσεων", "noun", "γεύσεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["γεύσεις", "noun", "γεύσεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["γερουσία", "noun", "γερουσῐ́αι", "γερουσῐ́ᾱς", "γερουσῐ́ᾳ", "", "The council of"]) + let v = native_list_append(v, ["καταλήψεις", "noun", "καταλήψεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["καταλήψεως", "noun", "καταλήψεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["καταλήψεων", "noun", "καταλήψεων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["λαγνεία", "noun", "λαγνεῖαι", "λαγνείᾱς", "λαγνείᾳ", "", "sex sexual intercourse"]) + let v = native_list_append(v, ["χαλινός", "noun", "χᾰλῑνοί", "χᾰλῑνοῦ", "χᾰλῑνῷ", "", "bridle rein bit"]) + let v = native_list_append(v, ["σήσαμον", "noun", "σήσᾰμᾰ", "σησᾰ́μου", "σησᾰ́μῳ", "", "sesame"]) + let v = native_list_append(v, ["ἰάσμη", "noun", "ἰάσμαι", "ἰάσμης", "ἰάσμῃ", "", "jasmine Jasminum officinale"]) + let v = native_list_append(v, ["βάτος", "noun", "βᾰ́τοι", "βᾰ́του", "βᾰ́τῳ", "", "blackberry Rubus ulmifolius"]) + let v = native_list_append(v, ["κύρια", "noun", "κύρια", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["κυρίας", "noun", "κυρίας", "", "", "", "inflection of κῡρῐ́ᾱ"]) + let v = native_list_append(v, ["δράματος", "noun", "δράματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δράματα", "noun", "δρᾱ́μᾰτᾰ", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["κάπροι", "noun", "κάπροι", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["κάπρων", "noun", "κάπρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["κάπρους", "noun", "κάπρους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["δραματουργία", "noun", "δρᾱμᾰτουργῐ́αι", "δρᾱμᾰτουργῐ́ᾱς", "δρᾱμᾰτουργῐ́ᾳ", "", "dramatic composition"]) + let v = native_list_append(v, ["κρημνός", "noun", "κρημνοί", "κρημνοῦ", "κρημνῷ", "", "overhanging bank of"]) + let v = native_list_append(v, ["δανειστής", "noun", "δᾰνεισταί", "δᾰνειστοῦ", "δᾰνειστῇ", "", "moneylender or creditor"]) + let v = native_list_append(v, ["φίλου", "noun", "φίλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φίλε", "noun", "φίλε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["φίλοι", "noun", "φίλοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["φίλους", "noun", "φίλους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["φίλα", "noun", "φίλα", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["παράνυμφος", "noun", "αἱ πᾰρᾰ́νῠμφοι", "πᾰρᾰνῠ́μφου", "τῇ πᾰρᾰνῠ́μφῳ", "", "bridegrooms friend or"]) + let v = native_list_append(v, ["Φόβος", "noun", "Φόβος", "Φόβου", "Φόβῳ", "", "Phobos the Greek"]) + let v = native_list_append(v, ["μῶλυ", "noun", "μώλῠᾰ", "μώλῠος", "μώλῠῐ̈", "", "moly a magic"]) + let v = native_list_append(v, ["ἐχθρός", "noun", "ἐχθροί", "ἐχθροῦ", "ἐχθρῷ", "", "a male enemy"]) + let v = native_list_append(v, ["φρόνημα", "noun", "φρονήμᾰτᾰ", "φρονήμᾰτος", "φρονήμᾰτῐ", "", "mind spirit"]) + let v = native_list_append(v, ["προίξ", "noun", "προῖκες", "προικός", "προικῐ́", "", "a dowry"]) + let v = native_list_append(v, ["κολεός", "noun", "κολεοί", "κολεοῦ", "κολεῷ", "", "a sword-sheath a"]) + let v = native_list_append(v, ["συμπεράσματος", "noun", "συμπεράσματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["συμπερασμάτων", "noun", "συμπερασμάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["συμπεράσματα", "noun", "συμπεράσματα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["πρόξενος", "noun", "αἱ πρόξενοι", "προξένου", "τῇ προξένῳ", "", "a public foreigner"]) + let v = native_list_append(v, ["δούλης", "noun", "δούλης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δοθιήνων", "noun", "δοθιήνων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["βασιλείας", "noun", "βασιλείας", "", "", "", "inflection of βασιλείᾱ"]) + let v = native_list_append(v, ["μοναρχίας", "noun", "μοναρχίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αἶσχος", "noun", "αἴσχη", "αἴσχεος", "αἴσχει", "", "shame disgrace a"]) + let v = native_list_append(v, ["Ἀφρόδιτος", "noun", "Ἀφρόδιτος", "Ἀφροδῑ́του", "Ἀφροδῑ́τῳ", "", "Aphroditus"]) + let v = native_list_append(v, ["Ἑρμαφρόδιτος", "noun", "Ἑρμαφρόδιτος", "Ἑρμαφροδῑ́του", "Ἑρμαφροδῑ́τῳ", "", "Hermaphroditus"]) + let v = native_list_append(v, ["πέρατος", "noun", "πέρατος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["περάτων", "noun", "περάτων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πέρατα", "noun", "πέρατα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["λαγών", "noun", "αἱ λᾰγόνες", "λᾰγόνος", "τῇ λᾰγόνῐ", "", "hollow on each"]) + let v = native_list_append(v, ["βοηθός", "noun", "βοηθοί", "βοηθοῦ", "βοηθῷ", "", "assistant helper"]) + let v = native_list_append(v, ["λήθη", "noun", "λῆθαι", "λήθης", "λήθῃ", "", "oblivion forgetfulness"]) + let v = native_list_append(v, ["καταγελαστής", "noun", "κᾰτᾰγελᾰσταί", "κᾰτᾰγελᾰστοῦ", "κᾰτᾰγελᾰστῇ", "", "mocker"]) + let v = native_list_append(v, ["πριαπισμός", "noun", "πριαπισμός", "πρῐᾱπισμοῦ", "πρῐᾱπισμῷ", "", "priapism"]) + let v = native_list_append(v, ["πτέρνα", "noun", "πτέρναι", "πτέρνης", "πτέρνῃ", "", "alternative form of"]) + let v = native_list_append(v, ["χειρουργός", "noun", "χειρουργοί", "χειρουργοῦ", "χειρουργῷ", "", "craftsman"]) + let v = native_list_append(v, ["τρόπου", "noun", "τρόπου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τρόπε", "noun", "τρόπε", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["τρόποι", "noun", "τρόποι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["τρόπων", "noun", "τρόπων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τρόπους", "noun", "τρόπους", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["νόησις", "noun", "νοήσεις", "νοήσεως", "νοήσει", "", "intelligence understanding mental"]) + let v = native_list_append(v, ["δοθιήν", "noun", "δοθῐῆνες", "δοθῐῆνος", "δοθῐῆνῐ", "", "small abscess boil"]) + let v = native_list_append(v, ["κόλαφος", "noun", "κόλᾰφοι", "κολᾰ́φου", "κολᾰ́φῳ", "", "a buffet a"]) + let v = native_list_append(v, ["σπουδή", "noun", "σπουδαί", "σπουδῆς", "σπουδῇ", "", "haste speed"]) + let v = native_list_append(v, ["κόπρος", "noun", "κόπροι", "κόπρου", "κόπρῳ", "", "dung ordure excrement"]) + let v = native_list_append(v, ["στυλοβάτης", "noun", "στῡλοβᾰ́ται", "στῡλοβᾰ́του", "στῡλοβᾰ́τῃ", "", "the base of"]) + let v = native_list_append(v, ["σώτειρα", "noun", "σώτειραι", "σωτείρᾱς", "σωτείρᾳ", "", "savior female"]) + let v = native_list_append(v, ["εὐρυθμία", "noun", "εὐρυθμία", "εὐρυθμίᾱς", "εὐρυθμίᾳ", "", "rhythmical order"]) + let v = native_list_append(v, ["περίοικος", "noun", "περῐ́οικοι", "περῐοίκου", "περῐοίκῳ", "", "neighbor"]) + let v = native_list_append(v, ["Πράσινοι", "noun", "Πράσινοι", "", "", "", "the Greens one"]) + let v = native_list_append(v, ["ὑπόμνημα", "noun", "ῠ̔πομνήμᾰτᾰ", "ῠ̔πομνήμᾰτος", "ῠ̔πομνήμᾰτῐ", "", "remembrance memorial record"]) + let v = native_list_append(v, ["βλῆμα", "noun", "βλήμᾰτᾰ", "βλήμᾰτος", "βλήμᾰτῐ", "", "a throw cast"]) + let v = native_list_append(v, ["στραγγός", "noun", "στραγγός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στραγγάλη", "noun", "στραγγάλη", "", "", "", "halter"]) + let v = native_list_append(v, ["φραγμός", "noun", "φρᾰγμοί", "φρᾰγμοῦ", "φρᾰγμῷ", "", "blockage stoppage stopping"]) + let v = native_list_append(v, ["πάπυρος", "noun", "πᾰ́πῡροι", "πᾰπῡ́ρου", "πᾰπῡ́ρῳ", "", "the plant papyrus"]) + let v = native_list_append(v, ["νεότατος", "noun", "νεότατος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μείζων", "noun", "μείζονες", "μείζονος", "μείζονῐ", "", "village elder"]) + let v = native_list_append(v, ["ἄρακος", "noun", "ᾰ̓́ρᾰκοι", "ᾰ̓ρᾰ́κου", "ᾰ̓ρᾰ́κῳ", "", "wild chickling vetch"]) + let v = native_list_append(v, ["κόρις", "noun", "κόρεις", "κόρεως", "κόρει", "", "bedbug"]) + let v = native_list_append(v, ["καλύβη", "noun", "κᾰλῠ́βαι", "κᾰλῠ́βης", "κᾰλῠ́βῃ", "", "A hut a"]) + let v = native_list_append(v, ["ἀσωτία", "noun", "ᾰ̓σωτῐ́αι", "ᾰ̓σωτῐ́ᾱς", "ᾰ̓σωτῐ́ᾳ", "", "prodigality profligacy"]) + let v = native_list_append(v, ["θόλος", "noun", "θόλοι", "θόλου", "θόλῳ", "", "A round building"]) + let v = native_list_append(v, ["φίλτρον", "noun", "φῐ́λτρᾰ", "φῐ́λτρου", "φῐ́λτρῳ", "", "a magical means"]) + let v = native_list_append(v, ["εὖχος", "noun", "εὔχη", "εὔχους", "εὔχει", "", "the thing prayed"]) + let v = native_list_append(v, ["ἄγνος", "noun", "ᾰ̓́γνοι", "ἄγνου", "ᾰ̓́γνῳ", "", "chaste tree Vitex"]) + let v = native_list_append(v, ["ἀγανάκτησις", "noun", "ᾰ̓γᾰνᾰκτήσεις", "ᾰ̓γᾰνᾰκτήσεως", "ᾰ̓γᾰνᾰκτήσει", "", "physical pain irritation"]) + let v = native_list_append(v, ["μέσπιλον", "noun", "μέσπῐλᾰ", "μεσπίλου", "μεσπῐ́λῳ", "", "medlar Mespilus germanica"]) + let v = native_list_append(v, ["ἆθλον", "noun", "ἆθλᾰ", "ἄθλου", "ᾱ̓́θλῳ", "", "prize of a"]) + let v = native_list_append(v, ["ἆθλος", "noun", "ἆθλοι", "ᾱ̓́θλου", "ᾱ̓́θλῳ", "", "material for a"]) + let v = native_list_append(v, ["πλάτης", "noun", "πλάτης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἁμαμηλίς", "noun", "ᾰ̔μᾰμηλῐ́δες", "ᾰ̔μᾰμηλῐ́δος", "ᾰ̔μᾰμηλῐ́δῐ", "", "a tree with"]) + let v = native_list_append(v, ["ἀνάλυσις", "noun", "ἀναλύσεις", "ᾰ̓νᾰλῠ́σεως", "ἀναλύσει", "", "a loosing releasing"]) + let v = native_list_append(v, ["ἀνδριάς", "noun", "ᾰ̓νδρῐᾰ́ντες", "ᾰ̓νδρῐᾰ́ντος", "ᾰ̓νδρῐᾰ́ντῐ", "", "image of a"]) + let v = native_list_append(v, ["ἀνθρωποποιΐα", "noun", "ᾰ̓νθρωποποιῐ̈́αι", "ᾰ̓νθρωποποιῐ̈́ᾱς", "ᾰ̓νθρωποποιῐ̈́ᾳ", "", "making of man"]) + let v = native_list_append(v, ["ἄνισον", "noun", "ᾰ̓́νῐσᾰ", "ᾰ̓νῐ́σου", "ᾰ̓νῐ́σῳ", "", "inequality"]) + let v = native_list_append(v, ["ἄνηθον", "noun", "ἄνηθᾰ", "ἀνήθου", "ἀνήθῳ", "", "dill Anethum graveolens"]) + let v = native_list_append(v, ["ἄπνοια", "noun", "ἄπνοιαι", "ἀπνοίᾱς", "ἀπνοίᾳ", "", "want of wind"]) + let v = native_list_append(v, ["Ἀρεοπαγίτης", "noun", "Ἀρεοπαγῖται", "Ἀρεοπᾰγίτου", "Ἀρεοπαγῑ́τῃ", "", "Areopagite"]) + let v = native_list_append(v, ["Ἄρειος πάγος", "noun", "Ἄρειος πάγος", "Ἀρείου πάγου", "", "", "alternative letter-case form"]) + let v = native_list_append(v, ["ἄροτρον", "noun", "ᾰ̓́ροτρᾰ", "ᾰ̓ρότρου", "ᾰ̓ρότρῳ", "", "plough"]) + let v = native_list_append(v, ["ἀρτύς", "noun", "ἀρτῠ́ες", "ἀρτύος", "ἀρτῠ́ῐ̈", "", "alternative form of"]) + let v = native_list_append(v, ["ἀρθμός", "noun", "ἀρθμοί", "ἀρθμοῦ", "ἀρθμῷ", "", "bond league friendship"]) + let v = native_list_append(v, ["ἀστράγαλος", "noun", "ᾰ̓στρᾰ́γᾰλοι", "ἀστρᾰγάλου", "ᾰ̓στρᾰγᾰ́λῳ", "", "one of the"]) + let v = native_list_append(v, ["ἀστρονομία", "noun", "ἀστρονομία", "ἀστρονομίᾱς", "ἀστρονομῐ́ᾳ", "", "astronomy"]) + let v = native_list_append(v, ["ἀφορισμός", "noun", "ᾰ̓φορῐσμοί", "ᾰ̓φορῐσμοῦ", "ᾰ̓φορῐσμῷ", "", "limitation"]) + let v = native_list_append(v, ["βάλανος", "noun", "βᾰ́λᾰνοι", "βᾰλᾰ́νου", "βᾰλᾰ́νῳ", "", "acorn"]) + let v = native_list_append(v, ["βάσκανος", "noun", "βάσκᾰνοι", "βασκᾰ́νου", "βασκᾰ́νῳ", "", "slanderer defamer talebearer"]) + let v = native_list_append(v, ["βῆτα", "noun", "βῆτα", "", "", "", "beta the name"]) + let v = native_list_append(v, ["βίρρος", "noun", "βῐ́ρροι", "βίρρου", "βῐ́ρρῳ", "", "type of cloak"]) + let v = native_list_append(v, ["βοτάνη", "noun", "βοτᾰ́ναι", "βοτᾰ́νης", "βοτᾰ́νῃ", "", "grass fodder pasture"]) + let v = native_list_append(v, ["βύας", "noun", "βύαι", "βύου", "βύᾳ", "", "eagle owl"]) + let v = native_list_append(v, ["βύρσα", "noun", "βῠ́ρσαι", "βῠ́ρσης", "βῠ́ρσῃ", "", "the skin stripped"]) + let v = native_list_append(v, ["γενεαλόγος", "noun", "γενεᾱλόγοι", "γενεᾱλόγου", "γενεᾱλόγῳ", "", "genealogist"]) + let v = native_list_append(v, ["γέρρον", "noun", "γέρρᾰ", "γέρρου", "γέρρῳ", "", "anything made of"]) + let v = native_list_append(v, ["πέρνης", "noun", "πέρναι", "πέρνου", "πέρνῃ", "", "a bird of"]) + let v = native_list_append(v, ["γέλως", "noun", "γέλωτες", "γέλωτος", "γέλωτῐ", "", "laughter"]) + let v = native_list_append(v, ["γυμνασία", "noun", "γυμνασίαι", "γυμνασίᾱς", "γυμνασίᾳ", "", "exercise"]) + let v = native_list_append(v, ["δέμας", "noun", "δέμας", "", "", "", "body"]) + let v = native_list_append(v, ["πενθερά", "noun", "πενθεραί", "πενθερᾱ́ς", "πενθερᾷ", "", "mother-in-law"]) + let v = native_list_append(v, ["πενθερός", "noun", "πενθεροί", "πενθεροῦ", "πενθερῷ", "", "father-in-law"]) + let v = native_list_append(v, ["διοίκησις", "noun", "δῐοικήσεις", "δῐοικήσεως", "δῐοικήσει", "", "housekeeping control government"]) + let v = native_list_append(v, ["διοικοδόμησις", "noun", "δῐοικοδομήσεις", "δῐοικοδομήσεως", "δῐοικοδομήσει", "", "fortification"]) + let v = native_list_append(v, ["ἕδραμα", "noun", "ἑδρᾱ́μᾰτᾰ", "ἑδρᾱ́μᾰτος", "ἑδρᾱ́μᾰτῐ", "", "synonym of ἕδρᾱ"]) + let v = native_list_append(v, ["εἰδωλολάτρης", "noun", "αἱ εἰδωλολᾰ́τραι", "εἰδωλολᾰ́τρου", "τῇ εἰδωλολᾰ́τρῃ", "", "an idol-worshipper idolater"]) + let v = native_list_append(v, ["Εἵλωτες", "noun", "Εἵλωτες", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ἐκροή", "noun", "ἐκροαί", "ἐκροῆς", "ἐκροῇ", "", "a flowing out"]) + let v = native_list_append(v, ["ἐκτειχισμός", "noun", "ἐκτειχῐσμοί", "ἐκτειχῐσμοῦ", "ἐκτειχῐσμῷ", "", "fortification"]) + let v = native_list_append(v, ["ἐκτομή", "noun", "ἐκτομαί", "ἐκτομῆς", "ἐκτομῇ", "", "a cutting out"]) + let v = native_list_append(v, ["ἔμετος", "noun", "ἔμετοι", "ἐμέτου", "ἐμέτῳ", "", "vomiting sickness"]) + let v = native_list_append(v, ["κῦμα", "noun", "κῡ́μᾰτᾰ", "κῡ́μᾰτος", "κῡ́μᾰτῐ", "", "a wave billow"]) + let v = native_list_append(v, ["ἔννοια", "noun", "ἔννοιαι", "ἐννοίᾱς", "ἐννοίᾳ", "", "the act of"]) + let v = native_list_append(v, ["νόος", "noun", "νόοι", "νόου", "νόῳ", "", "mind"]) + let v = native_list_append(v, ["ἑορτή", "noun", "ἑορταί", "ἑορτῆς", "ἑορτῇ", "", "feast"]) + let v = native_list_append(v, ["ἐπιείκεια", "noun", "ἐπιείκειαι", "ἐπῐεικείᾱς", "ἐπιεικείᾳ", "", "reasonableness"]) + let v = native_list_append(v, ["εἰκός", "noun", "εἰκότᾰ", "εἰκότος", "εἰκότῐ", "", "likelihood probability"]) + let v = native_list_append(v, ["ἐπιτομή", "noun", "ἐπῐτομαί", "ἐπῐτομῆς", "ἐπῐτομῇ", "", "a cutting on"]) + let v = native_list_append(v, ["μυριάς", "noun", "μῡρῐᾰ́δες", "μῡρῐᾰ́δος", "μῡρῐᾰ́δῐ", "", "a number of"]) + let v = native_list_append(v, ["μυριάδες", "noun", "μυριάδες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["ἐργασία", "noun", "ἐργᾰσῐ́αι", "ἐργᾰσῐ́ᾱς", "ἐργᾰσῐ́ᾳ", "", "work daily labor"]) + let v = native_list_append(v, ["ἕρπης", "noun", "ἕρπητες", "ἕρπητος", "ἕρπητῐ", "", "herpes shingles"]) + let v = native_list_append(v, ["ἑτεροφωνία", "noun", "ἑτεροφωνῐ́αι", "ἑτεροφωνῐ́ᾱς", "ἑτεροφωνῐ́ᾳ", "", "a difference of"]) + let v = native_list_append(v, ["εὔπνοια", "noun", "εὔπνοιαι", "εὐπνοίᾱς", "εὐπνοίᾳ", "", "ease of breathing"]) + let v = native_list_append(v, ["ἔφαψις", "noun", "ἐφᾰ́ψεις", "ἐφᾰ́ψεως", "ἐφᾰ́ψει", "", "a touch caress"]) + let v = native_list_append(v, ["ζῆτα", "noun", "ζῆτα", "", "", "", "zeta the name"]) + let v = native_list_append(v, ["θαῦμα", "noun", "θαύμᾰτᾰ", "θαύμᾰτος", "θαύμᾰτῐ", "", "a wonder marvel"]) + let v = native_list_append(v, ["θέναρ", "noun", "θένᾰρᾰ", "θένᾰρος", "θένᾰρῐ", "", "the palm of"]) + let v = native_list_append(v, ["θεοπάθεια", "noun", "θεοπᾰ́θειαι", "θεοπᾰθείᾱς", "θεοπᾰθείᾳ", "", "the suffering of"]) + let v = native_list_append(v, ["θηριακή", "noun", "θηρῐᾰκαί", "θηρῐᾰκῆς", "θηρῐᾰκῇ", "", "an antidote against"]) + let v = native_list_append(v, ["θηρίον", "noun", "θηρῐ́ᾰ", "θηρῐ́ου", "θηρῐ́ῳ", "", "wild animal beast"]) + let v = native_list_append(v, ["θῆτα", "noun", "θῆτα", "θήτᾰτος", "", "", "theta the name"]) + let v = native_list_append(v, ["θρόμβωσις", "noun", "θρόμβωσις", "θρομβώσεως", "θρομβώσει", "", "curdling clotting"]) + let v = native_list_append(v, ["θύμος", "noun", "θῠ́μοι", "θῠ́μου", "θῠ́μῳ", "", "a warty excrescence"]) + let v = native_list_append(v, ["θεοπληξία", "noun", "θεοπληξῐ́αι", "θεοπληξῐ́ᾱς", "θεοπληξῐ́ᾳ", "", "the state or"]) + let v = native_list_append(v, ["ἰθύφαλλος", "noun", "ῑ̓θῠ́φαλλοι", "ῑ̓θῠφάλλου", "ῑ̓θῠφάλλῳ", "", "a phallus carried"]) + let v = native_list_append(v, ["ἰτέα", "noun", "ῑ̓τέαι", "ῑ̓τέᾱς", "ῑ̓τέᾳ", "", "willow"]) + let v = native_list_append(v, ["συκέα", "noun", "σῡκέαι", "σῡκέᾱς", "σῡκέᾳ", "", "fig tree"]) + let v = native_list_append(v, ["κνίδη", "noun", "κνῖδαι", "κνῑ́δης", "κνῑ́δῃ", "", "stinging nettle Urtica"]) + let v = native_list_append(v, ["κνίδης", "noun", "κνίδης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἰσονομία", "noun", "ῐ̓σονομῐ́αι", "ῐ̓σονομῐ́ᾱς", "ῐ̓σονομῐ́ᾳ", "", "an equal distribution"]) + let v = native_list_append(v, ["ἰσοψηφία", "noun", "ῐ̓σοψηφῐ́αι", "ῐ̓σοψηφῐ́ᾱς", "ῐ̓σοψηφῐ́ᾳ", "", "equality of votes"]) + let v = native_list_append(v, ["λαγώς", "noun", "λᾰγῴ", "λᾰγώ", "λᾰγῴ", "", "hare"]) + let v = native_list_append(v, ["λαγώ", "noun", "λαγώ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἰλάρχης", "noun", "ῑ̓λᾰ́ρχαι", "ῑ̓λᾰ́ρχου", "ῑ̓λᾰ́ρχῃ", "", "the commander of"]) + let v = native_list_append(v, ["ὄα", "noun", "ὄαι", "ὄᾱς", "ὄᾳ", "", "the service tree"]) + let v = native_list_append(v, ["ὄας", "noun", "ὄας", "", "", "", "inflection of ὄᾱ"]) + let v = native_list_append(v, ["χοῖρος", "noun", "χοῖροι", "χοίρου", "χοίρῳ", "", "a pig especially"]) + let v = native_list_append(v, ["ὄον", "noun", "ὄᾰ", "ὄου", "ὄῳ", "", "the sorb apple"]) + let v = native_list_append(v, ["κόρεως", "noun", "κόρεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μόρου", "noun", "μόρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δάφνης", "noun", "δάφνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δέρματος", "noun", "δέρματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["διλήμματος", "noun", "διλήμματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κυμίνου", "noun", "κυμίνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μύρμηκος", "noun", "μύρμηκος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ξύλου", "noun", "ξύλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἵλασμα", "noun", "ῑ̔λᾰ́σμᾰτᾰ", "ῑ̔λᾰ́σμᾰτος", "ῑ̔λᾰ́σμᾰτῐ", "", "propitiation"]) + let v = native_list_append(v, ["ἱλάσματος", "noun", "ἱλάσματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἱλαστής", "noun", "ῑ̔λᾰσταί", "ῑ̔λᾰστοῦ", "ῑ̔λᾰστῇ", "", "a propitiator one"]) + let v = native_list_append(v, ["βουβῶνος", "noun", "βουβῶνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["βύω", "noun", "βύω", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["γυρίνου", "noun", "γυρίνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κακκάβη", "noun", "κᾰκκᾰ́βαι", "κᾰκκᾰ́βης", "κᾰκκᾰ́βῃ", "", "three legged pot"]) + let v = native_list_append(v, ["κατηχητής", "noun", "κᾰτηχηταί", "κᾰτηχητοῦ", "κᾰτηχητῇ", "", "instructor teacher"]) + let v = native_list_append(v, ["διαγράμματος", "noun", "διαγράμματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δοθιῆνος", "noun", "δοθιῆνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["εὐφορίας", "noun", "εὐφορίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θέρμης", "noun", "θέρμης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θεραπευτοῦ", "noun", "θεραπευτοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κάρητος", "noun", "κάρητος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κοφίνου", "noun", "κοφίνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κύτους", "noun", "κύτους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["καμάρας", "noun", "καμάρας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["καταγελάστου", "noun", "καταγελάστου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κλίματος", "noun", "κλίματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κληρικοῦ", "noun", "κληρικοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κλήρου", "noun", "κλήρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λέξεως", "noun", "λέξεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λατρείας", "noun", "λατρείας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κέδματα", "noun", "κέδμᾰτᾰ", "κεδμᾰ́των", "κέδμᾰσῐ", "", "Certain morbid affections"]) + let v = native_list_append(v, ["κέλευσμα", "noun", "κελεύσμᾰτᾰ", "κελεύσμᾰτος", "κελεύσμᾰτῐ", "", "an order command"]) + let v = native_list_append(v, ["μάννου", "noun", "μάννου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μάρης", "noun", "μάρης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μύλῃς", "noun", "μύλῃς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μύστου", "noun", "μύστου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μανιάκου", "noun", "μανιάκου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μαστίχης", "noun", "μαστίχης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μισθοῦ", "noun", "μισθοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μυίας", "noun", "μυίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μήνιγγος", "noun", "μήνιγγος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["μιμοῦ", "noun", "μιμοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νοήματος", "noun", "νοήματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νοήσεως", "noun", "νοήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νειοῦ", "noun", "νειοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νομοθέτου", "noun", "νομοθέτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νυοῦ", "noun", "νυοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["νήττης", "noun", "νήττης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["οὐράς", "noun", "οὐράς", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["πέπλου", "noun", "πέπλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πετάλη", "noun", "πετᾰ́λαι", "πετάλης", "πετᾰ́λῃ", "", "alternative form of"]) + let v = native_list_append(v, ["παραλύσεως", "noun", "παραλύσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["παρῳδίας", "noun", "παρῳδίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πεῖρας", "noun", "πεῖρας", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["πλευράς", "noun", "πλευράς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πληγῆς", "noun", "πληγῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φιλεραστής", "noun", "φῐλερᾰσταί", "φῐλερᾰστοῦ", "φῐλερᾰστῇ", "", "one who is"]) + let v = native_list_append(v, ["ποιότητος", "noun", "ποιότητος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["θήτατος", "noun", "θήτατος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πολιτικῇ", "noun", "πολιτικῇ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["πολιτικόν", "noun", "πολῑτῐκᾰ́", "πολῑτῐκοῦ", "πολῑτῐκῷ", "", "a community"]) + let v = native_list_append(v, ["πομπῆς", "noun", "πομπῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πτυχῆς", "noun", "πτυχῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["πυραμίδος", "noun", "πυραμίδος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σάκους", "noun", "σάκους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σαύρας", "noun", "σαύρας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σημείου", "noun", "σημείου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σκέπαρνος", "noun", "σκέπαρνος", "σκεπάρνου", "", "", "alternative form of"]) + let v = native_list_append(v, ["σκεπάρνου", "noun", "σκεπάρνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κίστη", "noun", "κῐ́σται", "κῐ́στης", "κῐ́στῃ", "", "box chest casket"]) + let v = native_list_append(v, ["κίων", "noun", "αἱ κῑ́ονες", "κῑ́ονος", "τῇ κῑ́ονῐ", "", "pillar column"]) + let v = native_list_append(v, ["κλοπή", "noun", "κλοπαί", "κλοπῆς", "κλοπῇ", "", "theft"]) + let v = native_list_append(v, ["κνώδων", "noun", "κνώδοντες", "κνώδοντος", "κνώδοντῐ", "", "two projecting teeth"]) + let v = native_list_append(v, ["κολοφών", "noun", "κολοφῶνες", "κολοφῶνος", "κολοφῶνῐ", "", "a summit top"]) + let v = native_list_append(v, ["Κολοφών", "noun", "Κολοφών", "Κολοφῶνος", "Κολοφῶνῐ", "", "Colophon Ionia Turkey"]) + let v = native_list_append(v, ["κονία", "noun", "κονῐ́αι", "κονῐ́ᾱς", "κονῐ́ᾳ", "", "dust as stirred"]) + let v = native_list_append(v, ["κορωνίς", "noun", "κορωνῐ́δες", "κορωνῐ́δος", "κορωνῐ́δῐ", "", "something crook-beaked or"]) + let v = native_list_append(v, ["κόσμοι", "noun", "κόσμοι", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["Κυνικός", "noun", "Κῠνῐκοί", "Κῠνῐκοῦ", "Κῠνῐκῷ", "", "a Cynic"]) + let v = native_list_append(v, ["λίβας", "noun", "λίβας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["σοροῦ", "noun", "σοροῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σπληνός", "noun", "σπληνός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στάσεως", "noun", "στάσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στείρας", "noun", "στείρας", "", "", "", "inflection of στεῖρᾰ"]) + let v = native_list_append(v, ["στρατοῦ", "noun", "στρατοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["στρουθοῦ", "noun", "στρουθοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σφαίρας", "noun", "σφαίρας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σήματος", "noun", "σήματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σήψεως", "noun", "σήψεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τεμένους", "noun", "τεμένους", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κυρβασία", "noun", "κυρβᾰσίαι", "κυρβᾰσίᾱς", "κυρβᾰσίᾳ", "", "a Persian bonnet"]) + let v = native_list_append(v, ["κυρβασίας", "noun", "κυρβασίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λαγώπους", "noun", "αἱ λᾰγώποδες", "λᾰγώποδος", "τῇ λᾰγώποδῐ", "", "something with feet"]) + let v = native_list_append(v, ["τόνου", "noun", "τόνου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τροπῆς", "noun", "τροπῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φάεος", "noun", "φάεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φαρμακείας", "noun", "φαρμακείας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φρονήσεως", "noun", "φρονήσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σταῖς", "noun", "σταῖτᾰ", "σταιτός", "σταιτῐ́", "", "dough made of"]) + let v = native_list_append(v, ["σταιτός", "noun", "σταιτός", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χέρσου", "noun", "χέρσου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χιμάρου", "noun", "χιμάρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χελιδόνος", "noun", "χελιδόνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χλεύης", "noun", "χλεύης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κλεψύδρα", "noun", "κλεψῠ́δραι", "κλεψῠ́δρᾱς", "κλεψῠ́δρᾳ", "", "pipette"]) + let v = native_list_append(v, ["κλεψύδρας", "noun", "κλεψύδρας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χάρμα", "noun", "χᾰ́ρμᾰτᾰ", "χᾰ́ρμᾰτος", "χᾰ́ρμᾰτῐ", "", "source of joy"]) + let v = native_list_append(v, ["χάρματος", "noun", "χάρματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Οὐρανίας", "noun", "Οὐρανίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀποθήκης", "noun", "ἀποθήκης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀφροσύνης", "noun", "ἀφροσύνης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["λέξεις", "noun", "λέξεις", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["λοιμός", "noun", "λοιμοί", "λοιμοῦ", "λοιμῷ", "", "plague pestilence any"]) + let v = native_list_append(v, ["ἄμυλος", "noun", "ἄμῠλοι", "ἀμύλου", "ἀμῠ́λῳ", "", "cake of fine"]) + let v = native_list_append(v, ["ἀμύλου", "noun", "ἀμύλου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄρσενος", "noun", "ἄρσενος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄρσεως", "noun", "ἄρσεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄχεος", "noun", "ἄχεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἐμπειρίας", "noun", "ἐμπειρίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἐνεργείας", "noun", "ἐνεργείας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἐπαγωγῆς", "noun", "ἐπαγωγῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἐπιστήμης", "noun", "ἐπιστήμης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἐργάτου", "noun", "ἐργάτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ῥεύματος", "noun", "ῥεύματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ὕβρεως", "noun", "ὕβρεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["παράκλητον", "noun", "παράκλητον", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["μᾶνις", "noun", "μᾱ́νῐες", "μᾱ́νῐος", "μᾱ́νῑ", "", "Aeolic and Doric"]) + let v = native_list_append(v, ["μίξις", "noun", "μῐ́ξεις", "μῐ́ξεως", "μῐ́ξει", "", "a mixing a"]) + let v = native_list_append(v, ["μισανδρία", "noun", "μῑσᾰνδρῐ́αι", "μῑσᾰνδρῐ́ᾱς", "μῑσᾰνδρῐ́ᾳ", "", "hatred of men"]) + let v = native_list_append(v, ["μοναστήριον", "noun", "μοναστήριᾰ", "μοναστηρίου", "μοναστηρίῳ", "", "hermitage a solitary"]) + let v = native_list_append(v, ["μύρον", "noun", "μῠ́ρᾰ", "μῠ́ρου", "μῠ́ρῳ", "", "any sweet juice"]) + let v = native_list_append(v, ["μῶμος", "noun", "μῶμοι", "μώμου", "μώμῳ", "", "blame ridicule disgrace"]) + let v = native_list_append(v, ["νεῖκος", "noun", "νείκη", "νείκους", "νείκει", "", "quarrel wrangle strife"]) + let v = native_list_append(v, ["νοήματα", "noun", "νοήματα", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ξιφίας", "noun", "ξῐφῐ́αι", "ξῐφῐ́ου", "ξῐφῐ́ᾳ", "", "swordfish Xiphias gladius"]) + let v = native_list_append(v, ["ξιφία", "noun", "ξιφία", "", "", "", "inflection of ξῐφῐ́ᾱς"]) + let v = native_list_append(v, ["ξυρόν", "noun", "ξῠρᾰ́", "ξῠροῦ", "ξῠρῷ", "", "razor"]) + let v = native_list_append(v, ["ὀβολός", "noun", "ὀβολοί", "ὀβολοῦ", "ὀβολῷ", "", "obol obolus used"]) + let v = native_list_append(v, ["ὀβελός", "noun", "ὀβελοί", "ὀβελοῦ", "ὀβελῷ", "", "a spit rod"]) + let v = native_list_append(v, ["οἶστρος", "noun", "οἶστροι", "οἴστρου", "οἴστρῳ", "", "gadfly breese"]) + let v = native_list_append(v, ["ὁλοθούριον", "noun", "ὁλοθούρῐᾰ", "ὁλοθουρῐ́ου", "ὁλοθουρῐ́ῳ", "", "the holothurium a"]) + let v = native_list_append(v, ["ὁπλή", "noun", "ὁπλαί", "ὁπλῆς", "ὁπλῇ", "", "hoof"]) + let v = native_list_append(v, ["ὁπλίτης", "noun", "ὁπλῖται", "ὁπλῑ́του", "ὁπλῑ́τῃ", "", "one who is"]) + let v = native_list_append(v, ["ὅραμα", "noun", "ὁρᾱ́μᾰτᾰ", "ὁρᾱ́μᾰτος", "ὁρᾱ́μᾰτῐ", "", "that which is"]) + let v = native_list_append(v, ["ὀρθόπνοια", "noun", "ὀρθόπνοιαι", "ὀρθοπνοίᾱς", "ὀρθοπνοίᾳ", "", "upright breathing orthopnoea"]) + let v = native_list_append(v, ["ὅρκος", "noun", "ὅρκοι", "ὅρκου", "ὅρκῳ", "", "the object by"]) + let v = native_list_append(v, ["οὖρον", "noun", "οὖρᾰ", "οὔρου", "οὔρῳ", "", "urine"]) + let v = native_list_append(v, ["ὄφελμα", "noun", "ὀφέλμᾰτᾰ", "ὀφέλμᾰτος", "ὀφέλμᾰτῐ", "", "increase advantage"]) + let v = native_list_append(v, ["ὀχύρωσις", "noun", "ὀχῠρώσεις", "ὀχῠρώσεως", "ὀχῠρώσει", "", "an act of"]) + let v = native_list_append(v, ["ὄψ", "noun", "ὄψ", "ὀπός", "ὀπῐ́", "", "voice"]) + let v = native_list_append(v, ["πεῖ", "noun", "πεῖ", "", "", "", "pi the name"]) + let v = native_list_append(v, ["συμβουλή", "noun", "σῠμβουλαί", "σῠμβουλῆς", "σῠμβουλῇ", "", "counsel"]) + let v = native_list_append(v, ["πῖλος", "noun", "πῖλοι", "πῑ́λου", "πῑ́λῳ", "", "wool or hair"]) + let v = native_list_append(v, ["πρόξενοι", "noun", "πρόξενοι", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["προσκήνιον", "noun", "προσκήνῐᾰ", "προσκηνῐ́ου", "προσκηνῐ́ῳ", "", "the forepart or"]) + let v = native_list_append(v, ["πτέρυγες", "noun", "πτέρυγες", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["πυγή", "noun", "πῡγαί", "πῡγῆς", "πῡγῇ", "", "rump buttocks"]) + let v = native_list_append(v, ["πυγμή", "noun", "πυγμαί", "πυγμῆς", "πυγμῇ", "", "fist"]) + let v = native_list_append(v, ["πόρκος", "noun", "πόρκοι", "πόρκου", "πόρκῳ", "", "a type of"]) + let v = native_list_append(v, ["πτύον", "noun", "πτῠ́ᾰ", "πτῠ́ου", "πτῠ́ῳ", "", "a winnowing shovel"]) + let v = native_list_append(v, ["πόρτις", "noun", "πόρτῐες", "πόρτῐος", "πόρτῑ", "", "a calf young"]) + let v = native_list_append(v, ["πῶλος", "noun", "πῶλοι", "πώλου", "πώλῳ", "", "foal young horse"]) + let v = native_list_append(v, ["πῆχυς", "noun", "πήχεις", "πήχεως", "πήχει", "", "forearm from the"]) + let v = native_list_append(v, ["παγκράτιον", "noun", "πᾰγκρᾰ́τῐᾰ", "πᾰγκρᾰτῐ́ου", "πᾰγκρᾰτῐ́ῳ", "", "pankration a complete"]) + let v = native_list_append(v, ["ῥανίς", "noun", "ῥᾰνῐ́δες", "ῥᾰνῐ́δος", "ῥᾰνῐ́δῐ", "", "a drop"]) + let v = native_list_append(v, ["ῥῶ", "noun", "ῥῶ", "", "", "", "rho the name"]) + let v = native_list_append(v, ["ῥοπή", "noun", "ῥοπαί", "ῥοπῆς", "ῥοπῇ", "", "inclination downwards"]) + let v = native_list_append(v, ["ῥυτίς", "noun", "ῥῠτῐ́δες", "ῥῠτῐ́δος", "ῥῠτῐ́δῐ", "", "a fold or"]) + let v = native_list_append(v, ["ῥυτίδα", "noun", "ῥυτίδα", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["Σαβάζιος", "noun", "Σᾰβάζιοι", "Σᾰβαζίου", "Σᾰβαζίῳ", "", "Sabazios a Phrygian"]) + let v = native_list_append(v, ["σάβανον", "noun", "σᾰ́βᾰνᾰ", "σᾰβᾰ́νου", "σᾰβᾰ́νῳ", "", "linen cloth or"]) + let v = native_list_append(v, ["σταφυλῆς", "noun", "σταφυλῆς", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σιώπησις", "noun", "σῐωπήσεις", "σῐωπήσεως", "σῐωπήσει", "", "taciturnity"]) + let v = native_list_append(v, ["σκᾶπος", "noun", "σκᾶπος", "", "", "", "branch name of"]) + let v = native_list_append(v, ["σκῆπτρον", "noun", "σκῆπτρᾰ", "σκήπτρου", "σκήπτρῳ", "", "a staff stick"]) + let v = native_list_append(v, ["σκοτία", "noun", "σκοτῐ́αι", "σκοτῐ́ᾱς", "σκοτῐ́ᾳ", "", "darkness gloom"]) + let v = native_list_append(v, ["σκότος", "noun", "σκότοι", "σκότου", "σκότῳ", "", "darkness gloom"]) + let v = native_list_append(v, ["σκύλαξ", "noun", "αἱ σκῠ́λᾰκες", "σκῠ́λᾰκος", "τῇ σκῠ́λᾰκῐ", "", "young dog whelp"]) + let v = native_list_append(v, ["κλειτορίς", "noun", "κλειτορῐ́δες", "κλειτορῐ́δος", "κλειτορῐ́δῐ", "", "clitoris"]) + let v = native_list_append(v, ["τεχνολόγος", "noun", "τεχνολόγοι", "τεχνολόγου", "τεχνολόγῳ", "", "treating by rules"]) + let v = native_list_append(v, ["σκύλιον", "noun", "σκῠ́λῐᾰ", "σκῠλίου", "σκῠλῐ́ῳ", "", "dogfish"]) + let v = native_list_append(v, ["σκύμνος", "noun", "αἱ σκῠ́μνοι", "σκύμνου", "τῇ σκῠ́μνῳ", "", "cub whelp especially"]) + let v = native_list_append(v, ["χαραδριός", "noun", "χαραδριοί", "χαραδριοῦ", "χαραδριῷ", "", "A bird probably"]) + let v = native_list_append(v, ["χαραδριοῦ", "noun", "χαραδριοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψῦχος", "noun", "ψῡ́χη", "ψῡ́χους", "ψῡ́χει", "", "cold"]) + let v = native_list_append(v, ["ψύχεος", "noun", "ψύχεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψυχοπομπός", "noun", "ψῡχοπομποί", "ψῡχοπομποῦ", "ψῡχοπομπῷ", "", "guide or conductor"]) + let v = native_list_append(v, ["ψυχοπομπόν", "noun", "ψυχοπομπόν", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ψυχοπομποῦ", "noun", "ψυχοπομποῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ψήφισμα", "noun", "ψηφῐ́σμᾰτᾰ", "ψηφῐ́σμᾰτος", "ψηφῐ́σμᾰτῐ", "", "a proposal passed"]) + let v = native_list_append(v, ["ψηφίσματος", "noun", "ψηφίσματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χιλιάς", "noun", "χῑλῐᾰ́δες", "χῑλῐᾰ́δος", "χῑλῐᾰ́δῐ", "", "1000 the number"]) + let v = native_list_append(v, ["χιλιάδος", "noun", "χιλιάδος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χιών", "noun", "χῑ̆όνες", "χῑ̆όνος", "χῑ̆όνῐ", "", "snow"]) + let v = native_list_append(v, ["χιόνος", "noun", "χιόνος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χρῆμα", "noun", "χρήμᾰτᾰ", "χρήμᾰτος", "χρήμᾰτῐ", "", "need a thing"]) + let v = native_list_append(v, ["χρήματος", "noun", "χρήματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χρῖσμα", "noun", "χρῑ́σμᾰτᾰ", "χρῑ́σμᾰτος", "χρῑ́σμᾰτῐ", "", "ointment unguent oil"]) + let v = native_list_append(v, ["χρίσματος", "noun", "χρίσματος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["χερσονήσου", "noun", "χερσονήσου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φώκη", "noun", "φῶκαι", "φώκης", "φώκῃ", "", "seal marine animal"]) + let v = native_list_append(v, ["φώκης", "noun", "φώκης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φῦκος", "noun", "φῡ́κεᾰ", "φῡ́κους", "φῡ́κεῐ̈", "", "seaweed"]) + let v = native_list_append(v, ["φύκεος", "noun", "φύκεος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φόρτος", "noun", "φόρτοι", "φόρτου", "φόρτῳ", "", "load freight cargo"]) + let v = native_list_append(v, ["φόρτου", "noun", "φόρτου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φιάλης", "noun", "φιάλης", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φθόγγος", "noun", "φθόγγοι", "φθόγγου", "φθόγγῳ", "", "a sound or"]) + let v = native_list_append(v, ["φθόγγου", "noun", "φθόγγου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἕκτον", "noun", "ἕκτον", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κοντούρα", "noun", "κοντούρα", "", "", "", "cutter a kind"]) + let v = native_list_append(v, ["συγγενεύς", "noun", "συγγενεύς", "σῠγγενέως", "", "", "alternative form of"]) + let v = native_list_append(v, ["σύρφος", "noun", "σῠ́ρφοι", "σῠ́ρφου", "σῠ́ρφῳ", "", "alternative form of"]) + let v = native_list_append(v, ["σφυγμός", "noun", "σφῠγμοί", "σφῠγμοῦ", "σφῠγμῷ", "", "the throbbing of"]) + let v = native_list_append(v, ["σχήματα", "noun", "σχήματα", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["σχόλιον", "noun", "σχόλῐᾰ", "σχολῐ́ου", "σχολῐ́ῳ", "", "an interpretation comment"]) + let v = native_list_append(v, ["σωλήν", "noun", "σωλῆνες", "σωλῆνος", "σωλῆνῐ", "", "channel gutter pipe"]) + let v = native_list_append(v, ["σωληνάριον", "noun", "σωληνᾰ́ρῐᾰ", "σωληνᾰρῐ́ου", "σωληνᾰρῐ́ῳ", "", "little pipe"]) + let v = native_list_append(v, ["ταὐτολογία", "noun", "ταὐτολογῐ́αι", "ταὐτολογῐ́ᾱς", "ταὐτολογῐ́ᾳ", "", "tautology"]) + let v = native_list_append(v, ["τείχισμα", "noun", "τειχῐ́σμᾰτᾰ", "τειχῐ́σμᾰτος", "τειχῐ́σμᾰτῐ", "", "wall fort fortification"]) + let v = native_list_append(v, ["τραγῳδία", "noun", "τρᾰγῳδῐ́αι", "τρᾰγῳδίᾱς", "τρᾰγῳδῐ́ᾳ", "", "a tragedy or"]) + let v = native_list_append(v, ["μητροπολίτης", "noun", "μητροπολῖται", "μητροπολῑ́του", "μητροπολῑ́τῃ", "", "metropolitan inhabitant of"]) + let v = native_list_append(v, ["τριλογία", "noun", "τρῐλογῐ́αι", "τρῐλογῐ́ᾱς", "τρῐλογῐ́ᾳ", "", "trilogy group of"]) + let v = native_list_append(v, ["τριλογίας", "noun", "τριλογίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τρόπαιον", "noun", "τρόπαιᾰ", "τροπαίου", "τροπαίῳ", "", "trophy a monument"]) + let v = native_list_append(v, ["τροπαίου", "noun", "τροπαίου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["φυτοῦ", "noun", "φυτοῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τρίβος", "noun", "αἱ τρῐ́βοι", "τρῐ́βου", "τῇ τρῐ́βῳ", "", "a worn or"]) + let v = native_list_append(v, ["κυμάτιον", "noun", "κῡμᾰ́τῐᾰ", "κῡμᾰτῐ́ου", "κῡμᾰτῐ́ῳ", "", "a small cyma"]) + let v = native_list_append(v, ["ἔμβρυον", "noun", "ἔμβρῠᾰ", "ἐμβρῠ́ου", "ἐμβρῠ́ῳ", "", "a young one"]) + let v = native_list_append(v, ["ταβάλα", "noun", "ταβάλα", "", "", "", "a Parthian word"]) + let v = native_list_append(v, ["φοξῖνος", "noun", "φοξῖνοι", "φοξῑ́νου", "φοξῑ́νῳ", "", "type of fish"]) + let v = native_list_append(v, ["φύλαξις", "noun", "φῠλᾰ́ξεις", "φῠλᾰ́ξεως", "φῠλᾰ́ξει", "", "an act of"]) + let v = native_list_append(v, ["φυτά", "noun", "φυτά", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["φώκαινα", "noun", "φώκαιναι", "φωκαίνης", "φωκαίνῃ", "", "porpoise Delphinus phocaena"]) + let v = native_list_append(v, ["χειρονόμος", "noun", "χειρονόμοι", "χειρονόμου", "χειρονόμῳ", "", "one who moves"]) + let v = native_list_append(v, ["χόδανος", "noun", "χόδανος", "χοδᾰ́νου", "", "", "butt buttocks"]) + let v = native_list_append(v, ["κύων", "verb", "κῠ́ων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["θέλω", "verb", "ἔθελον", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐρώμενος", "verb", "erṓmenos", "ἐρωμένη", "ἐρώμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ἄγω", "verb", "ᾰ̓́γω", "", "", "", "to lead fetch"]) + let v = native_list_append(v, ["τυγχάνω", "verb", "τῠγχᾰ́νω", "", "", "", "Expressing coincidence to"]) + let v = native_list_append(v, ["παραδεικνύναι", "verb", "πᾰρᾰδεικνῠ́ναι", "părădeiknŭ́nai", "", "", "present active infinitive"]) + let v = native_list_append(v, ["φοβέω", "verb", "φοβέομαι", "", "", "", "to put to"]) + let v = native_list_append(v, ["γράφω", "verb", "γρᾰ́φω", "", "", "", "to scratch cut"]) + let v = native_list_append(v, ["πυρράζω", "verb", "πυρρᾰ́ζω", "", "", "", "to be red"]) + let v = native_list_append(v, ["ἀγαπάω", "verb", "ἀγαπᾰ́ω", "", "", "", "to show affection"]) + let v = native_list_append(v, ["εὐαγγελίζω", "verb", "εὐαγγελίζομαι", "", "", "", "to bring or"]) + let v = native_list_append(v, ["ἔργον", "verb", "érgon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["βλασφημέω", "verb", "βλασφημέομαι", "", "", "", "to speak profanely"]) + let v = native_list_append(v, ["παραδειγματίζω", "verb", "παραδειγμᾰτῐ́ζω", "", "", "", "to make a"]) + let v = native_list_append(v, ["διψάω", "verb", "δῐψῶ", "", "", "", "to thirst to"]) + let v = native_list_append(v, ["κρύπτω", "verb", "κρῠ́πτω", "", "", "", "to hide to"]) + let v = native_list_append(v, ["διδάσκω", "verb", "δῐδᾰ́σκω", "", "", "", "to teach instruct"]) + let v = native_list_append(v, ["ἀκούω", "verb", "ᾰ̓κούω", "", "", "", "to hear"]) + let v = native_list_append(v, ["μνάομαι", "verb", "μνᾰ́ομαι", "", "", "", "to be mindful"]) + let v = native_list_append(v, ["σκανδαλίζω", "verb", "σκᾰνδᾰλῐ́ζω", "", "", "", "to snare cause"]) + let v = native_list_append(v, ["γαμέω", "verb", "γᾰμέω", "", "", "", "to marry a"]) + let v = native_list_append(v, ["κλέπτω", "verb", "κλέπτομαι", "", "", "", "to steal filch"]) + let v = native_list_append(v, ["πίνω", "verb", "πῑ́νω", "", "", "", "to drink"]) + let v = native_list_append(v, ["εὑρίσκω", "verb", "εὑρῐ́σκω", "", "", "", "to happen upon"]) + let v = native_list_append(v, ["θεραπεύω", "verb", "θερᾰπεύω", "", "", "", "to wait on"]) + let v = native_list_append(v, ["καθαίρω", "verb", "κᾰθαίρω", "", "", "", "to make clean"]) + let v = native_list_append(v, ["ᾄδω", "verb", "ᾄδομαι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["μισέω", "verb", "μῑσέω", "", "", "", "to hate"]) + let v = native_list_append(v, ["πλήθω", "verb", "ἔπληθον", "", "", "", "to be or"]) + let v = native_list_append(v, ["πνέω", "verb", "πνέομαι", "", "", "", "to blow"]) + let v = native_list_append(v, ["ῥέω", "verb", "ῥέομαι", "", "", "", "to flow stream"]) + let v = native_list_append(v, ["σχίζω", "verb", "σχῐ́ζω", "", "", "", "to split cleave"]) + let v = native_list_append(v, ["τρέμω", "verb", "τρέμομαι", "", "", "", "to tremble in"]) + let v = native_list_append(v, ["φέρω", "verb", "φέρομαι", "", "", "", "to bring bear"]) + let v = native_list_append(v, ["ψεύδομαι", "verb", "pseúdomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["διακονέω", "verb", "διακονέομαι", "", "", "", "to wait on"]) + let v = native_list_append(v, ["περιπατέω", "verb", "περιπᾰτέω", "", "", "", "to walk up"]) + let v = native_list_append(v, ["πυρέσσω", "verb", "πῠρέσσω", "", "", "", "to be feverish"]) + let v = native_list_append(v, ["συνάγω", "verb", "σῠνᾰ́γω", "", "", "", "to bring together"]) + let v = native_list_append(v, ["καθαρίζω", "verb", "κᾰθᾰρῐ́ζω", "", "", "", "to clean cleanse"]) + let v = native_list_append(v, ["παραλύω", "verb", "παραλῡ́ω", "", "", "", "take off detach"]) + let v = native_list_append(v, ["λύω", "verb", "λῡ́ω", "", "", "", "to loose to"]) + let v = native_list_append(v, ["ῥήγνυμι", "verb", "ῥήγνῡμῐ", "", "", "", "to break asunder"]) + let v = native_list_append(v, ["διαλογίζομαι", "verb", "δῐᾰλογῐ́ζω", "", "", "", "to balance accounts"]) + let v = native_list_append(v, ["λογίζομαι", "verb", "λογῐ́ζομαι", "", "", "", "to count reckon"]) + let v = native_list_append(v, ["ἀγαθοποιέω", "verb", "ᾰ̓γᾰθοποιέω", "", "", "", "to do good"]) + let v = native_list_append(v, ["ψύχω", "verb", "ψῡ́χω", "", "", "", "to breathe to"]) + let v = native_list_append(v, ["ποιέω", "verb", "ποιέομαι", "", "", "", "to make"]) + let v = native_list_append(v, ["αὐξάνω", "verb", "αὐξᾰ́νω", "", "", "", "to make grow"]) + let v = native_list_append(v, ["ὁμοιόω", "verb", "ὁμοιόομαι", "", "", "", "to make similar"]) + let v = native_list_append(v, ["γεννάω", "verb", "γεννᾰ́ω", "", "", "", "to beget give"]) + let v = native_list_append(v, ["ἄρχομαι", "verb", "ᾰ̓́ρχομαι", "ắrkhomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἄρχω", "verb", "ᾰ̓́ρχω", "", "", "", "to begin"]) + let v = native_list_append(v, ["τιμωρέω", "verb", "τῑμωρέω", "", "", "", "to avenge exact"]) + let v = native_list_append(v, ["τίνω", "verb", "τῐ́νω", "", "", "", "to pay a"]) + let v = native_list_append(v, ["πιστεύω", "verb", "πῐστεύω", "", "", "", "to have faith"]) + let v = native_list_append(v, ["πείθω", "verb", "πείθομαι", "", "", "", "to convince persuade"]) + let v = native_list_append(v, ["ἐξίστημι", "verb", "ἐξῐ́στημῐ", "", "", "", "to displace to"]) + let v = native_list_append(v, ["ἵστημι", "verb", "ῐ̔́στημῐ", "", "", "", "to make to"]) + let v = native_list_append(v, ["ἐσθίω", "verb", "ἐσθῐ́ω", "", "", "", "to eat to"]) + let v = native_list_append(v, ["κάμπτω", "verb", "κᾰ́μπτω", "", "", "", "to bend to"]) + let v = native_list_append(v, ["ἀποκεφαλίζω", "verb", "ᾰ̓ποκεφᾰλῐ́ζω", "", "", "", "to decapitate behead"]) + let v = native_list_append(v, ["γίνομαι", "verb", "γῑ́νομαι", "", "", "", "Ionic Koine and"]) + let v = native_list_append(v, ["ὀρχέομαι", "verb", "ὀρχοῦμαι", "", "", "", "to dance"]) + let v = native_list_append(v, ["βαπτίζω", "verb", "βᾰπτῐ́ζω", "", "", "", "to dip plunge"]) + let v = native_list_append(v, ["βάπτω", "verb", "βᾰ́πτω", "", "", "", "to dip to"]) + let v = native_list_append(v, ["εἴδομαι", "verb", "eídomai", "", "", "", "to be seen"]) + let v = native_list_append(v, ["πίπτω", "verb", "πῑ́πτω", "", "", "", "to fall throw"]) + let v = native_list_append(v, ["εὐλογέω", "verb", "εὐλογέομαι", "", "", "", "to speak well"]) + let v = native_list_append(v, ["μεταμορφόω", "verb", "μετᾰμορφόω", "", "", "", "to transform disguise"]) + let v = native_list_append(v, ["μορφόω", "verb", "μορφόομαι", "", "", "", "to shape form"]) + let v = native_list_append(v, ["μάχομαι", "verb", "μᾰ́χομαι", "", "", "", "to make war"]) + let v = native_list_append(v, ["εὐχαριστέω", "verb", "εὐχᾰρῐστέω", "", "", "", "to bestow a"]) + let v = native_list_append(v, ["χαρίζομαι", "verb", "χᾰρῐ́ζομαι", "", "", "", "to grant as"]) + let v = native_list_append(v, ["χαίρω", "verb", "χαίρομαι", "", "", "", "to be full"]) + let v = native_list_append(v, ["βάλλω", "verb", "βᾰ́λλω", "", "", "", "to throw cast"]) + let v = native_list_append(v, ["εἴωθα", "verb", "εἴωθᾰ", "", "", "", "to be accustomed"]) + let v = native_list_append(v, ["λάμπω", "verb", "λᾰ́μπω", "", "", "", "to shine be"]) + let v = native_list_append(v, ["δειγματίζω", "verb", "δειγμᾰτῐ́ζω", "", "", "", "to appear"]) + let v = native_list_append(v, ["σημαίνω", "verb", "σημαίνομαι", "", "", "", "to show point"]) + let v = native_list_append(v, ["ῥώννυμι", "verb", "ῥώννῡμῐ", "", "", "", "to strengthen"]) + let v = native_list_append(v, ["ῥύομαι", "verb", "ῥῡ́ομαι", "", "", "", "to protect guard"]) + let v = native_list_append(v, ["δέω", "verb", "δέομαι", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["κυβερνάω", "verb", "κῠβερνᾰ́ω", "", "", "", "to steer drive"]) + let v = native_list_append(v, ["λέγω", "verb", "λέγομαι", "", "", "", "to put in"]) + let v = native_list_append(v, ["εἰμί", "verb", "εἰμῐ́", "", "", "", "to be to"]) + let v = native_list_append(v, ["ἔρχομαι", "verb", "ᾖᾰ", "", "", "", "to go"]) + let v = native_list_append(v, ["λύεις", "verb", "λῡ́εις", "lū́eis", "", "", "second-person singular indicative"]) + let v = native_list_append(v, ["λύει", "verb", "λῡ́ει", "lū́ei", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λύομεν", "verb", "λῡ́ομεν", "lū́omen", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λύετε", "verb", "λῡ́ετε", "lū́ete", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λύουσι", "verb", "λῡ́ουσῐ", "lū́ousĭ", "λῡ́ουσῐν", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["λύουσιν", "verb", "λῡ́ουσῐν with movable nu", "lū́ousĭn", "λῡ́ουσῐ", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["λύῃς", "verb", "λῡ́ῃς", "lū́ēis", "", "", "second-person singular subjunctive"]) + let v = native_list_append(v, ["λύῃ", "verb", "λῡ́ῃ", "lū́ēi", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λύωμεν", "verb", "λῡ́ωμεν", "lū́ōmen", "", "", "first-person plural subjunctive"]) + let v = native_list_append(v, ["λύητε", "verb", "λῡ́ητε", "lū́ēte", "", "", "second-person plural subjunctive"]) + let v = native_list_append(v, ["λύωσι", "verb", "λῡ́ωσῐ", "lū́ōsĭ", "λῡ́ωσῐν", "", "third-person plural subjunctive"]) + let v = native_list_append(v, ["λύωσιν", "verb", "λῡ́ωσῐν", "lū́ōsĭn", "λῡ́ωσῐ", "", "third-person plural subjunctive"]) + let v = native_list_append(v, ["λῦε", "verb", "lûe", "", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λυέτω", "verb", "λῡέτω", "lūétō", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["λυέτωσαν", "verb", "λῡέτωσᾰν", "lūétōsăn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["λύειν", "verb", "λῡ́ειν", "lū́ein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἔργου", "verb", "érgou", "", "", "", "inflection of ἔργω"]) + let v = native_list_append(v, ["φεύγω", "verb", "φεύγομαι", "", "", "", "to flee run"]) + let v = native_list_append(v, ["γείνομαι", "verb", "ἐγεινόμην", "", "", "", "to be born"]) + let v = native_list_append(v, ["γλαγάω", "verb", "γλᾰγᾰ́ω", "", "", "", "to be milky"]) + let v = native_list_append(v, ["ἀποθνῄσκω", "verb", "ἀπέθνῃσκον", "", "", "", "Strengthened form of"]) + let v = native_list_append(v, ["ἀποθανεῖν", "verb", "ἀποθᾰνεῖν", "apothăneîn", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["ἀπέθανον", "verb", "ᾰ̓πέθᾰνον", "ăpéthănon", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["γίγνομαι", "verb", "γῐ́γνομαι", "", "", "", "to come into"]) + let v = native_list_append(v, ["ἀποθανέομαι", "verb", "ᾰ̓ποθᾰνέομαι", "ăpothănéomai", "", "", "first-person singular future"]) + let v = native_list_append(v, ["τέθνηκα", "verb", "τέθνηκᾰ", "téthnēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["φιλέω", "verb", "φῐλέω", "", "", "", "to love like"]) + let v = native_list_append(v, ["δοκέω", "verb", "δοκέομαι", "", "", "", "to expect think"]) + let v = native_list_append(v, ["στοχάζομαι", "verb", "στοχᾰ́ζομαι", "", "", "", "to aim for"]) + let v = native_list_append(v, ["δέχομαι", "verb", "ἐδεχόμην", "", "", "", "to accept receive"]) + let v = native_list_append(v, ["ἀγαλλιάω", "verb", "ἀγαλλιᾰ́ω", "", "", "", "to be overjoyed"]) + let v = native_list_append(v, ["ἀγνοέω", "verb", "ἀγνοέομαι", "", "", "", "to not perceive"]) + let v = native_list_append(v, ["γνωρίζω", "verb", "γνωρῐ́ζω", "", "", "", "to make known"]) + let v = native_list_append(v, ["βλαστάνω", "verb", "βλᾰστᾰ́νω", "", "", "", "to sprout bud"]) + let v = native_list_append(v, ["προϊόν", "verb", "proïón", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["θεῖον", "verb", "theîon", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["τετέλεσται", "verb", "tetélestai", "", "", "", "perfect mediopassive third-person"]) + let v = native_list_append(v, ["βαίνω", "verb", "βαίνομαι", "", "", "", "to go step"]) + let v = native_list_append(v, ["βρύχω", "verb", "βρύχομαι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["βρύκω", "verb", "βρῡ́κω", "", "", "", "to devour gobble"]) + let v = native_list_append(v, ["κρατέω", "verb", "κρᾰτέω", "", "", "", "to rule command"]) + let v = native_list_append(v, ["πλουτοκρατέομαι", "verb", "πλουτοκρᾰτέω", "", "", "", "to be governed"]) + let v = native_list_append(v, ["νάω", "verb", "νᾱ́ω", "", "", "", "to flow over"]) + let v = native_list_append(v, ["τρώγω", "verb", "τρώγομαι", "", "", "", "to gnaw to"]) + let v = native_list_append(v, ["δύω", "verb", "δῡ́ω", "", "", "", "to cause to"]) + let v = native_list_append(v, ["καταλαμβάνω", "verb", "κᾰτᾰλᾰμβᾰ́νω", "", "", "", "to seize grasp"]) + let v = native_list_append(v, ["σοφίζω", "verb", "σοφῐ́ζω", "", "", "", "to make wise"]) + let v = native_list_append(v, ["ἀμαρύσσω", "verb", "ᾰ̓μᾰρῠ́σσω", "", "", "", "to sparkle twinkle"]) + let v = native_list_append(v, ["δέρκομαι", "verb", "ἐδερκόμην", "", "", "", "to see see"]) + let v = native_list_append(v, ["δρακεῖν", "verb", "δρᾰκεῖν", "drăkeîn", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["αἴθω", "verb", "αἴθομαι", "", "", "", "to ignite kindle"]) + let v = native_list_append(v, ["ἑλληνίζω", "verb", "ἑλληνῐ́ζω", "", "", "", "to speak or"]) + let v = native_list_append(v, ["στέφω", "verb", "στέφομαι", "", "", "", "to put around"]) + let v = native_list_append(v, ["ἀντλέω", "verb", "ἀντλέομαι", "", "", "", "to bail out"]) + let v = native_list_append(v, ["ἔχω", "verb", "ἔχομαι", "", "", "", "to have possess"]) + let v = native_list_append(v, ["κείρω", "verb", "κείρομαι", "", "", "", "to shear shave"]) + let v = native_list_append(v, ["ἐγέννησε", "verb", "egénnēse", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀποπλήσσω", "verb", "ἀποπλήσσομαι", "", "", "", "to strike to"]) + let v = native_list_append(v, ["ὀνομάζω", "verb", "ὀνομᾰ́ζω", "", "", "", "to speak of"]) + let v = native_list_append(v, ["σιγάω", "verb", "σῑγᾰ́ω", "", "", "", "to be silent"]) + let v = native_list_append(v, ["βλέπω", "verb", "βλέπομαι", "", "", "", "to look at"]) + let v = native_list_append(v, ["φιλῶ", "verb", "philô", "", "", "", "contracted form of"]) + let v = native_list_append(v, ["γράφειν", "verb", "γρᾰ́φειν", "grắphein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["μέλλων", "verb", "first", "third declension", "méllōn", "", "present active participle"]) + let v = native_list_append(v, ["μέλλον", "verb", "méllon", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["μέλλοντας", "verb", "μέλλοντᾰς", "méllontăs", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["παρόν", "verb", "πᾰρόν", "părón", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ψηφίζω", "verb", "ψηφῐ́ζω", "", "", "", "to count or"]) + let v = native_list_append(v, ["διαλέγω", "verb", "δῐᾰλέγω", "", "", "", "to choose gather"]) + let v = native_list_append(v, ["ἀποκόπτω", "verb", "ᾰ̓ποκόπτω", "", "", "", "to cut off"]) + let v = native_list_append(v, ["κόπτω", "verb", "κόπτομαι", "", "", "", "to strike cut"]) + let v = native_list_append(v, ["καθεστώς", "verb", "κᾰθεστώς", "kăthestṓs", "κᾰθεστῶσα", "", "perfect active participle"]) + let v = native_list_append(v, ["διαλέγομαι", "verb", "δῐᾰλέγομαι", "", "", "", "to converse hold"]) + let v = native_list_append(v, ["καταγράφω", "verb", "κᾰτᾰγρᾰ́φω", "", "", "", "to scratch away"]) + let v = native_list_append(v, ["στείβω", "verb", "στείβομαι", "", "", "", "to tread on"]) + let v = native_list_append(v, ["κάμνω", "verb", "κᾰ́μνω", "", "", "", "to exert oneself"]) + let v = native_list_append(v, ["βάζω", "verb", "βᾰ́ζω", "", "", "", "speak talk say"]) + let v = native_list_append(v, ["νηστεύω", "verb", "νηστεύομαι", "", "", "", "to fast abstain"]) + let v = native_list_append(v, ["συντάσσω", "verb", "σῠντᾰ́σσω", "", "", "", "to put in"]) + let v = native_list_append(v, ["καταλύω", "verb", "κᾰτᾰλῡ́ω", "", "", "", "to loosen unbind"]) + let v = native_list_append(v, ["σχεδιάζω", "verb", "σχεδῐᾰ́ζω", "", "", "", "to do something"]) + let v = native_list_append(v, ["βρέχω", "verb", "βρέχομαι", "", "", "", "to wet to"]) + let v = native_list_append(v, ["ὕω", "verb", "ῡ̔́ω", "", "", "", "to rain"]) + let v = native_list_append(v, ["ἄω", "verb", "áō", "", "", "", "to blow"]) + let v = native_list_append(v, ["ἄημι", "verb", "ᾰ̓́ημῐ", "", "", "", "to breathe blow"]) + let v = native_list_append(v, ["ἀΐσσω", "verb", "ᾱ̓ῑ̈́σσω", "", "", "", "to move quickly"]) + let v = native_list_append(v, ["ἵημι", "verb", "ῑ̔́ημῐ", "", "", "", "to release let"]) + let v = native_list_append(v, ["λάω", "verb", "λᾰ́ω", "lắō", "", "", "to see"]) + let v = native_list_append(v, ["ζέω", "verb", "ἔζεον", "", "", "", "to boil seethe"]) + let v = native_list_append(v, ["ζῶ", "verb", "ἔζων", "", "", "", "to live"]) + let v = native_list_append(v, ["θέω", "verb", "ἔθεον", "", "", "", "to run fast"]) + let v = native_list_append(v, ["παρών", "verb", "πᾰρών", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["παρουσιάζω", "verb", "πᾰρουσῐᾰ́ζω", "", "", "", "to be present"]) + let v = native_list_append(v, ["συνδέω", "verb", "συνδέομαι", "", "", "", "tie together bind"]) + let v = native_list_append(v, ["ἐάω", "verb", "ἐᾰ́ω", "", "", "", "to let someone"]) + let v = native_list_append(v, ["μέμφομαι", "verb", "ἐμεμφόμην", "", "", "", "to accuse to"]) + let v = native_list_append(v, ["ἀλέξω", "verb", "ᾰ̓λέξω", "", "", "", "to keep off"]) + let v = native_list_append(v, ["κρίνω", "verb", "κρῑ́νω", "", "", "", "to separate divide"]) + let v = native_list_append(v, ["κυκλόω", "verb", "κῠκλόω", "", "", "", "to encircle surround"]) + let v = native_list_append(v, ["νικάω", "verb", "νῑκᾰ́ω", "", "", "", "to win be"]) + let v = native_list_append(v, ["νενικήκαμεν", "verb", "νενῑκήκᾰμεν", "nenīkḗkămen", "", "", "perfect active indicative"]) + let v = native_list_append(v, ["πλέω", "verb", "πλέομαι", "", "", "", "to sail in"]) + let v = native_list_append(v, ["ἐπεντίθημι", "verb", "ἐπεντῐ́θημῐ", "", "", "", "to insert a"]) + let v = native_list_append(v, ["ἐντίθημι", "verb", "ἐντῐ́θημῐ", "", "", "", "to put in"]) + let v = native_list_append(v, ["τίθημι", "verb", "τῐ́θημῐ", "", "", "", "to put place"]) + let v = native_list_append(v, ["πατέω", "verb", "πᾰτέω", "", "", "", "to walk to"]) + let v = native_list_append(v, ["τέμνω", "verb", "τέμνομαι", "", "", "", "to cut hew"]) + let v = native_list_append(v, ["φλέω", "verb", "φλέομαι", "", "", "", "to overflow teem"]) + let v = native_list_append(v, ["κείρειν", "verb", "keírein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀείδω", "verb", "ᾰ̓είδω", "", "", "", "to sing chant"]) + let v = native_list_append(v, ["ἰάομαι", "verb", "ῑ̓ᾰ́ομαι", "", "", "", "to cure heal"]) + let v = native_list_append(v, ["παραδείκνυμι", "verb", "πᾰρᾰδείκνῡμῐ", "", "", "", "to hold up"]) + let v = native_list_append(v, ["δαμάζω", "verb", "δᾰμάζω", "", "", "", "to tame subdue"]) + let v = native_list_append(v, ["δάμνημι", "verb", "δάμνημῐ", "", "", "", "synonym of δαμάζω"]) + let v = native_list_append(v, ["δαμνάω", "verb", "δαμνᾰ́ω", "", "", "", "synonym of δαμάζω"]) + let v = native_list_append(v, ["δίδωμι", "verb", "δῐ́δωμῐ", "", "", "", "to give to"]) + let v = native_list_append(v, ["θάλλω", "verb", "θᾰ́λλω", "", "", "", "to bloom sprout"]) + let v = native_list_append(v, ["πέπυσμαι", "verb", "πέπῠσμαι", "pépŭsmai", "", "", "perfect mediopassive indicative"]) + let v = native_list_append(v, ["πυνθάνομαι", "verb", "πῠνθᾰ́νομαι", "", "", "", "to learn"]) + let v = native_list_append(v, ["φλέγω", "verb", "φλέγομαι", "", "", "", "to set on"]) + let v = native_list_append(v, ["παραγγέλλω", "verb", "πᾰρᾰγγέλλω", "", "", "", "to pass on"]) + let v = native_list_append(v, ["γεγονός", "verb", "gegonós", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["παραπέμπω", "verb", "πᾰρᾰπέμπω", "", "", "", "to send past"]) + let v = native_list_append(v, ["δαρθάνω", "verb", "δᾰρθᾰ́νω", "", "", "", "to sleep fall"]) + let v = native_list_append(v, ["ἐκδύω", "verb", "ἐκδῠ́ω", "", "", "", "to take off"]) + let v = native_list_append(v, ["πέπτω", "verb", "πέπτομαι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["πέσσω", "verb", "πέσσομαι", "", "", "", "to soften ripen"]) + let v = native_list_append(v, ["μαντεύομαι", "verb", "μᾰντεύω", "", "", "", "to divine prophesy"]) + let v = native_list_append(v, ["μαίνομαι", "verb", "μᾰνέομαι", "", "", "", "to be mad"]) + let v = native_list_append(v, ["μένω", "verb", "ἔμενον", "", "", "", "to stay wait"]) + let v = native_list_append(v, ["παρασκευάζω", "verb", "πᾰρᾰσκευᾰ́ζω", "", "", "", "to prepare make"]) + let v = native_list_append(v, ["ὁράω", "verb", "ὁρᾰ́ω", "", "", "", "to look with"]) + let v = native_list_append(v, ["ἐρείπω", "verb", "ἐρείπομαι", "", "", "", "to throw or"]) + let v = native_list_append(v, ["οἴφω", "verb", "οἴφομαι", "", "", "", "to fuck someone"]) + let v = native_list_append(v, ["φενακίζω", "verb", "φενᾱκῐ́ζω", "", "", "", "to lie"]) + let v = native_list_append(v, ["εἶπον", "verb", "εἰπόμην", "", "", "", "to say speak"]) + let v = native_list_append(v, ["τύπτω", "verb", "τῠ́πτω", "", "", "", "to beat strike"]) + let v = native_list_append(v, ["κεντέω", "verb", "κεντέομαι", "", "", "", "to prick sting"]) + let v = native_list_append(v, ["ἐμέω", "verb", "ἐμέομαι", "", "", "", "to vomit throw"]) + let v = native_list_append(v, ["ἔλδομαι", "verb", "ἐέλδομαι", "", "", "", "to wish long"]) + let v = native_list_append(v, ["φαίνω", "verb", "φαίνομαι", "", "", "", "to cause to"]) + let v = native_list_append(v, ["σείω", "verb", "σείομαι", "", "", "", "to shake"]) + let v = native_list_append(v, ["πληθύνω", "verb", "πληθῡ́νω", "", "", "", "to increase multiply"]) + let v = native_list_append(v, ["πίμπλημι", "verb", "πῐ́μπλημῐ", "", "", "", "to fill"]) + let v = native_list_append(v, ["ἐκτείνω", "verb", "ἐκτείνομαι", "", "", "", "to stretch out"]) + let v = native_list_append(v, ["τείνω", "verb", "τείνομαι", "", "", "", "to stretch extend"]) + let v = native_list_append(v, ["ἡγέομαι", "verb", "ἡγοῦμαι", "", "", "", "to go before"]) + let v = native_list_append(v, ["ἁρμόζω", "verb", "ἁρμόζομαι", "", "", "", "to fit together"]) + let v = native_list_append(v, ["ἀμέλγω", "verb", "ᾰ̓μέλγω", "", "", "", "to milk to"]) + let v = native_list_append(v, ["γινώσκω", "verb", "γῑνώσκω", "", "", "", "Ionic Koine and"]) + let v = native_list_append(v, ["γιγνώσκω", "verb", "γῐγνώσκω", "", "", "", "to be aware"]) + let v = native_list_append(v, ["συλλογίζομαι", "verb", "σῠλλογῐ́ζομαι", "", "", "", "to compute calculate"]) + let v = native_list_append(v, ["χειρουργέω", "verb", "χειρουργέομαι", "", "", "", "to work with"]) + let v = native_list_append(v, ["μανθάνω", "verb", "μᾰνθᾰ́νω", "", "", "", "to learn"]) + let v = native_list_append(v, ["σέβομαι", "verb", "ἐσεβόμην", "", "", "", "to be moved"]) + let v = native_list_append(v, ["συγχαίρω", "verb", "συγχαίρομαι", "", "", "", "to congratulate"]) + let v = native_list_append(v, ["πείρω", "verb", "πείρομαι", "", "", "", "to pierce run"]) + let v = native_list_append(v, ["ὑποτρίβω", "verb", "ῠ̔ποτρῑ́βω", "", "", "", "to rub off"]) + let v = native_list_append(v, ["τρίβω", "verb", "τρῑ́βω", "", "", "", "to rub"]) + let v = native_list_append(v, ["ἀποφθέγγομαι", "verb", "ἀπεφθεγγόμην", "", "", "", "to speak ones"]) + let v = native_list_append(v, ["φθέγγομαι", "verb", "ἐφθεγγόμην", "", "", "", "to make a"]) + let v = native_list_append(v, ["διαφέρω", "verb", "δῐᾰφέρω", "", "", "", "to carry over"]) + let v = native_list_append(v, ["ἐπιφαίνω", "verb", "ἐπῐφαίνω", "", "", "", "to shine shed"]) + let v = native_list_append(v, ["καταχέω", "verb", "κᾰτᾰχέω", "", "", "", "to pour down"]) + let v = native_list_append(v, ["κατακεχυμένος", "verb", "κᾰτᾰκεχῠμένος", "kătăkekhŭménos", "κᾰτᾰκεχῠμένη", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["ἔδμεναι", "verb", "édmenai", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἔδω", "verb", "ἔδομαι", "", "", "", "poetic form of"]) + let v = native_list_append(v, ["εἶμι", "verb", "εἶμῐ", "", "", "", "to be going"]) + let v = native_list_append(v, ["μεταφράζω", "verb", "μετᾰφρᾰ́ζω", "", "", "", "to paraphrase"]) + let v = native_list_append(v, ["τρέχω", "verb", "ἔτρεχον", "", "", "", "to run"]) + let v = native_list_append(v, ["ἐστί", "verb", "ἐστῐ́", "estĭ́", "ἔστι", "", "third-person singular present"]) + let v = native_list_append(v, ["καθεστώτων", "verb", "κᾰθεστώτων", "kăthestṓtōn", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["παρόντα", "verb", "πᾰρόντᾰ", "păróntă", "", "", "inflection of πᾰρών"]) + let v = native_list_append(v, ["παρόντων", "verb", "πᾰρόντων", "păróntōn", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["παρόντος", "verb", "πᾰρόντος", "păróntos", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["παραλείπω", "verb", "πᾰρᾰλείπω", "", "", "", "to pass over"]) + let v = native_list_append(v, ["λείπω", "verb", "λείπομαι", "", "", "", "to leave leave"]) + let v = native_list_append(v, ["φύω", "verb", "φῠ́ω", "", "", "", "to bring forth"]) + let v = native_list_append(v, ["φύομαι", "verb", "φῠ́ομαι", "phŭ́omai", "", "", "present middle indicative"]) + let v = native_list_append(v, ["βαττολογέω", "verb", "βαττολογέομαι", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["βατταλογέω", "verb", "βατταλογέομαι", "", "", "", "to stammer"]) + let v = native_list_append(v, ["ὄζω", "verb", "ὦζον", "", "", "", "to smell i.e."]) + let v = native_list_append(v, ["ὄζων", "verb", "first", "third declension", "ózōn", "", "present active participle"]) + let v = native_list_append(v, ["ὄζον", "verb", "ózon", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["γεύομαι", "verb", "geúomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["γεύω", "verb", "γεύομαι", "", "", "", "to give to"]) + let v = native_list_append(v, ["θεπτάνων", "verb", "theptánōn", "", "", "", "Hesychius gives the"]) + let v = native_list_append(v, ["νέοι", "verb", "néoi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νέων", "verb", "néōn", "νέουσᾰ", "νέον", "", "present active participle"]) + let v = native_list_append(v, ["μαρμαίρω", "verb", "μᾰρμαίρω", "", "", "", "to flash sparkle"]) + let v = native_list_append(v, ["φώγω", "verb", "φώγομαι", "", "", "", "to roast toast"]) + let v = native_list_append(v, ["ἕπομαι", "verb", "εἱπόμην", "", "", "", "to follow obey"]) + let v = native_list_append(v, ["ἕζομαι", "verb", "ἑζόμην", "", "", "", "to sit sit"]) + let v = native_list_append(v, ["πέλω", "verb", "πέλομαι", "", "", "", "to be"]) + let v = native_list_append(v, ["πέλομαι", "verb", "pélomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἐπιστέλλω", "verb", "ἐπῐστέλλω", "", "", "", "to send to"]) + let v = native_list_append(v, ["στέλλω", "verb", "στέλλομαι", "", "", "", "to make ready"]) + let v = native_list_append(v, ["πέρνα", "verb", "πέρνᾰ", "pérnă", "", "", "second-person singular present"]) + let v = native_list_append(v, ["πέκω", "verb", "πέκομαι", "", "", "", "to comb card"]) + let v = native_list_append(v, ["δεικνύω", "verb", "δεικνῠ́ω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["δείκνυμι", "verb", "δείκνῡμῐ", "", "", "", "to show point"]) + let v = native_list_append(v, ["ἔφαγον", "verb", "φᾰ́γομαι", "", "", "", "to eat devour"]) + let v = native_list_append(v, ["κλίνω", "verb", "κλῑ́νω", "", "", "", "to bend slant"]) + let v = native_list_append(v, ["πλήσσω", "verb", "πλήσσομαι", "", "", "", "to strike smite"]) + let v = native_list_append(v, ["πλέκω", "verb", "πλέκομαι", "", "", "", "to plait twine"]) + let v = native_list_append(v, ["πέρδομαι", "verb", "ἐπερδόμην", "", "", "", "to fart to"]) + let v = native_list_append(v, ["πλανάω", "verb", "πλᾰνᾰ́ω", "", "", "", "to make to"]) + let v = native_list_append(v, ["πλάσσω", "verb", "πλᾰ́σσω", "", "", "", "to form to"]) + let v = native_list_append(v, ["τεταγών", "verb", "tetagṓn", "tetagōn", "", "", "having seized"]) + let v = native_list_append(v, ["τήκω", "verb", "τήκομαι", "", "", "", "to melt melt"]) + let v = native_list_append(v, ["τέρσομαι", "verb", "ἑτερσόμην", "", "", "", "to be or"]) + let v = native_list_append(v, ["κτίζω", "verb", "κτῐ́ζω", "", "", "", "to people"]) + let v = native_list_append(v, ["δαρδαίνει", "verb", "dardaínei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["χύνω", "verb", "χῠ́νω", "", "", "", "synonym of χέω"]) + let v = native_list_append(v, ["κακκάω", "verb", "κᾰκκᾰ́ω", "", "", "", "to defecate shit"]) + let v = native_list_append(v, ["καναχέω", "verb", "κᾰνᾰχέω", "", "", "", "to ring clash"]) + let v = native_list_append(v, ["γράω", "verb", "γράομαι", "", "", "", "to gnaw eat"]) + let v = native_list_append(v, ["χανδάνω", "verb", "χᾰνδᾰ́νω", "", "", "", "to take in"]) + let v = native_list_append(v, ["ἐπριάμην", "verb", "ἐπρῐάμην", "eprĭámēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["γαγγαίνειν", "verb", "γᾰγγαίνειν", "găngaínein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀσκέω", "verb", "ἀσκέομαι", "", "", "", "to give form"]) + let v = native_list_append(v, ["θείνω", "verb", "θείνομαι", "", "", "", "to strike wound"]) + let v = native_list_append(v, ["νήθω", "verb", "νήθομαι", "", "", "", "to spin"]) + let v = native_list_append(v, ["στέγω", "verb", "στέγομαι", "", "", "", "to cover closely"]) + let v = native_list_append(v, ["ἠθέω", "verb", "ἠθέομαι", "", "", "", "to sift strain"]) + let v = native_list_append(v, ["γογγύζω", "verb", "γογγῠ́ζω", "", "", "", "to mutter murmur"]) + let v = native_list_append(v, ["ἕρπω", "verb", "εἷρπον", "", "", "", "to move slowly"]) + let v = native_list_append(v, ["πτύω", "verb", "πτῡ́ω", "", "", "", "to spit out"]) + let v = native_list_append(v, ["ῥοφέω", "verb", "ῥοφέομαι", "", "", "", "to slurp gulp"]) + let v = native_list_append(v, ["προσθέτω", "verb", "prosthétō", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἑτεροζυγέω", "verb", "ἑτεροζῠγέω", "", "", "", "to be joined"]) + let v = native_list_append(v, ["σίζω", "verb", "σῐ́ζω", "", "", "", "to hiss especially"]) + let v = native_list_append(v, ["ἱδρόω", "verb", "ῐ̔δρόω", "", "", "", "to sweat perspire"]) + let v = native_list_append(v, ["εὕω", "verb", "εὕομαι", "", "", "", "to singe of"]) + let v = native_list_append(v, ["εὔχομαι", "verb", "ηὐχόμην", "", "", "", "to pray offer"]) + let v = native_list_append(v, ["ἐρεύγομαι", "verb", "ἠρευγόμην", "", "", "", "to spit or"]) + let v = native_list_append(v, ["ἄγχω", "verb", "ᾰ̓́γχω", "", "", "", "to compress to"]) + let v = native_list_append(v, ["ἅπτω", "verb", "ᾰ̔́πτω", "", "", "", "to kindle to"]) + let v = native_list_append(v, ["ἀρκέω", "verb", "ᾰ̓ρκέω", "", "", "", "to ward off"]) + let v = native_list_append(v, ["ὀρέγω", "verb", "ὀρέγομαι", "", "", "", "to reach stretch"]) + let v = native_list_append(v, ["πάλλω", "verb", "πᾰ́λλω", "", "", "", "to poise or"]) + let v = native_list_append(v, ["ὑποτείνω", "verb", "ῠ̔ποτείνω", "", "", "", "to stretch under"]) + let v = native_list_append(v, ["κύπτω", "verb", "κῠ́πτω", "", "", "", "to bend forward"]) + let v = native_list_append(v, ["εἴρω", "verb", "εἴρομαι", "", "", "", "to tie join"]) + let v = native_list_append(v, ["ἐνδύω", "verb", "ἐνδῠ́ω", "", "", "", "to go into"]) + let v = native_list_append(v, ["ἕννυμι", "verb", "ἕννῡμῐ", "", "", "", "to put clothes"]) + let v = native_list_append(v, ["ἔλπω", "verb", "ἔλπομαι", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ἐρέφω", "verb", "ἐρέφομαι", "", "", "", "to cover with"]) + let v = native_list_append(v, ["ἐρέπτομαι", "verb", "eréptomai", "", "", "", "to feed on"]) + let v = native_list_append(v, ["ἁρπάζω", "verb", "ἁρπᾰ́ζω", "", "", "", "to snatch away"]) + let v = native_list_append(v, ["ἀγγαρεύω", "verb", "ἀγγαρεύομαι", "", "", "", "to dispatch as"]) + let v = native_list_append(v, ["παύω", "verb", "παύομαι", "", "", "", "to make cease"]) + let v = native_list_append(v, ["λέχομαι", "verb", "ἐλεχόμην", "", "", "", "to lie down"]) + let v = native_list_append(v, ["λείβω", "verb", "λείβομαι", "", "", "", "to pour pour"]) + let v = native_list_append(v, ["ἐλελίζω", "verb", "ἐλελῐ́ζω", "", "", "", "to whirl around"]) + let v = native_list_append(v, ["λείχω", "verb", "λείχομαι", "", "", "", "to lick up"]) + let v = native_list_append(v, ["μέδω", "verb", "médō", "present", "grc-conj", "", "to protect rule"]) + let v = native_list_append(v, ["μέδομαι", "verb", "μεδόμην", "", "", "", "to provide for"]) + let v = native_list_append(v, ["ὀμείχω", "verb", "ὤμειχον", "", "", "", "to urinate"]) + let v = native_list_append(v, ["νίζω", "verb", "νῐ́ζω", "", "", "", "to wash the"]) + let v = native_list_append(v, ["λικμάω", "verb", "λικμᾰ́ω", "", "", "", "to winnow"]) + let v = native_list_append(v, ["νέμω", "verb", "νέμομαι", "", "", "", "to deal out"]) + let v = native_list_append(v, ["κήδω", "verb", "κήδομαι", "", "", "", "to trouble distress"]) + let v = native_list_append(v, ["μέλλοντα", "verb", "méllonta", "", "", "", "inflection of μέλλων"]) + let v = native_list_append(v, ["μέλλοντος", "verb", "méllontos", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["μελλόντων", "verb", "mellóntōn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["δόντι", "verb", "δόντῐ", "dóntĭ", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["παρελθόν", "verb", "πᾰρελθόν", "părelthón", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["ἀρόω", "verb", "ᾰ̓ρόω", "", "", "", "to plow to"]) + let v = native_list_append(v, ["μαραίνω", "verb", "μᾰραίνω", "", "", "", "to quench fire"]) + let v = native_list_append(v, ["διακρίνω", "verb", "δῐᾰκρῑ́νω", "", "", "", "to separate part"]) + let v = native_list_append(v, ["γραφόμενος", "verb", "γρᾰφόμενος", "grăphómenos", "γρᾰφομένη", "", "present mediopassive participle"]) + let v = native_list_append(v, ["γραφόμενα", "verb", "γρᾰφόμενᾰ", "grăphómenă", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ὄρνυμι", "verb", "ὄρνῡμῐ", "", "", "", "to set upon"]) + let v = native_list_append(v, ["ἐπιλαμβάνω", "verb", "ἐπῐλᾰμβᾰ́νω", "", "", "", "to take or"]) + let v = native_list_append(v, ["ἐπιλαμβάνομαι", "verb", "ἐπῐλαμβάνομαι", "epĭlambánomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ὁρίζω", "verb", "ὁρῐ́ζω", "", "", "", "to divide separate"]) + let v = native_list_append(v, ["ἀμύνω", "verb", "ᾰ̓μῡ́νω", "", "", "", "to keep off"]) + let v = native_list_append(v, ["ἀμύνομαι", "verb", "ᾰ̓μῡ́νομαι", "ămū́nomai", "", "", "present middle indicative"]) + let v = native_list_append(v, ["περιπλέκω", "verb", "περῐπλέκω", "", "", "", "to twine or"]) + let v = native_list_append(v, ["εἶ", "verb", "eî", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["πεῖσαι", "verb", "peîsai", "", "", "", "inflection of πείθω"]) + let v = native_list_append(v, ["τάσσω", "verb", "τᾰ́σσω", "", "", "", "to arrange put"]) + let v = native_list_append(v, ["ἵζω", "verb", "ῐ̔́ζω", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ἱζάνω", "verb", "ῐ̔ζᾰ́νω", "", "", "", "to cause to"]) + let v = native_list_append(v, ["μάσσω", "verb", "μᾰ́σσω", "", "", "", "to handle work"]) + let v = native_list_append(v, ["ξεῖ", "verb", "xeî", "", "", "", "inflection of ξέω"]) + let v = native_list_append(v, ["πήγνυμι", "verb", "πήγνῡμῐ", "", "", "", "to secure stick"]) + let v = native_list_append(v, ["φαίνομαι", "verb", "phaínomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ζητέω", "verb", "ζητέομαι", "", "", "", "to seek search"]) + let v = native_list_append(v, ["χορεύω", "verb", "χορεύομαι", "", "", "", "to dance in"]) + let v = native_list_append(v, ["εὐαγγελίζομαι", "verb", "εὐᾰγγελῐ́ζομαι", "euăngelĭ́zomai", "", "", "present middle indicative"]) + let v = native_list_append(v, ["πέτομαι", "verb", "ἐπετόμην", "", "", "", "to fly"]) + let v = native_list_append(v, ["κελεύω", "verb", "κελεύομαι", "", "", "", "to urge bid"]) + let v = native_list_append(v, ["παιδεύω", "verb", "παιδεύομαι", "", "", "", "to raise bring"]) + let v = native_list_append(v, ["πέμπω", "verb", "πέμπομαι", "", "", "", "to send dispatch"]) + let v = native_list_append(v, ["θύω", "verb", "θῡ́ω", "", "", "", "to rush in"]) + let v = native_list_append(v, ["φυλάττω", "verb", "φῠλᾰ́ττω", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["φυλάσσω", "verb", "φῠλᾰ́σσω", "", "", "", "to watch guard"]) + let v = native_list_append(v, ["τελέω", "verb", "τελέομαι", "", "", "", "to bring about"]) + let v = native_list_append(v, ["σκοπέω", "verb", "σκοπέομαι", "", "", "", "to look look"]) + let v = native_list_append(v, ["συλλαμβάνω", "verb", "σῠλλᾰμβᾰ́νω", "", "", "", "to collect gather"]) + let v = native_list_append(v, ["κινέω", "verb", "κῑνέω", "", "", "", "to set in"]) + let v = native_list_append(v, ["ζῶον", "verb", "zôon", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["σῴζω", "verb", "σῴζομαι", "", "", "", "to save"]) + let v = native_list_append(v, ["ἐθέλω", "verb", "ἤθελον", "", "", "", "usually weaker than"]) + let v = native_list_append(v, ["καίω", "verb", "καίομαι", "", "", "", "to light kindle"]) + let v = native_list_append(v, ["ποιϝέω", "verb", "ποιϝέομαι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐλεέω", "verb", "ἐλεέομαι", "", "", "", "to have pity"]) + let v = native_list_append(v, ["νέον", "verb", "néon", "", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["μαδάω", "verb", "μᾰδᾰ́ω", "", "", "", "to be moist"]) + let v = native_list_append(v, ["ἰδίω", "verb", "ἰδῑ́ω", "", "", "", "to sweat perspire"]) + let v = native_list_append(v, ["μεταφέρω", "verb", "μεταφέρομαι", "", "", "", "to carry over"]) + let v = native_list_append(v, ["ἀνταποδίδωμι", "verb", "ἀντᾰποδῐ́δωμῐ", "", "", "", "to give back"]) + let v = native_list_append(v, ["ἀγγέλλω", "verb", "ἀγγέλλομαι", "", "", "", "to carry deliver"]) + let v = native_list_append(v, ["αἰσθάνομαι", "verb", "ᾐσθανόμην", "", "", "", "to perceive apprehend"]) + let v = native_list_append(v, ["εὐάζω", "verb", "εὐᾱ́ζω", "", "", "", "to cry εὐαί"]) + let v = native_list_append(v, ["φράζω", "verb", "φρᾰ́ζω", "", "", "", "to make known"]) + let v = native_list_append(v, ["πωλέω", "verb", "πωλέομαι", "", "", "", "to sell"]) + let v = native_list_append(v, ["πωλεῖν", "verb", "pōleîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["κυκάω", "verb", "κῠκᾰ́ω", "", "", "", "to stir up"]) + let v = native_list_append(v, ["ῥέμβω", "verb", "ῥέμβομαι", "", "", "", "to turn in"]) + let v = native_list_append(v, ["ῥέμβομαι", "verb", "rhémbomai", "", "", "", "present middle indicative"]) + let v = native_list_append(v, ["θάπτω", "verb", "θᾰ́πτω", "", "", "", "to honour with"]) + let v = native_list_append(v, ["ὤν", "verb", "first", "third declension", "ṓn", "", "present active participle"]) + let v = native_list_append(v, ["ὄντος", "verb", "óntos", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["χέω", "verb", "χέομαι", "", "", "", "to pour"]) + let v = native_list_append(v, ["φέβομαι", "verb", "ἐφεβόμην", "", "", "", "to be put"]) + let v = native_list_append(v, ["ἔρρωσο", "verb", "érrhōso", "", "", "", "perfect mediopassive imperative"]) + let v = native_list_append(v, ["ἐκχέω", "verb", "ἐκχέομαι", "", "", "", "to pour out"]) + let v = native_list_append(v, ["πτύσσω", "verb", "πτῠ́σσω", "", "", "", "to fold"]) + let v = native_list_append(v, ["πετάννυμι", "verb", "πετᾰ́ννῡμῐ", "", "", "", "to spread out"]) + let v = native_list_append(v, ["λούω", "verb", "λούομαι", "", "", "", "to wash bathe"]) + let v = native_list_append(v, ["λαμβάνω", "verb", "λᾰμβᾰ́νω", "", "", "", "to take"]) + let v = native_list_append(v, ["λαλέω", "verb", "λᾰλέω", "", "", "", "to talk chat"]) + let v = native_list_append(v, ["λάλει", "verb", "λᾰ́λει", "lắlei", "λᾰ́λεε", "", "present active imperative"]) + let v = native_list_append(v, ["καλέω", "verb", "κᾰλέω", "", "", "", "to call summon"]) + let v = native_list_append(v, ["τίκτω", "verb", "τῐ́κτω", "", "", "", "to beget give"]) + let v = native_list_append(v, ["ἔραμαι", "verb", "ἔρᾰμαι", "", "", "", "to love usually"]) + let v = native_list_append(v, ["ἐξυπνίζω", "verb", "ἐξῠπνῐ́ζω", "", "", "", "to wake"]) + let v = native_list_append(v, ["ἀφυπνίζω", "verb", "ᾰ̓φῠπνῐ́ζω", "", "", "", "to wake"]) + let v = native_list_append(v, ["ἐκλείπω", "verb", "ἐκλείπομαι", "", "", "", "to leave out"]) + let v = native_list_append(v, ["κράζω", "verb", "κρᾱ́ζω", "", "", "", "to scream shriek"]) + let v = native_list_append(v, ["ἐξαφανίζω", "verb", "ἐξᾰφᾰνῐ́ζω", "", "", "", "to destroy utterly"]) + let v = native_list_append(v, ["παραμένω", "verb", "πᾰρᾰμένω", "", "", "", "to stay near"]) + let v = native_list_append(v, ["παρίστημι", "verb", "πᾰρῐ́στημῐ", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ἰατρεύω", "verb", "ῑ̓ᾱτρεύω", "", "", "", "to medically treat"]) + let v = native_list_append(v, ["ὀφείλω", "verb", "ὀφείλομαι", "", "", "", "to owe"]) + let v = native_list_append(v, ["ἐμοῦ", "verb", "emoû", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["λέγε", "verb", "lége", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["φίλει", "verb", "φῐ́λει", "phĭ́lei", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἅπτε", "verb", "ᾰ̔́πτε", "hắpte", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἐκλέλοιπας", "verb", "ἐκλέλοιπᾰς", "ekléloipăs", "", "", "perfect active indicative"]) + let v = native_list_append(v, ["πέφευγας", "verb", "πέφευγᾰς", "pépheugăs", "", "", "perfect active indicative"]) + let v = native_list_append(v, ["ἁρμόζει", "verb", "ᾰ̔ρμόζει", "hărmózei", "", "", "third-person singular present"]) + let v = native_list_append(v, ["εἶναι", "verb", "eînai", "ἔμμεναι", "εἶμεν", "", "present infinitive of"]) + let v = native_list_append(v, ["παραμένει", "verb", "πᾰρᾰμένει", "părăménei", "", "", "present active indicative"]) + let v = native_list_append(v, ["οἰκέω", "verb", "οἰκέομαι", "", "", "", "to inhabit"]) + let v = native_list_append(v, ["οἰκούμενος", "verb", "oikoúmenos", "Attic declension-2", "grc-adecl", "", "contracted present mediopassive"]) + let v = native_list_append(v, ["οἰκουμένη", "verb", "oikouménē", "οἰκεομένη", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["συντεταγμένη", "verb", "suntetagménē", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["καταφεύγω", "verb", "κᾰτᾰφεύγω", "", "", "", "to flee for"]) + let v = native_list_append(v, ["συγχρονίζω", "verb", "σῠγχρονῐ́ζω", "", "", "", "take the same"]) + let v = native_list_append(v, ["ἔλυον", "verb", "ἔλῡον", "élūon", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["ἀπών", "verb", "first", "third declension", "apṓn", "", "present participle of"]) + let v = native_list_append(v, ["εὐρύνω", "verb", "εὐρῡ́νω", "", "", "", "to broaden to"]) + let v = native_list_append(v, ["τρέφω", "verb", "τρέφομαι", "", "", "", "to make to"]) + let v = native_list_append(v, ["σπίζω", "verb", "spízō", "", "", "", "to pipe chirp"]) + let v = native_list_append(v, ["ὀλοφύρομαι", "verb", "ὀλοφῡ́ρομαι", "", "", "", "to lament wail"]) + let v = native_list_append(v, ["κολλάω", "verb", "κολλᾰ́ω", "", "", "", "to glue cement"]) + let v = native_list_append(v, ["ὑποκρίνομαι", "verb", "ῠ̔ποκρῑ́νομαι", "", "", "", "to answer"]) + let v = native_list_append(v, ["σπάω", "verb", "σπᾰ́ω", "", "", "", "to draw a"]) + let v = native_list_append(v, ["ξαίνω", "verb", "ξαίνομαι", "", "", "", "to comb or"]) + let v = native_list_append(v, ["ταριχεύω", "verb", "τᾰρῑχεύω", "", "", "", "to embalm"]) + let v = native_list_append(v, ["συνεργάζομαι", "verb", "σῠνεργᾰ́ζομαι", "", "", "", "to work with"]) + let v = native_list_append(v, ["χεῖν", "verb", "kheîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["προφέρω", "verb", "προφέρομαι", "", "", "", "to bring before"]) + let v = native_list_append(v, ["παγιδεύω", "verb", "πᾰγῐδεύω", "", "", "", "to lay a"]) + let v = native_list_append(v, ["νοσέω", "verb", "νοσέομαι", "", "", "", "to be sick"]) + let v = native_list_append(v, ["ἐπαινέειν", "verb", "epainéein", "ἐπαινεῖν", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἐπαινέω", "verb", "ἐπαινέομαι", "", "", "", "to approve applaud"]) + let v = native_list_append(v, ["παίειν", "verb", "paíein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["παίω", "verb", "παίομαι", "", "", "", "to strike hit"]) + let v = native_list_append(v, ["βρέμω", "verb", "βρέμομαι", "", "", "", "to roar"]) + let v = native_list_append(v, ["βρέμειν", "verb", "brémein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["φονεύω", "verb", "φονεύομαι", "", "", "", "to murder kill"]) + let v = native_list_append(v, ["ἕξω", "verb", "héxō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["πράσσω", "verb", "πρᾱ́σσω", "", "", "", "to do to"]) + let v = native_list_append(v, ["πράσσειν", "verb", "prássein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["θεωρέω", "verb", "θεωρέομαι", "", "", "", "to be sent"]) + let v = native_list_append(v, ["θεάομαι", "verb", "θεᾰ́ομαι", "", "", "", "to view watch"]) + let v = native_list_append(v, ["ἄρχων", "verb", "ᾰ̓́ρχων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["λέγειν", "verb", "légein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἄρχειν", "verb", "árkhein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["πεῖρα", "verb", "peîra", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["φαγεῖν", "verb", "φᾰγεῖν", "phăgeîn", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["ὑλακτέω", "verb", "ῠ̔λακτέω", "", "", "", "to bark of"]) + let v = native_list_append(v, ["περιτρέχω", "verb", "περῐτρέχω", "", "", "", "to run about"]) + let v = native_list_append(v, ["σημαίνειν", "verb", "sēmaínein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["χαίνω", "verb", "χαίνομαι", "", "", "", "late present of"]) + let v = native_list_append(v, ["χαίνειν", "verb", "khaínein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σήπειν", "verb", "sḗpein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σήπω", "verb", "σήπομαι", "", "", "", "to make rotten"]) + let v = native_list_append(v, ["ζηλόω", "verb", "ζηλόομαι", "", "", "", "to emulate"]) + let v = native_list_append(v, ["ἄγειν", "verb", "ágein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["καλεῖν", "verb", "kaleîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["γιγνώσκειν", "verb", "γῐγνώσκειν", "gĭgnṓskein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ποιεῖν", "verb", "poieîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["κλίνειν", "verb", "klínein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["πνεῖν", "verb", "pneîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["φαντάζω", "verb", "φᾰντᾰ́ζω", "", "", "", "to show to"]) + let v = native_list_append(v, ["φαντάζειν", "verb", "phantázein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["κρίνειν", "verb", "krínein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["τέμνειν", "verb", "témnein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ὁρίζειν", "verb", "horízein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀφορίζω", "verb", "ᾰ̓φορῐ́ζω", "", "", "", "to mark off"]) + let v = native_list_append(v, ["ἀφορίζειν", "verb", "aphorízein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["πέμπειν", "verb", "pémpein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["τρέπω", "verb", "τρέπομαι", "", "", "", "turn divert turn"]) + let v = native_list_append(v, ["τρέπειν", "verb", "trépein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σκοπεῖν", "verb", "skopeîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σκέπτεσθαι", "verb", "sképtesthai", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σκέπτομαι", "verb", "ἐσκεπτόμην", "", "", "", "to look at"]) + let v = native_list_append(v, ["ἀκροᾶσθαι", "verb", "ᾰ̓κροᾶσθαι", "ăkroâsthai", "ᾰ̓κροᾰ́εσθαι", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["δεδομένα", "verb", "δεδομένᾱ", "dedoménā", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["θαυμάζω", "verb", "θαυμᾰ́ζω", "", "", "", "to wonder marvel"]) + let v = native_list_append(v, ["θεραπεύειν", "verb", "therapeúein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["περιπατεῖν", "verb", "peripateîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἔχειν", "verb", "ékhein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["τιθέναι", "verb", "tithénai", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἕρπειν", "verb", "hérpein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["νικῶν", "verb", "νῑκῶν", "nīkôn", "Attic declension-3", "", "present active participle"]) + let v = native_list_append(v, ["λανθάνων", "verb", "first", "third declension", "lanthánōn", "", "present active participle"]) + let v = native_list_append(v, ["φράζειν", "verb", "phrázein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["κλάω", "verb", "κλᾰ́ω", "", "", "", "to break to"]) + let v = native_list_append(v, ["ἐργάζομαι", "verb", "ἐργᾰ́ζομαι", "", "", "", "to work labour"]) + let v = native_list_append(v, ["ἀποκαλύπτω", "verb", "ἀποκαλύπτομαι", "", "", "", "to reveal"]) + let v = native_list_append(v, ["χύτραν ποικίλλω", "verb", "χῠ́τρᾱν ποικῐ́λλω", "khŭ́trān poikĭ́llō", "", "", "to do something"]) + let v = native_list_append(v, ["θάλπω", "verb", "θᾰ́λπω", "", "", "", "to warm up"]) + let v = native_list_append(v, ["στίζω", "verb", "στίζομαι", "", "", "", "to tattoo"]) + let v = native_list_append(v, ["δέρω", "verb", "δέρομαι", "", "", "", "to skin flay"]) + let v = native_list_append(v, ["δέρειν", "verb", "dérein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["φέρειν", "verb", "phérein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["προτείνω", "verb", "προτείνομαι", "", "", "", "to stretch out"]) + let v = native_list_append(v, ["συμβαίνω", "verb", "σῠμβαίνω", "", "", "", "to stand with"]) + let v = native_list_append(v, ["σβέννυμι", "verb", "σβέννῡμῐ", "", "", "", "to quench extinguish"]) + let v = native_list_append(v, ["πλήσσειν", "verb", "plḗssein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["μαστιχάω", "verb", "μᾰστῐχᾰ́ω", "", "", "", "to grind the"]) + let v = native_list_append(v, ["συγγράφω", "verb", "σῠγγρᾰ́φω", "", "", "", "to write down"]) + let v = native_list_append(v, ["συνάπτω", "verb", "σῠνάπτω", "", "", "", "to join together"]) + let v = native_list_append(v, ["συνάπτειν", "verb", "sunáptein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἅπτειν", "verb", "ᾰ̔́πτειν", "hắptein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["δοκεῖν", "verb", "dokeîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["λαμβάνειν", "verb", "lambánein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["νοεῖν", "verb", "noeîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["νοέω", "verb", "νοέομαι", "", "", "", "to perceive observe"]) + let v = native_list_append(v, ["τείνειν", "verb", "teínein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["παρακαλέω", "verb", "πᾰρᾰκᾰλέω", "", "", "", "to call in"]) + let v = native_list_append(v, ["δοξάζω", "verb", "δοξᾰ́ζω", "", "", "", "to think suppose"]) + let v = native_list_append(v, ["ἐνθουσιάζω", "verb", "enthousiázō", "ἐνθουσιάω", "", "", "to be inspired"]) + let v = native_list_append(v, ["ἐνθουσιάζειν", "verb", "enthousiázein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ναρκόω", "verb", "ναρκόομαι", "", "", "", "to benumb"]) + let v = native_list_append(v, ["δηλέομαι", "verb", "δηλοῦμαι", "", "", "", "to hurt damage"]) + let v = native_list_append(v, ["πεινάω", "verb", "πεινῶ", "", "", "", "to be hungry"]) + let v = native_list_append(v, ["δρᾶν", "verb", "drân", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["δράω", "verb", "δρᾰ́ω", "", "", "", "to act to"]) + let v = native_list_append(v, ["πάσχω", "verb", "πᾰ́σχω", "", "", "", "to undergo experience"]) + let v = native_list_append(v, ["πάσχειν", "verb", "páskhein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["φημί", "verb", "φημῐ́", "", "", "", "to speak say"]) + let v = native_list_append(v, ["φάναι", "verb", "phánai", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["προσφέρω", "verb", "προσφέρομαι", "", "", "", "to bring to"]) + let v = native_list_append(v, ["συμφέρον", "verb", "sumphéron", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["μιμνήσκω", "verb", "μῐμνήσκω", "", "", "", "to remind with"]) + let v = native_list_append(v, ["ἀκροάομαι", "verb", "ᾰ̓κροᾰ́ομαι", "", "", "", "to listen"]) + let v = native_list_append(v, ["παρελθόντος", "verb", "πᾰρελθόντος", "părelthóntos", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["παρελθόντων", "verb", "πᾰρελθόντων", "părelthóntōn", "", "", "genitive plural masculine/neuter"]) + let v = native_list_append(v, ["παρελθόντα", "verb", "πᾰρελθόντᾰ", "părelthóntă", "", "", "inflection of πᾰρελθών"]) + let v = native_list_append(v, ["ἀποδείκνυμι", "verb", "ᾰ̓ποδείκνῡμῐ", "", "", "", "to demonstrate point"]) + let v = native_list_append(v, ["ἀποδεικνύναι", "verb", "ᾰ̓ποδεικνῠ́ναι", "ăpodeiknŭ́nai", "", "", "present active infinitive"]) + let v = native_list_append(v, ["δεικνύναι", "verb", "deiknúnai", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["μνᾶσθαι", "verb", "mnâsthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["σίγα", "verb", "σῑ́γᾱ", "sī́gā", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀποτειχίζω", "verb", "ἀποτειχῐ́ζω", "", "", "", "to wall off"]) + let v = native_list_append(v, ["ἀραρίσκω", "verb", "ᾰ̓ρᾰρίσκω", "", "", "", "join fasten"]) + let v = native_list_append(v, ["ἀνάπτω", "verb", "ᾰ̓νᾰ́πτω", "", "", "", "bind or make"]) + let v = native_list_append(v, ["ἀνημμένος", "verb", "anēmménos", "Attic declension-2", "grc-adecl", "", "perfect middle/passive participle"]) + let v = native_list_append(v, ["κεντεῖν", "verb", "kenteîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["γεννήσεις", "verb", "gennḗseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["πράξεις", "verb", "πρᾱ́ξεις", "prā́xeis", "", "", "second-person singular future"]) + let v = native_list_append(v, ["γελάω", "verb", "γελᾰ́ω", "", "", "", "to laugh"]) + let v = native_list_append(v, ["βαδίζω", "verb", "βᾰδίζω", "", "", "", "to go to"]) + let v = native_list_append(v, ["συντεταγμένης", "verb", "suntetagménēs", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["συντεταγμένων", "verb", "suntetagménōn", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["πίσω", "verb", "πῑ́σω", "pī́sō", "", "", "inflection of πῐπῑ́σκω"]) + let v = native_list_append(v, ["δοκιμάζω", "verb", "δοκιμᾰ́ζω", "", "", "", "to assay test"]) + let v = native_list_append(v, ["διαφεύγω", "verb", "δῐᾰφεύγω", "", "", "", "to escape"]) + let v = native_list_append(v, ["γεγονότος", "verb", "gegonótos", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["γεγονότα", "verb", "γεγονότᾰ", "gegonótă", "", "", "inflection of γεγονώς"]) + let v = native_list_append(v, ["γεγονότων", "verb", "gegonótōn", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["βράχε", "verb", "βρᾰ́χε", "brắkhe", "βρᾰ́χεν", "", "inflection of ἔβρᾰχον"]) + let v = native_list_append(v, ["χρίω", "verb", "χρῑ́ω", "", "", "", "to rub or"]) + let v = native_list_append(v, ["θείων", "verb", "first", "third declension", "theíōn", "", "present active participle"]) + let v = native_list_append(v, ["κινήσεις", "verb", "κῑνήσεις", "kīnḗseis", "", "", "second-person singular future"]) + let v = native_list_append(v, ["θέτω", "verb", "thétō", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["περιμένω", "verb", "περῐμένω", "", "", "", "to wait for"]) + let v = native_list_append(v, ["ἀείρω", "verb", "ἀείρομαι", "", "", "", "to lift up"]) + let v = native_list_append(v, ["ἀείρειν", "verb", "aeírein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["δούλου", "verb", "doúlou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["δέον", "verb", "déon", "", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["θείου", "verb", "theíou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["λαλεῖν", "verb", "laleîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["γίγνεσθαι", "verb", "gígnesthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["πωλήσεις", "verb", "pōlḗseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["πολέμου", "verb", "polémou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["προϊόντος", "verb", "proïóntos", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["προϊόντων", "verb", "proïóntōn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["προϊόντα", "verb", "προϊόντᾰ", "proïóntă", "", "", "inflection of προϊών"]) + let v = native_list_append(v, ["ἑτοιμάζω", "verb", "ἑτοιμᾰ́ζω", "", "", "", "to get ready"]) + let v = native_list_append(v, ["κηρύσσω", "verb", "κηρύσσομαι", "", "", "", "to be a"]) + let v = native_list_append(v, ["παραβάλλω", "verb", "πᾰρᾰβᾰ́λλω", "", "", "", "to throw beside"]) + let v = native_list_append(v, ["δίδω", "verb", "δῐ́δω", "", "", "", "Koine form of"]) + let v = native_list_append(v, ["στοιχείου", "verb", "stoikheíou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["δεδομένων", "verb", "dedoménōn", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["δεδομένου", "verb", "dedoménou", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τήκειν", "verb", "tḗkein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σφύζω", "verb", "σφύζομαι", "", "", "", "to throb"]) + let v = native_list_append(v, ["πόρε", "verb", "póre", "", "", "", "inflection of ἔπορον"]) + let v = native_list_append(v, ["πόροι", "verb", "póroi", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἑρπύζω", "verb", "ἑρπῠ́ζω", "", "", "", "to creep crawl"]) + let v = native_list_append(v, ["συγγραφείς", "verb", "first", "third declension", "sungrapheís", "", "aorist passive participle"]) + let v = native_list_append(v, ["πρέπει", "verb", "prépei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["μηνύω", "verb", "μηνῠ́ω", "", "", "", "to show to"]) + let v = native_list_append(v, ["τρυπάω", "verb", "τρῡπᾰ́ω", "", "", "", "to bore pierce"]) + let v = native_list_append(v, ["κοινόω", "verb", "κοινόομαι", "", "", "", "to make common"]) + let v = native_list_append(v, ["σπαταλάω", "verb", "σπᾰτᾰλᾰ́ω", "", "", "", "to live softly"]) + let v = native_list_append(v, ["συγκρούσεις", "verb", "sunkroúseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["διέκοψα", "verb", "δῐέκοψᾰ", "dĭékopsă", "", "", "first-person singular past"]) + let v = native_list_append(v, ["διέκρινα", "verb", "δῐέκρῑνᾰ", "dĭékrīnă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["θαύμασα", "verb", "θαύμᾰσᾰ", "thaúmăsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["κατέγραψα", "verb", "κᾰτέγρᾰψᾰ", "kătégrăpsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["κατέλυσα", "verb", "κᾰτέλῡσᾰ", "kătélūsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["μετέφρασα", "verb", "μετέφρᾰσᾰ", "metéphrăsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παρέπεμψα", "verb", "πᾰρέπεμψᾰ", "părépempsă", "", "", "first-person singular past"]) + let v = native_list_append(v, ["περιέπλεξα", "verb", "περῐέπλεξᾰ", "perĭéplexă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["περιέστρεψα", "verb", "περῐέστρεψᾰ", "perĭéstrepsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["συνέγραψα", "verb", "σῠνέγρᾰψᾰ", "sŭnégrăpsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["συνέταξα", "verb", "σῠνέταξᾰ", "sŭnétaxă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["χαίρομαι", "verb", "khaíromai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["συμφέρων", "verb", "first", "third declension", "sumphérōn", "", "present active participle"]) + let v = native_list_append(v, ["λαβών", "verb", "λᾰβών", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["ὦ", "verb", "ô", "ἔω", "", "", "first-person singular present"]) + let v = native_list_append(v, ["πλεονάζω", "verb", "πλεονᾰ́ζω", "", "", "", "to presume on"]) + let v = native_list_append(v, ["δραπετεύω", "verb", "δρᾱπετεύω", "", "", "", "to run away"]) + let v = native_list_append(v, ["καταρρέω", "verb", "κᾰταρρέω", "", "", "", "to flow down"]) + let v = native_list_append(v, ["προέρχομαι", "verb", "προηρχόμην", "", "", "", "to go forward"]) + let v = native_list_append(v, ["οὗ", "verb", "hoû", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἐκπίνω", "verb", "ἐκπῑ́νω", "", "", "", "to drink out"]) + let v = native_list_append(v, ["κάθομαι", "verb", "káthomai", "κάθουμαι", "", "", "—"]) + let v = native_list_append(v, ["ἀγγέλλειν", "verb", "angéllein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["μαρτυρέω", "verb", "μᾰρτῠρέω", "", "", "", "to bear witness"]) + let v = native_list_append(v, ["κοιμάω", "verb", "κοιμᾰ́ω", "", "", "", "to put to"]) + let v = native_list_append(v, ["ἀλέω", "verb", "ᾰ̓λέω", "", "", "", "to grind bruise"]) + let v = native_list_append(v, ["ἀλλοιόω", "verb", "ἀλλοιόομαι", "", "", "", "to make different"]) + let v = native_list_append(v, ["ἀλλοιοῦν", "verb", "alloioûn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀρτύνω", "verb", "ἀρτῡ́νω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἀρτύω", "verb", "ἀρτῡ́ω", "", "", "", "to arrange devise"]) + let v = native_list_append(v, ["βλύω", "verb", "βλῡ́ω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["βλύζω", "verb", "βλύζομαι", "", "", "", "to bubble or"]) + let v = native_list_append(v, ["βόσκω", "verb", "βόσκομαι", "", "", "", "feed tend"]) + let v = native_list_append(v, ["γενεαλογέω", "verb", "γενεᾱλογέω", "", "", "", "to trace ancestry"]) + let v = native_list_append(v, ["γένοιτο", "verb", "génoito", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["δέμω", "verb", "δέμομαι", "", "", "", "to build construct"]) + let v = native_list_append(v, ["διοικοδομέω", "verb", "δῐοικοδομέω", "", "", "", "to build across"]) + let v = native_list_append(v, ["ἐγείρω", "verb", "ἐγείρομαι", "", "", "", "to awaken wake"]) + let v = native_list_append(v, ["λατρεύω", "verb", "ἐλάτρευον", "", "", "", "to work for"]) + let v = native_list_append(v, ["ἐκρέω", "verb", "ἐκρέομαι", "", "", "", "to flow out"]) + let v = native_list_append(v, ["ἐκτειχίζω", "verb", "ἐκτειχῐ́ζω", "", "", "", "to fortify completely"]) + let v = native_list_append(v, ["τειχίζω", "verb", "τειχῐ́ζω", "", "", "", "to build a"]) + let v = native_list_append(v, ["ἐκτέμνω", "verb", "ἐκτέμνομαι", "", "", "", "to cut out"]) + let v = native_list_append(v, ["κύω", "verb", "κῠ́ω", "", "", "", "to conceive become"]) + let v = native_list_append(v, ["βδάλλω", "verb", "βδάλλομαι", "", "", "", "to milk to"]) + let v = native_list_append(v, ["ἔοικα", "verb", "ἔοικᾰ", "", "", "", "to seem likely"]) + let v = native_list_append(v, ["ἐπιρρέπω", "verb", "ἐπιρρέπομαι", "", "", "", "to lean towards"]) + let v = native_list_append(v, ["ῥέπω", "verb", "ῥέπομαι", "", "", "", "to incline one"]) + let v = native_list_append(v, ["ἐπιτέμνω", "verb", "ἐπῐτέμνω", "", "", "", "to cut upon"]) + let v = native_list_append(v, ["ἐπέχω", "verb", "ἐπέχομαι", "", "", "", "to have or"]) + let v = native_list_append(v, ["ἐφάπτω", "verb", "ἐφᾰ́πτω", "ephắptō", "ἐπᾰ́πτω", "", "to bind on"]) + let v = native_list_append(v, ["θειόω", "verb", "θειόομαι", "", "", "", "to smoke with"]) + let v = native_list_append(v, ["θειάζω", "verb", "θειᾰ́ζω", "", "", "", "to consult oracles"]) + let v = native_list_append(v, ["ἱλάσκομαι", "verb", "ῑ̔λᾰ́σκομαι", "", "", "", "to appease conciliate"]) + let v = native_list_append(v, ["ἵλημι", "verb", "hílēmi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἱλήκω", "verb", "ῑ̔λήκω", "", "", "", "to be gracious"]) + let v = native_list_append(v, ["ἰθύνω", "verb", "ῑ̓θῡ́νω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["καλύπτω", "verb", "κᾰλῠ́πτω", "", "", "", "to cover"]) + let v = native_list_append(v, ["καταμειδιάειν", "verb", "κᾰτᾰμειδῐάειν", "kătămeidĭáein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["καταμειδιάω", "verb", "κᾰτᾰμειδῐᾰ́ω", "", "", "", "to smile at"]) + let v = native_list_append(v, ["μειδάω", "verb", "μειδιᾰ́ω", "", "", "", "to smile"]) + let v = native_list_append(v, ["κατηχέω", "verb", "κᾰτηχέω", "", "", "", "to resound"]) + let v = native_list_append(v, ["ἠχέω", "verb", "ἠχέομαι", "", "", "", "to sound ring"]) + let v = native_list_append(v, ["κέλλω", "verb", "κέλλομαι", "", "", "", "to drive on"]) + let v = native_list_append(v, ["ὑπόκειμαι", "verb", "ὑπεκείμην", "", "", "", "to lie under"]) + let v = native_list_append(v, ["κεῖμαι", "verb", "ἐκείμην", "", "", "", "to lie lie"]) + let v = native_list_append(v, ["ὑποκείμενον", "verb", "hupokeímenon", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ὑποκείμενος", "verb", "hupokeímenos", "Attic declension-2", "grc-adecl", "", "present middle/passive participle"]) + let v = native_list_append(v, ["σημείου", "verb", "sēmeíou", "", "", "", "inflection of σημειόω"]) + let v = native_list_append(v, ["κλέω", "verb", "κλέομαι", "", "", "", "to tell of"]) + let v = native_list_append(v, ["λέξεις", "verb", "léxeis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["μίγνυμι", "verb", "μῑ́γνῡμῐ", "", "", "", "to mix to"]) + let v = native_list_append(v, ["νίφω", "verb", "νῑ́φω", "", "", "", "to snow"]) + let v = native_list_append(v, ["κτείνω", "verb", "κτείνομαι", "", "", "", "to kill slay"]) + let v = native_list_append(v, ["ξύω", "verb", "ξῡ́ω", "", "", "", "to scrape scratch"]) + let v = native_list_append(v, ["οἰδέω", "verb", "οἰδέομαι", "", "", "", "to swell become"]) + let v = native_list_append(v, ["ὀφέλλω", "verb", "ὀφέλλομαι", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["περισωρεύω", "verb", "περῐσωρεύω", "perĭsōreúō", "", "", "to heap all"]) + let v = native_list_append(v, ["σωρεύω", "verb", "σωρεύομαι", "", "", "", "to heap one"]) + let v = native_list_append(v, ["περιφέρω", "verb", "περῐφέρω", "", "", "", "to carry round"]) + let v = native_list_append(v, ["περιφερόμενος", "verb", "peripherómenos", "Attic declension-2", "grc-adecl", "", "present middle/passive indicative"]) + let v = native_list_append(v, ["πιλέω", "verb", "πῑλέω", "", "", "", "to compress wool"]) + let v = native_list_append(v, ["προβάλλω", "verb", "προβάλλομαι", "", "", "", "to throw or"]) + let v = native_list_append(v, ["προφητίζειν", "verb", "προφητῐ́ζειν", "prophētĭ́zein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["προφητίζω", "verb", "προφητῐ́ζω", "prophētĭ́zō", "", "", "alternative form of"]) + let v = native_list_append(v, ["προφητεύω", "verb", "προφητεύομαι", "", "", "", "to be a"]) + let v = native_list_append(v, ["πρέπω", "verb", "ἔπρεπον", "", "", "", "to be clearly"]) + let v = native_list_append(v, ["ῥαίνω", "verb", "ῥαίνομαι", "", "", "", "to sprinkle"]) + let v = native_list_append(v, ["ῥέπων", "verb", "first", "third declension", "rhépōn", "", "present active participle"]) + let v = native_list_append(v, ["σιωπᾶν", "verb", "siōpân", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σιωπάω", "verb", "σῐωπᾰ́ω", "", "", "", "to be silent"]) + let v = native_list_append(v, ["σκήπτω", "verb", "σκήπτομαι", "", "", "", "to prop stay"]) + let v = native_list_append(v, ["στραβίζειν", "verb", "στρᾰβῐ́ζειν", "străbĭ́zein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["στραβίζω", "verb", "στρᾰβίζω", "", "", "", "to have distorted"]) + let v = native_list_append(v, ["συντειχίζω", "verb", "συντειχίζομαι", "", "", "", "to help build"]) + let v = native_list_append(v, ["τρέω", "verb", "τρέομαι", "", "", "", "to flee from"]) + let v = native_list_append(v, ["βρύω", "verb", "βρῡ́ω", "", "", "", "to be full"]) + let v = native_list_append(v, ["φαινόμενος", "verb", "phainómenos", "Attic declension-2", "grc-adecl", "", "present middle/passive participle"]) + let v = native_list_append(v, ["φαινόμενον", "verb", "phainómenon", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["φράσσω", "verb", "φράσσομαι", "", "", "", "to fence in"]) + let v = native_list_append(v, ["χέζω", "verb", "χέζομαι", "", "", "", "to defecate shit"]) + let v = native_list_append(v, ["ψάω", "verb", "ψῶ", "", "", "", "to touch lightly"]) + let v = native_list_append(v, ["ψῆν", "verb", "psên", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἐπιφέρω", "verb", "ἐπιφέρομαι", "", "", "", "to bestow put"]) + let v = native_list_append(v, ["χωρίζω", "verb", "χωρῐ́ζω", "", "", "", "to separate divide"]) + let v = native_list_append(v, ["διαχωρίζω", "verb", "διαχωρῐ́ζω", "", "", "", "to separate"]) + let v = native_list_append(v, ["ἕν", "verb", "hén", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["σπείρω", "verb", "σπείρομαι", "", "", "", "to sow"]) + let v = native_list_append(v, ["ὠνέομαι", "verb", "ὠνοῦμαι", "", "", "", "to buy to"]) + let v = native_list_append(v, ["ἐκφέρω", "verb", "ἐκφέρομαι", "", "", "", "to carry out"]) + let v = native_list_append(v, ["ἔλασσον", "verb", "élasson", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἐξάγω", "verb", "ἐξᾰ́γω", "", "", "", "to lead out"]) + let v = native_list_append(v, ["πληρόω", "verb", "πληρόομαι", "", "", "", "to fill make"]) + let v = native_list_append(v, ["διατίθημι", "verb", "διατίθημῐ", "", "", "", "place separately arrange"]) + let v = native_list_append(v, ["ἑάφθη", "verb", "heáphthē", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["ἰαύω", "verb", "ῐ̓αύω", "", "", "", "to sleep pass"]) + let v = native_list_append(v, ["ἱλάων", "verb", "ῑ̔λᾱ́ων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ἀναχρονίζομαι", "verb", "ἀναχρονῐ́ζομαι", "", "", "", "to be an"]) + let v = native_list_append(v, ["χρονίζω", "verb", "χρονῐ́ζω", "", "", "", "to spend time"]) + let v = native_list_append(v, ["ἀθλέω", "verb", "ᾱ̓θλέω", "", "", "", "to contend for"]) + let v = native_list_append(v, ["λέγομαι", "verb", "légomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παίζω", "verb", "παίζομαι", "", "", "", "to play like"]) + let v = native_list_append(v, ["καταθέτω", "verb", "κᾰτᾰθέτω", "kătăthétō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["λανθάνοντος", "verb", "lanthánontos", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["λανθάνον", "verb", "lanthánon", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["λανθάνουσα", "verb", "lanthánousa", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["λανθάνοντα", "verb", "lanthánonta", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["λανθανόντων", "verb", "λᾰνθᾰνόντων", "lănthănóntōn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["λανθάνοντες", "verb", "lanthánontes", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["νομίζω", "verb", "νομῐ́ζω", "", "", "", "to use customarily"]) + let v = native_list_append(v, ["δηλώσεις", "verb", "dēlṓseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["λήγουσα", "verb", "λήγουσᾰ", "lḗgousă", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["φορέσατε", "verb", "φορέσᾰτε", "phorésăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["δουλεύω", "verb", "δουλεύομαι", "", "", "", "to be a"]) + let v = native_list_append(v, ["βάλω", "verb", "βᾰ́λω", "bắlō", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["βάλετε", "verb", "βᾰ́λετε", "bắlete", "βάλετ’", "", "inflection of βάλλω"]) + let v = native_list_append(v, ["βεβαιώσω", "verb", "bebaiṓsō", "", "", "", "inflection of βεβαιόω"]) + let v = native_list_append(v, ["βεβαιώσει", "verb", "bebaiṓsei", "", "", "", "inflection of βεβαιόω"]) + let v = native_list_append(v, ["βεβαιώσετε", "verb", "bebaiṓsete", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["βοηθήσω", "verb", "boēthḗsō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["βοηθήσεις", "verb", "boēthḗseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["βοηθήσει", "verb", "boēthḗsei", "", "", "", "inflection of βοηθέω"]) + let v = native_list_append(v, ["βάλατε", "verb", "βᾰ́λᾰτε", "bắlăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["βάλε", "verb", "βᾰ́λε", "bắle", "βάλ’", "", "inflection of βάλλω"]) + let v = native_list_append(v, ["βεβαιώσατε", "verb", "bebaiṓsate", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["βοηθήσατε", "verb", "βοηθήσᾰτε", "boēthḗsăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["κεκλεισμένων", "verb", "kekleisménōn", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["ψηφίσατε", "verb", "ψηφῐ́σᾰτε", "psēphĭ́săte", "", "", "second-person plural imperative"]) + let v = native_list_append(v, ["φυσάω", "verb", "φῡσᾰ́ω", "", "", "", "to blow to"]) + let v = native_list_append(v, ["κατάσχω", "verb", "κᾰτάσχω", "kătáskhō", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["καίειν", "verb", "kaíein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["κλαίω", "verb", "κλαίομαι", "", "", "", "to cry weep"]) + let v = native_list_append(v, ["τιμάω", "verb", "τῑμᾰ́ω", "", "", "", "to pay honor"]) + let v = native_list_append(v, ["καταστρέφω", "verb", "κᾰτᾰστρέφω", "", "", "", "to turn down"]) + let v = native_list_append(v, ["καταστρέφομαι", "verb", "κᾰτᾰστρέφομαι", "kătăstréphomai", "", "", "first-person singular mediopassive"]) + let v = native_list_append(v, ["κατέστρεψα", "verb", "κᾰτέστρεψᾰ", "kătéstrepsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["τορέω", "verb", "toréō", "", "", "", "to bore to"]) + let v = native_list_append(v, ["γυμνάζω", "verb", "γυμνᾰ́ζω", "", "", "", "to train naked"]) + let v = native_list_append(v, ["χρήσεις", "verb", "khrḗseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["κοιτάζω", "verb", "κοιτᾱ́ζω", "koitā́zō", "", "", "to put to"]) + let v = native_list_append(v, ["ὀργάω", "verb", "ὀργᾰ́ω", "", "", "", "to ripen"]) + let v = native_list_append(v, ["πειράζω", "verb", "πειρᾰ́ζω", "", "", "", "to make proof"]) + let v = native_list_append(v, ["δημοσιεύω", "verb", "δημοσῐεύω", "", "", "", "to make public"]) + let v = native_list_append(v, ["διαλύω", "verb", "δῐᾰλῡ́ω", "", "", "", "to loose one"]) + let v = native_list_append(v, ["βλάπτω", "verb", "βλᾰ́πτω", "", "", "", "to disable to"]) + let v = native_list_append(v, ["πείρασα", "verb", "πείρᾱσᾰ", "peírāsă", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["κάλυψα", "verb", "κάλυψᾰ", "kálupsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["λέγετε", "verb", "légete", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["λέγει", "verb", "légei", "", "", "", "inflection of λέγω"]) + let v = native_list_append(v, ["λέγεις", "verb", "légeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["βάσκω", "verb", "βᾰ́σκω", "bắskō", "present", "", "come go"]) + let v = native_list_append(v, ["πατάσσω", "verb", "πᾰτᾰ́σσω", "", "", "", "to knock beat"]) + let v = native_list_append(v, ["συμπίπτω", "verb", "σῠμπῑ́πτω", "", "", "", "to fall together"]) + let v = native_list_append(v, ["συμπίνω", "verb", "σῠμπῑ́νω", "", "", "", "to drink together"]) + let v = native_list_append(v, ["φωνέω", "verb", "φωνέομαι", "", "", "", "to produce a"]) + let v = native_list_append(v, ["κεράννυμι", "verb", "κερᾰ́ννῡμῐ", "", "", "", "to mix mingle"]) + let v = native_list_append(v, ["ἀρχαΐζω", "verb", "ἀρχαῐ̈́ζω", "", "", "", "to be old-fashioned"]) + let v = native_list_append(v, ["πλάσσειν", "verb", "plássein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀγῶσι", "verb", "ᾰ̓γῶσῐ", "ăgôsĭ", "ᾰ̓γῶσῐν", "", "third-person plural aorist"]) + let v = native_list_append(v, ["διαβαίνω", "verb", "δῐᾰβαίνω", "", "", "", "to stride walk"]) + let v = native_list_append(v, ["λάζομαι", "verb", "λᾰ́ζομαι", "", "", "", "to seize to"]) + let v = native_list_append(v, ["βιβρώσκω", "verb", "βιβρώσκομαι", "", "", "", "to eat eat"]) + let v = native_list_append(v, ["πειράζομαι", "verb", "πειρᾰ́ζομαι", "peirắzomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["στραγγαλόομαι", "verb", "στραγγᾰλόομαι", "", "", "", "to be twisted"]) + let v = native_list_append(v, ["κάπτω", "verb", "κᾰ́πτω", "", "", "", "to gulp down"]) + let v = native_list_append(v, ["γλύφω", "verb", "γλῠ́φω", "", "", "", "to carve cut"]) + let v = native_list_append(v, ["στραγγαλᾶν", "verb", "στραγγᾰλᾶν", "strangălân", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἁμαρτάνω", "verb", "ᾰ̔μᾰρτᾰ́νω", "", "", "", "to miss miss"]) + let v = native_list_append(v, ["ἀξιόω", "verb", "ᾰ̓ξῐόω", "", "", "", "to think or"]) + let v = native_list_append(v, ["ἀξιοῦται", "verb", "ἀξῐοῦται", "axĭoûtai", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀποπτύω", "verb", "ἀποπτῡ́ω", "", "", "", "to spit out"]) + let v = native_list_append(v, ["αὐλέω", "verb", "αὐλέομαι", "", "", "", "to play on"]) + let v = native_list_append(v, ["αὐλεῖν", "verb", "auleîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἐκγελάω", "verb", "ἐκγελᾰ́ω", "", "", "", "to laugh out"]) + let v = native_list_append(v, ["ἐκγελάσεται", "verb", "ἐκγελᾰ́σεται", "ekgelắsetai", "", "", "future middle indicative"]) + let v = native_list_append(v, ["ἐμμένω", "verb", "ἐνέμενον", "", "", "", "to abide in"]) + let v = native_list_append(v, ["ἐμμεῖναι", "verb", "emmeînai", "", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["ἐμμένειν", "verb", "emménein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἕξεις", "verb", "héxeis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἐπόψει", "verb", "epópsei", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["συνέρχομαι", "verb", "σῠνέρχομαι", "", "", "", "to come together"]) + let v = native_list_append(v, ["ἠθολογέω", "verb", "ἠθολογέομαι", "", "", "", "to express characteristically"]) + let v = native_list_append(v, ["καταφρονέω", "verb", "καταφρονέομαι", "", "", "", "to look down"]) + let v = native_list_append(v, ["φρονέω", "verb", "φρονέομαι", "", "", "", "to think to"]) + let v = native_list_append(v, ["ἀποκρίνω", "verb", "ᾰ̓ποκρῑ́νω", "", "", "", "to separate set"]) + let v = native_list_append(v, ["ἀποκρίνομαι", "verb", "ᾰ̓ποκρῑ́νομαι", "ăpokrī́nomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["συμμαχέω", "verb", "συμμᾰχέω", "", "", "", "to be an"]) + let v = native_list_append(v, ["συμμάχομαι", "verb", "συμμᾰ́χομαι", "", "", "", "to fight along"]) + let v = native_list_append(v, ["διαρρέω", "verb", "δῐαρρέω", "", "", "", "to flow through"]) + let v = native_list_append(v, ["περιέκοψα", "verb", "περῐέκοψᾰ", "perĭékopsă", "", "", "first-person singular past"]) + let v = native_list_append(v, ["κεφαλοτομέω", "verb", "κεφᾰλοτομέω", "", "", "", "to decapitate behead"]) + let v = native_list_append(v, ["ἀποκτείνω", "verb", "ἀποκτείνομαι", "", "", "", "to kill slay"]) + let v = native_list_append(v, ["κάθισα", "verb", "κάθισᾰ", "káthisă", "ἐκάθισᾰ", "", "first-person singular aorist"]) + let v = native_list_append(v, ["σφάλλω", "verb", "σφᾰ́λλω", "", "", "", "to topple overthrow"]) + let v = native_list_append(v, ["θέλοντας", "verb", "θέλοντᾰς", "thélontăs", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["δακρύω", "verb", "δᾰκρῡ́ω", "", "", "", "to cry to"]) + let v = native_list_append(v, ["συναντάω", "verb", "σῠνᾰντᾰ́ω", "", "", "", "to meet face"]) + let v = native_list_append(v, ["ὑφαίνω", "verb", "ῠ̔φαίνω", "", "", "", "to weave"]) + let v = native_list_append(v, ["γοητεύω", "verb", "γοητεύομαι", "", "", "", "to bewitch beguile"]) + let v = native_list_append(v, ["θεραπεύομαι", "verb", "θερᾰπεύομαι", "therăpeúomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["λαμβάνομαι", "verb", "λᾰμβᾰ́νομαι", "lămbắnomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["οὖσαι", "verb", "oûsai", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["στρέφω", "verb", "στρέφομαι", "", "", "", "to twist"]) + let v = native_list_append(v, ["καταδιώκω", "verb", "κᾰτᾰδῐώκω", "", "", "", "to pursue closely"]) + let v = native_list_append(v, ["καταδιώκομαι", "verb", "κᾰτᾰδῐώκομαι", "kătădĭṓkomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["αἴθων", "verb", "first", "third declension", "aíthōn", "", "present active participle"]) + let v = native_list_append(v, ["ἐξέρχομαι", "verb", "ἐξηρχόμην", "", "", "", "to go out"]) + let v = native_list_append(v, ["δύναμαι", "verb", "δῠ́νᾰμαι", "", "", "", "to be able"]) + let v = native_list_append(v, ["μέλω", "verb", "μέλομαι", "", "", "", "to be an"]) + let v = native_list_append(v, ["οἶδα", "verb", "οἶδᾰ", "", "", "", "to know to"]) + let v = native_list_append(v, ["εἰσέρχομαι", "verb", "εἴσειμῐ", "", "", "", "to go into"]) + let v = native_list_append(v, ["παρελθών", "verb", "πᾰρελθών", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["πορεύομαι", "verb", "poreúomai", "", "", "", "present mediopassive first-person"]) + let v = native_list_append(v, ["πορεύω", "verb", "πορεύομαι", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ἀφίημι", "verb", "ἀφῑ́ημῐ", "", "", "", "to send forth"]) + let v = native_list_append(v, ["ἀποστέλλω", "verb", "ἀποστέλλομαι", "", "", "", "to send off"]) + let v = native_list_append(v, ["παραδίδωμι", "verb", "πᾰρᾰδίδωμῐ", "", "", "", "to give or"]) + let v = native_list_append(v, ["ἀπέρχομαι", "verb", "ᾰ̓πέρχομαι", "", "", "", "to go away"]) + let v = native_list_append(v, ["ἀνίστημι", "verb", "ᾰ̓νῐ́στημῐ", "", "", "", "active of the"]) + let v = native_list_append(v, ["μέλλω", "verb", "μέλλομαι", "", "", "", "to think of"]) + let v = native_list_append(v, ["δεῖ", "verb", "deî", "Attic present", "grc-conj", "", "it behoves one"]) + let v = native_list_append(v, ["αἴρω", "verb", "αἴρομαι", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["φοβέομαι", "verb", "phobéomai", "", "", "", "present mediopassive indicative"]) + let v = native_list_append(v, ["ζώννυμι", "verb", "ζώννῡμῐ", "", "", "", "to gird especially"]) + let v = native_list_append(v, ["κάθημαι", "verb", "ἐκαθήμην", "", "", "", "to be seated"]) + let v = native_list_append(v, ["πάρει", "verb", "párei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["θέλεις", "verb", "théleis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["θέλει", "verb", "thélei", "", "", "", "inflection of θέλω"]) + let v = native_list_append(v, ["θέλετε", "verb", "thélete", "", "", "", "inflection of θέλω"]) + let v = native_list_append(v, ["περίμενε", "verb", "perímene", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["κανονίζω", "verb", "κᾰνονῐ́ζω", "", "", "", "to measure regulate"]) + let v = native_list_append(v, ["νυστάζω", "verb", "νυστᾰ́ζω", "", "", "", "to be half"]) + let v = native_list_append(v, ["ἀκολουθέω", "verb", "ᾰ̓κολουθέω", "", "", "", "to follow go"]) + let v = native_list_append(v, ["ἀπόλλυμι", "verb", "ᾰ̓πόλλῡμῐ", "", "", "", "to completely destroy"]) + let v = native_list_append(v, ["προσέρχομαι", "verb", "προσηρχόμην", "", "", "", "to come or"]) + let v = native_list_append(v, ["προσεύχομαι", "verb", "προσεύξομαι", "", "", "", "to pray vow"]) + let v = native_list_append(v, ["ἀναβαίνω", "verb", "ᾰ̓νᾰβαίνω", "", "", "", "to go up"]) + let v = native_list_append(v, ["ἐκβάλλω", "verb", "ἐκβᾰ́λλω", "", "", "", "to throw or"]) + let v = native_list_append(v, ["καταβαίνω", "verb", "κᾰτᾰβαίνω", "", "", "", "to step down"]) + let v = native_list_append(v, ["ὑπάγω", "verb", "ὑπᾰ́γω", "", "", "", "to lead or"]) + let v = native_list_append(v, ["ἀνοίγω", "verb", "ᾰ̓νοίγω", "", "", "", "to open"]) + let v = native_list_append(v, ["αἰτέω", "verb", "αἰτέομαι", "", "", "", "to ask for"]) + let v = native_list_append(v, ["τηρέω", "verb", "τηρέομαι", "", "", "", "to watch over"]) + let v = native_list_append(v, ["ἀπολύω", "verb", "ἀπολῡ́ω", "", "", "", "to loose from"]) + let v = native_list_append(v, ["ἐρωτάω", "verb", "ἐρωτᾰ́ω", "", "", "", "to ask"]) + let v = native_list_append(v, ["διευθύνω", "verb", "δῐευθῡ́νω", "", "", "", "to make or"]) + let v = native_list_append(v, ["ὑπάρχω", "verb", "ῠ̔πᾰ́ρχω", "", "", "", "to begin make"]) + let v = native_list_append(v, ["προσκυνέω", "verb", "προσκῠνέω", "", "", "", "to make obeisance"]) + let v = native_list_append(v, ["ἀσπάζομαι", "verb", "ἀσπᾰ́ζομαι", "", "", "", "to welcome kindly"]) + let v = native_list_append(v, ["ἐπερωτάω", "verb", "ἐπερωτᾰ́ω", "", "", "", "to consult inquire"]) + let v = native_list_append(v, ["χαίρετε", "verb", "khaírete", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["σπουδάζω", "verb", "σπουδᾰ́ζω", "", "", "", "to hurry hurry"]) + let v = native_list_append(v, ["παραλαμβάνω", "verb", "πᾰρᾰλαμβᾰ́νω", "", "", "", "to receive from"]) + let v = native_list_append(v, ["ἐρωμένη", "verb", "erōménē", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["χωρίζομαι", "verb", "χωρῐ́ζομαι", "khōrĭ́zomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["τρώγομαι", "verb", "trṓgomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["βούλομαι", "verb", "ἐβουλόμην", "", "", "", "to will wish"]) + let v = native_list_append(v, ["σχίζομαι", "verb", "σχῐ́ζομαι", "skhĭ́zomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀλείφω", "verb", "ᾰ̓λείφω", "", "", "", "to anoint someone"]) + let v = native_list_append(v, ["φανερόω", "verb", "φᾰνερόω", "", "", "", "to make manifest"]) + let v = native_list_append(v, ["κλίνομαι", "verb", "κλῑ́νομαι", "klī́nomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀποδίδωμι", "verb", "ᾰ̓ποδῐ́δωμῐ", "", "", "", "to give up"]) + let v = native_list_append(v, ["στερέω", "verb", "στερέομαι", "", "", "", "to deprive bereave"]) + let v = native_list_append(v, ["ταράσσω", "verb", "τᾰρᾰ́σσω", "", "", "", "to stir trouble"]) + let v = native_list_append(v, ["σπεύδω", "verb", "σπεύδομαι", "", "", "", "to set going"]) + let v = native_list_append(v, ["λοιδορέω", "verb", "λοιδορέομαι", "", "", "", "to abuse to"]) + let v = native_list_append(v, ["καθίζω", "verb", "καθίζομαι", "", "", "", "to make to"]) + let v = native_list_append(v, ["σταυρόω", "verb", "σταυρόομαι", "", "", "", "to fence with"]) + let v = native_list_append(v, ["ἀπαγγέλλω", "verb", "ᾰ̓πᾰγγέλλω", "", "", "", "to bring tidings"]) + let v = native_list_append(v, ["διώκω", "verb", "δῐώκω", "", "", "", "to make to"]) + let v = native_list_append(v, ["ἐπιγινώσκω", "verb", "ἐπιγινώσκομαι", "", "", "", "Ionic Koine and"]) + let v = native_list_append(v, ["ἐπιγιγνώσκω", "verb", "ἐπιγιγνώσκομαι", "", "", "", "to look upon"]) + let v = native_list_append(v, ["κατοικέω", "verb", "κᾰτοικέω", "", "", "", "to dwell in"]) + let v = native_list_append(v, ["τολμάω", "verb", "τολμᾰ́ω", "", "", "", "to dare"]) + let v = native_list_append(v, ["ἀναγκάζω", "verb", "ᾰ̓νᾰγκᾰ́ζω", "", "", "", "to force"]) + let v = native_list_append(v, ["διέρχομαι", "verb", "δῐέρχομαι", "", "", "", "to go through"]) + let v = native_list_append(v, ["δέομαι", "verb", "déomai", "", "", "", "present mediopassive indicative"]) + let v = native_list_append(v, ["ἐγγίζω", "verb", "ἐγγῐ́ζω", "", "", "", "to bring near"]) + let v = native_list_append(v, ["πλέκομαι", "verb", "plékomai", "", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["οἰκοδομέω", "verb", "οἰκοδομέομαι", "", "", "", "to build a"]) + let v = native_list_append(v, ["ἐπιτίθημι", "verb", "ἐπῐτῐ́θημῐ", "", "", "", "to lay put"]) + let v = native_list_append(v, ["περισσεύω", "verb", "περῐσσεύω", "", "", "", "to be over"]) + let v = native_list_append(v, ["ᾗ", "verb", "hēî", "", "", "", "inflection of ῑ̔́ημῐ"]) + let v = native_list_append(v, ["κωλύω", "verb", "κωλύομαι", "", "", "", "to hinder prevent"]) + let v = native_list_append(v, ["ὁμολογέω", "verb", "ὁμολογέομαι", "", "", "", "to agree with"]) + let v = native_list_append(v, ["δικαιόω", "verb", "δῐκαιόω", "", "", "", "to set right"]) + let v = native_list_append(v, ["ὑποτάσσω", "verb", "ῠ̔ποτᾰ́σσω", "", "", "", "to place or"]) + let v = native_list_append(v, ["καυχάομαι", "verb", "καυχᾰ́ομαι", "", "", "", "to speak loud"]) + let v = native_list_append(v, ["παραγίνομαι", "verb", "πᾰρᾰγῑ́νομαι", "părăgī́nomai", "", "", "Ionic Koine and"]) + let v = native_list_append(v, ["παραγίγνομαι", "verb", "πᾰρᾰγῐ́γνομαι", "", "", "", "to be beside"]) + let v = native_list_append(v, ["ἐπιστρέφω", "verb", "ἐπιστρέφομαι", "", "", "", "to turn about"]) + let v = native_list_append(v, ["ὑποστρέφω", "verb", "ὑποστρέφομαι", "", "", "", "to turn round"]) + let v = native_list_append(v, ["μετανοέω", "verb", "μετᾰνοέω", "", "", "", "to perceive afterwards"]) + let v = native_list_append(v, ["ἔξειμι", "verb", "ἐξῇᾰ", "", "", "", "to go out"]) + let v = native_list_append(v, ["ἀσθενέω", "verb", "ἀσθενῶ", "", "", "", "to be weak"]) + let v = native_list_append(v, ["ἐκπορεύω", "verb", "ἐκπορεύομαι", "", "", "", "to make to"]) + let v = native_list_append(v, ["ἐκπορεύομαι", "verb", "ekporeúomai", "", "", "", "present mediopassive first-person"]) + let v = native_list_append(v, ["ἀρνέομαι", "verb", "ἀρνοῦμαι", "", "", "", "to deny disown"]) + let v = native_list_append(v, ["ἀναγινώσκω", "verb", "ᾰ̓νᾰγῑνώσκω", "ănăgīnṓskō", "", "", "Ionic and Koine"]) + let v = native_list_append(v, ["ἀναγιγνώσκω", "verb", "ᾰ̓νᾰγῐγνώσκω", "", "", "", "to know well"]) + let v = native_list_append(v, ["ἐλπίζω", "verb", "ἐλπῐ́ζω", "", "", "", "to hope for"]) + let v = native_list_append(v, ["ἀγοράζω", "verb", "ᾰ̓γορᾰ́ζω", "", "", "", "to be in"]) + let v = native_list_append(v, ["ἐπικαλέω", "verb", "ἐπικαλέομαι", "", "", "", "to call upon"]) + let v = native_list_append(v, ["νουθετέω", "verb", "νουθετέομαι", "", "", "", "to admonish warn"]) + let v = native_list_append(v, ["ἐπιτιμάω", "verb", "ἐπῐτῑμᾰ́ω", "", "", "", "to lay a"]) + let v = native_list_append(v, ["παρέρχομαι", "verb", "πᾰρέρχομαι", "", "", "", "to go by"]) + let v = native_list_append(v, ["προσκαλέω", "verb", "προσκᾰλέω", "", "", "", "to call to"]) + let v = native_list_append(v, ["προσκαλέομαι", "verb", "προσκᾰλέομαι", "proskăléomai", "", "", "present mediopassive indicative"]) + let v = native_list_append(v, ["ἴδε", "verb", "ῐ̓́δε", "ĭ́de", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἁγιάζω", "verb", "ᾰ̔γῐᾰ́ζω", "", "", "", "Koine form of"]) + let v = native_list_append(v, ["ἁγίζω", "verb", "ᾰ̔γῐ́ζω", "", "", "", "to hallow make"]) + let v = native_list_append(v, ["ἥκω", "verb", "ἥκομαι", "", "", "", "to have come"]) + let v = native_list_append(v, ["ἰσχύω", "verb", "ῐ̓σχῡ́ω", "", "", "", "to be physically"]) + let v = native_list_append(v, ["ἀδικέω", "verb", "ἀδῐκέω", "", "", "", "to be in"]) + let v = native_list_append(v, ["βαστάζω", "verb", "βᾰστᾰ́ζω", "", "", "", "to lift lift"]) + let v = native_list_append(v, ["καταργέω", "verb", "καταργέομαι", "", "", "", "to leave unemployed"]) + let v = native_list_append(v, ["ὀμνύω", "verb", "ὀμνῡ́ω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὄμνυμι", "verb", "ὄμνῡμῐ", "", "", "", "to swear"]) + let v = native_list_append(v, ["λυπέω", "verb", "λῡπέω", "", "", "", "to give pain"]) + let v = native_list_append(v, ["συνίημι", "verb", "σῠνῑ́ημῐ", "", "", "", "to send together"]) + let v = native_list_append(v, ["μνημονεύω", "verb", "μνημονεύομαι", "", "", "", "to call to"]) + let v = native_list_append(v, ["κηρύττω", "verb", "κηρῠ́ττω", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["ἀναβλέπω", "verb", "ᾰ̓νᾰβλέπω", "", "", "", "to look up"]) + let v = native_list_append(v, ["καλύπτομαι", "verb", "κᾰλύπτομαι", "kălúptomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["βλάπτομαι", "verb", "βλᾰ́πτομαι", "blắptomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["προσέχω", "verb", "προσέχομαι", "", "", "", "to hold to"]) + let v = native_list_append(v, ["καταλείπω", "verb", "κᾰτᾰλείπω", "", "", "", "to leave behind"]) + let v = native_list_append(v, ["ἀναιρέω", "verb", "ἀναιρέομαι", "", "", "", "to take up"]) + let v = native_list_append(v, ["πάρειμι", "verb", "πᾰ́ρειμι", "", "", "", "to be by"]) + let v = native_list_append(v, ["περιβάλλω", "verb", "περῐβᾰ́λλω", "", "", "", "to throw round"]) + let v = native_list_append(v, ["ἀνάγω", "verb", "ᾰ̓νᾰ́γω", "", "", "", "to lead up"]) + let v = native_list_append(v, ["τελειόω", "verb", "τελειόομαι", "", "", "", "to make perfect"]) + let v = native_list_append(v, ["παραδίδομαι", "verb", "πᾰρᾰδίδομαι", "părădídomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["προλαμβάνω", "verb", "προλᾰμβᾰ́νω", "", "", "", "to take receive"]) + let v = native_list_append(v, ["παρεισέφρησα", "verb", "πᾰρεισέφρησᾰ", "păreiséphrēsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["παρέχω", "verb", "πᾰρέχω", "", "", "", "to hold beside"]) + let v = native_list_append(v, ["παρέχομαι", "verb", "πᾰρέχομαι", "părékhomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["κατηγορέω", "verb", "κᾰτηγορέω", "", "", "", "to speak against"]) + let v = native_list_append(v, ["πίνομαι", "verb", "πῑ́νομαι", "pī́nomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["σύρω", "verb", "σῡ́ρω", "", "", "", "to draw drag"]) + let v = native_list_append(v, ["σύρομαι", "verb", "σῡ́ρομαι", "sū́romai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["κοπιάω", "verb", "κοπῐᾰ́ω", "", "", "", "to be tired"]) + let v = native_list_append(v, ["συνάπτομαι", "verb", "σῠνᾰ́πτομαι", "sŭnắptomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["μιμνήσκομαι", "verb", "μῐμνήσκομαι", "mĭmnḗskomai", "", "", "present mediopassive indicative"]) + let v = native_list_append(v, ["ψάλλω", "verb", "ψᾰ́λλω", "", "", "", "to touch sharply"]) + let v = native_list_append(v, ["ἐκλέγω", "verb", "ἐκλέγομαι", "", "", "", "to pick or"]) + let v = native_list_append(v, ["καθεύδω", "verb", "κᾰθεύδω", "", "", "", "to lie down"]) + let v = native_list_append(v, ["προσδοκάω", "verb", "προσδοκᾰ́ω", "", "", "", "to expect to"]) + let v = native_list_append(v, ["κατεργάζομαι", "verb", "κᾰτεργᾰ́ζομαι", "", "", "", "to effect by"]) + let v = native_list_append(v, ["βασιλεύω", "verb", "βᾰσῐλεύω", "", "", "", "to be king"]) + let v = native_list_append(v, ["ὑπακούω", "verb", "ὑπᾰκούω", "", "", "", "to listen hearken"]) + let v = native_list_append(v, ["χόω", "verb", "χόομαι", "", "", "", "to throw or"]) + let v = native_list_append(v, ["κλάζω", "verb", "κλᾰ́ζω", "", "", "", "to make a"]) + let v = native_list_append(v, ["ῥάπτω", "verb", "ῥᾰ́πτω", "", "", "", "to sew"]) + let v = native_list_append(v, ["αἱρέω", "verb", "αἱρέομαι", "", "", "", "to take grasp"]) + let v = native_list_append(v, ["εὐδοκέω", "verb", "εὐδοκέομαι", "", "", "", "to be well"]) + let v = native_list_append(v, ["ἀράομαι", "verb", "ἀρᾰ́ομαι", "", "", "", "to pray"]) + let v = native_list_append(v, ["αὔξω", "verb", "αὔξομαι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["χάσκω", "verb", "χάσκομαι", "", "", "", "to yawn gape"]) + let v = native_list_append(v, ["ἐνεργέω", "verb", "ἐνεργέομαι", "", "", "", "to be in"]) + let v = native_list_append(v, ["θνῄσκω", "verb", "ἔθνῃσκον", "", "", "", "to die aorist"]) + let v = native_list_append(v, ["ἐφίστημι", "verb", "ἐφῐ́στημῐ", "", "", "", "to set or"]) + let v = native_list_append(v, ["καθίστημι", "verb", "κᾰθῐ́στημῐ", "", "", "", "to set down"]) + let v = native_list_append(v, ["κατακρίνω", "verb", "κᾰτᾰκρῑ́νω", "", "", "", "to give as"]) + let v = native_list_append(v, ["προάγω", "verb", "προᾰ́γω", "", "", "", "to lead forward"]) + let v = native_list_append(v, ["ὑψόω", "verb", "ῠ̔ψόω", "", "", "", "to lift high"]) + let v = native_list_append(v, ["καθομιλουμένη", "verb", "kathomilouménē", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μείρομαι", "verb", "ἔμμορᾰ", "", "", "", "to receive as"]) + let v = native_list_append(v, ["ἀάω", "verb", "ἀᾰ́ομαι", "", "", "", "to hurt or"]) + let v = native_list_append(v, ["λήγω", "verb", "λήγομαι", "", "", "", "to stay abate"]) + let v = native_list_append(v, ["ἀγαθοεργέω", "verb", "ᾰ̓γᾰθοεργέω", "", "", "", "to succeed to"]) + let v = native_list_append(v, ["ἀγανακτέω", "verb", "ἀγανακτέομαι", "", "", "", "to feel a"]) + let v = native_list_append(v, ["ἁγνίζω", "verb", "ᾰ̔γνῐ́ζω", "", "", "", "to make pure"]) + let v = native_list_append(v, ["φθείρω", "verb", "φθείρομαι", "", "", "", "to destroy"]) + let v = native_list_append(v, ["διδάσκομαι", "verb", "δῐδᾰ́σκομαι", "dĭdắskomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ᾖ", "verb", "ēî", "ἔῃ", "ἔῃσῐ", "", "third-person singular present"]) + let v = native_list_append(v, ["ἧμαι", "verb", "ἥμην", "", "", "", "to sit be"]) + let v = native_list_append(v, ["βλώσκω", "verb", "ἔβλωσκον", "", "", "", "come go"]) + let v = native_list_append(v, ["ἀγραυλέω", "verb", "ἀγραυλῶ", "", "", "", "to live outside"]) + let v = native_list_append(v, ["ἀγρεύω", "verb", "ᾰ̓γρεύω", "", "", "", "to take by"]) + let v = native_list_append(v, ["ἀγρυπνέω", "verb", "ἀγρυπνέομαι", "", "", "", "to lie awake"]) + let v = native_list_append(v, ["ναίω", "verb", "ναίομαι", "", "", "", "to dwell abide"]) + let v = native_list_append(v, ["συμφέρω", "verb", "συμφέρομαι", "", "", "", "to bring together"]) + let v = native_list_append(v, ["βουλεύω", "verb", "βουλεύομαι", "", "", "", "to take counsel"]) + let v = native_list_append(v, ["χράω", "verb", "ἔχρᾰον", "", "", "", "to fall upon"]) + let v = native_list_append(v, ["φαίνονται", "verb", "phaínontai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["φαίνεται", "verb", "phaínetai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νήσοι", "verb", "nḗsoi", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["νήσων", "verb", "nḗsōn", "Attic declension-3", "grc-adecl", "", "future active participle"]) + let v = native_list_append(v, ["οἴομαι", "verb", "οἴω", "", "", "", "to anticipate or"]) + let v = native_list_append(v, ["πηδάω", "verb", "πηδᾰ́ω", "", "", "", "to leap spring"]) + let v = native_list_append(v, ["παράγω", "verb", "πᾰρᾰ́γω", "", "", "", "to lead by"]) + let v = native_list_append(v, ["παρασκευάζομαι", "verb", "πᾰρᾰσκευᾰ́ζομαι", "părăskeuắzomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["πλήττω", "verb", "πλήττομαι", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["προκαταβάλω", "verb", "προκᾰτᾰβᾰ́λω", "prokătăbắlō", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["προκαταβάλλομαι", "verb", "προκᾰτᾰβᾰ́λλομαι", "prokătăbắllomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["εὐθύνω", "verb", "εὐθῡ́νω", "", "", "", "to guide straight"]) + let v = native_list_append(v, ["χαῖρε", "verb", "khaîre", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἔα", "verb", "ἔᾱ", "éā", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παραλήγουσα", "verb", "πᾰρᾰλήγουσᾰ", "părălḗgousă", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["περιοδεύων", "verb", "περῐοδεύων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ποππύζων", "verb", "ποππῠ́ζων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ἀμεθυστίζων", "verb", "ἀμεθῠστῐ́ζων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ἠμί", "verb", "ἠμῐ́", "", "", "", "to say"]) + let v = native_list_append(v, ["κρεμάω", "verb", "κρεμᾰ́ω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["φροντίζω", "verb", "φροντῐ́ζω", "", "", "", "to consider to"]) + let v = native_list_append(v, ["χρῄζω", "verb", "χρῄζομαι", "", "", "", "to need lack"]) + let v = native_list_append(v, ["θείς", "verb", "theís", "Attic declension-3", "grc-adecl", "", "aorist active participle"]) + let v = native_list_append(v, ["λύσας", "verb", "λῡ́σᾱς", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["ἱστάς", "verb", "ῐ̔στᾱ́ς", "hĭstā́s", "Attic declension-3", "", "present active participle"]) + let v = native_list_append(v, ["λύων", "verb", "λῡ́ων", "lū́ōn", "Attic declension-3", "", "present active participle"]) + let v = native_list_append(v, ["δούς", "verb", "doús", "Attic declension-3", "grc-adecl", "", "aorist active participle"]) + let v = native_list_append(v, ["δεικνύς", "verb", "δεικνῡ́ς", "deiknū́s", "Attic declension-3", "", "present active participle"]) + let v = native_list_append(v, ["λελυκώς", "verb", "λελῠκώς", "lelŭkṓs", "Attic declension-3", "", "perfect active participle"]) + let v = native_list_append(v, ["τιμῶν", "verb", "τῑμῶν", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ποιῶν", "verb", "first", "third declension", "poiôn", "", "contracted present active"]) + let v = native_list_append(v, ["κέχηνα", "verb", "κέχηνᾰ", "kékhēnă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["γένῃ", "verb", "génēi", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["περισπάω", "verb", "περῐσπᾰ́ω", "", "", "", "to draw off"]) + let v = native_list_append(v, ["ψιλογραφέω", "verb", "ψῑλογρᾰφέω", "", "", "", "to write with"]) + let v = native_list_append(v, ["ψιλοποιέω", "verb", "ψῑλοποιέω", "", "", "", "to write with"]) + let v = native_list_append(v, ["δύναιτο", "verb", "δῠ́ναιτο", "dŭ́naito", "", "", "third-person singular present"]) + let v = native_list_append(v, ["περισπώμενος", "verb", "περῐσπώμενος", "perĭspṓmenos", "περῐσπωμένη", "", "contracted present mediopassive"]) + let v = native_list_append(v, ["περισπαόμενος", "verb", "περῐσπᾰόμενος", "perĭspăómenos", "περῐσπᾰομένη", "", "uncontracted present mediopassive"]) + let v = native_list_append(v, ["στᾶσα", "verb", "στᾶσᾰ", "stâsă", "στᾶσ’", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["περισπωμένην", "verb", "περῐσπωμένην", "perĭspōménēn", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["ἔχων", "verb", "first", "third declension", "ékhōn", "", "present active participle"]) + let v = native_list_append(v, ["ἔχον", "verb", "ékhon", "", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["γενήσεται", "verb", "genḗsetai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["φέρομαι", "verb", "phéromai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["πιστεύεται", "verb", "pisteúetai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["κεχηνώς", "verb", "kekhēnṓs", "Attic declension-3", "grc-adecl", "", "perfect active participle"]) + let v = native_list_append(v, ["στιγματίζω", "verb", "στιγματίζομαι", "", "", "", "to mark put"]) + let v = native_list_append(v, ["διαβάλλω", "verb", "διαβάλλομαι", "", "", "", "to throw over"]) + let v = native_list_append(v, ["σαγηνεύω", "verb", "σᾰγηνεύω", "", "", "", "to take fish"]) + let v = native_list_append(v, ["ὑπειλήφασιν", "verb", "ῠ̔πειλήφᾱσῐν", "hŭpeilḗphāsĭn", "ῠ̔πειλήφᾱσῐ", "", "third-person plural perfect"]) + let v = native_list_append(v, ["δεδειγμένος", "verb", "dedeigménos", "δεδειγμένη", "δεδειγμένον", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["ὑποδεδειγμένων", "verb", "ῠ̔ποδεδειγμένων", "hŭpodedeigménōn", "", "", "genitive masculine plural"]) + let v = native_list_append(v, ["ὑποδεδειγμένος", "verb", "ῠ̔ποδεδειγμένος", "hŭpodedeigménos", "ῠ̔ποδεδειγμένη", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["ὑπειλήφασι", "verb", "ῠ̔πειλήφᾱσῐ", "hŭpeilḗphāsĭ", "ῠ̔πειλήφᾱσῐν", "", "third-person plural perfect"]) + let v = native_list_append(v, ["ὑπολαμβάνω", "verb", "ῠ̔πολᾰμβᾰ́νω", "", "", "", "to take up"]) + let v = native_list_append(v, ["ὑποδείκνυμι", "verb", "ῠ̔ποδείκνῡμῐ", "", "", "", "to show"]) + let v = native_list_append(v, ["κρατέομαι", "verb", "κρᾰτέομαι", "krătéomai", "κρᾰτοῦμαι", "", "uncontracted first-person singular"]) + let v = native_list_append(v, ["δημοκρατέομαι", "verb", "δημοκρᾰτέω", "", "", "", "to have a"]) + let v = native_list_append(v, ["διακόπτομαι", "verb", "δῐᾰκόπτομαι", "dĭăkóptomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["αἰνέω", "verb", "αἰνέομαι", "", "", "", "to tell of"]) + let v = native_list_append(v, ["καταδύομαι", "verb", "κᾰτᾰδύομαι", "kătădúomai", "", "", "present middle indicative"]) + let v = native_list_append(v, ["φυτεύω", "verb", "φῠτεύω", "", "", "", "to plant place"]) + let v = native_list_append(v, ["διακοιρανέοντα", "verb", "δῐᾰκοιρᾰνέοντᾰ", "dĭăkoirănéontă", "δῐὰ κοιρᾰνέοντᾰ", "", "masculine accusative singular"]) + let v = native_list_append(v, ["διακοιρανέων", "verb", "δῐᾰκοιρᾰνέων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["πάρεις", "verb", "páreis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["περισπωμένας", "verb", "περῐσπωμένᾱς", "perĭspōménās", "", "", "accusative feminine plural"]) + let v = native_list_append(v, ["ἀναλάζομαι", "verb", "ᾰ̓νᾰλᾰ́ζομαι", "", "", "", "to take again"]) + let v = native_list_append(v, ["σκάζων", "verb", "σκᾰ́ζων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["λιθίζων", "verb", "λῐθῐ́ζων", "first", "third declension", "", "looking like a"]) + let v = native_list_append(v, ["βιάζω", "verb", "βῐᾰ́ζω", "", "", "", "synonym of βῐάζομαι"]) + let v = native_list_append(v, ["βιάζομαι", "verb", "βῐᾰ́ζομαι", "", "", "", "to use force"]) + let v = native_list_append(v, ["δουλεύομαι", "verb", "douleúomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["καταβάλλω", "verb", "κᾰτᾰβᾰ́λλω", "", "", "", "to throw down"]) + let v = native_list_append(v, ["κλείω", "verb", "κλείομαι", "", "", "", "to shut close"]) + let v = native_list_append(v, ["παρέμεινα", "verb", "πᾰρέμεινᾰ", "părémeină", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παραλαμβάνομαι", "verb", "πᾰρᾰ́λᾰμβᾰ́νομαι", "părắlămbắnomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["περιγράφω", "verb", "περῐγρᾰ́φω", "", "", "", "to draw a"]) + let v = native_list_append(v, ["περιέγραψα", "verb", "περῐέγρᾰψᾰ", "perĭégrăpsă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["περιγράφομαι", "verb", "περῐγρᾰ́φομαι", "perĭgrắphomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["πλησιάζω", "verb", "πλησῐᾰ́ζω", "", "", "", "bring near"]) + let v = native_list_append(v, ["προετοιμάζω", "verb", "προετοιμᾰ́ζω", "", "", "", "to get ready"]) + let v = native_list_append(v, ["προετοιμάζομαι", "verb", "proetoimázomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["προστίθεμαι", "verb", "prostíthemai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["προστέθηκα", "verb", "προστέθηκᾰ", "prostéthēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["προσφέρομαι", "verb", "prosphéromai", "", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["συνδυάζομαι", "verb", "σῠνδῠᾰ́ζομαι", "sŭndŭắzomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["σχηματίζω", "verb", "σχηματῐ́ζω", "", "", "", "assume a certain"]) + let v = native_list_append(v, ["δόξασα", "verb", "δόξᾱσᾰ", "dóxāsă", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["ἀπαιτέω", "verb", "ᾰ̓παιτέω", "", "", "", "to demand back"]) + let v = native_list_append(v, ["χορεύομαι", "verb", "khoreúomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["φθάνω", "verb", "φθᾰ́νω", "", "", "", "to come or"]) + let v = native_list_append(v, ["εἴρηκα", "verb", "εἴρηκᾰ", "eírēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεποίηκα", "verb", "πεποίηκᾰ", "pepoíēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πταίω", "verb", "πταίομαι", "", "", "", "to cause to"]) + let v = native_list_append(v, ["βόσκομαι", "verb", "bóskomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["γράφομαι", "verb", "γρᾰ́φομαι", "grắphomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["καταβάλλομαι", "verb", "κᾰτᾰβᾰ́λλομαι", "kătăbắllomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["κατατίθεμαι", "verb", "κᾰτᾰτίθεμαι", "kătătíthemai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["καταλαμβάνομαι", "verb", "κᾰτᾰλαμβάνομαι", "kătălambánomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["κηρύσσομαι", "verb", "kērússomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["κηρύττομαι", "verb", "kērúttomai", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["μάρναμαι", "verb", "μᾰ́ρνᾰμαι", "", "", "", "to fight battle"]) + let v = native_list_append(v, ["κρίνομαι", "verb", "κρῑ́νομαι", "krī́nomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["συναλιζόμενος", "verb", "σῠνᾱλῐζόμενος", "sŭnālĭzómenos", "Attic declension-2", "", "present middle/passive indicative"]) + let v = native_list_append(v, ["τιτρώσκω", "verb", "τιτρώσκομαι", "", "", "", "to harm hurt"]) + let v = native_list_append(v, ["κλύω", "verb", "κλῠ́ω", "", "", "", "to hear listen"]) + let v = native_list_append(v, ["διήρκεσα", "verb", "δῐήρκεσᾰ", "dĭḗrkesă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["δαμάζομαι", "verb", "δᾰμάζομαι", "dămázomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["διαχωρίζομαι", "verb", "δῐᾰχωρῐ́ζομαι", "dĭăkhōrĭ́zomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παρέκαμψα", "verb", "παρέκαμψᾰ", "parékampsă", "", "", "first-person singular past"]) + let v = native_list_append(v, ["παρακάμπτομαι", "verb", "parakámptomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["προδίδομαι", "verb", "prodídomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["κατέστησα", "verb", "κᾰτέστησᾰ", "kătéstēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["καθίσταμαι", "verb", "κᾰθῐ́στᾰμαι", "kăthĭ́stămai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["μελετάω", "verb", "μελετᾰ́ω", "", "", "", "to care for"]) + let v = native_list_append(v, ["εἴσω", "verb", "eísō", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["πέμπε", "verb", "pémpe", "", "", "", "inflection of πέμπω"]) + let v = native_list_append(v, ["μυρίζω", "verb", "μῠρῐ́ζω", "", "", "", "to rub with"]) + let v = native_list_append(v, ["λανθάνω", "verb", "λᾰνθᾰ́νω", "", "", "", "to escape notice"]) + let v = native_list_append(v, ["ἀτενίζω", "verb", "ἀτενῐ́ζω", "", "", "", "to gaze intently"]) + let v = native_list_append(v, ["μυζάω", "verb", "μῠζᾰ́ω", "", "", "", "to suck"]) + let v = native_list_append(v, ["περισπωμένη", "verb", "περῐσπωμένη", "perĭspōménē", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["κατέρρευσα", "verb", "κᾰτέρρευσᾰ", "kătérrheusă", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["κατήργησα", "verb", "κᾰτήργησᾰ", "kătḗrgēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["κυκλῶν", "verb", "first", "third declension", "kuklôn", "", "present active participle"]) + let v = native_list_append(v, ["ἁλίζω", "verb", "ᾱ̔λῐ́ζω", "", "", "", "to gather assemble"]) + let v = native_list_append(v, ["παράβαλε", "verb", "πᾰρᾰ́βᾰλε", "părắbăle", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παραβάλετε", "verb", "πᾰρᾰβᾰ́λετε", "părăbắlete", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παραβάλλετε", "verb", "πᾰρᾰβᾰ́λλετε", "părăbắllete", "", "", "second-person plural indicative/imperative"]) + let v = native_list_append(v, ["παράβαλλε", "verb", "πᾰρᾰ́βᾰλλε", "părắbălle", "", "", "second-person singular present"]) + let v = native_list_append(v, ["τρέπομαι", "verb", "trépomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["χαλάω", "verb", "χᾰλᾰ́ω", "", "", "", "to slacken to"]) + let v = native_list_append(v, ["βλέπε", "verb", "blépe", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἔστιν", "verb", "ἔστῐν", "éstĭn", "ἔστι", "", "paroxytone third-person singular"]) + let v = native_list_append(v, ["ἄξων", "verb", "first", "third declension", "áxōn", "", "future active participle"]) + let v = native_list_append(v, ["εὕρηκα", "verb", "εὕρηκᾰ", "heúrēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ἀναγιγνωσκόμενα", "verb", "ᾰ̓νᾰγῐγνωσκόμενᾰ", "ănăgĭgnōskómenă", "", "", "nominative/accusative/vocative neuter plural"]) + let v = native_list_append(v, ["ἀναγιγνωσκόμενος", "verb", "ᾰ̓νᾰγῐγνωσκόμενος", "ănăgĭgnōskómenos", "Attic declension-2", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ἡπατίζον", "verb", "ἡπᾰτῐ́ζον", "hēpătĭ́zon", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["βρυάζω", "verb", "βρῠᾰ́ζω", "", "", "", "to swell teem"]) + let v = native_list_append(v, ["σμάω", "verb", "σμῶ", "", "", "", "to wash with"]) + let v = native_list_append(v, ["τίω", "verb", "τῑ́ω", "", "", "", "to pay honour"]) + let v = native_list_append(v, ["βινέω", "verb", "βῑνέω", "", "", "", "to have sexual"]) + let v = native_list_append(v, ["ἔμμορε", "verb", "émmore", "ἔμμορεν", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["κατασκευάζω", "verb", "κᾰτᾰσκευᾰ́ζω", "", "", "", "to equip furnish"]) + let v = native_list_append(v, ["κατεσκευασμένος", "verb", "κᾰτεσκευᾰσμένος", "kăteskeuăsménos", "κᾰτεσκευᾰσμένη", "", "mediopassive perfect participle"]) + let v = native_list_append(v, ["κατεσκευασμένων", "verb", "κᾰτεσκευᾰσμένων", "kăteskeuăsménōn", "", "", "genitive plural masculine"]) + let v = native_list_append(v, ["κατασκευάζομαι", "verb", "κᾰτᾰσκευᾰ́ζομαι", "kătăskeuắzomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["συσσῴζειν", "verb", "σῠσσῴζειν", "sŭssōízein", "", "", "present infinitive of"]) + let v = native_list_append(v, ["συσσῴζω", "verb", "σῠσσῴζω", "", "", "", "to help to"]) + let v = native_list_append(v, ["ὑπογράφω", "verb", "ῠ̔πογρᾰ́φω", "", "", "", "to write under"]) + let v = native_list_append(v, ["ὑπογεγραμμένος", "verb", "ῠ̔πογεγρᾰμμένος", "hŭpogegrămménos", "Attic declension-2", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["ὑπογεγραμμένη", "verb", "ῠ̔πογεγρᾰμμένη", "hŭpogegrămménē", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["ὑπογεγραμμένον", "verb", "ῠ̔πογεγρᾰμμένον", "hŭpogegrămménon", "", "", "inflection of ῠ̔πογεγρᾰμμένος"]) + let v = native_list_append(v, ["ἀποθλίβω", "verb", "ᾰ̓ποθλῑ́βω", "", "", "", "to squeeze out"]) + let v = native_list_append(v, ["χειρόομαι", "verb", "χειροῦμαι", "", "", "", "to conquer overpower"]) + let v = native_list_append(v, ["δουλόω", "verb", "δουλόομαι", "", "", "", "to enslave"]) + let v = native_list_append(v, ["θηράω", "verb", "θηρᾰ́ω", "", "", "", "to hunt"]) + let v = native_list_append(v, ["τριάζω", "verb", "ἐτρῐ́ᾰσᾰ", "", "", "", "to defeat"]) + let v = native_list_append(v, ["παρακείμενος", "verb", "πᾰρᾰκείμενος", "părăkeímenos", "πᾰρᾰκειμένη", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["γίνεται", "verb", "γῑ́νεται", "gī́netai", "", "", "third-person singular present"]) + let v = native_list_append(v, ["οἴχομαι", "verb", "ᾠχόμην", "", "", "", "to have or"]) + let v = native_list_append(v, ["ἔρρω", "verb", "ἦρρον", "", "", "", "to go slowly"]) + let v = native_list_append(v, ["ἐλαύνω", "verb", "ἐλαύνομαι", "", "", "", "to drive set"]) + let v = native_list_append(v, ["ψεύδω", "verb", "ψεύδομαι", "", "", "", "to lie deceive"]) + let v = native_list_append(v, ["ἦ", "verb", "ê", "", "", "", "third-person singular imperfect/aorist"]) + let v = native_list_append(v, ["ἠρόμην", "verb", "ērómēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀμείβω", "verb", "ᾰ̓μείβω", "", "", "", "to exchange"]) + let v = native_list_append(v, ["ἐπιθυμέω", "verb", "ἐπῐθῡμέω", "", "", "", "to set ones"]) + let v = native_list_append(v, ["ῥέζω", "verb", "ἔρεζον", "", "", "", "to do make"]) + let v = native_list_append(v, ["ἀγορεύω", "verb", "ἀγορεύομαι", "", "", "", "to speak in"]) + let v = native_list_append(v, ["ἁνδάνω", "verb", "ἁνδᾰ́νω", "", "", "", "to please to"]) + let v = native_list_append(v, ["ἱκνέομαι", "verb", "ῐ̔κνέομαι", "", "", "", "to come reach"]) + let v = native_list_append(v, ["ἀναλαμβάνω", "verb", "ᾰ̓νᾰλᾰμβᾰ́νω", "", "", "", "take up"]) + let v = native_list_append(v, ["ἴσχω", "verb", "ῐ̓́σχω", "", "", "", "to hold back"]) + let v = native_list_append(v, ["δέφω", "verb", "δέφομαι", "", "", "", "to soften knead"]) + let v = native_list_append(v, ["ἔτλην", "verb", "ἔτλᾰν", "", "", "", "to suffer undergo"]) + let v = native_list_append(v, ["χρή", "verb", "khrḗ", "Attic present", "grc-conj", "", "have to ought"]) + let v = native_list_append(v, ["ἀΐω", "verb", "ᾰ̓ῐ̈́ω", "", "", "", "to perceive with"]) + let v = native_list_append(v, ["ἦλθον", "verb", "ἤλῠθον", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ἀγνώσσω", "verb", "agnṓssō", "", "", "", "poetic and Koine"]) + let v = native_list_append(v, ["πράττω", "verb", "πρᾱ́ττω", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["τάττω", "verb", "τᾰ́ττω", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["συναλίζω", "verb", "συνᾱλίζω", "", "", "", "to bring together"]) + let v = native_list_append(v, ["ζεύγνυμι", "verb", "ζεύγνῡμῐ", "", "", "", "to yoke saddle"]) + let v = native_list_append(v, ["ἄρνυμαι", "verb", "ἄρνῠμαι", "", "", "", "to get win"]) + let v = native_list_append(v, ["ὀρίνειν", "verb", "ὀρῑ́νειν", "orī́nein", "", "", "present infinitive of"]) + let v = native_list_append(v, ["διπλόω", "verb", "διπλοόω", "", "", "", "to repeat a"]) + let v = native_list_append(v, ["ἔπιθον", "verb", "ἔπῐθον", "épĭthon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["πείσω", "verb", "peísō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["πείσομαι", "verb", "peísomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἔπειθον", "verb", "épeithon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["πέποιθα", "verb", "πέποιθᾰ", "pépoithă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ἦν", "verb", "ên", "ἔᾱ", "ἔον", "", "first/third-person singular imperfect"]) + let v = native_list_append(v, ["ἔσομαι", "verb", "ésomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἰέναι", "verb", "ῐ̓έναι", "ĭénai", "", "", "present active infinitive"]) + let v = native_list_append(v, ["εἶσι", "verb", "εἶσῐ", "eîsĭ", "εἶσ’", "", "third-person singular present"]) + let v = native_list_append(v, ["εἶσιν", "verb", "εἶσῐν", "eîsĭn", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἴασι", "verb", "ῐ̓́ᾱσῐ", "ĭ́āsĭ", "ῐ̓́ᾱσῐν", "", "third-person plural present"]) + let v = native_list_append(v, ["ἴμεν", "verb", "ῐ̓́μεν", "ĭ́men", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἴτε", "verb", "ῐ̓́τε", "ĭ́te", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἴασιν", "verb", "ῐ̓́ᾱσῐν", "ĭ́āsĭn", "ῐ̓́ᾱσῐ", "", "third-person plural present"]) + let v = native_list_append(v, ["εἶδον", "verb", "ῐ̓δήσω", "", "", "", "to see to"]) + let v = native_list_append(v, ["ἔδωκα", "verb", "ἔδωκᾰ", "édōkă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["δέδωκα", "verb", "δέδωκᾰ", "dédōkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ἤγαγον", "verb", "ἤγᾰγον", "ḗgăgon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["καλῶ", "verb", "κᾰλῶ", "kălô", "", "", "inflection of κᾰλέω"]) + let v = native_list_append(v, ["λήψομαι", "verb", "lḗpsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἔλαβον", "verb", "ἔλᾰβον", "élăbon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["χράομαι", "verb", "χρῶμαι", "", "", "", "desire yearn after"]) + let v = native_list_append(v, ["ἔστην", "verb", "éstēn", "", "", "", "first-person singular root"]) + let v = native_list_append(v, ["ἔπαθον", "verb", "ἔπᾰθον", "épăthon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["πέπονθα", "verb", "πέπονθᾰ", "péponthă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["γενήσομαι", "verb", "genḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἐγενόμην", "verb", "egenómēn", "", "", "", "first-person singular second"]) + let v = native_list_append(v, ["γέγονα", "verb", "γέγονᾰ", "gégonă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["γεγένημαι", "verb", "gegénēmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ἐγενήθην", "verb", "egenḗthēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ὄψομαι", "verb", "ópsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["πέρθω", "verb", "πέρθεσκον", "", "", "", "to sack ravage"]) + let v = native_list_append(v, ["ἀτασθάλλω", "verb", "atasthállō", "present", "grc-conj", "", "to act recklessly"]) + let v = native_list_append(v, ["νέομαι", "verb", "νεῦμαι", "", "", "", "to make ones"]) + let v = native_list_append(v, ["ἤσθιον", "verb", "ἤσθῐον", "ḗsthĭon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ἀφαιρέω", "verb", "ἀφαιρέομαι", "", "", "", "to take away"]) + let v = native_list_append(v, ["πέρδονται", "verb", "pérdontai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["πέρδεται", "verb", "pérdetai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἔρδω", "verb", "ἔρδον", "", "", "", "to act as"]) + let v = native_list_append(v, ["εἰπέ", "verb", "eipé", "εἴπ’", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἐρύομαι", "verb", "erúomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["λέγοντας", "verb", "λέγοντᾰς", "légontăs", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἔβην", "verb", "ébēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["βιβάς", "verb", "βῐβᾱ́ς", "bĭbā́s", "Attic declension-3", "", "present participle striding"]) + let v = native_list_append(v, ["βέβηκα", "verb", "βέβηκᾰ", "bébēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["βεβηκώς", "verb", "first", "third declension", "bebēkṓs", "", "masculine nominative singular"]) + let v = native_list_append(v, ["βήσω", "verb", "bḗsō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἔβησα", "verb", "ἔβησᾰ", "ébēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["διατρίβω", "verb", "δῐᾰτρῑ́βω", "", "", "", "to rub hard"]) + let v = native_list_append(v, ["ἔφησθα", "verb", "ἔφησθᾰ", "éphēsthă", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["φῄς", "verb", "phēís", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["φησί", "verb", "φησῐ́", "phēsĭ́", "φησι", "", "enclitic third-person singular"]) + let v = native_list_append(v, ["φατόν", "verb", "φᾰτόν", "phătón", "", "", "enclitic second/third-person dual"]) + let v = native_list_append(v, ["φαμέν", "verb", "φᾰμέν", "phămén", "", "", "enclitic first-person plural"]) + let v = native_list_append(v, ["φατέ", "verb", "φᾰτέ", "phăté", "", "", "enclitic second-person plural"]) + let v = native_list_append(v, ["φασί", "verb", "φᾱσῐ́", "phāsĭ́", "φασι", "", "enclitic third-person plural"]) + let v = native_list_append(v, ["φασίν", "verb", "φᾱσῐ́ν", "phāsĭ́n", "φᾱσῐ́", "", "enclitic third-person plural"]) + let v = native_list_append(v, ["ἔπεφνον", "verb", "πεφήσομαι", "", "", "", "to slay kill"]) + let v = native_list_append(v, ["λιλαίομαι", "verb", "λῐλαίομαι", "", "", "", "to desire be"]) + let v = native_list_append(v, ["περιπλόμενος", "verb", "περῐπλόμενος", "perĭplómenos", "Epic declension-2", "", "moving or being"]) + let v = native_list_append(v, ["κτάομαι", "verb", "κτᾰ́ομαι", "", "", "", "to get obtain"]) + let v = native_list_append(v, ["ὀλιγοψυχέω", "verb", "ὀλῐγοψῡχέω", "", "", "", "to be faint"]) + let v = native_list_append(v, ["ἐλεαίρω", "verb", "ἐλέαιρον", "", "", "", "to feel pity"]) + let v = native_list_append(v, ["ἐπικλώθω", "verb", "ἐπῐκλώθω", "", "", "", "to assign to"]) + let v = native_list_append(v, ["διαπυνθάνομαι", "verb", "δῐᾰπῠνθᾰ́νομαι", "", "", "", "to find out"]) + let v = native_list_append(v, ["προπυνθάνομαι", "verb", "προπῠνθᾰ́νομαι", "", "", "", "to find out"]) + let v = native_list_append(v, ["φοιτάω", "verb", "φοιτᾰ́ω", "", "", "", "Indicates repeated motion"]) + let v = native_list_append(v, ["μετεκίαθον", "verb", "μετεκῑ́ᾰθον", "", "", "", "to go in"]) + let v = native_list_append(v, ["φεύγει", "verb", "pheúgei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["πιέζομαι", "verb", "πῐέζομαι", "pĭézomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["ἀποθεόω", "verb", "ἀποθεόομαι", "", "", "", "to deify"]) + let v = native_list_append(v, ["μέλδομαι", "verb", "méldomai", "present", "grc-conj", "", "to melt"]) + let v = native_list_append(v, ["διασκευάζω", "verb", "διασκευᾰ́ζω", "", "", "", "to get ready"]) + let v = native_list_append(v, ["σκευάζω", "verb", "σκευᾰ́ζω", "", "", "", "to arrange make"]) + let v = native_list_append(v, ["ἑρμηνεύω", "verb", "ἑρμηνεύομαι", "", "", "", "to interpret esp."]) + let v = native_list_append(v, ["λιτανεύω", "verb", "λῐτᾰνεύω", "", "", "", "to pray to"]) + let v = native_list_append(v, ["λήθω", "verb", "λήθομαι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["βαλλίζω", "verb", "βαλλίζομαι", "", "", "", "to dance jump"]) + let v = native_list_append(v, ["καταπαιδεραστέω", "verb", "καταπαιδεραστέομαι", "", "", "", "to fuck away"]) + let v = native_list_append(v, ["καταπεπαιδεραστηκέναι", "verb", "κᾰτᾰπεπαιδερᾰστηκέναι", "kătăpepaiderăstēkénai", "", "", "perfect active infinitive"]) + let v = native_list_append(v, ["διαιτάω", "verb", "δῐαιτᾰ́ω", "", "", "", "to treat handle"]) + let v = native_list_append(v, ["διῄτων", "verb", "δῐῄτων", "dĭēítōn", "", "", "inflection of δῐαιτᾰ́ω"]) + let v = native_list_append(v, ["ἐδιαίτων", "verb", "ἐδῐαίτων", "edĭaítōn", "", "", "inflection of δῐαιτᾰ́ω"]) + let v = native_list_append(v, ["διαιτήσω", "verb", "δῐαιτήσω", "dĭaitḗsō", "", "", "inflection of δῐαιτᾰ́ω"]) + let v = native_list_append(v, ["διῄτησα", "verb", "δῐῄτησᾰ", "dĭēítēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["δεδιῄτηκα", "verb", "δεδῐῄτηκᾰ", "dedĭēítēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["διῃτώμην", "verb", "δῐῃτώμην", "dĭēitṓmēn", "", "", "contracted first-person singular"]) + let v = native_list_append(v, ["ἐδιῃτῶ", "verb", "ἐδῐῃτῶ", "edĭēitô", "", "", "contracted second-person singular"]) + let v = native_list_append(v, ["διαιτήσομαι", "verb", "δῐαιτήσομαι", "dĭaitḗsomai", "", "", "first-person singular future"]) + let v = native_list_append(v, ["διῃτήθην", "verb", "δῐῃτήθην", "dĭēitḗthēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["δεδιῄτημαι", "verb", "δεδῐῄτημαι", "dedĭēítēmai", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["διαιτᾶται", "verb", "δῐαιτᾶται", "dĭaitâtai", "", "", "contracted third-person singular"]) + let v = native_list_append(v, ["διαιτᾶσθαι", "verb", "δῐαιτᾶσθαι", "dĭaitâsthai", "", "", "contracted present mediopassive"]) + let v = native_list_append(v, ["διῄτημαι", "verb", "δῐῄτημαι", "dĭēítēmai", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["διῃτημένος", "verb", "δῐῃτημένος", "dĭēitēménos", "δῐῃτημένη", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["διῄτησαν", "verb", "δῐῄτησᾰν", "dĭēítēsăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["διαιτῶν", "verb", "δῐαιτῶν", "first", "third declension", "", "contracted present active"]) + let v = native_list_append(v, ["διαιτῶντες", "verb", "δῐαιτῶντες", "dĭaitôntes", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["διαγωνίζομαι", "verb", "δῐᾰγωνῐ́ζομαι", "", "", "", "to contend struggle"]) + let v = native_list_append(v, ["διασκεδάζομαι", "verb", "diaskedázomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["λείπει", "verb", "leípei", "", "", "", "inflection of λείπω"]) + let v = native_list_append(v, ["λάμπει", "verb", "λᾰ́μπει", "lắmpei", "", "", "inflection of λᾰ́μπω"]) + let v = native_list_append(v, ["κοιμηθείς", "verb", "first", "third declension", "koimētheís", "", "aorist passive participle"]) + let v = native_list_append(v, ["ἐπίθετον", "verb", "ἐπῐ́θετον", "epĭ́theton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ὄλλυμι", "verb", "ὄλλῡμῐ", "", "", "", "to destroy make"]) + let v = native_list_append(v, ["ἄγε", "verb", "áge", "ᾰ̓́γ’", "ἄγι", "", "second-person singular present"]) + let v = native_list_append(v, ["ἄγετε", "verb", "ágete", "ἄγεθ’", "ἄγετ’", "", "second-person plural present"]) + let v = native_list_append(v, ["βάσκειν", "verb", "báskein", "", "", "", "to talk speak"]) + let v = native_list_append(v, ["ἱστορέω", "verb", "ῐ̔στορέω", "", "", "", "to inquire ask"]) + let v = native_list_append(v, ["τέρπω", "verb", "τέρπομαι", "", "", "", "to delight"]) + let v = native_list_append(v, ["στοιχειόω", "verb", "στοιχειόομαι", "", "", "", "to teach or"]) + let v = native_list_append(v, ["ἀποπέρδομαι", "verb", "ἀπεπερδόμην", "", "", "", "to break wind"]) + let v = native_list_append(v, ["περικλείω", "verb", "περικλείομαι", "", "", "", "to shut in"]) + let v = native_list_append(v, ["περιέκλεισα", "verb", "περῐέκλεισα", "perĭékleisa", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["περικλείομαι", "verb", "περῐκλείομαι", "perĭkleíomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["τράγε", "verb", "τρᾰ́γε", "trắge", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["τράγοι", "verb", "τρᾰ́γοι", "trắgoi", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["μεταφράζομαι", "verb", "metaphrázomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["χρηματίζω", "verb", "χρημᾰτῐ́ζω", "", "", "", "to negotiate transact"]) + let v = native_list_append(v, ["χρηματίζομαι", "verb", "χρημᾰτίζομαι", "khrēmătízomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παρεών", "verb", "πᾰρεών", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ποτίζω", "verb", "ποτῐ́ζω", "", "", "", "to give to"]) + let v = native_list_append(v, ["στάσης", "verb", "στᾱ́σης", "stā́sēs", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["προτιμήσεις", "verb", "προτῑμήσεις", "protīmḗseis", "", "", "second-person singular future"]) + let v = native_list_append(v, ["τρέχει", "verb", "trékhei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀπιχθυόομαι", "verb", "ᾰ̓πῐχθῠόομαι", "", "", "", "to become a"]) + let v = native_list_append(v, ["ἰχθυάζομαι", "verb", "ἰχθῠάζομαι", "", "", "", "to fish angle"]) + let v = native_list_append(v, ["ἰχθυάω", "verb", "ἰχθῠᾰ́ω", "", "", "", "to fish angle"]) + let v = native_list_append(v, ["ἰχθυολογέω", "verb", "ἰχθῠολογέω", "", "", "", "to discuss fish"]) + let v = native_list_append(v, ["πρόκειται", "verb", "prókeitai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["συμβουλεύομαι", "verb", "σῠμβουλεύομαι", "sŭmbouleúomai", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["συμβουλεύω", "verb", "σῠμβουλεύω", "", "", "", "to advise counsel"]) + let v = native_list_append(v, ["ἐλεύσομαι", "verb", "eleúsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἐλήλυθα", "verb", "ἐλήλῠθᾰ", "elḗlŭthă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ὀλιγαρχέω", "verb", "ὀλιγαρχέομαι", "", "", "", "to be part"]) + let v = native_list_append(v, ["μοναρχέω", "verb", "μοναρχέομαι", "", "", "", "to rule alone"]) + let v = native_list_append(v, ["εἴην", "verb", "eíēn", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["εἶμεν", "verb", "eîmen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ᾖς", "verb", "ēîs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ὦσι", "verb", "ὦσῐ", "ôsĭ", "ὦσιν", "", "third-person plural present"]) + let v = native_list_append(v, ["ὦμεν", "verb", "ômen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἦτον", "verb", "êton", "", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἦτε", "verb", "ête", "", "", "", "inflection of εἰμί"]) + let v = native_list_append(v, ["εἶτον", "verb", "eîton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["εἶτε", "verb", "eîte", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["εἶεν", "verb", "eîen", "", "", "", "third-person plural active"]) + let v = native_list_append(v, ["εἴτην", "verb", "eítēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["εἴητον", "verb", "eíēton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["εἴητε", "verb", "eíēte", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["εἴησαν", "verb", "εἴησᾰν", "eíēsăn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ὦσιν", "verb", "ὦσῐν", "ôsĭn", "ὦσι", "", "third-person plural present"]) + let v = native_list_append(v, ["εἰήτην", "verb", "eiḗtēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["εἴη", "verb", "eíē", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["εἴημεν", "verb", "eíēmen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["εἴης", "verb", "eíēs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἐποίησε", "verb", "epoíēse", "ἐποίησεν", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐποίησεν", "verb", "epoíēsen", "ἐποίησε", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["διεχώρισε", "verb", "δῐεχώρῐσε", "dĭekhṓrĭse", "διεχώρισεν", "", "third-person singular aorist"]) + let v = native_list_append(v, ["διεχώρισεν", "verb", "δῐεχώρῐσεν", "dĭekhṓrĭsen", "διεχώρισε", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐπεφέρετο", "verb", "epephéreto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["γίνεσθαι", "verb", "γῑ́νεσθαι", "gī́nesthai", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἰόν", "verb", "ῐ̓όν", "ĭón", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["φαίνων", "verb", "first", "third declension", "phaínōn", "", "shining"]) + let v = native_list_append(v, ["φαέθω", "verb", "φᾰέθω", "", "", "", "to shine to"]) + let v = native_list_append(v, ["φαέθων", "verb", "φᾰέθων", "first", "third declension", "", "shining radiant"]) + let v = native_list_append(v, ["κτύπησα", "verb", "κτύπησᾰ", "ktúpēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["καινόω", "verb", "καινόομαι", "", "", "", "to make new"]) + let v = native_list_append(v, ["ἀνακαινόω", "verb", "ᾰ̓νᾰκαινόω", "", "", "", "to be renewed"]) + let v = native_list_append(v, ["τρίζω", "verb", "τρῑ́ζω", "", "", "", "to scream cry"]) + let v = native_list_append(v, ["σκάζω", "verb", "σκᾰ́ζω", "", "", "", "to limp"]) + let v = native_list_append(v, ["ἔφυγον", "verb", "ἔφῠγον", "éphŭgon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["φύσα", "verb", "φῡ́σᾱ", "phū́sā", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πρόσφημι", "verb", "προσέφην", "", "", "", "to speak to"]) + let v = native_list_append(v, ["σαρκάζω", "verb", "σαρκᾰ́ζω", "", "", "", "to gnash"]) + let v = native_list_append(v, ["ῥίπτω", "verb", "ῥῑ́πτω", "", "", "", "to throw cast"]) + let v = native_list_append(v, ["ῥιπτάζω", "verb", "ῥῑπτᾰ́ζω", "", "", "", "to throw to"]) + let v = native_list_append(v, ["ὀρθόω", "verb", "ὀρθόομαι", "", "", "", "to set upright"]) + let v = native_list_append(v, ["προσέφη", "verb", "proséphē", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["θεῶν", "verb", "theôn", "Attic declension-3", "grc-adecl", "", "present participle of"]) + let v = native_list_append(v, ["φάτο", "verb", "φᾰ́το", "phắto", "ἔφατο", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἔφατο", "verb", "ἔφᾰτο", "éphăto", "ἔφᾰθ’", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["προσαυδάω", "verb", "προσαυδᾰ́ω", "", "", "", "to speak to"]) + let v = native_list_append(v, ["προσηύδα", "verb", "προσηύδᾱ", "prosēúdā", "προσηύδᾰε", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["βῆ", "verb", "bê", "ἔβη", "ἔβησε", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀγείρω", "verb", "ἀγείρομαι", "", "", "", "to collect gather"]) + let v = native_list_append(v, ["προσεῖπον", "verb", "προσειπόμην", "", "", "", "to speak to"]) + let v = native_list_append(v, ["προσέειπε", "verb", "proséeipe", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["οἶμαι", "verb", "oîmai", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["ἔφατ'", "verb", "ἔφᾰτ’", "éphăt’", "ἔφᾰθ’", "", "apocopic form of"]) + let v = native_list_append(v, ["εἰπών", "verb", "eipṓn", "Attic declension-3", "grc-adecl", "", "aorist active participle"]) + let v = native_list_append(v, ["ἀπαμείβομαι", "verb", "ἀπαμειβόμην", "", "", "", "to answer reply"]) + let v = native_list_append(v, ["ἀπαμειβόμενος", "verb", "apameibómenos", "Attic declension-2", "grc-adecl", "", "present middle participle"]) + let v = native_list_append(v, ["ἔφαθ'", "verb", "ἔφᾰθ’", "éphăth’", "ἔφᾰτ’", "", "apocopic form of"]) + let v = native_list_append(v, ["ἰδών", "verb", "first", "third declension", "idṓn", "", "aorist active participle"]) + let v = native_list_append(v, ["μάχεσθαι", "verb", "μᾰ́χεσθαι", "mắkhesthai", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἦλθε", "verb", "êlthe", "ἦλθ’", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["δικάζω", "verb", "δῐκᾰ́ζω", "", "", "", "to judge sit"]) + let v = native_list_append(v, ["ἦεν", "verb", "êen", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἐών", "verb", "first", "third declension", "eṓn", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ὄντα", "verb", "ὄντᾰ", "óntă", "ἐόντα", "", "inflection of ὤν"]) + let v = native_list_append(v, ["αὐδάω", "verb", "αὐδᾰ́ω", "", "", "", "to speak utter"]) + let v = native_list_append(v, ["ηὔδα", "verb", "ηὔδᾱ", "ēúdā", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἔειπε", "verb", "éeipe", "εἶπε", "εἶπεν", "", "aorist active indicative"]) + let v = native_list_append(v, ["ἐπανίημι", "verb", "ἐπᾰνῐ́ημῐ", "", "", "", "to let loose"]) + let v = native_list_append(v, ["φωνήσας", "verb", "φωνήσᾱς", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["ἔπι", "verb", "ἔπῐ", "épĭ", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἔμμεναι", "verb", "émmenai", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["στῆ", "verb", "stê", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["βεβαιώσεις", "verb", "bebaiṓseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["πολεμέω", "verb", "πολεμῶ", "", "", "", "to make war"]) + let v = native_list_append(v, ["ἔην", "verb", "éēn", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἦσαν", "verb", "ἦσᾰν", "êsăn", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἠμείβετ'", "verb", "ἠμείβετ’", "ēmeíbet’", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἠμείβετο", "verb", "ēmeíbeto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["νυγείς", "verb", "νῠγείς", "first", "third declension", "", "aorist passive participle"]) + let v = native_list_append(v, ["νύσσω", "verb", "νῠ́σσω", "", "", "", "to touch with"]) + let v = native_list_append(v, ["σημειόω", "verb", "σημειόομαι", "", "", "", "to mark stamp"]) + let v = native_list_append(v, ["σημειοῦν", "verb", "sēmeioûn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["σημειῶν", "verb", "first", "third declension", "sēmeiôn", "", "present active participle"]) + let v = native_list_append(v, ["σεσημειωμένος", "verb", "sesēmeiōménos", "σεσημειωμένη", "σεσημειωμένον", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["σεσημειωμένας", "verb", "σεσημειωμένᾱς", "sesēmeiōménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["σημειωθῇ", "verb", "sēmeiōthēî", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["σεσημείωμαι", "verb", "sesēmeíōmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["σημειούμενος", "verb", "sēmeioúmenos", "σημειουμένη", "σημειούμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["σημειωσόμεθα", "verb", "σημειωσόμεθᾰ", "sēmeiōsómethă", "", "", "first-person plural future"]) + let v = native_list_append(v, ["σημειουμένου", "verb", "sēmeiouménou", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["σημείωσαι", "verb", "sēmeíōsai", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["σημειοῦται", "verb", "sēmeioûtai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["σεσημειωμένα", "verb", "σεσημειωμένᾰ", "sesēmeiōménă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["σεσημειώσεται", "verb", "sesēmeiṓsetai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["νύττω", "verb", "νῠ́ττω", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["νένυγμαι", "verb", "νένῠγμαι", "nénŭgmai", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ἐνύχθην", "verb", "ἐνῠ́χθην", "enŭ́khthēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐνύγην", "verb", "ἐνῠ́γην", "enŭ́gēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["νυγείη", "verb", "νῠγείη", "nŭgeíē", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["νύξε", "verb", "νῠ́ξε", "nŭ́xe", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["νύσσων", "verb", "first", "third declension", "nússōn", "", "present active participle"]) + let v = native_list_append(v, ["νύσσοντες", "verb", "nússontes", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["νύξας", "verb", "νῠ́ξᾰς", "nŭ́xăs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀπαμείψομαι", "verb", "ᾰ̓πᾰμείψομαι", "ăpămeípsomai", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἀπημείφθην", "verb", "ᾰ̓πημείφθην", "ăpēmeíphthēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀπάμειπτο", "verb", "ᾰ̓πᾰ́μειπτο", "ăpắmeipto", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["ἀπαμείβετο", "verb", "apameíbeto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ηὔδων", "verb", "ēúdōn", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["αὐδήσω", "verb", "audḗsō", "", "", "", "inflection of αὐδάω"]) + let v = native_list_append(v, ["ηὔδησα", "verb", "ηὔδησᾰ", "ēúdēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["αὐδήσας", "verb", "αὐδήσᾱς", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["αὐδήσασκε", "verb", "αὐδήσᾰσκε", "audḗsăske", "αὐδήσασκεν", "", "third-person singular aorist"]) + let v = native_list_append(v, ["αὐδήσασκεν", "verb", "αὐδήσᾰσκεν", "audḗsăsken", "", "", "alternative form of"]) + let v = native_list_append(v, ["αὐδήσασχ'", "verb", "αὐδήσασχ’", "audḗsaskh’", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ηὔδηκα", "verb", "ηὔδηκᾰ", "ēúdēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ηὐδώμην", "verb", "ēudṓmēn", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["αὐδηθείς", "verb", "first", "third declension", "audētheís", "", "aorist passive participle"]) + let v = native_list_append(v, ["ηὔδημαι", "verb", "ēúdēmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["αὐδηθήσομαι", "verb", "audēthḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["αὐδάομαι", "verb", "αὐδᾰ́ομαι", "audắomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ηὐδᾶτο", "verb", "ēudâto", "ηὐδᾶτ’", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["αὐδήσομαι", "verb", "audḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["αὐδᾶν", "verb", "audân", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["αὔδα", "verb", "αὔδᾱ", "aúdā", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ηὐδᾶτ'", "verb", "ηὐδᾶτ’", "ēudât’", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὐδῶν", "verb", "first", "third declension", "audôn", "", "present active participle"]) + let v = native_list_append(v, ["αὐδῶ", "verb", "audô", "", "", "", "inflection of αὐδάω"]) + let v = native_list_append(v, ["αὐδᾷ", "verb", "audāî", "", "", "", "inflection of αὐδάω"]) + let v = native_list_append(v, ["αὐδῶμαι", "verb", "audômai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["αὐδᾶσθαι", "verb", "audâsthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["αὐδώμενος", "verb", "audṓmenos", "αὐδωμένη", "αὐδώμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ὑποπτεύω", "verb", "ῠ̔ποπτεύω", "", "", "", "to suspect to"]) + let v = native_list_append(v, ["ἀκμάζω", "verb", "ᾰ̓κμᾰ́ζω", "", "", "", "to be at"]) + let v = native_list_append(v, ["ἐφοράω", "verb", "ἐφορᾰ́ω", "", "", "", "to oversee watch"]) + let v = native_list_append(v, ["ἐφορᾷς", "verb", "ephorāîs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἐφορᾷ", "verb", "ephorāî", "", "", "", "inflection of ἐφοράω"]) + let v = native_list_append(v, ["ἐφορῶν", "verb", "first", "third declension", "ephorôn", "", "present active participle"]) + let v = native_list_append(v, ["ἐφορῶντες", "verb", "ephorôntes", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["ἐφορῶσα", "verb", "ephorôsa", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["ἐφορᾶν", "verb", "ephorân", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἐπόψεται", "verb", "epópsetai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἐπόψομαι", "verb", "epópsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἐπόψατο", "verb", "ἐπόψᾰτο", "epópsăto", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐποψόμενος", "verb", "epopsómenos", "ἐποψομένη", "ἐποψόμενον", "", "future middle participle"]) + let v = native_list_append(v, ["ἐφορᾶσθαι", "verb", "ephorâsthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἐπεῖδον", "verb", "epeîdon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ἐπόψεσθαι", "verb", "epópsesthai", "", "", "", "future middle infinitive"]) + let v = native_list_append(v, ["ἐφεωρᾶτο", "verb", "epheōrâto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["φορέω", "verb", "φορέομαι", "", "", "", "frequentative of φέρω"]) + let v = native_list_append(v, ["φορῆναι", "verb", "phorênai", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["φορεῖν", "verb", "phoreîn", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἐφόρεον", "verb", "ephóreon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ἐφόρει", "verb", "ephórei", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["φορέεσκον", "verb", "phoréeskon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["φορήσω", "verb", "phorḗsō", "", "", "", "inflection of φορέω"]) + let v = native_list_append(v, ["ἀνασκάπτω", "verb", "ᾰ̓νᾰσκᾰ́πτω", "", "", "", "to dig up"]) + let v = native_list_append(v, ["ἀνεσκαμμένος", "verb", "aneskamménos", "ἀνεσκαμμένη", "ἀνεσκαμμένον", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["ἀνεσκαμμένα", "verb", "ἀνεσκαμμένᾰ", "aneskamménă", "", "", "nominative/accusative/vocative neuter plural"]) + let v = native_list_append(v, ["ἔρομαι", "verb", "εἰρόμην", "", "", "", "to ask"]) + let v = native_list_append(v, ["εἴρομαι", "verb", "εἰρέομαι", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἔρεσθαι", "verb", "éresthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἐρέσθαι", "verb", "erésthai", "", "", "", "aorist middle infinitive"]) + let v = native_list_append(v, ["τρώγει", "verb", "trṓgei", "", "", "", "inflection of τρώγω"]) + let v = native_list_append(v, ["κρίνου", "verb", "κρῑ́νου", "krī́nou", "", "", "second-person singular present"]) + let v = native_list_append(v, ["κρίνων", "verb", "κρῑ́νων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ἐκτυφλόω", "verb", "ἐκτῠφλόω", "ektŭphlóō", "", "", "to make blind"]) + let v = native_list_append(v, ["δείξω", "verb", "deíxō", "", "", "", "inflection of δείκνῡμι"]) + let v = native_list_append(v, ["γέννας", "verb", "γέννᾱς", "génnās", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἐξηγέομαι", "verb", "ἐξηγοῦμαι", "", "", "", "to lead the"]) + let v = native_list_append(v, ["ἐπεξηγέομαι", "verb", "ἐπεξηγοῦμαι", "", "", "", "to explain in"]) + let v = native_list_append(v, ["κλέψω", "verb", "klépsō", "", "", "", "inflection of κλέπτω"]) + let v = native_list_append(v, ["δώσετε", "verb", "dṓsete", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["δώσω", "verb", "dṓsō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["δώσεις", "verb", "dṓseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["δώσει", "verb", "dṓsei", "", "", "", "inflection of δίδωμι"]) + let v = native_list_append(v, ["ψύξεις", "verb", "ψῡ́ξεις", "psū́xeis", "", "", "second-person singular indicative"]) + let v = native_list_append(v, ["φεύγειν", "verb", "pheúgein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἐφόρησα", "verb", "ἐφόρησᾰ", "ephórēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["φόρησα", "verb", "φόρησᾰ", "phórēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐφόρεσα", "verb", "ἐφόρεσᾰ", "ephóresă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["φορήσομαι", "verb", "phorḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["φορέσω", "verb", "phorésō", "", "", "", "inflection of φορέω"]) + let v = native_list_append(v, ["ἐφορησάμην", "verb", "ἐφορησᾰ́μην", "ephorēsắmēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐφορήθην", "verb", "ephorḗthēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["πεφόρημαι", "verb", "pephórēmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεφόρητο", "verb", "pephórēto", "", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["φορέουσι", "verb", "φορέουσῐ", "phoréousĭ", "", "", "third-person plural present"]) + let v = native_list_append(v, ["φορέει", "verb", "phoréei", "", "", "", "inflection of φορέω"]) + let v = native_list_append(v, ["ἐφόρεε", "verb", "ephóree", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἐφόρησε", "verb", "ephórēse", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["φορέεσκε", "verb", "phoréeske", "φορέεσκεν", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["φορεῖς", "verb", "phoreîs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["φορεῖ", "verb", "phoreî", "", "", "", "inflection of φορέω"]) + let v = native_list_append(v, ["φόρει", "verb", "phórei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["φορούμενος", "verb", "phoroúmenos", "Attic declension-2", "grc-adecl", "", "present mediopassive participle"]) + let v = native_list_append(v, ["πεφορημένον", "verb", "pephorēménon", "", "", "", "inflection of πεφορημένος"]) + let v = native_list_append(v, ["πεφορημένος", "verb", "pephorēménos", "Attic declension-2", "grc-adecl", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["φορεῖται", "verb", "phoreîtai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["λελείμμεθον", "verb", "leleímmethon", "", "", "", "first-person dual perfect"]) + let v = native_list_append(v, ["κομίζω", "verb", "κομῐ́ζω", "", "", "", "to take care"]) + let v = native_list_append(v, ["ἔλιπε", "verb", "élipe", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐσμέν", "verb", "esmén", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἐστέ", "verb", "esté", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["εἰσί", "verb", "εἰσῐ́", "eisĭ́", "εἰσι", "", "third-person plural present"]) + let v = native_list_append(v, ["εἰσίν", "verb", "εἰσῐ́ν", "eisĭ́n", "εἰσῐ́", "", "third-person plural present"]) + let v = native_list_append(v, ["ἐστίν", "verb", "ἐστῐ́ν", "estĭ́n", "ἐστῐ́", "", "third-person singular present"]) + let v = native_list_append(v, ["ἐστόν", "verb", "estón", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["οὖσα", "verb", "οὖσᾰ", "oûsă", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἔστε", "verb", "éste", "ἔσθ’", "ἔστ’", "", "second-person plural present"]) + let v = native_list_append(v, ["ἴσθι", "verb", "ῐ̓́σθῐ", "ĭ́sthĭ", "", "", "second-person singular present"]) + let v = native_list_append(v, ["οἶσθα", "verb", "οἶσθᾰ", "oîsthă", "οἶσθ’", "", "second-person singular present"]) + let v = native_list_append(v, ["οἶδε", "verb", "oîde", "οἶδ’", "οἶδεν", "", "third-person singular present"]) + let v = native_list_append(v, ["ἴστον", "verb", "ῐ̓́στον", "ĭ́ston", "", "", "inflection of οἶδᾰ"]) + let v = native_list_append(v, ["ἴσμεν", "verb", "ῐ̓́σμεν", "ĭ́smen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἴστε", "verb", "ῐ̓́στε", "ĭ́ste", "ἴστ’", "", "second-person plural present"]) + let v = native_list_append(v, ["ἴσασιν", "verb", "ῐ̓́σᾱσῐν", "ĭ́sāsĭn", "ῐ̓́σᾱσῐ", "", "third-person plural present"]) + let v = native_list_append(v, ["ἴσασι", "verb", "ῐ̓́σᾱσῐ", "ĭ́sāsĭ", "ῐ̓́σᾱσῐν", "", "third-person plural present"]) + let v = native_list_append(v, ["φάς", "verb", "φᾱ́ς", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["προσγράφω", "verb", "προσγρᾰ́φω", "", "", "", "to write in"]) + let v = native_list_append(v, ["ᾖσαν", "verb", "ᾖσᾰν", "ēîsăn", "", "", "third-person plural pluperfect"]) + let v = native_list_append(v, ["μένεις", "verb", "méneis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["μένει", "verb", "ménei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["μένετε", "verb", "ménete", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["εἶπε", "verb", "eîpe", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["αἰσχύνω", "verb", "αἰσχῡ́νω", "", "", "", "to make ugly"]) + let v = native_list_append(v, ["αἰσχύνομαι", "verb", "αἰσχῡ́νομαι", "aiskhū́nomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἁλίσκομαι", "verb", "ᾰ̔λῐ́σκομαι", "", "", "", "to be captured"]) + let v = native_list_append(v, ["ἀναλίσκω", "verb", "ᾰ̓νᾱλῐ́σκω", "", "", "", "to spend"]) + let v = native_list_append(v, ["ἀφικνέομαι", "verb", "ᾰ̓φῐκνέομαι", "", "", "", "to arrive come"]) + let v = native_list_append(v, ["βιόω", "verb", "βῐόω", "", "", "", "to live"]) + let v = native_list_append(v, ["βιῶ", "verb", "βῐῶ", "bĭô", "", "", "inflection of βιόω"]) + let v = native_list_append(v, ["βιοῖς", "verb", "βι̂οῖς", "bîoîs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["βιοῖ", "verb", "βῐοῖ", "bĭoî", "", "", "inflection of βιόω"]) + let v = native_list_append(v, ["βιοῦ", "verb", "βῐ́οῦ", "bĭ́oû", "", "", "second-person singular present"]) + let v = native_list_append(v, ["βιῶν", "verb", "βῐῶν", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["βιούς", "verb", "first", "third declension", "bioús", "", "aorist active participle"]) + let v = native_list_append(v, ["βιόν", "verb", "bión", "", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["δάκνω", "verb", "δᾰ́κνω", "", "", "", "to bite"]) + let v = native_list_append(v, ["ἕλκω", "verb", "ἕλκομαι", "", "", "", "to drag pull"]) + let v = native_list_append(v, ["ἑλκύω", "verb", "ἑλκῠ́ω", "", "", "", "synonym of ἕλκω"]) + let v = native_list_append(v, ["ἥδομαι", "verb", "ἡδόμην", "", "", "", "to be pleased"]) + let v = native_list_append(v, ["μέλει", "verb", "mélei", "", "", "", "inflection of μέλω"]) + let v = native_list_append(v, ["ἀναμιμνήσκω", "verb", "ᾰ̓νᾰμῐμνήσκω", "", "", "", "to remind"]) + let v = native_list_append(v, ["ἀνοίγνυμι", "verb", "ᾰ̓νοίγνῡμῐ", "", "", "", "synonym of ἀνοίγω"]) + let v = native_list_append(v, ["οἴγω", "verb", "οἴγομαι", "", "", "", "to open"]) + let v = native_list_append(v, ["οἴγνυμι", "verb", "οἴγνῡμῐ", "", "", "", "synonym of οἴγω"]) + let v = native_list_append(v, ["ἕποντο", "verb", "héponto", "ἕποντ’", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἰών", "verb", "ῐ̓ών", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ἐστιν", "verb", "ἐστῐν", "estĭn", "ἐστῐ", "", "third-person singular present"]) + let v = native_list_append(v, ["ἔσαν", "verb", "ἔσᾰν", "ésăn", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["εὐτυχέω", "verb", "εὐτῠχέω", "", "", "", "to have good"]) + let v = native_list_append(v, ["ἀποτελέω", "verb", "ᾰ̓ποτελέω", "", "", "", "to finish something"]) + let v = native_list_append(v, ["ἔσσεται", "verb", "éssetai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἰδόν", "verb", "idón", "", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["ἴδον", "verb", "ῐ̓́δον", "ĭ́don", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["νομίζεις", "verb", "νομῐ́ζεις", "nomĭ́zeis", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἔσται", "verb", "éstai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἐλθών", "verb", "first", "third declension", "elthṓn", "", "aorist active participle"]) + let v = native_list_append(v, ["ὀΐω", "verb", "ὀῑ̈́ω", "oī̈́ō", "", "", "first-person singular present"]) + let v = native_list_append(v, ["φέρων", "verb", "first", "third declension", "phérōn", "", "present active participle"]) + let v = native_list_append(v, ["ἦρχε", "verb", "êrkhe", "ἦρχ’", "ἦρχεν", "", "inflection of ἄρχω"]) + let v = native_list_append(v, ["ἱκέσθαι", "verb", "ῐ̔κέσθαι", "hĭkésthai", "", "", "aorist middle infinitive"]) + let v = native_list_append(v, ["ἔχε", "verb", "ékhe", "εἶχε", "ἔχεν", "", "inflection of ἔχω"]) + let v = native_list_append(v, ["κεῖται", "verb", "keîtai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["πέπνυμαι", "verb", "πέπνῡμαι", "pépnūmai", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεπνυμένος", "verb", "πεπνῡμένος", "pepnūménos", "πεπνῡμένη", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["λύοις", "verb", "λῡ́οις", "lū́ois", "", "", "second-person singular optative"]) + let v = native_list_append(v, ["νέω", "verb", "ἔνεον", "", "", "", "to swim"]) + let v = native_list_append(v, ["ἐρέω", "verb", "ἐρέομαι", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["νέεσθαι", "verb", "néesthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἔστι", "verb", "ἔστῐ", "éstĭ", "ἔστιν", "", "paroxytone third-person singular"]) + let v = native_list_append(v, ["ἐστι", "verb", "ἐστῐ", "estĭ", "ἐστιν", "", "third-person singular present"]) + let v = native_list_append(v, ["ἔχοντες", "verb", "ékhontes", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["ἔειπεν", "verb", "éeipen", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["δῶκε", "verb", "dôke", "δῶκ’", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐφάμην", "verb", "ἐφᾰ́μην", "ephắmēn", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["ἐσσι", "verb", "ἐσσῐ", "essĭ", "", "", "unstressed form of"]) + let v = native_list_append(v, ["ἐσσί", "verb", "ἐσσῐ́", "essĭ́", "ἐσσι", "", "second-person singular present"]) + let v = native_list_append(v, ["ἔχει", "verb", "ékhei", "", "", "", "inflection of ἔχω"]) + let v = native_list_append(v, ["εἴπω", "verb", "eípō", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἦλθεν", "verb", "êlthen", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["γαργαλίζω", "verb", "γᾰργᾰλῐ́ζω", "", "", "", "to tickle titillate"]) + let v = native_list_append(v, ["βάλεν", "verb", "βᾰ́λεν", "bắlen", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["κλώθω", "verb", "κλώθομαι", "", "", "", "to spin twist"]) + let v = native_list_append(v, ["κλώθομαι", "verb", "klṓthomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἅζομαι", "verb", "ᾰ̔́ζομαι", "", "", "", "to dread to"]) + let v = native_list_append(v, ["ἐρόμενος", "verb", "erómenos", "ἐρομένη", "ἐρόμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ἐράω", "verb", "ἐρᾰ́ω", "", "", "", "to love with"]) + let v = native_list_append(v, ["ἐρῶν", "verb", "first", "third declension", "erôn", "", "contracted present active"]) + let v = native_list_append(v, ["ἐρᾶσαι", "verb", "erâsai", "", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["δράσεις", "verb", "δρᾱ́σεις", "drā́seis", "", "", "second-person singular future"]) + let v = native_list_append(v, ["χρῆν", "verb", "khrên", "ἐχρῆν", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἐχρῆν", "verb", "ekhrên", "χρῆν", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ὄν", "verb", "ón", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ὄντες", "verb", "óntes", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["διανοέομαι", "verb", "δῐᾰνοέω", "", "", "", "to intend"]) + let v = native_list_append(v, ["διανοέω", "verb", "δῐᾰνοέω", "dĭănoéō", "", "", "Koine form of"]) + let v = native_list_append(v, ["δακρύων", "verb", "δᾰκρῡ́ων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["πλέον", "verb", "pléon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ψιλογράφει", "verb", "ψῑλογράφει", "psīlográphei", "", "", "second-person singular present"]) + let v = native_list_append(v, ["φαέθει", "verb", "φᾰέθει", "phăéthei", "", "", "third-person singular present"]) + let v = native_list_append(v, ["κρινῶ", "verb", "κρῑνῶ", "krīnô", "", "", "first-person singular future"]) + let v = native_list_append(v, ["μενῶ", "verb", "menô", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["πέρνημι", "verb", "πέρνημῐ", "", "", "", "to sell"]) + let v = native_list_append(v, ["ὑπισχνέομαι", "verb", "ὑπῐσχνέομαι", "", "", "", "to promise"]) + let v = native_list_append(v, ["ἐμπίμπλημι", "verb", "ἐμπῐ́μπλημῐ", "", "", "", "to fill full"]) + let v = native_list_append(v, ["διαφθείρω", "verb", "δῐᾰφθείρω", "", "", "", "to destroy"]) + let v = native_list_append(v, ["ἐδέησε", "verb", "edéēse", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["φέρον", "verb", "phéron", "", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["τίθεμαι", "verb", "τῐ́θεμαι", "tĭ́themai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["τίθης", "verb", "τῐ́θης", "tĭ́thēs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["θειῶν", "verb", "first", "third declension", "theiôn", "", "present active participle"]) + let v = native_list_append(v, ["ἑλών", "verb", "first", "third declension", "helṓn", "", "aorist active participle"]) + let v = native_list_append(v, ["προσέειπεν", "verb", "proséeipen", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["βοῶν", "verb", "first", "third declension", "boôn", "", "contracted present active"]) + let v = native_list_append(v, ["ὦρτο", "verb", "ôrto", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἔειπες", "verb", "éeipes", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἄνωγα", "verb", "ἄνωγᾰ", "", "", "", "to order command"]) + let v = native_list_append(v, ["ἀνώγει", "verb", "anṓgei", "", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["χαράσσω", "verb", "χᾰρᾰ́σσω", "", "", "", "to sharpen"]) + let v = native_list_append(v, ["ἀμειβόμενος", "verb", "ameibómenos", "ἀμειβομένη", "ἀμειβόμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ἕλε", "verb", "héle", "", "", "", "inflection of αἱρέω"]) + let v = native_list_append(v, ["κανονιζόμενος", "verb", "κᾰνονῐζόμενος", "kănonĭzómenos", "Attic declension-2", "", "present mediopassive participle"]) + let v = native_list_append(v, ["κανονιζόμενα", "verb", "κᾰνονῐζόμενᾰ", "kănonĭzómenă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["προηγούμενος", "verb", "proēgoúmenos", "προηγουμένη", "προηγούμενον", "", "preceding going first"]) + let v = native_list_append(v, ["ἔβη", "verb", "ébē", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἵκοντο", "verb", "ἵ¯κοντο", "hí̄konto", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἔνι", "verb", "ἔνῐ", "énĭ", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["τέκε", "verb", "téke", "", "", "", "inflection of τίκτω"]) + let v = native_list_append(v, ["ἔθηκε", "verb", "éthēke", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["θῆκε", "verb", "thêke", "θῆκ’", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["εἵλετο", "verb", "heíleto", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἰδέσθαι", "verb", "ῐ̓δέσθαι", "ĭdésthai", "", "", "aorist middle infinitive"]) + let v = native_list_append(v, ["σκεπάζω", "verb", "σκεπᾰ́ζω", "", "", "", "to cover shelter"]) + let v = native_list_append(v, ["μετέειπε", "verb", "metéeipe", "μετέειφ’", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["μεταφωνέω", "verb", "μετεφώνεον", "", "", "", "to address speak"]) + let v = native_list_append(v, ["βρέχομαι", "verb", "brékhomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["φημι", "verb", "φημῐ", "phēmĭ", "", "", "unstressed form of"]) + let v = native_list_append(v, ["ἔχουσιν", "verb", "ἔχουσῐν", "ékhousĭn", "ἔχουσῐ", "", "third-person plural present"]) + let v = native_list_append(v, ["ἵκετο", "verb", "ῑ̔́κετο", "hī́keto", "ῑ̔́κεθ’", "", "third-person singular aorist"]) + let v = native_list_append(v, ["φρονέων", "verb", "first", "third declension", "phronéōn", "", "present active participle"]) + let v = native_list_append(v, ["ἧκε", "verb", "hêke", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἔπλετο", "verb", "épleto", "", "", "", "third-person singular imperfect/aorist"]) + let v = native_list_append(v, ["ἀγορεύεις", "verb", "agoreúeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ϝέχω", "verb", "ϝέχομαι", "", "", "", "to bear carry"]) + let v = native_list_append(v, ["ἐγένοντο", "verb", "egénonto", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["νεκραγωγέω", "verb", "νεκρᾰγωγέω", "", "", "", "to lead the"]) + let v = native_list_append(v, ["ἴσαν", "verb", "ῐ̓́σᾰν", "ĭ́săn", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἐθέλεις", "verb", "ethéleis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["τελευτάω", "verb", "τελευτᾰ́ω", "", "", "", "to accomplish"]) + let v = native_list_append(v, ["φώνησεν", "verb", "phṓnēsen", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἔδωκε", "verb", "édōke", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["γενέσθαι", "verb", "genésthai", "", "", "", "aorist middle infinitive"]) + let v = native_list_append(v, ["ἔλθοι", "verb", "élthoi", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἕζετο", "verb", "hézeto", "ἕζετ’", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["τίθει", "verb", "τῐ́θει", "tĭ́thei", "", "", "inflection of τίθημι"]) + let v = native_list_append(v, ["πάρα", "verb", "πᾰ́ρᾰ", "pắră", "", "", "contraction of πᾰ́ρεστῐ"]) + let v = native_list_append(v, ["ἔσκε", "verb", "éske", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἄγων", "verb", "first", "third declension", "ágōn", "", "present active participle"]) + let v = native_list_append(v, ["ἐλθεῖν", "verb", "eltheîn", "", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["ἀγόρευον", "verb", "agóreuon", "", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ὄσσομαι", "verb", "ὀσσόμην", "", "", "", "to see with"]) + let v = native_list_append(v, ["ὀττεύομαι", "verb", "otteúomai", "present", "grc-conj", "", "to divine from"]) + let v = native_list_append(v, ["ἰδέ", "verb", "ῐ̓δέ", "ĭdé", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["εὐχόμενος", "verb", "eukhómenos", "εὐχομένη", "εὐχόμενον", "", "present middle participle"]) + let v = native_list_append(v, ["ἐνέπω", "verb", "ἐνῐ́σπω", "", "", "", "tell or tell"]) + let v = native_list_append(v, ["ἐννέπω", "verb", "ἔννεπον", "", "", "", "Epic Doric and"]) + let v = native_list_append(v, ["ἔννεπε", "verb", "énnepe", "", "", "", "inflection of ἐννέπω"]) + let v = native_list_append(v, ["θῆκεν", "verb", "thêken", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐνόησε", "verb", "enóēse", "ἐνόησ’", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["εἰδώς", "verb", "eidṓs", "εἰδυῖᾰ", "εἰδός", "", "perfect active participle"]) + let v = native_list_append(v, ["γένηται", "verb", "génētai", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἔχοντα", "verb", "ékhonta", "", "", "", "inflection of ἔχων"]) + let v = native_list_append(v, ["σέβω", "verb", "ἔσεβον", "", "", "", "to honour with"]) + let v = native_list_append(v, ["θεούσα", "verb", "θεούσᾱ", "theoúsā", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["θεούσας", "verb", "θεούσᾱς", "theoúsās", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἐξάπτω", "verb", "ἐξᾰ́πτω", "", "", "", "to attach to"]) + let v = native_list_append(v, ["ἐξαφθῇ", "verb", "ἐξᾰφθῇ", "exăphthēî", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["θωρακίζω", "verb", "θωρᾱκῐ́ζω", "", "", "", "to arm with"]) + let v = native_list_append(v, ["ἄεσα", "verb", "ἄεσᾰ", "áesă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["καλυφείς", "verb", "κᾰλῠφείς", "first", "third declension", "", "aorist passive participle"]) + let v = native_list_append(v, ["ἀμαυρόω", "verb", "ἀμαυρόομαι", "", "", "", "to darken"]) + let v = native_list_append(v, ["διαδέχομαι", "verb", "δῐᾰδέχομαι", "", "", "", "to receive one"]) + let v = native_list_append(v, ["νῆσον", "verb", "nêson", "", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["νήσω", "verb", "nḗsō", "", "", "", "inflection of νέω"]) + let v = native_list_append(v, ["ἔθηκεν", "verb", "éthēken", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["γένετο", "verb", "géneto", "γένετ’", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["γένετ'", "verb", "γένετ’", "génet’", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἔβαν", "verb", "ἔβᾰν", "ébăn", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["φάνη", "verb", "φᾰ́νη", "phắnē", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["κεῖτο", "verb", "keîto", "κεῖτ’", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["εἰσι", "verb", "εἰσῐ", "eisĭ", "εἰσ’", "", "unstressed form of"]) + let v = native_list_append(v, ["ὑμνέω", "verb", "ὑμνέομαι", "", "", "", "to sing about"]) + let v = native_list_append(v, ["βεβήκει", "verb", "bebḗkei", "", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["ἴομεν", "verb", "ῑ̓́ομεν", "ī́omen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["εἰμι", "verb", "εἰμῐ", "eimĭ", "", "", "unstressed form of"]) + let v = native_list_append(v, ["ἔγνω", "verb", "égnō", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["κρεμάννυμι", "verb", "κρεμᾰ́ννῡμῐ", "", "", "", "to hang hang"]) + let v = native_list_append(v, ["ὀτρύνω", "verb", "ὀτρῡ́νω", "", "", "", "to stir up"]) + let v = native_list_append(v, ["ὄτρυνε", "verb", "ὄτρῡνε", "ótrūne", "", "", "inflection of ὀτρῡ́νω"]) + let v = native_list_append(v, ["γένοιο", "verb", "génoio", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ὦρσε", "verb", "ôrse", "ὦρσεν", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐπάγω", "verb", "ἐπᾰ́γω", "", "", "", "to bring on"]) + let v = native_list_append(v, ["ὀκνέω", "verb", "ὀκνῶ", "", "", "", "to shrink from"]) + let v = native_list_append(v, ["κέκτημαι", "verb", "kéktēmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["κατήντησα", "verb", "κᾰτήντησᾰ", "kătḗntēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐτίθην", "verb", "ἐτῐ́θην", "etĭ́thēn", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["ἐτιθέμην", "verb", "ἐτῐθέμην", "etĭthémēn", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["αἰδέομαι", "verb", "αἰδοῦμαι", "", "", "", "to be ashamed"]) + let v = native_list_append(v, ["εἶχον", "verb", "eîkhon", "ἔχον", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ᾖε", "verb", "ēîe", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["πειράζει", "verb", "πειρᾰ́ζει", "peirắzei", "", "", "third-person singular indicative"]) + let v = native_list_append(v, ["πιστεύεις", "verb", "pisteúeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ὀχθέω", "verb", "ὀχθήσω", "", "", "", "to be troubled"]) + let v = native_list_append(v, ["ὀχθήσας", "verb", "ὀχθήσᾱς", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["λέγουσιν", "verb", "λέγουσῐν", "légousĭn", "λέγουσῐ", "", "third-person plural present"]) + let v = native_list_append(v, ["λέγουσι", "verb", "λέγουσῐ", "légousĭ", "λέγουσῐν", "", "third-person plural present"]) + let v = native_list_append(v, ["λέγομεν", "verb", "légomen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["λέγετον", "verb", "légeton", "", "", "", "inflection of λέγω"]) + let v = native_list_append(v, ["μιαίνω", "verb", "μιαίνομαι", "", "", "", "to paint"]) + let v = native_list_append(v, ["μιαίνομαι", "verb", "miaínomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέουσι", "verb", "nekragōgéousi", "", "", "", "dative plural masculine"]) + let v = native_list_append(v, ["νεκραγωγέουσιν", "verb", "nekragōgéousin", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέετε", "verb", "nekragōgéete", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέεις", "verb", "nekragōgéeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέει", "verb", "nekragōgéei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέετον", "verb", "nekragōgéeton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["νεκραγωγέομεν", "verb", "nekragōgéomen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέῃ", "verb", "nekragōgéēi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέητον", "verb", "nekragōgéēton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["νεκραγωγέωμεν", "verb", "nekragōgéōmen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέητε", "verb", "nekragōgéēte", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέωσι", "verb", "nekragōgéōsi", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέωσιν", "verb", "nekragōgéōsin", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέῃς", "verb", "nekragōgéēis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέοις", "verb", "nekragōgéois", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέοι", "verb", "nekragōgéoi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγεοίτην", "verb", "nekragōgeoítēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["νεκραγωγέοιτον", "verb", "nekragōgéoiton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["νεκραγωγέοιμι", "verb", "nekragōgéoimi", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέοιεν", "verb", "nekragōgéoien", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέοιτε", "verb", "nekragōgéoite", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέοιμεν", "verb", "nekragōgéoimen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["νεκραγώγεε", "verb", "nekragṓgee", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγώγεεν", "verb", "nekragṓgeen", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["νεκραγωγεέτω", "verb", "nekragōgeétō", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγεέτων", "verb", "nekragōgeétōn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["νεκραγωγεόντων", "verb", "nekragōgeóntōn", "", "", "", "genitive plural masculine"]) + let v = native_list_append(v, ["νεκραγωγέεται", "verb", "nekragōgéetai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέομαι", "verb", "nekragōgéomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέεσθον", "verb", "nekragōgéesthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["νεκραγωγεόμεθα", "verb", "nekragōgeómetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέεσθε", "verb", "nekragōgéesthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέονται", "verb", "nekragōgéontai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέωμαι", "verb", "nekragōgéōmai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέηται", "verb", "nekragōgéētai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέησθον", "verb", "nekragōgéēsthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["νεκραγωγεώμεθα", "verb", "nekragōgeṓmetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέησθε", "verb", "nekragōgéēsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέωνται", "verb", "nekragōgéōntai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγεοίμην", "verb", "nekragōgeoímēn", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέοιτο", "verb", "nekragōgéoito", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέοιο", "verb", "nekragōgéoio", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγωγέοισθον", "verb", "nekragōgéoisthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["νεκραγωγεοίσθην", "verb", "nekragōgeoísthēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["νεκραγωγεοίμεθα", "verb", "nekragōgeoímetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέοισθε", "verb", "nekragōgéoisthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέοιντο", "verb", "nekragōgéointo", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["νεκραγωγέου", "verb", "nekragōgéou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγωγεέσθω", "verb", "nekragōgeésthō", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["νεκραγωγεέσθων", "verb", "nekragōgeésthōn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["νεκραγωγέειν", "verb", "nekragōgéein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["νεκραγωγέεσθαι", "verb", "nekragōgéesthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["νεκραγωγέων", "verb", "first", "third declension", "nekragōgéōn", "", "present active participle"]) + let v = native_list_append(v, ["νεκραγωγέουσα", "verb", "nekragōgéousa", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["νεκραγωγέον", "verb", "nekragōgéon", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["νεκραγωγέοντος", "verb", "nekragōgéontos", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["νεκραγωγεόμενος", "verb", "nekragōgeómenos", "νεκραγωγεομένη", "νεκραγωγεόμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["νεκραγωγεόμενον", "verb", "nekragōgeómenon", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["νεκραγωγεομένη", "verb", "nekragōgeoménē", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["νεκραγωγῶ", "verb", "nekragōgô", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖς", "verb", "nekragōgeîs", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖτον", "verb", "nekragōgeîton", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖ", "verb", "nekragōgeî", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦμεν", "verb", "nekragōgoûmen", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖτε", "verb", "nekragōgeîte", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦσι", "verb", "nekragōgoûsi", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦσιν", "verb", "nekragōgoûsin", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῇς", "verb", "nekragōgēîs", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῇ", "verb", "nekragōgēî", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῆτον", "verb", "nekragōgêton", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῶμεν", "verb", "nekragōgômen", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῆτε", "verb", "nekragōgête", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῶσι", "verb", "nekragōgôsi", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῶσιν", "verb", "nekragōgôsin", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦμαι", "verb", "nekragōgoûmai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεόμην", "verb", "nekragōgeómēn", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["νεκραγώγεον", "verb", "nekragṓgeon", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["νεκραγώγουν", "verb", "nekragṓgoun", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγούμην", "verb", "nekragōgoúmēn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγηθήσομαι", "verb", "nekragōgēthḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["νεκραγωγήσομαι", "verb", "nekragōgḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["νεκραγωγήσω", "verb", "nekragōgḗsō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["νεκραγώγησα", "verb", "nekragṓgēsa", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["νεκραγωγήθην", "verb", "nekragōgḗthēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["νεκραγωγησάμην", "verb", "nekragōgēsámēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["νεκραγώγημαι", "verb", "nekragṓgēmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["νεκραγώγηκα", "verb", "nekragṓgēka", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["νεκραγωγήμην", "verb", "nekragōgḗmēn", "", "", "", "first-person singular pluperfect"]) + let v = native_list_append(v, ["νεκραγωγήκειν", "verb", "nekragōgḗkein", "", "", "", "first-person singular pluperfect"]) + let v = native_list_append(v, ["νεκραγωγοῖμι", "verb", "nekragōgoîmi", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίην", "verb", "nekragōgoíēn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["βδέω", "verb", "βδῶ", "", "", "", "to break wind"]) + let v = native_list_append(v, ["νεκραγωγοῖς", "verb", "nekragōgoîs", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίη", "verb", "nekragōgoíē", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγωγοίης", "verb", "nekragōgoíēs", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγωγοῖ", "verb", "nekragōgoî", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῖτον", "verb", "nekragōgoîton", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίητον", "verb", "nekragōgoíēton", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγωγοίτην", "verb", "nekragōgoítēn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοιήτην", "verb", "nekragōgoiḗtēn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγωγοῖμεν", "verb", "nekragōgoîmen", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίημεν", "verb", "nekragōgoíēmen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγωγοίητε", "verb", "nekragōgoíēte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγωγοῖτε", "verb", "nekragōgoîte", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῖεν", "verb", "nekragōgoîen", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίησαν", "verb", "nekragōgoíēsan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νεκραγώγει", "verb", "nekragṓgei", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγείτω", "verb", "nekragōgeítō", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγείτων", "verb", "nekragōgeítōn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγούντων", "verb", "nekragōgoúntōn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖται", "verb", "nekragōgeîtai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖσθον", "verb", "nekragōgeîsthon", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγούμεθα", "verb", "nekragōgoúmetha", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖσθε", "verb", "nekragōgeîsthe", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦνται", "verb", "nekragōgoûntai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῶμαι", "verb", "nekragōgômai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῆται", "verb", "nekragōgêtai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῆσθον", "verb", "nekragōgêsthon", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγώμεθα", "verb", "nekragōgṓmetha", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῆσθε", "verb", "nekragōgêsthe", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῶνται", "verb", "nekragōgôntai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίμην", "verb", "nekragōgoímēn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῖο", "verb", "nekragōgoîo", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["νεκραγωγοῖτο", "verb", "nekragōgoîto", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῖσθον", "verb", "nekragōgoîsthon", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίσθην", "verb", "nekragōgoísthēn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοίμεθα", "verb", "nekragōgoímetha", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῖσθε", "verb", "nekragōgoîsthe", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῖντο", "verb", "nekragōgoînto", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦ", "verb", "nekragōgoû", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγείσθω", "verb", "nekragōgeísthō", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγείσθων", "verb", "nekragōgeísthōn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖν", "verb", "nekragōgeîn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγεῖσθαι", "verb", "nekragōgeîsthai", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγῶν", "verb", "nekragōgôn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦσα", "verb", "nekragōgoûsa", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγοῦν", "verb", "nekragōgoûn", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["νεκραγωγούμενος", "verb", "nekragōgoúmenos", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["πολεμίζειν", "verb", "πολεμῐ́ζειν", "polemĭ́zein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["πολεμίζω", "verb", "πολεμῐ́ζω", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["μεριμνάω", "verb", "μερῐμνᾰ́ω", "", "", "", "to be worried"]) + let v = native_list_append(v, ["πίνεις", "verb", "πῑ́νεις", "pī́neis", "", "", "second-person singular present"]) + let v = native_list_append(v, ["πίνει", "verb", "πῑ́νει", "pī́nei", "", "", "inflection of πῑ́νω"]) + let v = native_list_append(v, ["πίνετε", "verb", "πῑ́νετε", "pī́nete", "", "", "inflection of πῑ́νω"]) + let v = native_list_append(v, ["διυλίζω", "verb", "δῐῡλῐ́ζω", "", "", "", "to strain filter"]) + let v = native_list_append(v, ["ἀτιμάζω", "verb", "ἀτῑμᾰ́ζω", "", "", "", "to dishonour hold"]) + let v = native_list_append(v, ["εὐπορέω", "verb", "euporéō", "", "", "", "to prosper thrive"]) + let v = native_list_append(v, ["ἤλυθον", "verb", "ἤλῠθον", "ḗlŭthon", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἀφέλκω", "verb", "ἀφέλκομαι", "", "", "", "to drag off"]) + let v = native_list_append(v, ["χλευάζω", "verb", "χλευᾰ́ζω", "", "", "", "to jest scoff"]) + let v = native_list_append(v, ["εὑρέ", "verb", "heuré", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐλέησον", "verb", "eléēson", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["πῖπτε", "verb", "pîpte", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ποίει", "verb", "poíei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["λάμβανε", "verb", "λᾰ́μβᾰνε", "lắmbăne", "", "", "second-person singular present"]) + let v = native_list_append(v, ["πρᾶττε", "verb", "prâtte", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["δός", "verb", "dós", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["θές", "verb", "thés", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἄκουε", "verb", "ᾰ̓́κουε", "ắkoue", "", "", "inflection of ᾰ̓κούω"]) + let v = native_list_append(v, ["ἐλθέ", "verb", "elthé", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["γράφε", "verb", "γρᾰ́φε", "grắphe", "", "", "second-person singular present"]) + let v = native_list_append(v, ["φέρε", "verb", "phére", "", "", "", "inflection of φέρω"]) + let v = native_list_append(v, ["γίγνωσκε", "verb", "γῐ́γνωσκε", "gĭ́gnōske", "", "", "second-person singular present"]) + let v = native_list_append(v, ["σῷζε", "verb", "sōîze", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παῦε", "verb", "paûe", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["κρῖνε", "verb", "krîne", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["μάνθανε", "verb", "μᾰ́νθᾰνε", "mắnthăne", "", "", "second-person singular present"]) + let v = native_list_append(v, ["λαβέ", "verb", "λᾰβέ", "lăbé", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["θαύμαζε", "verb", "θαύμᾰζε", "thaúmăze", "", "", "inflection of θαυμᾰ́ζω"]) + let v = native_list_append(v, ["βοήθει", "verb", "boḗthei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἕς", "verb", "hés", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["σκόπει", "verb", "skópei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["βάλλε", "verb", "βᾰ́λλε", "bắlle", "", "", "inflection of βᾰ́λλω"]) + let v = native_list_append(v, ["λάθε", "verb", "λᾰ́θε", "lắthe", "", "", "inflection of λᾰνθᾰ́νω"]) + let v = native_list_append(v, ["γνῶθι", "verb", "γνῶθῐ", "gnôthĭ", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀνερρίφθω", "verb", "ᾰ̓νερρῑ́φθω", "ănerrhī́phthō", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ῥῖπτε", "verb", "rhîpte", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["θεράπευσον", "verb", "θερᾰ́πευσον", "therắpeuson", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["νίψον", "verb", "νῐ́ψον", "nĭ́pson", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ὠθέω", "verb", "ὠθέομαι", "", "", "", "to push"]) + let v = native_list_append(v, ["βοηθέω", "verb", "βοηθέομαι", "", "", "", "to help somebody"]) + let v = native_list_append(v, ["φεῦγε", "verb", "pheûge", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["προκαταγιγνώσκω", "verb", "προκᾰτᾰγιγνώσκω", "", "", "", "to prejudge"]) + let v = native_list_append(v, ["ὑφαιρέομαι", "verb", "huphairéomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἐπίσταμαι", "verb", "ἐπίστᾰμαι", "", "", "", "to know to"]) + let v = native_list_append(v, ["τυφόω", "verb", "τῡφόω", "tūphóō", "", "", "to delude especially"]) + let v = native_list_append(v, ["ἔδωκας", "verb", "ἔδωκᾰς", "édōkăs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἔδομεν", "verb", "édomen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἔδοτε", "verb", "édote", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἔδοσαν", "verb", "ἔδοσᾰν", "édosăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["νεκραγωγέετο", "verb", "nekragōgéeto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ὑλακτῶ", "verb", "hulaktô", "", "", "", "contraction of ὑλακτέω"]) + let v = native_list_append(v, ["λεσβιάζω", "verb", "λεσβιάζομαι", "", "", "", "to act like"]) + let v = native_list_append(v, ["κτενίζω", "verb", "κτενῐ́ζω", "", "", "", "to comb"]) + let v = native_list_append(v, ["πεκτέω", "verb", "πεκτέομαι", "", "", "", "to shear to"]) + let v = native_list_append(v, ["δόξας", "verb", "δόξᾱς", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["ἥμαρτον", "verb", "ἥμᾰρτον", "hḗmărton", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ποιήσας", "verb", "ποιήσᾱς", "poiḗsās", "Attic declension-3", "", "aorist active participle"]) + let v = native_list_append(v, ["στάς", "verb", "στᾱ́ς", "first", "third declension", "", "aorist active participle"]) + let v = native_list_append(v, ["πάθετε", "verb", "πᾰ́θετε", "pắthete", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["θάλλε", "verb", "θᾰ́λλε", "thắlle", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀριθμέω", "verb", "ἀριθμέομαι", "", "", "", "to count"]) + let v = native_list_append(v, ["πιέζω", "verb", "πῐέζω", "", "", "", "to squeeze"]) + let v = native_list_append(v, ["μιᾷ", "verb", "miāî", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["διδούς", "verb", "δῐδούς", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["λαμβάνων", "verb", "λᾰμβᾰ́νων", "lămbắnōn", "Attic declension-3", "", "present active participle"]) + let v = native_list_append(v, ["δηλῶν", "verb", "dēlôn", "δηλοῦσᾰ", "δηλοῦν", "", "present active participle"]) + let v = native_list_append(v, ["δηλόω", "verb", "δηλόομαι", "", "", "", "to show to"]) + let v = native_list_append(v, ["δείδω", "verb", "δείσω", "", "", "", "to fear to"]) + let v = native_list_append(v, ["παιδεύων", "verb", "paideúōn", "Attic declension-3", "grc-adecl", "", "present active participle"]) + let v = native_list_append(v, ["παιδεύσας", "verb", "παιδεύσᾱς", "paideúsās", "Attic declension-3", "", "aorist active participle"]) + let v = native_list_append(v, ["πεπαιδευκώς", "verb", "pepaideukṓs", "Attic declension-3", "grc-adecl", "", "perfect active participle"]) + let v = native_list_append(v, ["παιδεύσων", "verb", "paideúsōn", "Attic declension-3", "grc-adecl", "", "future active participle"]) + let v = native_list_append(v, ["μάθε", "verb", "máthe", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["θάσσων", "verb", "θᾱ́σσων", "first", "third declension", "", "sitting sitting idly"]) + let v = native_list_append(v, ["μεταδίδομαι", "verb", "μετᾰδίδομαι", "metădídomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἵκω", "verb", "ῑ̔́κω", "", "", "", "to come"]) + let v = native_list_append(v, ["ἱκάνω", "verb", "ἱκᾱ́νω", "", "", "", "to arrive come"]) + let v = native_list_append(v, ["ἱκανῶ", "verb", "ἱκᾰνῶ", "hikănô", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἱκάνει", "verb", "ἱκᾱ́νει", "hikā́nei", "", "", "inflection of ἱκᾱ́νω"]) + let v = native_list_append(v, ["ἔστη", "verb", "éstē", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἰόντες", "verb", "ῐ̓όντες", "ĭóntes", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ὀρώρει", "verb", "orṓrei", "", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["ἔδωκεν", "verb", "édōken", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἔδει", "verb", "édei", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["δεῖξαι", "verb", "deîxai", "", "", "", "aorist infinitive of"]) + let v = native_list_append(v, ["ὀρύσσω", "verb", "ὀρύσσομαι", "", "", "", "to dig"]) + let v = native_list_append(v, ["δέων", "verb", "first", "third declension", "déōn", "", "masculine nominative singular"]) + let v = native_list_append(v, ["τέρψεις", "verb", "térpseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["κεκλεισμένος", "verb", "kekleisménos", "κεκλεισμένη", "κεκλεισμένον", "", "perfect passive participle"]) + let v = native_list_append(v, ["πτάρνυμαι", "verb", "πτᾰ́ρνῠμαι", "", "", "", "to sneeze"]) + let v = native_list_append(v, ["πνίγω", "verb", "πνῑ́γω", "", "", "", "to choke throttle"]) + let v = native_list_append(v, ["κατάλεξον", "verb", "κᾰτᾰ́λεξον", "kătắlexon", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["λιάζομαι", "verb", "λῐᾰ́ζομαι", "", "", "", "to recoil drop"]) + let v = native_list_append(v, ["προσέειπον", "verb", "proséeipon", "", "", "", "inflection of προσεῖπον"]) + let v = native_list_append(v, ["ἔοικε", "verb", "éoike", "", "", "", "third-person singular indicative"]) + let v = native_list_append(v, ["βοάω", "verb", "βοᾰ́ω", "", "", "", "to shout"]) + let v = native_list_append(v, ["ὑποτείνουσα", "verb", "ῠ̔ποτείνουσᾰ", "hŭpoteínousă", "", "", "present active participle"]) + let v = native_list_append(v, ["στίλβω", "verb", "στίλβομαι", "", "", "", "to shine glitter"]) + let v = native_list_append(v, ["σπένδω", "verb", "σπένδομαι", "", "", "", "to libate"]) + let v = native_list_append(v, ["τιμῶ", "verb", "τῑμῶ", "tīmô", "", "", "inflection of τῑμᾰ́ω"]) + let v = native_list_append(v, ["μασάομαι", "verb", "μᾰσᾰ́ομαι", "", "", "", "to chew"]) + let v = native_list_append(v, ["φρύγω", "verb", "φρῡ́γω", "", "", "", "to roast"]) + let v = native_list_append(v, ["δαίομαι", "verb", "daíomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["πειράομαι", "verb", "peiráomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἔρρωσθε", "verb", "érrhōsthe", "", "", "", "perfect mediopassive imperative"]) + let v = native_list_append(v, ["ἐλθόντες", "verb", "elthóntes", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["στέργω", "verb", "στέργομαι", "", "", "", "to love mostly"]) + let v = native_list_append(v, ["αἱρῶ", "verb", "hairô", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["ἐκχυμόω", "verb", "ἐκχυμόομαι", "", "", "", "to extract juice"]) + let v = native_list_append(v, ["ἆρον", "verb", "âron", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ὀψωνέω", "verb", "ὀψωνέομαι", "", "", "", "to buy fish"]) + let v = native_list_append(v, ["ἀμφιλέγω", "verb", "ἀμφῐλέγω", "", "", "", "to dispute to"]) + let v = native_list_append(v, ["ἐρχόμενος", "verb", "erkhómenos", "ἐρχομένη", "ἐρχόμενον", "", "coming"]) + let v = native_list_append(v, ["ἐρχομένου", "verb", "erkhoménou", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἐρχόμενον", "verb", "erkhómenon", "", "", "", "inflection of ἐρχόμενος"]) + let v = native_list_append(v, ["ἐρχομένῳ", "verb", "erkhoménōi", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἐρχόμενε", "verb", "erkhómene", "", "", "", "vocative masculine singular"]) + let v = native_list_append(v, ["ἐρχομένη", "verb", "erkhoménē", "", "", "", "nominative/accusative/vocative feminine singular"]) + let v = native_list_append(v, ["ἐρχομένης", "verb", "erkhoménēs", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["ἐρχομένῃ", "verb", "erkhoménēi", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["ἐρχομένην", "verb", "erkhoménēn", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["ἐρχομένω", "verb", "erkhoménō", "", "", "", "nominative/accusative/vocative masculine/neuter dual"]) + let v = native_list_append(v, ["ἐρχομένοιν", "verb", "erkhoménoin", "", "", "", "genitive/dative masculine/neuter dual"]) + let v = native_list_append(v, ["ἐρχομένα", "verb", "ἐρχομένᾱ", "erkhoménā", "", "", "nominative/accusative/vocative feminine dual"]) + let v = native_list_append(v, ["ἐρχομέναιν", "verb", "erkhoménain", "", "", "", "genitive/dative feminine dual"]) + let v = native_list_append(v, ["ἐρχόμενοι", "verb", "erkhómenoi", "", "", "", "nominative/vocative masculine plural"]) + let v = native_list_append(v, ["ἐρχομένων", "verb", "erkhoménōn", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἐρχομένοις", "verb", "erkhoménois", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἐρχομένους", "verb", "erkhoménous", "", "", "", "accusative masculine plural"]) + let v = native_list_append(v, ["ἐρχόμεναι", "verb", "erkhómenai", "", "", "", "nominative/vocative feminine plural"]) + let v = native_list_append(v, ["ἐρχομέναις", "verb", "erkhoménais", "", "", "", "dative feminine plural"]) + let v = native_list_append(v, ["ἐρχομένας", "verb", "ἐρχομένᾱς", "erkhoménās", "", "", "accusative feminine plural"]) + let v = native_list_append(v, ["ἐρχόμενα", "verb", "ἐρχόμενᾰ", "erkhómenă", "", "", "nominative/accusative/vocative neuter plural"]) + let v = native_list_append(v, ["προηγουμένου", "verb", "proēgouménou", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["προηγούμενον", "verb", "proēgoúmenon", "", "", "", "inflection of προηγούμενος"]) + let v = native_list_append(v, ["προηγούμενε", "verb", "proēgoúmene", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["προηγουμένη", "verb", "proēgouménē", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["προηγουμένης", "verb", "proēgouménēs", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["προηγούμενοι", "verb", "proēgoúmenoi", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["προηγουμένων", "verb", "proēgouménōn", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["προηγουμένους", "verb", "proēgouménous", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["προηγούμεναι", "verb", "proēgoúmenai", "", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["προηγούμενα", "verb", "προηγούμενᾰ", "proēgoúmenă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["ἄφες", "verb", "ᾰ̓́φες", "ắphes", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["καταχράομαι", "verb", "καταχρᾰ́ομαι", "", "", "", "to make full"]) + let v = native_list_append(v, ["συγκρουόμενος", "verb", "sunkrouómenos", "συγκρουομένη", "συγκρουόμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["συγκρουομένου", "verb", "σῠγκρουομένου", "sŭnkrouoménou", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["συγκρουομένῳ", "verb", "σῠγκρουομένῳ", "sŭnkrouoménōi", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["συγκρουόμενον", "verb", "σῠγκρουόμενον", "sŭnkrouómenon", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["συγκρουομένη", "verb", "σῠγκρουομένη", "sŭnkrouoménē", "", "", "nominative/accusative singular feminine"]) + let v = native_list_append(v, ["συγκρουομένης", "verb", "σῠγκρουομένης", "sŭnkrouoménēs", "", "", "nominative/accusative singular feminine"]) + let v = native_list_append(v, ["συγκρουομένῃ", "verb", "σῠγκρουομένῃ", "sŭnkrouoménēi", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["συγκρουομένην", "verb", "σῠγκρουομένην", "sŭnkrouoménēn", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["συγκρουομένω", "verb", "σῠγκρουομένω", "sŭnkrouoménō", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["συγκρουομένοιν", "verb", "σῠγκρουομένοιν", "sŭnkrouoménoin", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["συγκρουομένα", "verb", "σῠγκρουομένᾱ", "sŭnkrouoménā", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["συγκρουομέναιν", "verb", "σῠγκρουομέναιν", "sŭnkrouoménain", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["συγκρουομένοις", "verb", "σῠγκρουομένοις", "sŭnkrouoménois", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["συγκρουομένους", "verb", "σῠγκρουομένους", "sŭnkrouoménous", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["συγκρουόμεναι", "verb", "σῠγκρουόμεναι", "sŭnkrouómenai", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["συγκρουομέναις", "verb", "σῠγκρουομέναις", "sŭnkrouoménais", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["συγκρουομένας", "verb", "σῠγκρουομένᾱς", "sŭnkrouoménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["συγκρουόμενε", "verb", "σῠγκρουόμενε", "sŭnkrouómene", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["συγκρουόμενοι", "verb", "σῠγκρουόμενοι", "sŭnkrouómenoi", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["συγκρουόμενα", "verb", "σῠγκρουόμενᾰ", "sŭnkrouómenă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["συγκρουομένων", "verb", "σῠγκρουομένων", "sŭnkrouoménōn", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["λύσει", "verb", "λῡ́σει", "lū́sei", "", "", "second-person singular future"]) + let v = native_list_append(v, ["πείθομαι", "verb", "peíthomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["πλύνω", "verb", "πλῡ́νω", "", "", "", "to wash clean"]) + let v = native_list_append(v, ["πεπεισμένος", "verb", "pepeisménos", "πεπεισμένη", "πεπεισμένον", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["πεπεισμένου", "verb", "pepeisménou", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["πεπεισμένε", "verb", "pepeisméne", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["πεπεισμένη", "verb", "pepeisménē", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["πεπεισμένης", "verb", "pepeisménēs", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["πεπεισμένοι", "verb", "pepeisménoi", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["πεπεισμένων", "verb", "pepeisménōn", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["πεπεισμένους", "verb", "pepeisménous", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["πεπεισμένα", "verb", "πεπεισμένᾰ", "pepeisménă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["πεπεισμένῳ", "verb", "pepeisménōi", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["πεπεισμένον", "verb", "pepeisménon", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["πεπεισμένῃ", "verb", "pepeisménēi", "", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["πεπεισμένην", "verb", "pepeisménēn", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["πεπεισμένω", "verb", "pepeisménō", "", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["πεπεισμένοιν", "verb", "pepeisménoin", "", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["πεπεισμέναιν", "verb", "pepeisménain", "", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["πεπεισμένοις", "verb", "pepeisménois", "", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["πεπεισμέναι", "verb", "pepeisménai", "", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["πεπεισμέναις", "verb", "pepeisménais", "", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["πεπεισμένας", "verb", "πεπεισμένᾱς", "pepeisménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["παριστάνω", "verb", "πᾰρῐστᾰ́νω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["παριστῶ", "verb", "πᾰρῐστῶ", "părĭstô", "πᾰρᾰστάνω", "", "contracted form of"]) + let v = native_list_append(v, ["σείομαι", "verb", "seíomai", "", "", "", "first-person singular indicative"]) + let v = native_list_append(v, ["καθιζάνω", "verb", "κᾰθῐζᾰ́νω", "", "", "", "to make sit"]) + let v = native_list_append(v, ["πίθε", "verb", "πῐ́θε", "pĭ́the", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["καθίζοντας", "verb", "κᾰθῑ́ζοντᾰς", "kăthī́zontăs", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["κοσμέω", "verb", "κοσμέομαι", "", "", "", "to order to"]) + let v = native_list_append(v, ["ἔῃ", "verb", "éēi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["εὕδω", "verb", "εὕδομαι", "", "", "", "to sleep"]) + let v = native_list_append(v, ["γονυπετεῖς", "verb", "γονῠπετεῖς", "gonŭpeteîs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["γονυπετῶν", "verb", "γονῠπετῶν", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["γονυπετεῖ", "verb", "γονῠπετεῖ", "gonŭpeteî", "", "", "third-person singular present"]) + let v = native_list_append(v, ["στενοχωρῶ", "verb", "stenokhōrô", "", "", "", "Koine contracted first-person"]) + let v = native_list_append(v, ["στενοχωρέω", "verb", "στενοχωρέομαι", "", "", "", "to be straitened"]) + let v = native_list_append(v, ["ἀναλέγω", "verb", "ἀνᾰλέγω", "", "", "", "to pick up"]) + let v = native_list_append(v, ["ἀμφιβάλλω", "verb", "ἀμφῐβᾰ́λλω", "", "", "", "to put on"]) + let v = native_list_append(v, ["ἐγέρθητι", "verb", "ἐγέρθητῐ", "egérthētĭ", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ἐγέρθητε", "verb", "egérthēte", "", "", "", "second-person plural imperative"]) + let v = native_list_append(v, ["ἐγερθήτω", "verb", "egerthḗtō", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["τετριμμένος", "verb", "tetrimménos", "τετρῐμμένη", "τετρῐμμένον", "", "rubbed"]) + let v = native_list_append(v, ["τετριμμένου", "verb", "τετρῐμμένου", "tetrĭmménou", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["τετριμμένε", "verb", "τετρῐμμένε", "tetrĭmméne", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["τετριμμένη", "verb", "τετρῐμμένη", "tetrĭmménē", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["τετριμμένης", "verb", "τετρῐμμένης", "tetrĭmménēs", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["τετριμμένοι", "verb", "τετρῐμμένοι", "tetrĭmménoi", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["τετριμμένων", "verb", "τετρῐμμένων", "tetrĭmménōn", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["τετριμμένους", "verb", "τετρῐμμένους", "tetrĭmménous", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["τετριμμένα", "verb", "τετρῐμμένᾰ", "tetrĭmménă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["τετριμμένῳ", "verb", "τετρῐμμένῳ", "tetrĭmménōi", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["τετριμμένον", "verb", "τετρῐμμένον", "tetrĭmménon", "", "", "inflection of τετρῐμμένος"]) + let v = native_list_append(v, ["τετριμμένῃ", "verb", "τετρῐμμένῃ", "tetrĭmménēi", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["τετριμμένην", "verb", "τετρῐμμένην", "tetrĭmménēn", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["τετριμμένω", "verb", "τετρῐμμένω", "tetrĭmménō", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["τετριμμένοιν", "verb", "τετρῐμμένοιν", "tetrĭmménoin", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["τετριμμέναιν", "verb", "τετρῐμμέναιν", "tetrĭmménain", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["τετριμμένοις", "verb", "τετρῐμμένοις", "tetrĭmménois", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["τετριμμέναι", "verb", "τετρῐμμέναι", "tetrĭmménai", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["τετριμμέναις", "verb", "τετρῐμμέναις", "tetrĭmménais", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["τετριμμένας", "verb", "τετρῐμμένᾱς", "tetrĭmménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["κεκλεισμένου", "verb", "kekleisménou", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["κεκλεισμένε", "verb", "kekleisméne", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["κεκλεισμένη", "verb", "kekleisménē", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["κεκλεισμένης", "verb", "kekleisménēs", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["κεκλεισμένοι", "verb", "kekleisménoi", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["κεκλεισμένους", "verb", "kekleisménous", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["κεκλεισμένα", "verb", "κεκλεισμένᾰ", "kekleisménă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["κεκλεισμένῳ", "verb", "kekleisménōi", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["κεκλεισμένον", "verb", "kekleisménon", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["κεκλεισμένῃ", "verb", "kekleisménēi", "", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["κεκλεισμένην", "verb", "kekleisménēn", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["κεκλεισμένω", "verb", "kekleisménō", "", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["κεκλεισμένοιν", "verb", "kekleisménoin", "", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["κεκλεισμέναιν", "verb", "kekleisménain", "", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["κεκλεισμένοις", "verb", "kekleisménois", "", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["κεκλεισμέναι", "verb", "kekleisménai", "", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["κεκλεισμέναις", "verb", "kekleisménais", "", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["κεκλεισμένας", "verb", "κεκλεισμένᾱς", "kekleisménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["ἵσταμαι", "verb", "ῐ̔́στᾰμαι", "hĭ́stămai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἕστηκα", "verb", "ἕστηκᾰ", "héstēkă", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["στήκω", "verb", "stḗkō", "Koine present", "grc-conj", "", "to stand"]) + let v = native_list_append(v, ["πειθόμενος", "verb", "peithómenos", "πειθομένη", "πειθόμενον", "", "present mediopassive participle"]) + let v = native_list_append(v, ["πειθόμενε", "verb", "peithómene", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["πειθόμενοι", "verb", "peithómenoi", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["πειθόμενα", "verb", "πειθόμενᾰ", "peithómenă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["πειθομένου", "verb", "peithoménou", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["πειθομένῳ", "verb", "peithoménōi", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["πειθόμενον", "verb", "peithómenon", "", "", "", "inflection of πειθόμενος"]) + let v = native_list_append(v, ["πειθομένη", "verb", "peithoménē", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["πειθομένης", "verb", "peithoménēs", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["πειθομένῃ", "verb", "peithoménēi", "", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["πειθομένην", "verb", "peithoménēn", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["πειθομένω", "verb", "peithoménō", "", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["πειθομένοιν", "verb", "peithoménoin", "", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["πειθομένα", "verb", "πειθομένᾱ", "peithoménā", "", "", "nominative/accusative/vocative dual feminine"]) + let v = native_list_append(v, ["πειθομέναιν", "verb", "peithoménain", "", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["πειθομένων", "verb", "peithoménōn", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["πειθομένοις", "verb", "peithoménois", "", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["πειθομένους", "verb", "peithoménous", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["πειθόμεναι", "verb", "peithómenai", "", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["πειθομέναις", "verb", "peithoménais", "", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["πειθομένας", "verb", "πειθομένᾱς", "peithoménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["δαγκάνω", "verb", "δαγκάνομαι", "", "", "", "Koine and Byzantine"]) + let v = native_list_append(v, ["καθεύδησαι", "verb", "katheúdēsai", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["εὕδησαι", "verb", "heúdēsai", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ἄκουσον", "verb", "ᾰ̓́κουσον", "ắkouson", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["εὗδε", "verb", "heûde", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["εὕδησον", "verb", "heúdēson", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["καθεύδησον", "verb", "κᾰθεύδησον", "kătheúdēson", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["κάθευδε", "verb", "kátheude", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["βλέπει", "verb", "blépei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παρακειμένου", "verb", "πᾰρᾰκειμένου", "părăkeiménou", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["παρακείμενε", "verb", "πᾰρᾰκείμενε", "părăkeímene", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["παρακείμενοι", "verb", "πᾰρᾰκείμενοι", "părăkeímenoi", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["παρακειμένων", "verb", "πᾰρᾰκειμένων", "părăkeiménōn", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["παρακειμένους", "verb", "πᾰρᾰκειμένους", "părăkeiménous", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["παρακείμενα", "verb", "πᾰρᾰκείμενᾰ", "părăkeímenă", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["παρακειμένῳ", "verb", "πᾰρᾰκειμένῳ", "părăkeiménōi", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["παρακείμενον", "verb", "πᾰρᾰκείμενον", "părăkeímenon", "", "", "inflection of πᾰρᾰκείμενος"]) + let v = native_list_append(v, ["παρακειμένη", "verb", "πᾰρᾰκειμένη", "părăkeiménē", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["παρακειμένης", "verb", "πᾰρᾰκειμένης", "părăkeiménēs", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["παρακειμένῃ", "verb", "πᾰρᾰκειμένῃ", "părăkeiménēi", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["παρακειμένην", "verb", "πᾰρᾰκειμένην", "părăkeiménēn", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["παρακειμένω", "verb", "πᾰρᾰκειμένω", "părăkeiménō", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["παρακειμένοιν", "verb", "πᾰρᾰκειμένοιν", "părăkeiménoin", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["παρακειμένα", "verb", "πᾰρᾰκειμένᾱ", "părăkeiménā", "", "", "nominative/accusative/vocative dual feminine"]) + let v = native_list_append(v, ["παρακειμέναιν", "verb", "πᾰρᾰκειμέναιν", "părăkeiménain", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["παρακειμένοις", "verb", "πᾰρᾰκειμένοις", "părăkeiménois", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["παρακείμεναι", "verb", "πᾰρᾰκείμεναι", "părăkeímenai", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["παρακειμέναις", "verb", "πᾰρᾰκειμέναις", "părăkeiménais", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["παρακειμένας", "verb", "πᾰρᾰκειμένᾱς", "părăkeiménās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["ὀλισθάνω", "verb", "ὀλισθᾰ́νω", "", "", "", "to slip to"]) + let v = native_list_append(v, ["ἐνίκησα", "verb", "ἐνῑ́κησᾰ", "enī́kēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀναπαίω", "verb", "ἀναπαίομαι", "", "", "", "to strike back"]) + let v = native_list_append(v, ["τεύχω", "verb", "τεύχομαι", "", "", "", "to make do"]) + let v = native_list_append(v, ["λύσω", "verb", "λῡ́σω", "lū́sō", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["παρελθόντι", "verb", "πᾰρελθόντῐ", "părelthóntĭ", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["παρελθοῦσα", "verb", "πᾰρελθοῦσᾰ", "părelthoûsă", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["παρελθούσα", "verb", "πᾰρελθούσᾱ", "părelthoúsā", "", "", "nominative/accusative/vocative dual feminine"]) + let v = native_list_append(v, ["παρελθούσης", "verb", "πᾰρελθούσης", "părelthoúsēs", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["παρελθούσας", "verb", "πᾰρελθούσᾱς", "părelthoúsās", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["παρελθούσῃ", "verb", "πᾰρελθούσῃ", "părelthoúsēi", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["παρελθοῦσαν", "verb", "πᾰρελθοῦσᾰν", "părelthoûsăn", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["παρελθόντε", "verb", "πᾰρελθόντε", "părelthónte", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["παρελθόντοιν", "verb", "πᾰρελθόντοιν", "părelthóntoin", "", "", "genitive/dative dual masculine/neuter"]) + let v = native_list_append(v, ["παρελθούσαιν", "verb", "πᾰρελθούσαιν", "părelthoúsain", "", "", "genitive/dative dual feminine"]) + let v = native_list_append(v, ["παρελθόντες", "verb", "πᾰρελθόντες", "părelthóntes", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["παρελθοῦσι", "verb", "πᾰρελθοῦσῐ", "părelthoûsĭ", "πᾰρελθοῦσῐν", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["παρελθοῦσιν", "verb", "πᾰρελθοῦσῐν", "părelthoûsĭn", "πᾰρελθοῦσῐ", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["παρελθόντας", "verb", "πᾰρελθόντᾰς", "părelthóntăs", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["παρελθοῦσαι", "verb", "πᾰρελθοῦσαι", "părelthoûsai", "", "", "nominative/vocative plural feminine"]) + let v = native_list_append(v, ["παρελθουσῶν", "verb", "πᾰρελθουσῶν", "părelthousôn", "", "", "genitive plural feminine"]) + let v = native_list_append(v, ["παρελθούσαις", "verb", "πᾰρελθοῦσαις", "părelthoûsais", "", "", "dative plural feminine"]) + let v = native_list_append(v, ["λύσεις", "verb", "λῡ́σεις", "lū́seis", "", "", "second-person singular future"]) + let v = native_list_append(v, ["λύσετε", "verb", "λῡ́σετε", "lū́sete", "", "", "second-person plural future"]) + let v = native_list_append(v, ["λύσατε", "verb", "λῡ́σᾰτε", "lū́săte", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λυθείς", "verb", "first", "third declension", "lutheís", "", "aorist passive participle"]) + let v = native_list_append(v, ["λυθῶ", "verb", "λῠθῶ", "lŭthô", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["λυθεῖτε", "verb", "λῠθεῖτε", "lŭtheîte", "λῠθείητε", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἔλυσα", "verb", "ἔλῡσᾰ", "élūsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἔλυσας", "verb", "ἔλῡσᾰς", "élūsăs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἔλυσε", "verb", "ἔλῡσε", "élūse", "ἔλῡσεν", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἔλυσεν", "verb", "ἔλῡσεν", "élūsen", "ἔλῡσε", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐλύσαμεν", "verb", "ἐλῡ́σᾰμεν", "elū́sămen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἐλύσατε", "verb", "ἐλῡ́σᾰτε", "elū́săte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἔλυσαν", "verb", "ἔλῡσᾰν", "élūsăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["λύσῃ", "verb", "λῡ́σῃ", "lū́sēi", "", "", "second-person singular future"]) + let v = native_list_append(v, ["λῦσαν", "verb", "λῦσᾰν", "lûsăn", "", "", "nominative/accusative/vocative singular neuter"]) + let v = native_list_append(v, ["λύεται", "verb", "λῡ́εται", "lū́etai", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἐλύετο", "verb", "ἐλῡ́ετο", "elū́eto", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἐλύοντο", "verb", "ἐλῡ́οντο", "elū́onto", "ἐλύοντ’", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἐλύθην", "verb", "ἐλῠ́θην", "elŭ́thēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐλύθη", "verb", "ἐλῠ́θη", "elŭ́thē", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["καμμύω", "verb", "καμμῡ́ω", "", "", "", "to close or"]) + let v = native_list_append(v, ["καταμύω", "verb", "καταμῡ́ω", "", "", "", "to close or"]) + let v = native_list_append(v, ["μύω", "verb", "μῡ́ω", "", "", "", "to close to"]) + let v = native_list_append(v, ["καλούμενος", "verb", "κᾰλούμενος", "kăloúmenos", "κᾰλουμένη", "", "present mediopassive participle"]) + let v = native_list_append(v, ["παιδεύεις", "verb", "paideúeis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παιδεύει", "verb", "paideúei", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδεύετον", "verb", "paideúeton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["πιπράσκω", "verb", "πιπρᾱ́σκω", "", "", "", "to sell esp."]) + let v = native_list_append(v, ["παιδεύομεν", "verb", "paideúomen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["παιδεύετε", "verb", "paideúete", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["παιδεύουσι", "verb", "paideúousi", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παιδεύῃς", "verb", "paideúēis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παιδεύῃ", "verb", "paideúēi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδεύητον", "verb", "paideúēton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["παιδεύωμεν", "verb", "paideúōmen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["παιδεύητε", "verb", "paideúēte", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["παιδεύωσι", "verb", "paideúōsi", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παιδεύοιμι", "verb", "paideúoimi", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παιδεύοις", "verb", "paideúois", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παιδεύοι", "verb", "paideúoi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδεύοιτον", "verb", "paideúoiton", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["παιδεύοιμεν", "verb", "paideúoimen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["παιδεύοιτε", "verb", "paideúoite", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["παιδεύοιεν", "verb", "paideúoien", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παίδευε", "verb", "paídeue", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παιδευέτω", "verb", "paideuétō", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδευέτων", "verb", "paideuétōn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["παιδευόντων", "verb", "paideuóntōn", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παιδευοίτην", "verb", "paideuoítēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["παιδεύομαι", "verb", "paideúomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παιδεύεται", "verb", "paideúetai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδεύεσθον", "verb", "paideúesthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["παιδευόμεθα", "verb", "paideuómetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["παιδεύεσθε", "verb", "paideúesthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["παιδεύονται", "verb", "paideúontai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παιδεύωμαι", "verb", "paideúōmai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παιδεύηται", "verb", "paideúētai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδεύησθον", "verb", "paideúēsthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["παιδευώμεθα", "verb", "paideuṓmetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["παιδεύησθε", "verb", "paideúēsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["παιδεύωνται", "verb", "paideúōntai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παιδευοίμην", "verb", "paideuoímēn", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["παιδεύοιο", "verb", "paideúoio", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παιδεύοιτο", "verb", "paideúoito", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδεύοισθον", "verb", "paideúoisthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["παιδευοίσθην", "verb", "paideuoísthēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["παιδευοίμεθα", "verb", "paideuoímetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["παιδεύοισθε", "verb", "paideúoisthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["παιδεύοιντο", "verb", "paideúointo", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["παιδεύου", "verb", "paideúou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["παιδευέσθω", "verb", "paideuésthō", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["παιδευέσθων", "verb", "paideuésthōn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["παιδεύειν", "verb", "paideúein", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["παιδεύεσθαι", "verb", "paideúesthai", "", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["παιδευόμενος", "verb", "paideuómenos", "Attic declension-2", "grc-adecl", "", "present mediopassive participle"]) + let v = native_list_append(v, ["παιδεῦον", "verb", "paideûon", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἐπαίδευον", "verb", "epaídeuon", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["ἐπαίδευες", "verb", "epaídeues", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ἐπαίδευε", "verb", "epaídeue", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύετον", "verb", "epaideúeton", "", "", "", "second-person dual imperfect"]) + let v = native_list_append(v, ["ἐπαιδευέτην", "verb", "epaideuétēn", "", "", "", "third-person dual imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύομεν", "verb", "epaideúomen", "", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύετε", "verb", "epaideúete", "", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἐπαιδευόμην", "verb", "epaideuómēn", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύου", "verb", "epaideúou", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύετο", "verb", "epaideúeto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύεσθον", "verb", "epaideúesthon", "", "", "", "second-person dual imperfect"]) + let v = native_list_append(v, ["ἐπαιδευέσθην", "verb", "epaideuésthēn", "", "", "", "third-person dual imperfect"]) + let v = native_list_append(v, ["ἐπαιδευόμεθα", "verb", "epaideuómetha", "", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύεσθε", "verb", "epaideúesthe", "", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἐπαιδεύοντο", "verb", "epaideúonto", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἐπαίδευεν", "verb", "epaídeuen", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["παιδεύουσα", "verb", "paideúousa", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδευομένη", "verb", "paideuoménē", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδευόμενον", "verb", "paideuómenon", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["περάω", "verb", "περᾰ́ω", "", "", "", "to go from"]) + let v = native_list_append(v, ["παιδεύσω", "verb", "paideúsō", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["παιδεύσεις", "verb", "paideúseis", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["παιδεύσει", "verb", "paideúsei", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["παιδεύσετον", "verb", "paideúseton", "", "", "", "second-person dual future"]) + let v = native_list_append(v, ["παιδεύσομεν", "verb", "paideúsomen", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["παιδεύσετε", "verb", "paideúsete", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["παιδεύσουσι", "verb", "paideúsousi", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["παιδεύσοιμι", "verb", "paideúsoimi", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["παιδεύσοις", "verb", "paideúsois", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["παιδεύσοι", "verb", "paideúsoi", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["παιδεύσοιτον", "verb", "paideúsoiton", "", "", "", "second-person dual future"]) + let v = native_list_append(v, ["παιδευσοίτην", "verb", "paideusoítēn", "", "", "", "third-person dual future"]) + let v = native_list_append(v, ["παιδεύσοιμεν", "verb", "paideúsoimen", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["παιδεύσοιτε", "verb", "paideúsoite", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["παιδεύσοιεν", "verb", "paideúsoien", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["παιδεύσομαι", "verb", "paideúsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["παιδεύσῃ", "verb", "paideúsēi", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["παιδεύσεται", "verb", "paideúsetai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["παιδεύσεσθον", "verb", "paideúsesthon", "", "", "", "second-person dual future"]) + let v = native_list_append(v, ["παιδευσόμεθα", "verb", "paideusómetha", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["παιδεύσεσθε", "verb", "paideúsesthe", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["παιδεύσονται", "verb", "paideúsontai", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["παιδευσοίμην", "verb", "paideusoímēn", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["παιδεύσοιο", "verb", "paideúsoio", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["παιδεύσοιτο", "verb", "paideúsoito", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["παιδεύσοισθον", "verb", "paideúsoisthon", "", "", "", "second-person dual future"]) + let v = native_list_append(v, ["παιδευσοίσθην", "verb", "paideusoísthēn", "", "", "", "third-person dual future"]) + let v = native_list_append(v, ["παιδευσοίμεθα", "verb", "paideusoímetha", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["παιδεύσοισθε", "verb", "paideúsoisthe", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["παιδεύσοιντο", "verb", "paideúsointo", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["παιδευθήσομαι", "verb", "paideuthḗsomai", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["παιδευθήσῃ", "verb", "paideuthḗsēi", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["παιδευθήσεται", "verb", "paideuthḗsetai", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["παιδευθήσεσθον", "verb", "paideuthḗsesthon", "", "", "", "second-person dual future"]) + let v = native_list_append(v, ["παιδευθησόμεθα", "verb", "paideuthēsómetha", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["παιδευθήσεσθε", "verb", "paideuthḗsesthe", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["παιδευθήσονται", "verb", "paideuthḗsontai", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["παιδευθησοίμην", "verb", "paideuthēsoímēn", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["παιδευθήσοιο", "verb", "paideuthḗsoio", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["παιδευθήσοιτο", "verb", "paideuthḗsoito", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["παιδευθήσοισθον", "verb", "paideuthḗsoisthon", "", "", "", "second-person dual future"]) + let v = native_list_append(v, ["παιδευθησοίσθην", "verb", "paideuthēsoísthēn", "", "", "", "third-person dual future"]) + let v = native_list_append(v, ["παιδευθησοίμεθα", "verb", "paideuthēsoímetha", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["παιδευθήσοισθε", "verb", "paideuthḗsoisthe", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["παιδευθήσοιντο", "verb", "paideuthḗsointo", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["παιδεύσειν", "verb", "paideúsein", "", "", "", "future active infinitive"]) + let v = native_list_append(v, ["παιδεύσεσθαι", "verb", "paideúsesthai", "", "", "", "future middle infinitive"]) + let v = native_list_append(v, ["παιδευθήσεσθαι", "verb", "paideuthḗsesthai", "", "", "", "future passive infinitive"]) + let v = native_list_append(v, ["παιδεύσουσα", "verb", "paideúsousa", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδεῦσον", "verb", "paideûson", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["παιδευσόμενος", "verb", "paideusómenos", "παιδευσομένη", "παιδευσόμενον", "", "future middle participle"]) + let v = native_list_append(v, ["παιδευσομένη", "verb", "paideusoménē", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδευσόμενον", "verb", "paideusómenon", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["παιδευθησομένη", "verb", "paideuthēsoménē", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδευθησόμενον", "verb", "paideuthēsómenon", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["παιδευθησόμενος", "verb", "paideuthēsómenos", "παιδευθησομένη", "παιδευθησόμενον", "", "future passive participle"]) + let v = native_list_append(v, ["ἐπαίδευσα", "verb", "epaídeusa", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐπαίδευσας", "verb", "epaídeusas", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἐπαίδευσε", "verb", "epaídeuse", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσατον", "verb", "epaideúsaton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἐπαιδευσάτην", "verb", "epaideusátēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσαμεν", "verb", "ἐπαιδεύσᾰμεν", "epaideúsămen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσατε", "verb", "ἐπαιδεύσᾰτε", "epaideúsăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἐπαίδευσαν", "verb", "epaídeusan", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσῃς", "verb", "paideúsēis", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσητον", "verb", "paideúsēton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδεύσωμεν", "verb", "paideúsōmen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσητε", "verb", "paideúsēte", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσωσι", "verb", "paideúsōsi", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσαιμι", "verb", "paideúsaimi", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσειας", "verb", "paideúseias", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσαις", "verb", "paideúsais", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσειε", "verb", "paideúseie", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσαι", "verb", "paideúsai", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσαιτον", "verb", "paideúsaiton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευσαίτην", "verb", "paideusaítēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδεύσαιμεν", "verb", "paideúsaimen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσαιτε", "verb", "paideúsaite", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσειαν", "verb", "paideúseian", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσαιεν", "verb", "paideúsaien", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παίδευσον", "verb", "paídeuson", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδευσάτω", "verb", "paideusátō", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσατον", "verb", "παιδεύσᾰτον", "paideúsăton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευσάτων", "verb", "paideusátōn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδεύσατε", "verb", "παιδεύσᾰτε", "paideúsăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδευσάντων", "verb", "paideusántōn", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδευσάμην", "verb", "epaideusámēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσω", "verb", "epaideúsō", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσατο", "verb", "ἐπαιδεύσᾰτο", "epaideúsăto", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσασθον", "verb", "epaideúsasthon", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἐπαιδευσάσθην", "verb", "epaideusásthēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἐπαιδευσάμεθα", "verb", "ἐπαιδευσάμεθᾰ", "epaideusámethă", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσασθε", "verb", "epaideúsasthe", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδεύσαντο", "verb", "epaideúsanto", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσωμαι", "verb", "paideúsōmai", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσηται", "verb", "paideúsētai", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσησθον", "verb", "paideúsēsthon", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευσώμεθα", "verb", "paideusṓmetha", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσησθε", "verb", "paideúsēsthe", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσωνται", "verb", "paideúsōntai", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδευσαίμην", "verb", "paideusaímēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσαιο", "verb", "paideúsaio", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσαιτο", "verb", "paideúsaito", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσαισθον", "verb", "paideúsaisthon", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευσαίσθην", "verb", "paideusaísthēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδευσαίμεθα", "verb", "paideusaímetha", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσαισθε", "verb", "paideúsaisthe", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδεύσαιντο", "verb", "paideúsainto", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παίδευσαι", "verb", "paídeusai", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδευσάσθω", "verb", "paideusásthō", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύσασθον", "verb", "paideúsasthon", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευσάσθων", "verb", "paideusásthōn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδεύσασθε", "verb", "paideúsasthe", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθην", "verb", "epaideúthēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθης", "verb", "epaideúthēs", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθη", "verb", "epaideúthē", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθητον", "verb", "epaideúthēton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἐπαιδευθήτην", "verb", "epaideuthḗtēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθημεν", "verb", "epaideúthēmen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθητε", "verb", "epaideúthēte", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἐπαιδεύθησαν", "verb", "epaideúthēsan", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδευθῶ", "verb", "paideuthô", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παιδευθῇς", "verb", "paideuthēîs", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδευθῇ", "verb", "paideuthēî", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδευθῆτον", "verb", "paideuthêton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευθῶμεν", "verb", "paideuthômen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδευθῆτε", "verb", "paideuthête", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδευθῶσι", "verb", "paideuthôsi", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδευθείην", "verb", "paideutheíēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["παιδευθείης", "verb", "paideutheíēs", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδευθείη", "verb", "paideutheíē", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδευθεῖτον", "verb", "paideutheîton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευθείητον", "verb", "paideutheíēton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευθείτην", "verb", "paideutheítēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδευθειήτην", "verb", "paideutheiḗtēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδευθεῖμεν", "verb", "paideutheîmen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδευθείημεν", "verb", "paideutheíēmen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["παιδευθεῖτε", "verb", "paideutheîte", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδευθείητε", "verb", "paideutheíēte", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδευθεῖεν", "verb", "paideutheîen", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδευθείησαν", "verb", "paideutheíēsan", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδεύθητι", "verb", "paideúthēti", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["παιδευθήτω", "verb", "paideuthḗtō", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["παιδεύθητον", "verb", "paideúthēton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["παιδευθήτων", "verb", "paideuthḗtōn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["παιδεύθητε", "verb", "paideúthēte", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["παιδευθέντων", "verb", "paideuthéntōn", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["παιδεῦσαι", "verb", "paideûsai", "", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["παιδεύσασθαι", "verb", "paideúsasthai", "", "", "", "aorist middle infinitive"]) + let v = native_list_append(v, ["παιδευθῆναι", "verb", "paideuthênai", "", "", "", "aorist passive infinitive"]) + let v = native_list_append(v, ["παιδεύσασα", "verb", "παιδεύσᾱσᾰ", "paideúsāsă", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδεῦσαν", "verb", "paideûsan", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["παιδευσάμενος", "verb", "παιδευσᾰ́μενος", "paideusắmenos", "παιδευσᾰμένη", "", "aorist middle participle"]) + let v = native_list_append(v, ["παιδευσαμένη", "verb", "παιδευσᾰμένη", "paideusăménē", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδευσάμενον", "verb", "παιδευσᾰ́μενον", "paideusắmenon", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["παιδευθεῖσα", "verb", "paideutheîsa", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["παιδευθείς", "verb", "first", "third declension", "paideutheís", "", "aorist passive participle"]) + let v = native_list_append(v, ["παιδευθέν", "verb", "paideuthén", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["πεπαιδευμένος", "verb", "pepaideuménos", "Attic declension-2", "grc-adecl", "", "perfect mediopassive participle"]) + let v = native_list_append(v, ["πεπαιδευμένω", "verb", "pepaideuménō", "", "", "", "inflection of πεπαιδευμένος"]) + let v = native_list_append(v, ["πεπαιδευμένοι", "verb", "pepaideuménoi", "", "", "", "inflection of πεπαιδευμένος"]) + let v = native_list_append(v, ["πεπαίδευκα", "verb", "pepaídeuka", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεπαίδευκας", "verb", "pepaídeukas", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["πεπαίδευκε", "verb", "pepaídeuke", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκατον", "verb", "πεπαιδεύκᾰτον", "pepaideúkăton", "", "", "second/third-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδεύκαμεν", "verb", "πεπαιδεύκᾰμεν", "pepaideúkămen", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκατε", "verb", "πεπαιδεύκᾰτε", "pepaideúkăte", "", "", "second-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκασι", "verb", "πεπαιδεύκᾱσῐ", "pepaideúkāsĭ", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκω", "verb", "pepaideúkō", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκῃς", "verb", "pepaideúkēis", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκῃ", "verb", "pepaideúkēi", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκητον", "verb", "pepaideúkēton", "", "", "", "second-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδεύκωμεν", "verb", "pepaideúkōmen", "", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκητε", "verb", "pepaideúkēte", "", "", "", "second-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκωσι", "verb", "pepaideúkōsi", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοιμι", "verb", "pepaideúkoimi", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδευκοίην", "verb", "pepaideukoíēn", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοις", "verb", "pepaideúkois", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδευκοίης", "verb", "pepaideukoíēs", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοι", "verb", "pepaideúkoi", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδευκοίη", "verb", "pepaideukoíē", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδευκοίτην", "verb", "pepaideukoítēn", "", "", "", "third-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοιτον", "verb", "pepaideúkoiton", "", "", "", "second-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοιμεν", "verb", "pepaideúkoimen", "", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοιτε", "verb", "pepaideúkoite", "", "", "", "second-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκοιεν", "verb", "pepaideúkoien", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδευκέτω", "verb", "pepaideukétō", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύκετον", "verb", "pepaideúketon", "", "", "", "second-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδευκέτων", "verb", "pepaideukétōn", "", "", "", "third-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδευκόντων", "verb", "pepaideukóntōn", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["πεπαιδεύκετε", "verb", "pepaideúkete", "", "", "", "second-person plural perfect"]) + let v = native_list_append(v, ["πεπαίδευμαι", "verb", "pepaídeumai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["πεπαίδευσαι", "verb", "pepaídeusai", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["πεπαίδευται", "verb", "pepaídeutai", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαίδευσθον", "verb", "pepaídeusthon", "", "", "", "second-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδεύμεθα", "verb", "pepaideúmetha", "", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["πεπαίδευσθε", "verb", "pepaídeusthe", "", "", "", "second-person plural perfect"]) + let v = native_list_append(v, ["πεπαίδευνται", "verb", "pepaídeuntai", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["πεπαίδευσο", "verb", "pepaídeuso", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύσθω", "verb", "pepaideústhō", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["πεπαιδεύσθων", "verb", "pepaideústhōn", "", "", "", "third-person dual perfect"]) + let v = native_list_append(v, ["πεπαιδευκέναι", "verb", "pepaideukénai", "", "", "", "perfect active infinitive"]) + let v = native_list_append(v, ["πεπαιδεῦσθαι", "verb", "pepaideûsthai", "", "", "", "perfect mediopassive infinitive"]) + let v = native_list_append(v, ["πεπαιδευκυῖα", "verb", "pepaideukuîa", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["πεπαιδευκός", "verb", "pepaideukós", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["πεπαιδευμένον", "verb", "pepaideuménon", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["πεπαιδευμένη", "verb", "pepaideuménē", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἐπεπαιδεύκειν", "verb", "epepaideúkein", "", "", "", "first-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκη", "verb", "epepaideúkē", "", "", "", "first-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκεις", "verb", "epepaideúkeis", "", "", "", "second-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκης", "verb", "epepaideúkēs", "", "", "", "second-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκει", "verb", "epepaideúkei", "", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκετον", "verb", "epepaideúketon", "", "", "", "second-person dual pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδευκέτην", "verb", "epepaideukétēn", "", "", "", "third-person dual pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκεμεν", "verb", "epepaideúkemen", "", "", "", "first-person plural pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκετε", "verb", "epepaideúkete", "", "", "", "second-person plural pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύκεσαν", "verb", "epepaideúkesan", "", "", "", "third-person plural pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύμην", "verb", "epepaideúmēn", "", "", "", "first-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαίδευσο", "verb", "epepaídeuso", "", "", "", "second-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαίδευτο", "verb", "epepaídeuto", "", "", "", "third-person singular pluperfect"]) + let v = native_list_append(v, ["ἐπεπαίδευσθον", "verb", "epepaídeusthon", "", "", "", "second-person dual pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύσθην", "verb", "epepaideústhēn", "", "", "", "third-person dual pluperfect"]) + let v = native_list_append(v, ["ἐπεπαιδεύμεθα", "verb", "epepaideúmetha", "", "", "", "first-person plural pluperfect"]) + let v = native_list_append(v, ["ἐπεπαίδευσθε", "verb", "epepaídeusthe", "", "", "", "second-person plural pluperfect"]) + let v = native_list_append(v, ["ἐπεπαίδευντο", "verb", "epepaídeunto", "", "", "", "third-person plural pluperfect"]) + let v = native_list_append(v, ["ἀῶμαι", "verb", "aômai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀᾷ", "verb", "aāî", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀᾶται", "verb", "aâtai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀᾶσθον", "verb", "aâsthon", "", "", "", "inflection of ἀάω"]) + let v = native_list_append(v, ["ἀώμεθα", "verb", "ἀώμεθᾰ", "aṓmethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀᾶσθε", "verb", "aâsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀῶνται", "verb", "aôntai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀῴμην", "verb", "aōímēn", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀῷο", "verb", "aōîo", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀῷτο", "verb", "aōîto", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀῷσθον", "verb", "aōîsthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀῴσθην", "verb", "aōísthēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀῴμεθα", "verb", "ἀῴμεθᾰ", "aōímethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀῷσθε", "verb", "aōîsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀῷντο", "verb", "aōînto", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀῶ", "verb", "aô", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀάσθω", "verb", "ἀᾱ́σθω", "aā́sthō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀάσθων", "verb", "ἀᾱ́σθων", "aā́sthōn", "", "", "third-person dual/plural present"]) + let v = native_list_append(v, ["ἀᾶσθαι", "verb", "aâsthai", "", "", "", "present middle infinitive"]) + let v = native_list_append(v, ["ἀώμενος", "verb", "aṓmenos", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["ἀωμένη", "verb", "aōménē", "", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ἀώμενον", "verb", "aṓmenon", "", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἀάομαι", "verb", "aáomai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀάῃ", "verb", "aáēi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀάει", "verb", "aáei", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀάεται", "verb", "aáetai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀάεσθον", "verb", "aáesthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀαόμεθα", "verb", "aaómetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀάεσθε", "verb", "aáesthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀάονται", "verb", "aáontai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀάωμαι", "verb", "ἀᾱ́ωμαι", "aā́ōmai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀάηται", "verb", "aáētai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀάησθον", "verb", "aáēsthon", "", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀαώμεθα", "verb", "ἀᾱώμεθᾰ", "aāṓmethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀάησθε", "verb", "aáēsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀάωνται", "verb", "aáōntai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀαοίμην", "verb", "aaoímēn", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀάοιο", "verb", "aáoio", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀάοιτο", "verb", "aáoito", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀάοισθον", "verb", "aáoisthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀαοίσθην", "verb", "aaoísthēn", "", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀαοίμεθα", "verb", "aaoímetha", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀάοισθε", "verb", "aáoisthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀάοιντο", "verb", "aáointo", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀάου", "verb", "aáou", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀαέσθω", "verb", "aaésthō", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀαέσθων", "verb", "aaésthōn", "", "", "", "third-person dual/plural present"]) + let v = native_list_append(v, ["ἀάεσθαι", "verb", "aáesthai", "", "", "", "present middle infinitive"]) + let v = native_list_append(v, ["ἀαόμενος", "verb", "aaómenos", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["ἀαομένη", "verb", "aaoménē", "", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ἀαόμενον", "verb", "aaómenon", "", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἄασα", "verb", "áasa", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἄασας", "verb", "áasas", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἄασε", "verb", "ἄᾱσε", "áāse", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσατον", "verb", "ἀᾱ́σᾰτον", "aā́săton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασάτην", "verb", "aasátēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀάσαμεν", "verb", "aásamen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσατε", "verb", "aásate", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἄασαν", "verb", "áasan", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀάσω", "verb", "ἀᾱ́σω", "aā́sō", "", "", "inflection of ἀάω"]) + let v = native_list_append(v, ["ἀάσῃς", "verb", "ἀᾱ́σῃς", "aā́sēis", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀάσῃ", "verb", "ἀᾱ́σῃ", "aā́sēi", "", "", "inflection of ἀάω"]) + let v = native_list_append(v, ["ἀάσητον", "verb", "ἀᾱ́σητον", "aā́sēton", "", "", "second/third-person dual aorist"]) + let v = native_list_append(v, ["ἀάσωμεν", "verb", "ἀᾱ́σωμεν", "aā́sōmen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσητε", "verb", "ἀᾱ́σητε", "aā́sēte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀάσωσι", "verb", "ἀᾱ́σωσῐ", "aā́sōsĭ", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀάσαιμι", "verb", "aásaimi", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀάσειας", "verb", "ἀᾱ́σειᾰς", "aā́seiăs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀάσαις", "verb", "aásais", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀάσειε", "verb", "ἀᾱ́σειε", "aā́seie", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσαι", "verb", "aásai", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσαιτον", "verb", "aásaiton", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασαίτην", "verb", "aasaítēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀάσαιμεν", "verb", "aásaimen", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσαιτε", "verb", "aásaite", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀάσειαν", "verb", "ἀᾱ́σειᾰν", "aā́seiăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀάσαιεν", "verb", "aásaien", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἄασον", "verb", "ἄᾱσον", "áāson", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀασάτω", "verb", "ἀᾱσάτω", "aāsátō", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀασάτων", "verb", "ἀᾱσάτων", "aāsátōn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀασάντων", "verb", "aasántōn", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀασάμην", "verb", "aasámēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀάσατο", "verb", "ἀᾱ́σᾰτο", "aā́săto", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσασθον", "verb", "aásasthon", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασάσθην", "verb", "aasásthēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀασάμεθα", "verb", "aasámetha", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσασθε", "verb", "aásasthe", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀάσαντο", "verb", "aásanto", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀάσωμαι", "verb", "ἀᾱ́σωμαι", "aā́sōmai", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀάσηται", "verb", "ἀᾱ́σηται", "aā́sētai", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσησθον", "verb", "ἀᾱ́σησθον", "aā́sēsthon", "", "", "second/third-person dual aorist"]) + let v = native_list_append(v, ["ἀασώμεθα", "verb", "ἀᾱσώμεθᾰ", "aāsṓmethă", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσησθε", "verb", "ἀᾱ́σησθε", "aā́sēsthe", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀάσωνται", "verb", "ἀᾱ́σωνται", "aā́sōntai", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀασαίμην", "verb", "aasaímēn", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀάσαιο", "verb", "aásaio", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀάσαιτο", "verb", "aásaito", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσαισθον", "verb", "aásaisthon", "", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασαίσθην", "verb", "aasaísthēn", "", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀασαίμεθα", "verb", "aasaímetha", "", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσαισθε", "verb", "aásaisthe", "", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀάσαιντο", "verb", "aásainto", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἄασαι", "verb", "áasai", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀασάσθω", "verb", "aasásthō", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀασάσθων", "verb", "aasásthōn", "", "", "", "third-person dual/plural aorist"]) + let v = native_list_append(v, ["ἀάσθην", "verb", "ἀᾱ́σθην", "aā́sthēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀάσθης", "verb", "ἀᾱ́σθης", "aā́sthēs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀάσθη", "verb", "ἀᾱ́σθη", "aā́sthē", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀάσθητον", "verb", "ἀᾱ́σθητον", "aā́sthēton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασθήτην", "verb", "ἀᾱσθήτην", "aāsthḗtēn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀάσθημεν", "verb", "ἀᾱ́σθημεν", "aā́sthēmen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀάσθητε", "verb", "ἀᾱ́σθητε", "aā́sthēte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀάσθησαν", "verb", "ἀᾱ́σθησᾰν", "aā́sthēsăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀασθῶ", "verb", "ἀᾱσθῶ", "aāsthô", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀασθῇς", "verb", "ἀᾱσθῇς", "aāsthēîs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀασθῇ", "verb", "ἀᾱσθῇ", "aāsthēî", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀασθῆτον", "verb", "ἀᾱσθῆτον", "aāsthêton", "", "", "second/third-person dual aorist"]) + let v = native_list_append(v, ["ἀασθῶμεν", "verb", "ἀᾱσθῶμεν", "aāsthômen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀασθῆτε", "verb", "ἀᾱσθῆτε", "aāsthête", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀασθῶσι", "verb", "ἀᾱσθῶσῐ", "aāsthôsĭ", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀασθείην", "verb", "ἀᾱσθείην", "aāstheíēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀασθείης", "verb", "ἀᾱσθείης", "aāstheíēs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀασθείη", "verb", "ἀᾱσθείη", "aāstheíē", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀασθεῖτον", "verb", "ἀᾱσθεῖτον", "aāstheîton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασθείητον", "verb", "ἀᾱσθείητον", "aāstheíēton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀασθείτην", "verb", "ἀᾱσθείτην", "aāstheítēn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀασθειήτην", "verb", "ἀᾱσθειήτην", "aāstheiḗtēn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀασθεῖμεν", "verb", "ἀᾱσθεῖμεν", "aāstheîmen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀασθείημεν", "verb", "ἀᾱσθείημεν", "aāstheíēmen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀασθεῖτε", "verb", "ἀᾱσθεῖτε", "aāstheîte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀασθείητε", "verb", "ἀᾱσθείητε", "aāstheíēte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀασθεῖεν", "verb", "ἀᾱσθεῖεν", "aāstheîen", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀασθείησαν", "verb", "ἀᾱσθείησᾰν", "aāstheíēsăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀάσθητι", "verb", "ἀᾱ́σθητι", "aā́sthēti", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀασθήτω", "verb", "ἀᾱσθήτω", "aāsthḗtō", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀασθήτων", "verb", "ἀᾱσθήτων", "aāsthḗtōn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀασθέντων", "verb", "ἀᾱσθέντων", "aāsthéntōn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀᾶσαι", "verb", "aâsai", "", "", "", "aorist active infinitive"]) + let v = native_list_append(v, ["ἀάσασθαι", "verb", "aásasthai", "", "", "", "aorist middle infinitive"]) + let v = native_list_append(v, ["ἀασθῆναι", "verb", "ἀᾱσθῆναι", "aāsthênai", "", "", "aorist passive infinitive"]) + let v = native_list_append(v, ["ἀάσας", "verb", "aásas", "Attic declension-3", "grc-adecl", "", "aorist active participle"]) + let v = native_list_append(v, ["ἀασάμενος", "verb", "aasámenos", "Attic declension-2", "grc-adecl", "", "aorist middle participle"]) + let v = native_list_append(v, ["ἀασθείς", "verb", "ἀᾱσθείς", "aāstheís", "Attic declension-3", "", "aorist passive participle"]) + let v = native_list_append(v, ["ἀασαμένη", "verb", "aasaménē", "", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ἀάσασα", "verb", "aásasa", "", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ἀᾶσαν", "verb", "aâsan", "", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἀασάμενον", "verb", "aasámenon", "", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἀασθεῖσα", "verb", "ἀᾱσθεῖσᾰ", "aāstheîsă", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ἀασθέν", "verb", "ἀᾱσθέν", "aāsthén", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἀγαθοεργεῖς", "verb", "ᾰ̓γᾰθοεργεῖς", "ăgăthoergeîs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργεῖ", "verb", "ᾰ̓γᾰθοεργεῖ", "ăgăthoergeî", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργεῖτον", "verb", "ᾰ̓γᾰθοεργεῖτον", "ăgăthoergeîton", "", "", "inflection of ᾰ̓γᾰθοεργέω"]) + let v = native_list_append(v, ["ἀγαθοεργέομεν", "verb", "ᾰ̓γᾰθοεργέομεν", "ăgăthoergéomen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργεῖτε", "verb", "ᾰ̓γᾰθοεργεῖτε", "ăgăthoergeîte", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργέουσι", "verb", "ᾰ̓γᾰθοεργέουσῐ", "ăgăthoergéousĭ", "ᾰ̓γᾰθοεργέουσῐν", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργῇς", "verb", "ᾰ̓γᾰθοεργῇς", "ăgăthoergēîs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργῇ", "verb", "ᾰ̓γᾰθοεργῇ", "ăgăthoergēî", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργῆτον", "verb", "ᾰ̓γᾰθοεργῆτον", "ăgăthoergêton", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοεργέωμεν", "verb", "ᾰ̓γᾰθοεργέωμεν", "ăgăthoergéōmen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργῆτε", "verb", "ᾰ̓γᾰθοεργῆτε", "ăgăthoergête", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργέωσι", "verb", "ᾰ̓γᾰθοεργέωσῐ", "ăgăthoergéōsĭ", "ᾰ̓γᾰθοεργέωσῐν", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργέοιμι", "verb", "ᾰ̓γᾰθοεργέοιμῐ", "ăgăthoergéoimĭ", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργέοις", "verb", "ᾰ̓γᾰθοεργέοις", "ăgăthoergéois", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργέοι", "verb", "ᾰ̓γᾰθοεργέοι", "ăgăthoergéoi", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργέοιτον", "verb", "ᾰ̓γᾰθοεργέοιτον", "ăgăthoergéoiton", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοεργεοίτην", "verb", "ᾰ̓γᾰθοεργεοίτην", "ăgăthoergeoítēn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοεργέοιμεν", "verb", "ᾰ̓γᾰθοεργέοιμεν", "ăgăthoergéoimen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργέοιτε", "verb", "ᾰ̓γᾰθοεργέοιτε", "ăgăthoergéoite", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργέοιεν", "verb", "ᾰ̓γᾰθοεργέοιεν", "ăgăthoergéoien", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοέργει", "verb", "ᾰ̓γᾰθοέργει", "ăgăthoérgei", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργείτω", "verb", "ᾰ̓γᾰθοεργείτω", "ăgăthoergeítō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοεργείτων", "verb", "ᾰ̓γᾰθοεργείτων", "ăgăthoergeítōn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοεργεόντων", "verb", "ᾰ̓γᾰθοεργεόντων", "ăgăthoergeóntōn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοεργεῖν", "verb", "ᾰ̓γᾰθοεργεῖν", "ăgăthoergeîn", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀγαθοεργέων", "verb", "ᾰ̓γᾰθοεργέων", "first", "third declension", "", "present active participle"]) + let v = native_list_append(v, ["ἀγαθοεργέουσα", "verb", "ᾰ̓γᾰθοεργέουσᾰ", "ăgăthoergéousă", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἀγαθοεργέον", "verb", "ᾰ̓γᾰθοεργέον", "ăgăthoergéon", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ἀγαθοποιέεις", "verb", "ἀγᾰθοποιέεις", "agăthopoiéeis", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέει", "verb", "ἀγᾰθοποιέει", "agăthopoiéei", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιέετον", "verb", "ἀγᾰθοποιέετον", "agăthopoiéeton", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιέομεν", "verb", "ἀγᾰθοποιέομεν", "agăthopoiéomen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέετε", "verb", "ἀγᾰθοποιέετε", "agăthopoiéete", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέουσι", "verb", "ἀγᾰθοποιέουσῐ", "agăthopoiéousĭ", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέῃς", "verb", "ἀγᾰθοποιέῃς", "agăthopoiéēis", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέῃ", "verb", "ἀγᾰθοποιέῃ", "agăthopoiéēi", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιέητον", "verb", "ἀγᾰθοποιέητον", "agăthopoiéēton", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιέωμεν", "verb", "ἀγᾰθοποιέωμεν", "agăthopoiéōmen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέητε", "verb", "ἀγᾰθοποιέητε", "agăthopoiéēte", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέωσι", "verb", "ἀγᾰθοποιέωσῐ", "agăthopoiéōsĭ", "", "", "third-person plural present"]) + let v = native_list_append(v, ["λύετον", "verb", "λῡ́ετον", "lū́eton", "", "", "inflection of λῡ́ω"]) + let v = native_list_append(v, ["λύητον", "verb", "λῡ́ητον", "lū́ēton", "", "", "second/third-person dual subjunctive"]) + let v = native_list_append(v, ["λύοιμι", "verb", "λῡ́οιμῐ", "lū́oimĭ", "", "", "first-person singular optative"]) + let v = native_list_append(v, ["λύοι", "verb", "λῡ́οι", "lū́oi", "", "", "third-person singular optative"]) + let v = native_list_append(v, ["λύοιτον", "verb", "λῡ́οιτον", "lū́oiton", "", "", "second-person dual optative"]) + let v = native_list_append(v, ["λυοίτην", "verb", "λῡοίτην", "lūoítēn", "", "", "third-person dual optative"]) + let v = native_list_append(v, ["λύοιμεν", "verb", "λῡ́οιμεν", "lū́oimen", "", "", "first-person plural optative"]) + let v = native_list_append(v, ["λύοιτε", "verb", "λῡ́οιτε", "lū́oite", "", "", "second-person plural optative"]) + let v = native_list_append(v, ["λύοιεν", "verb", "λῡ́οιεν", "lū́oien", "", "", "third-person plural optative"]) + let v = native_list_append(v, ["λυέτων", "verb", "λῡέτων", "lūétōn", "", "", "third-person dual imperative"]) + let v = native_list_append(v, ["λυόντων", "verb", "λῡ́όντων", "lū́óntōn", "", "", "genitive plural masculine/neuter"]) + let v = native_list_append(v, ["ἀγαθοποιέοιμι", "verb", "ἀγᾰθοποιέοιμῐ", "agăthopoiéoimĭ", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέοις", "verb", "ἀγᾰθοποιέοις", "agăthopoiéois", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέοι", "verb", "ἀγᾰθοποιέοι", "agăthopoiéoi", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιτον", "verb", "ἀγᾰθοποιέοιτον", "agăthopoiéoiton", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιεοίτην", "verb", "ἀγᾰθοποιεοίτην", "agăthopoieoítēn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιμεν", "verb", "ἀγᾰθοποιέοιμεν", "agăthopoiéoimen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιτε", "verb", "ἀγᾰθοποιέοιτε", "agăthopoiéoite", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιεν", "verb", "ἀγᾰθοποιέοιεν", "agăthopoiéoien", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποίεε", "verb", "ἀγᾰθοποίεε", "agăthopoíee", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεέτω", "verb", "ἀγᾰθοποιεέτω", "agăthopoieétō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεέτων", "verb", "ἀγᾰθοποιεέτων", "agăthopoieétōn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιεόντων", "verb", "ἀγᾰθοποιεόντων", "agăthopoieóntōn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέομαι", "verb", "ἀγᾰθοποιέομαι", "agăthopoiéomai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέεται", "verb", "ἀγᾰθοποιέεται", "agăthopoiéetai", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέεσθον", "verb", "ἀγᾰθοποιέεσθον", "agăthopoiéesthon", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιεόμεθα", "verb", "ἀγᾰθοποιεόμεθᾰ", "agăthopoieómethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέεσθε", "verb", "ἀγᾰθοποιέεσθε", "agăthopoiéesthe", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέονται", "verb", "ἀγᾰθοποιέονται", "agăthopoiéontai", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέωμαι", "verb", "ἀγᾰθοποιέωμαι", "agăthopoiéōmai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέηται", "verb", "ἀγᾰθοποιέηται", "agăthopoiéētai", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέησθον", "verb", "ἀγᾰθοποιέησθον", "agăthopoiéēsthon", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιεώμεθα", "verb", "ἀγᾰθοποιεώμεθᾰ", "agăthopoieṓmethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέησθε", "verb", "ἀγᾰθοποιέησθε", "agăthopoiéēsthe", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέωνται", "verb", "ἀγᾰθοποιέωνται", "agăthopoiéōntai", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιεοίμην", "verb", "ἀγᾰθοποιεοίμην", "agăthopoieoímēn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιο", "verb", "ἀγᾰθοποιέοιο", "agăthopoiéoio", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιτο", "verb", "ἀγᾰθοποιέοιτο", "agăthopoiéoito", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιέοισθον", "verb", "ἀγᾰθοποιέοισθον", "agăthopoiéoisthon", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιεοίσθην", "verb", "ἀγᾰθοποιεοίσθην", "agăthopoieoísthēn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιεοίμεθα", "verb", "ἀγᾰθοποιεοίμεθᾰ", "agăthopoieoímethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέοισθε", "verb", "ἀγᾰθοποιέοισθε", "agăthopoiéoisthe", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέοιντο", "verb", "ἀγᾰθοποιέοιντο", "agăthopoiéointo", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέου", "verb", "ἀγᾰθοποιέου", "agăthopoiéou", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεέσθω", "verb", "ἀγᾰθοποιεέσθω", "agăthopoieésthō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεέσθων", "verb", "ἀγᾰθοποιεέσθων", "agăthopoieésthōn", "", "", "third-person dual/plural present"]) + let v = native_list_append(v, ["ἀγαθοποιέειν", "verb", "ἀγᾰθοποιέειν", "agăthopoiéein", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιέεσθαι", "verb", "ἀγᾰθοποιέεσθαι", "agăthopoiéesthai", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιέων", "verb", "ἀγᾰθοποιέων", "agăthopoiéōn", "Attic declension-3", "", "present active participle"]) + let v = native_list_append(v, ["ἀγαθοποιεόμενος", "verb", "ἀγᾰθοποιεόμενος", "agăthopoieómenos", "ἀγᾰθοποιεομένη", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ἀγαθοποιεόμενον", "verb", "ἀγᾰθοποιεόμενον", "agăthopoieómenon", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἀγαθοποιέουσα", "verb", "ἀγᾰθοποιέουσᾰ", "agăthopoiéousă", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιέον", "verb", "ἀγᾰθοποιέον", "agăthopoiéon", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἀγαθοποιεομένη", "verb", "ἀγᾰθοποιεομένη", "agăthopoieoménē", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιῶ", "verb", "ἀγᾰθοποιῶ", "agăthopoiô", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖς", "verb", "ἀγᾰθοποιεῖς", "agăthopoieîs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖ", "verb", "ἀγᾰθοποιεῖ", "agăthopoieî", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖτον", "verb", "ἀγᾰθοποιεῖτον", "agăthopoieîton", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοῦμεν", "verb", "ἀγᾰθοποιοῦμεν", "agăthopoioûmen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖτε", "verb", "ἀγᾰθοποιεῖτε", "agăthopoieîte", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῦσι", "verb", "ἀγᾰθοποιοῦσῐ", "agăthopoioûsĭ", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιῇς", "verb", "agathopoiēîs", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιῇ", "verb", "ἀγᾰθοποιῇ", "agăthopoiēî", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιῆτον", "verb", "ἀγᾰθοποιῆτον", "agăthopoiêton", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιῶμεν", "verb", "ἀγᾰθοποιῶμεν", "agăthopoiômen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιῆτε", "verb", "ἀγᾰθοποιῆτε", "agăthopoiête", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιῶσι", "verb", "ἀγᾰθοποιῶσῐ", "agăthopoiôsĭ", "", "", "third-person plural present"]) + let v = native_list_append(v, ["λύομαι", "verb", "λῡ́ομαι", "lū́omai", "", "", "first-person singular present"]) + let v = native_list_append(v, ["κέκασμαι", "verb", "kékasmai", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["ἀγαθοποιοίην", "verb", "ἀγᾰθοποιοίην", "agăthopoioíēn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖμι", "verb", "ἀγᾰθοποιοῖμῐ", "agăthopoioîmĭ", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοίης", "verb", "ἀγᾰθοποιοίης", "agăthopoioíēs", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖς", "verb", "ᾰ̓γᾰθοποιοῖς", "ăgăthopoioîs", "", "", "contracted second-person singular"]) + let v = native_list_append(v, ["ἀγαθοποιοίη", "verb", "ἀγᾰθοποιοίη", "agăthopoioíē", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖ", "verb", "ἀγᾰθοποιοῖ", "agăthopoioî", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖτον", "verb", "ἀγᾰθοποιοῖτον", "agăthopoioîton", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοίητον", "verb", "ἀγᾰθοποιοίητον", "agăthopoioíēton", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοίτην", "verb", "ἀγᾰθοποιοίτην", "agăthopoioítēn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοιήτην", "verb", "ἀγᾰθοποιοιήτην", "agăthopoioiḗtēn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖμεν", "verb", "ἀγᾰθοποιοῖμεν", "agăthopoioîmen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοίημεν", "verb", "ἀγᾰθοποιοίημεν", "agăthopoioíēmen", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖτε", "verb", "agathopoioîte", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοίητε", "verb", "ἀγᾰθοποιοίητε", "agăthopoioíēte", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖεν", "verb", "ἀγᾰθοποιοῖεν", "agăthopoioîen", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοίησαν", "verb", "ἀγᾰθοποιοίησᾰν", "agăthopoioíēsăn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποίει", "verb", "ἀγᾰθοποίει", "agăthopoíei", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιείτω", "verb", "ἀγᾰθοποιείτω", "agăthopoieítō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιείτων", "verb", "ἀγᾰθοποιείτων", "agăthopoieítōn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιούντων", "verb", "ἀγᾰθοποιούντων", "agăthopoioúntōn", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῦμαι", "verb", "agathopoioûmai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖται", "verb", "ἀγᾰθοποιεῖται", "agăthopoieîtai", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖσθον", "verb", "ἀγᾰθοποιεῖσθον", "agăthopoieîsthon", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιούμεθα", "verb", "ἀγᾰθοποιούμεθᾰ", "agăthopoioúmethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖσθε", "verb", "ἀγᾰθοποιεῖσθε", "agăthopoieîsthe", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῦνται", "verb", "agathopoioûntai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἔχεις", "verb", "ékheis", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἔχομεν", "verb", "ékhomen", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἔχετε", "verb", "ékhete", "ἔχετ’", "", "", "inflection of ἔχω"]) + let v = native_list_append(v, ["ἔχουσι", "verb", "ἔχουσῐ", "ékhousĭ", "ἔχουσῐν", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιῶμαι", "verb", "agathopoiômai", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιῆται", "verb", "agathopoiêtai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιῆσθον", "verb", "agathopoiêsthon", "", "", "", "second/third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιώμεθα", "verb", "ἀγᾰθοποιώμεθᾰ", "agăthopoiṓmethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιῆσθε", "verb", "agathopoiêsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιῶνται", "verb", "agathopoiôntai", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοίμην", "verb", "ἀγᾰθοποιοίμην", "agăthopoioímēn", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖο", "verb", "agathopoioîo", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖτο", "verb", "agathopoioîto", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖσθον", "verb", "agathopoioîsthon", "", "", "", "second-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοίσθην", "verb", "ἀγᾰθοποιοίσθην", "agăthopoioísthēn", "", "", "third-person dual present"]) + let v = native_list_append(v, ["ἀγαθοποιοίμεθα", "verb", "ἀγᾰθοποιοίμεθᾰ", "agăthopoioímethă", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖσθε", "verb", "agathopoioîsthe", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῖντο", "verb", "agathopoioînto", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ἀγαθοποιοῦ", "verb", "ᾰ̓γᾰθοποιοῦ", "ăgăthopoioû", "", "", "contracted second-person singular"]) + let v = native_list_append(v, ["ἀγαθοποιείσθω", "verb", "ἀγᾰθοποιείσθω", "agăthopoieísthō", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ἀγαθοποιείσθων", "verb", "ἀγᾰθοποιείσθων", "agăthopoieísthōn", "", "", "third-person dual/plural present"]) + let v = native_list_append(v, ["ἀγαθοποιεῖσθαι", "verb", "ἀγᾰθοποιεῖσθαι", "agăthopoieîsthai", "", "", "present mediopassive infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιεῖν", "verb", "ἀγᾰθοποιεῖν", "agăthopoieîn", "", "", "present active infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιῶν", "verb", "ᾰ̓γᾰθοποιῶν", "ăgăthopoiôn", "Attic declension-3", "", "contracted present active"]) + let v = native_list_append(v, ["ἀγαθοποιούμενος", "verb", "ἀγᾰθοποιούμενος", "agăthopoioúmenos", "ἀγᾰθοποιουμένη", "", "present mediopassive participle"]) + let v = native_list_append(v, ["ἀγαθοποιοῦσα", "verb", "agathopoioûsa", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιοῦν", "verb", "agathopoioûn", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἀγαθοποιουμένη", "verb", "ἀγᾰθοποιουμένη", "agăthopoiouménē", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιούμενον", "verb", "ἀγᾰθοποιούμενον", "agăthopoioúmenon", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἠγαθοποίεον", "verb", "ἠγᾰθοποίεον", "ēgăthopoíeon", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ἠγαθοποίεες", "verb", "ἠγᾰθοποίεες", "ēgăthopoíees", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποίεε", "verb", "ἠγᾰθοποίεε", "ēgăthopoíee", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέετον", "verb", "ἠγᾰθοποιέετον", "ēgăthopoiéeton", "", "", "second-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεέτην", "verb", "ἠγᾰθοποιεέτην", "ēgăthopoieétēn", "", "", "third-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέομεν", "verb", "ἠγᾰθοποιέομεν", "ēgăthopoiéomen", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέετε", "verb", "ἠγᾰθοποιέετε", "ēgăthopoiéete", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεόμην", "verb", "ἠγᾰθοποιεόμην", "ēgăthopoieómēn", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέου", "verb", "ἠγᾰθοποιέου", "ēgăthopoiéou", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέετο", "verb", "ἠγᾰθοποιέετο", "ēgăthopoiéeto", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέεσθον", "verb", "ἠγᾰθοποιέεσθον", "ēgăthopoiéesthon", "", "", "second-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεέσθην", "verb", "ἠγᾰθοποιεέσθην", "ēgăthopoieésthēn", "", "", "third-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεόμεθα", "verb", "ἠγᾰθοποιεόμεθᾰ", "ēgăthopoieómethă", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέεσθε", "verb", "ἠγᾰθοποιέεσθε", "ēgăthopoiéesthe", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιέοντο", "verb", "ἠγᾰθοποιέοντο", "ēgăthopoiéonto", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἔχεν", "verb", "ékhen", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["εἶχες", "verb", "eîkhes", "ἔχες", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["εἶχε", "verb", "eîkhe", "εἶχεν", "ἔχε", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["εἶχεν", "verb", "eîkhen", "εἶχε", "ἔχεν", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["εἴχομεν", "verb", "eíkhomen", "ἔχομεν", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["εἴχετε", "verb", "eíkhete", "ἔχετε", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποίουν", "verb", "ἠγᾰθοποίουν", "ēgăthopoíoun", "", "", "first-person singular/third-person plural"]) + let v = native_list_append(v, ["ἠγαθοποίεις", "verb", "ἠγᾰθοποίεις", "ēgăthopoíeis", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποίει", "verb", "ἠγᾰθοποίει", "ēgăthopoíei", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεῖτον", "verb", "ēgathopoieîton", "", "", "", "second-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιείτην", "verb", "ēgathopoieítēn", "", "", "", "third-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιοῦμεν", "verb", "ēgathopoioûmen", "", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεῖτε", "verb", "ēgathopoieîte", "", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιούμην", "verb", "ἠγᾰθοποιούμην", "ēgăthopoioúmēn", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιοῦ", "verb", "ēgathopoioû", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεῖτο", "verb", "ēgathopoieîto", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεῖσθον", "verb", "ēgathopoieîsthon", "", "", "", "second-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιείσθην", "verb", "ἠγᾰθοποιείσθην", "ēgăthopoieísthēn", "", "", "third-person dual imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιούμεθα", "verb", "ἠγᾰθοποιούμεθᾰ", "ēgăthopoioúmethă", "", "", "first-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιεῖσθε", "verb", "ēgathopoieîsthe", "", "", "", "second-person plural imperfect"]) + let v = native_list_append(v, ["ἠγαθοποιοῦντο", "verb", "ēgathopoioûnto", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ἀγαθοποιήσω", "verb", "ἀγᾰθοποιήσω", "agăthopoiḗsō", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιήσεις", "verb", "ἀγᾰθοποιήσεις", "agăthopoiḗseis", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσει", "verb", "ἀγᾰθοποιήσει", "agăthopoiḗsei", "", "", "inflection of ἀγαθοποιέω"]) + let v = native_list_append(v, ["ἀγαθοποιήσετον", "verb", "ἀγᾰθοποιήσετον", "agăthopoiḗseton", "", "", "second/third-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιήσομεν", "verb", "ἀγᾰθοποιήσομεν", "agăthopoiḗsomen", "", "", "first-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσετε", "verb", "ἀγᾰθοποιήσετε", "agăthopoiḗsete", "", "", "second-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσουσι", "verb", "ἀγᾰθοποιήσουσῐ", "agăthopoiḗsousĭ", "", "", "third-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιμι", "verb", "ἀγᾰθοποιήσοιμῐ", "agăthopoiḗsoimĭ", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοις", "verb", "ἀγᾰθοποιήσοις", "agăthopoiḗsois", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοι", "verb", "ἀγᾰθοποιήσοι", "agăthopoiḗsoi", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιτον", "verb", "ἀγᾰθοποιήσοιτον", "agăthopoiḗsoiton", "", "", "second-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιησοίτην", "verb", "ἀγᾰθοποιησοίτην", "agăthopoiēsoítēn", "", "", "third-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιμεν", "verb", "ἀγᾰθοποιήσοιμεν", "agăthopoiḗsoimen", "", "", "first-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιτε", "verb", "ἀγᾰθοποιήσοιτε", "agăthopoiḗsoite", "", "", "second-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιεν", "verb", "ἀγᾰθοποιήσοιεν", "agăthopoiḗsoien", "", "", "third-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσομαι", "verb", "ἀγᾰθοποιήσομαι", "agăthopoiḗsomai", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσῃ", "verb", "agathopoiḗsēi", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσεται", "verb", "ἀγᾰθοποιήσεται", "agăthopoiḗsetai", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσεσθον", "verb", "ἀγᾰθοποιήσεσθον", "agăthopoiḗsesthon", "", "", "second/third-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιησόμεθα", "verb", "ἀγᾰθοποιησόμεθᾰ", "agăthopoiēsómethă", "", "", "first-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσεσθε", "verb", "ἀγᾰθοποιήσεσθε", "agăthopoiḗsesthe", "", "", "second-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσονται", "verb", "ἀγᾰθοποιήσονται", "agăthopoiḗsontai", "", "", "third-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιησοίμην", "verb", "ἀγᾰθοποιησοίμην", "agăthopoiēsoímēn", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιο", "verb", "ἀγᾰθοποιήσοιο", "agăthopoiḗsoio", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιτο", "verb", "ἀγᾰθοποιήσοιτο", "agăthopoiḗsoito", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοισθον", "verb", "ἀγᾰθοποιήσοισθον", "agăthopoiḗsoisthon", "", "", "second-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιησοίσθην", "verb", "ἀγᾰθοποιησοίσθην", "agăthopoiēsoísthēn", "", "", "third-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιησοίμεθα", "verb", "ἀγᾰθοποιησοίμεθᾰ", "agăthopoiēsoímethă", "", "", "first-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοισθε", "verb", "ἀγᾰθοποιήσοισθε", "agăthopoiḗsoisthe", "", "", "second-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσοιντο", "verb", "ἀγᾰθοποιήσοιντο", "agăthopoiḗsointo", "", "", "third-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσομαι", "verb", "ἀγᾰθοποιηθήσομαι", "agăthopoiēthḗsomai", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσῃ", "verb", "agathopoiēthḗsēi", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσεται", "verb", "ἀγᾰθοποιηθήσεται", "agăthopoiēthḗsetai", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσεσθον", "verb", "ἀγᾰθοποιηθήσεσθον", "agăthopoiēthḗsesthon", "", "", "second/third-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιηθησόμεθα", "verb", "ἀγᾰθοποιηθησόμεθᾰ", "agăthopoiēthēsómethă", "", "", "first-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσεσθε", "verb", "ἀγᾰθοποιηθήσεσθε", "agăthopoiēthḗsesthe", "", "", "second-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσονται", "verb", "ἀγᾰθοποιηθήσονται", "agăthopoiēthḗsontai", "", "", "third-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιηθησοίμην", "verb", "ἀγᾰθοποιηθησοίμην", "agăthopoiēthēsoímēn", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσοιο", "verb", "ἀγᾰθοποιηθήσοιο", "agăthopoiēthḗsoio", "", "", "second-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσοιτο", "verb", "ἀγᾰθοποιηθήσοιτο", "agăthopoiēthḗsoito", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσοισθον", "verb", "ἀγᾰθοποιηθήσοισθον", "agăthopoiēthḗsoisthon", "", "", "second-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιηθησοίσθην", "verb", "ἀγᾰθοποιηθησοίσθην", "agăthopoiēthēsoísthēn", "", "", "third-person dual future"]) + let v = native_list_append(v, ["ἀγαθοποιηθησοίμεθα", "verb", "ἀγᾰθοποιηθησοίμεθᾰ", "agăthopoiēthēsoímethă", "", "", "first-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσοισθε", "verb", "ἀγᾰθοποιηθήσοισθε", "agăthopoiēthḗsoisthe", "", "", "second-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσοιντο", "verb", "ἀγᾰθοποιηθήσοιντο", "agăthopoiēthḗsointo", "", "", "third-person plural future"]) + let v = native_list_append(v, ["ἀγαθοποιήσειν", "verb", "ἀγᾰθοποιήσειν", "agăthopoiḗsein", "", "", "future active infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιήσεσθαι", "verb", "ἀγᾰθοποιήσεσθαι", "agăthopoiḗsesthai", "", "", "future middle infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιηθήσεσθαι", "verb", "ἀγᾰθοποιηθήσεσθαι", "agăthopoiēthḗsesthai", "", "", "future passive infinitive"]) + let v = native_list_append(v, ["ἀγαθοποιήσων", "verb", "ᾰ̓γᾰθοποιήσων", "first", "third declension", "", "future active participle"]) + let v = native_list_append(v, ["ἀγαθοποιησόμενος", "verb", "ᾰ̓γᾰθοποιησόμενος", "ăgăthopoiēsómenos", "ᾰ̓γᾰθοποιησομένη", "", "future mediopassive participle"]) + let v = native_list_append(v, ["ἀγαθοποιηθησόμενος", "verb", "ἀγᾰθοποιηθησόμενος", "agăthopoiēthēsómenos", "ἀγᾰθοποιηθησομένη", "", "future passive participle"]) + let v = native_list_append(v, ["ἀγαθοποιήσουσα", "verb", "ἀγᾰθοποιήσουσᾰ", "agăthopoiḗsousă", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιῆσον", "verb", "agathopoiêson", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἀγαθοποιησομένη", "verb", "ἀγᾰθοποιησομένη", "agăthopoiēsoménē", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιησόμενον", "verb", "ἀγᾰθοποιησόμενον", "agăthopoiēsómenon", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἀγαθοποιηθησομένη", "verb", "ἀγᾰθοποιηθησομένη", "agăthopoiēthēsoménē", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ἀγαθοποιηθησόμενον", "verb", "ἀγᾰθοποιηθησόμενον", "agăthopoiēthēsómenon", "", "", "nominative/accusative/vocative neuter singular"]) + let v = native_list_append(v, ["ἠγαθοποίησα", "verb", "ἠγᾰθοποίησᾰ", "ēgăthopoíēsă", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἠγαθοποίησας", "verb", "ἠγᾰθοποίησᾰς", "ēgăthopoíēsăs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἠγαθοποίησε", "verb", "ἠγᾰθοποίησε", "ēgăthopoíēse", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσατον", "verb", "ἠγᾰθοποιήσᾰτον", "ēgăthopoiḗsăton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἠγαθοποιησάτην", "verb", "ἠγᾰθοποιησάτην", "ēgăthopoiēsátēn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσαμεν", "verb", "ἠγᾰθοποιήσᾰμεν", "ēgăthopoiḗsămen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσατε", "verb", "ἠγᾰθοποιήσᾰτε", "ēgăthopoiḗsăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἠγαθοποίησαν", "verb", "ἠγᾰθοποίησᾰν", "ēgăthopoíēsăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσῃς", "verb", "agathopoiḗsēis", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσητον", "verb", "ἀγᾰθοποιήσητον", "agăthopoiḗsēton", "", "", "second/third-person dual aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσωμεν", "verb", "ἀγᾰθοποιήσωμεν", "agăthopoiḗsōmen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσητε", "verb", "ἀγᾰθοποιήσητε", "agăthopoiḗsēte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσωσι", "verb", "ἀγᾰθοποιήσωσῐ", "agăthopoiḗsōsĭ", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαιμι", "verb", "ἀγᾰθοποιήσαιμῐ", "agăthopoiḗsaimĭ", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσειας", "verb", "ἀγᾰθοποιήσειᾰς", "agăthopoiḗseiăs", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαις", "verb", "ἀγᾰθοποιήσαις", "agăthopoiḗsais", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσειε", "verb", "ἀγᾰθοποιήσειε", "agăthopoiḗseie", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαι", "verb", "ἀγᾰθοποιήσαι", "agăthopoiḗsai", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαιτον", "verb", "ἀγᾰθοποιήσαιτον", "agăthopoiḗsaiton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀγαθοποιησαίτην", "verb", "ἀγᾰθοποιησαίτην", "agăthopoiēsaítēn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαιμεν", "verb", "ἀγᾰθοποιήσαιμεν", "agăthopoiḗsaimen", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαιτε", "verb", "ἀγᾰθοποιήσαιτε", "agăthopoiḗsaite", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσειαν", "verb", "ἀγᾰθοποιήσειᾰν", "agăthopoiḗseiăn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσαιεν", "verb", "ἀγᾰθοποιήσαιεν", "agăthopoiḗsaien", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποίησον", "verb", "ἀγᾰθοποίησον", "agăthopoíēson", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιησάτω", "verb", "ἀγᾰθοποιησάτω", "agăthopoiēsátō", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσατον", "verb", "ἀγᾰθοποιήσᾰτον", "agăthopoiḗsăton", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἀγαθοποιησάτων", "verb", "ἀγᾰθοποιησάτων", "agăthopoiēsátōn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἀγαθοποιήσατε", "verb", "ἀγᾰθοποιήσᾰτε", "agăthopoiḗsăte", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["ἀγαθοποιησάντων", "verb", "ἀγᾰθοποιησάντων", "agăthopoiēsántōn", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ἠγαθοποιησάμην", "verb", "ἠγᾰθοποιησάμην", "ēgăthopoiēsámēn", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσω", "verb", "ἠγᾰθοποιήσω", "ēgăthopoiḗsō", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσατο", "verb", "ἠγᾰθοποιήσᾰτο", "ēgăthopoiḗsăto", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσασθον", "verb", "ἠγᾰθοποιήσασθον", "ēgăthopoiḗsasthon", "", "", "second-person dual aorist"]) + let v = native_list_append(v, ["ἠγαθοποιησάσθην", "verb", "ἠγᾰθοποιησάσθην", "ēgăthopoiēsásthēn", "", "", "third-person dual aorist"]) + let v = native_list_append(v, ["ἠγαθοποιησάμεθα", "verb", "ἠγᾰθοποιησάμεθᾰ", "ēgăthopoiēsámethă", "", "", "first-person plural aorist"]) + let v = native_list_append(v, ["ἠγαθοποιήσασθε", "verb", "ἠγᾰθοποιήσασθε", "ēgăthopoiḗsasthe", "", "", "second-person plural aorist"]) + let v = native_list_append(v, ["μουσική", "adj", "μουσική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["παιδικός", "adj", "παιδῐκώτερος", "παιδῐκώτᾰτος", "παιδῐκή", "", "Belonging to a"]) + let v = native_list_append(v, ["παιδικά", "adj", "παιδικά", "", "", "", "nominative dual of"]) + let v = native_list_append(v, ["διάβολος", "adj", "δῐᾰβολώτερος", "δῐᾰβολώτᾰτος", "δῐᾰ́βολος", "", "slanderous libellous"]) + let v = native_list_append(v, ["γραμματική", "adj", "γραμματική", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["γαλακτικός", "adj", "γᾰλᾰκτῐκώτερος", "γᾰλᾰκτῐκώτᾰτος", "γᾰλακτῐκή", "", "milk-white"]) + let v = native_list_append(v, ["μικρός", "adj", "μῑκρότερος", "μῑκρότᾰτος", "μῑκρᾱ́", "", "little small"]) + let v = native_list_append(v, ["φιλία", "adj", "φιλία", "", "", "", "inflection of φῐ́λῐος"]) + let v = native_list_append(v, ["ἄλφα", "adj", "ἄλφα", "", "", "", "first"]) + let v = native_list_append(v, ["κύριος", "adj", "κῡρῐώτερος", "κῡρῐώτᾰτος", "κῡρῐ́ᾱ", "", "main major primary"]) + let v = native_list_append(v, ["θεός", "adj", "θεός", "", "", "", "divine used only"]) + let v = native_list_append(v, ["ἅγιος", "adj", "ᾰ̔γῐώτερος", "ᾰ̔γῐώτᾰτος", "ᾰ̔γῐ́ᾱ", "", "devoted to the"]) + let v = native_list_append(v, ["νέος", "adj", "νεώτερος", "νεώτᾰτος", "νέᾱ", "", "young"]) + let v = native_list_append(v, ["ὀλίγος", "adj", "ὀλῐγώτερος", "ὀλῐγώτᾰτος", "ὀλῐ́γη", "", "few little small"]) + let v = native_list_append(v, ["μέγας", "adj", "μείζων", "μέγῐστος", "μεγάλη", "", "big large"]) + let v = native_list_append(v, ["λευκός", "adj", "λευκότερος", "λευκότᾰτος", "λευκή", "", "bright shining gleaming"]) + let v = native_list_append(v, ["ἐρυθρός", "adj", "ἐρῠθρότερος", "ἐρῠθρότᾰτος", "ἐρῠθρᾱ́", "", "reddish red"]) + let v = native_list_append(v, ["χλωρός", "adj", "χλωρότερος", "χλωρότᾰτος", "χλωρᾱ́", "", "greenish-yellow pale green"]) + let v = native_list_append(v, ["νεκρός", "adj", "νεκρότερος", "νεκρότᾰτος", "νεκρᾱ́", "", "dead"]) + let v = native_list_append(v, ["Ἰουδαία", "adj", "Ἰουδαία", "", "", "", "inflection of Ῐ̓ουδαῖος"]) + let v = native_list_append(v, ["ὅλος", "adj", "ὁλώτερος", "ὁλώτᾰτος", "ὅλη", "", "whole entire perfect"]) + let v = native_list_append(v, ["πνευματικός", "adj", "πνευματικότερος", "πνευματικότᾰτος", "πνευμᾰτῐκή", "", "Related to the"]) + let v = native_list_append(v, ["βάρβαρος", "adj", "βᾰρβᾰρώτερος", "βᾰρβᾰρώτᾰτος", "βᾰ́ρβᾰρος", "", "non-Greek-speaking foreign"]) + let v = native_list_append(v, ["ἀναπολόγητος", "adj", "ᾰ̓νᾰπολογητότερος", "ᾰ̓νᾰπολογητότᾰτος", "ᾰ̓νᾰπολόγητος", "", "without excuse or"]) + let v = native_list_append(v, ["ἕτερος", "adj", "ἕτερος", "", "ἑτέρᾱ", "", "one or the"]) + let v = native_list_append(v, ["ἀγαθός", "adj", "βελτῑ́ων", "βέλτῐστος", "ᾰ̓γᾰθή", "", "good brave noble"]) + let v = native_list_append(v, ["κρυπτός", "adj", "κρῠπτότερος", "κρῠπτότᾰτος", "κρῠπτή", "", "concealed hidden secret"]) + let v = native_list_append(v, ["πρωτοτόκος", "adj", "πρωτοτοκώτερος", "πρωτοτοκώτᾰτος", "πρωτοτόκω", "", "having her firstborn"]) + let v = native_list_append(v, ["μάγος", "adj", "μᾰγώτερος", "μᾰγώτᾰτος", "μᾰ́γος", "", "magical"]) + let v = native_list_append(v, ["καθαρός", "adj", "κᾰθᾰρώτερος", "κᾰθᾰρώτᾰτος", "κᾰθᾰρᾱ́", "", "clean clear pure"]) + let v = native_list_append(v, ["ἀρχαῖος", "adj", "ᾰ̓ρχαιότερος", "ᾰ̓ρχαιότᾰτος", "ᾰ̓ρχαία", "", "Pertaining to the"]) + let v = native_list_append(v, ["ταχύ", "adj", "ταχύ", "", "", "", "inflection of τᾰχῠ́ς"]) + let v = native_list_append(v, ["ταχύς", "adj", "θᾱ́ττων", "τᾰ́χῐστος", "τᾰχεῖᾰ", "", "swift quick fast"]) + let v = native_list_append(v, ["βραδύς", "adj", "βρᾰδῠ́τερος", "βρᾰδῠ́τᾰτος", "βρᾰδεῖᾰ", "", "slow"]) + let v = native_list_append(v, ["δεξιός", "adj", "δεξιός", "", "δεξῐᾱ́", "", "right opposite of"]) + let v = native_list_append(v, ["ἀριστερός", "adj", "ἀριστερός", "", "ᾰ̓ρῐστερᾱ́", "", "left opposite of"]) + let v = native_list_append(v, ["κακός", "adj", "κᾰκώτερος", "κᾰ́κῐστος", "κᾰκή", "", "As a measure"]) + let v = native_list_append(v, ["Ἀλεξανδρῖνος", "adj", "Ἀλεξανδρῑνότερος", "Ἀλεξανδρῑνότᾰτος", "Ἀλεξανδρίνη", "", "of Alexandria Alexandrian"]) + let v = native_list_append(v, ["πρῶτος", "adj", "πρῶτος", "πρώτῐστος", "πρώτη", "", "first"]) + let v = native_list_append(v, ["ἔσχατος", "adj", "ἐσχᾰτώτερος", "ἐσχᾰτώτᾰτος", "ἐσχᾰ́τη", "", "At one end"]) + let v = native_list_append(v, ["ἀκάθαρτος", "adj", "ᾰ̓κᾰθᾰρτότερος", "ᾰ̓κᾰθᾰρτότᾰτος", "ᾰ̓κᾰ́θᾰρτος", "", "foul unclean"]) + let v = native_list_append(v, ["ἄλλος", "adj", "ἄλλος", "", "ᾰ̓́λλη", "", "other another different"]) + let v = native_list_append(v, ["μέλας", "adj", "μελᾰ́ντερος", "μελᾰ́ντᾰτος", "μέλαινᾰ", "", "dark in color"]) + let v = native_list_append(v, ["ξένος", "adj", "ξενώτερος", "ξενώτᾰτος", "ξένη", "", "foreign"]) + let v = native_list_append(v, ["ἀγαπητός", "adj", "ᾰ̓γᾰπητότερος", "ᾰ̓γᾰπητότᾰτος", "ᾰ̓γᾰπητή", "", "beloved dear sometimes"]) + let v = native_list_append(v, ["φίλος", "adj", "φῐ́λτερος", "φῐ́λτᾰτος", "φῐ́λη", "", "That which is"]) + let v = native_list_append(v, ["λεπρός", "adj", "λεπρότερος", "λεπρότᾰτος", "λεπρᾱ́", "", "scaly scabby rough"]) + let v = native_list_append(v, ["πολύς", "adj", "πολύς", "", "πολλή", "", "many a lot"]) + let v = native_list_append(v, ["παραλυτικός", "adj", "πᾰρᾰλῠτῐκώτερος", "πᾰρᾰλῠτῐκώτᾰτος", "πᾰρᾰλῠτῐκή", "", "paralyzed"]) + let v = native_list_append(v, ["λογικός", "adj", "λογῐκώτερος", "λογῐκώτᾰτος", "λογῐκή", "", "Belonging to speech"]) + let v = native_list_append(v, ["παλαιός", "adj", "πᾰλαιότερος", "πᾰλαιότᾰτος", "πᾰλαιᾱ́", "", "old aged"]) + let v = native_list_append(v, ["ξηρός", "adj", "ξηρότερος", "ξηρότᾰτος", "ξηρᾱ́", "", "dry"]) + let v = native_list_append(v, ["ὑγιής", "adj", "ῠ̔γῐέστερος", "ῠ̔γῐέστᾰτος", "ῠ̔γῐής", "", "sound healthy hearty"]) + let v = native_list_append(v, ["πρῶτον", "adj", "πρῶτον", "", "", "", "inflection of πρῶτος"]) + let v = native_list_append(v, ["ἀδελφός", "adj", "ᾰ̓δελφότερος", "ᾰ̓δελφότᾰτος", "ᾰ̓δελφή", "", "brotherly or sisterly"]) + let v = native_list_append(v, ["εὐθέως", "adj", "εὐθέως", "", "", "", "inflection of εὐθύς"]) + let v = native_list_append(v, ["ἄκαρπος", "adj", "ᾰ̓κᾰρπότερος", "ᾰ̓κᾰρπότᾰτος", "ᾰ̓́κᾰρπος", "", "without fruit barren"]) + let v = native_list_append(v, ["ὅμοιος", "adj", "ὁμοιότερος", "ὁμοιότᾰτος", "ὁμοία", "", "like resembling with"]) + let v = native_list_append(v, ["μακρός", "adj", "μᾰκρότερος", "μᾰκρότᾰτος", "μᾰκρᾱ́", "", "long"]) + let v = native_list_append(v, ["μόνος", "adj", "μονώτερος", "μονώτᾰτος", "μόνη", "", "alone forsaken solitary"]) + let v = native_list_append(v, ["ὕψιστος", "adj", "ῠ̔ψῐστότερος", "ῠ̔ψῐστότᾰτος", "ῠ̔ψῐ́στη", "", "highest loftiest"]) + let v = native_list_append(v, ["σώφρων", "adj", "σωφρονέστερος", "σωφρονέστᾰτος", "σώφρονε", "", "Of sound mind"]) + let v = native_list_append(v, ["μόνον", "adj", "μόνον", "", "", "", "inflection of μόνος"]) + let v = native_list_append(v, ["ἀδελφή", "adj", "ἀδελφή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἄριστον", "adj", "ἄριστον", "", "", "", "inflection of ἄριστος"]) + let v = native_list_append(v, ["ἴδιος", "adj", "ῐ̓δῐώτερος", "ῐ̓δῐώτᾰτος", "ῐ̓́δῐος", "", "own pertaining specifically"]) + let v = native_list_append(v, ["ἄγριος", "adj", "ᾰ̓γρῐώτερος", "ᾰ̓γρῐώτᾰτος", "ᾰ̓γρῐ́ᾱ", "", "living in the"]) + let v = native_list_append(v, ["μέσος", "adj", "μεσαίτερος", "μεσαίτᾰτος", "μέση", "", "middle of between"]) + let v = native_list_append(v, ["Ἰουδαϊκός", "adj", "Ἰουδαϊκότερος", "Ἰουδαϊκότᾰτος", "Ἰουδαϊκή", "", "Judahite Judaic"]) + let v = native_list_append(v, ["Ἑλληνικός", "adj", "Ἑλληνῐκώτερος", "Ἑλληνῐκώτᾰτος", "Ἑλληνῐκή", "", "Hellenic Greek"]) + let v = native_list_append(v, ["θεομάχος", "adj", "θεομᾰχώτερος", "θεομᾰχώτᾰτος", "θεομᾰ́χος", "", "fighting against God"]) + let v = native_list_append(v, ["ἀλέκτωρ", "adj", "ἀλέκτωρ", "", "ᾰ̓λέκτωρ", "", "unwedded"]) + let v = native_list_append(v, ["εὐχάριστος", "adj", "εὐχᾰρῐστότερος", "εὐχᾰρῐστότᾰτος", "εὐχᾰ́ρῐστος", "", "pleasant agreeable"]) + let v = native_list_append(v, ["ἀβαρής", "adj", "ἀβαρέστερος", "ἀβαρέστᾰτος", "ἀβαρεῖ", "", "without weight weightless"]) + let v = native_list_append(v, ["βαθύς", "adj", "βᾰθῠ́τερος", "βᾰθῠ́τᾰτος", "βᾰθεῖᾰ", "", "being a large"]) + let v = native_list_append(v, ["Ῥωμαϊκός", "adj", "Ῥωμᾰῐ̈κώτερος", "Ῥωμᾰῐ̈κώτᾰτος", "Ῥωμαϊκή", "", "Roman"]) + let v = native_list_append(v, ["Ῥωμαῖος", "adj", "Ῥωμαιότερος", "Ῥωμαιότᾰτος", "Ῥωμαίᾱ", "", "Roman"]) + let v = native_list_append(v, ["πλούσιος", "adj", "πλουσῐώτερος", "πλουσῐώτᾰτος", "πλουσῐ́ᾱ", "", "rich wealthy"]) + let v = native_list_append(v, ["Περσίς", "adj", "Περσίς", "", "Περσῐ́ς", "", "Persian"]) + let v = native_list_append(v, ["ψευδής", "adj", "ψευδέστερος", "ψευδέστᾰτος", "ψευδεῖ", "", "lying false untrue"]) + let v = native_list_append(v, ["καλός", "adj", "κᾰλλῑ́ων", "κᾰ́λλῐστος", "κᾱ̆λή", "", "beautiful lovely"]) + let v = native_list_append(v, ["καλή", "adj", "καλή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["δοῦλος", "adj", "δουλότερος", "δουλότᾰτος", "δούλη", "", "slavish servile subject"]) + let v = native_list_append(v, ["ξανθός", "adj", "ξᾰνθότερος", "ξᾰνθότᾰτος", "ξᾰνθή", "", "yellow of various"]) + let v = native_list_append(v, ["δολοφόνος", "adj", "δολοφονώτερος", "δολοφονώτᾰτος", "δολοφόνω", "", "slaying by treachery"]) + let v = native_list_append(v, ["πολλοί", "adj", "πολλοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ἀπροσδόκητος", "adj", "ἀπροσδοκητότερος", "ἀπροσδοκητότᾰτος", "ᾰ̓προσδόκητος", "", "unexpected"]) + let v = native_list_append(v, ["ἀπροσδόκητον", "adj", "ἀπροσδόκητον", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ἄδικος", "adj", "ᾰ̓δῐκώτερος", "ᾰ̓δῐκώτᾰτος", "ἄδῐκος", "", "unjust"]) + let v = native_list_append(v, ["ἄδικον", "adj", "ἄδικον", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["δίφθογγος", "adj", "δίφθογγος", "", "δῐ́φθογγος", "", "with two sounds"]) + let v = native_list_append(v, ["διφθόγγου", "adj", "διφθόγγου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["δίφθογγον", "adj", "δίφθογγον", "", "", "", "inflection of δῐ́φθογγος"]) + let v = native_list_append(v, ["ἀτελείωτος", "adj", "ἀτελειωτότερος", "ἀτελειωτότᾰτος", "ἀτελειώτω", "", "unfinished"]) + let v = native_list_append(v, ["ἀτελείωτον", "adj", "ἀτελείωτον", "", "", "", "inflection of ἀτελείωτος"]) + let v = native_list_append(v, ["βίαιος", "adj", "βῐαιότερος", "βῐαιότᾰτος", "βῐαίᾱ", "", "forcible violent"]) + let v = native_list_append(v, ["δίκαιος", "adj", "δῐκαιότερος", "δῐκαιότᾰτος", "δῐκαίᾱ", "", "observant of custom"]) + let v = native_list_append(v, ["μάταιος", "adj", "μᾰταιότερος", "μᾰταιότᾰτος", "μᾰταίᾱ", "", "vain futile empty"]) + let v = native_list_append(v, ["μεγάλος", "adj", "μεγάλος", "", "", "", "masculine singular nominative"]) + let v = native_list_append(v, ["νόστιμος", "adj", "νοστῐμώτερος", "νοστῐμώτᾰτος", "νόστῐμος", "", "of or relating"]) + let v = native_list_append(v, ["ξύλινος", "adj", "ξυλῐνώτερος", "ξυλῐνώτᾰτος", "ξῠλῐ́νη", "", "made of wood"]) + let v = native_list_append(v, ["πράσινος", "adj", "πρᾰσῐνώτερος", "πρᾰσῐνώτᾰτος", "πρᾰσίνη", "", "leek green light"]) + let v = native_list_append(v, ["σκοτεινός", "adj", "σκοτεινότερος", "σκοτεινότᾰτος", "σκοτεινή", "", "dark obscure dim"]) + let v = native_list_append(v, ["δυνατός", "adj", "δῠνᾰτώτερος", "δῠνᾰτώτᾰτος", "δῠνᾰτή", "", "strong mighty"]) + let v = native_list_append(v, ["λυτός", "adj", "λῠτώτερος", "λῠτώτᾰτος", "λῠτή", "", "that may be"]) + let v = native_list_append(v, ["πονηρός", "adj", "πονηρότερος", "πονηρότᾰτος", "πονηρᾱ́", "", "oppressed by toils"]) + let v = native_list_append(v, ["σωστός", "adj", "σωστότερος", "σωστότᾰτος", "σωστή", "", "safe"]) + let v = native_list_append(v, ["πλήρης", "adj", "πληρέστερος", "πληρέστᾰτος", "πλήρει", "", "full with genitive"]) + let v = native_list_append(v, ["Φεβρουάριος", "adj", "Φεβρουάριος", "", "Φεβρουαρίᾱ", "", "of or pertaining"]) + let v = native_list_append(v, ["στερεός", "adj", "στερεώτερος", "στερεώτᾰτος", "στερεᾱ́", "", "firm solid rigid"]) + let v = native_list_append(v, ["μικρά", "adj", "μικρά", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["στοχαστικός", "adj", "στοχᾰστῐκώτερος", "στοχᾰστῐκώτᾰτος", "στοχᾰστῐκή", "", "capable of hitting"]) + let v = native_list_append(v, ["κοινός", "adj", "κοινότερος", "κοινότᾰτος", "κοινή", "", "common"]) + let v = native_list_append(v, ["κοινή", "adj", "κοινή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["κοινόν", "adj", "κοινόν", "", "", "", "inflection of κοινός"]) + let v = native_list_append(v, ["στοχαστική", "adj", "στοχαστική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["στοχαστικόν", "adj", "στοχαστικόν", "", "", "", "inflection of στοχαστικός"]) + let v = native_list_append(v, ["μακρόν", "adj", "μακρόν", "", "", "", "inflection of μακρός"]) + let v = native_list_append(v, ["χριστός", "adj", "χρῑστότερος", "χρῑστότᾰτος", "χρῑστή", "", "rubbed smeared coated"]) + let v = native_list_append(v, ["λογιστικός", "adj", "λογῐστῐκώτερος", "λογῐστῐκώτᾰτος", "λογῐστῐκή", "", "reasonable rational"]) + let v = native_list_append(v, ["ἀρκτικός", "adj", "ἀρκτικότερος", "ἀρκτικότᾰτος", "ἀρκτική", "", "having to do"]) + let v = native_list_append(v, ["πιθανός", "adj", "πῐθᾰνώτερος", "πῐθᾰνώτᾰτος", "πῐθᾰνή", "", "persuasive influential winning"]) + let v = native_list_append(v, ["βέβαιος", "adj", "βεβαιότερος", "βεβαιότᾰτος", "βεβαίᾱ", "", "firm steady"]) + let v = native_list_append(v, ["βασιλεία", "adj", "βασιλεία", "", "", "", "inflection of βᾰσῐ́λειος"]) + let v = native_list_append(v, ["ἀτελής", "adj", "ἀτελέστερος", "ἀτελέστᾰτος", "ἀτελεῖ", "", "without end"]) + let v = native_list_append(v, ["ζεστός", "adj", "ζεστότερος", "ζεστότᾰτος", "ζεστή", "", "seethed boiled"]) + let v = native_list_append(v, ["ἥμισυς", "adj", "ἡμῐσῠ́τερος", "ἡμῐσῠ́τᾰτος", "ἡμῐ́σειᾰ", "", "half"]) + let v = native_list_append(v, ["Λακωνικός", "adj", "Λᾰκωνῐκώτερος", "Λᾰκωνῐκώτᾰτος", "Λᾰκωνῐκή", "", "Of or pertaining"]) + let v = native_list_append(v, ["ῥητορικός", "adj", "ῥητορῐκώτερος", "ῥητορῐκώτᾰτος", "ῥητορῐκή", "", "concerning public speaking"]) + let v = native_list_append(v, ["ὅσιος", "adj", "ὁσῐώτερος", "ὁσῐώτᾰτος", "ὁσῐ́ᾱ", "", "pious hallowed sanctioned"]) + let v = native_list_append(v, ["ἄθεος", "adj", "ᾰ̓θεώτερος", "ᾰ̓θεώτᾰτος", "ᾰ̓́θεος", "", "without gods"]) + let v = native_list_append(v, ["ψυχρός", "adj", "ψῡχρότερος", "ψῡχρότᾰτος", "ψῡχρᾱ́", "", "cold frigid"]) + let v = native_list_append(v, ["βαθύτερα", "adj", "βαθύτερα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ψευδολόγος", "adj", "ψευδολογώτερος", "ψευδολογώτᾰτος", "ψευδολόγω", "", "speaking falsely lying"]) + let v = native_list_append(v, ["ἐπιθανάτιος", "adj", "ἐπῐθᾰνᾰτῐώτερος", "ἐπῐθᾰνᾰτῐώτᾰτος", "ἐπῐθᾰνᾰ́τῐος", "", "condemned to death"]) + let v = native_list_append(v, ["ὑβριστικός", "adj", "ῠ̔βρῐστῐκώτερος", "ῠ̔βρῐστῐκώτᾰτος", "ῠ̔βρῐστῐκή", "", "Given to wantonness"]) + let v = native_list_append(v, ["δολιότροπος", "adj", "δολῐοτροπώτερος", "δολῐοτροπώτᾰτος", "δολῐότροπος", "", "crafty"]) + let v = native_list_append(v, ["οἰωνοσκοπικός", "adj", "οἰωνοσκοπῐκώτερος", "οἰωνοσκοπῐκώτᾰτος", "οἰωνοσκοπῐκή", "", "Of or concerning"]) + let v = native_list_append(v, ["πανοῦργος", "adj", "πᾰνουργότερος", "πᾰνουργότᾰτος", "πᾰνοῦργος", "", "literally ready to"]) + let v = native_list_append(v, ["ὀλεθροφόρος", "adj", "ὀλεθροφορώτερος", "ὀλεθροφορώτᾰτος", "ὀλεθροφόρω", "", "bringing destruction"]) + let v = native_list_append(v, ["φονοκτόνος", "adj", "φονοκτονώτερος", "φονοκτονώτᾰτος", "φονοκτόνω", "", "murdering slaughtering"]) + let v = native_list_append(v, ["ἡστικός", "adj", "ἡστῐκώτερος", "ἡστῐκώτᾰτος", "ἡστῐκή", "", "pleasing agreeable"]) + let v = native_list_append(v, ["ταπεινωτικός", "adj", "τᾰπεινωτῐκώτερος", "τᾰπεινωτῐκώτᾰτος", "τᾰπεινωτῐκή", "", "lowering discouraging"]) + let v = native_list_append(v, ["ἡδονόπληκτος", "adj", "ἡδονοπληκτότερος", "ἡδονοπληκτότᾰτος", "ἡδονοπλήκτω", "", "Drunk in enjoyment"]) + let v = native_list_append(v, ["σάρκινος", "adj", "σᾰρκῐνώτερος", "σᾰρκῐνώτᾰτος", "σαρκίνη", "", "Made of flesh"]) + let v = native_list_append(v, ["παράκλητος", "adj", "παράκλητος", "", "πᾰρᾰ́κλητος", "", "called to aid"]) + let v = native_list_append(v, ["ἄγραφος", "adj", "ᾰ̓γρᾰφώτερος", "ᾰ̓γρᾰφώτᾰτος", "ᾰ̓́γρᾰφος", "", "unwritten"]) + let v = native_list_append(v, ["δηλητήριος", "adj", "δηλητηρῐώτερος", "δηλητηρῐώτᾰτος", "δηλητήρῐος", "", "harmful damaging destructive"]) + let v = native_list_append(v, ["δηλητηριώδης", "adj", "δηλητηρῐωδέστερος", "δηλητηρῐωδέστᾰτος", "δηλητήρῐώδης", "", "harmful poisonous noxious"]) + let v = native_list_append(v, ["ὑποχονδριακός", "adj", "ῠ̔ποχονδρῐᾰκώτερος", "ῠ̔ποχονδρῐᾰκώτᾰτος", "ῠ̔ποχονδρῐᾰκή", "", "Of or concerning"]) + let v = native_list_append(v, ["ὑποχόνδριος", "adj", "ῠ̔ποχονδρῐώτερος", "ῠ̔ποχονδρῐώτᾰτος", "ῠ̔ποχόνδρῐος", "", "under the ribs"]) + let v = native_list_append(v, ["σαρδάνιος", "adj", "σαρδανῐώτερος", "σαρδανῐώτᾰτος", "σαρδᾰνίᾱ", "", "scornful bitter grim"]) + let v = native_list_append(v, ["ἀκατάληπτος", "adj", "ᾰ̓κᾰτᾰληπτότερος", "ᾰ̓κᾰτᾰληπτότᾰτος", "ᾰ̓κᾰτᾰ́ληπτος", "", "not to be"]) + let v = native_list_append(v, ["Ἀττικός", "adj", "Ᾰ̓ττῐκώτερος", "Ᾰ̓ττῐκώτᾰτος", "Ᾰ̓ττῐκή", "", "Attic Athenian"]) + let v = native_list_append(v, ["Δωρικός", "adj", "Δωρῐκώτερος", "Δωρῐκώτᾰτος", "Δωρῐκή", "", "Doric Dorian"]) + let v = native_list_append(v, ["ὀξύς", "adj", "ὀξῠ́τερος", "ὀξῠ́τᾰτος", "ὀξεῖᾰ", "", "sharp pointed especially"]) + let v = native_list_append(v, ["ἄβυσσος", "adj", "ἀβυσσότερος", "ἀβυσσότᾰτος", "ἄβῠσσος", "", "bottomless boundless"]) + let v = native_list_append(v, ["σοφός", "adj", "σοφώτερος", "σοφώτᾰτος", "σοφή", "", "clever skillful cunning"]) + let v = native_list_append(v, ["παρθένος", "adj", "παρθένος", "", "παρθένω", "", "maidenly"]) + let v = native_list_append(v, ["παθητικός", "adj", "πᾰθητῐκώτερος", "πᾰθητῐκώτᾰτος", "πᾰθητῐκή", "", "Subject to feeling"]) + let v = native_list_append(v, ["Ἀχαιός", "adj", "Ἀχαιότερος", "Ἀχαιότᾰτος", "Ἀχαιᾱ́", "", "Achaean from the"]) + let v = native_list_append(v, ["Αἰολικός", "adj", "Αἰολῐκώτερος", "Αἰολῐκώτᾰτος", "Αἰολῐκή", "", "Aeolic"]) + let v = native_list_append(v, ["ἀνδρεῖος", "adj", "ᾰ̓νδρειότερος", "ᾰ̓νδρειότᾰτος", "ᾰ̓νδρεία", "", "Of or pertaining"]) + let v = native_list_append(v, ["ἄκρος", "adj", "ᾰ̓κρότερος", "ᾰ̓κρότᾰτος", "ᾰ̓́κρᾱ", "", "at the edge"]) + let v = native_list_append(v, ["σιγμοειδής", "adj", "σιγμοειδής", "", "σῑγμοειδής", "", "shaped like the"]) + let v = native_list_append(v, ["βουκολικός", "adj", "βουκολῐκώτερος", "βουκολῐκώτᾰτος", "βουκολῐκή", "", "rustic pastoral bucolic"]) + let v = native_list_append(v, ["δυναμικός", "adj", "δῠνᾰμῐκώτερος", "δῠνᾰμῐκώτᾰτος", "δῠνᾰμῐκή", "", "able powerful"]) + let v = native_list_append(v, ["Ἑβραῖος", "adj", "Ἑβραιότερος", "Ἑβραιότᾰτος", "Ἑβραίᾱ", "", "Hebrew Israelite"]) + let v = native_list_append(v, ["Μιθριακός", "adj", "Μῐθρῐᾰκώτερος", "Μῐθρῐᾰκώτᾰτος", "Μῐθρῐᾰκή", "", "Of or pertaining"]) + let v = native_list_append(v, ["ἀμφίβιος", "adj", "ᾰ̓μφῐβῐώτερος", "ᾰ̓μφῐβῐώτᾰτος", "ᾰ̓μφῐ́βῐος", "", "Living a dual"]) + let v = native_list_append(v, ["ἀμφίβια", "adj", "ἀμφίβια", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["ἀκέφαλος", "adj", "ᾰ̓κεφᾰλώτερος", "ᾰ̓κεφᾰλώτᾰτος", "ᾰ̓κέφᾰλος", "", "headless"]) + let v = native_list_append(v, ["ἀγκύλος", "adj", "ἀγκῠλώτερος", "ἀγκῠλώτᾰτος", "ἀγκύλη", "", "crooked curved rounded"]) + let v = native_list_append(v, ["ἄδυτον", "adj", "ἄδυτον", "", "", "", "inflection of ἄδυτος"]) + let v = native_list_append(v, ["ἄδυτος", "adj", "ἀδῠτώτερος", "ἀδῠτώτᾰτος", "ἄδῠτος", "", "Not to be"]) + let v = native_list_append(v, ["μονάς", "adj", "μονάς", "", "", "", "alone solitary isolated"]) + let v = native_list_append(v, ["ἰδιώτερος", "adj", "ἰδιώτερος", "", "ῐ̓δῐωτέρᾱ", "", "comparative degree of"]) + let v = native_list_append(v, ["ἰδιώτατος", "adj", "ἰδιώτατος", "", "ῐ̓δῐωτᾰ́τη", "", "superlative degree of"]) + let v = native_list_append(v, ["ἰδία", "adj", "ἰδία", "", "", "", "inflection of ῐ̓́δῐος"]) + let v = native_list_append(v, ["ἴδιον", "adj", "ἴδιον", "", "", "", "inflection of ῐ̓́δῐος"]) + let v = native_list_append(v, ["ἄκρα", "adj", "ἄκρα", "", "", "", "inflection of ᾰ̓́κρος"]) + let v = native_list_append(v, ["σοφή", "adj", "σοφή", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["σοφόν", "adj", "σοφόν", "", "", "", "inflection of σοφός"]) + let v = native_list_append(v, ["συγγενής", "adj", "σῠγγενέστερος", "σῠγγενέστᾰτος", "σῠγγενής", "", "born with congenital"]) + let v = native_list_append(v, ["ἀσεβής", "adj", "ἀσεβέστερος", "ἀσεβέστᾰτος", "ἀσεβεῖ", "", "ungodly godless unholy"]) + let v = native_list_append(v, ["ἄθεοι", "adj", "ἄθεοι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ἀποπληκτικός", "adj", "ᾰ̓ποπληκτῐκώτερος", "ᾰ̓ποπληκτῐκώτᾰτος", "ᾰ̓ποπληκτῐκή", "", "stupefied confused"]) + let v = native_list_append(v, ["ἀπόπληκτος", "adj", "ᾰ̓ποπληκτότερος", "ᾰ̓ποπληκτότᾰτος", "ᾰ̓πόπληκτος", "", "Stricken by a"]) + let v = native_list_append(v, ["κενός", "adj", "κενώτερος", "κενώτᾰτος", "κενή", "", "empty"]) + let v = native_list_append(v, ["ὀνομαστικός", "adj", "ὀνομᾰστῐκώτερος", "ὀνομᾰστῐκώτᾰτος", "ὀνομᾰστῐκή", "", "good at naming"]) + let v = native_list_append(v, ["ὀνομαστικόν", "adj", "ὀνομαστικόν", "", "", "", "inflection of ὀνομᾰστῐκός"]) + let v = native_list_append(v, ["ἀδελφῆς", "adj", "ἀδελφῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["Ἀττική", "adj", "Ἀττική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["Λυκία", "adj", "Λυκία", "", "", "", "inflection of Λύκιος"]) + let v = native_list_append(v, ["Ἀρμενία", "adj", "Ἀρμενία", "", "", "", "inflection of Ἀρμένιος"]) + let v = native_list_append(v, ["Ἐρυθραία", "adj", "Ἐρυθραία", "", "", "", "inflection of Ἐρυθραῖος"]) + let v = native_list_append(v, ["Ἰκαρία", "adj", "Ἰκαρία", "", "", "", "inflection of Ῑ̓κάρῐος"]) + let v = native_list_append(v, ["πάνσοφος", "adj", "πᾰνσοφώτερος", "πᾰνσοφώτᾰτος", "πᾰ́νσοφος", "", "very wise very"]) + let v = native_list_append(v, ["Ἀθηναία", "adj", "Ἀθηναία", "", "", "", "inflection of Ἀθηναῖος"]) + let v = native_list_append(v, ["Βαβυλωνία", "adj", "Βαβυλωνία", "", "", "", "inflection of Βαβυλώνιος"]) + let v = native_list_append(v, ["Κασπία", "adj", "Κασπία", "", "", "", "inflection of Κάσπιος"]) + let v = native_list_append(v, ["ἄγνωστος", "adj", "ᾰ̓γνωστότερος", "ᾰ̓γνωστότᾰτος", "ᾰ̓́γνωστος", "", "unknown unheard of"]) + let v = native_list_append(v, ["χυδαῖος", "adj", "χῠδαιότερος", "χῠδαιότᾰτος", "χῠδαῖος", "", "poured forth copiously"]) + let v = native_list_append(v, ["Ἀργεῖος", "adj", "Ᾰ̓ργειότερος", "Ᾰ̓ργειότᾰτος", "Ᾰ̓ργείᾱ", "", "Argive"]) + let v = native_list_append(v, ["Βακτριανός", "adj", "Βακτριανός", "", "Βακτριᾱνή", "", "Bactrian"]) + let v = native_list_append(v, ["Θεσσαλός", "adj", "Θεσσᾰλώτερος", "Θεσσᾰλώτᾰτος", "Θεσσᾰλή", "", "Thessalian"]) + let v = native_list_append(v, ["Θηβαῖος", "adj", "Θηβαῖος", "", "Θηβαίᾱ", "", "Theban"]) + let v = native_list_append(v, ["ποτέ", "adj", "ποτέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["καλά", "adj", "καλά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["κοντός", "adj", "κοντότερος", "κοντότᾰτος", "κοντή", "", "short"]) + let v = native_list_append(v, ["φίλη", "adj", "φίλη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μέσα", "adj", "μέσα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["κοντά", "adj", "κοντά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ξυνός", "adj", "ξῡνότερος", "ξῡνότᾰτος", "ξῡνή", "", "Ionic form of"]) + let v = native_list_append(v, ["ἀγεωμέτρητος", "adj", "ἀγεωμετρητότερος", "ἀγεωμετρητότᾰτος", "ἀγεωμετρήτω", "", "Ignorant of geometry."]) + let v = native_list_append(v, ["ἁγνός", "adj", "ᾰ̔γνότερος", "ᾰ̔γνότᾰτος", "ᾰ̔γνή", "", "pure chaste"]) + let v = native_list_append(v, ["ἁγνή", "adj", "ἁγνή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἁγνόν", "adj", "ἁγνόν", "", "", "", "inflection of ᾰ̔γνός"]) + let v = native_list_append(v, ["ἁγία", "adj", "ἁγία", "", "", "", "inflection of ᾰ̔́γῐος"]) + let v = native_list_append(v, ["παιδικόν", "adj", "παιδικόν", "", "", "", "inflection of παιδικός"]) + let v = native_list_append(v, ["Ἠλύσιον", "adj", "Ἠλύσιον", "", "", "", "inflection of Ἠλύσιος"]) + let v = native_list_append(v, ["Ἑκαταῖος", "adj", "Ἑκᾰταιότερος", "Ἑκᾰταιότᾰτος", "Ἑκᾰταίᾱ", "", "of Hecate"]) + let v = native_list_append(v, ["φιλόδοξος", "adj", "φῐλοδοξώτερος", "φῐλοδοξώτᾰτος", "φῐλόδοξος", "", "fame loving"]) + let v = native_list_append(v, ["Ἰκάριος", "adj", "Ῑ̓κᾰρῐώτερος", "Ῑ̓κᾰρῐώτᾰτος", "Ῑ̓κᾰρίᾱ", "", "Icarian coming from"]) + let v = native_list_append(v, ["Λακωνική", "adj", "Λακωνική", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["Λατῖνος", "adj", "Λᾰτῑνότερος", "Λᾰτῑνότᾰτος", "Λᾰτῑ́νη", "", "Latin"]) + let v = native_list_append(v, ["φωσφόρος", "adj", "φωσφορώτερος", "φωσφορώτᾰτος", "φωσφόρω", "", "That which brings"]) + let v = native_list_append(v, ["Μεγαρίς", "adj", "Μεγαρίς", "", "Μεγᾰρῐ́ς", "", "pertaining to Megara"]) + let v = native_list_append(v, ["δημοτικός", "adj", "δημοτῐκώτερος", "δημοτῐκώτᾰτος", "δημοτῐκή", "", "of or for"]) + let v = native_list_append(v, ["δημόσιος", "adj", "δημοσῐώτερος", "δημοσῐώτᾰτος", "δημοσῐ́ᾱ", "", "belonging to the"]) + let v = native_list_append(v, ["συνήθης", "adj", "σῠνηθέστερος", "σῠνηθέστᾰτος", "σῠνήθης", "", "habituated accustomed used"]) + let v = native_list_append(v, ["Ὀλύμπια", "adj", "Ὀλύμπια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["Σαρωνικός", "adj", "Σᾰρωνῐκώτερος", "Σᾰρωνῐκώτᾰτος", "Σᾰρωνῐκᾱ́", "", "Saronic"]) + let v = native_list_append(v, ["Σκυθική", "adj", "Σκυθική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["Σήστιος", "adj", "Σηστῐώτερος", "Σηστῐώτᾰτος", "Σηστῐ́ᾱ", "", "of Sestus"]) + let v = native_list_append(v, ["Σίπυλος", "adj", "Σῐπῠλώτερος", "Σῐπῠλώτᾰτος", "Σῐ́πῠλος", "", "Of Sipylus"]) + let v = native_list_append(v, ["Στωϊκός", "adj", "Στωϊκός", "", "Στωϊκή", "", "referring to stoicism"]) + let v = native_list_append(v, ["Τάφιος", "adj", "Τᾰφῐώτερος", "Τᾰφῐώτᾰτος", "Τᾰφῐ́ᾱ", "", "Of Taphus"]) + let v = native_list_append(v, ["ἄλβος", "adj", "ᾰ̓λβότερος", "ᾰ̓λβότᾰτος", "ἄλβα", "", "white"]) + let v = native_list_append(v, ["ὠκύς", "adj", "ὠκῠ́τερος", "ὤκῐστος", "ὠκέᾰ", "", "fast swift quick"]) + let v = native_list_append(v, ["λίθινος", "adj", "λῐθῐνώτερος", "λῐθῐνώτᾰτος", "λῐθίνη", "", "of stone"]) + let v = native_list_append(v, ["Νοέμβριος", "adj", "Νοέμβριος", "", "Νοεμβρίᾱ", "", "of November"]) + let v = native_list_append(v, ["πετεινός", "adj", "πετεινότερος", "πετεινότᾰτος", "πετεινή", "", "fully fledged able"]) + let v = native_list_append(v, ["γενική", "adj", "γενική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["δύσκολος", "adj", "δυσκολώτερος", "δυσκολώτᾰτος", "δυσκόλω", "", "bad-tempered irritable peevish"]) + let v = native_list_append(v, ["νεκροί", "adj", "νεκροί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πλαστός", "adj", "πλᾰστότερος", "πλᾰστότᾰτος", "πλᾰστή", "", "formed moulded in"]) + let v = native_list_append(v, ["κίβδηλος", "adj", "κιβδηλότερος", "κιβδηλότᾰτος", "κιβδήλω", "", "base fake counterfeit"]) + let v = native_list_append(v, ["νόθος", "adj", "νοθώτερος", "νοθώτᾰτος", "νόθη", "", "bastard baseborn born"]) + let v = native_list_append(v, ["Δεκέμβριος", "adj", "Δεκέμβριος", "", "Δεκεμβρίᾱ", "", "of December"]) + let v = native_list_append(v, ["ἱερός", "adj", "ῑ̆̔ερώτερος", "ῑ̆̔ερώτᾰτος", "ῑ̆̔ερᾱ́", "", "connected with the"]) + let v = native_list_append(v, ["μερικοί", "adj", "μερικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["σύζυγος", "adj", "σῠζῠγώτερος", "σῠζῠγώτᾰτος", "σύζῠγος", "", "yoked together paired"]) + let v = native_list_append(v, ["κίτρινος", "adj", "κῐτρῐνώτερος", "κῐτρῐνώτᾰτος", "κῐτρῐ́νη", "", "of the citron"]) + let v = native_list_append(v, ["παράλληλος", "adj", "πᾰρᾰλληλότερος", "πᾰρᾰλληλότᾰτος", "πᾰρᾰ́λληλος", "", "beside one another"]) + let v = native_list_append(v, ["ὀρθός", "adj", "ὀρθότερος", "ὀρθότᾰτος", "ὀρθή", "", "straight upright standing"]) + let v = native_list_append(v, ["βαρύς", "adj", "βᾰρῠ́τερος", "βᾰρῠ́τᾰτος", "βᾰρεῖᾰ", "", "heavy weighty"]) + let v = native_list_append(v, ["Σεπτέμβριος", "adj", "Σεπτέμβριος", "", "Σεπτεμβρίᾱ", "", "of September"]) + let v = native_list_append(v, ["μουσικός", "adj", "μουσῐκώτερος", "μουσῐκώτᾰτος", "μουσῐκή", "", "of or for"]) + let v = native_list_append(v, ["κλητική", "adj", "κλητική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πολύπλοκος", "adj", "πολῠπλοκώτερος", "πολῠπλοκώτᾰτος", "πολῠ́πλοκος", "", "much-tangled thick-wreathed with"]) + let v = native_list_append(v, ["διαφανής", "adj", "δῐᾰφᾰνέστερος", "δῐᾰφᾰνέστᾰτος", "δῐᾰφᾰνής", "", "diaphanous translucent transparent"]) + let v = native_list_append(v, ["τελεία", "adj", "τελεία", "", "", "", "inflection of τέλειος"]) + let v = native_list_append(v, ["πέμπτη", "adj", "πέμπτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πέμπτος", "adj", "πέμπτος", "", "πέμπτη", "", "fifth"]) + let v = native_list_append(v, ["σπάνιος", "adj", "σπᾰνῐώτερος", "σπᾰνῐώτᾰτος", "σπᾰνῐ́ᾱ", "", "rare uncommon"]) + let v = native_list_append(v, ["Γραικός", "adj", "Γραικότερος", "Γραικότᾰτος", "Γραική", "", "Greek"]) + let v = native_list_append(v, ["σαρκοφάγος", "adj", "σᾰρκοφᾰγώτερος", "σᾰρκοφᾰγώτᾰτος", "σᾰρκοφᾰ́γος", "", "flesh-eating carnivorous"]) + let v = native_list_append(v, ["γυμνός", "adj", "γῠμνότερος", "γῠμνότᾰτος", "γυμνή", "", "naked nude unclad"]) + let v = native_list_append(v, ["παλίμψηστος", "adj", "πᾰλῐμψηστότερος", "πᾰλῐμψηστότᾰτος", "πᾰλῐ́μψηστος", "", "scratched or scraped"]) + let v = native_list_append(v, ["περιπατητικός", "adj", "περιπατητικός", "", "περῐπᾰτητῐκή", "", "Given to walking"]) + let v = native_list_append(v, ["περιπατητικοί", "adj", "περιπατητικοί", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["δίδυμος", "adj", "δῐδῠμώτερος", "δῐδῠμώτᾰτος", "δῐδῠ́μη", "", "double twofold"]) + let v = native_list_append(v, ["διχότομος", "adj", "δῐχοτομώτερος", "δῐχοτομώτᾰτος", "δῐχότομος", "", "cut in half"]) + let v = native_list_append(v, ["ἀοιδή", "adj", "ἀοιδή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἀοιδός", "adj", "ᾰ̓οιδότερος", "ᾰ̓οιδότᾰτος", "ᾰ̓οιδή", "", "musical"]) + let v = native_list_append(v, ["βραχίων", "adj", "βραχίων", "", "βρᾰχίων", "", "comparative degree of"]) + let v = native_list_append(v, ["νομικός", "adj", "νομῐκώτερος", "νομῐκώτᾰτος", "νομῐκή", "", "relating to laws"]) + let v = native_list_append(v, ["νόμιμος", "adj", "νομῐμώτερος", "νομῐμώτᾰτος", "νομίμη", "", "conformable to custom"]) + let v = native_list_append(v, ["στεγνός", "adj", "στεγνότερος", "στεγνότᾰτος", "στεγνή", "", "watertight waterproof"]) + let v = native_list_append(v, ["ὁμόγραφος", "adj", "ὁμογρᾰφώτερος", "ὁμογρᾰφώτᾰτος", "ὁμόγρᾰφος", "", "Written with the"]) + let v = native_list_append(v, ["θηλυκός", "adj", "θηλῠκώτερος", "θηλῠκώτᾰτος", "θηλῠκή", "", "womanlike womanly feminine"]) + let v = native_list_append(v, ["κυκλικός", "adj", "κῠκλῐκώτερος", "κῠκλῐκώτᾰτος", "κυκλῐκή", "", "circular"]) + let v = native_list_append(v, ["κάθετος", "adj", "κᾰθετώτερος", "κᾰθετώτᾰτος", "κᾰ́θετος", "", "having been let"]) + let v = native_list_append(v, ["ἄκμων", "adj", "ᾰ̓κμονέστερος", "ᾰ̓κμονέστᾰτος", "ᾰ̓́κμων", "", "tireless"]) + let v = native_list_append(v, ["πρόοδος", "adj", "προοδώτερος", "προοδώτᾰτος", "προόδω", "", "going before"]) + let v = native_list_append(v, ["βελτίων", "adj", "βελτίων", "", "βελτῑ́ων", "", "comparative degree of"]) + let v = native_list_append(v, ["πολύσπαστον", "adj", "πολύσπαστον", "", "", "", "inflection of πολυσπαστός"]) + let v = native_list_append(v, ["φαλός", "adj", "φᾰλώτερος", "φᾰλώτᾰτος", "φᾰλή", "", "white"]) + let v = native_list_append(v, ["παχύς", "adj", "πᾰχῠ́τερος", "πᾰχῠ́τᾰτος", "πᾰχεῖᾰ", "", "thick large stout"]) + let v = native_list_append(v, ["ψιλός", "adj", "ψῑλότερος", "ψῑλότᾰτος", "ψῑλή", "", "naked bare"]) + let v = native_list_append(v, ["συνώνυμος", "adj", "σῠνωνῠμώτερος", "σῠνωνῠμώτᾰτος", "σῠνώνῠμος", "", "Having the same"]) + let v = native_list_append(v, ["συνώνυμον", "adj", "συνώνυμον", "", "", "", "masculine singular accusative"]) + let v = native_list_append(v, ["δύσπεπτος", "adj", "δῠσπεπτότερος", "δῠσπεπτότᾰτος", "δῠ́σπεπτος", "", "Difficult to digest"]) + let v = native_list_append(v, ["πολύσημος", "adj", "πολῠσημότερος", "πολῠσημότᾰτος", "πολῠ́σημος", "", "signifying many things"]) + let v = native_list_append(v, ["μαντεία", "adj", "μαντεία", "", "", "", "inflection of μαντεῖος"]) + let v = native_list_append(v, ["κεφάλαιος", "adj", "κεφᾰλαιότερος", "κεφᾰλαιότᾰτος", "κεφᾰλαίᾱ", "", "main chief principal"]) + let v = native_list_append(v, ["κεφάλαιον", "adj", "κεφάλαιον", "", "", "", "inflection of κεφᾰ́λαιος"]) + let v = native_list_append(v, ["χυτός", "adj", "χῠτώτερος", "χῠτώτᾰτος", "χῠτή", "", "poured shed"]) + let v = native_list_append(v, ["δριμύς", "adj", "δρῑμῠ́τερος", "δρῑμῠ́τᾰτος", "δρῑμεῖᾰ", "", "sharp piercing cutting"]) + let v = native_list_append(v, ["τοπογράφος", "adj", "τοπογρᾰφώτερος", "τοπογρᾰφώτᾰτος", "τοπογρᾰ́φος", "", "describing a place"]) + let v = native_list_append(v, ["κριτικός", "adj", "κρῐτῐκώτερος", "κρῐτῐκώτᾰτος", "κρῐτῐκή", "", "Able to judge"]) + let v = native_list_append(v, ["κακοδαίμων", "adj", "κᾰκοδαιμονέστερος", "κᾰκοδαιμονέστᾰτος", "κᾰκοδαίμων", "", "having or being"]) + let v = native_list_append(v, ["νηφάλιος", "adj", "νηφᾰλῐώτερος", "νηφᾰλῐώτᾰτος", "νηφαλία", "", "sober not inebriated"]) + let v = native_list_append(v, ["ἀμαυρός", "adj", "ᾰ̓μαυρότερος", "ᾰ̓μαυρότᾰτος", "ᾰ̓μαυρᾱ́", "", "barely seen dim"]) + let v = native_list_append(v, ["μαυρός", "adj", "μαυρότερος", "μαυρότᾰτος", "μαυρώ", "", "dark dusky"]) + let v = native_list_append(v, ["κεραός", "adj", "κεραός", "", "κερᾰᾱ́", "", "horned"]) + let v = native_list_append(v, ["φωτεινός", "adj", "φωτεινός", "", "φωτεινή", "", "shining bright of"]) + let v = native_list_append(v, ["καλώ", "adj", "καλώ", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["φαλακρός", "adj", "φαλακρότερος", "φαλακρότᾰτος", "φᾰλᾰκρᾱ́", "", "bald"]) + let v = native_list_append(v, ["πολυμαθής", "adj", "πολυμαθέστερος", "πολυμαθέστᾰτος", "πολυμαθεῖ", "", "Having learnt much"]) + let v = native_list_append(v, ["παιδαγωγικός", "adj", "παιδᾰγωγῐκώτερος", "παιδᾰγωγῐκώτᾰτος", "παιδᾰγωγῐκή", "", "pertaining to teaching"]) + let v = native_list_append(v, ["ἄπορος", "adj", "ἀπορώτερος", "ἀπορώτᾰτος", "ἀπόρω", "", "without passage impassable"]) + let v = native_list_append(v, ["ἔνδημος", "adj", "ἐνδημότερος", "ἐνδημότᾰτος", "ἐνδήμω", "", "among ones people"]) + let v = native_list_append(v, ["ἐπιφανής", "adj", "ἐπῐφᾰνέστερος", "ἐπῐφᾰνέστᾰτος", "ἐπῐφᾰνής", "", "appearing coming to"]) + let v = native_list_append(v, ["ὀπτός", "adj", "ὀπτότερος", "ὀπτότᾰτος", "ὀπτή", "", "roasted broiled boiled"]) + let v = native_list_append(v, ["τραγανός", "adj", "τρᾰγᾰνώτερος", "τρᾰγᾰνώτᾰτος", "τρᾰγᾰνή", "", "edible"]) + let v = native_list_append(v, ["πιστός", "adj", "πῐστότερος", "πῐστότᾰτος", "πῐστή", "", "faithful trusty"]) + let v = native_list_append(v, ["πιστοί", "adj", "πιστοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ὀρφανός", "adj", "ὀρφᾰνώτερος", "ὀρφᾰνώτᾰτος", "ὀρφᾰνή", "", "left orphan without"]) + let v = native_list_append(v, ["παθικός", "adj", "πᾰθῐκώτερος", "πᾰθῐκώτᾰτος", "πᾰθῐκός", "", "Remaining passive."]) + let v = native_list_append(v, ["πλατεία", "adj", "πλατεία", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["λήθαργος", "adj", "ληθᾱργότερος", "ληθᾱργότᾰτος", "λήθᾱργος", "", "forgetful"]) + let v = native_list_append(v, ["καθαροί", "adj", "καθαροί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μελισσοκόμος", "adj", "μελῐσσοκομώτερος", "μελῐσσοκομώτᾰτος", "μελῐσσοκόμος", "", "keeping bees"]) + let v = native_list_append(v, ["δολιχός", "adj", "δολῐχώτερος", "δολῐχώτᾰτος", "δολῐχή", "", "long"]) + let v = native_list_append(v, ["θῆλυς", "adj", "θηλῠ́τερος", "θηλῠ́τᾰτος", "θήλειᾰ", "", "female"]) + let v = native_list_append(v, ["ἐλεύθερος", "adj", "ἐλευθερώτερος", "ἐλευθερώτᾰτος", "ἐλευθέρᾱ", "", "free"]) + let v = native_list_append(v, ["ἴσος", "adj", "ῐ̓σαίτερος", "ῐ̓σαίτᾰτος", "ῐ̓́ση", "", "equal to equivalent"]) + let v = native_list_append(v, ["κοινά", "adj", "κοινά", "", "", "", "feminine nominative dual"]) + let v = native_list_append(v, ["ἐπίχαρτος", "adj", "ἐπῐχᾰρτότερος", "ἐπῐχᾰρτότᾰτος", "ἐπῐ́χᾰρτος", "", "feeling joy being"]) + let v = native_list_append(v, ["χθαμαλός", "adj", "χθᾰμᾰλώτερος", "χθᾰμᾰλώτᾰτος", "χθᾰμᾰλή", "", "low near the"]) + let v = native_list_append(v, ["νέου", "adj", "νέου", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["νέα", "adj", "νέα", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["νέοι", "adj", "νέοι", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["νέων", "adj", "νέων", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["νέους", "adj", "νέους", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["νέας", "adj", "νέας", "", "", "", "accusative plural feminine"]) + let v = native_list_append(v, ["νέε", "adj", "νέε", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["μαρμάρεος", "adj", "μαρμαρεώτερος", "μαρμαρεώτᾰτος", "μαρμᾰρέᾱ", "", "flashing sparkling gleaming"]) + let v = native_list_append(v, ["αὐτόματος", "adj", "αὐτομᾰτώτερος", "αὐτομᾰτώτᾰτος", "αὐτομᾰ́τη", "", "self-willed unbidden"]) + let v = native_list_append(v, ["πελιτνός", "adj", "πελιτνότερος", "πελιτνότᾰτος", "πελιτνή", "", "livid pallid blue"]) + let v = native_list_append(v, ["ἀδηφάγος", "adj", "ἀδηφάγος", "", "ᾰ̓δηφᾰ́γος", "", "gluttonous greedy"]) + let v = native_list_append(v, ["πρότερος", "adj", "πρότερος", "", "προτέρᾱ", "", "before in front"]) + let v = native_list_append(v, ["πρᾶος", "adj", "πρᾱότερος", "πρᾱότᾰτος", "πρᾱεῖᾰ", "", "soft gentle"]) + let v = native_list_append(v, ["πέταλον", "adj", "πέταλον", "", "", "", "inflection of πέταλος"]) + let v = native_list_append(v, ["πέταλος", "adj", "πετᾰλώτερος", "πετᾰλώτᾰτος", "πετάλη", "", "broad flat"]) + let v = native_list_append(v, ["ἀδευκής", "adj", "ἀδευκέστερος", "ἀδευκέστᾰτος", "ἀδευκεῖ", "", "meaning uncertain perhaps"]) + let v = native_list_append(v, ["ἐπίκουρος", "adj", "ἐπικουρότερος", "ἐπικουρότᾰτος", "ἐπικούρω", "", "assisting aiding"]) + let v = native_list_append(v, ["χέρσος", "adj", "χερσότερος", "χερσότᾰτος", "χέρσω", "", "dry firm"]) + let v = native_list_append(v, ["φαιδρός", "adj", "φαιδρός", "", "φαίδρα", "", "bright beaming"]) + let v = native_list_append(v, ["μέρμερος", "adj", "μερμερώτερος", "μερμερώτᾰτος", "μερμέρω", "", "mischievous baneful"]) + let v = native_list_append(v, ["τηΰσιος", "adj", "τηϋσῐώτερος", "τηϋσῐώτᾰτος", "τηϋσῐ́ᾱ", "", "idle vain undertaken"]) + let v = native_list_append(v, ["ἕνος", "adj", "ἑνώτερος", "ἑνώτᾰτος", "ἕνη", "", "belonging to the"]) + let v = native_list_append(v, ["ἡδύς", "adj", "ἡδῑ́ων", "ἥδῐστος", "ἡδεῖᾰ", "", "pleasant to the"]) + let v = native_list_append(v, ["οἶος", "adj", "οἶος", "", "οἴᾱ", "", "only single"]) + let v = native_list_append(v, ["αἴτιος", "adj", "αἰτῐώτερος", "αἰτῐώτᾰτος", "αἰτῐ́ᾱ", "", "causing being the"]) + let v = native_list_append(v, ["ἀλύδοιμος", "adj", "ἀλυδοιμότερος", "ἀλυδοιμότᾰτος", "ἀλυδοίμω", "", "bitter"]) + let v = native_list_append(v, ["πικρός", "adj", "πῐκρότερος", "πῐκρότᾰτος", "πῐκρᾱ́", "", "pointed sharp keen"]) + let v = native_list_append(v, ["ὠμός", "adj", "ὠμότερος", "ὠμότᾰτος", "ὠμή", "", "raw crude undressed"]) + let v = native_list_append(v, ["κραιπνός", "adj", "κραιπνότερος", "κραιπνότᾰτος", "κραιπνή", "", "rapid rushing"]) + let v = native_list_append(v, ["ἐλαχύς", "adj", "ἐλάσσων", "ἐλᾰ́χιστος", "ἐλᾰ́χειᾰ", "", "small short mean"]) + let v = native_list_append(v, ["λυγρός", "adj", "λυγρότερος", "λυγρότᾰτος", "λῠγρᾱ́", "", "sore baneful mournful"]) + let v = native_list_append(v, ["γέρων", "adj", "γέρων", "", "γέροντε", "", "old"]) + let v = native_list_append(v, ["λεία", "adj", "λεία", "", "", "", "inflection of λεῖος"]) + let v = native_list_append(v, ["μείων", "adj", "μείων", "", "μείονε", "", "less"]) + let v = native_list_append(v, ["βραχύς", "adj", "βρᾰχῠ́τερος", "βρᾰχῠ́τᾰτος", "βρᾰχεῖᾰ", "", "short brief"]) + let v = native_list_append(v, ["ψυχρόν", "adj", "ψυχρόν", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["τετράπους", "adj", "τετράπους", "", "τετρᾰ́πους", "", "four-footed quadrupedal"]) + let v = native_list_append(v, ["λαιός", "adj", "λαιότερος", "λαιότᾰτος", "λαιᾱ́", "", "left opposite of"]) + let v = native_list_append(v, ["ἄσβεστος", "adj", "ἀσβεστότερος", "ἀσβεστότᾰτος", "ἀσβέστη", "", "unquenchable inextinguishable"]) + let v = native_list_append(v, ["πραγματικός", "adj", "πρᾱγμᾰτῐκώτερος", "πρᾱγμᾰτῐκώτᾰτος", "πρᾱγμᾰτῐκή", "", "fit for action"]) + let v = native_list_append(v, ["βασιλικός", "adj", "βᾰσῐλῐκώτερος", "βᾰσῐλῐκώτᾰτος", "βᾰσῐλῐκή", "", "royal kingly regal"]) + let v = native_list_append(v, ["ἕσπερος", "adj", "ἑσπερώτερος", "ἑσπερώτᾰτος", "ἑσπέρω", "", "of or at"]) + let v = native_list_append(v, ["λόγια", "adj", "λόγια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["προβληματικός", "adj", "προβλημᾰτῐκώτερος", "προβλημᾰτῐκώτᾰτος", "προβλημᾰτῐκή", "", "of or for"]) + let v = native_list_append(v, ["κοινωνικός", "adj", "κοινωνικός", "", "", "", "held in common"]) + let v = native_list_append(v, ["παραλία", "adj", "παραλία", "", "", "", "inflection of παράλιος"]) + let v = native_list_append(v, ["μισθοφόρος", "adj", "μισθοφορώτερος", "μισθοφορώτᾰτος", "μισθοφόρω", "", "receiving wages or"]) + let v = native_list_append(v, ["λεπτός", "adj", "λεπτότερος", "λεπτότᾰτος", "λεπτή", "", "peeled husked of"]) + let v = native_list_append(v, ["νεοδαμώδης", "adj", "νεοδᾱμωδέστερος", "νεοδᾱμωδέστᾰτος", "νεοδᾱμώδης", "", "An emancipated helot"]) + let v = native_list_append(v, ["φυσική", "adj", "φυσική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["φυτόν", "adj", "φυτόν", "", "", "", "inflection of φῠτός"]) + let v = native_list_append(v, ["βέβαια", "adj", "βέβαια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["φυσικά", "adj", "φυσικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ταναός", "adj", "τᾰνᾰώτερος", "τᾰνᾰώτᾰτος", "τᾰνᾰή", "", "outstretched long tall"]) + let v = native_list_append(v, ["ἄσκιος", "adj", "ᾰ̓σκῐώτερος", "ᾰ̓σκῐώτᾰτος", "ἀσκίᾱ", "", "shadowless"]) + let v = native_list_append(v, ["ἰός", "adj", "ῐ̓ώτερος", "ῐ̓ώτᾰτος", "ῐ̓́ᾰ", "", "selfsame identical"]) + let v = native_list_append(v, ["πλάγιος", "adj", "πλᾰγῐώτερος", "πλᾰγῐώτᾰτος", "πλᾰγίᾱ", "", "placed sideways slanting"]) + let v = native_list_append(v, ["θεμέλιος", "adj", "θεμελῐώτερος", "θεμελῐώτᾰτος", "θεμέλῐος", "", "belonging to the"]) + let v = native_list_append(v, ["δροόν", "adj", "δροόν", "", "", "", "Hesychius gives the"]) + let v = native_list_append(v, ["ναρκωτικός", "adj", "ναρκωτῐκώτερος", "ναρκωτῐκώτᾰτος", "ναρκωτῐκή", "", "making stiff or"]) + let v = native_list_append(v, ["σιμός", "adj", "σῑμότερος", "σῑμότᾰτος", "σῑμή", "", "snub-nosed flat nosed"]) + let v = native_list_append(v, ["πικρόχολος", "adj", "πῐκροχολώτερος", "πῐκροχολώτᾰτος", "πῐκρόχολος", "", "full of bitter"]) + let v = native_list_append(v, ["ἀμφαρίστερος", "adj", "ἀμφαρίστερος", "", "ᾰ̓μφᾰρῐ́στερος", "", "having two left"]) + let v = native_list_append(v, ["λογική", "adj", "λογική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μυστικός", "adj", "μῠστῐκώτερος", "μῠστῐκώτᾰτος", "μῠστῐκή", "", "secret mystic"]) + let v = native_list_append(v, ["στρογγύλος", "adj", "στρογγῠλώτερος", "στρογγῠλώτᾰτος", "στρογγῠ́λη", "", "spherical round"]) + let v = native_list_append(v, ["στρογγύλη", "adj", "στρογγύλη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἐπίσκοπος", "adj", "ἐπῐσκοπώτερος", "ἐπῐσκοπώτᾰτος", "ἐπῐ́σκοπος", "", "hitting the mark"]) + let v = native_list_append(v, ["λεξικόν", "adj", "λεξικόν", "", "", "", "inflection of λεξῐκός"]) + let v = native_list_append(v, ["λεξικός", "adj", "λεξῐκώτερος", "λεξῐκώτᾰτος", "λεξῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["ἔτυμος", "adj", "ἐτῠμώτερος", "ἐτῠμώτᾰτος", "ἐτύμη", "", "true real sure"]) + let v = native_list_append(v, ["ἔτυμον", "adj", "ἔτυμον", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["πειθός", "adj", "πειθότερος", "πειθότᾰτος", "πειθή", "", "persuasive"]) + let v = native_list_append(v, ["φιλόσοφος", "adj", "φῐλοσοφώτερος", "φῐλοσοφώτᾰτος", "φῐλόσοφος", "", "scientific"]) + let v = native_list_append(v, ["θερμός", "adj", "θερμότερος", "θερμότᾰτος", "θερμή", "", "warm hot boiling"]) + let v = native_list_append(v, ["νεκρά", "adj", "νεκρά", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["γραφικός", "adj", "γρᾰφῐκώτερος", "γρᾰφῐκώτᾰτος", "γρᾰφῐκή", "", "pertaining to writing"]) + let v = native_list_append(v, ["καταγέλαστος", "adj", "κᾰτᾰγελᾰστότερος", "κᾰτᾰγελᾰστότᾰτος", "κᾰτᾰγέλᾰστος", "", "ridiculous absurd"]) + let v = native_list_append(v, ["ῥιζικός", "adj", "ῥῐζῐκώτερος", "ῥῐζῐκώτᾰτος", "ῥῐζῐκή", "", "of or belonging"]) + let v = native_list_append(v, ["ῥιζικόν", "adj", "ῥιζικόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["καλοί", "adj", "καλοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["καλούς", "adj", "καλούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["καλέ", "adj", "καλέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὀκτώπους", "adj", "ὀκτώπους", "", "ὀκτώποδε", "", "eight-footed"]) + let v = native_list_append(v, ["Ἑλλήνιος", "adj", "Ἑλληνῐώτερος", "Ἑλληνῐώτᾰτος", "Ἑλληνῐ́ᾱ", "", "Greek generally used"]) + let v = native_list_append(v, ["συνεργός", "adj", "σῠνεργότερος", "σῠνεργότᾰτος", "σῠνεργός", "", "working together joining"]) + let v = native_list_append(v, ["φορά", "adj", "φορά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["γενικός", "adj", "γενῐκώτερος", "γενῐκώτᾰτος", "γενῐκή", "", "of or belonging"]) + let v = native_list_append(v, ["μάσσων", "adj", "μάσσων", "", "μᾰ́σσων", "", "comparative degree of"]) + let v = native_list_append(v, ["τολμηρός", "adj", "τολμηρότερος", "τολμηρότᾰτος", "τολμηρᾱ́", "", "daring bold"]) + let v = native_list_append(v, ["λεωφόρος", "adj", "λεωφορώτερος", "λεωφορώτᾰτος", "λεωφόρω", "", "busy full of"]) + let v = native_list_append(v, ["νυμφόληπτος", "adj", "νῠμφοληπτότερος", "νῠμφοληπτότᾰτος", "νῠμφόληπτος", "", "taken by nymphs"]) + let v = native_list_append(v, ["κομψός", "adj", "κομψότερος", "κομψότᾰτος", "κομψή", "", "nice refined elegant"]) + let v = native_list_append(v, ["μωρός", "adj", "μωρότερος", "μωρότᾰτος", "μωρᾱ́", "", "slow sluggish"]) + let v = native_list_append(v, ["τραχεία", "adj", "τραχεία", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἀγωγός", "adj", "ᾰ̓γωγότερος", "", "ᾰ̓γωγός", "", "leading guiding"]) + let v = native_list_append(v, ["ἱερόν", "adj", "ἱερόν", "", "", "", "inflection of ῑ̆̔ερός"]) + let v = native_list_append(v, ["ξενία", "adj", "ξενία", "", "", "", "inflection of ξένῐος"]) + let v = native_list_append(v, ["ἵλαος", "adj", "ῑ̔λαότερος", "ῑ̔λαότᾰτος", "ῑ̔́λαος", "", "propitious gracious merciful"]) + let v = native_list_append(v, ["ἱλαρός", "adj", "ἱλᾰρώτερος", "ἱλᾰρώτᾰτος", "ἱλᾰρᾱ́", "", "cheerful merry joyous"]) + let v = native_list_append(v, ["ἑτερώνυμος", "adj", "ἑτερώνυμος", "ἑτερωνῠμώτᾰτος", "ἑτερώνῠμος", "", "with a different"]) + let v = native_list_append(v, ["πότερος", "adj", "πότερος", "", "ποτέρᾱ", "", "which of the"]) + let v = native_list_append(v, ["ἐνηλύσιος", "adj", "ἐνηλύσιος", "ἐνηλυσιότᾰτος", "ἐνηλῠ́σῐος", "", "struck by a"]) + let v = native_list_append(v, ["ἐνηλύσιον", "adj", "ἐνηλύσιον", "", "", "", "inflection of ἐνηλύσιος"]) + let v = native_list_append(v, ["τύραννος", "adj", "τῠρᾰννότερος", "τῠρᾰννότᾰτος", "τῠ́ρᾰννος", "", "kingly royal regal"]) + let v = native_list_append(v, ["δέκατος", "adj", "δεκᾰτώτερος", "δεκᾰτώτᾰτος", "δεκᾰ́τη", "", "tenth ordinal number"]) + let v = native_list_append(v, ["ῥαιβός", "adj", "ῥαιβότερος", "ῥαιβότᾰτος", "ῥαιβή", "", "crooked bent"]) + let v = native_list_append(v, ["νέον", "adj", "νέον", "", "", "", "inflection of νέος"]) + let v = native_list_append(v, ["σχέδιος", "adj", "σχεδιότερος", "σχεδιότᾰτος", "σχεδίᾱ", "", "near close"]) + let v = native_list_append(v, ["τροχοειδής", "adj", "τροχοειδέστερος", "τροχοειδέστᾰτος", "τροχοειδεῖ", "", "round circular"]) + let v = native_list_append(v, ["μαδαρός", "adj", "μαδαρότερος", "μαδαρότᾰτος", "μᾰδᾰρᾱ́", "", "moist wet"]) + let v = native_list_append(v, ["μέση", "adj", "μέση", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τίμιος", "adj", "τῑμῐώτερος", "τῑμῐώτᾰτος", "τῑ́μῐος", "", "honorable worthy"]) + let v = native_list_append(v, ["γηγενής", "adj", "γηγενής", "γηγενέστᾰτος", "γηγενεῖ", "", "born of the"]) + let v = native_list_append(v, ["μαθηματικά", "adj", "μαθηματικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["σκελετός", "adj", "σκελετώτερος", "σκελετώτᾰτος", "σκελετή", "", "dried up withered"]) + let v = native_list_append(v, ["ἰδίω", "adj", "ἰδίω", "", "", "", "masculine/feminine/neuter nominative/accusative/vocative dua"]) + let v = native_list_append(v, ["μεθοδικός", "adj", "μεθοδῐκώτερος", "μεθοδῐκώτᾰτος", "μεθοδῐκή", "", "going to work"]) + let v = native_list_append(v, ["νωδός", "adj", "νωδότερος", "νωδότᾰτος", "νωδή", "", "toothless"]) + let v = native_list_append(v, ["ἀνανταπόδοτος", "adj", "ᾰ̓νᾰντᾰποδοτώτερος", "ᾰ̓νᾰντᾰποδοτώτᾰτος", "ᾰ̓ναντᾰπόδοτος", "", "without apodosis being"]) + let v = native_list_append(v, ["ἀνανταπόδοτον", "adj", "ἀνανταπόδοτον", "", "", "", "inflection of ᾰ̓ναντᾰπόδοτος"]) + let v = native_list_append(v, ["ἀναπόδοτον", "adj", "ἀναπόδοτον", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἄρσην", "adj", "ᾰ̓ρσέντερος", "ᾰ̓ρσέντᾰτος", "ᾰ̓́ρσην", "", "male"]) + let v = native_list_append(v, ["δεινός", "adj", "δεινότερος", "δεινότᾰτος", "δεινή", "", "terrible horrible fearful"]) + let v = native_list_append(v, ["τριήρης", "adj", "τρῐηρέστερος", "τρῐηρέστᾰτος", "τρῐήρης", "", "having three storeys"]) + let v = native_list_append(v, ["καινός", "adj", "καινότερος", "καινότᾰτος", "καινή", "", "new novel recent"]) + let v = native_list_append(v, ["ἐπώνυμος", "adj", "ἐπωνῠμώτερος", "ἐπωνῠμώτᾰτος", "ἐπώνῠμος", "", "named in a"]) + let v = native_list_append(v, ["θεία", "adj", "θεία", "", "", "", "inflection of θεῖος"]) + let v = native_list_append(v, ["κοσμογράφος", "adj", "κοσμογρᾰφώτερος", "κοσμογρᾰφώτᾰτος", "κοσμογρᾰ́φος", "", "describing the world"]) + let v = native_list_append(v, ["ἀπόκρυφος", "adj", "ἀποκρῠφώτερος", "ἀποκρῠφώτᾰτος", "ἀπόκρῠφος", "", "hidden concealed secret"]) + let v = native_list_append(v, ["μακεδνός", "adj", "μᾰκεδνότερος", "μᾰκεδνότᾰτος", "μᾰκεδνή", "", "tall taper"]) + let v = native_list_append(v, ["ἀσθενής", "adj", "ᾰ̓σθενέστερος", "ᾰ̓σθενέστᾰτος", "ᾰ̓σθενής", "", "without strength weak"]) + let v = native_list_append(v, ["γεωργός", "adj", "γεωργότερος", "γεωργότᾰτος", "γεωργώ", "", "tilling the ground"]) + let v = native_list_append(v, ["λογικά", "adj", "λογικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["Ἀρμένιος", "adj", "Ἀρμενιότερος", "Ἀρμενιότᾰτος", "Ἀρμενίᾱ", "", "Armenian"]) + let v = native_list_append(v, ["λευγαλέος", "adj", "λευγᾰλεώτερος", "λευγᾰλεώτᾰτος", "λευγᾰλέᾱ", "", "sad wretched"]) + let v = native_list_append(v, ["ῥᾴδιος", "adj", "ῥᾴων", "ῥᾷστος", "ῥᾳδῐ́ᾱ", "", "easy easy to"]) + let v = native_list_append(v, ["τρίγωνον", "adj", "τρίγωνον", "", "", "", "inflection of τρίγωνος"]) + let v = native_list_append(v, ["θετικός", "adj", "θετῐκώτερος", "θετῐκώτᾰτος", "θετῐκή", "", "fit for placing"]) + let v = native_list_append(v, ["πλατύς", "adj", "πλᾰτῠ́τερος", "πλᾰτῠ́τᾰτος", "πλᾰτεῖᾰ", "", "wide broad"]) + let v = native_list_append(v, ["ἀσκηθής", "adj", "ἀσκηθέστερος", "ἀσκηθέστᾰτος", "ἀσκηθεῖ", "", "unhurt unscathed sound"]) + let v = native_list_append(v, ["σφιγκτός", "adj", "σφῐγκτότερος", "σφῐγκτότᾰτος", "σφῐγκτή", "", "tightly bound"]) + let v = native_list_append(v, ["πλατείας", "adj", "πλατείας", "", "", "", "inflection of πλᾰτῠ́ς"]) + let v = native_list_append(v, ["σοῦ", "adj", "σοῦ", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["ζητητικός", "adj", "ζητητῐκώτερος", "ζητητῐκώτᾰτος", "ζητητῐκή", "", "disposed to searching"]) + let v = native_list_append(v, ["τραχύς", "adj", "τρᾱχῠ́τερος", "τρᾱχῠ́τᾰτος", "τρᾱχεῖᾰ", "", "jagged"]) + let v = native_list_append(v, ["καρδιακός", "adj", "κᾰρδῐᾰκώτερος", "κᾰρδῐᾰκώτᾰτος", "κᾰρδῐᾰκή", "", "concerning the heart"]) + let v = native_list_append(v, ["οἰκουμενικός", "adj", "οἰκουμενῐκώτερος", "οἰκουμενῐκώτᾰτος", "οἰκουμενῐκή", "", "from or open"]) + let v = native_list_append(v, ["κόκκινος", "adj", "κοκκῐνώτερος", "κοκκῐνώτᾰτος", "κοκκίνη", "", "scarlet blushing"]) + let v = native_list_append(v, ["θανατικός", "adj", "θᾰνᾰτῐκώτερος", "θᾰνᾰτῐκώτᾰτος", "θᾰνᾰτῐκή", "", "deadly fatal"]) + let v = native_list_append(v, ["κεραμική", "adj", "κεραμική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μανιακός", "adj", "μανιακότερος", "μανιακότᾰτος", "μανιακή", "", "causing insanity"]) + let v = native_list_append(v, ["βαρεία", "adj", "βαρεία", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["θαυμάσιος", "adj", "θαυμᾰσῐώτερος", "θαυμᾰσῐώτᾰτος", "θαυμᾰσῐ́ᾱ", "", "wonderful wonderly"]) + let v = native_list_append(v, ["μέτριος", "adj", "μετρῐώτερος", "μετρῐώτᾰτος", "μετρίᾱ", "", "moderate average mean"]) + let v = native_list_append(v, ["κυκλική", "adj", "κυκλική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ψηφοφόρος", "adj", "ψηφοφόρος", "", "ψηφοφόρω", "", "giving ones vote"]) + let v = native_list_append(v, ["συγγενικός", "adj", "σῠγγενῐκώτερος", "σῠγγενῐκώτᾰτος", "σῠγγενῐκή", "", "congenital or hereditary"]) + let v = native_list_append(v, ["ἀπών", "adj", "ἀπών", "", "ἀποῦσᾰ", "", "absent"]) + let v = native_list_append(v, ["δρακόντειος", "adj", "δρᾰκοντειότερος", "δρᾰκοντειότᾰτος", "δρᾰκόντειος", "", "alternative spelling of"]) + let v = native_list_append(v, ["καμπύλη", "adj", "καμπύλη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μηχανικός", "adj", "μηχανικότερος", "μηχανικότᾰτος", "μηχᾰνῐκή", "", "ingenious resourceful"]) + let v = native_list_append(v, ["πατρικός", "adj", "πατρῐκώτερος", "πατρῐκώτᾰτος", "πατρῐκή", "", "hereditary inherited"]) + let v = native_list_append(v, ["οὐτιδανός", "adj", "οὐτῐδᾰνώτερος", "οὐτῐδᾰνώτᾰτος", "ουτῐδᾰνή", "", "worthless of no"]) + let v = native_list_append(v, ["πευκεδνής", "adj", "πευκεδνέστερος", "πευκεδνέστᾰτος", "πευκεδνεῖ", "", "of pine or"]) + let v = native_list_append(v, ["μηκεδανός", "adj", "μηκεδᾰνώτερος", "μηκεδᾰνώτᾰτος", "μηκεδᾰνή", "", "long tall taper"]) + let v = native_list_append(v, ["πελιδνός", "adj", "πελιδνότερος", "πελιδνότᾰτος", "πελιδνή", "", "livid pallid blue"]) + let v = native_list_append(v, ["ἀϊδνός", "adj", "ἀϊδνότερος", "ἀϊδνότᾰτος", "ἀϊδνή", "", "unseen obscure"]) + let v = native_list_append(v, ["ἀκιδνός", "adj", "ἀκιδνότερος", "ἀκιδνότᾰτος", "ἀκιδνή", "", "weak feeble"]) + let v = native_list_append(v, ["σπιδνός", "adj", "σπῐδνότερος", "σπῐδνότᾰτος", "σπῐδνή", "", "dense solid holding"]) + let v = native_list_append(v, ["κεδνός", "adj", "κεδνότερος", "κεδνότᾰτος", "κεδνή", "", "careful diligent trusty"]) + let v = native_list_append(v, ["κυδνός", "adj", "κῡδνότερος", "κῡδνότᾰτος", "κῡδνή", "", "glorious honored"]) + let v = native_list_append(v, ["σμερδνός", "adj", "σμερδνότερος", "σμερδνότᾰτος", "σμερδνή", "", "terrible dreadful"]) + let v = native_list_append(v, ["ψυδνός", "adj", "ψυδνότερος", "ψυδνότᾰτος", "ψυδνή", "", "alternative form of"]) + let v = native_list_append(v, ["ὀπιδνός", "adj", "ὀπιδνότερος", "ὀπιδνότᾰτος", "ὀπιδνή", "", "dreadful respectful"]) + let v = native_list_append(v, ["παιδνός", "adj", "παιδνότερος", "παιδνότᾰτος", "παιδνή", "", "young or possibly"]) + let v = native_list_append(v, ["ἀλαπαδνός", "adj", "ᾰ̓λᾰπᾰδνότερος", "ᾰ̓λᾰπᾰδνότᾰτος", "ἀλᾰπαδνή", "", "easily exhausted i.e."]) + let v = native_list_append(v, ["ἀδνός", "adj", "ἀδνότερος", "ἀδνότᾰτος", "ἀδνή", "", "Cretan Doric form"]) + let v = native_list_append(v, ["γοεδνός", "adj", "γοεδνότερος", "γοεδνότᾰτος", "γοεδνή", "", "lamenting mournful distressful"]) + let v = native_list_append(v, ["ψεδνός", "adj", "ψεδνότερος", "ψεδνότᾰτος", "ψεδνή", "", "thin spare scanty"]) + let v = native_list_append(v, ["ὀλοφυδνός", "adj", "ὀλοφυδνότερος", "ὀλοφυδνότᾰτος", "ὀλοφυδνή", "", "lamenting doleful"]) + let v = native_list_append(v, ["δήμιος", "adj", "δημῐώτερος", "δημῐώτᾰτος", "δήμῐος", "", "public belonging to"]) + let v = native_list_append(v, ["πρακτικά", "adj", "πρακτικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πατροκτόνος", "adj", "πατροκτονώτερος", "πατροκτονώτᾰτος", "πατροκτόνω", "", "of or pertaining"]) + let v = native_list_append(v, ["εὔσκιος", "adj", "εὐσκῐώτερος", "εὐσκῐώτᾰτος", "εὔσκῐος", "", "well-shaded"]) + let v = native_list_append(v, ["ἐπιτήδειος", "adj", "ἐπῐτηδειότερος", "ἐπῐτηδειότᾰτος", "ἐπῐτηδείᾱ", "", "fit suitable"]) + let v = native_list_append(v, ["πλατεῖα", "adj", "πλατεῖα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἀνυπόδητος", "adj", "ᾰ̓νῠποδητότερος", "ᾰ̓νῠποδητότᾰτος", "ᾰ̓νῠπόδητος", "", "Without shoes barefoot"]) + let v = native_list_append(v, ["ἀνυπόδητον", "adj", "ἀνυπόδητον", "", "", "", "singular nominative neuter"]) + let v = native_list_append(v, ["λογία", "adj", "λογία", "", "", "", "inflection of λόγιος"]) + let v = native_list_append(v, ["νεαρός", "adj", "νεαρότερος", "νεαρότᾰτος", "νεᾰρᾱ́", "", "young youthful"]) + let v = native_list_append(v, ["γραπτός", "adj", "γραπτότερος", "γραπτότᾰτος", "γραπτή", "", "painted"]) + let v = native_list_append(v, ["γίγαντας", "adj", "γίγαντας", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["συχνός", "adj", "σῠχνότερος", "σῠχνότᾰτος", "σῠχνή", "", "long wearisome"]) + let v = native_list_append(v, ["δημοκρατικός", "adj", "δημοκρᾰτῐκώτερος", "δημοκρᾰτῐκώτᾰτος", "δημοκρᾰτῐκή", "", "of or for"]) + let v = native_list_append(v, ["ὑπέρφρων", "adj", "ῠ̔περφρονέστερος", "ῠ̔περφρονέστᾰτος", "ῠ̔πέρφρων", "", "proud haughty"]) + let v = native_list_append(v, ["ἀργός", "adj", "ᾰ̓ργότερος", "ᾰ̓ργότᾰτος", "ᾰ̓ργή", "", "shining glistening white"]) + let v = native_list_append(v, ["πρακτικός", "adj", "πρᾱκτῐκώτερος", "πρᾱκτῐκώτᾰτος", "πρᾱκτῐκή", "", "Of pertaining to"]) + let v = native_list_append(v, ["μονόλιθος", "adj", "μονολῐθώτερος", "μονολῐθώτᾰτος", "μονόλῐθος", "", "made of one"]) + let v = native_list_append(v, ["σκληρός", "adj", "σκληρότερος", "σκληρότᾰτος", "σκληρά", "", "hard"]) + let v = native_list_append(v, ["ἄγνωτος", "adj", "ᾰ̓γνωτότερος", "ᾰ̓γνωτότᾰτος", "ᾰ̓́γνωτος", "", "unknown unheard of"]) + let v = native_list_append(v, ["τεχνητός", "adj", "τεχνητότερος", "τεχνητότᾰτος", "τεχνητή", "", "artificial"]) + let v = native_list_append(v, ["κυνικός", "adj", "κῠνῐκώτερος", "κῠνῐκώτᾰτος", "κῠνῐκή", "", "doglike"]) + let v = native_list_append(v, ["ὁμός", "adj", "ὁμός", "ὁμώτᾰτος", "ὁμή", "", "same common joint"]) + let v = native_list_append(v, ["φυσικός", "adj", "φῠσῐκώτερος", "φῠσῐκώτᾰτος", "φῠσῐκή", "", "natural produced or"]) + let v = native_list_append(v, ["εὔφημος", "adj", "εὐφημότερος", "εὐφημότᾰτος", "εὐφήμω", "", "uttering sound of"]) + let v = native_list_append(v, ["κληρικός", "adj", "κληρῐκώτερος", "κληρῐκώτᾰτος", "κληρῐκή", "", "concerning inheritances"]) + let v = native_list_append(v, ["ἄξιος", "adj", "ᾰ̓ξῐώτερος", "ᾰ̓ξῐώτᾰτος", "ᾰ̓ξῐ́ᾱ", "", "counterbalancing weighing as"]) + let v = native_list_append(v, ["παράκαιρος", "adj", "πᾰρᾰκαιρότερος", "πᾰρᾰκαιρότᾰτος", "πᾰρᾰ́καιρος", "", "Ill-timed."]) + let v = native_list_append(v, ["τροπικός", "adj", "τροπῐκώτερος", "τροπῐκώτᾰτος", "τροπῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["σκεπτικός", "adj", "σκεπτῐκώτερος", "σκεπτῐκώτᾰτος", "σκεπτῐκή", "", "thoughtful inquiring"]) + let v = native_list_append(v, ["ἀληθής", "adj", "ᾰ̓ληθέστερος", "ᾰ̓ληθέστᾰτος", "ᾰ̓ληθής", "", "true real genuine"]) + let v = native_list_append(v, ["ἠθικός", "adj", "ἠθῐκώτερος", "ἠθῐκώτᾰτος", "ἠθῐκή", "", "relating to character"]) + let v = native_list_append(v, ["τέταρτος", "adj", "τέταρτος", "", "τετᾰ́ρτη", "", "fourth"]) + let v = native_list_append(v, ["σεμνός", "adj", "σεμνότερος", "σεμνότᾰτος", "σεμνή", "", "revered august holy"]) + let v = native_list_append(v, ["παράνομος", "adj", "πᾰρᾰνομώτερος", "πᾰρᾰνομώτᾰτος", "πᾰρᾰ́νομος", "", "acting contrary to"]) + let v = native_list_append(v, ["ἔσχατον", "adj", "ἔσχατον", "", "", "", "inflection of ἔσχᾰτος"]) + let v = native_list_append(v, ["θεῖος", "adj", "θειότερος", "θειότᾰτος", "θείᾱ", "", "of or from"]) + let v = native_list_append(v, ["ναυτικός", "adj", "ναυτῐκώτερος", "ναυτῐκώτᾰτος", "ναυτῐκή", "", "seafaring naval on"]) + let v = native_list_append(v, ["πολυμήχανος", "adj", "πολῠμηχᾰνώτερος", "πολῠμηχᾰνώτᾰτος", "πολῠμήχᾰνος", "", "cunning crafty"]) + let v = native_list_append(v, ["πολεμικός", "adj", "πολεμῐκώτερος", "πολεμῐκώτᾰτος", "πολεμῐκή", "", "warlike bellicose"]) + let v = native_list_append(v, ["ἀκαρής", "adj", "ἀκαρέστερος", "ἀκαρέστᾰτος", "ἀκαρεῖ", "", "too short to"]) + let v = native_list_append(v, ["σύμπαν", "adj", "σύμπαν", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["πρωτόγονος", "adj", "πρωτογονώτερος", "πρωτογονώτᾰτος", "πρωτόγονη", "", "first-born first-created"]) + let v = native_list_append(v, ["λιτός", "adj", "λῑτότερος", "λῑτότᾰτος", "λῑτή", "", "simple plain"]) + let v = native_list_append(v, ["δενδρίτης", "adj", "δενδρίτης", "", "δενδρῖτις", "", "of trees arboreal"]) + let v = native_list_append(v, ["συμμετρικός", "adj", "συμμετρικός", "", "συμμετρῐκή", "", "of moderate size"]) + let v = native_list_append(v, ["φιλόλογος", "adj", "φιλολογώτερος", "φιλολογώτᾰτος", "φῐλόλογος", "", "that loves to"]) + let v = native_list_append(v, ["δῆλος", "adj", "δηλότερος", "δηλότᾰτος", "δήλη", "", "visible"]) + let v = native_list_append(v, ["τρόφιμος", "adj", "τροφῐμώτερος", "τροφῐμώτᾰτος", "τρόφῐμος", "", "nourishing"]) + let v = native_list_append(v, ["γυμναστική", "adj", "γυμναστική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["εὔφορος", "adj", "εὐφορώτερος", "εὐφορώτᾰτος", "εὐφόρω", "", "bearing well"]) + let v = native_list_append(v, ["χρηστός", "adj", "χρηστότερος", "χρηστότᾰτος", "χρηστή", "", "good useful"]) + let v = native_list_append(v, ["πονηρή", "adj", "πονηρή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πονηροί", "adj", "πονηροί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πονηρά", "adj", "πονηρά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πονηρούς", "adj", "πονηρούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πονηρέ", "adj", "πονηρέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πολύ", "adj", "πολύ", "", "", "", "inflection of πολῠ́ς"]) + let v = native_list_append(v, ["τέλειος", "adj", "τελεώτερος", "τελεώτατος", "τελείᾱ", "", "having reached its"]) + let v = native_list_append(v, ["βαθύ", "adj", "βαθύ", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["βαθύτερος", "adj", "βαθύτερος", "", "βᾰθῠτέρᾱ", "", "comparative degree of"]) + let v = native_list_append(v, ["ἄτομος", "adj", "ἀτομώτερος", "ἀτομώτᾰτος", "ἀτόμω", "", "uncut"]) + let v = native_list_append(v, ["βασιλική", "adj", "βασιλική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τελικός", "adj", "τελῐκώτερος", "τελῐκώτᾰτος", "τελῐκή", "", "pertaining to the"]) + let v = native_list_append(v, ["ἄμυλον", "adj", "ἄμυλον", "", "", "", "inflection of ἄμυλος"]) + let v = native_list_append(v, ["σοβαρός", "adj", "σοβᾰρώτερος", "σοβᾰρώτᾰτος", "σοβᾰρᾱ́", "", "rushing violent"]) + let v = native_list_append(v, ["καθολικός", "adj", "κᾰθολῐκώτερος", "κᾰθολῐκώτᾰτος", "κᾰθολῐκή", "", "general"]) + let v = native_list_append(v, ["πολιτικός", "adj", "πολῑτῐκώτερος", "πολῑτῐκώτᾰτος", "πολῑτῐκή", "", "civic constitutional public"]) + let v = native_list_append(v, ["διπλάσιος", "adj", "δῐπλᾰσῐώτερος", "δῐπλᾰσῐώτᾰτος", "δῐπλᾰσῐ́ᾱ", "", "double twofold"]) + let v = native_list_append(v, ["τρίτος", "adj", "τρίτος", "", "τρῐ́τη", "", "third"]) + let v = native_list_append(v, ["πρώτη", "adj", "πρώτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["κυρία", "adj", "κυρία", "", "", "", "inflection of κῡ́ρῐος"]) + let v = native_list_append(v, ["δωδέκατος", "adj", "δωδεκᾰτώτερος", "δωδεκᾰτώτᾰτος", "δωδεκάτη", "", "twelfth"]) + let v = native_list_append(v, ["μοναχός", "adj", "μονᾰχώτερος", "μονᾰχώτᾰτος", "μονᾰχή", "", "solitary single"]) + let v = native_list_append(v, ["συναπτός", "adj", "σῠνᾰπτότερος", "σῠνᾰπτότᾰτος", "σῠνᾰπτός", "", "joined together continuous"]) + let v = native_list_append(v, ["ἐγκέφαλος", "adj", "ἐγκεφᾰλώτερος", "ἐγκεφᾰλώτᾰτος", "ἐγκέφᾰλος", "", "inside the head"]) + let v = native_list_append(v, ["κακή", "adj", "κακή", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["χλιαρός", "adj", "χλῐᾰρώτερος", "χλῐᾰρώτᾰτος", "χλῐᾰρᾱ́", "", "lukewarm tepid"]) + let v = native_list_append(v, ["μαγικός", "adj", "μᾰγῐκώτερος", "μᾰγῐκώτᾰτος", "μᾰγῐκή", "", "magical"]) + let v = native_list_append(v, ["μετρητός", "adj", "μετρητότερος", "μετρητότᾰτος", "μετρητή", "", "measurable"]) + let v = native_list_append(v, ["κωφός", "adj", "κωφότερος", "κωφότᾰτος", "κωφή", "", "blunt dull obtuse"]) + let v = native_list_append(v, ["πολύπους", "adj", "πολύπους", "", "πολύποδε", "", "many-footed"]) + let v = native_list_append(v, ["ἠθμοειδής", "adj", "ἠθμοειδέστερος", "ἠθμοειδέστᾰτος", "ἠθμοειδεῖ", "", "like a strainer"]) + let v = native_list_append(v, ["τεχνική", "adj", "τεχνική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["κακούς", "adj", "κακούς", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["ἄτοπος", "adj", "ἀτοπώτερος", "ἀτοπώτᾰτος", "ἀτόπω", "", "unusual out of"]) + let v = native_list_append(v, ["ὀπτικός", "adj", "ὀπτῐκώτερος", "ὀπτῐκώτᾰτος", "ὀπτῐκή", "", "optic optical visual"]) + let v = native_list_append(v, ["κοινοί", "adj", "κοινοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["σταθερός", "adj", "στᾰθερώτερος", "στᾰθερώτᾰτος", "στᾰθερᾱ́", "", "standing fast firm"]) + let v = native_list_append(v, ["τυφλός", "adj", "τῠφλότερος", "τῠφλότᾰτος", "τῠφλή", "", "blind"]) + let v = native_list_append(v, ["πολλή", "adj", "πολλή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πολλά", "adj", "πολλά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πολλούς", "adj", "πολλούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["δεσποτικός", "adj", "δεσποτῐκώτερος", "δεσποτῐκώτᾰτος", "δεσποτῐκή", "", "pertaining to ones"]) + let v = native_list_append(v, ["μονότονος", "adj", "μονοτονώτερος", "μονοτονώτᾰτος", "μονοτόνω", "", "of one tone"]) + let v = native_list_append(v, ["διαγνωστικός", "adj", "δῐᾰγνωστῐκώτερος", "δῐᾰγνωστῐκώτᾰτος", "δῐαγνωστῐκή", "", "able to distinguish"]) + let v = native_list_append(v, ["ἀξία", "adj", "ἀξία", "", "", "", "inflection of ἄξιος"]) + let v = native_list_append(v, ["κυρτός", "adj", "κῠρτότερος", "κῠρτότᾰτος", "κῠρτή", "", "bulging swelling"]) + let v = native_list_append(v, ["τρίπους", "adj", "τρίπους", "", "τρῐ́πους", "", "measuring three feet"]) + let v = native_list_append(v, ["ἔνθεος", "adj", "ἐνθεώτερος", "ἐνθεώτᾰτος", "ἐνθέω", "", "having a god"]) + let v = native_list_append(v, ["ποικίλος", "adj", "ποικῐλώτερος", "ποικῐλώτᾰτος", "ποικῐ́λη", "", "pied dappled worked"]) + let v = native_list_append(v, ["αὐστηρός", "adj", "αὐστηρότερος", "αὐστηρότᾰτος", "αὐστηρᾱ́", "", "astringent lending to"]) + let v = native_list_append(v, ["ἐρωτικός", "adj", "ἐρωτῐκώτερος", "ἐρωτῐκώτᾰτος", "ἐρωτῐκή", "", "related to love"]) + let v = native_list_append(v, ["βοτανική", "adj", "βοτανική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["λευκή", "adj", "λευκή", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["λευκά", "adj", "λευκά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["λευκοί", "adj", "λευκοί", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["λευκούς", "adj", "λευκούς", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["λευκέ", "adj", "λευκέ", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["τεκτονική", "adj", "τεκτονική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πεζός", "adj", "πεζώτερος", "πεζώτᾰτος", "πεζή", "", "on foot walking"]) + let v = native_list_append(v, ["ἀκαδημικός", "adj", "ἀκαδημικότερος", "ἀκαδημικότᾰτος", "ἀκᾰδημῐκή", "", "relating to the"]) + let v = native_list_append(v, ["εἰδητικός", "adj", "εἰδητῐκώτερος", "εἰδητῐκώτᾰτος", "εἰδητῐκή", "", "constituting an εἶδος"]) + let v = native_list_append(v, ["συνδρόμου", "adj", "συνδρόμου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["συνδρόμων", "adj", "συνδρόμων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["σύνδρομα", "adj", "σύνδρομα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["τεχνικός", "adj", "τεχνῐκώτερος", "τεχνῐκώτᾰτος", "τεχνῐκή", "", "artistic skillful workmanlike"]) + let v = native_list_append(v, ["ναυτικά", "adj", "ναυτικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ναυτική", "adj", "ναυτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["Φεβρουαρίου", "adj", "Φεβρουαρίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["Φεβρουάριε", "adj", "Φεβρουάριε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["Σεπτεμβρίου", "adj", "Σεπτεμβρίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["Σεπτέμβριε", "adj", "Σεπτέμβριε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["Νοεμβρίου", "adj", "Νοεμβρίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["Δεκεμβρίου", "adj", "Δεκεμβρίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["Δεκέμβριε", "adj", "Δεκέμβριε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["παραλίας", "adj", "παραλίας", "", "", "", "inflection of παράλιος"]) + let v = native_list_append(v, ["τραχείας", "adj", "τραχείας", "", "", "", "inflection of τρᾱχύς"]) + let v = native_list_append(v, ["δημοτική", "adj", "δημοτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πόσος", "adj", "ποσώτερος", "ποσώτᾰτος", "πόση", "", "interrogative adjective of"]) + let v = native_list_append(v, ["θαυμαστός", "adj", "θαυμᾰστότερος", "θαυμᾰστότᾰτος", "θαυμᾰστή", "", "wonderful marvellous"]) + let v = native_list_append(v, ["ἀήθης", "adj", "ᾰ̓ηθέστερος", "ᾰ̓ηθέστᾰτος", "ᾰ̓ήθης", "", "unusual strange"]) + let v = native_list_append(v, ["ἀκροατικός", "adj", "ἀκροᾱτῐκώτερος", "ἀκροᾱτῐκώτᾰτος", "ἀκροᾱτῐκή", "", "of or for"]) + let v = native_list_append(v, ["ἀνάπαιστος", "adj", "ᾰ̓νᾰπαιστότερος", "ᾰ̓νᾰπαιστότᾰτος", "ᾰ̓νᾰ́παιστος", "", "struck back rebounding"]) + let v = native_list_append(v, ["ἀνδρόγυνος", "adj", "ᾰ̓νδρογῠνώτερος", "ᾰ̓νδρογῠνώτᾰτος", "ᾰ̓νδρόγῠνος", "", "common to men"]) + let v = native_list_append(v, ["ἄντοικος", "adj", "ᾰ̓ντοικότερος", "ᾰ̓ντοικότᾰτος", "ᾰ̓́ντοικος", "", "living in the"]) + let v = native_list_append(v, ["ἄντοικοι", "adj", "ἄντοικοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ἀπαθής", "adj", "ᾰ̓πᾰθέστερος", "ᾰ̓πᾰθέστᾰτος", "ᾰ̓πᾰθής", "", "without sensation or"]) + let v = native_list_append(v, ["ἄπους", "adj", "ἄπους", "", "ᾰ̓́πους", "", "without feet footless"]) + let v = native_list_append(v, ["ἀνοικτός", "adj", "ᾰ̓νοικτότερος", "ᾰ̓νοικτότᾰτος", "ᾰ̓νοικτή", "", "opened open not"]) + let v = native_list_append(v, ["ἄνοικτος", "adj", "ᾰ̓νοικτότερος", "ᾰ̓νοικτότᾰτος", "ᾰ̓́νοικτος", "", "pitiless ruthless"]) + let v = native_list_append(v, ["κάτοικος", "adj", "κατοικότερος", "κατοικότᾰτος", "κατοίκη", "", "in the house"]) + let v = native_list_append(v, ["ἀδάμας", "adj", "ἀδάμας", "", "ἀδάμᾱς", "", "fixed unalterable"]) + let v = native_list_append(v, ["μέσης", "adj", "μέσης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["διακριτικός", "adj", "δῐᾰκρῐτῐκώτερος", "δῐᾰκρῐτῐκώτᾰτος", "δῐακρῐτῐκή", "", "penetrating piercing"]) + let v = native_list_append(v, ["δημώδης", "adj", "δημωδέστερος", "δημωδέστᾰτος", "δημώδει", "", "of the people"]) + let v = native_list_append(v, ["ψίθυρος", "adj", "ψίθυρος", "", "ψῐ́θῠρος", "", "whispering slanderous"]) + let v = native_list_append(v, ["φιλοσοφικός", "adj", "φῐλοσοφῐκώτερος", "φῐλοσοφῐκώτᾰτος", "φῐλοσοφῐκή", "", "philosophical"]) + let v = native_list_append(v, ["σταδίου", "adj", "σταδίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["σταδίων", "adj", "σταδίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["στάδια", "adj", "στάδια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["σταδία", "adj", "σταδία", "", "", "", "inflection of στάδιος"]) + let v = native_list_append(v, ["χάλκινος", "adj", "χᾰλκῐνώτερος", "χᾰλκῐνώτᾰτος", "χᾰλκῐ́νη", "", "bronze made of"]) + let v = native_list_append(v, ["ψηφοφόρου", "adj", "ψηφοφόρου", "", "", "", "genitive singular masculine/feminine/neuter"]) + let v = native_list_append(v, ["ψηφοφόρε", "adj", "ψηφοφόρε", "", "", "", "vocative singular masculine/feminine"]) + let v = native_list_append(v, ["ψηφοφόροι", "adj", "ψηφοφόροι", "", "", "", "nominative/vocative plural masculine/feminine"]) + let v = native_list_append(v, ["ψηφοφόρων", "adj", "ψηφοφόρων", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["ψηφοφόρους", "adj", "ψηφοφόρους", "", "", "", "accusative plural masculine/feminine"]) + let v = native_list_append(v, ["κόλον", "adj", "κόλον", "", "", "", "inflection of κόλος"]) + let v = native_list_append(v, ["μαλακός", "adj", "μᾰλᾰκώτερος", "μᾰλᾰκώτᾰτος", "μᾰλᾰκή", "", "soft tender"]) + let v = native_list_append(v, ["μαλακά", "adj", "μαλακά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["μαλακή", "adj", "μαλακή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μαλακοί", "adj", "μαλακοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τυραννικός", "adj", "τῠρᾰννῐκώτερος", "τῠρᾰννῐκώτᾰτος", "τῠρᾰννῐκή", "", "of or for"]) + let v = native_list_append(v, ["καλλίπυγος", "adj", "κᾰλλῐπῡγότερος", "κᾰλλῐπῡγότᾰτος", "κᾰλλῐ́πῡγος", "", "callipygian callipygous with"]) + let v = native_list_append(v, ["διδύμου", "adj", "διδύμου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["διδύμων", "adj", "διδύμων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["διδύμους", "adj", "διδύμους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["δίδυμοι", "adj", "δίδυμοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δίδυμε", "adj", "δίδυμε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["θείας", "adj", "θείας", "", "", "", "inflection of θεῖος"]) + let v = native_list_append(v, ["θείων", "adj", "θείων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["φθινοπωρινός", "adj", "φθινοπωρινός", "", "φθῐνοπωρινή", "", "autumnal"]) + let v = native_list_append(v, ["βόρειος", "adj", "βορειότερος", "βορειότᾰτος", "βορείᾱ", "", "northern from the"]) + let v = native_list_append(v, ["χειρουργική", "adj", "χειρουργική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["στεγανός", "adj", "στεγᾰνώτερος", "στεγᾰνώτᾰτος", "στεγᾰνή", "", "watertight waterproof"]) + let v = native_list_append(v, ["χιλιοστός", "adj", "χιλιοστός", "", "χῑλιοστή", "", "thousandth"]) + let v = native_list_append(v, ["χρόνια", "adj", "χρόνια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἑτερογενής", "adj", "ἑτερογενέστερος", "ἑτερογενέστᾰτος", "ἑτερογενεῖ", "", "heterogenous of different"]) + let v = native_list_append(v, ["ὁμογενής", "adj", "ὁμογενέστερος", "ὁμογενέστᾰτος", "ὁμογενεῖ", "", "of the same"]) + let v = native_list_append(v, ["μεγάλου", "adj", "μεγάλου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["μεγάλης", "adj", "μεγάλης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["μεγάλη", "adj", "μεγάλη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μεγάλε", "adj", "μεγάλε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["μεγάλα", "adj", "μεγάλα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μεγάλων", "adj", "μεγάλων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["μεγάλοι", "adj", "μεγάλοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μεγάλους", "adj", "μεγάλους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μόνου", "adj", "μόνου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["μόνη", "adj", "μόνη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μόνης", "adj", "μόνης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["μόνοι", "adj", "μόνοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μόνους", "adj", "μόνους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μόνων", "adj", "μόνων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["μόνα", "adj", "μόνα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["μετέωρος", "adj", "μετεωρότερος", "μετεωρότᾰτος", "μετεώρω", "", "lifted up on"]) + let v = native_list_append(v, ["πρώτα", "adj", "πρώτα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πρώτου", "adj", "πρώτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["πρώτης", "adj", "πρώτης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["πρώτους", "adj", "πρώτους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πρώτων", "adj", "πρώτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["δούλου", "adj", "δούλου", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["δούλων", "adj", "δούλων", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["δούλας", "adj", "δούλας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["μέσου", "adj", "μέσου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["μέσε", "adj", "μέσε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["μέσοι", "adj", "μέσοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μέσων", "adj", "μέσων", "", "", "", "inflection of μέσος"]) + let v = native_list_append(v, ["μέσους", "adj", "μέσους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πρηνής", "adj", "πρηνέστερος", "πρηνέστᾰτος", "πρηνέε", "", "Epic and Ionic"]) + let v = native_list_append(v, ["πολιτικέ", "adj", "πολιτικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πολιτικοί", "adj", "πολιτικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πολιτικούς", "adj", "πολιτικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πολιτική", "adj", "πολιτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πολιτικά", "adj", "πολιτικά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ψυχικός", "adj", "ψῡχῐκώτερος", "ψῡχῐκώτᾰτος", "ψῡχῐκή", "", "of or relating"]) + let v = native_list_append(v, ["ὑλικός", "adj", "ῡ̔λῐκώτερος", "ῡ̔λῐκώτᾰτος", "ῡ̔λῐκή", "", "of matter material"]) + let v = native_list_append(v, ["χρόνιος", "adj", "χρονῐώτερος", "χρονῐώτᾰτος", "χρονίᾱ", "", "after a long"]) + let v = native_list_append(v, ["πατριαρχικός", "adj", "πᾰτρῐᾰρχῐκώτερος", "πᾰτρῐᾰρχῐκώτᾰτος", "πᾰτρῐᾰρχῐκή", "", "patriarchal patriarchic of"]) + let v = native_list_append(v, ["διάμετρον", "adj", "διάμετρον", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["ἀμβροσία", "adj", "ἀμβροσία", "", "", "", "inflection of ἀμβρόσιος"]) + let v = native_list_append(v, ["θείου", "adj", "θείου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["θείους", "adj", "θείους", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["κυρίου", "adj", "κυρίου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["κυρίων", "adj", "κυρίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["κυρίους", "adj", "κυρίους", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["κύριοι", "adj", "κύριοι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["κύριε", "adj", "κύριε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["σημαντικός", "adj", "σημᾰντῐκώτερος", "σημᾰντῐκώτᾰτος", "σημᾰντῐκή", "", "significant giving signs"]) + let v = native_list_append(v, ["κεφαλαίου", "adj", "κεφαλαίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["κεφαλαία", "adj", "κεφαλαία", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["κεφαλαίων", "adj", "κεφαλαίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["κεφάλαια", "adj", "κεφάλαια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["γαλακτική", "adj", "γαλακτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["γαλακτικά", "adj", "γαλακτικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["γαλακτικοί", "adj", "γαλακτικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["γαλακτικούς", "adj", "γαλακτικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["γαλακτικέ", "adj", "γαλακτικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["γνωστός", "adj", "γνωστότερος", "γνωστότᾰτος", "γνωστή", "", "known"]) + let v = native_list_append(v, ["σημειωτική", "adj", "σημειωτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["σεληνιακός", "adj", "σεληνῐᾰκώτερος", "σεληνῐᾰκώτᾰτος", "σεληνῐᾰκή", "", "of or for"]) + let v = native_list_append(v, ["φιλοσόφου", "adj", "φιλοσόφου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["φιλόσοφε", "adj", "φιλόσοφε", "", "", "", "masculine/feminine vocative singular"]) + let v = native_list_append(v, ["φιλόσοφοι", "adj", "φιλόσοφοι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["φιλοσόφους", "adj", "φιλοσόφους", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["φιλοσόφων", "adj", "φιλοσόφων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["φίλης", "adj", "φίλης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["φίλων", "adj", "φίλων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τετάρτου", "adj", "τετάρτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τετάρτων", "adj", "τετάρτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τέταρτα", "adj", "τέταρτα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["βραχίονα", "adj", "βραχίονα", "", "", "", "inflection of βρᾰχίων"]) + let v = native_list_append(v, ["ἐνεργός", "adj", "ἐνεργότερος", "ἐνεργότᾰτος", "ἐνεργώ", "", "at work active"]) + let v = native_list_append(v, ["πετάλου", "adj", "πετάλου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["πέταλα", "adj", "πέταλα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["προόδου", "adj", "προόδου", "", "", "", "genitive singular masculine/feminine/neuter"]) + let v = native_list_append(v, ["μέγιστος", "adj", "μέγιστος", "", "μεγῐ́στη", "", "superlative degree of"]) + let v = native_list_append(v, ["χαρακτηριστικός", "adj", "χᾰρᾰκτηριστῐκώτερος", "χᾰρᾰκτηριστῐκώτᾰτος", "χᾰρᾰκτηριστῐκή", "", "characteristic"]) + let v = native_list_append(v, ["ἁμαρτωλός", "adj", "ἁμαρτωλότερος", "ἁμαρτωλότᾰτος", "ἁμαρτωλώ", "", "erroneous"]) + let v = native_list_append(v, ["βαρβάρου", "adj", "βαρβάρου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["βαρβάρων", "adj", "βαρβάρων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["βάρβαροι", "adj", "βάρβαροι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["βαρβάρους", "adj", "βαρβάρους", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["καθαρά", "adj", "καθαρά", "", "", "", "inflection of κᾰθᾰρός"]) + let v = native_list_append(v, ["καθαρούς", "adj", "καθαρούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μέτρια", "adj", "μέτρια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μέτριοι", "adj", "μέτριοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["βαρύτονος", "adj", "βᾰρῠτονώτερος", "βᾰρῠτονώτᾰτος", "βᾰρῠ́τονος", "", "deep-sounding"]) + let v = native_list_append(v, ["παροξύτονος", "adj", "παροξύτονος", "", "πᾰροξῠ́τονος", "", "paroxytone"]) + let v = native_list_append(v, ["προπαροξύτονος", "adj", "προπαροξύτονος", "", "προπᾰροξῠ́τονος", "", "proparoxytone"]) + let v = native_list_append(v, ["πτωχός", "adj", "πτωχότερος", "πτωχότᾰτος", "πτωχή", "", "poor beggarly"]) + let v = native_list_append(v, ["ἑπταμερής", "adj", "ἑπταμερέστερος", "ἑπταμερέστᾰτος", "ἑπταμερεῖ", "", "having seven parts"]) + let v = native_list_append(v, ["τριακοστός", "adj", "τρῐᾱκοστότερος", "τρῐᾱκοστότᾰτος", "τριᾱκοστή", "", "thirtieth"]) + let v = native_list_append(v, ["τρίτου", "adj", "τρίτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τρίτη", "adj", "τρίτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τρίτων", "adj", "τρίτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τρίτα", "adj", "τρίτα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["τρίτοι", "adj", "τρίτοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τρίτους", "adj", "τρίτους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τρίτης", "adj", "τρίτης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ξένη", "adj", "ξένη", "", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["ξένα", "adj", "ξένα", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["ξένων", "adj", "ξένων", "", "", "", "genitive plural all"]) + let v = native_list_append(v, ["ξένους", "adj", "ξένους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ξένοι", "adj", "ξένοι", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["ξένε", "adj", "ξένε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ξένης", "adj", "ξένης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["πέμπτης", "adj", "πέμπτης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["πέμπτων", "adj", "πέμπτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["πέμπτου", "adj", "πέμπτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["πέμπτα", "adj", "πέμπτα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πέμπτοι", "adj", "πέμπτοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πέμπτους", "adj", "πέμπτους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μαθηματικός", "adj", "μᾰθημᾰτῐκώτερος", "μᾰθημᾰτῐκώτᾰτος", "μᾰθημᾰτῐκή", "", "scientific esp. mathematical"]) + let v = native_list_append(v, ["πρεσβύτερος", "adj", "πρεσβύτερος", "", "πρεσβῠτέρᾱ", "", "comparative degree of"]) + let v = native_list_append(v, ["ὑγρός", "adj", "ὑγρότερος", "ὑγρότᾰτος", "ὑγρᾱ́", "", "wet moist"]) + let v = native_list_append(v, ["πρέσβυς", "adj", "πρεσβῠ́τερος", "πρεσβῠ́τᾰτος", "πρέσβειᾰ", "", "elderly aged"]) + let v = native_list_append(v, ["θανάσιμος", "adj", "θᾰνᾰσῐμώτερος", "θᾰνᾰσῐμώτᾰτος", "θᾰνάσῐμος", "", "deadly"]) + let v = native_list_append(v, ["ἐφελκυστικός", "adj", "ἐφελκῠστῐκώτερος", "ἐφελκῠστῐκώτᾰτος", "ἐφελκῠστῐκή", "", "dragged towards drawn"]) + let v = native_list_append(v, ["δρομάς", "adj", "δρομάς", "", "δρομᾰ́ς", "", "running whirling swift"]) + let v = native_list_append(v, ["τεσσαρακοστός", "adj", "τεσσᾰρᾰκοστότερος", "τεσσᾰρᾰκοστότᾰτος", "τεσσᾰρᾰκοστή", "", "fortieth"]) + let v = native_list_append(v, ["πεντηκοστός", "adj", "πεντηκοστότερος", "πεντηκοστότᾰτος", "πεντηκοστή", "", "fiftieth"]) + let v = native_list_append(v, ["φορώ", "adj", "φορώ", "", "", "", "masculine/feminine/neuter nominative/accusative/vocative dua"]) + let v = native_list_append(v, ["βίαιοι", "adj", "βίαιοι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["βίαια", "adj", "βίαια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["βίαιε", "adj", "βίαιε", "", "", "", "masculine/feminine vocative singular"]) + let v = native_list_append(v, ["δίκαιοι", "adj", "δίκαιοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δίκαια", "adj", "δίκαια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["δίκαιε", "adj", "δίκαιε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["μάταιοι", "adj", "μάταιοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μάταια", "adj", "μάταια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μάταιε", "adj", "μάταιε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["τέταρτοι", "adj", "τέταρτοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δίδυμα", "adj", "δίδυμα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["κάθετοι", "adj", "κάθετοι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["κάθετα", "adj", "κάθετα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["κοίλου", "adj", "κοίλου", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["κοίλων", "adj", "κοίλων", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["κοίλη", "adj", "κοίλη", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["κοίλης", "adj", "κοίλης", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["κοίλα", "adj", "κοίλα", "", "", "", "nominative/accusative/vocative dual feminine"]) + let v = native_list_append(v, ["κοίλους", "adj", "κοίλους", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["νόμιμοι", "adj", "νόμιμοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["νόμιμα", "adj", "νόμιμα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ποικίλου", "adj", "ποικίλου", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["ποικίλοι", "adj", "ποικίλοι", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["ποικίλων", "adj", "ποικίλων", "", "", "", "genitive plural masculine/feminine/neuter"]) + let v = native_list_append(v, ["ποικίλη", "adj", "ποικίλη", "", "", "", "nominative/accusative/vocative singular feminine"]) + let v = native_list_append(v, ["ποικίλης", "adj", "ποικίλης", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["ποικίλα", "adj", "ποικίλα", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["ποικίλους", "adj", "ποικίλους", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["συνώνυμοι", "adj", "συνώνυμοι", "", "", "", "nominative masculine/feminine plural"]) + let v = native_list_append(v, ["συνώνυμα", "adj", "συνώνυμα", "", "", "", "nominative neuter plural"]) + let v = native_list_append(v, ["λεπτοί", "adj", "λεπτοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["λεπτή", "adj", "λεπτή", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["λεπτά", "adj", "λεπτά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["λεπτούς", "adj", "λεπτούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["λογικοί", "adj", "λογικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["λογικούς", "adj", "λογικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μεθοδικοί", "adj", "μεθοδικοί", "", "", "", "nominative masculine plural"]) + let v = native_list_append(v, ["ναρκωτικοί", "adj", "ναρκωτικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ναρκωτική", "adj", "ναρκωτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ναρκωτικά", "adj", "ναρκωτικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πολεμικοί", "adj", "πολεμικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πολεμική", "adj", "πολεμική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πολεμικά", "adj", "πολεμικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πολεμικούς", "adj", "πολεμικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["προβληματικοί", "adj", "προβληματικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["προβληματική", "adj", "προβληματική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["προβληματικά", "adj", "προβληματικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["προβληματικούς", "adj", "προβληματικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τελικοί", "adj", "τελικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τελική", "adj", "τελική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τελικά", "adj", "τελικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["τελικούς", "adj", "τελικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τεχνητοί", "adj", "τεχνητοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τεχνητή", "adj", "τεχνητή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τεχνητά", "adj", "τεχνητά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["τεχνητούς", "adj", "τεχνητούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["φυσικοί", "adj", "φυσικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["φυσικούς", "adj", "φυσικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ψιλοί", "adj", "ψιλοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ψιλή", "adj", "ψιλή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ψιλά", "adj", "ψιλά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ψιλούς", "adj", "ψιλούς", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["βασιλικοί", "adj", "βασιλικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["βασιλικά", "adj", "βασιλικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["γνωστοί", "adj", "γνωστοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["γνωστή", "adj", "γνωστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["γνωστά", "adj", "γνωστά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["γνωστούς", "adj", "γνωστούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["δεσποτικοί", "adj", "δεσποτικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δεσποτική", "adj", "δεσποτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["δεσποτικά", "adj", "δεσποτικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["δεσποτικούς", "adj", "δεσποτικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["δημοτικοί", "adj", "δημοτικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δημοτικά", "adj", "δημοτικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["δημοτικούς", "adj", "δημοτικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["διαγνωστικοί", "adj", "διαγνωστικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["διαγνωστική", "adj", "διαγνωστική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["διαγνωστικά", "adj", "διαγνωστικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["διαγνωστικούς", "adj", "διαγνωστικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["δυνατοί", "adj", "δυνατοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δυνατά", "adj", "δυνατά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["δυνατούς", "adj", "δυνατούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["θαυμαστοί", "adj", "θαυμαστοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["θαυμαστή", "adj", "θαυμαστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["θαυμαστά", "adj", "θαυμαστά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["θαυμαστούς", "adj", "θαυμαστούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["θερμοί", "adj", "θερμοί", "", "", "", "masculine/masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["θερμή", "adj", "θερμή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["θερμά", "adj", "θερμά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["θερμούς", "adj", "θερμούς", "", "", "", "masculine/masculine/feminine accusative plural"]) + let v = native_list_append(v, ["κακοί", "adj", "κακοί", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["κακά", "adj", "κακά", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["κυκλικοί", "adj", "κυκλικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["κυκλικά", "adj", "κυκλικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["κυκλικούς", "adj", "κυκλικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μαγικοί", "adj", "μαγικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μαγική", "adj", "μαγική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μαγικά", "adj", "μαγικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["μαγικούς", "adj", "μαγικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μαθηματική", "adj", "μαθηματική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μουσικοί", "adj", "μουσικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μουσικά", "adj", "μουσικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["μουσικούς", "adj", "μουσικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ναυτικοί", "adj", "ναυτικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ξανθοί", "adj", "ξανθοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ξανθή", "adj", "ξανθή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ξανθά", "adj", "ξανθά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πεζοί", "adj", "πεζοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πεζή", "adj", "πεζή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πεζά", "adj", "πεζά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πεζούς", "adj", "πεζούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πικρά", "adj", "πικρά", "", "", "", "inflection of πικρός"]) + let v = native_list_append(v, ["πιστή", "adj", "πιστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πιστά", "adj", "πιστά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πιστούς", "adj", "πιστούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πλαστοί", "adj", "πλαστοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πλαστή", "adj", "πλαστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πλαστά", "adj", "πλαστά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πλαστούς", "adj", "πλαστούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πνευματικοί", "adj", "πνευματικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["σκληροί", "adj", "σκληροί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["σκληρά", "adj", "σκληρά", "", "", "", "inflection of σκληρός"]) + let v = native_list_append(v, ["σκληρούς", "adj", "σκληρούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["στεγανοί", "adj", "στεγανοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["στεγανή", "adj", "στεγανή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["στεγανά", "adj", "στεγανά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["στεγανούς", "adj", "στεγανούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τεσσαρακοστοί", "adj", "τεσσαρακοστοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τεσσαρακοστή", "adj", "τεσσαρακοστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τεσσαρακοστά", "adj", "τεσσαρακοστά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["τεσσαρακοστούς", "adj", "τεσσαρακοστούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τεχνικοί", "adj", "τεχνικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τεχνικά", "adj", "τεχνικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["τεχνικούς", "adj", "τεχνικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τυραννικοί", "adj", "τυραννικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τυραννική", "adj", "τυραννική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τυραννικά", "adj", "τυραννικά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["τυραννικούς", "adj", "τυραννικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τυφλή", "adj", "τυφλή", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τυφλά", "adj", "τυφλά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["φαλακρά", "adj", "φαλακρά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["φιλοσοφική", "adj", "φιλοσοφική", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["φιλοσοφικά", "adj", "φιλοσοφικά", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["χαρακτηριστικοί", "adj", "χαρακτηριστικοί", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["χαρακτηριστική", "adj", "χαρακτηριστική", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["χαρακτηριστικά", "adj", "χαρακτηριστικά", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["χαρακτηριστικούς", "adj", "χαρακτηριστικούς", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["χιλιοστή", "adj", "χιλιοστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["βαρέος", "adj", "βαρέος", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["βαρέων", "adj", "βαρέων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["παχέος", "adj", "παχέος", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["βαρέα", "adj", "βαρέα", "", "", "", "inflection of βᾰρῠ́ς"]) + let v = native_list_append(v, ["βαρύ", "adj", "βαρύ", "", "", "", "inflection of βᾰρῠ́ς"]) + let v = native_list_append(v, ["παχύ", "adj", "παχύ", "", "", "", "inflection of πᾰχῠ́ς"]) + let v = native_list_append(v, ["τραχύ", "adj", "τραχύ", "", "", "", "inflection of τρᾱχύς"]) + let v = native_list_append(v, ["φιλόξενος", "adj", "φῐλοξενώτερος", "φῐλοξενώτᾰτος", "φῐλόξενος", "", "loving strangers"]) + let v = native_list_append(v, ["στενός", "adj", "στενώτερος", "στενώτᾰτος", "στενή", "", "narrow tight"]) + let v = native_list_append(v, ["πλούσιοι", "adj", "πλούσιοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πλούσια", "adj", "πλούσια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πλούσιε", "adj", "πλούσιε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πλουσίων", "adj", "πλουσίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["διαιρετός", "adj", "δῐαιρετώτερος", "δῐαιρετώτᾰτος", "δῐαιρετή", "", "divided separated"]) + let v = native_list_append(v, ["διπλάσιοι", "adj", "διπλάσιοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["διπλάσια", "adj", "διπλάσια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["διπλάσιε", "adj", "διπλάσιε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["παλαιοί", "adj", "παλαιοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["παλαιάς", "adj", "παλαιάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["παλαιά", "adj", "παλαιά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["παλαιέ", "adj", "παλαιέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["παλαιούς", "adj", "παλαιούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["πολυποίκιλος", "adj", "πολυποίκιλος", "", "πολῠποίκῐλος", "", "much-variegated"]) + let v = native_list_append(v, ["τεχνικέ", "adj", "τεχνικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["σηπτικός", "adj", "σηπτῐκώτερος", "σηπτῐκώτᾰτος", "σηπτῐκή", "", "putrefactive septic"]) + let v = native_list_append(v, ["δούλη", "adj", "δούλη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["κύρια", "adj", "κύρια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["κυρίας", "adj", "κυρίας", "", "", "", "inflection of κῡ́ρῐος"]) + let v = native_list_append(v, ["δραματικός", "adj", "δρᾱμᾰτῐκώτερος", "δρᾱμᾰτῐκώτᾰτος", "δρᾱμᾰτῐκή", "", "dramatic"]) + let v = native_list_append(v, ["δεκάτου", "adj", "δεκάτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["φίλου", "adj", "φίλου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["φίλε", "adj", "φίλε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["φίλοι", "adj", "φίλοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["φίλους", "adj", "φίλους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["φίλα", "adj", "φίλα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μῶλυ", "adj", "μῶλυ", "", "", "", "inflection of μῶλῠς"]) + let v = native_list_append(v, ["ἐχθρός", "adj", "ἐχθῑ́ων", "ἔχθῐστος", "ἐχθρᾱ́", "", "hated hateful"]) + let v = native_list_append(v, ["γοργός", "adj", "γοργότερος", "γοργότᾰτος", "γοργή", "", "grim fierce terrible"]) + let v = native_list_append(v, ["εὔξεινος", "adj", "εὐξεινότερος", "εὐξεινότᾰτος", "εὐξείνω", "", "welcoming friendly hospitable"]) + let v = native_list_append(v, ["δούλης", "adj", "δούλης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["γελαστός", "adj", "γελᾰστότερος", "γελᾰστότᾰτος", "γελᾰστή", "", "laughable ridiculous"]) + let v = native_list_append(v, ["σκαιός", "adj", "σκαιότερος", "σκαιότᾰτος", "σκαιᾱ́", "", "left on or"]) + let v = native_list_append(v, ["φωνητικός", "adj", "φωνητῐκώτερος", "φωνητῐκώτᾰτος", "φωνητική", "", "vocal pertaining to"]) + let v = native_list_append(v, ["βοηθός", "adj", "βοηθότερος", "βοηθότᾰτος", "βοηθώ", "", "assisting auxiliary"]) + let v = native_list_append(v, ["μουσικέ", "adj", "μουσικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ἀστεῖος", "adj", "ᾰ̓στειότερος", "ᾰ̓στειότᾰτος", "ᾰ̓στείᾱ", "", "of the city"]) + let v = native_list_append(v, ["καυτός", "adj", "καυτότερος", "καυτότᾰτος", "καυτή", "", "burnt"]) + let v = native_list_append(v, ["ταχεία", "adj", "ταχεία", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["φυσικέ", "adj", "φυσικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["τραγικός", "adj", "τρᾰγῐκώτερος", "τρᾰγῐκώτᾰτος", "τρᾰγῐκή", "", "of or like"]) + let v = native_list_append(v, ["εὐάγγελος", "adj", "εὐάγγελος", "", "", "", "bringing good news"]) + let v = native_list_append(v, ["περίοικος", "adj", "περῐοικότερος", "περῐοικότᾰτος", "περῐ́οικος", "", "neighboring"]) + let v = native_list_append(v, ["γλαυκός", "adj", "γλαυκότερος", "γλαυκότᾰτος", "γλαυκή", "", "gleaming bright"]) + let v = native_list_append(v, ["πρακτική", "adj", "πρακτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["δαιμόνιος", "adj", "δαιμονῐώτερος", "δαιμονῐώτᾰτος", "δαιμονῐ́ᾱ", "", "proceeding from an"]) + let v = native_list_append(v, ["στραγγός", "adj", "στρᾰγγότερος", "στρᾰγγότᾰτος", "στρᾰγγή", "", "twisted"]) + let v = native_list_append(v, ["διττός", "adj", "δῐττότερος", "δῐττότᾰτος", "δῐττή", "", "Attic spelling of"]) + let v = native_list_append(v, ["μέγιστε", "adj", "μέγιστε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["μέγιστα", "adj", "μέγιστα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μέγιστοι", "adj", "μέγιστοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μείζων", "adj", "μείζων", "", "μείζονε", "", "comparative degree of"]) + let v = native_list_append(v, ["δεισιδαίμων", "adj", "δεισιδαίμων", "", "", "", "superstitious"]) + let v = native_list_append(v, ["φανταστικός", "adj", "φᾰντᾰστῐκώτερος", "φᾰντᾰστῐκώτᾰτος", "φανταστῐκή", "", "able to produce"]) + let v = native_list_append(v, ["αἰσχρός", "adj", "αἰσχῑ́ων", "αἴσχῐστος", "αἰσχρᾱ́", "", "causing shame dishonoring"]) + let v = native_list_append(v, ["Χριστεπώνυμος", "adj", "Χρῐστεπωνῠμώτερος", "Χρῐστεπωνῠμώτᾰτος", "Χρῐστεπώνῠμος", "", "named after Christ"]) + let v = native_list_append(v, ["ἀλλοῖος", "adj", "ᾰ̓λλοιότερος", "ᾰ̓λλοιότᾰτος", "ᾰ̓λλοίᾱ", "", "of another sort"]) + let v = native_list_append(v, ["ἀλλοιωτικός", "adj", "ἀλλοιωτῐκώτερος", "ἀλλοιωτῐκώτᾰτος", "ἀλλοιωτῐκή", "", "fit for changing"]) + let v = native_list_append(v, ["ἄμβροτος", "adj", "ᾰ̓μβροτώτερος", "ᾰ̓μβροτώτᾰτος", "ᾰ̓μβρότη", "", "immortal divine"]) + let v = native_list_append(v, ["ἀμίαντος", "adj", "ᾰ̓μῐᾰντότερος", "ᾰ̓μῐᾰντότᾰτος", "ᾰ̓μῐ́ᾰντος", "", "undefiled pure"]) + let v = native_list_append(v, ["ἀμφίπολος", "adj", "ἀμφῐπολώτερος", "ἀμφῐπολώτᾰτος", "ἀμφῐ́πολος", "", "being about busied"]) + let v = native_list_append(v, ["ἄνισον", "adj", "ἄνισον", "", "", "", "inflection of ᾰ̓́νῐσος"]) + let v = native_list_append(v, ["ἀραιός", "adj", "ᾰ̓ραιότερος", "ᾰ̓ραιότᾰτος", "ᾰ̓ραιᾱ́", "", "thin lean narrow"]) + let v = native_list_append(v, ["ἀργυρικός", "adj", "ἀργυρικότερος", "ἀργυρικότᾰτος", "ἀργῠρῐκή", "", "of for or"]) + let v = native_list_append(v, ["ἄρτιος", "adj", "ᾰ̓ρτῐώτερος", "ᾰ̓ρτῐώτᾰτος", "ᾰ̓ρτῐ́ᾱ", "", "complete perfect suitable"]) + let v = native_list_append(v, ["ἀστρολόγος", "adj", "ᾰ̓στρολογώτερος", "ᾰ̓στρολογώτᾰτος", "ᾰ̓στρολόγος", "", "astronomer"]) + let v = native_list_append(v, ["βαλανηφάγος", "adj", "βαλανηφάγος", "", "βᾰλᾰνηφᾰ́γος", "", "acorn-eating"]) + let v = native_list_append(v, ["βασίλειος", "adj", "βᾰσῐλειότερος", "βᾰσῐλειότᾰτος", "βᾰσῐλείᾱ", "", "of the king"]) + let v = native_list_append(v, ["βάσκανος", "adj", "βασκᾰνώτερος", "βασκᾰνώτᾰτος", "βάσκᾰνος", "", "slanderous envious malignant"]) + let v = native_list_append(v, ["βῆτα", "adj", "βῆτα", "", "", "", "second"]) + let v = native_list_append(v, ["δηρός", "adj", "δηρότερος", "δηρότᾰτος", "δηρᾱ́", "", "long too long"]) + let v = native_list_append(v, ["δρομαῖος", "adj", "δρομαιότερος", "δρομαιότᾰτος", "δρομαία", "", "running at full"]) + let v = native_list_append(v, ["γαληνός", "adj", "γᾰληνότερος", "γᾰληνότᾰτος", "γᾰληνός", "", "calm"]) + let v = native_list_append(v, ["ἐγρήγορος", "adj", "ἐγρηγορώτερος", "ἐγρηγορώτᾰτος", "ἐγρηγόρω", "", "wakeful"]) + let v = native_list_append(v, ["ἐγρήγοροι", "adj", "ἐγρήγοροι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ταὐτός", "adj", "ταὐτός", "", "ταὐτή", "", "the same identical"]) + let v = native_list_append(v, ["ταὐτό", "adj", "ταὐτό", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ἐναντίος", "adj", "ἐνᾰντῐώτερος", "ἐνᾰντῐώτᾰτος", "ἐνᾰντῐ́ᾱ", "", "opposite facing visible"]) + let v = native_list_append(v, ["ἑνδεκασύλλαβος", "adj", "ἑνδεκασύλλαβος", "ἑνδεκᾰσῠλλᾰβώτᾰτος", "ἑνδεκᾰσύλλᾰβος", "", "with eleven syllables"]) + let v = native_list_append(v, ["ἐπαινετικός", "adj", "ἐπαινετικότερος", "ἐπαινετικότᾰτος", "ἐπαινετῐκή", "", "given to praising"]) + let v = native_list_append(v, ["ἐπαινετός", "adj", "ἐπαινετώτερος", "ἐπαινετώτᾰτος", "ἐπαινετή", "", "to be praised"]) + let v = native_list_append(v, ["ἐπιεικής", "adj", "ἐπῐεικέστερος", "ἐπῐεικέστᾰτος", "ἐπῐεικής", "", "fitting suitable"]) + let v = native_list_append(v, ["ἐπιρρεπής", "adj", "ἐπιρρεπέστερος", "ἐπιρρεπέστᾰτος", "ἐπιρρεπεῖ", "", "leaning towards"]) + let v = native_list_append(v, ["ἐπιχώριος", "adj", "ἐπῐχωρῐώτερος", "ἐπῐχωρῐώτᾰτος", "ἐπῐχωρίᾱ", "", "in or of"]) + let v = native_list_append(v, ["μυρίος", "adj", "μῡρῐώτερος", "μῡρῐώτᾰτος", "μῡρῐ́ᾱ", "", "numberless countless infinite"]) + let v = native_list_append(v, ["μυρίοι", "adj", "μυρίοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["χαμηλός", "adj", "χᾰμηλότερος", "χᾰμηλότᾰτος", "χᾰμηλή", "", "low on the"]) + let v = native_list_append(v, ["εὐρύς", "adj", "εὐρῠ́τερος", "εὐρῠ́τᾰτος", "εὐρεῖᾰ", "", "wide broad spacious"]) + let v = native_list_append(v, ["θηριακός", "adj", "θηρῐᾰκώτερος", "θηρῐᾰκώτᾰτος", "θηρῐᾰκή", "", "of or related"]) + let v = native_list_append(v, ["ἐπιούσιος", "adj", "ἐπῐουσῐώτερος", "ἐπῐουσῐώτᾰτος", "ἐπῐούσῐος", "", "The meaning of"]) + let v = native_list_append(v, ["θεηκόλος", "adj", "θεηκολώτερος", "θεηκολώτᾰτος", "θεηκόλω", "", "a priest"]) + let v = native_list_append(v, ["θεόσεπτος", "adj", "θεοσεπτότερος", "θεοσεπτότᾰτος", "θεοσέπτω", "", "feared as divine"]) + let v = native_list_append(v, ["θεϊκός", "adj", "θεῐ̈κώτερος", "θεῐ̈κώτᾰτος", "θεῐ̈κή", "", "alternative form of"]) + let v = native_list_append(v, ["ἰθύς", "adj", "ῑ̓θῠ́τερος", "ῑ̓θῠ́τᾰτος", "ῑ̓θεῖᾰ", "", "alternative form of"]) + let v = native_list_append(v, ["εὐθύς", "adj", "εὐθῠ́τερος", "εὐθῠ́τᾰτος", "εὐθεῖᾰ", "", "straight direct"]) + let v = native_list_append(v, ["ἰσόψηφος", "adj", "ἰσοψηφότερος", "ἰσοψηφότᾰτος", "ἰσοψήφω", "", "with or by"]) + let v = native_list_append(v, ["βέβαιοι", "adj", "βέβαιοι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["βεβαιότερος", "adj", "βεβαιότερος", "", "βεβαιοτέρᾱ", "", "comparative degree of"]) + let v = native_list_append(v, ["βεβαιότερε", "adj", "βεβαιότερε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["βεβαιότεροι", "adj", "βεβαιότεροι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["βεβαιότερα", "adj", "βεβαιότερα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["καταπελτικός", "adj", "καταπελτικότερος", "καταπελτικότᾰτος", "κᾰτᾰπελτῐκή", "", "of or for"]) + let v = native_list_append(v, ["κατηχητικός", "adj", "κᾰτηχητῐκώτερος", "κᾰτηχητῐκώτᾰτος", "κᾰτηχητῐκή", "", "of or for"]) + let v = native_list_append(v, ["εὔφημον", "adj", "εὔφημον", "", "", "", "inflection of εὔφημος"]) + let v = native_list_append(v, ["εὔφορον", "adj", "εὔφορον", "", "", "", "inflection of εὔφορος"]) + let v = native_list_append(v, ["κληρική", "adj", "κληρική", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["κληρικόν", "adj", "κληρικόν", "", "", "", "inflection of κληρικός"]) + let v = native_list_append(v, ["ἄγαμος", "adj", "ᾰ̓γᾰμώτερος", "ᾰ̓γᾰμώτᾰτος", "ἄγᾰμος", "", "unmarried single"]) + let v = native_list_append(v, ["ἄγαμον", "adj", "ἄγαμον", "", "", "", "inflection of ἄγαμος"]) + let v = native_list_append(v, ["ἄνανδρος", "adj", "ᾰ̓νᾰνδρότερος", "ᾰ̓νᾰνδρότᾰτος", "ᾰ̓́νᾰνδρος", "", "unmanly cowardly"]) + let v = native_list_append(v, ["ἄφυλλος", "adj", "ἀφυλλότερος", "ἀφυλλότᾰτος", "ἀφύλλω", "", "leafless"]) + let v = native_list_append(v, ["ἄφυλλον", "adj", "ἄφυλλον", "", "", "", "inflection of ἄφυλλος"]) + let v = native_list_append(v, ["μέρμερον", "adj", "μέρμερον", "", "", "", "inflection of μέρμερος"]) + let v = native_list_append(v, ["μεῖον", "adj", "μεῖον", "", "", "", "inflection of μείων"]) + let v = native_list_append(v, ["μυστικόν", "adj", "μυστικόν", "", "", "", "inflection of μῠστῐκός"]) + let v = native_list_append(v, ["οἴα", "adj", "οἴα", "", "", "", "inflection of οἶος"]) + let v = native_list_append(v, ["οἶον", "adj", "οἶον", "", "", "", "inflection of οἶος"]) + let v = native_list_append(v, ["πετάλη", "adj", "πετάλη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πικρόν", "adj", "πικρόν", "", "", "", "inflection of πικρός"]) + let v = native_list_append(v, ["πολιτικῇ", "adj", "πολιτικῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["πολιτικόν", "adj", "πολιτικόν", "", "", "", "inflection of πολῑτῐκός"]) + let v = native_list_append(v, ["νότιος", "adj", "νοτῐώτερος", "νοτῐώτᾰτος", "νοτίᾱ", "", "wet moist damp"]) + let v = native_list_append(v, ["πρότερα", "adj", "πρότερα", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["πρότερον", "adj", "πρότερον", "", "", "", "inflection of πρότερος"]) + let v = native_list_append(v, ["πρᾷον", "adj", "πρᾷον", "", "", "", "inflection of πρᾷος"]) + let v = native_list_append(v, ["σκεπτική", "adj", "σκεπτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["σκεπτικόν", "adj", "σκεπτικόν", "", "", "", "inflection of σκεπτικός"]) + let v = native_list_append(v, ["σκληρόν", "adj", "σκληρόν", "", "", "", "inflection of σκληρός"]) + let v = native_list_append(v, ["κλαστός", "adj", "κλᾰστότερος", "κλᾰστότᾰτος", "κλᾰστή", "", "broken"]) + let v = native_list_append(v, ["κλειτός", "adj", "κλειτότερος", "κλειτότᾰτος", "κλειτή", "", "renowned famous highly"]) + let v = native_list_append(v, ["εὔφρων", "adj", "εὐφρονέστερος", "εὐφρονέστᾰτος", "εὔφρονε", "", "cheerful"]) + let v = native_list_append(v, ["κοῖλος", "adj", "κοιλότερος", "κοιλότᾰτος", "κοίλη", "", "hollow mostly as"]) + let v = native_list_append(v, ["κορωνός", "adj", "κορωνότερος", "κορωνότᾰτος", "κορωνή", "", "curved crooked"]) + let v = native_list_append(v, ["σπάνιον", "adj", "σπάνιον", "", "", "", "inflection of σπᾰ́νῐος"]) + let v = native_list_append(v, ["συναπτόν", "adj", "συναπτόν", "", "", "", "inflection of συναπτός"]) + let v = native_list_append(v, ["κραναός", "adj", "κρᾰνᾰώτερος", "κρᾰνᾰώτᾰτος", "κρᾰνᾰή", "", "rocky rugged"]) + let v = native_list_append(v, ["κρατύς", "adj", "κρείσσων", "κρᾰ́τῐ́στος", "κρᾰτεῖα", "", "strong mighty"]) + let v = native_list_append(v, ["κάρβανος", "adj", "κᾰρβᾱνότερος", "κᾰρβᾱνότᾰτος", "κᾰ́ρβᾱνος", "", "outlandish foreign"]) + let v = native_list_append(v, ["τηΰσιον", "adj", "τηΰσιον", "", "", "", "inflection of τηΰσιος"]) + let v = native_list_append(v, ["τροπική", "adj", "τροπική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τροπικόν", "adj", "τροπικόν", "", "", "", "inflection of τροπικός"]) + let v = native_list_append(v, ["συναφής", "adj", "συναφέστερος", "συναφέστᾰτος", "συναφεῖ", "", "united connected related"]) + let v = native_list_append(v, ["φαίδρα", "adj", "φαίδρα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["φαιδρόν", "adj", "φαιδρόν", "", "", "", "inflection of φαιδρός"]) + let v = native_list_append(v, ["φυσικόν", "adj", "φυσικόν", "", "", "", "inflection of φυσικός"]) + let v = native_list_append(v, ["ἀντίφωνα", "adj", "ἀντίφωνα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἀληθές", "adj", "ἀληθές", "", "", "", "inflection of ᾰ̓ληθής"]) + let v = native_list_append(v, ["λισσός", "adj", "λισσότερος", "λισσότᾰτος", "λισσή", "", "smooth"]) + let v = native_list_append(v, ["λίσπος", "adj", "λῐσπότερος", "λῐσπότᾰτος", "λῐ́σπη", "", "smooth polished"]) + let v = native_list_append(v, ["λοιμός", "adj", "λοιμός", "", "λοιμοί", "", "pestilent"]) + let v = native_list_append(v, ["ἄμυλος", "adj", "ἀμῠλώτερος", "ἀμῠλώτᾰτος", "ἄμῠλος", "", "Not ground at"]) + let v = native_list_append(v, ["ἀμύλου", "adj", "ἀμύλου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἄξια", "adj", "ἄξια", "", "", "", "nominative/accusative/vocative neuter plural"]) + let v = native_list_append(v, ["ἄξιον", "adj", "ἄξιον", "", "", "", "inflection of ἄξιος"]) + let v = native_list_append(v, ["ἄρσεν", "adj", "ἄρσεν", "", "", "", "inflection of ἄρσην"]) + let v = native_list_append(v, ["λωΐων", "adj", "λωῐ̈́ων", "λωῐ̈́στος", "λωῐ̈́ων", "", "more desirable more"]) + let v = native_list_append(v, ["μαγειρικός", "adj", "μᾰγειρῐκώτερος", "μᾰγειρῐκώτᾰτος", "μᾰγειρῐκή", "", "fit for a"]) + let v = native_list_append(v, ["μακρά", "adj", "μακρά", "", "", "", "inflection of μᾰκρός"]) + let v = native_list_append(v, ["ἄτομον", "adj", "ἄτομον", "", "", "", "inflection of ἄτομος"]) + let v = native_list_append(v, ["ὁμή", "adj", "ὁμή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ὁμόν", "adj", "ὁμόν", "", "", "", "inflection of ὁμός"]) + let v = native_list_append(v, ["ὀπτική", "adj", "ὀπτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ὀπτικόν", "adj", "ὀπτικόν", "", "", "", "inflection of ὀπτικός"]) + let v = native_list_append(v, ["ἠθική", "adj", "ἠθική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["παράκλητον", "adj", "παράκλητον", "", "", "", "inflection of πᾰρᾰ́κλητος"]) + let v = native_list_append(v, ["μανός", "adj", "μανότερος", "μανότᾰτος", "μᾱ̆νή", "", "porous"]) + let v = native_list_append(v, ["κρουστός", "adj", "κρουστότερος", "κρουστότᾰτος", "κρουστή", "", "played by striking"]) + let v = native_list_append(v, ["ξενοκτόνος", "adj", "ξενοκτονώτερος", "ξενοκτονώτᾰτος", "ξενοκτόνω", "", "slaying guests or"]) + let v = native_list_append(v, ["ὀχυρός", "adj", "ὀχυρότερος", "ὀχυρότᾰτος", "ὀχῠρᾱ́", "", "firm lasting stout"]) + let v = native_list_append(v, ["πιθηκοειδής", "adj", "πῐθηκοειδέστερος", "πῐθηκοειδέστᾰτος", "πῐθηκοειδής", "", "apelike"]) + let v = native_list_append(v, ["πλείων", "adj", "πλείων", "", "πλείονε", "", "more comparative degree"]) + let v = native_list_append(v, ["πολύτροπος", "adj", "πολῠτροπώτερος", "πολῠτροπώτᾰτος", "πολῠ́τροπος", "", "much turned much"]) + let v = native_list_append(v, ["φαῦλος", "adj", "φαυλότερος", "φαυλότᾰτος", "φαύλη", "", "easy slight"]) + let v = native_list_append(v, ["Σαβάζιος", "adj", "Σᾰβαζιότερος", "Σᾰβαζιότᾰτος", "Σᾰβάζιος", "", "of Sabazios"]) + let v = native_list_append(v, ["σιωπητικός", "adj", "σῐωπητῐκώτερος", "σῐωπητῐκώτᾰτος", "σῐωπητῐκή", "", "taciturn"]) + let v = native_list_append(v, ["σοφοί", "adj", "σοφοί", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["στραβός", "adj", "στρᾰβώτερος", "στρᾰβώτᾰτος", "στρᾰβή", "", "distorted oblique"]) + let v = native_list_append(v, ["ὤνιος", "adj", "ὤνιος", "", "ὤνῐος", "", "for sale"]) + let v = native_list_append(v, ["ὤνιον", "adj", "ὤνιον", "", "", "", "inflection of ὤνῐος"]) + let v = native_list_append(v, ["ψυχοπομπός", "adj", "ψυχοπομπός", "", "ψῡχοπομπός", "", "soul-guiding -conducting"]) + let v = native_list_append(v, ["ψυχοπομπόν", "adj", "ψυχοπομπόν", "", "", "", "inflection of ψῡχοπομπός"]) + let v = native_list_append(v, ["ψυχοπομποῦ", "adj", "ψυχοπομποῦ", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["χειμερινός", "adj", "χειμερῐνώτερος", "χειμερῐνώτᾰτος", "χειμερῐνή", "", "of or in"]) + let v = native_list_append(v, ["χειμερινή", "adj", "χειμερινή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["χειμερινόν", "adj", "χειμερινόν", "", "", "", "inflection of χειμερινός"]) + let v = native_list_append(v, ["φοβερός", "adj", "φοβερώτερος", "φοβερώτᾰτος", "φοβερά", "", "fearful inspiring fear"]) + let v = native_list_append(v, ["φοβερά", "adj", "φοβερά", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["φοβερόν", "adj", "φοβερόν", "", "", "", "inflection of φοβερός"]) + let v = native_list_append(v, ["τρίτον", "adj", "τρίτον", "", "", "", "inflection of τρίτος"]) + let v = native_list_append(v, ["τετάρτη", "adj", "τετάρτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τέταρτον", "adj", "τέταρτον", "", "", "", "inflection of τέταρτος"]) + let v = native_list_append(v, ["ἕκτος", "adj", "ἕκτος", "ἑκτότᾰτος", "ἕκτη", "", "sixth"]) + let v = native_list_append(v, ["ἕκτη", "adj", "ἕκτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἕβδομος", "adj", "ἕβδομος", "ἑβδομώτᾰτος", "ἑβδόμη", "", "seventh"]) + let v = native_list_append(v, ["ἑβδόμῃ", "adj", "ἑβδόμῃ", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἕβδομον", "adj", "ἕβδομον", "", "", "", "inflection of ἕβδομος"]) + let v = native_list_append(v, ["ὄγδοος", "adj", "ὄγδοος", "ὀγδοώτᾰτος", "ὀγδόη", "", "eighth"]) + let v = native_list_append(v, ["ὀγδόη", "adj", "ὀγδόη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ὄγδοον", "adj", "ὄγδοον", "", "", "", "inflection of ὄγδοος"]) + let v = native_list_append(v, ["ἔνατος", "adj", "ἔνατος", "ἐνᾰτώτᾰτος", "ἐνάτη", "", "ninth"]) + let v = native_list_append(v, ["ἐνάτη", "adj", "ἐνάτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἔνατον", "adj", "ἔνατον", "", "", "", "inflection of ἔνατος"]) + let v = native_list_append(v, ["δεκάτη", "adj", "δεκάτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["δέκατον", "adj", "δέκατον", "", "", "", "inflection of δέκατος"]) + let v = native_list_append(v, ["ἑνδέκατος", "adj", "ἑνδεκᾰτώτερος", "ἑνδεκᾰτώτᾰτος", "ἑνδεκᾰ́τη", "", "eleventh"]) + let v = native_list_append(v, ["ἑνδεκάτη", "adj", "ἑνδεκάτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἑνδέκατον", "adj", "ἑνδέκατον", "", "", "", "inflection of ἑνδέκατος"]) + let v = native_list_append(v, ["δωδεκάτη", "adj", "δωδεκάτη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["δωδέκατον", "adj", "δωδέκατον", "", "", "", "inflection of δωδέκατος"]) + let v = native_list_append(v, ["εἰκοστός", "adj", "εἰκοστότερος", "εἰκοστότᾰτος", "εἰκοστή", "", "twentieth"]) + let v = native_list_append(v, ["εἰκοστή", "adj", "εἰκοστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["εἰκοστόν", "adj", "εἰκοστόν", "", "", "", "inflection of εἰκοστός"]) + let v = native_list_append(v, ["ἑκατοστός", "adj", "ἑκατοστός", "", "ἑκᾰτοστή", "", "hundredth"]) + let v = native_list_append(v, ["ἑκατοστή", "adj", "ἑκατοστή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἑκατοστόν", "adj", "ἑκατοστόν", "", "", "", "inflection of ἑκατοστός"]) + let v = native_list_append(v, ["χιλιοστόν", "adj", "χιλιοστόν", "", "", "", "inflection of χιλιοστός"]) + let v = native_list_append(v, ["Συρικός", "adj", "Σῠρῐκώτερος", "Σῠρῐκώτᾰτος", "Σῠρῐκή", "", "from Syria Syrian"]) + let v = native_list_append(v, ["σφυγμικός", "adj", "σφῠγμῐκώτερος", "σφῠγμῐκώτᾰτος", "σφῠγμῐκή", "", "of the pulse"]) + let v = native_list_append(v, ["τετρασύλλαβος", "adj", "τετρᾰσῠλλᾰβώτερος", "τετρᾰσῠλλᾰβώτᾰτος", "τετρᾰσῠ́λλᾰβος", "", "of four syllables"]) + let v = native_list_append(v, ["τοξικός", "adj", "τοξῐκώτερος", "τοξῐκώτᾰτος", "τοξῐκή", "", "of or for"]) + let v = native_list_append(v, ["φυτοῦ", "adj", "φυτοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τροπαῖος", "adj", "τροπαιότερος", "τροπαιότᾰτος", "τροπαίᾱ", "", "of a turning"]) + let v = native_list_append(v, ["κυμινοπριστοκαρδαμογλύφος", "adj", "κῠμῑνοπρῐστοκᾰρδᾰμογλῠφώτερος", "κῠμῑνοπρῐστοκᾰρδᾰμογλῠφώτᾰτος", "κῠμῑνοπρῐστοκᾰρδᾰμογλῠ́φος", "", "extremely miserly scrooge-like"]) + let v = native_list_append(v, ["τυφλόν", "adj", "τυφλόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["φυτά", "adj", "φυτά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ὀσμητός", "adj", "ὀσμητότερος", "ὀσμητότᾰτος", "ὀσμητή", "", "smelled that which"]) + let v = native_list_append(v, ["Χριστιανικός", "adj", "Χρῐστῐᾱνῐκώτερος", "Χρῐστῐᾱνῐκώτᾰτος", "Χρῐστῐᾱνῐκή", "", "of or befitting"]) + let v = native_list_append(v, ["Χριστιανικάς", "adj", "Χριστιανικάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἀόρατος", "adj", "ἀορᾱτότερος", "ἀορᾱτότᾰτος", "ἀόρᾱτος", "", "unseen invisible"]) + let v = native_list_append(v, ["ἀόρατον", "adj", "ἀόρατον", "", "", "", "inflection of ἀόρατος"]) + let v = native_list_append(v, ["ἀκατασκεύαστος", "adj", "ᾰ̓κᾰτᾰσκευᾰστότερος", "ᾰ̓κᾰτᾰσκευᾰστότᾰτος", "ἀκᾰτασκεύαστος", "", "uncompleted unfinished unformed"]) + let v = native_list_append(v, ["ἀκατασκεύαστον", "adj", "ἀκατασκεύαστον", "", "", "", "inflection of ἀκατασκεύαστος"]) + let v = native_list_append(v, ["ἄβυσσον", "adj", "ἄβυσσον", "", "", "", "inflection of ἄβυσσος"]) + let v = native_list_append(v, ["καλόν", "adj", "καλόν", "", "", "", "inflection of κᾱ̆λός"]) + let v = native_list_append(v, ["μέσον", "adj", "μέσον", "", "", "", "inflection of μέσος"]) + let v = native_list_append(v, ["ξηρά", "adj", "ξηρά", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["ξηρόν", "adj", "ξηρόν", "", "", "", "inflection of ξηρός"]) + let v = native_list_append(v, ["γέροντος", "adj", "γέροντος", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["κάρπιμος", "adj", "κάρπιμος", "", "", "", "fruit-bearing fruitful"]) + let v = native_list_append(v, ["κάρπιμον", "adj", "κάρπιμον", "", "", "", "inflection of κάρπιμος"]) + let v = native_list_append(v, ["μέγα", "adj", "μέγα", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ἐλάχεια", "adj", "ἐλάχεια", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἐλαχύ", "adj", "ἐλαχύ", "", "", "", "inflection of ἐλαχύς"]) + let v = native_list_append(v, ["ἐλάσσων", "adj", "ἐλάσσων", "", "ἐλᾰ́σσων", "", "comparative degree of"]) + let v = native_list_append(v, ["ἔλασσον", "adj", "ἔλασσον", "", "", "", "inflection of ἐλάσσων"]) + let v = native_list_append(v, ["πετεινή", "adj", "πετεινή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πετεινόν", "adj", "πετεινόν", "", "", "", "inflection of πετεινός"]) + let v = native_list_append(v, ["πτερωτός", "adj", "πτερωτότερος", "πτερωτότᾰτος", "πτερωτή", "", "feathered"]) + let v = native_list_append(v, ["πτερωτή", "adj", "πτερωτή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πτερωτόν", "adj", "πτερωτόν", "", "", "", "inflection of πτερωτός"]) + let v = native_list_append(v, ["Βάκχειος", "adj", "Βᾰκχειότερος", "Βᾰκχειότᾰτος", "Βᾰκχείᾱ", "", "Bacchic of or"]) + let v = native_list_append(v, ["ξηράς", "adj", "ξηράς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ξηροί", "adj", "ξηροί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ξηρούς", "adj", "ξηρούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἰωβηλαῖος", "adj", "ἰωβηλαιότερος", "ἰωβηλαιότᾰτος", "ἰωβηλαίᾱ", "", "of a jubilee"]) + let v = native_list_append(v, ["ἱλαρά", "adj", "ἱλαρά", "", "", "", "inflection of ἱλᾰρός"]) + let v = native_list_append(v, ["ἱλάων", "adj", "ἱλάων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἀντίφωνος", "adj", "ἀντιφωνότερος", "ἀντιφωνότᾰτος", "ἀντιφώνω", "", "sounding in answer"]) + let v = native_list_append(v, ["τοξικόν", "adj", "τοξικόν", "", "", "", "inflection of τοξικός"]) + let v = native_list_append(v, ["ἀνώνυμος", "adj", "ἀνωνυμότερος", "ἀνωνυμότᾰτος", "ἀνώνῠμος", "", "anonymous nameless"]) + let v = native_list_append(v, ["ἀνώνυμον", "adj", "ἀνώνυμον", "", "", "", "inflection of ἀνώνυμος"]) + let v = native_list_append(v, ["γηγενές", "adj", "γηγενές", "", "", "", "inflection of γηγενής"]) + let v = native_list_append(v, ["ἔντομον", "adj", "ἔντομον", "", "", "", "inflection of ἔντομος"]) + let v = native_list_append(v, ["ἔντομος", "adj", "ἔντομος", "", "ἐντόμω", "", "cut in pieces"]) + let v = native_list_append(v, ["κάρκαρος", "adj", "κάρκαρος", "", "κάρκαρα", "", "The meaning of"]) + let v = native_list_append(v, ["ἄπυρος", "adj", "ἄπυρος", "", "", "", "without fire fireless"]) + let v = native_list_append(v, ["ἄπυρον", "adj", "ἄπυρον", "", "", "", "inflection of ἄπυρος"]) + let v = native_list_append(v, ["ἐμός", "adj", "ἐμός", "ἐμώτᾰτος", "ἐμή", "", "my of mine"]) + let v = native_list_append(v, ["ἡμέτερος", "adj", "ἡμέτερος", "", "ἡμετέρᾱ", "", "our of ours"]) + let v = native_list_append(v, ["σός", "adj", "σός", "", "σή", "", "your yours"]) + let v = native_list_append(v, ["ὑμέτερος", "adj", "ὑμέτερος", "", "ῡ̔μετέρᾱ", "", "your of yours"]) + let v = native_list_append(v, ["ἄπειρος", "adj", "ᾰ̓πειρότερος", "ᾰ̓πειρότᾰτος", "ᾰ̓́πειρος", "", "without trial or"]) + let v = native_list_append(v, ["εὐδαίμων", "adj", "εὐδαιμονέστερος", "εὐδαιμονέστᾰτος", "εὐδαίμονε", "", "fortunate in a"]) + let v = native_list_append(v, ["θεοσεβής", "adj", "θεοσεβέστερος", "θεοσεβέστᾰτος", "θεοσεβεῖ", "", "God-fearing"]) + let v = native_list_append(v, ["πλάγια", "adj", "πλάγια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["δεικτικός", "adj", "δεικτῐκώτερος", "δεικτῐκώτᾰτος", "δεικτῐκή", "", "able to be"]) + let v = native_list_append(v, ["νόμιμε", "adj", "νόμιμε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["νυκτερινός", "adj", "νῠκτερῐνώτερος", "νῠκτερῐνώτᾰτος", "νῠκτερῐνή", "", "by night nightly"]) + let v = native_list_append(v, ["ἄμορφος", "adj", "ᾰ̓μορφότερος", "ᾰ̓μορφότᾰτος", "ᾰ̓́μορφος", "", "misshapen ugly"]) + let v = native_list_append(v, ["ἄμορφον", "adj", "ἄμορφον", "", "", "", "inflection of ἄμορφος"]) + let v = native_list_append(v, ["πλαστέ", "adj", "πλαστέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πολεμικέ", "adj", "πολεμικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πολυμήχανε", "adj", "πολυμήχανε", "", "", "", "masculine/feminine vocative singular"]) + let v = native_list_append(v, ["πρηνές", "adj", "πρηνές", "", "", "", "inflection of πρηνής"]) + let v = native_list_append(v, ["προβληματικέ", "adj", "προβληματικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ἀνίκητος", "adj", "ᾰ̓νῑκητότερος", "ᾰ̓νῑκητότᾰτος", "ᾰ̓νῑ́κητος", "", "unconquered unconquerable invincible"]) + let v = native_list_append(v, ["ἀνίκητον", "adj", "ἀνίκητον", "", "", "", "inflection of ᾰ̓νῑ́κητος"]) + let v = native_list_append(v, ["ψιλέ", "adj", "ψιλέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["στεγανέ", "adj", "στεγανέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["συνώνυμε", "adj", "συνώνυμε", "", "", "", "vocative masculine/feminine singular"]) + let v = native_list_append(v, ["τελικέ", "adj", "τελικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["χονδρός", "adj", "χονδρότερος", "χονδρότᾰτος", "χονδρᾱ́", "", "granular coarse"]) + let v = native_list_append(v, ["χαρακτηριστικέ", "adj", "χαρακτηριστικέ", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["τεχνητέ", "adj", "τεχνητέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["παστός", "adj", "πᾰστότερος", "πᾰστότᾰτος", "πᾰστή", "", "sprinkled with salt"]) + let v = native_list_append(v, ["ἀργινόεις", "adj", "ᾰ̓ργῐνοέστερος", "ᾰ̓ργῐνοέστᾰτος", "ᾰ̓ργῐνόεσσᾰ", "", "brightly shining white"]) + let v = native_list_append(v, ["ἀργινόεσσα", "adj", "ἀργινόεσσα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἀργινόεν", "adj", "ἀργινόεν", "", "", "", "inflection of ᾰ̓ργῐνόεις"]) + let v = native_list_append(v, ["παράλια", "adj", "παράλια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μονομάχος", "adj", "μονομᾰχώτερος", "μονομᾰχώτᾰτος", "μονομᾰ́χος", "", "fighting in single"]) + let v = native_list_append(v, ["γνωστέ", "adj", "γνωστέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ἄφοβος", "adj", "ᾰ̓φοβώτερος", "ᾰ̓φοβώτᾰτος", "ᾰ̓́φοβος", "", "fearless"]) + let v = native_list_append(v, ["θνητός", "adj", "θνητότερος", "θνητότᾰτος", "θνητή", "", "liable to death"]) + let v = native_list_append(v, ["σύμφωνος", "adj", "σῠμφωνότερος", "σῠμφωνότᾰτος", "σῠ́μφωνος", "", "agreeing in sound"]) + let v = native_list_append(v, ["ἄπονος", "adj", "ἀπονώτερος", "ἀπονώτᾰτος", "ἀπόνω", "", "without toil or"]) + let v = native_list_append(v, ["δραστικός", "adj", "δρᾱστῐκώτερος", "δρᾱστῐκώτᾰτος", "δρᾱστῐκή", "", "efficient"]) + let v = native_list_append(v, ["ζηλότυπος", "adj", "ζηλοτῠπώτερος", "ζηλοτῠπώτᾰτος", "ζηλότῠπος", "", "jealous"]) + let v = native_list_append(v, ["πλαστικός", "adj", "πλᾰστῐκώτερος", "πλᾰστῐκώτᾰτος", "πλᾰστῐκή", "", "fit for moulding"]) + let v = native_list_append(v, ["σπαστικός", "adj", "σπᾰστῐκώτερος", "σπᾰστῐκώτᾰτος", "σπᾰστῐκή", "", "drawing in absorbing"]) + let v = native_list_append(v, ["καθαρτικός", "adj", "κᾰθᾰρτῐκώτερος", "κᾰθᾰρτῐκώτᾰτος", "κᾰθᾰρτῐκή", "", "of or fit"]) + let v = native_list_append(v, ["ταλαίπωρος", "adj", "τᾰλαιπωρότερος", "τᾰλαιπωρότᾰτος", "τᾰλαίπωρος", "", "suffering distressed miserable"]) + let v = native_list_append(v, ["ταλαιπωρικός", "adj", "τᾰλαιπωρῐκώτερος", "τᾰλαιπωρῐκώτᾰτος", "τᾰλαιπωρῐκή", "", "full of hardship"]) + let v = native_list_append(v, ["πωρός", "adj", "πωρότερος", "πωρότᾰτος", "πωρᾱ́", "", "miserable"]) + let v = native_list_append(v, ["ταπεινός", "adj", "τᾰπεινότερος", "τᾰπεινότᾰτος", "τᾰπεινή", "", "low"]) + let v = native_list_append(v, ["ληπτός", "adj", "ληπτότερος", "ληπτότᾰτος", "ληπτή", "", "apprehended taken"]) + let v = native_list_append(v, ["ἐμπειρικός", "adj", "ἐμπειρῐκώτερος", "ἐμπειρῐκώτᾰτος", "ἐμπειρῐκή", "", "experienced"]) + let v = native_list_append(v, ["ἔμπειρος", "adj", "ἐμπειρότερος", "ἐμπειρότᾰτος", "ἐμπείρω", "", "experienced or practiced"]) + let v = native_list_append(v, ["δόλιος", "adj", "δολῐώτερος", "δολῐώτᾰτος", "δολῐ́ᾱ", "", "crafty deceitful treacherous"]) + let v = native_list_append(v, ["σύλλεκτος", "adj", "σῠλλεκτότερος", "σῠλλεκτότᾰτος", "σῠ́λλεκτος", "", "gathered or brought"]) + let v = native_list_append(v, ["τοπικός", "adj", "τοπῐκώτερος", "τοπῐκώτᾰτος", "τοπῐκή", "", "of or for"]) + let v = native_list_append(v, ["ἱστορικός", "adj", "ῐ̔στορῐκώτερος", "ῐ̔στορῐκώτᾰτος", "ῐ̔στορῐκή", "", "exact precise scientific"]) + let v = native_list_append(v, ["εὐσεβής", "adj", "εὐσεβέστερος", "εὐσεβέστᾰτος", "εὐσεβεῖ", "", "pious righteous reverent"]) + let v = native_list_append(v, ["κινητικός", "adj", "κῑνητῐκώτερος", "κῑνητῐκώτᾰτος", "κῑνητῐκή", "", "of or for"]) + let v = native_list_append(v, ["ὑλικοῦ", "adj", "ὑλικοῦ", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["ὑλική", "adj", "ὑλική", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ὑλικόν", "adj", "ὑλικόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ὑλικῷ", "adj", "ὑλικῷ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["ὑλικέ", "adj", "ὑλικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὑλικῆς", "adj", "ὑλικῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ὑλικῇ", "adj", "ὑλικῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ὑλικήν", "adj", "ὑλικήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ὑλικώ", "adj", "ὑλικώ", "", "", "", "masculine nominative dual"]) + let v = native_list_append(v, ["ὑλικοῖν", "adj", "ὑλικοῖν", "", "", "", "masculine genitive dual"]) + let v = native_list_append(v, ["ὑλικά", "adj", "ὑλικά", "", "", "", "feminine nominative dual"]) + let v = native_list_append(v, ["ὑλικαῖν", "adj", "ὑλικαῖν", "", "", "", "feminine genitive dual"]) + let v = native_list_append(v, ["ὑλικοί", "adj", "ὑλικοί", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ὑλικῶν", "adj", "ὑλικῶν", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["ὑλικοῖς", "adj", "ὑλικοῖς", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["ὑλικούς", "adj", "ὑλικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ὑλικαί", "adj", "ὑλικαί", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["ὑλικαῖς", "adj", "ὑλικαῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ὑλικάς", "adj", "ὑλικάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ὀξύμωρος", "adj", "ὀξύμωρος", "", "ὀξῠ́μωρος", "", "pointedly foolish"]) + let v = native_list_append(v, ["ὀξύμωρον", "adj", "ὀξύμωρον", "", "", "", "inflection of ὀξῠ́μωρος"]) + let v = native_list_append(v, ["ὀξύμωρα", "adj", "ὀξύμωρα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μωρόν", "adj", "μωρόν", "", "", "", "inflection of μωρός"]) + let v = native_list_append(v, ["χρονικός", "adj", "χρονῐκώτερος", "χρονῐκώτᾰτος", "χρονῐκή", "", "of or concerning"]) + let v = native_list_append(v, ["ἀνασκευαστικός", "adj", "ᾰ̓νᾰσκευᾰστῐκώτερος", "ᾰ̓νᾰσκευᾰστῐκώτᾰτος", "ᾰ̓νᾰσκευᾰστῐκή", "", "destructive"]) + let v = native_list_append(v, ["κατασκευαστικός", "adj", "κατασκευαστικότερος", "κατασκευαστικότᾰτος", "κᾰτασκευαστῐκή", "", "fitted for providing"]) + let v = native_list_append(v, ["ἀνθρωπόλογος", "adj", "ἀνθρωπολογώτερος", "ἀνθρωπολογώτᾰτος", "ἀνθρωπολόγω", "", "speaking of man"]) + let v = native_list_append(v, ["δισσός", "adj", "δῐσσότερος", "δῐσσότᾰτος", "δῐσσή", "", "twofold double"]) + let v = native_list_append(v, ["διξός", "adj", "δῐξώτερος", "δῐξώτᾰτος", "δῐξή", "", "Ionic spelling of"]) + let v = native_list_append(v, ["ἐμμενετικός", "adj", "ἐμμενετικότερος", "ἐμμενετικότᾰτος", "ἐμμενετῐκή", "", "disposed to abide"]) + let v = native_list_append(v, ["εὑρετικός", "adj", "εὑρετῐκώτερος", "εὑρετῐκώτᾰτος", "εὑρετῐκή", "", "inventive ingenious"]) + let v = native_list_append(v, ["δύσθυμος", "adj", "δῠσθῡμότερος", "δῠσθῡμότᾰτος", "δῠ́σθῡμος", "", "desponding melancholy depressed"]) + let v = native_list_append(v, ["ἐγκρατής", "adj", "ἐγκρατέστερος", "ἐγκρατέστᾰτος", "ἐγκρᾰτής", "", "in possession of"]) + let v = native_list_append(v, ["ἐμμενετός", "adj", "ἐμμενετώτερος", "ἐμμενετώτᾰτος", "ἐμμενετή", "", "to be stood"]) + let v = native_list_append(v, ["εὔτηκτος", "adj", "εὐτηκτότερος", "εὐτηκτότᾰτος", "εὐτήκτω", "", "easily melted or"]) + let v = native_list_append(v, ["ἠθολόγος", "adj", "ἠθολογώτερος", "ἠθολογώτᾰτος", "ἠθολόγω", "", "painting manners or"]) + let v = native_list_append(v, ["θεόπνευστος", "adj", "θεοπνευστότερος", "θεοπνευστότᾰτος", "θεοπνεύστω", "", "God-breathed inspired by"]) + let v = native_list_append(v, ["ἰχθυοφάγος", "adj", "ἰχθυοφάγος", "", "ῐ̓χθῠοφᾰ́γος", "", "eating fish"]) + let v = native_list_append(v, ["ἰχθυφάγος", "adj", "ῐ̓χθῠφᾰγώτερος", "ῐ̓χθῠφᾰγώτᾰτος", "ῐ̓χθῠφᾰ́γος", "", "alternative spelling of"]) + let v = native_list_append(v, ["καταφρονητικός", "adj", "καταφρονητικότερος", "καταφρονητικότᾰτος", "κᾰταφρονητῐκή", "", "contemptuous disdainful"]) + let v = native_list_append(v, ["ἄοκνος", "adj", "ᾰ̓οκνότερος", "ᾰ̓οκνότᾰτος", "ᾰ̓́οκνος", "", "resolute without hesitation"]) + let v = native_list_append(v, ["συμμαχικός", "adj", "σῠμμᾰχῐκώτερος", "σῠμμᾰχῐκώτᾰτος", "σῠμμᾰχῐκή", "", "of or for"]) + let v = native_list_append(v, ["σύμμαχος", "adj", "σῠμμᾰχώτερος", "σῠμμᾰχώτᾰτος", "σῠ́μμᾰχος", "", "fighting along with"]) + let v = native_list_append(v, ["πτωτός", "adj", "πτωτότερος", "πτωτότᾰτος", "πτωτή", "", "apt to fall"]) + let v = native_list_append(v, ["πτωτικός", "adj", "πτωτῐκώτερος", "πτωτῐκώτᾰτος", "πτωτῐκή", "", "capable of inflection"]) + let v = native_list_append(v, ["ἐργώδης", "adj", "ἐργωδέστερος", "ἐργωδέστᾰτος", "ἐργώδει", "", "difficult troublesome"]) + let v = native_list_append(v, ["Μακεδονικός", "adj", "Μᾰκεδονῐκώτερος", "Μᾰκεδονῐκώτᾰτος", "Μᾰκεδονῐκή", "", "of or relating"]) + let v = native_list_append(v, ["Ἀθηναῖος", "adj", "Ἀθηναῖος", "", "Ἀθηναίᾱ", "", "of or relating"]) + let v = native_list_append(v, ["ἐπίμαχος", "adj", "ἐπῐμᾰχώτερος", "ἐπῐμᾰχώτᾰτος", "ἐπίμᾰχος", "", "that may easily"]) + let v = native_list_append(v, ["στατικός", "adj", "στᾰτῐκώτερος", "στᾰτῐκώτᾰτος", "στᾰτῐκή", "", "causing to stand"]) + let v = native_list_append(v, ["στυπτικός", "adj", "στυπτῐκώτερος", "στυπτῐκώτᾰτος", "στυπτῐκή", "", "astringent"]) + let v = native_list_append(v, ["συναπτικός", "adj", "σῠνᾰπτῐκώτερος", "σῠνᾰπτῐκώτᾰτος", "σῠνᾰπτῐκή", "", "capable of adjusting"]) + let v = native_list_append(v, ["συνθετικός", "adj", "σῠνθετῐκώτερος", "σῠνθετῐκώτᾰτος", "σῠνθετῐκή", "", "skilled in putting"]) + let v = native_list_append(v, ["ὑποθετικός", "adj", "ῠ̔ποθετῐκώτερος", "ῠ̔ποθετῐκώτᾰτος", "ῠ̔ποθετῐκή", "", "hypothetical"]) + let v = native_list_append(v, ["τακτικός", "adj", "τᾰκτῐκώτερος", "τᾰκτῐκώτᾰτος", "τᾰκτῐκή", "", "fit for ordering"]) + let v = native_list_append(v, ["τατικός", "adj", "τᾰτῐκώτερος", "τᾰτῐκώτᾰτος", "τᾰτῐκή", "", "exerting tension"]) + let v = native_list_append(v, ["ἀντιθετικός", "adj", "ᾰ̓ντῐθετῐκώτερος", "ᾰ̓ντῐθετῐκώτᾰτος", "ᾰ̓ντῐθετῐκή", "", "setting in opposition"]) + let v = native_list_append(v, ["νομοθετικός", "adj", "νομοθετῐκώτερος", "νομοθετῐκώτᾰτος", "νομοθετῐκή", "", "relating to legislation"]) + let v = native_list_append(v, ["ἀμυντικός", "adj", "ἀμυντικότερος", "ἀμυντικότᾰτος", "ἀμυντῐκή", "", "prompt to ward"]) + let v = native_list_append(v, ["βρωτικός", "adj", "βρωτῐκώτερος", "βρωτῐκώτᾰτος", "βρωτῐκή", "", "inclined to eat"]) + let v = native_list_append(v, ["ἀποθετικός", "adj", "ἀποθετῐκώτερος", "ἀποθετῐκώτᾰτος", "ἀποθετῐκή", "", "completing e.g. a"]) + let v = native_list_append(v, ["διαθετικός", "adj", "δῐᾰθετῐκώτερος", "δῐᾰθετῐκώτᾰτος", "δῐᾰθετῐκή", "", "affecting"]) + let v = native_list_append(v, ["ἐκθετικός", "adj", "ἐκθετῐκώτερος", "ἐκθετῐκώτᾰτος", "ἐκθετῐκή", "", "expository"]) + let v = native_list_append(v, ["ἐνθετικός", "adj", "ἐνθετικότερος", "ἐνθετικότᾰτος", "ἐνθετῐκή", "", "fit for implanting"]) + let v = native_list_append(v, ["ἐπενθετικός", "adj", "ἐπενθετικότερος", "ἐπενθετικότᾰτος", "ἐπενθετῐκή", "", "inserted"]) + let v = native_list_append(v, ["ἐπιθετικός", "adj", "ἐπιθετικότερος", "ἐπιθετικότᾰτος", "ἐπῐθετῐκή", "", "ready to attack"]) + let v = native_list_append(v, ["ἐπισυνθετικός", "adj", "ἐπῐσῠνθετῐκώτερος", "ἐπῐσῠνθετῐκώτᾰτος", "ἐπῐσῠνθετῐκή", "", "combining eclectic"]) + let v = native_list_append(v, ["ὀνοματοθετικός", "adj", "ὀνομᾰτοθετῐκώτερος", "ὀνομᾰτοθετῐκώτᾰτος", "ὀνομᾰτοθετῐκή", "", "prone to name-giving"]) + let v = native_list_append(v, ["προθετικός", "adj", "προθετῐκώτερος", "προθετῐκώτᾰτος", "προθετῐκή", "", "of or for"]) + let v = native_list_append(v, ["προσθετικός", "adj", "προσθετῐκώτερος", "προσθετῐκώτᾰτος", "προσθετῐκή", "", "adding repletive furthering"]) + let v = native_list_append(v, ["συγκαταθετικός", "adj", "σῠγκᾰτᾰθετῐκώτερος", "σῠγκᾰτᾰθετῐκώτᾰτος", "σῠγκᾰτᾰθετῐκή", "", "approving assenting affirmative"]) + let v = native_list_append(v, ["ὑπερθετικός", "adj", "ῠ̔περθετῐκώτερος", "ῠ̔περθετῐκώτᾰτος", "ῠ̔περθετῐκή", "", "superlative"]) + let v = native_list_append(v, ["δοτικός", "adj", "δοτῐκώτερος", "δοτῐκώτᾰτος", "δοτῐκή", "", "generous"]) + let v = native_list_append(v, ["σχιστός", "adj", "σχῐστότερος", "σχῐστότᾰτος", "σχῐστή", "", "cloven divided"]) + let v = native_list_append(v, ["αἰτιατικός", "adj", "αἰτῐᾱτῐκώτερος", "αἰτῐᾱτῐκώτᾰτος", "αἰτῐᾱτῐκή", "", "causal"]) + let v = native_list_append(v, ["κλητικός", "adj", "κλητῐκώτερος", "κλητῐκώτᾰτος", "κλητῐκή", "", "of or for"]) + let v = native_list_append(v, ["τυπικός", "adj", "τῠπῐκώτερος", "τῠπῐκώτᾰτος", "τῠπῐκή", "", "impressionable conforming to"]) + let v = native_list_append(v, ["ἀμφορικός", "adj", "ᾰ̓μφορῐκώτερος", "ᾰ̓μφορῐκώτᾰτος", "ᾰ̓μφορῐκή", "", "like an amphora"]) + let v = native_list_append(v, ["ὑστέρα", "adj", "ὑστέρα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["οἰκητικός", "adj", "οἰκητῐκώτερος", "οἰκητῐκώτᾰτος", "οἰκητῐκή", "", "accustomed to a"]) + let v = native_list_append(v, ["γνωστικός", "adj", "γνωστῐκώτερος", "γνωστῐκώτᾰτος", "γνωστῐκή", "", "of or for"]) + let v = native_list_append(v, ["ἐγγενικός", "adj", "ἐγγενῐκώτερος", "ἐγγενῐκώτᾰτος", "ἐγγενῐκή", "", "hereditary"]) + let v = native_list_append(v, ["αἰσθητικός", "adj", "αἰσθητῐκώτερος", "αἰσθητῐκώτᾰτος", "αἰσθητῐκή", "", "of or for"]) + let v = native_list_append(v, ["πλεκτικός", "adj", "πλεκτῐκώτερος", "πλεκτῐκώτᾰτος", "πλεκτῐκή", "", "of or occupied"]) + let v = native_list_append(v, ["λεκτικός", "adj", "λεκτῐκώτερος", "λεκτῐκώτᾰτος", "λεκτῐκή", "", "Good at speaking"]) + let v = native_list_append(v, ["γήινος", "adj", "γήινος", "γηϊνώτατος", "γηίνη", "", "of or pertaining"]) + let v = native_list_append(v, ["τροφικός", "adj", "τροφῐκώτερος", "τροφῐκώτᾰτος", "τροφῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["στροφικός", "adj", "στροφῐκώτερος", "στροφῐκώτᾰτος", "στροφῐκή", "", "fit for turning"]) + let v = native_list_append(v, ["ὕπατος", "adj", "ὕπατος", "", "ῠ̔πᾰ́τη", "", "highest uppermost"]) + let v = native_list_append(v, ["ὑπατικός", "adj", "ῠ̔πᾰτῐκώτερος", "ῠ̔πᾰτῐκώτᾰτος", "ῠ̔πᾰτῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["ἀνθυπατικός", "adj", "ᾰ̓νθῠπᾰτῐκώτερος", "ᾰ̓νθῠπᾰτῐκώτᾰτος", "ᾰ̓νθῠπᾰτῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["πύρινος", "adj", "πυρινότερος", "πυρινότᾰτος", "πυρίνη", "", "of or pertaining"]) + let v = native_list_append(v, ["ἀέρινος", "adj", "ᾱ̓ερῐνώτερος", "ᾱ̓ερῐνώτᾰτος", "ᾱ̓ερίνη", "", "of or pertaining"]) + let v = native_list_append(v, ["κακέ", "adj", "κακέ", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["γυιός", "adj", "γυιότερος", "γυιότᾰτος", "γυιή", "", "lame"]) + let v = native_list_append(v, ["δικαίων", "adj", "δικαίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["δικαίου", "adj", "δικαίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["θερινός", "adj", "θερινότερος", "θερινότᾰτος", "θερινή", "", "of or in"]) + let v = native_list_append(v, ["ἐαρινός", "adj", "ἐᾰρῐνώτερος", "ἐᾰρῐνώτᾰτος", "ἐᾰρῐνή", "", "of or in"]) + let v = native_list_append(v, ["ὀπωρινός", "adj", "ὀπωρῐνώτερος", "ὀπωρῐνώτᾰτος", "ὀπωρῐνή", "", "of or in"]) + let v = native_list_append(v, ["γίγαντα", "adj", "γίγαντα", "", "", "", "inflection of γῐ́γᾱς"]) + let v = native_list_append(v, ["γιγάντων", "adj", "γιγάντων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["γίγαντες", "adj", "γίγαντες", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["αἰδοῖον", "adj", "αἰδοῖον", "", "", "", "inflection of αἰδοῖος"]) + let v = native_list_append(v, ["παροινικός", "adj", "παροινικός", "", "παροινική", "", "addicted to wine"]) + let v = native_list_append(v, ["αἰώνιος", "adj", "αἰωνῐώτερος", "αἰωνῐώτᾰτος", "αἰωνῐ́ᾱ", "", "age-long lasting for"]) + let v = native_list_append(v, ["ἀντιπρακτικός", "adj", "ᾰ̓ντῐπρᾱκτῐκώτερος", "ᾰ̓ντῐπρᾱκτῐκώτᾰτος", "ᾰ̓ντῐπρᾱκτῐκή", "", "acting against counteracting"]) + let v = native_list_append(v, ["συμπρακτικός", "adj", "σῠμπρᾱκτῐκώτερος", "σῠμπρᾱκτῐκώτᾰτος", "σῠμπρᾱκτῐκή", "", "acting together cooperating"]) + let v = native_list_append(v, ["διαπρακτικός", "adj", "διαπρακτικότερος", "διαπρακτικότᾰτος", "δῐαπρακτῐκή", "", "effective operative"]) + let v = native_list_append(v, ["ἐμπρακτικός", "adj", "ἐμπρακτικότερος", "ἐμπρακτικότᾰτος", "ἐμπρακτῐκή", "", "efficacious"]) + let v = native_list_append(v, ["καταπρακτικός", "adj", "καταπρακτικότερος", "καταπρακτικότᾰτος", "κᾰταπρακτῐκή", "", "fitted for accomplishing"]) + let v = native_list_append(v, ["ἐνάρετος", "adj", "ἐνάρετος", "", "ἐνᾰ́ρετος", "", "virtuous"]) + let v = native_list_append(v, ["λοιπός", "adj", "λοιπός", "", "λοιπή", "", "remaining the rest"]) + let v = native_list_append(v, ["λοιπή", "adj", "λοιπή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["λοιπά", "adj", "λοιπά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["λοιποί", "adj", "λοιποί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["λοιπούς", "adj", "λοιπούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["λοιπέ", "adj", "λοιπέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πετεινέ", "adj", "πετεινέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πετεινοί", "adj", "πετεινοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πετεινούς", "adj", "πετεινούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["αἱμοφόβος", "adj", "αἱμοφοβώτερος", "αἱμοφοβώτᾰτος", "αἱμοφόβω", "", "blood-fearing afraid of"]) + let v = native_list_append(v, ["μαμμόθρεπτος", "adj", "μαμμόθρεπτος", "", "", "", "brought up by"]) + let v = native_list_append(v, ["τακτική", "adj", "τακτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἁδρός", "adj", "ᾰ̔δρότερος", "ᾰ̔δρότᾰτος", "ᾰ̔δρᾱ́", "", "full-grown grown up"]) + let v = native_list_append(v, ["μακάριος", "adj", "μᾰκᾰρῐώτερος", "μᾰκᾰρῐώτᾰτος", "μᾰκᾰρίᾱ", "", "blessed happy"]) + let v = native_list_append(v, ["ἀπροσδοκήτου", "adj", "ἀπροσδοκήτου", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["ἄριστος", "adj", "ἄριστος", "", "ᾰ̓ρῐ́στη", "", "superlative degree of"]) + let v = native_list_append(v, ["τιμητικός", "adj", "τῑμητῐκώτερος", "τῑμητῐκώτᾰτος", "τῑμητῐκή", "", "estimative determinative"]) + let v = native_list_append(v, ["ἐνώπιος", "adj", "ἐνωπῐώτερος", "ἐνωπῐώτᾰτος", "ἐνώπῐος", "", "face to face"]) + let v = native_list_append(v, ["ἐνώπιον", "adj", "ἐνώπιον", "", "", "", "inflection of ἐνώπιος"]) + let v = native_list_append(v, ["συνεχής", "adj", "σῠνεχέστερος", "σῠνεχέστᾰτος", "σῠνεχής", "", "continuous contiguous unintermitting"]) + let v = native_list_append(v, ["λοιπόν", "adj", "λοιπόν", "", "", "", "inflection of λοιπός"]) + let v = native_list_append(v, ["θαλάσσιος", "adj", "θᾰλᾰσσῐώτερος", "θᾰλᾰσσῐώτᾰτος", "θᾰλᾰσσῐ́ᾱ", "", "of in on"]) + let v = native_list_append(v, ["πάρευνος", "adj", "πάρευνος", "", "", "", "lying beside or"]) + let v = native_list_append(v, ["βοτανικός", "adj", "βοτᾰνῐκώτερος", "βοτᾰνῐκώτᾰτος", "βοτᾰνῐκή", "", "pertaining to herbs"]) + let v = native_list_append(v, ["γλυκύς", "adj", "γλῠκῠ́τερος", "γλῠκῠ́τᾰτος", "γλῠκεῖᾰ", "", "sweet taste"]) + let v = native_list_append(v, ["παράλογος", "adj", "πᾰρᾰλογώτερος", "πᾰρᾰλογώτᾰτος", "πᾰράλογος", "", "beyond calculation unexpected"]) + let v = native_list_append(v, ["λεπτόν", "adj", "λεπτόν", "", "", "", "inflection of λεπτός"]) + let v = native_list_append(v, ["μικρόν", "adj", "μικρόν", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["κεστός", "adj", "κεστότερος", "κεστότᾰτος", "κεστή", "", "stitched embroidered"]) + let v = native_list_append(v, ["ἁπλόος", "adj", "ᾰ̔πλοώτερος", "ᾰ̔πλοώτᾰτος", "ᾰ̔πλόη", "", "single onefold"]) + let v = native_list_append(v, ["λαϊκός", "adj", "λᾱῐ̈κώτερος", "λᾱῐ̈κώτᾰτος", "λᾱϊκή", "", "of or from"]) + let v = native_list_append(v, ["λαϊκά", "adj", "λαϊκά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["λαϊκοί", "adj", "λαϊκοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["λαϊκούς", "adj", "λαϊκούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["λαϊκή", "adj", "λαϊκή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["λαϊκέ", "adj", "λαϊκέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ἐρῆμος", "adj", "ἐρημότερος", "ἐρημότᾰτος", "ἐρήμη", "", "lonely lonesome solitary"]) + let v = native_list_append(v, ["ἱκανός", "adj", "ῐ̔κᾰνώτερος", "ῐ̔κᾰνώτᾰτος", "ῐ̔κᾰνή", "", "becoming befitting sufficient"]) + let v = native_list_append(v, ["περισσός", "adj", "περῐσσότερος", "περῐσσότᾰτος", "περῐσσή", "", "prodigious beyond the"]) + let v = native_list_append(v, ["ἰσχυρός", "adj", "ῐ̓σχῡρότερος", "ῐ̓σχῡρότᾰτος", "ἰσχῡρᾱ́", "", "strong mighty"]) + let v = native_list_append(v, ["ἀληθινός", "adj", "ᾰ̓ληθῐνώτερος", "ᾰ̓ληθῐνώτᾰτος", "ᾰ̓ληθῐνή", "", "truthful trustworthy"]) + let v = native_list_append(v, ["ἄπιστος", "adj", "ἀπῐστότερος", "ἀπῐστότᾰτος", "ἄπῐστος", "", "not to be"]) + let v = native_list_append(v, ["Λέσβια", "adj", "Λέσβια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["Λεσβία", "adj", "Λεσβία", "", "", "", "inflection of Λέσβῐος"]) + let v = native_list_append(v, ["ἐκλεκτός", "adj", "ἐκλεκτότερος", "ἐκλεκτότᾰτος", "ἐκλεκτή", "", "picked out select"]) + let v = native_list_append(v, ["πέτρινος", "adj", "πετρῐνώτερος", "πετρῐνώτᾰτος", "πετρῐ́νη", "", "rocky made of"]) + let v = native_list_append(v, ["λιπαρός", "adj", "λῐπᾰρώτερος", "λῐπᾰρώτᾰτος", "λῐπᾰρᾱ́", "", "oily shiny with"]) + let v = native_list_append(v, ["καρτερώ", "adj", "καρτερώ", "", "", "", "nominative/accusative/vocative dual masculine/neuter"]) + let v = native_list_append(v, ["ἀκόλουθος", "adj", "ᾰ̓κολουθότερος", "ᾰ̓κολουθότᾰτος", "ᾰ̓κόλουθος", "", "following attending"]) + let v = native_list_append(v, ["Λευϊτικός", "adj", "Λευϊτικός", "", "Λευῑ̈τῐκή", "", "pertaining to the"]) + let v = native_list_append(v, ["ἀζαλέος", "adj", "ἀζαλεώτερος", "ἀζαλεώτᾰτος", "ἀζᾰλέᾱ", "", "dry dried up"]) + let v = native_list_append(v, ["ἐπουράνιος", "adj", "ἐπουρᾰνῐώτερος", "ἐπουρᾰνῐώτᾰτος", "ἐπουρᾰνῐ́ᾱ", "", "in heaven heavenly"]) + let v = native_list_append(v, ["φανερός", "adj", "φᾰνερώτερος", "φᾰνερώτᾰτος", "φᾰνερᾱ́", "", "visible manifest evident"]) + let v = native_list_append(v, ["χρύσεος", "adj", "χρῡσεώτερος", "χρῡσεώτᾰτος", "χρυσέᾱ", "", "golden made of"]) + let v = native_list_append(v, ["ἕτοιμος", "adj", "ἑτοιμότερος", "ἑτοιμότᾰτος", "ἑτοίμη", "", "alternative form of"]) + let v = native_list_append(v, ["ἑτοῖμος", "adj", "ἑτοιμότερος", "ἑτοιμότᾰτος", "ἑτοίμω", "", "at hand ready"]) + let v = native_list_append(v, ["νήπιος", "adj", "νηπῐώτερος", "νηπῐώτᾰτος", "νηπῐ́ᾱ", "", "childish infantile juvenile"]) + let v = native_list_append(v, ["Γαλιλαῖος", "adj", "Γαλιλαιότερος", "Γαλιλαιότᾰτος", "Γαλιλαίᾱ", "", "Galilean"]) + let v = native_list_append(v, ["χωλός", "adj", "χωλότερος", "χωλότᾰτος", "χωλή", "", "lame halting limping"]) + let v = native_list_append(v, ["ἀλλότριος", "adj", "ᾰ̓λλοτρῐώτερος", "ᾰ̓λλοτρῐώτᾰτος", "ᾰ̓λλοτρίᾱ", "", "of or belonging"]) + let v = native_list_append(v, ["ὑψηλός", "adj", "ῠ̔ψηλότερος", "ῠ̔ψηλότᾰτος", "ῠ̔ψηλή", "", "high lofty"]) + let v = native_list_append(v, ["ἄφρων", "adj", "ᾰ̓φρονέστερος", "ᾰ̓φρονέστᾰτος", "ᾰ̓́φρων", "", "senseless crazed frantic"]) + let v = native_list_append(v, ["κλητός", "adj", "κλητός", "κλητότᾰτος", "κλητή", "", "called invited welcome"]) + let v = native_list_append(v, ["ἀδύνατος", "adj", "ᾰ̓δῠνᾰτώτερος", "ᾰ̓δῠνᾰτώτᾰτος", "ᾰ̓δῠ́νᾰτος", "", "unable"]) + let v = native_list_append(v, ["ἔνοχος", "adj", "ἐνοχώτερος", "ἐνοχώτᾰτος", "ἐνόχω", "", "held in bound"]) + let v = native_list_append(v, ["Αἰγύπτιος", "adj", "Αἰγύπτιος", "", "Αἰγυπτῐ́ᾱ", "", "Egyptian"]) + let v = native_list_append(v, ["Ἐφέσιος", "adj", "Ἐφεσῐώτερος", "Ἐφεσῐώτᾰτος", "Ἐφεσῐ́ᾱ", "", "Ephesian"]) + let v = native_list_append(v, ["ἀγαθοποιός", "adj", "ᾰ̓γᾰθοποιότερος", "ᾰ̓γᾰθοποιότᾰτος", "ᾰ̓γᾰθοποιός", "", "doing good beneficent"]) + let v = native_list_append(v, ["ἀγενεαλόγητος", "adj", "ᾰ̓γενεᾱλογητότερος", "ᾰ̓γενεᾱλογητότᾰτος", "ᾰ̓γενεᾱλόγητος", "", "of unrecorded descent"]) + let v = native_list_append(v, ["ἀγενής", "adj", "ἀγενέστερος", "ἀγενέστᾰτος", "ἀγενεῖ", "", "unborn uncreated"]) + let v = native_list_append(v, ["ἄγναφος", "adj", "ᾰ̓γνᾰφώτερος", "ᾰ̓γνᾰφώτᾰτος", "ᾰ̓́γνᾰφος", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἄγναπτος", "adj", "ᾰ̓γνᾰπτότερος", "ᾰ̓γνᾰπτότᾰτος", "ᾰ̓́γνᾰπτος", "", "not fulled or"]) + let v = native_list_append(v, ["ἀγοραῖος", "adj", "ᾰ̓γοραιότερος", "ᾰ̓γοραιότᾰτος", "ᾰ̓γοραίᾱ", "", "in of or"]) + let v = native_list_append(v, ["νικηφόρος", "adj", "νῑκηφορώτερος", "νῑκηφορώτᾰτος", "νῑκηφόρος", "", "bringing victory"]) + let v = native_list_append(v, ["ἀγράμματος", "adj", "ᾰ̓γρᾰμμᾰτώτερος", "ᾰ̓γρᾰμμᾰτώτᾰτος", "ᾰ̓γρᾰ́μμᾰτος", "", "without learning unlettered"]) + let v = native_list_append(v, ["ἀγριέλαιος", "adj", "ᾰ̓γρῐελαιότερος", "ᾰ̓γρῐελαιότᾰτος", "ᾰ̓γρῐέλαιος", "", "of a wild"]) + let v = native_list_append(v, ["χάλκεος", "adj", "χαλκεώτερος", "χαλκεώτᾰτος", "χᾰλκέᾱ", "", "of copper or"]) + let v = native_list_append(v, ["πεμπτός", "adj", "πεμπτότερος", "πεμπτότᾰτος", "πεμπτή", "", "sent"]) + let v = native_list_append(v, ["ἐΰς", "adj", "ἐΰς", "", "", "", "good brave noble"]) + let v = native_list_append(v, ["πλεῖστος", "adj", "πλεῖστος", "", "πλείστη", "", "most very much"]) + let v = native_list_append(v, ["περιφραστικός", "adj", "περῐφρᾰστῐκώτερος", "περῐφρᾰστῐκώτᾰτος", "περιφραστῐκή", "", "periphrastic"]) + let v = native_list_append(v, ["ὀξύτονος", "adj", "ὀξύτονος", "", "ὀξῠ́τονος", "", "sharp-sounding piercing"]) + let v = native_list_append(v, ["ὕστερος", "adj", "ὕστερος", "ὕστᾰτος", "ῠ̔στέρᾱ", "", "latter"]) + let v = native_list_append(v, ["ἑκών", "adj", "ἑκών", "", "ἑκοῦσα", "", "willing"]) + let v = native_list_append(v, ["λοιμώδης", "adj", "λοιμωδέστερος", "λοιμωδέστᾰτος", "λοιμώδει", "", "pestilential pertaining to"]) + let v = native_list_append(v, ["πιστέ", "adj", "πιστέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὀνομαστός", "adj", "ὀνομαστότερος", "ὀνομαστότᾰτος", "ὀνομαστή", "", "named"]) + let v = native_list_append(v, ["ὀνομαστή", "adj", "ὀνομαστή", "", "", "", "feminine singular nominative"]) + let v = native_list_append(v, ["ὀνομαστόν", "adj", "ὀνομαστόν", "", "", "", "inflection of ὀνομᾰστός"]) + let v = native_list_append(v, ["πλίνθινος", "adj", "πλινθῐνώτερος", "πλινθῐνώτᾰτος", "πλινθῐ́νη", "", "made or built"]) + let v = native_list_append(v, ["ποιητή", "adj", "ποιητή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ποιητικός", "adj", "ποιητῐκώτερος", "ποιητῐκώτᾰτος", "ποιητῐκή", "", "capable of making"]) + let v = native_list_append(v, ["μισθωτός", "adj", "μῐσθωτότερος", "μῐσθωτότᾰτος", "μισθωτή", "", "hired to be"]) + let v = native_list_append(v, ["μισθωτή", "adj", "μισθωτή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μισθωτέ", "adj", "μισθωτέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["μισθωτοί", "adj", "μισθωτοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["μισθωτούς", "adj", "μισθωτούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μισθωτά", "adj", "μισθωτά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πεζοπόρος", "adj", "πεζοπορώτερος", "πεζοπορώτᾰτος", "πεζοπόρω", "", "going by land"]) + let v = native_list_append(v, ["πρωτότυπος", "adj", "πρωτοτῠπώτερος", "πρωτοτῠπώτᾰτος", "πρωτότῠπος", "", "original primitive"]) + let v = native_list_append(v, ["πρωτότυπε", "adj", "πρωτότυπε", "", "", "", "masculine/feminine vocative singular"]) + let v = native_list_append(v, ["πρωτότυποι", "adj", "πρωτότυποι", "", "", "", "masculine/feminine nominative/vocative plural"]) + let v = native_list_append(v, ["πρωτότυπα", "adj", "πρωτότυπα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πρωτοτύπου", "adj", "πρωτοτύπου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["πρωτοτύπων", "adj", "πρωτοτύπων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["προφητικός", "adj", "προφητῐκώτερος", "προφητῐκώτᾰτος", "προφητῐκή", "", "oracular prophetic"]) + let v = native_list_append(v, ["περίβολος", "adj", "περῐβολώτερος", "περῐβολώτᾰτος", "περῐ́βολος", "", "going round compassing"]) + let v = native_list_append(v, ["ἄκαπνος", "adj", "ᾰ̓κᾰπνότερος", "ᾰ̓κᾰπνότᾰτος", "ᾰ̓́κᾰπνος", "", "without smoke smokeless"]) + let v = native_list_append(v, ["πλησίον", "adj", "πλησίον", "", "", "", "inflection of πλησίος"]) + let v = native_list_append(v, ["κυάνεος", "adj", "κῠᾰνεώτερος", "κῠᾰνεώτᾰτος", "κῠᾰνέᾱ", "", "of the color"]) + let v = native_list_append(v, ["σύνεδρος", "adj", "σῠνεδρότερος", "σῠνεδρότᾰτος", "σῠ́νεδρος", "", "sitting in council"]) + let v = native_list_append(v, ["ἀναλογητικός", "adj", "ᾰ̓νᾰλογητῐκώτερος", "ᾰ̓νᾰλογητῐκώτᾰτος", "ᾰ̓νᾰλογητῐκή", "", "proportional"]) + let v = native_list_append(v, ["ἀντιλογητικός", "adj", "ᾰ̓ντῐλογητῐκώτερος", "ᾰ̓ντῐλογητῐκώτᾰτος", "ᾰ̓ντῐλογητῐκή", "", "given to contradiction"]) + let v = native_list_append(v, ["ὁμολογητικός", "adj", "ὁμολογητῐκώτερος", "ὁμολογητῐκώτᾰτος", "ὁμολογητῐκή", "", "of or for"]) + let v = native_list_append(v, ["ἐξομολογητικός", "adj", "ἐξομολογητῐκώτερος", "ἐξομολογητῐκώτᾰτος", "ἐξομολογητῐκή", "", "giving thanks thankful"]) + let v = native_list_append(v, ["ἀντευεργετικός", "adj", "ἀντευεργετῐκώτερος", "ἀντευεργετῐκώτᾰτος", "ἀντευεργετῐκή", "", "prone to return"]) + let v = native_list_append(v, ["μακραί", "adj", "μακραί", "", "", "", "nominative feminine plural"]) + let v = native_list_append(v, ["γραμματικός", "adj", "γρᾰμμᾰτῐκώτερος", "γρᾰμμᾰτῐκώτᾰτος", "γρᾰμμᾰτῐκή", "", "knowing one’s letters"]) + let v = native_list_append(v, ["ἑξαπτέρυγος", "adj", "ἑξαπτέρυγος", "", "ἑξᾰπτέρῠγος", "", "six-winged hexapterous"]) + let v = native_list_append(v, ["νέκυς", "adj", "νεκῠ́τερος", "νεκῠ́τᾰτος", "νέκῡ̆ς", "", "dead deceased"]) + let v = native_list_append(v, ["λαῦρος", "adj", "λαυρότερος", "λαυρότᾰτος", "λαύρω", "", "alternative form of"]) + let v = native_list_append(v, ["λάβρος", "adj", "λᾱβρότερος", "λᾱβρότᾰτος", "λᾱ́βρος", "", "furious boisterous"]) + let v = native_list_append(v, ["ἐφήμερος", "adj", "ἐφημερώτερος", "ἐφημερώτᾰτος", "ἐφημέρω", "", "living only one"]) + let v = native_list_append(v, ["ἀδάπανος", "adj", "ᾰ̓δᾰπᾰνώτερος", "ᾰ̓δᾰπᾰνώτᾰτος", "ᾰ̓δᾰ́πᾰνος", "", "gratuitous free of"]) + let v = native_list_append(v, ["κακοήθης", "adj", "κᾰκοηθέστερος", "κᾰκοηθέστᾰτος", "κᾰκοήθης", "", "ill-disposed malicious"]) + let v = native_list_append(v, ["ἀδελφοί", "adj", "ἀδελφοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ναζιραῖος", "adj", "ναζιραιότερος", "ναζιραιότᾰτος", "ναζιραία", "", "consecrated in the"]) + let v = native_list_append(v, ["ἄβυσσα", "adj", "ἄβυσσα", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["ναζειραῖος", "adj", "νᾱζειραιότερος", "νᾱζειραιότᾰτος", "νᾱζειραίᾱ", "", "consecrated in the"]) + let v = native_list_append(v, ["ἄφωνος", "adj", "ᾰ̓φωνότερος", "ᾰ̓φωνότᾰτος", "ᾰ̓́φωνος", "", "voiceless dumb"]) + let v = native_list_append(v, ["ἀλαζών", "adj", "ᾰ̓λᾱζονέστερος", "ᾰ̓λᾱζονέστᾰτος", "ᾰ̓λᾱζών", "", "boastful pretentious"]) + let v = native_list_append(v, ["χαρίεις", "adj", "χᾰρῐέστερος", "χᾰρῐέστᾰτος", "χᾰρῐ́εσσᾰ", "", "graceful beautiful elegant"]) + let v = native_list_append(v, ["φωνήεις", "adj", "φωνηέστερος", "φωνηέστᾰτος", "φωνήεσσᾰ", "", "endowed with speech"]) + let v = native_list_append(v, ["φωνῆς", "adj", "φωνήστερος", "φωνήστᾰτος", "φωνῆσσᾰ", "", "contracted form of"]) + let v = native_list_append(v, ["ἀμέθυστος", "adj", "ᾰ̓μεθῠστότερος", "ᾰ̓μεθῠστότᾰτος", "ᾰ̓μέθῠστος", "", "not drunken without"]) + let v = native_list_append(v, ["δασεία", "adj", "δασεία", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἀμφίβραχυς", "adj", "ἀμφίβραχυς", "", "ᾰ̓μφῐβρᾰ́χειᾰ", "", "amphibrachic"]) + let v = native_list_append(v, ["ἀρθρῖτις", "adj", "ἀρθρῖτις", "", "ἀρθρῖτῐς", "", "disease of or"]) + let v = native_list_append(v, ["γίγας", "adj", "γίγας", "", "γῐ́γᾱς", "", "mighty powerful"]) + let v = native_list_append(v, ["βαρεῖα", "adj", "βαρεῖα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ὀξεῖα", "adj", "ὀξεῖα", "", "", "", "inflection of ὀξῠ́ς"]) + let v = native_list_append(v, ["ὀξείας", "adj", "ὀξείας", "", "", "", "inflection of ὀξῠ́ς"]) + let v = native_list_append(v, ["ὀξεῖαι", "adj", "ὀξεῖαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["δασύς", "adj", "δᾰσῠ́τερος", "δᾰσῠ́τᾰτος", "δᾰσεῖᾰ", "", "hairy shaggy"]) + let v = native_list_append(v, ["ὀξεῖαν", "adj", "ὀξεῖαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ὀξείᾳ", "adj", "ὀξείᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["δασεῖα", "adj", "δασεῖα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["φθισικός", "adj", "φθῐσῐκώτερος", "φθῐσῐκώτᾰτος", "φθῐσῐκή", "", "consumptive"]) + let v = native_list_append(v, ["ἐξωτικός", "adj", "ἐξωτῐκώτερος", "ἐξωτῐκώτᾰτος", "ἐξωτῐκή", "", "foreign outlying alien"]) + let v = native_list_append(v, ["ἁλουργής", "adj", "ἁλουργέστερος", "ἁλουργέστᾰτος", "ἁλουργεῖ", "", "sea-purple genuine purple"]) + let v = native_list_append(v, ["ξυλικός", "adj", "ξῠλῐκώτερος", "ξῠλῐκώτᾰτος", "ξῠλῐκή", "", "of wood wooden"]) + let v = native_list_append(v, ["βραχύ", "adj", "βραχύ", "", "", "", "vocative masculine singular"]) + let v = native_list_append(v, ["βραχεῖα", "adj", "βραχεῖα", "", "", "", "nominative/vocative feminine singular"]) + let v = native_list_append(v, ["μακράν", "adj", "μακράν", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["βαρεῖαν", "adj", "βαρεῖαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["δασεῖαν", "adj", "δασεῖαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ψιλήν", "adj", "ψιλήν", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["ἰδίαν", "adj", "ἰδίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["παιδοφίλης", "adj", "παιδοφίλης", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["γραμματικῶν", "adj", "γραμματικῶν", "", "", "", "genitive masculine plural"]) + let v = native_list_append(v, ["στοιχειώδης", "adj", "στοιχειωδέστερος", "στοιχειωδέστᾰτος", "στοιχειώδει", "", "elementary"]) + let v = native_list_append(v, ["στερεά", "adj", "στερεά", "", "", "", "inflection of στερεός"]) + let v = native_list_append(v, ["στερεάς", "adj", "στερεάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["εὐώδης", "adj", "εὐωδέστερος", "εὐωδέστᾰτος", "εὐώδει", "", "sweetsmelling fragrant"]) + let v = native_list_append(v, ["κεχηνώδης", "adj", "κεχηνωδέστερος", "κεχηνωδέστᾰτος", "κεχηνώδει", "", "forming a hiatus"]) + let v = native_list_append(v, ["κεχηνῶδες", "adj", "κεχηνῶδες", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἀγνώς", "adj", "ἀγνώς", "", "ᾰ̓γνώς", "", "in passive constructions"]) + let v = native_list_append(v, ["καταλυτική", "adj", "καταλυτική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["καταλυτικός", "adj", "καταλυτικός", "", "κᾰτᾰλῠτῐκή", "", "able to dissolve"]) + let v = native_list_append(v, ["βαρείᾳ", "adj", "βαρείᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["φωνάεις", "adj", "φωνᾱέστερος", "φωνᾱέστᾰτος", "φωνᾱ́εσσᾰ", "", "Doric and Aeolic"]) + let v = native_list_append(v, ["μερικά", "adj", "μερικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["μερικούς", "adj", "μερικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["κάθετε", "adj", "κάθετε", "", "", "", "masculine/feminine vocative singular"]) + let v = native_list_append(v, ["ἐράσμιος", "adj", "ἐρᾰσμῐώτερος", "ἐρᾰσμῐώτᾰτος", "ἐρᾰ́σμῐος", "", "lovely pleasant"]) + let v = native_list_append(v, ["μεστός", "adj", "μεστότερος", "μεστότᾰτος", "μεστή", "", "full"]) + let v = native_list_append(v, ["Ξενοφώντειος", "adj", "Ξενοφωντειότερος", "Ξενοφωντειότᾰτος", "Ξενοφωντείᾱ", "", "of or by"]) + let v = native_list_append(v, ["Ξενοφόντειος", "adj", "Ξενοφοντειότερος", "Ξενοφοντειότᾰτος", "Ξενοφοντείᾱ", "", "alternative form of"]) + let v = native_list_append(v, ["χρήσιμος", "adj", "χρησῐμώτερος", "χρησῐμώτᾰτος", "χρησίμη", "", "useful serviceable profitable"]) + let v = native_list_append(v, ["Τραπεζούντιος", "adj", "Τρᾰπεζουντῐώτερος", "Τρᾰπεζουντῐώτᾰτος", "Τρᾰπεζουντῐ́ᾱ", "", "Trapezuntine of Trebizond"]) + let v = native_list_append(v, ["πρωτότοκος", "adj", "πρωτότοκος", "πρωτοτοκώτᾰτος", "πρωτοτόκω", "", "first-born"]) + let v = native_list_append(v, ["ἐλεφάντινος", "adj", "ἐλεφαντινότερος", "ἐλεφαντινότᾰτος", "ἐλεφαντίνη", "", "ivory attributive made"]) + let v = native_list_append(v, ["χρυσελεφάντινος", "adj", "χρῡσελεφᾰντῐνώτερος", "χρῡσελεφᾰντῐνώτᾰτος", "χρῡσελεφᾰντῐ́νη", "", "made of gold"]) + let v = native_list_append(v, ["μονοούσιος", "adj", "μονοουσιότερος", "μονοουσιότᾰτος", "μονοούσῐος", "", "having one and"]) + let v = native_list_append(v, ["θαρραλέος", "adj", "θᾰρρᾰλεώτερος", "θᾰρρᾰλεώτᾰτος", "θᾰρρᾰλέᾱ", "", "daring courageous"]) + let v = native_list_append(v, ["βέλτιον", "adj", "βέλτιον", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["θαλάττιος", "adj", "θᾰλᾰττῐώτερος", "θᾰλᾰττῐώτᾰτος", "θᾰλᾰττῐ́ᾱ", "", "Attic form of"]) + let v = native_list_append(v, ["καλοήθης", "adj", "κᾰλοηθέστερος", "κᾰλοηθέστᾰτος", "κᾰλοήθης", "", "good-natured virtuous"]) + let v = native_list_append(v, ["ἀφαιρετικός", "adj", "ᾰ̓φαιρετῐκώτερος", "ᾰ̓φαιρετῐκώτᾰτος", "ᾰ̓φαιρετῐκή", "", "fit for taking"]) + let v = native_list_append(v, ["καταπληκτικός", "adj", "κᾰτᾰπληκτῐκώτερος", "κᾰτᾰπληκτῐκώτᾰτος", "κᾰταπληκτῐκή", "", "striking astonishing"]) + let v = native_list_append(v, ["ὀκρίς", "adj", "ὀκρίς", "", "ὀκρῐ́ς", "", "rugged peaked"]) + let v = native_list_append(v, ["νεκυϊκός", "adj", "νεκυϊκός", "", "νεκῠῐ̈κή", "", "of the dead"]) + let v = native_list_append(v, ["ἀδέσποτος", "adj", "ᾰ̓δεσποτώτερος", "ᾰ̓δεσποτώτᾰτος", "ᾰ̓δέσποτος", "", "without master or"]) + let v = native_list_append(v, ["τρισάθλιος", "adj", "τρῐσᾱθλῐώτερος", "τρῐσᾱθλῐώτᾰτος", "τρῐσᾱθλῐ́ᾱ", "", "thrice unhappy"]) + let v = native_list_append(v, ["βαρείας", "adj", "βαρείας", "", "", "", "inflection of βᾰρῠ́ς"]) + let v = native_list_append(v, ["θεόσοφος", "adj", "θεοσοφώτερος", "θεοσοφώτᾰτος", "θεοσόφω", "", "wise in divine"]) + let v = native_list_append(v, ["χαλαρός", "adj", "χᾰλᾰρώτερος", "χᾰλᾰρώτᾰτος", "χᾰλᾰρᾱ́", "", "slack loose supple"]) + let v = native_list_append(v, ["πολυχρόνιος", "adj", "πολῠχρονῐώτερος", "πολῠχρονῐώτᾰτος", "πολῠχρόνῐος", "", "of olden time"]) + let v = native_list_append(v, ["ἀφαιρετική", "adj", "ἀφαιρετική", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["στροβίλινος", "adj", "στροβῑλῐνώτερος", "στροβῑλῐνώτᾰτος", "στροβῑλῐ́νη", "", "of or pertaining"]) + let v = native_list_append(v, ["ποδαγρός", "adj", "ποδᾰγρότερος", "ποδᾰγρότᾰτος", "ποδᾰγρός", "", "gouty"]) + let v = native_list_append(v, ["ποδαγρικός", "adj", "ποδᾰγρῐκώτερος", "ποδᾰγρῐκώτᾰτος", "ποδᾰγρῐκή", "", "gouty"]) + let v = native_list_append(v, ["χερσαῖος", "adj", "χερσαιότερος", "χερσαιότᾰτος", "χερσαίᾱ", "", "from or of"]) + let v = native_list_append(v, ["διαλυτός", "adj", "διαλυτός", "", "δῐᾰλῠτή", "", "capable of dissolution"]) + let v = native_list_append(v, ["διάλυτος", "adj", "δῐᾰλῠτώτερος", "δῐᾰλῠτώτᾰτος", "δῐᾰ́λῠτος", "", "relaxed"]) + let v = native_list_append(v, ["διαλυτικός", "adj", "δῐᾰλῠτῐκώτερος", "δῐᾰλῠτῐκώτᾰτος", "δῐᾰλῠτῐκή", "", "able to sever"]) + let v = native_list_append(v, ["ἀντίλογος", "adj", "ᾰ̓ντῐλογώτερος", "ᾰ̓ντῐλογώτᾰτος", "ᾰ̓ντῐ́λογος", "", "contradictory reverse"]) + let v = native_list_append(v, ["φωνῆεν", "adj", "φωνῆεν", "", "", "", "inflection of φωνήεις"]) + let v = native_list_append(v, ["τρίσμακαρ", "adj", "τρίσμακαρ", "", "τρῐ́σμᾰκᾰρ", "", "thrice blessed"]) + let v = native_list_append(v, ["θετός", "adj", "θετώτερος", "θετώτᾰτος", "θετή", "", "placed put settled"]) + let v = native_list_append(v, ["ἀντίθετος", "adj", "ἀντίθετος", "", "ᾰ̓ντῐ́θετος", "", "opposing contrasting"]) + let v = native_list_append(v, ["διάλυτον", "adj", "διάλυτον", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["διαλυτόν", "adj", "διαλυτόν", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["ἀθάνατος", "adj", "ᾱ̓θᾰνᾰτώτερος", "ᾱ̓θᾰνᾰτώτᾰτος", "ᾱ̓θᾰ́νᾰτος", "", "undying immortal"]) + let v = native_list_append(v, ["Ἀριστοφάνειος", "adj", "Ἀρῐστοφᾰνειότερος", "Ἀρῐστοφᾰνειότᾰτος", "Ἀρῐστοφᾰνείᾱ", "", "of Aristophanes"]) + let v = native_list_append(v, ["χαλεπός", "adj", "χᾰλεπώτερος", "χᾰλεπώτᾰτος", "χᾰλεπή", "", "difficult hard"]) + let v = native_list_append(v, ["παρώνυμος", "adj", "πᾰρωνῠμώτερος", "πᾰρωνῠμώτᾰτος", "πᾰρώνῠμος", "", "formed by a"]) + let v = native_list_append(v, ["παρώνυμον", "adj", "παρώνυμον", "", "", "", "inflection of πᾰρώνῠμος"]) + let v = native_list_append(v, ["παρώνυμα", "adj", "παρώνυμα", "", "", "", "nominative neuter plural"]) + let v = native_list_append(v, ["τραυματικός", "adj", "τραυμᾰτῐκώτερος", "τραυμᾰτῐκώτᾰτος", "τραυμᾰτῐκή", "", "of or for"]) + let v = native_list_append(v, ["σύμφωνα", "adj", "σύμφωνα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["παιδόφιλος", "adj", "παιδοφῐλώτερος", "παιδοφῐλώτᾰτος", "παιδοφῐ́λη", "", "child-loving"]) + let v = native_list_append(v, ["ἀσύνδετος", "adj", "ᾰ̓σῠνδετώτερος", "ᾰ̓σῠνδετώτᾰτος", "ᾰ̓σῠ́νδετος", "", "unconnected loose"]) + let v = native_list_append(v, ["ἀπόθεος", "adj", "ᾰ̓ποθεώτερος", "ᾰ̓ποθεώτᾰτος", "ᾰ̓πόθεος", "", "far from the"]) + let v = native_list_append(v, ["σύνδετος", "adj", "σῠνδετώτερος", "σῠνδετώτᾰτος", "σῠ́νδετος", "", "bound hand and"]) + let v = native_list_append(v, ["βλαδύς", "adj", "βλᾰδῠ́τερος", "βλᾰδῠ́τᾰτος", "βλαδεῖᾰ", "", "weak"]) + let v = native_list_append(v, ["παράδοξος", "adj", "πᾰρᾰδοξώτερος", "πᾰρᾰδοξώτᾰτος", "πᾰρᾰ́δοξος", "", "contrary to expectation"]) + let v = native_list_append(v, ["κατοικικός", "adj", "κατοικικός", "κᾰτοικῐκώτᾰτος", "κᾰτοικῐκή", "", "assigned to κάτοικοι"]) + let v = native_list_append(v, ["μαστιγοφόρος", "adj", "μαστιγοφόρος", "μαστῑγοφορώτᾰτος", "μαστῑγοφόρος", "", "scourge-bearing"]) + let v = native_list_append(v, ["βύβλινος", "adj", "βῠβλῐνώτερος", "βῠβλῐνώτᾰτος", "βῠβλῐ́νη", "", "made of papyrus"]) + let v = native_list_append(v, ["ὁλοσηρικός", "adj", "ὁλοσηρικός", "ὁλοσηρῐκώτᾰτος", "ὁλοσηρῐκή", "", "of silk"]) + let v = native_list_append(v, ["ὁλοσειρικός", "adj", "ὁλοσειρικός", "ὁλοσειρῐκώτᾰτος", "ὁλοσειρῐκή", "", "alternative spelling of"]) + let v = native_list_append(v, ["σηρικός", "adj", "σηρῐκώτερος", "σηρῐκώτᾰτος", "σηρῐκή", "", "silken made of"]) + let v = native_list_append(v, ["ψαρά", "adj", "ψαρά", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["διαρκής", "adj", "δῐᾰρκέστερος", "δῐᾰρκέστᾰτος", "δῐᾰρκής", "", "sufficient"]) + let v = native_list_append(v, ["θρεπτικός", "adj", "θρεπτῐκώτερος", "θρεπτῐκώτᾰτος", "θρεπτῐκή", "", "able to feed"]) + let v = native_list_append(v, ["ἀξιοπρεπής", "adj", "ἀξιοπρεπέστερος", "ἀξιοπρεπέστᾰτος", "ἀξιοπρεπεῖ", "", "proper becoming"]) + let v = native_list_append(v, ["ἑξηκοστός", "adj", "ἑξηκοστότερος", "ἑξηκοστότᾰτος", "ἑξηκοστή", "", "sixtieth"]) + let v = native_list_append(v, ["ἑξηκοντάμοιρος", "adj", "ἑξηκονταμοιρότερος", "ἑξηκονταμοιρότᾰτος", "ἑξηκονταμοίρω", "", "consisting of sixty"]) + let v = native_list_append(v, ["κρήγυος", "adj", "κρηγῠώτερος", "κρηγῠώτᾰτος", "κρήγῠος", "", "good useful agreeable"]) + let v = native_list_append(v, ["φραστικός", "adj", "φρᾰστῐκώτερος", "φρᾰστῐκώτᾰτος", "φρᾰστῐκή", "", "indicative expressive"]) + let v = native_list_append(v, ["φυτικός", "adj", "φυτικός", "", "φῠτῐκή", "", "of or belonging"]) + let v = native_list_append(v, ["ἑβδομηκοστόπρωτος", "adj", "ἑβδομηκοστοπρωτότερος", "ἑβδομηκοστοπρωτότᾰτος", "ἑβδομηκοστοπρώτη", "", "seventy-first"]) + let v = native_list_append(v, ["πρωτός", "adj", "πρωτότερος", "πρωτότᾰτος", "πρωτή", "", "destined"]) + let v = native_list_append(v, ["πεντεκαιδέκατος", "adj", "πεντεκαιδεκᾰτώτερος", "πεντεκαιδεκᾰτώτᾰτος", "πεντεκαιδεκᾰ́τη", "", "fifteenth"]) + let v = native_list_append(v, ["ἑκκαιδέκατος", "adj", "ἑκκαιδέκατος", "ἑκκαιδεκᾰτώτᾰτος", "ἑκκαιδεκᾰ́τη", "", "sixteenth"]) + let v = native_list_append(v, ["πλάγιον", "adj", "πλάγιον", "", "", "", "inflection of πλάγιος"]) + let v = native_list_append(v, ["μονογενής", "adj", "μονογενέστερος", "μονογενέστᾰτος", "μονογενεῖ", "", "being the only"]) + let v = native_list_append(v, ["μουνογενής", "adj", "μουνογενέστερος", "μουνογενέστᾰτος", "μουνογενέε", "", "alternative form of"]) + let v = native_list_append(v, ["κυριακή", "adj", "κυριακή", "", "", "", "nominative/vocative singular feminine"]) + let v = native_list_append(v, ["οἰκεῖος", "adj", "οἰκειότερος", "οἰκειότᾰτος", "οἰκείᾱ", "", "in the house"]) + let v = native_list_append(v, ["συμφώνου", "adj", "συμφώνου", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["συμφώνων", "adj", "συμφώνων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἡμίονος", "adj", "ἡμῐονώτερος", "ἡμῐονώτᾰτος", "ἡμῐ́ονος", "", "mule"]) + let v = native_list_append(v, ["γραμμικός", "adj", "γρᾰμμῐκώτερος", "γρᾰμμῐκώτᾰτος", "γρᾰμμῐκή", "", "geometrical"]) + let v = native_list_append(v, ["εὔψυχος", "adj", "εὐψῡχότερος", "εὐψῡχότᾰτος", "εὔψῡχος", "", "of good courage"]) + let v = native_list_append(v, ["ἀόριστος", "adj", "ᾰ̓ορῐστότερος", "ᾰ̓ορῐστότᾰτος", "ᾰ̓όρῐστος", "", "indefinite indeterminate"]) + let v = native_list_append(v, ["ἀνταρκτικός", "adj", "ἀνταρκτικός", "", "ἀνταρκτική", "", "antarctic opposite to"]) + let v = native_list_append(v, ["Εὐριπίδειος", "adj", "Εὐρῑπῐδειότερος", "Εὐρῑπῐδειότᾰτος", "Εὐρῑπῐδείη", "", "Euripidean of or"]) + let v = native_list_append(v, ["ὀλιγόθερμος", "adj", "ὀλῐγοθερμότερος", "ὀλῐγοθερμότᾰτος", "ὀλῐγόθερμος", "", "having little heat"]) + let v = native_list_append(v, ["λόγιος", "adj", "λογῐώτερος", "λογῐώτᾰτος", "λογί̆ᾱ", "", "versed in tales"]) + let v = native_list_append(v, ["φίλον", "adj", "φίλον", "", "", "", "inflection of φῐ́λος"]) + let v = native_list_append(v, ["Θεσσαλικός", "adj", "Θεσσᾰλῐκώτερος", "Θεσσᾰλῐκώτᾰτος", "Θεσσᾰλῐκή", "", "Thessalian"]) + let v = native_list_append(v, ["Θεσσαλικά", "adj", "Θεσσαλικά", "", "", "", "Aeolic nominative singular"]) + let v = native_list_append(v, ["γαμικός", "adj", "γᾰμῐκώτερος", "γᾰμῐκώτᾰτος", "γᾰμῐκή", "", "of or for"]) + let v = native_list_append(v, ["ἁβρός", "adj", "ᾰ̔βρότερος", "ᾰ̔βρότᾰτος", "ᾰ̔βρᾱ́", "", "graceful delicate pretty"]) + let v = native_list_append(v, ["γραπτῶν", "adj", "γραπτῶν", "", "", "", "genitive plural masculine"]) + let v = native_list_append(v, ["σύντομος", "adj", "συντομώτερος", "συντομώτᾰτος", "συντόμω", "", "cut short abridged"]) + let v = native_list_append(v, ["Ἑλληνικῆς", "adj", "Ἑλληνικῆς", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["ζωγραφικός", "adj", "ζωγρᾰφῐκώτερος", "ζωγρᾰφῐκώτᾰτος", "ζωγρᾰφῐκή", "", "skilled in painting"]) + let v = native_list_append(v, ["ζωγραφική", "adj", "ζωγραφική", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["ζωγραφικῆς", "adj", "ζωγραφικῆς", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["ζῳγραφικός", "adj", "ζῳγρᾰφῐκώτερος", "ζῳγρᾰφῐκώτᾰτος", "ζῳγρᾰφῐκή", "", "alternative spelling of"]) + let v = native_list_append(v, ["ζῳγραφική", "adj", "ζῳγραφική", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["ζῳγραφικῆς", "adj", "ζῳγραφικῆς", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["ἡπατίζων", "adj", "ἡπατίζων", "", "ἡπᾰτῐ́ζουσᾰ", "", "liver-colored liver-like"]) + let v = native_list_append(v, ["γραμματικόν", "adj", "γραμματικόν", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["ὀκτάπους", "adj", "ὀκτάπους", "", "ὀκτᾰ́πους", "", "eight-footed"]) + let v = native_list_append(v, ["δοτική", "adj", "δοτική", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["ἑτέρα", "adj", "ἑτέρα", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["ἕτερα", "adj", "ἕτερα", "", "", "", "nominative plural neuter"]) + let v = native_list_append(v, ["ἐμπειρικοί", "adj", "ἐμπειρικοί", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["ἐμπειρική", "adj", "ἐμπειρική", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["παντοκρατής", "adj", "παντοκρατέστερος", "παντοκρατέστᾰτος", "παντοκρατεῖ", "", "all-powerful omnipotent"]) + let v = native_list_append(v, ["φωνάεντα", "adj", "φωνάεντα", "", "", "", "inflection of φωνᾱ́εις"]) + let v = native_list_append(v, ["φωνήεντα", "adj", "φωνήεντα", "", "", "", "inflection of φωνήεις"]) + let v = native_list_append(v, ["φάρμακος", "adj", "φάρμακος", "", "", "", "pertaining to magical"]) + let v = native_list_append(v, ["κανονικός", "adj", "κᾰνονῐκώτερος", "κᾰνονῐκώτᾰτος", "κᾰνονῐκή", "", "of or belonging"]) + let v = native_list_append(v, ["πρυμνός", "adj", "πρῠμνότερος", "πρῠμνότᾰτος", "πρυμνή", "", "hindmost undermost endmost"]) + let v = native_list_append(v, ["πηγαῖος", "adj", "πηγαιότερος", "πηγαιότᾰτος", "πηγαίᾱ", "", "of or from"]) + let v = native_list_append(v, ["δεξιά", "adj", "δεξιά", "", "", "", "inflection of δεξιός"]) + let v = native_list_append(v, ["βραχυδάκτυλος", "adj", "βρᾰχῠδᾰκτῠλώτερος", "βρᾰχῠδᾰκτῠλώτᾰτος", "βρᾰχῠδᾰ́κτῠλος", "", "short-fingered brachydactylous"]) + let v = native_list_append(v, ["ἀμβρόσιος", "adj", "ἀμβροσῐώτερος", "ἀμβροσῐώτᾰτος", "ᾰ̓μβροσῐ́ᾱ", "", "immortal divine"]) + let v = native_list_append(v, ["θρασύς", "adj", "θρᾰσῠ́τερος", "θρᾰσῠ́τᾰτος", "θρᾰσεῖᾰ", "", "brave courageous"]) + let v = native_list_append(v, ["ἄρρην", "adj", "ᾰ̓ρρέντερος", "ᾰ̓ρρέντᾰτος", "ᾰ̓́ρρην", "", "alternative form of"]) + let v = native_list_append(v, ["ἄρρενος", "adj", "ἄρρενος", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["Σικελός", "adj", "Σῐκελώτερος", "Σῐκελώτᾰτος", "Σῐκελή", "", "Sicel"]) + let v = native_list_append(v, ["Σικελή", "adj", "Σικελή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["θήλεος", "adj", "θήλεος", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["χθόνιος", "adj", "χθονῐώτερος", "χθονῐώτᾰτος", "χθονῐ́ᾱ", "", "underground subterranean chthonian"]) + let v = native_list_append(v, ["χθονίαν", "adj", "χθονίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["χθονίας", "adj", "χθονίας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["χθόνια", "adj", "χθόνια", "", "", "", "inflection of χθόνῐος"]) + let v = native_list_append(v, ["χθονίᾳ", "adj", "χθονίᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["χθονίου", "adj", "χθονίου", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["χθονίους", "adj", "χθονίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["χθονίοις", "adj", "χθονίοις", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["χθονίαις", "adj", "χθονίαις", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["χθόνιε", "adj", "χθόνιε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["χθονίῳ", "adj", "χθονίῳ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["χθονίων", "adj", "χθονίων", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["χθονίω", "adj", "χθονίω", "", "", "", "masculine nominative dual"]) + let v = native_list_append(v, ["χθόνιον", "adj", "χθόνιον", "", "", "", "inflection of χθόνῐος"]) + let v = native_list_append(v, ["χθόνιοι", "adj", "χθόνιοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["χθόνιαι", "adj", "χθόνιαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["χρυσελεφαντίνης", "adj", "χρυσελεφαντίνης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνην", "adj", "χρυσελεφαντίνην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνῃ", "adj", "χρυσελεφαντίνῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνη", "adj", "χρυσελεφαντίνη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["χρυσελεφάντινον", "adj", "χρυσελεφάντινον", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνοις", "adj", "χρυσελεφαντίνοις", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["χρυσελεφαντίνων", "adj", "χρυσελεφαντίνων", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["χρυσελεφαντίνοιν", "adj", "χρυσελεφαντίνοιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["χρυσελεφαντίνω", "adj", "χρυσελεφαντίνω", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["χρυσελεφαντίνῳ", "adj", "χρυσελεφαντίνῳ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνου", "adj", "χρυσελεφαντίνου", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνα", "adj", "χρυσελεφαντίνα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["χρυσελεφάντινα", "adj", "χρυσελεφάντινα", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["χρυσελεφαντίναιν", "adj", "χρυσελεφαντίναιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["χρυσελεφαντίνας", "adj", "χρυσελεφαντίνας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["χρυσελεφάντιναι", "adj", "χρυσελεφάντιναι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["χρυσελεφάντινε", "adj", "χρυσελεφάντινε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["χρυσελεφαντίνους", "adj", "χρυσελεφαντίνους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["χρυσελεφάντινοι", "adj", "χρυσελεφάντινοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["χρυσελεφαντίναις", "adj", "χρυσελεφαντίναις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ὑπόγειος", "adj", "ῠ̔πογειότερος", "ῠ̔πογειότᾰτος", "ῠ̔πόγειος", "", "underground subterranean chthonian"]) + let v = native_list_append(v, ["ὑπογείοιν", "adj", "ὑπογείοιν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ὑπογείου", "adj", "ὑπογείου", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["ὑπογείω", "adj", "ὑπογείω", "", "", "", "masculine/feminine/neuter nominative/accusative/vocative dua"]) + let v = native_list_append(v, ["ὑπόγεια", "adj", "ὑπόγεια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ὑπογείοις", "adj", "ὑπογείοις", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["ὑπογείων", "adj", "ὑπογείων", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["ὑπογείους", "adj", "ὑπογείους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ὑπογείῳ", "adj", "ὑπογείῳ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["ὑπόγειε", "adj", "ὑπόγειε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὑπόγειοι", "adj", "ὑπόγειοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ὑπόγειον", "adj", "ὑπόγειον", "", "", "", "inflection of ῠ̔πόγειος"]) + let v = native_list_append(v, ["σύμφωνον", "adj", "σύμφωνον", "", "", "", "inflection of σῠ́μφωνος"]) + let v = native_list_append(v, ["πελώριος", "adj", "πελωρῐώτερος", "πελωρῐώτᾰτος", "πελωρίᾱ", "", "monstrous prodigious"]) + let v = native_list_append(v, ["πελώρια", "adj", "πελώρια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["πελώριε", "adj", "πελώριε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πελώριοι", "adj", "πελώριοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ὑπνωτικός", "adj", "ῠ̔πνωτῐκώτερος", "ῠ̔πνωτῐκώτᾰτος", "ῠ̔πνωτῐκή", "", "inclined to sleep"]) + let v = native_list_append(v, ["δεξιάς", "adj", "δεξιάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["δεξιοί", "adj", "δεξιοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["δεξιούς", "adj", "δεξιούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μονοειδής", "adj", "μονοειδέστερος", "μονοειδέστᾰτος", "μονοειδεῖ", "", "one in kind"]) + let v = native_list_append(v, ["ῥομβοειδής", "adj", "ῥομβοειδέστερος", "ῥομβοειδέστᾰτος", "ῥομβοειδεῖ", "", "rhombus-shaped rhomboidal"]) + let v = native_list_append(v, ["ῥομβοειδές", "adj", "ῥομβοειδές", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["νευροειδής", "adj", "νευροειδέστερος", "νευροειδέστᾰτος", "νευροειδεῖ", "", "like sinews"]) + let v = native_list_append(v, ["νευροειδές", "adj", "νευροειδές", "", "", "", "inflection of νευροειδής"]) + let v = native_list_append(v, ["ἐσωτερικός", "adj", "ἐσωτερῐκώτερος", "ἐσωτερῐκώτᾰτος", "ἐσωτερική", "", "belonging to an"]) + let v = native_list_append(v, ["ἀνώμαλος", "adj", "ᾰ̓νωμᾰλώτερος", "ᾰ̓νωμᾰλώτᾰτος", "ᾰ̓νώμᾰλος", "", "uneven irregular"]) + let v = native_list_append(v, ["ἐπιγραφικός", "adj", "ἐπῐγρᾰφῐκώτερος", "ἐπῐγρᾰφῐκώτᾰτος", "ἐπῐγρᾰφῐκή", "", "concerning tax assessments"]) + let v = native_list_append(v, ["ἀντίθετον", "adj", "ἀντίθετον", "", "", "", "inflection of ᾰ̓ντῐ́θετος"]) + let v = native_list_append(v, ["χείρων", "adj", "χείρων", "", "χείρονε", "", "worse in quality"]) + let v = native_list_append(v, ["φανερά", "adj", "φανερά", "", "", "", "inflection of φᾰνερός"]) + let v = native_list_append(v, ["εὐώνυμος", "adj", "εὐωνῠμώτερος", "εὐωνῠμώτᾰτος", "εὐώνῠμος", "", "of good name"]) + let v = native_list_append(v, ["ἥκιστος", "adj", "ἥκιστος", "", "ἡκίστη", "", "least"]) + let v = native_list_append(v, ["πλαγκτός", "adj", "πλᾰγκτότερος", "πλᾰγκτότᾰτος", "πλᾰγκτή", "", "wandering roaming"]) + let v = native_list_append(v, ["τοιόσδε", "adj", "τοιόσδε", "", "τοιᾱ́δε", "", "of this sort"]) + let v = native_list_append(v, ["πλαγκτόν", "adj", "πλαγκτόν", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["ἀπροσδοκήτῳ", "adj", "ἀπροσδοκήτῳ", "", "", "", "masculine/feminine/neuter dative singular"]) + let v = native_list_append(v, ["ἀπροσδόκητε", "adj", "ἀπροσδόκητε", "", "", "", "masculine/feminine vocative singular"]) + let v = native_list_append(v, ["ἀπροσδοκήτω", "adj", "ἀπροσδοκήτω", "", "", "", "masculine/feminine/neuter nominative/accusative/vocative dua"]) + let v = native_list_append(v, ["ἀπροσδοκήτοιν", "adj", "ἀπροσδοκήτοιν", "", "", "", "masculine/feminine/neuter genitive dual"]) + let v = native_list_append(v, ["ἀπροσδόκητοι", "adj", "ἀπροσδόκητοι", "", "", "", "masculine/feminine nominative plural"]) + let v = native_list_append(v, ["ἀπροσδόκητα", "adj", "ἀπροσδόκητα", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["ἀπροσδοκήτων", "adj", "ἀπροσδοκήτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἀπροσδοκήτοις", "adj", "ἀπροσδοκήτοις", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["ἀπροσδοκήτους", "adj", "ἀπροσδοκήτους", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["αἰπύς", "adj", "αἰπῠ́τερος", "αἰπῠ́τᾰτος", "αἰπεῖᾰ", "", "steep sheer"]) + let v = native_list_append(v, ["οἰκογενής", "adj", "οἰκογενέστερος", "οἰκογενέστᾰτος", "οἰκογενεῖ", "", "born in the"]) + let v = native_list_append(v, ["δῖος", "adj", "δῖος", "", "δῖᾰ", "", "heavenly divine noble"]) + let v = native_list_append(v, ["λευκώλενος", "adj", "λευκωλενώτερος", "λευκωλενώτᾰτος", "λευκωλένω", "", "white-armed"]) + let v = native_list_append(v, ["βοῶπις", "adj", "βοῶπις", "", "βοῶπῐς", "", "doe-eyed having large"]) + let v = native_list_append(v, ["γλαυκῶπις", "adj", "γλαυκῶπις", "", "γλαυκῶπῐς", "", "bright-eyed"]) + let v = native_list_append(v, ["οἶνοψ", "adj", "οἶνοψ", "", "οἴνοπε", "", "an epithet traditionally"]) + let v = native_list_append(v, ["περίφρων", "adj", "περίφρων", "", "περῐ́φρων", "", "having very good"]) + let v = native_list_append(v, ["τοσόσδε", "adj", "τοσόσδε", "", "τοσήδε", "", "this much this"]) + let v = native_list_append(v, ["ἠεροειδής", "adj", "ἠεροειδέστερος", "ἠεροειδέστᾰτος", "ἠεροειδέε", "", "misty melting into"]) + let v = native_list_append(v, ["γλαφυρός", "adj", "γλᾰφῠρώτερος", "γλᾰφῠρώτᾰτος", "γλᾰφῠρᾱ́", "", "hollow hollowed epithet"]) + let v = native_list_append(v, ["ἡλίκος", "adj", "ἡλῐκώτερος", "ἡλῐκώτᾰτος", "ἡλῐ́κη", "", "as big or"]) + let v = native_list_append(v, ["δοιός", "adj", "δοιότερος", "δοιότᾰτος", "δοιή", "", "twofold double"]) + let v = native_list_append(v, ["ἐσθλός", "adj", "ἐσθλότερος", "ἐσθλότᾰτος", "ἐσθλή", "", "good"]) + let v = native_list_append(v, ["ταλασίφρων", "adj", "ταλασίφρων", "", "τᾰλᾰσῐ́φρων", "", "Steadfast of heart"]) + let v = native_list_append(v, ["αἱματόεις", "adj", "αἱμᾰτοέστερος", "αἱμᾰτοέστᾰτος", "αἱμᾰτόεσσᾰ", "", "covered or mingled"]) + let v = native_list_append(v, ["ἀλλότρια", "adj", "ἀλλότρια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἀναίμων", "adj", "ἀναιμονέστερος", "ἀναιμονέστᾰτος", "ᾰ̓ναίμων", "", "bloodless"]) + let v = native_list_append(v, ["ῥοδοδάκτυλος", "adj", "ῥοδοδᾰκτῠλώτερος", "ῥοδοδᾰκτῠλώτᾰτος", "ῥοδοδᾰ́κτῠλος", "", "rosy-fingered"]) + let v = native_list_append(v, ["ἀσφοδελός", "adj", "ἀσφοδελός", "", "ἀσφοδελή", "", "Covered in asphodel"]) + let v = native_list_append(v, ["διπλόος", "adj", "διπλόος", "", "δῐπλόη", "", "double"]) + let v = native_list_append(v, ["διπλοῦς", "adj", "διπλοῦς", "", "δῐπλῆ", "", "Attic form of"]) + let v = native_list_append(v, ["ἁπλοῦς", "adj", "ᾰ̔πλούστερος", "ᾰ̔πλούστᾰτος", "ᾰ̔πλῆ", "", "Attic form of"]) + let v = native_list_append(v, ["αὑτός", "adj", "αὑτός", "", "αὑτή", "", "the same"]) + let v = native_list_append(v, ["μέλαινα", "adj", "μέλαινα", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["μέλαν", "adj", "μέλαν", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["μεῖζον", "adj", "μεῖζον", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["πρόσφατος", "adj", "προσφᾰτώτερος", "προσφᾰτώτᾰτος", "πρόσφᾰτος", "", "fresh not decomposed"]) + let v = native_list_append(v, ["ἀθλητικός", "adj", "ᾱ̓θλητῐκώτερος", "ᾱ̓θλητῐκώτᾰτος", "ᾱ̓θλητῐκή", "", "of or for"]) + let v = native_list_append(v, ["ἀμαθής", "adj", "ᾰ̓μᾰθέστερος", "ᾰ̓μᾰθέστᾰτος", "ᾰ̓μᾰθής", "", "ignorant with genitive"]) + let v = native_list_append(v, ["αἰπός", "adj", "αἰπότερος", "αἰπότᾰτος", "αἰπή", "", "on a slope"]) + let v = native_list_append(v, ["αἰπεινός", "adj", "αἰπεινότερος", "αἰπεινότᾰτος", "αἰπεινή", "", "high steep"]) + let v = native_list_append(v, ["ἀτάσθαλος", "adj", "ἀτᾰσθᾰλώτερος", "ἀτᾰσθᾰλώτᾰτος", "ἀτασθάλη", "", "reckless not caring"]) + let v = native_list_append(v, ["κλεινός", "adj", "κλεινότερος", "κλεινότᾰτος", "κλεινή", "", "famous renowned well-known"]) + let v = native_list_append(v, ["σφέτερος", "adj", "σφέτερος", "", "σφετέρᾱ", "", "third-person plural possessive"]) + let v = native_list_append(v, ["βατός", "adj", "βᾰτώτερος", "βᾰτώτᾰτος", "βᾰτή", "", "able to be"]) + let v = native_list_append(v, ["βατή", "adj", "βατή", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["βατόν", "adj", "βατόν", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["βέβηλος", "adj", "βεβηλότερος", "βεβηλότᾰτος", "βεβήλω", "", "allowed to be"]) + let v = native_list_append(v, ["ποσός", "adj", "ποσώτερος", "ποσώτᾰτος", "ποσή", "", "a certain number"]) + let v = native_list_append(v, ["πόση", "adj", "πόση", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["πόσον", "adj", "πόσον", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["ὅσσος", "adj", "ὅσσος", "", "ὅσση", "", "Epic form of"]) + let v = native_list_append(v, ["ἐτεός", "adj", "ἐτεώτερος", "ἐτεώτᾰτος", "ἐτεᾱ́", "", "in accordance with"]) + let v = native_list_append(v, ["γόνιμος", "adj", "γονῐμώτερος", "γονῐμώτᾰτος", "γονῐ́μη", "", "productive fertile fruitful"]) + let v = native_list_append(v, ["φατόν", "adj", "φατόν", "", "", "", "inflection of φατός"]) + let v = native_list_append(v, ["δυσμενής", "adj", "δῠσμενέστερος", "δῠσμενέστᾰτος", "δῠσμενής", "", "hostile"]) + let v = native_list_append(v, ["ἡρώϊος", "adj", "ἡρώϊος", "", "ἡρωῐ̈́ᾱ", "", "Doric form of"]) + let v = native_list_append(v, ["ἀριθμητικόν", "adj", "ἀριθμητικόν", "", "", "", "inflection of ἀριθμητικός"]) + let v = native_list_append(v, ["φαύλας", "adj", "φαύλας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τρίφθογγος", "adj", "τρῐφθογγότερος", "τρῐφθογγότᾰτος", "τρῐ́φθογγος", "", "having three voices"]) + let v = native_list_append(v, ["ἀμύμων", "adj", "ᾰ̓μῡμονέστερος", "ᾰ̓μῡμονέστᾰτος", "ᾰ̓μῡ́μων", "", "blameless noble excellent"]) + let v = native_list_append(v, ["ἀπάτωρ", "adj", "ἀπάτωρ", "", "ᾰ̓πᾰ́τωρ", "", "not having a"]) + let v = native_list_append(v, ["νημερτής", "adj", "νημερτέστερος", "νημερτέστᾰτος", "νημερτέε", "", "Not making mistakes"]) + let v = native_list_append(v, ["ὀλίγοι", "adj", "ὀλίγοι", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["λοξός", "adj", "λοξώτερος", "λοξώτᾰτος", "λοξή", "", "Not straight slanting"]) + let v = native_list_append(v, ["ἔκπυστος", "adj", "ἐκπῠστότερος", "ἐκπῠστότᾰτος", "ἔκπῠστος", "", "heard of discovered"]) + let v = native_list_append(v, ["ἀπευθής", "adj", "ᾰ̓πευθέστερος", "ᾰ̓πευθέστᾰτος", "ᾰ̓πευθής", "", "Not inquired into"]) + let v = native_list_append(v, ["μονοειδές", "adj", "μονοειδές", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["κακομάζαλος", "adj", "κᾰκομᾰζᾱλότερος", "κᾰκομᾰζᾱλότᾰτος", "κᾰκομᾰζᾱ́λη", "", "ill-fated miserable"]) + let v = native_list_append(v, ["ἰσοσκελής", "adj", "ἰσοσκελέστερος", "ἰσοσκελέστᾰτος", "ἰσοσκελεῖ", "", "Having two sides"]) + let v = native_list_append(v, ["σκαληνός", "adj", "σκᾰληνότερος", "σκᾰληνότᾰτος", "σκᾰληνή", "", "uneven unequal rough"]) + let v = native_list_append(v, ["ταχεῖα", "adj", "ταχεῖα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ταχέα", "adj", "ταχέα", "", "", "", "inflection of τᾰχῠ́ς"]) + let v = native_list_append(v, ["ταχέος", "adj", "ταχέος", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ταχείας", "adj", "ταχείας", "", "", "", "inflection of τᾰχῠ́ς"]) + let v = native_list_append(v, ["ταχέων", "adj", "ταχέων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["χλωρά", "adj", "χλωρά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["σεβαστός", "adj", "σεβᾰστότερος", "σεβᾰστότᾰτος", "σεβᾰστή", "", "venerable reverend revered"]) + let v = native_list_append(v, ["σωματικός", "adj", "σωμᾰτῐκώτερος", "σωμᾰτῐκώτᾰτος", "σωμᾰτῐκή", "", "of or for"]) + let v = native_list_append(v, ["σωματικέ", "adj", "σωματικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["σωματική", "adj", "σωματική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["σωματικούς", "adj", "σωματικούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["σωματικοί", "adj", "σωματικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["σωματικά", "adj", "σωματικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πεντεκαιδεκαπλασίων", "adj", "πεντεκαιδεκαπλασίων", "", "πεντεκαιδεκᾰπλᾰσῐ́ων", "", "fifteen-fold"]) + let v = native_list_append(v, ["ἑξακισμυριοτετρακισχιλιοστός", "adj", "ἑξακισμυριοτετρακισχιλιοστός", "", "ἑξᾰκῐσμῡρῐοτετρᾰκῐσχῑλῐοστή", "", "sixty-four thousandth"]) + let v = native_list_append(v, ["ἑβδομηκοντακαιεκατονταπλασίων", "adj", "ἑβδομηκοντακαιεκατονταπλασίων", "", "ἑβδομηκοντᾰκαιεκᾰτοντᾰπλᾰσῐ́ων", "", "one hundred and"]) + let v = native_list_append(v, ["συνήορος", "adj", "σῠνηορώτερος", "σῠνηορώτᾰτος", "σῠνήορος", "", "wedded to"]) + let v = native_list_append(v, ["Θερμαῖος", "adj", "Θερμαιότερος", "Θερμαιότᾰτος", "Θερμαίᾱ", "", "Thermaean"]) + let v = native_list_append(v, ["λαμπρός", "adj", "λᾰμπρότερος", "λᾰμπρότᾰτος", "λᾰμπρᾱ́", "", "bright radiant brilliant"]) + let v = native_list_append(v, ["ἀεργός", "adj", "ᾰ̓εργότερος", "ᾰ̓εργότᾰτος", "ᾰ̓εργός", "", "Epic form of"]) + let v = native_list_append(v, ["κυριακόν", "adj", "κυριακόν", "", "", "", "inflection of κῡριακός"]) + let v = native_list_append(v, ["γνώριμος", "adj", "γνωρῐμώτερος", "γνωρῐμώτᾰτος", "γνώρῐμος", "", "well-known"]) + let v = native_list_append(v, ["Χίου", "adj", "Χίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἐτυμολογικός", "adj", "ἐτῠμολογῐκώτερος", "ἐτῠμολογῐκώτᾰτος", "ἐτῠμολογῐκή", "", "belonging to etymology"]) + let v = native_list_append(v, ["ἐτυμολογικόν", "adj", "ἐτυμολογικόν", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["ἀλιτρός", "adj", "ᾰ̓λῑτρότερος", "ᾰ̓λῑτρότᾰτος", "ᾰ̓λῑτρός", "", "sinful wicked"]) + let v = native_list_append(v, ["Ἀργῷος", "adj", "Ἀργῳότερος", "Ἀργῳότᾰτος", "Ἀργῴᾱ", "", "of the Argo"]) + let v = native_list_append(v, ["χαρίσιος", "adj", "χᾰρῑσῐώτερος", "χᾰρῑσῐώτᾰτος", "χᾰρῑσῐ́ᾱ", "", "Of thanksgiving"]) + let v = native_list_append(v, ["πολυβόειος", "adj", "πολῠβοειότερος", "πολῠβοειότᾰτος", "πολῠβόειος", "", "covered with many"]) + let v = native_list_append(v, ["ἐπίθετον", "adj", "ἐπίθετον", "", "", "", "inflection of ἐπίθετος"]) + let v = native_list_append(v, ["ἐπίθετος", "adj", "ἐπιθετώτερος", "ἐπιθετώτᾰτος", "ἐπιθέτω", "", "additional added-on"]) + let v = native_list_append(v, ["ἰσομέτρητος", "adj", "ῐ̓σομετρητότερος", "ῐ̓σομετρητότᾰτος", "ῐ̓σομέτρητος", "", "of equal measure"]) + let v = native_list_append(v, ["εὐέλεγκτος", "adj", "εὐελεγκτότερος", "εὐελεγκτότᾰτος", "εὐελέγκτω", "", "easily refuted"]) + let v = native_list_append(v, ["ζωτικός", "adj", "ζωτῐκώτερος", "ζωτῐκώτᾰτος", "ζωτῐκή", "", "fit for giving"]) + let v = native_list_append(v, ["στοιχαδικός", "adj", "στοιχᾰδῐκώτερος", "στοιχᾰδῐκώτᾰτος", "στοιχᾰδῐκή", "", "prepared from the"]) + let v = native_list_append(v, ["στοιχαδίτης", "adj", "στοιχαδίτης", "", "", "", "flavoured with the"]) + let v = native_list_append(v, ["στοιχάς", "adj", "στοιχάς", "", "στοιχᾰ́ς", "", "in rows one"]) + let v = native_list_append(v, ["στοιχειακός", "adj", "στοιχειᾰκώτερος", "στοιχειᾰκώτᾰτος", "στοιχειᾰκή", "", "literal alphabetic"]) + let v = native_list_append(v, ["στοιχειωδέστατος", "adj", "στοιχειωδέστατος", "", "στοιχειωδεστᾰ́τη", "", "superlative degree of"]) + let v = native_list_append(v, ["στοιχειωδέστερος", "adj", "στοιχειωδέστερος", "", "στοιχειωδεστέρᾱ", "", "comparative degree of"]) + let v = native_list_append(v, ["στοιχειωτικός", "adj", "στοιχειωτῐκώτερος", "στοιχειωτῐκώτᾰτος", "στοιχειωτῐκή", "", "elementary"]) + let v = native_list_append(v, ["κατάφρακτος", "adj", "κᾰταφρακτότερος", "κᾰταφρακτότᾰτος", "κᾰτάφρακτος", "", "covered shut up"]) + let v = native_list_append(v, ["δημοτικέ", "adj", "δημοτικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ῥοδόεις", "adj", "ῥοδοέστερος", "ῥοδοέστᾰτος", "ῥοδόεσσα", "", "rosy"]) + let v = native_list_append(v, ["κλειστός", "adj", "κλειστότερος", "κλειστότᾰτος", "κλειστή", "", "that can be"]) + let v = native_list_append(v, ["τούτου", "adj", "τούτου", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["βοηθόος", "adj", "βοηθοώτερος", "βοηθοώτᾰτος", "βοηθόω", "", "heeding the call"]) + let v = native_list_append(v, ["πατρική", "adj", "πατρική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["πατρικά", "adj", "πατρικά", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πατρικοί", "adj", "πατρικοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πατρικέ", "adj", "πατρικέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὁλόκαυστος", "adj", "ὁλοκαυστότερος", "ὁλοκαυστότᾰτος", "ὁλοκαύστω", "", "wholly burnt"]) + let v = native_list_append(v, ["καυστός", "adj", "καυστότερος", "καυστότᾰτος", "καυστή", "", "burnt"]) + let v = native_list_append(v, ["πολυτελής", "adj", "πολῠτελέστερος", "πολῠτελέστᾰτος", "πολῠτελής", "", "very expensive precious"]) + let v = native_list_append(v, ["ζῳδιακός", "adj", "ζῳδῐᾰκώτερος", "ζῳδῐᾰκώτᾰτος", "ζῳδῐᾰκή", "", "Of or relating"]) + let v = native_list_append(v, ["πλατύφυλλος", "adj", "πλατυφυλλότερος", "πλατυφυλλότᾰτος", "πλατυφύλλω", "", "broad-leaved"]) + let v = native_list_append(v, ["πέπων", "adj", "πεπονέστερος", "πεπονέστᾰτος", "πέπονε", "", "ripe softened of"]) + let v = native_list_append(v, ["εὔϊχθυς", "adj", "εὐῐ̈χθῠ́τερος", "εὐῐ̈χθῠ́τᾰτος", "εὔῐ̈χθῠς", "", "abounding in fish"]) + let v = native_list_append(v, ["ἰχθυακός", "adj", "ἰχθυακός", "", "ἰχθυακή", "", "fish- of fish"]) + let v = native_list_append(v, ["ἰχθύβολος", "adj", "ἰχθύβολος", "", "", "", "striking fish catching"]) + let v = native_list_append(v, ["ἰχθυβόρος", "adj", "ἰχθυβόρος", "", "", "", "fish-eating"]) + let v = native_list_append(v, ["ἰχθύβοτος", "adj", "ἰχθύβοτος", "", "", "", "fed on by"]) + let v = native_list_append(v, ["ἰχθυγόνος", "adj", "ἰχθυγόνος", "", "", "", "producing fish"]) + let v = native_list_append(v, ["ἰχθυδόκος", "adj", "ἰχθυδόκος", "", "", "", "holding fish"]) + let v = native_list_append(v, ["ἰχθυηρός", "adj", "ῐ̓χθῠηρότερος", "ῐ̓χθῠηρότᾰτος", "ῐ̓χθῠηρᾱ́", "", "fishy"]) + let v = native_list_append(v, ["ἰχθυϊκός", "adj", "ἰχθυϊκός", "", "ἰχθυϊκή", "", "fish- of fish"]) + let v = native_list_append(v, ["ἰχθυνόμος", "adj", "ἰχθυνόμος", "", "", "", "fish-ruling"]) + let v = native_list_append(v, ["ἰχθυόβρωτος", "adj", "ἰχθυόβρωτος", "", "", "", "eaten by fish"]) + let v = native_list_append(v, ["ἰχθυοειδής", "adj", "ῐ̓χθῠοειδέστερος", "ῐ̓χθῠοειδέστᾰτος", "ῐ̓χθῠοειδής", "", "fish-like of fishes"]) + let v = native_list_append(v, ["ἰχθυόεις", "adj", "ἰχθυοέστερος", "ἰχθυοέστᾰτος", "ἰχθυόεσσᾰ", "", "full of fish"]) + let v = native_list_append(v, ["μετάβολος", "adj", "μετάβολος", "", "μεταβόλη", "", "changeable"]) + let v = native_list_append(v, ["ἰχθυόρροος", "adj", "ἰχθυόρροος", "", "", "", "swarming with fish"]) + let v = native_list_append(v, ["ἰχθυοτρόφος", "adj", "ῐ̓χθῠοτροφώτερος", "ῐ̓χθῠοτροφώτᾰτος", "ῐ̓χθῠοτρόφος", "", "feeding fish"]) + let v = native_list_append(v, ["ἰχθυόφαγος", "adj", "ἰχθυόφαγος", "", "", "", "fish-eating"]) + let v = native_list_append(v, ["ἰχθυόφορος", "adj", "ἰχθυόφορος", "", "", "", "producing fish"]) + let v = native_list_append(v, ["ἰχθυστεφής", "adj", "ἰχθυστεφέστερος", "ἰχθυστεφέστᾰτος", "ἰχθυστεφεῖ", "", "fish-crowned"]) + let v = native_list_append(v, ["ἰχθυφόνος", "adj", "ἰχθυφόνος", "", "", "", "killing fish fish"]) + let v = native_list_append(v, ["ἰχθυώδης", "adj", "ἰχθυωδέστερος", "ἰχθυωδέστᾰτος", "ἰχθυώδει", "", "full of fish"]) + let v = native_list_append(v, ["πολύϊχθυς", "adj", "πολῠῐ̈χθῠ́τερος", "πολῠῐ̈χθῠ́τᾰτος", "πολῠ́ῐ̈χθῠς", "", "having many fish"]) + let v = native_list_append(v, ["ἰχθυπαγής", "adj", "ἰχθυπαγέστερος", "ἰχθυπαγέστᾰτος", "ἰχθυπαγεῖ", "", "piercing fish"]) + let v = native_list_append(v, ["σύγχρονος", "adj", "σῠγχρονώτερος", "σῠγχρονώτᾰτος", "σῠ́γχρονος", "", "contemporaneous"]) + let v = native_list_append(v, ["ἑτέρᾳ", "adj", "ἑτέρᾳ", "", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["ἐκείνα", "adj", "ἐκείνα", "", "", "", "nominative dual feminine"]) + let v = native_list_append(v, ["ὀλιγαρχικός", "adj", "ὀλιγαρχῐκώτερος", "ὀλιγαρχῐκώτᾰτος", "ὀλιγαρχῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["μοναρχικός", "adj", "μοναρχῐκώτερος", "μοναρχῐκώτᾰτος", "μοναρχῐκή", "", "of or pertaining"]) + let v = native_list_append(v, ["ὑπερῷος", "adj", "ὑπερῷος", "", "ῠ̔περῴᾱ", "", "upper"]) + let v = native_list_append(v, ["ὑπερῷον", "adj", "ὑπερῷον", "", "", "", "inflection of ῠ̔περῷος"]) + let v = native_list_append(v, ["ὑπερῴα", "adj", "ὑπερῴα", "", "", "", "inflection of ῠ̔περῷος"]) + let v = native_list_append(v, ["ὑπερῴας", "adj", "ὑπερῴας", "", "", "", "inflection of ῠ̔περῷος"]) + let v = native_list_append(v, ["ὑπερώϊος", "adj", "ὑπερώϊος", "", "ῠ̔περωῐ̈́η", "", "Epic form of"]) + let v = native_list_append(v, ["ὑπερῴη", "adj", "ὑπερῴη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ᾠοειδής", "adj", "ᾠοειδέστερος", "ᾠοειδέστᾰτος", "ᾠοειδεῖ", "", "shaped like an"]) + let v = native_list_append(v, ["ᾠώδης", "adj", "ᾠωδέστερος", "ᾠωδέστᾰτος", "ᾠώδει", "", "egg-like"]) + let v = native_list_append(v, ["ᾠοειδές", "adj", "ᾠοειδές", "", "", "", "inflection of ᾠοειδής"]) + let v = native_list_append(v, ["ᾠῶδες", "adj", "ᾠῶδες", "", "", "", "inflection of ᾠώδης"]) + let v = native_list_append(v, ["ψιλόν", "adj", "ψιλόν", "", "", "", "inflection of ψῑλός"]) + let v = native_list_append(v, ["φθεγκτός", "adj", "φθεγκτότερος", "φθεγκτότᾰτος", "φθεγκτή", "", "having voice or"]) + let v = native_list_append(v, ["φθεγκτικός", "adj", "φθεγκτῐκώτερος", "φθεγκτῐκώτᾰτος", "φθεγκτῐκή", "", "having a voice"]) + let v = native_list_append(v, ["φθογγήεις", "adj", "φθογγηέστερος", "φθογγηέστᾰτος", "φθογγήεσσᾰ", "", "resounding"]) + let v = native_list_append(v, ["ὀλιγόπιστος", "adj", "ὀλῐγοπῐστότερος", "ὀλῐγοπῐστότᾰτος", "ὀλῐγόπῐστος", "", "of little faith"]) + let v = native_list_append(v, ["εὐκτικός", "adj", "εὐκτῐκώτερος", "εὐκτῐκώτᾰτος", "εὐκτῐκή", "", "Related to wishing"]) + let v = native_list_append(v, ["ὑποτακτικός", "adj", "ῠ̔ποτᾰκτῐκώτερος", "ῠ̔ποτᾰκτῐκώτᾰτος", "ῠ̔ποτᾰκτῐκή", "", "Postpositive always placed"]) + let v = native_list_append(v, ["διετής", "adj", "δῐετέστερος", "δῐετέστᾰτος", "δῐετής", "", "of or lasting"]) + let v = native_list_append(v, ["καχέκτης", "adj", "καχέκτης", "", "", "", "in a bad"]) + let v = native_list_append(v, ["καρπάσινος", "adj", "καρπᾰσινότερος", "καρπᾰσινότᾰτος", "καρπᾰσίνη", "", "made of κάρπασος"]) + let v = native_list_append(v, ["διαλεκτικός", "adj", "δῐᾰλεκτῐκώτερος", "δῐᾰλεκτῐκώτᾰτος", "δῐᾰλεκτῐκή", "", "Conversational"]) + let v = native_list_append(v, ["χρυσόκαρπος", "adj", "χρῡσοκᾰρπότερος", "χρῡσοκᾰρπότᾰτος", "χρῡσόκᾰρπος", "", "with golden fruit"]) + let v = native_list_append(v, ["χελιδόνιος", "adj", "χελῑδονῐώτερος", "χελῑδονῐώτᾰτος", "χελῑδονῐ́ᾱ", "", "of belonging to"]) + let v = native_list_append(v, ["χελιδόνειος", "adj", "χελῑδονειότερος", "χελῑδονειότᾰτος", "χελῑδονείᾱ", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἀαγής", "adj", "ᾰ̓ᾱγέστερος", "ᾰ̓ᾱγέστᾰτος", "ᾰ̓ᾱγής", "", "unbreakable"]) + let v = native_list_append(v, ["ἀαγές", "adj", "ἀαγές", "", "", "", "inflection of ᾰ̓ᾱγής"]) + let v = native_list_append(v, ["ἀκραής", "adj", "ἀκρᾱέστερος", "ἀκρᾱέστᾰτος", "ἀκρᾱής", "", "blowing strongly or"]) + let v = native_list_append(v, ["ἀκραές", "adj", "ἀκραές", "", "", "", "singular neuter nominative"]) + let v = native_list_append(v, ["ἀλιαής", "adj", "ἀλιᾱέστερος", "ἀλιᾱέστᾰτος", "ἀλιᾱής", "", "blowing on or"]) + let v = native_list_append(v, ["δυσαής", "adj", "δῠσᾱέστερος", "δῠσᾱέστᾰτος", "δῠσᾱής", "", "blowing contrarily or"]) + let v = native_list_append(v, ["δικαιάδικος", "adj", "δῐκαιᾰδῐκώτερος", "δῐκαιᾰδῐκώτᾰτος", "δῐκαιᾰ́δῐκος", "", "neither just nor"]) + let v = native_list_append(v, ["δικαιάδικον", "adj", "δικαιάδικον", "", "", "", "singular masculine accusative"]) + let v = native_list_append(v, ["δικαιαδίκου", "adj", "δικαιαδίκου", "", "", "", "singular masculine genitive"]) + let v = native_list_append(v, ["δικαιαδίκῳ", "adj", "δικαιαδίκῳ", "", "", "", "singular masculine dative"]) + let v = native_list_append(v, ["δικαιάδικε", "adj", "δικαιάδικε", "", "", "", "singular masculine vocative"]) + let v = native_list_append(v, ["δικαιαδίκω", "adj", "δικαιαδίκω", "", "", "", "dual masculine nominative"]) + let v = native_list_append(v, ["δικαιαδίκοιν", "adj", "δικαιαδίκοιν", "", "", "", "dual masculine genitive"]) + let v = native_list_append(v, ["δικαιάδικοι", "adj", "δικαιάδικοι", "", "", "", "plural masculine nominative"]) + let v = native_list_append(v, ["δικαιαδίκων", "adj", "δικαιαδίκων", "", "", "", "plural masculine genitive"]) + let v = native_list_append(v, ["δικαιαδίκοις", "adj", "δικαιαδίκοις", "", "", "", "plural masculine dative"]) + let v = native_list_append(v, ["δικαιαδίκους", "adj", "δικαιαδίκους", "", "", "", "plural masculine accusative"]) + let v = native_list_append(v, ["δικαιάδικα", "adj", "δικαιάδικα", "", "", "", "plural neuter nominative"]) + let v = native_list_append(v, ["συμβολαίου", "adj", "συμβολαίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["συμβολαίων", "adj", "συμβολαίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["συμβόλαια", "adj", "συμβόλαια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["αἰθαλίων", "adj", "αἰθαλίων", "", "αἰθᾰλῐ́ων", "", "browned toasted in"]) + let v = native_list_append(v, ["αἴθαλος", "adj", "αἰθᾰλώτερος", "αἰθᾰλώτᾰτος", "αἴθᾰλος", "", "burnt-coloured dark brown"]) + let v = native_list_append(v, ["αἰθαλός", "adj", "αἰθᾰλώτερος", "αἰθᾰλώτᾰτος", "αἰθᾰλός", "", "alternative form of"]) + let v = native_list_append(v, ["ῥητορικώτερος", "adj", "ῥητορικώτερος", "", "ῥητορῐκωτέρᾱ", "", "comparative degree of"]) + let v = native_list_append(v, ["χρυσόνωτος", "adj", "χρῡσονωτότερος", "χρῡσονωτότᾰτος", "χρῡσόνωτος", "", "with a golden"]) + let v = native_list_append(v, ["ἐνεργητικός", "adj", "ἐνεργητῐκώτερος", "ἐνεργητῐκώτᾰτος", "ἐνεργητῐκή", "", "Able to act"]) + let v = native_list_append(v, ["τάριχος", "adj", "τᾰρῑχότερος", "τᾰρῑχότᾰτος", "τᾰ́ρῑχος", "", "synonym of τᾰρῑχευτός"]) + let v = native_list_append(v, ["τάριχον", "adj", "τάριχον", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["λευκομέλας", "adj", "λευκομελᾰ́ντερος", "λευκομελᾰ́ντᾰτος", "λευκομέλαινᾰ", "", "grey"]) + let v = native_list_append(v, ["βλαπτικός", "adj", "βλαπτικός", "", "βλᾰπτῐκή", "", "Hurtful mischievous"]) + let v = native_list_append(v, ["μωρά", "adj", "μωρά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["μωροί", "adj", "μωροί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["αἰτιατική", "adj", "αἰτιατική", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["μωρούς", "adj", "μωρούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["μωρέ", "adj", "μωρέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["κλητικόν", "adj", "κλητικόν", "", "", "", "inflection of κλητῐκός"]) + let v = native_list_append(v, ["ὑμός", "adj", "ὑμός", "", "ῡ̔μᾱ́", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀχαιῶν", "adj", "Ἀχαιῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἄλλοι", "adj", "ἄλλοι", "", "", "", "nominative/vocative plural masculine"]) + let v = native_list_append(v, ["δύο", "other", "δύο", "", "", "", "two"]) + let v = native_list_append(v, ["τρία", "other", "τρία", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["δέκα", "other", "δέκα", "", "", "", "ten"]) + let v = native_list_append(v, ["δώδεκα", "other", "δώδεκα", "", "", "", "twelve"]) + let v = native_list_append(v, ["μία", "other", "μία", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["π", "other", "π", "", "", "", "Lowercase pi πεῖ"]) + let v = native_list_append(v, ["Σ", "other", "Σ", "", "", "", "The letter sigma"]) + let v = native_list_append(v, [";", "other", ";", "", "", "", "? the Greek"]) + let v = native_list_append(v, ["η", "other", "η", "", "", "", "Lower-case eta the"]) + let v = native_list_append(v, ["ο", "other", "ο", "", "", "", "Lower-case omicron ὂ"]) + let v = native_list_append(v, ["πέντε", "other", "πέντε", "", "", "", "five"]) + let v = native_list_append(v, ["◌̀", "other", "◌̀", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["α", "other", "α", "", "", "", "Lower-case alpha ἄλφα"]) + let v = native_list_append(v, ["Α", "other", "Α", "", "", "", "The letter ἄλφα"]) + let v = native_list_append(v, ["Η", "other", "Η", "", "", "", "The letter eta"]) + let v = native_list_append(v, ["Ο", "other", "Ο", "", "", "", "The letter omicron"]) + let v = native_list_append(v, ["Π", "other", "Π", "", "", "", "The letter pi"]) + let v = native_list_append(v, ["Ω", "other", "Ω", "", "", "", "The letter omega"]) + let v = native_list_append(v, ["◌̈", "other", "◌̈", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["Β", "other", "Β", "", "", "", "The letter beta"]) + let v = native_list_append(v, ["β", "other", "β", "", "", "", "Lower-case beta βῆτα"]) + let v = native_list_append(v, ["Γ", "other", "Γ", "", "", "", "The letter gamma"]) + let v = native_list_append(v, ["γ", "other", "γ", "", "", "", "Lower-case gamma the"]) + let v = native_list_append(v, ["δ", "other", "δ", "", "", "", "Lower case delta"]) + let v = native_list_append(v, ["ε", "other", "ε", "", "", "", "Lower case epsilon"]) + let v = native_list_append(v, ["ζ", "other", "ζ", "", "", "", "Lower-case zeta the"]) + let v = native_list_append(v, ["θ", "other", "θ", "", "", "", "Lower-case theta θῆτα"]) + let v = native_list_append(v, ["Θ", "other", "Θ", "", "", "", "The letter theta"]) + let v = native_list_append(v, ["Ζ", "other", "Ζ", "", "", "", "The letter zeta"]) + let v = native_list_append(v, ["Ε", "other", "Ε", "", "", "", "The letter now"]) + let v = native_list_append(v, ["Δ", "other", "Δ", "", "", "", "The letter delta"]) + let v = native_list_append(v, ["Ι", "other", "Ι", "", "", "", "The upper case"]) + let v = native_list_append(v, ["Κ", "other", "Κ", "", "", "", "The letter kappa"]) + let v = native_list_append(v, ["Λ", "other", "Λ", "", "", "", "The letter lambda"]) + let v = native_list_append(v, ["Μ", "other", "Μ", "", "", "", "The letter mu"]) + let v = native_list_append(v, ["Ν", "other", "Ν", "", "", "", "The letter nu"]) + let v = native_list_append(v, ["Ξ", "other", "Ξ", "", "", "", "The letter xi"]) + let v = native_list_append(v, ["ι", "other", "ι", "", "", "", "Lower-case iota ἰῶτα"]) + let v = native_list_append(v, ["κ", "other", "κ", "", "", "", "Lower-case kappa κάππα"]) + let v = native_list_append(v, ["λ", "other", "λ", "", "", "", "Lower-case lambda λάβδα"]) + let v = native_list_append(v, ["μ", "other", "μ", "", "", "", "Lower-case mu μῦ"]) + let v = native_list_append(v, ["ν", "other", "ν", "", "", "", "Lower-case nu νῦ"]) + let v = native_list_append(v, ["ξ", "other", "ξ", "", "", "", "Lower-case xi ξεῖ"]) + let v = native_list_append(v, ["ρ", "other", "ρ", "", "", "", "Lower-case rho ῥῶ"]) + let v = native_list_append(v, ["σ", "other", "σ", "", "", "", "Lower-case sigma σίγμα"]) + let v = native_list_append(v, ["τ", "other", "τ", "", "", "", "Lower-case tau ταῦ"]) + let v = native_list_append(v, ["υ", "other", "υ", "", "", "", "Lower-case upsilon ὖ"]) + let v = native_list_append(v, ["Υ", "other", "Υ", "", "", "", "The letter now"]) + let v = native_list_append(v, ["Ρ", "other", "Ρ", "", "", "", "The letter rho"]) + let v = native_list_append(v, ["Τ", "other", "Τ", "", "", "", "The letter tau"]) + let v = native_list_append(v, ["Φ", "other", "Φ", "", "", "", "The letter phi"]) + let v = native_list_append(v, ["φ", "other", "φ", "", "", "", "Lower-case phi φεῖ"]) + let v = native_list_append(v, ["χ", "other", "χ", "", "", "", "Lower-case chi χεῖ"]) + let v = native_list_append(v, ["Χ", "other", "Χ", "", "", "", "The letter chi"]) + let v = native_list_append(v, ["Ψ", "other", "Ψ", "", "", "", "The letter psi"]) + let v = native_list_append(v, ["ω", "other", "ω", "", "", "", "Lower-case omega ὦ"]) + let v = native_list_append(v, ["ψ", "other", "ψ", "", "", "", "Lower-case psi ψεῖ"]) + let v = native_list_append(v, ["ς", "other", "ς", "", "", "", "The lower case"]) + let v = native_list_append(v, ["τρεῖς", "other", "τρεῖς", "", "", "", "three"]) + let v = native_list_append(v, ["ἑπτά", "other", "ἑπτά", "", "", "", "seven"]) + let v = native_list_append(v, ["δεκατέσσαρες", "other", "δεκατέσσαρες", "", "", "", "synonym of τεσσᾰρεσκαίδεκᾰ"]) + let v = native_list_append(v, ["τεσσαράκοντα", "other", "τεσσαράκοντα", "", "", "", "forty"]) + let v = native_list_append(v, ["τέσσαρες", "other", "τέσσαρες", "", "", "", "four"]) + let v = native_list_append(v, ["ἑξήκοντα", "other", "ἑξήκοντα", "", "", "", "sixty"]) + let v = native_list_append(v, ["τριάκοντα", "other", "τριάκοντα", "", "", "", "thirty"]) + let v = native_list_append(v, ["ἑκατόν", "other", "ἑκατόν", "", "", "", "hundred"]) + let v = native_list_append(v, ["δισχίλιοι", "other", "δισχίλιοι", "", "", "", "two thousand"]) + let v = native_list_append(v, ["χίλιοι", "other", "χίλιοι", "", "", "", "thousand"]) + let v = native_list_append(v, ["πεντήκοντα", "other", "πεντήκοντα", "", "", "", "fifty"]) + let v = native_list_append(v, ["πεντακισχίλιοι", "other", "πεντακισχίλιοι", "", "", "", "five thousand"]) + let v = native_list_append(v, ["·", "other", "·", "", "", "", "The high point"]) + let v = native_list_append(v, ["μίαν", "other", "μίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["εἷς", "other", "εἷς", "", "", "", "one"]) + let v = native_list_append(v, ["βρεκεκεκέξ", "other", "βρεκεκεκέξ", "", "", "", "ribbit the sound"]) + let v = native_list_append(v, ["ἀρχι-", "other", "ἀρχι-", "", "", "", "denotes primary importance"]) + let v = native_list_append(v, ["οἴμοι", "other", "οἴμοι", "", "", "", "woe is me"]) + let v = native_list_append(v, ["ϡ", "other", "ϡ", "", "", "", "Sampi an obsolete"]) + let v = native_list_append(v, ["ἕξ", "other", "ἕξ", "", "", "", "six"]) + let v = native_list_append(v, ["ὀκτώ", "other", "ὀκτώ", "", "", "", "eight"]) + let v = native_list_append(v, ["ἐννέα", "other", "ἐννέα", "", "", "", "nine"]) + let v = native_list_append(v, ["δύω", "other", "δύω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ϝ", "other", "ϝ", "", "", "", "Lower case digamma"]) + let v = native_list_append(v, ["γλαῦκ' εἰς Ἀθήνας", "other", "γλαῦκ' εἰς Ἀθήνας", "", "", "", "Undertaking a pointless"]) + let v = native_list_append(v, ["ἀ-", "other", "ἀ-", "", "", "", "The alpha privativum"]) + let v = native_list_append(v, ["ἀν-", "other", "ἀν-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["δι-", "other", "δι-", "", "", "", "Twice double."]) + let v = native_list_append(v, ["-λογία", "other", "-λογία", "", "", "", "Base for nouns"]) + let v = native_list_append(v, ["παρα-", "other", "παρα-", "", "", "", "beside"]) + let v = native_list_append(v, ["-ισμός", "other", "-ισμός", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["δια-", "other", "δια-", "", "", "", "through right through"]) + let v = native_list_append(v, ["◌́", "other", "◌́", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["δυσ-", "other", "δυσ-", "", "", "", "bad hard unfortunate"]) + let v = native_list_append(v, ["δεύτερος", "other", "δεύτερος", "", "", "", "second of two"]) + let v = native_list_append(v, ["εἴκοσι", "other", "εἴκοσι", "", "", "", "twenty"]) + let v = native_list_append(v, ["-ινα", "other", "-ινα", "", "", "", "Added to masculine"]) + let v = native_list_append(v, ["ἑβδομήκοντα", "other", "ἑβδομήκοντα", "", "", "", "seventy"]) + let v = native_list_append(v, ["ἐλελεῦ", "other", "ἐλελεῦ", "", "", "", "a cry of"]) + let v = native_list_append(v, ["Ϝ", "other", "Ϝ", "", "", "", "The letter *ϝαῦ"]) + let v = native_list_append(v, ["Ϙ", "other", "Ϙ", "", "", "", "The letter koppa/qoppa"]) + let v = native_list_append(v, ["Ϻ", "other", "Ϻ", "", "", "", "The letter san"]) + let v = native_list_append(v, ["-γραφία", "other", "-γραφία", "", "", "", "writing drawing"]) + let v = native_list_append(v, ["τεσσάρων", "other", "τεσσάρων", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["ἐννήκοντα", "other", "ἐννήκοντα", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἐνενήκοντα", "other", "ἐνενήκοντα", "", "", "", "ninety"]) + let v = native_list_append(v, ["ὀγδώκοντα", "other", "ὀγδώκοντα", "", "", "", "Ionic and Doric"]) + let v = native_list_append(v, ["ὀγδοήκοντα", "other", "ὀγδοήκοντα", "", "", "", "eighty"]) + let v = native_list_append(v, ["τετρώκοντα", "other", "τετρώκοντα", "", "", "", "Doric spelling of"]) + let v = native_list_append(v, ["εὐαί", "other", "εὐαί", "", "", "", "a cry of"]) + let v = native_list_append(v, ["ἀρι-", "other", "ἀρι-", "", "", "", "strengthening prefix generally"]) + let v = native_list_append(v, ["ἄξιος", "other", "ἄξιος", "", "", "", "Acclamation confirming the"]) + let v = native_list_append(v, ["-τερος", "other", "-τερος", "", "", "", "Used on adjectives"]) + let v = native_list_append(v, ["-τατος", "other", "-τατος", "", "", "", "Added to adjective"]) + let v = native_list_append(v, ["ἡμι-", "other", "ἡμι-", "", "", "", "half"]) + let v = native_list_append(v, ["τέτταρες", "other", "τέτταρες", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["ψευδο-", "other", "ψευδο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["δεκατεσσάρων", "other", "δεκατεσσάρων", "", "", "", "genitive of δεκατέσσαρες"]) + let v = native_list_append(v, ["-ίνα", "other", "-ίνα", "", "", "", "Added to masculine"]) + let v = native_list_append(v, ["-λάτρης", "other", "-λάτρης", "", "", "", "-later server to"]) + let v = native_list_append(v, ["-ον", "other", "-ον", "", "", "", "inflection of -ος"]) + let v = native_list_append(v, ["-άς", "other", "-άς", "", "", "", "Forms nouns with"]) + let v = native_list_append(v, ["-ωμα", "other", "-ωμα", "", "", "", "a suffix indicating"]) + let v = native_list_append(v, ["περι-", "other", "περι-", "", "", "", "around about"]) + let v = native_list_append(v, ["-πλάσιος", "other", "-πλάσιος", "", "", "", "-fold used to"]) + let v = native_list_append(v, ["-τρια", "other", "-τρια", "", "", "", "forms feminine agent"]) + let v = native_list_append(v, ["ὅπερ ἔδει δεῖξαι", "other", "ὅπερ ἔδει δεῖξαι", "", "", "", "quod erat demonstrandum"]) + let v = native_list_append(v, ["δευτέρου", "other", "δευτέρου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["δευτέρα", "other", "δευτέρα", "", "", "", "inflection of δεύτερος"]) + let v = native_list_append(v, ["δευτέρων", "other", "δευτέρων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["δευτέρας", "other", "δευτέρας", "", "", "", "inflection of δεύτερος"]) + let v = native_list_append(v, ["δεύτερε", "other", "δεύτερε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["δεύτερα", "other", "δεύτερα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["δεύτεροι", "other", "δεύτεροι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ϙ", "other", "ϙ", "", "", "", "The letter koppa/qoppa"]) + let v = native_list_append(v, ["-ίτης", "other", "-ίτης", "", "", "", "Suffix forming a"]) + let v = native_list_append(v, ["-φόρος", "other", "-φόρος", "", "", "", "-bearing"]) + let v = native_list_append(v, ["-ία", "other", "-ία", "", "", "", "Added to stems"]) + let v = native_list_append(v, ["πρωτο-", "other", "πρωτο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["-ιανός", "other", "-ιανός", "", "", "", "used to form"]) + let v = native_list_append(v, ["ὦ", "other", "ὦ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-θήκη", "other", "-θήκη", "", "", "", "deverbal suffix typically"]) + let v = native_list_append(v, ["προ-", "other", "προ-", "", "", "", "before forwards"]) + let v = native_list_append(v, ["-τρα", "other", "-τρα", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["-μα", "other", "-μα", "", "", "", "Added to verbal"]) + let v = native_list_append(v, ["ἕνδεκα", "other", "ἕνδεκα", "", "", "", "eleven"]) + let v = native_list_append(v, ["ἕν", "other", "ἕν", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["εὐοῖ", "other", "εὐοῖ", "", "", "", "The cry used"]) + let v = native_list_append(v, ["θεο-", "other", "θεο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["μονο-", "other", "μονο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["πολυ-", "other", "πολυ-", "", "", "", "multi- poly-"]) + let v = native_list_append(v, ["-ερός", "other", "-ερός", "", "", "", "-ful characterized by"]) + let v = native_list_append(v, ["-σύνη", "other", "-σύνη", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["-κρατία", "other", "-κρατία", "", "", "", "-cracy government rule"]) + let v = native_list_append(v, ["μολὼν λαβέ", "other", "μολὼν λαβέ", "", "", "", "come and take"]) + let v = native_list_append(v, ["-ίζω", "other", "-ίζω", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-ίζειν", "other", "-ίζειν", "", "", "", "present active infinitive"]) + let v = native_list_append(v, ["-ικός", "other", "-ικός", "", "", "", "Added to noun"]) + let v = native_list_append(v, ["τί πράττεις", "other", "τί πράττεις", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["τί πράσσεις", "other", "τί πράσσεις", "", "", "", "how are you?"]) + let v = native_list_append(v, ["-τρον", "other", "-τρον", "", "", "", "forms instrument nouns"]) + let v = native_list_append(v, ["-τρου", "other", "-τρου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["-τρῳ", "other", "-τρῳ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["-τρω", "other", "-τρω", "", "", "", "nominative dual of"]) + let v = native_list_append(v, ["-τροιν", "other", "-τροιν", "", "", "", "genitive dual of"]) + let v = native_list_append(v, ["-τρων", "other", "-τρων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["-τροις", "other", "-τροις", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["-σις", "other", "-σις", "", "", "", "Added to verb"]) + let v = native_list_append(v, ["λόγου χάριν", "other", "λόγου χάριν", "", "", "", "by a figure"]) + let v = native_list_append(v, ["-ινος", "other", "-ινος", "", "", "", "Added to nouns"]) + let v = native_list_append(v, ["εὐ-", "other", "εὐ-", "", "", "", "good well"]) + let v = native_list_append(v, ["-ίδης", "other", "-ίδης", "", "", "", "Suffix added to"]) + let v = native_list_append(v, ["ἀπο-", "other", "ἀπο-", "", "", "", "Indicating movement away"]) + let v = native_list_append(v, ["-έω", "other", "-έω", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-ιος", "other", "-ιος", "", "", "", "Suffix added to"]) + let v = native_list_append(v, ["μύριοι", "other", "μύριοι", "", "", "", "ten thousand myriad"]) + let v = native_list_append(v, ["-θεν", "other", "-θεν", "", "", "", "Added to nouns"]) + let v = native_list_append(v, ["-γράφος", "other", "-γράφος", "", "", "", "writer"]) + let v = native_list_append(v, ["χαίρετε", "other", "χαίρετε", "", "", "", "hail hello welcome"]) + let v = native_list_append(v, ["-αίνω", "other", "-αίνω", "", "", "", "Forms mostly stative"]) + let v = native_list_append(v, ["-αρχία", "other", "-αρχία", "", "", "", "-archy form of"]) + let v = native_list_append(v, ["-φοβία", "other", "-φοβία", "", "", "", "-phobia"]) + let v = native_list_append(v, ["οὐαί", "other", "οὐαί", "", "", "", "ah woe alas"]) + let v = native_list_append(v, ["ἕνεκα", "other", "ἕνεκα", "", "", "", "on account of"]) + let v = native_list_append(v, ["τεσσεράκοντα", "other", "τεσσεράκοντα", "", "", "", "Ionic spelling of"]) + let v = native_list_append(v, ["ἆ", "other", "ἆ", "", "", "", "ah! expressing pity"]) + let v = native_list_append(v, ["φαίνεται", "other", "φαίνεται", "", "", "", "yes so it"]) + let v = native_list_append(v, ["-ν", "other", "-ν", "", "", "", "The accusative-singular inflection"]) + let v = native_list_append(v, ["-αινα", "other", "-αινα", "", "", "", "Added to the"]) + let v = native_list_append(v, ["᾽", "other", "᾽", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["᾿", "other", "᾿", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["ʽ", "other", "ʽ", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["◌̔", "other", "◌̔", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["χαῖρε", "other", "χαῖρε", "", "", "", "hail hello welcome"]) + let v = native_list_append(v, ["ἔα", "other", "ἔα", "", "", "", "ha! oho! gak!"]) + let v = native_list_append(v, ["-της", "other", "-της", "", "", "", "forms abstract nouns"]) + let v = native_list_append(v, ["ϻ", "other", "ϻ", "", "", "", "The letter san"]) + let v = native_list_append(v, ["-τικός", "other", "-τικός", "", "", "", "Added to verbal"]) + let v = native_list_append(v, ["-ειδής", "other", "-ειδής", "", "", "", "-id -like connected"]) + let v = native_list_append(v, ["-πώλης", "other", "-πώλης", "", "", "", "seller monger"]) + let v = native_list_append(v, ["-ώδης", "other", "-ώδης", "", "", "", "forms adjectives from"]) + let v = native_list_append(v, ["μετα-", "other", "μετα-", "", "", "", "concerning community or"]) + let v = native_list_append(v, ["-άρχης", "other", "-άρχης", "", "", "", "-arch ruler leader"]) + let v = native_list_append(v, ["τρίς", "other", "τρίς", "", "", "", "thrice three times"]) + let v = native_list_append(v, ["τρι-", "other", "τρι-", "", "", "", "tri- three thrice"]) + let v = native_list_append(v, ["Ͷ", "other", "Ͷ", "", "", "", "digamma denoting a"]) + let v = native_list_append(v, ["ͷ", "other", "ͷ", "", "", "", "digamma denoting a"]) + let v = native_list_append(v, ["αἱμο-", "other", "αἱμο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["μὴ γένοιτο", "other", "μὴ γένοιτο", "", "", "", "God forbid certainly"]) + let v = native_list_append(v, ["δεῦρο", "other", "δεῦρο", "", "", "", "come on!"]) + let v = native_list_append(v, ["κατα-", "other", "κατα-", "", "", "", "back"]) + let v = native_list_append(v, ["-άκις", "other", "-άκις", "", "", "", "Added to the"]) + let v = native_list_append(v, ["-θι", "other", "-θι", "", "", "", "Added to nouns"]) + let v = native_list_append(v, ["τεσσαρεσκαίδεκα", "other", "τεσσαρεσκαίδεκα", "", "", "", "fourteen"]) + let v = native_list_append(v, ["δεκατέσσαρα", "other", "δεκατέσσαρα", "", "", "", "nominative neuter of"]) + let v = native_list_append(v, ["-ιδῶν", "other", "-ιδῶν", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["πέμπε", "other", "πέμπε", "", "", "", "Aeolic form of"]) + let v = native_list_append(v, ["◌̓", "other", "◌̓", "", "", "", "combining character equivalent"]) + let v = native_list_append(v, ["-εῖον", "other", "-εῖον", "", "", "", "forms instrument nouns"]) + let v = native_list_append(v, ["-εῖος", "other", "-εῖος", "", "", "", "Forms adjectives usually"]) + let v = native_list_append(v, ["ἁ-", "other", "ἁ-", "", "", "", "The alpha copulativum"]) + let v = native_list_append(v, ["γεω-", "other", "γεω-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["-τύς", "other", "-τύς", "", "", "", "Suffix forming nouns"]) + let v = native_list_append(v, ["-άζω", "other", "-άζω", "", "", "", "Used to form"]) + let v = native_list_append(v, ["ὀκτα-", "other", "ὀκτα-", "", "", "", "eight"]) + let v = native_list_append(v, ["-εις", "other", "-εις", "", "", "", "-ful"]) + let v = native_list_append(v, ["-τος", "other", "-τος", "", "", "", "Creates perfective passive"]) + let v = native_list_append(v, ["-ηνός", "other", "-ηνός", "", "", "", "added to place"]) + let v = native_list_append(v, ["κοάξ", "other", "κοάξ", "", "", "", "croak the sound"]) + let v = native_list_append(v, ["συν-", "other", "συν-", "", "", "", "with together co-"]) + let v = native_list_append(v, ["ὑπο-", "other", "ὑπο-", "", "", "", "under sub- hypo-"]) + let v = native_list_append(v, ["-όω", "other", "-όω", "", "", "", "Added to a"]) + let v = native_list_append(v, ["-τής", "other", "-τής", "", "", "", "Appended to verbs"]) + let v = native_list_append(v, ["-ιστής", "other", "-ιστής", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-τήρ", "other", "-τήρ", "", "", "", "Added to verb"]) + let v = native_list_append(v, ["-τωρ", "other", "-τωρ", "", "", "", "used to form"]) + let v = native_list_append(v, ["παν-", "other", "παν-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["-ιάς", "other", "-ιάς", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ιά", "other", "-ιά", "", "", "", "forms nouns denoting"]) + let v = native_list_append(v, ["-ως", "other", "-ως", "", "", "", "Added to the"]) + let v = native_list_append(v, ["-κός", "other", "-κός", "", "", "", "forms adjectives with"]) + let v = native_list_append(v, ["-οσύνη", "other", "-οσύνη", "", "", "", "variant form of"]) + let v = native_list_append(v, ["-δε", "other", "-δε", "", "", "", "Added to noun"]) + let v = native_list_append(v, ["-ις", "other", "-ις", "", "", "", "Forms feminine nouns"]) + let v = native_list_append(v, ["-ίων", "other", "-ίων", "", "", "", "Suffix added to"]) + let v = native_list_append(v, ["-εύς", "other", "-εύς", "", "", "", "Added to noun"]) + let v = native_list_append(v, ["-ια", "other", "-ια", "", "", "", "Primitive suffix added"]) + let v = native_list_append(v, ["-στης", "other", "-στης", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-σκω", "other", "-σκω", "", "", "", "Primitive suffix used"]) + let v = native_list_append(v, ["-δην", "other", "-δην", "", "", "", "Added to verbal"]) + let v = native_list_append(v, ["-τις", "other", "-τις", "", "", "", "Earlier form of"]) + let v = native_list_append(v, ["-ος", "other", "-ος", "", "", "", "Added to verbal"]) + let v = native_list_append(v, ["-πλόος", "other", "-πλόος", "", "", "", "Forms an adjective"]) + let v = native_list_append(v, ["-νυμι", "other", "-νυμι", "", "", "", "A suffix forming"]) + let v = native_list_append(v, ["-ου", "other", "-ου", "", "", "", "Genitive singular of"]) + let v = native_list_append(v, ["-ῳ", "other", "-ῳ", "", "", "", "Dative singular of"]) + let v = native_list_append(v, ["-οι", "other", "-οι", "", "", "", "Nominative plural of"]) + let v = native_list_append(v, ["-ων", "other", "-ων", "", "", "", "Genitive plural of"]) + let v = native_list_append(v, ["-ῶν", "other", "-ῶν", "", "", "", "Genitive plural of"]) + let v = native_list_append(v, ["-οις", "other", "-οις", "", "", "", "Dative plural of"]) + let v = native_list_append(v, ["-εια", "other", "-εια", "", "", "", "Superficially appears in"]) + let v = native_list_append(v, ["-νος", "other", "-νος", "", "", "", "Added to roots"]) + let v = native_list_append(v, ["ἐπι-", "other", "ἐπι-", "", "", "", "on upon on"]) + let v = native_list_append(v, ["-ης", "other", "-ης", "", "", "", "forms third-declension adjectives"]) + let v = native_list_append(v, ["ἴα", "other", "ἴα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["-λλω", "other", "-λλω", "", "", "", "A suffix forming"]) + let v = native_list_append(v, ["-εινός", "other", "-εινός", "", "", "", "Usually added to"]) + let v = native_list_append(v, ["-ιμος", "other", "-ιμος", "", "", "", "Added to the"]) + let v = native_list_append(v, ["-μενος", "other", "-μενος", "", "", "", "Added to tense"]) + let v = native_list_append(v, ["-πτω", "other", "-πτω", "", "", "", "A suffix forming"]) + let v = native_list_append(v, ["-ζω", "other", "-ζω", "", "", "", "A suffix forming"]) + let v = native_list_append(v, ["-σσω", "other", "-σσω", "", "", "", "A suffix forming"]) + let v = native_list_append(v, ["-ττω", "other", "-ττω", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["-ιστος", "other", "-ιστος", "", "", "", "Added to some"]) + let v = native_list_append(v, ["-ιστα", "other", "-ιστα", "", "", "", "Superlative adverb suffix."]) + let v = native_list_append(v, ["-φάγος", "other", "-φάγος", "", "", "", "eater of eating"]) + let v = native_list_append(v, ["-ευτικός", "other", "-ευτικός", "", "", "", "Forms verbal adjectives"]) + let v = native_list_append(v, ["-άω", "other", "-άω", "", "", "", "Forms verbs usually"]) + let v = native_list_append(v, ["-φρων", "other", "-φρων", "", "", "", "A stem found"]) + let v = native_list_append(v, ["ἀνα-", "other", "ἀνα-", "", "", "", "up to upwards"]) + let v = native_list_append(v, ["ἐκ-", "other", "ἐκ-", "", "", "", "With a sense"]) + let v = native_list_append(v, ["-εύω", "other", "-εύω", "", "", "", "Added to the"]) + let v = native_list_append(v, ["προσ-", "other", "προσ-", "", "", "", "motion towards accession"]) + let v = native_list_append(v, ["-φι", "other", "-φι", "", "", "", "Creates a transnumeral"]) + let v = native_list_append(v, ["-φιν", "other", "-φιν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-φανής", "other", "-φανής", "", "", "", "Combining form used"]) + let v = native_list_append(v, ["-ίας", "other", "-ίας", "", "", "", "Suffix added to"]) + let v = native_list_append(v, ["-ίδας", "other", "-ίδας", "", "", "", "West Greek form"]) + let v = native_list_append(v, ["-κτόνος", "other", "-κτόνος", "", "", "", "-cidal added to"]) + let v = native_list_append(v, ["διακόσια", "other", "διακόσια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["τριακόσια", "other", "τριακόσια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["τετρακόσια", "other", "τετρακόσια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἄγε", "other", "ἄγε", "", "", "", "come! come on!"]) + let v = native_list_append(v, ["ἄγετε", "other", "ἄγετε", "", "", "", "come! come on!"]) + let v = native_list_append(v, ["-σε", "other", "-σε", "", "", "", "Added to words"]) + let v = native_list_append(v, ["σπεῦδε βραδέως", "other", "σπεῦδε βραδέως", "", "", "", "make haste slowly"]) + let v = native_list_append(v, ["εἰσ-", "other", "εἰσ-", "", "", "", "into"]) + let v = native_list_append(v, ["ἑξα-", "other", "ἑξα-", "", "", "", "Forming compound words"]) + let v = native_list_append(v, ["ἔ", "other", "ἔ", "", "", "", "ah"]) + let v = native_list_append(v, ["-κρατίας", "other", "-κρατίας", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["κἀγώ", "other", "κἀγώ", "", "", "", "contraction of καὶ"]) + let v = native_list_append(v, ["-τυπία", "other", "-τυπία", "", "", "", "Forms feminine abstract"]) + let v = native_list_append(v, ["-τυπίας", "other", "-τυπίας", "", "", "", "singular genitive of"]) + let v = native_list_append(v, ["-η", "other", "-η", "", "", "", "suffix of nouns"]) + let v = native_list_append(v, ["-ώνη", "other", "-ώνη", "", "", "", "Added to the"]) + let v = native_list_append(v, ["-εῖα", "other", "-εῖα", "", "", "", "Alternative accentuation of"]) + let v = native_list_append(v, ["ἤν", "other", "ἤν", "", "", "", "see there!"]) + let v = native_list_append(v, ["βῆ", "other", "βῆ", "", "", "", "baa “cry of"]) + let v = native_list_append(v, ["ἐγᾦμαι", "other", "ἐγᾦμαι", "", "", "", "contraction of ἐγώ"]) + let v = native_list_append(v, ["αἴ", "other", "αἴ", "", "", "", "expresses astonishment or"]) + let v = native_list_append(v, ["-άρχου", "other", "-άρχου", "", "", "", "singular genitive of"]) + let v = native_list_append(v, ["-ίδιον", "other", "-ίδιον", "", "", "", "suffixed to nouns"]) + let v = native_list_append(v, ["-τρις", "other", "-τρις", "", "", "", "Added to verb"]) + let v = native_list_append(v, ["◌͂", "other", "◌͂", "", "", "", "A diacritical mark"]) + let v = native_list_append(v, ["-γενής", "other", "-γενής", "", "", "", "born in a"]) + let v = native_list_append(v, ["ἐγώγε", "other", "ἐγώγε", "", "", "", "contraction of ἐγώ"]) + let v = native_list_append(v, ["-ίσκος", "other", "-ίσκος", "", "", "", "Noun-forming diminutive suffix."]) + let v = native_list_append(v, ["-ιον", "other", "-ιον", "", "", "", "termination of neuter"]) + let v = native_list_append(v, ["-άριον", "other", "-άριον", "", "", "", "A neuter diminutive"]) + let v = native_list_append(v, ["διὰ παντός", "other", "διὰ παντός", "", "", "", "forever always"]) + let v = native_list_append(v, ["-ής", "other", "-ής", "", "", "", "oxytone form of"]) + let v = native_list_append(v, ["ἀνδρο-", "other", "ἀνδρο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["παντο-", "other", "παντο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["τετρα-", "other", "τετρα-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["τεθρ-", "other", "τεθρ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-α", "other", "-α", "", "", "", "Earlier form of"]) + let v = native_list_append(v, ["Ͱ", "other", "Ͱ", "", "", "", "The uppercase letter"]) + let v = native_list_append(v, ["ͱ", "other", "ͱ", "", "", "", "A variant lowercase"]) + let v = native_list_append(v, ["Ͳ", "other", "Ͳ", "", "", "", "Ancient shape of"]) + let v = native_list_append(v, ["Ͻ", "other", "Ͻ", "", "", "", "namesake of the"]) + let v = native_list_append(v, ["ͳ", "other", "ͳ", "", "", "", "Ancient shape of"]) + let v = native_list_append(v, ["νη-", "other", "νη-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["να-", "other", "να-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νω-", "other", "νω-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["μεντἄν", "other", "μεντἄν", "", "", "", "contraction of μέντοι"]) + let v = native_list_append(v, ["ὤ", "other", "ὤ", "", "", "", "expression of surprise"]) + let v = native_list_append(v, ["πόποι", "other", "πόποι", "", "", "", "exclamation of surprise"]) + let v = native_list_append(v, ["εἵνεκα", "other", "εἵνεκα", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἑνί", "other", "ἑνί", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["-ο-", "other", "-ο-", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-μάντεως", "other", "-μάντεως", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["-μάντιος", "other", "-μάντιος", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἀντι-", "other", "ἀντι-", "", "", "", "anti- against"]) + let v = native_list_append(v, ["δύ'", "other", "δύ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἑνός", "other", "ἑνός", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἕνα", "other", "ἕνα", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["μιᾶς", "other", "μιᾶς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["-πλοῦς", "other", "-πλοῦς", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["-ήϊον", "other", "-ήϊον", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["-ῖνος", "other", "-ῖνος", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-μένος", "other", "-μένος", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-νός", "other", "-νός", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-τός", "other", "-τός", "", "", "", "Forms verbal adjectives"]) + let v = native_list_append(v, ["μιᾷ", "other", "μιᾷ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τεσσερεσκαίδεκα", "other", "τεσσερεσκαίδεκα", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["χάριν", "other", "χάριν", "", "", "", "for the sake"]) + let v = native_list_append(v, ["-ας", "other", "-ας", "", "", "", "The nominative singular"]) + let v = native_list_append(v, ["-κλῆς", "other", "-κλῆς", "", "", "", "An element found"]) + let v = native_list_append(v, ["ἆρον ἆρον", "other", "ἆρον ἆρον", "", "", "", "lift lift! take"]) + let v = native_list_append(v, ["-είου", "other", "-είου", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["-εία", "other", "-εία", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-είων", "other", "-είων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["-πετής", "other", "-πετής", "", "", "", "Forms adjectives one"]) + let v = native_list_append(v, ["-ιστί", "other", "-ιστί", "", "", "", "appended to names"]) + let v = native_list_append(v, ["-βάτης", "other", "-βάτης", "", "", "", "masculine one who"]) + let v = native_list_append(v, ["φεῦ", "other", "φεῦ", "", "", "", "alas!"]) + let v = native_list_append(v, ["ἔνθους", "other", "ἔνθους", "", "", "", "contraction of ἔνθεος"]) + let v = native_list_append(v, ["ὑδρο-", "other", "ὑδρο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["θερμο-", "other", "θερμο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["ὀλιγο-", "other", "ὀλιγο-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["-θερμος", "other", "-θερμος", "", "", "", "Combining form used"]) + let v = native_list_append(v, ["τρισχίλιοι", "other", "τρισχίλιοι", "", "", "", "three thousand"]) + let v = native_list_append(v, ["σοφόν τὸ σαφές", "other", "σοφόν τὸ σαφές", "", "", "", "wise is the"]) + let v = native_list_append(v, ["κἀν", "other", "κἀν", "", "", "", "crasis of καὶ"]) + let v = native_list_append(v, ["τριακόσιοι", "other", "τριακόσιοι", "", "", "", "three hundred"]) + let v = native_list_append(v, ["ἐν παραβύστῳ", "other", "ἐν παραβύστῳ", "", "", "", "sneakily on the"]) + let v = native_list_append(v, ["δυοῖν", "other", "δυοῖν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["δυεῖν", "other", "δυεῖν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["δυῶν", "other", "δυῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἕνεκ'", "other", "ἕνεκ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τέσσαρα", "other", "τέσσαρα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["τἆλλα", "other", "τἆλλα", "", "", "", "contraction of τά"]) + let v = native_list_append(v, ["τῷ ὄντι", "other", "τῷ ὄντι", "", "", "", "in fact in"]) + let v = native_list_append(v, ["-ήϊος", "other", "-ήϊος", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["χιλίους", "other", "χιλίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τριακοσίους", "other", "τριακοσίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ταὐτά", "other", "ταὐτά", "", "", "", "contraction of τᾰ̀"]) + let v = native_list_append(v, ["εἴκοσιν", "other", "εἴκοσιν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["τετρακόσιοι", "other", "τετρακόσιοι", "", "", "", "four hundred"]) + let v = native_list_append(v, ["τετρακοσίους", "other", "τετρακοσίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τετρακοσίοις", "other", "τετρακοσίοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τετρακοσίων", "other", "τετρακοσίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τετρακοσίας", "other", "τετρακοσίας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τετρακοσίαις", "other", "τετρακοσίαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τετρακόσιαι", "other", "τετρακόσιαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["τετρακοσίοισι", "other", "τετρακοσίοισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τετρακοσιέων", "other", "τετρακοσιέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["διακόσιοι", "other", "διακόσιοι", "", "", "", "two hundred"]) + let v = native_list_append(v, ["διακοσίους", "other", "διακοσίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["διακοσίοις", "other", "διακοσίοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["διακοσίων", "other", "διακοσίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["διακόσιαι", "other", "διακόσιαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["διακοσίαις", "other", "διακοσίαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["διακοσίας", "other", "διακοσίας", "", "", "", "inflection of δῐᾱκόσῐοι"]) + let v = native_list_append(v, ["διηκοσιέων", "other", "διηκοσιέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["διηκόσιοι", "other", "διηκόσιοι", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["διακάτιοι", "other", "διακάτιοι", "", "", "", "Doric form of"]) + let v = native_list_append(v, ["διηκοσίων", "other", "διηκοσίων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["διηκοσίους", "other", "διηκοσίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["διηκοσίας", "other", "διηκοσίας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["διηκοσίοισι", "other", "διηκοσίοισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["διηκόσια", "other", "διηκόσια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["διηκόσιαι", "other", "διηκόσιαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["τοὐναντίον", "other", "τοὐναντίον", "", "", "", "contraction of τὸ"]) + let v = native_list_append(v, ["κἀνταῦθα", "other", "κἀνταῦθα", "", "", "", "contraction of καὶ"]) + let v = native_list_append(v, ["τὠυτό", "other", "τὠυτό", "", "", "", "contraction of τὸ"]) + let v = native_list_append(v, ["ἐγᾦδα", "other", "ἐγᾦδα", "", "", "", "contraction of ἐγὼ"]) + let v = native_list_append(v, ["συ-", "other", "συ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["συγ-", "other", "συγ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["συλ-", "other", "συλ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["συμ-", "other", "συμ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["συρ-", "other", "συρ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["συσ-", "other", "συσ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["χαλεπὰ τὰ καλά", "other", "χαλεπὰ τὰ καλά", "", "", "", "beautiful/good things are"]) + let v = native_list_append(v, ["δεύτερον", "other", "δεύτερον", "", "", "", "inflection of δεύτερος"]) + let v = native_list_append(v, ["-μός", "other", "-μός", "", "", "", "Forms abstract nouns."]) + let v = native_list_append(v, ["-ώς", "other", "-ώς", "", "", "", "perfect active participle"]) + let v = native_list_append(v, ["ἐείκοσι", "other", "ἐείκοσι", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["εἶα", "other", "εἶα", "", "", "", "come on! let’s"]) + let v = native_list_append(v, ["κατ' ἐξοχήν", "other", "κατ' ἐξοχήν", "", "", "", "pre-eminent par excellence"]) + let v = native_list_append(v, ["δυοκαίδεκα", "other", "δυοκαίδεκα", "", "", "", "synonym of δώδεκα"]) + let v = native_list_append(v, ["εἵνεκ'", "other", "εἵνεκ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["-ειν", "other", "-ειν", "", "", "", "infinitive forming suffix"]) + let v = native_list_append(v, ["ὑπερ-", "other", "ὑπερ-", "", "", "", "over- super-"]) + let v = native_list_append(v, ["ἐ-", "other", "ἐ-", "", "", "", "the augment a"]) + let v = native_list_append(v, ["-τας", "other", "-τας", "", "", "", "forms nouns representing"]) + let v = native_list_append(v, ["ὤριστος", "other", "ὤριστος", "", "", "", "contraction of ὁ"]) + let v = native_list_append(v, ["ξυν-", "other", "ξυν-", "", "", "", "Old Attic form"]) + let v = native_list_append(v, ["τρεισκαίδεκα", "other", "τρεισκαίδεκα", "", "", "", "thirteen"]) + let v = native_list_append(v, ["πεντεκαίδεκα", "other", "πεντεκαίδεκα", "", "", "", "fifteen"]) + let v = native_list_append(v, ["τοὔνομα", "other", "τοὔνομα", "", "", "", "contraction of τὸ"]) + let v = native_list_append(v, ["-ώτης", "other", "-ώτης", "", "", "", "Suffix used to"]) + let v = native_list_append(v, ["-άδης", "other", "-άδης", "", "", "", "suffix added to"]) + let v = native_list_append(v, ["δυώδεκα", "other", "δυώδεκα", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["-ω", "other", "-ω", "", "", "", "ending of the"]) + let v = native_list_append(v, ["-ταο", "other", "-ταο", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["-τα", "other", "-τα", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["δέξαι", "other", "δέξαι", "", "", "", "take that"]) + let v = native_list_append(v, ["ἐείκοσιν", "other", "ἐείκοσιν", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["-ῖτις", "other", "-ῖτις", "", "", "", "female equivalent of"]) + let v = native_list_append(v, ["χιλίων", "other", "χιλίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["αὐτο-", "other", "αὐτο-", "", "", "", "self-"]) + let v = native_list_append(v, ["καλλι-", "other", "καλλι-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["-ίλη", "other", "-ίλη", "", "", "", ""]) + let v = native_list_append(v, ["τῆ", "other", "τῆ", "", "", "", "here there when"]) + let v = native_list_append(v, ["ἐξ-", "other", "ἐξ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-εναι", "other", "-εναι", "", "", "", "infinitive forming suffix"]) + let v = native_list_append(v, ["τέσσαρας", "other", "τέσσαρας", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["-ών", "other", "-ών", "", "", "", "forms words for"]) + let v = native_list_append(v, ["τήνελλα", "other", "τήνελλα", "", "", "", "hurrah"]) + let v = native_list_append(v, ["-μων", "other", "-μων", "", "", "", "Forms agent nouns"]) + let v = native_list_append(v, ["εἰς τοὺς αἰῶνας τῶν αἰώνων", "other", "εἰς τοὺς αἰῶνας τῶν αἰώνων", "", "", "", "forever and ever"]) + let v = native_list_append(v, ["καλός κἀγαθός", "other", "καλός κἀγαθός", "", "", "", "imbued with kalokagathia"]) + let v = native_list_append(v, ["εἰ δὲ μή γε", "other", "εἰ δὲ μή γε", "", "", "", "otherwise but if"]) + let v = native_list_append(v, ["ἴσσα", "other", "ἴσσα", "", "", "", "exclamation of malicious"]) + let v = native_list_append(v, ["ἑκκαίδεκα", "other", "ἑκκαίδεκα", "", "", "", "sixteen"]) + let v = native_list_append(v, ["ὀκτωκαίδεκα", "other", "ὀκτωκαίδεκα", "", "", "", "eighteen"]) + let v = native_list_append(v, ["ἑπτακαίδεκα", "other", "ἑπτακαίδεκα", "", "", "", "seventeen"]) + let v = native_list_append(v, ["ἐννεακαίδεκα", "other", "ἐννεακαίδεκα", "", "", "", "nineteen"]) + let v = native_list_append(v, ["-νή", "other", "-νή", "", "", "", "feminine singular of"]) + let v = native_list_append(v, ["-ίον", "other", "-ίον", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-τίδες", "other", "-τίδες", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["-τίς", "other", "-τίς", "", "", "", "extended form of"]) + let v = native_list_append(v, ["ἐπ-", "other", "ἐπ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐν-", "other", "ἐν-", "", "", "", "in-"]) + let v = native_list_append(v, ["-άνη", "other", "-άνη", "", "", "", "Suffix for instrument"]) + let v = native_list_append(v, ["τέσσαρσιν", "other", "τέσσαρσιν", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["ἀλληλούϊα", "other", "ἀλληλούϊα", "", "", "", "hallelujah"]) + let v = native_list_append(v, ["ὡσαννά", "other", "ὡσαννά", "", "", "", "hosanna"]) + let v = native_list_append(v, ["οἴ", "other", "οἴ", "", "", "", "woe expressing pain"]) + let v = native_list_append(v, ["-θρον", "other", "-θρον", "", "", "", "forms instrument nouns"]) + let v = native_list_append(v, ["δισχιλίοις", "other", "δισχιλίοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ῥήματα ἀντ' ἀλφίτων", "other", "ῥήματα ἀντ' ἀλφίτων", "", "", "", "fine words butter"]) + let v = native_list_append(v, ["γνῶθι σεαυτόν", "other", "γνῶθι σεαυτόν", "", "", "", "know thyself"]) + let v = native_list_append(v, ["Ἑρμῆς ἐπεισελήλυθε", "other", "Ἑρμῆς ἐπεισελήλυθε", "", "", "", "an angel passes"]) + let v = native_list_append(v, ["◌͡◌", "other", "◌͡◌", "", "", "", "Used to mark"]) + let v = native_list_append(v, ["ψευδ-", "other", "ψευδ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-άλιος", "other", "-άλιος", "", "", "", "an adjective-forming suffix"]) + let v = native_list_append(v, ["κἀκείνων", "other", "κἀκείνων", "", "", "", "contraction of καὶ"]) + let v = native_list_append(v, ["ψυχ-", "other", "ψυχ-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-τέος", "other", "-τέος", "", "", "", "creates verbal adjectives"]) + let v = native_list_append(v, ["κεἰς", "other", "κεἰς", "", "", "", "crasis of καὶ"]) + let v = native_list_append(v, ["μία χελιδὼν ἔαρ οὐ ποιεῖ", "other", "μία χελιδὼν ἔαρ οὐ ποιεῖ", "", "", "", "one swallow does"]) + let v = native_list_append(v, ["-ίτσιν", "other", "-ίτσιν", "", "", "", "a suffix added"]) + let v = native_list_append(v, ["-τέα", "other", "-τέα", "", "", "", "inflection of -τέος"]) + let v = native_list_append(v, ["-τέον", "other", "-τέον", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["-τήριος", "other", "-τήριος", "", "", "", "Added to verb"]) + let v = native_list_append(v, ["-ουργός", "other", "-ουργός", "", "", "", "creates compound nouns"]) + let v = native_list_append(v, ["βομβάξ", "other", "βομβάξ", "", "", "", "buzz!"]) + let v = native_list_append(v, ["ξυγ-", "other", "ξυγ-", "", "", "", "Old Attic form"]) + let v = native_list_append(v, ["-τειρα", "other", "-τειρα", "", "", "", "used to form"]) + let v = native_list_append(v, ["𐠂", "other", "𐠂", "", "", "", "A syllable of"]) + let v = native_list_append(v, ["σχεδόν", "adv", "σχεδόν", "", "", "", "near nearby"]) + let v = native_list_append(v, ["μέχρι", "adv", "μέχρι", "", "", "", "until"]) + let v = native_list_append(v, ["ἀμήν", "adv", "ἀμήν", "", "", "", "truly certainly"]) + let v = native_list_append(v, ["διά", "adv", "διά", "", "", "", "throughout"]) + let v = native_list_append(v, ["ὑπέρ", "adv", "ὑπέρ", "", "", "", "overmuch above measure"]) + let v = native_list_append(v, ["εὖ", "adv", "εὖ", "", "", "", "well"]) + let v = native_list_append(v, ["ἀεί", "adv", "ἀεί", "", "", "", "always ever at"]) + let v = native_list_append(v, ["πάλαι", "adv", "πάλαι", "", "", "", "long ago in"]) + let v = native_list_append(v, ["εὐθέως", "adv", "εὐθέως", "", "", "", "immediately at once"]) + let v = native_list_append(v, ["ὁμοῦ", "adv", "ὁμοῦ", "", "", "", "At the same"]) + let v = native_list_append(v, ["πρός", "adv", "πρός", "", "", "", "besides over and"]) + let v = native_list_append(v, ["δίς", "adv", "δίς", "", "", "", "twice doubly again"]) + let v = native_list_append(v, ["μόνον", "adv", "μόνον", "", "", "", "only"]) + let v = native_list_append(v, ["πρό", "adv", "πρό", "", "", "", "before in front"]) + let v = native_list_append(v, ["ἅμα", "adv", "ἅμα", "", "", "", "marking the simultaneous"]) + let v = native_list_append(v, ["μετά", "adv", "μετά", "", "", "", "among them with"]) + let v = native_list_append(v, ["Ἰουδαϊκῶς", "adv", "Ἰουδαϊκῶς", "", "", "", "In a Judean"]) + let v = native_list_append(v, ["τῇ", "adv", "τῇ", "", "", "", "here there"]) + let v = native_list_append(v, ["αὐτοῦ", "adv", "αὐτοῦ", "", "", "", "here there"]) + let v = native_list_append(v, ["ὧδε", "adv", "ὧδε", "", "", "", "demonstrative adverb In"]) + let v = native_list_append(v, ["πρωΐ", "adv", "πρωΐ", "", "", "", "early in the"]) + let v = native_list_append(v, ["πρῴ", "adv", "πρῴ", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["πρῶϊ", "adv", "πρῶϊ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἀμφίς", "adv", "ἀμφίς", "", "", "", "on both sides"]) + let v = native_list_append(v, ["ἰδίως", "adv", "ἰδίως", "", "", "", "peculiarly"]) + let v = native_list_append(v, ["ποτέ", "adv", "ποτέ", "", "", "", "at some time"]) + let v = native_list_append(v, ["κάτω", "adv", "κάτω", "", "", "", "downwards"]) + let v = native_list_append(v, ["χθές", "adv", "χθές", "", "", "", "yesterday"]) + let v = native_list_append(v, ["πως", "adv", "πως", "", "", "", "In any way"]) + let v = native_list_append(v, ["μόλις", "adv", "μόλις", "", "", "", "only just"]) + let v = native_list_append(v, ["χωρίς", "adv", "χωρίς", "", "", "", "separately differently"]) + let v = native_list_append(v, ["δωρεάν", "adv", "δωρεάν", "", "", "", "as a free"]) + let v = native_list_append(v, ["πέρυσι", "adv", "πέρυσι", "", "", "", "a year ago"]) + let v = native_list_append(v, ["δίχα", "adv", "δίχα", "", "", "", "in two asunder"]) + let v = native_list_append(v, ["αὔριον", "adv", "αὔριον", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["νειόθεν", "adv", "νειόθεν", "", "", "", "from the bottom"]) + let v = native_list_append(v, ["νῦν", "adv", "νῦν", "", "", "", "now at this"]) + let v = native_list_append(v, ["βουστροφηδόν", "adv", "βουστροφηδόν", "", "", "", "boustrophedonically as a"]) + let v = native_list_append(v, ["τῆλε", "adv", "τῆλε", "", "", "", "far off afar"]) + let v = native_list_append(v, ["βεβαίως", "adv", "βεβαίως", "", "", "", "constantly without interruption"]) + let v = native_list_append(v, ["πότε", "adv", "πότε", "", "", "", "when? at what"]) + let v = native_list_append(v, ["οὐδέν", "adv", "οὐδέν", "", "", "", "in no way"]) + let v = native_list_append(v, ["τάχα", "adv", "τάχα", "", "", "", "quickly soon forthwith"]) + let v = native_list_append(v, ["πρώην", "adv", "πρώην", "", "", "", "lately just now"]) + let v = native_list_append(v, ["εἰκῇ", "adv", "εἰκῇ", "", "", "", "without cause"]) + let v = native_list_append(v, ["χαμαί", "adv", "χαμαί", "", "", "", "on the earth"]) + let v = native_list_append(v, ["πόθεν", "adv", "πόθεν", "", "", "", "whence? from where?"]) + let v = native_list_append(v, ["ποῦ", "adv", "ποῦ", "", "", "", "where?"]) + let v = native_list_append(v, ["που", "adv", "που", "", "", "", "anywhere somewhere"]) + let v = native_list_append(v, ["πῶς", "adv", "πῶς", "", "", "", "how? in what"]) + let v = native_list_append(v, ["ὑφέν", "adv", "ὑφέν", "", "", "", "in one word"]) + let v = native_list_append(v, ["θετικῶς", "adv", "θετικῶς", "", "", "", "positively affirmatively"]) + let v = native_list_append(v, ["σφιγκτῶς", "adv", "σφιγκτῶς", "", "", "", "adverb of σφιγκτός"]) + let v = native_list_append(v, ["μόνως", "adv", "μόνως", "", "", "", "adverb of μόνος"]) + let v = native_list_append(v, ["πώς", "adv", "πώς", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["κατόπιν", "adv", "κατόπιν", "", "", "", "behind after"]) + let v = native_list_append(v, ["ὄπισθεν", "adv", "ὄπισθεν", "", "", "", "behind at the"]) + let v = native_list_append(v, ["κρυφῇ", "adv", "κρυφῇ", "", "", "", "secretly in secret"]) + let v = native_list_append(v, ["κρυφᾷ", "adv", "κρυφᾷ", "", "", "", "Doric form of"]) + let v = native_list_append(v, ["πολλαχόσε", "adv", "πολλαχόσε", "", "", "", "Towards many sides"]) + let v = native_list_append(v, ["ἔξω", "adv", "ἔξω", "", "", "", "out out of"]) + let v = native_list_append(v, ["ὁμοίως", "adv", "ὁμοίως", "", "", "", "In like manner"]) + let v = native_list_append(v, ["πέλας", "adv", "πέλας", "", "", "", "nearby hard by"]) + let v = native_list_append(v, ["ἔσχατον", "adv", "ἔσχατον", "", "", "", "to the uttermost"]) + let v = native_list_append(v, ["ἔνδον", "adv", "ἔνδον", "", "", "", "in within"]) + let v = native_list_append(v, ["πολύ", "adv", "πολύ", "", "", "", "much very"]) + let v = native_list_append(v, ["μεταξύ", "adv", "μεταξύ", "", "", "", "between in between"]) + let v = native_list_append(v, ["τρίχα", "adv", "τρίχα", "", "", "", "in three parts"]) + let v = native_list_append(v, ["πίσω", "adv", "πίσω", "", "", "", "Byzantine form of"]) + let v = native_list_append(v, ["πού", "adv", "πού", "", "", "", "anywhere somewhere"]) + let v = native_list_append(v, ["μάταια", "adv", "μάταια", "", "", "", "frivolously pointlessly"]) + let v = native_list_append(v, ["κάρτα", "adv", "κάρτα", "", "", "", "very very much"]) + let v = native_list_append(v, ["τί", "adv", "τί", "", "", "", "why?"]) + let v = native_list_append(v, ["οὗ", "adv", "οὗ", "", "", "", "where when"]) + let v = native_list_append(v, ["μέχρις", "adv", "μέχρις", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["μέγιστα", "adv", "μέγιστα", "", "", "", "most greatly greatest"]) + let v = native_list_append(v, ["οἴκοθεν", "adv", "οἴκοθεν", "", "", "", "from home"]) + let v = native_list_append(v, ["ἐκεῖ", "adv", "ἐκεῖ", "", "", "", "demonstrative adverb there"]) + let v = native_list_append(v, ["ὡς", "adv", "ὡς", "", "", "", "the introduction to"]) + let v = native_list_append(v, ["εὐθύς", "adv", "εὐθύς", "", "", "", "straight"]) + let v = native_list_append(v, ["πρότερον", "adv", "πρότερον", "", "", "", "formerly before"]) + let v = native_list_append(v, ["τέτραχα", "adv", "τέτραχα", "", "", "", "in four parts"]) + let v = native_list_append(v, ["ἐπάνω", "adv", "ἐπάνω", "", "", "", "above higher than"]) + let v = native_list_append(v, ["ἡμέρας", "adv", "ἡμέρας", "", "", "", "within a certain"]) + let v = native_list_append(v, ["οὕτως", "adv", "οὕτως", "", "", "", "in this manner"]) + let v = native_list_append(v, ["ὑποκάτω", "adv", "ὑποκάτω", "", "", "", "under below"]) + let v = native_list_append(v, ["μέγα", "adv", "μέγα", "", "", "", "greatly mightily loudly"]) + let v = native_list_append(v, ["λίαν", "adv", "λίαν", "", "", "", "very"]) + let v = native_list_append(v, ["ἄλλως", "adv", "ἄλλως", "", "", "", "otherwise"]) + let v = native_list_append(v, ["πτωχῶς", "adv", "πτωχῶς", "", "", "", "poorly scantily"]) + let v = native_list_append(v, ["τότε", "adv", "τότε", "", "", "", "at that time"]) + let v = native_list_append(v, ["αδιακρίτως", "adv", "αδιακρίτως", "", "", "", "unwaveringly"]) + let v = native_list_append(v, ["δικαίως", "adv", "δικαίως", "", "", "", "decently"]) + let v = native_list_append(v, ["ἔραζε", "adv", "ἔραζε", "", "", "", "to the ground"]) + let v = native_list_append(v, ["ἰδού", "adv", "ἰδού", "", "", "", "lo! behold!"]) + let v = native_list_append(v, ["ἕως", "adv", "ἕως", "", "", "", "for a time"]) + let v = native_list_append(v, ["οὐδέ", "adv", "οὐδέ", "", "", "", "not even not"]) + let v = native_list_append(v, ["πάλιν", "adv", "πάλιν", "", "", "", "back backwards"]) + let v = native_list_append(v, ["ἐνώπιον", "adv", "ἐνώπιον", "", "", "", "face to face"]) + let v = native_list_append(v, ["ἔτι", "adv", "ἔτι", "", "", "", "yet still"]) + let v = native_list_append(v, ["λοιπόν", "adv", "λοιπόν", "", "", "", "further besides"]) + let v = native_list_append(v, ["τέως", "adv", "τέως", "", "", "", "meanwhile in the"]) + let v = native_list_append(v, ["ἔναντι", "adv", "ἔναντι", "", "", "", "opposite"]) + let v = native_list_append(v, ["οὔτε", "adv", "οὔτε", "", "", "", "and not"]) + let v = native_list_append(v, ["ὥστε", "adv", "ὥστε", "", "", "", "as"]) + let v = native_list_append(v, ["ὅπου", "adv", "ὅπου", "", "", "", "where"]) + let v = native_list_append(v, ["μᾶλλον", "adv", "μᾶλλον", "", "", "", "more more strongly"]) + let v = native_list_append(v, ["ἤδη", "adv", "ἤδη", "", "", "", "by this time"]) + let v = native_list_append(v, ["μηδέ", "adv", "μηδέ", "", "", "", "not even"]) + let v = native_list_append(v, ["ὅπως", "adv", "ὅπως", "", "", "", "in such a"]) + let v = native_list_append(v, ["ἄχρι", "adv", "ἄχρι", "", "", "", "to the very"]) + let v = native_list_append(v, ["ἔμπροσθεν", "adv", "ἔμπροσθεν", "", "", "", "before in front"]) + let v = native_list_append(v, ["οὐκέτι", "adv", "οὐκέτι", "", "", "", "no more no"]) + let v = native_list_append(v, ["σήμερον", "adv", "σήμερον", "", "", "", "today"]) + let v = native_list_append(v, ["ᾗ", "adv", "ᾗ", "", "", "", "which way where"]) + let v = native_list_append(v, ["ὥσπερ", "adv", "ὥσπερ", "", "", "", "like as even"]) + let v = native_list_append(v, ["ἄρτι", "adv", "ἄρτι", "", "", "", "this moment even"]) + let v = native_list_append(v, ["καλῶς", "adv", "καλῶς", "", "", "", "well rightly"]) + let v = native_list_append(v, ["ὀπίσω", "adv", "ὀπίσω", "", "", "", "backwards"]) + let v = native_list_append(v, ["ναί", "adv", "ναί", "", "", "", "yea verily"]) + let v = native_list_append(v, ["ἐγγύς", "adv", "ἐγγύς", "", "", "", "near"]) + let v = native_list_append(v, ["ἕωθεν", "adv", "ἕωθεν", "", "", "", "from morn at"]) + let v = native_list_append(v, ["μάλιστα", "adv", "μάλιστα", "", "", "", "most most of"]) + let v = native_list_append(v, ["ἐκεῖθεν", "adv", "ἐκεῖθεν", "", "", "", "from that place"]) + let v = native_list_append(v, ["οὔπω", "adv", "οὔπω", "", "", "", "not yet"]) + let v = native_list_append(v, ["μήποτε", "adv", "μήποτε", "", "", "", "never on no"]) + let v = native_list_append(v, ["πέραν", "adv", "πέραν", "", "", "", "on the other"]) + let v = native_list_append(v, ["μηκέτι", "adv", "μηκέτι", "", "", "", "no more no"]) + let v = native_list_append(v, ["ὡσεί", "adv", "ὡσεί", "", "", "", "as if as"]) + let v = native_list_append(v, ["νυνί", "adv", "νυνί", "", "", "", "now at this"]) + let v = native_list_append(v, ["πρίν", "adv", "πρίν", "", "", "", "before sooner formerly"]) + let v = native_list_append(v, ["καθάπερ", "adv", "καθάπερ", "", "", "", "exactly as"]) + let v = native_list_append(v, ["Ἑβραϊστί", "adv", "Ἑβραϊστί", "", "", "", "in the Hebrew"]) + let v = native_list_append(v, ["κατέναντι", "adv", "κατέναντι", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["κατεναντίον", "adv", "κατεναντίον", "", "", "", "over against opposite"]) + let v = native_list_append(v, ["ἐκτός", "adv", "ἐκτός", "", "", "", "without outside out"]) + let v = native_list_append(v, ["καθότι", "adv", "καθότι", "", "", "", "in what manner"]) + let v = native_list_append(v, ["ἀπέναντι", "adv", "ἀπέναντι", "", "", "", "opposite"]) + let v = native_list_append(v, ["ποῖ", "adv", "ποῖ", "", "", "", "whither? whereto? where?"]) + let v = native_list_append(v, ["μάλα", "adv", "μάλα", "", "", "", "very very much"]) + let v = native_list_append(v, ["εἶτα", "adv", "εἶτα", "", "", "", "then next"]) + let v = native_list_append(v, ["ἔπειτα", "adv", "ἔπειτα", "", "", "", "thereupon thereafter then"]) + let v = native_list_append(v, ["πλησίον", "adv", "πλησίον", "", "", "", "nearby"]) + let v = native_list_append(v, ["μακράν", "adv", "μακράν", "", "", "", "far"]) + let v = native_list_append(v, ["θεοσόφως", "adv", "θεοσόφως", "", "", "", "With knowledge in"]) + let v = native_list_append(v, ["πέρα", "adv", "πέρα", "", "", "", "beyond"]) + let v = native_list_append(v, ["ἔνθα", "adv", "ἔνθα", "", "", "", "there thither location"]) + let v = native_list_append(v, ["δεῦρο", "adv", "δεῦρο", "", "", "", "hither"]) + let v = native_list_append(v, ["πεντάκις", "adv", "πεντάκις", "", "", "", "five times"]) + let v = native_list_append(v, ["ἑξάκις", "adv", "ἑξάκις", "", "", "", "six times"]) + let v = native_list_append(v, ["ἑξηκοντάκις", "adv", "ἑξηκοντάκις", "", "", "", "sixty times"]) + let v = native_list_append(v, ["νειόθι", "adv", "νειόθι", "", "", "", "at the bottom"]) + let v = native_list_append(v, ["ἄγχι", "adv", "ἄγχι", "", "", "", "near nigh"]) + let v = native_list_append(v, ["ἆσσον", "adv", "ἆσσον", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["ἀγχόθι", "adv", "ἀγχόθι", "", "", "", "near"]) + let v = native_list_append(v, ["ἄλλοθι", "adv", "ἄλλοθι", "", "", "", "elsewhere in another"]) + let v = native_list_append(v, ["ἀλλαχόθι", "adv", "ἀλλαχόθι", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["αὐτόθι", "adv", "αὐτόθι", "", "", "", "on the spot"]) + let v = native_list_append(v, ["αὖθι", "adv", "αὖθι", "", "", "", "contraction of αὐτόθι"]) + let v = native_list_append(v, ["ἐγγύθι", "adv", "ἐγγύθι", "", "", "", "near"]) + let v = native_list_append(v, ["ἐκεῖθι", "adv", "ἐκεῖθι", "", "", "", "there"]) + let v = native_list_append(v, ["ἔνδοθι", "adv", "ἔνδοθι", "", "", "", "within at home"]) + let v = native_list_append(v, ["εἴσω", "adv", "εἴσω", "", "", "", "into"]) + let v = native_list_append(v, ["ἔσω", "adv", "ἔσω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ἀθήναζε", "adv", "Ἀθήναζε", "", "", "", "to Athens"]) + let v = native_list_append(v, ["Ἀθήνηθεν", "adv", "Ἀθήνηθεν", "", "", "", "from Athens"]) + let v = native_list_append(v, ["Ἀθήνησιν", "adv", "Ἀθήνησιν", "", "", "", "at Athens in"]) + let v = native_list_append(v, ["ἅπαξ", "adv", "ἅπαξ", "", "", "", "once one time"]) + let v = native_list_append(v, ["πάνυ", "adv", "πάνυ", "", "", "", "altogether completely perfectly"]) + let v = native_list_append(v, ["ἑκάς", "adv", "ἑκάς", "", "", "", "afar far off"]) + let v = native_list_append(v, ["πόθι", "adv", "πόθι", "", "", "", "where?"]) + let v = native_list_append(v, ["βάδην", "adv", "βάδην", "", "", "", "step-by-step"]) + let v = native_list_append(v, ["ἄρδην", "adv", "ἄρδην", "", "", "", "lifted up on"]) + let v = native_list_append(v, ["κρύβδην", "adv", "κρύβδην", "", "", "", "secretly without the"]) + let v = native_list_append(v, ["καταλογάδην", "adv", "καταλογάδην", "", "", "", "in conversation or"]) + let v = native_list_append(v, ["συλλήβδην", "adv", "συλλήβδην", "", "", "", "in sum in"]) + let v = native_list_append(v, ["σποράδην", "adv", "σποράδην", "", "", "", "in a scattered"]) + let v = native_list_append(v, ["χύδην", "adv", "χύδην", "", "", "", "as if poured"]) + let v = native_list_append(v, ["μεῖζον", "adv", "μεῖζον", "", "", "", "more greatly"]) + let v = native_list_append(v, ["ἦρι", "adv", "ἦρι", "", "", "", "early in the"]) + let v = native_list_append(v, ["ἁμόθεν", "adv", "ἁμόθεν", "", "", "", "From some place"]) + let v = native_list_append(v, ["νόσφι", "adv", "νόσφι", "", "", "", "away far away"]) + let v = native_list_append(v, ["νόσφιν", "adv", "νόσφιν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νόσφ'", "adv", "νόσφ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["διχθά", "adv", "διχθά", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["τηλόθι", "adv", "τηλόθι", "", "", "", "at a distance"]) + let v = native_list_append(v, ["ὕψι", "adv", "ὕψι", "", "", "", "on high aloft"]) + let v = native_list_append(v, ["πολλάκις", "adv", "πολλάκις", "", "", "", "often many times"]) + let v = native_list_append(v, ["πλειστάκις", "adv", "πλειστάκις", "", "", "", "mostly very often"]) + let v = native_list_append(v, ["κατὰ στοιχεῖον", "adv", "κατὰ στοιχεῖον", "", "", "", "in the order"]) + let v = native_list_append(v, ["στοιχειακῶς", "adv", "στοιχειακῶς", "", "", "", "literally alphabetically"]) + let v = native_list_append(v, ["στοιχειωδῶς", "adv", "στοιχειωδῶς", "", "", "", "elementarily"]) + let v = native_list_append(v, ["ἀληθῶς", "adv", "ἀληθῶς", "", "", "", "truly verily adverb"]) + let v = native_list_append(v, ["τόθι", "adv", "τόθι", "", "", "", "there"]) + let v = native_list_append(v, ["ὅθι", "adv", "ὅθι", "", "", "", "where"]) + let v = native_list_append(v, ["ποθι", "adv", "ποθι", "", "", "", "somewhere anywhere"]) + let v = native_list_append(v, ["πόσε", "adv", "πόσε", "", "", "", "whither?"]) + let v = native_list_append(v, ["κυκλόσε", "adv", "κυκλόσε", "", "", "", "into a circle"]) + let v = native_list_append(v, ["ποθεν", "adv", "ποθεν", "", "", "", "from somewhere"]) + let v = native_list_append(v, ["ὅθεν", "adv", "ὅθεν", "", "", "", "whence from where"]) + let v = native_list_append(v, ["ἠῶθεν", "adv", "ἠῶθεν", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἀῶθεν", "adv", "ἀῶθεν", "", "", "", "Doric form of"]) + let v = native_list_append(v, ["σφόδρα", "adv", "σφόδρα", "", "", "", "very very much"]) + let v = native_list_append(v, ["κεκρυμμένως", "adv", "κεκρυμμένως", "", "", "", "covertly secretly"]) + let v = native_list_append(v, ["πάρεγγυς", "adv", "πάρεγγυς", "", "", "", "near at hand"]) + let v = native_list_append(v, ["ὥς", "adv", "ὥς", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["αὖ", "adv", "αὖ", "", "", "", "Again anew afresh"]) + let v = native_list_append(v, ["αὖτε", "adv", "αὖτε", "", "", "", "again furthermore on"]) + let v = native_list_append(v, ["λίπα", "adv", "λίπα", "", "", "", "richly"]) + let v = native_list_append(v, ["οὐδ'", "adv", "οὐδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μάλ'", "adv", "μάλ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἔνθ'", "adv", "ἔνθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["οὔτ'", "adv", "οὔτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὖτ'", "adv", "αὖτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὖτις", "adv", "αὖτις", "", "", "", "back to a"]) + let v = native_list_append(v, ["αἰεί", "adv", "αἰεί", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἅμ'", "adv", "ἅμ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὐτίκα", "adv", "αὐτίκα", "", "", "", "at once immediately"]) + let v = native_list_append(v, ["ἄψ", "adv", "ἄψ", "", "", "", "back back again"]) + let v = native_list_append(v, ["τότ'", "adv", "τότ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τόθ'", "adv", "τόθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ποτ'", "adv", "ποτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ποτε", "adv", "ποτε", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["ποθ'", "adv", "ποθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἔπειτ'", "adv", "ἔπειτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἔπειθ'", "adv", "ἔπειθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τόδε", "adv", "τόδε", "", "", "", "hither to this"]) + let v = native_list_append(v, ["πάρος", "adv", "πάρος", "", "", "", "formerly up to"]) + let v = native_list_append(v, ["ὅτ'", "adv", "ὅτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὅθ'", "adv", "ὅθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἔτ'", "adv", "ἔτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αἶψα", "adv", "αἶψα", "", "", "", "quickly all of"]) + let v = native_list_append(v, ["ἀντίον", "adv", "ἀντίον", "", "", "", "against me him"]) + let v = native_list_append(v, ["αὐτίκ'", "adv", "αὐτίκ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τάδε", "adv", "τάδε", "", "", "", "on this account"]) + let v = native_list_append(v, ["ἐνθάδ'", "adv", "ἐνθάδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἐνθάδε", "adv", "ἐνθάδε", "", "", "", "hither here"]) + let v = native_list_append(v, ["ἐνταῦθα", "adv", "ἐνταῦθα", "", "", "", "here there"]) + let v = native_list_append(v, ["ἐνταῦθ'", "adv", "ἐνταῦθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πῆμος", "adv", "πῆμος", "", "", "", "when?"]) + let v = native_list_append(v, ["νή", "adv", "νή", "", "", "", "by"]) + let v = native_list_append(v, ["ἔστε", "adv", "ἔστε", "", "", "", "up to. even"]) + let v = native_list_append(v, ["σάφα", "adv", "σάφα", "", "", "", "clearly obviously assuredly"]) + let v = native_list_append(v, ["οὕτω", "adv", "οὕτω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὦκα", "adv", "ὦκα", "", "", "", "quickly swiftly"]) + let v = native_list_append(v, ["πρῶτα", "adv", "πρῶτα", "", "", "", "first in the"]) + let v = native_list_append(v, ["ἀμφότερον", "adv", "ἀμφότερον", "", "", "", "both together"]) + let v = native_list_append(v, ["νέω", "adv", "νέω", "", "", "", "next year"]) + let v = native_list_append(v, ["αὔτως", "adv", "αὔτως", "", "", "", "just so"]) + let v = native_list_append(v, ["μηδ'", "adv", "μηδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὀπίσσω", "adv", "ὀπίσσω", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["τόφρα", "adv", "τόφρα", "", "", "", "up to that"]) + let v = native_list_append(v, ["ἥκιστα", "adv", "ἥκιστα", "", "", "", "least"]) + let v = native_list_append(v, ["οὐχ ἥκιστα", "adv", "οὐχ ἥκιστα", "", "", "", "not least above"]) + let v = native_list_append(v, ["τάχιστα", "adv", "τάχιστα", "", "", "", "quickest speediest"]) + let v = native_list_append(v, ["ὀξύ", "adv", "ὀξύ", "", "", "", "quickly rapidly"]) + let v = native_list_append(v, ["τόδ'", "adv", "τόδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["νημερτές", "adv", "νημερτές", "", "", "", "clearly so that"]) + let v = native_list_append(v, ["οἷον", "adv", "οἷον", "", "", "", "in poets and"]) + let v = native_list_append(v, ["οἴκαδ'", "adv", "οἴκαδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["οἴκαδε", "adv", "οἴκαδε", "", "", "", "home homewards"]) + let v = native_list_append(v, ["ἔνθεν", "adv", "ἔνθεν", "", "", "", "thence from there"]) + let v = native_list_append(v, ["ὅσσον", "adv", "ὅσσον", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ὁπότε", "adv", "ὁπότε", "", "", "", "when mostly in"]) + let v = native_list_append(v, ["ὁππότε", "adv", "ὁππότε", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["πρόσθεν", "adv", "πρόσθεν", "", "", "", "before in front"]) + let v = native_list_append(v, ["καρπαλίμως", "adv", "καρπαλίμως", "", "", "", "swiftly quickly"]) + let v = native_list_append(v, ["λίην", "adv", "λίην", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἐγγύθεν", "adv", "ἐγγύθεν", "", "", "", "from nearby"]) + let v = native_list_append(v, ["εἰς ὄνυχα", "adv", "εἰς ὄνυχα", "", "", "", "ad unguem"]) + let v = native_list_append(v, ["αἰέν", "adv", "αἰέν", "", "", "", "Epic and Tragic"]) + let v = native_list_append(v, ["οἷ", "adv", "οἷ", "", "", "", "to where whither"]) + let v = native_list_append(v, ["προπάροιθε", "adv", "προπάροιθε", "", "", "", "before spatial in"]) + let v = native_list_append(v, ["ἦμος", "adv", "ἦμος", "", "", "", "when relative at"]) + let v = native_list_append(v, ["ἔμπης", "adv", "ἔμπης", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἔμπας", "adv", "ἔμπας", "", "", "", "in any case"]) + let v = native_list_append(v, ["πάμπαν", "adv", "πάμπαν", "", "", "", "wholly altogether quite"]) + let v = native_list_append(v, ["δήν", "adv", "δήν", "", "", "", "for a long"]) + let v = native_list_append(v, ["ἁβρῶς", "adv", "ἁβρῶς", "", "", "", "gracefully delicately"]) + let v = native_list_append(v, ["αὖθ'", "adv", "αὖθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀπάνευθε", "adv", "ἀπάνευθε", "", "", "", "from afar"]) + let v = native_list_append(v, ["ὧδ'", "adv", "ὧδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἄφαρ", "adv", "ἄφαρ", "", "", "", "forthwith"]) + let v = native_list_append(v, ["θύραζε", "adv", "θύραζε", "", "", "", "to the door"]) + let v = native_list_append(v, ["ἄντα", "adv", "ἄντα", "", "", "", "over against face"]) + let v = native_list_append(v, ["ἐΰ", "adv", "ἐΰ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["αἶψ'", "adv", "αἶψ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["δεῦρ'", "adv", "δεῦρ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["οὐκέτ'", "adv", "οὐκέτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὅσα", "adv", "ὅσα", "", "", "", "as far as"]) + let v = native_list_append(v, ["σιωπῇ", "adv", "σιωπῇ", "", "", "", "silently in silence"]) + let v = native_list_append(v, ["ἄλλοτε", "adv", "ἄλλοτε", "", "", "", "at another time"]) + let v = native_list_append(v, ["ἑτέρωθεν", "adv", "ἑτέρωθεν", "", "", "", "from the other"]) + let v = native_list_append(v, ["αἰνῶς", "adv", "αἰνῶς", "", "", "", "horribly dreadfully"]) + let v = native_list_append(v, ["ῥεῖα", "adv", "ῥεῖα", "", "", "", "easily lightly"]) + let v = native_list_append(v, ["ἀτρεκέως", "adv", "ἀτρεκέως", "", "", "", "accurately precisely"]) + let v = native_list_append(v, ["ἅλις", "adv", "ἅλις", "", "", "", "in crowds"]) + let v = native_list_append(v, ["χαμᾶζε", "adv", "χαμᾶζε", "", "", "", "to the ground"]) + let v = native_list_append(v, ["ὁμῶς", "adv", "ὁμῶς", "", "", "", "together"]) + let v = native_list_append(v, ["ὅμως", "adv", "ὅμως", "", "", "", "nevertheless yet all"]) + let v = native_list_append(v, ["ὅσον", "adv", "ὅσον", "", "", "", "so far as"]) + let v = native_list_append(v, ["ἔμπεδον", "adv", "ἔμπεδον", "", "", "", "with firm stand"]) + let v = native_list_append(v, ["ὅσσα", "adv", "ὅσσα", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἀγχοῦ", "adv", "ἀγχοῦ", "", "", "", "near nearby"]) + let v = native_list_append(v, ["πάντῃ", "adv", "πάντῃ", "", "", "", "everywhere in every"]) + let v = native_list_append(v, ["ἀντικρύ", "adv", "ἀντικρύ", "", "", "", "face to face"]) + let v = native_list_append(v, ["πάγχυ", "adv", "πάγχυ", "", "", "", "wholly quite"]) + let v = native_list_append(v, ["Χνᾶ", "adv", "Χνᾶ", "", "", "", "abbreviation of Χαναάν"]) + let v = native_list_append(v, ["πῇ", "adv", "πῇ", "", "", "", "whereby? which way?"]) + let v = native_list_append(v, ["τοιαῦτα", "adv", "τοιαῦτα", "", "", "", "in such wise"]) + let v = native_list_append(v, ["τάχ'", "adv", "τάχ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὖθις", "adv", "αὖθις", "", "", "", "back back again"]) + let v = native_list_append(v, ["ἀδεῶς", "adv", "ἀδεῶς", "", "", "", "without fear fearlessly"]) + let v = native_list_append(v, ["οἶκόνδε", "adv", "οἶκόνδε", "", "", "", "to ones house"]) + let v = native_list_append(v, ["ἄλλοθεν", "adv", "ἄλλοθεν", "", "", "", "from another place"]) + let v = native_list_append(v, ["ἑξείης", "adv", "ἑξείης", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἑξῆς", "adv", "ἑξῆς", "", "", "", "in order one"]) + let v = native_list_append(v, ["ἐντούτοις", "adv", "ἐντούτοις", "", "", "", "in the meantime"]) + let v = native_list_append(v, ["ἐν τούτοις", "adv", "ἐν τούτοις", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["προηγουμένως", "adv", "προηγουμένως", "", "", "", "previously beforehand"]) + let v = native_list_append(v, ["ἐντός", "adv", "ἐντός", "", "", "", "within in or"]) + let v = native_list_append(v, ["ποικίλως", "adv", "ποικίλως", "", "", "", "embroidered in various"]) + let v = native_list_append(v, ["γονυπετῶς", "adv", "γονυπετῶς", "", "", "", "adverb of γονῠπετής"]) + let v = native_list_append(v, ["ἀπολογητικῶς", "adv", "ἀπολογητικῶς", "", "", "", "in an apologetic"]) + let v = native_list_append(v, ["ἶφι", "adv", "ἶφι", "", "", "", "by force mightily"]) + let v = native_list_append(v, ["ταύτῃ", "adv", "ταύτῃ", "", "", "", "here"]) + let v = native_list_append(v, ["μίνυνθα", "adv", "μίνυνθα", "", "", "", "for a little"]) + let v = native_list_append(v, ["ἀκέων", "adv", "ἀκέων", "", "", "", "softly silently"]) + let v = native_list_append(v, ["πρόσθε", "adv", "πρόσθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["θοῶς", "adv", "θοῶς", "", "", "", "quickly swiftly"]) + let v = native_list_append(v, ["ὑπόδρα", "adv", "ὑπόδρα", "", "", "", "scowlingly grimly"]) + let v = native_list_append(v, ["τίπτε", "adv", "τίπτε", "", "", "", "how?"]) + let v = native_list_append(v, ["τυτθόν", "adv", "τυτθόν", "", "", "", "a little a"]) + let v = native_list_append(v, ["θᾶσσον", "adv", "θᾶσσον", "", "", "", "sooner quicker"]) + let v = native_list_append(v, ["πρόσθ'", "adv", "πρόσθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὄπισθε", "adv", "ὄπισθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἧος", "adv", "ἧος", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ὅσσ'", "adv", "ὅσσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["βίῃ", "adv", "βίῃ", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἀκήν", "adv", "ἀκήν", "", "", "", "silently"]) + let v = native_list_append(v, ["κακῶς", "adv", "κακῶς", "", "", "", "badly"]) + let v = native_list_append(v, ["πῃ", "adv", "πῃ", "", "", "", "somehow"]) + let v = native_list_append(v, ["ῥηϊδίως", "adv", "ῥηϊδίως", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ῥᾳδίως", "adv", "ῥᾳδίως", "", "", "", "easily"]) + let v = native_list_append(v, ["ὕστερον", "adv", "ὕστερον", "", "", "", "later"]) + let v = native_list_append(v, ["ἡμέρᾳ", "adv", "ἡμέρᾳ", "", "", "", "on a particular"]) + let v = native_list_append(v, ["ἡμέραν", "adv", "ἡμέραν", "", "", "", "for a day"]) + let v = native_list_append(v, ["βίᾳ", "adv", "βίᾳ", "", "", "", "forcefully by force"]) + let v = native_list_append(v, ["χρόνῳ", "adv", "χρόνῳ", "", "", "", "eventually"]) + let v = native_list_append(v, ["σαφῶς", "adv", "σαφῶς", "", "", "", "clearly distinctly"]) + let v = native_list_append(v, ["ἄντην", "adv", "ἄντην", "", "", "", "opposite"]) + let v = native_list_append(v, ["οὐρανόθεν", "adv", "οὐρανόθεν", "", "", "", "from heaven"]) + let v = native_list_append(v, ["μέγιστον", "adv", "μέγιστον", "", "", "", "most greatly"]) + let v = native_list_append(v, ["ἰδίᾳ", "adv", "ἰδίᾳ", "", "", "", "privately by oneself"]) + let v = native_list_append(v, ["πεζῇ", "adv", "πεζῇ", "", "", "", "by land"]) + let v = native_list_append(v, ["ὁδῷ", "adv", "ὁδῷ", "", "", "", "methodically"]) + let v = native_list_append(v, ["κοινῇ", "adv", "κοινῇ", "", "", "", "in common by"]) + let v = native_list_append(v, ["προθύμως", "adv", "προθύμως", "", "", "", "eagerly zealously"]) + let v = native_list_append(v, ["ὀρθῶς", "adv", "ὀρθῶς", "", "", "", "correctly"]) + let v = native_list_append(v, ["αὐτόθεν", "adv", "αὐτόθεν", "", "", "", "from that very"]) + let v = native_list_append(v, ["ῥᾷον", "adv", "ῥᾷον", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["χαλεπῶς", "adv", "χαλεπῶς", "", "", "", "with difficulty hardly"]) + let v = native_list_append(v, ["ἐνδυκέως", "adv", "ἐνδυκέως", "", "", "", "kindly"]) + let v = native_list_append(v, ["ὄχα", "adv", "ὄχα", "", "", "", "by far"]) + let v = native_list_append(v, ["ὄχ'", "adv", "ὄχ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["εἰκότως", "adv", "εἰκότως", "", "", "", "suitably in keeping"]) + let v = native_list_append(v, ["ἴσον", "adv", "ἴσον", "", "", "", "likewise even as"]) + let v = native_list_append(v, ["μάλιστ'", "adv", "μάλιστ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πανδημεί", "adv", "πανδημεί", "", "", "", "with the whole"]) + let v = native_list_append(v, ["πανταχόθεν", "adv", "πανταχόθεν", "", "", "", "from all sides"]) + let v = native_list_append(v, ["ἀμφοτέρωθεν", "adv", "ἀμφοτέρωθεν", "", "", "", "from or on"]) + let v = native_list_append(v, ["ἄνω", "adv", "ἄνω", "", "", "", "upwards"]) + let v = native_list_append(v, ["κρύφα", "adv", "κρύφα", "", "", "", "secretly"]) + let v = native_list_append(v, ["ὅπῃ", "adv", "ὅπῃ", "", "", "", "in which or"]) + let v = native_list_append(v, ["προσέτι", "adv", "προσέτι", "", "", "", "besides in addition"]) + let v = native_list_append(v, ["διαμπερές", "adv", "διαμπερές", "", "", "", "through and through"]) + let v = native_list_append(v, ["ὅππως", "adv", "ὅππως", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["παραυτίκα", "adv", "παραυτίκα", "", "", "", "immediately straightaway"]) + let v = native_list_append(v, ["φανερῶς", "adv", "φανερῶς", "", "", "", "openly manifestly"]) + let v = native_list_append(v, ["παραχρῆμα", "adv", "παραχρῆμα", "", "", "", "on the spot"]) + let v = native_list_append(v, ["ἄνωθεν", "adv", "ἄνωθεν", "", "", "", "from above"]) + let v = native_list_append(v, ["ἄγαν", "adv", "ἄγαν", "", "", "", "very much"]) + let v = native_list_append(v, ["ἐντεῦθεν", "adv", "ἐντεῦθεν", "", "", "", "from this or"]) + let v = native_list_append(v, ["ἐνθεῦτεν", "adv", "ἐνθεῦτεν", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["ἀσφαλῶς", "adv", "ἀσφαλῶς", "", "", "", "steadfastly resolutely"]) + let v = native_list_append(v, ["ἑκατέρωθεν", "adv", "ἑκατέρωθεν", "", "", "", "on either side"]) + let v = native_list_append(v, ["ὥστ'", "adv", "ὥστ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τοιγάρ", "adv", "τοιγάρ", "", "", "", "therefore accordingly"]) + let v = native_list_append(v, ["πανστρατιᾷ", "adv", "πανστρατιᾷ", "", "", "", "with the whole"]) + let v = native_list_append(v, ["πανστρατιῇ", "adv", "πανστρατιῇ", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["ποι", "adv", "ποι", "", "", "", "to somewhere somewhither"]) + let v = native_list_append(v, ["χεῖρον", "adv", "χεῖρον", "", "", "", "worse"]) + let v = native_list_append(v, ["ἄπωθεν", "adv", "ἄπωθεν", "", "", "", "from far away"]) + let v = native_list_append(v, ["ἐνθαῦτα", "adv", "ἐνθαῦτα", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["δημοσίᾳ", "adv", "δημοσίᾳ", "", "", "", "at public expense"]) + let v = native_list_append(v, ["πάντοσε", "adv", "πάντοσε", "", "", "", "every way"]) + let v = native_list_append(v, ["πάντοσ'", "adv", "πάντοσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὀψέ", "adv", "ὀψέ", "", "", "", "late"]) + let v = native_list_append(v, ["ὄπιθεν", "adv", "ὄπιθεν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐναντίον", "adv", "ἐναντίον", "", "", "", "opposite facing"]) + let v = native_list_append(v, ["ἅλιον", "adv", "ἅλιον", "", "", "", "in vain"]) + let v = native_list_append(v, ["ὑψόσε", "adv", "ὑψόσε", "", "", "", "upwards aloft"]) + let v = native_list_append(v, ["ὑψόσ'", "adv", "ὑψόσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μετόπισθε", "adv", "μετόπισθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["μετόπισθ'", "adv", "μετόπισθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὁππότ'", "adv", "ὁππότ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["σμερδαλέον", "adv", "σμερδαλέον", "", "", "", "terribly fearsomely"]) + let v = native_list_append(v, ["τηλόθεν", "adv", "τηλόθεν", "", "", "", "from far away"]) + let v = native_list_append(v, ["ὕπερθεν", "adv", "ὕπερθεν", "", "", "", "from above"]) + let v = native_list_append(v, ["οὖλον", "adv", "οὖλον", "", "", "", "destructively"]) + let v = native_list_append(v, ["ῥίμφα", "adv", "ῥίμφα", "", "", "", "fast quickly rapidly"]) + let v = native_list_append(v, ["ἄμυδις", "adv", "ἄμυδις", "", "", "", "together"]) + let v = native_list_append(v, ["ἔντοσθεν", "adv", "ἔντοσθεν", "", "", "", "within from within"]) + let v = native_list_append(v, ["κῆρι", "adv", "κῆρι", "", "", "", "with all ones"]) + let v = native_list_append(v, ["ἀγχίμολον", "adv", "ἀγχίμολον", "", "", "", "near close by"]) + let v = native_list_append(v, ["πυκινῶς", "adv", "πυκινῶς", "", "", "", "close"]) + let v = native_list_append(v, ["δηθά", "adv", "δηθά", "", "", "", "for a long"]) + let v = native_list_append(v, ["πύκα", "adv", "πύκα", "", "", "", "thickly strongly"]) + let v = native_list_append(v, ["εὖτε", "adv", "εὖτε", "", "", "", "when"]) + let v = native_list_append(v, ["εὖτ'", "adv", "εὖτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὅσ'", "adv", "ὅσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὕπερθε", "adv", "ὕπερθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["τάδ'", "adv", "τάδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πόλεμονδε", "adv", "πόλεμονδε", "", "", "", "into the fight"]) + let v = native_list_append(v, ["σιγῇ", "adv", "σιγῇ", "", "", "", "silently"]) + let v = native_list_append(v, ["κεῖθι", "adv", "κεῖθι", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἄνευθεν", "adv", "ἄνευθεν", "", "", "", "away"]) + let v = native_list_append(v, ["παρέκ", "adv", "παρέκ", "", "", "", "along past close"]) + let v = native_list_append(v, ["παρέξ", "adv", "παρέξ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["χαμάδις", "adv", "χαμάδις", "", "", "", "to the ground"]) + let v = native_list_append(v, ["ἐπισταμένως", "adv", "ἐπισταμένως", "", "", "", "skillfully"]) + let v = native_list_append(v, ["λίπ'", "adv", "λίπ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἔξοχον", "adv", "ἔξοχον", "", "", "", "eminently chiefly"]) + let v = native_list_append(v, ["πάροιθεν", "adv", "πάροιθεν", "", "", "", "in front"]) + let v = native_list_append(v, ["καθύπερθεν", "adv", "καθύπερθεν", "", "", "", "down from above"]) + let v = native_list_append(v, ["ἄλλυδις", "adv", "ἄλλυδις", "", "", "", "to another place"]) + let v = native_list_append(v, ["κρατερῶς", "adv", "κρατερῶς", "", "", "", "strongly"]) + let v = native_list_append(v, ["τόφρ'", "adv", "τόφρ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πρόσω", "adv", "πρόσω", "", "", "", "forward"]) + let v = native_list_append(v, ["πρόσσω", "adv", "πρόσσω", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["πεδίονδε", "adv", "πεδίονδε", "", "", "", "to the ground"]) + let v = native_list_append(v, ["ἐσσυμένως", "adv", "ἐσσυμένως", "", "", "", "eagerly impetuously"]) + let v = native_list_append(v, ["στοιχηδόν", "adv", "στοιχηδόν", "", "", "", "in a row"]) + let v = native_list_append(v, ["ἐναντίβιον", "adv", "ἐναντίβιον", "", "", "", "in hostile opposition"]) + let v = native_list_append(v, ["ἐννῆμαρ", "adv", "ἐννῆμαρ", "", "", "", "for nine days"]) + let v = native_list_append(v, ["ἐκεῖσε", "adv", "ἐκεῖσε", "", "", "", "there to or"]) + let v = native_list_append(v, ["κεῖσε", "adv", "κεῖσε", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["κεῖσ'", "adv", "κεῖσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἐξαπίνης", "adv", "ἐξαπίνης", "", "", "", "suddenly all of"]) + let v = native_list_append(v, ["δόμονδε", "adv", "δόμονδε", "", "", "", "homeward home to/toward"]) + let v = native_list_append(v, ["κεῖθεν", "adv", "κεῖθεν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐτήτυμον", "adv", "ἐτήτυμον", "", "", "", "really truly actually"]) + let v = native_list_append(v, ["ἀσπασίως", "adv", "ἀσπασίως", "", "", "", "gladly"]) + let v = native_list_append(v, ["ἐξαῦτις", "adv", "ἐξαῦτις", "", "", "", "again anew"]) + let v = native_list_append(v, ["πολλάκι", "adv", "πολλάκι", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["πόλινδε", "adv", "πόλινδε", "", "", "", "to the city"]) + let v = native_list_append(v, ["τοὔνεκα", "adv", "τοὔνεκα", "", "", "", "for that reason"]) + let v = native_list_append(v, ["προπάροιθεν", "adv", "προπάροιθεν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["τετράκις", "adv", "τετράκις", "", "", "", "four times"]) + let v = native_list_append(v, ["τηλοῦ", "adv", "τηλοῦ", "", "", "", "at a distance"]) + let v = native_list_append(v, ["παρρησίᾳ", "adv", "παρρησίᾳ", "", "", "", "openly frankly"]) + let v = native_list_append(v, ["πρόπαν", "adv", "πρόπαν", "", "", "", "wholly entirely"]) + let v = native_list_append(v, ["Οὔλυμπόνδε", "adv", "Οὔλυμπόνδε", "", "", "", "to/towards Olympus"]) + let v = native_list_append(v, ["ἑκάτερθε", "adv", "ἑκάτερθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἤπειρόνδε", "adv", "ἤπειρόνδε", "", "", "", "to the mainland"]) + let v = native_list_append(v, ["αὐτόθ'", "adv", "αὐτόθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["λάθρῃ", "adv", "λάθρῃ", "", "", "", "secretly by stealth"]) + let v = native_list_append(v, ["ῥέα", "adv", "ῥέα", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["μεσηγύ", "adv", "μεσηγύ", "", "", "", "in the middle"]) + let v = native_list_append(v, ["μεσσηγύς", "adv", "μεσσηγύς", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["βραδέως", "adv", "βραδέως", "", "", "", "slowly"]) + let v = native_list_append(v, ["ταχέως", "adv", "ταχέως", "", "", "", "quickly"]) + let v = native_list_append(v, ["εἶθαρ", "adv", "εἶθαρ", "", "", "", "at once immediately"]) + let v = native_list_append(v, ["ὑψοῦ", "adv", "ὑψοῦ", "", "", "", "aloft high on"]) + let v = native_list_append(v, ["μαψιδίως", "adv", "μαψιδίως", "", "", "", "in vain"]) + let v = native_list_append(v, ["κηρόθι", "adv", "κηρόθι", "", "", "", "with all ones"]) + let v = native_list_append(v, ["ἔντοσθε", "adv", "ἔντοσθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἴκταρ", "adv", "ἴκταρ", "", "", "", "close together"]) + let v = native_list_append(v, ["ἄμοτον", "adv", "ἄμοτον", "", "", "", "insatiably incessantly"]) + let v = native_list_append(v, ["θύραθεν", "adv", "θύραθεν", "", "", "", "from outside the"]) + let v = native_list_append(v, ["ἀπάνευθεν", "adv", "ἀπάνευθεν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἧχι", "adv", "ἧχι", "", "", "", "where relative"]) + let v = native_list_append(v, ["νωλεμέως", "adv", "νωλεμέως", "", "", "", "without pause unceasingly"]) + let v = native_list_append(v, ["βίηφιν", "adv", "βίηφιν", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["τίπτ'", "adv", "τίπτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πάντοθεν", "adv", "πάντοθεν", "", "", "", "from all quarters"]) + let v = native_list_append(v, ["ὑπένερθε", "adv", "ὑπένερθε", "", "", "", "underneath beneath below"]) + let v = native_list_append(v, ["ὀδάξ", "adv", "ὀδάξ", "", "", "", "with the teeth"]) + let v = native_list_append(v, ["ἐξοπίσω", "adv", "ἐξοπίσω", "", "", "", "backwards back again"]) + let v = native_list_append(v, ["τῆλ'", "adv", "τῆλ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὑπερφιάλως", "adv", "ὑπερφιάλως", "", "", "", "exceedingly excessively"]) + let v = native_list_append(v, ["ἀτρέμας", "adv", "ἀτρέμας", "", "", "", "unmovingly still"]) + let v = native_list_append(v, ["σχεδόθεν", "adv", "σχεδόθεν", "", "", "", "from nearby"]) + let v = native_list_append(v, ["πανταχοῦ", "adv", "πανταχοῦ", "", "", "", "everywhere"]) + let v = native_list_append(v, ["ἀπόπροθεν", "adv", "ἀπόπροθεν", "", "", "", "from far off"]) + let v = native_list_append(v, ["βίηφι", "adv", "βίηφι", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["οὐδαμοῦ", "adv", "οὐδαμοῦ", "", "", "", "nowhere"]) + let v = native_list_append(v, ["ἀληθῆ", "adv", "ἀληθῆ", "", "", "", "thats right"]) + let v = native_list_append(v, ["ἔκτοσθεν", "adv", "ἔκτοσθεν", "", "", "", "outside"]) + let v = native_list_append(v, ["λάξ", "adv", "λάξ", "", "", "", "with the foot"]) + let v = native_list_append(v, ["καί", "conj", "καί", "", "", "", "and"]) + let v = native_list_append(v, ["ἀλλά", "conj", "ἀλλά", "", "", "", "but"]) + let v = native_list_append(v, ["διότι", "conj", "διότι", "", "", "", "because"]) + let v = native_list_append(v, ["εἰ", "conj", "εἰ", "", "", "", "if"]) + let v = native_list_append(v, ["μέχρι", "conj", "μέχρι", "", "", "", "until"]) + let v = native_list_append(v, ["εἴδομαι", "conj", "εἴδομαι", "", "", "", ""]) + let v = native_list_append(v, ["γάρ", "conj", "γάρ", "", "", "", "for"]) + let v = native_list_append(v, ["τῷ", "conj", "τῷ", "", "", "", "then thereupon"]) + let v = native_list_append(v, ["δέ", "conj", "δέ", "", "", "", "but and"]) + let v = native_list_append(v, ["τώ", "conj", "τώ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἵνα", "conj", "ἵνα", "", "", "", "subordinating conjunction"]) + let v = native_list_append(v, ["δή", "conj", "δή", "", "", "", "but and"]) + let v = native_list_append(v, ["δ'", "conj", "δ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τε", "conj", "τε", "", "", "", "and also or"]) + let v = native_list_append(v, ["ἄρα", "conj", "ἄρα", "", "", "", "so then therefore"]) + let v = native_list_append(v, ["ὅτι", "conj", "ὅτι", "", "", "", "subordinating conjunction"]) + let v = native_list_append(v, ["ἤ", "conj", "ἤ", "", "", "", "or"]) + let v = native_list_append(v, ["θ'", "conj", "θ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μέχρις", "conj", "μέχρις", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὡς", "conj", "ὡς", "", "", "", "introducing a clause"]) + let v = native_list_append(v, ["ἄν", "conj", "ἄν", "", "", "", "if"]) + let v = native_list_append(v, ["ἐάν", "conj", "ἐάν", "", "", "", "if"]) + let v = native_list_append(v, ["ἕως", "conj", "ἕως", "", "", "", "until till"]) + let v = native_list_append(v, ["οὐδέ", "conj", "οὐδέ", "", "", "", "but not"]) + let v = native_list_append(v, ["ὅταν", "conj", "ὅταν", "", "", "", "whenever when"]) + let v = native_list_append(v, ["ὅτε", "conj", "ὅτε", "", "", "", "when"]) + let v = native_list_append(v, ["ὥστε", "conj", "ὥστε", "", "", "", "on the condition"]) + let v = native_list_append(v, ["εἴτε", "conj", "εἴτε", "", "", "", "either...or whether..or"]) + let v = native_list_append(v, ["μηδέ", "conj", "μηδέ", "", "", "", "but not and"]) + let v = native_list_append(v, ["διό", "conj", "διό", "", "", "", "wherefore on which"]) + let v = native_list_append(v, ["ὅπως", "conj", "ὅπως", "", "", "", "that in order"]) + let v = native_list_append(v, ["ἄχρι", "conj", "ἄχρι", "", "", "", "until so long"]) + let v = native_list_append(v, ["μήτε", "conj", "μήτε", "", "", "", "and not neither...nor"]) + let v = native_list_append(v, ["πλήν", "conj", "πλήν", "", "", "", "except save"]) + let v = native_list_append(v, ["ἐπεί", "conj", "ἐπεί", "", "", "", "after after that"]) + let v = native_list_append(v, ["ἕνεκα", "conj", "ἕνεκα", "", "", "", "because"]) + let v = native_list_append(v, ["μήποτε", "conj", "μήποτε", "", "", "", "that at not"]) + let v = native_list_append(v, ["πρίν", "conj", "πρίν", "", "", "", "before that before"]) + let v = native_list_append(v, ["ἐπειδή", "conj", "ἐπειδή", "", "", "", "after since"]) + let v = native_list_append(v, ["εἴπερ", "conj", "εἴπερ", "", "", "", "if really if"]) + let v = native_list_append(v, ["καίπερ", "conj", "καίπερ", "", "", "", "although albeit"]) + let v = native_list_append(v, ["ἀλλ'", "conj", "ἀλλ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἦ", "conj", "ἦ", "", "", "", "or"]) + let v = native_list_append(v, ["ὄφρα", "conj", "ὄφρα", "", "", "", "in order that"]) + let v = native_list_append(v, ["αὐτάρ", "conj", "αὐτάρ", "", "", "", "but however besides"]) + let v = native_list_append(v, ["ἠδέ", "conj", "ἠδέ", "", "", "", "ἠμέν ēmén ..."]) + let v = native_list_append(v, ["τ'", "conj", "τ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἤν", "conj", "ἤν", "", "", "", "Contracted form of"]) + let v = native_list_append(v, ["ῥα", "conj", "ῥα", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["ἠέ", "conj", "ἠέ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἄρ", "conj", "ἄρ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἄρ'", "conj", "ἄρ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["οὐδ'", "conj", "οὐδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ῥ'", "conj", "ῥ'", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["εἴ", "conj", "εἴ", "", "", "", "Stressed form of"]) + let v = native_list_append(v, ["ἠδ'", "conj", "ἠδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὄφρ'", "conj", "ὄφρ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀτάρ", "conj", "ἀτάρ", "", "", "", "but nevertheless"]) + let v = native_list_append(v, ["τέ", "conj", "τέ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["ἤτοι", "conj", "ἤτοι", "", "", "", "either"]) + let v = native_list_append(v, ["πάρος", "conj", "πάρος", "", "", "", "before"]) + let v = native_list_append(v, ["ῥά", "conj", "ῥά", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["εἰκ", "conj", "εἰκ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἔστε", "conj", "ἔστε", "", "", "", "until up to"]) + let v = native_list_append(v, ["ἠμέν", "conj", "ἠμέν", "", "", "", "ἠμέν ēmén ..."]) + let v = native_list_append(v, ["μηδ'", "conj", "μηδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὅττι", "conj", "ὅττι", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["εἵνεκα", "conj", "εἵνεκα", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἵν'", "conj", "ἵν'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἐπήν", "conj", "ἐπήν", "", "", "", "when whenever"]) + let v = native_list_append(v, ["ἰδέ", "conj", "ἰδέ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἦε", "conj", "ἦε", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["κᾷτα", "conj", "κᾷτα", "", "", "", "contraction of καὶ"]) + let v = native_list_append(v, ["οὐκοῦν", "conj", "οὐκοῦν", "", "", "", "therefore"]) + let v = native_list_append(v, ["εἷος", "conj", "εἷος", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ὁπόταν", "conj", "ὁπόταν", "", "", "", "See ὁπότε hopóte"]) + let v = native_list_append(v, ["ὁπότ'", "conj", "ὁπότ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τῶ", "conj", "τῶ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["οὕνεκα", "conj", "οὕνεκα", "", "", "", "because"]) + let v = native_list_append(v, ["οὕνεκ'", "conj", "οὕνεκ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἕνεκ'", "conj", "ἕνεκ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἧος", "conj", "ἧος", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["κἄν", "conj", "κἄν", "", "", "", "crasis of καὶ"]) + let v = native_list_append(v, ["οὔθ'", "conj", "οὔθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὅππως", "conj", "ὅππως", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ὥστ'", "conj", "ὥστ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["εἵνεκ'", "conj", "εἵνεκ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μήτ'", "conj", "μήτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὄφελον", "conj", "ὄφελον", "", "", "", "if only I"]) + let v = native_list_append(v, ["τάρ", "conj", "τάρ", "", "", "", "and so"]) + let v = native_list_append(v, ["εἴθ'", "conj", "εἴθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["εἴπου", "conj", "εἴπου", "", "", "", "if anywhere if"]) + let v = native_list_append(v, ["ὁπηνίκα", "conj", "ὁπηνίκα", "", "", "", "supposing that"]) + let v = native_list_append(v, ["ἡνίκα", "conj", "ἡνίκα", "", "", "", "at which time"]) + let v = native_list_append(v, ["ἤγουν", "conj", "ἤγουν", "", "", "", "that is to"]) + let v = native_list_append(v, ["μήτις", "conj", "μήτις", "", "", "", "so that no"]) + let v = native_list_append(v, ["φή", "conj", "φή", "", "", "", "like as"]) + let v = native_list_append(v, ["μήτι", "conj", "μήτι", "", "", "", "so that nothing"]) + let v = native_list_append(v, ["ἔρα", "conj", "ἔρα", "", "", "", "Cypriot form of"]) + let v = native_list_append(v, ["ἔρ", "conj", "ἔρ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἔρ'", "conj", "ἔρ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αἰ", "conj", "αἰ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὅπερ", "conj", "ὅπερ", "", "", "", "wherefore"]) + let v = native_list_append(v, ["𐠊𐠩", "conj", "𐠊𐠩", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["μήθ'", "conj", "μήθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μήπω", "conj", "μήπω", "", "", "", "that…not yet lest…yet"]) + let v = native_list_append(v, ["ὁ", "det", "ὁ", "", "", "", "the"]) + let v = native_list_append(v, ["ἡ", "det", "ἡ", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τό", "det", "τό", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["αἱ", "det", "αἱ", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["οἱ", "det", "οἱ", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τά", "det", "τά", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["ταῖς", "det", "ταῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τάς", "det", "τάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τῇ", "det", "τῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τῷ", "det", "τῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τήν", "det", "τήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τῆς", "det", "τῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["τοῖς", "det", "τοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τόν", "det", "τόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["τοῦ", "det", "τοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τούς", "det", "τούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τῶν", "det", "τῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τώ", "det", "τώ", "", "", "", "masculine/feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["τοῖν", "det", "τοῖν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ὅς", "det", "ὅς", "", "", "", "his own her"]) + let v = native_list_append(v, ["οὗτος", "det", "οὗτος", "", "", "", "this"]) + let v = native_list_append(v, ["ἑός", "det", "ἑός", "", "", "", "his own her"]) + let v = native_list_append(v, ["πάντα", "det", "πάντα", "", "", "", "inflection of πᾶς"]) + let v = native_list_append(v, ["ποῖος", "det", "ποῖος", "", "", "", "of what kind?"]) + let v = native_list_append(v, ["τίς", "det", "τίς", "", "", "", "what? which? what"]) + let v = native_list_append(v, ["κοῖος", "det", "κοῖος", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["πᾶς", "det", "πᾶς", "", "", "", "all every each"]) + let v = native_list_append(v, ["ᾧ", "det", "ᾧ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["πᾶν", "det", "πᾶν", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ἕκαστος", "det", "ἕκαστος", "", "", "", "each every"]) + let v = native_list_append(v, ["οὗ", "det", "οὗ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἥ", "det", "ἥ", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ᾗ", "det", "ᾗ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ὥ", "det", "ὥ", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἅ", "det", "ἅ", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἅπας", "det", "ἅπας", "", "", "", "quite all the"]) + let v = native_list_append(v, ["ἀμφότερος", "det", "ἀμφότερος", "", "", "", "both"]) + let v = native_list_append(v, ["οἷος", "det", "οἷος", "", "", "", "relative adjective of"]) + let v = native_list_append(v, ["ὅσος", "det", "ὅσος", "", "", "", "often as anaphor"]) + let v = native_list_append(v, ["τόσος", "det", "τόσος", "", "", "", "so much so"]) + let v = native_list_append(v, ["ἀ", "det", "ἀ", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ποιῶν", "det", "ποιῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ποιός", "det", "ποιός", "", "", "", "of a certain"]) + let v = native_list_append(v, ["τοῖος", "det", "τοῖος", "", "", "", "of this sort"]) + let v = native_list_append(v, ["ἕ", "det", "ἕ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["πάντων", "det", "πάντων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["πάσα", "det", "πάσα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["παντός", "det", "παντός", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["πάσης", "det", "πάσης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["πάσας", "det", "πάσας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["πάντες", "det", "πάντες", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["πάντας", "det", "πάντας", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["παντί", "det", "παντί", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["πάσαις", "det", "πάσαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["οἵ", "det", "οἵ", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τοῖσι", "det", "τοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὅν", "det", "ὅν", "", "", "", "inflection of ὅς"]) + let v = native_list_append(v, ["αἵ", "det", "αἵ", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["τοί", "det", "τοί", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["πᾶσα", "det", "πᾶσα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["τοῖσιν", "det", "τοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ταῦτα", "det", "ταῦτα", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["πᾶσι", "det", "πᾶσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["πᾶσιν", "det", "πᾶσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἥν", "det", "ἥν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἄμφω", "det", "ἄμφω", "", "", "", "both"]) + let v = native_list_append(v, ["οἷον", "det", "οἷον", "", "", "", "inflection of οἷος"]) + let v = native_list_append(v, ["οὕς", "det", "οὕς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τούτους", "det", "τούτους", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["πάντ'", "det", "πάντ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τοῦτον", "det", "τοῦτον", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["πᾶσαι", "det", "πᾶσαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["τοῖον", "det", "τοῖον", "", "", "", "inflection of τοῖος"]) + let v = native_list_append(v, ["πᾶσαν", "det", "πᾶσαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἧς", "det", "ἧς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἅπαντα", "det", "ἅπαντα", "", "", "", "inflection of ἅπᾱς"]) + let v = native_list_append(v, ["πάντεσσι", "det", "πάντεσσι", "", "", "", "dative plural masculine/neuter"]) + let v = native_list_append(v, ["ἑόν", "det", "ἑόν", "", "", "", "inflection of ἑός"]) + let v = native_list_append(v, ["ἅς", "det", "ἅς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τῶ", "det", "τῶ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["πασῶν", "det", "πασῶν", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["πάσῃ", "det", "πάσῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["πασάων", "det", "πασάων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["πασέων", "det", "πασέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["πάσῃσι", "det", "πάσῃσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["πάσῃς", "det", "πάσῃς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["πάντεσι", "det", "πάντεσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τούτῳ", "det", "τούτῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ταύτης", "det", "ταύτης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ταύτῃ", "det", "ταύτῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ταύτην", "det", "ταύτην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τούτοιν", "det", "τούτοιν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["τούτω", "det", "τούτω", "", "", "", "masculine/feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["οὗτοι", "det", "οὗτοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ταύτας", "det", "ταύτας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ταύταις", "det", "ταύταις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["αὗται", "det", "αὗται", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["τόσα", "det", "τόσα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἑκάστου", "det", "ἑκάστου", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["οἷσιν", "det", "οἷσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἁπάντων", "det", "ἁπάντων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["ἅπαντες", "det", "ἅπαντες", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ταῦτ'", "det", "ταῦτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τόσον", "det", "τόσον", "", "", "", "inflection of τόσος"]) + let v = native_list_append(v, ["οἷς", "det", "οἷς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οἷν", "det", "οἷν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ὧν", "det", "ὧν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["αἷς", "det", "αἷς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["οἷσι", "det", "οἷσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἕκαστοι", "det", "ἕκαστοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ἀμφοτέρων", "det", "ἀμφοτέρων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἀμφοτέροις", "det", "ἀμφοτέροις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἀμφότερα", "det", "ἀμφότερα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἀμφότεροι", "det", "ἀμφότεροι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ἀμφότεραι", "det", "ἀμφότεραι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ἀμφοτέρα", "det", "ἀμφοτέρα", "", "", "", "inflection of ᾰ̓μφότερος"]) + let v = native_list_append(v, ["ἀμφοτέραις", "det", "ἀμφοτέραις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἀμφοτέρας", "det", "ἀμφοτέρας", "", "", "", "inflection of ᾰ̓μφότερος"]) + let v = native_list_append(v, ["ἀμφοτέρους", "det", "ἀμφοτέρους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἀμφοτέρου", "det", "ἀμφοτέρου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἀμφοτέρῳ", "det", "ἀμφοτέρῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἀμφοτέρᾳ", "det", "ἀμφοτέρᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἀμφοτέραν", "det", "ἀμφοτέραν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἀμφοτέραιν", "det", "ἀμφοτέραιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἀμφοτέρω", "det", "ἀμφοτέρω", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἀμφοτέροιν", "det", "ἀμφοτέροιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἑκάστων", "det", "ἑκάστων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἑκάστοις", "det", "ἑκάστοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑκάστους", "det", "ἑκάστους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἕκασται", "det", "ἕκασται", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ἑκάσταις", "det", "ἑκάσταις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑκάστας", "det", "ἑκάστας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἑκάστη", "det", "ἑκάστη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἑκάστης", "det", "ἑκάστης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἑκάστῃ", "det", "ἑκάστῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἑκάστην", "det", "ἑκάστην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἅπαν", "det", "ἅπαν", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["ἅπασα", "det", "ἅπασα", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἅπαντος", "det", "ἅπαντος", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἅπαντι", "det", "ἅπαντι", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["οἷα", "det", "οἷα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["οἷοι", "det", "οἷοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ἅπαντας", "det", "ἅπαντας", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἅπασι", "det", "ἅπασι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἅπασιν", "det", "ἅπασιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἁπάσης", "det", "ἁπάσης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἁπάσῃ", "det", "ἁπάσῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἅπασαν", "det", "ἅπασαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἅπασαι", "det", "ἅπασαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ἁπασῶν", "det", "ἁπασῶν", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ἁπάσαις", "det", "ἁπάσαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἁπάσας", "det", "ἁπάσας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τοῖοι", "det", "τοῖοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τοῖαι", "det", "τοῖαι", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["τοῖα", "det", "τοῖα", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["τοίω", "det", "τοίω", "", "", "", "masculine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["τοίῳ", "det", "τοίῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τοίην", "det", "τοίην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τοίου", "det", "τοίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τοίη", "det", "τοίη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τοῖ'", "det", "τοῖ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τοίοισι", "det", "τοίοισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τοίοισιν", "det", "τοίοισιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τοίων", "det", "τοίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τοίῃ", "det", "τοίῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τοίης", "det", "τοίης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ᾗσιν", "det", "ᾗσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἀμφοτέροισι", "det", "ἀμφοτέροισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ᾗσι", "det", "ᾗσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἀμφοτέροισιν", "det", "ἀμφοτέροισιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ταί", "det", "ταί", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["τῇσι", "det", "τῇσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τῇσιν", "det", "τῇσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τῇς", "det", "τῇς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποῖον", "det", "ποῖον", "", "", "", "inflection of ποῖος"]) + let v = native_list_append(v, ["ἑήν", "det", "ἑήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["οἵη", "det", "οἵη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἑοῖο", "det", "ἑοῖο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἑοῦ", "det", "ἑοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ταῦθ'", "det", "ταῦθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἑῷ", "det", "ἑῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἁ", "det", "ἁ", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τᾶς", "det", "τᾶς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["παντοῖος", "det", "παντοῖος", "", "", "", "all kinds of"]) + let v = native_list_append(v, ["παντοίην", "det", "παντοίην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["οἷο", "det", "οἷο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τᾷ", "det", "τᾷ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τάν", "det", "τάν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τᾶν", "det", "τᾶν", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἀμφοτέρῃσι", "det", "ἀμφοτέρῃσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑοῖσιν", "det", "ἑοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["παντοίων", "det", "παντοίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ποιώ", "det", "ποιώ", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ταύτων", "det", "ταύτων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ὁπότερος", "det", "ὁπότερος", "", "", "", "whichever of two"]) + let v = native_list_append(v, ["ὁποτέρων", "det", "ὁποτέρων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ὁποτέρους", "det", "ὁποτέρους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἀμφοτέρῃσιν", "det", "ἀμφοτέρῃσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἔνιοι", "det", "ἔνιοι", "", "", "", "some"]) + let v = native_list_append(v, ["τόσῳ", "det", "τόσῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["πάνθ'", "det", "πάνθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὁποῖος", "det", "ὁποῖος", "", "", "", "of what sort"]) + let v = native_list_append(v, ["τώς", "det", "τώς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ὁππότερος", "det", "ὁππότερος", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["𐠃", "det", "𐠃", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["ὁπόστος", "det", "ὁπόστος", "", "", "", "in what or"]) + let v = native_list_append(v, ["ὁπόσος", "det", "ὁπόσος", "", "", "", "as many as"]) + let v = native_list_append(v, ["ὁπόσε", "det", "ὁπόσε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὁπηλίκος", "det", "ὁπηλίκος", "", "", "", "however big or"]) + let v = native_list_append(v, ["ὁσαπλάσιος", "det", "ὁσαπλάσιος", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὁσαπλασίων", "det", "ὁσαπλασίων", "", "", "", "as many times"]) + let v = native_list_append(v, ["πάντεσσιν", "det", "πάντεσσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὁποῖοι", "det", "ὁποῖοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τέων", "det", "τέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["τοῦτος", "det", "τοῦτος", "", "", "", "this"]) + let v = native_list_append(v, ["ὀ", "det", "ὀ", "", "", "", "Cretan and Lesbian"]) + let v = native_list_append(v, ["οἵᾳ", "det", "οἵᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["οἵους", "det", "οἵους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἕκαστε", "det", "ἕκαστε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["οἵου", "det", "οἵου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["οἵῳ", "det", "οἵῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["οἵα", "det", "οἵα", "", "", "", "inflection of οἷος"]) + let v = native_list_append(v, ["οἵας", "det", "οἵας", "", "", "", "inflection of οἷος"]) + let v = native_list_append(v, ["οἵαν", "det", "οἵαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["οἷαι", "det", "οἷαι", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["οἵων", "det", "οἵων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["οἵοις", "det", "οἵοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οἵαις", "det", "οἵαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ὁπηλίκου", "det", "ὁπηλίκου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ὁπηλίκῳ", "det", "ὁπηλίκῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ὁπηλίκον", "det", "ὁπηλίκον", "", "", "", "inflection of ὁπηλῐ́κος"]) + let v = native_list_append(v, ["ὁπηλίκε", "det", "ὁπηλίκε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὁπηλίκη", "det", "ὁπηλίκη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ὁπηλίκης", "det", "ὁπηλίκης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ὁπηλίκῃ", "det", "ὁπηλίκῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ὁπηλίκην", "det", "ὁπηλίκην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ὁπηλίκοι", "det", "ὁπηλίκοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ὁπηλίκων", "det", "ὁπηλίκων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ὁπηλίκαι", "det", "ὁπηλίκαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ὁπηλίκοις", "det", "ὁπηλίκοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὁπηλίκους", "det", "ὁπηλίκους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ὁπηλίκαις", "det", "ὁπηλίκαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ὁπηλίκας", "det", "ὁπηλίκας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ὁπηλίκα", "det", "ὁπηλίκα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ὁποίου", "det", "ὁποίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ὁποίῳ", "det", "ὁποίῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ὁποῖον", "det", "ὁποῖον", "", "", "", "inflection of ὁποῖος"]) + let v = native_list_append(v, ["ὁποῖε", "det", "ὁποῖε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὁποία", "det", "ὁποία", "", "", "", "inflection of ὁποῖος"]) + let v = native_list_append(v, ["ὁποίας", "det", "ὁποίας", "", "", "", "inflection of ὁποῖος"]) + let v = native_list_append(v, ["ὁποίᾳ", "det", "ὁποίᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ὁποίαν", "det", "ὁποίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ὁποίων", "det", "ὁποίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ὁποίοις", "det", "ὁποίοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὁποίους", "det", "ὁποίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ὁποῖαι", "det", "ὁποῖαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ὁποίαις", "det", "ὁποίαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ὁποῖα", "det", "ὁποῖα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ὁπόσου", "det", "ὁπόσου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ὁπόσῳ", "det", "ὁπόσῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ὁπόσον", "det", "ὁπόσον", "", "", "", "inflection of ὁπόσος"]) + let v = native_list_append(v, ["ὁπόση", "det", "ὁπόση", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ὁπόσης", "det", "ὁπόσης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ὁπόσῃ", "det", "ὁπόσῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ὁπόσην", "det", "ὁπόσην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ὁπόσοι", "det", "ὁπόσοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ὁπόσων", "det", "ὁπόσων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ὁπόσοις", "det", "ὁπόσοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὁπόσους", "det", "ὁπόσους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ὁπόσαι", "det", "ὁπόσαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ὁπόσαις", "det", "ὁπόσαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ὁπόσας", "det", "ὁπόσας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ὁπόσα", "det", "ὁπόσα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ποίου", "det", "ποίου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ποῖε", "det", "ποῖε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ποίῳ", "det", "ποίῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ποία", "det", "ποία", "", "", "", "inflection of ποῖος"]) + let v = native_list_append(v, ["ποίας", "det", "ποίας", "", "", "", "inflection of ποῖος"]) + let v = native_list_append(v, ["ποίᾳ", "det", "ποίᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ποίαν", "det", "ποίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ποῖα", "det", "ποῖα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ποῖοι", "det", "ποῖοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ποῖαι", "det", "ποῖαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ποίων", "det", "ποίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ποίοις", "det", "ποίοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ποίαις", "det", "ποίαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποίους", "det", "ποίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἑή", "det", "ἑή", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἑῇ", "det", "ἑῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["πᾶσ'", "det", "πᾶσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["𐠰𐠜", "det", "𐠰𐠜", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["ἀμφοῖν", "det", "ἀμφοῖν", "", "", "", "genitive/dative dual of"]) + let v = native_list_append(v, ["ἑκάστοιν", "det", "ἑκάστοιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἑκάστα", "det", "ἑκάστα", "", "", "", "feminine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἑκάσταιν", "det", "ἑκάσταιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἑκάστω", "det", "ἑκάστω", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["αἷν", "det", "αἷν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ὅο", "det", "ὅο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ᾗς", "det", "ᾗς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑοῖσι", "det", "ἑοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["εἱῷ", "det", "εἱῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἑόο", "det", "ἑόο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἅων", "det", "ἅων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ἕων", "det", "ἕων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ἑῆς", "det", "ἑῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἑοί", "det", "ἑοί", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ἑῶν", "det", "ἑῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἑοῖς", "det", "ἑοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑούς", "det", "ἑούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἑαί", "det", "ἑαί", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["ἑάων", "det", "ἑάων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ἑέων", "det", "ἑέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ἑῇς", "det", "ἑῇς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑῇσι", "det", "ἑῇσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑῇσιν", "det", "ἑῇσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑαῖς", "det", "ἑαῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑάς", "det", "ἑάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἑά", "det", "ἑά", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["ἀμφότερε", "det", "ἀμφότερε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ὁπόσω", "det", "ὁπόσω", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ὁπόσοιν", "det", "ὁπόσοιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ὁπόσαιν", "det", "ὁπόσαιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["οἷϊν", "det", "οἷϊν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["αἷϊν", "det", "αἷϊν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["οἰ", "det", "οἰ", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["αἰ", "det", "αἰ", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["ταῖσι", "det", "ταῖσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ταῖσιν", "det", "ταῖσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τός", "det", "τός", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τόνς", "det", "τόνς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τοίς", "det", "τοίς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τάνς", "det", "τάνς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ταίς", "det", "ταίς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["οἷε", "det", "οἷε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["𐠰", "det", "𐠰", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["πάντε", "det", "πάντε", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["πάντοιν", "det", "πάντοιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["πάσαιν", "det", "πάσαιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἑώ", "det", "ἑώ", "", "", "", "masculine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["ἑοῖϊν", "det", "ἑοῖϊν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἑοῖν", "det", "ἑοῖν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἑαῖν", "det", "ἑαῖν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἑαῖϊν", "det", "ἑαῖϊν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ποίω", "det", "ποίω", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ποίοιν", "det", "ποίοιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ποίαιν", "det", "ποίαιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ποιοῦ", "det", "ποιοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ποιῷ", "det", "ποιῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ποιόν", "det", "ποιόν", "", "", "", "inflection of ποιός"]) + let v = native_list_append(v, ["ποιέ", "det", "ποιέ", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ποιά", "det", "ποιά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ποιᾶς", "det", "ποιᾶς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ποιᾷ", "det", "ποιᾷ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ποιάν", "det", "ποιάν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ποιοῖν", "det", "ποιοῖν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ποιαῖν", "det", "ποιαῖν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ποιοί", "det", "ποιοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ποιοῖς", "det", "ποιοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ποιούς", "det", "ποιούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ποιαί", "det", "ποιαί", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ποιαῖς", "det", "ποιαῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποιάς", "det", "ποιάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ποίοιο", "det", "ποίοιο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ποίοο", "det", "ποίοο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ποίη", "det", "ποίη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ποίης", "det", "ποίης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ποίῃ", "det", "ποίῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ποίην", "det", "ποίην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ποίοιϊν", "det", "ποίοιϊν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ποίαιϊν", "det", "ποίαιϊν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ποίοισι", "det", "ποίοισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ποίοισιν", "det", "ποίοισιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ποιάων", "det", "ποιάων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ποιέων", "det", "ποιέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ποίῃσι", "det", "ποίῃσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποίῃσιν", "det", "ποίῃσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποίῃς", "det", "ποίῃς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποιοῖο", "det", "ποιοῖο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ποιόο", "det", "ποιόο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ποιή", "det", "ποιή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ποιῆς", "det", "ποιῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ποιῇ", "det", "ποιῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ποιήν", "det", "ποιήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ποιοῖϊν", "det", "ποιοῖϊν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ποιαῖϊν", "det", "ποιαῖϊν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ποιοῖσι", "det", "ποιοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ποιοῖσιν", "det", "ποιοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ποιῇσι", "det", "ποιῇσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποιῇσιν", "det", "ποιῇσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ποιῇς", "det", "ποιῇς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἔνια", "det", "ἔνια", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ἐνίοις", "det", "ἐνίοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἐνίων", "det", "ἐνίων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἐνίους", "det", "ἐνίους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἔνιαι", "det", "ἔνιαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["ἐνίαις", "det", "ἐνίαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἐνίας", "det", "ἐνίας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ὁποτέρα", "det", "ὁποτέρα", "", "", "", "inflection of ὁπότερος"]) + let v = native_list_append(v, ["ὁ", "pron", "ὁ", "", "", "", "that"]) + let v = native_list_append(v, ["ἡ", "pron", "ἡ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τό", "pron", "τό", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["αἱ", "pron", "αἱ", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["οἱ", "pron", "οἱ", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τά", "pron", "τά", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["ταῖς", "pron", "ταῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τάς", "pron", "τάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τῇ", "pron", "τῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τῷ", "pron", "τῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τήν", "pron", "τήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τῆς", "pron", "τῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["τοῖς", "pron", "τοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τόν", "pron", "τόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["τοῦ", "pron", "τοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τούς", "pron", "τούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τῶν", "pron", "τῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["αὐτός", "pron", "αὐτός", "", "", "", "self"]) + let v = native_list_append(v, ["αὐτοῦ", "pron", "αὐτοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἐγώ", "pron", "ἐγώ", "", "", "", "first person singular"]) + let v = native_list_append(v, ["σύ", "pron", "σύ", "", "", "", "second person singular"]) + let v = native_list_append(v, ["μου", "pron", "μου", "", "", "", "of me than"]) + let v = native_list_append(v, ["τις", "pron", "τις", "", "", "", "someone anyone a"]) + let v = native_list_append(v, ["του", "pron", "του", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["τώ", "pron", "τώ", "", "", "", "masculine/feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["τοῖν", "pron", "τοῖν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["σ'", "pron", "σ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["σου", "pron", "σου", "", "", "", "unstressed genitive singular"]) + let v = native_list_append(v, ["με", "pron", "με", "", "", "", "enclitic accusative of"]) + let v = native_list_append(v, ["ὅς", "pron", "ὅς", "", "", "", "this"]) + let v = native_list_append(v, ["σε", "pron", "σε", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ἄττα", "pron", "ἄττα", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ὅστις", "pron", "ὅστις", "", "", "", "indefinite relative pronoun"]) + let v = native_list_append(v, ["ἑός", "pron", "ἑός", "", "", "", "his own her"]) + let v = native_list_append(v, ["οὐδείς", "pron", "οὐδείς", "", "", "", "no one nobody"]) + let v = native_list_append(v, ["οὐδέν", "pron", "οὐδέν", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["ἵ", "pron", "ἵ", "", "", "", "she nominative of"]) + let v = native_list_append(v, ["τίς", "pron", "τίς", "", "", "", "who?"]) + let v = native_list_append(v, ["ἡμεῖς", "pron", "ἡμεῖς", "", "", "", "we us our"]) + let v = native_list_append(v, ["ὑμεῖς", "pron", "ὑμεῖς", "", "", "", "second person plural"]) + let v = native_list_append(v, ["ἐκεῖνος", "pron", "ἐκεῖνος", "", "", "", "that"]) + let v = native_list_append(v, ["ἐμοί", "pron", "ἐμοί", "", "", "", "dative of ἐγώ"]) + let v = native_list_append(v, ["ἐμοῦ", "pron", "ἐμοῦ", "", "", "", "genitive of ἐγώ"]) + let v = native_list_append(v, ["μοι", "pron", "μοι", "", "", "", "enclitic dative of"]) + let v = native_list_append(v, ["σοῦ", "pron", "σοῦ", "", "", "", "stressed genitive singular"]) + let v = native_list_append(v, ["ᾧ", "pron", "ᾧ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["οὔτις", "pron", "οὔτις", "", "", "", "no one nobody"]) + let v = native_list_append(v, ["τι", "pron", "τι", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["μηδέν", "pron", "μηδέν", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["μηδενός", "pron", "μηδενός", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τινες", "pron", "τινες", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["μ'", "pron", "μ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τί", "pron", "τί", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["οὗ", "pron", "οὗ", "", "", "", "of him/her/it than"]) + let v = native_list_append(v, ["ταὐτός", "pron", "ταὐτός", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["ἡμᾶς", "pron", "ἡμᾶς", "", "", "", "accusative of ἡμεῖς"]) + let v = native_list_append(v, ["ἥ", "pron", "ἥ", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ὅ", "pron", "ὅ", "", "", "", "who which that"]) + let v = native_list_append(v, ["ᾗ", "pron", "ᾗ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ὥ", "pron", "ὥ", "", "", "", "masculine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["ἅ", "pron", "ἅ", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["ἑαυτοῦ", "pron", "ἑαυτοῦ", "", "", "", "himself herself itself"]) + let v = native_list_append(v, ["τοιοῦτος", "pron", "τοιοῦτος", "", "", "", "of this sort"]) + let v = native_list_append(v, ["ὅδε", "pron", "ὅδε", "", "", "", "this"]) + let v = native_list_append(v, ["μηδείς", "pron", "μηδείς", "", "", "", "and not one"]) + let v = native_list_append(v, ["ἀλλήλων", "pron", "ἀλλήλων", "", "", "", "referring back to"]) + let v = native_list_append(v, ["ὅσπερ", "pron", "ὅσπερ", "", "", "", "the very man"]) + let v = native_list_append(v, ["τοσοῦτος", "pron", "τοσοῦτος", "", "", "", "so much thus"]) + let v = native_list_append(v, ["ἀ", "pron", "ἀ", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἕκαστον", "pron", "ἕκαστον", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["τινά", "pron", "τινά", "", "", "", "inflection of τις"]) + let v = native_list_append(v, ["τούτων", "pron", "τούτων", "", "", "", "genitive masculine/feminine/neuter plural"]) + let v = native_list_append(v, ["ἐμέ", "pron", "ἐμέ", "", "", "", "accusative of ἐγώ"]) + let v = native_list_append(v, ["ἱών", "pron", "ἱών", "", "", "", "Boeotian form of"]) + let v = native_list_append(v, ["τού", "pron", "τού", "", "", "", "Boeotian form of"]) + let v = native_list_append(v, ["ἐγών", "pron", "ἐγών", "", "", "", "Epic and Doric"]) + let v = native_list_append(v, ["σέ", "pron", "σέ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ἐκεῖνα", "pron", "ἐκεῖνα", "", "", "", "nominative plural neuter"]) + let v = native_list_append(v, ["σφεῖς", "pron", "σφεῖς", "", "", "", "they"]) + let v = native_list_append(v, ["πόσαι", "pron", "πόσαι", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["ἔγωγε", "pron", "ἔγωγε", "", "", "", "I at least"]) + let v = native_list_append(v, ["ἔμοιγε", "pron", "ἔμοιγε", "", "", "", "emphatic dative singular"]) + let v = native_list_append(v, ["ἐμοῦγε", "pron", "ἐμοῦγε", "", "", "", "emphatic genitive singular"]) + let v = native_list_append(v, ["ἐμέγε", "pron", "ἐμέγε", "", "", "", "emphatic accusative singular"]) + let v = native_list_append(v, ["ἡμῶν", "pron", "ἡμῶν", "", "", "", "genitive of ἡμεῖς"]) + let v = native_list_append(v, ["ἡμῖν", "pron", "ἡμῖν", "", "", "", "dative of ἡμεῖς"]) + let v = native_list_append(v, ["νώ", "pron", "νώ", "", "", "", "we two both"]) + let v = native_list_append(v, ["σφώ", "pron", "σφώ", "", "", "", "second person dual"]) + let v = native_list_append(v, ["ὑμῖν", "pron", "ὑμῖν", "", "", "", "dative of ῡ̔μεῖς"]) + let v = native_list_append(v, ["ὑμῶν", "pron", "ὑμῶν", "", "", "", "Attic and Doric"]) + let v = native_list_append(v, ["ὑμᾶς", "pron", "ὑμᾶς", "", "", "", "Attic accusative of"]) + let v = native_list_append(v, ["μιν", "pron", "μιν", "", "", "", "irregular accusative of"]) + let v = native_list_append(v, ["ἕ", "pron", "ἕ", "", "", "", "accusative of οὗ"]) + let v = native_list_append(v, ["σφωέ", "pron", "σφωέ", "", "", "", "Epic enclitic third"]) + let v = native_list_append(v, ["αὐτή", "pron", "αὐτή", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["αὐτό", "pron", "αὐτό", "", "", "", "neuter nominative/accusative/vocative singular"]) + let v = native_list_append(v, ["αὕτη", "pron", "αὕτη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["αὑτή", "pron", "αὑτή", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τοῦτο", "pron", "τοῦτο", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["τίνες", "pron", "τίνες", "", "", "", "masculine/feminine nominative plural"]) + let v = native_list_append(v, ["κις", "pron", "κις", "", "", "", "Thessalian form of"]) + let v = native_list_append(v, ["οἵ", "pron", "οἵ", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["αὐτῷ", "pron", "αὐτῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τοῖσι", "pron", "τοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὅν", "pron", "ὅν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["νίν", "pron", "νίν", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["αἵ", "pron", "αἵ", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["σοι", "pron", "σοι", "", "", "", "unstressed dative singular"]) + let v = native_list_append(v, ["σοί", "pron", "σοί", "", "", "", "stressed dative singular"]) + let v = native_list_append(v, ["αἴ", "pron", "αἴ", "", "", "", "oxytone form of"]) + let v = native_list_append(v, ["τοί", "pron", "τοί", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τέ", "pron", "τέ", "", "", "", "Doric form of"]) + let v = native_list_append(v, ["σφιν", "pron", "σφιν", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["τόδε", "pron", "τόδε", "", "", "", "nominative/accusative singular neuter"]) + let v = native_list_append(v, ["τοῖσιν", "pron", "τοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τάδε", "pron", "τάδε", "", "", "", "nominative/accusative plural neuter"]) + let v = native_list_append(v, ["αὐτόν", "pron", "αὐτόν", "", "", "", "inflection of αὐτός"]) + let v = native_list_append(v, ["αὐτοί", "pron", "αὐτοί", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["τινα", "pron", "τινα", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["τιν'", "pron", "τιν'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τινές", "pron", "τινές", "", "", "", "nominative masculine/feminine plural"]) + let v = native_list_append(v, ["σφι", "pron", "σφι", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ἰών", "pron", "ἰών", "", "", "", "Boeotian form of"]) + let v = native_list_append(v, ["μευ", "pron", "μευ", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["ἥν", "pron", "ἥν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἀλλήλους", "pron", "ἀλλήλους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["κεῖνος", "pron", "κεῖνος", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἑ", "pron", "ἑ", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["ἐμεῖο", "pron", "ἐμεῖο", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["αὐτῶν", "pron", "αὐτῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τόδ'", "pron", "τόδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἑωυτοῦ", "pron", "ἑωυτοῦ", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["οὕς", "pron", "οὕς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["νῶϊ", "pron", "νῶϊ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["αὐτῆς", "pron", "αὐτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["αὐτῇ", "pron", "αὐτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τόσσος", "pron", "τόσσος", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["τόσσον", "pron", "τόσσον", "", "", "", "inflection of τόσσος"]) + let v = native_list_append(v, ["ἕκαστα", "pron", "ἕκαστα", "", "", "", "nominative/accusative/vocative plural neuter"]) + let v = native_list_append(v, ["ἑκάστῳ", "pron", "ἑκάστῳ", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["ἔμ'", "pron", "ἔμ'", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["ἐμ'", "pron", "ἐμ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀλλήλοισι", "pron", "ἀλλήλοισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἀλλήλοισιν", "pron", "ἀλλήλοισιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἧς", "pron", "ἧς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["μοί", "pron", "μοί", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["ὅδ'", "pron", "ὅδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["σεῖο", "pron", "σεῖο", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἡμέας", "pron", "ἡμέας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ἑόν", "pron", "ἑόν", "", "", "", "inflection of ἑός"]) + let v = native_list_append(v, ["αὐτήν", "pron", "αὐτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἅς", "pron", "ἅς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["κεῖνον", "pron", "κεῖνον", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["ἐμεῦ", "pron", "ἐμεῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σέθεν", "pron", "σέθεν", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τοιαῦτα", "pron", "τοιαῦτα", "", "", "", "nominative/accusative plural neuter"]) + let v = native_list_append(v, ["ἥδε", "pron", "ἥδε", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["αὐτούς", "pron", "αὐτούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τίνος", "pron", "τίνος", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["τίνα", "pron", "τίνα", "", "", "", "inflection of τῐ́ς"]) + let v = native_list_append(v, ["τίνων", "pron", "τίνων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τίνας", "pron", "τίνας", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["τίνι", "pron", "τίνι", "", "", "", "masculine/feminine/neuter dative singular"]) + let v = native_list_append(v, ["τίσι", "pron", "τίσι", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["τῶ", "pron", "τῶ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["σφέας", "pron", "σφέας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["σφεας", "pron", "σφεας", "", "", "", "enclitic accusative plural"]) + let v = native_list_append(v, ["σφῶϊ", "pron", "σφῶϊ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["τῷδε", "pron", "τῷδε", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τόνδε", "pron", "τόνδε", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["τοῦδε", "pron", "τοῦδε", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τῆσδε", "pron", "τῆσδε", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["τῇδε", "pron", "τῇδε", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τήνδε", "pron", "τήνδε", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τώδε", "pron", "τώδε", "", "", "", "masculine/feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["τοῖνδε", "pron", "τοῖνδε", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["οἵδε", "pron", "οἵδε", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τῶνδε", "pron", "τῶνδε", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τοῖσδε", "pron", "τοῖσδε", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τούσδε", "pron", "τούσδε", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["αἵδε", "pron", "αἵδε", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["ταῖσδε", "pron", "ταῖσδε", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τάσδε", "pron", "τάσδε", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἐκείνου", "pron", "ἐκείνου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἐκεῖνον", "pron", "ἐκεῖνον", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ἐκείνῳ", "pron", "ἐκείνῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἐκείνῃ", "pron", "ἐκείνῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἐκείνης", "pron", "ἐκείνης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἐκείνη", "pron", "ἐκείνη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἐκείνην", "pron", "ἐκείνην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἐκεῖνο", "pron", "ἐκεῖνο", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["ἐκείνω", "pron", "ἐκείνω", "", "", "", "masculine/feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["ἐκείνοιν", "pron", "ἐκείνοιν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἐκεῖνοι", "pron", "ἐκεῖνοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ἐκείνων", "pron", "ἐκείνων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἐκείνοις", "pron", "ἐκείνοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἐκείνους", "pron", "ἐκείνους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἐκεῖναι", "pron", "ἐκεῖναι", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["ἐκείναις", "pron", "ἐκείναις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἐκείνας", "pron", "ἐκείνας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["οὗτινος", "pron", "οὗτινος", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ὅτου", "pron", "ὅτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ᾧτινι", "pron", "ᾧτινι", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ὅτῳ", "pron", "ὅτῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ὅντινα", "pron", "ὅντινα", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ἥτις", "pron", "ἥτις", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἧστινος", "pron", "ἧστινος", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ᾗτινι", "pron", "ᾗτινι", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἥντινα", "pron", "ἥντινα", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["οἵτινες", "pron", "οἵτινες", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ὧντινων", "pron", "ὧντινων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ὅτων", "pron", "ὅτων", "", "", "", "masculine/neuter/feminine genitive plural"]) + let v = native_list_append(v, ["οἷστισι", "pron", "οἷστισι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οἷστισιν", "pron", "οἷστισιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὅτοις", "pron", "ὅτοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["αἵτινες", "pron", "αἵτινες", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["αἷστισιν", "pron", "αἷστισιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἅστινας", "pron", "ἅστινας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἅτινα", "pron", "ἅτινα", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["ἅττα", "pron", "ἅττα", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["οὕστινας", "pron", "οὕστινας", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἑαυτῆς", "pron", "ἑαυτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἑαυτῷ", "pron", "ἑαυτῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἑαυτόν", "pron", "ἑαυτόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ἑαυτῇ", "pron", "ἑαυτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἑαυτήν", "pron", "ἑαυτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἑαυτό", "pron", "ἑαυτό", "", "", "", "neuter accusative singular"]) + let v = native_list_append(v, ["ἑαυτῶν", "pron", "ἑαυτῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἑαυτοῖς", "pron", "ἑαυτοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑαυτούς", "pron", "ἑαυτούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἑαυταῖς", "pron", "ἑαυταῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἑαυτάς", "pron", "ἑαυτάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἑαυτά", "pron", "ἑαυτά", "", "", "", "neuter accusative plural"]) + let v = native_list_append(v, ["ἑαυτοῖν", "pron", "ἑαυτοῖν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἑαυτοῖσι", "pron", "ἑαυτοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑαυτοῖσιν", "pron", "ἑαυτοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τοιαύτη", "pron", "τοιαύτη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τοιούτῳ", "pron", "τοιούτῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τοιούτου", "pron", "τοιούτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τοιοῦτον", "pron", "τοιοῦτον", "", "", "", "inflection of τοιοῦτος"]) + let v = native_list_append(v, ["τοιαύτης", "pron", "τοιαύτης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["τοιαύτῃ", "pron", "τοιαύτῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τοιαύτην", "pron", "τοιαύτην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τοιούτοιν", "pron", "τοιούτοιν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["τοιοῦτο", "pron", "τοιοῦτο", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["τοιούτω", "pron", "τοιούτω", "", "", "", "masculine/feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["τοιοῦτοι", "pron", "τοιοῦτοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τοιούτων", "pron", "τοιούτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τοιούτοις", "pron", "τοιούτοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τοιούτους", "pron", "τοιούτους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τοιαῦται", "pron", "τοιαῦται", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["τοιαύταις", "pron", "τοιαύταις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τοιαύτας", "pron", "τοιαύτας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["σφίσι", "pron", "σφίσι", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["σφίσιν", "pron", "σφίσιν", "", "", "", "dative of σφεῖς"]) + let v = native_list_append(v, ["τοῖο", "pron", "τοῖο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["σφε", "pron", "σφε", "", "", "", "enclitic accusative plural"]) + let v = native_list_append(v, ["σφ'", "pron", "σφ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τίπτε", "pron", "τίπτε", "", "", "", "what?"]) + let v = native_list_append(v, ["νῶϊν", "pron", "νῶϊν", "", "", "", "genitive/dative dual of"]) + let v = native_list_append(v, ["οἷσιν", "pron", "οἷσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["σφισι", "pron", "σφισι", "", "", "", "enclitic dative plural"]) + let v = native_list_append(v, ["σφισιν", "pron", "σφισιν", "", "", "", "enclitic dative of"]) + let v = native_list_append(v, ["τευ", "pron", "τευ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἄλλ'", "pron", "ἄλλ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["κείνου", "pron", "κείνου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τάων", "pron", "τάων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["σεῦ", "pron", "σεῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["σέο", "pron", "σέο", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["οἷς", "pron", "οἷς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οἷν", "pron", "οἷν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ὧν", "pron", "ὧν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["αἷς", "pron", "αἷς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["οἷσι", "pron", "οἷσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["αὐτοῖς", "pron", "αὐτοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["αὐταῖς", "pron", "αὐταῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["αὐταί", "pron", "αὐταί", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["αὐτά", "pron", "αὐτά", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["αὐτάς", "pron", "αὐτάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["σφῶν", "pron", "σφῶν", "", "", "", "genitive of σφεῖς"]) + let v = native_list_append(v, ["σφᾶς", "pron", "σφᾶς", "", "", "", "accusative of σφεῖς"]) + let v = native_list_append(v, ["ἀλλήλοις", "pron", "ἀλλήλοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οὐδενός", "pron", "οὐδενός", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["οὐδενί", "pron", "οὐδενί", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["οὐδένα", "pron", "οὐδένα", "", "", "", "inflection of οὐδείς"]) + let v = native_list_append(v, ["οὐδεμία", "pron", "οὐδεμία", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["οὐδεμιᾶς", "pron", "οὐδεμιᾶς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["οὐδεμιᾷ", "pron", "οὐδεμιᾷ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ουδεμίαν", "pron", "ουδεμίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τινάς", "pron", "τινάς", "", "", "", "masculine/feminine accusative plural"]) + let v = native_list_append(v, ["τινας", "pron", "τινας", "", "", "", "unaccented form of"]) + let v = native_list_append(v, ["τῳ", "pron", "τῳ", "", "", "", "masculine/feminine/neuter dative singular"]) + let v = native_list_append(v, ["τινί", "pron", "τινί", "", "", "", "masculine/feminine/neuter dative singular"]) + let v = native_list_append(v, ["ἑκάτερος", "pron", "ἑκάτερος", "", "", "", "each of two"]) + let v = native_list_append(v, ["ἑκάτεροι", "pron", "ἑκάτεροι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ἑκατέρων", "pron", "ἑκατέρων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τοσοῦτον", "pron", "τοσοῦτον", "", "", "", "inflection of τοσοῦτος"]) + let v = native_list_append(v, ["τοσαῦτα", "pron", "τοσαῦτα", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["τινός", "pron", "τινός", "", "", "", "masculine/feminine/neuter genitive singular"]) + let v = native_list_append(v, ["αὑτῶν", "pron", "αὑτῶν", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["αὑτοῦ", "pron", "αὑτοῦ", "", "", "", "contraction of ἑαυτοῦ"]) + let v = native_list_append(v, ["οἵπερ", "pron", "οἵπερ", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["ἅπερ", "pron", "ἅπερ", "", "", "", "feminine nominative/accusative dual"]) + let v = native_list_append(v, ["μηδένα", "pron", "μηδένα", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["μηδενί", "pron", "μηδενί", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["μηδεμία", "pron", "μηδεμία", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["μηδεμιᾶς", "pron", "μηδεμιᾶς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["μηδεμιᾷ", "pron", "μηδεμιᾷ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["μηδεμίαν", "pron", "μηδεμίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["αὑτόν", "pron", "αὑτόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ᾗσιν", "pron", "ᾗσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["σεαυτοῦ", "pron", "σεαυτοῦ", "", "", "", "thyself yourself"]) + let v = native_list_append(v, ["σεωυτοῦ", "pron", "σεωυτοῦ", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["σαυτοῦ", "pron", "σαυτοῦ", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["ἐμαυτοῦ", "pron", "ἐμαυτοῦ", "", "", "", "myself"]) + let v = native_list_append(v, ["ἐμεωυτοῦ", "pron", "ἐμεωυτοῦ", "", "", "", "Ionic form of"]) + let v = native_list_append(v, ["ἐμαυτῷ", "pron", "ἐμαυτῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἐμαυτόν", "pron", "ἐμαυτόν", "", "", "", "masculine/neuter accusative singular"]) + let v = native_list_append(v, ["ἐμαυτῆς", "pron", "ἐμαυτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἐμαυτῇ", "pron", "ἐμαυτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἐμαυτήν", "pron", "ἐμαυτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἐμεωυτῷ", "pron", "ἐμεωυτῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἐμεωυτόν", "pron", "ἐμεωυτόν", "", "", "", "masculine/neuter accusative singular"]) + let v = native_list_append(v, ["σεαυτῷ", "pron", "σεαυτῷ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["σεαυτόν", "pron", "σεαυτόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["σεαυτῆς", "pron", "σεαυτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["σεαυτῇ", "pron", "σεαυτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["σεαυτήν", "pron", "σεαυτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["σαυτῷ", "pron", "σαυτῷ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["σαυτόν", "pron", "σαυτόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["σαυτῆς", "pron", "σαυτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["σαυτῇ", "pron", "σαυτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["σαυτήν", "pron", "σαυτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["σεωυτῷ", "pron", "σεωυτῷ", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["σεωυτόν", "pron", "σεωυτόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["σεωυτήν", "pron", "σεωυτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["αὑτῷ", "pron", "αὑτῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["αὑτῆς", "pron", "αὑτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["αὑτῇ", "pron", "αὑτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["αὑτήν", "pron", "αὑτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["αὑτό", "pron", "αὑτό", "", "", "", "neuter accusative singular"]) + let v = native_list_append(v, ["αὑτοῖς", "pron", "αὑτοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["αὑτοῖσι", "pron", "αὑτοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["αὑτοῖσιν", "pron", "αὑτοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["αὑτούς", "pron", "αὑτούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["αὑταῖς", "pron", "αὑταῖς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["αὑτάς", "pron", "αὑτάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["αὑτά", "pron", "αὑτά", "", "", "", "feminine accusative dual"]) + let v = native_list_append(v, ["αὑτοῖν", "pron", "αὑτοῖν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["ἑωυτάς", "pron", "ἑωυτάς", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἑωυτῇ", "pron", "ἑωυτῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἑωυτήν", "pron", "ἑωυτήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἑωυτῆς", "pron", "ἑωυτῆς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ἑωυτό", "pron", "ἑωυτό", "", "", "", "neuter accusative singular"]) + let v = native_list_append(v, ["ἑωυτοῖσι", "pron", "ἑωυτοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑωυτόν", "pron", "ἑωυτόν", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["ἑωυτούς", "pron", "ἑωυτούς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["ἑωυτῷ", "pron", "ἑωυτῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἑωυτῶν", "pron", "ἑωυτῶν", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ἑωυτοῖς", "pron", "ἑωυτοῖς", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑωυτοῖσιν", "pron", "ἑωυτοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἑωυτά", "pron", "ἑωυτά", "", "", "", "feminine accusative dual"]) + let v = native_list_append(v, ["τεός", "pron", "τεός", "", "", "", "Ionic and Doric"]) + let v = native_list_append(v, ["ἐμέθεν", "pron", "ἐμέθεν", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ᾗσι", "pron", "ᾗσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τόσσα", "pron", "τόσσα", "", "", "", "feminine nominative/accusative dual"]) + let v = native_list_append(v, ["ὅτις", "pron", "ὅτις", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἄμμι", "pron", "ἄμμι", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ταί", "pron", "ταί", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["κείνῳ", "pron", "κείνῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τάδ'", "pron", "τάδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τοῖϊν", "pron", "τοῖϊν", "", "", "", "masculine/feminine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["τῷδ'", "pron", "τῷδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["σφῶϊν", "pron", "σφῶϊν", "", "", "", "genitive/dative dual of"]) + let v = native_list_append(v, ["ἔγωγ'", "pron", "ἔγωγ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἄμμε", "pron", "ἄμμε", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["τῇσι", "pron", "τῇσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τῇσιν", "pron", "τῇσιν", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τῇς", "pron", "τῇς", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["σευ", "pron", "σευ", "", "", "", "unstressed enclitic form"]) + let v = native_list_append(v, ["τοῦτ'", "pron", "τοῦτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἕθεν", "pron", "ἕθεν", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ἑήν", "pron", "ἑήν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἕο", "pron", "ἕο", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["τόνδ'", "pron", "τόνδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὐτοῖο", "pron", "αὐτοῖο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἑοῖο", "pron", "ἑοῖο", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἑοῦ", "pron", "ἑοῦ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἑῷ", "pron", "ἑῷ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τοσούτους", "pron", "τοσούτους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["κείνη", "pron", "κείνη", "", "", "", "feminine nominative/vocative singular"]) + let v = native_list_append(v, ["ἀλλήλαις", "pron", "ἀλλήλαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["ἁ", "pron", "ἁ", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τᾶς", "pron", "τᾶς", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["τίπτ'", "pron", "τίπτ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἡμέων", "pron", "ἡμέων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ὔμμ'", "pron", "ὔμμ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὔμμε", "pron", "ὔμμε", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ὔμμι", "pron", "ὔμμι", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ἑκατέρους", "pron", "ἑκατέρους", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τινῶν", "pron", "τινῶν", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["τινων", "pron", "τινων", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["τισί", "pron", "τισί", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["τοῦδ'", "pron", "τοῦδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἧμιν", "pron", "ἧμιν", "", "", "", "properispomenon form of"]) + let v = native_list_append(v, ["ὔμμιν", "pron", "ὔμμιν", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ὅνδε", "pron", "ὅνδε", "", "", "", "to this"]) + let v = native_list_append(v, ["τᾷ", "pron", "τᾷ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τάν", "pron", "τάν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τᾶν", "pron", "τᾶν", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["αὐτοῖσι", "pron", "αὐτοῖσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ἀλλήλῃσι", "pron", "ἀλλήλῃσι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["αὐτώ", "pron", "αὐτώ", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἑοῖσιν", "pron", "ἑοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τίφθ'", "pron", "τίφθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αἷσπερ", "pron", "αἷσπερ", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["εὑ", "pron", "εὑ", "", "", "", "Epic Doric and"]) + let v = native_list_append(v, ["ἑκάτερον", "pron", "ἑκάτερον", "", "", "", "inflection of ἑκάτερος"]) + let v = native_list_append(v, ["σφωϊν", "pron", "σφωϊν", "", "", "", "genitive/dative dual of"]) + let v = native_list_append(v, ["τῶνδ'", "pron", "τῶνδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["αὐτάων", "pron", "αὐτάων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["τύνη", "pron", "τύνη", "", "", "", "Epic and Doric"]) + let v = native_list_append(v, ["τοιοῦτος τις", "pron", "τοιοῦτος τις", "", "", "", "such a one"]) + let v = native_list_append(v, ["οὐδεμίαν", "pron", "οὐδεμίαν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ὔμμες", "pron", "ὔμμες", "", "", "", "Aeolic form of"]) + let v = native_list_append(v, ["δέν", "pron", "δέν", "", "", "", "a late form"]) + let v = native_list_append(v, ["τινος", "pron", "τινος", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["κείνων", "pron", "κείνων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["τινι", "pron", "τινι", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["οἴ", "pron", "οἴ", "", "", "", "oxytone form of"]) + let v = native_list_append(v, ["μηδαμοί", "pron", "μηδαμοί", "", "", "", "not even one"]) + let v = native_list_append(v, ["μέ", "pron", "μέ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["τισι", "pron", "τισι", "", "", "", "unstressed form of"]) + let v = native_list_append(v, ["αὐτοῖσιν", "pron", "αὐτοῖσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["ὑμέων", "pron", "ὑμέων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["μηδέτερος", "pron", "μηδέτερος", "", "", "", "neither of the"]) + let v = native_list_append(v, ["μηδετέρων", "pron", "μηδετέρων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τυ", "pron", "τυ", "", "", "", "Doric form of"]) + let v = native_list_append(v, ["τύ", "pron", "τύ", "", "", "", "Doric form of"]) + let v = native_list_append(v, ["μίν", "pron", "μίν", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["τἀκεῖ", "pron", "τἀκεῖ", "", "", "", "what happens there"]) + let v = native_list_append(v, ["ὑμέας", "pron", "ὑμέας", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["τήνδ'", "pron", "τήνδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τοῖσδ'", "pron", "τοῖσδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["τεΐν", "pron", "τεΐν", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["τώς", "pron", "τώς", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["τόσσοι", "pron", "τόσσοι", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["ἑκατέροις", "pron", "ἑκατέροις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["νῷν", "pron", "νῷν", "", "", "", "genitive/dative dual of"]) + let v = native_list_append(v, ["ἥδ'", "pron", "ἥδ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["σφῷν", "pron", "σφῷν", "", "", "", "genitive/dative dual of"]) + let v = native_list_append(v, ["τεῦ", "pron", "τεῦ", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["τέων", "pron", "τέων", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["ταῖν", "pron", "ταῖν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἑθεν", "pron", "ἑθεν", "", "", "", "unstressed enclitic form"]) + let v = native_list_append(v, ["ἄμμιν", "pron", "ἄμμιν", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ὀ", "pron", "ὀ", "", "", "", "Cretan and Lesbian"]) + let v = native_list_append(v, ["ἅσσα", "pron", "ἅσσα", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["ἅσσ'", "pron", "ἅσσ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀλλήλοιιν", "pron", "ἀλλήλοιιν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["σὴ λαμπρότης", "pron", "σὴ λαμπρότης", "", "", "", "Your Serene Highnesses"]) + let v = native_list_append(v, ["αἷστισι", "pron", "αἷστισι", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["οὐδένες", "pron", "οὐδένες", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["οὐδένων", "pron", "οὐδένων", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["οὐδέσι", "pron", "οὐδέσι", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οὐδέσιν", "pron", "οὐδέσιν", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["οὐδένας", "pron", "οὐδένας", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["οὐδεμίαι", "pron", "οὐδεμίαι", "", "", "", "feminine nominative/vocative plural"]) + let v = native_list_append(v, ["οὐδεμιῶν", "pron", "οὐδεμιῶν", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["οὐδεμίαις", "pron", "οὐδεμίαις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["οὐδεμίας", "pron", "οὐδεμίας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["τοσούτου", "pron", "τοσούτου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["τοσούτῳ", "pron", "τοσούτῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["τοσαύτη", "pron", "τοσαύτη", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["τοσαύτης", "pron", "τοσαύτης", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["τοσαύτῃ", "pron", "τοσαύτῃ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["τοσαύτην", "pron", "τοσαύτην", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["τοσοῦτο", "pron", "τοσοῦτο", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["τοσοῦτοι", "pron", "τοσοῦτοι", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["τοσαῦται", "pron", "τοσαῦται", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["τοσούτων", "pron", "τοσούτων", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["τοσούτοις", "pron", "τοσούτοις", "", "", "", "masculine/neuter dative plural"]) + let v = native_list_append(v, ["τοσαύταις", "pron", "τοσαύταις", "", "", "", "feminine dative plural"]) + let v = native_list_append(v, ["τοσαύτας", "pron", "τοσαύτας", "", "", "", "feminine accusative plural"]) + let v = native_list_append(v, ["ἑή", "pron", "ἑή", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["ἑῇ", "pron", "ἑῇ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["κεῖνα", "pron", "κεῖνα", "", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["ὑμείων", "pron", "ὑμείων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["σφείων", "pron", "σφείων", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["αὐτοῖν", "pron", "αὐτοῖν", "", "", "", "masculine/neuter genitive/dative dual"]) + let v = native_list_append(v, ["αὐταῖν", "pron", "αὐταῖν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἑκατέρα", "pron", "ἑκατέρα", "", "", "", "inflection of ἑκᾰ́τερος"]) + let v = native_list_append(v, ["ἑκατέρου", "pron", "ἑκατέρου", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["ἑκατέρας", "pron", "ἑκατέρας", "", "", "", "inflection of ἑκᾰ́τερος"]) + let v = native_list_append(v, ["ἑκατέρῳ", "pron", "ἑκατέρῳ", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["ἑκατέρᾳ", "pron", "ἑκατέρᾳ", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["ἑκατέρω", "pron", "ἑκατέρω", "", "", "", "masculine/neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["ἑκατέραν", "pron", "ἑκατέραν", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["ἑκάτερε", "pron", "ἑκάτερε", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["ἑκατέραιν", "pron", "ἑκατέραιν", "", "", "", "feminine genitive/dative dual"]) + let v = native_list_append(v, ["ἄνευ", "prep", "ἄνευ", "", "", "", "without"]) + let v = native_list_append(v, ["μέχρι", "prep", "μέχρι", "", "", "", "of spatial extension"]) + let v = native_list_append(v, ["διά", "prep", "διά", "", "", "", "with genitive"]) + let v = native_list_append(v, ["ὑπέρ", "prep", "ὑπέρ", "", "", "", "with genitive"]) + let v = native_list_append(v, ["σύν", "prep", "σύν", "", "", "", "beside with"]) + let v = native_list_append(v, ["παρά", "prep", "παρά", "", "", "", "with genitive"]) + let v = native_list_append(v, ["ὑπό", "prep", "ὑπό", "", "", "", "with genitive"]) + let v = native_list_append(v, ["πρός", "prep", "πρός", "", "", "", "on the side"]) + let v = native_list_append(v, ["ἀπό", "prep", "ἀπό", "", "", "", "from away from"]) + let v = native_list_append(v, ["πρό", "prep", "πρό", "", "", "", "before"]) + let v = native_list_append(v, ["ἅμα", "prep", "ἅμα", "", "", "", "at the same"]) + let v = native_list_append(v, ["μετά", "prep", "μετά", "", "", "", "with genitive"]) + let v = native_list_append(v, ["ἐν", "prep", "ἐν", "", "", "", "with dative in"]) + let v = native_list_append(v, ["εἰς", "prep", "εἰς", "", "", "", "into"]) + let v = native_list_append(v, ["ἐκ", "prep", "ἐκ", "", "", "", "Out of from"]) + let v = native_list_append(v, ["ἐξ", "prep", "ἐξ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐπί", "prep", "ἐπί", "", "", "", "with genitive"]) + let v = native_list_append(v, ["ἀνά", "prep", "ἀνά", "", "", "", "with genitive rare"]) + let v = native_list_append(v, ["ἀπύ", "prep", "ἀπύ", "", "", "", "Aeolic and Arcadocypriot"]) + let v = native_list_append(v, ["περί", "prep", "περί", "", "", "", "with genitive"]) + let v = native_list_append(v, ["ἀμφίς", "prep", "ἀμφίς", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἀμφί", "prep", "ἀμφί", "", "", "", "with genitive"]) + let v = native_list_append(v, ["κατά", "prep", "κατά", "", "", "", "with genitive"]) + let v = native_list_append(v, ["κάτω", "prep", "κάτω", "", "", "", "under below"]) + let v = native_list_append(v, ["χωρίς", "prep", "χωρίς", "", "", "", "without otherwise"]) + let v = native_list_append(v, ["δίχα", "prep", "δίχα", "", "", "", "apart from without"]) + let v = native_list_append(v, ["ἀντί", "prep", "ἀντί", "", "", "", "over against opposite"]) + let v = native_list_append(v, ["ὄπισθεν", "prep", "ὄπισθεν", "", "", "", "behind at the"]) + let v = native_list_append(v, ["μεταξύ", "prep", "μεταξύ", "", "", "", "between"]) + let v = native_list_append(v, ["κατ'", "prep", "κατ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["καθ'", "prep", "καθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μετ'", "prep", "μετ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μεθ'", "prep", "μεθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μέχρις", "prep", "μέχρις", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐνώπιον", "prep", "ἐνώπιον", "", "", "", "before in the"]) + let v = native_list_append(v, ["ἄχρι", "prep", "ἄχρι", "", "", "", "even to as"]) + let v = native_list_append(v, ["ἔμπροσθεν", "prep", "ἔμπροσθεν", "", "", "", "before"]) + let v = native_list_append(v, ["ὀπίσω", "prep", "ὀπίσω", "", "", "", "after"]) + let v = native_list_append(v, ["πλήν", "prep", "πλήν", "", "", "", "except save besides"]) + let v = native_list_append(v, ["ἐκτός", "prep", "ἐκτός", "", "", "", "out of far"]) + let v = native_list_append(v, ["ὑπ'", "prep", "ὑπ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὑππρό", "prep", "ὑππρό", "", "", "", "Thessalian form of"]) + let v = native_list_append(v, ["ὑποπρό", "prep", "ὑποπρό", "", "", "", "just before"]) + let v = native_list_append(v, ["ἄπο", "prep", "ἄπο", "", "", "", "anastrophe of ᾰ̓πό"]) + let v = native_list_append(v, ["ἐνί", "prep", "ἐνί", "", "", "", "poetic form of"]) + let v = native_list_append(v, ["ἐς", "prep", "ἐς", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["περ", "prep", "περ", "", "", "", "Thessalian and Delphic"]) + let v = native_list_append(v, ["νόσφι", "prep", "νόσφι", "", "", "", "far from in"]) + let v = native_list_append(v, ["νόσφιν", "prep", "νόσφιν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["νόσφ'", "prep", "νόσφ'", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["τηλόθι", "prep", "τηλόθι", "", "", "", "far away from"]) + let v = native_list_append(v, ["παρ'", "prep", "παρ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἐπ'", "prep", "ἐπ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἅμ'", "prep", "ἅμ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀπ'", "prep", "ἀπ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πάρ", "prep", "πάρ", "", "", "", "Epic and Lyric"]) + let v = native_list_append(v, ["πάρος", "prep", "πάρος", "", "", "", "before"]) + let v = native_list_append(v, ["ἀμφ'", "prep", "ἀμφ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀντίον", "prep", "ἀντίον", "", "", "", "against"]) + let v = native_list_append(v, ["ἔπι", "prep", "ἔπι", "", "", "", "stress-shifted form of"]) + let v = native_list_append(v, ["ἔκ", "prep", "ἔκ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["προτί", "prep", "προτί", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἔστε", "prep", "ἔστε", "", "", "", "until up to"]) + let v = native_list_append(v, ["ποτί", "prep", "ποτί", "", "", "", "synonym of πρός"]) + let v = native_list_append(v, ["κάδ", "prep", "κάδ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἐφ'", "prep", "ἐφ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["δι'", "prep", "δι'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["πρόσθεν", "prep", "πρόσθεν", "", "", "", "before"]) + let v = native_list_append(v, ["ἐγγύθεν", "prep", "ἐγγύθεν", "", "", "", "near"]) + let v = native_list_append(v, ["ἔνι", "prep", "ἔνι", "", "", "", "initial-stressed form of"]) + let v = native_list_append(v, ["ὕπο", "prep", "ὕπο", "", "", "", "initial-stressed form of"]) + let v = native_list_append(v, ["προπάροιθε", "prep", "προπάροιθε", "", "", "", "before spatial in"]) + let v = native_list_append(v, ["πέρι", "prep", "πέρι", "", "", "", "initial-stressed form of"]) + let v = native_list_append(v, ["εἰν", "prep", "εἰν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἀπάνευθε", "prep", "ἀπάνευθε", "", "", "", "without"]) + let v = native_list_append(v, ["ἄντα", "prep", "ἄντα", "", "", "", "over against opposite"]) + let v = native_list_append(v, ["ἀν'", "prep", "ἀν'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["κάτα", "prep", "κάτα", "", "", "", "initial-stress form of"]) + let v = native_list_append(v, ["πάρα", "prep", "πάρα", "", "", "", "initial-stress form of"]) + let v = native_list_append(v, ["ὑφ'", "prep", "ὑφ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀγχοῦ", "prep", "ἀγχοῦ", "", "", "", "near to"]) + let v = native_list_append(v, ["χάριν", "prep", "χάριν", "", "", "", "as a favor"]) + let v = native_list_append(v, ["ἐντός", "prep", "ἐντός", "", "", "", "within inside spatial"]) + let v = native_list_append(v, ["πρόσθε", "prep", "πρόσθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἔν", "prep", "ἔν", "", "", "", "accented form of"]) + let v = native_list_append(v, ["πρόσθ'", "prep", "πρόσθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀφ'", "prep", "ἀφ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ξύν", "prep", "ξύν", "", "", "", "Old Attic form"]) + let v = native_list_append(v, ["κρύφα", "prep", "κρύφα", "", "", "", "without the knowledge"]) + let v = native_list_append(v, ["ἑκατέρωθεν", "prep", "ἑκατέρωθεν", "", "", "", "on either side"]) + let v = native_list_append(v, ["ἀντ'", "prep", "ἀντ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀνθ'", "prep", "ἀνθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἄπωθεν", "prep", "ἄπωθεν", "", "", "", "far from"]) + let v = native_list_append(v, ["κάκ", "prep", "κάκ", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἀέκητι", "prep", "ἀέκητι", "", "", "", "against the will"]) + let v = native_list_append(v, ["ἔντοσθεν", "prep", "ἔντοσθεν", "", "", "", "within"]) + let v = native_list_append(v, ["ἄμ", "prep", "ἄμ", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἄνευθεν", "prep", "ἄνευθεν", "", "", "", "without"]) + let v = native_list_append(v, ["παρέκ", "prep", "παρέκ", "", "", "", "outside of"]) + let v = native_list_append(v, ["παρέξ", "prep", "παρέξ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["πάροιθεν", "prep", "πάροιθεν", "", "", "", "in the presence"]) + let v = native_list_append(v, ["ἄτερ", "prep", "ἄτερ", "", "", "", "without"]) + let v = native_list_append(v, ["μυχῷ", "prep", "μυχῷ", "", "", "", "in the farthest"]) + let v = native_list_append(v, ["παραί", "prep", "παραί", "", "", "", "Epic and poetic"]) + let v = native_list_append(v, ["διέκ", "prep", "διέκ", "", "", "", "out through"]) + let v = native_list_append(v, ["προπάροιθεν", "prep", "προπάροιθεν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["τηλοῦ", "prep", "τηλοῦ", "", "", "", "far away from"]) + let v = native_list_append(v, ["λάθρῃ", "prep", "λάθρῃ", "", "", "", "unbeknownst to"]) + let v = native_list_append(v, ["μεσηγύ", "prep", "μεσηγύ", "", "", "", "in the middle"]) + let v = native_list_append(v, ["ἔντοσθε", "prep", "ἔντοσθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἴκταρ", "prep", "ἴκταρ", "", "", "", "near near to"]) + let v = native_list_append(v, ["ὕπερ", "prep", "ὕπερ", "", "", "", "postpositive form of"]) + let v = native_list_append(v, ["ἀπάνευθεν", "prep", "ἀπάνευθεν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐξοπίσω", "prep", "ἐξοπίσω", "", "", "", "behind"]) + let v = native_list_append(v, ["ἔκτοσθεν", "prep", "ἔκτοσθεν", "", "", "", "outside of"]) + let v = native_list_append(v, ["νέρθεν", "prep", "νέρθεν", "", "", "", "below under"]) + let v = native_list_append(v, ["νέρθε", "prep", "νέρθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["πάροιθε", "prep", "πάροιθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὑπαί", "prep", "ὑπαί", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἐφύπερθεν", "prep", "ἐφύπερθεν", "", "", "", "above on top"]) + let v = native_list_append(v, ["ἐφύπερθε", "prep", "ἐφύπερθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἔπ'", "prep", "ἔπ'", "", "", "", "Stressed apocopic form"]) + let v = native_list_append(v, ["κατόπισθεν", "prep", "κατόπισθεν", "", "", "", "after behind"]) + let v = native_list_append(v, ["κατόπισθε", "prep", "κατόπισθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὑπέκ", "prep", "ὑπέκ", "", "", "", "out from under"]) + let v = native_list_append(v, ["πάροιθ'", "prep", "πάροιθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἄντ'", "prep", "ἄντ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ὕπαιθα", "prep", "ὕπαιθα", "", "", "", "under at the"]) + let v = native_list_append(v, ["ὑπείρ", "prep", "ὑπείρ", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἔνερθε", "prep", "ἔνερθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἄνευθ'", "prep", "ἄνευθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["ἄνευθε", "prep", "ἄνευθε", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἐκποδών", "prep", "ἐκποδών", "", "", "", "with dative out"]) + let v = native_list_append(v, ["κάγ", "prep", "κάγ", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["εἰνί", "prep", "εἰνί", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἀπονόσφι", "prep", "ἀπονόσφι", "", "", "", "far away from"]) + let v = native_list_append(v, ["πανταχῇ", "prep", "πανταχῇ", "", "", "", "in every part"]) + let v = native_list_append(v, ["κἀκ", "prep", "κἀκ", "", "", "", "crasis of καὶ"]) + let v = native_list_append(v, ["λάθρᾳ", "prep", "λάθρᾳ", "", "", "", "Attic form of"]) + let v = native_list_append(v, ["ἀπονόσφιν", "prep", "ἀπονόσφιν", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ἔξωθεν", "prep", "ἔξωθεν", "", "", "", "from outside"]) + let v = native_list_append(v, ["ζά", "prep", "ζά", "", "", "", "Aeolic form of"]) + let v = native_list_append(v, ["διαπρό", "prep", "διαπρό", "", "", "", "right through"]) + let v = native_list_append(v, ["ἦρα", "prep", "ἦρα", "", "", "", "for the sake"]) + let v = native_list_append(v, ["𐠀𐠙", "prep", "𐠀𐠙", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["ἔκτοθεν", "prep", "ἔκτοθεν", "", "", "", "from outside"]) + let v = native_list_append(v, ["λάθρη", "prep", "λάθρη", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𐠀𐠡", "prep", "𐠀𐠡", "", "", "", "Cypriot spelling of"]) + let v = native_list_append(v, ["δέ", "particle", "δέ", "", "", "", "but and"]) + let v = native_list_append(v, ["δή", "particle", "δή", "", "", "", "Adds temporal specificity"]) + let v = native_list_append(v, ["μήν", "particle", "μήν", "", "", "", "used to strengthen"]) + let v = native_list_append(v, ["γ'", "particle", "γ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["δ'", "particle", "δ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μή", "particle", "μή", "", "", "", "not used in"]) + let v = native_list_append(v, ["οὖν", "particle", "οὖν", "", "", "", "then implying temporal"]) + let v = native_list_append(v, ["τε", "particle", "τε", "", "", "", "you see right"]) + let v = native_list_append(v, ["γε", "particle", "γε", "", "", "", "often translatable with"]) + let v = native_list_append(v, ["κε", "particle", "κε", "", "", "", "synonym of ἄν"]) + let v = native_list_append(v, ["οὐ", "particle", "οὐ", "", "", "", "not indicates negation"]) + let v = native_list_append(v, ["οὐκ", "particle", "οὐκ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["οὐχ", "particle", "οὐχ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["τοι", "particle", "τοι", "", "", "", "let me tell"]) + let v = native_list_append(v, ["ὦ", "particle", "ὦ", "", "", "", "O... vocative particle"]) + let v = native_list_append(v, ["πω", "particle", "πω", "", "", "", "up to this"]) + let v = native_list_append(v, ["μέν", "particle", "μέν", "", "", "", "on the one"]) + let v = native_list_append(v, ["ἄν", "particle", "ἄν", "", "", "", "Expresses potentiality or"]) + let v = native_list_append(v, ["ἐάν", "particle", "ἐάν", "", "", "", "Used in place"]) + let v = native_list_append(v, ["τέως", "particle", "τέως", "", "", "", ""]) + let v = native_list_append(v, ["μέντοι", "particle", "μέντοι", "", "", "", "yet however nevertheless"]) + let v = native_list_append(v, ["οὔ", "particle", "οὔ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ἆρα", "particle", "ἆρα", "", "", "", "interrogative particle introducing"]) + let v = native_list_append(v, ["ἦ", "particle", "ἦ", "", "", "", "certainly really"]) + let v = native_list_append(v, ["μῶν", "particle", "μῶν", "", "", "", "but surely not?"]) + let v = native_list_append(v, ["περ", "particle", "περ", "", "", "", "Enclitic particle that"]) + let v = native_list_append(v, ["μά", "particle", "μά", "", "", "", "by"]) + let v = native_list_append(v, ["ἦτε", "particle", "ἦτε", "", "", "", "surely doubtless"]) + let v = native_list_append(v, ["τ'", "particle", "τ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["κεν", "particle", "κεν", "", "", "", "synonym of ἄν"]) + let v = native_list_append(v, ["κ'", "particle", "κ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["κέ", "particle", "κέ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["νύ", "particle", "νύ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["νυ", "particle", "νυ", "", "", "", "now used to"]) + let v = native_list_append(v, ["ἤτοι", "particle", "ἤτοι", "", "", "", "synonym of τοι"]) + let v = native_list_append(v, ["κέν", "particle", "κέν", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["δαί", "particle", "δαί", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ὤ", "particle", "ὤ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["πώ", "particle", "πώ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["πέρ", "particle", "πέρ", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["ἠΰτε", "particle", "ἠΰτε", "", "", "", "as like like"]) + let v = native_list_append(v, ["ἠύτε", "particle", "ἠύτε", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["χ'", "particle", "χ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["μάν", "particle", "μάν", "", "", "", "Aeolic Doric and"]) + let v = native_list_append(v, ["καίτοι", "particle", "καίτοι", "", "", "", "and indeed and"]) + let v = native_list_append(v, ["γοῦν", "particle", "γοῦν", "", "", "", "at least then"]) + let v = native_list_append(v, ["εἴθε", "particle", "εἴθε", "", "", "", "if only signifies"]) + let v = native_list_append(v, ["αἴθε", "particle", "αἴθε", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["αἴθ'", "particle", "αἴθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["οὐκί", "particle", "οὐκί", "", "", "", "Epic and Ionic"]) + let v = native_list_append(v, ["θην", "particle", "θην", "", "", "", "doubtless surely forsooth"]) + let v = native_list_append(v, ["θήν", "particle", "θήν", "", "", "", "stressed form of"]) + let v = native_list_append(v, ["εἴθ'", "particle", "εἴθ'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["-χι", "particle", "-χι", "", "", "", "emphatic particle"]) + let v = native_list_append(v, ["ἅτε", "particle", "ἅτε", "", "", "", "as if as"]) + let v = native_list_append(v, ["μήτι", "particle", "μήτι", "", "", "", "used to introduce"]) + let v = native_list_append(v, ["ἦρα", "particle", "ἦρα", "", "", "", "Epic form of"]) + let v = native_list_append(v, ["ἆρ'", "particle", "ἆρ'", "", "", "", "apocopic form of"]) + return v +} + +fn vocab_grc_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_grc_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-non.el b/elp/src/vocabulary-non.el new file mode 100644 index 0000000..b2fc64b --- /dev/null +++ b/elp/src/vocabulary-non.el @@ -0,0 +1,10259 @@ +// vocabulary-non.el — Old Norse vocabulary seed +// 10238 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 10761 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_non_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["mann", "noun", "mann", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["man", "noun", "mǫn", "mans", "mani", "", "household house-folk bondslaves"]) + let v = native_list_append(v, ["hund", "noun", "hund", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sela", "noun", "sela", "", "", "", "inflection of seli"]) + let v = native_list_append(v, ["mars", "noun", "mars", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ask", "noun", "ask", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["at", "noun", "ǫt", "ats", "ati", "", "conflict fight battle"]) + let v = native_list_append(v, ["for", "noun", "for", "", "", "", "furrow"]) + let v = native_list_append(v, ["her", "noun", "her", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["son", "noun", "son", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["men", "noun", "menin", "mens", "meni", "", "necklace"]) + let v = native_list_append(v, ["tin", "noun", "tin", "", "", "", "tin"]) + let v = native_list_append(v, ["egg", "noun", "eggin", "eggs", "eggi", "", "egg"]) + let v = native_list_append(v, ["al", "noun", "al", "", "", "", "indefinite accusative/dative singular"]) + let v = native_list_append(v, ["alna", "noun", "alna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["kind", "noun", "kindir", "kindar", "kindinni", "", "race kind kin"]) + let v = native_list_append(v, ["beit", "noun", "beitar", "beitar", "beitinni", "", "a pasturage a"]) + let v = native_list_append(v, ["ben", "noun", "benjar", "benjar", "beninni", "", "mortal wound"]) + let v = native_list_append(v, ["ver", "noun", "verin", "vers", "veri", "", "station for taking"]) + let v = native_list_append(v, ["vers", "noun", "vers", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["leg", "noun", "legin", "legs", "legi", "", "burial place"]) + let v = native_list_append(v, ["regina", "noun", "regina", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["pata", "noun", "pata", "", "", "", "inflection of pati"]) + let v = native_list_append(v, ["tak", "noun", "tǫk", "taks", "taki", "", "grip hold"]) + let v = native_list_append(v, ["sama", "noun", "sama", "", "", "", "inflection of sami"]) + let v = native_list_append(v, ["ber", "noun", "berja", "bers", "beri", "", "berry"]) + let v = native_list_append(v, ["burst", "noun", "burstir", "burstar", "burstinni", "", "bristle"]) + let v = native_list_append(v, ["fell", "noun", "fell", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fit", "noun", "fitjar", "fitjar", "fitinni", "", "webbed foot of"]) + let v = native_list_append(v, ["get", "noun", "getin", "gets", "geti", "", "a guess"]) + let v = native_list_append(v, ["grind", "noun", "grindr", "grindar", "grindinni", "", "a gate made"]) + let v = native_list_append(v, ["lit", "noun", "lit", "", "", "", "glance"]) + let v = native_list_append(v, ["finn", "noun", "finn", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sin", "noun", "sin", "sinar", "", "", "cord tendon sinew"]) + let v = native_list_append(v, ["gull", "noun", "gullin", "gulls", "gulli", "", "gold"]) + let v = native_list_append(v, ["salt", "noun", "sǫlt", "salts", "salti", "", "salt"]) + let v = native_list_append(v, ["far", "noun", "fǫr", "fars", "fari", "", "a means of"]) + let v = native_list_append(v, ["dust", "noun", "dust", "", "", "", "dust particle"]) + let v = native_list_append(v, ["sand", "noun", "sand", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sog", "noun", "sogin", "sogs", "sogi", "", "suction"]) + let v = native_list_append(v, ["sal", "noun", "sal", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["mana", "noun", "mana", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["gram", "noun", "gram", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["band", "noun", "bǫnd", "bands", "bandi", "", "the act of"]) + let v = native_list_append(v, ["eng", "noun", "engjar", "engjar", "enginni", "", "meadow"]) + let v = native_list_append(v, ["ham", "noun", "ham", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["eta", "noun", "etur", "etu", "etu", "", "crib manger"]) + let v = native_list_append(v, ["stein", "noun", "stein", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["dag", "noun", "dag", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["dal", "noun", "dal", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["sonar", "noun", "sonar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gras", "noun", "grǫs", "grass", "grasi", "", "grass herbage"]) + let v = native_list_append(v, ["net", "noun", "netin", "nets", "neti", "", "net"]) + let v = native_list_append(v, ["bang", "noun", "bǫng", "bangs", "", "", "pounding hammering banging"]) + let v = native_list_append(v, ["sel", "noun", "selin", "sels", "seli", "", "shed on a"]) + let v = native_list_append(v, ["ax", "noun", "ǫx", "axins", "axi", "", "ear of corn"]) + let v = native_list_append(v, ["land", "noun", "lǫnd", "lands", "landi", "", "land"]) + let v = native_list_append(v, ["horn", "noun", "hornin", "horns", "horni", "", "horn of an"]) + let v = native_list_append(v, ["Reykjavík", "noun", "Reykjavík", "Reykjavíkar", "", "", "Reykjavík bay between"]) + let v = native_list_append(v, ["ars", "noun", "arsar", "arsins", "arsi", "", "arse anus"]) + let v = native_list_append(v, ["vinum", "noun", "vinum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["berg", "noun", "bergin", "bergs", "bergi", "", "rock boulder"]) + let v = native_list_append(v, ["agi", "noun", "agar", "aga", "aga", "", "awe terror feeling"]) + let v = native_list_append(v, ["arma", "noun", "ǫrmur", "ǫrmu", "ǫrmu", "", "pity"]) + let v = native_list_append(v, ["morna", "noun", "morna", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["dýr", "noun", "dýrin", "dýrs", "dýri", "", "animal"]) + let v = native_list_append(v, ["lamb", "noun", "lǫmb", "lambs", "lambi", "", "a lamb"]) + let v = native_list_append(v, ["frost", "noun", "frost", "", "", "", "frost"]) + let v = native_list_append(v, ["lik", "noun", "līk", "līks", "līki", "", ""]) + let v = native_list_append(v, ["barn", "noun", "bǫrn", "barns", "barni", "", "child"]) + let v = native_list_append(v, ["vellum", "noun", "vellum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lagi", "noun", "lagi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hunds", "noun", "hunds", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ló", "noun", "lóar", "lóar", "lónni", "", "clearing meadow"]) + let v = native_list_append(v, ["myki", "noun", "myki", "", "", "", "dung"]) + let v = native_list_append(v, ["und", "noun", "undir", "undar", "undinni", "", "wound"]) + let v = native_list_append(v, ["toga", "noun", "toga", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["linna", "noun", "linna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["veri", "noun", "veri", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["dagar", "noun", "dagar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["abbatissa", "noun", "abbatissur", "abbatissu", "abbatissu", "", "abbess"]) + let v = native_list_append(v, ["ala", "noun", "ala", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["hol", "noun", "holin", "hols", "holi", "", "a hole"]) + let v = native_list_append(v, ["gata", "noun", "gǫtur", "gǫtu", "gǫtu", "", "street road"]) + let v = native_list_append(v, ["ungar", "noun", "ungar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["fold", "noun", "foldar", "foldar", "foldu", "", "earth land field"]) + let v = native_list_append(v, ["þing", "noun", "þingin", "þings", "þingi", "", "a legal assembly"]) + let v = native_list_append(v, ["sorg", "noun", "sorgir", "sorgar", "sorginni", "", "sorrow grief"]) + let v = native_list_append(v, ["fund", "noun", "fund", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["veg", "noun", "veg", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["fax", "noun", "fǫx", "faxins", "faxi", "", "a mane"]) + let v = native_list_append(v, ["biti", "noun", "bitar", "bita", "bita", "", "bit mouthful morsel"]) + let v = native_list_append(v, ["brand", "noun", "brand", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["ko", "noun", "ko", "", "", "", "cow"]) + let v = native_list_append(v, ["il", "noun", "iljar", "iljar", "ilinni", "", "the sole of"]) + let v = native_list_append(v, ["bana", "noun", "bana", "", "", "", "inflection of bani"]) + let v = native_list_append(v, ["guma", "noun", "guma", "", "", "", "inflection of gumi"]) + let v = native_list_append(v, ["regn", "noun", "regn", "", "", "", "rain"]) + let v = native_list_append(v, ["hring", "noun", "hring", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["kot", "noun", "kotin", "kots", "koti", "", "cottage hut"]) + let v = native_list_append(v, ["mar", "noun", "mar", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["nauta", "noun", "nauta", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["ali", "noun", "ali", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["einherjar", "noun", "einherjar", "", "", "", "the einherjar dead"]) + let v = native_list_append(v, ["jarl", "noun", "jarlar", "jarls", "jarli", "", "a highborn noble"]) + let v = native_list_append(v, ["val", "noun", "val", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["vara", "noun", "vara", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["saga", "noun", "sǫgur", "sǫgu", "sǫgu", "", "story history legend"]) + let v = native_list_append(v, ["Írland", "noun", "Írland", "", "", "", "Ireland an island"]) + let v = native_list_append(v, ["ᚠ", "noun", "ᚠ", "", "", "", "abbreviation of fé"]) + let v = native_list_append(v, ["fen", "noun", "fenin", "fens", "feni", "", "fen bog quagmire"]) + let v = native_list_append(v, ["ok", "noun", "okin", "oks", "oki", "", "yoke"]) + let v = native_list_append(v, ["ull", "noun", "ullar", "ullar", "ullu", "", "wool"]) + let v = native_list_append(v, ["vanga", "noun", "vanga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["tala", "noun", "tǫlur", "tǫlu", "tǫlu", "", "speech discourse"]) + let v = native_list_append(v, ["lundi", "noun", "lundar", "lunda", "lunda", "", "puffin Fratercula arctica"]) + let v = native_list_append(v, ["sverð", "noun", "sverðin", "sverðs", "sverði", "", "sword"]) + let v = native_list_append(v, ["laki", "noun", "lakar", "laka", "laka", "", "burbot Lota lota"]) + let v = native_list_append(v, ["lag", "noun", "lǫg", "lags", "lagi", "", "stratum layer"]) + let v = native_list_append(v, ["ur", "noun", "ur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hals", "noun", "halsar", "halss", "halsi", "", "neck"]) + let v = native_list_append(v, ["sax", "noun", "sǫx", "saxins", "saxi", "", "a one-edged sword"]) + let v = native_list_append(v, ["brant", "noun", "brant", "", "", "", "steepness"]) + let v = native_list_append(v, ["erg", "noun", "erg", "", "", "", "a word of"]) + let v = native_list_append(v, ["holt", "noun", "holtin", "holts", "holti", "", "wood"]) + let v = native_list_append(v, ["tog", "noun", "togin", "togs", "togi", "", "rope line cord"]) + let v = native_list_append(v, ["gap", "noun", "gǫp", "gaps", "gapi", "", "gap empty space"]) + let v = native_list_append(v, ["harm", "noun", "harm", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["tart", "noun", "tart", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["maki", "noun", "makar", "maka", "maka", "", "match"]) + let v = native_list_append(v, ["gat", "noun", "gat", "", "", "", "hole opening"]) + let v = native_list_append(v, ["spik", "noun", "spikin", "spiks", "spiki", "", "blubber of whales"]) + let v = native_list_append(v, ["sala", "noun", "sala", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["magi", "noun", "magar", "maga", "maga", "", "stomach"]) + let v = native_list_append(v, ["ró", "noun", "ró", "", "", "", "rest state of"]) + let v = native_list_append(v, ["kvinna", "noun", "kvinnur", "kvinnu", "kvinnu", "", "alternative form of"]) + let v = native_list_append(v, ["maka", "noun", "mǫkur", "mǫku", "mǫku", "", "female mate"]) + let v = native_list_append(v, ["hug", "noun", "hug", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["mold", "noun", "moldir", "moldar", "moldu", "", "earth dirt soil"]) + let v = native_list_append(v, ["jó", "noun", "jó", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hauki", "noun", "hauki", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["maga", "noun", "maga", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["tal", "noun", "tǫl", "tals", "tali", "", "a talk parley"]) + let v = native_list_append(v, ["gula", "noun", "gulur", "gulu", "gulu", "", "alternative form of"]) + let v = native_list_append(v, ["mens", "noun", "mens", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["vin", "noun", "vinjar", "vinjar", "vininni", "", "meadow pasture"]) + let v = native_list_append(v, ["Finnland", "noun", "Finnland", "Finnlands", "Finnlandi", "", "Finland a country"]) + let v = native_list_append(v, ["banda", "noun", "banda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["folk", "noun", "folkin", "folks", "folki", "", "troop army"]) + let v = native_list_append(v, ["aura", "noun", "aura", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["reit", "noun", "reit", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["bani", "noun", "banar", "bana", "bana", "", "death"]) + let v = native_list_append(v, ["borg", "noun", "borgir", "borgar", "borgu", "", "a city town"]) + let v = native_list_append(v, ["Galiza", "noun", "Galiza", "Galizu", "Galizu", "", "Galicia a former"]) + let v = native_list_append(v, ["tré", "noun", "tréin", "trés", "trénu", "", "tree"]) + let v = native_list_append(v, ["kall", "noun", "kǫll", "kalls", "kalli", "", "call cry shouting"]) + let v = native_list_append(v, ["skip", "noun", "skipin", "skips", "skipi", "", "ship"]) + let v = native_list_append(v, ["svan", "noun", "svan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["viti", "noun", "viti", "", "", "", "sign mark indicator"]) + let v = native_list_append(v, ["salir", "noun", "salir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["stig", "noun", "stigin", "stigs", "stigi", "", "step pace"]) + let v = native_list_append(v, ["boga", "noun", "boga", "", "", "", "inflection of bogi"]) + let v = native_list_append(v, ["tá", "noun", "tær", "tár", "tánni", "", "a toe"]) + let v = native_list_append(v, ["lán", "noun", "lánin", "láns", "láni", "", "loan"]) + let v = native_list_append(v, ["messa", "noun", "messur", "messu", "messu", "", "mass church service"]) + let v = native_list_append(v, ["mála", "noun", "mála", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["heri", "noun", "heri", "", "", "", "hare"]) + let v = native_list_append(v, ["haka", "noun", "hǫkur", "hǫku", "hǫku", "", "chin"]) + let v = native_list_append(v, ["klara", "noun", "klara", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["mór", "noun", "móar", "mós", "mó", "", "a moor a"]) + let v = native_list_append(v, ["burr", "noun", "burir", "burar", "bur", "", "son"]) + let v = native_list_append(v, ["bora", "noun", "borur", "boru", "boru", "", "a drilling hole"]) + let v = native_list_append(v, ["Vinland", "noun", "Vinland", "", "", "", "Vinland"]) + let v = native_list_append(v, ["var", "noun", "var", "", "", "", "bodily gunk slime"]) + let v = native_list_append(v, ["Loki", "noun", "Loki", "Loka", "Loka", "", "Loki Norse god"]) + let v = native_list_append(v, ["afa", "noun", "afa", "", "", "", "hatred"]) + let v = native_list_append(v, ["dóm", "noun", "dóm", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hella", "noun", "hellur", "hellu", "hellu", "", "flat stone slab"]) + let v = native_list_append(v, ["ama", "noun", "ǫmur", "ǫmu", "", "", "a large amount"]) + let v = native_list_append(v, ["lax", "noun", "laxar", "laxins", "laxi", "", "salmon"]) + let v = native_list_append(v, ["fé", "noun", "féin", "fjár", "fénu", "", "cattle livestock especially"]) + let v = native_list_append(v, ["alfa", "noun", "alfa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["æra", "noun", "æra", "æru", "æru", "", "honour"]) + let v = native_list_append(v, ["alf", "noun", "alf", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sinn", "noun", "sinnin", "sinns", "sinni", "", "time occurrence"]) + let v = native_list_append(v, ["fata", "noun", "fata", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["kinda", "noun", "kinda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tunga", "noun", "tungur", "tungu", "tungu", "", "tongue"]) + let v = native_list_append(v, ["grund", "noun", "grundir", "grundar", "grundu", "", "land"]) + let v = native_list_append(v, ["vit", "noun", "vitin", "vits", "viti", "", "wit understanding sense"]) + let v = native_list_append(v, ["vitt", "noun", "vittin", "vitts", "vitti", "", "witchcraft charm"]) + let v = native_list_append(v, ["tanga", "noun", "tanga", "", "", "", "inflection of tangi"]) + let v = native_list_append(v, ["tangi", "noun", "tangar", "tanga", "tanga", "", "tang cape point"]) + let v = native_list_append(v, ["mari", "noun", "mari", "", "", "", "inflection of marr"]) + let v = native_list_append(v, ["úr", "noun", "úrin", "úrs", "úri", "", "based on descendants"]) + let v = native_list_append(v, ["brim", "noun", "brimin", "brims", "brimi", "", "surf the surface"]) + let v = native_list_append(v, ["karl", "noun", "karlar", "karls", "karli", "", "man"]) + let v = native_list_append(v, ["reka", "noun", "reka", "", "", "", "shovel"]) + let v = native_list_append(v, ["herr", "noun", "herjar", "herjar", "her", "", "crowd multitude host"]) + let v = native_list_append(v, ["haga", "noun", "haga", "", "", "", "inflection of hagi"]) + let v = native_list_append(v, ["traf", "noun", "trǫf", "trafs", "trafi", "", "fringe decorative border"]) + let v = native_list_append(v, ["ís", "noun", "ís", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["vatn", "noun", "vǫtn", "vatns", "vatni", "", "water"]) + let v = native_list_append(v, ["geit", "noun", "geitr", "geitar", "geitinni", "", "a she-goat"]) + let v = native_list_append(v, ["kyn", "noun", "kynin", "kyns", "kyni", "", "kind species type"]) + let v = native_list_append(v, ["Ásgarðr", "noun", "Ásgarðr", "", "", "", "Asgard the realm"]) + let v = native_list_append(v, ["Álfheimr", "noun", "Álfheimr", "", "", "", "the home of"]) + let v = native_list_append(v, ["álfr", "noun", "álfir", "álfar", "álf", "", "alternative form of"]) + let v = native_list_append(v, ["skildir", "noun", "skildir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["brenna", "noun", "brennur", "brennu", "brennu", "", "burning"]) + let v = native_list_append(v, ["sami", "noun", "samar", "sama", "sama", "", "reconciliation"]) + let v = native_list_append(v, ["Ari", "noun", "Ari", "Ara", "Ara", "", "a male given"]) + let v = native_list_append(v, ["etu", "noun", "etu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["ara", "noun", "ara", "", "", "", "inflection of ari"]) + let v = native_list_append(v, ["borð", "noun", "borðin", "borðs", "borði", "", "board plank"]) + let v = native_list_append(v, ["nef", "noun", "nefin", "nefs", "nefi", "", "nose"]) + let v = native_list_append(v, ["logi", "noun", "logar", "loga", "loga", "", "flame blaze"]) + let v = native_list_append(v, ["ef", "noun", "efin", "efs", "efi", "", "doubt"]) + let v = native_list_append(v, ["kol", "noun", "kol", "", "", "", "coal"]) + let v = native_list_append(v, ["sina", "noun", "sinur", "sinu", "sinu", "", "cord tendon sinew"]) + let v = native_list_append(v, ["heim", "noun", "heim", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["flet", "noun", "fletin", "flets", "fleti", "", "the raised flooring"]) + let v = native_list_append(v, ["brosa", "noun", "brosur", "brosu", "brosu", "", "a smile"]) + let v = native_list_append(v, ["afi", "noun", "afar", "afa", "afa", "", "grandfather"]) + let v = native_list_append(v, ["amma", "noun", "ǫmmur", "ǫmmu", "ǫmmu", "", "grandmother"]) + let v = native_list_append(v, ["á", "noun", "ár", "ár", "ánni", "", "river creek"]) + let v = native_list_append(v, ["ár", "noun", "árin", "árs", "ári", "", "a year"]) + let v = native_list_append(v, ["átt", "noun", "áttir", "áttar", "áttinni", "", "family race"]) + let v = native_list_append(v, ["bera", "noun", "berur", "beru", "beru", "", "she-bear female bear"]) + let v = native_list_append(v, ["berja", "noun", "berja", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["bjór", "noun", "bjór", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["blað", "noun", "blǫð", "blaðs", "blaði", "", "a leaf of"]) + let v = native_list_append(v, ["blóm", "noun", "blóm", "", "", "", "flower"]) + let v = native_list_append(v, ["borða", "noun", "borða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bók", "noun", "bǿkr", "bókar", "bókinni", "", "beech tree and"]) + let v = native_list_append(v, ["bóka", "noun", "bóka", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bóndi", "noun", "bǿndr", "bónda", "bónda", "", "farmer"]) + let v = native_list_append(v, ["brauð", "noun", "brauðin", "brauðs", "brauði", "", "bread"]) + let v = native_list_append(v, ["bróðir", "noun", "brǿðr", "bróður", "bróður", "", "brother"]) + let v = native_list_append(v, ["brú", "noun", "brú", "", "", "", "bridge"]) + let v = native_list_append(v, ["dauði", "noun", "dauðar", "dauða", "dauða", "", "death"]) + let v = native_list_append(v, ["dóttir", "noun", "dǿtr", "dóttur", "dǿtr", "", "daughter"]) + let v = native_list_append(v, ["drekka", "noun", "drekkur", "drekku", "drekku", "", "drink beverage"]) + let v = native_list_append(v, ["ey", "noun", "eyjar", "eyjar", "eyju", "", "island"]) + let v = native_list_append(v, ["efni", "noun", "efnin", "efnis", "efninu", "", "stuff material"]) + let v = native_list_append(v, ["eiga", "noun", "eigur", "eigu", "eigu", "", "possession"]) + let v = native_list_append(v, ["legi", "noun", "legi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["eign", "noun", "eignir", "eignar", "eigninni", "", "property"]) + let v = native_list_append(v, ["elda", "noun", "elda", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["endir", "noun", "endar", "endis", "endi", "", "end conclusion"]) + let v = native_list_append(v, ["faðir", "noun", "feðr", "fǫður", "fǫður", "", "father"]) + let v = native_list_append(v, ["ferð", "noun", "ferðir", "ferðar", "ferðinni", "", "journey"]) + let v = native_list_append(v, ["ferja", "noun", "ferjur", "ferju", "ferju", "", "ferry"]) + let v = native_list_append(v, ["fluga", "noun", "fluga", "", "", "", "fly insect"]) + let v = native_list_append(v, ["fólk", "noun", "fólk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Frakkland", "noun", "Frakkland", "Frakklands", "Frakklandi", "", "land of the"]) + let v = native_list_append(v, ["fugl", "noun", "fuglar", "fugls", "fugli", "", "alternative form of"]) + let v = native_list_append(v, ["fylgja", "noun", "fylgjur", "fylgju", "fylgju", "", "companionship"]) + let v = native_list_append(v, ["fær", "noun", "fær", "", "", "", "sheep"]) + let v = native_list_append(v, ["gjald", "noun", "gjǫld", "gjalds", "gjaldi", "", "payment recompense"]) + let v = native_list_append(v, ["gler", "noun", "glerin", "glers", "gleri", "", "glass"]) + let v = native_list_append(v, ["gluggi", "noun", "gluggi", "", "", "", "window"]) + let v = native_list_append(v, ["guð", "noun", "guð", "guðs", "guði", "", "God m"]) + let v = native_list_append(v, ["haf", "noun", "hǫf", "hafs", "hafi", "", "sea ocean"]) + let v = native_list_append(v, ["haust", "noun", "haustin", "hausts", "hausti", "", "autumn fall"]) + let v = native_list_append(v, ["hádegi", "noun", "hádegi", "", "", "", "midday noon"]) + let v = native_list_append(v, ["hár", "noun", "hárin", "hárs", "hári", "", "hair"]) + let v = native_list_append(v, ["hátíð", "noun", "hátíðir", "hátíðar", "hátíðinni", "", "festival feast"]) + let v = native_list_append(v, ["heilbrigði", "noun", "heilbrigði", "", "", "", "health"]) + let v = native_list_append(v, ["heilsa", "noun", "heilsur", "heilsu", "heilsu", "", "health"]) + let v = native_list_append(v, ["herbergi", "noun", "herbergi", "herbergis", "", "", "a harbour"]) + let v = native_list_append(v, ["herra", "noun", "herra", "", "", "", "mister gentleman"]) + let v = native_list_append(v, ["hiti", "noun", "hitar", "hita", "hita", "", "heat"]) + let v = native_list_append(v, ["hlé", "noun", "hléin", "hlés", "hléi", "", "shelter from wind"]) + let v = native_list_append(v, ["hlýr", "noun", "hlýrin", "hlýrs", "hlýri", "", "cheek face"]) + let v = native_list_append(v, ["hnot", "noun", "hnetr", "hnotar", "hnotinni", "", "nut"]) + let v = native_list_append(v, ["hreinn", "noun", "hreinar", "hreins", "hreini", "", "reindeer"]) + let v = native_list_append(v, ["hringja", "noun", "hringjur", "hringju", "hringju", "", "buckle"]) + let v = native_list_append(v, ["hryssa", "noun", "hryssur", "hryssu", "hryssu", "", "mare"]) + let v = native_list_append(v, ["hurð", "noun", "hurðir", "hurðar", "hurðu", "", "door"]) + let v = native_list_append(v, ["hús", "noun", "húsin", "húsins", "húsi", "", "house"]) + let v = native_list_append(v, ["húsbóndi", "noun", "húsbǿndr", "húsbónda", "húsbónda", "", "master of the"]) + let v = native_list_append(v, ["hver", "noun", "hver", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hvíla", "noun", "hvílur", "hvílu", "hvílu", "", "bed"]) + let v = native_list_append(v, ["kanna", "noun", "kǫnnur", "kǫnnu", "kǫnnu", "", "a can tankard"]) + let v = native_list_append(v, ["kirkja", "noun", "kirkjur", "kirkju", "kirkju", "", "church Christian house"]) + let v = native_list_append(v, ["kona", "noun", "konur", "konu", "konu", "", "woman"]) + let v = native_list_append(v, ["leggja", "noun", "leggja", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["mein", "noun", "meinin", "meins", "meini", "", "harm mischief crime"]) + let v = native_list_append(v, ["fundi", "noun", "fundi", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["leyfa", "noun", "leyfa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["leyfi", "noun", "leyfin", "leyfis", "leyfinu", "", "permission leave"]) + let v = native_list_append(v, ["líf", "noun", "lífin", "lífs", "lífi", "", "life"]) + let v = native_list_append(v, ["ljós", "noun", "ljósin", "ljóss", "ljósi", "", "a burning light"]) + let v = native_list_append(v, ["lykill", "noun", "luklar", "lykils", "lykli", "", "key"]) + let v = native_list_append(v, ["læknir", "noun", "læknar", "læknis", "lækni", "", "healer"]) + let v = native_list_append(v, ["magn", "noun", "mǫgn", "magns", "magni", "", "strength power"]) + let v = native_list_append(v, ["miði", "noun", "miði", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["miðja", "noun", "miðjur", "miðju", "miðju", "", "centre middle"]) + let v = native_list_append(v, ["móðir", "noun", "mœðr", "móður", "móður", "", "mother"]) + let v = native_list_append(v, ["mynd", "noun", "myndar", "myndar", "myndinni", "", "shape form"]) + let v = native_list_append(v, ["nafn", "noun", "nǫfn", "nafns", "nafni", "", "name title"]) + let v = native_list_append(v, ["nál", "noun", "nálar", "nálar", "nálinni", "", "needle"]) + let v = native_list_append(v, ["nótt", "noun", "nætr", "nætr", "nóttinni", "", "later form of"]) + let v = native_list_append(v, ["opna", "noun", "opnur", "opnu", "opnu", "", "opening crater"]) + let v = native_list_append(v, ["orð", "noun", "orðin", "orðs", "orði", "", "word"]) + let v = native_list_append(v, ["ótti", "noun", "óttar", "ótta", "ótta", "", "fear dread"]) + let v = native_list_append(v, ["ráð", "noun", "rǫ́ð", "ráðs", "ráði", "", "advice counsel"]) + let v = native_list_append(v, ["rúm", "noun", "rúm", "", "", "", "room"]) + let v = native_list_append(v, ["sár", "noun", "sáir", "sás", "sái", "", "a large cask"]) + let v = native_list_append(v, ["selja", "noun", "seljur", "selju", "selju", "", "sallow willow Salix"]) + let v = native_list_append(v, ["síðan", "noun", "síðan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["sjór", "noun", "sjóvar", "sjóvar", "sjó", "", "alternative form of"]) + let v = native_list_append(v, ["skila", "noun", "skila", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["skrá", "noun", "skrá", "", "", "", "dried skin parchment"]) + let v = native_list_append(v, ["skór", "noun", "skór", "", "", "", "shoe"]) + let v = native_list_append(v, ["skæri", "noun", "skærin", "skæra", "skærum", "", "a pair of"]) + let v = native_list_append(v, ["sól", "noun", "sólar", "sólar", "sólu", "", "sun"]) + let v = native_list_append(v, ["spjalla", "noun", "spjalla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["steinn", "noun", "steinar", "steins", "steini", "", "a stone boulder"]) + let v = native_list_append(v, ["stigi", "noun", "stigar", "stiga", "stiga", "", "ladder"]) + let v = native_list_append(v, ["stóll", "noun", "stólar", "stóls", "stóli", "", "a stool chair"]) + let v = native_list_append(v, ["stundum", "noun", "stundum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sumar", "noun", "sumur", "sumars", "sumri", "", "summer"]) + let v = native_list_append(v, ["svar", "noun", "svǫr", "svars", "svari", "", "answer reply"]) + let v = native_list_append(v, ["systir", "noun", "systr", "systur", "systur", "", "sister"]) + let v = native_list_append(v, ["systkin", "noun", "systkinin", "systkina", "systkinum", "", "brothers and sisters"]) + let v = native_list_append(v, ["sýning", "noun", "sýningar", "sýningar", "sýningu", "", "showing exhibition"]) + let v = native_list_append(v, ["sætur", "noun", "sætur", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["taka", "noun", "tǫkur", "tǫku", "tǫku", "", "taking capture of"]) + let v = native_list_append(v, ["taska", "noun", "tǫskur", "tǫsku", "tǫsku", "", "bag sack"]) + let v = native_list_append(v, ["tími", "noun", "tímar", "tíma", "tíma", "", "time"]) + let v = native_list_append(v, ["trúa", "noun", "trúr", "trú", "trú", "", "alternative form of"]) + let v = native_list_append(v, ["venja", "noun", "venjur", "venju", "venju", "", "custom habit"]) + let v = native_list_append(v, ["við", "noun", "viðjar", "viðjar", "", "", "withy withe collar"]) + let v = native_list_append(v, ["átta", "noun", "átta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["lús", "noun", "lýss", "lúsar", "lúsinni", "", "louse"]) + let v = native_list_append(v, ["fræ", "noun", "fræin", "fræs", "frævi", "", "a seed of"]) + let v = native_list_append(v, ["rót", "noun", "rœtr", "rótar", "rótinni", "", "root"]) + let v = native_list_append(v, ["blóð", "noun", "blóð", "blóðs", "blóði", "", "blood"]) + let v = native_list_append(v, ["bein", "noun", "beinin", "beins", "beini", "", "leg"]) + let v = native_list_append(v, ["eyra", "noun", "eyru", "eyrans", "eyranu", "", "ear"]) + let v = native_list_append(v, ["auga", "noun", "augu", "augans", "auganu", "", "eye"]) + let v = native_list_append(v, ["kné", "noun", "knéin", "knés", "knénu", "", "knee"]) + let v = native_list_append(v, ["brjóst", "noun", "brjóstin", "brjósts", "brjósti", "", "chest"]) + let v = native_list_append(v, ["hjarta", "noun", "hjǫrtu", "hjartans", "hjartanu", "", "heart"]) + let v = native_list_append(v, ["bita", "noun", "bita", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["spýja", "noun", "spýja", "spýju", "spýju", "", "vomit"]) + let v = native_list_append(v, ["ýta", "noun", "ýta", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["leika", "noun", "leiku", "leiku", "leikanu", "", "plaything doll"]) + let v = native_list_append(v, ["tungl", "noun", "tunglin", "tungls", "tungli", "", "moon"]) + let v = native_list_append(v, ["stjarna", "noun", "stjǫrnur", "stjǫrnu", "stjǫrnu", "", "star"]) + let v = native_list_append(v, ["ský", "noun", "skýin", "skýs", "skýi", "", "cloud"]) + let v = native_list_append(v, ["þoka", "noun", "þokur", "þoku", "þoku", "", "fog mist"]) + let v = native_list_append(v, ["himinn", "noun", "himnar", "himins", "himni", "", "the heavens sky"]) + let v = native_list_append(v, ["snjór", "noun", "snjóvar", "snjóvar", "snjóvi", "", "snow"]) + let v = native_list_append(v, ["aska", "noun", "aska", "ǫsku", "ǫsku", "", "ashes ash"]) + let v = native_list_append(v, ["fjall", "noun", "fjǫll", "fjalls", "fjalli", "", "mountain"]) + let v = native_list_append(v, ["vél", "noun", "vél", "vélar", "", "", "an artifice a"]) + let v = native_list_append(v, ["vika", "noun", "vikur", "viku", "viku", "", "week"]) + let v = native_list_append(v, ["þak", "noun", "þǫk", "þaks", "þaki", "", "thatch roof"]) + let v = native_list_append(v, ["þjóð", "noun", "þjóðar", "þjóðar", "þjóðu", "", "a people"]) + let v = native_list_append(v, ["þýða", "noun", "þýður", "þýðu", "þýðu", "", "attachment love"]) + let v = native_list_append(v, ["bur", "noun", "bur", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["mund", "noun", "mund", "", "", "", "hand"]) + let v = native_list_append(v, ["þræl", "noun", "þræl", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["regi", "noun", "regi", "reginnar", "reginni", "", "alternative form of"]) + let v = native_list_append(v, ["festi", "noun", "festi", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["þegn", "noun", "þegnar", "þegns", "þegni", "", "thane franklin freeman"]) + let v = native_list_append(v, ["hors", "noun", "horsin", "horsins", "horsi", "", "alternative form of"]) + let v = native_list_append(v, ["targa", "noun", "tǫrgur", "tǫrgu", "tǫrgu", "", "target small round"]) + let v = native_list_append(v, ["þorn", "noun", "þornar", "þorns", "þorni", "", "thorn = þyrnir"]) + let v = native_list_append(v, ["prestar", "noun", "prestar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["aurum", "noun", "aurum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ær", "noun", "ærnar", "ærinnar", "á", "", "ewe"]) + let v = native_list_append(v, ["keisari", "noun", "keisarar", "keisara", "keisara", "", "emperor"]) + let v = native_list_append(v, ["nes", "noun", "nesin", "ness", "nesi", "", "headland"]) + let v = native_list_append(v, ["langa", "noun", "lǫngur", "lǫngu", "lǫngu", "", "ling"]) + let v = native_list_append(v, ["happ", "noun", "happ", "", "", "", "good luck"]) + let v = native_list_append(v, ["epli", "noun", "eplin", "eplis", "eplinu", "", "apple"]) + let v = native_list_append(v, ["hest", "noun", "hest", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["nata", "noun", "nata", "", "", "", "spear"]) + let v = native_list_append(v, ["sokk", "noun", "sokk", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["Svíþjóð", "noun", "Svíþjóðar", "Svíþjóðar", "Svíþjóðu", "", "a region of"]) + let v = native_list_append(v, ["malm", "noun", "malm", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hof", "noun", "hofin", "hofs", "hofi", "", "shrine typically in"]) + let v = native_list_append(v, ["mánudagr", "noun", "mánudagr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pati", "noun", "patar", "pata", "pata", "", "rumour"]) + let v = native_list_append(v, ["týsdagr", "noun", "týsdagr", "", "", "", "Tuesday"]) + let v = native_list_append(v, ["kýr", "noun", "kýrnar", "kýrinnar", "kú", "", "cow"]) + let v = native_list_append(v, ["hallar", "noun", "hallar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ari", "noun", "arar", "ara", "ara", "", "eagle"]) + let v = native_list_append(v, ["fundar", "noun", "fundar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["Vefsn", "noun", "Vefsn", "Vefsnar", "", "", "a river in"]) + let v = native_list_append(v, ["sefa", "noun", "sefa", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["tíð", "noun", "tíðir", "tíðar", "tíðinni", "", "time"]) + let v = native_list_append(v, ["vilja", "noun", "vilja", "", "", "", "inflection of vili"]) + let v = native_list_append(v, ["helgi", "noun", "helgi", "helginnar", "helginni", "", "holiness"]) + let v = native_list_append(v, ["hyggja", "noun", "hyggjur", "hyggju", "hyggju", "", "thought mind opinion"]) + let v = native_list_append(v, ["ást", "noun", "ástir", "ástar", "ástinni", "", "love"]) + let v = native_list_append(v, ["þrá", "noun", "þrár", "þrár", "þráinni", "", "longing yearning"]) + let v = native_list_append(v, ["síða", "noun", "síður", "síðu", "síðu", "", "side"]) + let v = native_list_append(v, ["ætt", "noun", "ættir", "ættar", "ættinni", "", "quarter of the"]) + let v = native_list_append(v, ["leikur", "noun", "leikur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["leið", "noun", "leiðar", "leiðar", "leiðinni", "", "a way"]) + let v = native_list_append(v, ["svín", "noun", "svínin", "svíns", "svíni", "", "pig swine"]) + let v = native_list_append(v, ["andlit", "noun", "andlitin", "andlits", "andliti", "", "face countenance"]) + let v = native_list_append(v, ["hross", "noun", "hrossin", "hrossins", "hrossi", "", "horse"]) + let v = native_list_append(v, ["nauð", "noun", "nauðir", "nauðar", "nauðinni", "", "distress"]) + let v = native_list_append(v, ["kista", "noun", "kistur", "kistu", "kistu", "", "a chest"]) + let v = native_list_append(v, ["laug", "noun", "laugar", "laugar", "laugu", "", "bath"]) + let v = native_list_append(v, ["þjónusta", "noun", "þjónustur", "þjónustu", "þjónustu", "", "service"]) + let v = native_list_append(v, ["rauf", "noun", "rauf", "", "", "", "a gap a"]) + let v = native_list_append(v, ["bylgja", "noun", "bylgjur", "bylgju", "bylgju", "", "wave billow"]) + let v = native_list_append(v, ["gleði", "noun", "gleði", "gleðinnar", "gleðinni", "", "gladness merriment"]) + let v = native_list_append(v, ["búð", "noun", "búðir", "búðar", "búðinni", "", "a temporary building"]) + let v = native_list_append(v, ["sjón", "noun", "sjónir", "sjónar", "sjóninni", "", "sight eyesight"]) + let v = native_list_append(v, ["bál", "noun", "bál", "báls", "", "", "large fire pyre"]) + let v = native_list_append(v, ["hljóð", "noun", "hljóðin", "hljóðs", "hljóði", "", "silence hearing"]) + let v = native_list_append(v, ["járn", "noun", "járn", "", "", "", "iron"]) + let v = native_list_append(v, ["lykt", "noun", "lyktir", "lyktar", "lyktinni", "", "end conclusion"]) + let v = native_list_append(v, ["fjara", "noun", "fjǫrur", "fjǫru", "fjǫru", "", "ebb"]) + let v = native_list_append(v, ["gumi", "noun", "gumar", "guma", "guma", "", "a man"]) + let v = native_list_append(v, ["líkami", "noun", "líkamar", "líkama", "líkama", "", "body"]) + let v = native_list_append(v, ["ævi", "noun", "ævi", "", "", "", "time"]) + let v = native_list_append(v, ["skyrta", "noun", "skyrtur", "skyrtu", "skyrtu", "", "shirt"]) + let v = native_list_append(v, ["kinn", "noun", "kinnr", "kinnar", "kinninni", "", "cheek"]) + let v = native_list_append(v, ["eik", "noun", "eikr", "eikar", "", "", "oak"]) + let v = native_list_append(v, ["lind", "noun", "lindar", "lindar", "lindinni", "", "lime linden tree"]) + let v = native_list_append(v, ["skeið", "noun", "skeiðar", "skeiðar", "skeiði", "", "about an elongated"]) + let v = native_list_append(v, ["naðra", "noun", "nǫðrur", "nǫðru", "nǫðru", "", "snake adder viper"]) + let v = native_list_append(v, ["boð", "noun", "boðin", "boðs", "boði", "", "offer"]) + let v = native_list_append(v, ["bytta", "noun", "bytta", "", "", "", "small tub pail"]) + let v = native_list_append(v, ["læti", "noun", "lætin", "láta", "látum", "", "noise cries"]) + let v = native_list_append(v, ["endi", "noun", "endar", "enda", "enda", "", "end conclusion"]) + let v = native_list_append(v, ["nábúi", "noun", "nábúar", "nábúa", "nábúa", "", "neighbour"]) + let v = native_list_append(v, ["sveinn", "noun", "sveinar", "sveins", "sveini", "", "boy lad"]) + let v = native_list_append(v, ["hávaði", "noun", "hávaðar", "hávaða", "hávaða", "", "noise tumult"]) + let v = native_list_append(v, ["laun", "noun", "launin", "launa", "launum", "", "reward recompense"]) + let v = native_list_append(v, ["skeiðar", "noun", "skeiðar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["hel", "noun", "heljar", "heljar", "helju", "", "the underworld personified"]) + let v = native_list_append(v, ["gersemi", "noun", "gersemi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tíðindi", "noun", "tíðindi", "", "", "", "tidings news events"]) + let v = native_list_append(v, ["herðar", "noun", "herðar", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["reið", "noun", "reiðar", "reiðar", "reiðinni", "", "ride riding"]) + let v = native_list_append(v, ["sótt", "noun", "sóttir", "sóttar", "sóttinni", "", "sickness illness disease"]) + let v = native_list_append(v, ["dáð", "noun", "dáðir", "dáðar", "dáðinni", "", "deed"]) + let v = native_list_append(v, ["smiðja", "noun", "smiðjur", "smiðju", "smiðju", "", "smithy"]) + let v = native_list_append(v, ["rás", "noun", "rás", "", "", "", "race running"]) + let v = native_list_append(v, ["bjalla", "noun", "bjǫllur", "bjǫllu", "bjǫllu", "", "bell"]) + let v = native_list_append(v, ["skinn", "noun", "skinn", "skinns", "skinni", "", "skin outer layer"]) + let v = native_list_append(v, ["tár", "noun", "tárin", "társ", "tári", "", "tear"]) + let v = native_list_append(v, ["ekkja", "noun", "ekkja", "", "", "", "widow"]) + let v = native_list_append(v, ["deila", "noun", "deilur", "deilu", "deilu", "", "disagreement contest"]) + let v = native_list_append(v, ["sætt", "noun", "sættir", "sættar", "sættinni", "", "agreement reconciliation"]) + let v = native_list_append(v, ["kví", "noun", "kvíar", "kvíar", "kvínni", "", "pen fold enclosure"]) + let v = native_list_append(v, ["rakki", "noun", "rakkar", "rakka", "rakka", "", "dog"]) + let v = native_list_append(v, ["kjóll", "noun", "kjólar", "kjóls", "kjóli", "", "ship"]) + let v = native_list_append(v, ["hilmir", "noun", "hilmar", "hilmis", "hilmi", "", "prince"]) + let v = native_list_append(v, ["efja", "noun", "efjur", "efju", "efju", "", "mud ooze"]) + let v = native_list_append(v, ["gnótt", "noun", "gnótt", "", "", "", "abundance"]) + let v = native_list_append(v, ["braut", "noun", "brautir", "brautar", "brautu", "", "road cleared path"]) + let v = native_list_append(v, ["iðja", "noun", "iðjar", "", "", "", "based on compounds"]) + let v = native_list_append(v, ["ermi", "noun", "ermi", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["minni", "noun", "minnin", "minnis", "minninu", "", "memory"]) + let v = native_list_append(v, ["skuld", "noun", "skuldir", "skuldar", "skuldinni", "", "debt obligation"]) + let v = native_list_append(v, ["elja", "noun", "elja", "", "", "", "a rival wife"]) + let v = native_list_append(v, ["mennt", "noun", "mennt", "", "", "", "accomplishment"]) + let v = native_list_append(v, ["sæng", "noun", "sæng", "", "", "", "a late variant"]) + let v = native_list_append(v, ["trú", "noun", "trúar", "trúar", "trúinni", "", "faith"]) + let v = native_list_append(v, ["svala", "noun", "svǫlur", "svǫlu", "svǫlu", "", "a swallow"]) + let v = native_list_append(v, ["svefn", "noun", "svefnar", "svefns", "svefni", "", "sleep"]) + let v = native_list_append(v, ["korn", "noun", "korn", "", "", "", "corn"]) + let v = native_list_append(v, ["reiði", "noun", "reiði", "reiðinnar", "reiðinni", "", "anger rage wrath"]) + let v = native_list_append(v, ["mál", "noun", "mǫ́l", "máls", "máli", "", "language"]) + let v = native_list_append(v, ["hlið", "noun", "hliðin", "hliðs", "hliði", "", "gate gateway"]) + let v = native_list_append(v, ["mær", "noun", "meyjar", "meyjar", "meyju", "", "maid girl virgin"]) + let v = native_list_append(v, ["kelda", "noun", "kelda", "", "", "", "a well a"]) + let v = native_list_append(v, ["ambátt", "noun", "ambáttar", "ambáttar", "ambáttinni", "", "female slave bondwoman"]) + let v = native_list_append(v, ["gerð", "noun", "gerðir", "gerðar", "", "", "alternative form of"]) + let v = native_list_append(v, ["asni", "noun", "asnar", "asna", "asna", "", "ass donkey"]) + let v = native_list_append(v, ["foli", "noun", "folar", "fola", "fola", "", "foal"]) + let v = native_list_append(v, ["fregn", "noun", "fregn", "", "", "", "intelligence intel news"]) + let v = native_list_append(v, ["húsfreyja", "noun", "húsfreyja", "", "", "", "housewife"]) + let v = native_list_append(v, ["gáta", "noun", "gátur", "gátu", "gátu", "", "riddle"]) + let v = native_list_append(v, ["vitni", "noun", "vitnin", "vitnis", "vitninu", "", "witness testimony"]) + let v = native_list_append(v, ["mót", "noun", "mótin", "móts", "móti", "", "meeting"]) + let v = native_list_append(v, ["hlíð", "noun", "hlíðir", "hlíðar", "hlíðinni", "", "slope"]) + let v = native_list_append(v, ["gufa", "noun", "gufa", "", "", "", "vapor steam"]) + let v = native_list_append(v, ["grein", "noun", "greinir", "greinar", "greininni", "", "branch of a"]) + let v = native_list_append(v, ["vagga", "noun", "vǫggur", "vǫggu", "vǫggu", "", "cradle"]) + let v = native_list_append(v, ["bú", "noun", "bú", "", "", "", "dwelling household farm"]) + let v = native_list_append(v, ["ríki", "noun", "ríkin", "ríkis", "ríkinu", "", "realm"]) + let v = native_list_append(v, ["skegg", "noun", "skeggin", "skeggs", "skeggi", "", "beard"]) + let v = native_list_append(v, ["kvæði", "noun", "kvæði", "", "", "", "poetic tale of"]) + let v = native_list_append(v, ["mengi", "noun", "mengi", "", "", "", "quantity"]) + let v = native_list_append(v, ["lið", "noun", "liðin", "liðs", "liði", "", "host folk people"]) + let v = native_list_append(v, ["hlaða", "noun", "hlǫður", "hlǫðu", "hlǫðu", "", "a storehouse barn"]) + let v = native_list_append(v, ["lykkja", "noun", "lykkja", "", "", "", "loop"]) + let v = native_list_append(v, ["gota", "noun", "gota", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["ata", "noun", "ata", "", "", "", "quarrel"]) + let v = native_list_append(v, ["folks", "noun", "folks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["alda", "noun", "alda", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["ang", "noun", "ǫng", "angs", "angi", "", "fragrance"]) + let v = native_list_append(v, ["tara", "noun", "tara", "", "", "", "war"]) + let v = native_list_append(v, ["vega", "noun", "vega", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["sult", "noun", "sult", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["lands", "noun", "lands", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dana", "noun", "dana", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fles", "noun", "flesjar", "flesjar", "flesinni", "", "a small and"]) + let v = native_list_append(v, ["tigar", "noun", "tigar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["malar", "noun", "malar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["arin", "noun", "arin", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["fisk", "noun", "fisk", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["snor", "noun", "snorar", "snorar", "snorinni", "", "daughter-in-law"]) + let v = native_list_append(v, ["manna", "noun", "manna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["asks", "noun", "asks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bands", "noun", "bands", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vissa", "noun", "vissur", "vissu", "vissu", "", "certain knowledge certainty"]) + let v = native_list_append(v, ["marka", "noun", "marka", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["afla", "noun", "afla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["valla", "noun", "valla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["varar", "noun", "varar", "", "", "", "inflection of vǫr"]) + let v = native_list_append(v, ["verja", "noun", "verjur", "verju", "verju", "", "defense"]) + let v = native_list_append(v, ["soga", "noun", "soga", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["api", "noun", "apar", "apa", "apa", "", "ape monkey"]) + let v = native_list_append(v, ["festa", "noun", "festur", "festu", "festu", "", "bail pledge"]) + let v = native_list_append(v, ["rós", "noun", "rósar", "rósar", "rósinni", "", "rose"]) + let v = native_list_append(v, ["fura", "noun", "furur", "furu", "furu", "", "fir firtree pine"]) + let v = native_list_append(v, ["koddi", "noun", "koddar", "kodda", "kodda", "", "pillow"]) + let v = native_list_append(v, ["skel", "noun", "skeljar", "skeljar", "skelinni", "", "shell"]) + let v = native_list_append(v, ["bura", "noun", "bura", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kunta", "noun", "kuntur", "kuntu", "kuntu", "", "cunt"]) + let v = native_list_append(v, ["skara", "noun", "skara", "", "", "", "accusative/dative/genitive singular indefinite"]) + let v = native_list_append(v, ["eyja", "noun", "eyja", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["lé", "noun", "ljár", "ljá", "ljá", "", "scythe"]) + let v = native_list_append(v, ["vés", "noun", "vés", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vár", "noun", "várin", "várs", "vári", "", "spring season"]) + let v = native_list_append(v, ["rák", "noun", "rák", "", "", "", "strip stripe"]) + let v = native_list_append(v, ["elli", "noun", "elli", "ellinnar", "ellinni", "", "old age oldness"]) + let v = native_list_append(v, ["jaki", "noun", "jakar", "jaka", "jaka", "", "broken ice icefloe"]) + let v = native_list_append(v, ["jól", "noun", "jólin", "jóla", "jólum", "", "yule midwinter season"]) + let v = native_list_append(v, ["kerti", "noun", "kerti", "", "", "", "wax candle taper"]) + let v = native_list_append(v, ["stund", "noun", "stundar", "stundar", "stundinni", "", "an undetermined amount"]) + let v = native_list_append(v, ["varpa", "noun", "vǫrpur", "vǫrpu", "vǫrpu", "", "fishing net"]) + let v = native_list_append(v, ["áll", "noun", "áll", "", "", "", "eel"]) + let v = native_list_append(v, ["át", "noun", "átin", "áz", "áti", "", "the act of"]) + let v = native_list_append(v, ["ás", "noun", "ás", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["hein", "noun", "heinar", "heinar", "heininni", "", "whetstone"]) + let v = native_list_append(v, ["Týr", "noun", "Týr", "Týs", "tívi", "", "Tyr an áss"]) + let v = native_list_append(v, ["landa", "noun", "landa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["elri", "noun", "elrin", "elris", "elrinu", "", "alder tree"]) + let v = native_list_append(v, ["ægir", "noun", "ægir", "ægis", "ægi", "", "the sea ocean"]) + let v = native_list_append(v, ["hamar", "noun", "hamar", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["boz", "noun", "boz", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["fiel", "noun", "fiel", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vinda", "noun", "vindur", "vindu", "vindu", "", "a hank of"]) + let v = native_list_append(v, ["gor", "noun", "gorin", "gors", "gori", "", "intestines"]) + let v = native_list_append(v, ["ᚢ", "noun", "ᚢ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["vaka", "noun", "vǫkur", "vǫku", "vǫku", "", "waking"]) + let v = native_list_append(v, ["beru", "noun", "beru", "", "", "", "indefinite oblique singular"]) + let v = native_list_append(v, ["fár", "noun", "fárin", "fárs", "fári", "", "bale harm mischief"]) + let v = native_list_append(v, ["mara", "noun", "mǫrur", "mǫru", "mǫru", "", "nightmare incubus"]) + let v = native_list_append(v, ["lekar", "noun", "lekar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["bogi", "noun", "bogar", "boga", "boga", "", "bow archery"]) + let v = native_list_append(v, ["beri", "noun", "beri", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["lof", "noun", "lofin", "lofs", "lofi", "", "praise"]) + let v = native_list_append(v, ["sakar", "noun", "sakar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["marga", "noun", "marga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["merr", "noun", "merar", "merar", "meri", "", "mare adult female"]) + let v = native_list_append(v, ["konur", "noun", "konur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["dali", "noun", "dali", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["simul", "noun", "simul", "simlar", "", "", "a hag witch"]) + let v = native_list_append(v, ["Ísland", "noun", "Ísland", "Íslands", "Íslandi", "", "Iceland an island"]) + let v = native_list_append(v, ["hersir", "noun", "hersar", "hersis", "hersi", "", "a local chief"]) + let v = native_list_append(v, ["fossa", "noun", "fossa", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["Harald", "noun", "Harald", "", "", "", "accusative of Haraldr"]) + let v = native_list_append(v, ["aur", "noun", "aur", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["lega", "noun", "legur", "legu", "legu", "", "lying in bed"]) + let v = native_list_append(v, ["steins", "noun", "steins", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brims", "noun", "brims", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["uxi", "noun", "yxn", "uxa", "uxa", "", "ox"]) + let v = native_list_append(v, ["magar", "noun", "magar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["menn", "noun", "menn", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["torg", "noun", "torgin", "torgs", "torgi", "", "marketplace"]) + let v = native_list_append(v, ["lauf", "noun", "lauf", "", "", "", "leaf"]) + let v = native_list_append(v, ["tó", "noun", "tó", "tóar", "", "", "grassy spot among"]) + let v = native_list_append(v, ["malmi", "noun", "malmi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mura", "noun", "mura", "muru", "", "", "silvergrass goosegrass"]) + let v = native_list_append(v, ["danska", "noun", "danska", "dǫnsku", "dǫnsku", "", "Scandinavian language Old"]) + let v = native_list_append(v, ["hjól", "noun", "hjólin", "hjóls", "hjóli", "", "wheel"]) + let v = native_list_append(v, ["píka", "noun", "píkur", "píku", "píku", "", "a girl a"]) + let v = native_list_append(v, ["borðs", "noun", "borðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eyrir", "noun", "aurar", "eyris", "eyri", "", "an ounce usually"]) + let v = native_list_append(v, ["vild", "noun", "vild", "", "", "", "will liking benevolence"]) + let v = native_list_append(v, ["verk", "noun", "verkin", "verks", "verki", "", "work deed"]) + let v = native_list_append(v, ["hama", "noun", "hama", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stríða", "noun", "stríður", "stríðu", "stríðu", "", "adversity"]) + let v = native_list_append(v, ["leki", "noun", "lekar", "leka", "leka", "", "leakage leak"]) + let v = native_list_append(v, ["oddr", "noun", "oddar", "odds", "oddi", "", "sharp point especially"]) + let v = native_list_append(v, ["fiskr", "noun", "fiskar", "fisks", "fiski", "", "a fish"]) + let v = native_list_append(v, ["dagr", "noun", "dagar", "dags", "degi", "", "a day"]) + let v = native_list_append(v, ["sæ", "noun", "sæ", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["skúr", "noun", "skúr", "", "", "", "shower of rain"]) + let v = native_list_append(v, ["segl", "noun", "segl", "", "", "", "sail"]) + let v = native_list_append(v, ["dauðr", "noun", "dauðir", "dauðar", "dauði", "", "death"]) + let v = native_list_append(v, ["réttr", "noun", "réttr", "", "", "", "law"]) + let v = native_list_append(v, ["sæti", "noun", "sætin", "sætis", "sætinu", "", "a seat"]) + let v = native_list_append(v, ["smiðr", "noun", "smiðar", "smiðs", "smiði", "", "smith a craftsman"]) + let v = native_list_append(v, ["sona", "noun", "sona", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["maðr", "noun", "menn", "manns", "manni", "", "human man person"]) + let v = native_list_append(v, ["saka", "noun", "saka", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stafr", "noun", "stafir", "stafs", "staf", "", "staff"]) + let v = native_list_append(v, ["staðr", "noun", "staðir", "staðar", "stað", "", "place spot abode"]) + let v = native_list_append(v, ["bógr", "noun", "bœgir", "bógar", "bœgi", "", "shoulder"]) + let v = native_list_append(v, ["búkr", "noun", "búkr", "", "", "", "trunk of the"]) + let v = native_list_append(v, ["draumr", "noun", "draumar", "draums", "draumi", "", "dream"]) + let v = native_list_append(v, ["drykkr", "noun", "drykkir", "drykkjar", "drykk", "", "a drink the"]) + let v = native_list_append(v, ["eiðr", "noun", "eiðar", "eiðs", "eiði", "", "oath"]) + let v = native_list_append(v, ["stormr", "noun", "stormar", "storms", "stormi", "", "storm"]) + let v = native_list_append(v, ["storkr", "noun", "storkar", "storks", "storki", "", "stork"]) + let v = native_list_append(v, ["straumr", "noun", "straumar", "straums", "straumi", "", "a stream a"]) + let v = native_list_append(v, ["streng", "noun", "streng", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["strengr", "noun", "strengir", "strengjar", "streng", "", "string"]) + let v = native_list_append(v, ["friðr", "noun", "friðr", "friðar", "friði", "", "peace frith"]) + let v = native_list_append(v, ["hófr", "noun", "hófr", "", "", "", "hoof"]) + let v = native_list_append(v, ["suðr", "noun", "suðr", "", "", "", "south"]) + let v = native_list_append(v, ["austr", "noun", "austr", "austrs", "austri", "", "east"]) + let v = native_list_append(v, ["norðr", "noun", "norðr", "", "", "", "north"]) + let v = native_list_append(v, ["svarmr", "noun", "svarmar", "svarms", "svarmi", "", "swarm"]) + let v = native_list_append(v, ["garðr", "noun", "garðar", "garðs", "garði", "", "a fence wall"]) + let v = native_list_append(v, ["hjalmr", "noun", "hjalmar", "hjalms", "hjalmi", "", "helmet"]) + let v = native_list_append(v, ["taumr", "noun", "taumr", "", "", "", "bridle"]) + let v = native_list_append(v, ["tagl", "noun", "tǫgl", "tagls", "tagli", "", "tail of a"]) + let v = native_list_append(v, ["hryggr", "noun", "hryggir", "hryggjar", "hrygg", "", "backbone spine"]) + let v = native_list_append(v, ["hundr", "noun", "hundar", "hunds", "hundi", "", "a dog"]) + let v = native_list_append(v, ["timbr", "noun", "timbr", "timbrs", "timbri", "", "timber"]) + let v = native_list_append(v, ["þorp", "noun", "þorpin", "þorps", "þorpi", "", "hamlet village"]) + let v = native_list_append(v, ["þráðr", "noun", "þræðir", "þráðar", "þræði", "", "thread"]) + let v = native_list_append(v, ["hópr", "noun", "hópr", "", "", "", "heap"]) + let v = native_list_append(v, ["nafli", "noun", "naflar", "nafla", "nafla", "", "a navel"]) + let v = native_list_append(v, ["vegr", "noun", "vegir", "vegar", "vegi", "", "way road"]) + let v = native_list_append(v, ["loga", "noun", "loga", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["vǫllr", "noun", "vellir", "vallar", "velli", "", "field flat ground"]) + let v = native_list_append(v, ["veðr", "noun", "veðr", "veðrar", "", "", "weather"]) + let v = native_list_append(v, ["vili", "noun", "viljar", "vilja", "vilja", "", "will"]) + let v = native_list_append(v, ["leggr", "noun", "leggir", "leggjar", "legg", "", "leg stem"]) + let v = native_list_append(v, ["vefr", "noun", "vefir", "vefjar", "vef", "", "web"]) + let v = native_list_append(v, ["varta", "noun", "vǫrtur", "vǫrtu", "vǫrtu", "", "a wart"]) + let v = native_list_append(v, ["armr", "noun", "armar", "arms", "armi", "", "arm"]) + let v = native_list_append(v, ["akr", "noun", "akrar", "akrs", "akri", "", "acre"]) + let v = native_list_append(v, ["aldr", "noun", "aldrar", "aldrs", "aldri", "", "age lifetime"]) + let v = native_list_append(v, ["eld", "noun", "eld", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["alr", "noun", "alir", "als", "al", "", "awl"]) + let v = native_list_append(v, ["arfi", "noun", "arfar", "arfa", "arfa", "", "heir"]) + let v = native_list_append(v, ["arfr", "noun", "arfar", "arfs", "arfi", "", "inheritance heritage"]) + let v = native_list_append(v, ["hungr", "noun", "hungr", "", "", "", "hunger"]) + let v = native_list_append(v, ["auðr", "noun", "auðr", "auðs", "auði", "", "riches wealth"]) + let v = native_list_append(v, ["askr", "noun", "askar", "asks", "aski", "", "ash tree"]) + let v = native_list_append(v, ["leðr", "noun", "leðr", "", "", "", "leather"]) + let v = native_list_append(v, ["bátr", "noun", "bátar", "báts", "báti", "", "boat"]) + let v = native_list_append(v, ["bekkr", "noun", "bekkir", "bekkjar", "bekk", "", "bench"]) + let v = native_list_append(v, ["blástr", "noun", "blæstir", "blástar", "blæsti", "", "blast"]) + let v = native_list_append(v, ["koss", "noun", "koss", "", "", "", "kiss"]) + let v = native_list_append(v, ["akkeri", "noun", "akkerar", "akkera", "akkera", "", "anchor"]) + let v = native_list_append(v, ["bjórr", "noun", "bjórar", "bjórs", "bjóri", "", "beaver"]) + let v = native_list_append(v, ["baun", "noun", "baunir", "baunar", "bauninni", "", "bean"]) + let v = native_list_append(v, ["þorskr", "noun", "þorskar", "þorsks", "þorski", "", "cod"]) + let v = native_list_append(v, ["íkorni", "noun", "íkornar", "íkorna", "íkorna", "", "squirrel"]) + let v = native_list_append(v, ["arðr", "noun", "arðrar", "arðrs", "arðri", "", "plough ard"]) + let v = native_list_append(v, ["faldr", "noun", "faldr", "", "", "", "knot"]) + let v = native_list_append(v, ["fira", "noun", "fira", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hafri", "noun", "hafri", "", "", "", "oat Avena"]) + let v = native_list_append(v, ["hafr", "noun", "hafrar", "hafrs", "hafri", "", "he-goat buck"]) + let v = native_list_append(v, ["nagl", "noun", "negl", "nagls", "nagli", "", "nail"]) + let v = native_list_append(v, ["tafl", "noun", "tǫfl", "tafls", "", "", "a board game"]) + let v = native_list_append(v, ["brún", "noun", "brýnn", "brúnar", "brúninni", "", "sharp edge rim"]) + let v = native_list_append(v, ["gestr", "noun", "gestir", "gests", "gest", "", "guest"]) + let v = native_list_append(v, ["liðr", "noun", "liðir", "liðar", "liði", "", "member"]) + let v = native_list_append(v, ["náð", "noun", "náð", "", "", "", "mercy"]) + let v = native_list_append(v, ["haukr", "noun", "haukar", "hauks", "hauki", "", "hawk"]) + let v = native_list_append(v, ["hatr", "noun", "hatr", "", "", "", "hatred spite aversion"]) + let v = native_list_append(v, ["húð", "noun", "húðir", "húðar", "húðinni", "", "skin"]) + let v = native_list_append(v, ["humarr", "noun", "humarar", "humars", "humri", "", "lobster"]) + let v = native_list_append(v, ["kraptr", "noun", "kraptar", "krapts", "krapti", "", "strength"]) + let v = native_list_append(v, ["limr", "noun", "limir", "limar", "limi", "", "limb"]) + let v = native_list_append(v, ["matr", "noun", "matir", "matar", "mat", "", "food"]) + let v = native_list_append(v, ["sunna", "noun", "sunnur", "sunnu", "sunnu", "", "sun"]) + let v = native_list_append(v, ["níð", "noun", "níð", "", "", "", "contumely offensive and"]) + let v = native_list_append(v, ["Ása", "noun", "Ása", "", "", "", "a female given"]) + let v = native_list_append(v, ["áss", "noun", "ásar", "ássins", "ási", "", "a thick pole"]) + let v = native_list_append(v, ["dúkr", "noun", "dúkr", "", "", "", "cloth"]) + let v = native_list_append(v, ["ostr", "noun", "ostar", "osts", "osti", "", "cheese"]) + let v = native_list_append(v, ["silfr", "noun", "silfr", "silfrs", "", "", "silver"]) + let v = native_list_append(v, ["dvergr", "noun", "dvergar", "dvergs", "dvergi", "", "a dwarf"]) + let v = native_list_append(v, ["gaukr", "noun", "gaukar", "gauks", "gauki", "", "cuckoo"]) + let v = native_list_append(v, ["staup", "noun", "staupin", "staups", "staupi", "", "a small glass"]) + let v = native_list_append(v, ["hegri", "noun", "hegrar", "hegra", "hegra", "", "heron"]) + let v = native_list_append(v, ["rugr", "noun", "rugir", "rugar", "rug", "", "rye Secale cereale"]) + let v = native_list_append(v, ["rokkr", "noun", "rokkar", "rokks", "rokki", "", "spinning wheel distaff"]) + let v = native_list_append(v, ["dropi", "noun", "dropi", "", "", "", "drop"]) + let v = native_list_append(v, ["brúðr", "noun", "brúðir", "brúðar", "brúði", "", "a bride"]) + let v = native_list_append(v, ["belti", "noun", "beltin", "beltis", "beltinu", "", "belt"]) + let v = native_list_append(v, ["vaz", "noun", "vaz", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["sinni", "noun", "sinnar", "sinna", "sinna", "", "follower companion"]) + let v = native_list_append(v, ["hugr", "noun", "hugir", "hugar", "hug", "", "thought mind"]) + let v = native_list_append(v, ["salts", "noun", "salts", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["naut", "noun", "nautin", "nauts", "nauti", "", "bull"]) + let v = native_list_append(v, ["hrafn", "noun", "hrafnar", "hrafns", "hrafni", "", "raven"]) + let v = native_list_append(v, ["klokka", "noun", "klokkur", "klokku", "", "", "bell"]) + let v = native_list_append(v, ["sonr", "noun", "synir", "sonar", "syni", "", "son"]) + let v = native_list_append(v, ["sandr", "noun", "sandar", "sands", "sandi", "", "sand"]) + let v = native_list_append(v, ["snær", "noun", "snævar", "snæs", "snævi", "", "snow"]) + let v = native_list_append(v, ["snigill", "noun", "sniglar", "snigils", "snigli", "", "a snail"]) + let v = native_list_append(v, ["sokkr", "noun", "sokkr", "", "", "", "sock"]) + let v = native_list_append(v, ["stilli", "noun", "stilli", "", "", "", "indefinite accusative/dative singular"]) + let v = native_list_append(v, ["hjǫrtr", "noun", "hirtir", "hjartar", "hirti", "", "deer"]) + let v = native_list_append(v, ["hirti", "noun", "hirti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hirðir", "noun", "hirðar", "hirðis", "hirði", "", "shepherd"]) + let v = native_list_append(v, ["hveiti", "noun", "hveitin", "hveitis", "hveitinu", "", "wheat Triticum"]) + let v = native_list_append(v, ["vinr", "noun", "vinir", "vinar", "vin", "", "friend"]) + let v = native_list_append(v, ["viðr", "noun", "viðir", "viðar", "viði", "", "a tree"]) + let v = native_list_append(v, ["niðr", "noun", "niðjar", "niðs", "nið", "", "kinsman relative"]) + let v = native_list_append(v, ["sær", "noun", "sævar", "sævar", "sævi", "", "the sea ocean"]) + let v = native_list_append(v, ["grams", "noun", "grams", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["fótr", "noun", "fǿtr", "fótar", "fǿti", "", "a foot"]) + let v = native_list_append(v, ["hana", "noun", "hana", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["bringa", "noun", "bringur", "bringu", "bringu", "", "chest brisket"]) + let v = native_list_append(v, ["eir", "noun", "eirin", "eirs", "eiri", "", "brass copper"]) + let v = native_list_append(v, ["þistill", "noun", "þistlar", "þistils", "þistli", "", "thistle"]) + let v = native_list_append(v, ["karlar", "noun", "karlar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["hás", "noun", "hás", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["milti", "noun", "miltin", "miltis", "miltinu", "", "spleen"]) + let v = native_list_append(v, ["dags", "noun", "dags", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["há", "noun", "hár", "hár", "hánni", "", "aftergrass"]) + let v = native_list_append(v, ["reykr", "noun", "reykir", "reykjar", "reyk", "", "smoke"]) + let v = native_list_append(v, ["leka", "noun", "leka", "", "", "", "inflection of leki"]) + let v = native_list_append(v, ["múgr", "noun", "múgr", "", "", "", "mass"]) + let v = native_list_append(v, ["kál", "noun", "kál", "káls", "káli", "", "cabbage kale"]) + let v = native_list_append(v, ["máni", "noun", "mánar", "mána", "mána", "", "the moon"]) + let v = native_list_append(v, ["barmr", "noun", "barmr", "", "", "", "rim"]) + let v = native_list_append(v, ["blettr", "noun", "blettr", "", "", "", "stain"]) + let v = native_list_append(v, ["bukkr", "noun", "bukkr", "", "", "", "buck male deer"]) + let v = native_list_append(v, ["dalr", "noun", "dalir", "dals", "dali", "", "dale valley"]) + let v = native_list_append(v, ["diskr", "noun", "diskr", "", "", "", "plate"]) + let v = native_list_append(v, ["dómr", "noun", "dómar", "dóms", "dómi", "", "judgement"]) + let v = native_list_append(v, ["draugr", "noun", "draugar", "draugs", "draugi", "", "based on descendants"]) + let v = native_list_append(v, ["drengr", "noun", "drengir", "drengs", "dreng", "", "a valiant gallant"]) + let v = native_list_append(v, ["eitr", "noun", "eitrin", "eitrs", "eitri", "", "atter venom pus"]) + let v = native_list_append(v, ["eldr", "noun", "eldar", "elds", "eldi", "", "fire"]) + let v = native_list_append(v, ["fingr", "noun", "fingrnir", "fingrar", "fingri", "", "finger"]) + let v = native_list_append(v, ["flokkr", "noun", "flokkar", "flokks", "flokki", "", "flock"]) + let v = native_list_append(v, ["fóðr", "noun", "fóðr", "", "", "", "fodder"]) + let v = native_list_append(v, ["froskr", "noun", "froskr", "", "", "", "frog"]) + let v = native_list_append(v, ["faðmr", "noun", "faðmr", "", "", "", "embrace"]) + let v = native_list_append(v, ["fjǫðr", "noun", "fjaðrar", "fjaðrar", "fjǫðrinni", "", "feather"]) + let v = native_list_append(v, ["fjǫrðr", "noun", "firðir", "fjarðar", "firði", "", "firth fjord"]) + let v = native_list_append(v, ["fjǫturr", "noun", "fjǫtrar", "fjǫturs", "fjǫtri", "", "fetter"]) + let v = native_list_append(v, ["alfr", "noun", "alfar", "alfs", "alfi", "", "elf"]) + let v = native_list_append(v, ["hagi", "noun", "hagar", "haga", "haga", "", "pasture field for"]) + let v = native_list_append(v, ["Alvíssmál", "noun", "Alvíssmál", "Alvíssmála", "Alvíssmálum", "", "the Speeches of"]) + let v = native_list_append(v, ["varg", "noun", "varg", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["halla", "noun", "halla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["branda", "noun", "branda", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["heðinn", "noun", "heðinn", "", "", "", "a short garment"]) + let v = native_list_append(v, ["akka", "noun", "ǫkkur", "ǫkku", "ǫkku", "", "arrow"]) + let v = native_list_append(v, ["dǫrruðr", "noun", "dǫrruðr", "", "", "", "spear-fighter"]) + let v = native_list_append(v, ["Dǫrruðr", "noun", "Dǫrruðr", "", "", "", "spear-fighter heiti for"]) + let v = native_list_append(v, ["Báleygr", "noun", "Báleygr", "", "", "", "the one with"]) + let v = native_list_append(v, ["Biflindi", "noun", "Biflindi", "", "", "", "name of Odin"]) + let v = native_list_append(v, ["Bileygr", "noun", "Bileygr", "", "", "", "the one who"]) + let v = native_list_append(v, ["Bǫlverkr", "noun", "Bǫlverkr", "", "", "", "misfortune-worker a pseudonym"]) + let v = native_list_append(v, ["Eylúðr", "noun", "Eylúðr", "", "", "", "the one that"]) + let v = native_list_append(v, ["Tveggi", "noun", "Tveggi", "Tveggja", "Tveggja", "", "twofold double one"]) + let v = native_list_append(v, ["dura", "noun", "dura", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["vǫlva", "noun", "vǫlur", "vǫlu", "vǫlu", "", "völva prophetess seeress"]) + let v = native_list_append(v, ["vǫlr", "noun", "velir", "valar", "veli", "", "a rounded staff"]) + let v = native_list_append(v, ["Þrymskviða", "noun", "Þrymskviða", "", "", "", "Þrymskviða"]) + let v = native_list_append(v, ["kaka", "noun", "kǫkur", "kǫku", "kǫku", "", "cake"]) + let v = native_list_append(v, ["gaman", "noun", "gaman", "gamans", "gamni", "", "fun merriment enjoyment"]) + let v = native_list_append(v, ["ái", "noun", "ár", "á", "á", "", "great-grandfather"]) + let v = native_list_append(v, ["vang", "noun", "vang", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["slefa", "noun", "slefur", "slefu", "slefu", "", "slaver"]) + let v = native_list_append(v, ["vitrum", "noun", "vitrum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["bó", "noun", "bó", "", "", "", "dwelling"]) + let v = native_list_append(v, ["tjara", "noun", "tjǫrur", "tjǫru", "tjǫru", "", "tar"]) + let v = native_list_append(v, ["tigr", "noun", "tigir", "tigar", "tigi", "", "a group of"]) + let v = native_list_append(v, ["óðinsdagr", "noun", "óðinsdagr", "", "", "", "Wednesday"]) + let v = native_list_append(v, ["þórsdagr", "noun", "þórsdagar", "þórsdags", "þórsdegi", "", "Thursday"]) + let v = native_list_append(v, ["frjádagr", "noun", "frjádagr", "", "", "", "Friday"]) + let v = native_list_append(v, ["laugardagr", "noun", "laugardagr", "", "", "", "Saturday"]) + let v = native_list_append(v, ["sunnudagr", "noun", "sunnudagr", "", "", "", "Sunday"]) + let v = native_list_append(v, ["andi", "noun", "andar", "anda", "anda", "", "breath"]) + let v = native_list_append(v, ["vind", "noun", "vind", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["duna", "noun", "dunur", "dunu", "dunu", "", "a rushing thundering"]) + let v = native_list_append(v, ["salta", "noun", "salta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["saltara", "noun", "saltara", "", "", "", "inflection of saltari"]) + let v = native_list_append(v, ["ám", "noun", "ám", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vág", "noun", "vág", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["fundir", "noun", "fundir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["engill", "noun", "englar", "engils", "engli", "", "angel"]) + let v = native_list_append(v, ["holts", "noun", "holts", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["gaps", "noun", "gaps", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["skips", "noun", "skips", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hunda", "noun", "hunda", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["vallar", "noun", "vallar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brands", "noun", "brands", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["salar", "noun", "salar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["presta", "noun", "presta", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["tapan", "noun", "tapanir", "tapanar", "tǫpun", "", "loss"]) + let v = native_list_append(v, ["durum", "noun", "durum", "", "", "", "dative indefinite of"]) + let v = native_list_append(v, ["sels", "noun", "sels", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Inga", "noun", "Inga", "Ingu", "", "", "a female given"]) + let v = native_list_append(v, ["pá", "noun", "pá", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["heili", "noun", "heili", "", "", "", "brain"]) + let v = native_list_append(v, ["spá", "noun", "spár", "spár", "spánni", "", "a prophecy"]) + let v = native_list_append(v, ["búfé", "noun", "búfé", "búfjár", "búfénu", "", "livestock especially milch"]) + let v = native_list_append(v, ["barr", "noun", "barr", "", "", "", "acicular leaves needles"]) + let v = native_list_append(v, ["ægis", "noun", "ægis", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["sker", "noun", "skerja", "skers", "skeri", "", "rock in the"]) + let v = native_list_append(v, ["vini", "noun", "vini", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["kráka", "noun", "krákur", "kráku", "", "", "crow"]) + let v = native_list_append(v, ["sali", "noun", "sali", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["heit", "noun", "heitin", "heits", "heiti", "", "promise vow"]) + let v = native_list_append(v, ["munni", "noun", "munnar", "munna", "munna", "", "mouth opening"]) + let v = native_list_append(v, ["risi", "noun", "risar", "risa", "", "", "a giant"]) + let v = native_list_append(v, ["gá", "noun", "gár", "gár", "gánni", "", "barking"]) + let v = native_list_append(v, ["hái", "noun", "hái", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["lá", "noun", "lár", "lár", "láinni", "", "the line of"]) + let v = native_list_append(v, ["má", "noun", "má", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["nái", "noun", "nái", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["pái", "noun", "pár", "pá", "pá", "", "peacock"]) + let v = native_list_append(v, ["rán", "noun", "rǫ́n", "ráns", "ráni", "", "robbery theft"]) + let v = native_list_append(v, ["rún", "noun", "rúnar", "rúnar", "rúninni", "", "secret"]) + let v = native_list_append(v, ["sú", "noun", "sú", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["tún", "noun", "túnin", "túns", "túni", "", "a hedged plot"]) + let v = native_list_append(v, ["fors", "noun", "forsar", "forsins", "forsi", "", "a waterfall"]) + let v = native_list_append(v, ["jór", "noun", "jóar", "jós", "jói", "", "horse stallion"]) + let v = native_list_append(v, ["svili", "noun", "svili", "", "", "", "brother-in-law"]) + let v = native_list_append(v, ["Lundúnir", "noun", "Lundúnir", "", "", "", "London the capital"]) + let v = native_list_append(v, ["Uppsalir", "noun", "Uppsalir", "Uppsala", "Uppsǫlum", "", "Uppsala a city"]) + let v = native_list_append(v, ["kló", "noun", "klœr", "klóar", "klóinni", "", "claw talon"]) + let v = native_list_append(v, ["hræ", "noun", "hræin", "hræs", "hrævi", "", "dead body corpse"]) + let v = native_list_append(v, ["Jótland", "noun", "Jótland", "", "", "", "Jutland a cultural"]) + let v = native_list_append(v, ["Færeyjar", "noun", "Færeyjarnar", "Færeyja", "Færeyjum", "", "an archipelago and"]) + let v = native_list_append(v, ["Þór", "noun", "Þór", "", "", "", "accusative of Þórr"]) + let v = native_list_append(v, ["fœti", "noun", "fœti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["salti", "noun", "salti", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["barns", "noun", "barns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["harms", "noun", "harms", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vangs", "noun", "vangs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["león", "noun", "leónir", "leóns", "leóninum", "", "lion"]) + let v = native_list_append(v, ["syll", "noun", "syllr", "syllar", "syllinni", "", "sill"]) + let v = native_list_append(v, ["berging", "noun", "bergingar", "bergingar", "bergingu", "", "taste tasting"]) + let v = native_list_append(v, ["beinir", "noun", "beinar", "beinis", "beini", "", "help benefit"]) + let v = native_list_append(v, ["blý", "noun", "blý", "", "", "", "lead metal"]) + let v = native_list_append(v, ["bassi", "noun", "bassar", "bassa", "bassa", "", "bear"]) + let v = native_list_append(v, ["stríð", "noun", "stríðin", "stríðs", "stríði", "", "distress grief affliction"]) + let v = native_list_append(v, ["krókr", "noun", "krókr", "", "", "", "hook"]) + let v = native_list_append(v, ["mang", "noun", "mǫng", "mangs", "mangi", "", "barter peddling"]) + let v = native_list_append(v, ["vindr", "noun", "vindar", "vinds", "vindi", "", "wind"]) + let v = native_list_append(v, ["Ægir", "noun", "Ægir", "", "", "", "Ægir king of"]) + let v = native_list_append(v, ["jǫtunn", "noun", "jǫtnar", "jǫtuns", "jǫtni", "", "a jotun ettin"]) + let v = native_list_append(v, ["jǫtnar", "noun", "jǫtnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["siðr", "noun", "siðir", "siðar", "siði", "", "a custom a"]) + let v = native_list_append(v, ["kili", "noun", "kili", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tagli", "noun", "tagli", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["Grikkland", "noun", "Grikkland", "", "", "", "Byzantium"]) + let v = native_list_append(v, ["alin", "noun", "alnar", "alnar", "alininni", "", "alternative form of"]) + let v = native_list_append(v, ["belli", "noun", "belli", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["safi", "noun", "safar", "safa", "safa", "", "sap of trees"]) + let v = native_list_append(v, ["Áland", "noun", "Áland", "", "", "", "Åland"]) + let v = native_list_append(v, ["Ella", "noun", "Ella", "Ellu", "Ellu", "", "a male given"]) + let v = native_list_append(v, ["hóra", "noun", "hórur", "hóru", "hóru", "", "whore harlot"]) + let v = native_list_append(v, ["eldar", "noun", "eldar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["barka", "noun", "barka", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["morð", "noun", "morðin", "morðs", "morði", "", "murder"]) + let v = native_list_append(v, ["brúnn", "noun", "brúnar", "brúns", "brúni", "", "a black horse"]) + let v = native_list_append(v, ["enni", "noun", "ennin", "ennis", "enninu", "", "forehead"]) + let v = native_list_append(v, ["dreki", "noun", "dreki", "", "", "", "dragon"]) + let v = native_list_append(v, ["hani", "noun", "hanar", "hana", "hana", "", "a cock rooster"]) + let v = native_list_append(v, ["þorsti", "noun", "þorstar", "þorsta", "þorsta", "", "thirst"]) + let v = native_list_append(v, ["Gunnar", "noun", "Gunnar", "", "", "", "accusative of Gunnarr"]) + let v = native_list_append(v, ["fiska", "noun", "fiska", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["jarða", "noun", "jarða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["laga", "noun", "lǫgur", "lǫgu", "lǫgu", "", "a meeting planned"]) + let v = native_list_append(v, ["lýða", "noun", "lýða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["minna", "noun", "minna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["munna", "noun", "munna", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["reiða", "noun", "reiður", "reiðu", "reiðu", "", "attendance service"]) + let v = native_list_append(v, ["stíga", "noun", "stíga", "", "", "", "inflection of stígr"]) + let v = native_list_append(v, ["vága", "noun", "vága", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["vísa", "noun", "vísur", "vísu", "vísu", "", "verse strophe stanza"]) + let v = native_list_append(v, ["leiga", "noun", "leiga", "leigu", "leigu", "", "hire rent"]) + let v = native_list_append(v, ["meina", "noun", "meina", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["æða", "noun", "æða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["súla", "noun", "súlur", "súlu", "súlu", "", "pillar column"]) + let v = native_list_append(v, ["genta", "noun", "gentur", "gentu", "gentu", "", "girl lass"]) + let v = native_list_append(v, ["frændi", "noun", "frændr", "frænda", "frænda", "", "a friend"]) + let v = native_list_append(v, ["amboð", "noun", "amboðin", "amboðs", "amboði", "", "agricultural implements"]) + let v = native_list_append(v, ["bakki", "noun", "bakkar", "bakka", "bakka", "", "bank of a"]) + let v = native_list_append(v, ["skald", "noun", "skǫld", "skalds", "skaldi", "", "poet skald"]) + let v = native_list_append(v, ["tól", "noun", "tólin", "tóla", "tólum", "", "tools instruments"]) + let v = native_list_append(v, ["dómari", "noun", "dómarar", "dómara", "dómara", "", "a judge one"]) + let v = native_list_append(v, ["lækni", "noun", "lækni", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["ketta", "noun", "kettur", "kettu", "kettu", "", "a female cat"]) + let v = native_list_append(v, ["tjúgu", "noun", "tjúgu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["yrki", "noun", "yrkin", "yrkis", "yrkinu", "", "work occupation"]) + let v = native_list_append(v, ["merki", "noun", "merkin", "merkis", "merkinu", "", "standard banner"]) + let v = native_list_append(v, ["steik", "noun", "steik", "", "", "", "roast"]) + let v = native_list_append(v, ["vík", "noun", "vík", "víkr", "", "", "a small bay"]) + let v = native_list_append(v, ["nátt", "noun", "nætr", "nætr", "náttinni", "", "night"]) + let v = native_list_append(v, ["gás", "noun", "gæss", "gásar", "gásinni", "", "goose"]) + let v = native_list_append(v, ["vǫxtr", "noun", "vextir", "vaxtar", "vexti", "", "growth increase"]) + let v = native_list_append(v, ["lykil", "noun", "lykil", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["kristni", "noun", "kristni", "kristninnar", "kristninni", "", "Christianity"]) + let v = native_list_append(v, ["benda", "noun", "bendur", "bendu", "bendu", "", "band tie"]) + let v = native_list_append(v, ["pína", "noun", "pínur", "pínu", "pínu", "", "torture punishment"]) + let v = native_list_append(v, ["heima", "noun", "heima", "", "", "", "house home"]) + let v = native_list_append(v, ["skál", "noun", "skál", "", "", "", "bowl"]) + let v = native_list_append(v, ["hæll", "noun", "hælar", "hæls", "hæli", "", "heel"]) + let v = native_list_append(v, ["móður", "noun", "móður", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["fiðla", "noun", "fiðlur", "fiðlu", "fiðlu", "", "fiddle"]) + let v = native_list_append(v, ["þræll", "noun", "þrælar", "þræls", "þræli", "", "slave thrall"]) + let v = native_list_append(v, ["ljósalfar", "noun", "ljósalfar", "", "", "", "the light elves"]) + let v = native_list_append(v, ["dǫkkalfar", "noun", "dǫkkalfar", "", "", "", "the dark elves"]) + let v = native_list_append(v, ["ára", "noun", "ára", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["slóð", "noun", "slóð", "", "", "", "trail track"]) + let v = native_list_append(v, ["kjóli", "noun", "kjóli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brandar", "noun", "brandar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["ættir", "noun", "ættir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["spjót", "noun", "spjótin", "spjóts", "spjóti", "", "spear lance"]) + let v = native_list_append(v, ["skerja", "noun", "skerja", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["kreppa", "noun", "kreppur", "kreppu", "kreppu", "", "strait scrape"]) + let v = native_list_append(v, ["morgin", "noun", "morgin", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["jarn", "noun", "jǫrn", "jarns", "jarni", "", "alternative form of"]) + let v = native_list_append(v, ["synd", "noun", "synd", "", "", "", "sin"]) + let v = native_list_append(v, ["Svartalfaheim", "noun", "Svartalfaheim", "", "", "", "the underground home"]) + let v = native_list_append(v, ["skipan", "noun", "skipanir", "skipanar", "skipaninni", "", "order arrangement"]) + let v = native_list_append(v, ["menning", "noun", "menningar", "menningar", "menningu", "", "breeding upbringing education"]) + let v = native_list_append(v, ["hagar", "noun", "hagar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["biskup", "noun", "biskupar", "biskups", "biskupi", "", "a bishop"]) + let v = native_list_append(v, ["enda", "noun", "enda", "", "", "", "inflection of endi"]) + let v = native_list_append(v, ["meginland", "noun", "meginlǫnd", "meginlands", "meginlandi", "", "mainland continent"]) + let v = native_list_append(v, ["svanr", "noun", "svanir", "svans", "svani", "", "swan Cygnus cygnus"]) + let v = native_list_append(v, ["stað", "noun", "stað", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Arni", "noun", "Arni", "Arna", "Arna", "", "a male given"]) + let v = native_list_append(v, ["Birgir", "noun", "Birgir", "Birgis", "Birgi", "", "a male given"]) + let v = native_list_append(v, ["Helgi", "noun", "Helgi", "Helga", "", "", "a male given"]) + let v = native_list_append(v, ["Sverri", "noun", "Sverri", "", "", "", "inflection of Sverrir"]) + let v = native_list_append(v, ["Kári", "noun", "Kári", "Kára", "Kára", "", "a male given"]) + let v = native_list_append(v, ["Rúni", "noun", "Rúni", "Rúna", "Rúna", "", "a male given"]) + let v = native_list_append(v, ["Bjarni", "noun", "Bjarni", "Bjarna", "", "", "a male given"]) + let v = native_list_append(v, ["Fróði", "noun", "Fróði", "Fróða", "Fróða", "", "a male given"]) + let v = native_list_append(v, ["igða", "noun", "igða", "", "", "", "kind of small"]) + let v = native_list_append(v, ["helviti", "noun", "helviti", "", "", "", "hell"]) + let v = native_list_append(v, ["lakana", "noun", "lakana", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["lunga", "noun", "lungu", "lungans", "lunganu", "", "lung"]) + let v = native_list_append(v, ["aldri", "noun", "aldri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["leggi", "noun", "leggi", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["skata", "noun", "skata", "", "", "", "thing with a"]) + let v = native_list_append(v, ["sessi", "noun", "sessi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hendi", "noun", "hendi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["logn", "noun", "lognin", "logns", "logni", "", "calm"]) + let v = native_list_append(v, ["fjaðrar", "noun", "fjaðrar", "", "", "", "inflection of fjǫðr"]) + let v = native_list_append(v, ["fyl", "noun", "fylin", "fyls", "fyli", "", "foal"]) + let v = native_list_append(v, ["bikar", "noun", "bikar", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["verum", "noun", "verum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["goði", "noun", "goðar", "goða", "goða", "", "godi invoker or"]) + let v = native_list_append(v, ["skák", "noun", "skákir", "skákar", "skákinni", "", "chess"]) + let v = native_list_append(v, ["riddari", "noun", "riddarar", "riddara", "riddara", "", "rider horseman"]) + let v = native_list_append(v, ["Jórvík", "noun", "Jórvík", "", "", "", "York a city"]) + let v = native_list_append(v, ["fíll", "noun", "fílar", "fíls", "fíli", "", "elephant Elephantidae"]) + let v = native_list_append(v, ["ljóð", "noun", "ljóð", "", "", "", "song musical poem"]) + let v = native_list_append(v, ["storma", "noun", "storma", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["manni", "noun", "manni", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["tarfr", "noun", "tarfar", "tarfs", "tarfi", "", "bull"]) + let v = native_list_append(v, ["aðal", "noun", "ǫðul", "aðals", "aðli", "", "nature inborn disposition"]) + let v = native_list_append(v, ["gedda", "noun", "geddur", "geddu", "geddu", "", "pike"]) + let v = native_list_append(v, ["rjúpa", "noun", "rjúpa", "", "", "", "ptarmigan"]) + let v = native_list_append(v, ["heiðni", "noun", "heiðni", "heiðninnar", "heiðninni", "", "paganism heathenry"]) + let v = native_list_append(v, ["lófi", "noun", "lófar", "lófa", "lófa", "", "the palm or"]) + let v = native_list_append(v, ["presti", "noun", "presti", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["vari", "noun", "varar", "vara", "vara", "", "wariness"]) + let v = native_list_append(v, ["hnakki", "noun", "hnakki", "", "", "", "nape of the"]) + let v = native_list_append(v, ["elfi", "noun", "elfi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["vetri", "noun", "vetri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["rass", "noun", "rassar", "rassins", "rassi", "", "anus posteriors"]) + let v = native_list_append(v, ["faxi", "noun", "faxi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["faxa", "noun", "faxa", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["vist", "noun", "vistir", "vistar", "vistinni", "", "a stay"]) + let v = native_list_append(v, ["latína", "noun", "latínur", "latínu", "latínu", "", "Latin language"]) + let v = native_list_append(v, ["feðgar", "noun", "feðgarnir", "feðga", "feðgum", "", "male generations father"]) + let v = native_list_append(v, ["hrafns", "noun", "hrafns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hrafnar", "noun", "hrafnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["regnbogi", "noun", "regnbogar", "regnboga", "regnboga", "", "rainbow"]) + let v = native_list_append(v, ["gulls", "noun", "gulls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["einir", "noun", "einar", "einis", "eini", "", "juniper"]) + let v = native_list_append(v, ["reki", "noun", "reki", "", "", "", "ruler chief"]) + let v = native_list_append(v, ["leiki", "noun", "leiki", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kú", "noun", "kú", "", "", "", "inflection of kýr"]) + let v = native_list_append(v, ["kúnni", "noun", "kúnni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["ána", "noun", "ána", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["ánni", "noun", "ánni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["dverg", "noun", "dverg", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["rosi", "noun", "rosi", "rosa", "rosa", "", "rain and storm"]) + let v = native_list_append(v, ["ón", "noun", "ónir", "ónar", "óninni", "", "hope expectation"]) + let v = native_list_append(v, ["víns", "noun", "víns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["spegill", "noun", "speglar", "spegils", "spegli", "", "mirror looking-glass /"]) + let v = native_list_append(v, ["fens", "noun", "fens", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["arna", "noun", "arna", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["þýðing", "noun", "þýðingar", "þýðingar", "þýðingu", "", "interpretation translation"]) + let v = native_list_append(v, ["víðir", "noun", "víðir", "víðis", "víði", "", "willow"]) + let v = native_list_append(v, ["fló", "noun", "flœr", "flóar", "flónni", "", "layer stratum"]) + let v = native_list_append(v, ["oddi", "noun", "oddar", "odda", "odda", "", "A small peninsula"]) + let v = native_list_append(v, ["ýsa", "noun", "ýsur", "ýsu", "ýsu", "", "haddock"]) + let v = native_list_append(v, ["ósk", "noun", "óskar", "óskar", "óskinni", "", "wish"]) + let v = native_list_append(v, ["spíra", "noun", "spírur", "spíru", "spíru", "", "tube"]) + let v = native_list_append(v, ["vápn", "noun", "vápnin", "vápns", "vápni", "", "weapon"]) + let v = native_list_append(v, ["vali", "noun", "vali", "", "", "", "inflection of valr"]) + let v = native_list_append(v, ["leikari", "noun", "leikarar", "leikara", "leikara", "", "player jester"]) + let v = native_list_append(v, ["brynja", "noun", "brynjur", "brynju", "brynju", "", "coat of mail"]) + let v = native_list_append(v, ["hallr", "noun", "hallar", "halls", "halli", "", "slope hill"]) + let v = native_list_append(v, ["hildr", "noun", "hildar", "hildar", "hildi", "", "battle"]) + let v = native_list_append(v, ["heiðr", "noun", "heiðrar", "heiðrs", "heiðri", "", "honour worth"]) + let v = native_list_append(v, ["sigr", "noun", "sigrar", "sigrs", "", "", "victory"]) + let v = native_list_append(v, ["snerra", "noun", "snerra", "", "", "", "attack onslaught"]) + let v = native_list_append(v, ["verr", "noun", "verar", "vers", "veri", "", "warrior"]) + let v = native_list_append(v, ["valr", "noun", "valr", "vals", "vali", "", "the dead slain"]) + let v = native_list_append(v, ["blaðra", "noun", "blǫðrur", "blǫðru", "blǫðru", "", "bladder"]) + let v = native_list_append(v, ["hellir", "noun", "hellar", "hellis", "helli", "", "cave cavern"]) + let v = native_list_append(v, ["fífill", "noun", "fíflar", "fífils", "fífli", "", "dandelion"]) + let v = native_list_append(v, ["brúðgumi", "noun", "brúðgumi", "", "", "", "bridegroom"]) + let v = native_list_append(v, ["flóð", "noun", "flóðin", "flóðs", "flóði", "", "a flood inundation"]) + let v = native_list_append(v, ["skrælingi", "noun", "skrælingar", "skrælinga", "skrælinga", "", "a native of"]) + let v = native_list_append(v, ["konu", "noun", "konu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["harma", "noun", "harma", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hams", "noun", "hams", "", "", "", "snakeskin"]) + let v = native_list_append(v, ["vina", "noun", "vinur", "vinu", "vinu", "", "female friend"]) + let v = native_list_append(v, ["deig", "noun", "deigin", "deigs", "deigi", "", "dough"]) + let v = native_list_append(v, ["þyrnir", "noun", "þyrnar", "þyrnis", "þyrni", "", "thorn = þorn"]) + let v = native_list_append(v, ["burs", "noun", "burs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["reik", "noun", "reik", "reikar", "", "", "parting of the"]) + let v = native_list_append(v, ["Óðin", "noun", "Óðin", "", "", "", "accusative of Óðinn"]) + let v = native_list_append(v, ["vasi", "noun", "vasi", "", "", "", "sheaf"]) + let v = native_list_append(v, ["hugi", "noun", "hugar", "huga", "huga", "", "mind"]) + let v = native_list_append(v, ["heilsan", "noun", "heilsanir", "heilsanar", "heilsaninni", "", "a salutation a"]) + let v = native_list_append(v, ["kvennkyn", "noun", "kvennkynin", "kvennkyns", "kvennkyni", "", "the female sex"]) + let v = native_list_append(v, ["hánum", "noun", "hánum", "", "", "", "definite dative singular/plural"]) + let v = native_list_append(v, ["staða", "noun", "stǫður", "stǫðu", "stǫðu", "", "standing"]) + let v = native_list_append(v, ["ból", "noun", "bólin", "bóls", "bóli", "", "dwelling abode"]) + let v = native_list_append(v, ["nefna", "noun", "nefnur", "nefnu", "nefnu", "", "a naming"]) + let v = native_list_append(v, ["gildi", "noun", "gildin", "gildis", "gildinu", "", "payment tribute"]) + let v = native_list_append(v, ["fylki", "noun", "fylkin", "fylkis", "fylkinu", "", "district county shire"]) + let v = native_list_append(v, ["Svein", "noun", "Svein", "", "", "", "accusative of Sveinn"]) + let v = native_list_append(v, ["altari", "noun", "altari", "altaris", "", "", "altar"]) + let v = native_list_append(v, ["sólar", "noun", "sólar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["teini", "noun", "teini", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["harmi", "noun", "harmi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["akarn", "noun", "ǫkurn", "akarns", "akarni", "", "acorn"]) + let v = native_list_append(v, ["hrókr", "noun", "hrókr", "", "", "", "rook Corvus frugilegus"]) + let v = native_list_append(v, ["hátt", "noun", "hátt", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["nýra", "noun", "nýru", "nýrans", "nýranu", "", "kidney"]) + let v = native_list_append(v, ["eining", "noun", "einingar", "einingar", "einingu", "", "unity"]) + let v = native_list_append(v, ["bǿr", "noun", "bǿir", "bǿjar", "bǿ", "", "farmhouse farmstead"]) + let v = native_list_append(v, ["gráða", "noun", "gráður", "gráðu", "gráðu", "", "step degree"]) + let v = native_list_append(v, ["hóf", "noun", "hófin", "hófs", "hófi", "", "moderation measure"]) + let v = native_list_append(v, ["varða", "noun", "varða", "", "", "", "guard station with"]) + let v = native_list_append(v, ["lilja", "noun", "liljur", "lilju", "lilju", "", "lily"]) + let v = native_list_append(v, ["minning", "noun", "minningar", "minningar", "minningu", "", "memory recollection remembrance"]) + let v = native_list_append(v, ["geil", "noun", "geilar", "geilar", "geilinni", "", "narrow glen lane"]) + let v = native_list_append(v, ["fita", "noun", "fitur", "fitu", "fitu", "", "fat grease"]) + let v = native_list_append(v, ["taug", "noun", "taugar", "taugar", "tauginni", "", "string rope"]) + let v = native_list_append(v, ["reim", "noun", "reimar", "reimar", "reiminni", "", "a lash thong"]) + let v = native_list_append(v, ["soppa", "noun", "soppur", "soppu", "soppu", "", "soup"]) + let v = native_list_append(v, ["vín", "noun", "vínin", "víns", "víni", "", "wine"]) + let v = native_list_append(v, ["eigi", "noun", "eigar", "eiga", "eiga", "", "possession"]) + let v = native_list_append(v, ["alka", "noun", "ǫlkur", "ǫlku", "ǫlku", "", "auk"]) + let v = native_list_append(v, ["sumri", "noun", "sumri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["abbadissa", "noun", "ōn", "abbadissu", "abbadissu", "", "abbess"]) + let v = native_list_append(v, ["líð", "noun", "líð", "líðs", "líði", "", "strong drink alcohol"]) + let v = native_list_append(v, ["tigu", "noun", "tigu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["jarðar", "noun", "jarðar", "", "", "", "inflection of jǫrð"]) + let v = native_list_append(v, ["helli", "noun", "helli", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Jari", "noun", "Jari", "Jara", "", "", "name of a"]) + let v = native_list_append(v, ["Þorsteinn", "noun", "Þorsteinn", "", "", "", "a male given"]) + let v = native_list_append(v, ["þrár", "noun", "þrár", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["Helga", "noun", "Helga", "Helgu", "", "", "a female given"]) + let v = native_list_append(v, ["bardagi", "noun", "bardagar", "bardaga", "bardaga", "", "beating thrashing"]) + let v = native_list_append(v, ["funi", "noun", "funi", "funa", "funa", "", "fire"]) + let v = native_list_append(v, ["Þorbjǫrn", "noun", "Þorbjǫrn", "Þorbjarnar", "Þorbirni", "", "a male given"]) + let v = native_list_append(v, ["Rannveig", "noun", "Rannveig", "Rannveigar", "", "", "a female given"]) + let v = native_list_append(v, ["orðstír", "noun", "orðstír", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hland", "noun", "hlǫnd", "hlands", "hlandi", "", "urine"]) + let v = native_list_append(v, ["jaka", "noun", "jaka", "", "", "", "inflection of jaki"]) + let v = native_list_append(v, ["tenn", "noun", "tenn", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["sýr", "noun", "sýrnar", "sýrinnar", "sú", "", "sow female pig"]) + let v = native_list_append(v, ["nafni", "noun", "nafnar", "nafna", "nafna", "", "namesake"]) + let v = native_list_append(v, ["Ásbjǫrn", "noun", "Ásbjǫrn", "Ásbjarnar", "Ásbirni", "", "a male given"]) + let v = native_list_append(v, ["aurana", "noun", "aurana", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["lekana", "noun", "lekana", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["verki", "noun", "verki", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["litr", "noun", "litir", "litar", "liti", "", "color"]) + let v = native_list_append(v, ["barki", "noun", "barkar", "barka", "barka", "", "windpipe weasand"]) + let v = native_list_append(v, ["bára", "noun", "bárur", "báru", "báru", "", "wave billow"]) + let v = native_list_append(v, ["Áskell", "noun", "Áskell", "", "", "", "a male given"]) + let v = native_list_append(v, ["jafna", "noun", "jǫfnur", "jǫfnu", "jǫfnu", "", "level ground"]) + let v = native_list_append(v, ["kvika", "noun", "kvikur", "kviku", "kviku", "", "the quick under"]) + let v = native_list_append(v, ["þruma", "noun", "þruma", "", "", "", "clap of thunder"]) + let v = native_list_append(v, ["þerra", "noun", "þerrur", "þerru", "þerru", "", "a towel"]) + let v = native_list_append(v, ["skylda", "noun", "skylda", "", "", "", "duty obligation"]) + let v = native_list_append(v, ["aski", "noun", "aski", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["skaði", "noun", "skaðar", "skaða", "skaða", "", "harm damage"]) + let v = native_list_append(v, ["sef", "noun", "sef", "sefs", "", "", "sedge rush"]) + let v = native_list_append(v, ["padda", "noun", "pǫddur", "pǫddu", "pǫddu", "", "toad"]) + let v = native_list_append(v, ["brandi", "noun", "brandi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["dikt", "noun", "dikt", "", "", "", "a poem"]) + let v = native_list_append(v, ["kaun", "noun", "kaun", "", "", "", "boil abscess"]) + let v = native_list_append(v, ["mirra", "noun", "mirra", "mirru", "mirru", "", "myrrh"]) + let v = native_list_append(v, ["sopp", "noun", "sopp", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["konungr", "noun", "konungar", "konungs", "konungi", "", "a king"]) + let v = native_list_append(v, ["ulfr", "noun", "ulfar", "ulfs", "ulfi", "", "wolf"]) + let v = native_list_append(v, ["knífr", "noun", "knífar", "knífs", "knífi", "", "knife"]) + let v = native_list_append(v, ["vitleysa", "noun", "vitleysur", "vitleysu", "vitleysu", "", "madness"]) + let v = native_list_append(v, ["hindra", "noun", "hindra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kosning", "noun", "kosningar", "kosningar", "kosningu", "", "election"]) + let v = native_list_append(v, ["borna", "noun", "borna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["soll", "noun", "soll", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["vamma", "noun", "vamma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sessum", "noun", "sessum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ker", "noun", "ker", "", "", "", "tub vessel goblet"]) + let v = native_list_append(v, ["ættingi", "noun", "ættingjar", "ættingja", "ættingja", "", "kinsman"]) + let v = native_list_append(v, ["seggi", "noun", "seggi", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["dyrr", "noun", "dyrnar", "dura", "durum", "", "door doorway"]) + let v = native_list_append(v, ["kuldi", "noun", "kuldar", "kulda", "kulda", "", "cold"]) + let v = native_list_append(v, ["nepja", "noun", "nepja", "", "", "", "chilliness bitter cold"]) + let v = native_list_append(v, ["segg", "noun", "segg", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["róg", "noun", "rógin", "rógs", "rógi", "", "strife slander"]) + let v = native_list_append(v, ["flís", "noun", "flísir", "flísar", "flísinni", "", "splinter chip of"]) + let v = native_list_append(v, ["hafrar", "noun", "hafrar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["bendi", "noun", "bend", "bendis", "bendinu", "", "cord"]) + let v = native_list_append(v, ["nóta", "noun", "nóta", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["aumingi", "noun", "aumingjar", "aumingja", "aumingja", "", "miserable person wretch"]) + let v = native_list_append(v, ["spjall", "noun", "spjǫll", "spjalls", "spjalli", "", "saying tale"]) + let v = native_list_append(v, ["laka", "noun", "laka", "", "", "", "inflection of laki"]) + let v = native_list_append(v, ["kyndilsmessa", "noun", "kyndilsmessur", "kyndilsmessu", "kyndilsmessu", "", "Candlemas February 2nd"]) + let v = native_list_append(v, ["Egil", "noun", "Egil", "", "", "", "accusative of Egill"]) + let v = native_list_append(v, ["arinn", "noun", "arnar", "arins", "arni", "", "a hearth a"]) + let v = native_list_append(v, ["dúfa", "noun", "dúfur", "dúfu", "dúfu", "", "dove pigeon"]) + let v = native_list_append(v, ["kjǫlr", "noun", "kilir", "kjalar", "kili", "", "keel"]) + let v = native_list_append(v, ["rist", "noun", "ristr", "ristar", "", "", "instep of the"]) + let v = native_list_append(v, ["menninir", "noun", "menninir", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["virða", "noun", "virða", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["hverfa", "noun", "hverfa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kyrkja", "noun", "kyrkjur", "kyrkju", "kyrkju", "", "alternative form of"]) + let v = native_list_append(v, ["geirfugl", "noun", "geirfuglar", "geirfugls", "geirfugli", "", "great auk"]) + let v = native_list_append(v, ["skref", "noun", "skrefin", "skrefs", "skrefi", "", "pace"]) + let v = native_list_append(v, ["kambr", "noun", "kambar", "kambs", "kambi", "", "comb"]) + let v = native_list_append(v, ["Yngvi", "noun", "Yngvi", "Yngva", "Yngva", "", "Yngvi the original"]) + let v = native_list_append(v, ["bóg", "noun", "bóg", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["bǫrkr", "noun", "berkir", "barkar", "berki", "", "bark of a"]) + let v = native_list_append(v, ["jaxl", "noun", "jaxlar", "jaxls", "jaxli", "", "molar"]) + let v = native_list_append(v, ["blindi", "noun", "blindi", "blindinnar", "blindinni", "", "blindness"]) + let v = native_list_append(v, ["afr", "noun", "afr", "", "", "", "some kind of"]) + let v = native_list_append(v, ["nafar", "noun", "nafar", "", "", "", "inflection of nǫf"]) + let v = native_list_append(v, ["brunn", "noun", "brunn", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["tign", "noun", "tign", "", "", "", "state highness honour"]) + let v = native_list_append(v, ["skjǫldr", "noun", "skildir", "skjaldar", "skildi", "", "shield"]) + let v = native_list_append(v, ["stafa", "noun", "stafa", "", "", "", "genitive/accusative plural of"]) + let v = native_list_append(v, ["valdi", "noun", "valdi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["frami", "noun", "framar", "frama", "frama", "", "advancement"]) + let v = native_list_append(v, ["frama", "noun", "frama", "", "", "", "inflection of frami"]) + let v = native_list_append(v, ["sprek", "noun", "sprek", "", "", "", "an old rotting"]) + let v = native_list_append(v, ["teins", "noun", "teins", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["héla", "noun", "héla", "", "", "", "hoarfrost rime"]) + let v = native_list_append(v, ["síld", "noun", "síld", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eðla", "noun", "eðlur", "eðlu", "eðlu", "", "lizard"]) + let v = native_list_append(v, ["síður", "noun", "síður", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ári", "noun", "ári", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["árum", "noun", "árum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["árin", "noun", "árin", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["Íslands", "noun", "Íslands", "", "", "", "genitive of Ísland"]) + let v = native_list_append(v, ["Íslandi", "noun", "Íslandi", "", "", "", "dative of Ísland"]) + let v = native_list_append(v, ["langan", "noun", "langan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["liljan", "noun", "liljan", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["heiti", "noun", "heitin", "heitis", "heitinu", "", "name denomination"]) + let v = native_list_append(v, ["brýnn", "noun", "brýnn", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["sannan", "noun", "sannanir", "sannanar", "sannaninni", "", "assertation confirmation"]) + let v = native_list_append(v, ["seljan", "noun", "seljan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["sifjar", "noun", "sifjar", "", "", "", "a kinship an"]) + let v = native_list_append(v, ["ljá", "noun", "ljá", "ljár", "", "", "new-mown grass"]) + let v = native_list_append(v, ["raufnir", "noun", "raufnir", "", "", "", "sword literally ‘one"]) + let v = native_list_append(v, ["raup", "noun", "raup", "", "", "", "boasting bragging"]) + let v = native_list_append(v, ["landi", "noun", "landi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["móti", "noun", "móti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brók", "noun", "brœkr", "brókar", "", "", "pant-leg"]) + let v = native_list_append(v, ["Tryggvi", "noun", "Tryggvi", "", "", "", "a male given"]) + let v = native_list_append(v, ["bjǫrn", "noun", "birnir", "bjarnar", "birni", "", "bear animal"]) + let v = native_list_append(v, ["Bjǫrn", "noun", "Bjǫrn", "Bjarnar", "Birni", "", "a male given"]) + let v = native_list_append(v, ["Bjǫrgvin", "noun", "Bjǫrgvin", "Bjǫrgvinjar", "", "", "Bergen a city"]) + let v = native_list_append(v, ["hóll", "noun", "hólar", "hóls", "hóli", "", "hill hillock knoll"]) + let v = native_list_append(v, ["vá", "noun", "vá", "", "", "", "scathe accident"]) + let v = native_list_append(v, ["lagna", "noun", "lagna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["himna", "noun", "himna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["velli", "noun", "velli", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["vits", "noun", "vits", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["isti", "noun", "isti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Magnús", "noun", "Magnús", "Magnúss", "Magnúsi", "", "a male given"]) + let v = native_list_append(v, ["tívar", "noun", "tívar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["togan", "noun", "toganir", "toganar", "toganinni", "", "drawing pulling"]) + let v = native_list_append(v, ["holtit", "noun", "holtit", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["háttr", "noun", "hættir", "háttar", "hætti", "", "habit wont custom"]) + let v = native_list_append(v, ["helga", "noun", "helga", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["kveðja", "noun", "kveðjur", "kveðju", "kveðju", "", "a greeting welcome"]) + let v = native_list_append(v, ["fjör", "noun", "fjör", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["burar", "noun", "burar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kattarhali", "noun", "kattarhali", "", "", "", "a cats tail"]) + let v = native_list_append(v, ["Eilífr", "noun", "Eilífr", "Eilífs", "Eilífi", "", "a male given"]) + let v = native_list_append(v, ["þveit", "noun", "þveitar", "þveitar", "þveitinni", "", "a clearing"]) + let v = native_list_append(v, ["ðveit", "noun", "ðveit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Agmundr", "noun", "Agmundr", "", "", "", "a male given"]) + let v = native_list_append(v, ["angr", "noun", "angr", "angrs", "angri", "", "sorrow resentment distress"]) + let v = native_list_append(v, ["Óláfr", "noun", "Óláfr", "", "", "", "a male given"]) + let v = native_list_append(v, ["ikorni", "noun", "ikorni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["skapt", "noun", "skǫpt", "skapts", "skapti", "", "shaft handle"]) + let v = native_list_append(v, ["sætr", "noun", "sætr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ragna", "noun", "ragna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["ketill", "noun", "katlar", "ketils", "katli", "", "kettle cauldron"]) + let v = native_list_append(v, ["eyrr", "noun", "eyrar", "eyrar", "eyri", "", "a gravel bank"]) + let v = native_list_append(v, ["stubbr", "noun", "stubbr", "", "", "", "a tree stump"]) + let v = native_list_append(v, ["sáð", "noun", "sáðin", "sáðs", "sáði", "", "seed"]) + let v = native_list_append(v, ["alfar", "noun", "alfar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["féin", "noun", "féin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["Arna", "noun", "Arna", "", "", "", "oblique of Arni"]) + let v = native_list_append(v, ["holtin", "noun", "holtin", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["hadda", "noun", "hǫddur", "hǫddu", "hǫddu", "", "pot-hook pot-handle"]) + let v = native_list_append(v, ["vindu", "noun", "vindu", "", "", "", "indefinite oblique singular"]) + let v = native_list_append(v, ["vargr", "noun", "vargar", "vargs", "vargi", "", "evildoer outlaw"]) + let v = native_list_append(v, ["brjósk", "noun", "brjóskin", "brjósks", "brjóski", "", "cartilage"]) + let v = native_list_append(v, ["hreysi", "noun", "hreysi", "", "", "", "a cairn"]) + let v = native_list_append(v, ["grjót", "noun", "grjótin", "grjóts", "grjóti", "", "coarse stones rubble"]) + let v = native_list_append(v, ["hesli", "noun", "hesli", "", "", "", "hazel-wood"]) + let v = native_list_append(v, ["Sindri", "noun", "Sindri", "Sindra", "", "", "a male given"]) + let v = native_list_append(v, ["rimi", "noun", "rimar", "rima", "rima", "", "an elevated strip"]) + let v = native_list_append(v, ["bandi", "noun", "bandi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["rá", "noun", "rá", "", "", "", "deer"]) + let v = native_list_append(v, ["hárs", "noun", "hárs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["kolla", "noun", "kollur", "kollu", "", "", "hind cow"]) + let v = native_list_append(v, ["váð", "noun", "váðir", "váðar", "váðinni", "", "piece of cloth"]) + let v = native_list_append(v, ["már", "noun", "mávar", "más", "mávi", "", "seagull"]) + let v = native_list_append(v, ["dýrð", "noun", "dýrðir", "dýrðar", "dýrðinni", "", "glory"]) + let v = native_list_append(v, ["foka", "noun", "foka", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["lík", "noun", "lík", "", "", "", "a body"]) + let v = native_list_append(v, ["fok", "noun", "fokin", "foks", "foki", "", ""]) + let v = native_list_append(v, ["Ósló", "noun", "Ósló", "Óslóar", "", "", "Oslo a city"]) + let v = native_list_append(v, ["randa", "noun", "randa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hǿna", "noun", "hǿnur", "hǿnu", "hǿnu", "", "hen female of"]) + let v = native_list_append(v, ["harka", "noun", "harka", "", "", "", "hardness"]) + let v = native_list_append(v, ["grasi", "noun", "grasi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["furu", "noun", "furu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["anga", "noun", "anga", "", "", "", "oblique cases singular"]) + let v = native_list_append(v, ["Gizurr", "noun", "Gizurr", "", "", "", "a male given"]) + let v = native_list_append(v, ["íss", "noun", "ísar", "íssins", "ísi", "", "ice"]) + let v = native_list_append(v, ["stiga", "noun", "stiga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mistilteinn", "noun", "mistilteinar", "mistilteins", "mistilteini", "", "mistletoe"]) + let v = native_list_append(v, ["trefill", "noun", "treflar", "trefils", "trefli", "", "tatter rag"]) + let v = native_list_append(v, ["reyrr", "noun", "reyrar", "reyrs", "reyri", "", "reed"]) + let v = native_list_append(v, ["feigð", "noun", "feigðir", "feigðar", "feigðinni", "", "feyness approaching death"]) + let v = native_list_append(v, ["goð", "noun", "goðin", "goðs", "goði", "", "a god at"]) + let v = native_list_append(v, ["ormar", "noun", "ormar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ausa", "noun", "ausur", "ausu", "ausu", "", "a ladle"]) + let v = native_list_append(v, ["nót", "noun", "nœtr", "nótar", "nótinni", "", "a large net"]) + let v = native_list_append(v, ["Dóri", "noun", "Dóri", "Dóra", "", "", "name of a"]) + let v = native_list_append(v, ["mygla", "noun", "myglur", "myglu", "myglu", "", "mouldiness mustiness"]) + let v = native_list_append(v, ["rakka", "noun", "rakka", "", "", "", "inflection of rakki"]) + let v = native_list_append(v, ["laukr", "noun", "laukar", "lauks", "lauki", "", "leek garlic"]) + let v = native_list_append(v, ["jata", "noun", "jǫtur", "jǫtu", "jǫtu", "", "manger"]) + let v = native_list_append(v, ["bygg", "noun", "bygg", "", "", "", "barley Hordeum"]) + let v = native_list_append(v, ["tǫnn", "noun", "tenn", "tannar", "tǫnninni", "", "tooth"]) + let v = native_list_append(v, ["hvǫnn", "noun", "hvannir", "hvannar", "hvǫnninni", "", "angelica genus Angelica"]) + let v = native_list_append(v, ["mjǫðr", "noun", "mjǫðr", "mjaðar", "miði", "", "honey"]) + let v = native_list_append(v, ["embætti", "noun", "embætti", "embættis", "", "", "service office"]) + let v = native_list_append(v, ["geldingr", "noun", "geldingr", "", "", "", "wether castrated ram"]) + let v = native_list_append(v, ["sauðr", "noun", "sauðir", "sauðar", "sauð", "", "sheep Ovis"]) + let v = native_list_append(v, ["sǫngr", "noun", "sǫngvar", "sǫngs", "sǫngvi", "", "song"]) + let v = native_list_append(v, ["sǫngs", "noun", "sǫngs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["hjǫrr", "noun", "hjǫrvar", "hjǫrs", "hjǫrvi", "", "sword"]) + let v = native_list_append(v, ["hǫrr", "noun", "hǫrvar", "hǫrs", "hǫrvi", "", "linen"]) + let v = native_list_append(v, ["skeyti", "noun", "skeyti", "", "", "", "shaft missile"]) + let v = native_list_append(v, ["fjǫrr", "noun", "fjǫrvar", "fjǫrs", "fjǫrvi", "", "man"]) + let v = native_list_append(v, ["spǫrr", "noun", "spǫrvar", "spǫrs", "spǫrvi", "", "sparrow"]) + let v = native_list_append(v, ["Sigtryggr", "noun", "Sigtryggr", "Sigtryggs", "Sigtryggvi", "", "a male given"]) + let v = native_list_append(v, ["Níðhǫggr", "noun", "Níðhǫggr", "Níðhǫggs", "Níðhǫggvi", "", "a dragon who"]) + let v = native_list_append(v, ["bǫrr", "noun", "bǫrvar", "bǫrs", "bǫrvi", "", "man"]) + let v = native_list_append(v, ["mǫrr", "noun", "mǫrvar", "mǫrs", "mǫrvi", "", "fat tallow"]) + let v = native_list_append(v, ["kópr", "noun", "kópar", "kóps", "kópi", "", "a young seal"]) + let v = native_list_append(v, ["Þórr", "noun", "Þórr", "", "", "", "Thor god of"]) + let v = native_list_append(v, ["Vili", "noun", "Vili", "Vilja", "Vilja", "", "Vili one of"]) + let v = native_list_append(v, ["skipti", "noun", "skiptin", "skiptis", "skiptinu", "", "division distribution sharing"]) + let v = native_list_append(v, ["fró", "noun", "fró", "", "", "", "relief"]) + let v = native_list_append(v, ["strǫnd", "noun", "strendr", "strandar", "strǫndu", "", "rim border"]) + let v = native_list_append(v, ["Suðreyjar", "noun", "Suðreyjar", "", "", "", "the Hebrides Sodor"]) + let v = native_list_append(v, ["Orkneyjar", "noun", "Orkneyjarnar", "Orkneyja", "Orkneyjum", "", "the Orkney Islands"]) + let v = native_list_append(v, ["Vestmannaeyjar", "noun", "Vestmannaeyjar", "", "", "", "the Westman Islands"]) + let v = native_list_append(v, ["trjá", "noun", "trjá", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["háð", "noun", "háðin", "háðs", "háði", "", "scoffing mocking"]) + let v = native_list_append(v, ["bráð", "noun", "bráðir", "bráðar", "bráðinni", "", "meat raw flesh"]) + let v = native_list_append(v, ["gnastan", "noun", "gnastan", "", "", "", "a gnashing the"]) + let v = native_list_append(v, ["gnísting", "noun", "gnísting", "", "", "", "gnashing the act"]) + let v = native_list_append(v, ["gil", "noun", "gilin", "gils", "gili", "", "ravine gully"]) + let v = native_list_append(v, ["ábreiða", "noun", "ōn", "ábreiðu", "ábreiðu", "", "a bedspread"]) + let v = native_list_append(v, ["geirr", "noun", "geirar", "geirs", "geiri", "", "spear"]) + let v = native_list_append(v, ["trés", "noun", "trés", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["trog", "noun", "trogin", "trogs", "trogi", "", "trough"]) + let v = native_list_append(v, ["ergi", "noun", "ergi", "erginnar", "erginni", "", "the state of"]) + let v = native_list_append(v, ["súa", "noun", "súa", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["farri", "noun", "farrar", "farra", "farra", "", "bull"]) + let v = native_list_append(v, ["ím", "noun", "ímin", "íms", "ími", "", "dust ashes"]) + let v = native_list_append(v, ["berill", "noun", "berlar", "berils", "berli", "", "vessel barrel for"]) + let v = native_list_append(v, ["tóm", "noun", "tómin", "tóms", "tómi", "", "leisure"]) + let v = native_list_append(v, ["fræva", "noun", "fræva", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["stræti", "noun", "stræti", "", "", "", "street"]) + let v = native_list_append(v, ["hám", "noun", "hám", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["efs", "noun", "efs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hór", "noun", "hórin", "hórs", "hóri", "", "adultery"]) + let v = native_list_append(v, ["Áki", "noun", "Áki", "Áka", "", "", "a male given"]) + let v = native_list_append(v, ["Guðrún", "noun", "Guðrún", "", "", "", "a female given"]) + let v = native_list_append(v, ["þind", "noun", "þind", "", "", "", "diaphragm"]) + let v = native_list_append(v, ["sandar", "noun", "sandar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["kveld", "noun", "kveldin", "kvelds", "kveldi", "", "evening"]) + let v = native_list_append(v, ["tigna", "noun", "tigna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["laxar", "noun", "laxar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["laxa", "noun", "laxa", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["skaut", "noun", "skaut", "", "", "", "corner of a"]) + let v = native_list_append(v, ["skak", "noun", "skǫk", "skaks", "skaki", "", "scolding"]) + let v = native_list_append(v, ["gýgr", "noun", "gýgjar", "gýgjar", "gýgi", "", "giantess ogress"]) + let v = native_list_append(v, ["bergrisi", "noun", "bergrisar", "bergrisa", "", "", "a mountain giant"]) + let v = native_list_append(v, ["hrímþurs", "noun", "hrímþursar", "", "", "", "a frost giant"]) + let v = native_list_append(v, ["þurs", "noun", "þursar", "þursins", "þursi", "", "a giant ogre"]) + let v = native_list_append(v, ["íviðja", "noun", "íviðjur", "íviðju", "íviðju", "", "a word of"]) + let v = native_list_append(v, ["bergrisar", "noun", "bergrisar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hrímþursar", "noun", "hrímþursar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["risar", "noun", "risar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["þursar", "noun", "þursar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["íviðjur", "noun", "íviðjur", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["baug", "noun", "baug", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["nár", "noun", "nár", "nás", "", "", "corpse a dead"]) + let v = native_list_append(v, ["Óðinn", "noun", "Óðinn", "Óðins", "Óðni", "", "Odin"]) + let v = native_list_append(v, ["farra", "noun", "farra", "", "", "", "inflection of farri"]) + let v = native_list_append(v, ["Freyr", "noun", "Freyr", "Freys", "Frey", "", "Freyr a god"]) + let v = native_list_append(v, ["karli", "noun", "karli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["jarls", "noun", "jarls", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["jarki", "noun", "jarki", "jarka", "", "", "outside edge of"]) + let v = native_list_append(v, ["samar", "noun", "samar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["fogl", "noun", "foglar", "fogls", "fogli", "", "bird"]) + let v = native_list_append(v, ["skari", "noun", "skarar", "skara", "skara", "", "host troop"]) + let v = native_list_append(v, ["vell", "noun", "vellin", "vells", "velli", "", "gold"]) + let v = native_list_append(v, ["marr", "noun", "marar", "mars", "mari", "", "horse"]) + let v = native_list_append(v, ["fati", "noun", "fati", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["hests", "noun", "hests", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["speni", "noun", "spenar", "spena", "spena", "", "a dug of"]) + let v = native_list_append(v, ["stykki", "noun", "stykkin", "stykkis", "stykkinu", "", "piece chop"]) + let v = native_list_append(v, ["síma", "noun", "símu", "símans", "símanu", "", "a string cord"]) + let v = native_list_append(v, ["ǫrn", "noun", "ernir", "arnar", "erni", "", "eagle"]) + let v = native_list_append(v, ["mǫgr", "noun", "megir", "magar", "megi", "", "son boy youth"]) + let v = native_list_append(v, ["trjóna", "noun", "trjónur", "trjónu", "trjónu", "", "snout"]) + let v = native_list_append(v, ["selin", "noun", "selin", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["goti", "noun", "gotnar", "gota", "gota", "", "a Goth"]) + let v = native_list_append(v, ["systur", "noun", "systur", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["bryggja", "noun", "bryggjur", "bryggju", "bryggju", "", "pier gangway"]) + let v = native_list_append(v, ["þorri", "noun", "þorri", "", "", "", "a month of"]) + let v = native_list_append(v, ["hverr", "noun", "hverar", "hvers", "hveri", "", "cauldron boiler"]) + let v = native_list_append(v, ["féar", "noun", "féar", "", "", "", "inflection of fé"]) + let v = native_list_append(v, ["æðr", "noun", "æðar", "æðar", "æði", "", "vein"]) + let v = native_list_append(v, ["Egill", "noun", "Egill", "Egils", "Agli", "", "a male given"]) + let v = native_list_append(v, ["þjórr", "noun", "þjórar", "þjórs", "þjóri", "", "bull"]) + let v = native_list_append(v, ["stýri", "noun", "stýri", "", "", "", "rudder helm"]) + let v = native_list_append(v, ["hvísla", "noun", "hvísla", "hvíslu", "", "", "whisper"]) + let v = native_list_append(v, ["þváttr", "noun", "þvættir", "þváttar", "þvætti", "", "the act of"]) + let v = native_list_append(v, ["funa", "noun", "funa", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["eggjum", "noun", "eggjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eggjar", "noun", "eggjar", "", "", "", "inflection of egg"]) + let v = native_list_append(v, ["skor", "noun", "skorar", "skorar", "skorinni", "", "a score notch"]) + let v = native_list_append(v, ["tír", "noun", "tír", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["flugdreki", "noun", "flugdreki", "", "", "", "flying dragon"]) + let v = native_list_append(v, ["kunnusta", "noun", "kunnusta", "", "", "", "knowledge"]) + let v = native_list_append(v, ["máttr", "noun", "mættir", "máttar", "mátt", "", "might strength"]) + let v = native_list_append(v, ["megin", "noun", "megin", "megins", "megni", "", "might power strength"]) + let v = native_list_append(v, ["kið", "noun", "kiðin", "kiðs", "kiði", "", "a goatling kid"]) + let v = native_list_append(v, ["trana", "noun", "trǫnur", "trǫnu", "trǫnu", "", "a crane bird"]) + let v = native_list_append(v, ["Geirmundr", "noun", "Geirmundr", "", "", "", "a male given"]) + let v = native_list_append(v, ["lauk", "noun", "lauk", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["hý", "noun", "hý", "hýs", "", "", "plant down"]) + let v = native_list_append(v, ["Saxland", "noun", "Saxland", "Saxlands", "Saxlandi", "", "Saxony a historical"]) + let v = native_list_append(v, ["lær", "noun", "lærin", "lærs", "læri", "", "thigh"]) + let v = native_list_append(v, ["Danmǫrk", "noun", "Danmǫrk", "Danmerkr", "", "", "Denmark a country"]) + let v = native_list_append(v, ["hamingja", "noun", "hamingjur", "hamingju", "hamingju", "", "luck"]) + let v = native_list_append(v, ["tunglskin", "noun", "tunglskin", "", "", "", "moonlight"]) + let v = native_list_append(v, ["víf", "noun", "vífin", "vífs", "vífi", "", "woman"]) + let v = native_list_append(v, ["gaus", "noun", "gaus", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["blómstr", "noun", "blómstr", "", "", "", "flower"]) + let v = native_list_append(v, ["lauki", "noun", "lauki", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["lauks", "noun", "lauks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["beita", "noun", "beitur", "beitu", "beitu", "", "a bait"]) + let v = native_list_append(v, ["aurar", "noun", "aurar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["tygi", "noun", "tygi", "", "", "", "tool gear"]) + let v = native_list_append(v, ["vella", "noun", "vellur", "vellu", "vellu", "", "boiling heat ebullition"]) + let v = native_list_append(v, ["hvíld", "noun", "hvíldir", "hvíldar", "hvíldinni", "", "rest repose"]) + let v = native_list_append(v, ["sunnu", "noun", "sunnu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["stétt", "noun", "stéttir", "stéttar", "stéttinni", "", "pavement"]) + let v = native_list_append(v, ["hvirfill", "noun", "hvirflar", "hvirfils", "hvirfli", "", "circle ring"]) + let v = native_list_append(v, ["þjó", "noun", "þjóin", "þjós", "þjói", "", "thigh in plural"]) + let v = native_list_append(v, ["konung", "noun", "konung", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["stabbi", "noun", "stabbar", "stabba", "stabba", "", "alternative form of"]) + let v = native_list_append(v, ["ærinnar", "noun", "ærinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["rúnar", "noun", "rúnar", "", "", "", "inflection of rún"]) + let v = native_list_append(v, ["forsar", "noun", "forsar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["árinnar", "noun", "árinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["sonu", "noun", "sonu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["fitina", "noun", "fitina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["hverfi", "noun", "hverfin", "hverfis", "hverfinu", "", "cluster of farms"]) + let v = native_list_append(v, ["granni", "noun", "grannar", "granna", "granna", "", "neighbour"]) + let v = native_list_append(v, ["rosti", "noun", "rosti", "", "", "", "a nickname"]) + let v = native_list_append(v, ["feðgin", "noun", "feðginin", "feðgins", "feðgini", "", "father and daughter"]) + let v = native_list_append(v, ["tafn", "noun", "tafn", "", "", "", "sacrifice"]) + let v = native_list_append(v, ["gylta", "noun", "gyltur", "gyltu", "gyltu", "", "young sow female"]) + let v = native_list_append(v, ["víg", "noun", "vígin", "vígs", "vígi", "", "fight battle"]) + let v = native_list_append(v, ["skaup", "noun", "skaup", "", "", "", "mockery"]) + let v = native_list_append(v, ["Loka", "noun", "Loka", "", "", "", "inflection of Loki"]) + let v = native_list_append(v, ["hausa", "noun", "hausa", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["hǫnd", "noun", "hendr", "handar", "hendi", "", "hand"]) + let v = native_list_append(v, ["steði", "noun", "steðjar", "steðja", "steðja", "", "anvil"]) + let v = native_list_append(v, ["arni", "noun", "arni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brekka", "noun", "brekkur", "brekku", "brekku", "", "slope"]) + let v = native_list_append(v, ["hríð", "noun", "hríð", "", "", "", "storm snowstorm"]) + let v = native_list_append(v, ["dys", "noun", "dysjar", "dysjar", "dysinni", "", "a grave mound"]) + let v = native_list_append(v, ["Vilja", "noun", "Vilja", "", "", "", "accusative/dative/genitive of Vili"]) + let v = native_list_append(v, ["norn", "noun", "nornir", "nornar", "norninni", "", "Norn supernatural woman"]) + let v = native_list_append(v, ["vikur", "noun", "vikur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["drengs", "noun", "drengs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vinar", "noun", "vinar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gaupa", "noun", "gaupa", "", "", "", "a lynx an"]) + let v = native_list_append(v, ["félag", "noun", "félǫg", "félags", "félagi", "", "fellowship partnership"]) + let v = native_list_append(v, ["hluta", "noun", "hluta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kjarr", "noun", "kjarr", "", "", "", "copsewood brushwood thicket"]) + let v = native_list_append(v, ["gammi", "noun", "gammi", "", "", "", "a Finnish Sami"]) + let v = native_list_append(v, ["røkkr", "noun", "røkkr", "", "", "", "twilight"]) + let v = native_list_append(v, ["malms", "noun", "malms", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["meiðr", "noun", "meiðar", "meiðs", "meiði", "", "longitudinal beam sledge-runner"]) + let v = native_list_append(v, ["býr", "noun", "býr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hundi", "noun", "hundi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["legu", "noun", "legu", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["soð", "noun", "soð", "soðs", "", "", "broth"]) + let v = native_list_append(v, ["speki", "noun", "speki", "spekinnar", "spekinni", "", "wisdom expertise"]) + let v = native_list_append(v, ["skíði", "noun", "skíði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mannkyn", "noun", "mannkyn", "mannkyns", "mannkyni", "", "mankind"]) + let v = native_list_append(v, ["hákarl", "noun", "hákarlar", "hákarls", "hákarli", "", "a shark"]) + let v = native_list_append(v, ["kǫgurr", "noun", "kǫgrar", "kǫgurs", "", "", "a quilt with"]) + let v = native_list_append(v, ["gaddr", "noun", "gaddr", "", "", "", "goad spike"]) + let v = native_list_append(v, ["umboðsmaðr", "noun", "umboðsmaðr", "", "", "", "commissary steward"]) + let v = native_list_append(v, ["hreindýri", "noun", "hreindýri", "", "", "", "reindeer"]) + let v = native_list_append(v, ["knútr", "noun", "knútar", "knúts", "knúti", "", "knot"]) + let v = native_list_append(v, ["skurn", "noun", "skurnar", "skurnar", "skurninni", "", "shell eggshell"]) + let v = native_list_append(v, ["fola", "noun", "fola", "", "", "", "inflection of foli"]) + let v = native_list_append(v, ["nift", "noun", "nift", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["vǫndr", "noun", "vendir", "vandar", "vendi", "", "wand switch twig"]) + let v = native_list_append(v, ["meinbugir", "noun", "meinbugir", "", "", "", "impediments which make"]) + let v = native_list_append(v, ["fóa", "noun", "fór", "fó", "fó", "", "she-fox"]) + let v = native_list_append(v, ["birna", "noun", "birnur", "birnu", "birnu", "", "she-bear female bear"]) + let v = native_list_append(v, ["hertogi", "noun", "hertogar", "hertoga", "hertoga", "", "commander of troops"]) + let v = native_list_append(v, ["karls", "noun", "karls", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["prest", "noun", "prest", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["ígull", "noun", "ígull", "", "", "", "sea urchin"]) + let v = native_list_append(v, ["bogar", "noun", "bogar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["alfs", "noun", "alfs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["seli", "noun", "selar", "sela", "sela", "", "harness"]) + let v = native_list_append(v, ["orms", "noun", "orms", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eið", "noun", "eiðin", "eiðs", "eiði", "", "isthmus"]) + let v = native_list_append(v, ["stjǫlr", "noun", "stilir", "stjalar", "stili", "", "rump hind part"]) + let v = native_list_append(v, ["vinds", "noun", "vinds", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["fiskar", "noun", "fiskar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["fjós", "noun", "fjós", "", "", "", "byre"]) + let v = native_list_append(v, ["skógr", "noun", "skógar", "skógar", "skógi", "", "wood forest"]) + let v = native_list_append(v, ["hyrna", "noun", "hyrnur", "hyrnu", "hyrnu", "", "point of an"]) + let v = native_list_append(v, ["Jair", "noun", "Jair", "", "", "", "Jair"]) + let v = native_list_append(v, ["kjalta", "noun", "kjǫltur", "kjǫltu", "kjǫltu", "", "lap"]) + let v = native_list_append(v, ["greina", "noun", "greina", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["tíund", "noun", "tíundar", "tíundar", "tíundinni", "", "tithe"]) + let v = native_list_append(v, ["hyr", "noun", "hyr", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["barar", "noun", "barar", "", "", "", "handbarrow stretcher"]) + let v = native_list_append(v, ["uggr", "noun", "uggr", "uggs", "ugg", "", "fear apprehension"]) + let v = native_list_append(v, ["stǫng", "noun", "stangir", "stangar", "", "", "staff pole"]) + let v = native_list_append(v, ["stétta", "noun", "stétta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["gilda", "noun", "gilda", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["silki", "noun", "silki", "silkis", "", "", "silk"]) + let v = native_list_append(v, ["draki", "noun", "draki", "", "", "", "dragon"]) + let v = native_list_append(v, ["eista", "noun", "eistu", "eistans", "eistanu", "", "testicle"]) + let v = native_list_append(v, ["þjarka", "noun", "þjǫrkur", "þjǫrku", "þjǫrku", "", "quarrel"]) + let v = native_list_append(v, ["tanna", "noun", "tanna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fisks", "noun", "fisks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["húnn", "noun", "húnar", "húns", "húni", "", "a bear cub"]) + let v = native_list_append(v, ["vitra", "noun", "vitrur", "vitru", "vitru", "", "wisdom sagacity"]) + let v = native_list_append(v, ["legir", "noun", "legir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vitta", "noun", "vitta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["heiði", "noun", "heiði", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["orða", "noun", "orða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kvíga", "noun", "kvígur", "kvígu", "kvígu", "", "heifer young cow"]) + let v = native_list_append(v, ["lyng", "noun", "lyngin", "lyngs", "lyngvi", "", "heather ling"]) + let v = native_list_append(v, ["speglar", "noun", "speglar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hestar", "noun", "hestar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vegar", "noun", "vegar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hundar", "noun", "hundar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["skalli", "noun", "skalli", "", "", "", "skull cranium"]) + let v = native_list_append(v, ["gjá", "noun", "gjár", "gjár", "", "", "chasm rift crack"]) + let v = native_list_append(v, ["ǫl", "noun", "ǫlin", "ǫls", "ǫlvi", "", "ale beer"]) + let v = native_list_append(v, ["afli", "noun", "afli", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["gráði", "noun", "gráðar", "gráða", "gráða", "", "gentle breeze"]) + let v = native_list_append(v, ["iða", "noun", "iða", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gest", "noun", "gest", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["gests", "noun", "gests", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hapt", "noun", "hǫpt", "hapts", "hapti", "", "cuff fetter"]) + let v = native_list_append(v, ["nipt", "noun", "nipt", "niptar", "", "", "female relative kinswoman"]) + let v = native_list_append(v, ["gervi", "noun", "gervi", "gervinnar", "gervinni", "", "gear"]) + let v = native_list_append(v, ["finnar", "noun", "finnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["teigr", "noun", "teigar", "teigar", "teigi", "", "a distinct portion"]) + let v = native_list_append(v, ["draugar", "noun", "draugar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["dvergar", "noun", "dvergar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hanar", "noun", "hanar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["vigg", "noun", "viggin", "viggs", "viggi", "", "horse steed"]) + let v = native_list_append(v, ["mey", "noun", "meyjar", "meyjar", "meyju", "", "alternative form of"]) + let v = native_list_append(v, ["treyja", "noun", "treyjur", "treyju", "treyju", "", "jerkin"]) + let v = native_list_append(v, ["alina", "noun", "alina", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["afl", "noun", "aflar", "afls", "afli", "", "a hearth especially"]) + let v = native_list_append(v, ["jarðhús", "noun", "jarðhúsin", "jarðhúsins", "jarðhúsi", "", "underground room or"]) + let v = native_list_append(v, ["epla", "noun", "epla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hinna", "noun", "hinnur", "hinnu", "hinnu", "", "film membrane"]) + let v = native_list_append(v, ["dyngja", "noun", "dyngja", "", "", "", "a bower"]) + let v = native_list_append(v, ["heimar", "noun", "heimar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sniglar", "noun", "sniglar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["steinar", "noun", "steinar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["selar", "noun", "selar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["kaggi", "noun", "kaggi", "", "", "", "keg cask"]) + let v = native_list_append(v, ["fýri", "noun", "fýri", "", "", "", "forest of fir"]) + let v = native_list_append(v, ["byr", "noun", "byr", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["þræla", "noun", "þræla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["teina", "noun", "teinur", "teinu", "teinu", "", "basket made of"]) + let v = native_list_append(v, ["danskan", "noun", "danskan", "", "", "", "nominative definite singular"]) + let v = native_list_append(v, ["konan", "noun", "konan", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["konuna", "noun", "konuna", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["konunni", "noun", "konunni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["konunnar", "noun", "konunnar", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["konum", "noun", "konum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["kvenna", "noun", "kvenna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["konurnar", "noun", "konurnar", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["konunum", "noun", "konunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["kvennanna", "noun", "kvennanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["hauk", "noun", "hauk", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["haukar", "noun", "haukar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sóknbára", "noun", "sóknbára", "", "", "", "blood"]) + let v = native_list_append(v, ["vé", "noun", "véin", "vés", "vénu", "", "sanctuary holy place"]) + let v = native_list_append(v, ["fleti", "noun", "fleti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["laukar", "noun", "laukar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ballar", "noun", "ballar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["glyrna", "noun", "glyrnur", "glyrnu", "glyrnu", "", "eye of a"]) + let v = native_list_append(v, ["agn", "noun", "ǫgn", "agns", "agni", "", "bait"]) + let v = native_list_append(v, ["vindauga", "noun", "vindaugu", "vindaugans", "vindauganu", "", "window"]) + let v = native_list_append(v, ["kyrtill", "noun", "kyrtill", "", "", "", "kirtle tunic a"]) + let v = native_list_append(v, ["samræði", "noun", "samræðin", "samræðis", "samræðinu", "", "sexual intercourse"]) + let v = native_list_append(v, ["trýni", "noun", "trýnar", "trýna", "trýna", "", "snout"]) + let v = native_list_append(v, ["hœkja", "noun", "hœkjur", "hœkju", "", "", "crutch"]) + let v = native_list_append(v, ["morgnar", "noun", "morgnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["arta", "noun", "ǫrtur", "ǫrtu", "ǫrtu", "", "a species of"]) + let v = native_list_append(v, ["hrosshvalr", "noun", "hrosshvalr", "", "", "", "walrus"]) + let v = native_list_append(v, ["hvalr", "noun", "hvalar", "hvals", "hvali", "", "whale"]) + let v = native_list_append(v, ["tangar", "noun", "tangar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["alnar", "noun", "alnar", "", "", "", "inflection of alin"]) + let v = native_list_append(v, ["borgar", "noun", "borgar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["stigit", "noun", "stigit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["konungar", "noun", "konungar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["lagar", "noun", "lagar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kastar", "noun", "kastar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["komna", "noun", "komna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["angar", "noun", "angar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["angi", "noun", "angar", "anga", "anga", "", "sweet odour"]) + let v = native_list_append(v, ["hausi", "noun", "hausi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stillis", "noun", "stillis", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["sonum", "noun", "sonum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["limum", "noun", "limum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["konungs", "noun", "konungs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["laxi", "noun", "laxi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["saxa", "noun", "saxa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["auri", "noun", "auri", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["ullum", "noun", "ullum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["kerling", "noun", "kerlingar", "kerlingar", "kerlingu", "", "woman wife"]) + let v = native_list_append(v, ["saltari", "noun", "saltarar", "saltara", "saltara", "", "psalter psalmbook"]) + let v = native_list_append(v, ["agni", "noun", "agni", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["skemill", "noun", "skemill", "", "", "", "footstool"]) + let v = native_list_append(v, ["dús", "noun", "dús", "", "", "", "lull dead calm"]) + let v = native_list_append(v, ["galta", "noun", "galta", "", "", "", "galti"]) + let v = native_list_append(v, ["grannar", "noun", "grannar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["grundar", "noun", "grundar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["djákni", "noun", "djáknar", "djákna", "djákna", "", "deacon"]) + let v = native_list_append(v, ["randir", "noun", "randir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["menja", "noun", "menja", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["jǫrð", "noun", "jarðir", "jarðar", "jǫrðu", "", "earth"]) + let v = native_list_append(v, ["barmar", "noun", "barmar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["verks", "noun", "verks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lakans", "noun", "lakans", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["stigs", "noun", "stigs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["elds", "noun", "elds", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vargs", "noun", "vargs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vargar", "noun", "vargar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["vindar", "noun", "vindar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["galtar", "noun", "galtar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["brunns", "noun", "brunns", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["brunnar", "noun", "brunnar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["barkar", "noun", "barkar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["lakar", "noun", "lakar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["varga", "noun", "varga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["óvinr", "noun", "óvinir", "óvinar", "óvin", "", "enemy foe"]) + let v = native_list_append(v, ["Egils", "noun", "Egils", "", "", "", "genitive of Egill"]) + let v = native_list_append(v, ["Haralds", "noun", "Haralds", "", "", "", "genitive of Haraldr"]) + let v = native_list_append(v, ["tignum", "noun", "tignum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["saxar", "noun", "saxarnir", "saxa", "sǫxum", "", "the Saxons"]) + let v = native_list_append(v, ["asna", "noun", "ǫsnur", "ǫsnu", "ǫsnu", "", "a she-ass female"]) + let v = native_list_append(v, ["vellit", "noun", "vellit", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["sanna", "noun", "sǫnnur", "sǫnnu", "sǫnnu", "", "assertation"]) + let v = native_list_append(v, ["Austra", "noun", "Austra", "", "", "", "accusative/dative/genitive of Austri"]) + let v = native_list_append(v, ["knarrar", "noun", "knarrar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hamrar", "noun", "hamrar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["firar", "noun", "firarnir", "fira", "firum", "", "men people"]) + let v = native_list_append(v, ["sagan", "noun", "sagan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["herða", "noun", "herður", "herðu", "herðu", "", "tempering of steel"]) + let v = native_list_append(v, ["vindan", "noun", "vindan", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["Norðymbraland", "noun", "Norðymbraland", "Norðymbralands", "Norðymbralandi", "", "Northumberland the most"]) + let v = native_list_append(v, ["hindar", "noun", "hindar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["viggs", "noun", "viggs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Langbarðaland", "noun", "Langbarðaland", "Langbarðalands", "Langbarðalandi", "", "Lombardy a region"]) + let v = native_list_append(v, ["prests", "noun", "prests", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["sáta", "noun", "sátur", "sátu", "sátu", "", "truss of hay"]) + let v = native_list_append(v, ["bagall", "noun", "baglar", "bagals", "bagli", "", "a bishops staff"]) + let v = native_list_append(v, ["geir", "noun", "geir", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["gyðja", "noun", "gyðjur", "gyðju", "gyðju", "", "goddess"]) + let v = native_list_append(v, ["humrar", "noun", "humrar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["brunna", "noun", "brunna", "", "", "", "inflection of bruðr"]) + let v = native_list_append(v, ["granna", "noun", "grǫnnur", "grǫnnu", "grǫnnu", "", "neighbour female"]) + let v = native_list_append(v, ["norna", "noun", "norna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["edda", "noun", "eddu", "eddu", "eddu", "", "great-grandmother"]) + let v = native_list_append(v, ["birnan", "noun", "birnan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["fílum", "noun", "fílum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["regin", "noun", "reginin", "ragna", "rǫgnum", "", "the gods the"]) + let v = native_list_append(v, ["aptans", "noun", "aptans", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["falki", "noun", "falkar", "falka", "falka", "", "a falcon bird"]) + let v = native_list_append(v, ["degi", "noun", "degi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sagnar", "noun", "sagnar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Guðmundr", "noun", "Guðmundr", "", "", "", "a male given"]) + let v = native_list_append(v, ["sagna", "noun", "sagna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["heimr", "noun", "heimar", "heims", "heimi", "", "realm region within"]) + let v = native_list_append(v, ["misseri", "noun", "misserin", "misseris", "misserinu", "", "half-year period of"]) + let v = native_list_append(v, ["áta", "noun", "átur", "átu", "átu", "", "eating"]) + let v = native_list_append(v, ["Haraldr", "noun", "Haraldr", "Haralds", "Haraldi", "", "a male given"]) + let v = native_list_append(v, ["Óleifr", "noun", "Óleifr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Steinarr", "noun", "Steinarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Guðbrandr", "noun", "Guðbrandr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Þórir", "noun", "Þórir", "Þóris", "", "", "a male given"]) + let v = native_list_append(v, ["Hákon", "noun", "Hákon", "Hákonar", "Hákoni", "", "a male given"]) + let v = native_list_append(v, ["Geirr", "noun", "Geirr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Einarr", "noun", "Einarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Eiríkr", "noun", "Eiríkr", "Eiríks", "Eiríki", "", "a male given"]) + let v = native_list_append(v, ["Erlingr", "noun", "Erlingr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Finnr", "noun", "Finnr", "Finns", "", "", "a male given"]) + let v = native_list_append(v, ["Gunnarr", "noun", "Gunnarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ívarr", "noun", "Ívarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Yngvarr", "noun", "Yngvarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Knútr", "noun", "Knútr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Leifr", "noun", "Leifr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Oddr", "noun", "Oddr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hreiðarr", "noun", "Hreiðarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hrólfr", "noun", "Hrólfr", "Hrólfs", "Hrólfi", "", "a male given"]) + let v = native_list_append(v, ["Sigurðr", "noun", "Sigurðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["umboð", "noun", "umboð", "", "", "", "commission"]) + let v = native_list_append(v, ["Stígr", "noun", "Stígr", "Stígs", "Stígi", "", "a male given"]) + let v = native_list_append(v, ["Sveinn", "noun", "Sveinn", "Sveins", "", "", "a male given"]) + let v = native_list_append(v, ["Þorgeirr", "noun", "Þorgeirr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Þróndr", "noun", "Þróndr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Végarðr", "noun", "Végarðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Friðþjófr", "noun", "Friðþjófr", "Friðþjófs", "", "", "a male given"]) + let v = native_list_append(v, ["Ǫgmundr", "noun", "Ǫgmundr", "", "", "", "a male given"]) + let v = native_list_append(v, ["æsir", "noun", "æsir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["Áslaug", "noun", "Áslaug", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ástríðr", "noun", "Ástríðr", "", "", "", "a female given"]) + let v = native_list_append(v, ["Borghildr", "noun", "Borghildr", "Borghildar", "Borghildi", "", "a female given"]) + let v = native_list_append(v, ["Dagný", "noun", "Dagný", "", "", "", "a female given"]) + let v = native_list_append(v, ["Gerðr", "noun", "Gerðr", "Gerðar", "Gerði", "", "a female given"]) + let v = native_list_append(v, ["Gunnr", "noun", "Gunnr", "Gunnar", "Gunni", "", "a female given"]) + let v = native_list_append(v, ["Gunnvǫr", "noun", "Gunnvǫr", "", "", "", "a female given"]) + let v = native_list_append(v, ["Hjǫrdís", "noun", "Hjǫrdís", "Hjǫrdísar", "", "", "a female given"]) + let v = native_list_append(v, ["Ingibjǫrg", "noun", "Ingibjǫrg", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ingiríðr", "noun", "Ingiríðr", "", "", "", "a female given"]) + let v = native_list_append(v, ["Jórunn", "noun", "Jórunn", "", "", "", "a female given"]) + let v = native_list_append(v, ["Ragnhildr", "noun", "Ragnhildr", "Ragnhildar", "Ragnhildi", "", "a female given"]) + let v = native_list_append(v, ["Ragnfríðr", "noun", "Ragnfríðr", "", "", "", "a female given"]) + let v = native_list_append(v, ["Hreiðunn", "noun", "Hreiðunn", "", "", "", "a female given"]) + let v = native_list_append(v, ["Signý", "noun", "Signý", "", "", "", "a female given"]) + let v = native_list_append(v, ["Sigríðr", "noun", "Sigríðr", "", "", "", "a female given"]) + let v = native_list_append(v, ["Þorný", "noun", "Þorný", "", "", "", "a female given"]) + let v = native_list_append(v, ["gestir", "noun", "gestir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vangar", "noun", "vangar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["skessa", "noun", "skessur", "skessu", "skessu", "", "giantess witch"]) + let v = native_list_append(v, ["staur", "noun", "staur", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["þióð", "noun", "þióð", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frauð", "noun", "frauð", "", "", "", "froth"]) + let v = native_list_append(v, ["smali", "noun", "smali", "", "", "", "livestock"]) + let v = native_list_append(v, ["foki", "noun", "foki", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["Freyja", "noun", "Freyja", "Freyju", "", "", "Freya goddess associated"]) + let v = native_list_append(v, ["alanna", "noun", "alanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["jara", "noun", "jǫrur", "jǫru", "jǫru", "", "fight battle"]) + let v = native_list_append(v, ["jaran", "noun", "jaran", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["bakka", "noun", "bakka", "", "", "", "inflection of bakki"]) + let v = native_list_append(v, ["Holtsetaland", "noun", "Holtsetalǫnd", "Holtsetalands", "Holtsetalandi", "", "a geographic region"]) + let v = native_list_append(v, ["himins", "noun", "himins", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["leik", "noun", "leik", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["himin", "noun", "himin", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hita", "noun", "hitur", "hitu", "hitu", "", "heat heating"]) + let v = native_list_append(v, ["sunum", "noun", "sunum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["barma", "noun", "barma", "", "", "", "inflection of barmi"]) + let v = native_list_append(v, ["tigum", "noun", "tigum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["valkyrja", "noun", "valkyrjur", "valkyrju", "valkyrju", "", "Valkyrie"]) + let v = native_list_append(v, ["berum", "noun", "berum", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["malma", "noun", "malma", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hlýri", "noun", "hlýrar", "hlýra", "hlýra", "", "brother"]) + let v = native_list_append(v, ["svíri", "noun", "svírar", "svíra", "svíra", "", "neck back or"]) + let v = native_list_append(v, ["skeri", "noun", "skeri", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["Gauti", "noun", "Gauti", "Gauta", "Gauta", "", "the pourer of"]) + let v = native_list_append(v, ["vitrana", "noun", "vitrana", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["erkibiskup", "noun", "erkibiskupar", "erkibiskups", "erkibiskupi", "", "archbishop"]) + let v = native_list_append(v, ["Bragi", "noun", "Bragi", "Braga", "Braga", "", "a male given"]) + let v = native_list_append(v, ["seljarar", "noun", "seljarar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["hringa", "noun", "hringa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["gunnr", "noun", "gunnar", "gunnar", "gunni", "", "battle war"]) + let v = native_list_append(v, ["Baldr", "noun", "Baldr", "Baldrs", "", "", "Baldur one of"]) + let v = native_list_append(v, ["síl", "noun", "síl", "", "", "", "herring"]) + let v = native_list_append(v, ["sót", "noun", "sótin", "sóts", "sóti", "", "soot"]) + let v = native_list_append(v, ["skalds", "noun", "skalds", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sessa", "noun", "sessa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hǫfuð", "noun", "hǫfuðin", "hǫfuðs", "hǫfði", "", "head"]) + let v = native_list_append(v, ["lifr", "noun", "lifr", "", "", "", "liver"]) + let v = native_list_append(v, ["mágr", "noun", "mágar", "mágs", "mági", "", "a male relative"]) + let v = native_list_append(v, ["malmr", "noun", "malmar", "malms", "malmi", "", "ore metal"]) + let v = native_list_append(v, ["mangari", "noun", "mangari", "", "", "", "chandler monger shopkeeper"]) + let v = native_list_append(v, ["mánaðr", "noun", "mánaðr", "", "", "", "month"]) + let v = native_list_append(v, ["vængr", "noun", "vængir", "vængjar", "væng", "", "wing"]) + let v = native_list_append(v, ["mjúkleikr", "noun", "mjúkleikr", "", "", "", "ability dexterity skilfulness"]) + let v = native_list_append(v, ["móðr", "noun", "móðar", "móðs", "móði", "", "anger wrath"]) + let v = native_list_append(v, ["morðvargr", "noun", "morðvargar", "morðvargs", "morðvargi", "", "murderer someone outlawed"]) + let v = native_list_append(v, ["morginn", "noun", "morgnar", "morgins", "morgni", "", "morning"]) + let v = native_list_append(v, ["munnr", "noun", "munnr", "", "", "", "mouth"]) + let v = native_list_append(v, ["muðr", "noun", "muðr", "munns", "", "", "alternative form of"]) + let v = native_list_append(v, ["Helluland", "noun", "Helluland", "", "", "", "Helluland Baffin Island"]) + let v = native_list_append(v, ["fitu", "noun", "fitu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["sveiti", "noun", "sveiti", "sveita", "sveita", "", "sweat"]) + let v = native_list_append(v, ["botn", "noun", "botnar", "botns", "botni", "", "bottom"]) + let v = native_list_append(v, ["sess", "noun", "sessar", "sessins", "sessi", "", "seat"]) + let v = native_list_append(v, ["lestr", "noun", "lestr", "", "", "", "reading"]) + let v = native_list_append(v, ["hjarn", "noun", "hjarn", "", "", "", "hard frozen snow"]) + let v = native_list_append(v, ["hjarni", "noun", "hjarnar", "hjarna", "hjarna", "", "the brain"]) + let v = native_list_append(v, ["darr", "noun", "darr", "", "", "", "spear dart"]) + let v = native_list_append(v, ["hlioð", "noun", "hlioð", "hlioðs", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["verǫld", "noun", "veraldir", "veraldar", "verǫldinni", "", "the earth the"]) + let v = native_list_append(v, ["kylfa", "noun", "kylfur", "kylfu", "kylfu", "", "a club"]) + let v = native_list_append(v, ["meyja", "noun", "meyja", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["gígja", "noun", "gígja", "", "", "", "fiddle"]) + let v = native_list_append(v, ["Grǿnland", "noun", "Grǿnland", "", "", "", "Greenland a large"]) + let v = native_list_append(v, ["bjarg", "noun", "bjǫrg", "bjargs", "bjargi", "", "alternative form of"]) + let v = native_list_append(v, ["aldar", "noun", "aldar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kvísl", "noun", "kvísl", "", "", "", "branch"]) + let v = native_list_append(v, ["hrukka", "noun", "hrukkur", "hrukku", "hrukku", "", "wrinkle"]) + let v = native_list_append(v, ["upphaf", "noun", "upphǫf", "upphafs", "upphafi", "", "beginning"]) + let v = native_list_append(v, ["lauka", "noun", "lauka", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["stedda", "noun", "steddur", "steddu", "steddu", "", "a mare"]) + let v = native_list_append(v, ["erfiði", "noun", "erfiði", "erfiðis", "", "", "toil hard work"]) + let v = native_list_append(v, ["draugi", "noun", "draugi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["frauðr", "noun", "frauðar", "frauðs", "frauði", "", "frog"]) + let v = native_list_append(v, ["ferill", "noun", "ferlar", "ferils", "ferli", "", "track race"]) + let v = native_list_append(v, ["kalfa", "noun", "kalfa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["fífl", "noun", "fífl", "", "", "", "monster giant"]) + let v = native_list_append(v, ["alir", "noun", "alir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["ausu", "noun", "ausu", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["týr", "noun", "tívar", "týs", "tívi", "", "god"]) + let v = native_list_append(v, ["legin", "noun", "legin", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["berjum", "noun", "berjum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["gulli", "noun", "gulli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["augu", "noun", "augu", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["fjǫrð", "noun", "fjǫrð", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["tjaldr", "noun", "tjaldar", "tjalds", "tjaldi", "", "oystercatcher Haematopus ostralegus"]) + let v = native_list_append(v, ["ugg", "noun", "ugg", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["reyndar", "noun", "reyndar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["skipun", "noun", "skipanir", "skipanar", "skipuninni", "", "alternative form of"]) + let v = native_list_append(v, ["ylgr", "noun", "ylgjar", "ylgjar", "ylgi", "", "she-wolf"]) + let v = native_list_append(v, ["brá", "noun", "brár", "brár", "bráinni", "", "eyelash"]) + let v = native_list_append(v, ["dómstóll", "noun", "dómstólar", "dómstóls", "dómstóli", "", "a court of"]) + let v = native_list_append(v, ["eldi", "noun", "eldi", "", "", "", "procreation"]) + let v = native_list_append(v, ["hamarr", "noun", "hamrar", "hamars", "hamri", "", "stone"]) + let v = native_list_append(v, ["nafarr", "noun", "nafrar", "nafars", "nafri", "", "auger"]) + let v = native_list_append(v, ["skati", "noun", "skatnar", "skata", "skata", "", "chieftain prince"]) + let v = native_list_append(v, ["vagl", "noun", "vagl", "", "", "", "beam especially as"]) + let v = native_list_append(v, ["grúfa", "noun", "grúfa", "", "", "", "used in set"]) + let v = native_list_append(v, ["innyfli", "noun", "innyflin", "innyfla", "innyflum", "", "entrails bowels"]) + let v = native_list_append(v, ["nesi", "noun", "nesi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["þeisti", "noun", "þeistar", "þeista", "þeista", "", "black guillemot tystie"]) + let v = native_list_append(v, ["vǫðvi", "noun", "vǫðvar", "vǫðva", "vǫðva", "", "muscle calf of"]) + let v = native_list_append(v, ["mæki", "noun", "mæki", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["ragnarǫk", "noun", "ragnarǫk", "", "", "", "the fate of"]) + let v = native_list_append(v, ["Braga", "noun", "Braga", "", "", "", "inflection of Bragi"]) + let v = native_list_append(v, ["sýn", "noun", "sýnir", "sýnar", "sýninni", "", "sight eyesight"]) + let v = native_list_append(v, ["fúa", "noun", "fúr", "fú", "fú", "", "she-fox vixen"]) + let v = native_list_append(v, ["ermr", "noun", "ermar", "ermar", "ermi", "", "sleeve"]) + let v = native_list_append(v, ["fylling", "noun", "fyllingar", "fyllingar", "fyllingu", "", "filling"]) + let v = native_list_append(v, ["oxi", "noun", "øxn", "oxa", "oxa", "", "ox"]) + let v = native_list_append(v, ["mýrr", "noun", "mýrar", "mýrar", "mýri", "", "moor swamp bog"]) + let v = native_list_append(v, ["mjǫlk", "noun", "mjǫlk", "mjǫlkr", "mjǫlkinni", "", "milk"]) + let v = native_list_append(v, ["vetr", "noun", "vetrnir", "vetrar", "vetri", "", "winter"]) + let v = native_list_append(v, ["ormr", "noun", "ormar", "orms", "ormi", "", "legless slithering animal"]) + let v = native_list_append(v, ["skamma", "noun", "skamma", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["borum", "noun", "borum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["jaðar", "noun", "jaðar", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["býsn", "noun", "býsnin", "býsns", "býsni", "", "wonder portent"]) + let v = native_list_append(v, ["Sverrir", "noun", "Sverrir", "Sverris", "Sverri", "", "a male given"]) + let v = native_list_append(v, ["lén", "noun", "lénin", "léns", "léni", "", "fief fee"]) + let v = native_list_append(v, ["víkingr", "noun", "víkingar", "víkings", "víkingi", "", "a pirate in"]) + let v = native_list_append(v, ["skart", "noun", "skǫrt", "skarts", "skarti", "", "show finery"]) + let v = native_list_append(v, ["rétt", "noun", "rétt", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["fjǫr", "noun", "fjǫrin", "fjǫrs", "fjǫrvi", "", "life"]) + let v = native_list_append(v, ["leikr", "noun", "leikar", "leiks", "leiki", "", "play sport"]) + let v = native_list_append(v, ["hestr", "noun", "hestar", "hests", "hesti", "", "horse"]) + let v = native_list_append(v, ["strjúpi", "noun", "strjúpar", "strjúpa", "strjúpa", "", "throat"]) + let v = native_list_append(v, ["fiski", "noun", "fiski", "fiskjar", "fiskinni", "", "fishing"]) + let v = native_list_append(v, ["þungi", "noun", "þungar", "þunga", "þunga", "", "heaviness weight"]) + let v = native_list_append(v, ["afbrýði", "noun", "afbrýði", "afbrýðinnar", "afbrýðinni", "", "jealousy"]) + let v = native_list_append(v, ["hvískra", "noun", "hvískra", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["gátt", "noun", "gáttir", "gáttar", "gáttinni", "", "the rabbet of"]) + let v = native_list_append(v, ["makki", "noun", "makkar", "makka", "makka", "", "withers mane"]) + let v = native_list_append(v, ["rytr", "noun", "rytar", "ryts", "ryti", "", "kittiwake Rissa tridactyla"]) + let v = native_list_append(v, ["þerrinn", "noun", "þerrinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["varp", "noun", "vǫrp", "varps", "varpi", "", "casting throwing"]) + let v = native_list_append(v, ["vanda", "noun", "vanda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["vintr", "noun", "vintr", "", "", "", "winter"]) + let v = native_list_append(v, ["skarlak", "noun", "skarlak", "", "", "", "scarlet"]) + let v = native_list_append(v, ["garpr", "noun", "garpar", "garps", "garpi", "", "a bold dauntless"]) + let v = native_list_append(v, ["kistill", "noun", "kistlar", "kistils", "kistli", "", "a little chest"]) + let v = native_list_append(v, ["augat", "noun", "augat", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["moldar", "noun", "moldar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["smán", "noun", "smánir", "smánar", "smáninni", "", "shame disgrace"]) + let v = native_list_append(v, ["leikinn", "noun", "leikinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["Egiptaland", "noun", "Egiptaland", "Egiptalands", "Egiptalandi", "", "Egypt a country"]) + let v = native_list_append(v, ["byrjar", "noun", "byrjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["reynir", "noun", "reynar", "reynis", "reyni", "", "rowan tree"]) + let v = native_list_append(v, ["plógr", "noun", "plógr", "", "", "", "plough plow"]) + let v = native_list_append(v, ["sǫg", "noun", "sagir", "sagar", "sǫginni", "", "saw"]) + let v = native_list_append(v, ["bý", "noun", "bý", "", "", "", "bee insect"]) + let v = native_list_append(v, ["beð", "noun", "beð", "", "", "", "indefinite accusative/dative singular"]) + let v = native_list_append(v, ["nǫs", "noun", "nasar", "nasar", "nǫsinni", "", "nose"]) + let v = native_list_append(v, ["ǫ́", "noun", "ár", "ár", "ǫ́inni", "", "river"]) + let v = native_list_append(v, ["øx", "noun", "øxar", "øxar", "øxi", "", "axe"]) + let v = native_list_append(v, ["naust", "noun", "naustin", "nausts", "nausti", "", "a boathouse"]) + let v = native_list_append(v, ["fornyrðislag", "noun", "fornyrðislag", "fornyrðislags", "fornyrðislagi", "", "fornyrðislag meter"]) + let v = native_list_append(v, ["ljóðaháttr", "noun", "ljóðaháttr", "", "", "", "an Old Norse"]) + let v = native_list_append(v, ["sátt", "noun", "sáttir", "sáttar", "sáttinni", "", "reconciliation covenant agreement"]) + let v = native_list_append(v, ["ótta", "noun", "ótta", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["tiginn", "noun", "tiginn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["yndi", "noun", "yndin", "yndis", "yndinu", "", "delight happiness"]) + let v = native_list_append(v, ["þinga", "noun", "þinga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þrǫstr", "noun", "þrestir", "þrastar", "þresti", "", "thrush"]) + let v = native_list_append(v, ["arfa", "noun", "ǫrfur", "ǫrfu", "ǫrfu", "", "heiress"]) + let v = native_list_append(v, ["þýður", "noun", "þýður", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["vingull", "noun", "vinglar", "vinguls", "vingli", "", "a horses male"]) + let v = native_list_append(v, ["angan", "noun", "anganir", "anganar", "anganinni", "", "sweet odour"]) + let v = native_list_append(v, ["Ǫzurr", "noun", "Ǫzurr", "", "", "", "a male given"]) + let v = native_list_append(v, ["byrr", "noun", "byrir", "byrjar", "byr", "", "a fair wind"]) + let v = native_list_append(v, ["orri", "noun", "orrar", "orra", "orra", "", "black grouse Lyrurus"]) + let v = native_list_append(v, ["hæimr", "noun", "hæimr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fírar", "noun", "fírarnir", "fíra", "fírum", "", "men people"]) + let v = native_list_append(v, ["hurðu", "noun", "hurðu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Valfǫðr", "noun", "Valfǫðr", "Valfǫðrs", "", "", "Odin literally Commander"]) + let v = native_list_append(v, ["Heimdallar", "noun", "Heimdallar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Heimdallr", "noun", "Heimdallr", "Heimdallar", "Heimdall", "", "Heimdall"]) + let v = native_list_append(v, ["stapi", "noun", "stapi", "", "", "", "precipice steep and"]) + let v = native_list_append(v, ["fǿða", "noun", "fǿða", "fǿðu", "fǿðu", "", "food"]) + let v = native_list_append(v, ["mjǫt", "noun", "mjǫtin", "mjǫta", "mjǫtum", "", "the right measure"]) + let v = native_list_append(v, ["ǫld", "noun", "aldir", "aldar", "ǫldu", "", "time age"]) + let v = native_list_append(v, ["Ýmir", "noun", "Ýmir", "Ýmis", "Ými", "", "misspelling of Ymir"]) + let v = native_list_append(v, ["unnr", "noun", "unnir", "unnar", "unni", "", "a wave an"]) + let v = native_list_append(v, ["Ginnungagap", "noun", "Ginnungagap", "Ginnungagaps", "", "", "Ginnungagap primordial chaos"]) + let v = native_list_append(v, ["Borr", "noun", "Borr", "Bors", "", "", "Borr"]) + let v = native_list_append(v, ["bjǫð", "noun", "bjaðir", "bjaðar", "bjǫðu", "", "flat land ground"]) + let v = native_list_append(v, ["Miðgarðr", "noun", "Miðgarðr", "Miðgarðs", "", "", "the Earth especially"]) + let v = native_list_append(v, ["salr", "noun", "salir", "salar", "sal", "", "longhouse of the"]) + let v = native_list_append(v, ["hlað", "noun", "hlað", "", "", "", "pile stack"]) + let v = native_list_append(v, ["jaðarr", "noun", "jaðrar", "jaðars", "jaðri", "", "a rim edge"]) + let v = native_list_append(v, ["rǫk", "noun", "rǫkin", "raka", "rǫkum", "", "argument reasoning"]) + let v = native_list_append(v, ["rǫkstóll", "noun", "rǫkstólar", "rǫkstóls", "rǫkstóli", "", "council chair judgement-seat"]) + let v = native_list_append(v, ["undorn", "noun", "undornir", "undornar", "undorninum", "", "mid-afternoon 3 p.m."]) + let v = native_list_append(v, ["nið", "noun", "niðar", "niðar", "niðinni", "", "based on compounds"]) + let v = native_list_append(v, ["aptann", "noun", "aptnar", "aptans", "aptni", "", "an evening"]) + let v = native_list_append(v, ["hǫrgr", "noun", "hǫrgar", "hǫrgs", "hǫrgi", "", "a sanctuary cairn"]) + let v = native_list_append(v, ["tǫng", "noun", "tengr", "tangar", "tǫnginni", "", "smiths tongs"]) + let v = native_list_append(v, ["Iðavǫllr", "noun", "Iðavǫllr", "Iðavallar", "", "", "Iðavöllr"]) + let v = native_list_append(v, ["vanr", "noun", "vanir", "vanar", "van", "", "a member of"]) + let v = native_list_append(v, ["Jǫtunheimr", "noun", "Jǫtunheimr", "Jǫtunheims", "", "", "Jotunheim"]) + let v = native_list_append(v, ["dróttinn", "noun", "dróttnar", "dróttins", "dróttni", "", "a lord master"]) + let v = native_list_append(v, ["Brimir", "noun", "Brimir", "Brimis", "Brimi", "", "Brimir name of"]) + let v = native_list_append(v, ["Bláinn", "noun", "Bláinn", "Bláins", "", "", "Bláinn name of"]) + let v = native_list_append(v, ["Mótsognir", "noun", "Mótsognir", "Mótsognis", "Mótsogni", "", "Mótsognir father of"]) + let v = native_list_append(v, ["Durinn", "noun", "Durinn", "Durins", "", "", "Durin name of"]) + let v = native_list_append(v, ["mannlíkan", "noun", "mannlíkǫn", "mannlíkans", "mannlíkani", "", "image of man"]) + let v = native_list_append(v, ["margr", "noun", "margar", "margs", "margi", "", "great number"]) + let v = native_list_append(v, ["Norðri", "noun", "Norðri", "Norðra", "", "", "name of a"]) + let v = native_list_append(v, ["Suðri", "noun", "Suðri", "Suðra", "", "", "name of a"]) + let v = native_list_append(v, ["Austri", "noun", "Austri", "Austra", "Austra", "", "name of a"]) + let v = native_list_append(v, ["Vestri", "noun", "Vestri", "Vestra", "", "", "name of a"]) + let v = native_list_append(v, ["Nýi", "noun", "Nýi", "Nýa", "", "", "name of a"]) + let v = native_list_append(v, ["Niði", "noun", "Niði", "Niða", "", "", "name of a"]) + let v = native_list_append(v, ["Alþjófr", "noun", "Alþjófr", "Alþjófs", "", "", "name of a"]) + let v = native_list_append(v, ["Dvalinn", "noun", "Dvalinn", "Dvalins", "", "", "name of a"]) + let v = native_list_append(v, ["Nár", "noun", "Nár", "Nárs", "", "", "name of a"]) + let v = native_list_append(v, ["Náinn", "noun", "Náinn", "Náins", "", "", "name of a"]) + let v = native_list_append(v, ["Dáinn", "noun", "Dáinn", "Dáins", "Dáni", "", "name of a"]) + let v = native_list_append(v, ["Nípingr", "noun", "Nípingr", "Nípings", "", "", "name of a"]) + let v = native_list_append(v, ["drykkja", "noun", "drykkjur", "drykkju", "drykkju", "", "drinking"]) + let v = native_list_append(v, ["Bifurr", "noun", "Bifurr", "Bifurs", "", "", "name of a"]) + let v = native_list_append(v, ["Bǫfurr", "noun", "Bǫfurr", "Bǫfurs", "", "", "name of a"]) + let v = native_list_append(v, ["Bǫmburr", "noun", "Bǫmburr", "Bǫmburs", "", "", "name of a"]) + let v = native_list_append(v, ["knǫttr", "noun", "knettir", "knattar", "knetti", "", "sphere ball orb"]) + let v = native_list_append(v, ["knǫrr", "noun", "knerrir", "knarrar", "knerri", "", "knorr knarr a"]) + let v = native_list_append(v, ["mjǫðm", "noun", "mjaðmir", "mjaðmar", "mjǫðminni", "", "hip os coxæ"]) + let v = native_list_append(v, ["Nóri", "noun", "Nóri", "Nóra", "", "", "name of a"]) + let v = native_list_append(v, ["Ánn", "noun", "Ánn", "Áns", "", "", "name of a"]) + let v = native_list_append(v, ["Ánarr", "noun", "Ánarr", "Ánars", "", "", "name of a"]) + let v = native_list_append(v, ["Óinn", "noun", "Óinn", "Óins", "", "", "name of a"]) + let v = native_list_append(v, ["Mjǫðvitnir", "noun", "Mjǫðvitnir", "Mjǫðvitnis", "Mjǫðvitni", "", "name of a"]) + let v = native_list_append(v, ["Veggr", "noun", "Veggr", "Veggs", "Vegg", "", "name of a"]) + let v = native_list_append(v, ["Gandálfr", "noun", "Gandálfr", "Gandálfs", "", "", "alternative form of"]) + let v = native_list_append(v, ["Vindalfr", "noun", "Vindalfr", "Vindalfs", "", "", "name of a"]) + let v = native_list_append(v, ["Þorinn", "noun", "Þorinn", "Þorins", "", "", "name of a"]) + let v = native_list_append(v, ["Þrár", "noun", "Þrár", "Þrás", "", "", "name of a"]) + let v = native_list_append(v, ["Þráinn", "noun", "Þráinn", "Þráins", "", "", "name of a"]) + let v = native_list_append(v, ["Þekkr", "noun", "Þekkr", "Þekks", "", "", "name of a"]) + let v = native_list_append(v, ["Litr", "noun", "Litr", "Litar", "", "", "name of a"]) + let v = native_list_append(v, ["Vitr", "noun", "Vitr", "Vitar", "", "", "name of a"]) + let v = native_list_append(v, ["Nýr", "noun", "Nýr", "Nýar", "", "", "name of a"]) + let v = native_list_append(v, ["Nýráðr", "noun", "Nýráðr", "Nýráðs", "", "", "name of a"]) + let v = native_list_append(v, ["Reginn", "noun", "Reginn", "Regins", "", "", "name of a"]) + let v = native_list_append(v, ["Ráðsviðr", "noun", "Ráðsviðr", "Ráðsviðs", "", "", "name of a"]) + let v = native_list_append(v, ["Fíli", "noun", "Fíli", "Fíla", "", "", "name of a"]) + let v = native_list_append(v, ["Kíli", "noun", "Kíli", "Kíla", "", "", "name of a"]) + let v = native_list_append(v, ["Fundinn", "noun", "Fundinn", "Fundins", "", "", "name of a"]) + let v = native_list_append(v, ["Náli", "noun", "Náli", "Nála", "", "", "name of a"]) + let v = native_list_append(v, ["Víli", "noun", "Víli", "Víla", "", "", "name of a"]) + let v = native_list_append(v, ["Hepti", "noun", "Hepti", "Hepta", "", "", "name of a"]) + let v = native_list_append(v, ["Hanarr", "noun", "Hanarr", "Hanars", "", "", "name of a"]) + let v = native_list_append(v, ["Svíurr", "noun", "Svíurr", "Svíurs", "", "", "name of a"]) + let v = native_list_append(v, ["Billingr", "noun", "Billingr", "Billings", "", "", "name of a"]) + let v = native_list_append(v, ["Brúni", "noun", "Brúni", "Brúna", "", "", "name of a"]) + let v = native_list_append(v, ["Bíldr", "noun", "Bíldr", "Bílds", "", "", "name of a"]) + let v = native_list_append(v, ["Buri", "noun", "Buri", "Bura", "Bura", "", "name of a"]) + let v = native_list_append(v, ["Frár", "noun", "Frár", "Frás", "", "", "name of a"]) + let v = native_list_append(v, ["Hornbori", "noun", "Hornbori", "Hornbora", "", "", "name of a"]) + let v = native_list_append(v, ["Frægr", "noun", "Frægr", "Frægar", "", "", "name of a"]) + let v = native_list_append(v, ["Lóni", "noun", "Lóni", "Lóna", "", "", "name of a"]) + let v = native_list_append(v, ["Aurvangr", "noun", "Aurvangr", "Aurvangs", "", "", "name of a"]) + let v = native_list_append(v, ["Eikinskjaldi", "noun", "Eikinskjaldi", "Eikinskjalda", "", "", "name of a"]) + let v = native_list_append(v, ["skúfr", "noun", "skúfar", "skúfs", "skúfi", "", "great skua"]) + let v = native_list_append(v, ["ljónar", "noun", "ljónarnir", "ljóna", "ljónum", "", "men people"]) + let v = native_list_append(v, ["beiskleiki", "noun", "beiskleiki", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["Lofarr", "noun", "Lofarr", "Lofars", "", "", "name of a"]) + let v = native_list_append(v, ["gand", "noun", "gand", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["haugr", "noun", "haugar", "haugs", "haugi", "", "howe mound dung"]) + let v = native_list_append(v, ["vangr", "noun", "vangar", "vangs", "vangi", "", "a garden field"]) + let v = native_list_append(v, ["aurr", "noun", "aurar", "aurs", "auri", "", "moist earth wet"]) + let v = native_list_append(v, ["Jǫruvǫllr", "noun", "Jǫruvǫllr", "Jǫruvallar", "", "", "placename"]) + let v = native_list_append(v, ["sjǫt", "noun", "sjatir", "sjatar", "sjǫtum", "", "home abode seat"]) + let v = native_list_append(v, ["Draupnir", "noun", "Draupnir", "Draupnis", "Draupni", "", "name of a"]) + let v = native_list_append(v, ["Dolgþrasir", "noun", "Dolgþrasir", "Dolgþrasis", "", "", "name of a"]) + let v = native_list_append(v, ["Hár", "noun", "Hár", "Hás", "", "", "name of a"]) + let v = native_list_append(v, ["Haugspori", "noun", "Haugspori", "Haugspora", "", "", "name of a"]) + let v = native_list_append(v, ["Hlévangr", "noun", "Hlévangr", "Hlévangs", "", "", "name of a"]) + let v = native_list_append(v, ["Glóinn", "noun", "Glóinn", "Glóins", "", "", "name of a"]) + let v = native_list_append(v, ["Óri", "noun", "Óri", "Óra", "", "", "name of a"]) + let v = native_list_append(v, ["Dúfr", "noun", "Dúfr", "Dúfar", "", "", "name of a"]) + let v = native_list_append(v, ["Andvari", "noun", "Andvari", "Andvara", "", "", "name of a"]) + let v = native_list_append(v, ["Skirfir", "noun", "Skirfir", "Skirfis", "", "", "name of a"]) + let v = native_list_append(v, ["Virfir", "noun", "Virfir", "Virfis", "", "", "name of a"]) + let v = native_list_append(v, ["Skáfiðr", "noun", "Skáfiðr", "Skáfiðar", "Skáfiði", "", "name of a"]) + let v = native_list_append(v, ["Ái", "noun", "Ái", "Áa", "", "", "name of a"]) + let v = native_list_append(v, ["Ginnarr", "noun", "Ginnarr", "Ginnars", "", "", "name of Odin"]) + let v = native_list_append(v, ["Frosti", "noun", "Frosti", "Frosta", "", "", "name of a"]) + let v = native_list_append(v, ["Fjalarr", "noun", "Fjalarr", "Fjalars", "", "", "name of a"]) + let v = native_list_append(v, ["Alfr", "noun", "Alfr", "Alfs", "", "", "name of a"]) + let v = native_list_append(v, ["langniðjar", "noun", "langniðjarnir", "langniðja", "langniðjum", "", "descending lineage on"]) + let v = native_list_append(v, ["styrkr", "noun", "styrkr", "", "", "", "strength bodily strength"]) + let v = native_list_append(v, ["naðr", "noun", "naðrar", "naðrs", "naðri", "", "snake serpent compare"]) + let v = native_list_append(v, ["naddr", "noun", "naddr", "", "", "", "stud nail"]) + let v = native_list_append(v, ["elfr", "noun", "elfar", "elfar", "elfi", "", "river"]) + let v = native_list_append(v, ["krækiber", "noun", "krækiber", "", "", "", "crowberry"]) + let v = native_list_append(v, ["krákr", "noun", "krákr", "", "", "", "crow or raven"]) + let v = native_list_append(v, ["krákuskel", "noun", "krákuskel", "", "", "", "mussel"]) + let v = native_list_append(v, ["elgr", "noun", "elgir", "elgs", "elg", "", "moose British elk"]) + let v = native_list_append(v, ["eljan", "noun", "eljan", "", "", "", "endurance energy"]) + let v = native_list_append(v, ["eljun", "noun", "eljun", "", "", "", "endurance energy"]) + let v = native_list_append(v, ["friðla", "noun", "friðlur", "friðlu", "friðlu", "", "a concubine a"]) + let v = native_list_append(v, ["víking", "noun", "víking", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["brauta", "noun", "brauta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Héðinn", "noun", "Héðinn", "Héðins", "Héðni", "", "a male given"]) + let v = native_list_append(v, ["snjóskriða", "noun", "snjóskriða", "", "", "", "snowslip avalanche"]) + let v = native_list_append(v, ["hanzki", "noun", "hanzkar", "hanzka", "hanzka", "", "glove"]) + let v = native_list_append(v, ["væringi", "noun", "væringar", "væringa", "væringa", "", "alternative form of"]) + let v = native_list_append(v, ["kolfr", "noun", "kolfr", "", "", "", "clapper tongue of"]) + let v = native_list_append(v, ["kolfskot", "noun", "kolfskot", "", "", "", "a bolt-shot"]) + let v = native_list_append(v, ["tjǫrn", "noun", "tjarnir", "tjarnar", "tjǫrninni", "", "small lake pond"]) + let v = native_list_append(v, ["púta", "noun", "pútur", "pútu", "pútu", "", "whore prostitute"]) + let v = native_list_append(v, ["kǫngull", "noun", "kǫnglar", "", "", "", "cluster bunch"]) + let v = native_list_append(v, ["kengr", "noun", "kengr", "", "", "", "a horseshoe-formed crook"]) + let v = native_list_append(v, ["kǫttr", "noun", "kettir", "kattar", "ketti", "", "cat"]) + let v = native_list_append(v, ["hreysikǫttr", "noun", "hreysikettir", "hreysikattar", "hreysiketti", "", "ermine weasel"]) + let v = native_list_append(v, ["fjalakǫttr", "noun", "fjalakettir", "fjalakattar", "", "", "mousetrap"]) + let v = native_list_append(v, ["trékǫttr", "noun", "trékettir", "trékattar", "", "", "mousetrap"]) + let v = native_list_append(v, ["Vár", "noun", "Vár", "Várar", "Vǫ́r", "", "A female deity"]) + let v = native_list_append(v, ["hlaði", "noun", "hlaðar", "hlaða", "hlaða", "", "stack pile"]) + let v = native_list_append(v, ["hnísa", "noun", "hnísa", "", "", "", "porpoise"]) + let v = native_list_append(v, ["sandi", "noun", "sandi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kviða", "noun", "kviður", "kviðu", "kviðu", "", "a ballad narrative"]) + let v = native_list_append(v, ["baugar", "noun", "baugar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ǫðlingr", "noun", "ǫðlingar", "ǫðlings", "ǫðlingi", "", "ruler prince"]) + let v = native_list_append(v, ["ǫkla", "noun", "ǫklu", "ǫklans", "ǫklanu", "", "ankle"]) + let v = native_list_append(v, ["ǫkli", "noun", "ǫkli", "ǫkla", "", "", "alternative form of"]) + let v = native_list_append(v, ["ǫlpt", "noun", "ǫlpt", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["álpt", "noun", "álptir", "álptar", "álptinni", "", "swan"]) + let v = native_list_append(v, ["englar", "noun", "englarnir", "engla", "englum", "", "the English Englishmen"]) + let v = native_list_append(v, ["svinna", "noun", "svinnur", "svinnu", "svinnu", "", "sagacity good sense"]) + let v = native_list_append(v, ["blót", "noun", "blótin", "blóts", "blóti", "", "offering"]) + let v = native_list_append(v, ["þýðingar", "noun", "þýðingar", "", "", "", "inflection of þýðing"]) + let v = native_list_append(v, ["skagi", "noun", "skagar", "skaga", "skaga", "", "low cape ness"]) + let v = native_list_append(v, ["fylja", "noun", "fyljur", "fylju", "fylju", "", "a filly young"]) + let v = native_list_append(v, ["stranda", "noun", "stranda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["vǫttr", "noun", "vettir", "vattar", "vetti", "", "glove mitten"]) + let v = native_list_append(v, ["strúz", "noun", "strúzar", "strúzins", "strúzi", "", "ostrich"]) + let v = native_list_append(v, ["snigil", "noun", "snigil", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["staðar", "noun", "staðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kvalar", "noun", "kvalar", "", "", "", "inflection of kvǫl"]) + let v = native_list_append(v, ["klatr", "noun", "klatr", "", "", "", "useless things"]) + let v = native_list_append(v, ["vegs", "noun", "vegs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gangandi", "noun", "gangendr", "ganganda", "ganganda", "", "traveller"]) + let v = native_list_append(v, ["jalda", "noun", "jǫldur", "jǫldu", "jǫldu", "", "mare"]) + let v = native_list_append(v, ["heyrn", "noun", "heyrnar", "heyrnar", "heyrninni", "", "hearing"]) + let v = native_list_append(v, ["kę́rr", "noun", "kę́rr", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Ymir", "noun", "Ymir", "Ymis", "Ymi", "", "Ymir the ancestor"]) + let v = native_list_append(v, ["jálmr", "noun", "jálmr", "", "", "", "a noise"]) + let v = native_list_append(v, ["smokkr", "noun", "smokkr", "", "", "", "a smock an"]) + let v = native_list_append(v, ["margar", "noun", "margar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hauka", "noun", "hauka", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["bekk", "noun", "bekk", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["hamr", "noun", "hamir", "hams", "ham", "", "shroud covering"]) + let v = native_list_append(v, ["hamra", "noun", "hamra", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["malmar", "noun", "malmar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["setr", "noun", "setrin", "setrs", "setri", "", "seat residence"]) + let v = native_list_append(v, ["Þórshǫfn", "noun", "Þórshǫfn", "Þórshafnar", "", "", "Tórshavn the capital"]) + let v = native_list_append(v, ["óðr", "noun", "óðir", "óðar", "óði", "", "song poetry"]) + let v = native_list_append(v, ["leira", "noun", "leirur", "leiru", "leiru", "", "muddy shore mud-flat"]) + let v = native_list_append(v, ["varpi", "noun", "varpi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hrǫnn", "noun", "hrannir", "hrannar", "hrǫnninni", "", "wave billow"]) + let v = native_list_append(v, ["markar", "noun", "markar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["Ullr", "noun", "Ullr", "Ullar", "Ulli", "", "Ullr name of"]) + let v = native_list_append(v, ["seiðr", "noun", "seiðar", "seiðar", "seiði", "", "shamanism"]) + let v = native_list_append(v, ["grǫftr", "noun", "greftir", "graftar", "grefti", "", "the act of"]) + let v = native_list_append(v, ["ᛘ", "noun", "ᛘ", "", "", "", "abbreviation of maðr"]) + let v = native_list_append(v, ["hǫfn", "noun", "hafnir", "hafnar", "hǫfninni", "", "port harbor haven"]) + let v = native_list_append(v, ["maurr", "noun", "maurar", "maurs", "mauri", "", "ant"]) + let v = native_list_append(v, ["víkings", "noun", "víkings", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["barni", "noun", "barni", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["Mímir", "noun", "Mímir", "Mímis", "Mími", "", "Mímir"]) + let v = native_list_append(v, ["sekk", "noun", "sekk", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["skauti", "noun", "skautar", "skauta", "", "", "kerchief a square"]) + let v = native_list_append(v, ["ulf", "noun", "ulf", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["þykkja", "noun", "þykkjur", "þykkju", "þykkju", "", "thought"]) + let v = native_list_append(v, ["ván", "noun", "vánir", "vánar", "váninni", "", "hope expectation"]) + let v = native_list_append(v, ["Yggdrasill", "noun", "Yggdrasill", "", "", "", "an unclear word"]) + let v = native_list_append(v, ["Véi", "noun", "Véi", "Véa", "Véa", "", "Vé one of"]) + let v = native_list_append(v, ["viða", "noun", "viða", "viðu", "", "", "mast"]) + let v = native_list_append(v, ["ǫr", "noun", "ǫrvar", "ǫrvar", "ǫru", "", "arrow"]) + let v = native_list_append(v, ["sorgir", "noun", "sorgir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["purka", "noun", "purkur", "purku", "purku", "", "sow female pig"]) + let v = native_list_append(v, ["þjófr", "noun", "þjófar", "þjófs", "þjófi", "", "thief"]) + let v = native_list_append(v, ["þorna", "noun", "þorna", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["golli", "noun", "golli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Malla", "noun", "Malla", "", "", "", "genitive of Mallar"]) + let v = native_list_append(v, ["hugir", "noun", "hugir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hugar", "noun", "hugar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["huga", "noun", "huga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kveldi", "noun", "kveldi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["etur", "noun", "etur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["arfar", "noun", "arfar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vengi", "noun", "vengin", "vengis", "venginu", "", "upper cheek"]) + let v = native_list_append(v, ["galdr", "noun", "galdrar", "galdrs", "galdri", "", "magical chanting especially"]) + let v = native_list_append(v, ["jarlar", "noun", "jarlar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ullu", "noun", "ullu", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["flekk", "noun", "flekk", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["feilan", "noun", "feilan", "", "", "", "wolfling little wolf"]) + let v = native_list_append(v, ["dagan", "noun", "daganir", "daganar", "daganinni", "", "dawn daybreak"]) + let v = native_list_append(v, ["Áshildr", "noun", "Áshildr", "", "", "", "a female given"]) + let v = native_list_append(v, ["úri", "noun", "úri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ermina", "noun", "ermina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["fiskum", "noun", "fiskum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sekkr", "noun", "sekkir", "sekkjar", "sekk", "", "sack big bag"]) + let v = native_list_append(v, ["hesti", "noun", "hesti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hestum", "noun", "hestum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hesta", "noun", "hesta", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["morgna", "noun", "morgna", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["nálar", "noun", "nálar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["steini", "noun", "steini", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["steinum", "noun", "steinum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vargi", "noun", "vargi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tilfelli", "noun", "tilfelli", "", "", "", "case occurrence circumstance"]) + let v = native_list_append(v, ["hlutar", "noun", "hlutar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hlutir", "noun", "hlutir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hlut", "noun", "hlut", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["hjalt", "noun", "hjǫlt", "hjalts", "hjalti", "", "knob at the"]) + let v = native_list_append(v, ["hjarna", "noun", "hjarna", "", "", "", "inflection of hjarni"]) + let v = native_list_append(v, ["gands", "noun", "gands", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["stundir", "noun", "stundir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["sundi", "noun", "sundi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["brunni", "noun", "brunni", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["brunnum", "noun", "brunnum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["himni", "noun", "himni", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["himnum", "noun", "himnum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["kringla", "noun", "kringla", "", "", "", "disk circle orb"]) + let v = native_list_append(v, ["himnar", "noun", "himnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["kinnum", "noun", "kinnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["nefi", "noun", "nefar", "nefa", "nefa", "", "nephew"]) + let v = native_list_append(v, ["Fjǫrgyn", "noun", "Fjǫrgyn", "", "", "", "Jǫrð “Earth” the"]) + let v = native_list_append(v, ["firði", "noun", "firði", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["vitran", "noun", "vitranir", "vitranar", "vitraninni", "", "revelation"]) + let v = native_list_append(v, ["berserkr", "noun", "berserkir", "berserks", "berserk", "", "a raging warrior"]) + let v = native_list_append(v, ["fjalli", "noun", "fjalli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fjalls", "noun", "fjalls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vegum", "noun", "vegum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["varir", "noun", "varir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["haukum", "noun", "haukum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hauks", "noun", "hauks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["logum", "noun", "logum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["loginn", "noun", "loginn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["laukum", "noun", "laukum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["borði", "noun", "borði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["borðum", "noun", "borðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["orðum", "noun", "orðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["orði", "noun", "orði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["orðs", "noun", "orðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["orðinu", "noun", "orðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["orðsins", "noun", "orðsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["orðin", "noun", "orðin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["orðanna", "noun", "orðanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["galdramaðr", "noun", "galdramaðr", "", "", "", "wizard"]) + let v = native_list_append(v, ["seiðmaðr", "noun", "seiðmaðr", "", "", "", "wizard"]) + let v = native_list_append(v, ["seiðkona", "noun", "seiðkona", "", "", "", "witch sorceress"]) + let v = native_list_append(v, ["borgir", "noun", "borgir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ættum", "noun", "ættum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ættar", "noun", "ættar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["flugur", "noun", "flugur", "", "", "", "inflection of fluga"]) + let v = native_list_append(v, ["gipt", "noun", "giptir", "giptar", "giptu", "", "gift"]) + let v = native_list_append(v, ["nausts", "noun", "nausts", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nausta", "noun", "nausta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["tannar", "noun", "tannar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bókum", "noun", "bókum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bókar", "noun", "bókar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["súm", "noun", "súm", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["sakir", "noun", "sakir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sakarinnar", "noun", "sakarinnar", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["beysti", "noun", "beystin", "beystis", "beystinu", "", "ham gammon of"]) + let v = native_list_append(v, ["Skuld", "noun", "Skuld", "Skuldar", "", "", "one of the"]) + let v = native_list_append(v, ["Noregr", "noun", "Noregr", "Noregs", "", "", "Norway a former"]) + let v = native_list_append(v, ["búnaðr", "noun", "búnaðir", "búnaðar", "búnaði", "", "household housekeeping"]) + let v = native_list_append(v, ["stubb", "noun", "stubb", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["væzka", "noun", "væzkur", "væzku", "væzku", "", "liquid"]) + let v = native_list_append(v, ["nǫ́tt", "noun", "nætr", "nætr", "", "", "u-umlauted form of"]) + let v = native_list_append(v, ["Valhǫll", "noun", "Valhǫll", "Valhallar", "Valhǫllu", "", "Valhalla"]) + let v = native_list_append(v, ["hǫll", "noun", "hallir", "hallar", "hǫllu", "", "hall"]) + let v = native_list_append(v, ["beizl", "noun", "beizlin", "beizls", "beizli", "", "bridle"]) + let v = native_list_append(v, ["Fróða", "noun", "Fróða", "", "", "", "oblique of Fróði"]) + let v = native_list_append(v, ["Frey", "noun", "Frey", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["læknishǫnd", "noun", "læknishendr", "læknishandar", "læknishendi", "", "a healing hand"]) + let v = native_list_append(v, ["Yngva", "noun", "Yngva", "", "", "", "accusative/dative/genitive of Yngvi"]) + let v = native_list_append(v, ["sǫk", "noun", "sakar", "sakar", "sǫkinni", "", "legal case action"]) + let v = native_list_append(v, ["aptan", "noun", "aptan", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ása", "noun", "ása", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["kør", "noun", "kørin", "kørs", "køri", "", "choice decision election"]) + let v = native_list_append(v, ["aspir", "noun", "aspir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["galdrar", "noun", "galdrar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["galdrs", "noun", "galdrs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["katli", "noun", "katli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["landit", "noun", "landit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["Taðkr", "noun", "Taðkr", "", "", "", "a male given"]) + let v = native_list_append(v, ["tungu", "noun", "tungu", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["skelmir", "noun", "skelmar", "skelmis", "", "", "rogue"]) + let v = native_list_append(v, ["teinn", "noun", "teinar", "teins", "teini", "", "twig branch"]) + let v = native_list_append(v, ["Snorri", "noun", "Snorri", "Snorra", "Snorra", "", "a male given"]) + let v = native_list_append(v, ["strandar", "noun", "strandar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["barð", "noun", "bǫrð", "barðs", "barði", "", "something with a"]) + let v = native_list_append(v, ["prestum", "noun", "prestum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["rǫðull", "noun", "rǫðlar", "rǫðuls", "rǫðli", "", "glory halo"]) + let v = native_list_append(v, ["Gunni", "noun", "Gunni", "", "", "", "accusative of Guðr"]) + let v = native_list_append(v, ["Birni", "noun", "Birni", "", "", "", "dative of Bjǫrn"]) + let v = native_list_append(v, ["stól", "noun", "stól", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["leó", "noun", "leœr", "leóar", "leóinni", "", "alternative form of"]) + let v = native_list_append(v, ["heitis", "noun", "heitis", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["vágr", "noun", "vágar", "vágs", "vági", "", "ocean sea"]) + let v = native_list_append(v, ["Ragnarr", "noun", "Ragnarr", "", "", "", "a male given"]) + let v = native_list_append(v, ["vetrar", "noun", "vetrar", "", "", "", "inflection of vetr"]) + let v = native_list_append(v, ["margs", "noun", "margs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["leikar", "noun", "leikar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["laugar", "noun", "laugar", "", "", "", "inflection of laug"]) + let v = native_list_append(v, ["Játvarðr", "noun", "Játvarðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["galdra", "noun", "galdra", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["sæta", "noun", "sætur", "sætu", "sætu", "", "a woman whose"]) + let v = native_list_append(v, ["vandahús", "noun", "vandahús", "", "", "", "wicker house as"]) + let v = native_list_append(v, ["freyja", "noun", "freyja", "", "", "", "lady"]) + let v = native_list_append(v, ["Dáni", "noun", "Dáni", "", "", "", "dative of Dáinn"]) + let v = native_list_append(v, ["Gautstafr", "noun", "Gautstafr", "", "", "", "a male given"]) + let v = native_list_append(v, ["skilnaðr", "noun", "skilnaðr", "", "", "", "separation parting divorce"]) + let v = native_list_append(v, ["Bura", "noun", "Bura", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["humra", "noun", "humra", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["saup", "noun", "saupin", "saups", "saupi", "", "buttermilk"]) + let v = native_list_append(v, ["Kinaðr", "noun", "Kinaðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["knút", "noun", "knút", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["jǫrmunr", "noun", "jǫrmunar", "jǫrmuns", "jǫrmuni", "", "world earth"]) + let v = native_list_append(v, ["tangir", "noun", "tangir", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["Kalman", "noun", "Kalman", "Kalmans", "Kalmani", "", "a male given"]) + let v = native_list_append(v, ["hersa", "noun", "hersa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["kumbl", "noun", "kumbl", "", "", "", "a burial monument"]) + let v = native_list_append(v, ["djǫfull", "noun", "djǫflar", "djǫfuls", "djǫfli", "", "devil"]) + let v = native_list_append(v, ["vǫrn", "noun", "varnir", "varnar", "vǫrninni", "", "defence"]) + let v = native_list_append(v, ["draf", "noun", "drǫf", "drafs", "drafi", "", "draff husks"]) + let v = native_list_append(v, ["viku", "noun", "viku", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["spǫlr", "noun", "spelir", "spalar", "speli", "", "rail bar"]) + let v = native_list_append(v, ["billingr", "noun", "billingr", "", "", "", "twin"]) + let v = native_list_append(v, ["séttungr", "noun", "séttungr", "", "", "", "sixth part"]) + let v = native_list_append(v, ["setningr", "noun", "setningr", "", "", "", "set purpose design"]) + let v = native_list_append(v, ["eldsváði", "noun", "eldsváði", "", "", "", "danger of fire"]) + let v = native_list_append(v, ["fjǫl", "noun", "fjalar", "fjalar", "", "", "deal board"]) + let v = native_list_append(v, ["sveindómr", "noun", "sveindómr", "", "", "", "boyhood youth"]) + let v = native_list_append(v, ["geldfé", "noun", "geldfé", "", "", "", "barren sheep"]) + let v = native_list_append(v, ["illgørð", "noun", "illgørð", "", "", "", "evil doing misdeed"]) + let v = native_list_append(v, ["beini", "noun", "beinar", "beina", "beina", "", "help benefit"]) + let v = native_list_append(v, ["jarna", "noun", "jarna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["nygla", "noun", "nygla", "", "", "", "drain plug"]) + let v = native_list_append(v, ["þunnvangi", "noun", "þunnvangi", "", "", "", "temple"]) + let v = native_list_append(v, ["venzl", "noun", "venzl", "", "", "", "relationship ties of"]) + let v = native_list_append(v, ["rjóðr", "noun", "rjóðrin", "rjóðrs", "rjóðri", "", "open space in"]) + let v = native_list_append(v, ["sǫgn", "noun", "sagnir", "sagnar", "sǫgninni", "", "speech"]) + let v = native_list_append(v, ["verðr", "noun", "verðr", "verðar", "", "", "meal"]) + let v = native_list_append(v, ["vinir", "noun", "vinir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ᚦᚢᚱ", "noun", "ᚦᚢᚱ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᚴᚢᚦ", "noun", "ᚴᚢᚦ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["eisa", "noun", "eisur", "eisu", "eisu", "", "glowing embers"]) + let v = native_list_append(v, ["falkr", "noun", "falkr", "", "", "", "falcon hawk"]) + let v = native_list_append(v, ["ausker", "noun", "ausker", "", "", "", "bail"]) + let v = native_list_append(v, ["skaldi", "noun", "skaldi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lægð", "noun", "lægðir", "lægðar", "lægðinni", "", "a hollow low"]) + let v = native_list_append(v, ["hœnsn", "noun", "hœnsn", "", "", "", "hens fowls"]) + let v = native_list_append(v, ["slyðra", "noun", "slyðra", "", "", "", "a flabby lump"]) + let v = native_list_append(v, ["búi", "noun", "búar", "búa", "búa", "", "dweller inhabitant"]) + let v = native_list_append(v, ["kvern", "noun", "kvernir", "kvernar", "kverninni", "", "a millstone"]) + let v = native_list_append(v, ["vitnir", "noun", "vitnar", "vitnis", "vitni", "", "wolf"]) + let v = native_list_append(v, ["hjallr", "noun", "hjallr", "", "", "", "scaffold frame of"]) + let v = native_list_append(v, ["kverk", "noun", "kverkr", "kverkar", "kverkinni", "", "the angle below"]) + let v = native_list_append(v, ["akrdái", "noun", "akrdái", "", "", "", "a kind of"]) + let v = native_list_append(v, ["hlýðni", "noun", "hlýðni", "", "", "", "obedience homage"]) + let v = native_list_append(v, ["hlœgi", "noun", "hlœgi", "", "", "", "ridicule"]) + let v = native_list_append(v, ["hlébarðr", "noun", "hlébarðr", "", "", "", "leopard"]) + let v = native_list_append(v, ["þúfa", "noun", "þúfur", "þúfu", "þúfu", "", "mound knoll"]) + let v = native_list_append(v, ["sveipr", "noun", "sveipar", "sveips", "sveipi", "", "fold folding"]) + let v = native_list_append(v, ["hnjóskr", "noun", "hnjóskr", "", "", "", "touchwood"]) + let v = native_list_append(v, ["gengi", "noun", "gengin", "gengis", "genginu", "", "luck success"]) + let v = native_list_append(v, ["broddr", "noun", "broddr", "", "", "", "spike"]) + let v = native_list_append(v, ["fræs", "noun", "fræs", "", "", "", "hissing"]) + let v = native_list_append(v, ["frjó", "noun", "frjóin", "frjós", "frjói", "", "seed"]) + let v = native_list_append(v, ["lǫgg", "noun", "laggar", "laggar", "lǫgginni", "", "groove in the"]) + let v = native_list_append(v, ["váði", "noun", "váði", "", "", "", "scathe danger peril"]) + let v = native_list_append(v, ["tróð", "noun", "tróð", "", "", "", "faggot-wood"]) + let v = native_list_append(v, ["sigrún", "noun", "sigrúnar", "sigrúnar", "sigrúninni", "", "victory rune a"]) + let v = native_list_append(v, ["angrinn", "noun", "angrinn", "", "", "", "nominative/accusative singular definite"]) + let v = native_list_append(v, ["angrinum", "noun", "angrinum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["angrsins", "noun", "angrsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["angri", "noun", "angri", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["angrs", "noun", "angrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["kytja", "noun", "kytja", "", "", "", "hovel small cottage"]) + let v = native_list_append(v, ["bœr", "noun", "bœr", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Mjǫllnir", "noun", "Mjǫllnir", "Mjǫllnis", "Mjǫllni", "", "Mjollnir"]) + let v = native_list_append(v, ["Jaðarr", "noun", "Jaðarr", "Jaðars", "Jaðri", "", "Jæren a traditional"]) + let v = native_list_append(v, ["Miklagarðr", "noun", "Miklagarðr", "", "", "", "Byzantium Constantinople the"]) + let v = native_list_append(v, ["vápnatak", "noun", "vápnatǫk", "vápnataks", "vápnataki", "", "lit. a weapons-touching"]) + let v = native_list_append(v, ["Hróðný", "noun", "Hróðný", "", "", "", "a female given"]) + let v = native_list_append(v, ["skalda", "noun", "skalda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Kjaran", "noun", "Kjaran", "Kjarans", "Kjarani", "", "a male given"]) + let v = native_list_append(v, ["Eðna", "noun", "Eðna", "Eðnu", "Eðnu", "", "a female given"]) + let v = native_list_append(v, ["Dufgus", "noun", "Dufgus", "Dufgusar", "Dufgusi", "", "a male given"]) + let v = native_list_append(v, ["Bekan", "noun", "Bekan", "Bekans", "", "", "a male given"]) + let v = native_list_append(v, ["Bjólan", "noun", "Bjólan", "Bjólans", "", "", "a male given"]) + let v = native_list_append(v, ["Víðarr", "noun", "Víðarr", "", "", "", "the name of"]) + let v = native_list_append(v, ["skífa", "noun", "skífa", "", "", "", "a slice"]) + let v = native_list_append(v, ["líkn", "noun", "līknar", "līknar", "līkn", "", "mercy grace healing"]) + let v = native_list_append(v, ["þrái", "noun", "þrár", "þrá", "þrá", "", "obstinacy"]) + let v = native_list_append(v, ["sylgja", "noun", "sylgjur", "sylgju", "sylgju", "", "brooch buckle"]) + let v = native_list_append(v, ["meini", "noun", "meini", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mið", "noun", "miðja", "miðs", "miði", "", "middle"]) + let v = native_list_append(v, ["vamba", "noun", "vamba", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["hamri", "noun", "hamri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mjǫlkr", "noun", "mjǫlkr", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["eiðs", "noun", "eiðs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["manns", "noun", "manns", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["mǫnnum", "noun", "mǫnnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hundrinn", "noun", "hundrinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["hundum", "noun", "hundum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hundinn", "noun", "hundinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["hundsins", "noun", "hundsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["hundinum", "noun", "hundinum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["hundarnir", "noun", "hundarnir", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["hundana", "noun", "hundana", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["hundunum", "noun", "hundunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["hundanna", "noun", "hundanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["aldrs", "noun", "aldrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["ǫldrum", "noun", "ǫldrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["jarðir", "noun", "jarðir", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["jǫrðum", "noun", "jǫrðum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hjǫrtu", "noun", "hjǫrtu", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["hjǫrtum", "noun", "hjǫrtum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hjǫrtun", "noun", "hjǫrtun", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["hjartat", "noun", "hjartat", "", "", "", "nominative/accusative singular definite"]) + let v = native_list_append(v, ["hjǫrtunum", "noun", "hjǫrtunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["hjartanna", "noun", "hjartanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["hjartanu", "noun", "hjartanu", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["hjartans", "noun", "hjartans", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["sǫgur", "noun", "sǫgur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["sǫgu", "noun", "sǫgu", "", "", "", "accusative/dative/genitive singular indefinite"]) + let v = native_list_append(v, ["sǫgum", "noun", "sǫgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bǫrn", "noun", "bǫrn", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["bǫrnum", "noun", "bǫrnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["eiðum", "noun", "eiðum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["fœðu", "noun", "fœðu", "", "", "", "accusative/dative/genitive singular indefinite"]) + let v = native_list_append(v, ["bátar", "noun", "bátar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["bátarnir", "noun", "bátarnir", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["bátrinn", "noun", "bátrinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["báts", "noun", "báts", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["báti", "noun", "báti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bátinn", "noun", "bátinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["báta", "noun", "báta", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["bátum", "noun", "bátum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["bjarkar", "noun", "bjarkar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["berkir", "noun", "berkir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["bǫrk", "noun", "bǫrk", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["berki", "noun", "berki", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["bjǫrku", "noun", "bjǫrku", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["bjarka", "noun", "bjarka", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["bjǫrkum", "noun", "bjǫrkum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["bǫrkrinn", "noun", "bǫrkrinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["berkirnir", "noun", "berkirnir", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["feðr", "noun", "feðr", "", "", "", "inflection of faðir"]) + let v = native_list_append(v, ["fǫður", "noun", "fǫður", "", "", "", "accusative/dative/genitive singular indefinite"]) + let v = native_list_append(v, ["feðrum", "noun", "feðrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["feðra", "noun", "feðra", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["blóðs", "noun", "blóðs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["gǫrpum", "noun", "gǫrpum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["garps", "noun", "garps", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["garpi", "noun", "garpi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["garprinn", "noun", "garprinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["garparnir", "noun", "garparnir", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["garpinn", "noun", "garpinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["garpinum", "noun", "garpinum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["garpsins", "noun", "garpsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["garpana", "noun", "garpana", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["gǫrpunum", "noun", "gǫrpunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["garpanna", "noun", "garpanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["jǫrðu", "noun", "jǫrðu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hendr", "noun", "hendr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["handar", "noun", "handar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["hǫndum", "noun", "hǫndum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hildar", "noun", "hildar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["hildi", "noun", "hildi", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["hildir", "noun", "hildir", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["hildum", "noun", "hildum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["jǫldu", "noun", "jǫldu", "", "", "", "accusative/dative/genitive singular indefinite"]) + let v = native_list_append(v, ["jǫldur", "noun", "jǫldur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["jǫldum", "noun", "jǫldum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["jaldna", "noun", "jaldna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["hirðis", "noun", "hirðis", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["hirðar", "noun", "hirðar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hirðum", "noun", "hirðum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["okum", "noun", "okum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["nætr", "noun", "nætr", "", "", "", "inflection of nátt"]) + let v = native_list_append(v, ["náttum", "noun", "náttum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["náttar", "noun", "náttar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["nátta", "noun", "nátta", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["dǫgum", "noun", "dǫgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dagrinn", "noun", "dagrinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["nǫsum", "noun", "nǫsum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["merar", "noun", "merar", "", "", "", "inflection of merr"]) + let v = native_list_append(v, ["miltis", "noun", "miltis", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["miltjum", "noun", "miltjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["miltja", "noun", "miltja", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["ormum", "noun", "ormum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["skjǫld", "noun", "skjǫld", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["skildi", "noun", "skildi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["skjaldar", "noun", "skjaldar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["skjǫldu", "noun", "skjǫldu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["skjalda", "noun", "skjalda", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["skjǫldum", "noun", "skjǫldum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["synir", "noun", "synir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["syni", "noun", "syni", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["spǫrvar", "noun", "spǫrvar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["spǫr", "noun", "spǫr", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["strendr", "noun", "strendr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["strǫndum", "noun", "strǫndum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["arnar", "noun", "arnar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["ernir", "noun", "ernir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["ǫrnu", "noun", "ǫrnu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["erni", "noun", "erni", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["ǫrnum", "noun", "ǫrnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["ǫrvar", "noun", "ǫrvar", "", "", "", "inflection of ǫr"]) + let v = native_list_append(v, ["ǫrum", "noun", "ǫrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["ǫrva", "noun", "ǫrva", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["mjaðar", "noun", "mjaðar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["mjǫð", "noun", "mjǫð", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["systr", "noun", "systr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["systrum", "noun", "systrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["systra", "noun", "systra", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["vettir", "noun", "vettir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["vattar", "noun", "vattar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["vetti", "noun", "vetti", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["vǫtt", "noun", "vǫtt", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["vǫttu", "noun", "vǫttu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["vǫttum", "noun", "vǫttum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["vatta", "noun", "vatta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["vǫl", "noun", "vǫl", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["velir", "noun", "velir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["vǫlum", "noun", "vǫlum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["vǫlu", "noun", "vǫlu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["tjaldar", "noun", "tjaldar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["tjalds", "noun", "tjalds", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["tjalda", "noun", "tjalda", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["tjǫldum", "noun", "tjǫldum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["tjaldi", "noun", "tjaldi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["vǫlur", "noun", "vǫlur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["fjarðar", "noun", "fjarðar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["firðir", "noun", "firðir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["fjǫrðum", "noun", "fjǫrðum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["fjǫrðu", "noun", "fjǫrðu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["fjarða", "noun", "fjarða", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["birnir", "noun", "birnir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["bjarnar", "noun", "bjarnar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["bjǫrnu", "noun", "bjǫrnu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["bjǫrnum", "noun", "bjǫrnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["bjarna", "noun", "bjarna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["orðit", "noun", "orðit", "", "", "", "nominative/accusative singular definite"]) + let v = native_list_append(v, ["ulfheðinn", "noun", "ulfheðnar", "ulfheðins", "", "", "a Norse warrior"]) + let v = native_list_append(v, ["serkr", "noun", "serkir", "serks", "serk", "", "shirt"]) + let v = native_list_append(v, ["eykr", "noun", "eykir", "eykjar", "eyk", "", "draft animal"]) + let v = native_list_append(v, ["sǫngvar", "noun", "sǫngvar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["sǫngva", "noun", "sǫngva", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["sǫngum", "noun", "sǫngum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["sǫng", "noun", "sǫng", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["sǫngvi", "noun", "sǫngvi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["sævar", "noun", "sævar", "", "", "", "inflection of sær"]) + let v = native_list_append(v, ["sævi", "noun", "sævi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["sæva", "noun", "sæva", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["sævum", "noun", "sævum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hjǫrvar", "noun", "hjǫrvar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hjǫr", "noun", "hjǫr", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["hjǫrva", "noun", "hjǫrva", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["hjǫrum", "noun", "hjǫrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hjǫrvi", "noun", "hjǫrvi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hjǫrs", "noun", "hjǫrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["hjarar", "noun", "hjarar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hǫr", "noun", "hǫr", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["hǫrvi", "noun", "hǫrvi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["hǫrvar", "noun", "hǫrvar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hǫrva", "noun", "hǫrva", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["hǫrum", "noun", "hǫrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hǫrs", "noun", "hǫrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["mǫrs", "noun", "mǫrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["sjóvar", "noun", "sjóvar", "", "", "", "inflection of sjór"]) + let v = native_list_append(v, ["sjó", "noun", "sjó", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["sjóvi", "noun", "sjóvi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["sjóvum", "noun", "sjóvum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["sjóva", "noun", "sjóva", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["sjórinn", "noun", "sjórinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["maðrinn", "noun", "maðrinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["nǫðrur", "noun", "nǫðrur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["nǫðru", "noun", "nǫðru", "", "", "", "accusative/dative/genitive singular indefinite"]) + let v = native_list_append(v, ["nǫðrum", "noun", "nǫðrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["naðrs", "noun", "naðrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["naðrar", "noun", "naðrar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["naðri", "noun", "naðri", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["byri", "noun", "byri", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["bekkjar", "noun", "bekkjar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["bekks", "noun", "bekks", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["bekkir", "noun", "bekkir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["bekki", "noun", "bekki", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["bekkjum", "noun", "bekkjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["bekkja", "noun", "bekkja", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["byrir", "noun", "byrir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["byrjum", "noun", "byrjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["fǫx", "noun", "fǫx", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["fǫxum", "noun", "fǫxum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["brauðs", "noun", "brauðs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["berserkir", "noun", "berserkir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["serkir", "noun", "serkir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["serks", "noun", "serks", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["serk", "noun", "serk", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["serki", "noun", "serki", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["serkum", "noun", "serkum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["serka", "noun", "serka", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["berserki", "noun", "berserki", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["berserka", "noun", "berserka", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["berserkum", "noun", "berserkum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["frændr", "noun", "frændr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["frænda", "noun", "frænda", "", "", "", "inflection of frændi"]) + let v = native_list_append(v, ["frændum", "noun", "frændum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["brauði", "noun", "brauði", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["tennr", "noun", "tennr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["teðr", "noun", "teðr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["tǫnnum", "noun", "tǫnnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["trǫf", "noun", "trefr", "trafar", "trǫfinni", "", "fringe decorative border"]) + let v = native_list_append(v, ["trafs", "noun", "trafs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["trefr", "noun", "trefr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["þari", "noun", "þari", "", "", "", "kelp seaweed"]) + let v = native_list_append(v, ["rœtr", "noun", "rœtr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["rótar", "noun", "rótar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["rótum", "noun", "rótum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["róta", "noun", "róta", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["reyðarhvalr", "noun", "reyðarhvalar", "reyðarhvals", "reyðarhvali", "", "rorqual"]) + let v = native_list_append(v, ["reyðr", "noun", "reyðar", "reyðar", "reyði", "", "rorqual fin whale"]) + let v = native_list_append(v, ["reyði", "noun", "reyði", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["reyðum", "noun", "reyðum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["reyða", "noun", "reyða", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["trǫfum", "noun", "trǫfum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["lǫxum", "noun", "lǫxum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["mǫtum", "noun", "mǫtum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["mastr", "noun", "mastr", "", "", "", "mast the long"]) + let v = native_list_append(v, ["nýjung", "noun", "nýjungar", "nýjungar", "nýjungu", "", "innovation"]) + let v = native_list_append(v, ["vendir", "noun", "vendir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["vǫnd", "noun", "vǫnd", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["vandar", "noun", "vandar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["vǫndu", "noun", "vǫndu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["vǫndum", "noun", "vǫndum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["vǫmb", "noun", "vambar", "vambar", "vǫmbinni", "", "womb"]) + let v = native_list_append(v, ["vǫk", "noun", "vakar", "vakar", "vǫkinni", "", "a hole in"]) + let v = native_list_append(v, ["vǫkum", "noun", "vǫkum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["gǫrn", "noun", "garnar", "garnar", "gǫrninni", "", "gut entrail"]) + let v = native_list_append(v, ["garnar", "noun", "garnar", "", "", "", "inflection of gǫrn"]) + let v = native_list_append(v, ["gǫrnum", "noun", "gǫrnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["gremi", "noun", "gremi", "greminnar", "greminni", "", "wrath anger"]) + let v = native_list_append(v, ["guðr", "noun", "gunnar", "gunnar", "gunni", "", "battle war"]) + let v = native_list_append(v, ["gyrðill", "noun", "gyrðilar", "gyrðils", "gyrðili", "", "girdle"]) + let v = native_list_append(v, ["gyrðilinn", "noun", "gyrðilinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["gyrðil", "noun", "gyrðil", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["gyrðila", "noun", "gyrðila", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["gyrðilum", "noun", "gyrðilum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["gyrðili", "noun", "gyrðili", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["gyrðils", "noun", "gyrðils", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["gyrðilar", "noun", "gyrðilar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["gǫltr", "noun", "geltir", "galtar", "gelti", "", "boar"]) + let v = native_list_append(v, ["gǫlt", "noun", "gǫlt", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["gelti", "noun", "gelti", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["geltir", "noun", "geltir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["gǫltu", "noun", "gǫltu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["gǫltum", "noun", "gǫltum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["vápnum", "noun", "vápnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["vápna", "noun", "vápna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["ófǫr", "noun", "ófǫr", "", "", "", "defeat"]) + let v = native_list_append(v, ["þróttr", "noun", "þróttr", "", "", "", "strength might valour"]) + let v = native_list_append(v, ["hlutr", "noun", "hlutir", "hlutar", "hlut", "", "part thing"]) + let v = native_list_append(v, ["munr", "noun", "munir", "munar", "mun", "", "mind"]) + let v = native_list_append(v, ["fǫr", "noun", "farar", "farar", "fǫrinni", "", "journey"]) + let v = native_list_append(v, ["munar", "noun", "munar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["pyttr", "noun", "pyttr", "", "", "", "pit pool cesspool"]) + let v = native_list_append(v, ["tíðir", "noun", "tíðir", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["tírr", "noun", "tírir", "tírar", "tír", "", "glory honour"]) + let v = native_list_append(v, ["veptr", "noun", "veptr", "", "", "", "woof weft"]) + let v = native_list_append(v, ["dyrgja", "noun", "dyrgjur", "dyrgju", "dyrgju", "", "a female dwarf"]) + let v = native_list_append(v, ["flœr", "noun", "flœr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["geiri", "noun", "geiri", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["djúp", "noun", "djúpin", "djúps", "djúpi", "", "deep water deep"]) + let v = native_list_append(v, ["eðli", "noun", "eðli", "", "", "", "nature inborn characteristics"]) + let v = native_list_append(v, ["keipa", "noun", "keipa", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["kerra", "noun", "kerrur", "kerru", "kerru", "", "a chariot"]) + let v = native_list_append(v, ["ǫlr", "noun", "ǫlr", "", "", "", "alder tree"]) + let v = native_list_append(v, ["þerna", "noun", "þernur", "þernu", "þernu", "", "tern"]) + let v = native_list_append(v, ["gluggr", "noun", "gluggar", "gluggs", "", "", "opening"]) + let v = native_list_append(v, ["gyltr", "noun", "gyltar", "gyltar", "gylti", "", "young sow female"]) + let v = native_list_append(v, ["galti", "noun", "galtar", "galta", "galta", "", "boar hog"]) + let v = native_list_append(v, ["gríss", "noun", "grísir", "gríssins", "grís", "", "a male swine"]) + let v = native_list_append(v, ["gymbr", "noun", "gymbrar", "gymbrar", "gymbrinni", "", "ewe-lamb"]) + let v = native_list_append(v, ["kalfr", "noun", "kalfar", "kalfs", "kalfi", "", "calf"]) + let v = native_list_append(v, ["nǫkkvi", "noun", "nǫkkvar", "nǫkkva", "nǫkkva", "", "boat ship"]) + let v = native_list_append(v, ["hauss", "noun", "hausar", "haussins", "hausi", "", "skull"]) + let v = native_list_append(v, ["ǫxl", "noun", "axlir", "axlar", "ǫxlinni", "", "shoulder"]) + let v = native_list_append(v, ["herðr", "noun", "herðar", "herðar", "herði", "", "shoulder"]) + let v = native_list_append(v, ["þarmr", "noun", "þarmar", "þarms", "þarmi", "", "intestine gut"]) + let v = native_list_append(v, ["ǫlnbogi", "noun", "ǫlnbogar", "ǫlnboga", "ǫlnboga", "", "elbow"]) + let v = native_list_append(v, ["ǫnd", "noun", "andir", "andar", "ǫndinni", "", "duck"]) + let v = native_list_append(v, ["runi", "noun", "runar", "runa", "runa", "", "male pig"]) + let v = native_list_append(v, ["galtr", "noun", "galtar", "galts", "galti", "", "alternative form of"]) + let v = native_list_append(v, ["valir", "noun", "valirnir", "vala", "vǫlum", "", "the French Gauls"]) + let v = native_list_append(v, ["leiðangr", "noun", "leiðangrar", "leiðangrs", "leiðangri", "", "lething a levy"]) + let v = native_list_append(v, ["hrœrar", "noun", "hrœrarnir", "hrœra", "hrœrum", "", "groin"]) + let v = native_list_append(v, ["hrammr", "noun", "hrammar", "hramms", "hrammi", "", "a bears paw"]) + let v = native_list_append(v, ["hreifi", "noun", "hreifar", "hreifa", "hreifa", "", "wrist"]) + let v = native_list_append(v, ["ǫln", "noun", "alnar", "alnar", "ǫlninni", "", "the length from"]) + let v = native_list_append(v, ["ǫlbogi", "noun", "ǫlbogar", "ǫlboga", "ǫlboga", "", "alternative form of"]) + let v = native_list_append(v, ["júr", "noun", "júrin", "júrs", "júri", "", "udder"]) + let v = native_list_append(v, ["júgr", "noun", "júgrin", "júgrs", "júgri", "", "udder"]) + let v = native_list_append(v, ["strúpi", "noun", "strúpar", "strúpa", "strúpa", "", "throat"]) + let v = native_list_append(v, ["augbrá", "noun", "augbrár", "augbrár", "augbránni", "", "alternative form of"]) + let v = native_list_append(v, ["augabrá", "noun", "augnabrár", "augabrár", "augabránni", "", "eyelash eyelashes"]) + let v = native_list_append(v, ["augasteinn", "noun", "augasteinar", "augasteins", "augasteini", "", "pupil of the"]) + let v = native_list_append(v, ["augnasteinn", "noun", "augnasteinar", "augnasteins", "augnasteini", "", "alternative form of"]) + let v = native_list_append(v, ["augastaðr", "noun", "augastaðir", "augastaðar", "augastað", "", "eye socket"]) + let v = native_list_append(v, ["bǫllr", "noun", "bellir", "ballar", "belli", "", "round object sphere"]) + let v = native_list_append(v, ["endaþarmr", "noun", "endaþarmar", "endaþarms", "endaþarmi", "", "rectum"]) + let v = native_list_append(v, ["hǫm", "noun", "hamar", "hamar", "hǫminni", "", "the back of"]) + let v = native_list_append(v, ["ístr", "noun", "ístrin", "ístrs", "ístri", "", "fat"]) + let v = native_list_append(v, ["vangi", "noun", "vangar", "vanga", "vanga", "", "cheek"]) + let v = native_list_append(v, ["mergr", "noun", "mergir", "mergjar", "merg", "", "marrow"]) + let v = native_list_append(v, ["vǫrr", "noun", "varrar", "varrar", "vǫrrinni", "", "lip"]) + let v = native_list_append(v, ["haddr", "noun", "haddar", "hadds", "haddi", "", "hair on a"]) + let v = native_list_append(v, ["hlust", "noun", "hlustir", "hlustar", "hlustinni", "", "ear"]) + let v = native_list_append(v, ["líkamr", "noun", "líkamar", "líkams", "líkami", "", "body"]) + let v = native_list_append(v, ["líkhami", "noun", "líkhamar", "líkhama", "líkhama", "", "body"]) + let v = native_list_append(v, ["líkhamr", "noun", "líkhamir", "líkhams", "líkhami", "", "body"]) + let v = native_list_append(v, ["sjúkdómr", "noun", "sjúkdómar", "sjúkdóms", "sjúkdómi", "", "sickness"]) + let v = native_list_append(v, ["sjúkleikr", "noun", "sjúkleikar", "sjúkleiks", "sjúkleiki", "", "sickness illness"]) + let v = native_list_append(v, ["sjúkleiki", "noun", "sjúkleikar", "sjúkleika", "sjúkleika", "", "sickness illness"]) + let v = native_list_append(v, ["sjúknaðr", "noun", "sjúknaðir", "sjúknaðar", "sjúknaði", "", "sickness illness becoming"]) + let v = native_list_append(v, ["búandi", "noun", "búendr", "búanda", "búanda", "", "farmer"]) + let v = native_list_append(v, ["dómandi", "noun", "dómendr", "dómanda", "dómanda", "", "a judge one"]) + let v = native_list_append(v, ["elskandi", "noun", "elskandi", "", "", "", "a lover"]) + let v = native_list_append(v, ["fagnaðr", "noun", "fagnaðir", "fagnaðar", "fagnaði", "", "happiness joy"]) + let v = native_list_append(v, ["fǫgnuðr", "noun", "fagnaðir", "fagnaðar", "fagnaði", "", "alternative form of"]) + let v = native_list_append(v, ["lifnaðr", "noun", "lifnaðir", "lifnaðar", "lifnaði", "", "life conduct of"]) + let v = native_list_append(v, ["ólifnaðr", "noun", "ólifnaðir", "ólifnaðar", "ólifnaði", "", "a wicked life"]) + let v = native_list_append(v, ["skapnaðr", "noun", "skapnaðir", "skapnaðar", "skapnaði", "", "a shape or"]) + let v = native_list_append(v, ["skapan", "noun", "skapanir", "skapanar", "skapaninni", "", "a shape form"]) + let v = native_list_append(v, ["skǫpun", "noun", "skapanir", "skapanar", "skǫpuninni", "", "a shape form"]) + let v = native_list_append(v, ["jafnaðr", "noun", "jafnaðir", "jafnaðar", "jafnaði", "", "comparison"]) + let v = native_list_append(v, ["ásar", "noun", "ásar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ǫngull", "noun", "ǫnglar", "ǫnguls", "ǫngli", "", "a hook a"]) + let v = native_list_append(v, ["jǫfnuðr", "noun", "jafnaðir", "jafnaðar", "jafnaði", "", "comparison"]) + let v = native_list_append(v, ["saknaðr", "noun", "saknaðir", "saknaðar", "saknaði", "", "sorrow for something"]) + let v = native_list_append(v, ["sǫknuðr", "noun", "saknaðir", "saknaðar", "saknaði", "", "sorrow for something"]) + let v = native_list_append(v, ["sakni", "noun", "saknar", "sakna", "sakna", "", "a loss"]) + let v = native_list_append(v, ["gjǫf", "noun", "gjafar", "gjafar", "gjǫfinni", "", "a gift"]) + let v = native_list_append(v, ["drómundr", "noun", "drómundr", "", "", "", "a kind of"]) + let v = native_list_append(v, ["dróttning", "noun", "dróttningar", "dróttningar", "dróttningu", "", "a mistress"]) + let v = native_list_append(v, ["drótt", "noun", "dróttir", "dróttar", "dróttinni", "", "a household people"]) + let v = native_list_append(v, ["dróttnan", "noun", "dróttnanir", "dróttnanar", "dróttnaninni", "", "sway rule"]) + let v = native_list_append(v, ["dróttnari", "noun", "dróttnarar", "dróttnara", "dróttnara", "", "a ruler"]) + let v = native_list_append(v, ["ylr", "noun", "ylir", "yljar", "yl", "", "warmth"]) + let v = native_list_append(v, ["hrœrsla", "noun", "hrœrslur", "hrœrslu", "hrœrslu", "", "movement"]) + let v = native_list_append(v, ["hræzla", "noun", "hræzlur", "hræzlu", "hræzlu", "", "dread fear"]) + let v = native_list_append(v, ["hrygð", "noun", "hrygðir", "hrygðar", "hrygðinni", "", "affliction grief sorrow"]) + let v = native_list_append(v, ["bǫlvan", "noun", "bǫlvanir", "bǫlvanar", "bǫlvaninni", "", "a curse an"]) + let v = native_list_append(v, ["bǫl", "noun", "bǫlin", "bǫls", "bǫlvi", "", "bale misfortune"]) + let v = native_list_append(v, ["mornan", "noun", "mornanir", "mornanar", "mornaninni", "", "dawn"]) + let v = native_list_append(v, ["spjalk", "noun", "spjalk", "", "", "", "splint"]) + let v = native_list_append(v, ["fǫðursystir", "noun", "fǫðursystr", "fǫðursystr", "fǫðursystur", "", "paternal aunt"]) + let v = native_list_append(v, ["Skírnir", "noun", "Skírnir", "Skírnis", "Skírni", "", "Skírnir messenger of"]) + let v = native_list_append(v, ["Skaði", "noun", "Skaði", "Skaða", "Skaða", "", "Skadi goddess associated"]) + let v = native_list_append(v, ["dǫgg", "noun", "dǫggvar", "dǫggvar", "dǫggu", "", "drizzle"]) + let v = native_list_append(v, ["stǫð", "noun", "stǫðvar", "stǫðvar", "stǫðu", "", "a landing-place berth"]) + let v = native_list_append(v, ["veggr", "noun", "veggir", "veggjar", "vegg", "", "wall"]) + let v = native_list_append(v, ["bǫð", "noun", "bǫðvar", "bǫðvar", "bǫðu", "", "a battle"]) + let v = native_list_append(v, ["vaðill", "noun", "vaðlar", "vaðils", "vaðli", "", "ford shallow water"]) + let v = native_list_append(v, ["Hróbjartr", "noun", "Hróbjartr", "", "", "", "a male given"]) + let v = native_list_append(v, ["sǫðull", "noun", "sǫðlar", "sǫðuls", "sǫðli", "", "a saddle"]) + let v = native_list_append(v, ["sjǫtull", "noun", "sjǫtlar", "sjǫtuls", "sjǫtli", "", "a settler"]) + let v = native_list_append(v, ["òos", "noun", "òos", "", "", "", "Estuary"]) + let v = native_list_append(v, ["belgr", "noun", "belgir", "belgjar", "belg", "", "the skin of"]) + let v = native_list_append(v, ["bólstr", "noun", "bólstrar", "bólstrs", "bólstri", "", "bolster pillow"]) + let v = native_list_append(v, ["bjannak", "noun", "bjǫnnuk", "bjannaks", "bjannaki", "", "benediction"]) + let v = native_list_append(v, ["bíðendr", "noun", "bíðendrnir", "bíðanda", "bíðǫndum", "", "someone waiting that"]) + let v = native_list_append(v, ["byrgi", "noun", "byrgin", "byrgis", "byrginu", "", "fence enclosure"]) + let v = native_list_append(v, ["byrging", "noun", "byrgingar", "byrgingar", "byrgingu", "", "fence enclosure"]) + let v = native_list_append(v, ["byrgismaðr", "noun", "byrgismenn", "byrgismanns", "byrgismanni", "", "a paramour"]) + let v = native_list_append(v, ["byrgiskona", "noun", "byrgiskonur", "byrgiskonu", "byrgiskonu", "", "a concubine"]) + let v = native_list_append(v, ["byrgisskapr", "noun", "byrgisskapir", "byrgisskapar", "byrgisskap", "", "concubinage"]) + let v = native_list_append(v, ["klókindi", "noun", "klókindin", "klókinda", "klókindum", "", "cunning cleverness"]) + let v = native_list_append(v, ["klókskapr", "noun", "klókskapir", "klókskapar", "klókskap", "", "cunning cleverness"]) + let v = native_list_append(v, ["prestskapr", "noun", "prestskapir", "prestskapar", "prestskap", "", "priesthood"]) + let v = native_list_append(v, ["prestr", "noun", "prestar", "prests", "presti", "", "priest"]) + let v = native_list_append(v, ["prestlingr", "noun", "prestlingar", "prestlings", "prestlingi", "", "theological student preparing"]) + let v = native_list_append(v, ["hǫkull", "noun", "hǫklar", "hǫkuls", "hǫkli", "", "priests cope chasuble"]) + let v = native_list_append(v, ["belgir", "noun", "belgir", "", "", "", "plural of belgr"]) + let v = native_list_append(v, ["bólstrar", "noun", "bólstrar", "", "", "", "plural of bólstr"]) + let v = native_list_append(v, ["máli", "noun", "máli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þeyr", "noun", "þeyir", "þeys", "þey", "", "thaw"]) + let v = native_list_append(v, ["bjǫrk", "noun", "bjarkar", "bjarkar", "bjǫrkinni", "", "birch birch tree"]) + let v = native_list_append(v, ["birkja", "noun", "birkjur", "birkju", "birkju", "", "birch juice"]) + let v = native_list_append(v, ["birkiviðr", "noun", "birkiviðir", "birkiviðar", "birkiviði", "", "birchwood"]) + let v = native_list_append(v, ["fylmerr", "noun", "fylmerar", "fylmerar", "fylmeri", "", "a mare with"]) + let v = native_list_append(v, ["uðr", "noun", "uðr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brautingi", "noun", "brautingjar", "brautingja", "brautingja", "", "a wayfarer tramp"]) + let v = native_list_append(v, ["vegfarandi", "noun", "vegfarendr", "vegfaranda", "vegfaranda", "", "wayfarer"]) + let v = native_list_append(v, ["vegferill", "noun", "vegferlar", "vegferils", "vegferli", "", "a way"]) + let v = native_list_append(v, ["farandi", "noun", "farendr", "faranda", "faranda", "", "traveller"]) + let v = native_list_append(v, ["fákr", "noun", "fákar", "fáks", "fáki", "", "horse"]) + let v = native_list_append(v, ["fágan", "noun", "fáganir", "fáganar", "fáganinni", "", "worship"]) + let v = native_list_append(v, ["fágandi", "noun", "fágendr", "fáganda", "fáganda", "", "cultivator worshipper"]) + let v = native_list_append(v, ["fágari", "noun", "fágarar", "fágara", "fágara", "", "cultivator worshipper"]) + let v = native_list_append(v, ["fáganarmaðr", "noun", "fáganarmenn", "fáganarmanns", "fáganarmanni", "", "worshipper"]) + let v = native_list_append(v, ["færeyingr", "noun", "færeyingar", "færeyings", "færeyingi", "", "a Faroe islander"]) + let v = native_list_append(v, ["lǫg", "noun", "lǫgin", "lagar", "lǫgum", "", "fate"]) + let v = native_list_append(v, ["lagaskipan", "noun", "lagaskipanir", "lagaskipanar", "lagaskipaninni", "", "legislation"]) + let v = native_list_append(v, ["lǫgrétta", "noun", "lǫgréttur", "lǫgréttu", "lǫgréttu", "", "an improvement upon"]) + let v = native_list_append(v, ["gjǫrð", "noun", "gjarðar", "gjarðar", "gjǫrðinni", "", "belt girdle saddle"]) + let v = native_list_append(v, ["gerða", "noun", "gerða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["gerði", "noun", "gerðin", "gerðis", "gerðinu", "", "a fenced field"]) + let v = native_list_append(v, ["gerðing", "noun", "gerðingar", "gerðingar", "gerðingu", "", "fencing hedging"]) + let v = native_list_append(v, ["bjargaurar", "noun", "bjargaurarnir", "bjargaura", "bjargaurum", "", "means enough for"]) + let v = native_list_append(v, ["auradagr", "noun", "auradagar", "auradags", "auradegi", "", "payday"]) + let v = native_list_append(v, ["auralag", "noun", "auralǫg", "auralags", "auralagi", "", "standard of money"]) + let v = native_list_append(v, ["auralán", "noun", "auralánin", "auraláns", "auraláni", "", "worldly luck"]) + let v = native_list_append(v, ["auralógan", "noun", "auralóganir", "auralóganar", "auralóganinni", "", "squandering of money"]) + let v = native_list_append(v, ["auralykt", "noun", "auralyktir", "auralyktar", "auralyktinni", "", "payment in money"]) + let v = native_list_append(v, ["auraskortr", "noun", "auraskortar", "auraskorts", "auraskorti", "", "scarcity lack of"]) + let v = native_list_append(v, ["aurataka", "noun", "auratǫkur", "auratǫku", "auratǫku", "", "receipt of money"]) + let v = native_list_append(v, ["landaurar", "noun", "landaurarnir", "landaura", "landaurum", "", "land-dues a special"]) + let v = native_list_append(v, ["lǫgeyrir", "noun", "lǫgaurar", "lǫgeyris", "lǫgeyri", "", "legal money legal"]) + let v = native_list_append(v, ["verðaurar", "noun", "verðaurarnir", "verðaura", "verðaurum", "", "medium of payment"]) + let v = native_list_append(v, ["búfjáreyrir", "noun", "búfjáraurar", "búfjáreyris", "búfjáreyri", "", "value in livestock"]) + let v = native_list_append(v, ["kaupeyrir", "noun", "kaupaurar", "kaupeyris", "kaupeyri", "", "article of trade"]) + let v = native_list_append(v, ["koseyrir", "noun", "kosaurar", "koseyris", "koseyri", "", "choice things"]) + let v = native_list_append(v, ["lausaeyrir", "noun", "lausaaurar", "lausaeyris", "lausaeyri", "", "movable property chattels"]) + let v = native_list_append(v, ["sakeyrir", "noun", "sakaurar", "sakeyris", "sakeyri", "", "fine penalty especially"]) + let v = native_list_append(v, ["sakareyrir", "noun", "sakaraurar", "sakareyris", "sakareyri", "", "fine penalty especially"]) + let v = native_list_append(v, ["úmagi", "noun", "úmagar", "úmaga", "úmaga", "", "a helpless one"]) + let v = native_list_append(v, ["úmagaeyrir", "noun", "úmagaaurar", "úmagaeyris", "úmagaeyri", "", "the money or"]) + let v = native_list_append(v, ["meginherr", "noun", "meginherjar", "meginherjar", "meginher", "", "main army"]) + let v = native_list_append(v, ["landsmegin", "noun", "landsmegin", "landsmegins", "landsmegni", "", "the main power"]) + let v = native_list_append(v, ["aflát", "noun", "aflátin", "afláts", "afláti", "", "leaving off relinquishing"]) + let v = native_list_append(v, ["afganga", "noun", "afgǫngur", "afgǫngu", "afgǫngu", "", "digression"]) + let v = native_list_append(v, ["afgǫngudagr", "noun", "afgǫngudagar", "afgǫngudags", "afgǫngudegi", "", "the last day"]) + let v = native_list_append(v, ["afgangr", "noun", "afgangar", "afgangs", "afgangi", "", "surplus"]) + let v = native_list_append(v, ["abbindi", "noun", "afbindi", "afbindis", "afbindi", "", "constipation"]) + let v = native_list_append(v, ["jǫstr", "noun", "jǫstr", "jastar", "isti", "", "yeast"]) + let v = native_list_append(v, ["mækir", "noun", "mækjar", "mækis", "mæki", "", "sword"]) + let v = native_list_append(v, ["dómarasæti", "noun", "dómarasætin", "dómarasætis", "dómarasætinu", "", "judgement seat"]) + let v = native_list_append(v, ["dómsdagr", "noun", "dómsdagar", "dómsdags", "dómsdegi", "", "doomsday"]) + let v = native_list_append(v, ["dómadagr", "noun", "dómadagar", "dómadags", "dómadegi", "", "doomsday"]) + let v = native_list_append(v, ["kveljari", "noun", "kveljarar", "kveljara", "kveljara", "", "tormentor"]) + let v = native_list_append(v, ["affarakveld", "noun", "affarakveldin", "affarakvelds", "affarakveldi", "", "the last evening"]) + let v = native_list_append(v, ["affaradagr", "noun", "affaradagar", "affaradags", "affaradegi", "", "the last day"]) + let v = native_list_append(v, ["burðr", "noun", "burðir", "burðar", "burð", "", "carriage bearing"]) + let v = native_list_append(v, ["afburðar", "noun", "afburðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["afburðr", "noun", "afburðir", "afburðar", "afburð", "", "superiority"]) + let v = native_list_append(v, ["afarmenni", "noun", "afarmennin", "afarmennis", "afarmenninu", "", "an outstanding man"]) + let v = native_list_append(v, ["kostr", "noun", "kostir", "kostar", "kosti", "", "choice alternative"]) + let v = native_list_append(v, ["afarkostr", "noun", "afarkostr", "", "", "", "hard terms"]) + let v = native_list_append(v, ["kǫstr", "noun", "kestir", "kastar", "kesti", "", "pile"]) + let v = native_list_append(v, ["kǫs", "noun", "kasir", "kasar", "kǫsinni", "", "heap pile"]) + let v = native_list_append(v, ["kostnaðr", "noun", "kostnaðir", "kostnaðar", "kostnaði", "", "cost expense"]) + let v = native_list_append(v, ["kjǫr", "noun", "kjǫrin", "kjǫrs", "kjǫri", "", "choice decision election"]) + let v = native_list_append(v, ["ǫnn", "noun", "annir", "annar", "ǫnninni", "", "work business trouble"]) + let v = native_list_append(v, ["andvitni", "noun", "andvitnin", "andvitnis", "andvitninu", "", "contradictory testimony"]) + let v = native_list_append(v, ["annboð", "noun", "annboðin", "annboðs", "annboði", "", "agricultural implements tools"]) + let v = native_list_append(v, ["annfriðr", "noun", "annfriðir", "annfriðar", "annfriði", "", "cessation of lawsuits"]) + let v = native_list_append(v, ["angist", "noun", "angistir", "angistar", "angistinni", "", "anguish"]) + let v = native_list_append(v, ["angran", "noun", "angranir", "angranar", "angraninni", "", "sorrow affliction"]) + let v = native_list_append(v, ["apli", "noun", "aplar", "apla", "apla", "", "bull"]) + let v = native_list_append(v, ["kjalki", "noun", "kjalkar", "kjalka", "kjalka", "", "jaw-bone"]) + let v = native_list_append(v, ["asnahǫfuð", "noun", "asnahǫfuðin", "asnahǫfuðs", "asnahǫfði", "", "asss head"]) + let v = native_list_append(v, ["asnakjalki", "noun", "asnakjalkar", "asnakjalka", "asnakjalka", "", "jaw-bone of an"]) + let v = native_list_append(v, ["atburðr", "noun", "atburðir", "atburðar", "atburð", "", "occurrence event"]) + let v = native_list_append(v, ["atdjúp", "noun", "atdjúpin", "atdjúps", "atdjúpi", "", "deep water close"]) + let v = native_list_append(v, ["fundr", "noun", "fundir", "fundar", "fund", "", "finding discovery"]) + let v = native_list_append(v, ["atfǫr", "noun", "farar", "farar", "atfǫrinni", "", "proceedings method"]) + let v = native_list_append(v, ["atfararþing", "noun", "atfararþingin", "atfararþings", "atfararþingi", "", "court of execution"]) + let v = native_list_append(v, ["atfarardómr", "noun", "atfarardómar", "atfarardóms", "atfarardómi", "", "sentence of execution"]) + let v = native_list_append(v, ["dugnaðr", "noun", "dugnaðir", "dugnaðar", "dugnaði", "", "aid assistance"]) + let v = native_list_append(v, ["atdugnaðr", "noun", "atdugnaðir", "atdugnaðar", "atdugnaði", "", "assistance help"]) + let v = native_list_append(v, ["eggjan", "noun", "-ir", "-ar", "eggjaninni", "", "egging on goading"]) + let v = native_list_append(v, ["ateggjan", "noun", "-ir", "-ar", "ateggjaninni", "", "egging on"]) + let v = native_list_append(v, ["áeggjan", "noun", "áeggjanir", "áeggjanar", "áeggjaninni", "", "egging on instigation"]) + let v = native_list_append(v, ["atkeri", "noun", "atkerar", "atkera", "atkera", "", "anchor"]) + let v = native_list_append(v, ["armingi", "noun", "armingjar", "armingja", "armingja", "", "poor fellow"]) + let v = native_list_append(v, ["arfskipti", "noun", "arfskiptin", "arfskiptis", "arfskiptinu", "", "partition of an"]) + let v = native_list_append(v, ["arftaki", "noun", "arftakar", "arftaka", "arftaka", "", "inheritor"]) + let v = native_list_append(v, ["arftakari", "noun", "arftakarar", "arftakara", "arftakara", "", "inheritor"]) + let v = native_list_append(v, ["arftaka", "noun", "arftǫkur", "arftǫku", "arftǫku", "", "receiving or taking"]) + let v = native_list_append(v, ["arfsal", "noun", "arfsǫl", "arfsals", "arfsali", "", "cession of right"]) + let v = native_list_append(v, ["arfsalsmaðr", "noun", "arfsalsmenn", "arfsalsmanns", "arfsalsmanni", "", "someone that has"]) + let v = native_list_append(v, ["arftǫkukarl", "noun", "arftǫkukarlar", "arftǫkukarls", "arftǫkukarli", "", "a man that"]) + let v = native_list_append(v, ["arftǫkumaðr", "noun", "arftǫkumenn", "arftǫkumanns", "arftǫkumanni", "", "inheritor"]) + let v = native_list_append(v, ["arfkaup", "noun", "arfkaupin", "arfkaups", "arfkaupi", "", "sum paid of"]) + let v = native_list_append(v, ["arfskot", "noun", "arfskotin", "arfskots", "arfskoti", "", "fraud in matters"]) + let v = native_list_append(v, ["valdr", "noun", "valdar", "valds", "valdi", "", "wielder ruler"]) + let v = native_list_append(v, ["allvaldr", "noun", "allvaldar", "allvalds", "allvaldi", "", "sovereign king"]) + let v = native_list_append(v, ["allvaldskonungr", "noun", "allvaldskonungar", "allvaldskonungs", "allvaldskonungi", "", "sovereign ruler"]) + let v = native_list_append(v, ["athyggja", "noun", "athyggjur", "athyggju", "athyggju", "", "attention"]) + let v = native_list_append(v, ["athugi", "noun", "athugar", "athuga", "athuga", "", "attention"]) + let v = native_list_append(v, ["athugamaðr", "noun", "athugamenn", "athugamanns", "athugamanni", "", "devout person"]) + let v = native_list_append(v, ["atgeirr", "noun", "atgeirar", "atgeirs", "atgeiri", "", "halberd"]) + let v = native_list_append(v, ["augnalag", "noun", "augnalǫg", "augnalags", "augnalagi", "", "look"]) + let v = native_list_append(v, ["augnamein", "noun", "augnameinin", "augnameins", "augnameini", "", "disease of the"]) + let v = native_list_append(v, ["eyjamaðr", "noun", "eyjamenn", "eyjamanns", "eyjamanni", "", "islander"]) + let v = native_list_append(v, ["banamaðr", "noun", "banamenn", "banamanns", "banamanni", "", "killer slayer"]) + let v = native_list_append(v, ["blótan", "noun", "blótanir", "blótanar", "blótaninni", "", "sacrificing"]) + let v = native_list_append(v, ["blótmaðr", "noun", "blótmenn", "blótmanns", "blótmanni", "", "heathen worshipper idolater"]) + let v = native_list_append(v, ["blótnaðr", "noun", "blótnaðir", "blótnaðar", "blótnaði", "", "sacrificing to heathen"]) + let v = native_list_append(v, ["nauðung", "noun", "nauðungar", "nauðungar", "nauðungu", "", "compulsion constraint"]) + let v = native_list_append(v, ["nauðungarmaðr", "noun", "nauðungarmenn", "nauðungarmanns", "nauðungarmanni", "", "someone that is"]) + let v = native_list_append(v, ["blótanir", "noun", "blótanir", "", "", "", "plural of blótan"]) + let v = native_list_append(v, ["sála", "noun", "sálur", "sálu", "sálu", "", "soul"]) + let v = native_list_append(v, ["nauðmaðr", "noun", "nauðmenn", "nauðmanns", "nauðmanni", "", "husband"]) + let v = native_list_append(v, ["biskupskør", "noun", "biskupskørin", "biskupskørs", "biskupskøri", "", "election of a"]) + let v = native_list_append(v, ["kosningr", "noun", "kosningar", "kosnings", "kosningi", "", "election"]) + let v = native_list_append(v, ["biskupskosning", "noun", "biskupskosningar", "biskupskosningar", "biskupskosningu", "", "election of a"]) + let v = native_list_append(v, ["allraheilagramessa", "noun", "allraheilagramessur", "allraheilagramessu", "allraheilagramessu", "", "Allhallowmas All Saints"]) + let v = native_list_append(v, ["allraheilagramessudagr", "noun", "allraheilagramessudagar", "allraheilagramessudags", "allraheilagramessudegi", "", "Allhallowmas All Saints"]) + let v = native_list_append(v, ["korpr", "noun", "korpar", "korps", "korpi", "", "raven"]) + let v = native_list_append(v, ["hramn", "noun", "hramnar", "hramns", "hramni", "", "alternative spelling of"]) + let v = native_list_append(v, ["lǫgum", "noun", "lǫgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lǫgr", "noun", "legir", "lagar", "legi", "", "sea lake"]) + let v = native_list_append(v, ["lǫgu", "noun", "lǫgu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["lǫgunum", "noun", "lǫgunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["lǫgununum", "noun", "lǫgununum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["lǫgn", "noun", "lǫgnin", "lagnar", "lǫgninni", "", "a net laid"]) + let v = native_list_append(v, ["stǫðva", "noun", "stǫðva", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["stǫðum", "noun", "stǫðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stǫðu", "noun", "stǫðu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["stǫðvar", "noun", "stǫðvar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["staðinn", "noun", "staðinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["gǫfgan", "noun", "gǫfganir", "gǫfganar", "gǫfganinni", "", "worshipping"]) + let v = native_list_append(v, ["gǫfgari", "noun", "gǫfgarar", "gǫfgara", "gǫfgara", "", "worshipper"]) + let v = native_list_append(v, ["gǫng", "noun", "gǫngin", "ganga", "gǫngum", "", "way passage"]) + let v = native_list_append(v, ["fylkir", "noun", "fylkjar", "fylkis", "fylki", "", "chief king"]) + let v = native_list_append(v, ["fylkjum", "noun", "fylkjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eyri", "noun", "eyri", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["eyrum", "noun", "eyrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["eyrna", "noun", "eyrna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["árr", "noun", "ærir", "árar", "æri", "", "messenger servant"]) + let v = native_list_append(v, ["erendi", "noun", "erendin", "erendis", "erendinu", "", "an errand"]) + let v = native_list_append(v, ["snælda", "noun", "snælda", "", "", "", "spindle"]) + let v = native_list_append(v, ["útnorðr", "noun", "útnorðr", "", "", "", "north-west"]) + let v = native_list_append(v, ["útmokstr", "noun", "útmokstr", "", "", "", "shovelling out digging"]) + let v = native_list_append(v, ["snigli", "noun", "snigli", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["snigils", "noun", "snigils", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["snigla", "noun", "snigla", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["bjórs", "noun", "bjórs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["veisa", "noun", "veisur", "veisu", "veisu", "", "pool pond cesspool"]) + let v = native_list_append(v, ["leyfum", "noun", "leyfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["seiðberendr", "noun", "seiðberendr", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["seiðberandi", "noun", "seiðberendr", "seiðberanda", "seiðberanda", "", "sorcerer"]) + let v = native_list_append(v, ["hamars", "noun", "hamars", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["erfingi", "noun", "erfingjar", "erfingja", "erfingja", "", "heir inheritor"]) + let v = native_list_append(v, ["bjǫllu", "noun", "bjǫllu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["bjǫllur", "noun", "bjǫllur", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["bjǫllum", "noun", "bjǫllum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bjallan", "noun", "bjallan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["bjǫlluna", "noun", "bjǫlluna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["bjǫllunnar", "noun", "bjǫllunnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["bjǫllurnar", "noun", "bjǫllurnar", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["bjǫllunum", "noun", "bjǫllunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["bjallna", "noun", "bjallna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["bjǫllunni", "noun", "bjǫllunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["Alfǫðr", "noun", "Alfǫðr", "", "", "", "a heiti for"]) + let v = native_list_append(v, ["nykill", "noun", "nyklar", "nykils", "", "", "alternative form of"]) + let v = native_list_append(v, ["sylla", "noun", "sylla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["beðja", "noun", "beðjur", "beðju", "beðju", "", "bedfellow wife"]) + let v = native_list_append(v, ["velting", "noun", "veltingar", "veltingar", "veltingu", "", "rolling rotation"]) + let v = native_list_append(v, ["grǫn", "noun", "granar", "granar", "grǫninni", "", "spruce pine tree"]) + let v = native_list_append(v, ["hneri", "noun", "hnerar", "hnera", "hnera", "", "a sneeze"]) + let v = native_list_append(v, ["sauð", "noun", "sauð", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["nykra", "noun", "nykra", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hlynr", "noun", "hlynir", "hlyns", "hlyn", "", "maple"]) + let v = native_list_append(v, ["mǫpurr", "noun", "mǫprar", "mǫpurs", "mǫpri", "", "maple-tree"]) + let v = native_list_append(v, ["mǫsurr", "noun", "mǫsrar", "mǫsurs", "mǫsri", "", "maple"]) + let v = native_list_append(v, ["almr", "noun", "almar", "alms", "almi", "", "elm tree and"]) + let v = native_list_append(v, ["heggr", "noun", "heggir", "heggs", "hegg", "", "bird cherry tree"]) + let v = native_list_append(v, ["ǫsp", "noun", "aspir", "aspar", "ǫspinni", "", "aspen poplar Populus"]) + let v = native_list_append(v, ["fjándi", "noun", "fjándr", "fjánda", "fjánda", "", "enemy"]) + let v = native_list_append(v, ["seljum", "noun", "seljum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["þiðurr", "noun", "þiðrar", "þiðurs", "þiðri", "", "wood grouse capercaillie"]) + let v = native_list_append(v, ["selr", "noun", "selar", "sels", "seli", "", "seal"]) + let v = native_list_append(v, ["mǫrk", "noun", "merkr", "merkr", "", "", "mark by weight"]) + let v = native_list_append(v, ["lundr", "noun", "lundar", "lundar", "lundi", "", "grove clump of"]) + let v = native_list_append(v, ["kamarr", "noun", "kamrar", "kamars", "kamri", "", "privy outdoor toilet"]) + let v = native_list_append(v, ["Stafangr", "noun", "Stafangr", "Stafangrs", "Stafangri", "", "Stavanger a city"]) + let v = native_list_append(v, ["lopt", "noun", "lopt", "", "", "", "attic"]) + let v = native_list_append(v, ["frakkar", "noun", "frakkarnir", "frakka", "frǫkkum", "", "Franks"]) + let v = native_list_append(v, ["frakkakonungr", "noun", "frakkakonungar", "frakkakonungs", "frakkakonungi", "", "king of the"]) + let v = native_list_append(v, ["frakka", "noun", "frǫkkur", "frǫkku", "frǫkku", "", "spear"]) + let v = native_list_append(v, ["danir", "noun", "danirnir", "dana", "dǫnum", "", "the Danes"]) + let v = native_list_append(v, ["svíar", "noun", "svíarnir", "svía", "svíum", "", "the Swedes of"]) + let v = native_list_append(v, ["sygnir", "noun", "sygnirnir", "sygna", "sygnum", "", "the men from"]) + let v = native_list_append(v, ["egðir", "noun", "egðirnir", "egða", "egðum", "", "the inhabitants of"]) + let v = native_list_append(v, ["írar", "noun", "írarnir", "íra", "írum", "", "Irishmen the Irish"]) + let v = native_list_append(v, ["háleygr", "noun", "háleygr", "", "", "", "inhabitants of Hålogaland"]) + let v = native_list_append(v, ["írska", "noun", "írskur", "írsku", "írsku", "", "the Irish tongue"]) + let v = native_list_append(v, ["norrœna", "noun", "norrœna", "norrœnu", "norrœnu", "", "the Norse Norwegian"]) + let v = native_list_append(v, ["þýðverska", "noun", "þýðverska", "þýðversku", "þýðversku", "", "German language or"]) + let v = native_list_append(v, ["englismaðr", "noun", "englismenn", "englismanns", "englismanni", "", "an Englishman"]) + let v = native_list_append(v, ["dǫnsku", "noun", "dǫnsku", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["dǫnskum", "noun", "dǫnskum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["dǫnskuna", "noun", "dǫnskuna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["dǫnskunni", "noun", "dǫnskunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["dǫnskunnar", "noun", "dǫnskunnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["norrœnu", "noun", "norrœnu", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["stafkarl", "noun", "stafkarlar", "stafkarls", "stafkarli", "", "poor beggar"]) + let v = native_list_append(v, ["þinull", "noun", "þinlar", "þinuls", "þinli", "", "the edge-rope of"]) + let v = native_list_append(v, ["þinurr", "noun", "þinrar", "þinurs", "þinri", "", "a kind of"]) + let v = native_list_append(v, ["þengill", "noun", "þenglar", "þengils", "þengli", "", "prince king lord"]) + let v = native_list_append(v, ["þurka", "noun", "þurkur", "þurku", "þurku", "", "drought dryness"]) + let v = native_list_append(v, ["þurkan", "noun", "þurkanir", "þurkanar", "þurkaninni", "", "drying"]) + let v = native_list_append(v, ["þyrsklingr", "noun", "þyrsklingar", "þyrsklings", "þyrsklingi", "", "codling"]) + let v = native_list_append(v, ["þerrir", "noun", "þerrar", "þerris", "þerri", "", "drying"]) + let v = native_list_append(v, ["yxna", "noun", "yxna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["undr", "noun", "undrin", "undrs", "undri", "", "wonder"]) + let v = native_list_append(v, ["rétti", "noun", "rétti", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["réttir", "noun", "réttir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["réttum", "noun", "réttum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["réttu", "noun", "réttu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["þerri", "noun", "þerri", "", "", "", "accusative/dative singular indefinite"]) + let v = native_list_append(v, ["þerrum", "noun", "þerrum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["þurkum", "noun", "þurkum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["œskjum", "noun", "œskjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["œskir", "noun", "œskir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["œskti", "noun", "œskti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["kǫstum", "noun", "kǫstum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["þerru", "noun", "þerru", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["sǫguna", "noun", "sǫguna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["sǫgunni", "noun", "sǫgunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["sǫgunnar", "noun", "sǫgunnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["sǫgurnar", "noun", "sǫgurnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["sǫgunum", "noun", "sǫgunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["sagnanna", "noun", "sagnanna", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["gramr", "noun", "gramir", "grams", "gram", "", "king warrior"]) + let v = native_list_append(v, ["gollurr", "noun", "gollrar", "gollurs", "gollri", "", "pericardium"]) + let v = native_list_append(v, ["hórr", "noun", "hórar", "hórs", "hóri", "", "adulterer"]) + let v = native_list_append(v, ["hleifr", "noun", "hleifar", "hleifs", "hleifi", "", "loaf"]) + let v = native_list_append(v, ["hlekkr", "noun", "hlekkir", "hlekks", "hlekk", "", "link"]) + let v = native_list_append(v, ["helgr", "noun", "helgar", "helgar", "helgi", "", "holiday festival"]) + let v = native_list_append(v, ["freistni", "noun", "freistni", "freistninnar", "freistninni", "", "temptation"]) + let v = native_list_append(v, ["ebreska", "noun", "ebreska", "ebresku", "ebresku", "", "the Hebrew language"]) + let v = native_list_append(v, ["dǫggva", "noun", "dǫggva", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["dǫggvar", "noun", "dǫggvar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["dǫggum", "noun", "dǫggum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["dǫggu", "noun", "dǫggu", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["dǫggvarinnar", "noun", "dǫggvarinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["dǫggvarnar", "noun", "dǫggvarnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["dǫggin", "noun", "dǫggin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["dǫggina", "noun", "dǫggina", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["dǫgginni", "noun", "dǫgginni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["dǫggunni", "noun", "dǫggunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["dǫggunum", "noun", "dǫggunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["dǫggvanna", "noun", "dǫggvanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["brík", "noun", "bríkr", "bríkar", "bríkinni", "", "thin board"]) + let v = native_list_append(v, ["lœkr", "noun", "lœkir", "lœkjar", "lœk", "", "brook rivulet"]) + let v = native_list_append(v, ["vǫg", "noun", "vegr", "vagar", "vǫginni", "", "a lever"]) + let v = native_list_append(v, ["fiðri", "noun", "fiðrin", "fiðris", "fiðrinu", "", "plumage feathers"]) + let v = native_list_append(v, ["fleipr", "noun", "fleiprin", "fleiprs", "fleipri", "", "babble tattle"]) + let v = native_list_append(v, ["flikki", "noun", "flikkin", "flikkis", "flikkinu", "", "flitch of bacon"]) + let v = native_list_append(v, ["flórr", "noun", "flórar", "flórs", "flóri", "", "floor of a"]) + let v = native_list_append(v, ["dynr", "noun", "dynir", "dyns", "dyn", "", "din noise"]) + let v = native_list_append(v, ["kylr", "noun", "kylir", "kyls", "kyl", "", "gust of cold"]) + let v = native_list_append(v, ["hylr", "noun", "hylir", "hyls", "hyl", "", "deep place pool"]) + let v = native_list_append(v, ["flúr", "noun", "flúrin", "flúrs", "flúri", "", "flower"]) + let v = native_list_append(v, ["bolr", "noun", "bolir", "bols", "bol", "", "trunk of a"]) + let v = native_list_append(v, ["bulr", "noun", "bulir", "buls", "bul", "", "alternative form of"]) + let v = native_list_append(v, ["banahǫgg", "noun", "banahǫggin", "banahǫggs", "banahǫggvi", "", "deathblow"]) + let v = native_list_append(v, ["banalag", "noun", "banalǫg", "banalags", "banalagi", "", "the final thrust"]) + let v = native_list_append(v, ["bandingi", "noun", "bandingjar", "bandingja", "bandingja", "", "prisoner"]) + let v = native_list_append(v, ["beðr", "noun", "beðir", "beðjar", "beð", "", "bolster bedding"]) + let v = native_list_append(v, ["þjóðann", "noun", "þjóðnar", "þjóðans", "þjóðni", "", "prince ruler"]) + let v = native_list_append(v, ["þján", "noun", "þjánir", "þjánar", "þjáninni", "", "bondage servitude oppression"]) + let v = native_list_append(v, ["þjóleggr", "noun", "þjóleggir", "þjóleggjar", "þjólegg", "", "thighbone"]) + let v = native_list_append(v, ["þjónkan", "noun", "-ir", "-ar", "þjónkaninni", "", "service"]) + let v = native_list_append(v, ["þjónan", "noun", "-ir", "-ar", "þjónun", "", "service"]) + let v = native_list_append(v, ["þénari", "noun", "þénarar", "þénara", "þénara", "", "servant"]) + let v = native_list_append(v, ["þénasta", "noun", "þénustur", "þénustu", "þénustu", "", "service"]) + let v = native_list_append(v, ["þjónosta", "noun", "þjónostur", "þjónostu", "þjónostu", "", "alternative form of"]) + let v = native_list_append(v, ["þjónasta", "noun", "þjónustur", "þjónustu", "þjónustu", "", "alternative form of"]) + let v = native_list_append(v, ["þǫrf", "noun", "þarfar", "þarfar", "þǫrfinni", "", "need want necessity"]) + let v = native_list_append(v, ["þurft", "noun", "þurftir", "þurftar", "þurftinni", "", "need want necessity"]) + let v = native_list_append(v, ["þarfagangr", "noun", "þarfagangar", "þarfagangs", "þarfagangi", "", "urine excrement"]) + let v = native_list_append(v, ["þarfnan", "noun", "þarfnanir", "þarfnanar", "þǫrfnun", "", "need want"]) + let v = native_list_append(v, ["þykt", "noun", "þyktir", "þyktar", "þyktinni", "", "thickness"]) + let v = native_list_append(v, ["þykkleikr", "noun", "þykkleikar", "þykkleiks", "þykkleiki", "", "thickness"]) + let v = native_list_append(v, ["þý", "noun", "þýjar", "þýjar", "þýju", "", "bondmaid bondwoman"]) + let v = native_list_append(v, ["ǿgir", "noun", "ǿgjar", "ǿgis", "ǿgi", "", "frightener terrifier"]) + let v = native_list_append(v, ["ǫgn", "noun", "agnar", "agnar", "ǫgninni", "", "chaff husks"]) + let v = native_list_append(v, ["ǫgr", "noun", "ǫgr", "", "", "", "rose fish redfish"]) + let v = native_list_append(v, ["ǫskudagr", "noun", "ǫskudagar", "ǫskudags", "ǫskudegi", "", "Ash Wednesday"]) + let v = native_list_append(v, ["ǫkvisi", "noun", "ǫkvisar", "ǫkvisa", "ǫkvisa", "", "degenerate person laggard"]) + let v = native_list_append(v, ["aukvisi", "noun", "aukvisar", "aukvisa", "aukvisa", "", "degenerate person laggard"]) + let v = native_list_append(v, ["eyki", "noun", "eykin", "eykis", "eykinu", "", "vehicle cart"]) + let v = native_list_append(v, ["tǫturr", "noun", "tǫtrar", "tǫturs", "tǫtri", "", "tatters rags tattered"]) + let v = native_list_append(v, ["tǫpun", "noun", "tapanir", "tapanar", "tǫpuninni", "", "loss"]) + let v = native_list_append(v, ["túna", "noun", "túna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["dagblik", "noun", "dagblik", "", "", "", "the gleam or"]) + let v = native_list_append(v, ["reynd", "noun", "reyndir", "reyndar", "reyndinni", "", "experience"]) + let v = native_list_append(v, ["norðmaðr", "noun", "norðmenn", "norðmanns", "norðmanni", "", "man from the"]) + let v = native_list_append(v, ["hnykill", "noun", "hnyklar", "hnykils", "hnykli", "", "knot tumor"]) + let v = native_list_append(v, ["smyrsl", "noun", "smyrsl", "", "", "", "ointment salve"]) + let v = native_list_append(v, ["láss", "noun", "láss", "", "", "", "lock"]) + let v = native_list_append(v, ["trumba", "noun", "trumbur", "trumbu", "trumbu", "", "pipe"]) + let v = native_list_append(v, ["lykla", "noun", "lykla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["lykils", "noun", "lykils", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["friðils", "noun", "friðils", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["spegla", "noun", "spegla", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["speglum", "noun", "speglum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["spegil", "noun", "spegil", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["spegli", "noun", "spegli", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["spegils", "noun", "spegils", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["Skáney", "noun", "Skáney", "", "", "", "Scania a former"]) + let v = native_list_append(v, ["rǫdd", "noun", "raddar", "raddar", "rǫddinni", "", "voice sound compare"]) + let v = native_list_append(v, ["dagana", "noun", "dagana", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["ørlǫg", "noun", "ørlǫg", "", "", "", "fate doom fortunes"]) + let v = native_list_append(v, ["sulti", "noun", "sulti", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["stæinn", "noun", "stæinn", "", "", "", "Old East Norse"]) + let v = native_list_append(v, ["stæin", "noun", "stæin", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["faður", "noun", "faður", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bróður", "noun", "bróður", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["harmr", "noun", "harmar", "harms", "harmi", "", "sorrow grief"]) + let v = native_list_append(v, ["refr", "noun", "refar", "refs", "refi", "", "a fox"]) + let v = native_list_append(v, ["atgørvi", "noun", "atgørvi", "", "", "", "ability talent accomplishment"]) + let v = native_list_append(v, ["kviðr", "noun", "kviðir", "kviðar", "kviði", "", "verdict"]) + let v = native_list_append(v, ["falr", "noun", "falir", "fals", "fal", "", "a socket at"]) + let v = native_list_append(v, ["hǫttr", "noun", "hettir", "hattar", "hetti", "", "hat"]) + let v = native_list_append(v, ["brestr", "noun", "bestir", "brests", "brest", "", "chink crack"]) + let v = native_list_append(v, ["spánn", "noun", "spænir", "spánar", "spæni", "", "chip shaving of"]) + let v = native_list_append(v, ["grunnr", "noun", "grunnar", "grunns", "grunni", "", "bottom"]) + let v = native_list_append(v, ["gullit", "noun", "gullit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["megir", "noun", "megir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["félags", "noun", "félags", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["grǫptr", "noun", "greptir", "graptar", "grepti", "", "alternative spelling of"]) + let v = native_list_append(v, ["kvistr", "noun", "kvistir", "kvistar", "kvisti", "", "twig branch"]) + let v = native_list_append(v, ["mǫrðr", "noun", "merðir", "marðar", "merði", "", "marten"]) + let v = native_list_append(v, ["sláttr", "noun", "slættir", "sláttar", "slætti", "", "mowing"]) + let v = native_list_append(v, ["sunr", "noun", "synir", "sunar", "syni", "", "alternative form of"]) + let v = native_list_append(v, ["svǫrðr", "noun", "sverðir", "svarðar", "sverði", "", "the skin of"]) + let v = native_list_append(v, ["svǫppr", "noun", "sveppir", "svappar", "sveppi", "", "sponge mushroom"]) + let v = native_list_append(v, ["vǫrðr", "noun", "verðir", "varðar", "verði", "", "ward warder"]) + let v = native_list_append(v, ["vǫgn", "noun", "vagnir", "vagnar", "vǫgninni", "", "a kind of"]) + let v = native_list_append(v, ["vǫkva", "noun", "vǫkur", "vǫku", "vǫku", "", "moisture humidity"]) + let v = native_list_append(v, ["vǫkvi", "noun", "vǫkvar", "vǫkva", "vǫkva", "", "moisture fluid humidity"]) + let v = native_list_append(v, ["ymni", "noun", "ymnar", "ymna", "ymna", "", "hymn"]) + let v = native_list_append(v, ["yfirdróttning", "noun", "yfirdróttningar", "yfirdróttningar", "yfirdróttningu", "", "sovereign queen"]) + let v = native_list_append(v, ["yfirengill", "noun", "yfirenglar", "yfirengils", "yfirengli", "", "archangel"]) + let v = native_list_append(v, ["yfirsjón", "noun", "yfirsjónir", "yfirsjónar", "yfirsjóninni", "", "supervision inspection"]) + let v = native_list_append(v, ["ørkn", "noun", "ørkn", "", "", "", "a kind of"]) + let v = native_list_append(v, ["drasill", "noun", "drasill", "", "", "", "horse steed"]) + let v = native_list_append(v, ["hagldir", "noun", "hagldirnar", "haglda", "hǫgldum", "", "a kind of"]) + let v = native_list_append(v, ["vatni", "noun", "vatni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hreiðr", "noun", "hreiðrin", "hreiðrs", "hreiðri", "", "nest"]) + let v = native_list_append(v, ["Jǫrmungandr", "noun", "Jǫrmungandr", "Jǫrmungands", "Jǫrmungandi", "", "Jörmungandr a kenning"]) + let v = native_list_append(v, ["kjaptr", "noun", "kjaptar", "kjapts", "kjapti", "", "jaw"]) + let v = native_list_append(v, ["jóreið", "noun", "jóreiðar", "jóreiðar", "jóreiðinni", "", "riding on horseback"]) + let v = native_list_append(v, ["jóreykr", "noun", "jóreykir", "jóreykjar", "jóreyk", "", "cloud of dust"]) + let v = native_list_append(v, ["Jórsalir", "noun", "Jórsalir", "Jórsala", "Jórsǫlum", "", "Jerusalem a city"]) + let v = native_list_append(v, ["jórsalafari", "noun", "jórsalafarar", "jórsalafara", "jórsalafara", "", "Jerusalem traveller someone"]) + let v = native_list_append(v, ["jórsalaferð", "noun", "jórsalaferðir", "jórsalaferðar", "jórsalaferðinni", "", "travel to Jerusalem"]) + let v = native_list_append(v, ["seggr", "noun", "seggir", "seggs", "segg", "", "man"]) + let v = native_list_append(v, ["lénin", "noun", "lénin", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["híð", "noun", "híðin", "híðs", "híði", "", "a lair den"]) + let v = native_list_append(v, ["vindi", "noun", "vindi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["Dufþakr", "noun", "Dufþakr", "Dufþaks", "Dufþaki", "", "a male given"]) + let v = native_list_append(v, ["þegngildi", "noun", "þegngildin", "þegngildis", "þegngildinu", "", "the weregeld for"]) + let v = native_list_append(v, ["hertogadómr", "noun", "hertogadómar", "hertogadóms", "hertogadómi", "", "leadership"]) + let v = native_list_append(v, ["hertogadœmi", "noun", "hertogadœmin", "hertogadœmis", "hertogadœminu", "", "duchy"]) + let v = native_list_append(v, ["hertoganafn", "noun", "hertoganǫfn", "hertoganafns", "hertoganafni", "", "title of a"]) + let v = native_list_append(v, ["jarlsdóttir", "noun", "jarlsdœtr", "jarlsdóttur", "jarlsdóttur", "", "earls daughter"]) + let v = native_list_append(v, ["jarlsnafn", "noun", "jarlsnǫfn", "jarlsnafns", "jarlsnafni", "", "earls title"]) + let v = native_list_append(v, ["jarldómr", "noun", "jarldómar", "jarldóms", "jarldómi", "", "earldom jarldom"]) + let v = native_list_append(v, ["biskupsdómr", "noun", "biskupsdómar", "biskupsdóms", "biskupsdómi", "", "dignity or rank"]) + let v = native_list_append(v, ["biskupsdóttir", "noun", "biskupsdœtr", "biskupsdóttur", "biskupsdóttur", "", "bishops daughter"]) + let v = native_list_append(v, ["djákn", "noun", "djáknar", "djákns", "djákni", "", "deacon"]) + let v = native_list_append(v, ["erkidjákn", "noun", "erkidjáknar", "erkidjákns", "erkidjákni", "", "archdeacon"]) + let v = native_list_append(v, ["erkiprestr", "noun", "erkiprestar", "erkiprests", "erkipresti", "", "archpriest"]) + let v = native_list_append(v, ["etari", "noun", "etarar", "etara", "etara", "", "glutton great eater"]) + let v = native_list_append(v, ["ætni", "noun", "ætni", "ætninnar", "ætninni", "", "gluttony"]) + let v = native_list_append(v, ["sveip", "noun", "sveip", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["randar", "noun", "randar", "", "", "", "inflection of rǫnd"]) + let v = native_list_append(v, ["teinar", "noun", "teinar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["einvígi", "noun", "einvígin", "einvigis", "einvíginu", "", "duel single combat"]) + let v = native_list_append(v, ["gafl", "noun", "gaflar", "gafls", "", "", "gable"]) + let v = native_list_append(v, ["vígi", "noun", "vígin", "vígis", "víginu", "", "stronghold fortress"]) + let v = native_list_append(v, ["kalfi", "noun", "kalfar", "kalfa", "kalfa", "", "calf part of"]) + let v = native_list_append(v, ["reyfi", "noun", "reyfin", "reyfis", "reyfinu", "", "shorn wool of"]) + let v = native_list_append(v, ["læging", "noun", "lægingar", "lægingar", "lægingu", "", "disgrace degradation"]) + let v = native_list_append(v, ["lægi", "noun", "lægin", "lægis", "læginu", "", "berth anchorage"]) + let v = native_list_append(v, ["eigin", "noun", "eiginin", "eigins", "eigni", "", "ones own ones"]) + let v = native_list_append(v, ["eimr", "noun", "eimar", "eims", "eimi", "", "reek vapor"]) + let v = native_list_append(v, ["eimyrja", "noun", "eimyrjur", "eimyrju", "eimyrju", "", "embers"]) + let v = native_list_append(v, ["efnd", "noun", "efndir", "efndar", "efndinni", "", "fulfilment of a"]) + let v = native_list_append(v, ["eiða", "noun", "eiður", "eiðu", "eiðu", "", "mother"]) + let v = native_list_append(v, ["elrir", "noun", "elrar", "elris", "elri", "", "alder tree"]) + let v = native_list_append(v, ["elris", "noun", "elris", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["andsvar", "noun", "andsvǫr", "andsvars", "andsvari", "", "answer reply decision"]) + let v = native_list_append(v, ["ǫndurr", "noun", "ǫndrar", "ǫndurs", "ǫndri", "", "ski"]) + let v = native_list_append(v, ["apaldr", "noun", "apaldrar", "apaldrs", "apaldri", "", "apple tree"]) + let v = native_list_append(v, ["eyland", "noun", "eylǫnd", "eylands", "eylandi", "", "island"]) + let v = native_list_append(v, ["kvittr", "noun", "kvittr", "", "", "", "loose rumour report"]) + let v = native_list_append(v, ["faþur", "noun", "faþur", "", "", "", "obsolete spelling of"]) + let v = native_list_append(v, ["bruþur", "noun", "bruþur", "", "", "", "obsolete spelling of"]) + let v = native_list_append(v, ["broður", "noun", "broður", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["einheri", "noun", "einheri", "", "", "", "singular of einherjar"]) + let v = native_list_append(v, ["Heimdall", "noun", "Heimdall", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Bifrǫst", "noun", "Bifrǫst", "", "", "", "Bifrost the rainbow"]) + let v = native_list_append(v, ["slœgð", "noun", "slœgð", "", "", "", "trick sleight slyness"]) + let v = native_list_append(v, ["mildi", "noun", "mildi", "", "", "", "kindness mercy grace"]) + let v = native_list_append(v, ["gumna", "noun", "gumna", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["slókr", "noun", "slókr", "", "", "", "oaf elfs child"]) + let v = native_list_append(v, ["nagla", "noun", "nagla", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["blóts", "noun", "blóts", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["karla", "noun", "karla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["lekum", "noun", "lekum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["ᛋᚴᛅᚾᛘᛅᛚᛋ", "noun", "ᛋᚴᛅᚾᛘᛅᛚᛋ", "", "", "", "a male given"]) + let v = native_list_append(v, ["ᚬᛚᛅᚢᚠ", "noun", "ᚬᛚᛅᚢᚠ", "", "", "", "a female given"]) + let v = native_list_append(v, ["ᛋᚢᛅᛁᚾ", "noun", "ᛋᚢᛅᛁᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["maðkr", "noun", "maðkar", "maðks", "maðki", "", "maggot grub worm"]) + let v = native_list_append(v, ["karlmaðr", "noun", "karlmenn", "karlmanns", "karlmanni", "", "a man male"]) + let v = native_list_append(v, ["karlmannsbúnaðr", "noun", "karlmannsbúnaðir", "karlmannsbúnaðar", "karlmannsbúnaði", "", "mans attire"]) + let v = native_list_append(v, ["bakstrkona", "noun", "bakstrkonur", "bakstrkonu", "bakstrkonu", "", "female baker"]) + let v = native_list_append(v, ["kvennmaðr", "noun", "kvennmenn", "kvennmanns", "kvennmanni", "", "woman"]) + let v = native_list_append(v, ["prestkona", "noun", "prestkonur", "prestkonu", "prestkonu", "", "a priests wife"]) + let v = native_list_append(v, ["galdrakona", "noun", "galdrakonur", "galdrakonu", "galdrakonu", "", "witch sorceress"]) + let v = native_list_append(v, ["heimakona", "noun", "heimakonur", "heimakonu", "heimakonu", "", "housemaid"]) + let v = native_list_append(v, ["kvennamaðr", "noun", "kvennamenn", "kvennamanns", "kvennamanni", "", "one that is"]) + let v = native_list_append(v, ["kvenndýr", "noun", "kvenndýrin", "kvenndýrs", "kvenndýri", "", "female beast"]) + let v = native_list_append(v, ["kvennkyrtill", "noun", "kvennkyrtlar", "kvennkyrtils", "kvennkyrtli", "", "womans kirtle"]) + let v = native_list_append(v, ["baðkona", "noun", "baðkonaur", "baðkonau", "baðkonau", "", "female bathing attendant"]) + let v = native_list_append(v, ["kvennfugl", "noun", "kvennfuglar", "kvennfugls", "kvennfugli", "", "hen bird"]) + let v = native_list_append(v, ["kvæn", "noun", "kvænir", "kvænar", "kvæninni", "", "alternative form of"]) + let v = native_list_append(v, ["kván", "noun", "kvánir", "kvánar", "kváninni", "", "wife"]) + let v = native_list_append(v, ["kvánbœnir", "noun", "kvánbœnirnar", "kvánbœna", "kvánbœnum", "", "wooing"]) + let v = native_list_append(v, ["kvæning", "noun", "kvæningar", "kvæningar", "kvæningu", "", "marriage taking a"]) + let v = native_list_append(v, ["kvángan", "noun", "kvánganir", "kvánganar", "kvánganinni", "", "the taking of"]) + let v = native_list_append(v, ["kviðmaðr", "noun", "kviðmenn", "kviðmanns", "kviðmanni", "", "juror"]) + let v = native_list_append(v, ["kvernsteinn", "noun", "kvernsteinar", "kvernsteins", "kvernsteini", "", "millstone quernstone"]) + let v = native_list_append(v, ["kvernarauga", "noun", "{{{2}}}u", "kvernaraugans", "kvernarauganu", "", "the eye or"]) + let v = native_list_append(v, ["kviðuháttr", "noun", "kviðuhættir", "kviðuháttar", "kviðuhætti", "", "a poetic meter"]) + let v = native_list_append(v, ["kviðlingr", "noun", "kviðlingar", "kviðlings", "kviðlingi", "", "ditty"]) + let v = native_list_append(v, ["kylfuhǫgg", "noun", "kylfuhǫggin", "kylfuhǫggs", "kylfuhǫggvi", "", "a blow with"]) + let v = native_list_append(v, ["hǫgg", "noun", "hǫggin", "hǫggs", "hǫggvi", "", "a blow strike"]) + let v = native_list_append(v, ["kaupangr", "noun", "kaupangrar", "kaupangrs", "kaupangri", "", "marketplace"]) + let v = native_list_append(v, ["jótar", "noun", "jótarnir", "jóta", "jótum", "", "Jutes"]) + let v = native_list_append(v, ["kvikva", "noun", "kvikur", "kviku", "kviku", "", "alternative form of"]) + let v = native_list_append(v, ["kvikvendi", "noun", "kvikvendin", "kvikvendis", "kvikvendinu", "", "a living creature"]) + let v = native_list_append(v, ["kvikfé", "noun", "kvikféin", "kvikfjár", "kvikfénu", "", "livestock"]) + let v = native_list_append(v, ["fjár", "noun", "fjár", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dilkfé", "noun", "dilkféin", "dilkfjár", "dilkfénu", "", "ewes together with"]) + let v = native_list_append(v, ["dilkr", "noun", "dilkar", "dilks", "dilki", "", "a sucking lamb"]) + let v = native_list_append(v, ["dilkær", "noun", "dilkǽr", "dilkǽr", "dilká", "", "a ewe with"]) + let v = native_list_append(v, ["digull", "noun", "diglar", "diguls", "digli", "", "a hanging drop"]) + let v = native_list_append(v, ["diktan", "noun", "diktanir", "diktanar", "diktaninni", "", "composition in Latin"]) + let v = native_list_append(v, ["diktr", "noun", "diktr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deyfð", "noun", "deyfðir", "deyfðar", "deyfðinni", "", "deafness"]) + let v = native_list_append(v, ["deyfi", "noun", "deyfi", "deyfinnar", "deyfinni", "", "deafness"]) + let v = native_list_append(v, ["jafndœgri", "noun", "jafndœgrin", "jafndœgris", "jafndœgrinu", "", "equinox"]) + let v = native_list_append(v, ["orðstírr", "noun", "orðstírar", "orðstírs", "orðstíri", "", "fame renown good"]) + let v = native_list_append(v, ["viðar", "noun", "viðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["viðir", "noun", "viðir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["viðu", "noun", "viðu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["viðan", "noun", "viðanir", "viðanar", "viðaninni", "", "furnishing of wood"]) + let v = native_list_append(v, ["mjǫtuðr", "noun", "mjǫtuðr", "", "", "", "dispenser of fate"]) + let v = native_list_append(v, ["mjǫtviðr", "noun", "mjǫtviðr", "", "", "", "meaning uncertain but"]) + let v = native_list_append(v, ["mjǫtvið", "noun", "mjǫtvið", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["orrosta", "noun", "orrostur", "orrostu", "orrostu", "", "battle"]) + let v = native_list_append(v, ["Hafrsfjǫrðr", "noun", "Hafrsfjǫrðr", "Hafrsfjarðar", "Hafrsfirði", "", "Hafrsfjord fjord in"]) + let v = native_list_append(v, ["dyttr", "noun", "dyttir", "dytts", "dytt", "", "a push"]) + let v = native_list_append(v, ["vanmegin", "noun", "vanmegin", "vanmegins", "vanmagni", "", "weakness illness"]) + let v = native_list_append(v, ["tempran", "noun", "tempranir", "tempranar", "tempraninni", "", "tempering"]) + let v = native_list_append(v, ["vantempran", "noun", "vantempranir", "vantempranar", "vantempraninni", "", "inmoderation"]) + let v = native_list_append(v, ["skaga", "noun", "skaga", "", "", "", "inflection of skagi"]) + let v = native_list_append(v, ["fegrð", "noun", "fegrðar", "fegrðar", "fegrðinni", "", "beauty"]) + let v = native_list_append(v, ["stafn", "noun", "stafnar", "stafns", "stafni", "", "stem"]) + let v = native_list_append(v, ["Eyfastr", "noun", "Eyfastr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Þórfreðr", "noun", "Þórfreðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ríkviðr", "noun", "Ríkviðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["ᚱᛁᚴᚢᛁᚦᚱ", "noun", "ᚱᛁᚴᚢᛁᚦᚱ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᚢᛁᚦᛒᛁᛅᚱᚾ", "noun", "ᚢᛁᚦᛒᛁᛅᚱᚾ", "", "", "", "a male given"]) + let v = native_list_append(v, ["Viðbjǫrn", "noun", "Viðbjǫrn", "Viðbjarnar", "Viðbirni", "", "a male given"]) + let v = native_list_append(v, ["Ingjaldr", "noun", "Ingjaldr", "", "", "", "a male given"]) + let v = native_list_append(v, ["stúfr", "noun", "stúfr", "", "", "", "stump"]) + let v = native_list_append(v, ["Freyviðr", "noun", "Freyviðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bárðr", "noun", "Bárðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gjaflaugr", "noun", "Gjaflaugr", "", "", "", "a male given"]) + let v = native_list_append(v, ["ǫrmum", "noun", "ǫrmum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["fæð", "noun", "fæð", "", "", "", "fewness scantiness"]) + let v = native_list_append(v, ["farnaðr", "noun", "farnaðir", "farnaðar", "farnaði", "", "furtherance speed"]) + let v = native_list_append(v, ["fǫrnuðr", "noun", "farnaðir", "farnaðar", "farnaði", "", "furtherance speed"]) + let v = native_list_append(v, ["farnaðar", "noun", "farnaðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hǫddu", "noun", "hǫddu", "", "", "", "genitive/dative/accusative singular of"]) + let v = native_list_append(v, ["rauða", "noun", "rauður", "rauðu", "rauðu", "", "egg yolk"]) + let v = native_list_append(v, ["Grimhildr", "noun", "Grimhildr", "Grimhildar", "Grimhildi", "", "a female given"]) + let v = native_list_append(v, ["afls", "noun", "afls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["þagnar", "noun", "þagnar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ástar", "noun", "ástar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ástin", "noun", "ástin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["ástir", "noun", "ástir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ástum", "noun", "ástum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stjǫrnu", "noun", "stjǫrnu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["trjám", "noun", "trjám", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["trjóm", "noun", "trjóm", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gǫngum", "noun", "gǫngum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["skógi", "noun", "skógi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kirkjugarðr", "noun", "kirkjugarðr", "", "", "", "cemetery"]) + let v = native_list_append(v, ["guðs", "noun", "guðs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["kiðlingr", "noun", "kiðlingar", "kiðlings", "kiðlingi", "", "a small goatling"]) + let v = native_list_append(v, ["kjúklingr", "noun", "kjúklingar", "kjúklings", "kjúklingi", "", "chicken"]) + let v = native_list_append(v, ["kjúkling", "noun", "kjúkling", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["býti", "noun", "býtin", "býtis", "býtinu", "", "exchange barter"]) + let v = native_list_append(v, ["náttverðr", "noun", "náttverðr", "náttverðar", "", "", "supper"]) + let v = native_list_append(v, ["bókstafr", "noun", "bókstafar", "bókstafs", "bókstafi", "", "a letter of"]) + let v = native_list_append(v, ["hvammr", "noun", "hvammar", "hvamms", "hvammi", "", "grassy hollow little"]) + let v = native_list_append(v, ["hásæti", "noun", "hásætin", "hásætis", "hásætinu", "", "high seat seat"]) + let v = native_list_append(v, ["hávaðamaðr", "noun", "hávaðamenn", "hávaðamanns", "hávaðamanni", "", "a noisy self-assertive"]) + let v = native_list_append(v, ["ísinn", "noun", "ísinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["Frakklandi", "noun", "Frakklandi", "", "", "", "dative of Frakkland"]) + let v = native_list_append(v, ["fíl", "noun", "fíl", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["fílunum", "noun", "fílunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["þjófar", "noun", "þjófar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["Auðhumbla", "noun", "Auðhumbla", "", "", "", "the primeval cow"]) + let v = native_list_append(v, ["Logi", "noun", "Logi", "", "", "", "also known as"]) + let v = native_list_append(v, ["fóta", "noun", "fóta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["blaðinu", "noun", "blaðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["Hǫrðr", "noun", "Hǫrðr", "", "", "", "a male given"]) + let v = native_list_append(v, ["tíunda", "noun", "tíunda", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["jólum", "noun", "jólum", "", "", "", "dative of jól"]) + let v = native_list_append(v, ["Eysteinn", "noun", "Eysteinn", "", "", "", "a male given"]) + let v = native_list_append(v, ["laganna", "noun", "laganna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["liði", "noun", "liði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Sikelö", "noun", "Sikelö", "", "", "", "Sicily an island"]) + let v = native_list_append(v, ["heims", "noun", "heims", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["heimi", "noun", "heimi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["heimum", "noun", "heimum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["heiminn", "noun", "heiminn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["borðsins", "noun", "borðsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["borðinu", "noun", "borðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["makligleikr", "noun", "makligleikar", "makligleiks", "makligleiki", "", "desert"]) + let v = native_list_append(v, ["makligleikum", "noun", "makligleikum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["mǫku", "noun", "mǫku", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["mǫru", "noun", "mǫru", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["marmari", "noun", "marmarar", "marmara", "marmara", "", "marble"]) + let v = native_list_append(v, ["otr", "noun", "otrar", "otrs", "otri", "", "an otter"]) + let v = native_list_append(v, ["ávaxta", "noun", "ávaxta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["Ásgeirr", "noun", "Ásgeirr", "", "", "", "a male given"]) + let v = native_list_append(v, ["tarf", "noun", "tarf", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["grunr", "noun", "grunir", "grunar", "grun", "", "doubt uncertainty"]) + let v = native_list_append(v, ["hyli", "noun", "hyli", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["ávǫxtr", "noun", "ávęxtir", "ávaxtar", "ávęxti", "", "fruit"]) + let v = native_list_append(v, ["liðinu", "noun", "liðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["nafns", "noun", "nafns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Þorgnýr", "noun", "Þorgnýr", "", "", "", "a male given"]) + let v = native_list_append(v, ["landsins", "noun", "landsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["landinu", "noun", "landinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["myrginn", "noun", "myrgnar", "myrgins", "myrgni", "", "alternative form of"]) + let v = native_list_append(v, ["brœðr", "noun", "brœðr", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["ertr", "noun", "ertrnar", "ertra", "ertrum", "", "peas"]) + let v = native_list_append(v, ["ertra", "noun", "ertra", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["frævi", "noun", "frævi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["lǫngum", "noun", "lǫngum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["lǫngu", "noun", "lǫngu", "", "", "", "inflection of langa"]) + let v = native_list_append(v, ["hreini", "noun", "hreini", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["hreinar", "noun", "hreinar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hrein", "noun", "hrein", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hreins", "noun", "hreins", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hreina", "noun", "hreina", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hreinum", "noun", "hreinum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["þungum", "noun", "þungum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þunga", "noun", "þunga", "", "", "", "inflection of þungi"]) + let v = native_list_append(v, ["þungar", "noun", "þungar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["þrǫng", "noun", "þrǫngvar", "þrǫngvar", "þrǫngu", "", "throng crowd"]) + let v = native_list_append(v, ["þrǫngum", "noun", "þrǫngum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þrǫngva", "noun", "þrǫngva", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þrǫngvar", "noun", "þrǫngvar", "", "", "", "inflection of þrǫng"]) + let v = native_list_append(v, ["þrǫngu", "noun", "þrǫngu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["jafnan", "noun", "jafnan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["jǫfnu", "noun", "jǫfnu", "", "", "", "inflection of jafna"]) + let v = native_list_append(v, ["jǫfnum", "noun", "jǫfnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ísa", "noun", "ísa", "", "", "", "accusative/genitive plural indefinite"]) + let v = native_list_append(v, ["kvala", "noun", "kvala", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hverfum", "noun", "hverfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hyrr", "noun", "hyrir", "hyrjar", "hyr", "", "fire"]) + let v = native_list_append(v, ["hyrjar", "noun", "hyrjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hvíldardagr", "noun", "hvíldardagar", "hvíldardags", "hvíldardegi", "", "day of rest"]) + let v = native_list_append(v, ["hvíldardags", "noun", "hvíldardags", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hvíldardegi", "noun", "hvíldardegi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hvíldardag", "noun", "hvíldardag", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hvíldardeginum", "noun", "hvíldardeginum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["hvíldardaginn", "noun", "hvíldardaginn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["hvíldardagrinn", "noun", "hvíldardagrinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["hvíldardagsins", "noun", "hvíldardagsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["hvíldardagar", "noun", "hvíldardagar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hvíldardaga", "noun", "hvíldardaga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hvíldardaganna", "noun", "hvíldardaganna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["hvíldardagana", "noun", "hvíldardagana", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["hvíldardǫgum", "noun", "hvíldardǫgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hvíldardǫgunum", "noun", "hvíldardǫgunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["hvíldarhestr", "noun", "hvíldarhestar", "hvíldarhests", "hvíldarhesti", "", "relay horse"]) + let v = native_list_append(v, ["hvíldar", "noun", "hvíldar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hvílu", "noun", "hvílu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["hvíluna", "noun", "hvíluna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["hvílunni", "noun", "hvílunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["hvílunnar", "noun", "hvílunnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["hvílan", "noun", "hvílan", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["hvílur", "noun", "hvílur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hvílurnar", "noun", "hvílurnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["hvílna", "noun", "hvílna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hvílnanna", "noun", "hvílnanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["hvílunum", "noun", "hvílunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["hvílum", "noun", "hvílum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hvíldum", "noun", "hvíldum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hvíldir", "noun", "hvíldir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["þrøngving", "noun", "þrøngvingar", "þrøngvingar", "þrøngvingu", "", "straits"]) + let v = native_list_append(v, ["þrønging", "noun", "þrøngingar", "þrøngingar", "þrøngingu", "", "straits"]) + let v = native_list_append(v, ["þrøngð", "noun", "þrøngðir", "þrøngðar", "þrøngðinni", "", "narrow place"]) + let v = native_list_append(v, ["þrøngsl", "noun", "þrøngslin", "þrøngsla", "þrøngslum", "", "straits distress"]) + let v = native_list_append(v, ["kjǫltu", "noun", "kjǫltu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["kennandi", "noun", "kennendr", "kennanda", "kennanda", "", "recognizer"]) + let v = native_list_append(v, ["kennanda", "noun", "kennanda", "", "", "", "inflection of kennandi"]) + let v = native_list_append(v, ["kennǫndum", "noun", "kennǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["kǫrlum", "noun", "kǫrlum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["trumbari", "noun", "trumbarar", "trumbara", "trumbara", "", "trumpeter"]) + let v = native_list_append(v, ["leikmaðr", "noun", "leikmenn", "leikmanns", "leikmanni", "", "player"]) + let v = native_list_append(v, ["leiku", "noun", "leiku", "", "", "", "inflection of leika"]) + let v = native_list_append(v, ["leikan", "noun", "leikan", "", "", "", "feminine definite nominative"]) + let v = native_list_append(v, ["leikaraskapr", "noun", "leikaraskapir", "leikaraskapar", "leikaraskap", "", "scurrility"]) + let v = native_list_append(v, ["leikara", "noun", "leikara", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["leikum", "noun", "leikum", "", "", "", "inflection of leika"]) + let v = native_list_append(v, ["leikandi", "noun", "leikandi", "", "", "", "pulley"]) + let v = native_list_append(v, ["þrǫngleikr", "noun", "þrǫngleikar", "þrǫngleiks", "þrǫngleiki", "", "narrowness"]) + let v = native_list_append(v, ["þungleikr", "noun", "þungleikar", "þungleiks", "þungleiki", "", "heaviness infirmity"]) + let v = native_list_append(v, ["þurrleikr", "noun", "þurrleikar", "þurrleiks", "þurrleiki", "", "dryness"]) + let v = native_list_append(v, ["þýðleikr", "noun", "þýðleikar", "þýðleiks", "þýðleiki", "", "attachment affection"]) + let v = native_list_append(v, ["ǫrleikr", "noun", "ǫrleikar", "ǫrleiks", "ǫrleiki", "", "liberality munificence"]) + let v = native_list_append(v, ["øruggleikr", "noun", "øruggleikar", "øruggleiks", "øruggleiki", "", "security confidence"]) + let v = native_list_append(v, ["aumleikr", "noun", "aumleikar", "aumleiks", "aumleiki", "", "misery wretchedness"]) + let v = native_list_append(v, ["aumligleikr", "noun", "aumligleikar", "aumligleiks", "aumligleiki", "", "misery wretchedness"]) + let v = native_list_append(v, ["ákafleikr", "noun", "ákafleikar", "ákafleiks", "ákafleiki", "", "eagerness vehemence"]) + let v = native_list_append(v, ["áleikr", "noun", "áleikar", "áleiks", "áleiki", "", "trick"]) + let v = native_list_append(v, ["barnaleikr", "noun", "barnaleikar", "barnaleiks", "barnaleiki", "", "childs play"]) + let v = native_list_append(v, ["barnleikr", "noun", "barnleikar", "barnleiks", "barnleiki", "", "childs play"]) + let v = native_list_append(v, ["beiskleikr", "noun", "beiskleikar", "beiskleiks", "beiskleiki", "", "bitterness harshness"]) + let v = native_list_append(v, ["bitrleikr", "noun", "bitrleikar", "bitrleiks", "bitrleiki", "", "bitterness"]) + let v = native_list_append(v, ["bjartleikr", "noun", "bjartleikar", "bjartleiks", "bjartleiki", "", "brightness"]) + let v = native_list_append(v, ["bjúgleikr", "noun", "bjúgleikar", "bjúgleiks", "bjúgleiki", "", "crookedness"]) + let v = native_list_append(v, ["blautleikr", "noun", "blautleikar", "blautleiks", "blautleiki", "", "softness"]) + let v = native_list_append(v, ["blindleikr", "noun", "blindleikar", "blindleiks", "blindleiki", "", "blindness"]) + let v = native_list_append(v, ["blíðleikr", "noun", "blíðleikar", "blíðleiks", "blíðleiki", "", "friendliness gentleness"]) + let v = native_list_append(v, ["breiðleikr", "noun", "breiðleikar", "breiðleiks", "breiðleiki", "", "broadness breadth"]) + let v = native_list_append(v, ["breyskleikr", "noun", "breyskleikar", "breyskleiks", "breyskleiki", "", "infirmity weakness"]) + let v = native_list_append(v, ["bróðurleikr", "noun", "bróðurleikar", "bróðurleiks", "bróðurleiki", "", "brotherhood"]) + let v = native_list_append(v, ["dansleikr", "noun", "dansleikar", "dansleiks", "dansleiki", "", "dance dancing"]) + let v = native_list_append(v, ["dauðleikr", "noun", "dauðleikar", "dauðleiks", "dauðleiki", "", "deadness lifelessness"]) + let v = native_list_append(v, ["daufleikr", "noun", "daufleikar", "daufleiks", "daufleiki", "", "deafness"]) + let v = native_list_append(v, ["digrleikr", "noun", "digrleikar", "digrleiks", "digrleiki", "", "bigness"]) + let v = native_list_append(v, ["djarfleikr", "noun", "djarfleikar", "djarfleiks", "djarfleiki", "", "boldness courage"]) + let v = native_list_append(v, ["djúpleikr", "noun", "djúpleikar", "djúpleiks", "djúpleiki", "", "depth"]) + let v = native_list_append(v, ["dyggleikr", "noun", "dyggleikar", "dyggleiks", "dyggleiki", "", "faithfulness probity"]) + let v = native_list_append(v, ["dýrleikr", "noun", "dýrleikar", "dýrleiks", "dýrleiki", "", "dearness"]) + let v = native_list_append(v, ["dælleikr", "noun", "dælleikar", "dælleiks", "dælleiki", "", "familiarity"]) + let v = native_list_append(v, ["dælligleikr", "noun", "dælligleikar", "dælligleiks", "dælligleiki", "", "familiarity"]) + let v = native_list_append(v, ["døkkleikr", "noun", "døkkleikar", "døkkleiks", "døkkleiki", "", "duskiness"]) + let v = native_list_append(v, ["efanleikr", "noun", "efanleikar", "efanleiks", "efanleiki", "", "doubtfulness"]) + let v = native_list_append(v, ["eiginnleikr", "noun", "eiginleikar", "eiginleiks", "eiginleiki", "", "quality peculiarity"]) + let v = native_list_append(v, ["einleikr", "noun", "einleikar", "einleiks", "einleiki", "", "unity"]) + let v = native_list_append(v, ["eilífleikr", "noun", "eilífleikar", "eilífleiks", "eilífleiki", "", "eternity"]) + let v = native_list_append(v, ["fagrleikr", "noun", "fagrleikar", "fagrleiks", "fagrleiki", "", "beauty"]) + let v = native_list_append(v, ["feginleikr", "noun", "feginleikar", "feginleiks", "feginleiki", "", "joyfulness"]) + let v = native_list_append(v, ["feitleikr", "noun", "feitleikar", "feitleiks", "feitleiki", "", "fatness"]) + let v = native_list_append(v, ["félagleikr", "noun", "félagleikar", "félagleiks", "félagleiki", "", "friendliness"]) + let v = native_list_append(v, ["fimleikr", "noun", "fimleikar", "fimleiks", "fimleiki", "", "nimbleness"]) + let v = native_list_append(v, ["fljótleikr", "noun", "fljótleikar", "fljótleiks", "fljótleiki", "", "fleetness"]) + let v = native_list_append(v, ["fráleikr", "noun", "fráleikar", "fráleiks", "fráleiki", "", "swiftness briskness"]) + let v = native_list_append(v, ["friðleikr", "noun", "friðleikar", "friðleiks", "friðleiki", "", "personal beauty"]) + let v = native_list_append(v, ["fríðleikr", "noun", "fríðleikar", "fríðleiks", "fríðleiki", "", "friendliness"]) + let v = native_list_append(v, ["fróðleik", "noun", "fróðleikar", "fróðleiks", "fróðleiki", "", "knowledge information"]) + let v = native_list_append(v, ["frjálsleikr", "noun", "frjalsleikar", "frjalsleiks", "frjalsleiki", "", "liberty"]) + let v = native_list_append(v, ["frœknleikr", "noun", "frœknleikar", "frœknleiks", "frœknleiki", "", "valour bravery prowess"]) + let v = native_list_append(v, ["fœrleikr", "noun", "fœrleikar", "fœrleiks", "fœrleiki", "", "ability strength"]) + let v = native_list_append(v, ["gløggleikr", "noun", "gløggleikar", "gløggleiks", "gløggleiki", "", "sagacity"]) + let v = native_list_append(v, ["gnógleikr", "noun", "gnógleikar", "gnógleiks", "gnógleiki", "", "abundance"]) + let v = native_list_append(v, ["góðleikr", "noun", "góðleikar", "góðleiks", "góðleiki", "", "goodness"]) + let v = native_list_append(v, ["grannleikr", "noun", "grannleikar", "grannleiks", "grannleiki", "", "slenderness"]) + let v = native_list_append(v, ["gráleikr", "noun", "gráleikar", "gráleiks", "gráleiki", "", "malice"]) + let v = native_list_append(v, ["greypleikr", "noun", "greypleikar", "greypleiks", "greypleiki", "", "fierceness"]) + let v = native_list_append(v, ["grimmleikr", "noun", "grimmleikar", "grimmleiks", "grimmleiki", "", "savageness cruelty"]) + let v = native_list_append(v, ["grœnleikr", "noun", "grœnleikar", "grœnleiks", "grœnleiki", "", "greenness verdure"]) + let v = native_list_append(v, ["gǫfugleikr", "noun", "gǫfugleikar", "gǫfugleiks", "gǫfugleiki", "", "worshipfulness highness"]) + let v = native_list_append(v, ["hagleikr", "noun", "hagleikar", "hagleiks", "hagleiki", "", "skill in handicraft"]) + let v = native_list_append(v, ["harðleikr", "noun", "harðleikar", "harðleiks", "harðleiki", "", "hardness"]) + let v = native_list_append(v, ["háleikr", "noun", "háleikar", "háleiks", "háleiki", "", "highness"]) + let v = native_list_append(v, ["hálleikr", "noun", "hálleikar", "hálleiks", "hálleiki", "", "slipperiness"]) + let v = native_list_append(v, ["heilagleikr", "noun", "heilagleikar", "heilagleiks", "heilagleiki", "", "holiness"]) + let v = native_list_append(v, ["heilleikr", "noun", "heilleikar", "heilleiks", "heilleiki", "", "health"]) + let v = native_list_append(v, ["hentleikr", "noun", "hentleikar", "hentleiks", "hentleiki", "", "opportunity"]) + let v = native_list_append(v, ["hentugleikr", "noun", "hentugleikar", "hentugleiks", "hentugleiki", "", "opportunity"]) + let v = native_list_append(v, ["hildileikr", "noun", "hildileikar", "hildileiks", "hildileiki", "", "game of war"]) + let v = native_list_append(v, ["hjǫrleikr", "noun", "hjǫrleikar", "hjǫrleiks", "hjǫrleiki", "", "battle"]) + let v = native_list_append(v, ["hljóðleikr", "noun", "hljóðleikar", "hljóðleiks", "hljóðleiki", "", "silence sadness"]) + let v = native_list_append(v, ["horskleikr", "noun", "horskleikar", "horskleiks", "horskleiki", "", "knowledge wisdom"]) + let v = native_list_append(v, ["hraustleikr", "noun", "hraustleikar", "hraustleiks", "hraustleiki", "", "prowess valour"]) + let v = native_list_append(v, ["hreinleikr", "noun", "hreinleikar", "hreinleiks", "hreinleiki", "", "cleanliness"]) + let v = native_list_append(v, ["hressleikr", "noun", "hressleikar", "hressleiks", "hressleiki", "", "good health"]) + let v = native_list_append(v, ["hreinsan", "noun", "hreinsanir", "hreinsanar", "hreinsaninni", "", "cleansing"]) + let v = native_list_append(v, ["hreinsanareldr", "noun", "hreinsanareldar", "hreinsanarelds", "hreinsanareldi", "", "purgatory"]) + let v = native_list_append(v, ["hrinr", "noun", "hrinar", "hrins", "hrini", "", "howling screaming"]) + let v = native_list_append(v, ["hringr", "noun", "hringar", "hrings", "hringi", "", "ring"]) + let v = native_list_append(v, ["hringing", "noun", "hringingar", "hringingar", "hringingu", "", "bellringing"]) + let v = native_list_append(v, ["hryggleikr", "noun", "hryggleikar", "hryggleiks", "hryggleiki", "", "affliction grief sorrow"]) + let v = native_list_append(v, ["hvassleikr", "noun", "hvassleikar", "hvassleiks", "hvassleiki", "", "sharpness"]) + let v = native_list_append(v, ["hvatleikr", "noun", "hvatleikar", "hvatleiks", "hvatleiki", "", "alacrity activity"]) + let v = native_list_append(v, ["hvítleikr", "noun", "hvítleikar", "hvítleiks", "hvítleiki", "", "whiteness"]) + let v = native_list_append(v, ["hǫfugleikr", "noun", "hǫfugleikar", "hǫfugleiks", "hǫfugleiki", "", "heaviness"]) + let v = native_list_append(v, ["hǫrpuleikr", "noun", "hǫrpuleikar", "hǫrpuleiks", "hǫrpuleiki", "", "playing on the"]) + let v = native_list_append(v, ["ísarn", "noun", "ísarn", "", "", "", "iron"]) + let v = native_list_append(v, ["ísarnleikr", "noun", "ísarnleikar", "ísarnleiks", "ísarnleiki", "", "battle"]) + let v = native_list_append(v, ["kappleikr", "noun", "kappleikar", "kappleiks", "kappleiki", "", "fighting match"]) + let v = native_list_append(v, ["knattleikr", "noun", "knattleikar", "knattleiks", "knattleiki", "", "knattleikr lit. ball-game"]) + let v = native_list_append(v, ["knáleikr", "noun", "knáleikar", "knáleiks", "knáleiki", "", "prowess hardihood"]) + let v = native_list_append(v, ["krankleikr", "noun", "krankleikar", "krankleiks", "krankleiki", "", "ailing illness"]) + let v = native_list_append(v, ["kunnleikr", "noun", "kunnleikar", "kunnleiks", "kunnleiki", "", "knowledge intelligence"]) + let v = native_list_append(v, ["kynligleikr", "noun", "kynligleikar", "kynligleiks", "kynligleiki", "", "a strange thing"]) + let v = native_list_append(v, ["kyrrleikr", "noun", "kyrrleikar", "kyrrleiks", "kyrrleiki", "", "tranquility"]) + let v = native_list_append(v, ["kyrra", "noun", "kyrrur", "kyrru", "kyrru", "", "calmness calm"]) + let v = native_list_append(v, ["kyrru", "noun", "kyrru", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["kærleikr", "noun", "kærleikar", "kærleiks", "kærleiki", "", "friendly terms intimacy"]) + let v = native_list_append(v, ["kœnleikr", "noun", "kœnleikar", "kœnleiks", "kœnleiki", "", "cleverness sagacity"]) + let v = native_list_append(v, ["lausleikr", "noun", "lausleikar", "lausleiks", "lausleiki", "", "looseness"]) + let v = native_list_append(v, ["léttleikr", "noun", "léttleikar", "léttleiks", "léttleiki", "", "lightness agility"]) + let v = native_list_append(v, ["linleikr", "noun", "linleikar", "linleiks", "linleiki", "", "lenity"]) + let v = native_list_append(v, ["lítilleikr", "noun", "lítilleikar", "lítilleiks", "lítilleiki", "", "littleness"]) + let v = native_list_append(v, ["ljósleikr", "noun", "ljósleikar", "ljósleiks", "ljósleiki", "", "brightness"]) + let v = native_list_append(v, ["ljótleikr", "noun", "ljótleikar", "ljótleiks", "ljótleiki", "", "ugliness"]) + let v = native_list_append(v, ["mikilleikr", "noun", "mikilleikar", "mikilleiks", "mikilleiki", "", "greatness largeness"]) + let v = native_list_append(v, ["mildleikr", "noun", "mildleikar", "mildleiks", "mildleiki", "", "mildness mercy"]) + let v = native_list_append(v, ["næmleikr", "noun", "næmleikar", "næmleiks", "næmleiki", "", "quickness to learn"]) + let v = native_list_append(v, ["ógurleikr", "noun", "ógurleikar", "ógurleiks", "ógurleiki", "", "awfulness"]) + let v = native_list_append(v, ["prúðleikr", "noun", "prúðleikar", "prúðleiks", "prúðleiki", "", "show ornament"]) + let v = native_list_append(v, ["ríkleikr", "noun", "ríkleikar", "ríkleiks", "ríkleiki", "", "power authority"]) + let v = native_list_append(v, ["roskinleikr", "noun", "roskinleikar", "roskinleiks", "roskinleiki", "", "ripeness perfection"]) + let v = native_list_append(v, ["rǫskleikr", "noun", "rǫskleikar", "rǫskleiks", "rǫskleiki", "", "briskness boldness"]) + let v = native_list_append(v, ["sannleikr", "noun", "sannleikar", "sannleiks", "sannleiki", "", "verity"]) + let v = native_list_append(v, ["sárleikr", "noun", "sárleikar", "sárleiks", "sárleiki", "", "soreness pain"]) + let v = native_list_append(v, ["skírleikr", "noun", "skírleikar", "skírleiks", "skírleiki", "", "purity"]) + let v = native_list_append(v, ["skrautleikr", "noun", "skrautleikar", "skrautleiks", "skrautleiki", "", "splendor"]) + let v = native_list_append(v, ["skuldleikr", "noun", "skuldleikar", "skuldleiks", "skuldleiki", "", "relationship"]) + let v = native_list_append(v, ["skygnleikr", "noun", "skygnleikar", "skygnleiks", "skygnleiki", "", "eyesight power of"]) + let v = native_list_append(v, ["skyldugleikr", "noun", "skyldugleikar", "skyldugleiks", "skyldugleiki", "", "relationship"]) + let v = native_list_append(v, ["skærleikr", "noun", "skærleikar", "skærleiks", "skærleiki", "", "brightness"]) + let v = native_list_append(v, ["skœðleikr", "noun", "skœðleikar", "skœðleiks", "skœðleiki", "", "scathefulness"]) + let v = native_list_append(v, ["sljóleikr", "noun", "sljóleikar", "sljóleiks", "sljóleiki", "", "dullness"]) + let v = native_list_append(v, ["slœgleikr", "noun", "slœgleikar", "slœgleiks", "slœgleiki", "", "slyness cunning"]) + let v = native_list_append(v, ["snarleikr", "noun", "snarleikar", "snarleiks", "snarleiki", "", "quickness smartness"]) + let v = native_list_append(v, ["snarpleikr", "noun", "snarpleikar", "snarpleiks", "snarpleiki", "", "roughness"]) + let v = native_list_append(v, ["básún", "noun", "básún", "", "", "", "bassoon"]) + let v = native_list_append(v, ["lúðr", "noun", "lúðrar", "lúðrs", "lúðri", "", "lur trumpet horn"]) + let v = native_list_append(v, ["sterkleikr", "noun", "sterkleikar", "sterkleiks", "sterkleiki", "", "strength"]) + let v = native_list_append(v, ["stórleikr", "noun", "stórleikar", "stórleiks", "stórleiki", "", "greatness size"]) + let v = native_list_append(v, ["strangleikr", "noun", "strangleikar", "strangleiks", "strangleiki", "", "strength violence"]) + let v = native_list_append(v, ["strengleikr", "noun", "strengleikar", "strengleiks", "strengleiki", "", "stringed instrument"]) + let v = native_list_append(v, ["strengleikar", "noun", "strengleikar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["stríðsmaðr", "noun", "stríðsmenn", "stríðsmanns", "stríðsmanni", "", "fighter warrior"]) + let v = native_list_append(v, ["stríðleikr", "noun", "stríðleikar", "stríðleiks", "stríðleiki", "", "vehemence"]) + let v = native_list_append(v, ["styggleikr", "noun", "styggleikar", "styggleiks", "styggleiki", "", "aversion"]) + let v = native_list_append(v, ["styrkleikr", "noun", "styrkleikar", "styrkleiks", "styrkleiki", "", "strength"]) + let v = native_list_append(v, ["stǫðugleikr", "noun", "stǫðugleikar", "stǫðugleiks", "stǫðugleiki", "", "steadfastness firmness"]) + let v = native_list_append(v, ["súrleikr", "noun", "súrleikar", "súrleiks", "súrleiki", "", "sourness"]) + let v = native_list_append(v, ["sœtleikr", "noun", "sœtleikar", "sœtleiks", "sœtleiki", "", "sweetness"]) + let v = native_list_append(v, ["tiginleikr", "noun", "tiginleikar", "tiginleiks", "tiginleiki", "", "noble birth"]) + let v = native_list_append(v, ["tíðleikr", "noun", "tíðleikar", "tíðleiks", "tíðleiki", "", "popularity"]) + let v = native_list_append(v, ["trúleikr", "noun", "trúleikar", "trúleiks", "trúleiki", "", "faithfulness fidelity"]) + let v = native_list_append(v, ["tryggleikr", "noun", "tryggleikar", "tryggleiks", "tryggleiki", "", "faithfulness fidelity"]) + let v = native_list_append(v, ["trúligleikr", "noun", "trúligleikar", "trúligleiks", "trúligleiki", "", "faithfulness fidelity"]) + let v = native_list_append(v, ["vaskleikr", "noun", "vaskleikar", "vaskleiks", "vaskleiki", "", "bravery valour"]) + let v = native_list_append(v, ["veikleikr", "noun", "veikleikar", "veikleiks", "veikleiki", "", "weakness"]) + let v = native_list_append(v, ["verðleikr", "noun", "verðleikar", "verðleiks", "verðleiki", "", "merit desert"]) + let v = native_list_append(v, ["vitringr", "noun", "vitringar", "vitrings", "vitringi", "", "wise man sage"]) + let v = native_list_append(v, ["vitrleikr", "noun", "vitrleikar", "vitrleiks", "vitrleiki", "", "wisdom sagacity"]) + let v = native_list_append(v, ["vitrleiksmaðr", "noun", "vitrleiksmenn", "vitrleiksmanns", "vitrleiksmanni", "", "wise man sage"]) + let v = native_list_append(v, ["víðleikr", "noun", "víðleikar", "víðleiks", "víðleiki", "", "width extent"]) + let v = native_list_append(v, ["vísleikr", "noun", "vísleikar", "vísleiks", "vísleiki", "", "knowledge wisdom"]) + let v = native_list_append(v, ["vænleikr", "noun", "vænleikar", "vænleiks", "vænleiki", "", "bodily beauty"]) + let v = native_list_append(v, ["værleikr", "noun", "værleikar", "værleiks", "værleiki", "", "rest peace tranquillity"]) + let v = native_list_append(v, ["vǫldugleikr", "noun", "vǫldugleikar", "vǫldugleiks", "vǫldugleiki", "", "power authority"]) + let v = native_list_append(v, ["ýmisleikr", "noun", "ýmisleikar", "ýmisleiks", "ýmisleiki", "", "fickleness mutability"]) + let v = native_list_append(v, ["þráleikr", "noun", "þráleikar", "þráleiks", "þráleiki", "", "perseverance"]) + let v = native_list_append(v, ["vísi", "noun", "vísar", "vísa", "vísa", "", "leader chief"]) + let v = native_list_append(v, ["vísir", "noun", "vísar", "vísis", "vísi", "", "leader king"]) + let v = native_list_append(v, ["skelfiskr", "noun", "skelfiskar", "skelfisks", "skelfiski", "", "shellfish"]) + let v = native_list_append(v, ["krepping", "noun", "kreppingar", "kreppingar", "kreppingu", "", "strait scrape"]) + let v = native_list_append(v, ["kreppingr", "noun", "kreppingar", "kreppings", "kreppingi", "", "handful"]) + let v = native_list_append(v, ["kroppinn", "noun", "kroppinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["kroppr", "noun", "kroppar", "kropps", "kroppi", "", "body"]) + let v = native_list_append(v, ["brunninn", "noun", "brunninn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["fundinn", "noun", "fundinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["miklan", "noun", "miklanir", "miklanar", "miklaninni", "", "increase greatness"]) + let v = native_list_append(v, ["mynni", "noun", "mynnin", "mynnis", "mynninu", "", "mouth of a"]) + let v = native_list_append(v, ["óss", "noun", "ósar", "óssins", "ósi", "", "mouth"]) + let v = native_list_append(v, ["ósmynni", "noun", "ósmynnin", "ósmynnis", "ósmynninu", "", "mouth of an"]) + let v = native_list_append(v, ["beizla", "noun", "beizlur", "beizlu", "beizlu", "", "alternative form of"]) + let v = native_list_append(v, ["beiðsla", "noun", "beiðslaur", "beizlu", "beiðslau", "", "request demand"]) + let v = native_list_append(v, ["beiðing", "noun", "beiðingar", "beiðingar", "beiðingu", "", "request demand"]) + let v = native_list_append(v, ["beizlu", "noun", "beizlu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["beizlumaðr", "noun", "beizlumenn", "beizlumanns", "beizlumanni", "", "a person asking"]) + let v = native_list_append(v, ["beiðslumaðr", "noun", "beiðslumenn", "beiðslumanns", "beiðslumanni", "", "a person asking"]) + let v = native_list_append(v, ["bitull", "noun", "bitlar", "bituls", "bitli", "", "the bit of"]) + let v = native_list_append(v, ["bitill", "noun", "bitlar", "bitils", "bitli", "", "the bit of"]) + let v = native_list_append(v, ["meyla", "noun", "meyla", "meylu", "", "", "young girl"]) + let v = native_list_append(v, ["bendan", "noun", "bendan", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["jǫkull", "noun", "jǫklar", "jǫkuls", "jǫkli", "", "icicle"]) + let v = native_list_append(v, ["jakafǫr", "noun", "jakafarar", "jakafarar", "jakafǫrinni", "", "drifting of icefloes"]) + let v = native_list_append(v, ["jǫklavatn", "noun", "jǫklavǫtn", "jǫklavatns", "jǫklavatni", "", "icy water"]) + let v = native_list_append(v, ["gangr", "noun", "gangar", "gangs", "gangi", "", "walking motion"]) + let v = native_list_append(v, ["jǫklagangr", "noun", "jǫklagangar", "jǫklagangs", "jǫklagangi", "", "ice drift"]) + let v = native_list_append(v, ["jǫkulvatn", "noun", "jǫkulvǫtn", "jǫkulvatns", "jǫkulvatni", "", "ice water from"]) + let v = native_list_append(v, ["trénu", "noun", "trénu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["hestinum", "noun", "hestinum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["armanna", "noun", "armanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["tréit", "noun", "tréit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["trésins", "noun", "trésins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["tréin", "noun", "tréin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["trjánna", "noun", "trjánna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["trjánum", "noun", "trjánum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["trjónum", "noun", "trjónum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["teyging", "noun", "teygingar", "teygingar", "teygingu", "", "enticement temptation"]) + let v = native_list_append(v, ["véum", "noun", "véum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["véa", "noun", "véa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fjárins", "noun", "fjárins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["fénu", "noun", "fénu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["féit", "noun", "féit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["knéit", "noun", "knéit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["knjánna", "noun", "knjánna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["knjám", "noun", "knjám", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["knjánum", "noun", "knjánum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["knés", "noun", "knés", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["knjóm", "noun", "knjóm", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["knjá", "noun", "knjá", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["knésins", "noun", "knésins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["knéin", "noun", "knéin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["áttum", "noun", "áttum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["áttir", "noun", "áttir", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["tigir", "noun", "tigir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["trúm", "noun", "trúm", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["trúari", "noun", "trúari", "trúara", "", "", "believer"]) + let v = native_list_append(v, ["trúnaðr", "noun", "trúnaðir", "trúnaðar", "trúnaði", "", "trust good faith"]) + let v = native_list_append(v, ["trúnaðareiðr", "noun", "trúnaðareiðar", "trúnaðareiðs", "trúnaðareiði", "", "oath of allegiance"]) + let v = native_list_append(v, ["trúnaðarkona", "noun", "trúnaðarkonur", "trúnaðarkonu", "trúnaðarkonu", "", "confidante"]) + let v = native_list_append(v, ["trúnaðarmaðr", "noun", "trúnaðarmenn", "trúnaðarmanns", "trúnaðarmanni", "", "confidant"]) + let v = native_list_append(v, ["trygill", "noun", "tryglar", "trygils", "trygli", "", "little trough"]) + let v = native_list_append(v, ["grautr", "noun", "grautr", "grautar", "", "", "porridge"]) + let v = native_list_append(v, ["grautartrygill", "noun", "grautartryglar", "grautartrygils", "grautartrygli", "", "porridge trough"]) + let v = native_list_append(v, ["grautarketill", "noun", "grautarkatlar", "grautarketils", "grautarkatli", "", "porridge pot"]) + let v = native_list_append(v, ["grautartrog", "noun", "grautartrogin", "grautartrogs", "grautartrogi", "", "porridge trough"]) + let v = native_list_append(v, ["gráðr", "noun", "gráðar", "gráðs", "gráði", "", "greed hunger"]) + let v = native_list_append(v, ["grásteinn", "noun", "grásteinar", "grásteins", "grásteini", "", "a grey stone"]) + let v = native_list_append(v, ["hvísl", "noun", "hvíslin", "hvísls", "hvísli", "", "whisper"]) + let v = native_list_append(v, ["hvískr", "noun", "hvískrin", "hvískrs", "hvískri", "", "whisper whispering"]) + let v = native_list_append(v, ["hvirfilvindr", "noun", "hvirfilvindar", "hvirfilvinds", "hvirfilvindi", "", "whirlwind"]) + let v = native_list_append(v, ["hvirfla", "noun", "hvirfla", "", "", "", "inflection of hvirfill"]) + let v = native_list_append(v, ["hvirfingr", "noun", "hvirfingar", "hvirfings", "hvirfingi", "", "circle of men"]) + let v = native_list_append(v, ["hvirfing", "noun", "hvirfingar", "hvirfingar", "hvirfingu", "", "circle of men"]) + let v = native_list_append(v, ["hvirfingsdrykkja", "noun", "hvirfingsdrykkjur", "hvirfingsdrykkju", "hvirfingsdrykkju", "", "drinking bout"]) + let v = native_list_append(v, ["taufr", "noun", "taufrin", "taufra", "taufrum", "", "sorcery charms"]) + let v = native_list_append(v, ["taufrar", "noun", "taufrarnir", "taufra", "taufrum", "", "sorcery charms"]) + let v = native_list_append(v, ["taumalag", "noun", "taumalǫg", "taumalags", "taumalagi", "", "holding the reins"]) + let v = native_list_append(v, ["tjúga", "noun", "tjúgur", "tjúgu", "tjúgu", "", "pitchfork"]) + let v = native_list_append(v, ["tjúgari", "noun", "tjúgarar", "tjúgara", "tjúgara", "", "destroyer"]) + let v = native_list_append(v, ["tygill", "noun", "tugla", "tygils", "tugli", "", "strap band"]) + let v = native_list_append(v, ["tugla", "noun", "tugla", "", "", "", "inflection of tygill"]) + let v = native_list_append(v, ["ǫfund", "noun", "ǫfundar", "ǫfundar", "ǫfundinni", "", "envy"]) + let v = native_list_append(v, ["ástig", "noun", "ástigin", "ástigs", "ástigi", "", "treading upon"]) + let v = native_list_append(v, ["stigr", "noun", "stigr", "stigs", "", "", "alternative form of"]) + let v = native_list_append(v, ["stígr", "noun", "stígar", "stígs", "stígi", "", "path"]) + let v = native_list_append(v, ["stígs", "noun", "stígs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["stiginn", "noun", "stiginn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["stigin", "noun", "stigin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["stéttr", "noun", "stéttir", "stéttar", "stétt", "", "alternative form of"]) + let v = native_list_append(v, ["stéttar", "noun", "stéttar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["stigum", "noun", "stigum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["stígum", "noun", "stígum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["stíg", "noun", "stíg", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["stígi", "noun", "stígi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["steðja", "noun", "steðja", "", "", "", "inflection of steði"]) + let v = native_list_append(v, ["steðjasteinn", "noun", "steðjasteinar", "steðjasteins", "steðjasteini", "", "stone base of"]) + let v = native_list_append(v, ["steðjanef", "noun", "steðjanefin", "steðjanefs", "steðjanefi", "", "the thin end"]) + let v = native_list_append(v, ["sǫlt", "noun", "sǫlt", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["seljandi", "noun", "seljendr", "seljanda", "seljanda", "", "seller vendor"]) + let v = native_list_append(v, ["seljari", "noun", "seljarar", "seljara", "seljara", "", "seller"]) + let v = native_list_append(v, ["seljara", "noun", "seljara", "", "", "", "inflection of seljar"]) + let v = native_list_append(v, ["ǫlum", "noun", "ǫlum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["alinn", "noun", "alinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["alnir", "noun", "alnir", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["brigða", "noun", "brigða", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["brigði", "noun", "brigðin", "brigða", "brigðum", "", "right to reclaim"]) + let v = native_list_append(v, ["brigð", "noun", "brigðar", "brigðar", "brigðinni", "", "right to reclaim"]) + let v = native_list_append(v, ["úfriðr", "noun", "úfriðir", "úfriðar", "úfriði", "", "war hostilities"]) + let v = native_list_append(v, ["úfriðar", "noun", "úfriðar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["úfriðarmaðr", "noun", "úfriðarmenn", "úfriðarmanns", "úfriðarmanni", "", "enemy"]) + let v = native_list_append(v, ["frið", "noun", "frið", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["úfríðleikr", "noun", "úfríðleikar", "úfríðleiks", "úfríðleiki", "", "ugliness"]) + let v = native_list_append(v, ["frjós", "noun", "frjós", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["frjóva", "noun", "frjóva", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["lǫgin", "noun", "lǫgin", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["sogit", "noun", "sogit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["hramma", "noun", "hramma", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["borgin", "noun", "borgin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["borginni", "noun", "borginni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["brennum", "noun", "brennum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["brennu", "noun", "brennu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["brandr", "noun", "brandar", "brands", "brandi", "", "brand firebrand"]) + let v = native_list_append(v, ["brunnr", "noun", "brunnar", "brunns", "brunni", "", "a spring"]) + let v = native_list_append(v, ["bruðr", "noun", "brunnar", "brunns", "brunni", "", "a spring"]) + let v = native_list_append(v, ["hlaupit", "noun", "hlaupit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["haldit", "noun", "haldit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["skarta", "noun", "skarta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["skartari", "noun", "skartarar", "skartara", "skartara", "", "a vain boaster"]) + let v = native_list_append(v, ["skartara", "noun", "skartara", "", "", "", "inflection of skartari"]) + let v = native_list_append(v, ["skyrtu", "noun", "skyrtu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["bǫrð", "noun", "bǫrð", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["barði", "noun", "barðar", "barða", "barða", "", "ship"]) + let v = native_list_append(v, ["bǫrðu", "noun", "bǫrðu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["barða", "noun", "bǫrður", "bǫrðu", "bǫrðu", "", "some sort of"]) + let v = native_list_append(v, ["bǫrðum", "noun", "bǫrðum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["herði", "noun", "herði", "", "", "", "hardness hardihood"]) + let v = native_list_append(v, ["herað", "noun", "heruð", "heraðs", "herði", "", "district"]) + let v = native_list_append(v, ["heruð", "noun", "heruð", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["iljar", "noun", "iljar", "", "", "", "inflection of il"]) + let v = native_list_append(v, ["fitjar", "noun", "fitjar", "", "", "", "inflection of fit"]) + let v = native_list_append(v, ["engjar", "noun", "engjar", "", "", "", "inflection of eng"]) + let v = native_list_append(v, ["tegr", "noun", "tegr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tugr", "noun", "tugr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["togr", "noun", "togr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tøgr", "noun", "tøgr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hafit", "noun", "hafit", "", "", "", "nominative/accusative definite singular"]) + let v = native_list_append(v, ["hófs", "noun", "hófs", "", "", "", "genitive indefinite singular"]) + let v = native_list_append(v, ["hófum", "noun", "hófum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["tíðar", "noun", "tíðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dǿld", "noun", "dǿld", "", "", "", "a little dale"]) + let v = native_list_append(v, ["daginn", "noun", "daginn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["halsi", "noun", "halsi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["skrefa", "noun", "skrefa", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["hafi", "noun", "hafi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kyns", "noun", "kyns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vǫku", "noun", "vǫku", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["hafsins", "noun", "hafsins", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["Balldr", "noun", "Balldr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vetra", "noun", "vetra", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["vetrum", "noun", "vetrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["seljumannamessa", "noun", "seljumannamessa", "seljumannamessu", "", "", "feast held on"]) + let v = native_list_append(v, ["Agli", "noun", "Agli", "", "", "", "dative of Egill"]) + let v = native_list_append(v, ["Helgu", "noun", "Helgu", "", "", "", "inflection of Helga"]) + let v = native_list_append(v, ["Bjarna", "noun", "Bjarna", "", "", "", "inflection of Bjarni"]) + let v = native_list_append(v, ["Þórbirni", "noun", "Þórbirni", "", "", "", "dative of Þórbjǫrn"]) + let v = native_list_append(v, ["Þórbjarnar", "noun", "Þórbjarnar", "", "", "", "genitive of Þórbjǫrn"]) + let v = native_list_append(v, ["Alþjófs", "noun", "Alþjófs", "", "", "", "genitive of Alþjófr"]) + let v = native_list_append(v, ["Dáins", "noun", "Dáins", "", "", "", "genitive of Dáinn"]) + let v = native_list_append(v, ["Dáin", "noun", "Dáin", "", "", "", "accusative of Dáinn"]) + let v = native_list_append(v, ["Baldrs", "noun", "Baldrs", "", "", "", "genitive of Baldr"]) + let v = native_list_append(v, ["Baldri", "noun", "Baldri", "", "", "", "dative of Baldr"]) + let v = native_list_append(v, ["Sveins", "noun", "Sveins", "", "", "", "genitive of Sveinn"]) + let v = native_list_append(v, ["Sveini", "noun", "Sveini", "", "", "", "dative of Sveinn"]) + let v = native_list_append(v, ["Freyju", "noun", "Freyju", "", "", "", "inflection of Freyja"]) + let v = native_list_append(v, ["Ingu", "noun", "Ingu", "", "", "", "inflection of Inga"]) + let v = native_list_append(v, ["Ellu", "noun", "Ellu", "", "", "", "inflection of Ella"]) + let v = native_list_append(v, ["Bláni", "noun", "Bláni", "", "", "", "dative of Bláinn"]) + let v = native_list_append(v, ["Bláins", "noun", "Bláins", "", "", "", "genitive of Bláinn"]) + let v = native_list_append(v, ["Bláin", "noun", "Bláin", "", "", "", "accusative of Bláinn"]) + let v = native_list_append(v, ["Viðbjarnar", "noun", "Viðbjarnar", "", "", "", "genitive of Viðbjǫrn"]) + let v = native_list_append(v, ["Viðbirni", "noun", "Viðbirni", "", "", "", "dative of Viðbjǫrn"]) + let v = native_list_append(v, ["Ásbjarnar", "noun", "Ásbjarnar", "", "", "", "genitive of Ásbjǫrn"]) + let v = native_list_append(v, ["Ásbirni", "noun", "Ásbirni", "", "", "", "dative of Ásbjǫrn"]) + let v = native_list_append(v, ["Óðni", "noun", "Óðni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Óðins", "noun", "Óðins", "", "", "", "genitive of Óðinn"]) + let v = native_list_append(v, ["Þóris", "noun", "Þóris", "", "", "", "genitive of Þórir"]) + let v = native_list_append(v, ["Þóri", "noun", "Þóri", "", "", "", "accusative/dative of Þórir"]) + let v = native_list_append(v, ["Frakklands", "noun", "Frakklands", "", "", "", "genitive of Frakkland"]) + let v = native_list_append(v, ["Finnlandi", "noun", "Finnlandi", "", "", "", "dative of Finnland"]) + let v = native_list_append(v, ["Finnlands", "noun", "Finnlands", "", "", "", "genitive of Finnland"]) + let v = native_list_append(v, ["Jótlands", "noun", "Jótlands", "", "", "", "genitive of Jótland"]) + let v = native_list_append(v, ["Jótlandi", "noun", "Jótlandi", "", "", "", "dative of Jótland"]) + let v = native_list_append(v, ["Færeyja", "noun", "Færeyja", "", "", "", "genitive of Færeyjar"]) + let v = native_list_append(v, ["Færeyjum", "noun", "Færeyjum", "", "", "", "dative of Færeyjar"]) + let v = native_list_append(v, ["Orkneyja", "noun", "Orkneyja", "", "", "", "genitive of Orkneyjar"]) + let v = native_list_append(v, ["Orkneyjum", "noun", "Orkneyjum", "", "", "", "dative of Orkneyjar"]) + let v = native_list_append(v, ["Suðreyja", "noun", "Suðreyja", "", "", "", "genitive of Suðreyjar"]) + let v = native_list_append(v, ["Suðreyjum", "noun", "Suðreyjum", "", "", "", "dative of Suðreyjar"]) + let v = native_list_append(v, ["Vestmannaeyja", "noun", "Vestmannaeyja", "", "", "", "genitive of Vestmannaeyjar"]) + let v = native_list_append(v, ["Vestmannaeyjum", "noun", "Vestmannaeyjum", "", "", "", "dative of Vestmannaeyjar"]) + let v = native_list_append(v, ["Ými", "noun", "Ými", "", "", "", "inflection of Ýmir"]) + let v = native_list_append(v, ["Ýmis", "noun", "Ýmis", "", "", "", "genitive of Ýmir"]) + let v = native_list_append(v, ["Friðþjófs", "noun", "Friðþjófs", "", "", "", "genitive of Friðþjófr"]) + let v = native_list_append(v, ["Friðþjófi", "noun", "Friðþjófi", "", "", "", "dative of Friðþjófr"]) + let v = native_list_append(v, ["Friðþjóf", "noun", "Friðþjóf", "", "", "", "accusative of Friðþjófr"]) + let v = native_list_append(v, ["Haraldi", "noun", "Haraldi", "", "", "", "dative of Haraldr"]) + let v = native_list_append(v, ["Bjarnar", "noun", "Bjarnar", "", "", "", "genitive of Bjǫrn"]) + let v = native_list_append(v, ["Brimis", "noun", "Brimis", "", "", "", "genitive of Brimir"]) + let v = native_list_append(v, ["Brimi", "noun", "Brimi", "", "", "", "inflection of Brimir"]) + let v = native_list_append(v, ["Ragnhildar", "noun", "Ragnhildar", "", "", "", "genitive of Ragnhildr"]) + let v = native_list_append(v, ["Ragnhildi", "noun", "Ragnhildi", "", "", "", "inflection of Ragnhildr"]) + let v = native_list_append(v, ["Grimhildar", "noun", "Grimhildar", "", "", "", "genitive of Grimhildr"]) + let v = native_list_append(v, ["Grimhildi", "noun", "Grimhildi", "", "", "", "inflection of Grimhildr"]) + let v = native_list_append(v, ["Borghildar", "noun", "Borghildar", "", "", "", "genitive of Borghildr"]) + let v = native_list_append(v, ["Borghildi", "noun", "Borghildi", "", "", "", "dative of Borghildr"]) + let v = native_list_append(v, ["Eðnu", "noun", "Eðnu", "", "", "", "inflection of Eðna"]) + let v = native_list_append(v, ["Rannveigar", "noun", "Rannveigar", "", "", "", "genitive of Rannveig"]) + let v = native_list_append(v, ["Sverris", "noun", "Sverris", "", "", "", "genitive of Sverrir"]) + let v = native_list_append(v, ["Hákonar", "noun", "Hákonar", "", "", "", "genitive of Hákon"]) + let v = native_list_append(v, ["Hákoni", "noun", "Hákoni", "", "", "", "dative of Hákon"]) + let v = native_list_append(v, ["Sindra", "noun", "Sindra", "", "", "", "inflection of Sindri"]) + let v = native_list_append(v, ["Eiríks", "noun", "Eiríks", "", "", "", "genitive of Eiríkr"]) + let v = native_list_append(v, ["Eiríki", "noun", "Eiríki", "", "", "", "dative of Eiríkr"]) + let v = native_list_append(v, ["Eirík", "noun", "Eirík", "", "", "", "accusative of Eiríkr"]) + let v = native_list_append(v, ["hǫfðingi", "noun", "hǫfðingjar", "hǫfðingja", "hǫfðingja", "", "a chief chieftain"]) + let v = native_list_append(v, ["jastar", "noun", "jastar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["jǫst", "noun", "jǫst", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["mœðr", "noun", "mœðr", "", "", "", "inflection of móðir"]) + let v = native_list_append(v, ["síðu", "noun", "síðu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["þurfta", "noun", "þurfta", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["deigs", "noun", "deigs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["sessar", "noun", "sessar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["virtr", "noun", "virtr", "", "", "", "beerwort"]) + let v = native_list_append(v, ["birnu", "noun", "birnu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["birnur", "noun", "birnur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["deginum", "noun", "deginum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["dagarnir", "noun", "dagarnir", "", "", "", "definite nominative plural"]) + let v = native_list_append(v, ["daganna", "noun", "daganna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["dagsins", "noun", "dagsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["frouva", "noun", "frouva", "", "", "", "lady"]) + let v = native_list_append(v, ["steinsins", "noun", "steinsins", "", "", "", "genitive definite singular"]) + let v = native_list_append(v, ["freyjudagr", "noun", "freyjudagr", "", "", "", "synonym of frjádagr"]) + let v = native_list_append(v, ["friggjardagr", "noun", "friggjardagr", "", "", "", "synonym of frjádagr"]) + let v = native_list_append(v, ["vǫggu", "noun", "vǫggu", "", "", "", "inflection of vagga"]) + let v = native_list_append(v, ["lífsins", "noun", "lífsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["lífs", "noun", "lífs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lífi", "noun", "lífi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["lífinu", "noun", "lífinu", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["lífunum", "noun", "lífunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["lífum", "noun", "lífum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["lífa", "noun", "lífa", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["fíla", "noun", "fíla", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["lífanna", "noun", "lífanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["lífit", "noun", "lífit", "", "", "", "nominative/accusative singular definite"]) + let v = native_list_append(v, ["lífin", "noun", "lífin", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["mjǫl", "noun", "mjǫlin", "mjǫls", "mjǫlvi", "", "flour"]) + let v = native_list_append(v, ["Kvasir", "noun", "Kvasir", "", "", "", "Kvasir one of"]) + let v = native_list_append(v, ["hasl", "noun", "haslar", "hasls", "hasli", "", "hazel"]) + let v = native_list_append(v, ["Mǫn", "noun", "Mǫn", "Manar", "Mǫnu", "", "Isle of Man"]) + let v = native_list_append(v, ["vǫrtu", "noun", "vǫrtu", "", "", "", "inflection of varta"]) + let v = native_list_append(v, ["vissu", "noun", "vissu", "", "", "", "inflection of vissa"]) + let v = native_list_append(v, ["ferju", "noun", "ferju", "", "", "", "inflection of ferja"]) + let v = native_list_append(v, ["ferjur", "noun", "ferjur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["brynju", "noun", "brynju", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["netju", "noun", "netju", "", "", "", "inflection of netja"]) + let v = native_list_append(v, ["verju", "noun", "verju", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["brynjur", "noun", "brynjur", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["netjur", "noun", "netjur", "", "", "", "inflection of netja"]) + let v = native_list_append(v, ["hǫku", "noun", "hǫku", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["þvǫgu", "noun", "þvǫgu", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["dalir", "noun", "dalir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["grikkr", "noun", "grikkir", "grikks", "grikk", "", "the Byzantine Greeks"]) + let v = native_list_append(v, ["Mallar", "noun", "Mallar", "Malla", "Mǫllum", "", "a farm north"]) + let v = native_list_append(v, ["hlemmr", "noun", "hlemmar", "hlemms", "hlemmi", "", "trapdoor"]) + let v = native_list_append(v, ["sjaustirni", "noun", "sjaustirni", "", "", "", "Pleiades"]) + let v = native_list_append(v, ["ǫlku", "noun", "ǫlku", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["hvelpr", "noun", "hvelpar", "hvelps", "hvelpi", "", "puppy"]) + let v = native_list_append(v, ["klettr", "noun", "klettir", "klettar", "kletti", "", "hill crag cliff"]) + let v = native_list_append(v, ["mǫl", "noun", "mǫl", "malar", "mǫlinni", "", "shingle pebbles gravel"]) + let v = native_list_append(v, ["mǫlin", "noun", "mǫlin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["mǫlina", "noun", "mǫlina", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["mǫlr", "noun", "melir", "malar", "meli", "", "moth"]) + let v = native_list_append(v, ["melir", "noun", "melir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["rǫng", "noun", "rengr", "rangar", "rǫnginni", "", "rib of a"]) + let v = native_list_append(v, ["aptrganga", "noun", "aptrgǫngur", "aptrgǫngu", "aptrgǫngu", "", "a haunting"]) + let v = native_list_append(v, ["festr", "noun", "festar", "festar", "festi", "", "rope cord cable"]) + let v = native_list_append(v, ["eikja", "noun", "eikjur", "eikju", "eikju", "", "a small ferry"]) + let v = native_list_append(v, ["Manar", "noun", "Manar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hjǫlpum", "noun", "hjǫlpum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hǫldum", "noun", "hǫldum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["bǿ", "noun", "bǿ", "", "", "", "indefinite accusative/dative singular"]) + let v = native_list_append(v, ["bǿjar", "noun", "bǿjar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["bǿrinn", "noun", "bǿrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["bǿinn", "noun", "bǿinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["bǿnum", "noun", "bǿnum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["bǿjarins", "noun", "bǿjarins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["bǿir", "noun", "bǿir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["bǿi", "noun", "bǿi", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["bǿjum", "noun", "bǿjum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["bǿja", "noun", "bǿja", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["bǿirnir", "noun", "bǿirnir", "", "", "", "definite nominative plural"]) + let v = native_list_append(v, ["bǿina", "noun", "bǿina", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["bǿjunum", "noun", "bǿjunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["bǿjanna", "noun", "bǿjanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["festrin", "noun", "festrin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["festinni", "noun", "festinni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["festarinnar", "noun", "festarinnar", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["festarnar", "noun", "festarnar", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["festunum", "noun", "festunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["festanna", "noun", "festanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["aptrgǫngu", "noun", "aptrgǫngu", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["aptrgangan", "noun", "aptrgangan", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["aptrgǫnguna", "noun", "aptrgǫnguna", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["aptrgǫngunni", "noun", "aptrgǫngunni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["aptrgǫngunnar", "noun", "aptrgǫngunnar", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["aptrgǫngur", "noun", "aptrgǫngur", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["aptrgǫngum", "noun", "aptrgǫngum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["aptrgangna", "noun", "aptrgangna", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["aptrgǫngurnar", "noun", "aptrgǫngurnar", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["aptrgǫngunum", "noun", "aptrgǫngunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["aptrgangnanna", "noun", "aptrgangnanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["svarit", "noun", "svarit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["svarinu", "noun", "svarinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["svarsins", "noun", "svarsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["svǫr", "noun", "svǫr", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["svǫrum", "noun", "svǫrum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["svǫrin", "noun", "svǫrin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["svǫrunum", "noun", "svǫrunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["svaranna", "noun", "svaranna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["rǫngin", "noun", "rǫngin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["rǫngina", "noun", "rǫngina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["rǫnginni", "noun", "rǫnginni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["rangarinnar", "noun", "rangarinnar", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["rengr", "noun", "rengr", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["rǫngum", "noun", "rǫngum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["rengrnar", "noun", "rengrnar", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["rǫngunum", "noun", "rǫngunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["bozins", "noun", "bozins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["vazins", "noun", "vazins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["fylgða", "noun", "fylgða", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["fylgð", "noun", "fylgðir", "fylgðar", "fylgðinni", "", "help support follower"]) + let v = native_list_append(v, ["laxinn", "noun", "laxinn", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["laxarnir", "noun", "laxarnir", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["lǫxunum", "noun", "lǫxunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["laxana", "noun", "laxana", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["laxanna", "noun", "laxanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["laxinum", "noun", "laxinum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["laxins", "noun", "laxins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["faxinu", "noun", "faxinu", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["faxins", "noun", "faxins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["faxit", "noun", "faxit", "", "", "", "nominative/accusative singular definite"]) + let v = native_list_append(v, ["fǫxin", "noun", "fǫxin", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["faxanna", "noun", "faxanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["fǫxunum", "noun", "fǫxunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["ylgrin", "noun", "ylgrin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["ylgjar", "noun", "ylgjar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["ylgjarinnar", "noun", "ylgjarinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["ylgina", "noun", "ylgina", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["ylginni", "noun", "ylginni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["ylgjarnar", "noun", "ylgjarnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["ylgjanna", "noun", "ylgjanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["ylgjunum", "noun", "ylgjunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["ylgja", "noun", "ylgja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ylgjum", "noun", "ylgjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["ylgi", "noun", "ylgi", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["eyju", "noun", "eyju", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["eyjum", "noun", "eyjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["eyjunum", "noun", "eyjunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["eyjunni", "noun", "eyjunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["eyin", "noun", "eyin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["eyna", "noun", "eyna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["eyjarinnar", "noun", "eyjarinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["eynni", "noun", "eynni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["eyjanna", "noun", "eyjanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["eyjarnar", "noun", "eyjarnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["eyjar", "noun", "eyjar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["mærin", "noun", "mærin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["meyin", "noun", "meyin", "", "", "", "alternative nominative singular"]) + let v = native_list_append(v, ["meyna", "noun", "meyna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["meynni", "noun", "meynni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["meyjunum", "noun", "meyjunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["meyjunni", "noun", "meyjunni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["meyjum", "noun", "meyjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["meyjarnar", "noun", "meyjarnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["meyjar", "noun", "meyjar", "", "", "", "inflection of mær"]) + let v = native_list_append(v, ["meyju", "noun", "meyju", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["meyjanna", "noun", "meyjanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["meyjarinnar", "noun", "meyjarinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["súna", "noun", "súna", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["súnni", "noun", "súnni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["súanna", "noun", "súanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["súnum", "noun", "súnum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["sýrnar", "noun", "sýrnar", "", "", "", "nominative/accusative plural definite"]) + let v = native_list_append(v, ["sýrinnar", "noun", "sýrinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["sýrin", "noun", "sýrin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["rekkr", "noun", "rekkar", "rekks", "rekki", "", "man warrior"]) + let v = native_list_append(v, ["alfi", "noun", "alfi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kirkju", "noun", "kirkju", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["staurr", "noun", "staurar", "staurs", "stauri", "", "pole stake"]) + let v = native_list_append(v, ["staura", "noun", "staura", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["sultr", "noun", "sultr", "sultar", "sulti", "", "hunger"]) + let v = native_list_append(v, ["sultar", "noun", "sultar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["sults", "noun", "sults", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["mǫrð", "noun", "mǫrð", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["merði", "noun", "merði", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["marðar", "noun", "marðar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["marða", "noun", "marða", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["mǫrðum", "noun", "mǫrðum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["merðir", "noun", "merðir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["mǫrðu", "noun", "mǫrðu", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["skapit", "noun", "skapit", "", "", "", "nominative/accusative singular definite"]) + let v = native_list_append(v, ["skapti", "noun", "skapti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["verjur", "noun", "verjur", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["verjum", "noun", "verjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["verit", "noun", "verit", "", "", "", "nominative/accusative singular indefinite"]) + let v = native_list_append(v, ["þráð", "noun", "þráð", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["hjartna", "noun", "hjartna", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["hjartnanna", "noun", "hjartnanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["mennina", "noun", "mennina", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["mannanna", "noun", "mannanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["mǫnnunum", "noun", "mǫnnunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["manninn", "noun", "manninn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["manninum", "noun", "manninum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["mannsins", "noun", "mannsins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["blaðs", "noun", "blaðs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["hrossi", "noun", "hrossi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["verðir", "noun", "verðir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["fjǫrsungr", "noun", "fjǫrsungar", "fjǫrsungs", "fjǫrsungi", "", "zoology"]) + let v = native_list_append(v, ["fjǫlgan", "noun", "fjǫlganir", "fjǫlganar", "fjǫlganinni", "", "increase in number"]) + let v = native_list_append(v, ["fjǫldi", "noun", "fjǫldar", "fjǫlda", "fjǫlda", "", "multitude"]) + let v = native_list_append(v, ["fjǫld", "noun", "fjǫldir", "fjǫldar", "fjǫldinni", "", "multitude great number"]) + let v = native_list_append(v, ["tíma", "noun", "tíma", "", "", "", "inflection of tími"]) + let v = native_list_append(v, ["sparrar", "noun", "sparrar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["spǫrs", "noun", "spǫrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["lýss", "noun", "lýss", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["lúsar", "noun", "lúsar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["keppr", "noun", "keppar", "kepps", "keppi", "", "cudgel club"]) + let v = native_list_append(v, ["kvíar", "noun", "kvíar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["verpill", "noun", "verplar", "verpils", "verpli", "", "die game piece"]) + let v = native_list_append(v, ["helgum", "noun", "helgum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["auðar", "noun", "auðar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["sóttar", "noun", "sóttar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["sóttir", "noun", "sóttir", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["sóttum", "noun", "sóttum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["sótta", "noun", "sótta", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["tíminn", "noun", "tíminn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["smiðjur", "noun", "smiðjur", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["legur", "noun", "legur", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["dóttur", "noun", "dóttur", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["hlíðar", "noun", "hlíðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vatns", "noun", "vatns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["setur", "noun", "setur", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["fuð", "noun", "fuð", "", "", "", "cunt vagina vulva"]) + let v = native_list_append(v, ["svǫlu", "noun", "svǫlu", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["soppr", "noun", "soppar", "sopps", "soppi", "", "alternative form of"]) + let v = native_list_append(v, ["hixta", "noun", "hixta", "", "", "", "oblique singular indefinite"]) + let v = native_list_append(v, ["hixti", "noun", "hixtar", "hixta", "hixta", "", "hiccough"]) + let v = native_list_append(v, ["meldrar", "noun", "meldrar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["meldr", "noun", "meldr", "meldrs", "", "", "grinding"]) + let v = native_list_append(v, ["rekling", "noun", "rekling", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["hlǫðu", "noun", "hlǫðu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["reyndir", "noun", "reyndir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hjassi", "noun", "hjassi", "hjassa", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hjarsi", "noun", "hjarsar", "hjarsa", "hjarsa", "", "crown of the"]) + let v = native_list_append(v, ["akrar", "noun", "akrar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hlunnr", "noun", "hlunnar", "hlunns", "hlunni", "", "a roller for"]) + let v = native_list_append(v, ["hlunns", "noun", "hlunns", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["hlunnar", "noun", "hlunnar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["offr", "noun", "offrin", "offrs", "offri", "", "an offering"]) + let v = native_list_append(v, ["tjǫru", "noun", "tjǫru", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["fjǫru", "noun", "fjǫru", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["siklingr", "noun", "siklingar", "siklings", "siklingi", "", "poet king ruler"]) + let v = native_list_append(v, ["rassar", "noun", "rassar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["kvelds", "noun", "kvelds", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bakstr", "noun", "bakstrar", "bakstrs", "bakstri", "", "baking"]) + let v = native_list_append(v, ["bakstrar", "noun", "bakstrar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["barnabǫrn", "noun", "barnabǫrnin", "barnabarna", "barnabǫrnum", "", "grandchildren"]) + let v = native_list_append(v, ["einmenning", "noun", "einmenning", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["verkr", "noun", "verkir", "verkar", "verk", "", "ache pain"]) + let v = native_list_append(v, ["hagfella", "noun", "hagfellur", "hagfellu", "hagfellu", "", "a kind of"]) + let v = native_list_append(v, ["vinskapr", "noun", "vinskapir", "vinskapar", "vinskap", "", "friendship"]) + let v = native_list_append(v, ["Ingimarr", "noun", "Ingimarr", "Ingimars", "Ingimari", "", "a male given"]) + let v = native_list_append(v, ["skúmi", "noun", "skúmi", "", "", "", "twilight"]) + let v = native_list_append(v, ["lútr", "noun", "lútr", "", "", "", "stooping"]) + let v = native_list_append(v, ["annir", "noun", "annir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ræsi", "noun", "ræsi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["ǫxull", "noun", "ǫxlar", "ǫxuls", "ǫxli", "", "an axle"]) + let v = native_list_append(v, ["ǫxultré", "noun", "ǫxultréin", "ǫxultrés", "ǫxultrénu", "", "an axletree"]) + let v = native_list_append(v, ["skarsl", "noun", "skarsl", "", "", "", "snuff of a"]) + let v = native_list_append(v, ["veipr", "noun", "veipr", "", "", "", "A kind of"]) + let v = native_list_append(v, ["þyrill", "noun", "þyrill", "", "", "", "stirring stick"]) + let v = native_list_append(v, ["fíra", "noun", "fíra", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["fírum", "noun", "fírum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["þjóðna", "noun", "þjóðna", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["þjóðan", "noun", "þjóðan", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["þjóðni", "noun", "þjóðni", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["þjóðans", "noun", "þjóðans", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["þjóðnar", "noun", "þjóðnar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["þjóðnum", "noun", "þjóðnum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["Herjann", "noun", "Herjann", "", "", "", "leader of armies"]) + let v = native_list_append(v, ["Herjans", "noun", "Herjans", "", "", "", "genitive of Herjann"]) + let v = native_list_append(v, ["hanana", "noun", "hanana", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["gáttir", "noun", "gáttir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ǫ́ss", "noun", "æsir", "ásar", "æsi", "", "alternative form of"]) + let v = native_list_append(v, ["flesjar", "noun", "flesjar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["þella", "noun", "þellur", "þellu", "þellu", "", "fir tree"]) + let v = native_list_append(v, ["stǫrr", "noun", "stǫrr", "", "", "", "a true sedge"]) + let v = native_list_append(v, ["ǫndra", "noun", "ǫndra", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["hnata", "noun", "hnata", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["hǫnum", "noun", "hǫnum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["hananna", "noun", "hananna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["hanarnir", "noun", "hanarnir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hǫnunum", "noun", "hǫnunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["iljarnar", "noun", "iljarnar", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["ásynja", "noun", "ásynjur", "ásynju", "ásynju", "", "goddess a female"]) + let v = native_list_append(v, ["hylir", "noun", "hylir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["fyli", "noun", "fyli", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["agnir", "noun", "agnir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["bikarr", "noun", "bikrar", "bikars", "bikri", "", "beaker"]) + let v = native_list_append(v, ["svein", "noun", "svein", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["geilar", "noun", "geilar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["meiss", "noun", "meiss", "", "", "", "a wooden box"]) + let v = native_list_append(v, ["melr", "noun", "melr", "", "", "", "lymegrass"]) + let v = native_list_append(v, ["feitleik", "noun", "feitleik", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["sannleik", "noun", "sannleik", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["ulfa", "noun", "ulfa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["þvara", "noun", "þvǫrur", "þvǫru", "þvǫru", "", "a stirring stick"]) + let v = native_list_append(v, ["brúði", "noun", "brúði", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["brúðir", "noun", "brúðir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["haslar", "noun", "haslar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["hasla", "noun", "hǫslur", "hǫslu", "hǫslu", "", "a pole or"]) + let v = native_list_append(v, ["Hanga", "noun", "Hanga", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["gildra", "noun", "gildrur", "gildru", "gildru", "", "a trap"]) + let v = native_list_append(v, ["Urðr", "noun", "Urðr", "Urðar", "Urð", "", "one of the"]) + let v = native_list_append(v, ["Verðandi", "noun", "Verðandi", "", "", "", "one of the"]) + let v = native_list_append(v, ["ljóna", "noun", "ljóna", "", "", "", "indefinite accusative plural"]) + let v = native_list_append(v, ["ljónum", "noun", "ljónum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["alda bǫrn", "noun", "bǫrn", "alda barna", "bǫrnum", "", "sons of men"]) + let v = native_list_append(v, ["Vǫlundr", "noun", "Vǫlundr", "Vǫlundar", "Vǫlundi", "", "Wayland a smith"]) + let v = native_list_append(v, ["hausar", "noun", "hausar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["ýtar", "noun", "ýtarnir", "ýta", "ýtum", "", "men people"]) + let v = native_list_append(v, ["hreiðrit", "noun", "hreiðrit", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["hreiðrs", "noun", "hreiðrs", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["hreiðri", "noun", "hreiðri", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["hreiðrinu", "noun", "hreiðrinu", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["gátu", "noun", "gátu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["hǫfði", "noun", "hǫfði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fjǫll", "noun", "fjǫll", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["djúpa", "noun", "djúpa", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["fjǫllum", "noun", "fjǫllum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fótum", "noun", "fótum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["heljar", "noun", "heljar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["blǫðin", "noun", "blǫðin", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["mungát", "noun", "mungát", "", "", "", "a kind of"]) + let v = native_list_append(v, ["gǫtur", "noun", "gǫtur", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["veisur", "noun", "veisur", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["vǫtn", "noun", "vǫtn", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["Hlǫkk", "noun", "Hlǫkk", "Hlakkar", "", "", "Hlǫkk a valkyrie"]) + let v = native_list_append(v, ["Hlakkar", "noun", "Hlakkar", "", "", "", "genitive of Hlǫkk"]) + let v = native_list_append(v, ["fœtr", "noun", "fœtr", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["fleina", "noun", "fleina", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["verar", "noun", "verar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["geirar", "noun", "geirar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["geira", "noun", "geira", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["geirum", "noun", "geirum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["Kristr", "noun", "Kristr", "Krists", "Kristi", "", "Christ"]) + let v = native_list_append(v, ["leggir", "noun", "leggir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["Gautr", "noun", "Gautr", "", "", "", "Geat a kenning"]) + let v = native_list_append(v, ["ylfa", "noun", "ylfur", "ylfu", "ylfu", "", "she-wolf"]) + let v = native_list_append(v, ["Aldafǫðr", "noun", "Aldafǫðr", "Aldafǫðrs", "", "", "Odin literally “father"]) + let v = native_list_append(v, ["ylfu", "noun", "ylfu", "", "", "", "genitive of ylfa"]) + let v = native_list_append(v, ["Harfaðafjǫll", "noun", "Harfaðafjǫll", "", "", "", "the Carpathian Mountains"]) + let v = native_list_append(v, ["kilir", "noun", "kilir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["róðr", "noun", "róðr", "", "", "", "rowing"]) + let v = native_list_append(v, ["hrininn", "noun", "hrininn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["reiðar", "noun", "reiðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eykja", "noun", "eykja", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["eykjum", "noun", "eykjum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["eykir", "noun", "eykir", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["eyk", "noun", "eyk", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["eykjar", "noun", "eykjar", "", "", "", "genitive singular indefinite"]) + let v = native_list_append(v, ["Vǫlundar", "noun", "Vǫlundar", "", "", "", "genitive of Vǫlundr"]) + let v = native_list_append(v, ["ᛋᛏᛁᚾ", "noun", "ᛋᛏᛁᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["Hǫgni", "noun", "Hǫgni", "Hǫgna", "Hǫgna", "", "a male given"]) + let v = native_list_append(v, ["Hǫgna", "noun", "Hǫgna", "", "", "", "oblique of Hǫgni"]) + let v = native_list_append(v, ["baðmr", "noun", "baðmar", "baðms", "baðmi", "", "tree"]) + let v = native_list_append(v, ["rǫgn", "noun", "rǫgnin", "ragna", "rǫgnum", "", "alternative form of"]) + let v = native_list_append(v, ["rǫnd", "noun", "randir", "randar", "rǫndu", "", "edge rim"]) + let v = native_list_append(v, ["þremjar", "noun", "þremjarnar", "þremja", "þremjum", "", "the edge of"]) + let v = native_list_append(v, ["þulr", "noun", "þulir", "þular", "þul", "", "a sage a"]) + let v = native_list_append(v, ["ᛋᛏᛅᛁᚾ", "noun", "ᛋᛏᛅᛁᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᛋᛏᛡᛁᚾ", "noun", "ᛋᛏᛡᛁᚾ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["víkingar", "noun", "víkingar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["sykn", "noun", "sykn", "syknar", "", "", "innocence"]) + let v = native_list_append(v, ["sykna", "noun", "sykna", "syknu", "", "", "innocence"]) + let v = native_list_append(v, ["þilja", "noun", "þiljur", "þilju", "þilju", "", "a board plank"]) + let v = native_list_append(v, ["jóta", "noun", "jóta", "", "", "", "indefinite accusative/genitive of"]) + let v = native_list_append(v, ["snjóva", "noun", "snjóva", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["tíða", "noun", "tíða", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["trauð", "noun", "trauð", "", "", "", "only used in"]) + let v = native_list_append(v, ["sœmd", "noun", "sǿmdir", "sǿmdar", "sœmdinni", "", "honour"]) + let v = native_list_append(v, ["sǫl", "noun", "sǫlva", "sǫls", "sǫlvi", "", "dulse"]) + let v = native_list_append(v, ["sollr", "noun", "sollr", "solls", "solli", "", "swill"]) + let v = native_list_append(v, ["stillir", "noun", "stillar", "stillis", "stilli", "", "moderator king chief"]) + let v = native_list_append(v, ["ofsi", "noun", "ofsi", "ofsa", "ofsa", "", "overbearing"]) + let v = native_list_append(v, ["ofsar", "noun", "ofsar", "", "", "", "nominative plural indefinite"]) + let v = native_list_append(v, ["mœnir", "noun", "mœnar", "mœnis", "mœni", "", "ridge of a"]) + let v = native_list_append(v, ["mǫn", "noun", "manar", "manar", "mǫninni", "", "mane"]) + let v = native_list_append(v, ["karmann", "noun", "karmann", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["karmaðr", "noun", "karmenn", "karmanns", "karmanni", "", "alternative form of"]) + let v = native_list_append(v, ["hrygða", "noun", "hrygða", "", "", "", "genitive plural indefinite"]) + let v = native_list_append(v, ["gotnar", "noun", "gotnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sneis", "noun", "sneis", "", "", "", "a wooden pin"]) + let v = native_list_append(v, ["hǫrðar", "noun", "hǫrðarnir", "hǫrða", "hǫrðum", "", "a tribe inhabiting"]) + let v = native_list_append(v, ["diūʀ", "noun", "diūʀin", "diūʀs", "diūʀi", "", "animal"]) + let v = native_list_append(v, ["þvǫru", "noun", "þvǫru", "", "", "", "oblique cases singular"]) + let v = native_list_append(v, ["buð", "noun", "buðin", "buðs", "buði", "", "offer"]) + let v = native_list_append(v, ["þvari", "noun", "þvari", "", "", "", "borer piercer gimlet"]) + let v = native_list_append(v, ["teiti", "noun", "teiti", "", "", "", "happiness merriment"]) + let v = native_list_append(v, ["nóti", "noun", "nótar", "nóta", "nóta", "", "mark token"]) + let v = native_list_append(v, ["nœtr", "noun", "nœtr", "", "", "", "nominative/accusative plural indefinite"]) + let v = native_list_append(v, ["nótum", "noun", "nótum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["Mǿrr", "noun", "Mǿrr", "Mǿrar", "Mǿri", "", "Møre a county"]) + let v = native_list_append(v, ["Mǿri", "noun", "Mǿri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dǫgurðr", "noun", "dǫgurðr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dagverðr", "noun", "dagverðir", "dagverðar", "dagverði", "", "a meal eaten"]) + let v = native_list_append(v, ["-þér", "noun", "-þér", "-þés", "", "", "servant retainer"]) + let v = native_list_append(v, ["megi", "noun", "megi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["mǫg", "noun", "mǫg", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["mǫginn", "noun", "mǫginn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["mǫgrinn", "noun", "mǫgrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["meginum", "noun", "meginum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["mǫgu", "noun", "mǫgu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["mǫgum", "noun", "mǫgum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["dagverð", "noun", "dagverð", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["dagverði", "noun", "dagverði", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["dagverðar", "noun", "dagverðar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["vífi", "noun", "vífi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["vífs", "noun", "vífs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["þellu", "noun", "þellu", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["ýtum", "noun", "ýtum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["virðar", "noun", "virðarnir", "virða", "virðum", "", "men people"]) + let v = native_list_append(v, ["virðum", "noun", "virðum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["barmi", "noun", "barmar", "barma", "barma", "", "brother"]) + let v = native_list_append(v, ["brǿðr", "noun", "brǿðr", "", "", "", "inflection of bróðir"]) + let v = native_list_append(v, ["brǿðrum", "noun", "brǿðrum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["brǿðra", "noun", "brǿðra", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["hryggir", "noun", "hryggir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["mǫrkum", "noun", "mǫrkum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["baugrygr", "noun", "baugrygr", "baugrygjar", "", "", "a woman who"]) + let v = native_list_append(v, ["ferli", "noun", "ferli", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["hǫfrum", "noun", "hǫfrum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["hafra", "noun", "hafra", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["hafrs", "noun", "hafrs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["hǫldr", "noun", "hǫldar", "hǫlds", "hǫldi", "", "man hero"]) + let v = native_list_append(v, ["hǫldar", "noun", "hǫldar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["hǫlda", "noun", "hǫlda", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["dróttni", "noun", "dróttni", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["blóði", "noun", "blóðar", "blóða", "blóða", "", "blood-brother"]) + let v = native_list_append(v, ["nǫfn", "noun", "nǫfn", "", "", "", "indefinite nominative/accusative plural"]) + let v = native_list_append(v, ["nǫfnum", "noun", "nǫfnum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["hilmi", "noun", "hilmi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Hangi", "noun", "Hangi", "Hanga", "Hanga", "", "the hanging one"]) + let v = native_list_append(v, ["fyllr", "noun", "fyllr", "fyllar", "", "", "sea"]) + let v = native_list_append(v, ["máls", "noun", "máls", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["rǫðla", "noun", "rǫðla", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["ǫðlings", "noun", "ǫðlings", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["konungi", "noun", "konungi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["konunga", "noun", "konunga", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["konungum", "noun", "konungum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["ǫðlingi", "noun", "ǫðlingi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["ǫðlinga", "noun", "ǫðlinga", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["ǫðling", "noun", "ǫðling", "", "", "", "indefinite accusative singular"]) + let v = native_list_append(v, ["ǫðlingar", "noun", "ǫðlingar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["ǫðlingum", "noun", "ǫðlingum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["seggjum", "noun", "seggjum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["seggja", "noun", "seggja", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["seggir", "noun", "seggir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["skipum", "noun", "skipum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["skipi", "noun", "skipi", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["skýjum", "noun", "skýjum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["skýja", "noun", "skýja", "", "", "", "indefinite genitive plural"]) + let v = native_list_append(v, ["skýs", "noun", "skýs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["gǫldrum", "noun", "gǫldrum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["ægi", "noun", "ægi", "", "", "", "indefinite accusative/dative singular"]) + let v = native_list_append(v, ["tǫkum", "noun", "tǫkum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["þengils", "noun", "þengils", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["geirs", "noun", "geirs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["jótum", "noun", "jótum", "", "", "", "indefinite dative of"]) + let v = native_list_append(v, ["leiðar", "noun", "leiðar", "", "", "", "inflection of leið"]) + let v = native_list_append(v, ["foldar", "noun", "foldar", "", "", "", "inflection of fold"]) + let v = native_list_append(v, ["jǫfurr", "noun", "jǫfrar", "jǫfurs", "jǫfri", "", "prince monarch"]) + let v = native_list_append(v, ["jǫfri", "noun", "jǫfri", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["jǫfurs", "noun", "jǫfurs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["jǫfrar", "noun", "jǫfrar", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["jǫfra", "noun", "jǫfra", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["niðjar", "noun", "niðjar", "", "", "", "inflection of niðr"]) + let v = native_list_append(v, ["niðja", "noun", "niðja", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["niðs", "noun", "niðs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["líði", "noun", "líði", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["líðs", "noun", "líðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["liðs", "noun", "liðs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["beði", "noun", "beði", "", "", "", "inflection of beðr"]) + let v = native_list_append(v, ["beðjum", "noun", "beðjum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["beðir", "noun", "beðir", "", "", "", "indefinite nominative plural"]) + let v = native_list_append(v, ["menjum", "noun", "menjum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["yndis", "noun", "yndis", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["auð", "noun", "auð", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["englum", "noun", "englum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["engla", "noun", "engla", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["dýrðar", "noun", "dýrðar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["stóli", "noun", "stóli", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["stóls", "noun", "stóls", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["bóls", "noun", "bóls", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["gjafar", "noun", "gjafar", "", "", "", "inflection of gjǫf"]) + let v = native_list_append(v, ["vistar", "noun", "vistar", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["guði", "noun", "guði", "", "", "", "indefinite dative singular"]) + let v = native_list_append(v, ["minnum", "noun", "minnum", "", "", "", "indefinite dative plural"]) + let v = native_list_append(v, ["hringum", "noun", "hringum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["skatna", "noun", "skatna", "", "", "", "indefinite accusative/genitive plural"]) + let v = native_list_append(v, ["þjóða", "noun", "þjóða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["miðju", "noun", "miðju", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["stríðir", "noun", "stríðir", "stríðis", "stríði", "", "damager injurer"]) + let v = native_list_append(v, ["stríði", "noun", "stríði", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["gunni", "noun", "gunni", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["gunnar", "noun", "gunnar", "", "", "", "inflection of gunnr"]) + let v = native_list_append(v, ["eggju", "noun", "eggju", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["herǫð", "noun", "herǫð", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["garði", "noun", "garði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["elfar", "noun", "elfar", "", "", "", "inflection of elfr"]) + let v = native_list_append(v, ["stafna", "noun", "stafna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["þjóðar", "noun", "þjóðar", "", "", "", "inflection of þjóð"]) + let v = native_list_append(v, ["strǫndu", "noun", "strǫndu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bǫnum", "noun", "bǫnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["mækis", "noun", "mækis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dróttins", "noun", "dróttins", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["svíni", "noun", "svíni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bjǫrkunum", "noun", "bjǫrkunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["bjarkarinnar", "noun", "bjarkarinnar", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["bjarkanna", "noun", "bjarkanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["bjǫrkina", "noun", "bjǫrkina", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["bjǫrkin", "noun", "bjǫrkin", "", "", "", "nominative singular definite"]) + let v = native_list_append(v, ["bjarkarnar", "noun", "bjarkarnar", "", "", "", "nominative plural definite"]) + let v = native_list_append(v, ["bjǫrkinni", "noun", "bjǫrkinni", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["bǫrku", "noun", "bǫrku", "", "", "", "accusative plural indefinite"]) + let v = native_list_append(v, ["bǫrkum", "noun", "bǫrkum", "", "", "", "dative plural indefinite"]) + let v = native_list_append(v, ["bǫrkuna", "noun", "bǫrkuna", "", "", "", "accusative plural definite"]) + let v = native_list_append(v, ["barkanna", "noun", "barkanna", "", "", "", "genitive plural definite"]) + let v = native_list_append(v, ["bǫrkunum", "noun", "bǫrkunum", "", "", "", "dative plural definite"]) + let v = native_list_append(v, ["bǫrkinn", "noun", "bǫrkinn", "", "", "", "accusative singular definite"]) + let v = native_list_append(v, ["berkinum", "noun", "berkinum", "", "", "", "dative singular definite"]) + let v = native_list_append(v, ["barkarins", "noun", "barkarins", "", "", "", "genitive singular definite"]) + let v = native_list_append(v, ["svírum", "noun", "svírum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sólu", "noun", "sólu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["skatnar", "noun", "skatnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hugrinn", "noun", "hugrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["karfi", "noun", "karfi", "", "", "", "karve a multipurpose"]) + let v = native_list_append(v, ["svanni", "noun", "svannar", "svanna", "svanna", "", "lady woman"]) + let v = native_list_append(v, ["svanna", "noun", "svanna", "", "", "", "inflection of svanni"]) + let v = native_list_append(v, ["rǫndu", "noun", "rǫndu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lǫnd", "noun", "lǫnd", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["lǫndum", "noun", "lǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hurðir", "noun", "hurðir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fjǫrvi", "noun", "fjǫrvi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dvergi", "noun", "dvergi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dverga", "noun", "dverga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["dvergum", "noun", "dvergum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["setrs", "noun", "setrs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["frægðar", "noun", "frægðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vígs", "noun", "vígs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Yggr", "noun", "Yggr", "Yggs", "", "", "the terrifying one"]) + let v = native_list_append(v, ["Yggs", "noun", "Yggs", "", "", "", "genitive of Yggr"]) + let v = native_list_append(v, ["Yggjar", "noun", "Yggjar", "", "", "", "genitive of Yggr"]) + let v = native_list_append(v, ["þjóðu", "noun", "þjóðu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þjóðir", "noun", "þjóðir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["þjóðum", "noun", "þjóðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eigum", "noun", "eigum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eigu", "noun", "eigu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["sigri", "noun", "sigri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["jǫfrum", "noun", "jǫfrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["jǫfur", "noun", "jǫfur", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sverði", "noun", "sverði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sverðum", "noun", "sverðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sverða", "noun", "sverða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sverðs", "noun", "sverðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eplis", "noun", "eplis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ǫldum", "noun", "ǫldum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["óði", "noun", "óði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["óð", "noun", "óð", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ᚢᛁᛐᚢᚭᚴᛁ", "noun", "ᚢᛁᛐᚢᚭᚴᛁ", "", "", "", "battlefield"]) + let v = native_list_append(v, ["víga", "noun", "víga", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ᛅᚱᚾᛁ", "noun", "ᛅᚱᚾᛁ", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gamni", "noun", "gamni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["jǫtna", "noun", "jǫtna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["jǫtnum", "noun", "jǫtnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["jǫtun", "noun", "jǫtun", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["jǫtuns", "noun", "jǫtuns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["haugi", "noun", "haugi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þróttar", "noun", "þróttar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["verðar", "noun", "verðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lopti", "noun", "lopti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["víni", "noun", "víni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fótar", "noun", "fótar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["drasils", "noun", "drasils", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fylkis", "noun", "fylkis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["foldum", "noun", "foldum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["beinum", "noun", "beinum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["beins", "noun", "beins", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["reyks", "noun", "reyks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ǫlfum", "noun", "ǫlfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["brynjalfr", "noun", "brynjalfar", "brynjalfs", "brynjalfi", "", "warrior"]) + let v = native_list_append(v, ["brynjalfs", "noun", "brynjalfs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rǫðuls", "noun", "rǫðuls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mána", "noun", "mána", "", "", "", "inflection of máni"]) + let v = native_list_append(v, ["botni", "noun", "botni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bǫls", "noun", "bǫls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bǫlvi", "noun", "bǫlvi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ilja", "noun", "ilja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þengli", "noun", "þengli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þengil", "noun", "þengil", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hlýra", "noun", "hlýra", "", "", "", "inflection of hlýri"]) + let v = native_list_append(v, ["hlýrar", "noun", "hlýrar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hlýrum", "noun", "hlýrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stǫfum", "noun", "stǫfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["benjar", "noun", "benjar", "", "", "", "inflection of ben"]) + let v = native_list_append(v, ["benja", "noun", "benja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["undrum", "noun", "undrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["stígu", "noun", "stígu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["stígir", "noun", "stígir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["stígar", "noun", "stígar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sefi", "noun", "sefar", "sefa", "sefa", "", "mind"]) + let v = native_list_append(v, ["aldir", "noun", "aldir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["upphafi", "noun", "upphafi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["veraldar", "noun", "veraldar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["veraldir", "noun", "veraldir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["brautar", "noun", "brautar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brautir", "noun", "brautir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["brautu", "noun", "brautu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["meiði", "noun", "meiði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["meiðar", "noun", "meiðar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["galdri", "noun", "galdri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fǿri", "noun", "fǿrin", "fǿris", "fǿrinu", "", "opportunity chance"]) + let v = native_list_append(v, ["morði", "noun", "morði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fáks", "noun", "fáks", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["morðs", "noun", "morðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["seggs", "noun", "seggs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["seið", "noun", "seið", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["vági", "noun", "vági", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hǫmrum", "noun", "hǫmrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vágs", "noun", "vágs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["máva", "noun", "máva", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["mávi", "noun", "mávi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fǿðu", "noun", "fǿðu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["túns", "noun", "túns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["túni", "noun", "túni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dóms", "noun", "dóms", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dómi", "noun", "dómi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kinnr", "noun", "kinnr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["kiðr", "noun", "kiðr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["tárum", "noun", "tárum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Gerðar", "noun", "Gerðar", "", "", "", "genitive of Gerðr"]) + let v = native_list_append(v, ["hrings", "noun", "hrings", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hringar", "noun", "hringar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hringi", "noun", "hringi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["vǫnum", "noun", "vǫnum", "", "", "", "dative of vanir"]) + let v = native_list_append(v, ["gǫtu", "noun", "gǫtu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["nesjum", "noun", "nesjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["grundu", "noun", "grundu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["linnr", "noun", "linnar", "linns", "linni", "", "snake serpent"]) + let v = native_list_append(v, ["flagð", "noun", "flǫgð", "flagðs", "flagði", "", "troll-woman ogress"]) + let v = native_list_append(v, ["flagðs", "noun", "flagðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["leiðir", "noun", "leiðir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ásum", "noun", "ásum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["reiðu", "noun", "reiðu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["brynni", "noun", "brynni", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["vǫllu", "noun", "vǫllu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["smiðju", "noun", "smiðju", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["viði", "noun", "viði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heiðar", "noun", "heiðar", "", "", "", "inflection of heiðr"]) + let v = native_list_append(v, ["uxa", "noun", "uxa", "", "", "", "indefinite accusative/dative/genitive singular"]) + let v = native_list_append(v, ["stafni", "noun", "stafni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þǫrfum", "noun", "þǫrfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þarfar", "noun", "þarfar", "", "", "", "inflection of þǫrf"]) + let v = native_list_append(v, ["folki", "noun", "folki", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Hrólfs", "noun", "Hrólfs", "", "", "", "genitive of Hrólfr"]) + let v = native_list_append(v, ["Hrólf", "noun", "Hrólf", "", "", "", "accusative of Hrólfr"]) + let v = native_list_append(v, ["Hrólfi", "noun", "Hrólfi", "", "", "", "dative of Hrólfr"]) + let v = native_list_append(v, ["Dómaldi", "noun", "Dómaldi", "Dómalda", "Dómalda", "", "Domalde a legendary"]) + let v = native_list_append(v, ["dǿmi", "noun", "dǿmin", "dǿmis", "dǿminu", "", "proof reason"]) + let v = native_list_append(v, ["dǿming", "noun", "dǿmingar", "dǿmingar", "dǿmingu", "", "judging"]) + let v = native_list_append(v, ["dǿmandi", "noun", "dǿmendr", "dǿmanda", "dǿmanda", "", "a judge one"]) + let v = native_list_append(v, ["Dómalda", "noun", "Dómalda", "", "", "", "accusative/dative/genitive of Dómaldi"]) + let v = native_list_append(v, ["Vísburr", "noun", "Vísburr", "Vísburs", "Vísbur", "", "Visbur a legendary"]) + let v = native_list_append(v, ["Vísbur", "noun", "Vísbur", "", "", "", "accusative/dative of Vísburr"]) + let v = native_list_append(v, ["Vísburs", "noun", "Vísburs", "", "", "", "genitive of Vísburr"]) + let v = native_list_append(v, ["Vanlandi", "noun", "Vanlandi", "Vanlanda", "Vanlanda", "", "Vanlandi a legendary"]) + let v = native_list_append(v, ["urðr", "noun", "urðr", "", "", "", "fate"]) + let v = native_list_append(v, ["hjǫrð", "noun", "hjarðar", "hjarðar", "hjǫrðinni", "", "herd"]) + let v = native_list_append(v, ["hjarðar", "noun", "hjarðar", "", "", "", "inflection of hjǫrð"]) + let v = native_list_append(v, ["niðjum", "noun", "niðjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["skógar", "noun", "skógar", "", "", "", "inflection of skógr"]) + let v = native_list_append(v, ["jǫru", "noun", "jǫru", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["Þrívaldi", "noun", "Þrívaldi", "Þrívalda", "Þrívalda", "", "Þrívaldi a jötunn"]) + let v = native_list_append(v, ["gýgjar", "noun", "gýgjar", "", "", "", "inflection of gýgr"]) + let v = native_list_append(v, ["gýgi", "noun", "gýgi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["súgr", "noun", "súgr", "", "", "", "sucker someone who"]) + let v = native_list_append(v, ["Þrívalda", "noun", "Þrívalda", "", "", "", "accusative/dative/genitive of Þrívaldi"]) + let v = native_list_append(v, ["frǫmuðr", "noun", "frǫmuðir", "frǫmuðar", "frǫmuði", "", "promoter wielder inciter"]) + let v = native_list_append(v, ["frǫmuð", "noun", "frǫmuð", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["gjarðar", "noun", "gjarðar", "", "", "", "inflection of gjǫrð"]) + let v = native_list_append(v, ["ræsir", "noun", "ræsar", "ræsis", "ræsi", "", "chief king"]) + let v = native_list_append(v, ["ræsis", "noun", "ræsis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brynnir", "noun", "brynnar", "brynnis", "brynni", "", "waterer thirst-quencher"]) + let v = native_list_append(v, ["folanum", "noun", "folanum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["þellan", "noun", "þellan", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["tírar", "noun", "tírar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tíri", "noun", "tíri", "", "", "", "inflection of tírr"]) + let v = native_list_append(v, ["nafnar", "noun", "nafnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vísu", "noun", "vísu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["vísur", "noun", "vísur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bardaga", "noun", "bardaga", "", "", "", "inflection of bardagi"]) + let v = native_list_append(v, ["skammar", "noun", "skammar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["skǫmm", "noun", "skammir", "skammar", "skǫmminni", "", "shame"]) + let v = native_list_append(v, ["dysja", "noun", "dysja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["flesja", "noun", "flesja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hindrum", "noun", "hindrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vikna", "noun", "vikna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mækis egg", "noun", "mækis egg", "", "", "", "swords edge"]) + let v = native_list_append(v, ["ísi", "noun", "ísi", "", "", "", "dative singular indefinite"]) + let v = native_list_append(v, ["kjǫptr", "noun", "kiptir", "kjaptar", "kipti", "", "alternative form of"]) + let v = native_list_append(v, ["keptr", "noun", "keptar", "kepts", "kepti", "", "alternative form of"]) + let v = native_list_append(v, ["herjum", "noun", "herjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["herjar", "noun", "herjar", "", "", "", "inflection of herr"]) + let v = native_list_append(v, ["ᚠᛅᚦᛁᛦ", "noun", "ᚠᛅᚦᛁᛦ", "ᚠᛅᚦᚢᚱ", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["keip", "noun", "keip", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["keipr", "noun", "keipar", "keips", "keipi", "", "thole"]) + let v = native_list_append(v, ["læknishendr", "noun", "læknishendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["spjǫll", "noun", "spjǫll", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["spjalli", "noun", "spjalli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["stubba", "noun", "stubba", "", "", "", "inflection of stubbi"]) + let v = native_list_append(v, ["reitr", "noun", "reitar", "reits", "reiti", "", "a space marked"]) + let v = native_list_append(v, ["reitar", "noun", "reitar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["reita", "noun", "reita", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["reiti", "noun", "reiti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ǫ́sum", "noun", "ǫ́sum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["meinum", "noun", "meinum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["mǫrkina", "noun", "mǫrkina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["rǫðli", "noun", "rǫðli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["unnir", "noun", "unnir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["leygr", "noun", "leygir", "leygjar", "leyg", "", "flame blaze"]) + let v = native_list_append(v, ["leyg", "noun", "leyg", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["leygs", "noun", "leygs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["leygjar", "noun", "leygjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Vǫluspá", "noun", "Vǫluspá", "Vǫluspár", "", "", "the Prophecy of"]) + let v = native_list_append(v, ["sandmelr", "noun", "sandmelar", "sandmels", "sandmeli", "", "a sandbank"]) + let v = native_list_append(v, ["sandmel", "noun", "sandmel", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ímun", "noun", "ímun", "", "", "", "battle onslaught"]) + let v = native_list_append(v, ["Ætternisstapi", "noun", "Ætternisstapi", "", "", "", "a fictional cliffside"]) + let v = native_list_append(v, ["tǫku", "noun", "tǫku", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["þoku", "noun", "þoku", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["fjǫrgyn", "noun", "fjǫrgyn", "fjǫrgynjar", "", "", "land earth"]) + let v = native_list_append(v, ["hreyr", "noun", "hreyr", "", "", "", "cairn burial place"]) + let v = native_list_append(v, ["flǿr", "noun", "flǿr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bǿn", "noun", "bǿnir", "bǿnar", "bǿninni", "", "request"]) + let v = native_list_append(v, ["bǿnir", "noun", "bǿnir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bǿkr", "noun", "bǿkr", "", "", "", "inflection of bók"]) + let v = native_list_append(v, ["nǫkkva", "noun", "nǫkkva", "", "", "", "inflection of nǫkkvi"]) + let v = native_list_append(v, ["jǫðrum", "noun", "jǫðrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["rǫkstóla", "noun", "rǫkstóla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["jǫður", "noun", "jǫður", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["bjǫðum", "noun", "bjǫðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["feigðar", "noun", "feigðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["baugr", "noun", "baugar", "baugs", "baugi", "", "an armlet or"]) + let v = native_list_append(v, ["sǫlum", "noun", "sǫlum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["flotnar", "noun", "flotnarnir", "flotna", "flotnum", "", "seafarers men"]) + let v = native_list_append(v, ["flotna", "noun", "flotna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["flotnum", "noun", "flotnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þangs", "noun", "þangs", "", "", "", "indefinite genitive singular"]) + let v = native_list_append(v, ["svigðis", "noun", "svigðis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sikling", "noun", "sikling", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["siklings", "noun", "siklings", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["siklinga", "noun", "siklinga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["siklingar", "noun", "siklingar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["gæss", "noun", "gæss", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gásina", "noun", "gásina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["vágrinn", "noun", "vágrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["folksins", "noun", "folksins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["folkinu", "noun", "folkinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["folkit", "noun", "folkit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["ríkinu", "noun", "ríkinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["tímar", "noun", "tímar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hǫggvi", "noun", "hǫggvi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["drengjum", "noun", "drengjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["glóðar", "noun", "glóðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["váðum", "noun", "váðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["knífinum", "noun", "knífinum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["kníf", "noun", "kníf", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hǫllinni", "noun", "hǫllinni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["sverðit", "noun", "sverðit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["þræli", "noun", "þræli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þræls", "noun", "þræls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["váðir", "noun", "váðir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["váða", "noun", "váða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["lanz", "noun", "lanz", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["stǫðom", "noun", "stǫðom", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["meiðmar", "noun", "meiðmarnir", "meiðma", "meiðmum", "", "mathom treasure valuables"]) + let v = native_list_append(v, ["meiðma", "noun", "meiðma", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["gjǫldum", "noun", "gjǫldum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ulfs", "noun", "ulfs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ulfi", "noun", "ulfi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["baugum", "noun", "baugum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bauga", "noun", "bauga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["baugs", "noun", "baugs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["baugi", "noun", "baugi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["gjǫld", "noun", "gjǫld", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["gjalds", "noun", "gjalds", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rǫndum", "noun", "rǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dóma", "noun", "dóma", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["auði", "noun", "auði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["skipinu", "noun", "skipinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["skipit", "noun", "skipit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["lýðr", "noun", "lýðir", "lýðs", "lýð", "", "man"]) + let v = native_list_append(v, ["lýðir", "noun", "lýðir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["lýðs", "noun", "lýðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["lýðum", "noun", "lýðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gildis", "noun", "gildis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["laðar", "noun", "laðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brǫndum", "noun", "brǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bylgju", "noun", "bylgju", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["sylgju", "noun", "sylgju", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["bógum", "noun", "bógum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Uppsǫlum", "noun", "Uppsǫlum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ambátta", "noun", "ambátta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hrǫfnum", "noun", "hrǫfnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["taparøx", "noun", "taparøxar", "taparøxar", "taparøxi", "", "small axe"]) + let v = native_list_append(v, ["systkini", "noun", "systkini", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sǫðli", "noun", "sǫðli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sǫðlum", "noun", "sǫðlum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sǫðul", "noun", "sǫðul", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sǫðuls", "noun", "sǫðuls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mǫrgum", "noun", "mǫrgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sveinar", "noun", "sveinar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sveinarnir", "noun", "sveinarnir", "", "", "", "definite nominative plural"]) + let v = native_list_append(v, ["sveina", "noun", "sveina", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["sveins", "noun", "sveins", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sveini", "noun", "sveini", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sveinum", "noun", "sveinum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["barnit", "noun", "barnit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["barnsins", "noun", "barnsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["sundit", "noun", "sundit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["þegns", "noun", "þegns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["þegnar", "noun", "þegnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["þegnum", "noun", "þegnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þegna", "noun", "þegna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["gumnar", "noun", "gumnar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["foldu", "noun", "foldu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["málum", "noun", "málum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hilmis", "noun", "hilmis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kirkjur", "noun", "kirkjur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["heilsu", "noun", "heilsu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["sveita", "noun", "sveita", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["tøgar", "noun", "tøgar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dǫlum", "noun", "dǫlum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ulfum", "noun", "ulfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ulfar", "noun", "ulfar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vári", "noun", "vári", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sverðin", "noun", "sverðin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["sverðinu", "noun", "sverðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["gafli", "noun", "gafli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Vǫlundi", "noun", "Vǫlundi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Vǫlund", "noun", "Vǫlund", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["svefni", "noun", "svefni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["móði", "noun", "móði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tíva", "noun", "tíva", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["kviðu", "noun", "kviðu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["finnr", "noun", "finnar", "finns", "finni", "", "an exonym by"]) + let v = native_list_append(v, ["vellir", "noun", "vellir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["týs", "noun", "týs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rúnum", "noun", "rúnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["grǫs", "noun", "grǫs", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["þingi", "noun", "þingi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þings", "noun", "þings", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["þingit", "noun", "þingit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["ynðis", "noun", "ynðis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ynði", "noun", "ynði", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fjǫðrum", "noun", "fjǫðrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["jǫtni", "noun", "jǫtni", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þursi", "noun", "þursi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þursa", "noun", "þursa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["þursum", "noun", "þursum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vængjum", "noun", "vængjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hǫrgum", "noun", "hǫrgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hǫrg", "noun", "hǫrg", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["vanir", "noun", "vanir", "", "", "", "the principal deities"]) + let v = native_list_append(v, ["túnum", "noun", "túnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hamingjur", "noun", "hamingjur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["kjaptar", "noun", "kjaptar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["kjapta", "noun", "kjapta", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["vetrarins", "noun", "vetrarins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["vetrs", "noun", "vetrs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vetrinn", "noun", "vetrinn", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["fǫðurs", "noun", "fǫðurs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gramir", "noun", "gramir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["prestsins", "noun", "prestsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["Vanlanda", "noun", "Vanlanda", "", "", "", "oblique of Vanlandi"]) + let v = native_list_append(v, ["hellis", "noun", "hellis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mýrar", "noun", "mýrar", "", "", "", "inflection of mýrr"]) + let v = native_list_append(v, ["bǿnar", "noun", "bǿnar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ljóti", "noun", "Ljóti", "", "", "", "dative of Ljótr"]) + let v = native_list_append(v, ["hǫllu", "noun", "hǫllu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hǫllin", "noun", "hǫllin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["hǫllina", "noun", "hǫllina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["hallir", "noun", "hallir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hǫllum", "noun", "hǫllum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Ljót", "noun", "Ljót", "", "", "", "accusative of Ljótr"]) + let v = native_list_append(v, ["vǫllum", "noun", "vǫllum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vǫll", "noun", "vǫll", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["þjóðin", "noun", "þjóðin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["dǫgunum", "noun", "dǫgunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["náttin", "noun", "náttin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["náttina", "noun", "náttina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["viðum", "noun", "viðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["lofti", "noun", "lofti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["friðlu", "noun", "friðlu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["friðlur", "noun", "friðlur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["kvǫl", "noun", "kvalar", "kvalar", "kvǫlinni", "", "torment torture"]) + let v = native_list_append(v, ["fitjum", "noun", "fitjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Níðaðar", "noun", "Níðaðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bjóri", "noun", "bjóri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hǫrmum", "noun", "hǫrmum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["garð", "noun", "garð", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["gǫrðum", "noun", "gǫrðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["garðs", "noun", "garðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["garðar", "noun", "garðar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["garða", "noun", "garða", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["vífum", "noun", "vífum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vífa", "noun", "vífa", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["beðju", "noun", "beðju", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["knífi", "noun", "knífi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["knífs", "noun", "knífs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["knífa", "noun", "knífa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["knífum", "noun", "knífum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["knífar", "noun", "knífar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["gǫtum", "noun", "gǫtum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fjǫturs", "noun", "fjǫturs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fjǫtra", "noun", "fjǫtra", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["fjǫtri", "noun", "fjǫtri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fjǫtur", "noun", "fjǫtur", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["fjǫtrar", "noun", "fjǫtrar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["fjǫtrum", "noun", "fjǫtrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ulfsins", "noun", "ulfsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["augum", "noun", "augum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["óvinar", "noun", "óvinar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["þrælum", "noun", "þrælum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þrælar", "noun", "þrælar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["eikju", "noun", "eikju", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["eikjunni", "noun", "eikjunni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["goða", "noun", "goða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["goðs", "noun", "goðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["goðum", "noun", "goðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bjǫrg", "noun", "bjǫrg", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["kjǫl", "noun", "kjǫl", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["kjalar", "noun", "kjalar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kjǫlinn", "noun", "kjǫlinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["kjalarins", "noun", "kjalarins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["kjǫlrinn", "noun", "kjǫlrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["sprund", "noun", "sprundin", "sprunds", "sprundi", "", "woman"]) + let v = native_list_append(v, ["sprundum", "noun", "sprundum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sprundi", "noun", "sprundi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sprundit", "noun", "sprundit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["sprunda", "noun", "sprunda", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["Valhǫllu", "noun", "Valhǫllu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["meiðs", "noun", "meiðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["einherjum", "noun", "einherjum", "", "", "", "dative of einherjar"]) + let v = native_list_append(v, ["goðar", "noun", "goðar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["jóa", "noun", "jóa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["gefandi", "noun", "gefendr", "gefanda", "gefanda", "", "a giver one"]) + let v = native_list_append(v, ["gefendr", "noun", "gefendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["sœfendr", "noun", "sœfendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["sǿfendr", "noun", "sǿfendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["óþurfendr", "noun", "óþurfendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Hagbarðs", "noun", "Hagbarðs", "", "", "", "genitive of Hagbarðr"]) + let v = native_list_append(v, ["skaldit", "noun", "skaldit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["kvǫlum", "noun", "kvǫlum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["kvalir", "noun", "kvalir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["kvernum", "noun", "kvernum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["friðar", "noun", "friðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ǫndu", "noun", "ǫndu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["grjóti", "noun", "grjóti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tívi", "noun", "tívi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kylfur", "noun", "kylfur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["brúðar", "noun", "brúðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ráðs", "noun", "ráðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ráðum", "noun", "ráðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hǫfðingja", "noun", "hǫfðingja", "", "", "", "inflection of hǫfðingi"]) + let v = native_list_append(v, ["hǫfðingjum", "noun", "hǫfðingjum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Eileifr", "noun", "Eileifr", "Eileifs", "Eileifi", "", "a male given"]) + let v = native_list_append(v, ["hugum", "noun", "hugum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["kvæðit", "noun", "kvæðit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["borðit", "noun", "borðit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["ᛅᛁᛚᛁᚠᛦ", "noun", "ᛅᛁᛚᛁᚠᛦ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["Æilīfʀ", "noun", "Æilīfʀ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þrælana", "noun", "þrælana", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["orrostu", "noun", "orrostu", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["orrostur", "noun", "orrostur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["sǫkum", "noun", "sǫkum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["feðgum", "noun", "feðgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["feðga", "noun", "feðga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["vígum", "noun", "vígum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vígit", "noun", "vígit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["vígin", "noun", "vígin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["víginu", "noun", "víginu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["várit", "noun", "várit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["tý", "noun", "tý", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["boðum", "noun", "boðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["boðit", "noun", "boðit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["boðs", "noun", "boðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ambáttir", "noun", "ambáttir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["þjóf", "noun", "þjóf", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["þjófs", "noun", "þjófs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["viggja", "noun", "viggja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["faðerni", "noun", "faðernin", "faðernis", "faðerninu", "", "paternity fatherhood paternal"]) + let v = native_list_append(v, ["skírsl", "noun", "skírsl", "skírslar", "", "", "purification"]) + let v = native_list_append(v, ["garðvǫrðr", "noun", "garðverði", "garðvarðar", "garðverði", "", "person that guards"]) + let v = native_list_append(v, ["staðinum", "noun", "staðinum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["hǫfuðs", "noun", "hǫfuðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["knǫrru", "noun", "knǫrru", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["knerri", "noun", "knerri", "", "", "", "inflection of knǫrr"]) + let v = native_list_append(v, ["knǫrrum", "noun", "knǫrrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["knerrir", "noun", "knerrir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["knarra", "noun", "knarra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["firum", "noun", "firum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["máninn", "noun", "máninn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["mánann", "noun", "mánann", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["þinginu", "noun", "þinginu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["þingsins", "noun", "þingsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["þingum", "noun", "þingum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þingunum", "noun", "þingunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["þinganna", "noun", "þinganna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["þingin", "noun", "þingin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["ennit", "noun", "ennit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["ennis", "noun", "ennis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fót", "noun", "fót", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["fǿtr", "noun", "fǿtr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fǿti", "noun", "fǿti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fótrinn", "noun", "fótrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["fótinum", "noun", "fótinum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["fótinn", "noun", "fótinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["fótarins", "noun", "fótarins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["fótunum", "noun", "fótunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["fótanna", "noun", "fótanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["fǿtrna", "noun", "fǿtrna", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["fǿtrnir", "noun", "fǿtrnir", "", "", "", "definite nominative plural"]) + let v = native_list_append(v, ["vágar", "noun", "vágar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["vágum", "noun", "vágum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["váginn", "noun", "váginn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["váginum", "noun", "váginum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["vágsins", "noun", "vágsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["vágarnir", "noun", "vágarnir", "", "", "", "definite nominative plural"]) + let v = native_list_append(v, ["vágana", "noun", "vágana", "", "", "", "definite accusative plural"]) + let v = native_list_append(v, ["vágunum", "noun", "vágunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["váganna", "noun", "váganna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["hauga", "noun", "hauga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["morgins", "noun", "morgins", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dáðum", "noun", "dáðum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dáðir", "noun", "dáðir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["dáða", "noun", "dáða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["láði", "noun", "láði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sáðs", "noun", "sáðs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sáði", "noun", "sáði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fleinn", "noun", "fleinar", "fleins", "fleini", "", "arrow javelin barbed"]) + let v = native_list_append(v, ["brjótr", "noun", "brjótar", "brjóts", "brjóti", "", "someone who breaks"]) + let v = native_list_append(v, ["hǫfða", "noun", "hǫfða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dǿtr", "noun", "dǿtr", "", "", "", "inflection of dóttir"]) + let v = native_list_append(v, ["dǿtra", "noun", "dǿtra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dǿtrum", "noun", "dǿtrum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bǫnd", "noun", "bǫnd", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bǫndum", "noun", "bǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hamingju", "noun", "hamingju", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["ostum", "noun", "ostum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["bǫndin", "noun", "bǫndin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["bǫndunum", "noun", "bǫndunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["jǫrðin", "noun", "jǫrðin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["jǫrðina", "noun", "jǫrðina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["jǫrðinni", "noun", "jǫrðinni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["jarðarinnar", "noun", "jarðarinnar", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["frísir", "noun", "frísirnir", "frísa", "frísum", "", "the Frisians"]) + let v = native_list_append(v, ["frísa", "noun", "frísa", "", "", "", "genitive of frísir"]) + let v = native_list_append(v, ["nafnit", "noun", "nafnit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["nǫfnin", "noun", "nǫfnin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["ráði", "noun", "ráði", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ráðin", "noun", "ráðin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["ráðit", "noun", "ráðit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["ráðinu", "noun", "ráðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["þrælanna", "noun", "þrælanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["hlynir", "noun", "hlynir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["sáttar", "noun", "sáttar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bókin", "noun", "bókin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["bókina", "noun", "bókina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["niðrinn", "noun", "niðrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["tíðin", "noun", "tíðin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["tíðina", "noun", "tíðina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["tíðirnar", "noun", "tíðirnar", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["tíðanna", "noun", "tíðanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["tímum", "noun", "tímum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["tímanum", "noun", "tímanum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["bellir", "noun", "bellir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["víkingum", "noun", "víkingum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["víkinga", "noun", "víkinga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hjaldr", "noun", "hjaldrar", "hjaldrs", "hjaldri", "", "din noise battle"]) + let v = native_list_append(v, ["hjaldri", "noun", "hjaldri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heillin", "noun", "heillin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["Þróndheimr", "noun", "Þróndheimr", "Þróndheims", "", "", "Throndham Trøndelag a"]) + let v = native_list_append(v, ["Þróndeimr", "noun", "Þróndeimr", "Þróndeims", "", "", "alternative form of"]) + let v = native_list_append(v, ["þrǿndr", "noun", "þrǿndr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["þróndr", "noun", "þrǿndr", "þróndar", "þróndi", "", "a person from"]) + let v = native_list_append(v, ["þrǿndir", "noun", "þrǿndir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["finnum", "noun", "finnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ǿgis", "noun", "ǿgis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Eiláfr", "noun", "Eiláfr", "Eiláfs", "Eiláfi", "", "a male given"]) + let v = native_list_append(v, ["foglar", "noun", "foglar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["foglum", "noun", "foglum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["fogla", "noun", "fogla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["brjóts", "noun", "brjóts", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["þjófi", "noun", "þjófi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["þjófa", "noun", "þjófa", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["þjófum", "noun", "þjófum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["vatnit", "noun", "vatnit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["láðvǫrðr", "noun", "láðverðir", "láðvarðar", "láðverði", "", "the guardian of"]) + let v = native_list_append(v, ["spætr", "noun", "spætar", "spæts", "spæti", "", "woodpecker"]) + let v = native_list_append(v, ["øxar", "noun", "øxar", "", "", "", "inflection of øx"]) + let v = native_list_append(v, ["sumars", "noun", "sumars", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vǫr", "noun", "varar", "varar", "vǫrinni", "", "landing place berth"]) + let v = native_list_append(v, ["hættir", "noun", "hættir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hersis", "noun", "hersis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Bjólans", "noun", "Bjólans", "", "", "", "genitive of Bjólan"]) + let v = native_list_append(v, ["mækinum", "noun", "mækinum", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["mækirinn", "noun", "mækirinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["mækinn", "noun", "mækinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["þykkju", "noun", "þykkju", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["skjǫldrinn", "noun", "skjǫldrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["hvelp", "noun", "hvelp", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["bǿndr", "noun", "bǿndr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["búendr", "noun", "búendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["dǫnum", "noun", "dǫnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hryggjar", "noun", "hryggjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eplit", "noun", "eplit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["eplinu", "noun", "eplinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["eplisins", "noun", "eplisins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["eplum", "noun", "eplum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["eplin", "noun", "eplin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["eplunum", "noun", "eplunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["eplanna", "noun", "eplanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["heiða", "noun", "heiða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["heiðri", "noun", "heiðri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ǫrfum", "noun", "ǫrfum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["arfann", "noun", "arfann", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["fjǫrs", "noun", "fjǫrs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["glý", "noun", "glý", "", "", "", "joy glee delight"]) + let v = native_list_append(v, ["stǫpull", "noun", "stǫplar", "stǫpuls", "stǫpli", "", "steeple tower"]) + let v = native_list_append(v, ["stǫpul", "noun", "stǫpul", "", "", "", "accusative singular indefinite"]) + let v = native_list_append(v, ["fleini", "noun", "fleini", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kindir", "noun", "kindir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["hvera", "noun", "hvera", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["hringrinn", "noun", "hringrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["hringinn", "noun", "hringinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["bœjar", "noun", "bœjar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["morgingjǫf", "noun", "morgingjǫf", "", "", "", "morning gift"]) + let v = native_list_append(v, ["Vafþrúðnis", "noun", "Vafþrúðnis", "", "", "", "genitive of Vafþrúðnir"]) + let v = native_list_append(v, ["Vafþrúðni", "noun", "Vafþrúðni", "", "", "", "accusative/dative of Vafþrúðnir"]) + let v = native_list_append(v, ["hætti", "noun", "hætti", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["meðr", "noun", "meðr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sǫxum", "noun", "sǫxum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["búǫndum", "noun", "búǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["búanda", "noun", "búanda", "", "", "", "inflection of búandi"]) + let v = native_list_append(v, ["sverðberendr", "noun", "sverðberendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["goðin", "noun", "goðin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["goðit", "noun", "goðit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["goðinu", "noun", "goðinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["goðsins", "noun", "goðsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["goðunum", "noun", "goðunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["goðanna", "noun", "goðanna", "", "", "", "definite genitive plural"]) + let v = native_list_append(v, ["ásu", "noun", "ásu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["kaupangri", "noun", "kaupangri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kaupangrs", "noun", "kaupangrs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kaupangi", "noun", "kaupangi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kaupangs", "noun", "kaupangs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gumnum", "noun", "gumnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["svíum", "noun", "svíum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gotnum", "noun", "gotnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["gotna", "noun", "gotna", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["Gandalfr", "noun", "Gandalfr", "Gandalfs", "Gandalfi", "", "name of a"]) + let v = native_list_append(v, ["gleri", "noun", "gleri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["glerinu", "noun", "glerinu", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["glerit", "noun", "glerit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["grikkja", "noun", "grikkja", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dómrinn", "noun", "dómrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["dómsins", "noun", "dómsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["berendr", "noun", "berendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["bónda", "noun", "bónda", "", "", "", "inflection of bóndi"]) + let v = native_list_append(v, ["sverðberandi", "noun", "sverðberendr", "sverðberanda", "sverðberanda", "", "sword-bearer warrior"]) + let v = native_list_append(v, ["brám", "noun", "brám", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hlutrinn", "noun", "hlutrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["hlutinn", "noun", "hlutinn", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["hlutunum", "noun", "hlutunum", "", "", "", "definite dative plural"]) + let v = native_list_append(v, ["kǫttum", "noun", "kǫttum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["hamarrinn", "noun", "hamarrinn", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["rúnir", "noun", "rúnir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Ullar", "noun", "Ullar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nornir", "noun", "nornir", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Grímr", "noun", "Grímr", "", "", "", "a male given"]) + let v = native_list_append(v, ["nykr", "noun", "nykrar", "nykrs", "nykri", "", "a water-demon the"]) + let v = native_list_append(v, ["tívum", "noun", "tívum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["beðjar", "noun", "beðjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rǫgnum", "noun", "rǫgnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["dœll", "noun", "dœlir", "dœls", "dœl", "", "a person dwelling"]) + let v = native_list_append(v, ["hrælinnr", "noun", "hrælinnar", "hrælinns", "hrælinni", "", "sword"]) + let v = native_list_append(v, ["hrælinns", "noun", "hrælinns", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["glóða", "noun", "glóða", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["verjendr", "noun", "verjendr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["konr", "noun", "konir", "konar", "kon", "", "male descendant son"]) + let v = native_list_append(v, ["hamir", "noun", "hamir", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hǫmum", "noun", "hǫmum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["allvald", "noun", "allvald", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["allvalds", "noun", "allvalds", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["arinkjóll", "noun", "arinkjólar", "arinkjóls", "arinkjóli", "", "house"]) + let v = native_list_append(v, ["arinkjóli", "noun", "arinkjóli", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["kjóla", "noun", "kjóla", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["kjólum", "noun", "kjólum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["kjóls", "noun", "kjóls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ymis", "noun", "Ymis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ymi", "noun", "Ymi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Fjǫlni", "noun", "Fjǫlni", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Fjǫlnis", "noun", "Fjǫlnis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Dúrnis", "noun", "Dúrnis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["borðin", "noun", "borðin", "", "", "", "definite nominative/accusative plural"]) + let v = native_list_append(v, ["gammr", "noun", "gammr", "", "", "", "kind of big"]) + let v = native_list_append(v, ["Tveggja", "noun", "Tveggja", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["Arnhǫfði", "noun", "Arnhǫfði", "", "", "", "Odin literally “the"]) + let v = native_list_append(v, ["sǫkin", "noun", "sǫkin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["sǫkina", "noun", "sǫkina", "", "", "", "definite accusative singular"]) + let v = native_list_append(v, ["sǫkinni", "noun", "sǫkinni", "", "", "", "definite dative singular"]) + let v = native_list_append(v, ["nautr", "noun", "nautar", "nauts", "nauti", "", "a mate fellow"]) + let v = native_list_append(v, ["Yngvars", "noun", "Yngvars", "", "", "", "genitive of Yngvarr"]) + let v = native_list_append(v, ["lyngva", "noun", "lyngva", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þvengjar", "noun", "þvengjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fránþvengjar", "noun", "fránþvengjar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["kveldit", "noun", "kveldit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["kveldsins", "noun", "kveldsins", "", "", "", "definite genitive singular"]) + let v = native_list_append(v, ["nautar", "noun", "nautar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["hvǫt", "noun", "hvatar", "hvatar", "hvǫtinni", "", "incitement encouragement"]) + let v = native_list_append(v, ["hróðr", "noun", "hróðr", "hróðrar", "hróðri", "", "panegyric encomium praise"]) + let v = native_list_append(v, ["hróðri", "noun", "hróðri", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hróðrar", "noun", "hróðrar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Freys", "noun", "Freys", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hátta", "noun", "hátta", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["háttar", "noun", "háttar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fornyrðislagi", "noun", "fornyrðislagi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["háttum", "noun", "háttum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Saxlands", "noun", "Saxlands", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Saxlandi", "noun", "Saxlandi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["heiðrs", "noun", "heiðrs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Hjaltland", "noun", "Hjaltland", "Hjaltlands", "Hjaltlandi", "", "Shetland Shetland Islands"]) + let v = native_list_append(v, ["Hjaltlands", "noun", "Hjaltlands", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Hjaltlandi", "noun", "Hjaltlandi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Draupnis", "noun", "Draupnis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Alvíss", "noun", "Alvíss", "", "Alvísi", "", "name of a"]) + let v = native_list_append(v, ["svartalfar", "noun", "svartalfar", "", "", "", "the “black elves”"]) + let v = native_list_append(v, ["Mjǫðvitni", "noun", "Mjǫðvitni", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Mjǫðvitnis", "noun", "Mjǫðvitnis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Mótsognis", "noun", "Mótsognis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Skírnis", "noun", "Skírnis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dvergs", "noun", "dvergs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["siklingi", "noun", "siklingi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["of barmi", "noun", "of barmar", "of barma", "of barma", "", "alternative form of"]) + let v = native_list_append(v, ["tungla", "noun", "tungla", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ennitungl", "noun", "ennitunglin", "ennitungls", "ennitungli", "", "eye"]) + let v = native_list_append(v, ["brimi", "noun", "brimi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ásynjur", "noun", "ásynjur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["merkr", "noun", "merkr", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mǫrkin", "noun", "mǫrkin", "", "", "", "definite nominative singular"]) + let v = native_list_append(v, ["hǫggs", "noun", "hǫggs", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hǫggit", "noun", "hǫggit", "", "", "", "definite nominative/accusative singular"]) + let v = native_list_append(v, ["hjóls", "noun", "hjóls", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nǫf", "noun", "nafar", "nafar", "nǫfinni", "", "nave hub"]) + let v = native_list_append(v, ["Svǫlnis", "noun", "Svǫlnis", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Svǫlnir", "noun", "Svǫlnir", "Svǫlnis", "Svǫlni", "", "Odin"]) + let v = native_list_append(v, ["tǫk", "noun", "tǫk", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fǫng", "noun", "fǫng", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["fǫll", "noun", "fǫll", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["Askr", "noun", "Askr", "Asks", "", "", "Ask the first"]) + let v = native_list_append(v, ["Leiðulfr", "noun", "Leiðulfr", "Leiðulfs", "Leiðulfi", "", "a male given"]) + let v = native_list_append(v, ["ísarnleiki", "noun", "ísarnleiki", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["blóða", "noun", "blóða", "", "", "", "inflection of blóði"]) + let v = native_list_append(v, ["rekkar", "noun", "rekkar", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["rekkum", "noun", "rekkum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Sigvarðar", "noun", "Sigvarðar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Ingríðr", "noun", "Ingríðr", "", "", "", "a female given"]) + let v = native_list_append(v, ["langfeðgar", "noun", "langfeðgarnir", "langfeðga", "langfeðgum", "", "agnate paternal ancestors"]) + let v = native_list_append(v, ["langfeðga", "noun", "langfeðga", "", "", "", "accusative/genitive plural of"]) + let v = native_list_append(v, ["langfeðgum", "noun", "langfeðgum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["arftǫku", "noun", "arftǫku", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["send", "verb", "send", "", "", "", "inflection of senda"]) + let v = native_list_append(v, ["el", "verb", "el", "", "", "", "first-person singular active"]) + let v = native_list_append(v, ["al", "verb", "al", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["alim", "verb", "alim", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["alna", "verb", "alna", "", "", "", "inflection of alinn"]) + let v = native_list_append(v, ["beit", "verb", "beit", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ver", "verb", "ver", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sama", "verb", "sami", "samdi", "samaðr", "", "to beseem befit"]) + let v = native_list_append(v, ["ber", "verb", "ber", "", "", "", "inflection of bera"]) + let v = native_list_append(v, ["er", "verb", "es", "-'s", "", "", "third-person singular indicative"]) + let v = native_list_append(v, ["bend", "verb", "bend", "", "", "", "inflection of bendr"]) + let v = native_list_append(v, ["bent", "verb", "bent", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fell", "verb", "fell", "", "", "", "inflection of falla"]) + let v = native_list_append(v, ["get", "verb", "get", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sent", "verb", "sent", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["set", "verb", "set", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["sit", "verb", "sit", "", "", "", "inflection of sitja"]) + let v = native_list_append(v, ["sat", "verb", "sat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["ven", "verb", "ven", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["et", "verb", "et", "", "", "", "inflection of eta"]) + let v = native_list_append(v, ["far", "verb", "far", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["skein", "verb", "skein", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["manga", "verb", "mangaða", "mangaðr", "mangaðr", "", "to barter chaffer"]) + let v = native_list_append(v, ["sofa", "verb", "sef", "svaf", "sofinn", "", "to sleep"]) + let v = native_list_append(v, ["help", "verb", "help", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["eta", "verb", "et", "át", "etinn", "", "to eat"]) + let v = native_list_append(v, ["em", "verb", "em", "", "", "", "I am first-person"]) + let v = native_list_append(v, ["es", "verb", "es", "", "", "", "archaic form of"]) + let v = native_list_append(v, ["mega", "verb", "má", "megat", "megat", "", "to be able"]) + let v = native_list_append(v, ["bar", "verb", "bar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["nem", "verb", "nem", "", "", "", "inflection of nema"]) + let v = native_list_append(v, ["sel", "verb", "sel", "", "", "", "inflection of selja"]) + let v = native_list_append(v, ["riga", "verb", "rigaða", "rigaðr", "rigaðr", "", "to lift heavily"]) + let v = native_list_append(v, ["est", "verb", "est", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["vita", "verb", "veit", "vissi", "vitaðr", "", "to know"]) + let v = native_list_append(v, ["semi", "verb", "semi", "", "", "", "third-person active present"]) + let v = native_list_append(v, ["morna", "verb", "no-table-tags", "non-conj-weak2", "mornaðr", "", "to dawn become"]) + let v = native_list_append(v, ["gel", "verb", "gel", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["kom", "verb", "kom", "", "", "", "inflection of koma"]) + let v = native_list_append(v, ["vellum", "verb", "vellum", "", "", "", "inflection of vella"]) + let v = native_list_append(v, ["anda", "verb", "andaða", "andaðr", "andaðr", "", "to breathe live"]) + let v = native_list_append(v, ["hét", "verb", "hét", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["ló", "verb", "ló", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["vera", "verb", "em", "verinn", "verinn", "", "to be"]) + let v = native_list_append(v, ["olla", "verb", "olla", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["kala", "verb", "no-table-tags", "non-conj-strong", "kalinn", "", "to cause to"]) + let v = native_list_append(v, ["toga", "verb", "togaða", "togaðr", "togaðr", "", "to draw pull"]) + let v = native_list_append(v, ["ala", "verb", "el", "ól", "alinn", "", "to produce"]) + let v = native_list_append(v, ["blend", "verb", "blend", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["biti", "verb", "biti", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["vast", "verb", "vast", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fer", "verb", "fer", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["anna", "verb", "annaða", "annaðr", "annaðr", "", "to be able"]) + let v = native_list_append(v, ["bana", "verb", "banaða", "banaðr", "banaðr", "", "to kill"]) + let v = native_list_append(v, ["ali", "verb", "ali", "", "", "", "third-person active present"]) + let v = native_list_append(v, ["æ", "verb", "æ", "", "", "", "inflection of æja"]) + let v = native_list_append(v, ["reis", "verb", "reis", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["geta", "verb", "get", "gat", "getinn", "", "to get"]) + let v = native_list_append(v, ["tala", "verb", "talaða", "talaðr", "talaðr", "", "to talk speak"]) + let v = native_list_append(v, ["serir", "verb", "serir", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["saltar", "verb", "saltar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["batt", "verb", "batt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["dey", "verb", "dey", "", "", "", "inflection of deyja"]) + let v = native_list_append(v, ["gala", "verb", "gel", "galinn", "galinn", "", "to sing"]) + let v = native_list_append(v, ["serum", "verb", "serum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["tapa", "verb", "tapaða", "tapaðr", "tapaðr", "", "to lose"]) + let v = native_list_append(v, ["fest", "verb", "fest", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["sett", "verb", "sett", "", "", "", "inflection of settr"]) + let v = native_list_append(v, ["gat", "verb", "gat", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["aka", "verb", "ek", "ók", "ekinn", "", "to drive e.g."]) + let v = native_list_append(v, ["ró", "verb", "ró", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["flytja", "verb", "flyt", "flutti", "fluttr", "", "to move"]) + let v = native_list_append(v, ["fara", "verb", "fer", "fór", "farit", "", "to fare to"]) + let v = native_list_append(v, ["só", "verb", "só", "", "", "", "first/third-person past indicative"]) + let v = native_list_append(v, ["halt", "verb", "halt", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["kunna", "verb", "kann", "kunnaðr", "kunnaðr", "", "to know understand"]) + let v = native_list_append(v, ["danza", "verb", "danza", "", "", "", "to dance"]) + let v = native_list_append(v, ["bindi", "verb", "bindi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["blinda", "verb", "blindi", "blindr", "blindr", "", "to blind"]) + let v = native_list_append(v, ["veld", "verb", "veld", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["vex", "verb", "vex", "", "", "", "first/second/third-person singular present"]) + let v = native_list_append(v, ["vissi", "verb", "vissi", "", "", "", "inflection of vita"]) + let v = native_list_append(v, ["viti", "verb", "viti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["gal", "verb", "gal", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ól", "verb", "ól", "", "", "", "first/third-person singular active"]) + let v = native_list_append(v, ["messa", "verb", "messaða", "messaði", "messaðr", "", "to say mass"]) + let v = native_list_append(v, ["agar", "verb", "agar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["mé", "verb", "meig", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sé", "verb", "sé", "", "", "", "inflection of sjá"]) + let v = native_list_append(v, ["regna", "verb", "no-table-tags", "non-conj-weak1-long", "regndr", "", "alternative form of"]) + let v = native_list_append(v, ["lek", "verb", "lek", "", "", "", "inflection of leka"]) + let v = native_list_append(v, ["bora", "verb", "boraða", "boraðr", "boraðr", "", "to bore"]) + let v = native_list_append(v, ["var", "verb", "var", "", "", "", "first/third-person singular indicative"]) + let v = native_list_append(v, ["vas", "verb", "vas", "", "", "", "first/third-person singular indicative"]) + let v = native_list_append(v, ["baka", "verb", "bek", "bekinn", "bekinn", "", "to bake"]) + let v = native_list_append(v, ["hella", "verb", "helli", "helltr", "helltr", "", "to pour out"]) + let v = native_list_append(v, ["ama", "verb", "amaða", "amaðr", "amaðr", "", "to bother"]) + let v = native_list_append(v, ["mata", "verb", "mata", "", "", "", "To feed nourish"]) + let v = native_list_append(v, ["meta", "verb", "met", "mat", "metinn", "", "to estimate value"]) + let v = native_list_append(v, ["bella", "verb", "bellr", "ball", "", "", "to hit to"]) + let v = native_list_append(v, ["æra", "verb", "æri", "ærðr", "ærðr", "", "to row pull"]) + let v = native_list_append(v, ["sem", "verb", "sem", "", "", "", "inflection of semja"]) + let v = native_list_append(v, ["vart", "verb", "vart", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["missa", "verb", "missa", "", "", "", "to miss to"]) + let v = native_list_append(v, ["fata", "verb", "fǫtu", "no-table-tags", "non-decl-f-on", "", "pail bucket"]) + let v = native_list_append(v, ["tel", "verb", "tel", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sogna", "verb", "sogna", "", "", "", "inflection of soginn"]) + let v = native_list_append(v, ["sam", "verb", "sam", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["reka", "verb", "rek", "rekinn", "rekinn", "", "to drive"]) + let v = native_list_append(v, ["login", "verb", "login", "", "", "", "inflection of loginn"]) + let v = native_list_append(v, ["sera", "verb", "sera", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["ann", "verb", "ann", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["brenna", "verb", "brenn", "brann", "brunninn", "", "to burn with"]) + let v = native_list_append(v, ["sami", "verb", "sami", "", "", "", "inflection of sama"]) + let v = native_list_append(v, ["muna", "verb", "man", "mundi", "munaðr", "", "to remember"]) + let v = native_list_append(v, ["koma", "verb", "køm", "kom", "kominn", "", "to come arrive"]) + let v = native_list_append(v, ["logi", "verb", "logi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["mun", "verb", "mun", "", "", "", "inflection of munu"]) + let v = native_list_append(v, ["haft", "verb", "haft", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["nam", "verb", "nam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fari", "verb", "fari", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["brosa", "verb", "brosi", "brosaðr", "brosaðr", "", "smile"]) + let v = native_list_append(v, ["á", "verb", "á", "", "", "", "inflection of eiga"]) + let v = native_list_append(v, ["átt", "verb", "átt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["bera", "verb", "ber", "borinn", "borinn", "", "to carry to"]) + let v = native_list_append(v, ["berja", "verb", "ber", "barði", "bariðr", "", "to beat"]) + let v = native_list_append(v, ["biðja", "verb", "bað", "báðu", "beðinn", "", "to ask beg"]) + let v = native_list_append(v, ["bíða", "verb", "bíð", "beið", "biðinn", "", "to abide wait"]) + let v = native_list_append(v, ["búa", "verb", "bý", "búinn", "búinn", "", "to reside to"]) + let v = native_list_append(v, ["búinn", "verb", "búinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["byggja", "verb", "byggi", "bygði", "bygðr", "", "to settle build"]) + let v = native_list_append(v, ["byrja", "verb", "no-table-tags", "non-conj-weak2-j", "byrjaðr", "", "to blow in"]) + let v = native_list_append(v, ["dáinn", "verb", "dáinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["deyja", "verb", "dey", "dó", "dáinn", "", "to die"]) + let v = native_list_append(v, ["draga", "verb", "dreg", "dró", "dregit", "", "to draw drag"]) + let v = native_list_append(v, ["drekka", "verb", "drekk", "drakk", "drukkinn", "", "to drink"]) + let v = native_list_append(v, ["drepa", "verb", "drep", "drap", "drepinn", "", "to beat to"]) + let v = native_list_append(v, ["eiga", "verb", "á", "átti", "áttr", "", "to have own"]) + let v = native_list_append(v, ["sendi", "verb", "sendi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["stari", "verb", "stari", "", "", "", "inflection of stara"]) + let v = native_list_append(v, ["elda", "verb", "eldi", "eldr", "eldr", "", "to cause to"]) + let v = native_list_append(v, ["elska", "verb", "ælska", "", "", "", "to love"]) + let v = native_list_append(v, ["fá", "verb", "fæ", "fekk", "fenginn", "", "to get"]) + let v = native_list_append(v, ["ferja", "verb", "fer", "farði", "farðr", "", "to ferry"]) + let v = native_list_append(v, ["finna", "verb", "finn", "fann", "fundinn", "", "to find"]) + let v = native_list_append(v, ["fljúga", "verb", "flýg", "flaug", "floginn", "", "to fly"]) + let v = native_list_append(v, ["frá", "verb", "frá", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["frjósa", "verb", "frýs", "fraus", "frosinn", "", "to freeze"]) + let v = native_list_append(v, ["fylgja", "verb", "fylgi", "fylgðr", "fylgðr", "", "to accompany to"]) + let v = native_list_append(v, ["talar", "verb", "talar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gefa", "verb", "gef", "gaf", "gefinn", "", "to give something"]) + let v = native_list_append(v, ["gera", "verb", "geri", "gerði", "gerðr", "", "to do make"]) + let v = native_list_append(v, ["gleyma", "verb", "gleyma", "", "", "", "to be merry"]) + let v = native_list_append(v, ["gráta", "verb", "græt", "grátinn", "grátinn", "", "to cry mourn"]) + let v = native_list_append(v, ["hafa", "verb", "hefi", "hafði", "hafðr", "", "to have"]) + let v = native_list_append(v, ["halda", "verb", "held", "helt", "haldinn", "", "to hold"]) + let v = native_list_append(v, ["heilsa", "verb", "heilsaða", "heilsaðr", "heilsaðr", "", "to greet"]) + let v = native_list_append(v, ["herra", "verb", "herraða", "herraðr", "herraðr", "", "to confer with"]) + let v = native_list_append(v, ["heyra", "verb", "heyri", "heyrði", "heyrðr", "", "to hear listen"]) + let v = native_list_append(v, ["hitta", "verb", "hitti", "hitti", "hittr", "", "to hit upon"]) + let v = native_list_append(v, ["hlaupa", "verb", "hleyp", "hljóp", "hlaupinn", "", "to leap jump"]) + let v = native_list_append(v, ["hreinsa", "verb", "hreinsaða", "hreinsaðr", "hreinsaðr", "", "to make clean"]) + let v = native_list_append(v, ["hringja", "verb", "hringi", "hringdr", "hringdr", "", "to ring bells"]) + let v = native_list_append(v, ["hrópa", "verb", "hrópaða", "hrópaði", "hrópaðr", "", "to call out"]) + let v = native_list_append(v, ["hugsa", "verb", "hugsaða", "hugsaði", "hugsaðr", "", "to think to"]) + let v = native_list_append(v, ["hvíla", "verb", "hvíli", "hvíldr", "hvíldr", "", "to rest"]) + let v = native_list_append(v, ["kanna", "verb", "kanna", "", "", "", "to search explore"]) + let v = native_list_append(v, ["kaupa", "verb", "kaupi", "keyptr", "keyptr", "", "to buy"]) + let v = native_list_append(v, ["kenna", "verb", "kenni", "kenndr", "kenndr", "", "to know a"]) + let v = native_list_append(v, ["kosta", "verb", "kostaða", "kostaðr", "kostaðr", "", "to try"]) + let v = native_list_append(v, ["kyssa", "verb", "kyssi", "kystr", "kystr", "", "to kiss"]) + let v = native_list_append(v, ["leggja", "verb", "legg", "lagði", "lagðr", "", "to lay place"]) + let v = native_list_append(v, ["lesa", "verb", "les", "las", "lesinn", "", "to gather pick"]) + let v = native_list_append(v, ["leyfa", "verb", "leyfi", "leyfðr", "leyfðr", "", "to allow permit"]) + let v = native_list_append(v, ["lifa", "verb", "lifi", "lifði", "lifaðr", "", "to live"]) + let v = native_list_append(v, ["liggja", "verb", "liggja", "", "", "", "to lie on"]) + let v = native_list_append(v, ["ljúga", "verb", "lýg", "loginn", "loginn", "", "to lie to"]) + let v = native_list_append(v, ["lyfta", "verb", "lyfti", "lyfti", "lyftr", "", "alternative spelling of"]) + let v = native_list_append(v, ["opna", "verb", "opnaða", "opnaði", "opnaðr", "", "to open"]) + let v = native_list_append(v, ["reyna", "verb", "reyni", "reyndi", "reyndr", "", "to try out"]) + let v = native_list_append(v, ["ríða", "verb", "ríð", "riðinn", "riðinn", "", "to ride"]) + let v = native_list_append(v, ["segja", "verb", "segi", "sagði", "sagðr", "", "to say tell"]) + let v = native_list_append(v, ["selja", "verb", "sel", "seldr", "seldr", "", "to deliver"]) + let v = native_list_append(v, ["senda", "verb", "sendi", "sendr", "sendr", "", "to send"]) + let v = native_list_append(v, ["setja", "verb", "set", "settr", "settr", "", "to seat set"]) + let v = native_list_append(v, ["sitja", "verb", "sat", "sátu", "setinn", "", "to sit"]) + let v = native_list_append(v, ["sjá", "verb", "sé", "sá", "sénn", "", "to see"]) + let v = native_list_append(v, ["skila", "verb", "skilaða", "skilaðr", "skilaðr", "", "to expound give"]) + let v = native_list_append(v, ["skilja", "verb", "skil", "skildr", "skildr", "", "to part divide"]) + let v = native_list_append(v, ["skjóta", "verb", "skýt", "skaut", "skotinn", "", "to shoot"]) + let v = native_list_append(v, ["skoða", "verb", "skoðaða", "skoðaði", "skoðaðr", "", "to watch view"]) + let v = native_list_append(v, ["skrá", "verb", "skráði", "skráðu", "skráðr", "", "to write down"]) + let v = native_list_append(v, ["skæri", "verb", "skæri", "", "", "", "third-person past subjunctive"]) + let v = native_list_append(v, ["spyrja", "verb", "spyr", "spurðr", "spurðr", "", "to trace steps"]) + let v = native_list_append(v, ["standa", "verb", "stend", "staðinn", "staðinn", "", "to stand"]) + let v = native_list_append(v, ["stigi", "verb", "stigi", "", "", "", "third-person past subjunctive"]) + let v = native_list_append(v, ["súpa", "verb", "sýp", "saup", "sopinn", "", "to sip drink"]) + let v = native_list_append(v, ["synda", "verb", "syndi", "synti", "svima", "", "to swim"]) + let v = native_list_append(v, ["syngja", "verb", "syng", "sunginn", "sunginn", "", "to sing"]) + let v = native_list_append(v, ["sýna", "verb", "sýni", "sýndi", "sýndr", "", "to show"]) + let v = native_list_append(v, ["taka", "verb", "tek", "tók", "tekit", "", "to take"]) + let v = native_list_append(v, ["trúa", "verb", "trúi", "trúði", "trúat", "", "to believe"]) + let v = native_list_append(v, ["vekja", "verb", "vek", "vakiðr", "vakiðr", "", "to waken rouse"]) + let v = native_list_append(v, ["venja", "verb", "ven", "vandi", "vandr", "", "to accustom to"]) + let v = native_list_append(v, ["verð", "verb", "verð", "", "", "", "inflection of verða"]) + let v = native_list_append(v, ["verða", "verb", "verð", "varð", "orðinn", "", "to become"]) + let v = native_list_append(v, ["hitt", "verb", "hitt", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["átta", "verb", "átta", "", "", "", "inflection of áttr"]) + let v = native_list_append(v, ["bita", "verb", "bitaða", "bitaðr", "bitaðr", "", "to cut into"]) + let v = native_list_append(v, ["spýja", "verb", "spý", "spjó", "spúinn", "", "to spew to"]) + let v = native_list_append(v, ["blása", "verb", "blæs", "blásinn", "blásinn", "", "to blow"]) + let v = native_list_append(v, ["hlæja", "verb", "hlæ", "hló", "hleginn", "", "to laugh"]) + let v = native_list_append(v, ["skera", "verb", "sker", "skar", "skorinn", "", "to cut"]) + let v = native_list_append(v, ["grafa", "verb", "gref", "grafinn", "grafinn", "", "to dig"]) + let v = native_list_append(v, ["ganga", "verb", "geng", "gekk", "genginn", "", "to go walk"]) + let v = native_list_append(v, ["snúa", "verb", "snúa", "", "", "", "to turn around"]) + let v = native_list_append(v, ["falla", "verb", "fell", "fell", "fallinn", "", "to fall"]) + let v = native_list_append(v, ["verpa", "verb", "verp", "varp", "orpinn", "", "to throw cast"]) + let v = native_list_append(v, ["binda", "verb", "bind", "bundinn", "bundinn", "", "to bind tie"]) + let v = native_list_append(v, ["telja", "verb", "tel", "taldi", "taldr", "", "to count number"]) + let v = native_list_append(v, ["fljóta", "verb", "flýt", "flotinn", "flotinn", "", "to float"]) + let v = native_list_append(v, ["leika", "verb", "leik", "lék", "leikinn", "", "to play"]) + let v = native_list_append(v, ["rigna", "verb", "no-table-tags", "non-conj-weak1-long", "rigndr", "", "to rain"]) + let v = native_list_append(v, ["vinna", "verb", "vinn", "vann", "unninn", "", "to perform accomplish"]) + let v = native_list_append(v, ["þakka", "verb", "þakkaða", "þakkaði", "þakkaðr", "", "to thank to"]) + let v = native_list_append(v, ["þá", "verb", "þá", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["þurfa", "verb", "þarf", "þurfta", "", "", "to need"]) + let v = native_list_append(v, ["þýða", "verb", "þýði", "þýddr", "þýddr", "", "to explain interpret"]) + let v = native_list_append(v, ["festi", "verb", "festi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["langa", "verb", "langaða", "langaðr", "langaðr", "", "to long for"]) + let v = native_list_append(v, ["vaxa", "verb", "vex", "óx", "vaxinn", "", "to grow increase"]) + let v = native_list_append(v, ["vann", "verb", "vann", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bað", "verb", "bað", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["bjarga", "verb", "berg", "barg", "borginn", "", "to save rescue"]) + let v = native_list_append(v, ["aki", "verb", "aki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["lyft", "verb", "lypt", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["vek", "verb", "vek", "", "", "", "inflection of vekja"]) + let v = native_list_append(v, ["vilja", "verb", "vil", "vildi", "viljat", "", "to want"]) + let v = native_list_append(v, ["helgi", "verb", "helgi", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["smíða", "verb", "smíðaða", "smíðaði", "smíðaðr", "", "to make build"]) + let v = native_list_append(v, ["hyggja", "verb", "hygg", "hugðr", "hugðr", "", "to think believe"]) + let v = native_list_append(v, ["þrá", "verb", "þráða", "þráði", "þráðr", "", "to long yearn"]) + let v = native_list_append(v, ["síða", "verb", "síð", "siðinn", "siðinn", "", "to perform magic"]) + let v = native_list_append(v, ["skjalla", "verb", "skell", "skall", "skollinn", "", "to smack clang"]) + let v = native_list_append(v, ["brann", "verb", "brann", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["laug", "verb", "laug", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["greiða", "verb", "greiði", "greiddi", "greiddr", "", "to unravel disentangle"]) + let v = native_list_append(v, ["herðar", "verb", "herðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["sótt", "verb", "sótt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["deila", "verb", "deili", "deildi", "deildr", "", "to divide split"]) + let v = native_list_append(v, ["minni", "verb", "minni", "", "", "", "inflection of minna"]) + let v = native_list_append(v, ["trú", "verb", "trú", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["svala", "verb", "svalaða", "svalaðr", "svalaðr", "", "to chill cool"]) + let v = native_list_append(v, ["beygja", "verb", "beygi", "beygðr", "beygðr", "", "to bend bow"]) + let v = native_list_append(v, ["gerð", "verb", "gjǫrð", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["fregn", "verb", "fregn", "", "", "", "inflection of fregna"]) + let v = native_list_append(v, ["grein", "verb", "grein", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["hlaða", "verb", "hleð", "hlóð", "hlaðit", "", "to load to"]) + let v = native_list_append(v, ["barna", "verb", "barnaða", "barnaðr", "barnaðr", "", "to get with"]) + let v = native_list_append(v, ["bliku", "verb", "bliku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ata", "verb", "ata", "", "", "", "to stimulate"]) + let v = native_list_append(v, ["sugu", "verb", "sugu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vega", "verb", "veg", "veginn", "veginn", "", "to weigh"]) + let v = native_list_append(v, ["kann", "verb", "kann", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["hert", "verb", "hert", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fingir", "verb", "fingir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["ort", "verb", "ort", "", "", "", "inflection of ortr"]) + let v = native_list_append(v, ["fundu", "verb", "fundu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["keyrðum", "verb", "keyrðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["legit", "verb", "legit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["verja", "verb", "ver", "varði", "varðr", "", "to defend"]) + let v = native_list_append(v, ["stela", "verb", "stel", "stal", "stolinn", "", "to steal"]) + let v = native_list_append(v, ["mala", "verb", "mel", "mól", "malinn", "", "to grind"]) + let v = native_list_append(v, ["festa", "verb", "festi", "festr", "festr", "", "to fasten"]) + let v = native_list_append(v, ["valda", "verb", "veld", "valdinn", "valdinn", "", "to wield e.g."]) + let v = native_list_append(v, ["skep", "verb", "skep", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rak", "verb", "rak", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["keyra", "verb", "keyri", "keyrðr", "keyrðr", "", "to whip lash"]) + let v = native_list_append(v, ["leit", "verb", "leit", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fal", "verb", "fal", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["auki", "verb", "auki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["skara", "verb", "skara", "", "", "", "to poke rake"]) + let v = native_list_append(v, ["hanga", "verb", "hangi", "hekk", "hangit", "", "to hang be"]) + let v = native_list_append(v, ["inni", "verb", "inni", "", "", "", "inflection of inna"]) + let v = native_list_append(v, ["varpa", "verb", "varpaða", "varpaðr", "varpaðr", "", "to cast throw"]) + let v = native_list_append(v, ["át", "verb", "át", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["lát", "verb", "lát", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["kell", "verb", "kell", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["skola", "verb", "skolaða", "skoluðu", "skolaðr", "", "wash"]) + let v = native_list_append(v, ["bíta", "verb", "bít", "bitinn", "bitinn", "", "to bite"]) + let v = native_list_append(v, ["langar", "verb", "langar", "", "", "", "inflection of langa"]) + let v = native_list_append(v, ["helt", "verb", "helt", "", "", "", "inflection of halda"]) + let v = native_list_append(v, ["komi", "verb", "komi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["vinda", "verb", "vind", "vatt", "undinn", "", "to twist wring"]) + let v = native_list_append(v, ["vaka", "verb", "vaki", "vakti", "vakaðr", "", "to be awake"]) + let v = native_list_append(v, ["lúka", "verb", "lýk", "lauk", "lokinn", "", "to shut"]) + let v = native_list_append(v, ["taki", "verb", "taki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["stal", "verb", "stal", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fár", "verb", "fár", "", "", "", "second/third-person present indicative"]) + let v = native_list_append(v, ["mara", "verb", "mari", "maraðr", "maraðr", "", "to be waterlogged"]) + let v = native_list_append(v, ["duga", "verb", "dugi", "dugði", "dugat", "", "to help aid"]) + let v = native_list_append(v, ["lekar", "verb", "lekar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gali", "verb", "gali", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["vitu", "verb", "vitu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["beri", "verb", "beri", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["langi", "verb", "langi", "", "", "", "inflection of langa"]) + let v = native_list_append(v, ["seri", "verb", "seri", "", "", "", "inflection of sá"]) + let v = native_list_append(v, ["statt", "verb", "statt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["aga", "verb", "agaða", "agaðr", "agaðr", "", "to threaten"]) + let v = native_list_append(v, ["settan", "verb", "settan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["bends", "verb", "bends", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["rek", "verb", "rek", "", "", "", "inflection of reka"]) + let v = native_list_append(v, ["tek", "verb", "tek", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["læt", "verb", "læt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["stríða", "verb", "stríði", "stríddr", "stríddr", "", "to harm"]) + let v = native_list_append(v, ["leki", "verb", "leki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["ná", "verb", "nái", "náði", "nát", "", "to get hold"]) + let v = native_list_append(v, ["raka", "verb", "raka", "", "", "", "to scrape together"]) + let v = native_list_append(v, ["rísa", "verb", "rís", "reis", "risinn", "", "to rise"]) + let v = native_list_append(v, ["sæ", "verb", "sæ", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sjóða", "verb", "sýð", "sauð", "soðinn", "", "to seethe boil"]) + let v = native_list_append(v, ["spann", "verb", "spann", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["saka", "verb", "sakaða", "sakaða", "sakaðr", "", "to do harm"]) + let v = native_list_append(v, ["spinna", "verb", "spinn", "spann", "spunninn", "", "to spin"]) + let v = native_list_append(v, ["stara", "verb", "stari", "starði", "starat", "", "to stare"]) + let v = native_list_append(v, ["súga", "verb", "sýg", "soginn", "soginn", "", "to suck"]) + let v = native_list_append(v, ["svelga", "verb", "svelg", "svalg", "sólginn", "", "to swallow devour"]) + let v = native_list_append(v, ["svelta", "verb", "svelt", "svalt", "soltinn", "", "to starve to"]) + let v = native_list_append(v, ["þó", "verb", "þó", "", "", "", "first-person/third-person singular past"]) + let v = native_list_append(v, ["þekja", "verb", "þek", "þakti", "þakiðr", "", "to cover thatch"]) + let v = native_list_append(v, ["þráðr", "verb", "þrátt", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þreskja", "verb", "þreskja", "", "", "", "to thresh"]) + let v = native_list_append(v, ["loga", "verb", "logaða", "logaðr", "logaðr", "", "to blaze to"]) + let v = native_list_append(v, ["vili", "verb", "vili", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["vanta", "verb", "no-table-tags", "non-conj-weak2", "vantaðr", "", "to cause to"]) + let v = native_list_append(v, ["leggr", "verb", "leggr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["veifa", "verb", "veifa", "", "", "", "to wave"]) + let v = native_list_append(v, ["vefa", "verb", "vaf", "váfu", "ofinn", "", "to weave"]) + let v = native_list_append(v, ["œskja", "verb", "œski", "œskti", "œsktr", "", "to wish"]) + let v = native_list_append(v, ["tœma", "verb", "tœmdi", "tœmdu", "tœmdr", "", "to empty"]) + let v = native_list_append(v, ["hefja", "verb", "hef", "hóf", "hafiðr", "", "to heave lift"]) + let v = native_list_append(v, ["hylja", "verb", "hyl", "huldi", "huldr", "", "to hide cover"]) + let v = native_list_append(v, ["njóta", "verb", "nýt", "naut", "notinn", "", "to enjoy to"]) + let v = native_list_append(v, ["naut", "verb", "naut", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["heita", "verb", "heiti", "hét", "heitinn", "", "to call"]) + let v = native_list_append(v, ["skulu", "verb", "skal", "skyldi", "", "", "shall must"]) + let v = native_list_append(v, ["viðr", "verb", "viðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["berr", "verb", "berr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["velja", "verb", "vel", "valdi", "valdr", "", "to choose to"]) + let v = native_list_append(v, ["sær", "verb", "sjór", "sjár", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bjóða", "verb", "býð", "bauð", "boðinn", "", "to offer"]) + let v = native_list_append(v, ["brugga", "verb", "brugga", "", "", "", "to brew"]) + let v = native_list_append(v, ["þola", "verb", "þoli", "þoldi", "þolt", "", "to bear endure"]) + let v = native_list_append(v, ["flýja", "verb", "flý", "flúði", "flúiðr", "", "to flee"]) + let v = native_list_append(v, ["fága", "verb", "fágaða", "fágaðr", "fágaðr", "", "to adorn embellish"]) + let v = native_list_append(v, ["fylla", "verb", "fylli", "fylldr", "fylldr", "", "to fill"]) + let v = native_list_append(v, ["geispa", "verb", "geispi", "geispta", "geisptr", "", "to yawn"]) + let v = native_list_append(v, ["gjalda", "verb", "geld", "galt", "goldinn", "", "to repay return"]) + let v = native_list_append(v, ["grípa", "verb", "gríp", "greip", "gripinn", "", "to grab"]) + let v = native_list_append(v, ["hjalpa", "verb", "help", "halp", "holpinn", "", "to help"]) + let v = native_list_append(v, ["há", "verb", "há", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rjúka", "verb", "rýk", "rauk", "rokinn", "", "to reek emit"]) + let v = native_list_append(v, ["leka", "verb", "lek", "lak", "lekinn", "", "to drip dribble"]) + let v = native_list_append(v, ["slá", "verb", "slæ", "sló", "sleginn", "", "to hit beat"]) + let v = native_list_append(v, ["sá", "verb", "sá", "", "", "", "to sow"]) + let v = native_list_append(v, ["tendra", "verb", "tendra", "", "", "", "to ignite light"]) + let v = native_list_append(v, ["sofna", "verb", "sofnaða", "sofnaðr", "sofnaðr", "", "to fall asleep"]) + let v = native_list_append(v, ["kasta", "verb", "kastaða", "kastaðr", "kastaðr", "", "to cast to"]) + let v = native_list_append(v, ["vitrum", "verb", "vitrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["alit", "verb", "alit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fela", "verb", "fel", "fal", "folginn", "", "to hide conceal"]) + let v = native_list_append(v, ["vind", "verb", "vind", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["duna", "verb", "no-table-tags", "non-conj-weak2", "dunaðr", "", "to boom roar"]) + let v = native_list_append(v, ["salta", "verb", "saltaða", "saltaðr", "saltaðr", "", "to salt pickle"]) + let v = native_list_append(v, ["detta", "verb", "dett", "datt", "dottinn", "", "to drop fall"]) + let v = native_list_append(v, ["blanda", "verb", "blend", "blett", "blandinn", "", "to blend mix"]) + let v = native_list_append(v, ["reitt", "verb", "reitt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["galt", "verb", "galt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["kyss", "verb", "kyss", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sakna", "verb", "saknaða", "saknaða", "saknaðr", "", "to miss feel"]) + let v = native_list_append(v, ["signa", "verb", "segna", "segnaðr", "segnaðr", "", "to sink slide"]) + let v = native_list_append(v, ["gaf", "verb", "gaf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["spá", "verb", "spáða", "spáði", "spáðr", "", "to prophesy to"]) + let v = native_list_append(v, ["ert", "verb", "ert", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sagt", "verb", "sagt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sker", "verb", "sker", "", "", "", "inflection of skera"]) + let v = native_list_append(v, ["skapa", "verb", "skapi", "skóp", "skapaðr", "", "to shape make"]) + let v = native_list_append(v, ["olli", "verb", "olli", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["falda", "verb", "feld", "felt", "faldinn", "", "to hood"]) + let v = native_list_append(v, ["gá", "verb", "gái", "gáði", "gát", "", "to heed"]) + let v = native_list_append(v, ["lá", "verb", "lá", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["má", "verb", "má", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["vaska", "verb", "vaskaði", "vǫskuðu", "vaskaðr", "", "to wash"]) + let v = native_list_append(v, ["æla", "verb", "æla", "", "", "", "to pour to"]) + let v = native_list_append(v, ["ydda", "verb", "yddi", "yddi", "yddr", "", "to show the"]) + let v = native_list_append(v, ["logins", "verb", "logins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["fregit", "verb", "fregit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["salti", "verb", "salti", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["setti", "verb", "setti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["stríð", "verb", "stríð", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["vindr", "verb", "vindr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["renna", "verb", "renna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alin", "verb", "alin", "", "", "", "inflection of alinn"]) + let v = native_list_append(v, ["stel", "verb", "stel", "", "", "", "inflection of stela"]) + let v = native_list_append(v, ["hóra", "verb", "hóraða", "hóraðr", "hóraðr", "", "to commit adultery"]) + let v = native_list_append(v, ["geng", "verb", "geng", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hrinda", "verb", "hrind", "hratt", "hrundinn", "", "to push thrust"]) + let v = native_list_append(v, ["beina", "verb", "beini", "beindi", "beindr", "", "to stretch out"]) + let v = native_list_append(v, ["fagna", "verb", "fagnaða", "fagnaðr", "fagnaðr", "", "to rejoice"]) + let v = native_list_append(v, ["fiska", "verb", "fiskaða", "fiskaðr", "fiskaðr", "", "to fish"]) + let v = native_list_append(v, ["gista", "verb", "gisti", "gistr", "gistr", "", "to visit stay"]) + let v = native_list_append(v, ["harðna", "verb", "harðnaða", "harðnaðr", "harðnaðr", "", "to harden"]) + let v = native_list_append(v, ["henda", "verb", "henda", "", "", "", "to catch with"]) + let v = native_list_append(v, ["kalla", "verb", "kallaða", "kallaði", "kallaðr", "", "to call name"]) + let v = native_list_append(v, ["klippa", "verb", "klippi", "klipta", "kliptr", "", "to clip cut"]) + let v = native_list_append(v, ["laga", "verb", "lagaða", "lagaðr", "lagaðr", "", "to prepare make"]) + let v = native_list_append(v, ["leita", "verb", "leitaða", "leitaði", "leitaðr", "", "to seek to"]) + let v = native_list_append(v, ["minna", "verb", "minni", "mintr", "mintr", "", "to remind"]) + let v = native_list_append(v, ["mæla", "verb", "mæli", "mæltr", "mæltr", "", "to speak"]) + let v = native_list_append(v, ["ráða", "verb", "ræð", "réð", "ráðinn", "", "to advise to"]) + let v = native_list_append(v, ["reiða", "verb", "reiði", "reiddi", "reiddr", "", "to carry on"]) + let v = native_list_append(v, ["skína", "verb", "skín", "skein", "skininn", "", "to shine"]) + let v = native_list_append(v, ["skipa", "verb", "skipaða", "skipaðr", "skipaðr", "", "to arrange to"]) + let v = native_list_append(v, ["smyrja", "verb", "smyr", "smurði", "smurðr", "", "to anoint to"]) + let v = native_list_append(v, ["stíga", "verb", "stíg", "steig", "stiginn", "", "to step to"]) + let v = native_list_append(v, ["skunda", "verb", "skundaða", "skundaðr", "skundaðr", "", "to speed"]) + let v = native_list_append(v, ["svíkja", "verb", "svík", "sveik", "svikinn", "", "to betray deceive"]) + let v = native_list_append(v, ["vísa", "verb", "vísaða", "vísaðr", "vísaðr", "", "to show point"]) + let v = native_list_append(v, ["yrkja", "verb", "yrki", "orti", "ortr", "", "to work"]) + let v = native_list_append(v, ["leiga", "verb", "leigi", "leigðr", "leigðr", "", "to hire rent"]) + let v = native_list_append(v, ["meina", "verb", "meinaða", "meinaðr", "meinaðr", "", "to harm"]) + let v = native_list_append(v, ["svimma", "verb", "svimm", "svamm", "summinn", "", "to swim"]) + let v = native_list_append(v, ["banga", "verb", "banga", "", "", "", "to bang pound"]) + let v = native_list_append(v, ["leig", "verb", "leig", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["benda", "verb", "bendi", "bendr", "bendr", "", "bend"]) + let v = native_list_append(v, ["pína", "verb", "píni", "pínda", "píndr", "", "to punish torment"]) + let v = native_list_append(v, ["veit", "verb", "veit", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["eru", "verb", "eru", "", "", "", "third-person plural indicative"]) + let v = native_list_append(v, ["drukkin", "verb", "drukkin", "", "", "", "inflection of drukkinn"]) + let v = native_list_append(v, ["varði", "verb", "varði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["lúta", "verb", "lýt", "laut", "lotinn", "", "to lout bow"]) + let v = native_list_append(v, ["míga", "verb", "míg", "meig", "miginn", "", "to piss"]) + let v = native_list_append(v, ["tryggja", "verb", "tryggi", "trygðr", "trygðr", "", "to make firm"]) + let v = native_list_append(v, ["seg", "verb", "seg", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fingið", "verb", "fingið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["sissa", "verb", "sissaða", "sissaðr", "sissaðr", "", "to seat"]) + let v = native_list_append(v, ["mælti", "verb", "mælti", "", "", "", "inflection of mæla"]) + let v = native_list_append(v, ["herja", "verb", "herjaða", "herjaðr", "herjaðr", "", "to go harrying"]) + let v = native_list_append(v, ["gingin", "verb", "gingin", "", "", "", "inflection of ginginn"]) + let v = native_list_append(v, ["fingin", "verb", "fingin", "", "", "", "inflection of finginn"]) + let v = native_list_append(v, ["kreppa", "verb", "kreppi", "kreptr", "kreptr", "", "to squeeze press"]) + let v = native_list_append(v, ["røra", "verb", "røra", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["eggja", "verb", "eggjaða", "eggjaðr", "eggjaðr", "", "to incite to"]) + let v = native_list_append(v, ["fremja", "verb", "frem", "framdr", "framdr", "", "to promote"]) + let v = native_list_append(v, ["lemja", "verb", "lem", "lamdi", "lamdr", "", "to thrash flog"]) + let v = native_list_append(v, ["merja", "verb", "mer", "marði", "marðr", "", "to beat crush"]) + let v = native_list_append(v, ["rekja", "verb", "rek", "rakti", "rakiðr", "", "to unwind unfold"]) + let v = native_list_append(v, ["grína", "verb", "grín", "grein", "grininn", "", "to grin"]) + let v = native_list_append(v, ["hvína", "verb", "hvín", "hvein", "hvininn", "", "to whiz whistle"]) + let v = native_list_append(v, ["líta", "verb", "lít", "leit", "litinn", "", "look"]) + let v = native_list_append(v, ["skíta", "verb", "skít", "skitinn", "skitinn", "", "to shit"]) + let v = native_list_append(v, ["svíða", "verb", "svíð", "sveið", "sviðinn", "", "to singe burn"]) + let v = native_list_append(v, ["gjósa", "verb", "gýs", "gaus", "gosinn", "", "to gush burst"]) + let v = native_list_append(v, ["húka", "verb", "húka", "", "", "", "to squat"]) + let v = native_list_append(v, ["borin", "verb", "borin", "", "", "", "inflection of borinn"]) + let v = native_list_append(v, ["vaða", "verb", "veð", "óð", "vaðit", "", "to wade through"]) + let v = native_list_append(v, ["farin", "verb", "farin", "", "", "", "inflection of farinn"]) + let v = native_list_append(v, ["láta", "verb", "læt", "lét", "látinn", "", "to set put"]) + let v = native_list_append(v, ["skal", "verb", "skal", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["auka", "verb", "eyk", "jók", "aukinn", "", "to augment increase"]) + let v = native_list_append(v, ["segði", "verb", "segði", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["bólgna", "verb", "bólgnaða", "bólgnaðr", "bólgnaðr", "", "to swell become"]) + let v = native_list_append(v, ["vil", "verb", "vil", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["lék", "verb", "lék", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sukku", "verb", "sukku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["verma", "verb", "vermi", "vermdi", "vermdr", "", "to warm"]) + let v = native_list_append(v, ["leggi", "verb", "leggi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["flaut", "verb", "flaut", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["stóð", "verb", "stóð", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fekk", "verb", "fekk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sveik", "verb", "sveik", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["gekk", "verb", "gekk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fór", "verb", "fór", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["atti", "verb", "atti", "", "", "", "inflection of etja"]) + let v = native_list_append(v, ["kitla", "verb", "kitlaða", "kitlaðr", "kitlaðr", "", "to tickle"]) + let v = native_list_append(v, ["hné", "verb", "hné", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["skalt", "verb", "skalt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["stynja", "verb", "styn", "stundi", "stundr", "", "to sigh groan"]) + let v = native_list_append(v, ["kvað", "verb", "kvað", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sogni", "verb", "sogni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["fleyta", "verb", "fleyti", "fleytti", "fleyttr", "", "to set afloat"]) + let v = native_list_append(v, ["falli", "verb", "falli", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["orti", "verb", "orti", "", "", "", "inflection of yrkja"]) + let v = native_list_append(v, ["gakk", "verb", "gakk", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["kastat", "verb", "kastat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["setta", "verb", "setta", "", "", "", "inflection of settr"]) + let v = native_list_append(v, ["risu", "verb", "risu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["drukkna", "verb", "drukkna", "", "", "", "inflection of drukkinn"]) + let v = native_list_append(v, ["vesa", "verb", "em", "vesit", "vesit", "", "archaic form of"]) + let v = native_list_append(v, ["áttu", "verb", "áttu", "", "", "", "inflection of áttr"]) + let v = native_list_append(v, ["reki", "verb", "reki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["fingi", "verb", "fingi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["finga", "verb", "finga", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["leiki", "verb", "leiki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["samat", "verb", "samat", "", "", "", "supine of sama"]) + let v = native_list_append(v, ["komin", "verb", "komin", "", "", "", "inflection of kominn"]) + let v = native_list_append(v, ["lokit", "verb", "lokit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["lokin", "verb", "lokin", "", "", "", "inflection of lokinn"]) + let v = native_list_append(v, ["leikit", "verb", "leikit", "", "", "", "inflection of leika"]) + let v = native_list_append(v, ["bæði", "verb", "bæði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["víðir", "verb", "víðir", "", "", "", "inflection of víða"]) + let v = native_list_append(v, ["þjóna", "verb", "þjónaða", "þjónaðr", "þjónaðr", "", "to serve"]) + let v = native_list_append(v, ["fló", "verb", "fló", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["dó", "verb", "dó", "", "", "", "inflection of deyja"]) + let v = native_list_append(v, ["drjúpa", "verb", "drýp", "draup", "dropinn", "", "to drip fall"]) + let v = native_list_append(v, ["greinir", "verb", "greinir", "", "", "", "inflection of greina"]) + let v = native_list_append(v, ["brjóta", "verb", "brýt", "braut", "brotinn", "", "to break"]) + let v = native_list_append(v, ["hræða", "verb", "hræði", "hræddi", "hræddr", "", "to frighten"]) + let v = native_list_append(v, ["anza", "verb", "anzaða", "anzaðr", "anzaðr", "", "to heed to"]) + let v = native_list_append(v, ["gól", "verb", "gól", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["hengja", "verb", "hengi", "hengði", "hengðr", "", "to hang cause"]) + let v = native_list_append(v, ["temja", "verb", "tem", "tamdi", "tamdr", "", "to tame"]) + let v = native_list_append(v, ["þenja", "verb", "þen", "þandi", "þandr", "", "to stretch extend"]) + let v = native_list_append(v, ["róa", "verb", "róa", "", "", "", "to row"]) + let v = native_list_append(v, ["sofandi", "verb", "no-table-tags", "non-decl-cell", "sofanda", "", "present participle of"]) + let v = native_list_append(v, ["rinna", "verb", "renna", "", "", "", "to flow run"]) + let v = native_list_append(v, ["sverja", "verb", "sver", "svarði", "svarinn", "", "to swear"]) + let v = native_list_append(v, ["hljóta", "verb", "hlýt", "hlotinn", "hlotinn", "", "to get by"]) + let v = native_list_append(v, ["nefna", "verb", "nefni", "nefndi", "nefndr", "", "to name"]) + let v = native_list_append(v, ["semja", "verb", "sem", "samdi", "samdr", "", "to shape compose"]) + let v = native_list_append(v, ["gildi", "verb", "gildi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["fylki", "verb", "fylki", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["geri", "verb", "geri", "", "", "", "inflection of gera"]) + let v = native_list_append(v, ["horfa", "verb", "horfi", "horfði", "horft", "", "to turn be"]) + let v = native_list_append(v, ["hátt", "verb", "hátt", "", "", "", "inflection of heyja"]) + let v = native_list_append(v, ["glymja", "verb", "glym", "glumdi", "glumiðr", "", "to dash noisily"]) + let v = native_list_append(v, ["daga", "verb", "no-table-tags", "non-conj-weak2", "dagaðr", "", "to dawn become"]) + let v = native_list_append(v, ["legni", "verb", "legni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["hóf", "verb", "hóf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["nema", "verb", "nem", "nam", "numinn", "", "to take"]) + let v = native_list_append(v, ["varða", "verb", "varða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["tekin", "verb", "tekin", "", "", "", "inflection of tekinn"]) + let v = native_list_append(v, ["sigra", "verb", "sigraða", "sigraðr", "sigraðr", "", "to overcome defeat"]) + let v = native_list_append(v, ["átti", "verb", "átti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["skíra", "verb", "skíra", "", "", "", "inflection of skírr"]) + let v = native_list_append(v, ["reisa", "verb", "reisi", "reistr", "reistr", "", "to raise"]) + let v = native_list_append(v, ["barit", "verb", "bart", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["heyrðu", "verb", "heyrðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["syfja", "verb", "no-table-tags", "non-conj-weak2-j", "syfjaðr", "", "to make sleepy"]) + let v = native_list_append(v, ["legna", "verb", "legna", "", "", "", "inflection of leginn"]) + let v = native_list_append(v, ["þrár", "verb", "þrár", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["brendi", "verb", "brenndi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["leikin", "verb", "leikin", "", "", "", "inflection of leika"]) + let v = native_list_append(v, ["fóru", "verb", "fóru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["galin", "verb", "galin", "", "", "", "inflection of galinn"]) + let v = native_list_append(v, ["mátti", "verb", "mátti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["galið", "verb", "galið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["nauðga", "verb", "nauðga", "", "", "", "to compel to"]) + let v = native_list_append(v, ["lít", "verb", "lít", "", "", "", "inflection of líta"]) + let v = native_list_append(v, ["heyja", "verb", "hey", "háðr", "háðr", "", "to hold to"]) + let v = native_list_append(v, ["skynja", "verb", "skynja", "", "", "", "perceive"]) + let v = native_list_append(v, ["látið", "verb", "látið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["erum", "verb", "erum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["eruð", "verb", "eruð", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["lekat", "verb", "lekat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["varð", "verb", "varð", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fæ", "verb", "fæ", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hafna", "verb", "hafnaða", "hafnaðr", "hafnaðr", "", "to reject forsake"]) + let v = native_list_append(v, ["hlýða", "verb", "hlýði", "hlýddr", "hlýddr", "", "to listen"]) + let v = native_list_append(v, ["þiggja", "verb", "þá", "þágu", "þeginn", "", "to receive get"]) + let v = native_list_append(v, ["ves", "verb", "ves", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["jafna", "verb", "jafnaða", "jafnaðr", "jafnaðr", "", "to even"]) + let v = native_list_append(v, ["sveipa", "verb", "sveip", "sveip", "sveipinn", "", "to sweep stroke"]) + let v = native_list_append(v, ["freista", "verb", "freistaða", "freistaði", "freistaðr", "", "to tempt test"]) + let v = native_list_append(v, ["þerra", "verb", "þerri", "þerði", "þerðr", "", "to make cause"]) + let v = native_list_append(v, ["læsa", "verb", "læsi", "læstr", "læstr", "", "to lock"]) + let v = native_list_append(v, ["skylda", "verb", "skylda", "", "", "", "obligate bind"]) + let v = native_list_append(v, ["ljósta", "verb", "lýst", "laust", "lostinn", "", "to strike smite"]) + let v = native_list_append(v, ["serða", "verb", "serð", "sarð", "sorðinn", "", "to fuck to"]) + let v = native_list_append(v, ["skaka", "verb", "skek", "skók", "skekinn", "", "to shake"]) + let v = native_list_append(v, ["hindra", "verb", "hindraða", "hindraðr", "hindraðr", "", "to hinder to"]) + let v = native_list_append(v, ["hrjóta", "verb", "hrýt", "hraut", "hrotinn", "", "to fall fly"]) + let v = native_list_append(v, ["krjúpa", "verb", "krýp", "kraup", "kropinn", "", "to creep crouch"]) + let v = native_list_append(v, ["kjósa", "verb", "kýs", "kosinn", "kosinn", "", "to choose"]) + let v = native_list_append(v, ["borna", "verb", "borna", "", "", "", "inflection of borinn"]) + let v = native_list_append(v, ["munu", "verb", "mun", "mynda", "", "", "denoting futurity will"]) + let v = native_list_append(v, ["þíða", "verb", "þíði", "þíddi", "þíddr", "", "to thaw melt"]) + let v = native_list_append(v, ["bundin", "verb", "bundin", "", "", "", "inflection of bundinn"]) + let v = native_list_append(v, ["farinn", "verb", "farinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["veikja", "verb", "veiki", "veiktr", "veiktr", "", "to bend"]) + let v = native_list_append(v, ["gleðja", "verb", "gleð", "gladdi", "gladdr", "", "to gladden to"]) + let v = native_list_append(v, ["bendi", "verb", "bendi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["velta", "verb", "velt", "valt", "oltinn", "", "to roll over"]) + let v = native_list_append(v, ["hitti", "verb", "hitti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["bart", "verb", "bart", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["dúfa", "verb", "dúfa", "", "", "", "to dive"]) + let v = native_list_append(v, ["tók", "verb", "tók", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["lagt", "verb", "lagt", "", "", "", "supine of leggja"]) + let v = native_list_append(v, ["tekna", "verb", "tekna", "", "", "", "inflection of tekinn"]) + let v = native_list_append(v, ["sér", "verb", "sér", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bregða", "verb", "bregð", "brá", "brugðinn", "", "to turn around"]) + let v = native_list_append(v, ["hverfa", "verb", "hverf", "hvarf", "horfinn", "", "to have a"]) + let v = native_list_append(v, ["seðja", "verb", "seð", "saddr", "saddr", "", "to satiate satisfy"]) + let v = native_list_append(v, ["sveðja", "verb", "sveð", "svaddi", "", "", "to slide glance"]) + let v = native_list_append(v, ["kyrkja", "verb", "kyrki", "kyrkti", "kyrktr", "", "to choke strangle"]) + let v = native_list_append(v, ["heitin", "verb", "heitin", "", "", "", "inflection of heitinn"]) + let v = native_list_append(v, ["veik", "verb", "veik", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["dreyma", "verb", "dreymi", "dreymðr", "dreymðr", "", "to dream see"]) + let v = native_list_append(v, ["heiðra", "verb", "heiðra", "", "", "", "to honour to"]) + let v = native_list_append(v, ["appellera", "verb", "appelleraða", "appelleraðr", "appelleraðr", "", "to cite summon"]) + let v = native_list_append(v, ["gróa", "verb", "greri", "greru", "gróinn", "", "to grow of"]) + let v = native_list_append(v, ["dugi", "verb", "dugi", "", "", "", "inflection of duga"]) + let v = native_list_append(v, ["verið", "verb", "verið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["verandi", "verb", "verandi", "", "", "", "present participle of"]) + let v = native_list_append(v, ["heiti", "verb", "heiti", "", "", "", "inflection of heita"]) + let v = native_list_append(v, ["brynna", "verb", "brynni", "brynntr", "brynntr", "", "to water give"]) + let v = native_list_append(v, ["vefja", "verb", "vef", "vafði", "vafðr", "", "to wrap fold"]) + let v = native_list_append(v, ["ljá", "verb", "léði", "léðu", "léðr", "", "to lend"]) + let v = native_list_append(v, ["blés", "verb", "blés", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["trygt", "verb", "trygt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["baula", "verb", "baula", "", "", "", "to bellow"]) + let v = native_list_append(v, ["kominn", "verb", "kominn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þegja", "verb", "þegi", "þagr", "þagr", "", "to be silent"]) + let v = native_list_append(v, ["skella", "verb", "skella", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vá", "verb", "vá", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["þjóta", "verb", "þýt", "þaut", "þotinn", "", "to emit a"]) + let v = native_list_append(v, ["sætta", "verb", "sætta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["velli", "verb", "velli", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["sendu", "verb", "sendu", "", "", "", "inflection of sendr"]) + let v = native_list_append(v, ["litit", "verb", "litit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["komit", "verb", "komit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["tauta", "verb", "tautaða", "tautaðr", "tautaðr", "", "to mutter murmur"]) + let v = native_list_append(v, ["talda", "verb", "talda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["helga", "verb", "helgaða", "helgaðr", "helgaðr", "", "to hallow"]) + let v = native_list_append(v, ["títt", "verb", "títt", "", "", "", "inflection of tíða"]) + let v = native_list_append(v, ["kveðja", "verb", "kveð", "kvaddi", "kvaddr", "", "to call on"]) + let v = native_list_append(v, ["litu", "verb", "litu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vaxinn", "verb", "vaxinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skapt", "verb", "skapit", "skaft", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["haldinn", "verb", "haldinn", "", "", "", "held past participle"]) + let v = native_list_append(v, ["ollu", "verb", "ollu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["lofa", "verb", "lofaða", "lofaða", "lofaðr", "", "to praise"]) + let v = native_list_append(v, ["samt", "verb", "samt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mýkja", "verb", "mýkja", "", "", "", "to soften"]) + let v = native_list_append(v, ["orðinn", "verb", "orðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["víð", "verb", "víð", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["gína", "verb", "gín", "gein", "gininn", "", "to gape"]) + let v = native_list_append(v, ["hrjósa", "verb", "hrýs", "hraus", "hrosinn", "", "to shudder"]) + let v = native_list_append(v, ["appella", "verb", "appellaða", "appellaðr", "appellaðr", "", "to cite summon"]) + let v = native_list_append(v, ["anga", "verb", "angaða", "angaðr", "angaðr", "", "to exhale emit"]) + let v = native_list_append(v, ["hrœra", "verb", "hrœrði", "hrœrðu", "hrœrðr", "", "alternative form of"]) + let v = native_list_append(v, ["hǫggva", "verb", "høgg", "hǫggvinn", "hǫggvinn", "", "to hew strike"]) + let v = native_list_append(v, ["stiga", "verb", "stiga", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["teli", "verb", "teli", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["galinn", "verb", "galin", "galit", "", "", "past participle of"]) + let v = native_list_append(v, ["kemba", "verb", "kemba", "", "", "", "to comb"]) + let v = native_list_append(v, ["mundu", "verb", "mundu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ausa", "verb", "eys", "jós", "ausinn", "", "to sprinkle pour"]) + let v = native_list_append(v, ["timbra", "verb", "timbraða", "timbraði", "timbraðr", "", "to build construct"]) + let v = native_list_append(v, ["drakk", "verb", "drakk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["greip", "verb", "greip", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["mygla", "verb", "myglaða", "myglaðr", "myglaðr", "", "to grow mouldy"]) + let v = native_list_append(v, ["urpu", "verb", "urpu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["reist", "verb", "reist", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["hvæsa", "verb", "hvæsa", "", "", "", "to hiss"]) + let v = native_list_append(v, ["titra", "verb", "titra", "", "", "", "to twinkle ones"]) + let v = native_list_append(v, ["plǿgja", "verb", "plǿgja", "", "", "", "to plough"]) + let v = native_list_append(v, ["æja", "verb", "æ", "áði", "áðr", "", "to rest and"]) + let v = native_list_append(v, ["bleik", "verb", "bleik", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["negla", "verb", "negli", "negldr", "negldr", "", "to nail to"]) + let v = native_list_append(v, ["sám", "verb", "sám", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hef", "verb", "hef", "", "", "", "inflection of hefja"]) + let v = native_list_append(v, ["séð", "verb", "séð", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fræva", "verb", "frævaða", "frævaðr", "frævaðr", "", "alternative form of"]) + let v = native_list_append(v, ["blǿða", "verb", "blǿði", "blǿddi", "blǿtt", "", "to bleed"]) + let v = native_list_append(v, ["menna", "verb", "menni", "mennti", "menntr", "", "to make a"]) + let v = native_list_append(v, ["tína", "verb", "tína", "", "", "", "to pick"]) + let v = native_list_append(v, ["vreka", "verb", "vrek", "vrekinn", "vrekinn", "", "to drive away"]) + let v = native_list_append(v, ["jós", "verb", "jós", "", "", "", "first/third-person singular indicative"]) + let v = native_list_append(v, ["rerum", "verb", "rerum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["blána", "verb", "blánaða", "blánaðr", "blánaðr", "", "to become blue"]) + let v = native_list_append(v, ["mól", "verb", "mól", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["steli", "verb", "steli", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["tigna", "verb", "tignaða", "tignaðr", "tignaðr", "", "to honour worship"]) + let v = native_list_append(v, ["hreyfa", "verb", "hreyfa", "", "", "", "to move stir"]) + let v = native_list_append(v, ["deyfa", "verb", "deyfi", "deyfðr", "deyfðr", "", "to make deaf"]) + let v = native_list_append(v, ["skak", "verb", "skak", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["vrak", "verb", "vrak", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["skar", "verb", "skar", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fórum", "verb", "fórum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["vell", "verb", "vell", "", "", "", "inflection of vella"]) + let v = native_list_append(v, ["fati", "verb", "fati", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["gabba", "verb", "gabba", "", "", "", "to mock to"]) + let v = native_list_append(v, ["lézt", "verb", "lézt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hryggja", "verb", "hryggi", "hrygðr", "hrygðr", "", "to distress to"]) + let v = native_list_append(v, ["svella", "verb", "svell", "svall", "sollinn", "", "to swell"]) + let v = native_list_append(v, ["hrína", "verb", "hrín", "hrein", "hrininn", "", "to squeal of"]) + let v = native_list_append(v, ["hvísla", "verb", "hvíslaða", "hvíslaðr", "hvíslaðr", "", "to whisper"]) + let v = native_list_append(v, ["þvá", "verb", "þvæ", "þó", "þveginn", "", "to wash"]) + let v = native_list_append(v, ["hnjósa", "verb", "hnýs", "hnaus", "hnosinn", "", "to sneeze"]) + let v = native_list_append(v, ["fám", "verb", "fám", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fáim", "verb", "fáim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fái", "verb", "fái", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["inna", "verb", "inni", "inntr", "inntr", "", "to accomplish"]) + let v = native_list_append(v, ["skenkja", "verb", "skekkja", "", "", "", "to serve to"]) + let v = native_list_append(v, ["flyt", "verb", "flyt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rymja", "verb", "rym", "rumdi", "rumdr", "", "to roar scream"]) + let v = native_list_append(v, ["bendir", "verb", "bendir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["heldr", "verb", "heldr", "", "", "", "inflection of halda"]) + let v = native_list_append(v, ["rabba", "verb", "rabbaði", "rabbaðu", "rabbaðr", "", "to mumble"]) + let v = native_list_append(v, ["væra", "verb", "væra", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["rakt", "verb", "rakt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fengi", "verb", "fengi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["hvarfa", "verb", "hvarfa", "", "", "", "to turn around"]) + let v = native_list_append(v, ["troða", "verb", "treð", "troðinn", "troðinn", "", "to tread to"]) + let v = native_list_append(v, ["samit", "verb", "samt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fylli", "verb", "fylli", "", "", "", "inflection of fylla"]) + let v = native_list_append(v, ["verir", "verb", "verir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gaus", "verb", "gaus", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["numit", "verb", "numit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["undra", "verb", "undraða", "undraðr", "undraðr", "", "to wonder at"]) + let v = native_list_append(v, ["gapa", "verb", "gapi", "gapti", "gapat", "", "to gape open"]) + let v = native_list_append(v, ["skreyta", "verb", "skreyti", "skreytti", "skreyttr", "", "to ornament adorn"]) + let v = native_list_append(v, ["beita", "verb", "beiti", "beitti", "beittr", "", "to graze"]) + let v = native_list_append(v, ["orta", "verb", "orta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["vella", "verb", "vell", "vall", "ollinn", "", "to be in"]) + let v = native_list_append(v, ["hvíld", "verb", "hvíld", "", "", "", "inflection of hvíla"]) + let v = native_list_append(v, ["súg", "verb", "súg", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["geyi", "verb", "geyi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["stétt", "verb", "stétt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["unni", "verb", "unni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["unna", "verb", "ann", "unnat", "unnat", "", "to grant bestow"]) + let v = native_list_append(v, ["flá", "verb", "flæ", "fleginn", "fleginn", "", "to flay"]) + let v = native_list_append(v, ["orpit", "verb", "orpit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sendar", "verb", "sendar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["hverfi", "verb", "hverfi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["verna", "verb", "vernaða", "vernuðu", "vernaðr", "", "defend protect"]) + let v = native_list_append(v, ["yllir", "verb", "yllir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["feykja", "verb", "feykja", "", "", "", "to blow drive"]) + let v = native_list_append(v, ["logit", "verb", "logit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["heitinn", "verb", "heitinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lét", "verb", "lét", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["dafna", "verb", "dafna", "", "", "", "to thrive"]) + let v = native_list_append(v, ["hekk", "verb", "hekk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fletja", "verb", "flet", "flatti", "flattr", "", "to make flat"]) + let v = native_list_append(v, ["hvetja", "verb", "hvet", "hvatti", "hvattr", "", "to whet"]) + let v = native_list_append(v, ["frétta", "verb", "frétta", "", "", "", "to inquire to"]) + let v = native_list_append(v, ["deyr", "verb", "deyr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["blæs", "verb", "blæs", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["dvelja", "verb", "dvel", "dvaldi", "dvaldr", "", "to delay"]) + let v = native_list_append(v, ["seti", "verb", "seti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["styðja", "verb", "styð", "studdi", "studdr", "", "to rest"]) + let v = native_list_append(v, ["kvelja", "verb", "kvel", "kvaldr", "kvaldr", "", "to torment torture"]) + let v = native_list_append(v, ["syng", "verb", "syng", "", "", "", "inflection of syngja"]) + let v = native_list_append(v, ["þyrsta", "verb", "þyrsti", "þyrstu", "þyrstr", "", "to cause to"]) + let v = native_list_append(v, ["þverra", "verb", "þverr", "þvarr", "þorrinn", "", "to wane grow"]) + let v = native_list_append(v, ["gein", "verb", "gein", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["flugu", "verb", "flugu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kúga", "verb", "kúga", "", "", "", "to cow to"]) + let v = native_list_append(v, ["angra", "verb", "angraða", "angraðr", "angraðr", "", "to grieve vex"]) + let v = native_list_append(v, ["saltir", "verb", "saltir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["borar", "verb", "borar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["þarf", "verb", "þarf", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["seli", "verb", "seli", "", "", "", "third-person singular/third-person plural"]) + let v = native_list_append(v, ["ferr", "verb", "ferr", "", "", "", "second-person/third-person singular present"]) + let v = native_list_append(v, ["søkkva", "verb", "sǫkk", "sukku", "sokkinn", "", "to sink"]) + let v = native_list_append(v, ["greina", "verb", "greini", "greindr", "greindr", "", "to divide into"]) + let v = native_list_append(v, ["skeina", "verb", "skeini", "skeindr", "skeindr", "", "to scratch a"]) + let v = native_list_append(v, ["beiða", "verb", "beiði", "beiddi", "beiddr", "", "to ask beg"]) + let v = native_list_append(v, ["tyggja", "verb", "tygg", "tǫgg", "togginn", "", "to chew"]) + let v = native_list_append(v, ["stétta", "verb", "stéttaða", "stéttaðr", "stéttaðr", "", "to be the"]) + let v = native_list_append(v, ["bergja", "verb", "bergi", "bergðr", "bergðr", "", "to taste"]) + let v = native_list_append(v, ["yppa", "verb", "yppi", "ypti", "yptr", "", "to lift raise"]) + let v = native_list_append(v, ["kvæna", "verb", "kvæni", "kvændr", "kvændr", "", "to make a"]) + let v = native_list_append(v, ["skilinn", "verb", "skildr", "skiliðr", "", "", "past participle of"]) + let v = native_list_append(v, ["vitra", "verb", "vitraða", "vitraðr", "vitraðr", "", "to manifest reveal"]) + let v = native_list_append(v, ["kyrr", "verb", "kvirr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ávíta", "verb", "ávíta", "", "", "", "to chide rebuke"]) + let v = native_list_append(v, ["trygg", "verb", "trygg", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["játa", "verb", "jati", "jatr", "jatr", "", "to agree accept"]) + let v = native_list_append(v, ["symja", "verb", "sym", "sumði", "suminn", "", "to swim"]) + let v = native_list_append(v, ["stalt", "verb", "stalt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fegra", "verb", "fegri", "fegrðr", "fegrðr", "", "to embellish beautify"]) + let v = native_list_append(v, ["kennt", "verb", "kennt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["meint", "verb", "meint", "", "", "", "inflection of meintr"]) + let v = native_list_append(v, ["vatt", "verb", "vatt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["skynda", "verb", "skyndi", "skyndr", "skyndr", "", "to hasten accelerate"]) + let v = native_list_append(v, ["þjá", "verb", "þjáða", "þjáði", "þjáðr", "", "to constrain enthral"]) + let v = native_list_append(v, ["rýja", "verb", "rý", "rúði", "rúinn", "", "to pull the"]) + let v = native_list_append(v, ["reri", "verb", "reri", "", "", "", "inflection of róa"]) + let v = native_list_append(v, ["samdi", "verb", "samdi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["visna", "verb", "visnaða", "visnaðr", "visnaðr", "", "to wither"]) + let v = native_list_append(v, ["vilt", "verb", "vilt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["alnar", "verb", "alnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["farit", "verb", "farit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fallit", "verb", "fallit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["stigit", "verb", "stigit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["gripit", "verb", "gripit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["bundit", "verb", "bundit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["kallar", "verb", "kallar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["kastar", "verb", "kastar", "", "", "", "second/third-person singular active"]) + let v = native_list_append(v, ["vilda", "verb", "vilda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["komna", "verb", "komna", "", "", "", "inflection of kominn"]) + let v = native_list_append(v, ["saknar", "verb", "saknar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["angar", "verb", "angar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["fingit", "verb", "fingit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fundit", "verb", "fundit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fann", "verb", "fann", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fundum", "verb", "fundum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["alni", "verb", "alna", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["skorna", "verb", "skorna", "", "", "", "inflection of skorinn"]) + let v = native_list_append(v, ["saxa", "verb", "saxaða", "saxaðr", "saxaðr", "", "to cut chop"]) + let v = native_list_append(v, ["galit", "verb", "galinn", "galin", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["brunnit", "verb", "brunnit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["ullum", "verb", "ullum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["steigt", "verb", "steigt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["brennt", "verb", "brennt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["saltat", "verb", "saltat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["gremja", "verb", "grem", "gramdi", "gramiðr", "", "to anger provoke"]) + let v = native_list_append(v, ["borinn", "verb", "borinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vegi", "verb", "vegi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["kristna", "verb", "kristnaða", "kristnaðr", "kristnaðr", "", "to Christianize"]) + let v = native_list_append(v, ["brunnar", "verb", "brunnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["unnar", "verb", "unnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["rannsaka", "verb", "rannsakaði", "rannsǫkuðu", "rannsakaður", "", "to investigate"]) + let v = native_list_append(v, ["veltum", "verb", "veltum", "", "", "", "inflection of velta"]) + let v = native_list_append(v, ["kaust", "verb", "kaust", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["tignum", "verb", "tignum", "", "", "", "inflection of tigna"]) + let v = native_list_append(v, ["sanna", "verb", "sannaða", "sannaðr", "sannaðr", "", "to assert affirm"]) + let v = native_list_append(v, ["saltim", "verb", "saltim", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["herða", "verb", "herði", "herði", "herðr", "", "to make hard"]) + let v = native_list_append(v, ["fyllda", "verb", "fyllda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["fregna", "verb", "fregn", "frá", "freginn", "", "to hear to"]) + let v = native_list_append(v, ["gnaga", "verb", "gnagaða", "gnagaði", "gnagaðr", "", "to gnaw"]) + let v = native_list_append(v, ["teðja", "verb", "teð", "taddi", "taddr", "", "to dung manure"]) + let v = native_list_append(v, ["ryðja", "verb", "ryð", "ruddi", "ruddr", "", "to clear free"]) + let v = native_list_append(v, ["spyr", "verb", "spyr", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["brunna", "verb", "brunna", "", "", "", "inflection of brunninn"]) + let v = native_list_append(v, ["galna", "verb", "galna", "", "", "", "inflection of galinn"]) + let v = native_list_append(v, ["ligg", "verb", "ligg", "", "", "", "inflection of liggja"]) + let v = native_list_append(v, ["skapta", "verb", "skapta", "", "", "", "inflection of skaptr"]) + let v = native_list_append(v, ["skrapa", "verb", "skrapaða", "skrapaðr", "skrapaðr", "", "to clatter"]) + let v = native_list_append(v, ["bundna", "verb", "bundna", "", "", "", "inflection of bundinn"]) + let v = native_list_append(v, ["fallna", "verb", "fallna", "", "", "", "inflection of fallinn"]) + let v = native_list_append(v, ["segi", "verb", "segi", "", "", "", "inflection of segja"]) + let v = native_list_append(v, ["hæita", "verb", "hæita", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þraut", "verb", "þraut", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["œðask", "verb", "œðask", "", "", "", "to become frantic"]) + let v = native_list_append(v, ["bauta", "verb", "beut", "bautinn", "", "", "to beat strike"]) + let v = native_list_append(v, ["vaxi", "verb", "vaxi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["grána", "verb", "gránaða", "gránaðr", "gránaðr", "", "to greyen"]) + let v = native_list_append(v, ["þýði", "verb", "þýði", "", "", "", "inflection of þýða"]) + let v = native_list_append(v, ["helzt", "verb", "helzt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["heygja", "verb", "heygi", "heygðr", "heygðr", "", "to bury in"]) + let v = native_list_append(v, ["gæta", "verb", "gæti", "gætti", "gættr", "", "to watch guard"]) + let v = native_list_append(v, ["bleikja", "verb", "bleiki", "bleiktr", "bleiktr", "", "to bleach"]) + let v = native_list_append(v, ["sté", "verb", "sté", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["strjúka", "verb", "strýk", "strauk", "strokinn", "", "to stroke rut"]) + let v = native_list_append(v, ["svífa", "verb", "svíf", "sveif", "svifinn", "", "to rove ramble"]) + let v = native_list_append(v, ["hníga", "verb", "hníg", "hné", "hniginn", "", "to fall gently"]) + let v = native_list_append(v, ["kljúfa", "verb", "klýf", "klauf", "klofinn", "", "to cleave split"]) + let v = native_list_append(v, ["rjúfa", "verb", "rýf", "rauf", "rofinn", "", "to break a"]) + let v = native_list_append(v, ["kryfja", "verb", "kryf", "krufði", "krufðr", "", "to open up"]) + let v = native_list_append(v, ["tefja", "verb", "tef", "tafði", "tafðr", "", "to delay hinder"]) + let v = native_list_append(v, ["reyn", "verb", "reyn", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["leik", "verb", "leik", "", "", "", "inflection of leika"]) + let v = native_list_append(v, ["gaft", "verb", "gaft", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þarft", "verb", "þarft", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rétta", "verb", "rétti", "rétti", "-ttr", "", "to make straight"]) + let v = native_list_append(v, ["berum", "verb", "berum", "", "", "", "inflection of bera"]) + let v = native_list_append(v, ["kannt", "verb", "kannt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["melja", "verb", "mel", "maldi", "maldr", "", "to pound"]) + let v = native_list_append(v, ["namt", "verb", "namt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["skildu", "verb", "skildu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skulum", "verb", "skulum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["tefla", "verb", "tefli", "tefldi", "tefldr", "", "to play at"]) + let v = native_list_append(v, ["brotin", "verb", "brotin", "", "", "", "inflection of brotinn"]) + let v = native_list_append(v, ["skeri", "verb", "skeri", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["saltanda", "verb", "saltanda", "", "", "", "inflection of saltandi"]) + let v = native_list_append(v, ["saltandi", "verb", "no-table-tags", "non-decl-cell", "saltanda", "", "present participle of"]) + let v = native_list_append(v, ["þyngja", "verb", "þyngi", "þyngdi", "þyngdr", "", "to weigh down"]) + let v = native_list_append(v, ["þvinga", "verb", "þvingaða", "þvingaðr", "þvingaðr", "", "to weigh down"]) + let v = native_list_append(v, ["hringa", "verb", "hringaða", "hringaðr", "hringaðr", "", "to furnish with"]) + let v = native_list_append(v, ["brent", "verb", "brent", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["ruku", "verb", "ruku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["undin", "verb", "undin", "", "", "", "inflection of undinn"]) + let v = native_list_append(v, ["halp", "verb", "halp", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["syngva", "verb", "syng", "sunginn", "sunginn", "", "to sing"]) + let v = native_list_append(v, ["orpin", "verb", "orpin", "", "", "", "inflection of orpinn"]) + let v = native_list_append(v, ["birgir", "verb", "birgir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["birgi", "verb", "birgi", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["birgja", "verb", "birgi", "birgðr", "birgðr", "", "to furnish supply"]) + let v = native_list_append(v, ["sof", "verb", "sof", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sœkja", "verb", "sœkja", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kunni", "verb", "kunni", "", "", "", "inflection of kunna"]) + let v = native_list_append(v, ["fleygja", "verb", "fleygi", "fleygðr", "fleygðr", "", "to fling make"]) + let v = native_list_append(v, ["eygja", "verb", "eygi", "eygðr", "eygðr", "", "to eye"]) + let v = native_list_append(v, ["sveigja", "verb", "sveigi", "sveigðr", "sveigðr", "", "to bow bend"]) + let v = native_list_append(v, ["teygja", "verb", "teygi", "teygðr", "teygðr", "", "to stretch out"]) + let v = native_list_append(v, ["stedda", "verb", "stedda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["yfirgefa", "verb", "yfirgef", "yfirgaf", "yfirgefinn", "", "to forsake abandon"]) + let v = native_list_append(v, ["alir", "verb", "alir", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["bitu", "verb", "bitu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["legin", "verb", "legin", "", "", "", "inflection of leginn"]) + let v = native_list_append(v, ["berið", "verb", "berið", "", "", "", "inflection of bera"]) + let v = native_list_append(v, ["berjum", "verb", "berjum", "", "", "", "inflection of berja"]) + let v = native_list_append(v, ["takið", "verb", "takið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["saltið", "verb", "saltið", "", "", "", "inflection of salta"]) + let v = native_list_append(v, ["farið", "verb", "farið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["sagði", "verb", "sagði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["reyndar", "verb", "reyndar", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["sver", "verb", "sver", "", "", "", "inflection of sverja"]) + let v = native_list_append(v, ["akim", "verb", "akim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["brá", "verb", "brá", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["byggð", "verb", "byggð", "", "", "", "inflection of byggðr"]) + let v = native_list_append(v, ["grúfa", "verb", "grúfa", "", "", "", "to grovel to"]) + let v = native_list_append(v, ["skafa", "verb", "skef", "skafinn", "skafinn", "", "to scrape with"]) + let v = native_list_append(v, ["sórt", "verb", "svarðir", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["sáinn", "verb", "sáinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dulda", "verb", "dulda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["urðum", "verb", "urðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["setim", "verb", "setim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["bundu", "verb", "bundu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["borum", "verb", "borum", "", "", "", "inflection of bora"]) + let v = native_list_append(v, ["stigu", "verb", "stigu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ýja", "verb", "ý", "úði", "úiðr", "", "to swarm teem"]) + let v = native_list_append(v, ["ausit", "verb", "ausit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["verpum", "verb", "verpum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["verpi", "verb", "verpi", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["skart", "verb", "skart", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["rétt", "verb", "rétt", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["leikr", "verb", "leikr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bið", "verb", "bið", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["brenda", "verb", "brenda", "", "", "", "inflection of brendr"]) + let v = native_list_append(v, ["erja", "verb", "er", "arðr", "arðr", "", "to plough"]) + let v = native_list_append(v, ["hvískra", "verb", "hvískraða", "hvískraðr", "hvískraðr", "", "to whisper"]) + let v = native_list_append(v, ["legg", "verb", "legg", "", "", "", "inflection of leggja"]) + let v = native_list_append(v, ["ómaka", "verb", "ómaka", "", "", "", "to worry"]) + let v = native_list_append(v, ["þora", "verb", "þori", "þorði", "þoraðr", "", "to dare have"]) + let v = native_list_append(v, ["varp", "verb", "varp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["efna", "verb", "efni", "efndr", "efndr", "", "to perform fulfil"]) + let v = native_list_append(v, ["rekna", "verb", "rekna", "", "", "", "inflection of rekinn"]) + let v = native_list_append(v, ["reknar", "verb", "reknar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["gerir", "verb", "gerir", "", "", "", "inflection of gera"]) + let v = native_list_append(v, ["borni", "verb", "borni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["tjarga", "verb", "tjargaða", "tjargaðr", "tjargaðr", "", "to tar"]) + let v = native_list_append(v, ["leikinn", "verb", "leikinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reynir", "verb", "reynir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["klekja", "verb", "klek", "klakti", "klaktr", "", "to hatch"]) + let v = native_list_append(v, ["sátt", "verb", "sátt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þrjóta", "verb", "þrýt", "þraut", "þrotinn", "", "to cause to"]) + let v = native_list_append(v, ["sýsla", "verb", "sýsli", "sýstr", "sýstr", "", ""]) + let v = native_list_append(v, ["flaug", "verb", "flaug", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hlera", "verb", "hløra", "", "", "", "to listen"]) + let v = native_list_append(v, ["sofið", "verb", "sofið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["sofi", "verb", "sofi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["svaf", "verb", "svaf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sváfum", "verb", "sváfum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["sváfu", "verb", "sváfu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["svæfi", "verb", "svæfi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["akið", "verb", "akið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["akir", "verb", "akir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ók", "verb", "ók", "", "", "", "inflection of aka"]) + let v = native_list_append(v, ["ókum", "verb", "ókum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["ókuð", "verb", "ókuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["óku", "verb", "óku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["takir", "verb", "takir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["græt", "verb", "græt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hress", "verb", "hress", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["fylgt", "verb", "fylgt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mikla", "verb", "miklaða", "miklaðr", "miklaðr", "", "to make great"]) + let v = native_list_append(v, ["smjúga", "verb", "smýg", "smoginn", "smoginn", "", "to creep through"]) + let v = native_list_append(v, ["kefja", "verb", "kef", "kafði", "kafðr", "", "alternative form of"]) + let v = native_list_append(v, ["krefja", "verb", "kref", "krafði", "krafðr", "", "to demand crave"]) + let v = native_list_append(v, ["glepja", "verb", "glep", "glapti", "glapiðr", "", "to confuse someone"]) + let v = native_list_append(v, ["hrekja", "verb", "hrek", "hrakti", "hrakiðr", "", "to drive away"]) + let v = native_list_append(v, ["mylja", "verb", "myl", "muldi", "muldr", "", "to crush to"]) + let v = native_list_append(v, ["bylja", "verb", "byl", "buldi", "buldr", "", "to resound roar"]) + let v = native_list_append(v, ["dylja", "verb", "dyl", "duldi", "duldr", "", "to hide to"]) + let v = native_list_append(v, ["synja", "verb", "synjaða", "synjaðr", "synjaðr", "", "to deny"]) + let v = native_list_append(v, ["lykja", "verb", "lyk", "lukti", "luktr", "", "to shut to"]) + let v = native_list_append(v, ["gnýja", "verb", "gný", "gnúði", "gnúiðr", "", "to roar"]) + let v = native_list_append(v, ["knýja", "verb", "kný", "knúði", "knúiðr", "", "to press"]) + let v = native_list_append(v, ["fyrtelja", "verb", "fyrtel", "fyrtalði", "fyrtalaðr", "", "to recount retell"]) + let v = native_list_append(v, ["fǿða", "verb", "fǿði", "fǿddi", "fǿddr", "", "to feed nourish"]) + let v = native_list_append(v, ["etja", "verb", "et", "attr", "attr", "", "to incite to"]) + let v = native_list_append(v, ["áðr", "verb", "áðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kveða", "verb", "kveð", "kvað", "kveðinn", "", "to say"]) + let v = native_list_append(v, ["hirða", "verb", "hirða", "", "", "", "to keep in"]) + let v = native_list_append(v, ["hafðr", "verb", "hafðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nadda", "verb", "nadda", "", "", "", "to stud to"]) + let v = native_list_append(v, ["spilla sifjum", "verb", "spilla sifjum", "", "", "", "to defile kinship"]) + let v = native_list_append(v, ["beitt", "verb", "beitt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["ǫðla", "verb", "ǫðla", "", "", "", "earn"]) + let v = native_list_append(v, ["takim", "verb", "takim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["gólt", "verb", "gólt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["jók", "verb", "jók", "", "", "", "first/third-person singular indicative"]) + let v = native_list_append(v, ["sáir", "verb", "sáir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skagi", "verb", "skagi", "", "", "", "inflection of skaga"]) + let v = native_list_append(v, ["yfirtaka", "verb", "yfirtek", "yfirtók", "yfirtekinn", "", "alternative form of"]) + let v = native_list_append(v, ["myndir", "verb", "myndir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["galinna", "verb", "galinna", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["gingu", "verb", "gingu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gangi", "verb", "gangi", "", "", "", "third-person singular/plural subjunctive"]) + let v = native_list_append(v, ["gingið", "verb", "gingið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["gangandi", "verb", "gangandi", "", "", "", "present participle of"]) + let v = native_list_append(v, ["gangið", "verb", "gangið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["brenn", "verb", "brenn", "", "", "", "inflection of brenna"]) + let v = native_list_append(v, ["spár", "verb", "spár", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["setr", "verb", "sætr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["semdi", "verb", "semdi", "", "", "", "third-person active past"]) + let v = native_list_append(v, ["varpi", "verb", "varpi", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["selim", "verb", "selim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ganga af", "verb", "ganga af", "", "", "", "to go off"]) + let v = native_list_append(v, ["ganga aptr", "verb", "ganga aptr", "", "", "", "to revert return"]) + let v = native_list_append(v, ["ganga at", "verb", "ganga at", "", "", "", "to attack someone"]) + let v = native_list_append(v, ["ganga á", "verb", "ganga á", "", "", "", "to go or"]) + let v = native_list_append(v, ["telir", "verb", "telir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skeptisk", "verb", "skœpisk", "", "", "", "weak second-person singular"]) + let v = native_list_append(v, ["hvarf", "verb", "hvarf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["kvel", "verb", "kvel", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["drukna", "verb", "druknaða", "druknaðr", "druknaðr", "", "to drown"]) + let v = native_list_append(v, ["þykkja", "verb", "þykk", "þóttr", "þóttr", "", "to be thought"]) + let v = native_list_append(v, ["viða", "verb", "viða", "", "", "", "to furnish wood"]) + let v = native_list_append(v, ["þorna", "verb", "þornaða", "þornaðr", "þornaðr", "", "to become dry"]) + let v = native_list_append(v, ["sýja", "verb", "sý", "séðr", "séðr", "", "to sew"]) + let v = native_list_append(v, ["berjandi", "verb", "no-table-tags", "non-decl-cell", "berjanda", "", "present participle of"]) + let v = native_list_append(v, ["sló", "verb", "sló", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["slógu", "verb", "slógu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["taldi", "verb", "taldi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["fingu", "verb", "fingu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vitum", "verb", "vitum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["stignu", "verb", "stignu", "", "", "", "inflection of stiginn"]) + let v = native_list_append(v, ["stigna", "verb", "stigna", "", "", "", "inflection of stiginn"]) + let v = native_list_append(v, ["stigni", "verb", "stigni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["ullu", "verb", "ullu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["beðinn", "verb", "beðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mátta", "verb", "mátta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["morgna", "verb", "no-table-tags", "non-conj-weak2", "morgnaðr", "", "to dawn become"]) + let v = native_list_append(v, ["hlutum", "verb", "hlutum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["brunni", "verb", "brunni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["brunnum", "verb", "brunnum", "", "", "", "inflection of brunninn"]) + let v = native_list_append(v, ["greinum", "verb", "greinum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["belgja", "verb", "belgi", "belgðr", "belgðr", "", "to inflate puff"]) + let v = native_list_append(v, ["skildr", "verb", "skiliðr", "skilinn", "", "", "past participle of"]) + let v = native_list_append(v, ["gjóta", "verb", "gýt", "gaut", "gotinn", "", "to pour"]) + let v = native_list_append(v, ["rói", "verb", "rói", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["greint", "verb", "greint", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["blandit", "verb", "blandit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["farni", "verb", "farni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["loginn", "verb", "loginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["byggi", "verb", "byggi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["orðin", "verb", "orðin", "", "", "", "inflection of orðinn"]) + let v = native_list_append(v, ["mant", "verb", "mant", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["rauk", "verb", "rauk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["rifja", "verb", "rifja", "", "", "", "to turn hay"]) + let v = native_list_append(v, ["suguð", "verb", "suguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["sugum", "verb", "sugum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["sýg", "verb", "sýg", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sygi", "verb", "sygi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["sygir", "verb", "sygir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["lypta", "verb", "lypti", "lypti", "lyptr", "", "to lift raise"]) + let v = native_list_append(v, ["væna", "verb", "væni", "vændi", "vændr", "", "to give hope"]) + let v = native_list_append(v, ["genga", "verb", "genga", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["væria", "verb", "vær", "varði", "varðr", "", "alternative form of"]) + let v = native_list_append(v, ["skæra", "verb", "skæra", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sungu", "verb", "sungu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["traðka", "verb", "traðka", "", "", "", "to tread on"]) + let v = native_list_append(v, ["ginga", "verb", "ginga", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sumin", "verb", "sumin", "", "", "", "inflection of suminn"]) + let v = native_list_append(v, ["skyta", "verb", "skyta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["draup", "verb", "draup", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["unn", "verb", "unn", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fauk", "verb", "fauk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["væn", "verb", "væn", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["bæri", "verb", "bæri", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["dult", "verb", "dult", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sæta", "verb", "sæti", "sætti", "sættr", "", "to sit in"]) + let v = native_list_append(v, ["strauk", "verb", "strauk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["saup", "verb", "saup", "", "", "", "inflection of súpa"]) + let v = native_list_append(v, ["kranga", "verb", "kranga", "", "", "", "to creep along"]) + let v = native_list_append(v, ["tekit", "verb", "tekit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["brannt", "verb", "brant", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["sadda", "verb", "sadda", "", "", "", "inflection of saddr"]) + let v = native_list_append(v, ["settr", "verb", "settr", "", "", "", "placed situated"]) + let v = native_list_append(v, ["spyrið", "verb", "spyrið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["druknar", "verb", "druknar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["smaug", "verb", "smó", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["fǿra", "verb", "fǿri", "fǿrðr", "fǿrðr", "", "to bring convey"]) + let v = native_list_append(v, ["týja", "verb", "týr", "týði", "týt", "", "to avail"]) + let v = native_list_append(v, ["lakt", "verb", "lakt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["kraup", "verb", "kraup", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["selda", "verb", "selda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["braka", "verb", "braka", "", "", "", "to creak crack"]) + let v = native_list_append(v, ["ᚱᛅᛁᛋᛅ", "verb", "raisa", "ᚱᛅᛁᛋᛏᛁ", "ᚱᛋᛏᛁ", "", "Runic spelling of"]) + let v = native_list_append(v, ["ᚱᛁᛋᛏᛅ", "verb", "rista", "ᚱᛁᛋᛏᛁ", "ᚱᛁᛋᛏᚢ", "", "Runic spelling of"]) + let v = native_list_append(v, ["eisa", "verb", "eisa", "", "", "", "to dash forward"]) + let v = native_list_append(v, ["gullu", "verb", "gullu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hlǿða", "verb", "hlǿði", "hlǿddr", "hlǿddr", "", "to lade"]) + let v = native_list_append(v, ["hløra", "verb", "hlera", "", "", "", "to listen"]) + let v = native_list_append(v, ["sveipr", "verb", "sveipr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["jafni", "verb", "jafni", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["gengi", "verb", "gengi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["gerum", "verb", "gerum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["dyl", "verb", "dyl", "", "", "", "inflection of dylja"]) + let v = native_list_append(v, ["sviðna", "verb", "sviðna", "", "", "", "to be singed"]) + let v = native_list_append(v, ["fallin", "verb", "fallin", "", "", "", "inflection of fallinn"]) + let v = native_list_append(v, ["mølva", "verb", "mølda", "", "", "", "to crush pound"]) + let v = native_list_append(v, ["dyli", "verb", "dyli", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["stadda", "verb", "stadda", "", "", "", "inflection of staddr"]) + let v = native_list_append(v, ["vegir", "verb", "vegir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["víða", "verb", "víði", "víddr", "víddr", "", "to widen"]) + let v = native_list_append(v, ["lægja", "verb", "lægi", "lægðr", "lægðr", "", "to lower let"]) + let v = native_list_append(v, ["þrái", "verb", "þrái", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["þrunginn", "verb", "þrunginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["meini", "verb", "meini", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["tjalda", "verb", "tjaldaða", "tjaldaðr", "tjaldaðr", "", "to pitch a"]) + let v = native_list_append(v, ["orðit", "verb", "orðit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sǫng", "verb", "sǫng", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["dýja", "verb", "dý", "dúiðr", "dúiðr", "", "to shake"]) + let v = native_list_append(v, ["skrækja", "verb", "skrækja", "", "", "", "to screech shriek"]) + let v = native_list_append(v, ["vápna", "verb", "vápnaða", "vápnaðr", "vápnaðr", "", "to arm weapons"]) + let v = native_list_append(v, ["bytna", "verb", "bytna", "", "", "", "to come to"]) + let v = native_list_append(v, ["tíðir", "verb", "tíðir", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["vríða", "verb", "ríða", "", "", "", "to weave to"]) + let v = native_list_append(v, ["byrgja", "verb", "byrgi", "byrgði", "byrgðr", "", "to close shut"]) + let v = native_list_append(v, ["gnýr", "verb", "gnýr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["seldum", "verb", "seldum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["herðr", "verb", "herðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["búandi", "verb", "no-table-tags", "non-decl-cell", "búanda", "", "present participle of"]) + let v = native_list_append(v, ["elskandi", "verb", "elskandi", "", "", "", "present participle of"]) + let v = native_list_append(v, ["dríta", "verb", "drít", "dreit", "dritit", "", "to shit"]) + let v = native_list_append(v, ["lifnaðr", "verb", "lifnaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fœra", "verb", "fœri", "fœrðr", "fœrðr", "", "alternative spelling of"]) + let v = native_list_append(v, ["sakaðr", "verb", "sakaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["drótt", "verb", "drótt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["dróttna", "verb", "dróttnaða", "dróttnaði", "dróttnaðr", "", "to rule to"]) + let v = native_list_append(v, ["svima", "verb", "svim", "svam", "suminn", "", "to swim"]) + let v = native_list_append(v, ["hrygð", "verb", "hrygð", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["byggva", "verb", "byggvi", "byggðr", "byggðr", "", "older form of"]) + let v = native_list_append(v, ["hryggva", "verb", "hryggvi", "hrygðr", "hrygðr", "", "to distress to"]) + let v = native_list_append(v, ["dengja", "verb", "dengi", "dengðr", "dengðr", "", "to beat to"]) + let v = native_list_append(v, ["bǫlva", "verb", "bǫlvaða", "bǫlvaði", "bǫlvaðr", "", "to curse"]) + let v = native_list_append(v, ["þreyja", "verb", "þrey", "þráðr", "þráðr", "", "to feel for"]) + let v = native_list_append(v, ["klá", "verb", "klæ", "kló", "kleginn", "", "to claw scratch"]) + let v = native_list_append(v, ["geyja", "verb", "gey", "gó", "gáinn", "", "to bark"]) + let v = native_list_append(v, ["blóta", "verb", "blǿt", "blét", "blótinn", "", "to worship with"]) + let v = native_list_append(v, ["gnúa", "verb", "gnúa", "", "", "", "to rub"]) + let v = native_list_append(v, ["sumra", "verb", "no-table-tags", "non-conj-weak2", "sumraðr", "", "to become summer"]) + let v = native_list_append(v, ["dǫgg", "verb", "dag", "dagh", "dagg", "", "second-person singular imperative"]) + let v = native_list_append(v, ["sǫðla", "verb", "sǫðlaða", "sǫðlaði", "sǫðlaðr", "", "to saddle"]) + let v = native_list_append(v, ["birkja", "verb", "birki", "birkti", "birktr", "", "to bark to"]) + let v = native_list_append(v, ["gyrða", "verb", "gyrði", "gyrðr", "gyrðr", "", "to gird"]) + let v = native_list_append(v, ["gerða", "verb", "gerða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["dœma", "verb", "dœmi", "dœmdr", "dœmdr", "", "alternative spelling of"]) + let v = native_list_append(v, ["eygðr", "verb", "eygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lǫgum", "verb", "lǫgum", "", "", "", "inflection of laga"]) + let v = native_list_append(v, ["stǫðva", "verb", "stǫðvaða", "stǫðvaðr", "stǫðvaðr", "", "to stop"]) + let v = native_list_append(v, ["stǫðum", "verb", "stǫðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["stǫðvar", "verb", "stǫðvar", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["staðinn", "verb", "staðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gǫfga", "verb", "gǫfgaða", "gǫfgaðr", "gǫfgaðr", "", "to worship"]) + let v = native_list_append(v, ["fylkja", "verb", "fylki", "fylktr", "fylktr", "", "to draw up"]) + let v = native_list_append(v, ["fylkjum", "verb", "fylkjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["haldi", "verb", "haldi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["hefi", "verb", "hefi", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["hryðja", "verb", "hryð", "hruddi", "hruddr", "", "synonym of ryðja"]) + let v = native_list_append(v, ["leyfum", "verb", "leyfum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sylla", "verb", "sylla", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["velti", "verb", "velti", "", "", "", "inflection of velta"]) + let v = native_list_append(v, ["tyggva", "verb", "tygg", "tǫgg", "togginn", "", "to chew"]) + let v = native_list_append(v, ["hrjóða", "verb", "hrýð", "hrauð", "hroðinn", "", "to unload"]) + let v = native_list_append(v, ["fjúka", "verb", "fýk", "fauk", "fokinn", "", "to be drifted"]) + let v = native_list_append(v, ["rjóða", "verb", "rýð", "rauð", "roðinn", "", "to redden"]) + let v = native_list_append(v, ["fyrirbjóða", "verb", "fyrirbýð", "fyrirbauð", "fyrirboðinn", "", "to forbid"]) + let v = native_list_append(v, ["hnjóða", "verb", "hnýð", "hnauð", "hnoðinn", "", "to rivet clinch"]) + let v = native_list_append(v, ["hníta", "verb", "hnít", "hneit", "hnitinn", "", "to strike wound"]) + let v = native_list_append(v, ["hnita", "verb", "hnitaða", "hnitaðr", "hnitaðr", "", "to weld together"]) + let v = native_list_append(v, ["rísta", "verb", "ríst", "reist", "ristinn", "", "to cut slash"]) + let v = native_list_append(v, ["sauð", "verb", "sauð", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["kná", "verb", "knátta", "knátta", "", "", "can could"]) + let v = native_list_append(v, ["seljum", "verb", "seljum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["selr", "verb", "selr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["þiðna", "verb", "þiðnaða", "þiðnaðr", "þiðnaðr", "", "to thaw melt"]) + let v = native_list_append(v, ["smá", "verb", "smáða", "smáðr", "smáðr", "", "to scorn slight"]) + let v = native_list_append(v, ["norrœna", "verb", "norrœnaða", "norrœnaðr", "norrœnaðr", "", "to render into"]) + let v = native_list_append(v, ["norrœnum", "verb", "norrœnum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["dytta", "verb", "dytta", "", "", "", "to block close"]) + let v = native_list_append(v, ["þurka", "verb", "þurkaða", "þurkaðr", "þurkaðr", "", "to dry make"]) + let v = native_list_append(v, ["þerrir", "verb", "þerrir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["ýskja", "verb", "ýski", "ýskti", "ýsktr", "", "to wish"]) + let v = native_list_append(v, ["rétti", "verb", "rétti", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["réttir", "verb", "réttir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["réttum", "verb", "réttum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["réttu", "verb", "réttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["rézk", "verb", "rézk", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þerri", "verb", "þerri", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["þerrum", "verb", "þerrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["þurkum", "verb", "þurkum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["telr", "verb", "telr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["telið", "verb", "telið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["telim", "verb", "telim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["teljum", "verb", "teljum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["taldir", "verb", "taldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["telsk", "verb", "telsk", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["telizk", "verb", "telizk", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["teljumk", "verb", "teljumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["teljumsk", "verb", "teljumsk", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["teljask", "verb", "teljask", "", "", "", "mediopassive infinitive of"]) + let v = native_list_append(v, ["telisk", "verb", "telisk", "", "", "", "second-person singular and"]) + let v = native_list_append(v, ["teldisk", "verb", "teldisk", "", "", "", "second-person singular and"]) + let v = native_list_append(v, ["teldizk", "verb", "teldizk", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["telimsk", "verb", "telimsk", "", "", "", "first-person plural mediopassive"]) + let v = native_list_append(v, ["teldimsk", "verb", "teldimsk", "", "", "", "first-person plural mediopassive"]) + let v = native_list_append(v, ["teldumk", "verb", "teldumk", "", "", "", "first-person singular mediopassive"]) + let v = native_list_append(v, ["tǫldu", "verb", "tǫldu", "", "", "", "third-person plural active"]) + let v = native_list_append(v, ["tǫlduð", "verb", "tǫlduð", "", "", "", "second-person plural active"]) + let v = native_list_append(v, ["tǫldum", "verb", "tǫldum", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["tǫldumk", "verb", "tǫldumk", "", "", "", "first-person singular mediopassive"]) + let v = native_list_append(v, ["tǫldumsk", "verb", "tǫldumsk", "", "", "", "first-person plural mediopassive"]) + let v = native_list_append(v, ["tǫlduzk", "verb", "tǫlduzk", "", "", "", "second-person plural mediopassive"]) + let v = native_list_append(v, ["tǫldusk", "verb", "tǫldusk", "", "", "", "third-person plural mediopassive"]) + let v = native_list_append(v, ["taldisk", "verb", "taldisk", "", "", "", "second/third-person singular mediopassive"]) + let v = native_list_append(v, ["teldir", "verb", "teldir", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["teldi", "verb", "teldi", "", "", "", "third-person active past"]) + let v = native_list_append(v, ["teldim", "verb", "teldim", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["teldið", "verb", "teldið", "", "", "", "second-person plural active"]) + let v = native_list_append(v, ["kǫstum", "verb", "kǫstum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kastið", "verb", "kastið", "", "", "", "second-person plural active"]) + let v = native_list_append(v, ["kastir", "verb", "kastir", "", "", "", "second/third-person singular active"]) + let v = native_list_append(v, ["kastim", "verb", "kastim", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["kastaða", "verb", "kastaða", "", "", "", "inflection of kastaðr"]) + let v = native_list_append(v, ["kastaðir", "verb", "kastaðir", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["kǫstuðu", "verb", "kǫstuðu", "", "", "", "inflection of kastaðr"]) + let v = native_list_append(v, ["kǫstuðuð", "verb", "kǫstuðuð", "", "", "", "second-person plural active"]) + let v = native_list_append(v, ["kǫstuðum", "verb", "kǫstuðum", "", "", "", "inflection of kastaðr"]) + let v = native_list_append(v, ["kǫstumk", "verb", "kǫstumk", "", "", "", "first-person singular mediopassive"]) + let v = native_list_append(v, ["kastizk", "verb", "kastizk", "", "", "", "second-person plural mediopassive"]) + let v = native_list_append(v, ["dǫggva", "verb", "dǫggvi", "dǫgðr", "dǫgðr", "", "to bedew"]) + let v = native_list_append(v, ["dǫggvar", "verb", "dǫggvar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["dǫggvir", "verb", "dǫggvir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["dǫggum", "verb", "dǫggum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["dǫggvi", "verb", "dǫggvi", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["dǫgðu", "verb", "dǫgðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["dǫgði", "verb", "dǫgði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["fleipa", "verb", "fleipaða", "fleipaðr", "fleipaðr", "", "to babble tattle"]) + let v = native_list_append(v, ["fleipra", "verb", "fleipraða", "fleipraðr", "fleipraðr", "", "to babble tattle"]) + let v = native_list_append(v, ["þéna", "verb", "þéni", "þéntr", "þéntr", "", "to serve"]) + let v = native_list_append(v, ["þjónka", "verb", "þjónkaða", "þjónkaðr", "þjónkaðr", "", "alternative form of"]) + let v = native_list_append(v, ["þíðna", "verb", "þíðnaða", "þíðnaðr", "þíðnaðr", "", "to thaw melt"]) + let v = native_list_append(v, ["þarfa", "verb", "no-table-tags", "non-conj-weak2", "þarfaðr", "", "to cause to"]) + let v = native_list_append(v, ["þarfna", "verb", "þarfnaða", "þarfnaðr", "þarfnaðr", "", "to be needful"]) + let v = native_list_append(v, ["œxla", "verb", "œxli", "œxtr", "œxtr", "", "to cause to"]) + let v = native_list_append(v, ["tvífalda", "verb", "tvífaldaða", "tvífaldaðr", "tvífaldaðr", "", "to double make"]) + let v = native_list_append(v, ["vaki", "verb", "vaki", "", "", "", "inflection of vaka"]) + let v = native_list_append(v, ["reynd", "verb", "reynd", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["dáinna", "verb", "dáinna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kelfa", "verb", "kelfi", "kelfir", "keldr", "", "to calve"]) + let v = native_list_append(v, ["þukla", "verb", "þuklaða", "þuklaðr", "þuklaðr", "", "to feel touch"]) + let v = native_list_append(v, ["trumba", "verb", "trumbaða", "trumbaðr", "trumbaðr", "", "to trumpet"]) + let v = native_list_append(v, ["fenga", "verb", "fenga", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["ræisa", "verb", "ræisa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vǫkna", "verb", "vǫknaða", "vǫknaðr", "vǫknaðr", "", "to become wet"]) + let v = native_list_append(v, ["vǫkva", "verb", "vǫkvaða", "vǫkvaðr", "vǫkvaðr", "", "to moisten water"]) + let v = native_list_append(v, ["yfirvinna", "verb", "yfirvinn", "yfirvann", "yfirunninn", "", "to vanquish overcome"]) + let v = native_list_append(v, ["yfirkoma", "verb", "yfirkem", "yfirkom", "yfirkominn", "", "overcome"]) + let v = native_list_append(v, ["skyti", "verb", "skyti", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["ǫðlask", "verb", "óðlask", "", "", "", "to gain possession"]) + let v = native_list_append(v, ["liggi", "verb", "liggi", "", "", "", "present third-person plural"]) + let v = native_list_append(v, ["eigir", "verb", "eigir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["bœn", "verb", "no-table-tags", "non-decl-f-i", "bœnin", "", "alternative spelling of"]) + let v = native_list_append(v, ["vegim", "verb", "vegim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["klauf", "verb", "klauf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["vindi", "verb", "vindi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["þefja", "verb", "þefjaða", "þefjaði", "þefjaðr", "", "to smell to"]) + let v = native_list_append(v, ["svikinn", "verb", "svikin", "svikit", "", "", "past participle of"]) + let v = native_list_append(v, ["sveip", "verb", "sveip", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["togna", "verb", "tognaða", "tognaðr", "tognaðr", "", "to be stretched"]) + let v = native_list_append(v, ["lýja", "verb", "lý", "lúði", "lúinn", "", "to beat hammer"]) + let v = native_list_append(v, ["strita", "verb", "stritaða", "stritaðr", "stritaðr", "", "to drag with"]) + let v = native_list_append(v, ["laginn", "verb", "lagðr", "lagiðr", "", "", "past participle of"]) + let v = native_list_append(v, ["svalg", "verb", "svalg", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["elr", "verb", "elr", "", "", "", "second/third-person singular active"]) + let v = native_list_append(v, ["bjó", "verb", "bjó", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["lekum", "verb", "lekum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["bauð", "verb", "bauð", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["bjuggu", "verb", "bjuggu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["rera", "verb", "rera", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["geti", "verb", "geti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["maðka", "verb", "maðkaða", "maðkaðr", "maðkaðr", "", "to become maggoty"]) + let v = native_list_append(v, ["kvánga", "verb", "kvángaða", "kvángaðr", "kvángaðr", "", "to make a"]) + let v = native_list_append(v, ["kvikna", "verb", "kviknaða", "kviknaðr", "kviknaðr", "", "to quicken come"]) + let v = native_list_append(v, ["seldr", "verb", "seldr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sénn", "verb", "sénn", "", "", "", "seen past participle"]) + let v = native_list_append(v, ["skaga", "verb", "skagi", "skagaðr", "skagaðr", "", "to jut out"]) + let v = native_list_append(v, ["borit", "verb", "borit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["gó", "verb", "gó", "", "", "", "inflection of geyja"]) + let v = native_list_append(v, ["blandin", "verb", "blandin", "", "", "", "inflection of blandinn"]) + let v = native_list_append(v, ["semir", "verb", "semir", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["skutu", "verb", "skutu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["létu", "verb", "létu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["samdan", "verb", "samdan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["blás", "verb", "blás", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["stendr", "verb", "stendr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["stótt", "verb", "stótt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["stǫndum", "verb", "stǫndum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["standið", "verb", "standið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["standim", "verb", "standim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["stóðu", "verb", "stóðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["stóðuð", "verb", "stóðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["stóðum", "verb", "stóðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["stǿða", "verb", "stǿða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["stœði", "verb", "stœði", "", "", "", "third-person past active"]) + let v = native_list_append(v, ["stœðir", "verb", "stœðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["stœðið", "verb", "stœðið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["stœðim", "verb", "stœðim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["syngr", "verb", "syngr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["syngum", "verb", "syngum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["syngvið", "verb", "syngvið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["syngvi", "verb", "syngvi", "", "", "", "third-person present active"]) + let v = native_list_append(v, ["sunguð", "verb", "sunguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["sungum", "verb", "sungum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["syngið", "verb", "syngið", "", "", "", "inflection of syngja"]) + let v = native_list_append(v, ["syngi", "verb", "syngi", "", "", "", "third-person past/present active"]) + let v = native_list_append(v, ["syngim", "verb", "syngim", "", "", "", "first-person plural past/present"]) + let v = native_list_append(v, ["syngvim", "verb", "syngvim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["syngvir", "verb", "syngvir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["syngir", "verb", "syngir", "", "", "", "second-person singular past/present"]) + let v = native_list_append(v, ["sýgr", "verb", "sýgr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["súgum", "verb", "súgum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["syga", "verb", "syga", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["sygim", "verb", "sygim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["sygið", "verb", "sygið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["súgið", "verb", "súgið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["súgi", "verb", "súgi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["súgim", "verb", "súgim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["súgir", "verb", "súgir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["brýt", "verb", "brýt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["brjót", "verb", "brjót", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["væri", "verb", "væri", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["værið", "verb", "værið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["værim", "verb", "værim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["værir", "verb", "værir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["sém", "verb", "sém", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sjám", "verb", "sjám", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sjóm", "verb", "sjóm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["serim", "verb", "serim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["sørum", "verb", "sørum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["sáið", "verb", "sáið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["rœ", "verb", "rœ", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rœr", "verb", "rœr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["røri", "verb", "røri", "", "", "", "inflection of róa"]) + let v = native_list_append(v, ["gengr", "verb", "gengr", "", "", "", "second/third-person present indicative"]) + let v = native_list_append(v, ["gingi", "verb", "gingi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["gǫngum", "verb", "gǫngum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["gengum", "verb", "gengum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["gengu", "verb", "gengu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["genguð", "verb", "genguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["bindr", "verb", "bindr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["tíunda", "verb", "tíundaða", "tíundaðr", "tíundaðr", "", "to pay tithes"]) + let v = native_list_append(v, ["hvílir", "verb", "hvílir", "", "", "", "inflection of hvíla"]) + let v = native_list_append(v, ["fóruð", "verb", "fóruð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["innti", "verb", "innti", "", "", "", "inflection of inna"]) + let v = native_list_append(v, ["ylli", "verb", "ylli", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["frævi", "verb", "frævi", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["gilja", "verb", "gilja", "", "", "", "to seduce beguile"]) + let v = native_list_append(v, ["kǿfa", "verb", "kvæfa", "", "", "", "to choke"]) + let v = native_list_append(v, ["bazk", "verb", "bazk", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["bizk", "verb", "bizk", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["valzk", "verb", "valzk", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["velzk", "verb", "velzk", "", "", "", "inflection of valda"]) + let v = native_list_append(v, ["ollum", "verb", "ollum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["lǫngum", "verb", "lǫngum", "", "", "", "inflection of langa"]) + let v = native_list_append(v, ["langir", "verb", "langir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hreini", "verb", "hreini", "", "", "", "inflection of hreina"]) + let v = native_list_append(v, ["hrein", "verb", "hrein", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["hreint", "verb", "hreint", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hreina", "verb", "hreini", "hreindr", "hreindr", "", "to make swine"]) + let v = native_list_append(v, ["hreinum", "verb", "hreinum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hreinir", "verb", "hreinir", "", "", "", "inflection of hreina"]) + let v = native_list_append(v, ["vænum", "verb", "vænum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["vænir", "verb", "vænir", "", "", "", "inflection of væna"]) + let v = native_list_append(v, ["væni", "verb", "væni", "", "", "", "inflection of væna"]) + let v = native_list_append(v, ["fegrum", "verb", "fegrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fegri", "verb", "fegri", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["þrǫng", "verb", "þrǫng", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["þrǫngt", "verb", "þrǫngt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["jǫfnum", "verb", "jǫfnum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["jafnir", "verb", "jafnir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["jafnar", "verb", "jafnar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hverfr", "verb", "hverfr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hverf", "verb", "hverf", "", "", "", "inflection of hverfa"]) + let v = native_list_append(v, ["hverfum", "verb", "hverfum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hverfir", "verb", "hverfir", "", "", "", "inflection of hverfa"]) + let v = native_list_append(v, ["hverft", "verb", "hverft", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hvessa", "verb", "hvessi", "hvestr", "hvestr", "", "sharpen"]) + let v = native_list_append(v, ["hvíldr", "verb", "hvíldr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hvíldar", "verb", "hvíldar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["hvílt", "verb", "hvílt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hvílum", "verb", "hvílum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hvílið", "verb", "hvílið", "", "", "", "inflection of hvíla"]) + let v = native_list_append(v, ["hvílim", "verb", "hvílim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hvílda", "verb", "hvílda", "", "", "", "inflection of hvíldr"]) + let v = native_list_append(v, ["hvíldum", "verb", "hvíldum", "", "", "", "inflection of hvíldr"]) + let v = native_list_append(v, ["hvílduð", "verb", "hvílduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hvíldu", "verb", "hvíldu", "", "", "", "inflection of hvíldr"]) + let v = native_list_append(v, ["hvíldir", "verb", "hvíldir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["hvíldi", "verb", "hvíldi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["hvíldan", "verb", "hvíldan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hvílds", "verb", "hvílds", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["hvíldra", "verb", "hvíldra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["hvíldri", "verb", "hvíldri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["hvíldrar", "verb", "hvíldrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["hvíli", "verb", "hvíli", "", "", "", "inflection of hvíla"]) + let v = native_list_append(v, ["hvíldim", "verb", "hvíldim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hvíldið", "verb", "hvíldið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hvíl", "verb", "hvíl", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["þryngva", "verb", "þryng", "þrǫng", "þrunginn", "", "to press thrust"]) + let v = native_list_append(v, ["þrøngva", "verb", "þrøngvi", "þrøngðr", "þrøngðr", "", "to press"]) + let v = native_list_append(v, ["þrøngð", "verb", "þrøngð", "", "", "", "inflection of þrøngva"]) + let v = native_list_append(v, ["þrøngðr", "verb", "þrøngðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þrøngt", "verb", "þrøngt", "", "", "", "inflection of þrøngva"]) + let v = native_list_append(v, ["þrøng", "verb", "þrøng", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["kennandi", "verb", "no-table-tags", "non-decl-cell", "kennanda", "", "present participle of"]) + let v = native_list_append(v, ["kennanda", "verb", "kennanda", "", "", "", "inflection of kenna"]) + let v = native_list_append(v, ["kennǫndum", "verb", "kennǫndum", "", "", "", "present participle dative"]) + let v = native_list_append(v, ["leikum", "verb", "leikum", "", "", "", "inflection of leika"]) + let v = native_list_append(v, ["leikandi", "verb", "no-table-tags", "non-decl-cell", "leikanda", "", "present participle of"]) + let v = native_list_append(v, ["hressa", "verb", "hressi", "hrestr", "hrestr", "", "to refresh cheer"]) + let v = native_list_append(v, ["kyrra", "verb", "kyrri", "kyrðr", "kyrðr", "", "to calm still"]) + let v = native_list_append(v, ["vítt", "verb", "vítt", "", "", "", "inflection of víða"]) + let v = native_list_append(v, ["vísi", "verb", "vísi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["vísir", "verb", "vísir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["lekr", "verb", "lekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["skjalfa", "verb", "skelf", "skalf", "skolfinn", "", "shiver shake quiver"]) + let v = native_list_append(v, ["hittr", "verb", "hittr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["unninn", "verb", "unninn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spunninn", "verb", "spunninn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spunnum", "verb", "spunnum", "", "", "", "inflection of spunninn"]) + let v = native_list_append(v, ["spunnu", "verb", "spunnu", "", "", "", "inflection of spunninn"]) + let v = native_list_append(v, ["suminn", "verb", "suminn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sviminn", "verb", "sviminn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["svimit", "verb", "svimit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["kroppinn", "verb", "kroppinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kretta", "verb", "krett", "kratt", "krottinn", "", "to murmur complain"]) + let v = native_list_append(v, ["undinn", "verb", "undinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["soginn", "verb", "soginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kropinn", "verb", "kropinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["krjúpandi", "verb", "no-table-tags", "non-decl-cell", "krjúpanda", "", "present participle of"]) + let v = native_list_append(v, ["gefinn", "verb", "gefinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["leginn", "verb", "leginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þeginn", "verb", "þeginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tekinn", "verb", "tekinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["folginn", "verb", "folginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ofinn", "verb", "ofinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["brugðinn", "verb", "brugðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["troðinn", "verb", "troðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sofinn", "verb", "sofinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["numinn", "verb", "numinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["stolinn", "verb", "stolinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skorinn", "verb", "skorinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["orpinn", "verb", "orpinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["horfinn", "verb", "horfinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["solginn", "verb", "solginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sollinn", "verb", "sollinn", "", "", "", "swollen"]) + let v = native_list_append(v, ["soltinn", "verb", "soltinn", "", "", "", "dead"]) + let v = native_list_append(v, ["þorrinn", "verb", "þorrinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sunginn", "verb", "sunginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bitinn", "verb", "bitinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["eignaðr", "verb", "eignaðr", "", "", "", "having possessions or"]) + let v = native_list_append(v, ["blandinn", "verb", "blandinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fenginn", "verb", "finginn", "", "", "", "fitted"]) + let v = native_list_append(v, ["finginn", "verb", "fenginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["genginn", "verb", "ginginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ginginn", "verb", "genginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hanginn", "verb", "hanginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fallinn", "verb", "fallinn", "", "", "", "fallen past participle"]) + let v = native_list_append(v, ["faldinn", "verb", "faldinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aukinn", "verb", "aukinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ausinn", "verb", "ausinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hǫggvinn", "verb", "hǫggvinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["búit", "verb", "búit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hlaupinn", "verb", "hlaupinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grátinn", "verb", "grátinn", "", "", "", "tearful"]) + let v = native_list_append(v, ["blásinn", "verb", "blásinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ráðinn", "verb", "ráðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["blótinn", "verb", "blótinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["borginn", "verb", "borginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bundinn", "verb", "bundinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sjándi", "verb", "no-table-tags", "non-decl-cell", "sjánda", "", "present participle of"]) + let v = native_list_append(v, ["brunninn", "verb", "brunninn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fundinn", "verb", "fundinn", "", "", "", "found past participle"]) + let v = native_list_append(v, ["fáðr", "verb", "fáðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fœrðr", "verb", "fœrðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["eyddr", "verb", "eyddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fluttr", "verb", "fluttr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["spáðr", "verb", "spáðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sendr", "verb", "sendr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["varðr", "verb", "varðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["knýttr", "verb", "knýttr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kastaðr", "verb", "kastaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dœmdr", "verb", "dœmdr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bendr", "verb", "bendr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["œpa", "verb", "œpi", "œptr", "œptr", "", "alternative spelling of"]) + let v = native_list_append(v, ["beittr", "verb", "beittr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["beizla", "verb", "beizlaða", "beizlaðr", "beizlaðr", "", "to bridle"]) + let v = native_list_append(v, ["beiddr", "verb", "beitt", "", "", "", "unwilling reluctant"]) + let v = native_list_append(v, ["svíkva", "verb", "svík", "sveik", "svikinn", "", "to betray deceive"]) + let v = native_list_append(v, ["fylgir", "verb", "fylgir", "", "", "", "inflection of fylgja"]) + let v = native_list_append(v, ["áttr", "verb", "áttr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["áttum", "verb", "áttum", "", "", "", "inflection of áttr"]) + let v = native_list_append(v, ["áttir", "verb", "áttir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["trúm", "verb", "trúm", "", "", "", "inflection of trúa"]) + let v = native_list_append(v, ["trúaðr", "verb", "trúuð", "trúat", "", "", "past participle of"]) + let v = native_list_append(v, ["greindr", "verb", "greindr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grininn", "verb", "grininn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hvirfla", "verb", "hvirflaða", "hvirflaðr", "hvirflaðr", "", "to whirl spread"]) + let v = native_list_append(v, ["taufra", "verb", "taufraða", "taufraðr", "taufraðr", "", "to enchant"]) + let v = native_list_append(v, ["teyma", "verb", "teymi", "teymdr", "teymdr", "", "to lead by"]) + let v = native_list_append(v, ["afleggja", "verb", "aflegg", "aflagðr", "aflagðr", "", "to put aside"]) + let v = native_list_append(v, ["stígr", "verb", "stígr", "", "", "", "inflection of stíga"]) + let v = native_list_append(v, ["stiginn", "verb", "stigin", "stigit", "", "", "past participle of"]) + let v = native_list_append(v, ["stigin", "verb", "stigin", "", "", "", "inflection of stiginn"]) + let v = native_list_append(v, ["stignum", "verb", "stignum", "", "", "", "inflection of stiginn"]) + let v = native_list_append(v, ["stigins", "verb", "stigins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["stiginna", "verb", "stiginna", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["stiginnar", "verb", "stiginnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["stiginni", "verb", "stiginni", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["stignir", "verb", "stignir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["stignar", "verb", "stignar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["stéttar", "verb", "stéttar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["stigum", "verb", "stigum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["stígum", "verb", "stígum", "", "", "", "inflection of stíga"]) + let v = native_list_append(v, ["stiguð", "verb", "stiguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["stigim", "verb", "stigim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["stígim", "verb", "stígim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["stíg", "verb", "stíg", "", "", "", "inflection of stíga"]) + let v = native_list_append(v, ["stígi", "verb", "stígi", "", "", "", "third-person present subjunctive"]) + let v = native_list_append(v, ["stígið", "verb", "stígið", "", "", "", "inflection of stíga"]) + let v = native_list_append(v, ["stigið", "verb", "stigið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["steðja", "verb", "steð", "staddi", "staddr", "", "to stop"]) + let v = native_list_append(v, ["staddr", "verb", "stǫdd", "statt", "", "", "placed present"]) + let v = native_list_append(v, ["stǫdd", "verb", "stǫdd", "", "", "", "inflection of staddr"]) + let v = native_list_append(v, ["báðum", "verb", "báðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["saltaðr", "verb", "saltaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["seljandi", "verb", "no-table-tags", "non-decl-cell", "seljanda", "", "present participle of"]) + let v = native_list_append(v, ["semr", "verb", "semr", "", "", "", "second/third-person singular active"]) + let v = native_list_append(v, ["samdr", "verb", "samiðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["samiðr", "verb", "samið", "samit", "samdr", "", "past participle of"]) + let v = native_list_append(v, ["svarinn", "verb", "svarinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ǫlum", "verb", "ǫlum", "", "", "", "inflection of ala"]) + let v = native_list_append(v, ["ólum", "verb", "ólum", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["alinn", "verb", "alin", "alit", "", "", "past participle of"]) + let v = native_list_append(v, ["alnir", "verb", "alnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["brigða", "verb", "brigði", "brigði", "brigðr", "", "to try to"]) + let v = native_list_append(v, ["brigðr", "verb", "brigðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["brigði", "verb", "brigð", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["brigt", "verb", "brigt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["brigð", "verb", "brigði", "", "", "", "inflection of brigðr"]) + let v = native_list_append(v, ["frjós", "verb", "frjós", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["frjóva", "verb", "frjóvaða", "frjóvaðr", "frjóvaðr", "", "to fertilize"]) + let v = native_list_append(v, ["sendum", "verb", "sendum", "", "", "", "inflection of sendr"]) + let v = native_list_append(v, ["sendir", "verb", "sendir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["sendið", "verb", "sendið", "", "", "", "inflection of senda"]) + let v = native_list_append(v, ["skorit", "verb", "skorit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sogit", "verb", "sogit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["borgin", "verb", "borgin", "", "", "", "inflection of borginn"]) + let v = native_list_append(v, ["borginni", "verb", "borginni", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["folgit", "verb", "folgit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["blásit", "verb", "blásit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["brennum", "verb", "brennum", "", "", "", "inflection of brenna"]) + let v = native_list_append(v, ["brendr", "verb", "brenndr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["brenndr", "verb", "brendr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["brunnu", "verb", "brunnu", "", "", "", "inflection of brunninn"]) + let v = native_list_append(v, ["faldit", "verb", "faldit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["flutt", "verb", "flutt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["undit", "verb", "undit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["unnit", "verb", "unnit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þegit", "verb", "þegit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þorrit", "verb", "þorrit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hlaupit", "verb", "hlaupit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["haldit", "verb", "haldit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["drukkinn", "verb", "drukkinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["drukkit", "verb", "drukkit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skáru", "verb", "skáru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skarta", "verb", "skartaða", "skartaði", "skartaðr", "", "to make a"]) + let v = native_list_append(v, ["bǫrð", "verb", "bǫrð", "", "", "", "inflection of barðr"]) + let v = native_list_append(v, ["barðr", "verb", "bariðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bariðr", "verb", "barit", "barðr", "", "", "past participle of"]) + let v = native_list_append(v, ["barði", "verb", "barði", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["bǫrðu", "verb", "bǫrðu", "", "", "", "inflection of bariðr"]) + let v = native_list_append(v, ["barða", "verb", "barða", "", "", "", "inflection of bariðr"]) + let v = native_list_append(v, ["bǫrðum", "verb", "bǫrðum", "", "", "", "inflection of bariðr"]) + let v = native_list_append(v, ["herði", "verb", "herði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["brugginn", "verb", "bruggin", "bruggit", "", "", "brewed"]) + let v = native_list_append(v, ["hafinn", "verb", "hafin", "hafit", "hafiðr", "", "past participle of"]) + let v = native_list_append(v, ["hafit", "verb", "hafit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hafiðr", "verb", "hafið", "hafit", "hafinn", "", "past participle of"]) + let v = native_list_append(v, ["hófum", "verb", "hófum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hófu", "verb", "hófu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hafið", "verb", "hafið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["haldið", "verb", "haldið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["skrefa", "verb", "skrefaða", "skrefaði", "skrefaðr", "", "to stride pace"]) + let v = native_list_append(v, ["hafi", "verb", "hafi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["hlaut", "verb", "hlaut", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["galni", "verb", "galni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["galins", "verb", "galins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["gǫlnum", "verb", "gǫlnum", "", "", "", "inflection of galinn"]) + let v = native_list_append(v, ["gǫlnu", "verb", "gǫlnu", "", "", "", "inflection of galinn"]) + let v = native_list_append(v, ["galnir", "verb", "galnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["galnar", "verb", "galnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["galinni", "verb", "galinni", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["galinnar", "verb", "galinnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["settar", "verb", "settar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["hvika", "verb", "hvika", "", "", "", "to quail shrink"]) + let v = native_list_append(v, ["gyta", "verb", "gyta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["lugum", "verb", "lugum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["skinu", "verb", "skinu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gólu", "verb", "gólu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fatar", "verb", "fatar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["svipu", "verb", "svipu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["klyppa", "verb", "klyppi", "klypti", "klyptr", "", "alternative form of"]) + let v = native_list_append(v, ["heyrðr", "verb", "heyrðr", "", "", "", "heard past participle"]) + let v = native_list_append(v, ["festr", "verb", "festr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bazt", "verb", "bazt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["faukt", "verb", "faukt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["halpt", "verb", "halpt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["gazt", "verb", "gazt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["vazt", "verb", "vazt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["veizt", "verb", "veizt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hjǫlpum", "verb", "hjǫlpum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["helpr", "verb", "helpr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hulpu", "verb", "hulpu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hulpuð", "verb", "hulpuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hulpum", "verb", "hulpum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hjalpið", "verb", "hjalpið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["biðr", "verb", "biðr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["biðjum", "verb", "biðjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["biðið", "verb", "biðið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["biði", "verb", "biði", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hǫldum", "verb", "hǫldum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fylgða", "verb", "fylgða", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["fylgðr", "verb", "fylgðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fylgð", "verb", "fylgð", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["fylgði", "verb", "fylgði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["seðr", "verb", "seðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["séðr", "verb", "séðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grǿða", "verb", "grǿði", "grǿddi", "grǿddr", "", "to make land"]) + let v = native_list_append(v, ["hvekka", "verb", "hvekka", "", "", "", "to be startled"]) + let v = native_list_append(v, ["taliðr", "verb", "taldr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["taldr", "verb", "taliðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skepja", "verb", "skep", "skapti", "skapinn", "", "to shape form"]) + let v = native_list_append(v, ["skapinn", "verb", "skapin", "skapit", "skapiðr", "", "past participle of"]) + let v = native_list_append(v, ["skaptr", "verb", "skapinn", "skapiðr", "", "", "past participle of"]) + let v = native_list_append(v, ["skapiðr", "verb", "skapinn", "skaptr", "", "", "past participle of"]) + let v = native_list_append(v, ["skapit", "verb", "skapt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skapti", "verb", "skapti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["skipat", "verb", "skipat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skipaðr", "verb", "skipaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tapisk", "verb", "tapisk", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skepr", "verb", "skepr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skóp", "verb", "skóp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["verjum", "verb", "verjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["verit", "verb", "verit", "", "", "", "supine of vera"]) + let v = native_list_append(v, ["variðr", "verb", "varðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þráð", "verb", "þráð", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["þrátt", "verb", "þrátt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mælir", "verb", "mælir", "", "", "", "inflection of mæla"]) + let v = native_list_append(v, ["mæli", "verb", "mæli", "", "", "", "inflection of mæla"]) + let v = native_list_append(v, ["fjǫlga", "verb", "fjǫlgaða", "fjǫlgaðr", "fjǫlgaðr", "", "to make more"]) + let v = native_list_append(v, ["sýstr", "verb", "sýstr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["byrg", "verb", "byrg", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["kvam", "verb", "kvam", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["látinn", "verb", "látinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["helgum", "verb", "helgum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["unnu", "verb", "unnu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["tryggva", "verb", "tryggvi", "trygðr", "trygðr", "", "alternative form of"]) + let v = native_list_append(v, ["trygðr", "verb", "trygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tryggvi", "verb", "tryggvi", "", "", "", "inflection of tryggva"]) + let v = native_list_append(v, ["sóttar", "verb", "sóttar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["sóttir", "verb", "sóttir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["sóttum", "verb", "sóttum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["sótta", "verb", "sótta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["tóku", "verb", "tóku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["mǿða", "verb", "mǿði", "mǿddi", "mǿddr", "", "to make weary"]) + let v = native_list_append(v, ["sissaðr", "verb", "sissaðr", "", "", "", "present participle of"]) + let v = native_list_append(v, ["hixta", "verb", "hixta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["hixtr", "verb", "hixtr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hixti", "verb", "hixti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["hixt", "verb", "hixt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["lesinn", "verb", "lesinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lesit", "verb", "lesit", "", "", "", "strong neuter nominative"]) + let v = native_list_append(v, ["meig", "verb", "mé", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["métt", "verb", "meigt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["meigt", "verb", "métt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hlœddr", "verb", "hlœddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nefndr", "verb", "nefndr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mintr", "verb", "mintr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["mœddr", "verb", "mœddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reyndr", "verb", "reyndr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reyndra", "verb", "reyndra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["reyndir", "verb", "reyndir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["reyndri", "verb", "reyndri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["fleyttr", "verb", "fleyttr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þysja", "verb", "þys", "þusti", "þustr", "", "to dash rush"]) + let v = native_list_append(v, ["hressandi", "verb", "no-table-tags", "non-decl-cell", "hressanda", "", "present participle of"]) + let v = native_list_append(v, ["remja", "verb", "remjaða", "remjaðr", "remjaðr", "", "to roar"]) + let v = native_list_append(v, ["lifna", "verb", "lifnaða", "lifnaðr", "lifnaðr", "", "to be left"]) + let v = native_list_append(v, ["fíkjast", "verb", "fíkjast", "", "", "", "to be eager"]) + let v = native_list_append(v, ["slitinn", "verb", "slitinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["keyrðr", "verb", "keyrðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["telgja", "verb", "telgi", "telgðr", "telgðr", "", "to carve to"]) + let v = native_list_append(v, ["sleginn", "verb", "sleginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sneyða", "verb", "sneyði", "sneyddr", "sneyddr", "", "to bereave one"]) + let v = native_list_append(v, ["sneyddr", "verb", "sneyddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fleygðr", "verb", "fleygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["beygðr", "verb", "beygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["smeygja", "verb", "smeygi", "smeygðr", "smeygðr", "", "to slip"]) + let v = native_list_append(v, ["heygðr", "verb", "heygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["smeygðr", "verb", "smeygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["teygðr", "verb", "teygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ǫttu", "verb", "ǫttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ǫttum", "verb", "ǫttum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["ǫttuð", "verb", "ǫttuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["urðuð", "verb", "urðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["urðu", "verb", "urðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skyldu", "verb", "skyldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skyli", "verb", "skyli", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["kvalda", "verb", "kvalda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["kvaldi", "verb", "kvaldi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["kvaldir", "verb", "kvaldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["kvǫldum", "verb", "kvǫldum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["kvǫlduð", "verb", "kvǫlduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["kvǫldu", "verb", "kvǫldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kvelr", "verb", "kvelr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["kveljum", "verb", "kveljum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kvelið", "verb", "kvelið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["setir", "verb", "setir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["léku", "verb", "léku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fǫlna", "verb", "fǫlnaða", "fǫlnaðr", "fǫlnaðr", "", "to grow pale"]) + let v = native_list_append(v, ["fǫlnar", "verb", "fǫlnar", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["haslar", "verb", "haslar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hasla", "verb", "haslaða", "haslaðr", "haslaðr", "", "to mark out"]) + let v = native_list_append(v, ["gildra", "verb", "gildraða", "gildraðr", "gildraðr", "", "to trap"]) + let v = native_list_append(v, ["rauð", "verb", "rauð", "", "", "", "first/third-person singular indicative"]) + let v = native_list_append(v, ["ruðu", "verb", "ruðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gátu", "verb", "gátu", "", "", "", "third-person plural indicative"]) + let v = native_list_append(v, ["ræðr", "verb", "ræðr", "", "", "", "second-person/third-person singular active"]) + let v = native_list_append(v, ["fellr", "verb", "fellr", "", "", "", "second-person/third-person singular active"]) + let v = native_list_append(v, ["byggir", "verb", "byggir", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["lifir", "verb", "lifir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["þegir", "verb", "þegir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["snýr", "verb", "snýr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["horfir", "verb", "horfir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["vísar", "verb", "vísar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["suðu", "verb", "suðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hefir", "verb", "hefir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["kyssir", "verb", "kyssir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["svelgr", "verb", "svelgr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["yrkir", "verb", "yrkir", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bergr", "verb", "bergr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hygg", "verb", "hygg", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hygga", "verb", "hygga", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hyggi", "verb", "hyggi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["hafða", "verb", "hafða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hugða", "verb", "hugða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hugðr", "verb", "hugðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hugt", "verb", "hugt", "", "", "", "supine of hyggja"]) + let v = native_list_append(v, ["hyggr", "verb", "hyggr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["lagðr", "verb", "lagiðr", "laginn", "", "", "past participle of"]) + let v = native_list_append(v, ["lǫgðu", "verb", "lǫgðu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["lǫgðum", "verb", "lǫgðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["lagða", "verb", "lagða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["lagði", "verb", "lagði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["leggjum", "verb", "leggjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["leggið", "verb", "leggið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["lagðir", "verb", "lagðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["lǫgð", "verb", "lǫgð", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["lagðri", "verb", "lagðri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["lagðan", "verb", "lagðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["leggir", "verb", "leggir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["þýtr", "verb", "þýtr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["þaut", "verb", "þaut", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["þauzt", "verb", "þauzt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þutum", "verb", "þutum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["þutuð", "verb", "þutuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["þutu", "verb", "þutu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þýt", "verb", "þýt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["þjótum", "verb", "þjótum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["þjótið", "verb", "þjótið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["grét", "verb", "grét", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["litinn", "verb", "litinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hlitinn", "verb", "hlitinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skitinn", "verb", "skitinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hnitinn", "verb", "hnitinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dritinn", "verb", "dritinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hniginn", "verb", "hniginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hvininn", "verb", "hvininn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hrininn", "verb", "hrininn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gininn", "verb", "gininn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["œgja", "verb", "œgi", "œgðr", "œgðr", "", "alternative spelling of"]) + let v = native_list_append(v, ["þrotinn", "verb", "þrotinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þrotit", "verb", "þrotit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þrýtr", "verb", "þrýtr", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["þrjóti", "verb", "þrjóti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["søfr", "verb", "søfr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["sefr", "verb", "sefr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["sófu", "verb", "sófu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["svæfim", "verb", "svæfim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["svæfið", "verb", "svæfið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["svæfir", "verb", "svæfir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["svaft", "verb", "svaft", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["spjó", "verb", "spjó", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["spjótt", "verb", "spjótt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["lótt", "verb", "lótt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["spýr", "verb", "spýr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["spý", "verb", "spý", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["floginn", "verb", "floginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["flúiðr", "verb", "flúinn", "flýðr", "flýiðr", "", "past participle of"]) + let v = native_list_append(v, ["duldr", "verb", "duld", "dult", "dulðr", "", "past participle of"]) + let v = native_list_append(v, ["duliðr", "verb", "duldr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gnyðja", "verb", "gnyð", "gnuddi", "gnuddr", "", "to mutter grumble"]) + let v = native_list_append(v, ["svefja", "verb", "svef", "svafði", "svafðr", "", "to lull to"]) + let v = native_list_append(v, ["snyðja", "verb", "snyð", "snuddi", "snuddr", "", "to rush"]) + let v = native_list_append(v, ["skeðja", "verb", "skeð", "skaddi", "skaddr", "", "to mar damage"]) + let v = native_list_append(v, ["bleðja", "verb", "bleð", "bladdi", "bladdr", "", "to pick off"]) + let v = native_list_append(v, ["treðja", "verb", "treð", "traddi", "traddr", "", "to trample"]) + let v = native_list_append(v, ["trefja", "verb", "tref", "trafði", "trafðr", "", "to shred"]) + let v = native_list_append(v, ["þyrja", "verb", "þyr", "þurðr", "þurðr", "", "alternative form of"]) + let v = native_list_append(v, ["þilja", "verb", "þil", "þildi", "þildr", "", "to cover with"]) + let v = native_list_append(v, ["kvefja", "verb", "kvef", "kvafði", "kvafðr", "", "to smother suffocate"]) + let v = native_list_append(v, ["letja", "verb", "let", "latti", "lattr", "", "to dissuade"]) + let v = native_list_append(v, ["metja", "verb", "met", "matti", "mattr", "", "to lap with"]) + let v = native_list_append(v, ["vafinn", "verb", "vafðr", "vafiðr", "", "", "past participle of"]) + let v = native_list_append(v, ["vafiðr", "verb", "vafðr", "vafinn", "", "", "past participle of"]) + let v = native_list_append(v, ["vafðr", "verb", "vafiðr", "vafinn", "", "", "past participle of"]) + let v = native_list_append(v, ["skiliðr", "verb", "skildr", "skilinn", "", "", "past participle of"]) + let v = native_list_append(v, ["lagiðr", "verb", "lagðr", "laginn", "", "", "past participle of"]) + let v = native_list_append(v, ["klyfja", "verb", "klyfjaða", "klyfjaði", "klyfjaðr", "", "to load with"]) + let v = native_list_append(v, ["krytja", "verb", "kryt", "krutti", "kruttr", "", "to murmur grumble"]) + let v = native_list_append(v, ["krysja", "verb", "krys", "krusti", "krustr", "", "to be unproductive"]) + let v = native_list_append(v, ["flysja", "verb", "flys", "flusti", "flustr", "", "to split to"]) + let v = native_list_append(v, ["kalinn", "verb", "kalinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ǫfunda", "verb", "ǫfundaða", "ǫfundaðr", "ǫfundaðr", "", "to envy to"]) + let v = native_list_append(v, ["snjóva", "verb", "no-table-tags", "non-conj-weak2", "snjóvaðr", "", "to snow"]) + let v = native_list_append(v, ["snjóvar", "verb", "snjóvar", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["tíða", "verb", "tíðumk", "tíddi", "tíddr", "", "to cause to"]) + let v = native_list_append(v, ["tíddi", "verb", "tíddi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["tíði", "verb", "tíði", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["svimra", "verb", "no-table-tags", "non-conj-weak2", "svimraðr", "", "to make dizzy"]) + let v = native_list_append(v, ["ofsar", "verb", "ofsar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["lyptr", "verb", "lyptr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lypt", "verb", "lypt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["lyptir", "verb", "lyftir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["lypti", "verb", "lyfti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["lyptum", "verb", "lyftum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["lyftum", "verb", "lyptum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["lyptu", "verb", "lyftu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["lyftu", "verb", "lyptu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["lyfti", "verb", "lypti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["lyftr", "verb", "lyptr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hittum", "verb", "hittum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["hittu", "verb", "hittu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["hittir", "verb", "hittir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["hittið", "verb", "hittið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["hittim", "verb", "hittim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hittandi", "verb", "no-table-tags", "non-decl-cell", "hittanda", "", "present participle of"]) + let v = native_list_append(v, ["hrygðr", "verb", "hrygðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hrygt", "verb", "hrygt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hrygða", "verb", "hrygða", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["hresta", "verb", "hressta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["hrestr", "verb", "hresstr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hrest", "verb", "hresst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["hresst", "verb", "hrest", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["hresstr", "verb", "hrestr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sóttr", "verb", "sóttr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sótti", "verb", "sótti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["þýddr", "verb", "þýddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["leigðr", "verb", "leigðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["leigt", "verb", "leigt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["leigð", "verb", "leigð", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["styn", "verb", "styn", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sinkva", "verb", "sank", "sunku", "sunkinn", "", "to sink"]) + let v = native_list_append(v, ["verði", "verb", "verði", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["mǿta", "verb", "mǿti", "mǿtti", "mǿttr", "", "to meet"]) + let v = native_list_append(v, ["skyldi", "verb", "skyldi", "", "", "", "inflection of skulu"]) + let v = native_list_append(v, ["kvæfa", "verb", "kvæfa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["óðu", "verb", "óðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["váru", "verb", "váru", "", "", "", "third-person plural indicative"]) + let v = native_list_append(v, ["megi", "verb", "megi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["banim", "verb", "banim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["rjóðask", "verb", "rjóðask", "", "", "", "mediopassive infinitive of"]) + let v = native_list_append(v, ["vesandi", "verb", "vesandi", "", "", "", "present participle of"]) + let v = native_list_append(v, ["rýðr", "verb", "rýðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["brauzt", "verb", "brauzt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["brýtr", "verb", "brýtr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["brjótið", "verb", "brjótið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["mátt", "verb", "mátt", "", "", "", "inflection of mega"]) + let v = native_list_append(v, ["gætir", "verb", "gætir", "", "", "", "inflection of gæta"]) + let v = native_list_append(v, ["tekr", "verb", "tekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["tókum", "verb", "tókum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["tǫkum", "verb", "tǫkum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["tókuð", "verb", "tókuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["látum", "verb", "látum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kyssim", "verb", "kyssim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["veldr", "verb", "veldr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["vildi", "verb", "vildi", "", "", "", "inflection of vilja"]) + let v = native_list_append(v, ["báru", "verb", "báru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vinnim", "verb", "vinnim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["gef", "verb", "gef", "", "", "", "inflection of gefa"]) + let v = native_list_append(v, ["beiðir", "verb", "beiðir", "", "", "", "inflection of beiða"]) + let v = native_list_append(v, ["beiðask", "verb", "beiðask", "", "", "", "inflection of beiða"]) + let v = native_list_append(v, ["réðu", "verb", "réðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["réðum", "verb", "réðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["réð", "verb", "réð", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["vǫ́ru", "verb", "vǫ́ru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ǫngrumsk", "verb", "ǫngrumsk", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hljóp", "verb", "hljóp", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["knátti", "verb", "knátti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["hǫfðu", "verb", "hǫfðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hǫfum", "verb", "hǫfum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sitr", "verb", "sitr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["sazt", "verb", "sazt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hnígr", "verb", "hnígr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["býðr", "verb", "býðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bjóðum", "verb", "bjóðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hlýðir", "verb", "hlýðir", "", "", "", "inflection of hlýða"]) + let v = native_list_append(v, ["heitir", "verb", "heitir", "", "", "", "inflection of heita"]) + let v = native_list_append(v, ["fœðir", "verb", "fœðir", "", "", "", "inflection of fœða"]) + let v = native_list_append(v, ["hugðu", "verb", "hugðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["náðu", "verb", "náðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skulfu", "verb", "skulfu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skalf", "verb", "skalf", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["mǫlum", "verb", "mǫlum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["brutu", "verb", "brutu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["báruð", "verb", "báruð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["frágu", "verb", "frágu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["belldu", "verb", "belldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vildu", "verb", "vildu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["viljum", "verb", "viljum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["framdi", "verb", "framdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["framdisk", "verb", "framdisk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["fylgðu", "verb", "fylgðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["yrði", "verb", "yrði", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["settir", "verb", "settir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þótti", "verb", "þótti", "", "", "", "inflection of þykkja"]) + let v = native_list_append(v, ["þótta", "verb", "þótta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["þóttu", "verb", "þóttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["lattr", "verb", "lattr", "", "", "", "active past participle"]) + let v = native_list_append(v, ["lítr", "verb", "lítr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gáfu", "verb", "gáfu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hafði", "verb", "hafði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["fálu", "verb", "fálu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["brutuð", "verb", "brutuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["veginn", "verb", "veginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vélti", "verb", "vélti", "", "", "", "inflection of véla"]) + let v = native_list_append(v, ["þóttum", "verb", "þóttum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["biðu", "verb", "biðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["átu", "verb", "átu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["átum", "verb", "átum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["bárum", "verb", "bárum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["jóku", "verb", "jóku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["svefr", "verb", "svefr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bygði", "verb", "bygði", "", "", "", "inflection of byggja"]) + let v = native_list_append(v, ["drukku", "verb", "drukku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["drekkr", "verb", "drekkr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["guldu", "verb", "guldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gulduð", "verb", "gulduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["geldr", "verb", "geldr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gjaldi", "verb", "gjaldi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["guldum", "verb", "guldum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["eigum", "verb", "eigum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["eiguð", "verb", "eiguð", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["eigu", "verb", "eigu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["rænti", "verb", "rænti", "", "", "", "inflection of ræna"]) + let v = native_list_append(v, ["bǫrðusk", "verb", "bǫrðusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["báðu", "verb", "báðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["buðu", "verb", "buðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["samir", "verb", "samir", "", "", "", "inflection of sama"]) + let v = native_list_append(v, ["hrauð", "verb", "hrauð", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["fengu", "verb", "fengu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["blésu", "verb", "blésu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sátu", "verb", "sátu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sátum", "verb", "sátum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["drukkum", "verb", "drukkum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["liggr", "verb", "liggr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["urðusk", "verb", "urðusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hverfði", "verb", "hverfði", "", "", "", "inflection of hverfa"]) + let v = native_list_append(v, ["kváðu", "verb", "kváðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kveðr", "verb", "kveðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["trað", "verb", "trað", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["hǫfðum", "verb", "hǫfðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hǫfðuð", "verb", "hǫfðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hafðir", "verb", "hafðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["gǫfumk", "verb", "gǫfumk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hugði", "verb", "hugði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["fylldi", "verb", "fylldi", "", "", "", "inflection of fylla"]) + let v = native_list_append(v, ["þyrr", "verb", "þyrr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["lætr", "verb", "lætr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["létuð", "verb", "létuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["létum", "verb", "létum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fǿri", "verb", "fǿri", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["gerðisk", "verb", "gerðisk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["háði", "verb", "háði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["gnúðu", "verb", "gnúðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hnigu", "verb", "hnigu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["knáttu", "verb", "knáttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sviku", "verb", "sviku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skerr", "verb", "skerr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["fœddir", "verb", "fœddir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fœdda", "verb", "fœdda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["fœddu", "verb", "fœddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fœða", "verb", "fœða", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fǿddi", "verb", "fǿddi", "", "", "", "inflection of fǿða"]) + let v = native_list_append(v, ["fǿddu", "verb", "fǿddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fǿdda", "verb", "fǿdda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["fǿddir", "verb", "fǿddir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["gefr", "verb", "gefr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gáfuð", "verb", "gáfuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["reisti", "verb", "reisti", "", "", "", "inflection of reisa"]) + let v = native_list_append(v, ["reistum", "verb", "reistum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["reistu", "verb", "reistu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kveð", "verb", "kveð", "", "", "", "inflection of kveða"]) + let v = native_list_append(v, ["ólu", "verb", "ólu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gróinn", "verb", "gróinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gróit", "verb", "gróit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hló", "verb", "hló", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["vilið", "verb", "vilið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["beið", "verb", "beið", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["brynni", "verb", "brynni", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["helduð", "verb", "helduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["heldu", "verb", "heldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fleygði", "verb", "fleygði", "", "", "", "inflection of fleygja"]) + let v = native_list_append(v, ["dró", "verb", "dró", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["heyrða", "verb", "heyrða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hjó", "verb", "hjó", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sæi", "verb", "sæi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["lágu", "verb", "lágu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["glumdi", "verb", "glumdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["óx", "verb", "óx", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["máttu", "verb", "máttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hétu", "verb", "hétu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["drógu", "verb", "drógu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ganga á hǫnd", "verb", "ganga á hǫnd", "", "", "", "to surrender or"]) + let v = native_list_append(v, ["dǿma", "verb", "dǿmi", "dǿmdi", "dǿmdr", "", "to judge give"]) + let v = native_list_append(v, ["dǿmandi", "verb", "dómandi", "dœmandi", "dómari", "", "present participle of"]) + let v = native_list_append(v, ["fǿrum", "verb", "fǿrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["vǫkðu", "verb", "vǫkðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vakði", "verb", "vakði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["urpum", "verb", "urpum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["verpið", "verb", "verpið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["þágu", "verb", "þágu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þiggi", "verb", "þiggi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["þiggjum", "verb", "þiggjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["þigg", "verb", "þigg", "", "", "", "inflection of þiggja"]) + let v = native_list_append(v, ["glymjandi", "verb", "no-table-tags", "non-decl-cell", "glymjanda", "", "present participle of"]) + let v = native_list_append(v, ["glymr", "verb", "glymr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["vinnr", "verb", "vinnr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["rokinn", "verb", "rokinn", "", "", "", "active past participle"]) + let v = native_list_append(v, ["rýkr", "verb", "rýkr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["rjúkandi", "verb", "rjúkandi", "", "", "", "active present participle"]) + let v = native_list_append(v, ["rjúki", "verb", "rjúki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["arði", "verb", "arði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["sveipt", "verb", "sveipt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fáðu", "verb", "fáðu", "", "", "", "inflection of fáðr"]) + let v = native_list_append(v, ["brotinn", "verb", "brotinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sorðinn", "verb", "sorðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hindrum", "verb", "hindrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["stálu", "verb", "stálu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hurfu", "verb", "hurfu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hnúka", "verb", "hnúkti", "", "", "", "to sit cowering"]) + let v = native_list_append(v, ["rǿkja", "verb", "rǿki", "rǿkðr", "rǿkðr", "", "to care to"]) + let v = native_list_append(v, ["reittr", "verb", "reittr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reiddr", "verb", "reiddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reidd", "verb", "reidd", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["reita", "verb", "reiti", "reittr", "reittr", "", "to excite irritate"]) + let v = native_list_append(v, ["reiti", "verb", "reiti", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["meintr", "verb", "meintr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["meintum", "verb", "meintum", "", "", "", "inflection of meintr"]) + let v = native_list_append(v, ["meinar", "verb", "meinar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["meinat", "verb", "meinat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["meinta", "verb", "meinta", "", "", "", "inflection of meintr"]) + let v = native_list_append(v, ["meinaðr", "verb", "meinaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["meinum", "verb", "meinum", "", "", "", "inflection of meina"]) + let v = native_list_append(v, ["fáið", "verb", "fáið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fáði", "verb", "fáði", "", "", "", "inflection of fá"]) + let v = native_list_append(v, ["þykkir", "verb", "þykkir", "", "", "", "inflection of þykkja"]) + let v = native_list_append(v, ["ruddu", "verb", "ruddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hjoggu", "verb", "hjoggu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sœkir", "verb", "sœkir", "", "", "", "inflection of sœkja"]) + let v = native_list_append(v, ["sóttu", "verb", "sóttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skeindr", "verb", "skeindr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["unnir", "verb", "unnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["hvakk", "verb", "hvakk", "", "", "", "started was startled"]) + let v = native_list_append(v, ["vátt", "verb", "vátt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["vágu", "verb", "vágu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gefið", "verb", "gefið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["þógu", "verb", "þógu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sǿkja", "verb", "sǿki", "sótti", "sóttr", "", "to seek look"]) + let v = native_list_append(v, ["kvámu", "verb", "kvámu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kómu", "verb", "kómu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kømr", "verb", "kømr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["kemr", "verb", "kemr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["dǿmir", "verb", "dǿmir", "", "", "", "inflection of dǿma"]) + let v = native_list_append(v, ["dǿmdi", "verb", "dǿmdi", "", "", "", "inflection of dǿma"]) + let v = native_list_append(v, ["dǿmdr", "verb", "dǿmdr", "", "", "", "active past participle"]) + let v = native_list_append(v, ["sǿkir", "verb", "sǿkir", "", "", "", "inflection of sǿkja"]) + let v = native_list_append(v, ["hrǿra", "verb", "hrǿri", "hrǿrði", "hrǿrðr", "", "to stir move"]) + let v = native_list_append(v, ["rǿr", "verb", "rǿr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hlýt", "verb", "hlýt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hlýtr", "verb", "hlýtr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hljótum", "verb", "hljótum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hlutu", "verb", "hlutu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hljóti", "verb", "hljóti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["hlutuð", "verb", "hlutuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["vǫ́rum", "verb", "vǫ́rum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["yptu", "verb", "yptu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ypðu", "verb", "ypðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vakið", "verb", "vakið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["sǫkk", "verb", "sǫkk", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["vǫ́ruð", "verb", "vǫ́ruð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["bǫ́ru", "verb", "bǫ́ru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["bǫ́rum", "verb", "bǫ́rum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["bǫ́ruð", "verb", "bǫ́ruð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["kvǫ́ðu", "verb", "kvǫ́ðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kvôðu", "verb", "kvôðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["brennr", "verb", "brennr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["brennið", "verb", "brennið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["bjoggu", "verb", "bjoggu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["búin", "verb", "búin", "", "", "", "inflection of búinn"]) + let v = native_list_append(v, ["búm", "verb", "búm", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["búum", "verb", "búum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["bjótt", "verb", "bjótt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["bjogguð", "verb", "bjogguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["búið", "verb", "búið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fǿrði", "verb", "fǿrði", "", "", "", "inflection of fǿra"]) + let v = native_list_append(v, ["kvalði", "verb", "kvalði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["ságu", "verb", "ságu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ságuð", "verb", "ságuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["ságum", "verb", "ságum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["erjum", "verb", "erjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ríðr", "verb", "ríðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["sagða", "verb", "sagða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sagðir", "verb", "sagðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["sǫgðu", "verb", "sǫgðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["segir", "verb", "segir", "", "", "", "inflection of segja"]) + let v = native_list_append(v, ["sǫgðuð", "verb", "sǫgðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["sǫgðum", "verb", "sǫgðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["segjum", "verb", "segjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["segim", "verb", "segim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["segið", "verb", "segið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["lagðisk", "verb", "lagðisk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["dugði", "verb", "dugði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["rýfr", "verb", "rýfr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["rjúfask", "verb", "rjúfask", "", "", "", "inflection of rjúfa"]) + let v = native_list_append(v, ["þorir", "verb", "þorir", "", "", "", "inflection of þora"]) + let v = native_list_append(v, ["hǫggvi", "verb", "hǫggvi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["deyjum", "verb", "deyjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["bjóði", "verb", "bjóði", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["kvaddi", "verb", "kvaddi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["varpaði", "verb", "varpaði", "", "", "", "inflection of varpa"]) + let v = native_list_append(v, ["gerðiz", "verb", "gerðiz", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mæltu", "verb", "mæltu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gingum", "verb", "gingum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["goldinn", "verb", "goldinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["goldit", "verb", "goldit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["bornir", "verb", "bornir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["bornar", "verb", "bornar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["bornum", "verb", "bornum", "", "", "", "inflection of borinn"]) + let v = native_list_append(v, ["brotnir", "verb", "brotnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["verðum", "verb", "verðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["verðið", "verb", "verðið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["dregr", "verb", "dregr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bǫlvaðr", "verb", "bǫlvaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bǫlvat", "verb", "bǫlvat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["krjúpum", "verb", "krjúpum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["gný", "verb", "gný", "", "", "", "inflection of gnýja"]) + let v = native_list_append(v, ["gekkt", "verb", "gekkt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["reynda", "verb", "reynda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["reyndi", "verb", "reyndi", "", "", "", "inflection of reyna"]) + let v = native_list_append(v, ["þegi", "verb", "þegi", "", "", "", "inflection of þegja"]) + let v = native_list_append(v, ["þagða", "verb", "þagða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["þǫgðu", "verb", "þǫgðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þagði", "verb", "þagði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["þverðu", "verb", "þverðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["flýjum", "verb", "flýjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["gerðu", "verb", "gerðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gerið", "verb", "gerið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["spyrjask", "verb", "spyrjask", "", "", "", "inflection of spyrja"]) + let v = native_list_append(v, ["mundir", "verb", "mundir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["telgði", "verb", "telgði", "", "", "", "inflection of telgja"]) + let v = native_list_append(v, ["telgðu", "verb", "telgðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["telgir", "verb", "telgir", "", "", "", "inflection of telgja"]) + let v = native_list_append(v, ["telgða", "verb", "telgða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["mylkja", "verb", "mylki", "mylktr", "mylktr", "", "to give milk"]) + let v = native_list_append(v, ["stelr", "verb", "stelr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["fregnið", "verb", "fregnið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["vildum", "verb", "vildum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["vildir", "verb", "vildir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["vilduð", "verb", "vilduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["vildim", "verb", "vildim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["vilir", "verb", "vilir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sǿki", "verb", "sǿki", "", "", "", "inflection of sǿkja"]) + let v = native_list_append(v, ["sǿkið", "verb", "sǿkið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["bíðr", "verb", "bíðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["skínn", "verb", "skínn", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["þurfti", "verb", "þurfti", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["þurfu", "verb", "þurfu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["mæltir", "verb", "mæltir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["mælta", "verb", "mælta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["mælið", "verb", "mælið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["mælum", "verb", "mælum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["spurðu", "verb", "spurðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["spurði", "verb", "spurði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["spyrr", "verb", "spyrr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["spurðum", "verb", "spurðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["spurða", "verb", "spurða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["spyrjum", "verb", "spyrjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["spurðisk", "verb", "spurðisk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["spurðumk", "verb", "spurðumk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["spyrir", "verb", "spyrir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sǿkjum", "verb", "sǿkjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kǫllum", "verb", "kǫllum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kǫlluðu", "verb", "kǫlluðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kallaði", "verb", "kallaði", "", "", "", "inflection of kalla"]) + let v = native_list_append(v, ["kallaða", "verb", "kallaða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["kallið", "verb", "kallið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["kǫlluðum", "verb", "kǫlluðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["kallaðir", "verb", "kallaðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["kǫlluðuð", "verb", "kǫlluðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hygða", "verb", "hygða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["bíð", "verb", "bíð", "", "", "", "inflection of bíða"]) + let v = native_list_append(v, ["bíðum", "verb", "bíðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["beðnir", "verb", "beðnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["knátt", "verb", "knátt", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["deildum", "verb", "deildum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["deilir", "verb", "deilir", "", "", "", "inflection of deila"]) + let v = native_list_append(v, ["deildu", "verb", "deildu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["deili", "verb", "deili", "", "", "", "inflection of deila"]) + let v = native_list_append(v, ["bygðu", "verb", "bygðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["nemr", "verb", "nemr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["námu", "verb", "námu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["nemið", "verb", "nemið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["námum", "verb", "námum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["heilsar", "verb", "heilsar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["heilsaði", "verb", "heilsaði", "", "", "", "inflection of heilsa"]) + let v = native_list_append(v, ["vegit", "verb", "vegit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["knúðu", "verb", "knúðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["bárusk", "verb", "bárusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vexr", "verb", "vexr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["sagðr", "verb", "sagðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kunnið", "verb", "kunnið", "", "", "", "second-person plural present/past"]) + let v = native_list_append(v, ["eigim", "verb", "eigim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["seldu", "verb", "seldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["aukin", "verb", "aukin", "", "", "", "inflection of aukinn"]) + let v = native_list_append(v, ["ekr", "verb", "ekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["knýr", "verb", "knýr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["riðu", "verb", "riðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["slítr", "verb", "slítr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["flýgr", "verb", "flýgr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["finnask", "verb", "finnask", "", "", "", "inflection of finna"]) + let v = native_list_append(v, ["finnr", "verb", "fiðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["áttar", "verb", "áttar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["þakiðr", "verb", "þakiðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þakðan", "verb", "þakðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["geyr", "verb", "geyr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["skópu", "verb", "skópu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hǫggvask", "verb", "hǫggvask", "", "", "", "inflection of hǫggva"]) + let v = native_list_append(v, ["þegjum", "verb", "þegjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["þegða", "verb", "þegða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["þegði", "verb", "þegði", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["dǿmdu", "verb", "dǿmdu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["dǿmið", "verb", "dǿmið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ǫrðu", "verb", "ǫrðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["reru", "verb", "reru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gengnir", "verb", "gengnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["þyrfta", "verb", "þyrfta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["þurfum", "verb", "þurfum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["etr", "verb", "etr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["rekr", "verb", "rekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["rekið", "verb", "rekið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["vráku", "verb", "vráku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vrekr", "verb", "vrekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["rákusk", "verb", "rákusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vrákuð", "verb", "vrákuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["rákuð", "verb", "rákuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["rekum", "verb", "rekum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ráku", "verb", "ráku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["rekinn", "verb", "rekinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["reknu", "verb", "reknu", "", "", "", "inflection of rekinn"]) + let v = native_list_append(v, ["reknir", "verb", "reknir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["reknum", "verb", "reknum", "", "", "", "inflection of rekinn"]) + let v = native_list_append(v, ["rekit", "verb", "rekit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["beðit", "verb", "beðit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["tráðusk", "verb", "tráðusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þrungu", "verb", "þrungu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["rjóðum", "verb", "rjóðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["skóku", "verb", "skóku", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skók", "verb", "skók", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["skek", "verb", "skek", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["skekr", "verb", "skekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["skókusk", "verb", "skókusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["skekinn", "verb", "skekinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skekit", "verb", "skekit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skekin", "verb", "skekin", "", "", "", "inflection of skekinn"]) + let v = native_list_append(v, ["aukit", "verb", "aukit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skýtr", "verb", "skýtr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["skýt", "verb", "skýt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["skjóti", "verb", "skjóti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["skjótum", "verb", "skjótum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["skotinn", "verb", "skotinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["skotit", "verb", "skotit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hófsk", "verb", "hófsk", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["hlógu", "verb", "hlógu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hlæjandi", "verb", "no-table-tags", "non-decl-cell", "hlæjanda", "", "present participle of"]) + let v = native_list_append(v, ["sátuð", "verb", "sátuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["vakir", "verb", "vakir", "", "", "", "inflection of vaka"]) + let v = native_list_append(v, ["fingim", "verb", "fingim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["grátandi", "verb", "no-table-tags", "non-decl-cell", "grátanda", "", "present participle of"]) + let v = native_list_append(v, ["dœmda", "verb", "dœmda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["dœmdu", "verb", "dœmdu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["dœmir", "verb", "dœmir", "", "", "", "inflection of dœma"]) + let v = native_list_append(v, ["dœmdi", "verb", "dœmdi", "", "", "", "inflection of dœma"]) + let v = native_list_append(v, ["dœmið", "verb", "dœmið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["saknaði", "verb", "saknaði", "", "", "", "inflection of sakna"]) + let v = native_list_append(v, ["sofnaði", "verb", "sofnaði", "", "", "", "inflection of sofna"]) + let v = native_list_append(v, ["tœki", "verb", "tœki", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["tǿki", "verb", "tǿki", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["heyrði", "verb", "heyrði", "", "", "", "inflection of heyra"]) + let v = native_list_append(v, ["heyri", "verb", "heyri", "", "", "", "inflection of heyra"]) + let v = native_list_append(v, ["heyrir", "verb", "heyrir", "", "", "", "inflection of heyra"]) + let v = native_list_append(v, ["heyrið", "verb", "heyrið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["megu", "verb", "megu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["drekki", "verb", "drekki", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["drekk", "verb", "drekk", "", "", "", "inflection of drekka"]) + let v = native_list_append(v, ["gǫngumk", "verb", "gǫngumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sveið", "verb", "sveið", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["svíðr", "verb", "svíðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["sviðu", "verb", "sviðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sviðinn", "verb", "sviðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sviðnar", "verb", "sviðnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["stroðinn", "verb", "stroðinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["brennumk", "verb", "brennumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["þágum", "verb", "þágum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["þáguð", "verb", "þáguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["þiggr", "verb", "þiggr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["þægi", "verb", "þægi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["fáða", "verb", "fáða", "", "", "", "inflection of fáðr"]) + let v = native_list_append(v, ["reyndan", "verb", "reyndan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["reyndu", "verb", "reyndu", "", "", "", "inflection of reyndr"]) + let v = native_list_append(v, ["reynduð", "verb", "reynduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["reynt", "verb", "reynt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["reyndum", "verb", "reyndum", "", "", "", "inflection of reyndr"]) + let v = native_list_append(v, ["kýss", "verb", "kýss", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["þakðr", "verb", "þakðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["látit", "verb", "látit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sýðr", "verb", "sýðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["tamiðr", "verb", "tamiðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lokinn", "verb", "lokinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lokins", "verb", "lokins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["bítr", "verb", "bítr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["drýpr", "verb", "drýpr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["drupu", "verb", "drupu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fǫ́lu", "verb", "fǫ́lu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fôlu", "verb", "fôlu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["felr", "verb", "felr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gefandi", "verb", "gefandi", "", "", "", "present participle of"]) + let v = native_list_append(v, ["hétumk", "verb", "hétumk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["orðnir", "verb", "orðnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["orðnar", "verb", "orðnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["orðnum", "verb", "orðnum", "", "", "", "inflection of orðinn"]) + let v = native_list_append(v, ["finnumk", "verb", "finnumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["sóttan", "verb", "sóttan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["ruðusk", "verb", "ruðusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["blǿddu", "verb", "blǿddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sullu", "verb", "sullu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["saddr", "verb", "saddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kystir", "verb", "kystir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["beiddu", "verb", "beiddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["beiddi", "verb", "beiddi", "", "", "", "inflection of beiða"]) + let v = native_list_append(v, ["gleðr", "verb", "gleðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gladdi", "verb", "gladdi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["skauzt", "verb", "skauzt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["getr", "verb", "getr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hlýddu", "verb", "hlýddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hlýð", "verb", "hlýð", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hlýðið", "verb", "hlýðið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["hlýddi", "verb", "hlýddi", "", "", "", "inflection of hlýða"]) + let v = native_list_append(v, ["hlýði", "verb", "hlýði", "", "", "", "inflection of hlýða"]) + let v = native_list_append(v, ["gátum", "verb", "gátum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["vitir", "verb", "vitir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["freginn", "verb", "freginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["fœrir", "verb", "fœrir", "", "", "", "inflection of fœra"]) + let v = native_list_append(v, ["fǿrir", "verb", "fǿrir", "", "", "", "inflection of fǿra"]) + let v = native_list_append(v, ["leyfðr", "verb", "leyfðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["leyfðan", "verb", "leyfðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["leyfðra", "verb", "leyfðra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["leyfði", "verb", "leyfði", "", "", "", "inflection of leyfa"]) + let v = native_list_append(v, ["leyfir", "verb", "leyfir", "", "", "", "inflection of leyfa"]) + let v = native_list_append(v, ["leyfðu", "verb", "leyfðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["leyft", "verb", "leyft", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þóttisk", "verb", "þóttisk", "", "", "", "inflection of þykkja"]) + let v = native_list_append(v, ["byggvir", "verb", "byggvir", "", "", "", "inflection of byggva"]) + let v = native_list_append(v, ["byggðr", "verb", "byggðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["berim", "verb", "berim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["víðka", "verb", "víðga", "", "", "", "to widen"]) + let v = native_list_append(v, ["dœmði", "verb", "dœmði", "", "", "", "inflection of dœma"]) + let v = native_list_append(v, ["dǿmdir", "verb", "dǿmdir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["teygjask", "verb", "teygjask", "", "", "", "inflection of teygja"]) + let v = native_list_append(v, ["saknaða", "verb", "saknaða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sǫknuðu", "verb", "sǫknuðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gripu", "verb", "gripu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["røru", "verb", "røru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["óxu", "verb", "óxu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["grípr", "verb", "grípr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["grípum", "verb", "grípum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["grípið", "verb", "grípið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["gríp", "verb", "gríp", "", "", "", "inflection of grípa"]) + let v = native_list_append(v, ["gripinn", "verb", "gripinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["váruð", "verb", "váruð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hlauzt", "verb", "hlauzt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["gelr", "verb", "gelr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["gǫlum", "verb", "gǫlum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["galir", "verb", "galir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gólum", "verb", "gólum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["glumdu", "verb", "glumdu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hafir", "verb", "hafir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["vǫldum", "verb", "vǫldum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["valdið", "verb", "valdið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["ollir", "verb", "ollir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["lagðs", "verb", "lagðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["lagðar", "verb", "lagðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["lagðrar", "verb", "lagðrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["lagðra", "verb", "lagðra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["tókt", "verb", "tókt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fekkt", "verb", "fekkt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fengum", "verb", "fengum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fingum", "verb", "fingum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fenguð", "verb", "fenguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["finguð", "verb", "finguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["fengir", "verb", "fengir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fengim", "verb", "fengim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fengið", "verb", "fengið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["aukum", "verb", "aukum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["jókt", "verb", "jókt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["jókuð", "verb", "jókuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["jókum", "verb", "jókum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["aukið", "verb", "aukið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["aukim", "verb", "aukim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["aukir", "verb", "aukir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["tóksk", "verb", "tóksk", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["tǿka", "verb", "tǿka", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["tǿkir", "verb", "tǿkir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["tǿkim", "verb", "tǿkim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["tǿkið", "verb", "tǿkið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["takask", "verb", "takask", "", "", "", "inflection of taka"]) + let v = native_list_append(v, ["teksk", "verb", "teksk", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["óxt", "verb", "óxt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["vǫxum", "verb", "vǫxum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["vaxið", "verb", "vaxið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["óxum", "verb", "óxum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["óxuð", "verb", "óxuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["vaxir", "verb", "vaxir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["vaxim", "verb", "vaxim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["vaxit", "verb", "vaxit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["vǫxnum", "verb", "vǫxnum", "", "", "", "inflection of vaxinn"]) + let v = native_list_append(v, ["ginguð", "verb", "ginguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["gangim", "verb", "gangim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["gangir", "verb", "gangir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gingir", "verb", "gingir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["gingim", "verb", "gingim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["gengir", "verb", "gengir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["gengim", "verb", "gengim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["gengið", "verb", "gengið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["gekksk", "verb", "gekksk", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["gingusk", "verb", "gingusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gengusk", "verb", "gengusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["agaði", "verb", "agaði", "", "", "", "inflection of aga"]) + let v = native_list_append(v, ["ǫguðu", "verb", "ǫguðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["ókt", "verb", "ókt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["ǫkum", "verb", "ǫkum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ǿki", "verb", "ǿki", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["ǿka", "verb", "ǿka", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["ǿkir", "verb", "ǿkir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["ǿkim", "verb", "ǿkim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["ǿkið", "verb", "ǿkið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["verðask", "verb", "verðask", "", "", "", "inflection of verða"]) + let v = native_list_append(v, ["dylr", "verb", "dylr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["dyljum", "verb", "dyljum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["dylið", "verb", "dylið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["duldir", "verb", "duldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["duldi", "verb", "duldi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["duldu", "verb", "duldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["dulduð", "verb", "dulduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["duldum", "verb", "duldum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["dylir", "verb", "dylir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dylim", "verb", "dylim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["dylda", "verb", "dylda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["dyldi", "verb", "dyldi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["dyldim", "verb", "dyldim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["dyldið", "verb", "dyldið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["frátt", "verb", "frátt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["frágum", "verb", "frágum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fráguð", "verb", "fráguð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["fregnum", "verb", "fregnum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fregnir", "verb", "fregnir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["fregni", "verb", "fregni", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["fregnim", "verb", "fregnim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["frægi", "verb", "frægi", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["loknar", "verb", "loknar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["loknum", "verb", "loknum", "", "", "", "inflection of lokinn"]) + let v = native_list_append(v, ["dǿmda", "verb", "dǿmda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["dǿmum", "verb", "dǿmum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["dǿmdum", "verb", "dǿmdum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["dǿmdim", "verb", "dǿmdim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["dǿmdið", "verb", "dǿmdið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["dǿmduð", "verb", "dǿmduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["skjótið", "verb", "skjótið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["skutum", "verb", "skutum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["skutuð", "verb", "skutuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["skjótir", "verb", "skjótir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skjótim", "verb", "skjótim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["skjót", "verb", "skjót", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["skytir", "verb", "skytir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["skytim", "verb", "skytim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["skytið", "verb", "skytið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["skauzk", "verb", "skauzk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["skutusk", "verb", "skutusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þrymr", "verb", "þrymr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hlotinn", "verb", "hlotinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hlotit", "verb", "hlotit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["bærim", "verb", "bærim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["heyrt", "verb", "heyrt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["heyrðan", "verb", "heyrðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["brugðit", "verb", "brugðit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["drúpa", "verb", "drúpa", "", "", "", "to droop hang"]) + let v = native_list_append(v, ["aukaði", "verb", "aukaði", "", "", "", "inflection of auka"]) + let v = native_list_append(v, ["aukaðisk", "verb", "aukaðisk", "", "", "", "inflection of auka"]) + let v = native_list_append(v, ["þegin", "verb", "þegin", "", "", "", "inflection of þeginn"]) + let v = native_list_append(v, ["þegins", "verb", "þegins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["fǫtu", "verb", "fǫtu", "", "", "", "accusative/dative/genitive singular of"]) + let v = native_list_append(v, ["grétu", "verb", "grétu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["mætta", "verb", "mætta", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["fellu", "verb", "fellu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fyllir", "verb", "fyllir", "", "", "", "inflection of fylla"]) + let v = native_list_append(v, ["fylldu", "verb", "fylldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fyllið", "verb", "fyllið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fyllisk", "verb", "fyllisk", "", "", "", "inflection of fylla"]) + let v = native_list_append(v, ["fylldir", "verb", "fylldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["fyllum", "verb", "fyllum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fyllim", "verb", "fyllim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["fylldum", "verb", "fylldum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fyllask", "verb", "fyllask", "", "", "", "inflection of fylla"]) + let v = native_list_append(v, ["rýk", "verb", "rýk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rjúkum", "verb", "rjúkum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["raukt", "verb", "raukt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["rjúkið", "verb", "rjúkið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["rjúkir", "verb", "rjúkir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["ortr", "verb", "ortr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sitir", "verb", "sitir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["eygðir", "verb", "eygðir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["fǫtur", "verb", "fǫtur", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["vituð", "verb", "vituð", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["sór", "verb", "sór", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["ǿpa", "verb", "ǿpi", "ǿptr", "ǿptr", "", "to cry out"]) + let v = native_list_append(v, ["klýfr", "verb", "klýfr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["kljúfið", "verb", "kljúfið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["klufu", "verb", "klufu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["rjóði", "verb", "rjóði", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["reista", "verb", "reista", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["ǿgja", "verb", "ǿgi", "ǿgðr", "ǿgðr", "", "to frighten"]) + let v = native_list_append(v, ["kunnu", "verb", "kunnu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["kunnir", "verb", "kunnir", "", "", "", "inflection of kunna"]) + let v = native_list_append(v, ["taoc", "verb", "taoc", "", "", "", "first/third-person singular present"]) + let v = native_list_append(v, ["rǿkir", "verb", "rǿkir", "", "", "", "inflection of rǿkja"]) + let v = native_list_append(v, ["rǿki", "verb", "rǿki", "", "", "", "inflection of rǿkja"]) + let v = native_list_append(v, ["fǿrðu", "verb", "fǿrðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["fǿrið", "verb", "fǿrið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["kneguð", "verb", "kneguð", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fǫrum", "verb", "fǫrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hratt", "verb", "hratt", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["berjǫndum", "verb", "berjǫndum", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["búǫndum", "verb", "búǫndum", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["búanda", "verb", "búanda", "", "", "", "inflection of búandi"]) + let v = native_list_append(v, ["vǫrðu", "verb", "vǫrðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["vǫrðuð", "verb", "vǫrðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["varðir", "verb", "varðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["keyrir", "verb", "keyrir", "", "", "", "inflection of keyra"]) + let v = native_list_append(v, ["keyri", "verb", "keyri", "", "", "", "inflection of keyra"]) + let v = native_list_append(v, ["keyrði", "verb", "keyrði", "", "", "", "inflection of keyra"]) + let v = native_list_append(v, ["keyrðu", "verb", "keyrðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["keyrim", "verb", "keyrim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["keyrum", "verb", "keyrum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["keyrið", "verb", "keyrið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["keyrða", "verb", "keyrða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["keyrðir", "verb", "keyrðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["keyrðuð", "verb", "keyrðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["keyrðim", "verb", "keyrðim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["keyrðið", "verb", "keyrðið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["talaði", "verb", "talaði", "", "", "", "inflection of tala"]) + let v = native_list_append(v, ["talaða", "verb", "talaða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["sneru", "verb", "sneru", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hlæ", "verb", "hlæ", "", "", "", "inflection of hlæja"]) + let v = native_list_append(v, ["ǿpir", "verb", "ǿpir", "", "", "", "inflection of ǿpa"]) + let v = native_list_append(v, ["hittusk", "verb", "hittusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["timbruðu", "verb", "timbruðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["timbraði", "verb", "timbraði", "", "", "", "inflection of timbra"]) + let v = native_list_append(v, ["timbraða", "verb", "timbraða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["vígðr", "verb", "vígðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vígðan", "verb", "vígðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["vígð", "verb", "vígð", "", "", "", "inflection of vígðr"]) + let v = native_list_append(v, ["þorða", "verb", "þorða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["þorði", "verb", "þorði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["þorðu", "verb", "þorðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þori", "verb", "þori", "", "", "", "inflection of þora"]) + let v = native_list_append(v, ["trúir", "verb", "trúir", "", "", "", "inflection of trúa"]) + let v = native_list_append(v, ["trúi", "verb", "trúi", "", "", "", "inflection of trúa"]) + let v = native_list_append(v, ["yrðir", "verb", "yrðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þverði", "verb", "þverði", "", "", "", "inflection of þverra"]) + let v = native_list_append(v, ["boraði", "verb", "boraði", "", "", "", "inflection of bora"]) + let v = native_list_append(v, ["lægðisk", "verb", "lægðisk", "", "", "", "inflection of lægja"]) + let v = native_list_append(v, ["numnar", "verb", "numnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["numin", "verb", "numin", "", "", "", "inflection of numinn"]) + let v = native_list_append(v, ["þolir", "verb", "þolir", "", "", "", "inflection of þola"]) + let v = native_list_append(v, ["þolum", "verb", "þolum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["þoldi", "verb", "þoldi", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["þoldu", "verb", "þoldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["þolda", "verb", "þolda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["þoldir", "verb", "þoldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þolið", "verb", "þolið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["kennir", "verb", "kennir", "", "", "", "inflection of kenna"]) + let v = native_list_append(v, ["kenndi", "verb", "kenndi", "", "", "", "inflection of kenna"]) + let v = native_list_append(v, ["kennduð", "verb", "kennduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["kenndu", "verb", "kenndu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["kennum", "verb", "kennum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kennda", "verb", "kennda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["kenndir", "verb", "kenndir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["kenndum", "verb", "kenndum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["kennið", "verb", "kennið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["kenni", "verb", "kenni", "", "", "", "inflection of kenna"]) + let v = native_list_append(v, ["kenndr", "verb", "kendr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kennds", "verb", "kennds", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["kenndan", "verb", "kenndan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["vissir", "verb", "vissir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["vissum", "verb", "vissum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["vissuð", "verb", "vissuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["undinna", "verb", "undinna", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["ljósundinna", "verb", "ljósundinna", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["innt", "verb", "innt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["innir", "verb", "innir", "", "", "", "inflection of inna"]) + let v = native_list_append(v, ["inntr", "verb", "inntr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kvazk", "verb", "kvazk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["kveðum", "verb", "kveðum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["kveðið", "verb", "kveðið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["kvazt", "verb", "kvazt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["greindir", "verb", "greindir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["greindar", "verb", "greindar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["fiðr", "verb", "fiðr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["kvǫddu", "verb", "kvǫddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["etjum", "verb", "etjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["eignuð", "verb", "eignuð", "", "", "", "inflection of eignaðr"]) + let v = native_list_append(v, ["eignuðum", "verb", "eignuðum", "", "", "", "inflection of eignaðr"]) + let v = native_list_append(v, ["eignaðan", "verb", "eignaðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["ǿpandi", "verb", "no-table-tags", "non-decl-cell", "ǿpanda", "", "present participle of"]) + let v = native_list_append(v, ["skyldir", "verb", "skyldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["þarfnask", "verb", "þarfnask", "", "", "", "inflection of þarfna"]) + let v = native_list_append(v, ["frævask", "verb", "frævask", "", "", "", "inflection of fræva"]) + let v = native_list_append(v, ["frjóvask", "verb", "frjóvask", "", "", "", "inflection of frjóva"]) + let v = native_list_append(v, ["þéa", "verb", "þéaðr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þéaðr", "verb", "þjáðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þéuð", "verb", "þéuð", "", "", "", "inflection of þéaðr"]) + let v = native_list_append(v, ["drekkum", "verb", "drekkum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["drekkið", "verb", "drekkið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fǿrðum", "verb", "fǿrðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["fǿrða", "verb", "fǿrða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["kljá", "verb", "kljáða", "kljáði", "kljáðr", "", "to attach weights"]) + let v = native_list_append(v, ["falla í val", "verb", "falla í val", "", "", "", "to fall in"]) + let v = native_list_append(v, ["blét", "verb", "blét", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["ríta", "verb", "rít", "reit", "ritinn", "", "to write"]) + let v = native_list_append(v, ["tefldu", "verb", "tefldu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["tefldi", "verb", "tefldi", "", "", "", "inflection of tefla"]) + let v = native_list_append(v, ["rítum", "verb", "rítum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["rítr", "verb", "rítr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["ǫlumk", "verb", "ǫlumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["krýpr", "verb", "krýpr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hnígið", "verb", "hnígið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["brugðu", "verb", "brugðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["sitjum", "verb", "sitjum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["sitið", "verb", "sitið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["borins", "verb", "borins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["borinna", "verb", "borinna", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["borinnar", "verb", "borinnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["borinni", "verb", "borinni", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["skjótandi", "verb", "skjótandi", "", "", "", "active present participle"]) + let v = native_list_append(v, ["skǫkum", "verb", "skǫkum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["skakið", "verb", "skakið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["sǫmdu", "verb", "sǫmdu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["píndu", "verb", "píndu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["pínda", "verb", "pínda", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hjalpi", "verb", "hjalpi", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["holpinn", "verb", "holpinn", "", "", "", "active past participle"]) + let v = native_list_append(v, ["blendr", "verb", "blendr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["blǫndum", "verb", "blǫndum", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["blandið", "verb", "blandið", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["glǫddu", "verb", "glǫddu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["glǫdduð", "verb", "glǫdduð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["smyrsk", "verb", "smyrsk", "", "", "", "inflection of smyrja"]) + let v = native_list_append(v, ["settu", "verb", "settu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["gefa gaum", "verb", "gefa gaum", "", "", "", "give heed"]) + let v = native_list_append(v, ["þóttuð", "verb", "þóttuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["þóttir", "verb", "þóttir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["skoðask", "verb", "skoðask", "", "", "", "inflection of skoða"]) + let v = native_list_append(v, ["skoðar", "verb", "skoðar", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["skyggnask", "verb", "skyggnask", "", "", "", "inflection of skyggna"]) + let v = native_list_append(v, ["opnask", "verb", "opnask", "", "", "", "inflection of opna"]) + let v = native_list_append(v, ["skoðaði", "verb", "skoðaði", "", "", "", "inflection of skoða"]) + let v = native_list_append(v, ["stǿra", "verb", "stǿri", "stǿrðr", "stǿrðr", "", "to make great"]) + let v = native_list_append(v, ["spázera", "verb", "spázera", "", "", "", "to walk to"]) + let v = native_list_append(v, ["grǿta", "verb", "grǿti", "grǿtti", "grǿttr", "", "to make someone"]) + let v = native_list_append(v, ["grǿttr", "verb", "grǿttr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["grǿtta", "verb", "grǿtta", "", "", "", "inflection of grǿttr"]) + let v = native_list_append(v, ["bœta", "verb", "bœta", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["boðinn", "verb", "boðinn", "", "", "", "active past participle"]) + let v = native_list_append(v, ["þveginn", "verb", "þveginn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["þvær", "verb", "þvær", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bǫ́ðum", "verb", "bǫ́ðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hǫfnum", "verb", "hǫfnum", "", "", "", "inflection of hafna"]) + let v = native_list_append(v, ["gáfumk", "verb", "gáfumk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["gefumk", "verb", "gefumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["erumk", "verb", "erumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fórsk", "verb", "fórsk", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["raktisk", "verb", "raktisk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["rakðisk", "verb", "rakðisk", "", "", "", "second/third-person singular past"]) + let v = native_list_append(v, ["starði", "verb", "starði", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["drepinn", "verb", "drepinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["drepins", "verb", "drepins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["borðróins", "verb", "borðróins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["drepit", "verb", "drepit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["drepnir", "verb", "drepnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["róinn", "verb", "róinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["róit", "verb", "róit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hrokkinn", "verb", "hrokkinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hrokkit", "verb", "hrokkit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["signir", "verb", "signir", "", "", "", "inflection of signa"]) + let v = native_list_append(v, ["freistaði", "verb", "freistaði", "", "", "", "inflection of freista"]) + let v = native_list_append(v, ["hrýss", "verb", "hrýss", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["heita á", "verb", "hét á", "hétu á", "áheitinn", "", "to call upon"]) + let v = native_list_append(v, ["hét á", "verb", "hét á", "", "", "", "first/third-person singular past"]) + let v = native_list_append(v, ["sagðan", "verb", "sagðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hyggjum", "verb", "hyggjum", "", "", "", "inflection of hyggja"]) + let v = native_list_append(v, ["hyggið", "verb", "hyggið", "", "", "", "inflection of hyggja"]) + let v = native_list_append(v, ["hyggir", "verb", "hyggir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["hyggim", "verb", "hyggim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["hugðir", "verb", "hugðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hugðum", "verb", "hugðum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hugðuð", "verb", "hugðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hygðir", "verb", "hygðir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["hygði", "verb", "hygði", "", "", "", "third-person singular/plural past"]) + let v = native_list_append(v, ["hygðim", "verb", "hygðim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hygðið", "verb", "hygðið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["hyggjumk", "verb", "hyggjumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["hyggsk", "verb", "hyggsk", "", "", "", "inflection of hyggja"]) + let v = native_list_append(v, ["bǿta", "verb", "bǿti", "bǿtti", "bǿttr", "", "to improve to"]) + let v = native_list_append(v, ["biða", "verb", "biða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["blǿt", "verb", "blǿt", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["blǿtr", "verb", "blǿtr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["blétu", "verb", "blétu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["blétim", "verb", "blétim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["hlœgja", "verb", "hlœgi", "beygðr", "beygðr", "", "to make someone"]) + let v = native_list_append(v, ["tjaldaðr", "verb", "tjaldaðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tjǫlduð", "verb", "tjǫlduð", "", "", "", "inflection of tjaldaðr"]) + let v = native_list_append(v, ["tjaldat", "verb", "tjaldat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["timbraðr", "verb", "timbraðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["timbruðum", "verb", "timbruðum", "", "", "", "inflection of timbraðr"]) + let v = native_list_append(v, ["hátimbraðr", "verb", "hátimbraðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hátimbruðum", "verb", "hátimbruðum", "", "", "", "inflection of hátimbraðr"]) + let v = native_list_append(v, ["hátimbra", "verb", "hátimbraða", "hátimbraði", "hátimbraðr", "", "to timber on"]) + let v = native_list_append(v, ["hátimbruðu", "verb", "hátimbruðu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["setjandi", "verb", "setjandi", "", "", "", "active present participle"]) + let v = native_list_append(v, ["setjum", "verb", "setjum", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["settum", "verb", "settum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["setið", "verb", "setið", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["settuð", "verb", "settuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["settim", "verb", "settim", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["settið", "verb", "settið", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["setjask", "verb", "setjask", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["setjandisk", "verb", "setjandisk", "", "", "", "mediopassive present participle"]) + let v = native_list_append(v, ["sezk", "verb", "sezk", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["setjumk", "verb", "setjumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["settumk", "verb", "settumk", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["settisk", "verb", "settisk", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["setjumsk", "verb", "setjumsk", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["settumsk", "verb", "settumsk", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["setizk", "verb", "setizk", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["settuzk", "verb", "settuzk", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["settusk", "verb", "settusk", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["setisk", "verb", "setisk", "", "", "", "inflection of setja"]) + let v = native_list_append(v, ["setimsk", "verb", "setimsk", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["settimsk", "verb", "settimsk", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["settizk", "verb", "settizk", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["fǿddr", "verb", "fǿddr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["njóti", "verb", "njóti", "", "", "", "third-person singular/plural present"]) + let v = native_list_append(v, ["notinn", "verb", "notinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["notit", "verb", "notit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fǿðir", "verb", "fǿðir", "", "", "", "inflection of fǿða"]) + let v = native_list_append(v, ["heyrðuð", "verb", "heyrðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["ríðum", "verb", "ríðum", "", "", "", "inflection of ríða"]) + let v = native_list_append(v, ["vána", "verb", "vánaða", "vánar", "vánaðr", "", "to hope"]) + let v = native_list_append(v, ["ræda", "verb", "ræda", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["síðim", "verb", "síðim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["leggjumk", "verb", "leggjumk", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["fara dulðr", "verb", "fara dulðr", "", "", "", "to be ignorant"]) + let v = native_list_append(v, ["dulðr", "verb", "duldr", "duliðr", "", "", "past participle of"]) + let v = native_list_append(v, ["dyldir", "verb", "dyldir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["dyljandi", "verb", "dyljandi", "", "", "", "present participle of"]) + let v = native_list_append(v, ["megja", "verb", "megja", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hefr", "verb", "hefr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hafim", "verb", "hafim", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["varðan", "verb", "varðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["glæsa", "verb", "glæsa", "", "", "", "to make shining"]) + let v = native_list_append(v, ["fórt", "verb", "fórt", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["drógum", "verb", "drógum", "", "", "", "first-person plural past"]) + let v = native_list_append(v, ["seyra", "verb", "seyri", "seyrðr", "seyrðr", "", "to fester"]) + let v = native_list_append(v, ["sánum", "verb", "sánum", "", "", "", "inflection of sáinn"]) + let v = native_list_append(v, ["knǫ́ttu", "verb", "knǫ́ttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hrundinn", "verb", "hrundinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hrundin", "verb", "hrundin", "", "", "", "inflection of hrundinn"]) + let v = native_list_append(v, ["mǿttu", "verb", "mǿttu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["liggir", "verb", "liggir", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["lægir", "verb", "lægir", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["vekr", "verb", "vekr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["vakða", "verb", "vakða", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["hljópu", "verb", "hljópu", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["hleypr", "verb", "hleypr", "", "", "", "second/third-person singular present"]) + let v = native_list_append(v, ["hlaupum", "verb", "hlaupum", "", "", "", "inflection of hlaupa"]) + let v = native_list_append(v, ["brugðuð", "verb", "brugðuð", "", "", "", "second-person plural past"]) + let v = native_list_append(v, ["art", "adj", "art", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sama", "adj", "sama", "", "", "", "inflection of samr"]) + let v = native_list_append(v, ["ber", "adj", "ber", "", "", "", "inflection of berr"]) + let v = native_list_append(v, ["salt", "adj", "salt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["full", "adj", "full", "", "", "", "inflection of fullr"]) + let v = native_list_append(v, ["svenska", "adj", "svenska", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["hart", "adj", "hart", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["laus", "adj", "laus", "", "", "", "inflection of lauss"]) + let v = native_list_append(v, ["kalt", "adj", "kalt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mjúkr", "adj", "mjúkr", "", "", "", "soft"]) + let v = native_list_append(v, ["mart", "adj", "mart", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hol", "adj", "hol", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["ungar", "adj", "ungar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["ein", "adj", "ein", "", "", "", "inflection of einn"]) + let v = native_list_append(v, ["ill", "adj", "ill", "", "", "", "inflection of illr"]) + let v = native_list_append(v, ["saltar", "adj", "saltar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["laki", "adj", "laki", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["gilt", "adj", "gilt", "", "", "", "strong neuter nominative"]) + let v = native_list_append(v, ["alla", "adj", "alla", "", "", "", "inflection of allr"]) + let v = native_list_append(v, ["halt", "adj", "halt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mitt", "adj", "mitt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["raga", "adj", "raga", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["gula", "adj", "gula", "", "", "", "inflection of gulr"]) + let v = native_list_append(v, ["grá", "adj", "grá", "", "", "", "inflection of grár"]) + let v = native_list_append(v, ["varma", "adj", "varma", "", "", "", "inflection of varmr"]) + let v = native_list_append(v, ["lek", "adj", "lek", "", "", "", "inflection of lekr"]) + let v = native_list_append(v, ["vart", "adj", "vart", "", "vǫr", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["svensk", "adj", "svensk", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["vint", "adj", "vint", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["svenskum", "adj", "svenskum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["sami", "adj", "sami", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["heid", "adj", "heid", "", "", "", "gleaming"]) + let v = native_list_append(v, ["allt", "adj", "allt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["bær", "adj", "bær", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["bera", "adj", "bera", "", "", "", "inflection of berr"]) + let v = native_list_append(v, ["blár", "adj", "blár", "", "blá", "", "blue often denoting"]) + let v = native_list_append(v, ["dauði", "adj", "dauði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["einn", "adj", "einn", "", "", "", "alone single"]) + let v = native_list_append(v, ["fá", "adj", "fá", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["gamall", "adj", "ellri", "ellztr", "", "", "old"]) + let v = native_list_append(v, ["hár", "adj", "hærri", "hæstr", "", "", "high tall"]) + let v = native_list_append(v, ["heilbrigði", "adj", "heilbrigði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["heill", "adj", "heill", "", "", "", "whole"]) + let v = native_list_append(v, ["hlýr", "adj", "hlýr", "", "", "", "warm mild"]) + let v = native_list_append(v, ["hrár", "adj", "hrár", "", "hrá", "", "raw"]) + let v = native_list_append(v, ["hreinn", "adj", "hreinni", "hreinstr", "", "", "clean"]) + let v = native_list_append(v, ["hvass", "adj", "hvass", "", "", "", "sharp keen"]) + let v = native_list_append(v, ["langt", "adj", "langt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["mein", "adj", "mein", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["lítill", "adj", "minni", "minnstr", "", "", "little small short"]) + let v = native_list_append(v, ["margir", "adj", "margir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["meira", "adj", "meira", "", "", "", "inflection of mikill"]) + let v = native_list_append(v, ["miðja", "adj", "miðja", "", "", "", "inflection of miðr"]) + let v = native_list_append(v, ["nakinn", "adj", "nakinn", "", "", "", "naked"]) + let v = native_list_append(v, ["nýr", "adj", "nýjari", "nýjastr", "", "", "new"]) + let v = native_list_append(v, ["opna", "adj", "opna", "", "", "", "inflection of opinn"]) + let v = native_list_append(v, ["saman", "adj", "saman", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["sár", "adj", "sár", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["síðan", "adj", "síðan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["stór", "adj", "stór", "", "", "", "inflection of stórr"]) + let v = native_list_append(v, ["trúa", "adj", "trúa", "", "", "", "inflection of trúr"]) + let v = native_list_append(v, ["átta", "adj", "átta", "", "", "", "inflection of átti"]) + let v = native_list_append(v, ["fræ", "adj", "fræ", "", "", "", "inflection of frær"]) + let v = native_list_append(v, ["leika", "adj", "leika", "", "", "", "inflection of leikr"]) + let v = native_list_append(v, ["beinn", "adj", "beinari", "beinastr", "", "", "straight right"]) + let v = native_list_append(v, ["þurr", "adj", "þurrari", "þurrastr", "", "", "dry"]) + let v = native_list_append(v, ["þýða", "adj", "þýða", "", "", "", "inflection of þýðr"]) + let v = native_list_append(v, ["ills", "adj", "ills", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["gild", "adj", "gild", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["langa", "adj", "langa", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["gott", "adj", "gott", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["annars", "adj", "annars", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["sæll", "adj", "sælari", "sælastr", "", "", "happy blessed fortunate"]) + let v = native_list_append(v, ["gamla", "adj", "gamla", "", "", "", "inflection of gamall"]) + let v = native_list_append(v, ["forn", "adj", "fornari", "fornastr", "", "", "old ancient"]) + let v = native_list_append(v, ["mikill", "adj", "meiri", "mestr", "", "", "great tall of"]) + let v = native_list_append(v, ["smár", "adj", "smærri", "smæstr", "", "", "small"]) + let v = native_list_append(v, ["tíð", "adj", "tíð", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["helgi", "adj", "helgi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["þrá", "adj", "þrá", "", "", "", "inflection of þrár"]) + let v = native_list_append(v, ["vill", "adj", "vill", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["minni", "adj", "minni", "minnstr", "minnum", "", "less smaller comparative"]) + let v = native_list_append(v, ["trú", "adj", "trú", "", "", "", "inflection of trúr"]) + let v = native_list_append(v, ["svala", "adj", "svala", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["mær", "adj", "mær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["betri", "adj", "betri", "", "betrum", "", "better comparative degree"]) + let v = native_list_append(v, ["unga", "adj", "unga", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["rags", "adj", "rags", "", "", "", "strong masculine genitive"]) + let v = native_list_append(v, ["annan", "adj", "annan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["argan", "adj", "argan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["heil", "adj", "heil", "", "", "", "feminine singular indefinite"]) + let v = native_list_append(v, ["hýr", "adj", "hýr", "", "", "", "inflection of hýrr"]) + let v = native_list_append(v, ["langar", "adj", "langar", "", "", "", "feminine plural nominative/accusative"]) + let v = native_list_append(v, ["vinda", "adj", "vinda", "", "", "", "inflection of vindr"]) + let v = native_list_append(v, ["beru", "adj", "beru", "", "", "", "inflection of berr"]) + let v = native_list_append(v, ["fár", "adj", "færri", "fæstr", "", "", "few"]) + let v = native_list_append(v, ["lekar", "adj", "lekar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["henti", "adj", "henti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["beri", "adj", "beri", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["langi", "adj", "langi", "", "", "", "weak masculine singular"]) + let v = native_list_append(v, ["marga", "adj", "marga", "", "", "", "inflection of margr"]) + let v = native_list_append(v, ["varr", "adj", "varr", "", "", "", "aware"]) + let v = native_list_append(v, ["eina", "adj", "eina", "", "", "", "inflection of einn"]) + let v = native_list_append(v, ["danska", "adj", "danska", "", "", "", "inflection of danskr"]) + let v = native_list_append(v, ["fæstan", "adj", "fæstan", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["stríða", "adj", "stríða", "", "", "", "inflection of stríðr"]) + let v = native_list_append(v, ["leki", "adj", "leki", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["nær", "adj", "nær", "", "", "", "nearer"]) + let v = native_list_append(v, ["rauðr", "adj", "rauðari", "rauðastr", "", "", "red"]) + let v = native_list_append(v, ["hvítr", "adj", "hvítari", "hvítastr", "", "", "white"]) + let v = native_list_append(v, ["svartr", "adj", "svartari", "svartastr", "", "", "black"]) + let v = native_list_append(v, ["skarpr", "adj", "skarpari", "skarpastr", "", "", "sharp"]) + let v = native_list_append(v, ["samr", "adj", "samr", "", "sǫm", "", "the same"]) + let v = native_list_append(v, ["sjúkr", "adj", "sjúkr", "", "", "", "sick"]) + let v = native_list_append(v, ["breiðr", "adj", "breiðari", "breiðastr", "", "", "broad"]) + let v = native_list_append(v, ["dauðr", "adj", "dauðr", "", "", "", "dead"]) + let v = native_list_append(v, ["djúpr", "adj", "djúpari", "djúpastr", "", "", "deep"]) + let v = native_list_append(v, ["fagr", "adj", "fagrari", "fagrastr", "", "", "beautiful fair"]) + let v = native_list_append(v, ["fastr", "adj", "fastr", "", "", "", "fast firm sticking"]) + let v = native_list_append(v, ["góðr", "adj", "betri", "beztr", "", "", "good righteous morally"]) + let v = native_list_append(v, ["harðr", "adj", "harðr", "", "", "", "hard"]) + let v = native_list_append(v, ["heitr", "adj", "heitari", "heitastr", "", "", "hot"]) + let v = native_list_append(v, ["kaldr", "adj", "kaldr", "", "", "", "cold"]) + let v = native_list_append(v, ["langr", "adj", "lengri", "lengstr", "", "", "long far distant"]) + let v = native_list_append(v, ["latr", "adj", "latari", "latastr", "", "", "lazy slow"]) + let v = native_list_append(v, ["lágr", "adj", "lægri", "lægstr", "", "", "low"]) + let v = native_list_append(v, ["léttr", "adj", "léttr", "", "", "", "light"]) + let v = native_list_append(v, ["réttr", "adj", "réttr", "", "", "", "right"]) + let v = native_list_append(v, ["saðr", "adj", "sannari", "sannastr", "", "", "true"]) + let v = native_list_append(v, ["sannr", "adj", "sannr", "", "", "", "true"]) + let v = native_list_append(v, ["staðr", "adj", "staðr", "", "", "", "restive of a"]) + let v = native_list_append(v, ["sterkr", "adj", "sterkr", "", "", "", "strong"]) + let v = native_list_append(v, ["strangr", "adj", "strangr", "", "", "", "severe"]) + let v = native_list_append(v, ["sœtr", "adj", "sœtari", "sœtastr", "", "", "alternative form of"]) + let v = native_list_append(v, ["tamr", "adj", "tamr", "", "", "", "tame"]) + let v = native_list_append(v, ["hryggr", "adj", "hryggvari", "hryggvastr", "", "", "afflicted grieved sad"]) + let v = native_list_append(v, ["tryggr", "adj", "tryggr", "", "", "", "loyal faithful true"]) + let v = native_list_append(v, ["þykkr", "adj", "þykkvari", "þykkvastr", "", "", "thick"]) + let v = native_list_append(v, ["þunnr", "adj", "þunnr", "", "", "", "thin"]) + let v = native_list_append(v, ["veikr", "adj", "veikari", "veikastr", "", "", "pliant"]) + let v = native_list_append(v, ["villr", "adj", "villr", "", "", "", "wild"]) + let v = native_list_append(v, ["rangr", "adj", "rangr", "", "", "", "twisted"]) + let v = native_list_append(v, ["reiðr", "adj", "reiðr", "", "", "", "angry"]) + let v = native_list_append(v, ["varmr", "adj", "varmari", "varmastr", "", "", "warm"]) + let v = native_list_append(v, ["bjartr", "adj", "bjartr", "", "", "", "bright"]) + let v = native_list_append(v, ["annarr", "adj", "annarr", "", "ǫnnur", "", "other another second"]) + let v = native_list_append(v, ["armr", "adj", "armari", "armastr", "", "", "poor unhappy"]) + let v = native_list_append(v, ["allr", "adj", "allr", "", "ǫll", "", "all entire whole"]) + let v = native_list_append(v, ["argr", "adj", "argr", "", "", "", "unmanly effeminate cowardly"]) + let v = native_list_append(v, ["ungr", "adj", "yngri", "yngstr", "ǿri", "", "young"]) + let v = native_list_append(v, ["ríkr", "adj", "ríkr", "", "", "", "mighty powerful"]) + let v = native_list_append(v, ["fullr", "adj", "fullari", "fullastr", "", "", "full"]) + let v = native_list_append(v, ["tómr", "adj", "tómr", "", "", "", "empty"]) + let v = native_list_append(v, ["þreyttr", "adj", "þreyttr", "", "", "", "tired"]) + let v = native_list_append(v, ["þrǫngr", "adj", "þrǫngr", "", "", "", "narrow close tight"]) + let v = native_list_append(v, ["þungr", "adj", "þyngri", "þyngstr", "", "", "heavy"]) + let v = native_list_append(v, ["stuttr", "adj", "stuttr", "", "", "", "short"]) + let v = native_list_append(v, ["svalr", "adj", "svalari", "svalastr", "", "", "cool cold"]) + let v = native_list_append(v, ["blautr", "adj", "blautr", "", "", "", "wet"]) + let v = native_list_append(v, ["vátr", "adj", "vátr", "", "", "", "wet"]) + let v = native_list_append(v, ["þyrstr", "adj", "þyrstr", "", "", "", "thirsty"]) + let v = native_list_append(v, ["dapr", "adj", "dapr", "", "", "", "sad"]) + let v = native_list_append(v, ["døkkr", "adj", "døkkr", "", "", "", "dark"]) + let v = native_list_append(v, ["vándr", "adj", "verri", "verstr", "", "", "evil"]) + let v = native_list_append(v, ["ferskr", "adj", "ferskr", "", "", "", "fresh"]) + let v = native_list_append(v, ["auðr", "adj", "auðr", "", "", "", "desolate"]) + let v = native_list_append(v, ["bitr", "adj", "bitr", "", "", "", "bitter"]) + let v = native_list_append(v, ["brún", "adj", "brún", "", "", "", "inflection of brúnn"]) + let v = native_list_append(v, ["daufr", "adj", "daufr", "", "", "", "deaf"]) + let v = native_list_append(v, ["miðr", "adj", "miðr", "", "mið", "", "middle"]) + let v = native_list_append(v, ["kvikr", "adj", "kvikr", "", "", "", "alive"]) + let v = native_list_append(v, ["víðr", "adj", "víðr", "", "", "", "wide"]) + let v = native_list_append(v, ["gulr", "adj", "gulr", "", "", "", "yellow"]) + let v = native_list_append(v, ["salts", "adj", "salts", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["dýrr", "adj", "dýrri", "dýrstr", "", "", "dear valuable"]) + let v = native_list_append(v, ["grár", "adj", "grár", "", "grá", "", "grey"]) + let v = native_list_append(v, ["berr", "adj", "berr", "", "ber", "", "bare"]) + let v = native_list_append(v, ["blindr", "adj", "blindr", "", "", "", "blind"]) + let v = native_list_append(v, ["kærr", "adj", "kærari", "kærastr", "", "", "dear"]) + let v = native_list_append(v, ["líkr", "adj", "líkr", "", "", "", "same like equal"]) + let v = native_list_append(v, ["nǫkkviðr", "adj", "nǫkkviðr", "", "", "", "naked"]) + let v = native_list_append(v, ["súrr", "adj", "súrari", "súrastr", "", "", "sour"]) + let v = native_list_append(v, ["meiri", "adj", "meiri", "mestr", "meirum", "", "comparative degree of"]) + let v = native_list_append(v, ["mestr", "adj", "mestr", "", "mest", "", "superlative degree of"]) + let v = native_list_append(v, ["magr", "adj", "magrari", "magrastr", "", "", "thin"]) + let v = native_list_append(v, ["argi", "adj", "argi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["sléttr", "adj", "sléttr", "", "", "", "even"]) + let v = native_list_append(v, ["jafn", "adj", "jafnari", "jafnastr", "", "", "even number"]) + let v = native_list_append(v, ["eiginn", "adj", "eiginn", "", "", "", "own proper"]) + let v = native_list_append(v, ["feigi", "adj", "feigi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["feigr", "adj", "feigr", "", "", "", "fey doomed to"]) + let v = native_list_append(v, ["frekr", "adj", "frekr", "", "", "", "brazen shameless or"]) + let v = native_list_append(v, ["gnógr", "adj", "gnógari", "gnógastr", "", "", "enough abundant sufficient"]) + let v = native_list_append(v, ["hraðr", "adj", "hraðr", "", "", "", "fast"]) + let v = native_list_append(v, ["glaðr", "adj", "glaðari", "glaðastr", "", "", "glad"]) + let v = native_list_append(v, ["heilagr", "adj", "helgari", "helgastr", "", "", "holy"]) + let v = native_list_append(v, ["hás", "adj", "hás", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["leiðr", "adj", "leiðr", "", "", "", "uncomfortable"]) + let v = native_list_append(v, ["lauss", "adj", "lausari", "lausastr", "", "", "loose"]) + let v = native_list_append(v, ["mildr", "adj", "mildari", "mildastr", "", "", "mild"]) + let v = native_list_append(v, ["holr", "adj", "holr", "", "", "", "hollow"]) + let v = native_list_append(v, ["há", "adj", "há", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["langs", "adj", "langs", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["leka", "adj", "leka", "", "", "", "inflection of lekr"]) + let v = native_list_append(v, ["smalr", "adj", "smalr", "", "", "", "small"]) + let v = native_list_append(v, ["hagi", "adj", "hagi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["halla", "adj", "halla", "", "", "", "inflection of hallr"]) + let v = native_list_append(v, ["vitrum", "adj", "vitrum", "", "", "", "inflection of vitr"]) + let v = native_list_append(v, ["vind", "adj", "vind", "", "", "", "inflection of vindr"]) + let v = native_list_append(v, ["salta", "adj", "salta", "", "", "", "inflection of saltr"]) + let v = native_list_append(v, ["saltan", "adj", "saltan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["saltara", "adj", "saltara", "", "", "", "inflection of saltr"]) + let v = native_list_append(v, ["sams", "adj", "sams", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["satt", "adj", "satt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["salti", "adj", "salti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["stríð", "adj", "stríð", "", "", "", "inflection of stríðr"]) + let v = native_list_append(v, ["vindr", "adj", "vindr", "", "vind", "", "awry"]) + let v = native_list_append(v, ["geng", "adj", "geng", "", "", "", "inflection of gengr"]) + let v = native_list_append(v, ["brúnn", "adj", "brúnn", "", "", "", "brown"]) + let v = native_list_append(v, ["minna", "adj", "minna", "", "", "", "inflection of minni"]) + let v = native_list_append(v, ["vísa", "adj", "vísa", "", "", "", "inflection of víss"]) + let v = native_list_append(v, ["meina", "adj", "meina", "", "", "", "inflection of meinn"]) + let v = native_list_append(v, ["bert", "adj", "bert", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["ungi", "adj", "ungi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["góða", "adj", "góða", "", "", "", "inflection of góðr"]) + let v = native_list_append(v, ["fyrri", "adj", "fyrri", "fyrstr", "fyrrum", "", "former first out"]) + let v = native_list_append(v, ["stórum", "adj", "stórum", "", "", "", "inflection of stórr"]) + let v = native_list_append(v, ["fleiri", "adj", "fleiri", "flestr", "fleirum", "", "comparative degree of"]) + let v = native_list_append(v, ["dýrt", "adj", "dýrt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["gamli", "adj", "gamli", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["fáir", "adj", "fáir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["nýtt", "adj", "nýtt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["alls", "adj", "alls", "", "", "", "inflection of allr"]) + let v = native_list_append(v, ["smátt", "adj", "smátt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["góði", "adj", "góði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["mikil", "adj", "mikil", "", "", "", "inflection of mikill"]) + let v = native_list_append(v, ["eini", "adj", "eini", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["heiðinn", "adj", "heiðinn", "", "", "", "heathen pagan"]) + let v = native_list_append(v, ["laks", "adj", "laks", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["annat", "adj", "annat", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["halfs", "adj", "halfs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["illan", "adj", "illan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["lekan", "adj", "lekan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["áttu", "adj", "áttu", "", "", "", "inflection of átti"]) + let v = native_list_append(v, ["einni", "adj", "einni", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["einnar", "adj", "einnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["einar", "adj", "einar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["einu", "adj", "einu", "", "", "", "inflection of einn"]) + let v = native_list_append(v, ["einna", "adj", "einna", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["leiki", "adj", "leiki", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["leikit", "adj", "leikit", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["víðir", "adj", "víðir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["fjórði", "adj", "fjórði", "", "fjórða", "", "fourth"]) + let v = native_list_append(v, ["leikari", "adj", "leikari", "", "leikurum", "", "comparative degree of"]) + let v = native_list_append(v, ["hallr", "adj", "hallr", "", "", "", "leaning to one"]) + let v = native_list_append(v, ["heiðr", "adj", "heiðari", "heiðastr", "", "", "bright clear cloudless"]) + let v = native_list_append(v, ["leks", "adj", "leks", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vreiðr", "adj", "vreiðr", "", "", "", "angry wroth"]) + let v = native_list_append(v, ["yngri", "adj", "yngri", "", "yngrum", "", "younger"]) + let v = native_list_append(v, ["staða", "adj", "staða", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["hátt", "adj", "hátt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["lakan", "adj", "lakan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["dimmi", "adj", "dimmi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["átti", "adj", "átti", "", "átta", "", "eighth"]) + let v = native_list_append(v, ["þrár", "adj", "þrár", "", "þrá", "", "stubborn obstinate"]) + let v = native_list_append(v, ["leikin", "adj", "leikin", "", "", "", "inflection of leikinn"]) + let v = native_list_append(v, ["fríðr", "adj", "fríðr", "", "", "", "lovely beautiful fair"]) + let v = native_list_append(v, ["aðrar", "adj", "aðrar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["illum", "adj", "illum", "", "", "", "inflection of illr"]) + let v = native_list_append(v, ["jafna", "adj", "jafna", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hræddr", "adj", "hræddr", "", "", "", "afraid"]) + let v = native_list_append(v, ["svangr", "adj", "svangr", "", "", "", "slender slim thin"]) + let v = native_list_append(v, ["danskr", "adj", "danskr", "", "", "", "Danish"]) + let v = native_list_append(v, ["íllr", "adj", "verri", "verstr", "", "", "evil bad"]) + let v = native_list_append(v, ["hindra", "adj", "hindra", "", "", "", "masculine oblique cases"]) + let v = native_list_append(v, ["laka", "adj", "laka", "", "", "", "inflection of lakr"]) + let v = native_list_append(v, ["hverfa", "adj", "hverfa", "", "", "", "inflection of hverfr"]) + let v = native_list_append(v, ["sljór", "adj", "sljór", "", "", "", "blunt"]) + let v = native_list_append(v, ["veik", "adj", "veik", "", "", "", "inflection of veikr"]) + let v = native_list_append(v, ["stórr", "adj", "stœrri", "stœrstr", "", "", "big large tall"]) + let v = native_list_append(v, ["heilan", "adj", "heilan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["rautt", "adj", "rautt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["langan", "adj", "langan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["rangan", "adj", "rangan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["sannan", "adj", "sannan", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["varman", "adj", "varman", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["rár", "adj", "rár", "", "", "", "crooked"]) + let v = native_list_append(v, ["stutt", "adj", "stutt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["trygt", "adj", "trygt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["kristinn", "adj", "kristinn", "", "", "", "Christian belonging to"]) + let v = native_list_append(v, ["stóra", "adj", "stóra", "", "", "", "inflection of stórr"]) + let v = native_list_append(v, ["rýr", "adj", "rýr", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["rýra", "adj", "rýra", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["helga", "adj", "helga", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["títt", "adj", "títt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vindu", "adj", "vindu", "", "", "", "inflection of vindr"]) + let v = native_list_append(v, ["samt", "adj", "samt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["verri", "adj", "verri", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["víð", "adj", "víð", "", "", "", "inflection of víðr"]) + let v = native_list_append(v, ["hárs", "adj", "hárs", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["feginn", "adj", "feginn", "", "", "", "glad joyful"]) + let v = native_list_append(v, ["brezkr", "adj", "brezkr", "", "", "", "Welsh Brythonic British"]) + let v = native_list_append(v, ["ógurligr", "adj", "ógurligr", "", "", "", "awful"]) + let v = native_list_append(v, ["efstan", "adj", "efstan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["bleik", "adj", "bleik", "", "", "", "inflection of bleikr"]) + let v = native_list_append(v, ["hent", "adj", "hent", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["tóm", "adj", "tóm", "", "", "", "inflection of tómr"]) + let v = native_list_append(v, ["fræva", "adj", "fræva", "", "", "", "inflection of frær"]) + let v = native_list_append(v, ["hám", "adj", "hám", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["mjór", "adj", "mjór", "", "", "", "thin slender slim"]) + let v = native_list_append(v, ["fúss", "adj", "fúsari", "fúsastr", "", "", "willing longing"]) + let v = native_list_append(v, ["tigna", "adj", "tigna", "", "", "", "inflection of tiginn"]) + let v = native_list_append(v, ["feitr", "adj", "feitari", "feitastr", "", "", "fat"]) + let v = native_list_append(v, ["blindan", "adj", "blindan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["samar", "adj", "samar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["grœnn", "adj", "grœnni", "grœnstr", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fám", "adj", "fám", "", "", "", "inflection of fár"]) + let v = native_list_append(v, ["illu", "adj", "illu", "", "", "", "inflection of illr"]) + let v = native_list_append(v, ["nógr", "adj", "nógari", "nógastr", "", "", "abundant sufficient"]) + let v = native_list_append(v, ["yngst", "adj", "yngst", "", "", "", "inflection of ungr"]) + let v = native_list_append(v, ["hvǫss", "adj", "hvǫss", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["undarligr", "adj", "undarligr", "", "", "", "strange wondrous"]) + let v = native_list_append(v, ["auðigr", "adj", "auðigri", "auðgastr", "", "", "rich wealthy"]) + let v = native_list_append(v, ["aptari", "adj", "aptari", "aptastr", "ǫpturum", "", "aftermost hindmost later"]) + let v = native_list_append(v, ["hverfi", "adj", "hverfi", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["reginkunnr", "adj", "reginkunnr", "", "", "", "sprung from the"]) + let v = native_list_append(v, ["þyrsta", "adj", "þyrsta", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["leku", "adj", "leku", "", "", "", "inflection of lekr"]) + let v = native_list_append(v, ["hýrr", "adj", "hýrr", "", "", "", "smiling pleasant mild"]) + let v = native_list_append(v, ["nýt", "adj", "nýt", "", "", "", "inflection of nýtr"]) + let v = native_list_append(v, ["saltir", "adj", "saltir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["þéttr", "adj", "þéttr", "", "", "", "tight watertight"]) + let v = native_list_append(v, ["sáran", "adj", "sáran", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["efri", "adj", "efri", "efstr", "efrum", "", "upper"]) + let v = native_list_append(v, ["vinds", "adj", "vinds", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["tíundi", "adj", "tíundi", "", "tíunda", "", "tenth"]) + let v = native_list_append(v, ["uggligr", "adj", "uggligr", "", "", "", "feared"]) + let v = native_list_append(v, ["gilda", "adj", "gilda", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["vitra", "adj", "vitra", "", "", "", "inflection of vitr"]) + let v = native_list_append(v, ["kyrr", "adj", "kyr", "kyr", "", "", "still quiet at"]) + let v = native_list_append(v, ["trygg", "adj", "trygg", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["birg", "adj", "birg", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["fegra", "adj", "fegra", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["svenskar", "adj", "svenskar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["deigr", "adj", "deigr", "", "", "", "soft of metal"]) + let v = native_list_append(v, ["meint", "adj", "meint", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["halft", "adj", "halft", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["berri", "adj", "berri", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vant", "adj", "vant", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["fornir", "adj", "fornir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["visna", "adj", "visna", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["fullt", "adj", "fullt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["svalan", "adj", "svalan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["svenskan", "adj", "svenskan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["vestri", "adj", "vestri", "vestastr", "vestrum", "", "more westerly"]) + let v = native_list_append(v, ["saltari", "adj", "saltari", "", "", "", "inflection of saltr"]) + let v = native_list_append(v, ["dofinn", "adj", "dofinn", "", "", "", "dead"]) + let v = native_list_append(v, ["fornum", "adj", "fornum", "", "", "", "inflection of forn"]) + let v = native_list_append(v, ["mildan", "adj", "mildan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["allra", "adj", "allra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["kristna", "adj", "kristna", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["vindar", "adj", "vindar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["svalar", "adj", "svalar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["lakar", "adj", "lakar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["varmt", "adj", "varmt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["argt", "adj", "argt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["arga", "adj", "arga", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["argast", "adj", "argast", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["svalt", "adj", "svalt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["tignum", "adj", "tignum", "", "", "", "inflection of tiginn"]) + let v = native_list_append(v, ["mærr", "adj", "mærri", "mærstr", "", "", "famous glorious illustrious"]) + let v = native_list_append(v, ["lengra", "adj", "lengra", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["forns", "adj", "forns", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["fornt", "adj", "fornt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["vindan", "adj", "vindan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["fimmti", "adj", "fimmti", "", "fimmta", "", "fifth"]) + let v = native_list_append(v, ["níundi", "adj", "níundi", "", "níunda", "", "ninth"]) + let v = native_list_append(v, ["vís", "adj", "vís", "", "", "", "inflection of víss"]) + let v = native_list_append(v, ["illrar", "adj", "illrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["fagra", "adj", "fagra", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["galnast", "adj", "galnast", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["tigit", "adj", "tigit", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["yngsta", "adj", "yngsta", "", "", "", "inflection of ungr"]) + let v = native_list_append(v, ["fúll", "adj", "fúll", "", "", "", "foul"]) + let v = native_list_append(v, ["berrar", "adj", "berrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["frjór", "adj", "frjór", "", "frjó", "", "fertile yielding fruit"]) + let v = native_list_append(v, ["þýði", "adj", "þýði", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["kalda", "adj", "kalda", "", "", "", "inflection of kaldr"]) + let v = native_list_append(v, ["leik", "adj", "leik", "", "", "", "inflection of leikr"]) + let v = native_list_append(v, ["mikils", "adj", "mikils", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["berum", "adj", "berum", "", "", "", "inflection of berr"]) + let v = native_list_append(v, ["móðr", "adj", "móðr", "", "", "", "tired weary"]) + let v = native_list_append(v, ["allan", "adj", "allan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["birgir", "adj", "birgir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["birgi", "adj", "birgi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["fornu", "adj", "fornu", "", "", "", "inflection of forn"]) + let v = native_list_append(v, ["gullinn", "adj", "gullinn", "", "", "", "golden"]) + let v = native_list_append(v, ["þetta", "adj", "þetta", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["ungu", "adj", "ungu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["ragi", "adj", "ragi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["austrǿnn", "adj", "austrǿnn", "", "", "", "eastern"]) + let v = native_list_append(v, ["norrǿnn", "adj", "norrǿnn", "", "", "", "northern"]) + let v = native_list_append(v, ["suðrǿnn", "adj", "suðrǿnn", "", "", "", "southern"]) + let v = native_list_append(v, ["vestrǿnn", "adj", "vestrǿnn", "", "", "", "western"]) + let v = native_list_append(v, ["allar", "adj", "allar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["grǿnn", "adj", "grǿnni", "grǿnstr", "", "", "green fresh"]) + let v = native_list_append(v, ["skamma", "adj", "skamma", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["loðinn", "adj", "loðnari", "loðnastr", "", "", "hairy shaggy woolly"]) + let v = native_list_append(v, ["tuttugasti", "adj", "tuttugasti", "", "tuttugasta", "", "twentieth"]) + let v = native_list_append(v, ["birt", "adj", "birt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skart", "adj", "skart", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["args", "adj", "args", "", "", "", "strong masculine genitive"]) + let v = native_list_append(v, ["hvítir", "adj", "hvítir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["rétt", "adj", "rétt", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["leikr", "adj", "leikr", "", "", "", "lay"]) + let v = native_list_append(v, ["þungi", "adj", "þungi", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["skír", "adj", "skír", "", "", "", "inflection of skírr"]) + let v = native_list_append(v, ["myrkt", "adj", "myrkt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["rotinn", "adj", "rotinn", "", "", "", "rotten decayed"]) + let v = native_list_append(v, ["rór", "adj", "rór", "", "", "", "calm composed"]) + let v = native_list_append(v, ["berra", "adj", "berra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["betra", "adj", "betra", "", "", "", "inflection of góðr"]) + let v = native_list_append(v, ["smán", "adj", "smán", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["leikinn", "adj", "leikinn", "", "", "", "playful gay"]) + let v = native_list_append(v, ["bólginn", "adj", "bólgnari", "bólgnastr", "", "", "swollen"]) + let v = native_list_append(v, ["starkr", "adj", "starkr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tiginn", "adj", "tignari", "tignastr", "", "", "highborn"]) + let v = native_list_append(v, ["tíðum", "adj", "tíðum", "", "", "", "inflection of tíðr"]) + let v = native_list_append(v, ["sýsla", "adj", "sýsla", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["sýnn", "adj", "sýnn", "", "", "", "clear evident certain"]) + let v = native_list_append(v, ["halfr", "adj", "halfr", "", "", "", "half incomplete"]) + let v = native_list_append(v, ["heilar", "adj", "heilar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["hress", "adj", "hress", "", "", "", "hale heart in"]) + let v = native_list_append(v, ["miklu", "adj", "miklu", "", "", "", "inflection of mikill"]) + let v = native_list_append(v, ["mikla", "adj", "mikla", "", "", "", "inflection of mikill"]) + let v = native_list_append(v, ["mikli", "adj", "mikli", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["framr", "adj", "fremri", "fremstr", "", "", "forward prominent protruding"]) + let v = native_list_append(v, ["hǿgr", "adj", "hǿgri", "hǿgastr", "", "", "easy convenient"]) + let v = native_list_append(v, ["ginnheilagr", "adj", "ginnheilagr", "", "ginnheilǫg", "", "most holy sacrosanct"]) + let v = native_list_append(v, ["teitr", "adj", "teitari", "teitastr", "", "", "glad cheerful merry"]) + let v = native_list_append(v, ["vanr", "adj", "vanr", "", "", "", "lacking wanting"]) + let v = native_list_append(v, ["ámáttigr", "adj", "ámáttigr", "", "ámáttig", "", "very powerful"]) + let v = native_list_append(v, ["heils", "adj", "heils", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["margr", "adj", "fleiri", "flestr", "", "", "many a lot"]) + let v = native_list_append(v, ["etla", "adj", "etla", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["ǫflugr", "adj", "ǫflgari", "ǫflgastr", "ǫflug", "", "strong powerful"]) + let v = native_list_append(v, ["hvít", "adj", "hvít", "", "", "", "inflection of hvítr"]) + let v = native_list_append(v, ["hvítt", "adj", "hvítt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hvítar", "adj", "hvítar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["mǫguligr", "adj", "mǫguligr", "", "", "", "possible"]) + let v = native_list_append(v, ["krakligr", "adj", "krakligr", "", "", "", "slender thin and"]) + let v = native_list_append(v, ["ógnarligr", "adj", "ógnarligr", "", "", "", "awful terrible"]) + let v = native_list_append(v, ["dimmr", "adj", "dimmr", "", "", "", "dim gloomy"]) + let v = native_list_append(v, ["myrkr", "adj", "myrkr", "", "myrkari", "", "dark murky"]) + let v = native_list_append(v, ["ljóss", "adj", "ljóss", "", "", "", "light bright"]) + let v = native_list_append(v, ["ljótr", "adj", "ljótr", "", "", "", "ugly"]) + let v = native_list_append(v, ["fjǫllóttr", "adj", "fjǫllóttr", "", "", "", "mountainous"]) + let v = native_list_append(v, ["freknóttr", "adj", "freknóttr", "", "", "", "freckly"]) + let v = native_list_append(v, ["flekkóttr", "adj", "flekkóttr", "", "", "", "flecked spotted"]) + let v = native_list_append(v, ["svartflekkóttr", "adj", "svartflekkóttr", "", "", "", "black-flecked"]) + let v = native_list_append(v, ["rauðflekkóttr", "adj", "rauðflekkóttr", "", "", "", "flecked spotted with"]) + let v = native_list_append(v, ["rauðfreknóttr", "adj", "rauðfreknóttr", "", "", "", "red-freckled"]) + let v = native_list_append(v, ["gamalt", "adj", "gamalt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["lengst", "adj", "lengst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["œgiligr", "adj", "œgiligr", "", "", "", "terrible awful"]) + let v = native_list_append(v, ["œgr", "adj", "œgr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spaki", "adj", "spaki", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["ragt", "adj", "ragt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["ǫngr", "adj", "ǫngr", "", "", "", "narrow"]) + let v = native_list_append(v, ["allri", "adj", "allri", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["allrar", "adj", "allrar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["allir", "adj", "allir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["staðar", "adj", "staðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["finnskr", "adj", "finnskr", "", "", "", "Finnish pertaining to"]) + let v = native_list_append(v, ["margar", "adj", "margar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["spár", "adj", "spár", "", "", "", "prophetic"]) + let v = native_list_append(v, ["óðr", "adj", "óðr", "", "", "", "mad furious violent"]) + let v = native_list_append(v, ["œðr", "adj", "œðr", "", "", "", "wadeable fordable"]) + let v = native_list_append(v, ["saltr", "adj", "saltr", "", "", "", "salty salted"]) + let v = native_list_append(v, ["skjótr", "adj", "skjótr", "", "", "", "fleet quick swift"]) + let v = native_list_append(v, ["slǿgr", "adj", "slǿgr", "", "", "", "crafty cunning sly"]) + let v = native_list_append(v, ["spakar", "adj", "spakar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["tíðr", "adj", "tíðr", "", "", "", "frequent usual"]) + let v = native_list_append(v, ["skyldr", "adj", "skyldr", "", "", "", "bound obliged"]) + let v = native_list_append(v, ["bleika", "adj", "bleika", "", "", "", "inflection of bleikr"]) + let v = native_list_append(v, ["trúr", "adj", "trúr", "", "", "", "true faithful"]) + let v = native_list_append(v, ["fás", "adj", "fás", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["gjalla", "adj", "gjalla", "", "", "", "inflection of gjallr"]) + let v = native_list_append(v, ["ǫr", "adj", "ǫr", "", "", "", "inflection of ǫrr"]) + let v = native_list_append(v, ["góð", "adj", "góð", "", "", "", "inflection of góðr"]) + let v = native_list_append(v, ["hvassari", "adj", "hvassari", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["ungum", "adj", "ungum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["fátt", "adj", "fátt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["gjarn", "adj", "gjarn", "", "", "", "eager desirous"]) + let v = native_list_append(v, ["teita", "adj", "teita", "", "", "", "inflection of teitr"]) + let v = native_list_append(v, ["vitran", "adj", "vitran", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["varir", "adj", "varir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["ráðsnjallr", "adj", "ráðsnjallr", "", "", "", "wise in counsel"]) + let v = native_list_append(v, ["snjallr", "adj", "snjallr", "", "", "", "well-spoken eloquent"]) + let v = native_list_append(v, ["væna", "adj", "væna", "", "", "", "inflection of vænn"]) + let v = native_list_append(v, ["genga", "adj", "genga", "", "", "", "inflection of gengr"]) + let v = native_list_append(v, ["henta", "adj", "henta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["brúnna", "adj", "brúnna", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["fimti", "adj", "fimti", "", "fimta", "", "fifth"]) + let v = native_list_append(v, ["valskr", "adj", "valskr", "", "", "", "French"]) + let v = native_list_append(v, ["dǫkkr", "adj", "dǫkkr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hentan", "adj", "hentan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["margs", "adj", "margs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["leikar", "adj", "leikar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["leikt", "adj", "leikt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["væn", "adj", "væn", "", "", "", "inflection of vænn"]) + let v = native_list_append(v, ["vænt", "adj", "vænt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["sámr", "adj", "sámr", "", "", "", "darkish swarthy"]) + let v = native_list_append(v, ["úlíkr", "adj", "úlíkr", "", "", "", "unlike different"]) + let v = native_list_append(v, ["hentar", "adj", "hentar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["synst", "adj", "synst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["snautt", "adj", "snautt", "", "", "", "strong neuter nominative"]) + let v = native_list_append(v, ["víst", "adj", "víst", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hvell", "adj", "hvell", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["skjalgr", "adj", "skjalgr", "", "", "", "askew wry oblique"]) + let v = native_list_append(v, ["grœfr", "adj", "grœfr", "", "", "", "fit to be"]) + let v = native_list_append(v, ["grýttr", "adj", "grýttr", "", "", "", "stony"]) + let v = native_list_append(v, ["ættaðr", "adj", "ættaðr", "", "", "", "descended"]) + let v = native_list_append(v, ["annt", "adj", "annt", "", "", "", "eager anxious"]) + let v = native_list_append(v, ["fǫlr", "adj", "fǫlr", "", "", "", "pale"]) + let v = native_list_append(v, ["fenjóttr", "adj", "fenjóttr", "", "", "", "boggy"]) + let v = native_list_append(v, ["gemsmikill", "adj", "gemsmikill", "", "", "", "full of gibes"]) + let v = native_list_append(v, ["illgørðasamr", "adj", "illgørðasamr", "", "", "", "evil-doing"]) + let v = native_list_append(v, ["lakt", "adj", "lakt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["rjóðr", "adj", "rjóðr", "", "", "", "red ruddy"]) + let v = native_list_append(v, ["verðr", "adj", "verðr", "", "", "", "worth"]) + let v = native_list_append(v, ["vesall", "adj", "vesall", "", "", "", "wretched"]) + let v = native_list_append(v, ["hlær", "adj", "hlær", "", "hlæ", "", "warm mild"]) + let v = native_list_append(v, ["veill", "adj", "veill", "", "", "", "ailing diseased"]) + let v = native_list_append(v, ["jafni", "adj", "jafni", "", "", "", "inflection of jafn"]) + let v = native_list_append(v, ["gengi", "adj", "gengi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["frœkinn", "adj", "frœkinn", "", "", "", "valiant brave"]) + let v = native_list_append(v, ["fræs", "adj", "fræs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["frjó", "adj", "frjó", "", "", "", "inflection of frjór"]) + let v = native_list_append(v, ["ørbjarga", "adj", "ørbjarga", "", "", "", "helpless"]) + let v = native_list_append(v, ["kyssiligr", "adj", "kyssiligr", "", "", "", "fit to be"]) + let v = native_list_append(v, ["ragr", "adj", "ragr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["víða", "adj", "víða", "", "", "", "inflection of víðr"]) + let v = native_list_append(v, ["þrái", "adj", "þrái", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["þrunginn", "adj", "þrunginn", "", "", "", "stifled oppressed moody"]) + let v = native_list_append(v, ["meini", "adj", "meini", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["mið", "adj", "mið", "", "", "", "inflection of miðr"]) + let v = native_list_append(v, ["ǫrvar", "adj", "ǫrvar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["ǫrum", "adj", "ǫrum", "", "", "", "inflection of ǫrr"]) + let v = native_list_append(v, ["ǫrva", "adj", "ǫrva", "", "", "", "inflection of ǫrr"]) + let v = native_list_append(v, ["jarpr", "adj", "jarpr", "", "", "", "brown"]) + let v = native_list_append(v, ["nýtr", "adj", "nýtr", "", "", "", "useful"]) + let v = native_list_append(v, ["vǫkr", "adj", "vǫkr", "", "", "", "moist wet"]) + let v = native_list_append(v, ["tíðir", "adj", "tíðir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["drjúgr", "adj", "drjúgr", "", "", "", "very"]) + let v = native_list_append(v, ["frørinn", "adj", "frørinn", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kvintr", "adj", "kvintr", "", "", "", "thin slender"]) + let v = native_list_append(v, ["ǫlr", "adj", "ǫlr", "", "", "", "drunk"]) + let v = native_list_append(v, ["hjalmaðr", "adj", "hjalmaðr", "", "", "", "helmed having a"]) + let v = native_list_append(v, ["sakaðr", "adj", "sakaðr", "", "", "", "scathed damaged"]) + let v = native_list_append(v, ["aldraðr", "adj", "aldraðr", "", "", "", "elderly"]) + let v = native_list_append(v, ["aldrǿnn", "adj", "aldrǿnn", "", "", "", "elderly aged"]) + let v = native_list_append(v, ["hræðinn", "adj", "hræðinn", "", "", "", "timid"]) + let v = native_list_append(v, ["sumra", "adj", "sumra", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ofljóst", "adj", "ofljóst", "", "", "", "being a kenning"]) + let v = native_list_append(v, ["spakr", "adj", "spakari", "spakastr", "", "", "quiet gentle"]) + let v = native_list_append(v, ["víss", "adj", "víss", "", "", "", "certain known"]) + let v = native_list_append(v, ["hljóðr", "adj", "hljóðr", "", "", "", "silent taciturn"]) + let v = native_list_append(v, ["gǫrr", "adj", "gǫrvari", "gǫrvastr", "", "", "ready prepared"]) + let v = native_list_append(v, ["klókr", "adj", "klókari", "klókastr", "", "", "arch cunning clever"]) + let v = native_list_append(v, ["birkinn", "adj", "birkinn", "", "", "", "birchen"]) + let v = native_list_append(v, ["berbeinn", "adj", "berbeinn", "", "", "", "bare-legged"]) + let v = native_list_append(v, ["berfǿttr", "adj", "berfǿttr", "", "", "", "barefoot"]) + let v = native_list_append(v, ["færeyskr", "adj", "færeyskr", "", "", "", "Faroese"]) + let v = native_list_append(v, ["faxaðr", "adj", "faxaðr", "", "", "", "maned having a"]) + let v = native_list_append(v, ["fǫxóttr", "adj", "fǫxóttr", "", "", "", "having a mane"]) + let v = native_list_append(v, ["annarligr", "adj", "annarligr", "", "", "", "strange alien"]) + let v = native_list_append(v, ["annarsligr", "adj", "annarsligr", "", "", "", "strange alien"]) + let v = native_list_append(v, ["samligr", "adj", "samligr", "", "", "", "friendly amicable"]) + let v = native_list_append(v, ["annsamligr", "adj", "annsamligr", "", "", "", "toilsome laborious"]) + let v = native_list_append(v, ["atburðalauss", "adj", "atburðalauss", "", "", "", "eventless uneventful"]) + let v = native_list_append(v, ["atdjúpr", "adj", "atdjúpr", "", "", "", "deep close to"]) + let v = native_list_append(v, ["armligr", "adj", "armligr", "", "", "", "pitiful miserable"]) + let v = native_list_append(v, ["valdr", "adj", "valdr", "", "", "", "the cause of"]) + let v = native_list_append(v, ["alheiðinn", "adj", "alheiðinn", "", "", "", "utterly heathen"]) + let v = native_list_append(v, ["atgengiligr", "adj", "atgengiligr", "", "", "", "accessible inviting"]) + let v = native_list_append(v, ["athugasamligr", "adj", "athugasamligr", "", "", "", "attentive"]) + let v = native_list_append(v, ["athugasamr", "adj", "athugasamr", "", "", "", "attentive"]) + let v = native_list_append(v, ["athugaverðr", "adj", "athugaverðr", "", "", "", "worthy of attention"]) + let v = native_list_append(v, ["eyjóttr", "adj", "eyjóttr", "", "", "", "full of islands"]) + let v = native_list_append(v, ["eygr", "adj", "eygr", "", "", "", "having eyes of"]) + let v = native_list_append(v, ["eygðr", "adj", "eygðr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biskupligr", "adj", "biskupligr", "", "", "", "episcopal"]) + let v = native_list_append(v, ["stǫðum", "adj", "stǫðum", "", "", "", "dative singular masculine"]) + let v = native_list_append(v, ["stǫðu", "adj", "stǫðu", "", "", "", "inflection of staðr"]) + let v = native_list_append(v, ["stǫðugr", "adj", "stǫðugr", "", "", "", "steady stable"]) + let v = native_list_append(v, ["kunnigr", "adj", "kunnigr", "", "kunnigri", "", "known"]) + let v = native_list_append(v, ["blóðugr", "adj", "blóðugr", "", "", "", "bloody"]) + let v = native_list_append(v, ["ferðugr", "adj", "ferðugr", "", "", "", "ready"]) + let v = native_list_append(v, ["gráðugr", "adj", "gráðugr", "", "", "", "greedy"]) + let v = native_list_append(v, ["gǫfugr", "adj", "gǫfugr", "", "", "", "noble worshipful"]) + let v = native_list_append(v, ["atall", "adj", "atall", "", "", "", "fierce"]) + let v = native_list_append(v, ["vænn", "adj", "vænni", "vænstr", "", "", "likely to be"]) + let v = native_list_append(v, ["gjǫfull", "adj", "gjǫfull", "", "", "", "generous"]) + let v = native_list_append(v, ["vænni", "adj", "vænni", "", "vænnum", "", "positive degree strong"]) + let v = native_list_append(v, ["sekr", "adj", "sekr", "", "", "", "guilty"]) + let v = native_list_append(v, ["vegligr", "adj", "vegligri", "vegligastr", "", "", "grand magnificent"]) + let v = native_list_append(v, ["eystri", "adj", "eystri", "austastr", "eystrum", "", "more easterly"]) + let v = native_list_append(v, ["syðri", "adj", "syðri", "synstr", "syðrum", "", "more southerly"]) + let v = native_list_append(v, ["nyrðri", "adj", "nyrðri", "nyrztr", "nyrðrum", "", "more northerly"]) + let v = native_list_append(v, ["innri", "adj", "innri", "innstr", "innrum", "", "inner interior internal"]) + let v = native_list_append(v, ["ellri", "adj", "ellri", "", "ellrum", "", "comparative degree of"]) + let v = native_list_append(v, ["ellztr", "adj", "ellztr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["hindri", "adj", "hindri", "hinztr", "hindrum", "", "later"]) + let v = native_list_append(v, ["hinztr", "adj", "hinztr", "", "", "", "last hindmost"]) + let v = native_list_append(v, ["eptri", "adj", "eptri", "epztr", "eptrum", "", "aftermost hindmost later"]) + let v = native_list_append(v, ["norðarri", "adj", "norðarri", "norðastr", "norðurrum", "", "more northerly"]) + let v = native_list_append(v, ["ýtri", "adj", "ýtri", "ýztr", "ýtrum", "", "outer"]) + let v = native_list_append(v, ["neðri", "adj", "neðri", "neztr", "neðrum", "", "lower nether"]) + let v = native_list_append(v, ["ljúfr", "adj", "ljúfari", "ljúfastr", "", "", "dear beloved"]) + let v = native_list_append(v, ["norðrǿnn", "adj", "norðrǿnn", "", "", "", "northern"]) + let v = native_list_append(v, ["þverr", "adj", "þverr", "", "", "", "athwart transverse"]) + let v = native_list_append(v, ["smá", "adj", "smá", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["írskr", "adj", "írskr", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["norrœna", "adj", "norrœna", "", "", "", "inflection of norrœnn"]) + let v = native_list_append(v, ["þýðverskr", "adj", "þýðverskr", "", "", "", "German"]) + let v = native_list_append(v, ["dǫnsku", "adj", "dǫnsku", "", "", "", "indefinite singular neuter"]) + let v = native_list_append(v, ["dǫnskum", "adj", "dǫnskum", "", "", "", "positive degree dative"]) + let v = native_list_append(v, ["norrœnu", "adj", "norrœnu", "", "", "", "indefinite singular neuter"]) + let v = native_list_append(v, ["norrœnum", "adj", "norrœnum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["yxna", "adj", "yxna", "", "", "", "in heat about"]) + let v = native_list_append(v, ["rétti", "adj", "rétti", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["réttir", "adj", "réttir", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["réttum", "adj", "réttum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["réttu", "adj", "réttu", "", "", "", "dative singular neuter"]) + let v = native_list_append(v, ["gramr", "adj", "gramari", "gramastr", "", "", "wroth angry with"]) + let v = native_list_append(v, ["ebreskr", "adj", "ebreskr", "", "", "", "Hebraic"]) + let v = native_list_append(v, ["fiðraðr", "adj", "fiðraðr", "", "", "", "feathered of arrows"]) + let v = native_list_append(v, ["fjaðraðr", "adj", "fjaðraðr", "", "", "", "feathered"]) + let v = native_list_append(v, ["þínsligr", "adj", "þínsligr", "", "", "", "like you sg."]) + let v = native_list_append(v, ["þjarfr", "adj", "þjarfr", "", "", "", "unleavened of bread"]) + let v = native_list_append(v, ["þiðinn", "adj", "þiðinn", "", "", "", "thawed free from"]) + let v = native_list_append(v, ["þíðr", "adj", "þíðr", "", "þíð", "", "not icebound free"]) + let v = native_list_append(v, ["þurfsamr", "adj", "þurfsamr", "", "", "", "helping"]) + let v = native_list_append(v, ["þurftugr", "adj", "þurftugr", "", "", "", "in need of"]) + let v = native_list_append(v, ["þurftuligr", "adj", "þurftuligr", "", "", "", "useful profitable"]) + let v = native_list_append(v, ["þarfr", "adj", "þarfr", "", "", "", "useful beneficial"]) + let v = native_list_append(v, ["ǫlvaðr", "adj", "ǫlvaðr", "", "", "", "worse for drink"]) + let v = native_list_append(v, ["ǫskubakaðr", "adj", "ǫskubakaðr", "", "", "", "baked in ashes"]) + let v = native_list_append(v, ["tǫtrugr", "adj", "tǫtrugr", "", "", "", "tattered torn"]) + let v = native_list_append(v, ["þriði", "adj", "þriði", "", "þriðja", "", "third"]) + let v = native_list_append(v, ["tvífaldr", "adj", "tvífaldr", "", "", "", "twofold double"]) + let v = native_list_append(v, ["tvíbreiðr", "adj", "tvíbreiðr", "", "", "", "of double breadth"]) + let v = native_list_append(v, ["valtr", "adj", "valtr", "", "", "", "easily upset unstable"]) + let v = native_list_append(v, ["frískr", "adj", "frískr", "", "", "", "Frisian"]) + let v = native_list_append(v, ["bljúgr", "adj", "bljúgr", "", "", "", "shy bashful timid"]) + let v = native_list_append(v, ["rámr", "adj", "rámr", "", "", "", "gruff hoarse loud"]) + let v = native_list_append(v, ["fátœkr", "adj", "fátœkr", "", "", "", "poor"]) + let v = native_list_append(v, ["falr", "adj", "falr", "", "", "", "for sale"]) + let v = native_list_append(v, ["flór", "adj", "flór", "", "", "", ""]) + let v = native_list_append(v, ["vǫkóttr", "adj", "vǫkóttr", "", "", "", "full of holes"]) + let v = native_list_append(v, ["ylfskr", "adj", "ylfskr", "", "", "", "wolfish treacherous"]) + let v = native_list_append(v, ["fagrs", "adj", "fagrs", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stóru", "adj", "stóru", "", "", "", "inflection of stórr"]) + let v = native_list_append(v, ["vindi", "adj", "vindi", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["jarlborinn", "adj", "jarlborinn", "", "", "", "being an earl"]) + let v = native_list_append(v, ["erkibiskupligr", "adj", "erkibiskupligr", "", "", "", "archiepiscopal"]) + let v = native_list_append(v, ["etall", "adj", "etall", "", "", "", "consuming"]) + let v = native_list_append(v, ["ætr", "adj", "ætr", "", "", "", "edible"]) + let v = native_list_append(v, ["nezt", "adj", "nezt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["togna", "adj", "togna", "", "", "", "inflection of toginn"]) + let v = native_list_append(v, ["hugrakkr", "adj", "hugrakkr", "", "", "", "brave-minded"]) + let v = native_list_append(v, ["ǫfugr", "adj", "ǫfugr", "", "", "", "turned the wrong"]) + let v = native_list_append(v, ["kvittr", "adj", "kvittr", "", "", "", "quit acquitted"]) + let v = native_list_append(v, ["lekum", "adj", "lekum", "", "", "", "inflection of lekr"]) + let v = native_list_append(v, ["maðkfullr", "adj", "maðkfullr", "", "", "", "full of maggots"]) + let v = native_list_append(v, ["magrligr", "adj", "magrligr", "", "", "", "lean-looking pinched"]) + let v = native_list_append(v, ["karlmannligr", "adj", "karlmannligr", "", "", "", "manly bold"]) + let v = native_list_append(v, ["kvennmannligr", "adj", "kvennmannligr", "", "", "", "woman-like"]) + let v = native_list_append(v, ["kvennligr", "adj", "kvennligr", "", "", "", "womanly womanlike"]) + let v = native_list_append(v, ["konulauss", "adj", "konulauss", "", "", "", "wifeless widowed"]) + let v = native_list_append(v, ["kviðugr", "adj", "kviðugr", "", "", "", "pregnant"]) + let v = native_list_append(v, ["flatr", "adj", "flatr", "", "", "", "flat level"]) + let v = native_list_append(v, ["kykr", "adj", "kykr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jafnkominn", "adj", "jafnkominn", "", "", "", "on even terms"]) + let v = native_list_append(v, ["jafnbreiðr", "adj", "jafnbreiðr", "", "", "", "equally broad"]) + let v = native_list_append(v, ["jafnborinn", "adj", "jafnborinn", "", "", "", "of equal birth"]) + let v = native_list_append(v, ["dauðan", "adj", "dauðan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["himneskr", "adj", "himneskr", "", "", "", "heavenly"]) + let v = native_list_append(v, ["vígr", "adj", "vígr", "", "", "", "in fighting condition"]) + let v = native_list_append(v, ["mætr", "adj", "mætr", "", "", "", "costly excellent worthy"]) + let v = native_list_append(v, ["upphafligr", "adj", "upphafligr", "", "", "", "original"]) + let v = native_list_append(v, ["vanbúinn", "adj", "vanbúinn", "", "", "", "un- ill-prepared"]) + let v = native_list_append(v, ["vansénn", "adj", "vansénn", "", "", "", "difficult to see"]) + let v = native_list_append(v, ["hrám", "adj", "hrám", "", "", "", "inflection of hrár"]) + let v = native_list_append(v, ["mildra", "adj", "mildra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["glíkr", "adj", "glíkr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mestu", "adj", "mestu", "", "", "", "inflection of mikill"]) + let v = native_list_append(v, ["gløggr", "adj", "gløggr", "", "", "", "clearsighted"]) + let v = native_list_append(v, ["hnøggr", "adj", "hnøggr", "", "", "", "stingy"]) + let v = native_list_append(v, ["horskr", "adj", "horskr", "", "", "", "fast quick"]) + let v = native_list_append(v, ["kærligr", "adj", "kærligr", "", "", "", "loving affectionate"]) + let v = native_list_append(v, ["gengr", "adj", "gengr", "", "", "", "able to walk"]) + let v = native_list_append(v, ["gengum", "adj", "gengum", "", "", "", "inflection of gengr"]) + let v = native_list_append(v, ["gengu", "adj", "gengu", "", "", "", "inflection of gengr"]) + let v = native_list_append(v, ["brúnt", "adj", "brúnt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["samra", "adj", "samra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["hrán", "adj", "hrán", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hávaðamikill", "adj", "hávaðamikill", "", "", "", "boastful self-assertive"]) + let v = native_list_append(v, ["hávaðasamr", "adj", "hávaðasamr", "", "", "", "boisterous"]) + let v = native_list_append(v, ["birga", "adj", "birga", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["ljótt", "adj", "ljótt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mikilli", "adj", "mikilli", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["tíunda", "adj", "tíunda", "", "", "", "inflection of tíundi"]) + let v = native_list_append(v, ["hvatt", "adj", "hvatt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["makr", "adj", "makr", "", "", "", "easy to deal"]) + let v = native_list_append(v, ["makligr", "adj", "makligr", "", "", "", "meet proper becoming"]) + let v = native_list_append(v, ["vakr", "adj", "vakr", "", "", "", "wakeful watchful alert"]) + let v = native_list_append(v, ["þekkt", "adj", "þekkt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["frævi", "adj", "frævi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["ǫllu", "adj", "ǫllu", "", "", "", "inflection of allr"]) + let v = native_list_append(v, ["ǫllum", "adj", "ǫllum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["ǫll", "adj", "ǫll", "", "", "", "inflection of allr"]) + let v = native_list_append(v, ["spaka", "adj", "spaka", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spǫkum", "adj", "spǫkum", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spaks", "adj", "spaks", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakan", "adj", "spakan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["spǫk", "adj", "spǫk", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakra", "adj", "spakra", "", "", "", "genitive plural strong"]) + let v = native_list_append(v, ["spakrar", "adj", "spakrar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["spakri", "adj", "spakri", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["spakt", "adj", "spakt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["spǫku", "adj", "spǫku", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakir", "adj", "spakir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["spakari", "adj", "spakari", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakara", "adj", "spakara", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spǫkurum", "adj", "spǫkurum", "", "", "", "dative plural comparative"]) + let v = native_list_append(v, ["spǫkustum", "adj", "spǫkustum", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spǫkustu", "adj", "spǫkustu", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakasti", "adj", "spakasti", "", "", "", "weak superlative degree"]) + let v = native_list_append(v, ["spakastir", "adj", "spakastir", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["spakastar", "adj", "spakastar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["spakastra", "adj", "spakastra", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["spakasta", "adj", "spakasta", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakast", "adj", "spakast", "", "", "", "neuter singular nominative/accusative"]) + let v = native_list_append(v, ["spǫkust", "adj", "spǫkust", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["spakastan", "adj", "spakastan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["spakastrar", "adj", "spakastrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["spakastri", "adj", "spakastri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["spakasts", "adj", "spakasts", "", "", "", "inflection of spakr"]) + let v = native_list_append(v, ["lǫngum", "adj", "lǫngum", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["lǫngu", "adj", "lǫngu", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["langir", "adj", "langir", "", "", "", "strong positive degree"]) + let v = native_list_append(v, ["lǫng", "adj", "lǫng", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["langri", "adj", "langri", "", "", "", "strong positive degree"]) + let v = native_list_append(v, ["langrar", "adj", "langrar", "", "", "", "strong positive degree"]) + let v = native_list_append(v, ["langra", "adj", "langra", "", "", "", "strong positive degree"]) + let v = native_list_append(v, ["lengrum", "adj", "lengrum", "", "", "", "comparative degree plural"]) + let v = native_list_append(v, ["lengri", "adj", "lengri", "", "lengrum", "", "comparative degree of"]) + let v = native_list_append(v, ["lengstr", "adj", "lengstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["lengstan", "adj", "lengstan", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengstir", "adj", "lengstir", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengstrar", "adj", "lengstrar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengstri", "adj", "lengstri", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengstar", "adj", "lengstar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengstra", "adj", "lengstra", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengstum", "adj", "lengstum", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["lengsta", "adj", "lengsta", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["lengstu", "adj", "lengstu", "", "", "", "inflection of langr"]) + let v = native_list_append(v, ["lengsti", "adj", "lengsti", "", "", "", "weak superlative degree"]) + let v = native_list_append(v, ["smærri", "adj", "smærri", "", "smærrum", "", "comparative degree of"]) + let v = native_list_append(v, ["smærrum", "adj", "smærrum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["smærra", "adj", "smærra", "", "", "", "inflection of smár"]) + let v = native_list_append(v, ["smám", "adj", "smám", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["smárra", "adj", "smárra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["smás", "adj", "smás", "", "", "", "inflection of smár"]) + let v = native_list_append(v, ["smárrar", "adj", "smárrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["smárri", "adj", "smárri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["smæstr", "adj", "smæstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["smæst", "adj", "smæst", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["smæstri", "adj", "smæstri", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["smæstrar", "adj", "smæstrar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["smæstra", "adj", "smæstra", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["smæstan", "adj", "smæstan", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["smæstir", "adj", "smæstir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["smæstar", "adj", "smæstar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["smæsta", "adj", "smæsta", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["smæstu", "adj", "smæstu", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["smæstum", "adj", "smæstum", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinni", "adj", "hreinni", "", "hreinnum", "", "positive degree strong"]) + let v = native_list_append(v, ["hreinnar", "adj", "hreinnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["hreinna", "adj", "hreinna", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hreini", "adj", "hreini", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["hreinnum", "adj", "hreinnum", "", "", "", "comparative degree all"]) + let v = native_list_append(v, ["hreinar", "adj", "hreinar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["hrein", "adj", "hrein", "", "", "", "inflection of hreinn"]) + let v = native_list_append(v, ["hreint", "adj", "hreint", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hreins", "adj", "hreins", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["hreina", "adj", "hreina", "", "", "", "inflection of hreinn"]) + let v = native_list_append(v, ["hreinan", "adj", "hreinan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hreinum", "adj", "hreinum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["hreinu", "adj", "hreinu", "", "", "", "inflection of hreinn"]) + let v = native_list_append(v, ["hreinir", "adj", "hreinir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hreinstr", "adj", "hreinstr", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinst", "adj", "hreinst", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinstan", "adj", "hreinstan", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinstir", "adj", "hreinstir", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinsti", "adj", "hreinsti", "", "", "", "superlative degree weak"]) + let v = native_list_append(v, ["hreinstra", "adj", "hreinstra", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinstrar", "adj", "hreinstrar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinstri", "adj", "hreinstri", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinstum", "adj", "hreinstum", "", "", "", "inflection of hreinn"]) + let v = native_list_append(v, ["hreinstar", "adj", "hreinstar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hreinsta", "adj", "hreinsta", "", "", "", "inflection of hreinn"]) + let v = native_list_append(v, ["hreinstu", "adj", "hreinstu", "", "", "", "inflection of hreinn"]) + let v = native_list_append(v, ["gótt", "adj", "gótt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["góðan", "adj", "góðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["góðum", "adj", "góðum", "", "", "", "inflection of góðr"]) + let v = native_list_append(v, ["góðra", "adj", "góðra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["góðrar", "adj", "góðrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["góðri", "adj", "góðri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["góðu", "adj", "góðu", "", "", "", "inflection of góðr"]) + let v = native_list_append(v, ["góðir", "adj", "góðir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["góðar", "adj", "góðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["gǫmul", "adj", "gǫmul", "", "", "", "inflection of gamall"]) + let v = native_list_append(v, ["gǫmlum", "adj", "gǫmlum", "", "", "", "inflection of gamall"]) + let v = native_list_append(v, ["gamalla", "adj", "gamalla", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["gamallar", "adj", "gamallar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["gamalli", "adj", "gamalli", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["gamals", "adj", "gamals", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["gamlar", "adj", "gamlar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["gamlir", "adj", "gamlir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["gamlan", "adj", "gamlan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["gǫmlu", "adj", "gǫmlu", "", "", "", "inflection of gamall"]) + let v = native_list_append(v, ["ellra", "adj", "ellra", "", "", "", "inflection of gamall"]) + let v = native_list_append(v, ["ellrum", "adj", "ellrum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["mikinn", "adj", "mikinn", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["mikilla", "adj", "mikilla", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["miklum", "adj", "miklum", "", "", "", "inflection of mikill"]) + let v = native_list_append(v, ["mikillar", "adj", "mikillar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["miklar", "adj", "miklar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["mikit", "adj", "mikit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["meirum", "adj", "meirum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["reimum", "adj", "reimum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["þungan", "adj", "þungan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þungs", "adj", "þungs", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þungum", "adj", "þungum", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þungir", "adj", "þungir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þunga", "adj", "þunga", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þungar", "adj", "þungar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þungra", "adj", "þungra", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þungrar", "adj", "þungrar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þungri", "adj", "þungri", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þung", "adj", "þung", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þungt", "adj", "þungt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þungu", "adj", "þungu", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þyngri", "adj", "þyngri", "", "þyngrum", "", "comparative degree of"]) + let v = native_list_append(v, ["þyngra", "adj", "þyngra", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þyngrum", "adj", "þyngrum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["þungurum", "adj", "þungurum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["þungari", "adj", "þungari", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þungara", "adj", "þungara", "", "", "", "inflection of þungr"]) + let v = native_list_append(v, ["þungastr", "adj", "þungastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["þyngstr", "adj", "þyngstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["þungasti", "adj", "þungasti", "", "", "", "superlative degree weak"]) + let v = native_list_append(v, ["þyngsti", "adj", "þyngsti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["þungastan", "adj", "þungastan", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þyngstan", "adj", "þyngstan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þyngstir", "adj", "þyngstir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["þungastir", "adj", "þungastir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["þungustum", "adj", "þungustum", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þyngstum", "adj", "þyngstum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["þungust", "adj", "þungust", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["þungasta", "adj", "þungasta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["þyngsta", "adj", "þyngsta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["þungastri", "adj", "þungastri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["þyngstri", "adj", "þyngstri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["þyngstrar", "adj", "þyngstrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["þungastrar", "adj", "þungastrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["þungastra", "adj", "þungastra", "", "", "", "strong all genders"]) + let v = native_list_append(v, ["þyngstra", "adj", "þyngstra", "", "", "", "strong all genders"]) + let v = native_list_append(v, ["þungastar", "adj", "þungastar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þyngstar", "adj", "þyngstar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["þungast", "adj", "þungast", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þyngst", "adj", "þyngst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["þungustu", "adj", "þungustu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["þyngstu", "adj", "þyngstu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["stórt", "adj", "stórt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stórs", "adj", "stórs", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stórri", "adj", "stórri", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stórrar", "adj", "stórrar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stóran", "adj", "stóran", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stórir", "adj", "stórir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stóri", "adj", "stóri", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["stórra", "adj", "stórra", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stórar", "adj", "stórar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["stœrri", "adj", "stœrri", "", "stœrrum", "", "comparative degree of"]) + let v = native_list_append(v, ["stœrrum", "adj", "stœrrum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["stœrra", "adj", "stœrra", "", "", "", "comparative degree masculine"]) + let v = native_list_append(v, ["stœrst", "adj", "stœrst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["stœrsta", "adj", "stœrsta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["stœrstan", "adj", "stœrstan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["stœrstum", "adj", "stœrstum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["stœrstra", "adj", "stœrstra", "", "", "", "strong all genders"]) + let v = native_list_append(v, ["stœrstir", "adj", "stœrstir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["stœrsti", "adj", "stœrsti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["stœrstar", "adj", "stœrstar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["stœrstu", "adj", "stœrstu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["stœrstr", "adj", "stœrstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["stœrstri", "adj", "stœrstri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["stœrstrar", "adj", "stœrstrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["vænna", "adj", "vænna", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vænnum", "adj", "vænnum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["vænan", "adj", "vænan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vænum", "adj", "vænum", "", "", "", "inflection of vænn"]) + let v = native_list_append(v, ["væns", "adj", "væns", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vænir", "adj", "vænir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vænar", "adj", "vænar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vænnar", "adj", "vænnar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vænu", "adj", "vænu", "", "", "", "inflection of vænn"]) + let v = native_list_append(v, ["væni", "adj", "væni", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["vænstr", "adj", "vænstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["vænstan", "adj", "vænstan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["vænstum", "adj", "vænstum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["vænstir", "adj", "vænstir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["vænst", "adj", "vænst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["vænsta", "adj", "vænsta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["vænstri", "adj", "vænstri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["vænstrar", "adj", "vænstrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["vænstar", "adj", "vænstar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["vænstra", "adj", "vænstra", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["vænstu", "adj", "vænstu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["fagran", "adj", "fagran", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["fǫgrum", "adj", "fǫgrum", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fagrir", "adj", "fagrir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["fǫgr", "adj", "fǫgr", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fagri", "adj", "fagri", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fagrar", "adj", "fagrar", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fagrt", "adj", "fagrt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["fǫgru", "adj", "fǫgru", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fegrum", "adj", "fegrum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["fegri", "adj", "fegri", "", "fegrum", "", "comparative degree of"]) + let v = native_list_append(v, ["fegrst", "adj", "fegrst", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fergrsta", "adj", "fergrsta", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fegrstri", "adj", "fegrstri", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["fegrstrar", "adj", "fegrstrar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["fegrstar", "adj", "fegrstar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["fegrstra", "adj", "fegrstra", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["fegrstr", "adj", "fegrstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["fegrstan", "adj", "fegrstan", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["fegrstum", "adj", "fegrstum", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fegrstir", "adj", "fegrstir", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["fegrstu", "adj", "fegrstu", "", "", "", "inflection of fagr"]) + let v = native_list_append(v, ["fegrsti", "adj", "fegrsti", "", "", "", "superlative degree weak"]) + let v = native_list_append(v, ["þrǫng", "adj", "þrǫng", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrǫngt", "adj", "þrǫngt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngvan", "adj", "þrǫngvan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngum", "adj", "þrǫngum", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrǫngs", "adj", "þrǫngs", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngvir", "adj", "þrǫngvir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngva", "adj", "þrǫngva", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrǫngri", "adj", "þrǫngri", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngrar", "adj", "þrǫngrar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngvar", "adj", "þrǫngvar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngra", "adj", "þrǫngra", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["þrǫngu", "adj", "þrǫngu", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrǫngvi", "adj", "þrǫngvi", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["þrøngrum", "adj", "þrøngrum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["þrøngri", "adj", "þrøngri", "", "þrøngrum", "", "comparative degree of"]) + let v = native_list_append(v, ["þrøngra", "adj", "þrøngra", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrøngst", "adj", "þrøngst", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrøngsta", "adj", "þrøngsta", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrøngstri", "adj", "þrøngstri", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þrøngstrar", "adj", "þrøngstrar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þrøngstar", "adj", "þrøngstar", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þrøngstra", "adj", "þrøngstra", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þrøngsti", "adj", "þrøngsti", "", "", "", "superlative degree weak"]) + let v = native_list_append(v, ["þrøngstum", "adj", "þrøngstum", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrøngstir", "adj", "þrøngstir", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["þrøngstu", "adj", "þrøngstu", "", "", "", "inflection of þrǫngr"]) + let v = native_list_append(v, ["þrøngstr", "adj", "þrøngri", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["þrøngstan", "adj", "þrøngstan", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["jafnan", "adj", "jafnan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["jǫfnu", "adj", "jǫfnu", "", "", "", "inflection of jafn"]) + let v = native_list_append(v, ["jǫfnum", "adj", "jǫfnum", "", "", "", "inflection of jafn"]) + let v = native_list_append(v, ["jafnir", "adj", "jafnir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["jafnar", "adj", "jafnar", "", "", "", "inflection of jafn"]) + let v = native_list_append(v, ["jǫfn", "adj", "jǫfn", "", "", "", "inflection of jafn"]) + let v = native_list_append(v, ["jafns", "adj", "jafns", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hvassi", "adj", "hvassi", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hvassar", "adj", "hvassar", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hvassara", "adj", "hvassara", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hvǫssurum", "adj", "hvǫssurum", "", "", "", "comparative degree dative"]) + let v = native_list_append(v, ["hvassan", "adj", "hvassan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hvassastr", "adj", "hvassastr", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hvassasti", "adj", "hvassasti", "", "", "", "superlative degree weak"]) + let v = native_list_append(v, ["hvassastir", "adj", "hvassastir", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hvassa", "adj", "hvassa", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hvǫssum", "adj", "hvǫssum", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hvast", "adj", "hvast", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hvassir", "adj", "hvassir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hvǫssu", "adj", "hvǫssu", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hvǫssust", "adj", "hvǫssust", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hvassast", "adj", "hvassast", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hvassastan", "adj", "hvassastan", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["hvǫssustum", "adj", "hvǫssustum", "", "", "", "inflection of hvass"]) + let v = native_list_append(v, ["hverfr", "adj", "hverfr", "", "", "", "shifty changeable"]) + let v = native_list_append(v, ["hverf", "adj", "hverf", "", "", "", "inflection of hverfr"]) + let v = native_list_append(v, ["hverfum", "adj", "hverfum", "", "", "", "inflection of hverfr"]) + let v = native_list_append(v, ["hverfir", "adj", "hverfir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfra", "adj", "hverfra", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfri", "adj", "hverfri", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfrar", "adj", "hverfrar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfar", "adj", "hverfar", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfan", "adj", "hverfan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfs", "adj", "hverfs", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hverfu", "adj", "hverfu", "", "", "", "inflection of hverfr"]) + let v = native_list_append(v, ["hverfðr", "adj", "hverfðr", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hverft", "adj", "hverft", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["hvíldarlauss", "adj", "hvíldarlauss", "", "", "", "restless"]) + let v = native_list_append(v, ["hvíldr", "adj", "hvíldr", "", "", "", "rested"]) + let v = native_list_append(v, ["leikmannligr", "adj", "leikmannligr", "", "", "", "lay"]) + let v = native_list_append(v, ["leikligr", "adj", "leikligr", "", "", "", "lay"]) + let v = native_list_append(v, ["leiku", "adj", "leiku", "", "", "", "inflection of leikr"]) + let v = native_list_append(v, ["leikan", "adj", "leikan", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["leikara", "adj", "leikara", "", "", "", "inflection of leikr"]) + let v = native_list_append(v, ["leikum", "adj", "leikum", "", "", "", "inflection of leikr"]) + let v = native_list_append(v, ["þýðr", "adj", "þýðr", "", "", "", "kind affectionate affable"]) + let v = native_list_append(v, ["ǫrr", "adj", "ǫrr", "", "", "", "swift ready"]) + let v = native_list_append(v, ["háss", "adj", "háss", "", "", "", "hoarse"]) + let v = native_list_append(v, ["hárr", "adj", "hárr", "", "", "", "hoary grey-haired"]) + let v = native_list_append(v, ["hressa", "adj", "hressa", "", "", "", "inflection of hress"]) + let v = native_list_append(v, ["kyrra", "adj", "kyrra", "", "", "", "inflection of kyrr"]) + let v = native_list_append(v, ["skírr", "adj", "skírari", "skírstr", "", "", "clear bright pure"]) + let v = native_list_append(v, ["stríðr", "adj", "stríðr", "", "", "", "strong rapid"]) + let v = native_list_append(v, ["trúligr", "adj", "trúligr", "", "", "", "faithful"]) + let v = native_list_append(v, ["vitr", "adj", "vitr", "", "", "", "wise"]) + let v = native_list_append(v, ["ýmiss", "adj", "ýmiss", "", "", "", "various different alternating"]) + let v = native_list_append(v, ["vítt", "adj", "vítt", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["vizkr", "adj", "vizkr", "", "", "", "clever sensible"]) + let v = native_list_append(v, ["vísi", "adj", "vísi", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["vísir", "adj", "vísir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["lekr", "adj", "lekr", "", "", "", "leaky"]) + let v = native_list_append(v, ["lekaðr", "adj", "lekaðr", "", "", "", "leaky"]) + let v = native_list_append(v, ["lakr", "adj", "lakr", "", "", "", "lacking in quality"]) + let v = native_list_append(v, ["rösk", "adj", "rösk", "", "", "", "inflection of röskr"]) + let v = native_list_append(v, ["krappr", "adj", "krappr", "", "", "", "strait narrow"]) + let v = native_list_append(v, ["viljugr", "adj", "viljugr", "", "", "", "willing ready"]) + let v = native_list_append(v, ["numinn", "adj", "numinn", "", "", "", "stiff in the"]) + let v = native_list_append(v, ["djúpari", "adj", "djúpari", "", "djúpurum", "", "deeper more deep"]) + let v = native_list_append(v, ["dýpri", "adj", "dýpri", "", "dýprum", "", "deeper more deep"]) + let v = native_list_append(v, ["ǿri", "adj", "ǿri", "", "ǿrum", "", "younger"]) + let v = native_list_append(v, ["dýrri", "adj", "dýrri", "", "dýrrum", "", "strong feminine dative"]) + let v = native_list_append(v, ["nýrri", "adj", "nýjari", "", "nýrrum", "", "positive degree strong"]) + let v = native_list_append(v, ["fyrstr", "adj", "fyrri", "", "", "", "first"]) + let v = native_list_append(v, ["minnigr", "adj", "minnigari", "minnigastr", "", "", "having a good"]) + let v = native_list_append(v, ["myglugr", "adj", "myglugr", "", "", "", "mouldy"]) + let v = native_list_append(v, ["optligr", "adj", "optligr", "", "", "", "frequent"]) + let v = native_list_append(v, ["optliga", "adj", "optliga", "", "", "", "inflection of optligr"]) + let v = native_list_append(v, ["beittr", "adj", "beittr", "", "", "", "sharp keen of"]) + let v = native_list_append(v, ["bitlaðr", "adj", "bitlaðr", "", "", "", "bitted bridled"]) + let v = native_list_append(v, ["þǫgull", "adj", "þǫgull", "", "", "", "taciturn"]) + let v = native_list_append(v, ["þagall", "adj", "þaglari", "", "", "", "taciturn"]) + let v = native_list_append(v, ["gǫngull", "adj", "gǫngull", "", "", "", "running much about"]) + let v = native_list_append(v, ["svikall", "adj", "svikall", "", "", "", "treacherous"]) + let v = native_list_append(v, ["fǫrull", "adj", "fǫrull", "", "", "", "rambling strolling about"]) + let v = native_list_append(v, ["jǫklaðr", "adj", "jǫklaðr", "", "", "", "covered with icicles"]) + let v = native_list_append(v, ["jǫkulkaldr", "adj", "jǫkulkaldr", "", "", "", "ice-cold"]) + let v = native_list_append(v, ["áttum", "adj", "áttum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["sjaundi", "adj", "sjaundi", "", "sjaunda", "", "seventh"]) + let v = native_list_append(v, ["sétti", "adj", "sétti", "", "sétta", "", "sixth"]) + let v = native_list_append(v, ["ellifti", "adj", "ellifti", "", "ellifta", "", "eleventh in a"]) + let v = native_list_append(v, ["ellipti", "adj", "ellipti", "", "ellipta", "", "eleventh in a"]) + let v = native_list_append(v, ["tuttugundi", "adj", "tuttugundi", "", "tuttugunda", "", "twentieth"]) + let v = native_list_append(v, ["tvítjándi", "adj", "tvítjándi", "", "tvítjánda", "", "twentieth"]) + let v = native_list_append(v, ["tuttugti", "adj", "tuttugti", "", "tuttugta", "", "twentieth"]) + let v = native_list_append(v, ["trúm", "adj", "trúm", "", "", "", "inflection of trúr"]) + let v = native_list_append(v, ["graðr", "adj", "graðr", "", "grǫð", "", "entire not castrated"]) + let v = native_list_append(v, ["toginn", "adj", "toginn", "", "", "", "drawn"]) + let v = native_list_append(v, ["afhendr", "adj", "afhendr", "", "", "", "out of ones"]) + let v = native_list_append(v, ["ástigr", "adj", "ástigr", "", "", "", "dear lovely"]) + let v = native_list_append(v, ["ástig", "adj", "ástig", "", "", "", "inflection of ástigr"]) + let v = native_list_append(v, ["sǫlt", "adj", "sǫlt", "", "", "", "inflection of saltr"]) + let v = native_list_append(v, ["sǫm", "adj", "sǫm", "", "", "", "inflection of samr"]) + let v = native_list_append(v, ["úvíss", "adj", "úvíss", "", "úvísan", "", "unwise foolish"]) + let v = native_list_append(v, ["ǫlum", "adj", "ǫlum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["úalinn", "adj", "úalinn", "", "úalin", "", "unborn"]) + let v = native_list_append(v, ["úbeinn", "adj", "úbeinn", "", "", "", "not straight awry"]) + let v = native_list_append(v, ["úbrigðr", "adj", "úbrigðr", "", "", "", "unchanged steadfast"]) + let v = native_list_append(v, ["úfriðligr", "adj", "úfriðligr", "", "", "", "unpeaceful unruly"]) + let v = native_list_append(v, ["úfriðliga", "adj", "úfriðliga", "", "", "", "inflection of úfriðligr"]) + let v = native_list_append(v, ["úfríðr", "adj", "úfríðr", "", "", "", "ugly"]) + let v = native_list_append(v, ["fríð", "adj", "fríð", "", "", "", "inflection of fríðr"]) + let v = native_list_append(v, ["frjós", "adj", "frjós", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["frær", "adj", "frær", "", "", "", "yielding fruit"]) + let v = native_list_append(v, ["frævan", "adj", "frævan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["frjóva", "adj", "frjóva", "", "", "", "inflection of frjór"]) + let v = native_list_append(v, ["úfrjór", "adj", "úfrjór", "", "", "", "infertile unproductive"]) + let v = native_list_append(v, ["úfrær", "adj", "úfrær", "", "", "", "infertile unproductive"]) + let v = native_list_append(v, ["frjósamr", "adj", "frjósamr", "", "", "", "fertile"]) + let v = native_list_append(v, ["brúnnar", "adj", "brúnnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["frakkr", "adj", "frakkr", "", "", "", "brave undaunted"]) + let v = native_list_append(v, ["heilbrigðr", "adj", "heilbrigðr", "", "", "", "hale healthy"]) + let v = native_list_append(v, ["þriðja", "adj", "þriðja", "", "", "", "inflection of þriði"]) + let v = native_list_append(v, ["goðan", "adj", "goðan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["vakra", "adj", "vakra", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["næm", "adj", "næm", "", "", "", "inflection of næmr"]) + let v = native_list_append(v, ["deigs", "adj", "deigs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["veika", "adj", "veika", "", "", "", "inflection of veikr"]) + let v = native_list_append(v, ["mæran", "adj", "mæran", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["dróttkvætt", "adj", "dróttkvætt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["etul", "adj", "etul", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["tœkr", "adj", "tœkr", "", "", "", "acceptable"]) + let v = native_list_append(v, ["fullrar", "adj", "fullrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["œrr", "adj", "œrr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bleikr", "adj", "bleikr", "", "", "", "pale whitish"]) + let v = native_list_append(v, ["haltr", "adj", "haltr", "", "", "", "limp lame"]) + let v = native_list_append(v, ["hǫlt", "adj", "hǫlt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["rǫngum", "adj", "rǫngum", "", "", "", "inflection of rangr"]) + let v = native_list_append(v, ["illir", "adj", "illir", "", "", "", "masculine plural nominative"]) + let v = native_list_append(v, ["þrátt", "adj", "þrátt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fjǫlgr", "adj", "fjǫlgr", "", "", "", "numerous"]) + let v = native_list_append(v, ["fjǫlgan", "adj", "fjǫlgan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["fjǫlga", "adj", "fjǫlga", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["fjǫlhǫfðaðr", "adj", "fjǫlhǫfðaðr", "", "", "", "many-headed polycephalic"]) + let v = native_list_append(v, ["birgr", "adj", "birgr", "", "", "", "provided well furnished"]) + let v = native_list_append(v, ["sýsl", "adj", "sýsl", "", "", "", "eager zealous"]) + let v = native_list_append(v, ["rǫg", "adj", "rǫg", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["rassragr", "adj", "rassragr", "", "", "", "prone to sodomy"]) + let v = native_list_append(v, ["sannheilagr", "adj", "sannheilagr", "", "", "", "truly holy"]) + let v = native_list_append(v, ["úheilagr", "adj", "úheilagr", "", "", "", "not holy unholy"]) + let v = native_list_append(v, ["helgum", "adj", "helgum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["styggr", "adj", "styggr", "", "", "", "shy"]) + let v = native_list_append(v, ["tryggvan", "adj", "tryggvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["tryggva", "adj", "tryggva", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["tryggvi", "adj", "tryggvi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["þurra", "adj", "þurra", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["dauða", "adj", "dauða", "", "", "", "inflection of dauðr"]) + let v = native_list_append(v, ["þurrum", "adj", "þurrum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["ljót", "adj", "ljót", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["etlar", "adj", "etlar", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["etalla", "adj", "etalla", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["etallar", "adj", "etallar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["etalli", "adj", "etalli", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["etals", "adj", "etals", "", "", "", "strong masculine genitive"]) + let v = native_list_append(v, ["etlum", "adj", "etlum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["etalt", "adj", "etalt", "", "", "", "strong neuter nominative"]) + let v = native_list_append(v, ["etlu", "adj", "etlu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["etlir", "adj", "etlir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["súrar", "adj", "súrar", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["súrra", "adj", "súrra", "", "", "", "strong genitive plural"]) + let v = native_list_append(v, ["mjár", "adj", "mjár", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mjá", "adj", "mjá", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["mjátt", "adj", "mjátt", "", "", "", "strong neuter nominative"]) + let v = native_list_append(v, ["hagr", "adj", "hagr", "", "", "", "handy skillful"]) + let v = native_list_append(v, ["nírǿðr", "adj", "nírǿðr", "", "", "", "measuring ninety fathoms"]) + let v = native_list_append(v, ["óðfúss", "adj", "óðfúss", "", "", "", "madly longing excited"]) + let v = native_list_append(v, ["hvatr", "adj", "hvatr", "", "", "", "active brisk vigorous"]) + let v = native_list_append(v, ["þekkr", "adj", "þekkr", "", "", "", "agreeable pleasing liked"]) + let v = native_list_append(v, ["dreyrugr", "adj", "dreyrugr", "", "", "", "bloody gory"]) + let v = native_list_append(v, ["slakr", "adj", "slakari", "slakastr", "", "", "slack lax not"]) + let v = native_list_append(v, ["djarfr", "adj", "djarfr", "", "", "", "bold daring"]) + let v = native_list_append(v, ["áttrǿðr", "adj", "áttrǿðr", "", "", "", "measuring eighty fathoms"]) + let v = native_list_append(v, ["smjǫrugr", "adj", "smjǫrugr", "", "", "", "greasy"]) + let v = native_list_append(v, ["snauðr", "adj", "snauðr", "", "", "", "bare bald"]) + let v = native_list_append(v, ["spræk", "adj", "spræk", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["rýrr", "adj", "rýrr", "", "", "", "poor weak insignificant"]) + let v = native_list_append(v, ["stuttmælt", "adj", "stuttmælt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["gildr", "adj", "gildr", "", "", "", "valued at"]) + let v = native_list_append(v, ["gildar", "adj", "gildar", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["gildra", "adj", "gildra", "", "", "", "inflection of gildr"]) + let v = native_list_append(v, ["mǫrgu", "adj", "mǫrgu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["djúpa", "adj", "djúpa", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["úkyrr", "adj", "úkyrr", "", "", "", "restless"]) + let v = native_list_append(v, ["ókyrr", "adj", "ókyrr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ókyrrir", "adj", "ókyrrir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["andalauss", "adj", "andalauss", "", "", "", "breathless"]) + let v = native_list_append(v, ["andalausir", "adj", "andalausir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["hvellr", "adj", "hvellr", "", "", "", "shrill"]) + let v = native_list_append(v, ["hvelli", "adj", "hvelli", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["harðar", "adj", "harðar", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["úkyrra", "adj", "úkyrra", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["ókyrra", "adj", "ókyrra", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["ballr", "adj", "ballari", "ballastr", "", "", "stubborn reoccuring"]) + let v = native_list_append(v, ["aldinn", "adj", "aldinn", "", "", "", "old ancient"]) + let v = native_list_append(v, ["visinn", "adj", "visinn", "", "", "", "withered"]) + let v = native_list_append(v, ["úkyrrum", "adj", "úkyrrum", "", "", "", "strong/weak all genders"]) + let v = native_list_append(v, ["ókyrrum", "adj", "ókyrrum", "", "", "", "strong/weak all genders"]) + let v = native_list_append(v, ["ókyrt", "adj", "ókyrt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["ókyrrt", "adj", "ókyrrt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["kyrt", "adj", "kyrt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["kyrrt", "adj", "kyrrt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["litli", "adj", "litli", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["litla", "adj", "litla", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["litlu", "adj", "litlu", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["lítit", "adj", "lítit", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["lítilla", "adj", "lítilla", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["lítillar", "adj", "lítillar", "", "", "", "strong positive degree"]) + let v = native_list_append(v, ["lítilli", "adj", "lítilli", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["lítinn", "adj", "lítinn", "", "", "", "strong positive degree"]) + let v = native_list_append(v, ["hvítan", "adj", "hvítan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["svartan", "adj", "svartan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["rauðan", "adj", "rauðan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["yngstum", "adj", "yngstum", "", "", "", "superlative degree strong"]) + let v = native_list_append(v, ["yngrum", "adj", "yngrum", "", "", "", "comparative degree strong/weak"]) + let v = native_list_append(v, ["yngra", "adj", "yngra", "", "", "", "comparative degree masculine"]) + let v = native_list_append(v, ["yngstr", "adj", "yngstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["ungan", "adj", "ungan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["ungra", "adj", "ungra", "", "", "", "strong all genders"]) + let v = native_list_append(v, ["sœmri", "adj", "sœmri", "", "sœmrum", "", "positive degree strong"]) + let v = native_list_append(v, ["sœmra", "adj", "sœmra", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["sœmrum", "adj", "sœmrum", "", "", "", "comparative degree all"]) + let v = native_list_append(v, ["sǿmr", "adj", "sœmri", "sœmstr", "", "", "seemly fitting"]) + let v = native_list_append(v, ["sœmstr", "adj", "sœmstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["smæsti", "adj", "smæsti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["dýpstr", "adj", "dýpstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["djúpastr", "adj", "djúpastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["nýjari", "adj", "nýjari", "", "nýjurum", "", "comparative degree of"]) + let v = native_list_append(v, ["fjǫlmennr", "adj", "fjǫlmennari", "fjǫlmennstr", "", "", "with many men"]) + let v = native_list_append(v, ["fjǫlmennari", "adj", "fjǫlmennari", "", "fjǫlmennurum", "", "comparative degree of"]) + let v = native_list_append(v, ["fjǫlmennstr", "adj", "fjǫlmennstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["nýjastr", "adj", "nýjastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["auðgastr", "adj", "auðgastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["þungusti", "adj", "þungusti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["vegligastr", "adj", "vegligastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["tryggvastr", "adj", "tryggvastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["minnstr", "adj", "minnstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["flestr", "adj", "flestr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["ríkjastr", "adj", "ríkjastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["neztr", "adj", "neðri", "", "", "", "bottommost lowest"]) + let v = native_list_append(v, ["nyrztr", "adj", "nyrztr", "", "", "", "northernmost"]) + let v = native_list_append(v, ["nørztr", "adj", "nørztr", "", "", "", "northernmost"]) + let v = native_list_append(v, ["synstr", "adj", "synstr", "", "", "", "southernmost"]) + let v = native_list_append(v, ["ýztr", "adj", "ýtri", "", "", "", "outermost"]) + let v = native_list_append(v, ["góðs", "adj", "góðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["nezta", "adj", "nezta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["nezti", "adj", "nezti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["neztu", "adj", "neztu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["nyrztum", "adj", "nyrztum", "", "", "", "strong masculine dative"]) + let v = native_list_append(v, ["hentr", "adj", "hentr", "", "", "", "fit suited right"]) + let v = native_list_append(v, ["beztr", "adj", "beztr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["sykn", "adj", "sykn", "", "", "", "innocent"]) + let v = native_list_append(v, ["sykna", "adj", "sykna", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["yrk", "adj", "yrk", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["yrkr", "adj", "yrkr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["virkr", "adj", "virkr", "", "", "", "working"]) + let v = native_list_append(v, ["tíða", "adj", "tíða", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["tíði", "adj", "tíði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["trauð", "adj", "trauð", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["trauðr", "adj", "trauðr", "", "", "", "reluctant loath unwilling"]) + let v = native_list_append(v, ["trautt", "adj", "trautt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["sǿnskr", "adj", "sǿnskr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["svenskr", "adj", "svenskr", "", "", "", "Swedish"]) + let v = native_list_append(v, ["svænskr", "adj", "svænskr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hávir", "adj", "hávir", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["kostall", "adj", "kostall", "", "", "", "costly"]) + let v = native_list_append(v, ["lægri", "adj", "lægri", "", "lægrum", "", "comparative degree of"]) + let v = native_list_append(v, ["sprækt", "adj", "sprækt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hryggvir", "adj", "hryggvir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["eirsamr", "adj", "eirsamr", "", "", "", "merciful"]) + let v = native_list_append(v, ["hǫfugr", "adj", "hǫfugr", "", "", "", "heavy difficult"]) + let v = native_list_append(v, ["-kundr", "adj", "-kundr", "", "", "", "born of descending"]) + let v = native_list_append(v, ["snarr", "adj", "snarr", "", "", "", "hard-twisted of a"]) + let v = native_list_append(v, ["betrum", "adj", "betrum", "", "", "", "comparative degree masculine/feminine/neuter"]) + let v = native_list_append(v, ["dreyrug", "adj", "dreyrug", "", "", "", "inflection of dreyrugr"]) + let v = native_list_append(v, ["gjǫrn", "adj", "gjǫrn", "", "", "", "inflection of gjarn"]) + let v = native_list_append(v, ["vǫnum", "adj", "vǫnum", "", "", "", "inflection of vanr"]) + let v = native_list_append(v, ["dreyrgan", "adj", "dreyrgan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["ǫnnur", "adj", "ǫnnur", "", "", "", "inflection of annarr"]) + let v = native_list_append(v, ["mjávara", "adj", "mjávara", "", "", "", "inflection of mjár"]) + let v = native_list_append(v, ["aðrir", "adj", "aðrir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["sœnskri", "adj", "sœnskri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["bláum", "adj", "bláum", "", "", "", "inflection of blár"]) + let v = native_list_append(v, ["mæri", "adj", "mæri", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["bláir", "adj", "bláir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["hǫrðum", "adj", "hǫrðum", "", "", "", "inflection of harðr"]) + let v = native_list_append(v, ["harði", "adj", "harði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["heiðar", "adj", "heiðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["tolfvetr", "adj", "tolfvetr", "", "", "", "twelve years old"]) + let v = native_list_append(v, ["ǿgr", "adj", "ǿgr", "", "", "", "terrible"]) + let v = native_list_append(v, ["ǿrr", "adj", "ǿrari", "ǿrastr", "", "", "mad"]) + let v = native_list_append(v, ["ǿrum", "adj", "ǿrum", "", "", "", "inflection of ǿrr"]) + let v = native_list_append(v, ["œrum", "adj", "œrum", "", "", "", "inflection of œrr"]) + let v = native_list_append(v, ["dreyrgum", "adj", "dreyrgum", "", "", "", "inflection of dreyrugr"]) + let v = native_list_append(v, ["sǫnn", "adj", "sǫnn", "", "", "", "inflection of sannr"]) + let v = native_list_append(v, ["þriðju", "adj", "þriðju", "", "", "", "inflection of þriði"]) + let v = native_list_append(v, ["rýnn", "adj", "rýnn", "", "", "", "rune-skilled able to"]) + let v = native_list_append(v, ["fríðrar", "adj", "fríðrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["rýnasta", "adj", "rýnasta", "", "", "", "inflection of rýnn"]) + let v = native_list_append(v, ["magran", "adj", "magran", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["skammar", "adj", "skammar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["skǫmm", "adj", "skǫmm", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["skammr", "adj", "skemmri", "skemstr", "", "", "short"]) + let v = native_list_append(v, ["skemmri", "adj", "skemmri", "", "skemmrum", "", "comparative degree of"]) + let v = native_list_append(v, ["skemstr", "adj", "skemstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["skemst", "adj", "skemst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["skemsti", "adj", "skemsti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["skemmstr", "adj", "skemmstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["skemmst", "adj", "skemmst", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["skemmsta", "adj", "skemmsta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["skemsta", "adj", "skemsta", "", "", "", "strong feminine accusative"]) + let v = native_list_append(v, ["skemmra", "adj", "skemmra", "", "", "", "masculine oblique cases"]) + let v = native_list_append(v, ["skemmrum", "adj", "skemmrum", "", "", "", "all genders dative"]) + let v = native_list_append(v, ["skemstu", "adj", "skemstu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["skemmstu", "adj", "skemmstu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["skamt", "adj", "skamt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skǫmmu", "adj", "skǫmmu", "", "", "", "strong neuter dative"]) + let v = native_list_append(v, ["skírri", "adj", "skírri", "", "skírrum", "", "positive degree strong"]) + let v = native_list_append(v, ["skírra", "adj", "skírra", "", "", "", "strong all genders"]) + let v = native_list_append(v, ["skírrum", "adj", "skírrum", "", "", "", "all genders dative"]) + let v = native_list_append(v, ["skírstr", "adj", "skírstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["auðigri", "adj", "auðigri", "", "auðigrum", "", "strong feminine dative"]) + let v = native_list_append(v, ["auðigra", "adj", "auðigra", "", "", "", "strong all genders"]) + let v = native_list_append(v, ["fleira", "adj", "fleira", "", "", "", "masculine oblique cases"]) + let v = native_list_append(v, ["fleirum", "adj", "fleirum", "", "", "", "all genders dative"]) + let v = native_list_append(v, ["øfri", "adj", "øfri", "øfstr", "øfrum", "", "alternative form of"]) + let v = native_list_append(v, ["øfstr", "adj", "øfstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["efstr", "adj", "efstr", "", "", "", "uppermost"]) + let v = native_list_append(v, ["iðri", "adj", "iðri", "", "iðrum", "", "alternative spelling of"]) + let v = native_list_append(v, ["iðra", "adj", "iðra", "", "", "", "masculine oblique cases"]) + let v = native_list_append(v, ["epztr", "adj", "epztr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["eptra", "adj", "eptra", "", "", "", "masculine oblique cases"]) + let v = native_list_append(v, ["eptrum", "adj", "eptrum", "", "", "", "all genders dative"]) + let v = native_list_append(v, ["hindrum", "adj", "hindrum", "", "", "", "all genders dative"]) + let v = native_list_append(v, ["hinzt", "adj", "hinzt", "", "", "", "strong feminine nominative"]) + let v = native_list_append(v, ["vestastr", "adj", "vestastr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["ýmsir", "adj", "ýmsir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["dautt", "adj", "dautt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["dauð", "adj", "dauð", "", "", "", "inflection of dauðr"]) + let v = native_list_append(v, ["deigum", "adj", "deigum", "", "", "", "inflection of deigr"]) + let v = native_list_append(v, ["ǫfga", "adj", "ǫfga", "", "", "", "inflection of ǫfugr"]) + let v = native_list_append(v, ["ǫðrum", "adj", "ǫðrum", "", "", "", "inflection of annarr"]) + let v = native_list_append(v, ["meinn", "adj", "meinn", "", "", "", "painful"]) + let v = native_list_append(v, ["meinar", "adj", "meinar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["meinum", "adj", "meinum", "", "", "", "inflection of meinn"]) + let v = native_list_append(v, ["hryggvan", "adj", "hryggvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hryggvari", "adj", "hryggvari", "", "", "", "inflection of hryggr"]) + let v = native_list_append(v, ["hœgri", "adj", "hœgri", "", "", "", "inflection of hœgr"]) + let v = native_list_append(v, ["hǿgri", "adj", "hǿgri", "", "", "", "inflection of hǿgr"]) + let v = native_list_append(v, ["sǿtr", "adj", "sǿtari", "sǿtastr", "", "", "sweet"]) + let v = native_list_append(v, ["sǿtan", "adj", "sǿtan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["sǿtari", "adj", "sǿtari", "", "", "", "inflection of sǿtr"]) + let v = native_list_append(v, ["sǿtt", "adj", "sǿtt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["vǫrmum", "adj", "vǫrmum", "", "", "", "inflection of varmr"]) + let v = native_list_append(v, ["varmra", "adj", "varmra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["vǫrmu", "adj", "vǫrmu", "", "", "", "inflection of varmr"]) + let v = native_list_append(v, ["varmri", "adj", "varmri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["vǫrm", "adj", "vǫrm", "", "", "", "inflection of varmr"]) + let v = native_list_append(v, ["teitir", "adj", "teitir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["teitan", "adj", "teitan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["teitri", "adj", "teitri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["hvítri", "adj", "hvítri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["feigan", "adj", "feigan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["feigjan", "adj", "feigjan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["feigs", "adj", "feigs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["feigum", "adj", "feigum", "", "", "", "inflection of feigr"]) + let v = native_list_append(v, ["grǿnum", "adj", "grǿnum", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["grǿnsta", "adj", "grǿnsta", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["grǿnan", "adj", "grǿnan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["grǿna", "adj", "grǿna", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["grǿnnar", "adj", "grǿnnar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["grǿnar", "adj", "grǿnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["grǿnu", "adj", "grǿnu", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["grǿnt", "adj", "grǿnt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["grǿnna", "adj", "grǿnna", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["grǿnni", "adj", "grǿnni", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["grǿn", "adj", "grǿn", "", "", "", "inflection of grǿnn"]) + let v = native_list_append(v, ["rauðum", "adj", "rauðum", "", "", "", "inflection of rauðr"]) + let v = native_list_append(v, ["illt", "adj", "illt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["fullum", "adj", "fullum", "", "", "", "inflection of fullr"]) + let v = native_list_append(v, ["fullan", "adj", "fullan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["fullu", "adj", "fullu", "", "", "", "inflection of fullr"]) + let v = native_list_append(v, ["fullir", "adj", "fullir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["teitum", "adj", "teitum", "", "", "", "inflection of teitr"]) + let v = native_list_append(v, ["-kund", "adj", "-kund", "", "", "", "inflection of -kundr"]) + let v = native_list_append(v, ["reginkunnum", "adj", "reginkunnum", "", "", "", "inflection of reginkunnr"]) + let v = native_list_append(v, ["atalt", "adj", "atalt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["gjarnir", "adj", "gjarnir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["hávum", "adj", "hávum", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["hávan", "adj", "hávan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["ljósa", "adj", "ljósa", "", "", "", "inflection of ljóss"]) + let v = native_list_append(v, ["ljóst", "adj", "ljóst", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["ljósan", "adj", "ljósan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["halfan", "adj", "halfan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["heiðin", "adj", "heiðin", "", "", "", "inflection of heiðinn"]) + let v = native_list_append(v, ["heiðnum", "adj", "heiðnum", "", "", "", "inflection of heiðinn"]) + let v = native_list_append(v, ["halfri", "adj", "halfri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["hǫfgan", "adj", "hǫfgan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hǫfgum", "adj", "hǫfgum", "", "", "", "inflection of hǫfugr"]) + let v = native_list_append(v, ["hǫfugt", "adj", "hǫfugt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hǫfug", "adj", "hǫfug", "", "", "", "inflection of hǫfugr"]) + let v = native_list_append(v, ["lausir", "adj", "lausir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["lausan", "adj", "lausan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["lausum", "adj", "lausum", "", "", "", "inflection of lauss"]) + let v = native_list_append(v, ["hvǫtum", "adj", "hvǫtum", "", "", "", "inflection of hvatr"]) + let v = native_list_append(v, ["hvats", "adj", "hvats", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["hvǫtu", "adj", "hvǫtu", "", "", "", "inflection of hvatr"]) + let v = native_list_append(v, ["hugalt", "adj", "hugalt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["hugall", "adj", "hugall", "", "", "", "mindful thoughtful"]) + let v = native_list_append(v, ["athugall", "adj", "athugall", "", "", "", "heedful thoughtful careful"]) + let v = native_list_append(v, ["athuglan", "adj", "athuglan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þagalt", "adj", "þagalt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mǫrg", "adj", "mǫrg", "", "", "", "inflection of margr"]) + let v = native_list_append(v, ["margan", "adj", "margan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["margra", "adj", "margra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["mǫrgum", "adj", "mǫrgum", "", "", "", "inflection of margr"]) + let v = native_list_append(v, ["margrar", "adj", "margrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["margri", "adj", "margri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["daprir", "adj", "daprir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["dǫpr", "adj", "dǫpr", "", "", "", "inflection of dapr"]) + let v = native_list_append(v, ["dapra", "adj", "dapra", "", "", "", "inflection of dapr"]) + let v = native_list_append(v, ["dauðum", "adj", "dauðum", "", "", "", "inflection of dauðr"]) + let v = native_list_append(v, ["dauðir", "adj", "dauðir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["dauðra", "adj", "dauðra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["dauðs", "adj", "dauðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["dauðu", "adj", "dauðu", "", "", "", "inflection of dauðr"]) + let v = native_list_append(v, ["ljótan", "adj", "ljótan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["dauðar", "adj", "dauðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["þessar", "adj", "þessar", "", "", "", "inflection of sjá"]) + let v = native_list_append(v, ["blóðgum", "adj", "blóðgum", "", "", "", "inflection of blóðugr"]) + let v = native_list_append(v, ["blóðgan", "adj", "blóðgan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þurran", "adj", "þurran", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þurri", "adj", "þurri", "", "", "", "inflection of þurr"]) + let v = native_list_append(v, ["aðra", "adj", "aðra", "", "", "", "inflection of annarr"]) + let v = native_list_append(v, ["grǿni", "adj", "grǿni", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["fornar", "adj", "fornar", "", "", "", "inflection of forn"]) + let v = native_list_append(v, ["gullnar", "adj", "gullnar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["víðan", "adj", "víðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["víðri", "adj", "víðri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["vísan", "adj", "vísan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["vísum", "adj", "vísum", "", "", "", "inflection of víss"]) + let v = native_list_append(v, ["djarft", "adj", "djarft", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["djarfi", "adj", "djarfi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["djarfir", "adj", "djarfir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["djarfastr", "adj", "djarfastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["sǫnnu", "adj", "sǫnnu", "", "", "", "inflection of saðr"]) + let v = native_list_append(v, ["kaldan", "adj", "kaldan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["kǫld", "adj", "kǫld", "", "", "", "inflection of kaldr"]) + let v = native_list_append(v, ["kǫldum", "adj", "kǫldum", "", "", "", "inflection of kaldr"]) + let v = native_list_append(v, ["kaldri", "adj", "kaldri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["kǫldu", "adj", "kǫldu", "", "", "", "inflection of kaldr"]) + let v = native_list_append(v, ["vísastr", "adj", "vísastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["gramir", "adj", "gramir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["grǫm", "adj", "grǫm", "", "", "", "inflection of gramr"]) + let v = native_list_append(v, ["helgastir", "adj", "helgastir", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["fornan", "adj", "fornan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["bleikan", "adj", "bleikan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["valskan", "adj", "valskan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["valskra", "adj", "valskra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["valski", "adj", "valski", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["valskrar", "adj", "valskrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["valskar", "adj", "valskar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["vǫlsku", "adj", "vǫlsku", "", "", "", "inflection of valskr"]) + let v = native_list_append(v, ["bezti", "adj", "bezti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["hvítu", "adj", "hvítu", "", "", "", "inflection of hvítr"]) + let v = native_list_append(v, ["hvíts", "adj", "hvíts", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["hvítum", "adj", "hvítum", "", "", "", "inflection of hvítr"]) + let v = native_list_append(v, ["hvítastr", "adj", "hvítastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["hvítasti", "adj", "hvítasti", "", "", "", "weak superlative degree"]) + let v = native_list_append(v, ["blíð", "adj", "blíð", "", "", "", "inflection of blíðr"]) + let v = native_list_append(v, ["gǫrva", "adj", "gǫrva", "", "", "", "inflection of gǫrr"]) + let v = native_list_append(v, ["færri", "adj", "færri", "", "", "", "inflection of fár"]) + let v = native_list_append(v, ["heilǫg", "adj", "heilǫg", "", "", "", "inflection of heilagr"]) + let v = native_list_append(v, ["annarri", "adj", "annarri", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["skírum", "adj", "skírum", "", "", "", "inflection of skírr"]) + let v = native_list_append(v, ["nýtum", "adj", "nýtum", "", "", "", "inflection of nýtr"]) + let v = native_list_append(v, ["svǫrtum", "adj", "svǫrtum", "", "", "", "inflection of svartr"]) + let v = native_list_append(v, ["svartar", "adj", "svartar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["snøggr", "adj", "snøggr", "", "", "", "swift fast quick"]) + let v = native_list_append(v, ["nýju", "adj", "nýju", "", "", "", "inflection of nýr"]) + let v = native_list_append(v, ["blóðugt", "adj", "blóðugt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["blóðugri", "adj", "blóðugri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["blóðga", "adj", "blóðga", "", "", "", "inflection of blóðugr"]) + let v = native_list_append(v, ["blóðug", "adj", "blóðug", "", "", "", "inflection of blóðugr"]) + let v = native_list_append(v, ["breiðan", "adj", "breiðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["víðar", "adj", "víðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["víðum", "adj", "víðum", "", "", "", "inflection of víðr"]) + let v = native_list_append(v, ["rauðir", "adj", "rauðir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["rauðar", "adj", "rauðar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["rauðs", "adj", "rauðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["rauðri", "adj", "rauðri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["rauðari", "adj", "rauðari", "", "", "", "inflection of rauðr"]) + let v = native_list_append(v, ["hávi", "adj", "hávi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["háva", "adj", "háva", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["hærri", "adj", "hærri", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["hæstrar", "adj", "hæstrar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["hæstr", "adj", "hæstr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["hæsta", "adj", "hæsta", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["hæstum", "adj", "hæstum", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["hæstar", "adj", "hæstar", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["hæsts", "adj", "hæsts", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["hærra", "adj", "hærra", "", "", "", "inflection of hár"]) + let v = native_list_append(v, ["hollan", "adj", "hollan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["dýran", "adj", "dýran", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["flestir", "adj", "flestir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["ǫfgum", "adj", "ǫfgum", "", "", "", "inflection of ǫfugr"]) + let v = native_list_append(v, ["ǫfgan", "adj", "ǫfgan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["ǫfugt", "adj", "ǫfugt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["mjóvara", "adj", "mjóvara", "", "", "", "inflection of mjór"]) + let v = native_list_append(v, ["vǫr", "adj", "vǫr", "", "", "", "inflection of varr"]) + let v = native_list_append(v, ["mjaltr", "adj", "mjaltr", "", "", "", "milch giving milk"]) + let v = native_list_append(v, ["heiða", "adj", "heiða", "", "", "", "inflection of heiðr"]) + let v = native_list_append(v, ["heiðri", "adj", "heiðri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["fǫlvan", "adj", "fǫlvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["gjǫrnum", "adj", "gjǫrnum", "", "", "", "inflection of gjarn"]) + let v = native_list_append(v, ["gjarnt", "adj", "gjarnt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þekkasti", "adj", "þekkasti", "", "", "", "weak superlative degree"]) + let v = native_list_append(v, ["fróðr", "adj", "fróðr", "", "", "", "wise erudite learnèd"]) + let v = native_list_append(v, ["fróðan", "adj", "fróðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["starfsamr", "adj", "starfsamr", "", "", "", "laborious troublesome"]) + let v = native_list_append(v, ["starfsami", "adj", "starfsami", "", "", "", "weak masculine singular"]) + let v = native_list_append(v, ["rauðasti", "adj", "rauðasti", "", "", "", "weak superlative degree"]) + let v = native_list_append(v, ["austust", "adj", "austust", "", "", "", "inflection of eystri"]) + let v = native_list_append(v, ["hǫlfum", "adj", "hǫlfum", "", "", "", "inflection of halfr"]) + let v = native_list_append(v, ["hǫlfu", "adj", "hǫlfu", "", "", "", "inflection of halfr"]) + let v = native_list_append(v, ["svinn", "adj", "svinn", "", "", "", "inflection of sviðr"]) + let v = native_list_append(v, ["valskt", "adj", "valskt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["vǫlskum", "adj", "vǫlskum", "", "", "", "inflection of valskr"]) + let v = native_list_append(v, ["valskri", "adj", "valskri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["vǫlsk", "adj", "vǫlsk", "", "", "", "inflection of valskr"]) + let v = native_list_append(v, ["þvert", "adj", "þvert", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["torvelt", "adj", "torvelt", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þrévetran", "adj", "þrévetran", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["fránn", "adj", "fránn", "", "", "", "gleaming flashing"]) + let v = native_list_append(v, ["dróttkvæðr", "adj", "dróttkvæðr", "", "", "", "dróttkvætt a poetic"]) + let v = native_list_append(v, ["dróttkvæðum", "adj", "dróttkvæðum", "", "", "", "inflection of dróttkvæðr"]) + let v = native_list_append(v, ["sviðr", "adj", "sviðr", "", "", "", "swift quick"]) + let v = native_list_append(v, ["svinnr", "adj", "svinnr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bærr", "adj", "bærr", "", "", "", "right appropriate"]) + let v = native_list_append(v, ["bært", "adj", "bært", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["þýzkr", "adj", "þýzkr", "", "", "", "German"]) + let v = native_list_append(v, ["þýzkum", "adj", "þýzkum", "", "", "", "inflection of þýzkr"]) + let v = native_list_append(v, ["þýzkan", "adj", "þýzkan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þormóðr", "adj", "þormóðr", "", "", "", "brave daring"]) + let v = native_list_append(v, ["þormóði", "adj", "þormóði", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["bernskr", "adj", "bernskr", "", "", "", "childish immature"]) + let v = native_list_append(v, ["bjǫrt", "adj", "bjǫrt", "", "", "", "inflection of bjartr"]) + let v = native_list_append(v, ["bjǫrtum", "adj", "bjǫrtum", "", "", "", "inflection of bjartr"]) + let v = native_list_append(v, ["bjartri", "adj", "bjartri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["bjartrar", "adj", "bjartrar", "", "", "", "strong feminine genitive"]) + let v = native_list_append(v, ["bjartir", "adj", "bjartir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["bjartar", "adj", "bjartar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["dyggr", "adj", "dyggr", "", "", "", "faithful trusty"]) + let v = native_list_append(v, ["dyggvan", "adj", "dyggvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["dyggvar", "adj", "dyggvar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["dyggvastr", "adj", "dyggvastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["svarts", "adj", "svarts", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["baugnafaðs", "adj", "baugnafaðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["nafaðs", "adj", "nafaðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["nafaðr", "adj", "nafaðr", "", "", "", "hubbed naved"]) + let v = native_list_append(v, ["baugnafaðr", "adj", "baugnafaðr", "", "", "", "boss-hubbed naved"]) + let v = native_list_append(v, ["baugnafat", "adj", "baugnafat", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["skǫmmum", "adj", "skǫmmum", "", "", "", "inflection of skammr"]) + let v = native_list_append(v, ["hærðr", "adj", "hærðr", "", "", "", "haired"]) + let v = native_list_append(v, ["þekkastr", "adj", "þekkastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["iflauss", "adj", "iflauss", "", "", "", "doubtless undoubted"]) + let v = native_list_append(v, ["iflaust", "adj", "iflaust", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["reiðan", "adj", "reiðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þvísa", "adj", "þvísa", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["ginnheilǫg", "adj", "ginnheilǫg", "", "", "", "inflection of ginnheilagr"]) + let v = native_list_append(v, ["frjóvan", "adj", "frjóvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["móðan", "adj", "móðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["heilir", "adj", "heilir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["heilum", "adj", "heilum", "", "", "", "inflection of heill"]) + let v = native_list_append(v, ["heilastr", "adj", "heilastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["heilastan", "adj", "heilastan", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["spakastr", "adj", "spakastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["þǫgul", "adj", "þǫgul", "", "", "", "inflection of þagall"]) + let v = native_list_append(v, ["þagals", "adj", "þagals", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["hárum", "adj", "hárum", "", "", "", "inflection of hárr"]) + let v = native_list_append(v, ["myrkvan", "adj", "myrkvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["sváss", "adj", "svásari", "svásastr", "", "", "ones own"]) + let v = native_list_append(v, ["svásum", "adj", "svásum", "", "", "", "inflection of sváss"]) + let v = native_list_append(v, ["hægr", "adj", "hægr", "", "", "", "easy convenient"]) + let v = native_list_append(v, ["örr", "adj", "örr", "", "", "", "swift ready"]) + let v = native_list_append(v, ["frægr", "adj", "frægri", "frægastr", "", "", "famous renowned illustrious"]) + let v = native_list_append(v, ["burðugr", "adj", "burðugri", "burðugastr", "", "", "high-born of high"]) + let v = native_list_append(v, ["snøggvan", "adj", "snøggvan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["fjǫlhǫfðaða", "adj", "fjǫlhǫfðaða", "", "", "", "inflection of fjǫlhǫfðaðr"]) + let v = native_list_append(v, ["leiks", "adj", "leiks", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["sárr", "adj", "sárr", "", "", "", "sore aching"]) + let v = native_list_append(v, ["glǫð", "adj", "glǫð", "", "", "", "inflection of glaðr"]) + let v = native_list_append(v, ["sælir", "adj", "sælir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["sælum", "adj", "sælum", "", "", "", "inflection of sæll"]) + let v = native_list_append(v, ["teitastr", "adj", "teitastr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["blauðr", "adj", "blauðari", "blauðastr", "", "", "soft meek cowardly"]) + let v = native_list_append(v, ["blauðan", "adj", "blauðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["blauðum", "adj", "blauðum", "", "", "", "inflection of blauðr"]) + let v = native_list_append(v, ["skamman", "adj", "skamman", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["dǫnsk", "adj", "dǫnsk", "", "", "", "inflection of danskr"]) + let v = native_list_append(v, ["annarra", "adj", "annarra", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["árrisull", "adj", "árrisull", "", "", "", "early-rising inclined to"]) + let v = native_list_append(v, ["gjǫflan", "adj", "gjǫflan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["fornhaldinn", "adj", "fornhaldinn", "", "", "", "time-honoured held since"]) + let v = native_list_append(v, ["ljóti", "adj", "ljóti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["fróðum", "adj", "fróðum", "", "", "", "inflection of fróðr"]) + let v = native_list_append(v, ["vrǫngum", "adj", "vrǫngum", "", "", "", "inflection of vrangr"]) + let v = native_list_append(v, ["harðgeðr", "adj", "harðgeðr", "", "", "", "hard-minded defiant"]) + let v = native_list_append(v, ["þafðan", "adj", "þafðan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["þekkar", "adj", "þekkar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["þekkjar", "adj", "þekkjar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["ávarðr", "adj", "ávarðr", "", "", "", "dear to favoured"]) + let v = native_list_append(v, ["harðgǫrr", "adj", "harðgǫrr", "", "", "", "sturdy"]) + let v = native_list_append(v, ["skeifr", "adj", "skeifari", "skeifastr", "", "", "askew oblique"]) + let v = native_list_append(v, ["slǿgi", "adj", "slǿgi", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["ámr", "adj", "ámr", "", "", "", "dark"]) + let v = native_list_append(v, ["herfiligr", "adj", "herfiligr", "", "", "", "wretched"]) + let v = native_list_append(v, ["dáligr", "adj", "dáligr", "", "", "", "bad evil harmful"]) + let v = native_list_append(v, ["fallhaddr", "adj", "fallhaddr", "", "", "", "flowing-haired having freely"]) + let v = native_list_append(v, ["fallhadds", "adj", "fallhadds", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["feigir", "adj", "feigir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["feigra", "adj", "feigra", "", "", "", "strong masculine/feminine/neuter genitive"]) + let v = native_list_append(v, ["veðreygr", "adj", "veðreygr", "", "", "", "storm-eyed having stormy"]) + let v = native_list_append(v, ["eineygja", "adj", "eineygja", "", "", "", "inflection of eineygr"]) + let v = native_list_append(v, ["eineygr", "adj", "eineygr", "", "", "", "one-eyed"]) + let v = native_list_append(v, ["víðlendr", "adj", "víðlendr", "", "", "", "wide-landed possessing much"]) + let v = native_list_append(v, ["rækr", "adj", "rækr", "", "", "", "deserving to be"]) + let v = native_list_append(v, ["óvíss", "adj", "óvíss", "", "óvísan", "", "alternative form of"]) + let v = native_list_append(v, ["hældræpr", "adj", "hældræpr", "", "", "", "deserving to be"]) + let v = native_list_append(v, ["efstu", "adj", "efstu", "", "", "", "inflection of efstr"]) + let v = native_list_append(v, ["ofmargr", "adj", "ofmargr", "", "ofmǫrg", "", "too many"]) + let v = native_list_append(v, ["ofmargar", "adj", "ofmargar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["lendr", "adj", "lendr", "", "", "", "landed in possession"]) + let v = native_list_append(v, ["heiðit", "adj", "heiðit", "", "", "", "strong neuter nominative/accusative"]) + let v = native_list_append(v, ["framvíss", "adj", "framvíss", "", "", "", "prescient prophetic"]) + let v = native_list_append(v, ["vrangan", "adj", "vrangan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["vrangr", "adj", "vrangr", "", "", "", "twisted"]) + let v = native_list_append(v, ["vreiðir", "adj", "vreiðir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["skýrr", "adj", "skýrr", "", "", "", "clear"]) + let v = native_list_append(v, ["goðvarðr", "adj", "goðvarðr", "", "", "", "protected by the"]) + let v = native_list_append(v, ["goðvǫrðu", "adj", "goðvǫrðu", "", "", "", "inflection of goðvarðr"]) + let v = native_list_append(v, ["grǫmum", "adj", "grǫmum", "", "", "", "inflection of gramr"]) + let v = native_list_append(v, ["niflgóðr", "adj", "niflgóðr", "", "", "", "darkness-loving evil"]) + let v = native_list_append(v, ["rjóðs", "adj", "rjóðs", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["torfyndr", "adj", "torfyndr", "", "", "", "hard to find"]) + let v = native_list_append(v, ["fǿrr", "adj", "fǿrr", "", "", "", "able-bodied capable"]) + let v = native_list_append(v, ["torveldr", "adj", "torveldr", "", "", "", "hard difficult"]) + let v = native_list_append(v, ["auðveldr", "adj", "auðveldr", "", "", "", "easy"]) + let v = native_list_append(v, ["beinan", "adj", "beinan", "", "", "", "strong masculine accusative"]) + let v = native_list_append(v, ["hárir", "adj", "hárir", "", "", "", "strong masculine nominative"]) + let v = native_list_append(v, ["hárar", "adj", "hárar", "", "", "", "strong feminine nominative/accusative"]) + let v = native_list_append(v, ["einhendr", "adj", "einhendr", "", "", "", "one-handed"]) + let v = native_list_append(v, ["útlenzkr", "adj", "útlenzkr", "", "", "", "foreign"]) + let v = native_list_append(v, ["haldorðr", "adj", "haldorðr", "", "", "", "word-keeping faithful"]) + let v = native_list_append(v, ["haldorða", "adj", "haldorða", "", "", "", "inflection of haldorðr"]) + let v = native_list_append(v, ["haldorð", "adj", "haldorð", "", "", "", "inflection of haldorðr"]) + let v = native_list_append(v, ["grannr", "adj", "grannr", "", "", "", "thin slender slim"]) + let v = native_list_append(v, ["hollr", "adj", "hollari", "hollastr", "", "", "good gracious favourable"]) + let v = native_list_append(v, ["karlkenndr", "adj", "karlkenndr", "", "", "", "masculine of male"]) + let v = native_list_append(v, ["karlkennda", "adj", "karlkennda", "", "", "", "inflection of karlkenndr"]) + let v = native_list_append(v, ["karlkenndum", "adj", "karlkenndum", "", "", "", "inflection of karlkenndr"]) + let v = native_list_append(v, ["beiskr", "adj", "beiskari", "beiskastr", "", "", "bitter acrid sharp"]) + let v = native_list_append(v, ["pílagrímr", "adj", "pílagrímr", "", "", "", "pilgrim"]) + let v = native_list_append(v, ["saurugr", "adj", "saurugr", "", "", "", "filthy dirty"]) + let v = native_list_append(v, ["ágætr", "adj", "ágætr", "", "", "", "excellent splendid"]) + let v = native_list_append(v, ["sǿtri", "adj", "sǿtri", "", "", "", "strong feminine dative"]) + let v = native_list_append(v, ["fæstr", "adj", "fæstr", "", "", "", "strong superlative degree"]) + let v = native_list_append(v, ["hvíti", "adj", "hvíti", "", "", "", "weak masculine nominative"]) + let v = native_list_append(v, ["auða", "adj", "auða", "", "", "", "inflection of auðr"]) + let v = native_list_append(v, ["gjarnar", "adj", "gjarnar", "", "", "", "inflection of gjarn"]) + let v = native_list_append(v, ["illr", "adj", "verri", "verstr", "", "", "nonstandard form of"]) + let v = native_list_append(v, ["ílla", "adj", "ílla", "", "", "", "inflection of íllr"]) + let v = native_list_append(v, ["verstr", "adj", "verstr", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["siðlátr", "adj", "siðlátr", "", "", "", "well-mannered virtuous"]) + let v = native_list_append(v, ["kátr", "adj", "kátr", "", "", "", "jolly glad cheerful"]) + let v = native_list_append(v, ["kætʀ", "adj", "kætʀ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["okætʀ", "adj", "okætʀ", "", "", "", "unjolly"]) + let v = native_list_append(v, ["en", "conj", "en", "", "", "", "but"]) + let v = native_list_append(v, ["at", "conj", "at", "", "", "", "that"]) + let v = native_list_append(v, ["an", "conj", "an", "", "", "", "than"]) + let v = native_list_append(v, ["er", "conj", "er", "", "", "", "where"]) + let v = native_list_append(v, ["es", "conj", "es", "", "", "", "archaic form of"]) + let v = native_list_append(v, ["né", "conj", "né", "", "", "", "nor"]) + let v = native_list_append(v, ["ok", "conj", "ok", "", "", "", "and"]) + let v = native_list_append(v, ["ę", "conj", "ę", "", "", "", "abbreviation of eða"]) + let v = native_list_append(v, ["auk", "conj", "auk", "", "", "", "and"]) + let v = native_list_append(v, ["sem", "conj", "sem", "", "", "", "as the same"]) + let v = native_list_append(v, ["ef", "conj", "ef", "", "", "", "if"]) + let v = native_list_append(v, ["síðan", "conj", "síðan", "", "", "", "from the time"]) + let v = native_list_append(v, ["þegar", "conj", "þegar", "", "", "", "immediately at once"]) + let v = native_list_append(v, ["unz", "conj", "unz", "", "", "", "until"]) + let v = native_list_append(v, ["þó", "conj", "þó", "", "", "", "although even though"]) + let v = native_list_append(v, ["meðan", "conj", "meðan", "", "", "", "meanwhile as long"]) + let v = native_list_append(v, ["enda", "conj", "enda", "", "", "", "and so and"]) + let v = native_list_append(v, ["alls", "conj", "alls", "", "", "", "as since"]) + let v = native_list_append(v, ["nema", "conj", "nema", "", "", "", "except unless save"]) + let v = native_list_append(v, ["eðr", "conj", "eðr", "", "", "", "or"]) + let v = native_list_append(v, ["ᛅᚢᚴ", "conj", "ᛅᚢᚴ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["hvárki", "conj", "hvárki", "", "", "", "neither"]) + let v = native_list_append(v, ["útan", "conj", "útan", "", "", "", "except but"]) + let v = native_list_append(v, ["þí", "conj", "þí", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["for því", "conj", "for því", "", "", "", "for that because"]) + let v = native_list_append(v, ["in", "det", "in", "", "", "", "inflection of inn"]) + let v = native_list_append(v, ["sama", "det", "sama", "", "", "", "inflection of samr"]) + let v = native_list_append(v, ["hit", "det", "hit", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["inn", "det", "inn", "", "", "", "the definite article"]) + let v = native_list_append(v, ["mitt", "det", "mitt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["sinn", "det", "sinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sami", "det", "sami", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sitt", "det", "sitt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["ekki", "det", "ekki", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["hinn", "det", "hinn", "", "", "", "the definite article"]) + let v = native_list_append(v, ["saman", "det", "saman", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["hin", "det", "hin", "", "", "", "inflection of hinn"]) + let v = native_list_append(v, ["báðir", "det", "báðir", "", "", "", "both"]) + let v = native_list_append(v, ["minni", "det", "minni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["óra", "det", "óra", "", "", "", "inflection of várr"]) + let v = native_list_append(v, ["hina", "det", "hina", "", "", "", "inflection of hinn"]) + let v = native_list_append(v, ["samr", "det", "samr", "", "", "", "same"]) + let v = native_list_append(v, ["engi", "det", "engi", "", "", "", "no not any"]) + let v = native_list_append(v, ["minn", "det", "minn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mínn", "det", "mínn", "", "", "", "my"]) + let v = native_list_append(v, ["þínn", "det", "þínn", "", "", "", "your yours singular"]) + let v = native_list_append(v, ["þinn", "det", "þinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sams", "det", "sams", "", "", "", "strong masculine/neuter genitive"]) + let v = native_list_append(v, ["mín", "det", "mín", "", "", "", "inflection of mínn"]) + let v = native_list_append(v, ["minna", "det", "minna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sítt", "det", "sítt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["báðar", "det", "báðar", "", "", "", "nominative/accusative feminine of"]) + let v = native_list_append(v, ["bæði", "det", "bæði", "", "", "", "nominative/accusative neuter of"]) + let v = native_list_append(v, ["þín", "det", "þín", "", "", "", "inflection of þínn"]) + let v = native_list_append(v, ["okkur", "det", "okkur", "", "", "", "inflection of okkarr"]) + let v = native_list_append(v, ["sín", "det", "sín", "", "", "", "inflection of sínn"]) + let v = native_list_append(v, ["hinar", "det", "hinar", "", "", "", "feminine plural nominative/accusative"]) + let v = native_list_append(v, ["hinir", "det", "hinir", "", "", "", "masculine plural nominative"]) + let v = native_list_append(v, ["sínum", "det", "sínum", "", "", "", "inflection of sinn"]) + let v = native_list_append(v, ["várri", "det", "várri", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["enga", "det", "enga", "", "", "", "accusative feminine singular"]) + let v = native_list_append(v, ["sinna", "det", "sinna", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["samt", "det", "samt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["yður", "det", "yður", "", "", "", "inflection of yðvarr"]) + let v = native_list_append(v, ["yðvarr", "det", "yðvarr", "", "", "", "the possessive pronoun"]) + let v = native_list_append(v, ["samar", "det", "samar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["beggja", "det", "beggja", "", "", "", "genitive of báðir"]) + let v = native_list_append(v, ["várra", "det", "várra", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["várt", "det", "várt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["hinna", "det", "hinna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["hinni", "det", "hinni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["engan", "det", "engan", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["hinu", "det", "hinu", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["ossum", "det", "ossum", "", "", "", "inflection of várr"]) + let v = native_list_append(v, ["hins", "det", "hins", "", "", "", "masculine/neuter singular genitive"]) + let v = native_list_append(v, ["várr", "det", "várr", "", "", "", "our belonging to"]) + let v = native_list_append(v, ["okkarr", "det", "okkarr", "", "", "", "our belonging to"]) + let v = native_list_append(v, ["ykkarr", "det", "ykkarr", "", "", "", "your belonging to"]) + let v = native_list_append(v, ["yðarr", "det", "yðarr", "", "", "", "the possessive adjective"]) + let v = native_list_append(v, ["annarr hverr", "det", "annarr hverr", "", "", "", "every other alternately"]) + let v = native_list_append(v, ["engu", "det", "engu", "", "", "", "dative neuter singular"]) + let v = native_list_append(v, ["hvárr", "det", "hvárr", "", "", "", "which of the"]) + let v = native_list_append(v, ["hvárgi", "det", "hvárgi", "", "", "", "either of two"]) + let v = native_list_append(v, ["hvaðarr", "det", "hvaðarr", "", "", "", "older form of"]) + let v = native_list_append(v, ["engra", "det", "engra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["samra", "det", "samra", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["sinnar", "det", "sinnar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["sínir", "det", "sínir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["sína", "det", "sína", "", "", "", "inflection of sínn"]) + let v = native_list_append(v, ["sínu", "det", "sínu", "", "", "", "neuter singular dative"]) + let v = native_list_append(v, ["síns", "det", "síns", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["sínar", "det", "sínar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["þínir", "det", "þínir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["þínu", "det", "þínu", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["annarr hvárr", "det", "annarr hvárr", "", "", "", "either out of"]) + let v = native_list_append(v, ["báða", "det", "báða", "", "", "", "accusative masculine of"]) + let v = native_list_append(v, ["báðum", "det", "báðum", "", "", "", "dative of báðir"]) + let v = native_list_append(v, ["sǫm", "det", "sǫm", "", "", "", "inflection of samr"]) + let v = native_list_append(v, ["engri", "det", "engri", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["engir", "det", "engir", "", "", "", "nominative masculine plural"]) + let v = native_list_append(v, ["nǫkkut", "det", "nǫkkut", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["sínn", "det", "sínn", "", "", "", "one’s own"]) + let v = native_list_append(v, ["ǫðru", "det", "ǫðru", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["engum", "det", "engum", "", "", "", "dative masculine singular"]) + let v = native_list_append(v, ["enskis", "det", "enskis", "", "", "", "genitive masculine singular"]) + let v = native_list_append(v, ["engar", "det", "engar", "", "", "", "nominative feminine plural"]) + let v = native_list_append(v, ["engrar", "det", "engrar", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["nǫkkuru", "det", "nǫkkuru", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["órar", "det", "órar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["okkarn", "det", "okkarn", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["yðrum", "det", "yðrum", "", "", "", "inflection of yðvarr"]) + let v = native_list_append(v, ["sínnar", "det", "sínnar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["sínni", "det", "sínni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["sínna", "det", "sínna", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["þínum", "det", "þínum", "", "", "", "inflection of þínn"]) + let v = native_list_append(v, ["þítt", "det", "þítt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["þitt", "det", "þitt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["þíns", "det", "þíns", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["þína", "det", "þína", "", "", "", "inflection of þínn"]) + let v = native_list_append(v, ["þínar", "det", "þínar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["þínna", "det", "þínna", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["þinna", "det", "þinna", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["þínnar", "det", "þínnar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["þinnar", "det", "þinnar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["þínni", "det", "þínni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["þinni", "det", "þinni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["órum", "det", "órum", "", "", "", "inflection of órr"]) + let v = native_list_append(v, ["óru", "det", "óru", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["várrar", "det", "várrar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["órir", "det", "órir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["várn", "det", "várn", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["várum", "det", "várum", "", "", "", "inflection of várr"]) + let v = native_list_append(v, ["várs", "det", "várs", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["várar", "det", "várar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["ossar", "det", "ossar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["hvárt", "det", "hvárt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["okkart", "det", "okkart", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["órr", "det", "órr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["óran", "det", "óran", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["yðvarn", "det", "yðvarn", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["yðvart", "det", "yðvart", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["yðrar", "det", "yðrar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["yðvars", "det", "yðvars", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["yðrir", "det", "yðrir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["hvárir", "det", "hvárir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["bǫ́ðum", "det", "bǫ́ðum", "", "", "", "dative of báðir"]) + let v = native_list_append(v, ["yðarn", "det", "yðarn", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["yðart", "det", "yðart", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["um", "prep", "um", "", "", "", "about concerning"]) + let v = native_list_append(v, ["of", "prep", "of", "", "", "", "about"]) + let v = native_list_append(v, ["at", "prep", "at", "", "", "", "at to"]) + let v = native_list_append(v, ["und", "prep", "und", "", "", "", "under"]) + let v = native_list_append(v, ["á", "prep", "á", "", "", "", "on"]) + let v = native_list_append(v, ["án", "prep", "án", "", "", "", "without"]) + let v = native_list_append(v, ["frá", "prep", "frá", "", "", "", "from away from"]) + let v = native_list_append(v, ["fyrir", "prep", "fyrir", "", "", "", "before in front"]) + let v = native_list_append(v, ["hjá", "prep", "hjá", "", "", "", "by near with"]) + let v = native_list_append(v, ["í", "prep", "í", "", "", "", "in remaining in"]) + let v = native_list_append(v, ["með", "prep", "með", "", "", "", "with along with"]) + let v = native_list_append(v, ["síðan", "prep", "síðan", "", "", "", "since"]) + let v = native_list_append(v, ["til", "prep", "til", "", "", "", "to towards"]) + let v = native_list_append(v, ["undir", "prep", "undir", "", "", "", "under underneath"]) + let v = native_list_append(v, ["við", "prep", "við", "", "", "", "with dative"]) + let v = native_list_append(v, ["yfir", "prep", "yfir", "", "", "", "over moving across"]) + let v = native_list_append(v, ["fyr", "prep", "fyr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["af", "prep", "af", "", "", "", "of from off"]) + let v = native_list_append(v, ["sakar", "prep", "sakar", "", "", "", "on account of"]) + let v = native_list_append(v, ["nær", "prep", "nær", "", "", "", "in the vicinity"]) + let v = native_list_append(v, ["innan", "prep", "innan", "", "", "", "within"]) + let v = native_list_append(v, ["upp", "prep", "upp", "", "", "", "up"]) + let v = native_list_append(v, ["viðr", "prep", "viðr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ór", "prep", "ór", "", "", "", "out of from"]) + let v = native_list_append(v, ["gegnum", "prep", "gegnum", "", "", "", "through"]) + let v = native_list_append(v, ["undan", "prep", "undan", "", "", "", "from under from"]) + let v = native_list_append(v, ["í gegnum", "prep", "í gegnum", "", "", "", "through"]) + let v = native_list_append(v, ["ofan", "prep", "ofan", "", "", "", "above the surface"]) + let v = native_list_append(v, ["umb", "prep", "umb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eptir", "prep", "eptir", "", "", "", "after"]) + let v = native_list_append(v, ["sakir", "prep", "sakir", "", "", "", "on account of"]) + let v = native_list_append(v, ["gagnvart", "prep", "gagnvart", "", "", "", "over against opposite"]) + let v = native_list_append(v, ["umhverfis", "prep", "umhverfis", "", "", "", "round all around"]) + let v = native_list_append(v, ["fyrir útan", "prep", "fyrir útan", "", "", "", "outside"]) + let v = native_list_append(v, ["í milli", "prep", "í milli", "", "", "", "in between"]) + let v = native_list_append(v, ["útan", "prep", "útan", "", "", "", "without"]) + let v = native_list_append(v, ["um", "particle", "um", "", "", "", "indicates that the"]) + let v = native_list_append(v, ["of", "particle", "of", "", "", "", "indicates association or"]) + let v = native_list_append(v, ["at", "particle", "at", "", "", "", "to infinitive particle"]) + let v = native_list_append(v, ["né", "particle", "né", "", "", "", "not"]) + let v = native_list_append(v, ["it", "pron", "it", "", "", "", "second-person dual pronoun"]) + let v = native_list_append(v, ["er", "pron", "er", "", "", "", "who which that"]) + let v = native_list_append(v, ["es", "pron", "es", "", "", "", "archaic form of"]) + let v = native_list_append(v, ["sik", "pron", "sik", "", "", "", "oneself myself yourself"]) + let v = native_list_append(v, ["mik", "pron", "mik", "", "", "", "me first-person accusative"]) + let v = native_list_append(v, ["ek", "pron", "ek", "", "", "", "I first-person singular"]) + let v = native_list_append(v, ["eins", "pron", "eins", "", "", "", "strong masculine genitive"]) + let v = native_list_append(v, ["hans", "pron", "hans", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["vit", "pron", "vit", "", "", "", "first-person dual pronoun"]) + let v = native_list_append(v, ["einn", "pron", "einn", "", "", "", "one"]) + let v = native_list_append(v, ["ekki", "pron", "ekki", "", "", "", "nothing"]) + let v = native_list_append(v, ["enginn", "pron", "enginn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hinn", "pron", "hinn", "", "", "", "the other that"]) + let v = native_list_append(v, ["hver", "pron", "hver", "", "", "", "inflection of hverr"]) + let v = native_list_append(v, ["hvergi", "pron", "hvergi", "", "", "", "each every one"]) + let v = native_list_append(v, ["sjá", "pron", "sjá", "", "", "", "this that referring"]) + let v = native_list_append(v, ["sumar", "pron", "sumar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["þú", "pron", "þú", "", "", "", "you thou"]) + let v = native_list_append(v, ["hann", "pron", "hann", "", "", "", "he third-person nominative"]) + let v = native_list_append(v, ["þeir", "pron", "þeir", "", "", "", "those nominative plural"]) + let v = native_list_append(v, ["þær", "pron", "þær", "", "", "", "they them third-person"]) + let v = native_list_append(v, ["þau", "pron", "þau", "", "", "", "they them third-person"]) + let v = native_list_append(v, ["þessi", "pron", "þessi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hin", "pron", "hin", "", "", "", "inflection of hinn"]) + let v = native_list_append(v, ["hitt", "pron", "hitt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["því", "pron", "því", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hvert", "pron", "hvert", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["þá", "pron", "þá", "", "", "", "that accusative singular"]) + let v = native_list_append(v, ["oss", "pron", "oss", "", "", "", "accusative of vér"]) + let v = native_list_append(v, ["vér", "pron", "vér", "", "", "", "we first person"]) + let v = native_list_append(v, ["ér", "pron", "ér", "", "", "", "you plural ye"]) + let v = native_list_append(v, ["mér", "pron", "mér", "", "", "", "dative of ek"]) + let v = native_list_append(v, ["hina", "pron", "hina", "", "", "", "inflection of hinn"]) + let v = native_list_append(v, ["sjalfr", "pron", "sjalfr", "", "", "", "self"]) + let v = native_list_append(v, ["sumr", "pron", "sumr", "", "", "", "some"]) + let v = native_list_append(v, ["sumir", "pron", "sumir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["engi", "pron", "engi", "", "", "", "none no one"]) + let v = native_list_append(v, ["sá", "pron", "sá", "", "", "", "this that"]) + let v = native_list_append(v, ["suma", "pron", "suma", "", "", "", "inflection of sumr"]) + let v = native_list_append(v, ["suman", "pron", "suman", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["mín", "pron", "mín", "", "", "", "genitive of ek"]) + let v = native_list_append(v, ["sú", "pron", "sú", "", "", "", "that this nominative"]) + let v = native_list_append(v, ["hvat", "pron", "hvat", "", "", "", "what nominative and"]) + let v = native_list_append(v, ["henni", "pron", "henni", "", "", "", "dative of hón"]) + let v = native_list_append(v, ["mítt", "pron", "mítt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["mína", "pron", "mína", "", "", "", "inflection of mínn"]) + let v = native_list_append(v, ["mínum", "pron", "mínum", "", "", "", "inflection of mínn"]) + let v = native_list_append(v, ["míns", "pron", "míns", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["minnar", "pron", "minnar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["mínir", "pron", "mínir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["mínar", "pron", "mínar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["mínu", "pron", "mínu", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["þér", "pron", "þér", "", "", "", "dative of þú"]) + let v = native_list_append(v, ["þín", "pron", "þín", "", "", "", "genitive of þú"]) + let v = native_list_append(v, ["hennar", "pron", "hennar", "", "", "", "genitive of hón"]) + let v = native_list_append(v, ["þess", "pron", "þess", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["hánum", "pron", "hánum", "", "", "", "dative of hann"]) + let v = native_list_append(v, ["þeim", "pron", "þeim", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["þeirra", "pron", "þeirra", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sín", "pron", "sín", "", "", "", "genitive of sik"]) + let v = native_list_append(v, ["þik", "pron", "þik", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["þat", "pron", "þat", "", "", "", "it third-person nominative"]) + let v = native_list_append(v, ["sjálfgi", "pron", "sjálfgi", "", "", "", "not self"]) + let v = native_list_append(v, ["hinar", "pron", "hinar", "", "", "", "feminine plural nominative/accusative"]) + let v = native_list_append(v, ["hinir", "pron", "hinir", "", "", "", "masculine plural nominative"]) + let v = native_list_append(v, ["sér", "pron", "sér", "", "", "", "dative of sik"]) + let v = native_list_append(v, ["hón", "pron", "hón", "", "", "", "she third-person nominative"]) + let v = native_list_append(v, ["hverr", "pron", "hverr", "", "", "", "who which of"]) + let v = native_list_append(v, ["-k", "pron", "-k", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["ec", "pron", "ec", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["sumt", "pron", "sumt", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["hinna", "pron", "hinna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ꝥ", "pron", "ꝥ", "", "", "", "abbreviation of þat"]) + let v = native_list_append(v, ["hinni", "pron", "hinni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["hinu", "pron", "hinu", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["hverju", "pron", "hverju", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["vættki", "pron", "vættki", "", "", "", "nothing nought"]) + let v = native_list_append(v, ["-tu", "pron", "-tu", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["hins", "pron", "hins", "", "", "", "masculine/neuter singular genitive"]) + let v = native_list_append(v, ["-du", "pron", "-du", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["nǫkkurr", "pron", "nǫkkurr", "", "", "", "any anybody"]) + let v = native_list_append(v, ["hvatki", "pron", "hvatki", "", "", "", "each thing everything"]) + let v = native_list_append(v, ["þenna", "pron", "þenna", "", "", "", "masculine singular accusative"]) + let v = native_list_append(v, ["ᚦᛅᚢ", "pron", "ᚦᛅᚢ", "", "", "", "Runic spelling of"]) + let v = native_list_append(v, ["þit", "pron", "þit", "", "", "", "you two second-person"]) + let v = native_list_append(v, ["hvatvetna", "pron", "hvatvetna", "", "", "", "anything whatever"]) + let v = native_list_append(v, ["-ðu", "pron", "-ðu", "", "", "", "enclitic form of"]) + let v = native_list_append(v, ["einnhverr", "pron", "einnhverr", "", "", "", "some someone something"]) + let v = native_list_append(v, ["hvárrtveggi", "pron", "hvárrtveggi", "", "", "", "each of the"]) + let v = native_list_append(v, ["hvárrtveggja", "pron", "hvárrtveggja", "", "", "", "each of the"]) + let v = native_list_append(v, ["manngi", "pron", "manngi", "", "", "", "no man"]) + let v = native_list_append(v, ["okkr", "pron", "okkr", "", "", "", "accusative/dative dual of"]) + let v = native_list_append(v, ["nǫkkut", "pron", "nǫkkut", "", "", "", "something"]) + let v = native_list_append(v, ["nǫkkurn", "pron", "nǫkkurn", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["nǫkkura", "pron", "nǫkkura", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["þí", "pron", "þí", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ykkr", "pron", "ykkr", "", "", "", "accusative/dative dual of"]) + let v = native_list_append(v, ["þann", "pron", "þann", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["vættugis", "pron", "vættugis", "", "", "", "genitive of vættki"]) + let v = native_list_append(v, ["yðr", "pron", "yðr", "", "", "", "accusative of ér"]) + let v = native_list_append(v, ["einhvern", "pron", "einhvern", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["e-n", "pron", "e-n", "", "", "", "abbreviation of einhvern"]) + let v = native_list_append(v, ["nǫkkuru", "pron", "nǫkkuru", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["nǫkkverr", "pron", "nǫkkverr", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iðʀ", "pron", "iðʀ", "", "", "", "accusative of īʀ"]) + let v = native_list_append(v, ["īʀ", "pron", "īʀ", "", "", "", "you plural ye"]) + let v = native_list_append(v, ["wīʀ", "pron", "wīʀ", "", "", "", "we first person"]) + let v = native_list_append(v, ["hvern", "pron", "hvern", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["hvers", "pron", "hvers", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["hverjan", "pron", "hverjan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["hverjum", "pron", "hverjum", "", "", "", "inflection of hverr"]) + let v = native_list_append(v, ["hverir", "pron", "hverir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["mínni", "pron", "mínni", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["mínna", "pron", "mínna", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["mínnar", "pron", "mínnar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["sjalfri", "pron", "sjalfri", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["sjǫlfum", "pron", "sjǫlfum", "", "", "", "inflection of sjalfr"]) + let v = native_list_append(v, ["sjalfs", "pron", "sjalfs", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["sjalfan", "pron", "sjalfan", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["sjalfir", "pron", "sjalfir", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["sjalfa", "pron", "sjalfa", "", "", "", "inflection of sjalfr"]) + let v = native_list_append(v, ["sjǫlf", "pron", "sjǫlf", "", "", "", "inflection of sjalfr"]) + let v = native_list_append(v, ["sjalfar", "pron", "sjalfar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["sjalft", "pron", "sjalft", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["sjalfra", "pron", "sjalfra", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["sjalfrar", "pron", "sjalfrar", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["sjǫlfu", "pron", "sjǫlfu", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["hverjar", "pron", "hverjar", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["sumum", "pron", "sumum", "", "", "", "inflection of sumr"]) + let v = native_list_append(v, ["ꝧ", "pron", "ꝧ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["þeira", "pron", "þeira", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["þeirri", "pron", "þeirri", "", "", "", "dative feminine singular"]) + let v = native_list_append(v, ["vættugi", "pron", "vættugi", "", "", "", "dative of vættki"]) + let v = native_list_append(v, ["þeirrar", "pron", "þeirrar", "", "", "", "genitive feminine singular"]) + let v = native_list_append(v, ["hveim", "pron", "hveim", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["vel", "adv", "vel", "", "", "", "well"]) + let v = native_list_append(v, ["nei", "adv", "nei", "", "", "", "no"]) + let v = native_list_append(v, ["inn", "adv", "inn", "", "", "", "in into"]) + let v = native_list_append(v, ["æ", "adv", "æ", "", "", "", "ever eternally at"]) + let v = native_list_append(v, ["ok", "adv", "ok", "", "", "", "also too"]) + let v = native_list_append(v, ["oft", "adv", "oft", "", "", "", "often"]) + let v = native_list_append(v, ["illa", "adv", "illa", "", "", "", "nonstandard form of"]) + let v = native_list_append(v, ["opt", "adv", "opt", "", "", "", "often"]) + let v = native_list_append(v, ["eins", "adv", "eins", "", "", "", "alike in the"]) + let v = native_list_append(v, ["enn", "adv", "enn", "", "", "", "yet still"]) + let v = native_list_append(v, ["vart", "adv", "vart", "", "", "", "scantily poorly"]) + let v = native_list_append(v, ["já", "adv", "já", "", "", "", "yes"]) + let v = native_list_append(v, ["afar", "adv", "afar", "", "", "", "used as an"]) + let v = native_list_append(v, ["heim", "adv", "heim", "", "", "", "home homewards"]) + let v = native_list_append(v, ["á", "adv", "á", "", "", "", "always"]) + let v = native_list_append(v, ["ár", "adv", "ár", "", "", "", "early anciently"]) + let v = native_list_append(v, ["ey", "adv", "ey", "", "", "", "always ever"]) + let v = native_list_append(v, ["ekki", "adv", "ekki", "", "", "", "not"]) + let v = native_list_append(v, ["frá", "adv", "frá", "", "", "", "away"]) + let v = native_list_append(v, ["hér", "adv", "hér", "", "", "", "here"]) + let v = native_list_append(v, ["hvergi", "adv", "hvergi", "", "", "", "nowhere"]) + let v = native_list_append(v, ["langt", "adv", "langt", "", "", "", "far"]) + let v = native_list_append(v, ["saman", "adv", "saman", "", "", "", "together"]) + let v = native_list_append(v, ["síðan", "adv", "síðan", "", "", "", "since after"]) + let v = native_list_append(v, ["sjaldan", "adv", "sjaldan", "", "", "", "seldom"]) + let v = native_list_append(v, ["snemma", "adv", "snemma", "", "", "", "early"]) + let v = native_list_append(v, ["stundum", "adv", "stundum", "", "", "", "sometimes"]) + let v = native_list_append(v, ["uppi", "adv", "uppi", "", "", "", "up"]) + let v = native_list_append(v, ["þær", "adv", "þær", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["þar", "adv", "þar", "", "", "", "there in that"]) + let v = native_list_append(v, ["hvar", "adv", "hvar", "", "", "", "where"]) + let v = native_list_append(v, ["því", "adv", "því", "", "", "", "therefore for that"]) + let v = native_list_append(v, ["hvaðan", "adv", "hvaðan", "", "", "", "whence wherefrom from"]) + let v = native_list_append(v, ["hvernig", "adv", "hvernig", "", "", "", "how"]) + let v = native_list_append(v, ["fyrst", "adv", "fyrst", "", "", "", "first firstly"]) + let v = native_list_append(v, ["þarna", "adv", "þarna", "", "", "", "there over there"]) + let v = native_list_append(v, ["þá", "adv", "þá", "", "", "", "then at that"]) + let v = native_list_append(v, ["gjarna", "adv", "gjarna", "", "", "", "willingly"]) + let v = native_list_append(v, ["annars", "adv", "annars", "", "", "", "otherwise else or"]) + let v = native_list_append(v, ["út", "adv", "út", "", "", "", "out outward"]) + let v = native_list_append(v, ["verst", "adv", "verst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["fram", "adv", "fram", "", "", "", "forward forth"]) + let v = native_list_append(v, ["nær", "adv", "nær", "", "", "", "near"]) + let v = native_list_append(v, ["innan", "adv", "innan", "", "", "", "from within from"]) + let v = native_list_append(v, ["sundr", "adv", "sundr", "", "", "", "apart"]) + let v = native_list_append(v, ["suðr", "adv", "suðr", "", "", "", "south southwards"]) + let v = native_list_append(v, ["vestr", "adv", "vestr", "", "", "", "west westwards"]) + let v = native_list_append(v, ["norðr", "adv", "norðr", "", "", "", "north northward"]) + let v = native_list_append(v, ["svá", "adv", "svá", "", "", "", "so"]) + let v = native_list_append(v, ["þó", "adv", "þó", "", "", "", "nevertheless still yet"]) + let v = native_list_append(v, ["aptr", "adv", "aptr", "", "", "", "back"]) + let v = native_list_append(v, ["miðr", "adv", "miðr", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["lengi", "adv", "lengi", "", "", "", "long for a"]) + let v = native_list_append(v, ["niðr", "adv", "niðr", "", "", "", "down"]) + let v = native_list_append(v, ["meiri", "adv", "meiri", "", "", "", "more"]) + let v = native_list_append(v, ["gær", "adv", "gær", "", "", "", "yesterday"]) + let v = native_list_append(v, ["optar", "adv", "optar", "", "", "", "oftener"]) + let v = native_list_append(v, ["nú", "adv", "nú", "", "", "", "now"]) + let v = native_list_append(v, ["bert", "adv", "bert", "", "", "", "openly clearly"]) + let v = native_list_append(v, ["heima", "adv", "heima", "", "", "", "at home"]) + let v = native_list_append(v, ["heiman", "adv", "heiman", "", "", "", "from home"]) + let v = native_list_append(v, ["aldri", "adv", "aldri", "", "", "", "never"]) + let v = native_list_append(v, ["fyrr", "adv", "fyrr", "", "", "", "before sooner"]) + let v = native_list_append(v, ["verr", "adv", "verr", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["eigi", "adv", "eigi", "", "", "", "not"]) + let v = native_list_append(v, ["undan", "adv", "undan", "", "", "", "away"]) + let v = native_list_append(v, ["þars", "adv", "þars", "", "", "", "where relative adverb"]) + let v = native_list_append(v, ["tvisvar", "adv", "tvisvar", "", "", "", "twice"]) + let v = native_list_append(v, ["síð", "adv", "síð", "", "", "", "late"]) + let v = native_list_append(v, ["til sǫlu", "adv", "til sǫlu", "", "", "", "for sale"]) + let v = native_list_append(v, ["títt", "adv", "títt", "", "", "", "frequently often"]) + let v = native_list_append(v, ["ofan", "adv", "ofan", "", "", "", "from above downwards"]) + let v = native_list_append(v, ["samt", "adv", "samt", "", "", "", "together"]) + let v = native_list_append(v, ["neðan", "adv", "neðan", "", "", "", "below beneath"]) + let v = native_list_append(v, ["senn", "adv", "senn", "", "", "", "soon at once"]) + let v = native_list_append(v, ["útanlands", "adv", "útanlands", "", "", "", "abroad"]) + let v = native_list_append(v, ["óframliga", "adv", "óframliga", "", "", "", "timidly"]) + let v = native_list_append(v, ["heldr", "adv", "heldr", "", "", "", "rather"]) + let v = native_list_append(v, ["jafnvel", "adv", "jafnvel", "", "", "", "as well equally"]) + let v = native_list_append(v, ["þaðan", "adv", "þaðan", "", "", "", "thence from there"]) + let v = native_list_append(v, ["lítt", "adv", "lítt", "", "", "", "little not very"]) + let v = native_list_append(v, ["hvars", "adv", "hvars", "", "", "", "wheresoever"]) + let v = native_list_append(v, ["hindar", "adv", "hindar", "", "", "", "hinder"]) + let v = native_list_append(v, ["eptir", "adv", "eptir", "", "", "", "after"]) + let v = native_list_append(v, ["helzt", "adv", "helzt", "", "", "", "most most of"]) + let v = native_list_append(v, ["forðum", "adv", "forðum", "", "", "", "aforetime formerly once"]) + let v = native_list_append(v, ["fjörð", "adv", "fjörð", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fjǫrð", "adv", "fjǫrð", "", "", "", "last year the"]) + let v = native_list_append(v, ["framan", "adv", "framan", "", "", "", "from on the"]) + let v = native_list_append(v, ["sunnan", "adv", "sunnan", "", "", "", "from the south"]) + let v = native_list_append(v, ["rétt", "adv", "rétt", "", "", "", "rightly correctly"]) + let v = native_list_append(v, ["betr", "adv", "betr", "", "", "", "better"]) + let v = native_list_append(v, ["æva", "adv", "æva", "", "", "", "never"]) + let v = native_list_append(v, ["áðr", "adv", "áðr", "", "", "", "already"]) + let v = native_list_append(v, ["mjǫk", "adv", "mjǫk", "", "", "", "much very pretty"]) + let v = native_list_append(v, ["lengst", "adv", "lengst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["héðan", "adv", "héðan", "", "", "", "hence"]) + let v = native_list_append(v, ["vestan", "adv", "vestan", "", "", "", "from the west"]) + let v = native_list_append(v, ["virkuliga", "adv", "virkuliga", "", "", "", "carefully"]) + let v = native_list_append(v, ["andsǿlis", "adv", "andsǿlis", "", "", "", "against the course"]) + let v = native_list_append(v, ["hálfu", "adv", "hálfu", "", "", "", "by half"]) + let v = native_list_append(v, ["víða", "adv", "víða", "", "", "", "widely far and"]) + let v = native_list_append(v, ["nǫkkvi", "adv", "nǫkkvi", "", "", "", "somewhat a little"]) + let v = native_list_append(v, ["aldrigi", "adv", "aldrigi", "", "", "", "never"]) + let v = native_list_append(v, ["austan", "adv", "austan", "", "", "", "from the east"]) + let v = native_list_append(v, ["gagnvart", "adv", "gagnvart", "", "", "", "over against"]) + let v = native_list_append(v, ["ept", "adv", "ept", "", "", "", "after"]) + let v = native_list_append(v, ["aflagliga", "adv", "aflagliga", "", "", "", "unlawfully"]) + let v = native_list_append(v, ["afburðar", "adv", "afburðar", "", "", "", "used as an"]) + let v = native_list_append(v, ["afarkostalaust", "adv", "afarkostalaust", "", "", "", "on fair terms"]) + let v = native_list_append(v, ["annarstaðar", "adv", "annarstaðar", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["athugasamliga", "adv", "athugasamliga", "", "", "", "attentively"]) + let v = native_list_append(v, ["norðan", "adv", "norðan", "", "", "", "from the north"]) + let v = native_list_append(v, ["ǫllungis", "adv", "ǫllungis", "", "", "", "altogether completely quite"]) + let v = native_list_append(v, ["tysvar", "adv", "tysvar", "", "", "", "twice"]) + let v = native_list_append(v, ["karlmannliga", "adv", "karlmannliga", "", "", "", "in a manly"]) + let v = native_list_append(v, ["umhverfis", "adv", "umhverfis", "", "", "", "round all around"]) + let v = native_list_append(v, ["hvargi", "adv", "hvargi", "", "", "", "wheresoever in each"]) + let v = native_list_append(v, ["útan", "adv", "útan", "", "", "", "from without"]) + let v = native_list_append(v, ["heðra", "adv", "heðra", "", "", "", "here hither"]) + let v = native_list_append(v, ["makliga", "adv", "makliga", "", "", "", "fitly properly"]) + let v = native_list_append(v, ["lǫngu", "adv", "lǫngu", "", "", "", "long ago long"]) + let v = native_list_append(v, ["jafnan", "adv", "jafnan", "", "", "", "constantly always"]) + let v = native_list_append(v, ["vítt", "adv", "vítt", "", "", "", "far"]) + let v = native_list_append(v, ["minnr", "adv", "minnr", "", "", "", "less comparative degree"]) + let v = native_list_append(v, ["lengr", "adv", "lengr", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["optarr", "adv", "optarr", "", "", "", "oftener"]) + let v = native_list_append(v, ["optast", "adv", "optast", "", "", "", "oftenest most frequently"]) + let v = native_list_append(v, ["optliga", "adv", "optliga", "", "", "", "often frequently"]) + let v = native_list_append(v, ["úfriðarlaust", "adv", "úfriðarlaust", "", "", "", "peacefully"]) + let v = native_list_append(v, ["úfriðliga", "adv", "úfriðliga", "", "", "", "in an unpeaceful"]) + let v = native_list_append(v, ["nǫkkut", "adv", "nǫkkut", "", "", "", "somewhat rather"]) + let v = native_list_append(v, ["bazt", "adv", "bazt", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["seðr", "adv", "seðr", "", "", "", "soon at once"]) + let v = native_list_append(v, ["þí", "adv", "þí", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gjár", "adv", "gjár", "", "", "", "yesterday"]) + let v = native_list_append(v, ["ǫrkyml", "adv", "ǫrkyml", "", "", "", "bodily defects"]) + let v = native_list_append(v, ["harðla", "adv", "harðla", "", "", "", "very"]) + let v = native_list_append(v, ["þeygi", "adv", "þeygi", "", "", "", "yet not although"]) + let v = native_list_append(v, ["sízt", "adv", "sízt", "", "", "", "since"]) + let v = native_list_append(v, ["ævagi", "adv", "ævagi", "", "", "", "never"]) + let v = native_list_append(v, ["trautt", "adv", "trautt", "", "", "", "scarcely hardly"]) + let v = native_list_append(v, ["trauðla", "adv", "trauðla", "", "", "", "scarcely hardly"]) + let v = native_list_append(v, ["trauðliga", "adv", "trauðliga", "", "", "", "scarcely hardly"]) + let v = native_list_append(v, ["nǫkkuru", "adv", "nǫkkuru", "", "", "", "somewhat"]) + let v = native_list_append(v, ["skemst", "adv", "skemst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["skemmst", "adv", "skemmst", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["skemstu", "adv", "skemstu", "", "", "", "lately very recently"]) + let v = native_list_append(v, ["skamt", "adv", "skamt", "", "", "", "short in time"]) + let v = native_list_append(v, ["skǫmmu", "adv", "skǫmmu", "", "", "", "lately recently"]) + let v = native_list_append(v, ["skemmr", "adv", "skemmr", "", "", "", "for a shorter"]) + let v = native_list_append(v, ["hinzt", "adv", "hinzt", "", "", "", "last"]) + let v = native_list_append(v, ["hugalt", "adv", "hugalt", "", "", "", "carefully"]) + let v = native_list_append(v, ["kynliga", "adv", "kynliga", "", "", "", "strangely"]) + let v = native_list_append(v, ["hvénær", "adv", "hvénær", "", "", "", "when"]) + let v = native_list_append(v, ["hvé", "adv", "hvé", "", "", "", "how"]) + let v = native_list_append(v, ["ílla", "adv", "ílla", "", "", "", "badly ill"]) + let v = native_list_append(v, ["sex", "other", "sex", "", "", "", "six"]) + let v = native_list_append(v, ["-um", "other", "-um", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ing", "other", "-ing", "", "", "", "forms gerund nouns"]) + let v = native_list_append(v, ["-a", "other", "-a", "", "", "", "indicates negation does"]) + let v = native_list_append(v, ["-ka", "other", "-ka", "", "", "", "turns an adjective"]) + let v = native_list_append(v, ["þ", "other", "þ", "", "", "", "a letter of"]) + let v = native_list_append(v, ["ʀ", "other", "ʀ", "", "", "", "the transliteration of"]) + let v = native_list_append(v, ["ɴ", "other", "ɴ", "", "", "", "a geminate n"]) + let v = native_list_append(v, ["ę", "other", "ę", "", "", "", "a letter representing"]) + let v = native_list_append(v, ["-ni", "other", "-ni", "", "", "", "positive degree weak"]) + let v = native_list_append(v, ["-an", "other", "-an", "", "", "", "used to derive"]) + let v = native_list_append(v, ["-ar", "other", "-ar", "", "", "", "masculine a-stem/n-stem indefinite"]) + let v = native_list_append(v, ["-in", "other", "-in", "", "", "", "inflection of -inn"]) + let v = native_list_append(v, ["-na", "other", "-na", "", "", "", "used to form"]) + let v = native_list_append(v, ["-u", "other", "-u", "", "", "", "Forms the indefinite"]) + let v = native_list_append(v, ["-un", "other", "-un", "", "", "", "used to derive"]) + let v = native_list_append(v, ["-t", "other", "-t", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-i", "other", "-i", "", "", "", "-th forms abstract"]) + let v = native_list_append(v, ["eins", "other", "eins", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["-ir", "other", "-ir", "", "", "", "used to create"]) + let v = native_list_append(v, ["já", "other", "já", "", "", "", "yes as an"]) + let v = native_list_append(v, ["Ʀ", "other", "Ʀ", "", "", "", "A letter of"]) + let v = native_list_append(v, ["mis-", "other", "mis-", "", "", "", "mis- wrong erroneous"]) + let v = native_list_append(v, ["á", "other", "á", "", "", "", "ow! ouch!"]) + let v = native_list_append(v, ["einn", "other", "einn", "", "", "", "one"]) + let v = native_list_append(v, ["eitt", "other", "eitt", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["í gær", "other", "í gær", "", "", "", "another day"]) + let v = native_list_append(v, ["tveir", "other", "tveir", "", "", "", "two"]) + let v = native_list_append(v, ["þrír", "other", "þrír", "", "", "", "three"]) + let v = native_list_append(v, ["fjórir", "other", "fjórir", "", "", "", "four"]) + let v = native_list_append(v, ["fimm", "other", "fimm", "", "", "", "five"]) + let v = native_list_append(v, ["átta", "other", "átta", "", "", "", "eight"]) + let v = native_list_append(v, ["níu", "other", "níu", "", "", "", "nine"]) + let v = native_list_append(v, ["tíu", "other", "tíu", "", "", "", "ten"]) + let v = native_list_append(v, ["tólf", "other", "tólf", "", "", "", "twelve"]) + let v = native_list_append(v, ["þrettán", "other", "þrettán", "", "", "", "thirteen"]) + let v = native_list_append(v, ["fjórtán", "other", "fjórtán", "", "", "", "fourteen"]) + let v = native_list_append(v, ["fimmtán", "other", "fimmtán", "", "", "", "fifteen"]) + let v = native_list_append(v, ["sextán", "other", "sextán", "", "", "", "sixteen"]) + let v = native_list_append(v, ["átján", "other", "átján", "", "", "", "eighteen"]) + let v = native_list_append(v, ["nítján", "other", "nítján", "", "", "", "nineteen"]) + let v = native_list_append(v, ["tuttugu", "other", "tuttugu", "", "", "", "twenty"]) + let v = native_list_append(v, ["áttatíu", "other", "áttatíu", "", "", "", "eighty"]) + let v = native_list_append(v, ["hundrað", "other", "hundrað", "", "", "", "a long hundred"]) + let v = native_list_append(v, ["vask", "other", "vask", "", "", "", "contraction of vas"]) + let v = native_list_append(v, ["ᚢ", "other", "ᚢ", "", "", "", "the second letter"]) + let v = native_list_append(v, ["sás", "other", "sás", "", "", "", "contraction of sá"]) + let v = native_list_append(v, ["sjau", "other", "sjau", "", "", "", "seven"]) + let v = native_list_append(v, ["tvær", "other", "tvær", "", "", "", "feminine nominative/accusative of"]) + let v = native_list_append(v, ["há", "other", "há", "", "", "", "eh! what do"]) + let v = native_list_append(v, ["al-", "other", "al-", "", "", "", "used as an"]) + let v = native_list_append(v, ["berk", "other", "berk", "", "", "", "contraction of ber"]) + let v = native_list_append(v, ["einum", "other", "einum", "", "", "", "inflection of einn"]) + let v = native_list_append(v, ["þrjár", "other", "þrjár", "", "", "", "feminine nominative/accusative of"]) + let v = native_list_append(v, ["þrjú", "other", "þrjú", "", "", "", "neuter nominative/accusative of"]) + let v = native_list_append(v, ["þrjá", "other", "þrjá", "", "", "", "masculine accusative of"]) + let v = native_list_append(v, ["þriggja", "other", "þriggja", "", "", "", "genitive of þrír"]) + let v = native_list_append(v, ["tveim", "other", "tveim", "", "", "", "dative of tveir"]) + let v = native_list_append(v, ["tveggja", "other", "tveggja", "", "", "", "genitive of tveir"]) + let v = native_list_append(v, ["fjóra", "other", "fjóra", "", "", "", "masculine accusative of"]) + let v = native_list_append(v, ["fjórum", "other", "fjórum", "", "", "", "dative of fjórir"]) + let v = native_list_append(v, ["fjórar", "other", "fjórar", "", "", "", "feminine nominative/accusative of"]) + let v = native_list_append(v, ["ó-", "other", "ó-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["all-", "other", "all-", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["af-", "other", "af-", "", "", "", "away off from"]) + let v = native_list_append(v, ["-inn", "other", "-inn", "", "", "", "used to create"]) + let v = native_list_append(v, ["-it", "other", "-it", "", "", "", "positive degree strong"]) + let v = native_list_append(v, ["-'s", "other", "-'s", "", "", "", "contraction of es"]) + let v = native_list_append(v, ["-la", "other", "-la", "", "", "", "frequentative verbal suffix"]) + let v = native_list_append(v, ["-at", "other", "-at", "", "", "", "negative verbal suffix"]) + let v = native_list_append(v, ["erki-", "other", "erki-", "", "", "", "arch-"]) + let v = native_list_append(v, ["tví", "other", "tví", "", "", "", "fy fie an"]) + let v = native_list_append(v, ["tví-", "other", "tví-", "", "", "", "twice double binary"]) + let v = native_list_append(v, ["van-", "other", "van-", "", "", "", "denoting lacking under-"]) + let v = native_list_append(v, ["sam-", "other", "sam-", "", "", "", "together con-"]) + let v = native_list_append(v, ["fimbul-", "other", "fimbul-", "", "", "", "distinguishing something large"]) + let v = native_list_append(v, ["býsna-", "other", "býsna-", "", "", "", "pretty tolerably"]) + let v = native_list_append(v, ["and-", "other", "and-", "", "", "", "denotes whatever is"]) + let v = native_list_append(v, ["ɢ", "other", "ɢ", "", "", "", "a geminate g"]) + let v = native_list_append(v, ["-r", "other", "-r", "", "", "", "denotes the nominative"]) + let v = native_list_append(v, ["ꜰ", "other", "ꜰ", "", "", "", "a geminate f"]) + let v = native_list_append(v, ["ꜱ", "other", "ꜱ", "", "", "", "a geminate s"]) + let v = native_list_append(v, ["-ga", "other", "-ga", "", "", "", "turns an adjective"]) + let v = native_list_append(v, ["ǫ", "other", "ǫ", "", "", "", "O caudata the"]) + let v = native_list_append(v, ["tor-", "other", "tor-", "", "", "", "with difficulty or"]) + let v = native_list_append(v, ["-andi", "other", "-andi", "", "", "", "used to form"]) + let v = native_list_append(v, ["-ari", "other", "-ari", "", "", "", "a suffix used"]) + let v = native_list_append(v, ["ꝥ", "other", "ꝥ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["-gi", "other", "-gi", "", "", "", "creates diminutives from"]) + let v = native_list_append(v, ["tolf", "other", "tolf", "", "", "", "twelve"]) + let v = native_list_append(v, ["jafn-", "other", "jafn-", "", "", "", "such a so"]) + let v = native_list_append(v, ["hinns", "other", "hinns", "", "", "", "contraction of hinn"]) + let v = native_list_append(v, ["-naðr", "other", "-naðr", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["-aðr", "other", "-aðr", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["-óttr", "other", "-óttr", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["þrim", "other", "þrim", "", "", "", "dative of þrír"]) + let v = native_list_append(v, ["-ǿnn", "other", "-ǿnn", "", "", "", "used to create"]) + let v = native_list_append(v, ["sjaután", "other", "sjaután", "", "", "", "seventeen"]) + let v = native_list_append(v, ["ellifu", "other", "ellifu", "", "", "", "eleven"]) + let v = native_list_append(v, ["-semi", "other", "-semi", "", "", "", "-ness"]) + let v = native_list_append(v, ["-ki", "other", "-ki", "", "", "", "diminutive suffix"]) + let v = native_list_append(v, ["-ligr", "other", "-ligr", "", "", "", "suffix used to"]) + let v = native_list_append(v, ["ꝉ", "other", "ꝉ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["Ꝁ", "other", "Ꝁ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["Ǫ", "other", "Ǫ", "", "", "", "O caudata the"]) + let v = native_list_append(v, ["Ꝇ", "other", "Ꝇ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["ꝇ", "other", "ꝇ", "", "", "", "a letter used"]) + let v = native_list_append(v, ["Ꝏ", "other", "Ꝏ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["ꝏ", "other", "ꝏ", "", "", "", "a letter for"]) + let v = native_list_append(v, ["Ꝡ", "other", "Ꝡ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["ꝡ", "other", "ꝡ", "", "", "", "a letter for"]) + let v = native_list_append(v, ["ꝫ", "other", "ꝫ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["ú-", "other", "ú-", "", "", "", "not non- un-"]) + let v = native_list_append(v, ["á-", "other", "á-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["ꝁ", "other", "ꝁ", "", "", "", "abbreviation of konungr"]) + let v = native_list_append(v, ["Ꝍ", "other", "Ꝍ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["ꝍ", "other", "ꝍ", "", "", "", "a letter for"]) + let v = native_list_append(v, ["áttatigir", "other", "áttatigir", "", "", "", "eighty"]) + let v = native_list_append(v, ["ꞅ", "other", "ꞅ", "", "", "", "a text may"]) + let v = native_list_append(v, ["hutututu", "other", "hutututu", "", "", "", "brr used to"]) + let v = native_list_append(v, ["-skapr", "other", "-skapr", "", "", "", "used to form"]) + let v = native_list_append(v, ["-lingr", "other", "-lingr", "", "", "", "forms noun-derivatives with"]) + let v = native_list_append(v, ["birki-", "other", "birki-", "", "", "", "birchen birch-"]) + let v = native_list_append(v, ["-ugr", "other", "-ugr", "", "", "", "-y"]) + let v = native_list_append(v, ["-igr", "other", "-igr", "", "", "", "-y"]) + let v = native_list_append(v, ["þǫrfgi", "other", "þǫrfgi", "", "", "", "no need unnecessary"]) + let v = native_list_append(v, ["-faldr", "other", "-faldr", "", "", "", "-fold"]) + let v = native_list_append(v, ["hvattá", "other", "hvattá", "", "", "", "what then what"]) + let v = native_list_append(v, ["hvaz", "other", "hvaz", "", "", "", "what is whats"]) + let v = native_list_append(v, ["-dómr", "other", "-dómr", "", "", "", "forms nouns denoting"]) + let v = native_list_append(v, ["Ꝩ", "other", "Ꝩ", "", "", "", "the uppercase Latin"]) + let v = native_list_append(v, ["ꝩ", "other", "ꝩ", "", "", "", "the lowercase letter"]) + let v = native_list_append(v, ["kvenn-", "other", "kvenn-", "", "", "", "pertaining to women"]) + let v = native_list_append(v, ["-ð", "other", "-ð", "", "", "", "-ness -th forms"]) + let v = native_list_append(v, ["þeims", "other", "þeims", "", "", "", "contraction of þeim"]) + let v = native_list_append(v, ["sús", "other", "sús", "", "", "", "contraction of sú"]) + let v = native_list_append(v, ["þás", "other", "þás", "", "", "", "contraction of þá"]) + let v = native_list_append(v, ["þærs", "other", "þærs", "", "", "", "contraction of þær"]) + let v = native_list_append(v, ["hveims", "other", "hveims", "", "", "", "contraction of hveim"]) + let v = native_list_append(v, ["þats", "other", "þats", "", "", "", "contraction of þat"]) + let v = native_list_append(v, ["þaz", "other", "þaz", "", "", "", "contraction of þat"]) + let v = native_list_append(v, ["emk", "other", "emk", "", "", "", "contraction of em"]) + let v = native_list_append(v, ["-iskr", "other", "-iskr", "", "", "", "forms adjectives"]) + let v = native_list_append(v, ["-skr", "other", "-skr", "", "", "", "forms adjectives"]) + let v = native_list_append(v, ["hvarges", "other", "hvarges", "", "", "", "contraction of hvargi"]) + let v = native_list_append(v, ["sék", "other", "sék", "", "", "", "contraction of sé"]) + let v = native_list_append(v, ["sékat", "other", "sékat", "", "", "", "contraction of sé"]) + let v = native_list_append(v, ["eptir makligleikum", "other", "eptir makligleikum", "", "", "", "deservedly"]) + let v = native_list_append(v, ["-ill", "other", "-ill", "", "", "", "forms agent nouns"]) + let v = native_list_append(v, ["-ull", "other", "-ull", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fimtán", "other", "fimtán", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sjautján", "other", "sjautján", "", "", "", "seventeen"]) + let v = native_list_append(v, ["áttján", "other", "áttján", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tvítján", "other", "tvítján", "", "", "", "twenty"]) + let v = native_list_append(v, ["þrír tigir", "other", "þrír tigir", "", "", "", "thirty"]) + let v = native_list_append(v, ["fjórir tigir", "other", "fjórir tigir", "", "", "", "forty"]) + let v = native_list_append(v, ["fimm tigir", "other", "fimm tigir", "", "", "", "fifty"]) + let v = native_list_append(v, ["fimtigir", "other", "fimtigir", "", "", "", "fifty"]) + let v = native_list_append(v, ["fimmtigir", "other", "fimmtigir", "", "", "", "fifty"]) + let v = native_list_append(v, ["sex tigir", "other", "sex tigir", "", "", "", "sixty"]) + let v = native_list_append(v, ["sjau tigir", "other", "sjau tigir", "", "", "", "seventy"]) + let v = native_list_append(v, ["átta tigir", "other", "átta tigir", "", "", "", "eighty"]) + let v = native_list_append(v, ["níu tigir", "other", "níu tigir", "", "", "", "ninety"]) + let v = native_list_append(v, ["-tigi", "other", "-tigi", "", "", "", "-ty indicating multiples"]) + let v = native_list_append(v, ["fimtigi", "other", "fimtigi", "", "", "", "fifty"]) + let v = native_list_append(v, ["fimmtigi", "other", "fimmtigi", "", "", "", "fifty"]) + let v = native_list_append(v, ["sextigi", "other", "sextigi", "", "", "", "sixty"]) + let v = native_list_append(v, ["sjautigi", "other", "sjautigi", "", "", "", "seventy"]) + let v = native_list_append(v, ["áttatigi", "other", "áttatigi", "", "", "", "eighty"]) + let v = native_list_append(v, ["níutigi", "other", "níutigi", "", "", "", "ninety"]) + let v = native_list_append(v, ["fjórutigi", "other", "fjórutigi", "", "", "", "forty"]) + let v = native_list_append(v, ["þrjátigi", "other", "þrjátigi", "", "", "", "thirty"]) + let v = native_list_append(v, ["hviss", "other", "hviss", "", "", "", "whew!"]) + let v = native_list_append(v, ["þrimr", "other", "þrimr", "", "", "", "dative of þrír"]) + let v = native_list_append(v, ["fjǫgurra", "other", "fjǫgurra", "", "", "", "genitive of fjórir"]) + let v = native_list_append(v, ["fjǫgur", "other", "fjǫgur", "", "", "", "neuter nominative/accusative of"]) + let v = native_list_append(v, ["tveimr", "other", "tveimr", "", "", "", "dative of tveir"]) + let v = native_list_append(v, ["tvau", "other", "tvau", "", "", "", "neuter nominative/accusative of"]) + let v = native_list_append(v, ["tvá", "other", "tvá", "", "", "", "masculine accusative of"]) + let v = native_list_append(v, ["fjǫl-", "other", "fjǫl-", "", "", "", "much manifold"]) + let v = native_list_append(v, ["skaltu", "other", "skaltu", "", "", "", "you shall shall"]) + let v = native_list_append(v, ["-agr", "other", "-agr", "", "", "", "-y"]) + let v = native_list_append(v, ["ꞃ", "other", "ꞃ", "", "", "", "a text may"]) + let v = native_list_append(v, ["ꝺ", "other", "ꝺ", "", "", "", "a text may"]) + let v = native_list_append(v, ["ꝼ", "other", "ꝼ", "", "", "", "a text may"]) + let v = native_list_append(v, ["gerðak", "other", "gerðak", "", "", "", "contraction of gerða"]) + let v = native_list_append(v, ["hafðak", "other", "hafðak", "", "", "", "contraction of hafða"]) + let v = native_list_append(v, ["við trauð ok nauð", "other", "við trauð ok nauð", "", "", "", "with great difficulty"]) + let v = native_list_append(v, ["-ingr", "other", "-ingr", "", "", "", "added to a"]) + let v = native_list_append(v, ["Ꝥ", "other", "Ꝥ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["-vetr", "other", "-vetr", "", "", "", "years old"]) + let v = native_list_append(v, ["þjóð-", "other", "þjóð-", "", "", "", "very great"]) + let v = native_list_append(v, ["frák", "other", "frák", "", "", "", "contraction of frá"]) + let v = native_list_append(v, ["Ꞇ", "other", "Ꞇ", "", "", "", "uppercase form of"]) + let v = native_list_append(v, ["biðk", "other", "biðk", "", "", "", "contraction of bið"]) + let v = native_list_append(v, ["fórk", "other", "fórk", "", "", "", "contraction of fór"]) + let v = native_list_append(v, ["mættak", "other", "mættak", "", "", "", "contraction of mætta"]) + let v = native_list_append(v, ["máttak", "other", "máttak", "", "", "", "contraction of mátta"]) + let v = native_list_append(v, ["-ingu", "other", "-ingu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Ꝧ", "other", "Ꝧ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["-ǫndum", "other", "-ǫndum", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["-endr", "other", "-endr", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["-hǫfði", "other", "-hǫfði", "", "", "", "a X-headed one"]) + let v = native_list_append(v, ["fæk", "other", "fæk", "", "", "", "contraction of fæ"]) + let v = native_list_append(v, ["geysi-", "other", "geysi-", "", "", "", "very"]) + let v = native_list_append(v, ["ꜷ", "other", "ꜷ", "", "", "", "a letter used"]) + let v = native_list_append(v, ["ꜳ", "other", "ꜳ", "", "", "", "a letter for"]) + let v = native_list_append(v, ["ꜵ", "other", "ꜵ", "", "", "", "a letter for"]) + let v = native_list_append(v, ["ꜻ", "other", "ꜻ", "", "", "", "a letter used"]) + let v = native_list_append(v, ["ꜽ", "other", "ꜽ", "", "", "", "a letter used"]) + let v = native_list_append(v, ["Ꜷ", "other", "Ꜷ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ꜻ", "other", "Ꜻ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["Ꜽ", "other", "Ꜽ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["Ꜵ", "other", "Ꜵ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["Ꜳ", "other", "Ꜳ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["Ꝼ", "other", "Ꝼ", "", "", "", "uppercase form of"]) + let v = native_list_append(v, ["Ꞃ", "other", "Ꞃ", "", "", "", "uppercase form of"]) + let v = native_list_append(v, ["Ꞅ", "other", "Ꞅ", "", "", "", "uppercase form of"]) + let v = native_list_append(v, ["Ꝉ", "other", "Ꝉ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["Ꝅ", "other", "Ꝅ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["þ᷏͛", "other", "þ᷏͛", "", "", "", "abbreviation of þær"]) + let v = native_list_append(v, ["◌᷎", "other", "◌᷎", "", "", "", "a diacritic on"]) + let v = native_list_append(v, ["vildit", "other", "vildit", "", "", "", "contraction of vildi"]) + let v = native_list_append(v, ["ár ok friðr", "other", "ár ok friðr", "", "", "", "plenty and peace"]) + let v = native_list_append(v, ["árs ok friðar", "other", "árs ok friðar", "", "", "", "genitive of ár"]) + let v = native_list_append(v, ["ár ok frið", "other", "ár ok frið", "", "", "", "accusative of ár"]) + let v = native_list_append(v, ["auð-", "other", "auð-", "", "", "", "easily"]) + let v = native_list_append(v, ["ginn-", "other", "ginn-", "", "", "", "great holy powerful"]) + let v = native_list_append(v, ["ꜹ", "other", "ꜹ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ꜹ", "other", "Ꜹ", "", "", "", "capital form of"]) + let v = native_list_append(v, ["◌ᷦ", "other", "◌ᷦ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷞ", "other", "◌ᷞ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷟ", "other", "◌ᷟ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷡ", "other", "◌ᷡ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷢ", "other", "◌ᷢ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷤ", "other", "◌ᷤ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷘ", "other", "◌ᷘ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷙ", "other", "◌ᷙ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷚ", "other", "◌ᷚ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷛ", "other", "◌ᷛ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷜ", "other", "◌ᷜ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷔ", "other", "◌ᷔ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷕ", "other", "◌ᷕ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷖ", "other", "◌ᷖ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷝ", "other", "◌ᷝ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷠ", "other", "◌ᷠ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["◌ᷣ", "other", "◌ᷣ", "", "", "", "an abbreviation of"]) + let v = native_list_append(v, ["leika tveim skjǫldum", "other", "leika tveim skjǫldum", "", "", "", "to play both"]) + let v = native_list_append(v, ["-leikr", "other", "-leikr", "", "", "", "-ness"]) + let v = native_list_append(v, ["ẝ", "other", "ẝ", "", "", "", "found in ẝꝉ"]) + let v = native_list_append(v, ["◌ͣ", "other", "◌ͣ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["◌ͤ", "other", "◌ͤ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["◌ͥ", "other", "◌ͥ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["◌ͦ", "other", "◌ͦ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["-látr", "other", "-látr", "", "", "", "describes someones behaviour"]) + return v +} + +fn vocab_non_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_non_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-peo.el b/elp/src/vocabulary-peo.el new file mode 100644 index 0000000..c1161f1 --- /dev/null +++ b/elp/src/vocabulary-peo.el @@ -0,0 +1,565 @@ +// vocabulary-peo.el — Old Persian vocabulary seed +// 544 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 544 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_peo_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["madu", "noun", "madu", "", "", "", "wine"]) + let v = native_list_append(v, ["amah", "noun", "amah", "", "", "", "power force"]) + let v = native_list_append(v, ["𐎧𐏁𐎹𐎠𐎼𐏁𐎠", "noun", "𐎧𐏁𐎹𐎠𐎼𐏁𐎠", "", "", "", "Xerxes"]) + let v = native_list_append(v, ["𐎭𐎠𐎼𐎹𐎺𐎢𐏁", "noun", "𐎭𐎠𐎼𐎹𐎺𐎢𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎤𐎢𐎽𐎢𐏁", "noun", "𐎤𐎢𐎽𐎢𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎱𐎠𐎼𐎿", "noun", "𐎱𐎠𐎼𐎿", "", "", "", "a Persian"]) + let v = native_list_append(v, ["𐎷𐎰𐎼", "noun", "𐎷𐎰𐎼", "", "", "", "Mithra a Zoroastrian"]) + let v = native_list_append(v, ["𐎶𐎦𐎢𐏁", "noun", "𐎶𐎦𐎢𐏁", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["𐎠𐎿", "noun", "𐎠𐎿", "", "", "", "horse"]) + let v = native_list_append(v, ["𐏃𐎡𐎯𐎢𐏁", "noun", "𐏃𐎡𐎯𐎢𐏁", "", "", "", "India the Indus"]) + let v = native_list_append(v, ["𐏎", "noun", "𐏎", "", "", "", "god"]) + let v = native_list_append(v, ["𐎠𐎿𐎱", "noun", "𐎠𐎿𐎱", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐎲𐎥", "noun", "𐎲𐎥", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐏈", "noun", "𐏈", "", "", "", "Ahura Mazda"]) + let v = native_list_append(v, ["𐏉", "noun", "𐏉", "", "", "", "Ahura Mazda"]) + let v = native_list_append(v, ["𐏊", "noun", "𐏊", "", "", "", "Ahura Mazda"]) + let v = native_list_append(v, ["𐏋", "noun", "𐏋", "", "", "", "king"]) + let v = native_list_append(v, ["𐎧𐏁𐎠𐎹𐎰𐎡𐎹", "noun", "𐎧𐏁𐎠𐎹𐎰𐎡𐎹𐎠", "𐎧𐏁𐎠𐎹𐎰𐎡𐎹𐏃𐎹", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐏌", "noun", "𐏌", "", "", "", "country"]) + let v = native_list_append(v, ["𐏍", "noun", "𐏍", "", "", "", "country"]) + let v = native_list_append(v, ["𐏏", "noun", "𐏏", "", "", "", "earth"]) + let v = native_list_append(v, ["𐎱𐎢𐏂", "noun", "𐎱𐎢𐏂", "", "", "", "son"]) + let v = native_list_append(v, ["𐎭𐎠𐎫𐎶", "noun", "𐎭𐎠𐎫𐎶", "", "", "", "law"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎫𐎡𐏁", "noun", "𐎠𐎼𐏁𐎫𐎡𐏁", "", "", "", "spear"]) + let v = native_list_append(v, ["𐎱𐎡𐎫𐎠", "noun", "𐎱𐎡𐎫𐎠", "", "", "", "father"]) + let v = native_list_append(v, ["𐎳𐎼𐎶𐎠𐎫𐎠", "noun", "𐎳𐎼𐎶𐎠𐎫𐎠", "", "", "", "commander"]) + let v = native_list_append(v, ["𐎴𐎱𐎠", "noun", "𐎴𐎱𐎠", "", "", "", "grandson"]) + let v = native_list_append(v, ["𐎧𐏁𐏂𐎱𐎠𐎺𐎠", "noun", "𐎧𐏁𐏂𐎱𐎠𐎺𐎠", "", "", "", "satrap governor of"]) + let v = native_list_append(v, ["𐎲𐎼𐎠𐎫𐎠", "noun", "𐎲𐎼𐎠𐎫𐎠", "", "", "", "brother"]) + let v = native_list_append(v, ["𐎣𐎠𐎶", "noun", "𐎣𐎠𐎶", "", "", "", "wish"]) + let v = native_list_append(v, ["𐎭𐎡𐎺", "noun", "𐎭𐎡𐎺", "", "", "", "foreign god false"]) + let v = native_list_append(v, ["𐎶𐎠𐎫𐎠", "noun", "𐎶𐎠𐎫𐎠", "", "", "", "mother"]) + let v = native_list_append(v, ["𐎱𐎠𐎭", "noun", "𐎱𐎠𐎭", "", "", "", "foot"]) + let v = native_list_append(v, ["𐎶𐎠𐏃", "noun", "𐎶𐎠𐏃", "", "", "", "month"]) + let v = native_list_append(v, ["𐎠𐎿𐎶𐎠", "noun", "𐎠𐎿𐎶𐎠", "", "", "", "sky"]) + let v = native_list_append(v, ["𐎭𐎿𐎫", "noun", "𐎭𐎿𐎫", "", "", "", "hand"]) + let v = native_list_append(v, ["𐎶𐎼𐎫𐎡𐎹", "noun", "𐎶𐎼𐎫𐎡𐎹𐎠", "𐎶𐎼𐎫𐎡𐎹𐏃𐎹", "", "", "man mortal man"]) + let v = native_list_append(v, ["𐎺𐎠𐏃𐎼", "noun", "𐎺𐎠𐏃𐎼", "", "", "", "spring"]) + let v = native_list_append(v, ["𐎠𐎼𐎫", "noun", "𐎠𐎼𐎫", "", "", "", "truth"]) + let v = native_list_append(v, ["𐎭𐎼𐎢𐎥", "noun", "𐎭𐎼𐎢𐎥", "", "", "", "lie untruth"]) + let v = native_list_append(v, ["𐎭𐎠𐎽𐎢𐎺", "noun", "𐎭𐎠𐎽𐎢𐎺", "", "", "", "wood"]) + let v = native_list_append(v, ["𐎶𐎦𐏁", "noun", "𐎶𐎦𐏁", "", "", "", "Mazdean priest"]) + let v = native_list_append(v, ["𐎠𐎱𐎡𐎹𐎠", "noun", "𐎠𐎱𐎡𐎹𐎠", "", "", "", "into the water"]) + let v = native_list_append(v, ["𐎠𐎿𐎶𐎴", "noun", "𐎠𐎿𐎶𐎴", "", "", "", "sky"]) + let v = native_list_append(v, ["𐎧𐏁𐏂𐎶", "noun", "𐎧𐏁𐏂𐎶", "", "", "", "realm province"]) + let v = native_list_append(v, ["𐏀𐎴", "noun", "𐏀𐎴", "", "", "", "man"]) + let v = native_list_append(v, ["𐎠𐎼𐎷𐎡𐎴", "noun", "𐎠𐎼𐎷𐎡𐎴𐎠 (*a-r-mi-i-n-a)", "𐎠𐎼𐎷𐎡𐎴𐏃𐎹𐎠 (*a-r-mi-i-n-h-y-a)", "𐎠𐎼𐎷𐎡𐎴𐏃𐎹𐎠 (*a-r-mi-i-n-h-y-a)", "", "Armenia an ancient"]) + let v = native_list_append(v, ["𐎠𐎼𐎷𐎡𐎴𐎹", "noun", "𐎠𐎼𐎷𐎡𐎴𐎹", "", "", "", "an Armenian"]) + let v = native_list_append(v, ["𐎠𐎼𐎷𐎡𐎴𐎶", "noun", "𐎠𐎼𐎷𐎡𐎴𐎶", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𐎠𐎼𐎷𐎡𐎴𐎡𐎹", "noun", "𐎠𐎼𐎷𐎡𐎴𐎡𐎹", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["𐎯𐎺𐎼𐎹𐎠", "noun", "𐎯𐎺𐎼𐎹𐎠", "", "", "", "at my door"]) + let v = native_list_append(v, ["𐎲𐎠𐎪𐎶", "noun", "𐎲𐎠𐎪𐎶", "", "", "", "tribute toll"]) + let v = native_list_append(v, ["𐏃𐎧𐎠𐎶𐎴𐎡𐏁", "noun", "𐏃𐎧𐎠𐎶𐎴𐎡𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎠𐎴𐏃𐎡𐎫", "noun", "𐎠𐎴𐏃𐎡𐎫", "", "", "", "Anahita"]) + let v = native_list_append(v, ["𐎠𐎼𐎫𐎧𐏁𐏂𐎠", "noun", "𐎠𐎼𐎫𐎧𐏁𐏂𐎠", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎱𐎼𐎭𐎹𐎭𐎠𐎶", "noun", "𐎱𐎼𐎭𐎹𐎭𐎠𐎶", "", "", "", "paradise"]) + let v = native_list_append(v, ["𐎢𐎳𐎼𐎠𐎬𐎢", "noun", "𐎢𐎳𐎼𐎠𐎬𐎢", "", "", "", "Euphrates"]) + let v = native_list_append(v, ["𐎹𐎢𐎴", "noun", "𐎹𐎢𐎴", "", "", "", "Ionia"]) + let v = native_list_append(v, ["𐎫𐎡𐎥𐎼𐎠", "noun", "𐎫𐎡𐎥𐎼𐎠", "", "", "", "Tigris"]) + let v = native_list_append(v, ["𐎶𐎠𐎭", "noun", "𐎶𐎠𐎭", "", "", "", "Median native or"]) + let v = native_list_append(v, ["𐎸𐎭𐎼𐎠𐎹", "noun", "𐎸𐎭𐎼𐎠𐎹", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["𐏃𐎼𐎢𐎺𐎫𐎡𐏁", "noun", "𐏃𐎼𐎢𐎺𐎫𐎡𐏁", "", "", "", "Haravaiti"]) + let v = native_list_append(v, ["Bagadātah", "noun", "Bagadātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎠𐎱𐎭𐎠𐎴", "noun", "𐎠𐎱𐎭𐎠𐎴", "", "", "", "hypostyle hall"]) + let v = native_list_append(v, ["𐎾𐎲𐎴𐎠𐎴", "noun", "𐎾𐎲𐎴𐎠𐎴", "", "", "", "Lebanon an ancient"]) + let v = native_list_append(v, ["𐎠𐎼𐎲𐎠𐎹", "noun", "𐎠𐎼𐎲𐎠𐎹", "", "", "", "a peninsula and"]) + let v = native_list_append(v, ["𐎲𐎠𐎲𐎡𐎽𐎢𐏁", "noun", "𐎲𐎠𐎲𐎡𐎽𐎢𐏁", "", "", "", "Babylon"]) + let v = native_list_append(v, ["𐎢𐎺𐎩", "noun", "𐎢𐎺𐎩", "", "", "", "Elam an ancient"]) + let v = native_list_append(v, ["𐎣𐎫𐎱𐎬𐎢𐎣", "noun", "𐎣𐎫𐎱𐎬𐎢𐎣", "", "", "", "Cappadocia a historical"]) + let v = native_list_append(v, ["𐎲𐎠𐎧𐎫𐎼𐎡𐏁", "noun", "𐎲𐎠𐎧𐎫𐎼𐎡𐏁", "", "", "", "Bactria"]) + let v = native_list_append(v, ["𐎱𐎼𐎰𐎺", "noun", "𐎱𐎼𐎰𐎺", "", "", "", "Parthia Parthian Empire"]) + let v = native_list_append(v, ["𐎥𐎭𐎠𐎼", "noun", "𐎥𐎭𐎠𐎼", "", "", "", "Gandhara"]) + let v = native_list_append(v, ["𐎿𐎢𐎦𐎢𐎭", "noun", "𐎿𐎢𐎦𐎢𐎭", "", "", "", "Sogdiana"]) + let v = native_list_append(v, ["𐏀𐎼𐎣", "noun", "𐏀𐎼𐎣", "", "", "", "Drangiana"]) + let v = native_list_append(v, ["𐎤𐎢𐏁𐎠𐎹", "noun", "𐎤𐎢𐏁𐎠𐎹", "", "", "", "Kush"]) + let v = native_list_append(v, ["𐎿𐎤𐎢𐎭𐎼", "noun", "𐎿𐎤𐎢𐎭𐎼", "", "", "", "Thrace a historical"]) + let v = native_list_append(v, ["𐎠𐎰𐎢𐎼𐎠", "noun", "𐎠𐎰𐎢𐎼𐎠", "", "", "", "Assyria an ancient"]) + let v = native_list_append(v, ["𐎣𐎼𐎣𐎠", "noun", "𐎣𐎼𐎣𐎠", "", "", "", "Caria a historical"]) + let v = native_list_append(v, ["𐎰𐎫𐎦𐎢𐏁", "noun", "𐎰𐎫𐎦𐎢𐏁", "", "", "", "Sattagydia"]) + let v = native_list_append(v, ["𐏃𐎼𐎡𐎺", "noun", "𐏃𐎼𐎡𐎺", "", "", "", "Ariana"]) + let v = native_list_append(v, ["𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐎹", "noun", "𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐎹", "", "", "", "Chorasmia Khwarazm a"]) + let v = native_list_append(v, ["𐎱𐎢𐎫𐎠𐎹", "noun", "𐎱𐎢𐎫𐎠𐎹", "", "", "", "Libya a country"]) + let v = native_list_append(v, ["𐎿𐎱𐎼𐎭", "noun", "𐎿𐎱𐎼𐎭", "", "", "", "Sardis"]) + let v = native_list_append(v, ["𐎿𐎣", "noun", "𐎿𐎣", "", "", "", "Scythia a geographic"]) + let v = native_list_append(v, ["𐎠𐎣𐎢𐎳𐎨𐎡𐎹𐎠", "noun", "𐎠𐎣𐎢𐎳𐎨𐎡𐎹𐎠", "", "", "", "Akaufaciya Mountaineers"]) + let v = native_list_append(v, ["𐎷𐎫𐎼", "noun", "𐎷𐎫𐎼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐎣𐎼𐏁𐎹𐎠", "noun", "𐎣𐎼𐏁𐎹𐎠", "", "", "", "unit of weight"]) + let v = native_list_append(v, ["𐎣𐎼𐏁", "noun", "𐎣𐎼𐏁", "", "", "", "unit of weight"]) + let v = native_list_append(v, ["𐎣𐎢𐎳", "noun", "𐎣𐎢𐎳", "", "", "", "mountain"]) + let v = native_list_append(v, ["farnah", "noun", "farnah", "", "", "", "glory"]) + let v = native_list_append(v, ["𐎺𐎼𐎣𐎠𐎴", "noun", "𐎺𐎼𐎣𐎠𐎴", "", "", "", "Gorgan Vahrkana old"]) + let v = native_list_append(v, ["𐎺𐎼𐎣", "noun", "𐎺𐎼𐎣", "", "", "", "wolf"]) + let v = native_list_append(v, ["𐎠𐎱𐎭𐎠𐎴𐎶", "noun", "𐎠𐎱𐎭𐎠𐎴𐎶", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["hammārakarah", "noun", "hammārakarah", "", "", "", "bookkeeper accountant"]) + let v = native_list_append(v, ["𐎼𐎧𐎠", "noun", "𐎼𐎧𐎠", "", "", "", "Rakhā a town"]) + let v = native_list_append(v, ["gandabarah", "noun", "gandabarah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎣", "noun", "𐎠𐎼𐏁𐎣", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎠𐎿𐎱𐎨𐎴", "noun", "𐎠𐎿𐎱𐎨𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["kāravā", "noun", "kāravā", "", "", "", "army"]) + let v = native_list_append(v, ["ganzabarah", "noun", "ganzabarah", "", "", "", "treasurer"]) + let v = native_list_append(v, ["𐎠𐎿𐎲𐎠𐎼", "noun", "𐎠𐎿𐎲𐎠𐎼", "", "", "", "horseman"]) + let v = native_list_append(v, ["nauciš", "noun", "nauciš", "", "", "", "cedar"]) + let v = native_list_append(v, ["𐎠𐎰𐎥", "noun", "𐎠𐎰𐎥", "", "", "", "stone rock"]) + let v = native_list_append(v, ["𐎠𐎿𐎴", "noun", "𐎠𐎿𐎴", "", "", "", "stone"]) + let v = native_list_append(v, ["𐎹𐎢𐎴𐎠 𐏐 𐎫𐎣𐎲𐎼𐎠", "noun", "𐎹𐎢𐎴𐎠 𐏐 𐎫𐎣𐎲𐎼𐎠", "", "", "", "Ancient Macedonian person"]) + let v = native_list_append(v, ["𐎠𐎼𐎧", "noun", "𐎠𐎼𐎧", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎭𐎼𐎴𐎡𐎹", "noun", "𐎭𐎼𐎴𐎡𐎹", "", "", "", "gold"]) + let v = native_list_append(v, ["𐎭𐎼𐎴𐎡𐎹𐎣𐎼", "noun", "𐎭𐎼𐎴𐎡𐎹𐎣𐎼", "", "", "", "goldsmith"]) + let v = native_list_append(v, ["𐎺𐏁𐎴", "noun", "𐎺𐏁𐎴", "", "", "", "will favor"]) + let v = native_list_append(v, ["𐎻𐏁𐎫𐎠𐎿𐎱", "noun", "𐎻𐏁𐎫𐎠𐎿𐎱𐎠", "𐎻𐏁𐎫𐎠𐎿𐎱𐏃𐎹", "", "", "a male given"]) + let v = native_list_append(v, ["𐎹𐎢𐎴𐎠", "noun", "𐎹𐎢𐎴𐎠", "", "", "", "Ionian"]) + let v = native_list_append(v, ["𐎶𐎴𐏃", "noun", "𐎶𐎴𐏃", "", "", "", "mind thought"]) + let v = native_list_append(v, ["𐏃𐎶𐎼𐎴", "noun", "𐏃𐎶𐎼𐎴", "", "", "", "battle"]) + let v = native_list_append(v, ["𐎼𐎢𐎨𐏃", "noun", "𐎼𐎢𐎨𐎲𐎡𐏁", "", "", "", "day"]) + let v = native_list_append(v, ["𐎼𐎢𐎨", "noun", "𐎼𐎢𐎨", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["𐎼𐎢𐎨𐎲𐎡𐏁", "noun", "𐎼𐎢𐎨𐎲𐎡𐏁", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["𐎿𐎡𐎹𐎶", "noun", "𐎿𐎡𐎹𐎶", "", "", "", "silver."]) + let v = native_list_append(v, ["𐏃𐎥𐎶𐎫𐎠𐎴", "noun", "𐏃𐎥𐎶𐎫𐎠𐎴", "", "", "", "Ecbatana"]) + let v = native_list_append(v, ["𐎣𐎠𐎿𐎣", "noun", "𐎣𐎠𐎿𐎣", "", "", "", "glass"]) + let v = native_list_append(v, ["𐎨𐎡𐏂", "noun", "𐎨𐎡𐏂", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎫𐎡𐎣", "noun", "𐎠𐎼𐏁𐎫𐎡𐎣", "", "", "", "spearman"]) + let v = native_list_append(v, ["𐏃𐎡𐎴𐎠", "noun", "𐏃𐎡𐎴𐎠", "", "", "", "enemy army hostile"]) + let v = native_list_append(v, ["𐏃𐏀𐎠𐎴𐎶", "noun", "𐏃𐏀𐎠𐎴𐎶", "", "", "", "tongue"]) + let v = native_list_append(v, ["𐎠𐎵𐎢𐏁𐎡𐎹", "noun", "𐎠𐎵𐎢𐏁𐎡𐎹", "", "", "", "loyal follower faithful"]) + let v = native_list_append(v, ["𐎲𐎭𐎣", "noun", "𐎲𐎭𐎣", "", "", "", "loyal subject servant"]) + let v = native_list_append(v, ["𐎭𐎼𐎹", "noun", "𐎭𐎼𐎹", "", "", "", "sea"]) + let v = native_list_append(v, ["𐎫𐎢𐎶𐎠", "noun", "𐎫𐎢𐎶𐎠", "", "", "", "family"]) + let v = native_list_append(v, ["mānā", "noun", "mānā", "", "", "", "house"]) + let v = native_list_append(v, ["𐏃𐏀𐎴𐎶", "noun", "𐏃𐏀𐎴𐎶", "", "", "", "tongue"]) + let v = native_list_append(v, ["𐎢𐎱𐎿𐎫𐎠", "noun", "𐎢𐎱𐎿𐎫𐎠𐎴𐎠𐎶", "𐎢𐎱𐎿𐎫𐎠𐎹𐎠", "", "", "aid help"]) + let v = native_list_append(v, ["baivaram", "noun", "baivaram", "", "", "", "myriad ten thousand"]) + let v = native_list_append(v, ["𐎣𐎲𐎢𐎪𐎡𐎹", "noun", "𐎣𐎲𐎢𐎪𐎡𐎹", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎶𐎹𐎧", "noun", "𐎶𐎹𐎧", "", "", "", "doorknob"]) + let v = native_list_append(v, ["varāzah", "noun", "varāzah", "", "", "", "boar"]) + let v = native_list_append(v, ["naftah", "noun", "naftah", "", "", "", "petroleum"]) + let v = native_list_append(v, ["𐏃𐎾𐎮𐎫", "noun", "𐏃𐎾𐎮𐎫", "", "", "", "Haldita father of"]) + let v = native_list_append(v, ["𐎣𐎠𐎼", "noun", "𐎣𐎠𐎼", "", "", "", "the people subjects"]) + let v = native_list_append(v, ["𐏃𐎶𐎼𐎴𐎣𐎼", "noun", "𐏃𐎶𐎼𐎴𐎣𐎼", "", "", "", "fighter warrior"]) + let v = native_list_append(v, ["𐎱𐎿𐎫𐎡", "noun", "𐎱𐎿𐎫𐎡", "", "", "", "foot soldier infantryman"]) + let v = native_list_append(v, ["𐎿𐎡𐎹𐎶𐎶", "noun", "𐎿𐎡𐎹𐎶𐎶", "", "", "", "silver"]) + let v = native_list_append(v, ["𐎣𐎠𐎿𐎣𐎡𐎴", "noun", "𐎣𐎠𐎿𐎣𐎡𐎴", "", "", "", "made of glass"]) + let v = native_list_append(v, ["𐎠𐎰𐎥𐎡𐎴", "noun", "𐎠𐎰𐎥𐎡𐎴", "", "", "", "made of stone"]) + let v = native_list_append(v, ["𐎠𐎹𐎭𐎴", "noun", "𐎠𐎹𐎭𐎴𐎠", "𐎠𐎹𐎭𐎴𐏃𐎹", "", "", "a sanctuary place"]) + let v = native_list_append(v, ["𐎭𐏃𐎹𐎠𐎢", "noun", "𐎭𐏃𐎹𐎠𐎺", "𐎭𐏃𐎹𐎠𐎢𐏁", "𐎭𐏃𐎹𐎠𐎢𐏁", "", "land country"]) + let v = native_list_append(v, ["𐏀𐎢𐎼𐎣𐎼", "noun", "𐏀𐎢𐎼𐎣𐎼", "", "", "", "a wrongdoer an"]) + let v = native_list_append(v, ["𐎱𐎫𐎡𐎣𐎼", "noun", "𐎱𐎫𐎡𐎣𐎼", "", "", "", "image picture"]) + let v = native_list_append(v, ["𐎭𐏃𐎹𐎠𐎢𐏁", "noun", "𐎭𐏃𐎹𐎠𐎢𐏁", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎴𐎡", "noun", "𐎠𐎼𐏁𐎴𐎡", "", "", "", "cubit"]) + let v = native_list_append(v, ["𐏀𐎢𐎼", "noun", "𐏀𐎢𐎼", "", "", "", "wrong harm evil"]) + let v = native_list_append(v, ["𐏃𐎯𐎢𐎥𐎠", "noun", "𐏃𐎯𐎢𐎥𐎠𐎴𐎠𐎶", "𐏃𐎯𐎢𐎥𐎠𐎹𐎠", "", "", "record statute"]) + let v = native_list_append(v, ["𐎰𐎠𐎡𐎥𐎼𐎨𐎡𐏁", "noun", "𐎰𐎠𐎡𐎥𐎼𐎨𐎡𐏁", "", "", "", "Third month of"]) + let v = native_list_append(v, ["𐎰𐎢𐎼𐎺𐎠𐏃𐎼", "noun", "𐎰𐎢𐎼𐎺𐎠𐏃𐎼", "", "", "", "Second month of"]) + let v = native_list_append(v, ["šarguš", "noun", "šarguš", "", "", "", "lion"]) + let v = native_list_append(v, ["𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐏁", "noun", "𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐏁", "", "", "", "Chorasmia Khwarazm a"]) + let v = native_list_append(v, ["bāgah", "noun", "bāgah", "", "", "", "garden orchard"]) + let v = native_list_append(v, ["𐎰𐎼𐎭", "noun", "𐎰𐎼𐎭", "", "", "", "year"]) + let v = native_list_append(v, ["𐎧𐏁𐎱", "noun", "𐎧𐏁𐎱", "", "", "", "night"]) + let v = native_list_append(v, ["𐎠𐎼𐎭𐎿𐎫𐎠𐎴", "noun", "𐎠𐎼𐎭𐎿𐎫𐎠𐎴", "", "", "", "window frame windowsill"]) + let v = native_list_append(v, ["vahār", "noun", "vahār", "", "", "", "spring"]) + let v = native_list_append(v, ["𐎲𐎥𐎲𐎢𐎧𐏁", "noun", "𐎲𐎥𐎲𐎢𐎧𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎿𐎣𐎠 𐏐 𐎫𐎡𐎥𐎼𐎧𐎢𐎭𐎠", "noun", "𐎿𐎣𐎠 𐏐 𐎫𐎡𐎥𐎼𐎧𐎢𐎭𐎠", "", "", "", "A Scythian tribe"]) + let v = native_list_append(v, ["𐎿𐎣𐎠", "noun", "𐎿𐎣𐎠", "", "", "", "Scythia"]) + let v = native_list_append(v, ["𐎿𐎣𐎠 𐏐 𐏃𐎢𐎶𐎺𐎼𐎥𐎠", "noun", "𐎿𐎣𐎠 𐏐 𐏃𐎢𐎶𐎺𐎼𐎥𐎠", "", "", "", "A Scythian tribe"]) + let v = native_list_append(v, ["𐎿𐎣𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎱𐎼𐎭𐎼𐎹", "noun", "𐎿𐎣𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎱𐎼𐎭𐎼𐎹", "", "", "", "The Scythians inhabiting"]) + let v = native_list_append(v, ["𐎹𐎢𐎴𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎱𐎼𐎭𐎼𐎹", "noun", "𐎹𐎢𐎴𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎱𐎼𐎭𐎼𐎹", "", "", "", "European Greeks Greeks"]) + let v = native_list_append(v, ["𐎹𐎢𐎴𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎭𐎼𐎹𐏃𐎹𐎠", "noun", "𐎹𐎢𐎴𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎭𐎼𐎹𐏃𐎹𐎠", "", "", "", "Asian Greeks Greeks"]) + let v = native_list_append(v, ["𐎲𐎠𐎧𐎫𐎼𐎡𐎹", "noun", "𐎲𐎠𐎧𐎫𐎼𐎡𐎹", "", "", "", "a Bactrian"]) + let v = native_list_append(v, ["𐏃𐎡𐎯𐎢𐎹", "noun", "𐏃𐎡𐎯𐎢𐎹", "", "", "", "an Indian"]) + let v = native_list_append(v, ["𐎿𐎤𐎢𐎭𐎼𐎡𐎹", "noun", "𐎿𐎤𐎢𐎭𐎼𐎡𐎹", "", "", "", "a Thracian"]) + let v = native_list_append(v, ["𐎿𐎢𐎦𐎢𐎭𐎡𐎹", "noun", "𐎿𐎢𐎦𐎢𐎭𐎡𐎹", "", "", "", "a Sogdian"]) + let v = native_list_append(v, ["𐎺𐎼𐎣𐎠𐎴𐎡𐎹", "noun", "𐎺𐎼𐎣𐎠𐎴𐎡𐎹", "", "", "", "a Hyrcanian"]) + let v = native_list_append(v, ["𐏃𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐏁", "noun", "𐏃𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐏁", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐏀𐎼𐎣𐎠", "noun", "𐏀𐎼𐎣𐎠", "", "", "", "a Drangian/Sarangian"]) + let v = native_list_append(v, ["𐎲𐎠𐎧𐏂𐎡𐎹", "noun", "𐎲𐎠𐎧𐏂𐎡𐎹", "", "", "", "a Bactrian"]) + let v = native_list_append(v, ["𐎲𐎠𐎧𐏂𐎡𐏁", "noun", "𐎲𐎠𐎧𐏂𐎡𐏁", "", "", "", "Bactria"]) + let v = native_list_append(v, ["𐏃𐎼𐎹", "noun", "𐏃𐎼𐎹", "", "", "", "an Arianian"]) + let v = native_list_append(v, ["𐎹𐎢𐎴𐎡𐎹", "noun", "𐎹𐎢𐎴𐎡𐎹", "", "", "", "an Ionian"]) + let v = native_list_append(v, ["𐎥𐎭𐎠𐎼𐎹", "noun", "𐎥𐎭𐎠𐎼𐎹", "", "", "", "a Gandharan"]) + let v = native_list_append(v, ["𐏃𐎼𐎢𐎺𐎫𐎡𐎹", "noun", "𐏃𐎼𐎢𐎺𐎫𐎡𐎹", "", "", "", "an Arachosian"]) + let v = native_list_append(v, ["𐏃𐎾𐎡𐎺", "noun", "𐏃𐎾𐎡𐎺", "", "", "", "Ariana"]) + let v = native_list_append(v, ["𐎳𐎼𐎺𐎼𐎫𐎡𐏁", "noun", "𐎳𐎼𐎺𐎼𐎫𐎡𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎹𐎢𐎴𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎢𐏁𐎣𐏃𐎹𐎠", "noun", "𐎹𐎢𐎴𐎠 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎢𐏁𐎣𐏃𐎹𐎠", "", "", "", "A group of"]) + let v = native_list_append(v, ["𐎤𐎢𐏁", "noun", "𐎤𐎢𐏁", "", "", "", "Kush"]) + let v = native_list_append(v, ["𐎭𐎠𐎫", "noun", "𐎭𐎠𐎫", "", "", "", "given created"]) + let v = native_list_append(v, ["𐎿𐎣𐎡𐎲𐎡𐏁", "noun", "𐎿𐎣𐎡𐎲𐎡𐏁", "", "", "", "Scythians"]) + let v = native_list_append(v, ["𐎿𐎣𐎡𐎲𐎡𐏁 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎱𐎼 𐏐 𐎿𐎢𐎥𐎭𐎶", "noun", "𐎿𐎣𐎡𐎲𐎡𐏁 𐏐 𐎫𐎹𐎡𐎹 𐏐 𐎱𐎼 𐏐 𐎿𐎢𐎥𐎭𐎶", "", "", "", "A group of"]) + let v = native_list_append(v, ["𐎻𐎡𐎭𐎳𐎼𐎴𐎠", "noun", "𐎻𐎡𐎭𐎳𐎼𐎴𐎠", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎠𐎶", "noun", "𐎠𐎼𐏁𐎠𐎶", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥šitah", "noun", "R̥šitah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tavazdāh", "noun", "R̥tavazdāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tastūnā", "noun", "R̥tastūnā", "", "", "", "a unisex given"]) + let v = native_list_append(v, ["Vātafradātah", "noun", "Vātafradātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ciθrafarnāh", "noun", "Ciθrafarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ciçafarnāh", "noun", "Ciçafarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθravahištah", "noun", "Miθravahištah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ciθravahištah", "noun", "Ciθravahištah", "", "", "", "a male given"]) + let v = native_list_append(v, ["ciθrah", "noun", "ciθrah", "", "", "", "form appearance"]) + let v = native_list_append(v, ["Spantadātah", "noun", "Spantadātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Spiθradātah", "noun", "Spiθradātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Raivamiθrah", "noun", "Raivamiθrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Šyātibr̥zans", "noun", "Šyātibr̥zans", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθrabr̥zans", "noun", "Miθrabr̥zans", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aryabr̥zans", "noun", "Aryabr̥zans", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθrabaujanah", "noun", "Miθrabaujanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθraupastah", "noun", "Miθraupastah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Māhibaujanah", "noun", "Māhibaujanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Vahumanah", "noun", "Vahumanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Māhidātah", "noun", "Māhidātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθrafarnāh", "noun", "Miθrafarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Šyātifarnāh", "noun", "Šyātifarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθrapātah", "noun", "Miθrapātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Farnadātah", "noun", "Farnadātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pišišyauθnah", "noun", "Pišišyauθnah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Raucakah", "noun", "Raucakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["θigrah", "noun", "θigrah", "", "", "", "garlic"]) + let v = native_list_append(v, ["Arvantapātah", "noun", "Arvantapātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagaciθrah", "noun", "Bagaciθrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ātr̥dātah", "noun", "Ātr̥dātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ātr̥pātah", "noun", "Ātr̥pātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Parušyātiš", "noun", "Parušyātiš", "", "", "", "a female given"]) + let v = native_list_append(v, ["𐎶𐎼𐎯𐎢𐎴𐎡𐎹", "noun", "𐎶𐎼𐎯𐎢𐎴𐎡𐎹", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagapātah", "noun", "Bagapātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐏁𐎡𐎹𐎠𐎫𐎡𐏁", "noun", "𐏁𐎡𐎹𐎠𐎫𐎡𐏁", "", "", "", "peace"]) + let v = native_list_append(v, ["vazdāh", "noun", "vazdāh", "", "", "", "persistence endurance"]) + let v = native_list_append(v, ["spiθrah", "noun", "spiθrah", "", "", "", "heaven"]) + let v = native_list_append(v, ["(w)r̥šā", "noun", "(w)r̥šā", "", "", "", "man"]) + let v = native_list_append(v, ["Māhiš", "noun", "Māhiš", "", "", "", "moon deity Mah"]) + let v = native_list_append(v, ["jamānā", "noun", "jamānā", "", "", "", "time"]) + let v = native_list_append(v, ["𐎰𐎵𐎢𐎺𐎴𐎡𐎹", "noun", "𐎰𐎵𐎢𐎺𐎴𐎡𐎹", "", "", "", "archer"]) + let v = native_list_append(v, ["R̥tavazdānah", "noun", "R̥tavazdānah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎱𐎡𐎼𐎠𐎺", "noun", "𐎱𐎡𐎼𐎠𐎺", "", "", "", "the Nile"]) + let v = native_list_append(v, ["Miθrayah", "noun", "Miθrayah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tayah", "noun", "R̥tayah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎴𐎠𐏃𐎶", "noun", "𐎴𐎠𐏃𐎠", "𐎴𐎠𐏃𐎹𐎠", "𐎴𐎠𐏃𐎹𐎠", "", "nose"]) + let v = native_list_append(v, ["θāyakā", "noun", "θāyakā", "", "", "", "shade shadow"]) + let v = native_list_append(v, ["haxā", "noun", "haxā", "", "", "", "friend companion"]) + let v = native_list_append(v, ["maniš", "noun", "maniš", "", "", "", "thought mind"]) + let v = native_list_append(v, ["margā", "noun", "margā", "", "", "", "meadow"]) + let v = native_list_append(v, ["𐎢𐎫𐎠𐎴", "noun", "𐎢𐎫𐎠𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hutauθā", "noun", "Hutauθā", "", "", "", "a female given"]) + let v = native_list_append(v, ["θatam", "noun", "θatam", "", "", "", "hundred"]) + let v = native_list_append(v, ["gāuš", "noun", "gāuš", "", "", "", "cow"]) + let v = native_list_append(v, ["xšaθram", "noun", "xšaθram", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vātah", "noun", "vātah", "", "", "", "wind air"]) + let v = native_list_append(v, ["r̥šah", "noun", "r̥šah", "", "", "", "bear"]) + let v = native_list_append(v, ["vr̥dah", "noun", "vr̥dah", "", "", "", "flower rose"]) + let v = native_list_append(v, ["vrinjiš", "noun", "vrinjiš", "", "", "", "rice"]) + let v = native_list_append(v, ["bādukah", "noun", "bādukah", "", "", "", "arm"]) + let v = native_list_append(v, ["rauxšnā", "noun", "rauxšnā", "", "", "", "light"]) + let v = native_list_append(v, ["hvatah", "noun", "hvatah", "", "", "", "self"]) + let v = native_list_append(v, ["çahma", "noun", "çahma", "", "", "", "terror fear"]) + let v = native_list_append(v, ["Dātafarnāh", "noun", "Dātafarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["xšayah", "noun", "xšayah", "", "", "", "rule dominion"]) + let v = native_list_append(v, ["hazārapatiš", "noun", "hazārapatiš", "", "", "", "commander of a"]) + let v = native_list_append(v, ["θatapatiš", "noun", "θatapatiš", "", "", "", "commander of a"]) + let v = native_list_append(v, ["daθapatiš", "noun", "daθapatiš", "", "", "", "commander of ten"]) + let v = native_list_append(v, ["hadāram", "noun", "hadāram", "", "", "", "thousand"]) + let v = native_list_append(v, ["patiš", "noun", "patiš", "", "", "", "lord"]) + let v = native_list_append(v, ["Miθradātah", "noun", "Miθradātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎲𐎼𐎮𐎡𐎹", "noun", "𐎲𐎼𐎮𐎡𐎹", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gāuciθrah", "noun", "Gāuciθrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Jīvakah", "noun", "Jīvakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥difyah", "noun", "R̥difyah", "", "", "", "a male given"]) + let v = native_list_append(v, ["r̥difyah", "noun", "r̥difyah", "", "", "", "eagle"]) + let v = native_list_append(v, ["Miθrānah", "noun", "Miθrānah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Miθrātah", "noun", "Miθrātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Mazdāyah", "noun", "Mazdāyah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Mazdākah", "noun", "Mazdākah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Mazdāyā", "noun", "Mazdāyā", "", "", "", "a female given"]) + let v = native_list_append(v, ["Jāmāspah", "noun", "Jāmāspah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Manuštanah", "noun", "Manuštanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Dātamah", "noun", "Dātamah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Dātāmah", "noun", "Dātāmah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Dātah", "noun", "Dātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Dātiyah", "noun", "Dātiyah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tamanah", "noun", "R̥tamanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tamanā", "noun", "R̥tamanā", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tamanyuš", "noun", "R̥tamanyuš", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tamah", "noun", "R̥tamah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥takāmah", "noun", "R̥takāmah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎶𐎰𐎡𐏁𐎫", "noun", "𐎶𐎰𐎡𐏁𐎫", "", "", "", "Biggest greatest"]) + let v = native_list_append(v, ["R̥tafarnāh", "noun", "R̥tafarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tabr̥zans", "noun", "R̥tabr̥zans", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagavahyah", "noun", "Bagavahyah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aryamanah", "noun", "Aryamanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arušah", "noun", "Arušah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagayah", "noun", "Bagayah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bayaçāh", "noun", "Bayaçāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎭𐎠𐎼𐎹𐎢𐏁", "noun", "𐎭𐎠𐎼𐎹𐎢𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arbarāivāh", "noun", "Arbarāivāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥taxšarah", "noun", "R̥taxšarah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Dātamiθrah", "noun", "Dātamiθrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Hufratah", "noun", "Hufratah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Humanah", "noun", "Humanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Haumanah", "noun", "Haumanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥taxšaθrah", "noun", "R̥taxšaθrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎢𐎺𐎧𐏁𐎫𐎼", "noun", "𐎢𐎺𐎧𐏁𐎫𐎼", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎥𐎢𐎲𐎽𐎢𐎺", "noun", "𐎥𐎢𐎲𐎽𐎢𐎺", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tabānuš", "noun", "R̥tabānuš", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥tapānah", "noun", "R̥tapānah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arvantah", "noun", "Arvantah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥taxayah", "noun", "R̥taxayah", "", "", "", "a male given"]) + let v = native_list_append(v, ["R̥timah", "noun", "R̥timah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Gadātah", "noun", "Gadātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Arbinah", "noun", "Arbinah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Tīrayah", "noun", "Tīrayah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Vahubarah", "noun", "Vahubarah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Tīrīdātah", "noun", "Tīrīdātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["sparabarah", "noun", "sparabarah", "", "", "", "infantrymen equipped with"]) + let v = native_list_append(v, ["Čiçamiθrah", "noun", "Čiçamiθrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["baivarapatiš", "noun", "baivarapatiš", "", "", "", "commander of ten"]) + let v = native_list_append(v, ["Abrakah", "noun", "Abrakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bātah", "noun", "Bātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["bātah", "noun", "bātah", "", "", "", "wine"]) + let v = native_list_append(v, ["Varufarnāh", "noun", "Varufarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Farnukah", "noun", "Farnukah", "", "", "", "a male given"]) + let v = native_list_append(v, ["darikah", "noun", "darikah", "", "", "", "daric a gold"]) + let v = native_list_append(v, ["Maškāmah", "noun", "Maškāmah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagaduštah", "noun", "Bagaduštah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Humāyah", "noun", "Humāyah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎭𐎢𐏁𐎫𐎠", "noun", "𐎭𐎢𐏁𐎫𐎠", "", "", "", "friend"]) + let v = native_list_append(v, ["𐎻𐎡𐎭𐎼𐎴", "noun", "𐎻𐎡𐎭𐎼𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["Huvardātah", "noun", "Huvardātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Dahyuvraiθah", "noun", "Dahyuvraiθah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎨𐎡𐏂𐎫𐎧𐎶", "noun", "𐎨𐎡𐏂𐎫𐎧𐎶", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ciçantahmah", "noun", "Ciçantahmah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Apamā", "noun", "Apamā", "", "", "", "a female given"]) + let v = native_list_append(v, ["apamah", "noun", "apamah", "", "", "", "the last"]) + let v = native_list_append(v, ["Dahyufarnāh", "noun", "Dahyufarnāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Āçidātah", "noun", "Āçidātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Āçipātah", "noun", "Āçipātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎧𐏁𐎰𐎼𐎡𐎫", "noun", "𐎧𐏁𐎰𐎼𐎡𐎫", "", "", "", "a male given"]) + let v = native_list_append(v, ["Stātirā", "noun", "Stātirā", "", "", "", "a female given"]) + let v = native_list_append(v, ["Tigrānah", "noun", "Tigrānah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Tanūvazr̥kah", "noun", "Tanūvazr̥kah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Amāstrī", "noun", "Amāstrī", "", "", "", "a female given"]) + let v = native_list_append(v, ["𐎨𐎡𐏁𐎱𐎡𐏁", "noun", "𐎨𐎡𐏁𐎱𐎡𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎫𐎧𐎶𐎿𐎱𐎠𐎭", "noun", "𐎫𐎧𐎶𐎿𐎱𐎠𐎭", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aspacanah", "noun", "Aspacanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎠𐎼𐎡𐎹𐎠𐎼𐎶𐎴", "noun", "𐎠𐎼𐎡𐎹𐎠𐎼𐎶𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎴𐎲𐎢𐎤𐎢𐎭𐎼𐎨𐎼", "noun", "𐎴𐎲𐎢𐎤𐎢𐎭𐎼𐎨𐎼", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎴𐎲𐎢𐎴𐎡𐎫", "noun", "𐎴𐎲𐎢𐎴𐎡𐎫", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎴𐎮𐎡𐎫𐎲𐎡𐎼", "noun", "𐎴𐎮𐎡𐎫𐎲𐎡𐎼", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐏃𐎾𐎮𐎡𐎫", "noun", "𐏃𐎾𐎮𐎡𐎫", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎥𐎢𐎶𐎠𐎫", "noun", "𐎥𐎢𐎶𐎠𐎫", "", "", "", "a male given"]) + let v = native_list_append(v, ["kāratākah", "noun", "kāratākah", "", "", "", "A kind of"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎫𐎡𐎲𐎼", "noun", "𐎠𐎼𐏁𐎫𐎡𐎲𐎼", "", "", "", "spear-bearer"]) + let v = native_list_append(v, ["Pātixšayaθah", "noun", "Pātixšayaθah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Būbarah", "noun", "Būbarah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Badrah", "noun", "Badrah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎺𐏃𐎹𐏀𐎭𐎠𐎫", "noun", "𐎺𐏃𐎹𐏀𐎭𐎠𐎫", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pādakah", "noun", "Pādakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pāpakah", "noun", "Pāpakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rauxšnadātah", "noun", "Rauxšnadātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rauxšnapātah", "noun", "Rauxšnapātah", "", "", "", "a male given"]) + let v = native_list_append(v, ["rauxšnah", "noun", "rauxšnah", "", "", "", "light"]) + let v = native_list_append(v, ["Rauxšnah", "noun", "Rauxšnah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Rauxšnā", "noun", "Rauxšnā", "", "", "", "a female given"]) + let v = native_list_append(v, ["Rādamaiθah", "noun", "Rādamaiθah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Manaicah", "noun", "Manaicah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aryābignah", "noun", "Aryābignah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎲𐎥𐎠𐎲𐎡𐎥𐎴", "noun", "𐎲𐎥𐎠𐎲𐎡𐎥𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎭𐎠𐎭𐎼𐏁𐎡𐏁", "noun", "𐎭𐎠𐎭𐎼𐏁𐎡𐏁", "", "", "", "a male given"]) + let v = native_list_append(v, ["Pāθragadā", "noun", "Pāθragadā", "", "", "", "Pasargadae an ancient"]) + let v = native_list_append(v, ["Yamaxšaitah", "noun", "Yamaxšaitah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Jāmāspiyā", "noun", "Jāmāspiyā", "", "", "", "a female given"]) + let v = native_list_append(v, ["𐎠𐎰𐎶𐎡𐎫", "noun", "𐎠𐎰𐎶𐎡𐎫", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aryukah", "noun", "Aryukah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Zabrakānah", "noun", "Zabrakānah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagasakah", "noun", "Bagasakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kārukah", "noun", "Kārukah", "", "", "", "a male given"]) + let v = native_list_append(v, ["xaragaušah", "noun", "xaragaušah", "", "", "", "rabbit"]) + let v = native_list_append(v, ["Frātagaunā", "noun", "Frātagaunā", "", "", "", "a female given"]) + let v = native_list_append(v, ["𐎠𐏂𐎡𐎴", "noun", "𐎠𐏂𐎡𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["Bagamsakah", "noun", "Bagamsakah", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎰𐎢𐎧𐎼", "noun", "𐎰𐎢𐎧𐎼", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎢𐎱𐎭𐎼𐎶", "noun", "𐎢𐎱𐎭𐎼𐎶", "", "", "", "a male given"]) + let v = native_list_append(v, ["Naryasanhah", "noun", "Naryasanhah", "", "", "", "Name of a"]) + let v = native_list_append(v, ["Naryamanāh", "noun", "Naryamanāh", "", "", "", "a male given"]) + let v = native_list_append(v, ["Naryamanah", "noun", "Naryamanah", "", "", "", "a male given"]) + let v = native_list_append(v, ["Vahumanāh", "noun", "Vahumanāh", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Bagastānah", "noun", "Bagastānah", "", "", "", "an ancient city"]) + let v = native_list_append(v, ["𐎻𐎡𐎺𐎠𐎴", "noun", "𐎻𐎡𐎺𐎠𐎴", "", "", "", "a male given"]) + let v = native_list_append(v, ["𐎶𐎼𐎦𐎢𐏁", "noun", "𐎶𐎼𐎦𐎢𐏁", "", "", "", "Margiana"]) + let v = native_list_append(v, ["𐎶𐎠𐎼𐎥𐎺", "noun", "𐎶𐎠𐎼𐎥𐎺", "", "", "", "a Margian an"]) + let v = native_list_append(v, ["upaganzabarah", "noun", "upaganzabarah", "", "", "", "assistant treasurer or"]) + let v = native_list_append(v, ["Humargah", "noun", "Humargah", "", "", "", "a male given"]) + let v = native_list_append(v, ["xšaçapāvan", "noun", "xšaçapāvan", "", "", "", "satrap governor of"]) + let v = native_list_append(v, ["xšaθrapā", "noun", "xšaθrapā", "", "", "", "satrap governor of"]) + let v = native_list_append(v, ["Tahmāspah", "noun", "Tahmāspah", "", "", "", "a male given"]) + let v = native_list_append(v, ["gaiθā", "noun", "gaiθā", "", "", "", "property livestock cattle"]) + let v = native_list_append(v, ["marzapā", "noun", "marzapā", "", "", "", "marzban margrave march"]) + let v = native_list_append(v, ["fšupā", "noun", "fšupā", "", "", "", "shepherd herdsman"]) + let v = native_list_append(v, ["gaupā", "noun", "gaupā", "", "", "", "shepherd cowherd"]) + let v = native_list_append(v, ["𐎠𐎭𐎶", "pron", "𐎠𐎭𐎶", "", "", "", "I"]) + let v = native_list_append(v, ["𐎬𐎺𐎶", "pron", "𐎬𐎺𐎶", "", "", "", "you"]) + let v = native_list_append(v, ["𐏃𐎢𐎺", "pron", "𐏃𐎢𐎺", "", "", "", "he"]) + let v = native_list_append(v, ["𐎡𐎶", "pron", "𐎡𐎶", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["𐎡𐎹𐎶", "pron", "𐎡𐎹𐎶", "", "", "", "this"]) + let v = native_list_append(v, ["𐎠𐎡𐎫", "pron", "𐎠𐎡𐎫", "", "", "", "this"]) + let v = native_list_append(v, ["𐎶𐎴𐎠", "pron", "𐎶𐎴𐎠", "", "", "", "inflection of 𐎠𐎭𐎶"]) + let v = native_list_append(v, ["𐏃𐎹𐎠", "pron", "𐏃𐎹𐎠", "", "", "", "what"]) + let v = native_list_append(v, ["𐎠𐏃𐎷𐎹", "verb", "ahmiy", "", "", "", "I am"]) + let v = native_list_append(v, ["𐎠𐎿𐎫𐎡𐎹", "verb", "a-s-t-i-y", "astiy", "", "", "to be exist"]) + let v = native_list_append(v, ["𐎠𐎡𐎫𐎡𐎹", "verb", "a-i-t-i-y", "aitiy", "", "", "goes"]) + let v = native_list_append(v, ["𐎭𐎭𐎠𐎬𐎢𐎺", "verb", "d-d-a-tu-u-v", "of √dā", "", "", "to give"]) + let v = native_list_append(v, ["𐎱𐎠𐎮𐎹", "verb", "p-a-di-y", "pādiy", "imperactive active", "", "to protect"]) + let v = native_list_append(v, ["𐎭𐎠𐎼𐎹𐎫𐎡𐎹", "verb", "d-a-r-y-t-i-y", "dārayatiy", "", "", "to hold have"]) + let v = native_list_append(v, ["𐎠𐎷𐎡𐎹", "verb", "a-mi-i-y", "aʰmiy", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐎳𐎼𐎠𐎲𐎼", "verb", "frābara", "", "", "", "he gave."]) + let v = native_list_append(v, ["𐎭𐎠𐎼𐎹𐎠𐎷𐎡𐎹", "verb", "d-a-r-y-a-mi-i-y", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["𐎠𐎶𐏃𐎹", "verb", "a-m-h-y", "aʰmahạy", "", "", "first-person plural present"]) + let v = native_list_append(v, ["𐏃𐎫𐎡𐎹", "verb", "h-t-i-y", "haⁿtiy", "", "", "third-person plural present"]) + let v = native_list_append(v, ["𐎤𐎢𐎴𐎢𐎫𐎡𐎹", "verb", "ku-u-n-u-t-i-y", "kunautiy", "", "", "to do"]) + let v = native_list_append(v, ["𐎰𐎠𐎫𐎡𐎹", "verb", "θ-a-t-i-y", "θātiy", "", "", "to say declare"]) + let v = native_list_append(v, ["𐎥𐎢𐎲𐎫𐎡𐎹", "verb", "g-u-b-t-i-y", "gaubataiy", "", "", "calls oneself"]) + let v = native_list_append(v, ["𐎢𐎫𐎠", "conj", "𐎢𐎫𐎠", "", "", "", "and"]) + let v = native_list_append(v, ["-𐎨𐎠", "conj", "-𐎨𐎠", "", "", "", "and"]) + let v = native_list_append(v, ["𐎹𐎰𐎠", "conj", "𐎹𐎰𐎠", "", "", "", "as"]) + let v = native_list_append(v, ["𐎯𐎢𐎼𐎡𐎹", "adv", "𐎯𐎢𐎼𐎡𐎹", "", "", "", "afar far away"]) + let v = native_list_append(v, ["𐎠𐎱𐎼𐎶", "adv", "𐎠𐎱𐎼𐎶", "", "", "", "after"]) + let v = native_list_append(v, ["𐎴𐎠𐎶𐎠", "adv", "𐎴𐎠𐎶𐎠", "", "", "", "by name named"]) + let v = native_list_append(v, ["𐎴𐎠𐎶", "adv", "𐎴𐎠𐎶", "", "", "", "by name named"]) + let v = native_list_append(v, ["𐎭𐎼𐎥𐎶", "adv", "𐎭𐎼𐎥𐎶", "", "", "", "long"]) + let v = native_list_append(v, ["𐎭𐎼𐏁𐎶", "adv", "𐎭𐎼𐏁𐎶", "", "", "", "greatly"]) + let v = native_list_append(v, ["𐎡𐎭𐎠", "adv", "𐎡𐎭𐎠", "", "", "", "here"]) + let v = native_list_append(v, ["𐎼𐎥𐎶", "adv", "𐎼𐎥𐎶", "", "", "", "quickly"]) + let v = native_list_append(v, ["𐎠𐎺𐎠", "adv", "𐎠𐎺𐎠", "", "", "", "thus"]) + let v = native_list_append(v, ["𐎵𐎢𐎼𐎶", "adv", "𐎵𐎢𐎼𐎶", "", "", "", "now"]) + let v = native_list_append(v, ["𐎺𐎿𐎡𐎹", "adv", "𐎺𐎿𐎡𐎹", "", "", "", "greatly"]) + let v = native_list_append(v, ["𐎠𐎱", "adv", "𐎠𐎱", "", "", "", "away"]) + let v = native_list_append(v, ["𐏃𐎣𐎼𐎶𐎨𐎡𐎹", "adv", "𐏃𐎣𐎼𐎶𐎨𐎡𐎹", "", "", "", "once"]) + let v = native_list_append(v, ["𐎺𐏁𐎴𐎠", "adv", "𐎺𐏁𐎴𐎠", "", "", "", "by the grace"]) + let v = native_list_append(v, ["𐎹𐎠𐎫𐎠", "adv", "𐎹𐎠𐎫𐎠", "", "", "", "until while as"]) + let v = native_list_append(v, ["𐎢𐎱𐎼𐎡𐎹", "adv", "𐎢𐎱𐎼𐎡𐎹", "", "", "", "over above"]) + let v = native_list_append(v, ["𐎱𐎿𐎠𐎺", "adv", "𐎱𐎿𐎠𐎺", "", "", "", "after afterwards then"]) + let v = native_list_append(v, ["𐎠𐎺𐎭𐎠", "adv", "𐎠𐎺𐎭𐎠", "", "", "", "then there"]) + let v = native_list_append(v, ["𐎠𐏀𐎭𐎠", "adv", "𐎠𐏀𐎭𐎠", "", "", "", "known"]) + let v = native_list_append(v, ["𐎨𐎡𐎹𐎣𐎼𐎶", "adv", "𐎨𐎡𐎹𐎣𐎼𐎶", "", "", "", "how much how"]) + let v = native_list_append(v, ["𐎱𐎽𐎢𐎺𐎶", "adv", "𐎱𐎽𐎢𐎺𐎶", "", "", "", "previously before"]) + let v = native_list_append(v, ["𐎴𐎡𐎹", "particle", "𐎴𐎡𐎹", "", "", "", "not"]) + let v = native_list_append(v, ["𐎭𐎼𐎥", "adj", "𐎭𐎼𐎥", "", "", "", "long"]) + let v = native_list_append(v, ["𐎹𐎢𐎴", "adj", "𐎹𐎢𐎴", "", "", "", "Ionian"]) + let v = native_list_append(v, ["𐎸𐎭𐎼𐎠𐎹", "adj", "𐎸𐎭𐎼𐎠𐎹", "", "", "", "Egyptian"]) + let v = native_list_append(v, ["𐎱𐎼𐎰𐎺", "adj", "𐎱𐎼𐎰𐎺", "", "", "", "Parthian of from"]) + let v = native_list_append(v, ["𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐎹", "adj", "𐎢𐎺𐎠𐎼𐏀𐎷𐎡𐎹", "", "", "", "Chorasmian of from"]) + let v = native_list_append(v, ["𐏃𐎧𐎠𐎶𐎴𐎡𐏁𐎡𐎹", "adj", "𐏃𐎧𐎠𐎶𐎴𐎡𐏁𐎡𐎹", "", "", "", "Achaemenid"]) + let v = native_list_append(v, ["𐎺𐏀𐎼𐎣", "adj", "𐎺𐏀𐎼𐎣", "", "", "", "great"]) + let v = native_list_append(v, ["𐎴𐎺𐎶", "adj", "𐎴𐎺𐎶", "", "", "", "ninth"]) + let v = native_list_append(v, ["𐏃𐎶", "adj", "𐏃𐎶", "", "", "", "same together"]) + let v = native_list_append(v, ["𐏃𐎷𐎡𐏂𐎡𐎹", "adj", "𐏃𐎷𐎡𐏂𐎡𐎹", "", "", "", "rebellious insurgent"]) + let v = native_list_append(v, ["br̥zans", "adj", "br̥zans", "", "", "", "high exalted"]) + let v = native_list_append(v, ["naftah", "adj", "naftah", "", "", "", "wet moist"]) + let v = native_list_append(v, ["𐎠𐎼𐎡𐎹", "adj", "𐎠𐎼𐎡𐎹", "", "", "", "Iranian"]) + let v = native_list_append(v, ["𐎣𐎱𐎢𐎫𐎣", "adj", "𐎣𐎱𐎢𐎫𐎣", "", "", "", "blue"]) + let v = native_list_append(v, ["𐏀𐎢𐎼𐎣𐎼", "adj", "𐏀𐎢𐎼𐎣𐎼", "", "", "", "doing wrong"]) + let v = native_list_append(v, ["𐎠𐎴𐎡𐎹", "adj", "𐎠𐎴𐎡𐎹", "", "", "", "other"]) + let v = native_list_append(v, ["𐎯𐎽𐎧𐎫", "adj", "𐎯𐎽𐎧𐎫", "", "", "", "false lie"]) + let v = native_list_append(v, ["𐎠𐎼𐎡𐎣", "adj", "𐎠𐎼𐎡𐎣", "", "", "", "hostile evil"]) + let v = native_list_append(v, ["𐎭𐎼𐎢𐎩𐎴", "adj", "𐎭𐎼𐎢𐎩𐎴", "", "", "", "deceitful full of"]) + let v = native_list_append(v, ["𐎠𐎼𐏁𐎫𐎠", "adj", "𐎠𐎼𐏁𐎫𐎠", "", "", "", "righteousness truth"]) + let v = native_list_append(v, ["𐎲𐎼𐏀𐎶𐎴𐎡𐎹", "adj", "𐎲𐎼𐏀𐎶𐎴𐎡𐎹", "", "", "", "reverent"]) + let v = native_list_append(v, ["𐏃𐏁𐎡𐎹𐎶", "adj", "𐏃𐏁𐎡𐎹𐎶", "", "", "", "true"]) + let v = native_list_append(v, ["𐎠𐎶𐎠𐎫𐎠", "adj", "𐎠𐎶𐎠𐎫𐎠", "", "", "", "uncertain distinguished noble?"]) + let v = native_list_append(v, ["𐎪𐎡𐎺", "adj", "𐎪𐎡𐎺", "", "", "", "living"]) + let v = native_list_append(v, ["𐎫𐎣𐎲𐎼", "adj", "𐎫𐎣𐎲𐎼", "", "", "", "Wearer of the"]) + let v = native_list_append(v, ["𐎫𐎡𐎥𐎼𐎧𐎢𐎭", "adj", "𐎫𐎡𐎥𐎼𐎧𐎢𐎭", "", "", "", "Wearer of the"]) + let v = native_list_append(v, ["𐏃𐎢𐎶𐎺𐎼𐎥", "adj", "𐏃𐎢𐎶𐎺𐎼𐎥", "", "", "", "Who lays Haoma-plants"]) + let v = native_list_append(v, ["𐎤𐎢𐏁𐎡𐎹", "adj", "𐎤𐎢𐏁𐎡𐎹", "", "", "", "Kushite"]) + let v = native_list_append(v, ["vahištah", "adj", "vahištah", "", "", "", "best"]) + let v = native_list_append(v, ["arvāh", "adj", "arvāh", "", "", "", "swift"]) + let v = native_list_append(v, ["𐎱𐎠𐎫", "adj", "𐎱𐎠𐎫", "", "", "", "protected"]) + let v = native_list_append(v, ["𐎱𐎽𐎢𐎺", "adj", "𐎱𐎽𐎢𐎺", "", "", "", "much many"]) + let v = native_list_append(v, ["spantah", "adj", "spantah", "", "", "", "beneficent sacred"]) + let v = native_list_append(v, ["raivah", "adj", "raivah", "", "", "", "rich wealthy"]) + let v = native_list_append(v, ["mr̥duš", "adj", "mr̥duš", "", "", "", "mild soft"]) + let v = native_list_append(v, ["maθištah", "adj", "maθištah", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["arbah", "adj", "arbah", "", "", "", "young youthful"]) + let v = native_list_append(v, ["rāivāh", "adj", "rāivāh", "", "", "", "rich"]) + let v = native_list_append(v, ["vahuš", "adj", "vahuš", "", "", "", "good excellent"]) + let v = native_list_append(v, ["𐎠𐎼𐎫𐎠𐎺𐎠", "adj", "𐎠𐎼𐎫𐎠𐎺𐎠", "", "", "", "truthful righteous"]) + let v = native_list_append(v, ["arušah", "adj", "arušah", "", "", "", "white"]) + let v = native_list_append(v, ["badrah", "adj", "badrah", "", "", "", "auspicious"]) + let v = native_list_append(v, ["θuxrah", "adj", "θuxrah", "", "", "", "red"]) + let v = native_list_append(v, ["𐎼𐎠𐎮𐎡𐎹", "prep", "𐎼𐎠𐎮𐎡𐎹", "", "", "", "on account of"]) + let v = native_list_append(v, ["𐎠𐎲𐎡𐎹", "prep", "𐎠𐎲𐎡𐎹", "", "", "", "towards"]) + let v = native_list_append(v, ["𐎱𐎫𐎡𐏁", "prep", "𐎱𐎫𐎡𐏁", "", "", "", "against"]) + let v = native_list_append(v, ["𐏃𐎨𐎠", "prep", "𐏃𐎨𐎠", "", "", "", "from since"]) + let v = native_list_append(v, ["𐎠𐎫𐎼", "prep", "𐎠𐎫𐎼", "", "", "", "in inside"]) + let v = native_list_append(v, ["𐎢𐎱𐎠", "prep", "𐎢𐎱𐎠", "", "", "", "under below"]) + let v = native_list_append(v, ["𐎠𐎲𐎡𐎹", "other", "𐎠𐎲𐎡𐎹", "", "", "", "towards"]) + let v = native_list_append(v, ["𐏐", "other", "𐏐", "", "", "", "A symbol of"]) + let v = native_list_append(v, ["𐎠𐎡𐎺", "other", "𐎠𐎡𐎺", "", "", "", "one"]) + let v = native_list_append(v, ["𐎳𐎼𐎫𐎶𐎠", "other", "𐎳𐎼𐎫𐎶𐎠", "", "", "", "first"]) + let v = native_list_append(v, ["𐎠", "other", "𐎠", "", "", "", "The first letter"]) + let v = native_list_append(v, ["𐎡", "other", "𐎡", "", "", "", "The second letter"]) + let v = native_list_append(v, ["𐎢", "other", "𐎢", "", "", "", "The third letter"]) + let v = native_list_append(v, ["𐎣", "other", "𐎣", "", "", "", "The fourth letter"]) + let v = native_list_append(v, ["𐎤", "other", "𐎤", "", "", "", "The fifth letter"]) + let v = native_list_append(v, ["𐎥", "other", "𐎥", "", "", "", "The sixth letter"]) + let v = native_list_append(v, ["𐎦", "other", "𐎦", "", "", "", "The seventh letter"]) + let v = native_list_append(v, ["𐎧", "other", "𐎧", "", "", "", "The eighth letter"]) + let v = native_list_append(v, ["𐎨", "other", "𐎨", "", "", "", "The ninth letter"]) + let v = native_list_append(v, ["𐎩", "other", "𐎩", "", "", "", "The tenth letter"]) + let v = native_list_append(v, ["𐎪", "other", "𐎪", "", "", "", "The eleventh letter"]) + let v = native_list_append(v, ["𐎫", "other", "𐎫", "", "", "", "The twelfth letter"]) + let v = native_list_append(v, ["𐎬", "other", "𐎬", "", "", "", "The thirteenth letter"]) + let v = native_list_append(v, ["𐎭", "other", "𐎭", "", "", "", "The fourteenth letter"]) + let v = native_list_append(v, ["𐎮", "other", "𐎮", "", "", "", "The fifteenth letter"]) + let v = native_list_append(v, ["𐎯", "other", "𐎯", "", "", "", "The sixteenth letter"]) + let v = native_list_append(v, ["𐎰", "other", "𐎰", "", "", "", "The seventeenth letter"]) + let v = native_list_append(v, ["𐎱", "other", "𐎱", "", "", "", "The eighteenth letter"]) + let v = native_list_append(v, ["𐎲", "other", "𐎲", "", "", "", "The nineteenth letter"]) + let v = native_list_append(v, ["𐎳", "other", "𐎳", "", "", "", "The twentieth letter"]) + let v = native_list_append(v, ["𐎴", "other", "𐎴", "", "", "", "The twenty-first letter"]) + let v = native_list_append(v, ["𐎵", "other", "𐎵", "", "", "", "The twenty-second letter"]) + let v = native_list_append(v, ["𐎶", "other", "𐎶", "", "", "", "The twenty-third letter"]) + let v = native_list_append(v, ["𐎷", "other", "𐎷", "", "", "", "The twenty-fourth letter"]) + let v = native_list_append(v, ["𐎸", "other", "𐎸", "", "", "", "The twenty-fifth letter"]) + let v = native_list_append(v, ["𐎹", "other", "𐎹", "", "", "", "The twenty-sixth letter"]) + let v = native_list_append(v, ["𐎺", "other", "𐎺", "", "", "", "The twenty-seventh letter"]) + let v = native_list_append(v, ["𐎻", "other", "𐎻", "", "", "", "The twenty-eighth letter"]) + let v = native_list_append(v, ["𐎼", "other", "𐎼", "", "", "", "The twenty-ninth letter"]) + let v = native_list_append(v, ["𐎽", "other", "𐎽", "", "", "", "The thirtieth letter"]) + let v = native_list_append(v, ["𐎾", "other", "𐎾", "", "", "", "The thirty-first letter"]) + let v = native_list_append(v, ["𐎿", "other", "𐎿", "", "", "", "The thirty-second letter"]) + let v = native_list_append(v, ["𐏀", "other", "𐏀", "", "", "", "The thirty-third letter"]) + let v = native_list_append(v, ["𐏁", "other", "𐏁", "", "", "", "The thirty-fourth letter"]) + let v = native_list_append(v, ["𐏂", "other", "𐏂", "", "", "", "The thirty-fifth letter"]) + let v = native_list_append(v, ["𐏃", "other", "𐏃", "", "", "", "The thirty-sixth letter"]) + let v = native_list_append(v, ["𐏑", "other", "𐏑", "", "", "", "The number one"]) + let v = native_list_append(v, ["𐏒", "other", "𐏒", "", "", "", "The number two"]) + let v = native_list_append(v, ["𐏓", "other", "𐏓", "", "", "", "The number ten"]) + let v = native_list_append(v, ["𐏔", "other", "𐏔", "", "", "", "The number twenty"]) + let v = native_list_append(v, ["𐏕", "other", "𐏕", "", "", "", "The number one"]) + let v = native_list_append(v, ["𐎲𐎼", "other", "𐎲𐎼", "", "", "", "to bear to"]) + let v = native_list_append(v, ["𐎳𐎼", "other", "𐎳𐎼", "", "", "", "forth toward"]) + let v = native_list_append(v, ["daθa", "other", "daθa", "", "", "", "ten"]) + let v = native_list_append(v, ["aivacadaθa", "other", "aivacadaθa", "", "", "", "eleven"]) + let v = native_list_append(v, ["navacadaθa", "other", "navacadaθa", "", "", "", "nineteen"]) + let v = native_list_append(v, ["𐎴𐎺", "other", "𐎴𐎺", "", "", "", "nine"]) + let v = native_list_append(v, ["-𐎡𐎣", "other", "-𐎡𐎣", "", "", "", "of pertaining to"]) + let v = native_list_append(v, ["-pā", "other", "-pā", "", "", "", "protector keeper guardian"]) + let v = native_list_append(v, ["𐎠𐎡𐎺", "det", "𐎠𐎡𐎺", "", "", "", "a indefinite article"]) + return v +} + +fn vocab_peo_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_peo_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-pi.el b/elp/src/vocabulary-pi.el new file mode 100644 index 0000000..476df99 --- /dev/null +++ b/elp/src/vocabulary-pi.el @@ -0,0 +1,8937 @@ +// vocabulary-pi.el — Pali vocabulary seed +// 8916 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 9912 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_pi_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["male", "noun", "male", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["rose", "noun", "rose", "", "", "", "inflection of rosa"]) + let v = native_list_append(v, ["kara", "noun", "kara", "karassa", "", "", "the Pali root"]) + let v = native_list_append(v, ["re", "noun", "re", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["suka", "noun", "sukā", "sukassa", "sukassa", "", "parrot"]) + let v = native_list_append(v, ["there", "noun", "there", "", "", "", "inflection of thera"]) + let v = native_list_append(v, ["gave", "noun", "gave", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["go", "noun", "gavo", "gavassa", "gavassa", "", "cow ox bull"]) + let v = native_list_append(v, ["made", "noun", "made", "", "", "", "inflection of mada"]) + let v = native_list_append(v, ["care", "noun", "care", "", "", "", "inflection of cara"]) + let v = native_list_append(v, ["mana", "noun", "mana", "", "", "", "Interpretation of many"]) + let v = native_list_append(v, ["san", "noun", "sā", "sassa", "sassa", "", "dog"]) + let v = native_list_append(v, ["कमल", "noun", "कमलानि", "कमलस्स", "कमलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kappa", "noun", "kappā", "kappassa", "kappassa", "", "time"]) + let v = native_list_append(v, ["ra", "noun", "ra", "rassa", "rassa", "", "the Pali letter"]) + let v = native_list_append(v, ["tile", "noun", "tile", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["ele", "noun", "ele", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["visa", "noun", "visāni", "visassa", "visassa", "", "poison"]) + let v = native_list_append(v, ["mate", "noun", "mate", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["cola", "noun", "colā", "colassa", "colassa", "", "cloth"]) + let v = native_list_append(v, ["mane", "noun", "mane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["rosa", "noun", "rosā", "rosassa", "rosassa", "", "anger"]) + let v = native_list_append(v, ["vacca", "noun", "vaccāni", "vaccassa", "vaccassa", "", "excrement"]) + let v = native_list_append(v, ["mano", "noun", "mano", "", "", "", "nominative/accusative/vocative singular of"]) + let v = native_list_append(v, ["vane", "noun", "vane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["same", "noun", "same", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["Buddha", "noun", "Buddha", "", "", "", "Buddha the enlightened"]) + let v = native_list_append(v, ["apa", "noun", "apa", "", "", "", "the Pali root"]) + let v = native_list_append(v, ["gati", "noun", "gati", "", "", "", "course"]) + let v = native_list_append(v, ["ante", "noun", "ante", "", "", "", "inflection of anta"]) + let v = native_list_append(v, ["sa", "noun", "sa", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["cuti", "noun", "cutiyo", "cutiyā", "cutiyā", "", "passing away"]) + let v = native_list_append(v, ["ane", "noun", "ane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["vera", "noun", "verāni", "verassa", "verassa", "", "hatred"]) + let v = native_list_append(v, ["caro", "noun", "caro", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["loma", "noun", "lomāni", "lomassa", "lomassa", "", "hair of the"]) + let v = native_list_append(v, ["sukka", "noun", "sukkā", "sukkassa", "sukkassa", "", "the planet Venus"]) + let v = native_list_append(v, ["peta", "noun", "petā", "petassa", "petassa", "", "ghost"]) + let v = native_list_append(v, ["yotta", "noun", "yottāni", "yottassa", "yottassa", "", "tie of the"]) + let v = native_list_append(v, ["deva", "noun", "devā", "devassa", "devassa", "", "god deity angel"]) + let v = native_list_append(v, ["नाम", "noun", "नामानि", "नामस्स", "नामस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mesa", "noun", "mesā", "mesassa", "mesassa", "", "ram"]) + let v = native_list_append(v, ["vase", "noun", "vase", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["dine", "noun", "dine", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["វត្ត", "noun", "វត្តានិ", "វត្តស្ស", "វត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["vu", "noun", "vu", "", "", "", "The Pali root"]) + let v = native_list_append(v, ["anna", "noun", "annāni", "annassa", "annassa", "", "food especially boiled"]) + let v = native_list_append(v, ["mona", "noun", "mona", "", "", "", "wisdom"]) + let v = native_list_append(v, ["balena", "noun", "balena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["kula", "noun", "kulāni", "kulassa", "kulassa", "", "clan caste family"]) + let v = native_list_append(v, ["va", "noun", "va", "vassa", "vassa", "", "the Pali letter"]) + let v = native_list_append(v, ["vara", "noun", "vara", "", "", "", "wish boon favour"]) + let v = native_list_append(v, ["veda", "noun", "vedā", "vedassa", "vedassa", "", "knowledge"]) + let v = native_list_append(v, ["ange", "noun", "ange", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["बुद्ध", "noun", "बुद्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dose", "noun", "dose", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["mitta", "noun", "mittā", "mittassa", "mittassa", "", "friend"]) + let v = native_list_append(v, ["laya", "noun", "layā", "layassa", "layassa", "", "brief measure of"]) + let v = native_list_append(v, ["guru", "noun", "guravo", "gurussa", "gurussa", "", "teacher"]) + let v = native_list_append(v, ["आसन", "noun", "आसनानि", "आसनस्स", "आसनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["तीर", "noun", "तीरानि", "तीरस्स", "तीरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sure", "noun", "sure", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["keso", "noun", "keso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ana", "noun", "anāni", "anassa", "anassa", "", "cart"]) + let v = native_list_append(v, ["duma", "noun", "dumā", "dumassa", "dumassa", "", "tree"]) + let v = native_list_append(v, ["gumbo", "noun", "gumbo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["lope", "noun", "lope", "", "", "", "inflection of lopa"]) + let v = native_list_append(v, ["sire", "noun", "sire", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["bale", "noun", "bale", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["rase", "noun", "rase", "", "", "", "inflection of rasa"]) + let v = native_list_append(v, ["site", "noun", "site", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["वन", "noun", "वनानि", "वनस्स", "वनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गज", "noun", "गजा", "गजस्स", "गजस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मेघ", "noun", "मेघा", "मेघस्स", "मेघस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["masi", "noun", "masi", "", "", "", "soot charcoal dust"]) + let v = native_list_append(v, ["dhamma", "noun", "dhammā", "dhammassa", "dhammassa", "", "truth righteousness"]) + let v = native_list_append(v, ["รูป", "noun", "รูปานิ", "รูปสฺส", "รูปสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ābādha", "noun", "ābādhā", "ābādhassa", "ābādhassa", "", "illness sickness affliction"]) + let v = native_list_append(v, ["akkhi", "noun", "akkhīni", "akkhissa", "akkhissa", "", "eye"]) + let v = native_list_append(v, ["gumba", "noun", "gumbā", "gumbassa", "gumbassa", "", "a bush a"]) + let v = native_list_append(v, ["mamma", "noun", "mammāni", "mammassa", "mammassa", "", "a vital spot"]) + let v = native_list_append(v, ["yoni", "noun", "yoniyo", "yoniyā", "yoniyā", "", "womb"]) + let v = native_list_append(v, ["mantissa", "noun", "mantissa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["pita", "noun", "pita", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["pose", "noun", "pose", "", "", "", "inflection of posa"]) + let v = native_list_append(v, ["ya", "noun", "ya", "yassa", "yassa", "", "the Pali letter"]) + let v = native_list_append(v, ["patto", "noun", "patto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["loko", "noun", "loko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["chatte", "noun", "chatte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["ro", "noun", "ro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["yugo", "noun", "yugo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ka", "noun", "ka", "kassa", "kassa", "", "the Pali letter"]) + let v = native_list_append(v, ["baka", "noun", "bakā", "bakassa", "bakassa", "", "crane"]) + let v = native_list_append(v, ["poso", "noun", "poso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mata", "noun", "matāni", "matassa", "matassa", "", "opinion view"]) + let v = native_list_append(v, ["vaca", "noun", "vaca", "", "", "", "alternative citation form"]) + let v = native_list_append(v, ["salle", "noun", "salle", "", "", "", "inflection of salla"]) + let v = native_list_append(v, ["jeta", "noun", "jeta", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["maru", "noun", "maravo", "marussa", "marussa", "", "deity"]) + let v = native_list_append(v, ["amate", "noun", "amate", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["asi", "noun", "asayo", "asissa", "asissa", "", "sword"]) + let v = native_list_append(v, ["bhikkhu", "noun", "bhikkhavo", "bhikkhussa", "bhikkhussa", "", "a beggar one"]) + let v = native_list_append(v, ["deve", "noun", "deve", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["tace", "noun", "tace", "", "", "", "inflection of taca"]) + let v = native_list_append(v, ["devi", "noun", "devi", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["kamala", "noun", "kamalāni", "kamalassa", "kamalassa", "", "lotus"]) + let v = native_list_append(v, ["tejas", "noun", "tejāni", "tejaso", "tejaso", "", "flame heat fire"]) + let v = native_list_append(v, ["anne", "noun", "anne", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["Kambojaka", "noun", "Kambojaka", "", "", "", "Kamboja"]) + let v = native_list_append(v, ["bali", "noun", "balayo", "balissa", "balissa", "", "religious offering"]) + let v = native_list_append(v, ["java", "noun", "java", "", "", "", "speed"]) + let v = native_list_append(v, ["bondi", "noun", "bondayo", "bondissa", "bondissa", "", "body"]) + let v = native_list_append(v, ["देवता", "noun", "देवतायो", "देवताय", "देवताय", "", "Devanagari script form"]) + let v = native_list_append(v, ["raja", "noun", "raja", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["inde", "noun", "inde", "", "", "", "inflection of inda"]) + let v = native_list_append(v, ["फल", "noun", "फलानि", "फलस्स", "फलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["taco", "noun", "taco", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["buddha", "noun", "buddha", "", "", "", "Buddha the enlightened"]) + let v = native_list_append(v, ["dosa", "noun", "dosā", "dosassa", "dosassa", "", "depravity"]) + let v = native_list_append(v, ["sira", "noun", "sira", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ahi", "noun", "ahayo", "ahissa", "ahissa", "", "snake serpent dragon"]) + let v = native_list_append(v, ["vise", "noun", "vise", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["isi", "noun", "isayo", "isissa", "isissa", "", "sage seer"]) + let v = native_list_append(v, ["ura", "noun", "ura", "", "", "", "Interpretation of many"]) + let v = native_list_append(v, ["utu", "noun", "utavo", "utussa", "utussa", "", "season time"]) + let v = native_list_append(v, ["रोम", "noun", "रोमानि", "रोमस्स", "रोमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["काला", "noun", "काला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vasa", "noun", "vasa", "", "", "", "the Pali root"]) + let v = native_list_append(v, ["sota", "noun", "sota", "", "", "", "ear"]) + let v = native_list_append(v, ["brahman", "noun", "brahman", "brahmano", "brahmano", "", "Brahma"]) + let v = native_list_append(v, ["peto", "noun", "peto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["jano", "noun", "jano", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["nare", "noun", "nare", "", "", "", "inflection of nara"]) + let v = native_list_append(v, ["cela", "noun", "cela", "", "", "", "cloth"]) + let v = native_list_append(v, ["amma", "noun", "amma", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["passa", "noun", "passā", "passassa", "passassa", "", "One who sees"]) + let v = native_list_append(v, ["desa", "noun", "desā", "desassa", "desassa", "", "point"]) + let v = native_list_append(v, ["saddo", "noun", "saddo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["amata", "noun", "amatāni", "amatassa", "amatassa", "", "nirvana freedom from"]) + let v = native_list_append(v, ["haro", "noun", "haro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kanti", "noun", "kantiyo", "kantiyā", "kantiyā", "", "beauty"]) + let v = native_list_append(v, ["आप", "noun", "आपानि", "आपस्स", "आपस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["tela", "noun", "telāni", "telassa", "telassa", "", "oil particularly from"]) + let v = native_list_append(v, ["gaja", "noun", "gajā", "gajassa", "gajassa", "", "elephant"]) + let v = native_list_append(v, ["citta", "noun", "cittāni", "cittassa", "cittassa", "", "mind heart feeling"]) + let v = native_list_append(v, ["sati", "noun", "satiyo", "satiyā", "satiyā", "", "memory recognition consciousness"]) + let v = native_list_append(v, ["cara", "noun", "carā", "carassa", "carassa", "", "act of walking"]) + let v = native_list_append(v, ["passe", "noun", "passe", "", "", "", "inflection of passa"]) + let v = native_list_append(v, ["katu", "noun", "katu", "", "", "", "a sacrifice oblation"]) + let v = native_list_append(v, ["kumma", "noun", "kummā", "kummassa", "kummassa", "", "a tortoise"]) + let v = native_list_append(v, ["vo", "noun", "vo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kappe", "noun", "kappe", "", "", "", "inflection of kappa"]) + let v = native_list_append(v, ["asoko", "noun", "asoko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["bala", "noun", "balāni", "balassa", "balassa", "", "strength"]) + let v = native_list_append(v, ["sirena", "noun", "sirena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["manta", "noun", "mantāni", "mantassa", "mantassa", "", "charm spell incantation"]) + let v = native_list_append(v, ["vere", "noun", "vere", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["seda", "noun", "sedā", "sedassa", "sedassa", "", "sweat"]) + let v = native_list_append(v, ["pati", "noun", "patayo", "patissa", "patissa", "", "husband"]) + let v = native_list_append(v, ["ve", "noun", "ve", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["vena", "noun", "vena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["ūru", "noun", "ūravo", "ūrussa", "ūrussa", "", "thigh"]) + let v = native_list_append(v, ["ambo", "noun", "ambo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["बीज", "noun", "बीजानि", "बीजस्स", "बीजस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mora", "noun", "morā", "morassa", "morassa", "", "peacock"]) + let v = native_list_append(v, ["vagga", "noun", "vaggā", "vaggassa", "vaggassa", "", "company"]) + let v = native_list_append(v, ["जन", "noun", "जना", "जनस्स", "जनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["taro", "noun", "taro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["naya", "noun", "nayā", "nayassa", "nayassa", "", "method"]) + let v = native_list_append(v, ["manas", "noun", "manas", "manaso", "manaso", "", "mind"]) + let v = native_list_append(v, ["tara", "noun", "tara", "", "", "", "The Pali root"]) + let v = native_list_append(v, ["pete", "noun", "pete", "", "", "", "inflection of peta"]) + let v = native_list_append(v, ["teja", "noun", "teja", "", "", "", "Interpretation of many"]) + let v = native_list_append(v, ["आराम", "noun", "आरामा", "आरामस्स", "आरामस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["jane", "noun", "jane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["जरा", "noun", "जरायो", "जराय", "जराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["kosa", "noun", "kosā", "kosassa", "kosassa", "", "container wrapper"]) + let v = native_list_append(v, ["mede", "noun", "mede", "", "", "", "inflection of meda"]) + let v = native_list_append(v, ["vata", "noun", "vatā", "vatassa", "vatassa", "", "religious duty"]) + let v = native_list_append(v, ["राजा", "noun", "राजा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पिता", "noun", "पिता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["आदि", "noun", "आदयो", "आदिस्स", "आदिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अहिंसा", "noun", "अहिंसायो", "अहिंसाय", "अहिंसाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["jana", "noun", "janā", "janassa", "janassa", "", "person man people"]) + let v = native_list_append(v, ["द्वार", "noun", "द्वारानि", "द्वारस्स", "द्वारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सुख", "noun", "सुखानि", "सुखस्स", "सुखस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["loka", "noun", "lokā", "lokassa", "lokassa", "", "world"]) + let v = native_list_append(v, ["मान", "noun", "माना", "मानस्स", "मानस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["moha", "noun", "mohā", "mohassa", "mohassa", "", "stupidity"]) + let v = native_list_append(v, ["nara", "noun", "narā", "narassa", "narassa", "", "man"]) + let v = native_list_append(v, ["देव", "noun", "देवा", "देवस्स", "देवस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["पण्डित", "noun", "पण्डिता", "पण्डितस्स", "पण्डितस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["rasa", "noun", "rasā", "rasassa", "rasassa", "", "taste flavor"]) + let v = native_list_append(v, ["स्नेह", "noun", "स्नेहा", "स्नेहस्स", "स्नेहस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["रूप", "noun", "रूपानि", "रूपस्स", "रूपस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mala", "noun", "malāni", "malassa", "malassa", "", "impurity"]) + let v = native_list_append(v, ["hara", "noun", "hara", "", "", "", "Name of the"]) + let v = native_list_append(v, ["cora", "noun", "cora", "", "", "", "thief robber bandit"]) + let v = native_list_append(v, ["वे", "noun", "वे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["mutta", "noun", "mutta", "", "", "", "urine"]) + let v = native_list_append(v, ["bila", "noun", "bilāni", "bilassa", "bilassa", "", "den"]) + let v = native_list_append(v, ["thana", "noun", "thana", "", "", "", "the breast of"]) + let v = native_list_append(v, ["य", "noun", "य", "यस्स", "यस्स", "", "the Pali letter"]) + let v = native_list_append(v, ["maha", "noun", "mahā", "mahassa", "mahassa", "", "religious festival"]) + let v = native_list_append(v, ["kule", "noun", "kule", "", "", "", "inflection of kula"]) + let v = native_list_append(v, ["kanto", "noun", "kanto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kanta", "noun", "kantā", "kantassa", "kantassa", "", "husband"]) + let v = native_list_append(v, ["tele", "noun", "tele", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["sappi", "noun", "sappi", "", "", "", "ghee"]) + let v = native_list_append(v, ["seno", "noun", "seno", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vana", "noun", "vanāni", "vanassa", "vanassa", "", "forest"]) + let v = native_list_append(v, ["jala", "noun", "jalāni", "jalassa", "jalassa", "", "water"]) + let v = native_list_append(v, ["घर", "noun", "घरानि", "घरस्स", "घरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["दूत", "noun", "दूता", "दूतस्स", "दूतस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["र", "noun", "र", "रस्स", "रस्स", "", "the Pali letter"]) + let v = native_list_append(v, ["व", "noun", "व", "वस्स", "वस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["स", "noun", "स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kimi", "noun", "kimi", "", "", "", "worm"]) + let v = native_list_append(v, ["apo", "noun", "apo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sare", "noun", "sare", "", "", "", "inflection of saras"]) + let v = native_list_append(v, ["sede", "noun", "sede", "", "", "", "inflection of seda"]) + let v = native_list_append(v, ["suti", "noun", "sutiyo", "sutiyā", "sutiyā", "", "hearing"]) + let v = native_list_append(v, ["babbu", "noun", "babbavo", "babbussa", "babbussa", "", "cat"]) + let v = native_list_append(v, ["mati", "noun", "matiyo", "matiyā", "matiyā", "", "mind"]) + let v = native_list_append(v, ["mada", "noun", "madā", "madassa", "madassa", "", "intoxication"]) + let v = native_list_append(v, ["udara", "noun", "udarāni", "udarassa", "udarassa", "", "belly"]) + let v = native_list_append(v, ["rogo", "noun", "rogo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pitu", "noun", "pitu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["nadi", "noun", "nadi", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["pada", "noun", "padāni", "padassa", "padassa", "", "foot"]) + let v = native_list_append(v, ["sena", "noun", "senā", "senassa", "senassa", "", "eagle hawk or"]) + let v = native_list_append(v, ["guda", "noun", "gudāni", "gudassa", "gudassa", "", "anus"]) + let v = native_list_append(v, ["cando", "noun", "cando", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["khaya", "noun", "khayā", "khayassa", "khayassa", "", "decline decadence"]) + let v = native_list_append(v, ["kapi", "noun", "kapayo", "kapissa", "kapissa", "", "monkey"]) + let v = native_list_append(v, ["mado", "noun", "mado", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["garu", "noun", "garavo", "garussa", "garussa", "", "teacher"]) + let v = native_list_append(v, ["ure", "noun", "ure", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["suko", "noun", "suko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["saka", "noun", "saka", "", "", "", "The Pali roots"]) + let v = native_list_append(v, ["giri", "noun", "girayo", "girissa", "girissa", "", "mountain"]) + let v = native_list_append(v, ["sita", "noun", "sitāni", "sitassa", "sitassa", "", "smile"]) + let v = native_list_append(v, ["anto", "noun", "anto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["saro", "noun", "saro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["asino", "noun", "asino", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["dese", "noun", "dese", "", "", "", "inflection of desa"]) + let v = native_list_append(v, ["rathe", "noun", "rathe", "", "", "", "inflection of ratha"]) + let v = native_list_append(v, ["taca", "noun", "tacā", "tacassa", "tacassa", "", "skin"]) + let v = native_list_append(v, ["uro", "noun", "uro", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["putto", "noun", "putto", "", "", "", "singular nominative of"]) + let v = native_list_append(v, ["maho", "noun", "maho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ताला", "noun", "ताला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तुला", "noun", "तुलायो", "तुलाय", "तुलाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["ครู", "noun", "ครู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["asso", "noun", "asso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["siddhi", "noun", "siddhiyo", "siddhiyā", "siddhiyā", "", "accomplishment"]) + let v = native_list_append(v, ["marica", "noun", "maricāni", "maricassa", "maricassa", "", "black pepper"]) + let v = native_list_append(v, ["dina", "noun", "dināni", "dinassa", "dinassa", "", "day"]) + let v = native_list_append(v, ["manda", "noun", "manda", "", "", "", "a little"]) + let v = native_list_append(v, ["posa", "noun", "posā", "posassa", "posassa", "", "man"]) + let v = native_list_append(v, ["दीप", "noun", "दीपा", "दीपस्स", "दीपस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["dise", "noun", "dise", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["camma", "noun", "cammāni", "cammassa", "cammassa", "", "hide skin leather"]) + let v = native_list_append(v, ["carena", "noun", "carena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["maccha", "noun", "macchā", "macchassa", "macchassa", "", "fish"]) + let v = native_list_append(v, ["rena", "noun", "rena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["bodhi", "noun", "bodhiyo", "bodhiyā", "bodhiyā", "", "supreme knowledge"]) + let v = native_list_append(v, ["मन", "noun", "मन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["इच्छा", "noun", "इच्छायो", "इच्छाय", "इच्छाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["माता", "noun", "माता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पति", "noun", "पतयो", "पतिस्स", "पतिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["नदी", "noun", "नदियो", "नदिया", "नदिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["इतिहास", "noun", "इतिहासा", "इतिहासस्स", "इतिहासस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["युग", "noun", "युगानि", "युगस्स", "युगस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["चार", "noun", "चारा", "चारस्स", "चारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["जातिवाद", "noun", "जातिवादा", "जातिवादस्स", "जातिवादस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अपराध", "noun", "अपराधा", "अपराधस्स", "अपराधस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["कवि", "noun", "कवयो", "कविस्स", "कविस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["लेखक", "noun", "लेखका", "लेखकस्स", "लेखकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["युद्ध", "noun", "युद्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["समय", "noun", "समया", "समयस्स", "समयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["बल", "noun", "बलानि", "बलस्स", "बलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गुरु", "noun", "गुरवो", "गुरुस्स", "गुरुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["लोहा", "noun", "लोहा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["हिम", "noun", "हिमानि", "हिमस्स", "हिमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["पाल", "noun", "पाला", "पालस्स", "पालस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["girino", "noun", "girino", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["संयोजन", "noun", "संयोजनानि", "संयोजनस्स", "संयोजनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ससुर", "noun", "ससुर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["साला", "noun", "सालायो", "सालाय", "सालाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["साली", "noun", "साली", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गण", "noun", "गणा", "गणस्स", "गणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["योनि", "noun", "योनियो", "योनिया", "योनिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["अपार", "noun", "अपारानि", "अपारस्स", "अपारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["युवा", "noun", "युवा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नया", "noun", "नया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["काम", "noun", "कामा", "कामस्स", "कामस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गुरू", "noun", "गुरू", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pitar", "noun", "pitaro", "pitu", "pitu", "", "father"]) + let v = native_list_append(v, ["mātaṅga", "noun", "mātaṅgā", "mātaṅgassa", "mātaṅgassa", "", "elephant"]) + let v = native_list_append(v, ["sīha", "noun", "sīhā", "sīhassa", "sīhassa", "", "lion"]) + let v = native_list_append(v, ["byaggha", "noun", "byagghā", "byagghassa", "byagghassa", "", "tiger"]) + let v = native_list_append(v, ["kacchapa", "noun", "kacchapā", "kacchapassa", "kacchapassa", "", "tortoise turtle"]) + let v = native_list_append(v, ["suṃsumāra", "noun", "suṃsumārā", "suṃsumārassa", "suṃsumārassa", "", "crocodile"]) + let v = native_list_append(v, ["loṇa", "noun", "loṇāni", "loṇassa", "loṇassa", "", "salt sodium chloride"]) + let v = native_list_append(v, ["paṇṇa", "noun", "paṇṇāni", "paṇṇassa", "paṇṇassa", "", "leaf"]) + let v = native_list_append(v, ["bhikkhā", "noun", "bhikkhāyo", "bhikkhāya", "bhikkhāya", "", "alms food obtained"]) + let v = native_list_append(v, ["रस", "noun", "रसा", "रसस्स", "रसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गन्ध", "noun", "गन्धा", "गन्धस्स", "गन्धस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["anta", "noun", "antā", "antassa", "antassa", "", "end"]) + let v = native_list_append(v, ["अच्छा", "noun", "अच्छा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अधिकार", "noun", "अधिकारा", "अधिकारस्स", "अधिकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["आनन्द", "noun", "आनन्दा", "आनन्दस्स", "आनन्दस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["आरम्भ", "noun", "आरम्भा", "आरम्भस्स", "आरम्भस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["jale", "noun", "jale", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["उत्तर", "noun", "उत्तर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["patino", "noun", "patino", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["pitare", "noun", "pitare", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["rajo", "noun", "rajo", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["rajas", "noun", "rajāni", "rajaso", "rajaso", "", "dust"]) + let v = native_list_append(v, ["raje", "noun", "raje", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["sedo", "noun", "sedo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tejo", "noun", "tejo", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["teje", "noun", "teje", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["tomara", "noun", "tomara", "", "", "", "spear lance for"]) + let v = native_list_append(v, ["tosa", "noun", "tosā", "tosassa", "tosassa", "", "joy satisfaction"]) + let v = native_list_append(v, ["varo", "noun", "varo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["vare", "noun", "vare", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["vedo", "noun", "vedo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vede", "noun", "vede", "", "", "", "inflection of vede"]) + let v = native_list_append(v, ["vele", "noun", "vele", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["दिन", "noun", "दिनानि", "दिनस्स", "दिनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["चोर", "noun", "चोर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गीत", "noun", "गीतानि", "गीतस्स", "गीतस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गीता", "noun", "गीता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vacas", "noun", "vacas", "vacaso", "vacaso", "", "words saying"]) + let v = native_list_append(v, ["kathe", "noun", "kathe", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["बाल", "noun", "बाला", "बालस्स", "बालस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["passo", "noun", "passo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sene", "noun", "sene", "", "", "", "inflection of sena"]) + let v = native_list_append(v, ["dhana", "noun", "dhanāni", "dhanassa", "dhanassa", "", "wealth money riches"]) + let v = native_list_append(v, ["dante", "noun", "dante", "", "", "", "inflection of danta"]) + let v = native_list_append(v, ["खीरा", "noun", "खीरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["দিন", "noun", "দিনানি", "দিনস্স", "দিনস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["মাস", "noun", "মাসা", "মাসস্স", "মাসস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["devo", "noun", "devo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["raso", "noun", "raso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["santi", "noun", "santiyo", "santiyā", "santiyā", "", "peace"]) + let v = native_list_append(v, ["matā", "noun", "matā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["मनस्", "noun", "मनस्", "मनसो", "मनसो", "", "Devanagari script form"]) + let v = native_list_append(v, ["tīra", "noun", "tīrāni", "tīrassa", "tīrassa", "", "shore riverbank"]) + let v = native_list_append(v, ["mā", "noun", "mā", "", "", "", "mother"]) + let v = native_list_append(v, ["sā", "noun", "sā", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["नाथ", "noun", "नाथा", "नाथस्स", "नाथस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["चन्द", "noun", "चन्दा", "चन्दस्स", "चन्दस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["चन्दा", "noun", "चन्दा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["asma", "noun", "asma", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["vessa", "noun", "vessā", "vessassa", "vessassa", "", "a Vaishya"]) + let v = native_list_append(v, ["pacchi", "noun", "pacchi", "", "", "", "basket"]) + let v = native_list_append(v, ["मेध", "noun", "मेधा", "मेधस्स", "मेधस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["seka", "noun", "sekā", "sekassa", "sekassa", "", "sprinkling"]) + let v = native_list_append(v, ["उदर", "noun", "उदरानि", "उदरस्स", "उदरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अरविन्द", "noun", "अरविन्दानि", "अरविन्दस्स", "अरविन्दस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ogha", "noun", "oghā", "oghassa", "oghassa", "", "flood"]) + let v = native_list_append(v, ["gaje", "noun", "gaje", "", "", "", "inflection of gaja"]) + let v = native_list_append(v, ["seke", "noun", "seke", "", "", "", "inflection of seka"]) + let v = native_list_append(v, ["कवी", "noun", "कवी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["isso", "noun", "isso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["lopa", "noun", "lopā", "lopassa", "lopassa", "", "cutting off"]) + let v = native_list_append(v, ["hima", "noun", "himāni", "himassa", "himassa", "", "snow"]) + let v = native_list_append(v, ["yasa", "noun", "yasa", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["takka", "noun", "takka", "", "", "", "buttermilk"]) + let v = native_list_append(v, ["kavi", "noun", "kavayo", "kavissa", "kavissa", "", "a poet"]) + let v = native_list_append(v, ["कार", "noun", "कारा", "कारस्स", "कारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["yuga", "noun", "yugāni", "yugassa", "yugassa", "", "pair couple"]) + let v = native_list_append(v, ["patte", "noun", "patte", "", "", "", "inflection of patta"]) + let v = native_list_append(v, ["asse", "noun", "asse", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["pavese", "noun", "pavese", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["មីនា", "noun", "មីនា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ឧសភា", "noun", "ឧសភា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["កញ្ញា", "noun", "កញ្ញាយោ", "កញ្ញាយ", "កញ្ញាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["តុលា", "noun", "តុលាយោ", "តុលាយ", "តុលាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["राग", "noun", "रागा", "रागस्स", "रागस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अम्मा", "noun", "अम्मायो", "अम्माय", "अम्माय", "", "Devanagari script form"]) + let v = native_list_append(v, ["असम", "noun", "असमानि", "असमस्स", "असमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vacche", "noun", "vacche", "", "", "", "inflection of vaccha"]) + let v = native_list_append(v, ["miga", "noun", "migā", "migassa", "migassa", "", "beast"]) + let v = native_list_append(v, ["roga", "noun", "rogā", "rogassa", "rogassa", "", "illness disease"]) + let v = native_list_append(v, ["asme", "noun", "asme", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["राज", "noun", "राज", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["माया", "noun", "माया", "", "", "", "fraud"]) + let v = native_list_append(v, ["ភាសា", "noun", "ភាសាយោ", "ភាសាយ", "ភាសាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["រដ្ឋ", "noun", "រដ្ឋានិ", "រដ្ឋស្ស", "រដ្ឋស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["tila", "noun", "tilāni", "tilassa", "tilassa", "", "sesame seed"]) + let v = native_list_append(v, ["patti", "noun", "pattiyo", "pattiyā", "pattiyā", "", "arrival"]) + let v = native_list_append(v, ["aja", "noun", "ajā", "ajassa", "ajassa", "", "goat"]) + let v = native_list_append(v, ["muni", "noun", "munayo", "munissa", "munissa", "", "monk sage"]) + let v = native_list_append(v, ["तेज", "noun", "तेज", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sakko", "noun", "sakko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["साय", "noun", "साय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["माल", "noun", "माला", "मालस्स", "मालस्स", "", "circular enclosure round"]) + let v = native_list_append(v, ["คุณ", "noun", "คุณา", "คุณสฺส", "คุณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["tule", "noun", "tule", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["taru", "noun", "taravo", "tarussa", "tarussa", "", "tree"]) + let v = native_list_append(v, ["মরণ", "noun", "মরণ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["kulla", "noun", "kullā", "kullassa", "kullassa", "", "a winnowing basket"]) + let v = native_list_append(v, ["kulle", "noun", "kulle", "", "", "", "inflection of kulla"]) + let v = native_list_append(v, ["sutta", "noun", "suttāni", "suttassa", "suttassa", "", "thread string"]) + let v = native_list_append(v, ["manti", "noun", "manti", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["বলা", "noun", "বলা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ชิวหา", "noun", "ชิวหาโย", "ชิวหายะ", "ชิวหายะ", "", "Thai script without"]) + let v = native_list_append(v, ["कुल", "noun", "कुलानि", "कुलस्स", "कुलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["roso", "noun", "roso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["siri", "noun", "siri", "", "", "", "luck glory wealth"]) + let v = native_list_append(v, ["मधु", "noun", "मधु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["สุสาน", "noun", "สุสานานิ", "สุสานสฺส", "สุสานสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["putta", "noun", "puttā", "puttassa", "puttassa", "", "son"]) + let v = native_list_append(v, ["sute", "noun", "sute", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["suta", "noun", "sutā", "sutassa", "sutassa", "", "sacred lore"]) + let v = native_list_append(v, ["odano", "noun", "odano", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["issa", "noun", "issā", "issassa", "issassa", "", "bear"]) + let v = native_list_append(v, ["tipu", "noun", "tipu", "", "", "", "lead metal"]) + let v = native_list_append(v, ["siro", "noun", "siro", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["tilassa", "noun", "tilassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["sutena", "noun", "sutena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["soppa", "noun", "soppāni", "soppassa", "soppassa", "", "sleep"]) + let v = native_list_append(v, ["antena", "noun", "antena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["jalassa", "noun", "jalassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["kummassa", "noun", "kummassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["bimba", "noun", "bimbāni", "bimbassa", "bimbassa", "", "image"]) + let v = native_list_append(v, ["sako", "noun", "sako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["rahassa", "noun", "rahassa", "", "", "", "a secret mystery"]) + let v = native_list_append(v, ["ratti", "noun", "rattiyo", "rattiyā", "rattiyā", "", "night"]) + let v = native_list_append(v, ["sacca", "noun", "saccāni", "saccassa", "saccassa", "", "truth"]) + let v = native_list_append(v, ["anagārika", "noun", "anagārikā", "anagārikassa", "anagārikassa", "", "Homeless one used"]) + let v = native_list_append(v, ["manato", "noun", "manato", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["virati", "noun", "virati", "", "", "", "abstinence"]) + let v = native_list_append(v, ["vitti", "noun", "vittiyo", "vittiyā", "vittiyā", "", "pleasure"]) + let v = native_list_append(v, ["জল", "noun", "জলানি", "জলস্স", "জলস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["putte", "noun", "putte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["vetta", "noun", "vettāni", "vettassa", "vettassa", "", "twig rod staff"]) + let v = native_list_append(v, ["atta", "noun", "atta", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["atte", "noun", "atte", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["doso", "noun", "doso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ratana", "noun", "ratanāni", "ratanassa", "ratanassa", "", "jewel"]) + let v = native_list_append(v, ["अच्छे", "noun", "अच्छे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["romena", "noun", "romena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["sokassa", "noun", "sokassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["पद", "noun", "पदानि", "पदस्स", "पदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["rassa", "noun", "rassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["vikati", "noun", "vikatiyo", "vikatiyā", "vikatiyā", "", "a sort or"]) + let v = native_list_append(v, ["kante", "noun", "kante", "", "", "", "inflection of kanta"]) + let v = native_list_append(v, ["soto", "noun", "soto", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["daha", "noun", "dahā", "dahassa", "dahassa", "", "lake"]) + let v = native_list_append(v, ["siras", "noun", "sirāni", "siraso", "siraso", "", "head"]) + let v = native_list_append(v, ["नाक", "noun", "नाका", "नाकस्स", "नाकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गिरी", "noun", "गिरी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["លោក", "noun", "លោកា", "លោកស្ស", "លោកស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["savana", "noun", "savanāni", "savanassa", "savanassa", "", "hearing listening"]) + let v = native_list_append(v, ["savane", "noun", "savane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["भय", "noun", "भयानि", "भयस्स", "भयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["soko", "noun", "soko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["อาหาร", "noun", "อาหารา", "อาหารสฺส", "อาหารสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["भोजन", "noun", "भोजनानि", "भोजनस्स", "भोजनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kantena", "noun", "kantena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["ហេតុ", "noun", "ហេតវោ", "ហេតុស្ស", "ហេតុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["vato", "noun", "vato", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["medo", "noun", "medo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["देवर", "noun", "देवरा", "देवरस्स", "देवरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["चित्त", "noun", "चित्तानि", "चित्तस्स", "चित्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["nayo", "noun", "nayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["भू", "noun", "भुयो", "भुया", "भुया", "", "Devanagari script form"]) + let v = native_list_append(v, ["जाति", "noun", "जाति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गो", "noun", "गवो", "गवस्स", "गवस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गिरि", "noun", "गिरयो", "गिरिस्स", "गिरिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अन", "noun", "अनानि", "अनस्स", "अनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["राजन्", "noun", "राजानो", "रञ्ञो", "रञ्ञो", "", "Devanagari script form"]) + let v = native_list_append(v, ["हंस", "noun", "हंसा", "हंसस्स", "हंसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["हेमन्त", "noun", "हेमन्ता", "हेमन्तस्स", "हेमन्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अंस", "noun", "अंसा", "अंसस्स", "अंसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मोह", "noun", "मोहा", "मोहस्स", "मोहस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अजा", "noun", "अजायो", "अजाय", "अजाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["असि", "noun", "असयो", "असिस्स", "असिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["धातु", "noun", "धातुयो", "धातुया", "धातुया", "", "Devanagari script form"]) + let v = native_list_append(v, ["व्यञ्जन", "noun", "व्यञ्जनानि", "व्यञ्जनस्स", "व्यञ्जनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sara", "noun", "sarā", "sarassa", "sarassa", "", "a kind of"]) + let v = native_list_append(v, ["जय", "noun", "जया", "जयस्स", "जयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["रथ", "noun", "रथा", "रथस्स", "रथस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ភូមិ", "noun", "ភូមិយោ", "ភូមិយា", "ភូមិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["gude", "noun", "gude", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["សុខ", "noun", "សុខានិ", "សុខស្ស", "សុខស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ពុទ្ធ", "noun", "ពុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["भुज", "noun", "भुजा", "भुजस्स", "भुजस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अनिल", "noun", "अनिल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वात", "noun", "वाता", "वातस्स", "वातस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ທານ", "noun", "ທານານິ", "ທານສ຺ສ", "ທານສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["अण्ड", "noun", "अण्डानि", "अण्डस्स", "अण्डस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ជីវិត", "noun", "ជីវិតានិ", "ជីវិតស្ស", "ជីវិតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["मह", "noun", "महा", "महस्स", "महस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ខេត្ត", "noun", "ខេត្តានិ", "ខេត្តស្ស", "ខេត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["अकार", "noun", "अकारा", "अकारस्स", "अकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अगद", "noun", "अगद", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अगार", "noun", "अगारानि", "अगारस्स", "अगारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mahassa", "noun", "mahassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["rajassa", "noun", "rajassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["วะ", "noun", "วะ", "วัสสะ", "วัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["ພຸດທະ", "noun", "ພຸດທະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["वीर", "noun", "वीर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vipatti", "noun", "vipattiyo", "vipattiyā", "vipattiyā", "", "failure"]) + let v = native_list_append(v, ["hanta", "noun", "hanta", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["नर", "noun", "नरा", "नरस्स", "नरस्स", "", "man generic person"]) + let v = native_list_append(v, ["बाला", "noun", "बालायो", "बालाय", "बालाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["मति", "noun", "मतियो", "मतिया", "मतिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["सेना", "noun", "सेनायो", "सेनाय", "सेनाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["देवी", "noun", "देवियो", "देविया", "देविया", "", "Devanagari script form"]) + let v = native_list_append(v, ["पाप", "noun", "पापानि", "पापस्स", "पापस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["hime", "noun", "hime", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["वेद", "noun", "वेदा", "वेदस्स", "वेदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["भग", "noun", "भगानि", "भगस्स", "भगस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["seko", "noun", "seko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ภมุ", "noun", "ภมุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["nāve", "noun", "nāve", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["vattu", "noun", "vattu", "", "", "", "alternative citation form"]) + let v = native_list_append(v, ["ໂຍນີ", "noun", "ໂຍນີ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["posena", "noun", "posena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["sappena", "noun", "sappena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["sandhi", "noun", "sandhiyo", "sandhiyā", "sandhiyā", "", "union"]) + let v = native_list_append(v, ["hetu", "noun", "hetavo", "hetussa", "hetussa", "", "cause reason"]) + let v = native_list_append(v, ["लङ्का", "noun", "लङ्कायो", "लङ्काय", "लङ्काय", "", "Devanagari script form"]) + let v = native_list_append(v, ["पाद", "noun", "पादा", "पादस्स", "पादस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["នាម", "noun", "នាមានិ", "នាមស្ស", "នាមស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អាកាស", "noun", "អាកាសា", "អាកាសស្ស", "អាកាសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["malena", "noun", "malena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["matassa", "noun", "matassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["वादा", "noun", "वादा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मोर", "noun", "मोरा", "मोरस्स", "मोरस्स", "", "peacock"]) + let v = native_list_append(v, ["ब्रह्मन्", "noun", "ब्रह्मन्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पाति", "noun", "पाति", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ब्राह्मण", "noun", "ब्राह्मणा", "ब्राह्मणस्स", "ब्राह्मणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["दान", "noun", "दानानि", "दानस्स", "दानस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अहि", "noun", "अहयो", "अहिस्स", "अहिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sese", "noun", "sese", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["तित्तिर", "noun", "तित्तिर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["धूम", "noun", "धूमा", "धूमस्स", "धूमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["तरु", "noun", "तरवो", "तरुस्स", "तरुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["वनिता", "noun", "वनितायो", "वनिताय", "वनिताय", "", "Devanagari script form"]) + let v = native_list_append(v, ["पुण्डरीक", "noun", "पुण्डरीकानि", "पुण्डरीकस्स", "पुण्डरीकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["loke", "noun", "loke", "", "", "", "inflection of loka"]) + let v = native_list_append(v, ["नासा", "noun", "नासायो", "नासाय", "नासाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["pitta", "noun", "pittāni", "pittassa", "pittassa", "", "bile"]) + let v = native_list_append(v, ["मल", "noun", "मलानि", "मलस्स", "मलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["युवन्", "noun", "युवन्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मास", "noun", "मासा", "मासस्स", "मासस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["សេក", "noun", "សេកា", "សេកស្ស", "សេកស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["गङ्गा", "noun", "गङ्गा", "गङ्गाय", "गङ्गाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["patta", "noun", "patta", "", "", "", "leaf"]) + let v = native_list_append(v, ["राम", "noun", "रामा", "रामस्स", "रामस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["appane", "noun", "appane", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["ราชา", "noun", "ราชา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ชีวิต", "noun", "ชีวิตานิ", "ชีวิตสฺส", "ชีวิตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["กาย", "noun", "กายา", "กายสฺส", "กายสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["นาม", "noun", "นามานิ", "นามสฺส", "นามสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["โลก", "noun", "โลกา", "โลกสฺส", "โลกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["กวี", "noun", "กวี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กาล", "noun", "กาลา", "กาลสฺส", "กาลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["เวลา", "noun", "เวลาโย", "เวลาย", "เวลาย", "", "Thai script form"]) + let v = native_list_append(v, ["ภูมิ", "noun", "ภูมิโย", "ภูมิยา", "ภูมิยา", "", "Thai script form"]) + let v = native_list_append(v, ["ญาติ", "noun", "ญาตโย", "ญาติสฺส", "ญาติสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ชาติ", "noun", "ชาติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["วานร", "noun", "วานรา", "วานรสฺส", "วานรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ร", "noun", "ร", "รสฺส", "รสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ว", "noun", "ว", "วสฺส", "วสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ส", "noun", "ส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["anga", "noun", "angāni", "angassa", "angassa", "", "alternative spelling of"]) + let v = native_list_append(v, ["โค", "noun", "คโว", "ควสฺส", "ควสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["โภชนา", "noun", "โภชนา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ชน", "noun", "ชนา", "ชนสฺส", "ชนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ชล", "noun", "ชลานิ", "ชลสฺส", "ชลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["เทวะ", "noun", "เทวา", "เทวัสสะ", "เทวัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["เทวี", "noun", "เทวิโย", "เทวิยา", "เทวิยา", "", "Thai script form"]) + let v = native_list_append(v, ["ทาน", "noun", "ทานานิ", "ทานสฺส", "ทานสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["เมฆ", "noun", "เมฆา", "เมฆสฺส", "เมฆสฺส", "", "cloud"]) + let v = native_list_append(v, ["ทูต", "noun", "ทูตา", "ทูตสฺส", "ทูตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["โจร", "noun", "โจร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["มีน", "noun", "มีนา", "มีนสฺส", "มีนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ตาล", "noun", "ตาลา", "ตาลสฺส", "ตาลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["รถ", "noun", "รถา", "รถสฺส", "รถสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["รส", "noun", "รสา", "รสสฺส", "รสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สุข", "noun", "สุขานิ", "สุขสฺส", "สุขสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["พล", "noun", "พลานิ", "พลสฺส", "พลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ภูต", "noun", "ภูตา", "ภูตานํ", "ภูตานํ", "", "Thai script form"]) + let v = native_list_append(v, ["dugga", "noun", "duggāni", "duggassa", "duggassa", "", "a difficult road"]) + let v = native_list_append(v, ["หิมะ", "noun", "หิมานิ", "หิมัสสะ", "หิมัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["อัณฑะ", "noun", "อัณฑานิ", "อัณฑัสสะ", "อัณฑัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["asura", "noun", "asurā", "asurassa", "asurassa", "", "a class of"]) + let v = native_list_append(v, ["โรค", "noun", "โรคา", "โรคสฺส", "โรคสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["असुर", "noun", "असुर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["लोह", "noun", "लोहानि", "लोहस्स", "लोहस्स", "", "metal especially copper"]) + let v = native_list_append(v, ["tantu", "noun", "tantavo", "tantussa", "tantussa", "", "thread cord string"]) + let v = native_list_append(v, ["hantu", "noun", "hantu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["vatti", "noun", "vatti", "", "", "", "The parts of"]) + let v = native_list_append(v, ["วิหาร", "noun", "วิหารา", "วิหารสฺส", "วิหารสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["เหตุ", "noun", "เหตโว", "เหตุสฺส", "เหตุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["हेतु", "noun", "हेतवो", "हेतुस्स", "हेतुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["बिन्दु", "noun", "बिन्दूनि", "बिन्दुस्स", "बिन्दुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["विहार", "noun", "विहारा", "विहारस्स", "विहारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mutti", "noun", "mutti", "", "", "", "release"]) + let v = native_list_append(v, ["नाग", "noun", "नागा", "नागस्स", "नागस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["nāga", "noun", "nāgā", "nāgassa", "nāgassa", "", "serpent"]) + let v = native_list_append(v, ["केतु", "noun", "केतवो", "केतुस्स", "केतुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sakka", "noun", "sakka", "sakkassa", "sakkassa", "", "Indra"]) + let v = native_list_append(v, ["kitti", "noun", "kittiyo", "kittiyā", "kittiyā", "", "fame"]) + let v = native_list_append(v, ["अभिधान", "noun", "अभिधानानि", "अभिधानस्स", "अभिधानस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vakka", "noun", "vakkāni", "vakkassa", "vakkassa", "", "kidney"]) + let v = native_list_append(v, ["ฐาน", "noun", "ฐานานิ", "ฐานสฺส", "ฐานสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ยุค", "noun", "ยุคานิ", "ยุคสฺส", "ยุคสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ผล", "noun", "ผลานิ", "ผลสฺส", "ผลสฺส", "", "fruit of a"]) + let v = native_list_append(v, ["นรก", "noun", "นรกา", "นรกสฺส", "นรกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["โลมา", "noun", "โลมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["วาฬ", "noun", "วาฬา", "วาฬสฺส", "วาฬสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["การ", "noun", "การา", "การสฺส", "การสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["सूकर", "noun", "सूकरा", "सूकरस्स", "सूकरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["आहार", "noun", "आहारा", "आहारस्स", "आहारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["gajo", "noun", "gajo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ຄະນະ", "noun", "ຄະນາ", "ຄະນັສສະ", "ຄະນັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["indo", "noun", "indo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kanda", "noun", "kanda", "", "", "", "bulb tuber"]) + let v = native_list_append(v, ["संसार", "noun", "संसारा", "संसारस्स", "संसारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["saṃsāra", "noun", "saṃsārā", "saṃsārassa", "saṃsārassa", "", "transmigration"]) + let v = native_list_append(v, ["taravo", "noun", "taravo", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["setu", "noun", "setavo", "setussa", "setussa", "", "ridge embankment causeway"]) + let v = native_list_append(v, ["gire", "noun", "gire", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["amba", "noun", "ambā", "ambassa", "ambassa", "", "the mango tree"]) + let v = native_list_append(v, ["anila", "noun", "anila", "", "", "", "wind"]) + let v = native_list_append(v, ["supina", "noun", "supinā", "supinassa", "supinassa", "", "dream"]) + let v = native_list_append(v, ["isse", "noun", "isse", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["अङ्गुलि", "noun", "अङ्गुलियो", "अङ्गुलिया", "अङ्गुलिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["हर", "noun", "हर", "हरस्स", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["มหา", "noun", "มหา", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["मिथुन", "noun", "मिथुनानि", "मिथुनस्स", "मिथुनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मरण", "noun", "मरण", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वाणिज", "noun", "वाणिजा", "वाणिजस्स", "वाणिजस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["กาม", "noun", "กามา", "กามสฺส", "กามสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ปัญญา", "noun", "ปัญญาโย", "ปัญญายะ", "ปัญญายะ", "", "Thai script form"]) + let v = native_list_append(v, ["ญาณ", "noun", "ญาณ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ฌาน", "noun", "ฌาน", "", "", "", "a state of"]) + let v = native_list_append(v, ["ฌาปน", "noun", "ฌาปนานิ", "ฌาปนสฺส", "ฌาปนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["คูถ", "noun", "คูถานิ", "คูถสฺส", "คูถสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["คิริ", "noun", "คิรโย", "คิริสฺส", "คิริสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["คิรี", "noun", "คิรี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["พาล", "noun", "พาลา", "พาลสฺส", "พาลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["พาหุ", "noun", "พาหโว", "พาหุสฺส", "พาหุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["มาตุ", "noun", "มาตุ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สติ", "noun", "สติโย", "สติยา", "สติยา", "", "Thai script form"]) + let v = native_list_append(v, ["เถรวาท", "noun", "เถรวาท", "เถรวาทสฺส", "เถรวาทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["chala", "noun", "chala", "", "", "", "fraud pretext"]) + let v = native_list_append(v, ["กาก", "noun", "กากา", "กากสฺส", "กากสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ฐิติ", "noun", "ฐิติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["मुख", "noun", "मुखानि", "मुखस्स", "मुखस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सभा", "noun", "सभा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मासा", "noun", "मासा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भूमि", "noun", "भूमियो", "भूमिया", "भूमिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhūmi", "noun", "bhūmiyo", "bhūmiyā", "bhūmiyā", "", "ground earth"]) + let v = native_list_append(v, ["मरु", "noun", "मरवो", "मरुस्स", "मरुस्स", "", "deity"]) + let v = native_list_append(v, ["sudda", "noun", "suddā", "suddassa", "suddassa", "", "a person of"]) + let v = native_list_append(v, ["गाथा", "noun", "गाथायो", "गाथाय", "गाथाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["वेणु", "noun", "वेणवो", "वेणुस्स", "वेणुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मण्डल", "noun", "मण्डलानि", "मण्डलस्स", "मण्डलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["maṇḍala", "noun", "maṇḍalāni", "maṇḍalassa", "maṇḍalassa", "", "circle"]) + let v = native_list_append(v, ["काल", "noun", "काला", "कालस्स", "कालस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vaco", "noun", "vaco", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["รา", "noun", "รา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["moca", "noun", "mocā", "mocassa", "mocassa", "", "plantain tree"]) + let v = native_list_append(v, ["ภู", "noun", "ภุโย", "ภุยา", "ภุยา", "", "Thai script form"]) + let v = native_list_append(v, ["thusa", "noun", "thusā", "thusassa", "thusassa", "", "chaff"]) + let v = native_list_append(v, ["สาย", "noun", "สาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["सा", "noun", "सा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["जीवित", "noun", "जीवितानि", "जीवितस्स", "जीवितस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ນາມ", "noun", "ນາມານິ", "ນາມສ຺ສ", "ນາມສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["chatto", "noun", "chatto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["chatta", "noun", "chattāni", "chattassa", "chattassa", "", "sunshade parasol"]) + let v = native_list_append(v, ["वसन्त", "noun", "वसन्ता", "वसन्तस्स", "वसन्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["gosu", "noun", "gosu", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["chadi", "noun", "chadi", "", "", "", "roof covering"]) + let v = native_list_append(v, ["vesso", "noun", "vesso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["รัง", "noun", "รัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อาวุธ", "noun", "อาวุธานิ", "อาวุธสฺส", "อาวุธสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["sesa", "noun", "sesa", "sesassa", "sesassa", "", "the remainder"]) + let v = native_list_append(v, ["vate", "noun", "vate", "", "", "", "inflection of vata"]) + let v = native_list_append(v, ["अन्त", "noun", "अन्ता", "अन्तस्स", "अन्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mantu", "noun", "mantavo", "mantussa", "mantussa", "", "one who imagines"]) + let v = native_list_append(v, ["soka", "noun", "sokā", "sokassa", "sokassa", "", "grief sorrow mourning"]) + let v = native_list_append(v, ["roma", "noun", "romāni", "romassa", "romassa", "", "hair of the"]) + let v = native_list_append(v, ["নদী", "noun", "নদিযো", "নদিযা", "নদিযা", "", "Bengali script form"]) + let v = native_list_append(v, ["নাম", "noun", "নামানি", "নামস্স", "নামস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["মুখ", "noun", "মুখ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["নাক", "noun", "নাকা", "নাকস্স", "নাকস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ফল", "noun", "ফলানি", "ফলস্স", "ফলস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["অভিধান", "noun", "অভিধানানি", "অভিধানস্স", "অভিধানস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["মেঘ", "noun", "মেঘা", "মেঘস্স", "মেঘস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ससा", "noun", "ससा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["taya", "noun", "taya", "", "", "", "triad"]) + let v = native_list_append(v, ["ราช", "noun", "ราช", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อาณา", "noun", "อาณาโย", "อาณาย", "อาณาย", "", "Thai script form"]) + let v = native_list_append(v, ["दन्त", "noun", "दन्ता", "दन्तस्स", "दन्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गुदा", "noun", "गुदा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नदियो", "noun", "नदियो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["gavo", "noun", "gavo", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["छवि", "noun", "छवियो", "छविया", "छविया", "", "skin"]) + let v = native_list_append(v, ["kukkura", "noun", "kukkura", "", "", "", "dog"]) + let v = native_list_append(v, ["रोग", "noun", "रोगा", "रोगस्स", "रोगस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["attan", "noun", "attāno", "attano", "attano", "", "self ego"]) + let v = native_list_append(v, ["केस", "noun", "केसा", "केसस्स", "केसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["काले", "noun", "काले", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["មិត្ត", "noun", "មិត្តា", "មិត្តស្ស", "មិត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["निरोध", "noun", "निरोधा", "निरोधस्स", "निरोधस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["भावना", "noun", "भावनायो", "भावनाय", "भावनाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["छेद", "noun", "छेदा", "छेदस्स", "छेदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["करण", "noun", "करणानि", "करणस्स", "करणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["थी", "noun", "थियो", "थिया", "थिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["ปัสสาวะ", "noun", "ปัสสาวา", "ปัสสาวัสสะ", "ปัสสาวัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["jattu", "noun", "jattu", "", "", "", "shoulder"]) + let v = native_list_append(v, ["กะปิ", "noun", "กะปะโย", "กะปิสสะ", "กะปิสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["soke", "noun", "soke", "", "", "", "inflection of soka"]) + let v = native_list_append(v, ["बोधि", "noun", "बोधियो", "बोधिया", "बोधिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["matena", "noun", "matena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["वर", "noun", "वरा", "वरस्स", "वरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["gobhi", "noun", "gobhi", "", "", "", "instrumental/ablative plural of"]) + let v = native_list_append(v, ["lome", "noun", "lome", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["sasse", "noun", "sasse", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["sassa", "noun", "sassāni", "sassassa", "sassassa", "", "corn crop"]) + let v = native_list_append(v, ["assena", "noun", "assena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["វាសនា", "noun", "វាសនាយោ", "វាសនាយ", "វាសនាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["वासना", "noun", "वासनायो", "वासनाय", "वासनाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["phala", "noun", "phalāni", "phalassa", "phalassa", "", "fruit of a"]) + let v = native_list_append(v, ["katta", "noun", "katta", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["जल", "noun", "जलानि", "जलस्स", "जलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sutte", "noun", "sutte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["satte", "noun", "satte", "", "", "", "inflection of satta"]) + let v = native_list_append(v, ["sasa", "noun", "sasā", "sasassa", "sasassa", "", "hare"]) + let v = native_list_append(v, ["ယ", "noun", "ယ", "ယဿ", "ယဿ", "", "the Pali letter"]) + let v = native_list_append(v, ["assu", "noun", "assūni", "assussa", "assussa", "", "tear clear salty"]) + let v = native_list_append(v, ["रजस्", "noun", "रजानि", "रजसो", "रजसो", "", "Devanagari script form"]) + let v = native_list_append(v, ["chadda", "noun", "chadda", "", "", "", "roof"]) + let v = native_list_append(v, ["sambuko", "noun", "sambuko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["canda", "noun", "candā", "candassa", "candassa", "", "moon"]) + let v = native_list_append(v, ["malla", "noun", "mallā", "mallassa", "mallassa", "", "wrestler"]) + let v = native_list_append(v, ["jannu", "noun", "jannūni", "jannussa", "jannussa", "", "knee"]) + let v = native_list_append(v, ["मद", "noun", "मदा", "मदस्स", "मदस्स", "", "pride"]) + let v = native_list_append(v, ["กุล", "noun", "กุลานิ", "กุลสฺส", "กุลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["brahmano", "noun", "brahmano", "", "", "", "genitive/dative/ablative singular of"]) + let v = native_list_append(v, ["brahmani", "noun", "brahmani", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["jalla", "noun", "jalla", "", "", "", "wet dirt"]) + let v = native_list_append(v, ["cimi", "noun", "cimi", "", "", "", "parrot"]) + let v = native_list_append(v, ["ဘဝ", "noun", "ဘဝါ", "ဘဝဿ", "ဘဝဿ", "", "state of existence"]) + let v = native_list_append(v, ["လောက", "noun", "လောကာ", "လောကဿ", "လောကဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["កមល", "noun", "កមលានិ", "កមលស្ស", "កមលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ចិត្ត", "noun", "ចិត្តានិ", "ចិត្តស្ស", "ចិត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["មន", "noun", "មន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ជាតិ", "noun", "ជាតិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ឋិតិ", "noun", "ឋិតិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["សតិ", "noun", "សតិយោ", "សតិយា", "សតិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["ᩁᩣ", "noun", "ᩁᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["devassa", "noun", "devassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["kesa", "noun", "kesā", "kesassa", "kesassa", "", "hair of the"]) + let v = native_list_append(v, ["kamma", "noun", "kammāni", "kammassa", "kammassa", "", "doing deed action"]) + let v = native_list_append(v, ["රජ", "noun", "රජ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["roge", "noun", "roge", "", "", "", "inflection of roga"]) + let v = native_list_append(v, ["vatte", "noun", "vatte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["kamme", "noun", "kamme", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["kattar", "noun", "kattāro", "kattu", "kattu", "", "doer actor maker"]) + let v = native_list_append(v, ["mukha", "noun", "mukhāni", "mukhassa", "mukhassa", "", "mouth"]) + let v = native_list_append(v, ["vacati", "noun", "vacati", "", "", "", "The parts of"]) + let v = native_list_append(v, ["inda", "noun", "indā", "indassa", "indassa", "", "lord king"]) + let v = native_list_append(v, ["laye", "noun", "laye", "", "", "", "inflection of laya"]) + let v = native_list_append(v, ["jete", "noun", "jete", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["दास", "noun", "दासा", "दासस्स", "दासस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["वराह", "noun", "वराहा", "वराहस्स", "वराहस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["कपि", "noun", "कपि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वानर", "noun", "वानरा", "वानरस्स", "वानरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sappa", "noun", "sappā", "sappassa", "sappassa", "", "snake"]) + let v = native_list_append(v, ["bāle", "noun", "bāle", "", "", "", "locative singular and"]) + let v = native_list_append(v, ["रसा", "noun", "रसा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["बालक", "noun", "बालका", "बालकस्स", "बालकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kandana", "noun", "kandanāni", "kandanassa", "kandanassa", "", "act of crying"]) + let v = native_list_append(v, ["វាល", "noun", "វាលា", "វាលស្ស", "វាលស្ស", "", "hair of the"]) + let v = native_list_append(v, ["सवन", "noun", "सवनानि", "सवनस्स", "सवनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["pacane", "noun", "pacane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["विधि", "noun", "विधयो", "विधिस्स", "विधिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["গরু", "noun", "গরৰো", "গরুস্স", "গরুস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ইতিহাস", "noun", "ইতিহাসা", "ইতিহাসস্স", "ইতিহাসস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["danto", "noun", "danto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["হেমন্ত", "noun", "হেমন্তা", "হেমন্তস্স", "হেমন্তস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["লিঙ্গ", "noun", "লিঙ্গানি", "লিঙ্গস্স", "লিঙ্গস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["যোনি", "noun", "যোনিযো", "যোনিযা", "যোনিযা", "", "Bengali script form"]) + let v = native_list_append(v, ["বন্ধু", "noun", "বন্ধৰো", "বন্ধুস্স", "বন্ধুস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["thi", "noun", "thi", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["মালা", "noun", "মালাযো", "মালায", "মালায", "", "Bengali script form"]) + let v = native_list_append(v, ["অঙ্গ", "noun", "অঙ্গানি", "অঙ্গস্স", "অঙ্গস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["মারা", "noun", "মারা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["মাল", "noun", "মালা", "মালস্স", "মালস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["মূল", "noun", "মূলানি", "মূলস্স", "মূলস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["উত্তর", "noun", "উত্তর", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["গন্ধ", "noun", "গন্ধা", "গন্ধস্স", "গন্ধস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["কচ্ছপ", "noun", "কচ্ছপা", "কচ্ছপস্স", "কচ্ছপস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["য", "noun", "য", "যস্স", "যস্স", "", "the Pali letter"]) + let v = native_list_append(v, ["assa", "noun", "assā", "assassa", "assassa", "", "a horse"]) + let v = native_list_append(v, ["গঙ্গা", "noun", "গঙ্গা", "গঙ্গায", "গঙ্গায", "", "Bengali script form"]) + let v = native_list_append(v, ["গণিকা", "noun", "গণিকা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["cande", "noun", "cande", "", "", "", "inflection of canda"]) + let v = native_list_append(v, ["uras", "noun", "urāni", "uraso", "uraso", "", "breast chest"]) + let v = native_list_append(v, ["addi", "noun", "addi", "", "", "", "mountain"]) + let v = native_list_append(v, ["মাতা", "noun", "মাতা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["পিতা", "noun", "পিতা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["चरण", "noun", "चरणानि", "चरणस्स", "चरणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["acci", "noun", "acciyo", "acciyā", "acciyā", "", "a ray of"]) + let v = native_list_append(v, ["তেল", "noun", "তেলানি", "তেলস্স", "তেলস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["রাজা", "noun", "রাজা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["sacce", "noun", "sacce", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["বিন্দু", "noun", "বিন্দূনি", "বিন্দুস্স", "বিন্দুস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["suto", "noun", "suto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["មុខ", "noun", "មុខានិ", "មុខស្ស", "មុខស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["জন্তু", "noun", "জন্তু", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["কালো", "noun", "কালো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["বন্ধ", "noun", "বন্ধা", "বন্ধস্স", "বন্ধস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["বাল", "noun", "বালা", "বালস্স", "বালস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["মত", "noun", "মতানি", "মতস্স", "মতস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["बलि", "noun", "बलयो", "बलिस्स", "बलिस्स", "", "religious offering"]) + let v = native_list_append(v, ["ঘর", "noun", "ঘরানি", "ঘরস্স", "ঘরস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["पिण्ड", "noun", "पिण्डा", "पिण्डस्स", "पिण्डस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["वचन", "noun", "वचनानि", "वचनस्स", "वचनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["রা", "noun", "রা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["স্নেহ", "noun", "স্নেহা", "স্নেহস্স", "স্নেহস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["রূপ", "noun", "রূপানি", "রূপস্স", "রূপস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ยาจก", "noun", "ยาจกา", "ยาจกสฺส", "ยาจกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สัปปะ", "noun", "สัปปา", "สัปปัสสะ", "สัปปัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["อุรค", "noun", "อุรคา", "อุรคสฺส", "อุรคสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["คชา", "noun", "คชา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["มูล", "noun", "มูลานิ", "มูลสฺส", "มูลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["พลาย", "noun", "พลาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สกุณ", "noun", "สกุณา", "สกุณสฺส", "สกุณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สกุณา", "noun", "สกุณา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โสณ", "noun", "โสณา", "โสณสฺส", "โสณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["नीति", "noun", "नीतियो", "नीतिया", "नीतिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["वाद", "noun", "वादा", "वादस्स", "वादस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सन्धि", "noun", "सन्धियो", "सन्धिया", "सन्धिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["कर", "noun", "कर", "करस्स", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["nakha", "noun", "nakhā", "nakhassa", "nakhassa", "", "nail"]) + let v = native_list_append(v, ["सिद्ध", "noun", "सिद्धा", "सिद्धस्स", "सिद्धस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["विजय", "noun", "विजया", "विजयस्स", "विजयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["धारण", "noun", "धारणानि", "धारणस्स", "धारणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["परिजन", "noun", "परिजना", "परिजनस्स", "परिजनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["jeto", "noun", "jeto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["gumbe", "noun", "gumbe", "", "", "", "inflection of gumba"]) + let v = native_list_append(v, ["devehi", "noun", "devehi", "", "", "", "ablative/instrumental plural of"]) + let v = native_list_append(v, ["dassane", "noun", "dassane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["jambu", "noun", "jambuyo", "jambuyā", "jambuyā", "", "the rose apple"]) + let v = native_list_append(v, ["rati", "noun", "rati", "", "", "", "love attachment pleasure"]) + let v = native_list_append(v, ["himassa", "noun", "himassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["মরিচ", "noun", "মরিচানি", "মরিচস্স", "মরিচস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["អាហារ", "noun", "អាហារា", "អាហារស្ស", "អាហារស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ය", "noun", "ය", "යස්ස", "යස්ස", "", "the Pali letter"]) + let v = native_list_append(v, ["ວ", "noun", "ວ", "ວສ຺ສ", "ວສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["មេឃ", "noun", "មេឃា", "មេឃស្ស", "មេឃស្ស", "", "cloud"]) + let v = native_list_append(v, ["សម្បត្តិ", "noun", "សម្បត្តិយោ", "សម្បត្តិយា", "សម្បត្តិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["សិរិ", "noun", "សិរិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["jetar", "noun", "jetāro", "jetu", "jetu", "", "conqueror"]) + let v = native_list_append(v, ["សាលា", "noun", "សាលាយោ", "សាលាយ", "សាលាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["dukkha", "noun", "dukkhāni", "dukkhassa", "dukkhassa", "", "suffering discontent dissatisfaction"]) + let v = native_list_append(v, ["vasse", "noun", "vasse", "", "", "", "inflection of vassa"]) + let v = native_list_append(v, ["vassa", "noun", "vassā", "vassassa", "vassassa", "", "rain"]) + let v = native_list_append(v, ["នាគ", "noun", "នាគា", "នាគស្ស", "នាគស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ថី", "noun", "ថិយោ", "ថិយា", "ថិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["រូប", "noun", "រូបានិ", "រូបស្ស", "រូបស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អង្គ", "noun", "អង្គានិ", "អង្គស្ស", "អង្គស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ការ", "noun", "ការា", "ការស្ស", "ការស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["munissa", "noun", "munissa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ทาส", "noun", "ทาสา", "ทาสสฺส", "ทาสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["पीठ", "noun", "पीठानि", "पीठस्स", "पीठस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["arahant", "noun", "arahanto", "arahato", "arahato", "", "honorific for an"]) + let v = native_list_append(v, ["วา", "noun", "วา", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["satta", "noun", "sattā", "sattassa", "sattassa", "", "creature living being"]) + let v = native_list_append(v, ["kappo", "noun", "kappo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["gutti", "noun", "guttiyo", "guttiyā", "guttiyā", "", "protection defence guard"]) + let v = native_list_append(v, ["ဘာသာ", "noun", "ဘာသာယော", "ဘာသာယ", "ဘာသာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["pasu", "noun", "pasu", "", "", "", "cattle"]) + let v = native_list_append(v, ["ambe", "noun", "ambe", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["usme", "noun", "usme", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["pacana", "noun", "pacanāni", "pacanassa", "pacanassa", "", "cooking"]) + let v = native_list_append(v, ["deso", "noun", "deso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["bindu", "noun", "bindūni", "bindussa", "bindussa", "", "drop"]) + let v = native_list_append(v, ["yojana", "noun", "yojanāni", "yojanassa", "yojanassa", "", "yojana"]) + let v = native_list_append(v, ["kose", "noun", "kose", "", "", "", "inflection of kosa"]) + let v = native_list_append(v, ["mosa", "noun", "mosa", "", "", "", "theft"]) + let v = native_list_append(v, ["ឧបរាជ", "noun", "ឧបរាជា", "ឧបរាជស្ស", "ឧបរាជស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["netar", "noun", "netāro", "netu", "netu", "", "leader guide"]) + let v = native_list_append(v, ["paje", "noun", "paje", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["gohi", "noun", "gohi", "", "", "", "instrumental/ablative plural of"]) + let v = native_list_append(v, ["meda", "noun", "medā", "medassa", "medassa", "", "fat"]) + let v = native_list_append(v, ["jare", "noun", "jare", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["natta", "noun", "nattāni", "nattassa", "nattassa", "", "night"]) + let v = native_list_append(v, ["vessassa", "noun", "vessassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["छाया", "noun", "छायायो", "छायाय", "छायाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["अतिथि", "noun", "अतिथयो", "अतिथिस्स", "अतिथिस्स", "", "guest"]) + let v = native_list_append(v, ["paveso", "noun", "paveso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pavesa", "noun", "pavesā", "pavesassa", "pavesassa", "", "entrance"]) + let v = native_list_append(v, ["अङ्ग", "noun", "अङ्गानि", "अङ्गस्स", "अङ्गस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["तेजस्", "noun", "तेजानि", "तेजसो", "तेजसो", "", "Devanagari script form"]) + let v = native_list_append(v, ["pāli", "noun", "pāliyo", "pāliyā", "pāliyā", "", "a line row"]) + let v = native_list_append(v, ["आबाध", "noun", "आबाधा", "आबाधस्स", "आबाधस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["အာဗာဓ", "noun", "အာဗာဓာ", "အာဗာဓဿ", "အာဗာဓဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["अक्खि", "noun", "अक्खीनि", "अक्खिस्स", "अक्खिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["အက္ခိ", "noun", "အက္ခီနိ", "အက္ခိဿ", "အက္ခိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["भिक्खा", "noun", "भिक्खायो", "भिक्खाय", "भिक्खाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဘိက္ခာ", "noun", "ဘိက္ခာယော", "ဘိက္ခာယ", "ဘိက္ခာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဗုဒ္ဓ", "noun", "ဗုဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ब्यग्घ", "noun", "ब्यग्घ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဗျဂ္ဃ", "noun", "ဗျဂ္ဃ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["စိတ္တ", "noun", "စိတ္တာနိ", "စိတ္တဿ", "စိတ္တဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဓမ္မ", "noun", "ဓမ္မာ", "ဓမ္မဿ", "ဓမ္မဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["धम्म", "noun", "धम्मा", "धम्मस्स", "धम्मस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဇလ", "noun", "ဇလာနိ", "ဇလဿ", "ဇလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["कच्छप", "noun", "कच्छपा", "कच्छपस्स", "कच्छपस्स", "", "tortoise turtle"]) + let v = native_list_append(v, ["ကစ္ဆပ", "noun", "ကစ္ဆပါ", "ကစ္ဆပဿ", "ကစ္ဆပဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["लोण", "noun", "लोणानि", "लोणस्स", "लोणस्स", "", "salt sodium chloride"]) + let v = native_list_append(v, ["လောဏ", "noun", "လောဏာနိ", "လောဏဿ", "လောဏဿ", "", "salt sodium chloride"]) + let v = native_list_append(v, ["मातङ्ग", "noun", "मातङ्गा", "मातङ्गस्स", "मातङ्गस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["မာတင်္ဂ", "noun", "မာတင်္ဂါ", "မာတင်္ဂဿ", "မာတင်္ဂဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["पण्ण", "noun", "पण्णानि", "पण्णस्स", "पण्णस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ပဏ္ဏ", "noun", "ပဏ္ဏာနိ", "ပဏ္ဏဿ", "ပဏ္ဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["বুদ্ধ", "noun", "বুদ্ধ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["महा", "noun", "महा", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["disa", "noun", "disā", "disassa", "disassa", "", "enemy"]) + let v = native_list_append(v, ["udare", "noun", "udare", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["varassa", "noun", "varassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["jantu", "noun", "jantu", "", "", "", "creature living being"]) + let v = native_list_append(v, ["สัน", "noun", "สา", "สัสสะ", "สัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["नेता", "noun", "नेता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["hita", "noun", "hitāni", "hitassa", "hitassa", "", "welfare blessing good"]) + let v = native_list_append(v, ["gamana", "noun", "gamanāni", "gamanassa", "gamanassa", "", "going verbal noun"]) + let v = native_list_append(v, ["diso", "noun", "diso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["भूत", "noun", "भूता", "भूतानं", "भूतानं", "", "Devanagari script form"]) + let v = native_list_append(v, ["สุรา", "noun", "สุราโย", "สุราย", "สุราย", "", "Thai script form"]) + let v = native_list_append(v, ["គោ", "noun", "គវោ", "គវស្ស", "គវស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["সংসার", "noun", "সংসারা", "সংসারস্স", "সংসারস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ईसा", "noun", "ईसायो", "ईसाय", "ईसाय", "", "pole of a"]) + let v = native_list_append(v, ["मूसा", "noun", "मूसायो", "मूसाय", "मूसाय", "", "crucible"]) + let v = native_list_append(v, ["រាជ", "noun", "រាជ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["លិង្គ", "noun", "លិង្គានិ", "លិង្គស្ស", "លិង្គស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["tālā", "noun", "tālā", "", "", "", "inflection of tāla"]) + let v = native_list_append(v, ["thera", "noun", "therā", "therassa", "therassa", "", "elder senior"]) + let v = native_list_append(v, ["thero", "noun", "thero", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ရ", "noun", "ရ", "ရဿ", "ရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝ", "noun", "ဝ", "ဝဿ", "ဝဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["माना", "noun", "माना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सिर", "noun", "सिर", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["अङ्गुली", "noun", "अङ्गुली", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सागर", "noun", "सागरा", "सागरस्स", "सागरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sambuke", "noun", "sambuke", "", "", "", "inflection of sambuka"]) + let v = native_list_append(v, ["झान", "noun", "झान", "", "", "", "a state of"]) + let v = native_list_append(v, ["jhāna", "noun", "jhānāni", "jhānassa", "jhānassa", "", "dhyana meditation a"]) + let v = native_list_append(v, ["ඣාන", "noun", "ඣානානි", "ඣානස්ස", "ඣානස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["tatta", "noun", "tattāni", "tattassa", "tattassa", "", "truth"]) + let v = native_list_append(v, ["बाधा", "noun", "बाधा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सिद्धि", "noun", "सिद्धियो", "सिद्धिया", "सिद्धिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["vīra", "noun", "vīrā", "vīrassa", "vīrassa", "", "hero"]) + let v = native_list_append(v, ["lopā", "noun", "lopā", "", "", "", "inflection of lopa"]) + let v = native_list_append(v, ["malā", "noun", "malā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["sote", "noun", "sote", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["desā", "noun", "desā", "", "", "", "inflection of desa"]) + let v = native_list_append(v, ["sukā", "noun", "sukā", "", "", "", "inflection of suka"]) + let v = native_list_append(v, ["asī", "noun", "asī", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["pade", "noun", "pade", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["vesse", "noun", "vesse", "", "", "", "inflection of vessa"]) + let v = native_list_append(v, ["पानीय", "noun", "पानीय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["danta", "noun", "dantā", "dantassa", "dantassa", "", "tooth fang"]) + let v = native_list_append(v, ["दोस", "noun", "दोसा", "दोसस्स", "दोसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["lomā", "noun", "lomā", "", "", "", "inflection of loma"]) + let v = native_list_append(v, ["abhiseka", "noun", "abhisekā", "abhisekassa", "abhisekassa", "", "anointing consecration inauguration"]) + let v = native_list_append(v, ["पथ", "noun", "पथा", "पथस्स", "पथस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sāli", "noun", "sālayo", "sālissa", "sālissa", "", "rice"]) + let v = native_list_append(v, ["sālī", "noun", "sālī", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["rajā", "noun", "rajā", "", "", "", "ablative/vocative singular of"]) + let v = native_list_append(v, ["rasā", "noun", "rasā", "", "", "", "inflection of rasa"]) + let v = native_list_append(v, ["latā", "noun", "latāyo", "latāya", "latāya", "", "creeper"]) + let v = native_list_append(v, ["varā", "noun", "varā", "", "", "", "inflection of vara"]) + let v = native_list_append(v, ["samā", "noun", "samāyo", "samāya", "samāya", "", "year"]) + let v = native_list_append(v, ["vedike", "noun", "vedike", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["sūda", "noun", "sūdā", "sūdassa", "sūdassa", "", "cook"]) + let v = native_list_append(v, ["sūdā", "noun", "sūdā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["mūsā", "noun", "mūsāyo", "mūsāya", "mūsāya", "", "crucible"]) + let v = native_list_append(v, ["hantar", "noun", "hantāro", "hantu", "hantu", "", "a striker a"]) + let v = native_list_append(v, ["យោនី", "noun", "យោនី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["โยนี", "noun", "โยนี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["សាសនា", "noun", "សាសនា", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["ចោរ", "noun", "ចោរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ឦស", "noun", "ឦសា", "ឦសស្ស", "ឦសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["īsa", "noun", "īsā", "īsassa", "īsassa", "", "lord"]) + let v = native_list_append(v, ["īsā", "noun", "īsāyo", "īsāya", "īsāya", "", "pole of a"]) + let v = native_list_append(v, ["senā", "noun", "senāyo", "senāya", "senāya", "", "army"]) + let v = native_list_append(v, ["មាន", "noun", "មានា", "មានស្ស", "មានស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["चकोर", "noun", "चकोरा", "चकोरस्स", "चकोरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kese", "noun", "kese", "", "", "", "inflection of kesa"]) + let v = native_list_append(v, ["ពាល", "noun", "ពាលា", "ពាលស្ស", "ពាលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["មនុស្ស", "noun", "មនុស្សា", "មនុស្សស្ស", "មនុស្សស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ធាតុ", "noun", "ធាតុយោ", "ធាតុយា", "ធាតុយា", "", "Khmer script form"]) + let v = native_list_append(v, ["काय", "noun", "काया", "कायस्स", "कायस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["पती", "noun", "पती", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["करणे", "noun", "करणे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["दिवस", "noun", "दिवस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["माला", "noun", "मालायो", "मालाय", "मालाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["yuvan", "noun", "yuvan", "", "", "", "young man youth"]) + let v = native_list_append(v, ["rāma", "noun", "rāmā", "rāmassa", "rāmassa", "", "delight"]) + let v = native_list_append(v, ["lokā", "noun", "lokā", "", "", "", "inflection of loka"]) + let v = native_list_append(v, ["rasmā", "noun", "rasmā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["जीव", "noun", "जीवानि", "जीवस्स", "जीवस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["pathe", "noun", "pathe", "", "", "", "inflection of patha"]) + let v = native_list_append(v, ["sāle", "noun", "sāle", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["नख", "noun", "नखा", "नखस्स", "नखस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["लोक", "noun", "लोका", "लोकस्स", "लोकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["māsa", "noun", "māsā", "māsassa", "māsassa", "", "a month"]) + let v = native_list_append(v, ["manā", "noun", "manā", "", "", "", "ablative/vocative singular of"]) + let v = native_list_append(v, ["tithi", "noun", "tithi", "", "", "", "lunar day"]) + let v = native_list_append(v, ["जनक", "noun", "जनका", "जनकस्स", "जनकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सर", "noun", "सर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अहंकार", "noun", "अहंकारा", "अहंकारस्स", "अहंकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["बाहु", "noun", "बाहवो", "बाहुस्स", "बाहुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["कारण", "noun", "कारणानि", "कारणस्स", "कारणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["rūpe", "noun", "rūpe", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["rūpa", "noun", "rūpāni", "rūpassa", "rūpassa", "", "form figure material"]) + let v = native_list_append(v, ["rūpā", "noun", "rūpā", "", "", "", "inflection of rūpa"]) + let v = native_list_append(v, ["खर", "noun", "खरा", "खरस्स", "खरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मार", "noun", "मारा", "मारस्स", "मारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["कथा", "noun", "कथायो", "कथाय", "कथाय", "", "speech story talk"]) + let v = native_list_append(v, ["सीमा", "noun", "सीमा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["carā", "noun", "carā", "", "", "", "inflection of cara"]) + let v = native_list_append(v, ["वेला", "noun", "वेलायो", "वेलाय", "वेलाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["देस", "noun", "देसा", "देसस्स", "देसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sūci", "noun", "sūciyo", "sūciyā", "sūciyā", "", "needle"]) + let v = native_list_append(v, ["खरा", "noun", "खरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ទាន", "noun", "ទាន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अजगर", "noun", "अजगरा", "अजगरस्स", "अजगरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဝံ", "noun", "ဝံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ရေ", "noun", "ရေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝါ", "noun", "ဝါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["गुण", "noun", "गुणा", "गुणस्स", "गुणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["tīrā", "noun", "tīrā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["आकार", "noun", "आकारा", "आकारस्स", "आकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ထီ", "noun", "ထိယော", "ထိယာ", "ထိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["ထိ", "noun", "ထိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["kāma", "noun", "kāmā", "kāmassa", "kāmassa", "", "pleasure lust love"]) + let v = native_list_append(v, ["utuno", "noun", "utuno", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["मीन", "noun", "मीना", "मीनस्स", "मीनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["rosassa", "noun", "rosassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["kālā", "noun", "kālā", "", "", "", "inflection of kāla"]) + let v = native_list_append(v, ["nicca", "noun", "niccāni", "niccassa", "niccassa", "", "permanence"]) + let v = native_list_append(v, ["लिङ्ग", "noun", "लिङ्गानि", "लिङ्गस्स", "लिङ्गस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["passassa", "noun", "passassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["vema", "noun", "vemāni", "vemassa", "vemassa", "", "loom shuttle"]) + let v = native_list_append(v, ["dusa", "noun", "dusānaṃ", "dusassa", "", "", "The Pali root"]) + let v = native_list_append(v, ["पूजा", "noun", "पूजायो", "पूजाय", "पूजाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["nacca", "noun", "naccāni", "naccassa", "naccassa", "", "dancing for an"]) + let v = native_list_append(v, ["ສາສນາ", "noun", "ສາສນາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["यान", "noun", "यानानि", "यानस्स", "यानस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["citti", "noun", "cittiyo", "cittiyā", "cittiyā", "", "thought honour"]) + let v = native_list_append(v, ["ສວນ", "noun", "ສວນານິ", "ສວນສ຺ສ", "ສວນສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["visā", "noun", "visā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["ផល", "noun", "ផលានិ", "ផលស្ស", "ផលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["bāla", "noun", "bālā", "bālassa", "bālassa", "", "child"]) + let v = native_list_append(v, ["bālā", "noun", "bālāyo", "bālāya", "bālāya", "", "girl"]) + let v = native_list_append(v, ["bālo", "noun", "bālo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sappo", "noun", "sappo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tālu", "noun", "tālu", "", "", "", "palate"]) + let v = native_list_append(v, ["tālo", "noun", "tālo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tāla", "noun", "tālā", "tālassa", "tālassa", "", "palm Borassus flabellifer"]) + let v = native_list_append(v, ["गूथ", "noun", "गूथानि", "गूथस्स", "गूथस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["สามเณร", "noun", "สามเณรา", "สามเณรสฺส", "สามเณรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["জন", "noun", "জনা", "জনস্স", "জনস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["สัญญา", "noun", "สัญญาโย", "สัญญายะ", "สัญญายะ", "", "Thai script form"]) + let v = native_list_append(v, ["sāmaṇera", "noun", "sāmaṇerā", "sāmaṇerassa", "sāmaṇerassa", "", "novice monk"]) + let v = native_list_append(v, ["नरक", "noun", "नरका", "नरकस्स", "नरकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sutā", "noun", "sutāyo", "sutāya", "sutāya", "", "daughter"]) + let v = native_list_append(v, ["koso", "noun", "koso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ສາລີ", "noun", "ສາລີ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["billa", "noun", "billā", "billassa", "billassa", "", "marmelos tree"]) + let v = native_list_append(v, ["අය්‍යා", "noun", "අය්යායො", "අය්යාය", "අය්යාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["balissa", "noun", "balissa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["बिल", "noun", "बिलानि", "बिलस्स", "बिलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["desena", "noun", "desena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["อริย", "noun", "อริยา", "อริยสฺส", "อริยสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["mahā", "noun", "mahā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["กรุณา", "noun", "กรุณาโย", "กรุณาย", "กรุณาย", "", "Thai script form"]) + let v = native_list_append(v, ["ยาน", "noun", "ยานานิ", "ยานสฺส", "ยานสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["saras", "noun", "sarāni", "saraso", "saraso", "", "lake"]) + let v = native_list_append(v, ["មាស", "noun", "មាសា", "មាសស្ស", "មាសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សុវណ្ណ", "noun", "សុវណ្ណ", "", "", "", "gold"]) + let v = native_list_append(v, ["𑄢", "noun", "𑄢", "𑄢𑄥𑄴𑄥", "𑄢𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["थियो", "noun", "थियो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဥတု", "noun", "ဥတဝေါ", "ဥတုဿ", "ဥတုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ទ្វារ", "noun", "ទ្វារានិ", "ទ្វារស្ស", "ទ្វារស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["picu", "noun", "picavo", "picussa", "picussa", "", "cotton"]) + let v = native_list_append(v, ["tika", "noun", "tika", "", "", "", "triad"]) + let v = native_list_append(v, ["និគ្គហិត", "noun", "និគ្គហិតានិ", "និគ្គហិតស្ស", "និគ្គហិតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["វ", "noun", "វ", "វស្ស", "វស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["salla", "noun", "sallāni", "sallassa", "sallassa", "", "dart javelin"]) + let v = native_list_append(v, ["paritta", "noun", "parittāni", "parittassa", "parittassa", "", "safeguard"]) + let v = native_list_append(v, ["loha", "noun", "lohāni", "lohassa", "lohassa", "", "metal especially copper"]) + let v = native_list_append(v, ["dāna", "noun", "dānāni", "dānassa", "dānassa", "", "gift"]) + let v = native_list_append(v, ["ກະປິ", "noun", "ກະປະໂຍ", "ກະປິສສະ", "ກະປິສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ໂລກ", "noun", "ໂລກາ", "ໂລກສ຺ສ", "ໂລກສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["kāra", "noun", "kārā", "kārassa", "kārassa", "", "deed"]) + let v = native_list_append(v, ["bhava", "noun", "bhavā", "bhavassa", "bhavassa", "", "state of existence"]) + let v = native_list_append(v, ["ថោក", "noun", "ថោក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["មីន", "noun", "មីនា", "មីនស្ស", "មីនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ទិស", "noun", "ទិសា", "ទិសស្ស", "ទិសស្ស", "", "Devanagari script form"]) + let v = native_list_append(v, ["nāvā", "noun", "nāvāyo", "nāvāya", "nāvāya", "", "ship boat"]) + let v = native_list_append(v, ["vajira", "noun", "vajirāni", "vajirassa", "vajirassa", "", "thunderbolt"]) + let v = native_list_append(v, ["bhatta", "noun", "bhattāni", "bhattassa", "bhattassa", "", "boiled rice"]) + let v = native_list_append(v, ["mettā", "noun", "mettā", "", "", "", "goodwill loving-kindness"]) + let v = native_list_append(v, ["attā", "noun", "attā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["parisā", "noun", "parisāyo", "parisāya", "parisāya", "", "assembly collection"]) + let v = native_list_append(v, ["nīṭikā", "noun", "nīṭikāyo", "nīṭikāya", "nīṭikāya", "", "dancing girl"]) + let v = native_list_append(v, ["gahapati", "noun", "gahapatayo", "gahapatissa", "gahapatissa", "", "householder head of"]) + let v = native_list_append(v, ["kappāsa", "noun", "kappāsa", "", "", "", "cotton"]) + let v = native_list_append(v, ["kappūra", "noun", "kappūra", "", "", "", "camphor"]) + let v = native_list_append(v, ["nīra", "noun", "nīrāni", "nīrassa", "nīrassa", "", "water"]) + let v = native_list_append(v, ["arāti", "noun", "arātayo", "arātissa", "arātissa", "", "enemy"]) + let v = native_list_append(v, ["aggi", "noun", "aggayo", "aggissa", "aggissa", "", "fire"]) + let v = native_list_append(v, ["ahaṃkāra", "noun", "ahaṃkārā", "ahaṃkārassa", "ahaṃkārassa", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["ahichattaka", "noun", "ahichattakāni", "ahichattakassa", "ahichattakassa", "", "mushroom"]) + let v = native_list_append(v, ["ahiṃsā", "noun", "ahiṃsāyo", "ahiṃsāya", "ahiṃsāya", "", "nonviolence"]) + let v = native_list_append(v, ["ajā", "noun", "ajāyo", "ajāya", "ajāya", "", "she-goat"]) + let v = native_list_append(v, ["ākara", "noun", "ākarā", "ākarassa", "ākarassa", "", "a multitude"]) + let v = native_list_append(v, ["aññāṇa", "noun", "aññāṇa", "", "", "", "ignorance"]) + let v = native_list_append(v, ["aravinda", "noun", "aravindāni", "aravindassa", "aravindassa", "", "lotus"]) + let v = native_list_append(v, ["bāṇa", "noun", "bāṇā", "bāṇassa", "bāṇassa", "", "arrow"]) + let v = native_list_append(v, ["bhisakka", "noun", "bhisakka", "", "", "", "physician medical doctor"]) + let v = native_list_append(v, ["cakka", "noun", "cakkāni", "cakkassa", "cakkassa", "", "wheel"]) + let v = native_list_append(v, ["cakkhu", "noun", "cakkhūni", "cakkhussa", "cakkhussa", "", "eye"]) + let v = native_list_append(v, ["devatā", "noun", "devatāyo", "devatāya", "devatāya", "", "deity"]) + let v = native_list_append(v, ["hadaya", "noun", "hadayāni", "hadayassa", "hadayassa", "", "heart"]) + let v = native_list_append(v, ["iṇa", "noun", "iṇāni", "iṇassa", "iṇassa", "", "debt"]) + let v = native_list_append(v, ["iṇāyika", "noun", "iṇāyikā", "iṇāyikassa", "iṇāyikassa", "", "debtor"]) + let v = native_list_append(v, ["bhante", "noun", "bhante", "", "", "", "vocative singular/plural of"]) + let v = native_list_append(v, ["kalyāṇī", "noun", "kalyāṇiyo", "kalyāṇiyā", "kalyāṇiyā", "", "beautiful girl"]) + let v = native_list_append(v, ["पाळि", "noun", "पाळि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["gaṇikā", "noun", "gaṇikā", "", "", "", "prostitute"]) + let v = native_list_append(v, ["purisa", "noun", "purisā", "purisassa", "purisassa", "", "a man"]) + let v = native_list_append(v, ["sotas", "noun", "sotāni", "sotaso", "sotaso", "", "stream"]) + let v = native_list_append(v, ["សញ្ញា", "noun", "សញ្ញាយោ", "សញ្ញាយ", "សញ្ញាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["sārathi", "noun", "sārathayo", "sārathissa", "sārathissa", "", "charioteer"]) + let v = native_list_append(v, ["dāsī", "noun", "dāsiyo", "dāsiyā", "dāsiyā", "", "female slave"]) + let v = native_list_append(v, ["ពិល", "noun", "ពិលានិ", "ពិលស្ស", "ពិលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["accharā", "noun", "accharāyo", "accharāya", "accharāya", "", "celestial nymph"]) + let v = native_list_append(v, ["bandha", "noun", "bandhā", "bandhassa", "bandhassa", "", "tie bond fetter"]) + let v = native_list_append(v, ["lāpa", "noun", "lāpā", "lāpassa", "lāpassa", "", "talk"]) + let v = native_list_append(v, ["mehana", "noun", "mehanāni", "mehanassa", "mehanassa", "", "male or female"]) + let v = native_list_append(v, ["វិហារ", "noun", "វិហារា", "វិហារស្ស", "វិហារស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["सुनखो", "noun", "सुनखो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sunakho", "noun", "sunakho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["គីតា", "noun", "គីតា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["បាតុកម្ម", "noun", "បាតុកម្មានិ", "បាតុកម្មស្ស", "បាតុកម្មស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["វា", "noun", "វា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["រា", "noun", "រា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["មូល", "noun", "មូលានិ", "មូលស្ស", "មូលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["นายก", "noun", "นายกา", "นายกสฺส", "นายกสฺส", "", "leader master"]) + let v = native_list_append(v, ["thala", "noun", "thala", "", "", "", "land"]) + let v = native_list_append(v, ["pema", "noun", "pemā", "pemassa", "pemassa", "", "love affection"]) + let v = native_list_append(v, ["អាយ", "noun", "អាយា", "អាយស្ស", "អាយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ภริยา", "noun", "ภริยาโย", "ภริยาย", "ภริยาย", "", "Thai script form"]) + let v = native_list_append(v, ["สามี", "noun", "สามี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["sukha", "noun", "sukhāni", "sukhassa", "sukhassa", "", "happiness comfort"]) + let v = native_list_append(v, ["မင်္ဂလာ", "noun", "မင်္ဂလာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ရာ", "noun", "ရာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ကိစ္စ", "noun", "ကိစ္စာနိ", "ကိစ္စဿ", "ကိစ္စဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["papañca", "noun", "papañcā", "papañcassa", "papañcassa", "", "obstacle impediment"]) + let v = native_list_append(v, ["ခဏ", "noun", "ခဏာ", "ခဏဿ", "ခဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["vanā", "noun", "vanā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["ဂီတ", "noun", "ဂီတာနိ", "ဂီတဿ", "ဂီတဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["kattu", "noun", "kattu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["vanite", "noun", "vanite", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["रण", "noun", "रणानि", "रणस्स", "रणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अन्न", "noun", "अन्नानि", "अन्नस्स", "अन्नस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ธาตุ", "noun", "ธาตุโย", "ธาตุยา", "ธาตุยา", "", "Thai script form"]) + let v = native_list_append(v, ["रामा", "noun", "रामा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सेतु", "noun", "सेतवो", "सेतुस्स", "सेतुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vaṇa", "noun", "vaṇā", "vaṇassa", "vaṇassa", "", "wound"]) + let v = native_list_append(v, ["sithilatta", "noun", "sithilattāni", "sithilattassa", "sithilattassa", "", "looseness"]) + let v = native_list_append(v, ["भाव", "noun", "भावा", "भावस्स", "भावस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["akkhara", "noun", "akkharā", "akkharassa", "akkharassa", "", "letter"]) + let v = native_list_append(v, ["समूह", "noun", "समूहा", "समूहस्स", "समूहस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["नरो", "noun", "नरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["naro", "noun", "naro", "", "", "", "singular nominative of"]) + let v = native_list_append(v, ["दारको", "noun", "दारको", "", "", "", "child"]) + let v = native_list_append(v, ["dārako", "noun", "dārako", "", "", "", "child"]) + let v = native_list_append(v, ["गामो", "noun", "गामो", "", "", "", "village"]) + let v = native_list_append(v, ["gāmo", "noun", "gāmo", "", "", "", "village"]) + let v = native_list_append(v, ["जनको", "noun", "जनको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["janaka", "noun", "janakā", "janakassa", "janakassa", "", "father"]) + let v = native_list_append(v, ["ओदनो", "noun", "ओदनो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पुत्तो", "noun", "पुत्तो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सूदो", "noun", "सूदो", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sūdo", "noun", "sūdo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["yācako", "noun", "yācako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["याचको", "noun", "याचको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["rā", "noun", "rā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["vāri", "noun", "vārīni", "vārissa", "vārissa", "", "water"]) + let v = native_list_append(v, ["पिपासा", "noun", "पिपासायो", "पिपासाय", "पिपासाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["कोसल", "noun", "कोसला", "कोसलस्स", "कोसलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["suke", "noun", "suke", "", "", "", "inflection of suka"]) + let v = native_list_append(v, ["viveka", "noun", "vivekā", "vivekassa", "vivekassa", "", "detachment loneliness separation"]) + let v = native_list_append(v, ["vūpasama", "noun", "vūpasamā", "vūpasamassa", "vūpasamassa", "", "relief calmness cessation"]) + let v = native_list_append(v, ["ariya", "noun", "ariyā", "ariyassa", "ariyassa", "", "a noble man"]) + let v = native_list_append(v, ["paccaya", "noun", "paccayā", "paccayassa", "paccayassa", "", "cause motive"]) + let v = native_list_append(v, ["macca", "noun", "maccā", "maccassa", "maccassa", "", "man"]) + let v = native_list_append(v, ["lomahaṃsa", "noun", "lomahaṃsā", "lomahaṃsassa", "lomahaṃsassa", "", "goose bumps horripilation"]) + let v = native_list_append(v, ["khipitasadda", "noun", "khipitasaddā", "khipitasaddassa", "khipitasaddassa", "", "the sound of"]) + let v = native_list_append(v, ["mattha", "noun", "matthā", "matthassa", "matthassa", "", "head forehead"]) + let v = native_list_append(v, ["diṭṭhadhamma", "noun", "diṭṭhadhammā", "diṭṭhadhammassa", "diṭṭhadhammassa", "", "this world"]) + let v = native_list_append(v, ["massu", "noun", "massūni", "massussa", "massussa", "", "beard"]) + let v = native_list_append(v, ["vijjā", "noun", "vijjāyo", "vijjāya", "vijjāya", "", "higher knowledge science"]) + let v = native_list_append(v, ["nīvaraṇa", "noun", "nīvaraṇāni", "nīvaraṇassa", "nīvaraṇassa", "", "obstacle"]) + let v = native_list_append(v, ["giriguhā", "noun", "giriguhāyo", "giriguhāya", "giriguhāya", "", "a mountain cleft"]) + let v = native_list_append(v, ["susāna", "noun", "susānāni", "susānassa", "susānassa", "", "cemetery"]) + let v = native_list_append(v, ["dhutaṅga", "noun", "dhutaṅgāni", "dhutaṅgassa", "dhutaṅgassa", "", "an ascetic practice"]) + let v = native_list_append(v, ["palālapuñja", "noun", "palālapuñjā", "palālapuñjassa", "palālapuñjassa", "", "a heap of"]) + let v = native_list_append(v, ["middha", "noun", "middha", "", "", "", "torpor drowsiness"]) + let v = native_list_append(v, ["thīna", "noun", "thīna", "", "", "", "unwieldiness impalpability"]) + let v = native_list_append(v, ["bharaṇa", "noun", "bharaṇāni", "bharaṇassa", "bharaṇassa", "", "bearing supporting maintenance"]) + let v = native_list_append(v, ["dārabharaṇa", "noun", "dārabharaṇāni", "dārabharaṇassa", "dārabharaṇassa", "", "maintenance of a"]) + let v = native_list_append(v, ["bandhanāgāra", "noun", "bandhanāgārāni", "bandhanāgārassa", "bandhanāgārassa", "", "prison"]) + let v = native_list_append(v, ["kārā", "noun", "kārāyo", "kārāya", "kārāya", "", "jail"]) + let v = native_list_append(v, ["dāsabya", "noun", "dāsabyāni", "dāsabyassa", "dāsabyassa", "", "slavery"]) + let v = native_list_append(v, ["dāsabyatā", "noun", "dāsabyatāyo", "dāsabyatāya", "dāsabyatāya", "", "slavery"]) + let v = native_list_append(v, ["bhujissa", "noun", "bhujissā", "bhujissassa", "bhujissassa", "", "freeman a freed"]) + let v = native_list_append(v, ["dubbhikkha", "noun", "dubbhikkhāni", "dubbhikkhassa", "dubbhikkhassa", "", "famine"]) + let v = native_list_append(v, ["paṭibhaya", "noun", "paṭibhayāni", "paṭibhayassa", "paṭibhayassa", "", "fear terror fright"]) + let v = native_list_append(v, ["thāla", "noun", "thālā", "thālassa", "thālassa", "", "dish"]) + let v = native_list_append(v, ["sāya", "noun", "sāya", "", "", "", "This word appears"]) + let v = native_list_append(v, ["sneha", "noun", "snehā", "snehassa", "snehassa", "", "affection love"]) + let v = native_list_append(v, ["paggharaṇa", "noun", "paggharaṇāni", "paggharaṇassa", "paggharaṇassa", "", "A dripping trickling"]) + let v = native_list_append(v, ["rahada", "noun", "rahadā", "rahadassa", "rahadassa", "", "lake"]) + let v = native_list_append(v, ["udakarahada", "noun", "udakarahadā", "udakarahadassa", "udakarahadassa", "", "lake of water"]) + let v = native_list_append(v, ["āyamukha", "noun", "āyamukhāni", "āyamukhassa", "āyamukhassa", "", "inflow that which"]) + let v = native_list_append(v, ["āya", "noun", "āyā", "āyassa", "āyassa", "", "income profit"]) + let v = native_list_append(v, ["dhārā", "noun", "dhārāyo", "dhārāya", "dhārāya", "", "A torrent stream"]) + let v = native_list_append(v, ["puṇḍarīka", "noun", "puṇḍarīkāni", "puṇḍarīkassa", "puṇḍarīkassa", "", "white lotus"]) + let v = native_list_append(v, ["odātakasiṇa", "noun", "odātakasiṇāni", "odātakasiṇassa", "odātakasiṇassa", "", "object of meditation"]) + let v = native_list_append(v, ["ñāṇa", "noun", "ñāṇā", "ñāṇassa", "ñāṇassa", "", "A wisdom insight"]) + let v = native_list_append(v, ["ñāṇadassana", "noun", "ñāṇadassanāni", "ñāṇadassanassa", "ñāṇadassanassa", "", "perfect knowledge"]) + let v = native_list_append(v, ["odana", "noun", "odanāni", "odanassa", "odanassa", "", "boiled rice"]) + let v = native_list_append(v, ["kummāsa", "noun", "kummāsa", "", "", "", "barley bread"]) + let v = native_list_append(v, ["upacaya", "noun", "upacayā", "upacayassa", "upacayassa", "", "accumulation"]) + let v = native_list_append(v, ["veḷuriya", "noun", "veḷuriyāni", "veḷuriyassa", "veḷuriyassa", "", "lapis lazuli a"]) + let v = native_list_append(v, ["veṇu", "noun", "veṇavo", "veṇussa", "veṇussa", "", "bamboo"]) + let v = native_list_append(v, ["veḷu", "noun", "veḷavo", "veḷussa", "veḷussa", "", "bamboo"]) + let v = native_list_append(v, ["viddhaṃsana", "noun", "viddhaṃsanāni", "viddhaṃsanassa", "viddhaṃsanassa", "", "demolition destruction"]) + let v = native_list_append(v, ["parimaddana", "noun", "parimaddanāni", "parimaddanassa", "parimaddanassa", "", "rubbing"]) + let v = native_list_append(v, ["ucchādana", "noun", "ucchādanāni", "ucchādanassa", "ucchādanassa", "", "rubbing of the"]) + let v = native_list_append(v, ["aṃsa", "noun", "aṃsā", "aṃsassa", "aṃsassa", "", "shoulder"]) + let v = native_list_append(v, ["accha", "noun", "acchā", "acchassa", "acchassa", "", "bear"]) + let v = native_list_append(v, ["abhidosa", "noun", "abhidosā", "abhidosassa", "abhidosassa", "", "last evening"]) + let v = native_list_append(v, ["abhijjhā", "noun", "abhijjhāyo", "abhijjhāya", "abhijjhāya", "", "covetousness"]) + let v = native_list_append(v, ["niddesa", "noun", "niddesā", "niddesassa", "niddesassa", "", "description analytic explanation"]) + let v = native_list_append(v, ["muñja", "noun", "muñja", "", "", "", "a kind of"]) + let v = native_list_append(v, ["kosī", "noun", "kosiyo", "kosiyā", "kosiyā", "", "sheath"]) + let v = native_list_append(v, ["karaṇḍa", "noun", "karaṇḍā", "karaṇḍassa", "karaṇḍassa", "", "basket"]) + let v = native_list_append(v, ["tirobhāva", "noun", "tirobhāvā", "tirobhāvassa", "tirobhāvassa", "", "concealment disappearance"]) + let v = native_list_append(v, ["tirodhāna", "noun", "tirodhānāni", "tirodhānassa", "tirodhānassa", "", "cover lid screen"]) + let v = native_list_append(v, ["pākāra", "noun", "pākārā", "pākārassa", "pākārassa", "", "rampart encircling wall"]) + let v = native_list_append(v, ["tiropabbata", "noun", "tiropabbatā", "tiropabbatassa", "tiropabbatassa", "", "further side of"]) + let v = native_list_append(v, ["pabbata", "noun", "pabbatā", "pabbatassa", "pabbatassa", "", "mountain"]) + let v = native_list_append(v, ["ummujjanimujjā", "noun", "ummujjanimujjā", "", "", "", "emerging and diving"]) + let v = native_list_append(v, ["nimujjā", "noun", "nimujjāyo", "nimujjāya", "nimujjāya", "", "diving sinking ducking"]) + let v = native_list_append(v, ["udaka", "noun", "udakāni", "udakassa", "udakassa", "", "water"]) + let v = native_list_append(v, ["pallaṅka", "noun", "pallaṅkā", "pallaṅkassa", "pallaṅkassa", "", "throne sofa couch"]) + let v = native_list_append(v, ["brahmaloka", "noun", "brahmalokā", "brahmalokassa", "brahmalokassa", "", "a brahma world"]) + let v = native_list_append(v, ["mattikā", "noun", "mattikā", "", "", "", "clay soil"]) + let v = native_list_append(v, ["thūpa", "noun", "thūpā", "thūpassa", "thūpassa", "", "tope"]) + let v = native_list_append(v, ["kumbhakāra", "noun", "kumbhakārā", "kumbhakārassa", "kumbhakārassa", "", "potter"]) + let v = native_list_append(v, ["parikamma", "noun", "parikammāni", "parikammassa", "parikammassa", "", "arrangement preparation preliminary"]) + let v = native_list_append(v, ["dantakāra", "noun", "dantakārā", "dantakārassa", "dantakārassa", "", "ivorysmith an artisan"]) + let v = native_list_append(v, ["suvaṇṇakāra", "noun", "suvaṇṇakārā", "suvaṇṇakārassa", "suvaṇṇakārassa", "", "goldsmith"]) + let v = native_list_append(v, ["dibbasota", "noun", "dibbasotāni", "dibbasotassa", "dibbasotassa", "", "divine ear supernatural"]) + let v = native_list_append(v, ["addhānamagga", "noun", "addhānamaggā", "addhānamaggassa", "addhānamaggassa", "", "a long path"]) + let v = native_list_append(v, ["bheri", "noun", "bheriyo", "bheriyā", "bheriyā", "", "drum"]) + let v = native_list_append(v, ["bherisadda", "noun", "bherisadda", "", "", "", "sound of a"]) + let v = native_list_append(v, ["mutiṅga", "noun", "mutiṅgā", "mutiṅgassa", "mutiṅgassa", "", "a small drum"]) + let v = native_list_append(v, ["mudiṅga", "noun", "mudiṅgā", "mudiṅgassa", "mudiṅgassa", "", "a small drum"]) + let v = native_list_append(v, ["paṇava", "noun", "paṇavā", "paṇavassa", "paṇavassa", "", "a small drum"]) + let v = native_list_append(v, ["dindima", "noun", "dindimāni", "dindimassa", "dindimassa", "", "a musical instrument,a"]) + let v = native_list_append(v, ["cetopariyañāṇa", "noun", "cetopariyañāṇāni", "cetopariyañāṇassa", "cetopariyañāṇassa", "", "understanding the ways"]) + let v = native_list_append(v, ["rāga", "noun", "rāgā", "rāgassa", "rāgassa", "", "colour hue dye"]) + let v = native_list_append(v, ["ādāsa", "noun", "ādāsā", "ādāsassa", "ādāsassa", "", "mirror"]) + let v = native_list_append(v, ["pubbenivāsānussati", "noun", "pubbenivāsānussatiyo", "pubbenivāsānussatiyā", "pubbenivāsānussatiyā", "", "remembrance of ones"]) + let v = native_list_append(v, ["dibbacakkhu", "noun", "dibbacakkhu", "", "", "", "the divine eye"]) + let v = native_list_append(v, ["upapāta", "noun", "upapātā", "upapātassa", "upapātassa", "", "rebirth"]) + let v = native_list_append(v, ["suvaṇṇa", "noun", "suvaṇṇa", "", "", "", "gold"]) + let v = native_list_append(v, ["vinipāta", "noun", "vinipātā", "vinipātassa", "vinipātassa", "", "a place of"]) + let v = native_list_append(v, ["niraya", "noun", "niraya", "", "", "", "Purgatory hell"]) + let v = native_list_append(v, ["sagga", "noun", "sagga", "", "", "", "a place of"]) + let v = native_list_append(v, ["rathikā", "noun", "rathikāyo", "rathikāya", "rathikāya", "", "street"]) + let v = native_list_append(v, ["vīthi", "noun", "vīthiyo", "vīthiyā", "vīthiyā", "", "street"]) + let v = native_list_append(v, ["dukkhasamudaya", "noun", "dukkhasamudayā", "dukkhasamudayassa", "dukkhasamudayassa", "", "the origin of"]) + let v = native_list_append(v, ["dukkhanirodha", "noun", "dukkhanirodhā", "dukkhanirodhassa", "dukkhanirodhassa", "", "destruction of suffering"]) + let v = native_list_append(v, ["saṅkhepa", "noun", "saṅkhepā", "saṅkhepassa", "saṅkhepassa", "", "abridgement"]) + let v = native_list_append(v, ["sambuka", "noun", "sambukā", "sambukassa", "sambukassa", "", "oyster"]) + let v = native_list_append(v, ["macchagumba", "noun", "macchagumbā", "macchagumbassa", "macchagumbassa", "", "shoal of fish"]) + let v = native_list_append(v, ["upāsakatta", "noun", "upāsakattāni", "upāsakattassa", "upāsakattassa", "", "state of a"]) + let v = native_list_append(v, ["andhakāra", "noun", "andhakārā", "andhakārassa", "andhakārassa", "", "darkness blindness"]) + let v = native_list_append(v, ["upāsaka", "noun", "upāsakā", "upāsakassa", "upāsakassa", "", "a lay devotee"]) + let v = native_list_append(v, ["āpa", "noun", "āpāni", "āpassa", "āpassa", "", "water"]) + let v = native_list_append(v, ["dhammacakkhu", "noun", "dhammacakkhu", "", "", "", "the eye of"]) + let v = native_list_append(v, ["kosala", "noun", "kosalā", "kosalassa", "kosalassa", "", "inhabitant of Kosala"]) + let v = native_list_append(v, ["icchā", "noun", "icchāyo", "icchāya", "icchāya", "", "desire wish"]) + let v = native_list_append(v, ["naṅgala", "noun", "naṅgalāni", "naṅgalassa", "naṅgalassa", "", "plough"]) + let v = native_list_append(v, ["vanasaṇḍa", "noun", "vanasaṇḍā", "vanasaṇḍassa", "vanasaṇḍassa", "", "jungle thicket"]) + let v = native_list_append(v, ["nakkhatta", "noun", "nakkhattāni", "nakkhattassa", "nakkhattassa", "", "constellation esp. lunar"]) + let v = native_list_append(v, ["gāma", "noun", "gāmā", "gāmassa", "gāmassa", "", "village"]) + let v = native_list_append(v, ["brahmadeyya", "noun", "brahmadeyyāni", "brahmadeyyassa", "brahmadeyyassa", "", "a royal gift"]) + let v = native_list_append(v, ["rājadāya", "noun", "rājadāyā", "rājadāyassa", "rājadāyassa", "", "a royal gift"]) + let v = native_list_append(v, ["brāhmaṇa", "noun", "brāhmaṇā", "brāhmaṇassa", "brāhmaṇassa", "", "brahmin a man"]) + let v = native_list_append(v, ["kittisadda", "noun", "kittisaddā", "kittisaddassa", "kittisaddassa", "", "reputation"]) + let v = native_list_append(v, ["purisadamma", "noun", "purisadammā", "purisadammassa", "purisadammassa", "", "a person to"]) + let v = native_list_append(v, ["satthā", "noun", "satthā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["māradheyya", "noun", "māradheyyāni", "māradheyyassa", "māradheyyassa", "", "the realm of"]) + let v = native_list_append(v, ["māra", "noun", "mārā", "mārassa", "mārassa", "", "killer"]) + let v = native_list_append(v, ["māṇava", "noun", "māṇavā", "māṇavassa", "māṇavassa", "", "young man"]) + let v = native_list_append(v, ["nighaṇḍu", "noun", "nighaṇḍavo", "nighaṇḍussa", "nighaṇḍussa", "", "a dictionary of"]) + let v = native_list_append(v, ["pabheda", "noun", "pabhedā", "pabhedassa", "pabhedassa", "", "variety cleavage"]) + let v = native_list_append(v, ["akkharappabheda", "noun", "akkharappabhedā", "akkharappabhedassa", "akkharappabhedassa", "", "Distinction of letters"]) + let v = native_list_append(v, ["khara", "noun", "kharā", "kharassa", "kharassa", "", "donkey"]) + let v = native_list_append(v, ["itihāsa", "noun", "itihāsā", "itihāsassa", "itihāsassa", "", "history tradition"]) + let v = native_list_append(v, ["pātarāsa", "noun", "pātarāsā", "pātarāsassa", "pātarāsassa", "", "morning meal"]) + let v = native_list_append(v, ["निधि", "noun", "निधयो", "निधिस्स", "निधिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mahāpurisa", "noun", "mahāpurisā", "mahāpurisassa", "mahāpurisassa", "", "great man"]) + let v = native_list_append(v, ["lakkhaṇa", "noun", "lakkhaṇāni", "lakkhaṇassa", "lakkhaṇassa", "", "sign"]) + let v = native_list_append(v, ["sattaratana", "noun", "sattaratanāni", "sattaratanassa", "sattaratanassa", "", "seven kinds of"]) + let v = native_list_append(v, ["pariṇāyaka", "noun", "pariṇāyakā", "pariṇāyakassa", "pariṇāyakassa", "", "leader guide adviser"]) + let v = native_list_append(v, ["chada", "noun", "chadā", "chadassa", "chadassa", "", "veil"]) + let v = native_list_append(v, ["dātā", "noun", "dātā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["vaḷavā", "noun", "vaḷavāyo", "vaḷavāya", "vaḷavāya", "", "mare"]) + let v = native_list_append(v, ["māṇavaka", "noun", "māṇavakā", "māṇavakassa", "māṇavakassa", "", "a young man"]) + let v = native_list_append(v, ["kathāsallāpa", "noun", "kathāsallāpā", "kathāsallāpassa", "kathāsallāpassa", "", "friendly talk"]) + let v = native_list_append(v, ["sallāpa", "noun", "sallāpā", "sallāpassa", "sallāpassa", "", "friendly talk"]) + let v = native_list_append(v, ["vihāra", "noun", "vihārā", "vihārassa", "vihārassa", "", "a dwelling place"]) + let v = native_list_append(v, ["aggaḷa", "noun", "aggaḷā", "aggaḷassa", "aggaḷassa", "", "a wooden bolt"]) + let v = native_list_append(v, ["dvāra", "noun", "dvārāni", "dvārassa", "dvārassa", "", "door entrance gate"]) + let v = native_list_append(v, ["ibbha", "noun", "ibbhā", "ibbhassa", "ibbhassa", "", "retainer"]) + let v = native_list_append(v, ["apacca", "noun", "apaccāni", "apaccassa", "apaccassa", "", "offspring"]) + let v = native_list_append(v, ["kapilavatthu", "noun", "kapilavatthu", "kapilavatthussa", "kapilavatthussa", "", "Kapilavastu"]) + let v = native_list_append(v, ["patodaka", "noun", "patodakā", "patodakassa", "patodakassa", "", "spur"]) + let v = native_list_append(v, ["aṅguli", "noun", "aṅguliyo", "aṅguliyā", "aṅguliyā", "", "finger"]) + let v = native_list_append(v, ["laṭukikā", "noun", "laṭukikāyo", "laṭukikāya", "laṭukikāya", "", "the Indian quail"]) + let v = native_list_append(v, ["vaṭṭakā", "noun", "vaṭṭakāyo", "vaṭṭakāya", "vaṭṭakāya", "", "quail"]) + let v = native_list_append(v, ["kulāvaka", "noun", "kulāvakāni", "kulāvakassa", "kulāvakassa", "", "nest"]) + let v = native_list_append(v, ["ayana", "noun", "ayanāni", "ayanassa", "ayanassa", "", "path"]) + let v = native_list_append(v, ["rājā", "noun", "rājā", "", "", "", "inflection of rājan"]) + let v = native_list_append(v, ["piyā", "noun", "piyā", "", "", "", "inflection of piya"]) + let v = native_list_append(v, ["raṭṭha", "noun", "raṭṭha", "", "", "", "country reign kingdom"]) + let v = native_list_append(v, ["pokkharaṇī", "noun", "pokkharaṇiyo", "pokkharaṇiyā", "pokkharaṇiyā", "", "pond lotus pond"]) + let v = native_list_append(v, ["sambheda", "noun", "sambhedā", "sambhedassa", "sambhedassa", "", "mixing up"]) + let v = native_list_append(v, ["bhaginī", "noun", "bhaginiyo", "bhaginiyā", "bhaginiyā", "", "sister"]) + let v = native_list_append(v, ["pubbapurisa", "noun", "pubbapurisā", "pubbapurisassa", "pubbapurisassa", "", "ancestor"]) + let v = native_list_append(v, ["asuci", "noun", "asucayo", "asucissa", "asucissa", "", "dirt excrement dung"]) + let v = native_list_append(v, ["kalusa", "noun", "kalusāni", "kalusassa", "kalusassa", "", "sin"]) + let v = native_list_append(v, ["uklāpa", "noun", "uklāpā", "uklāpassa", "uklāpassa", "", "dirt"]) + let v = native_list_append(v, ["ammā", "noun", "ammāyo", "ammāya", "ammāya", "", "mother"]) + let v = native_list_append(v, ["vajirapāṇi", "noun", "vajirapāṇi", "", "", "", "having a diamond"]) + let v = native_list_append(v, ["rome", "noun", "rome", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["इन्द्रिय", "noun", "इन्द्रियानि", "इन्द्रियस्स", "इन्द्रियस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["cāpalla", "noun", "cāpalla", "", "", "", "fickleness"]) + let v = native_list_append(v, ["សទ្ធា", "noun", "សទ្ធា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វាយ", "noun", "វាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["द्वारा", "noun", "द्वारा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sukassa", "noun", "sukassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ចេតិយ", "noun", "ចេតិយានិ", "ចេតិយស្ស", "ចេតិយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["manussa", "noun", "manussā", "manussassa", "manussassa", "", "man human being"]) + let v = native_list_append(v, ["atithi", "noun", "atithayo", "atithissa", "atithissa", "", "guest"]) + let v = native_list_append(v, ["अभिदोस", "noun", "अभिदोसा", "अभिदोसस्स", "अभिदोसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["အဘိဒေါသ", "noun", "အဘိဒေါသာ", "အဘိဒေါသဿ", "အဘိဒေါသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["อภิโทส", "noun", "อภิโทสา", "อภิโทสสฺส", "อภิโทสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["อาพาธ", "noun", "อาพาธา", "อาพาธสฺส", "อาพาธสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["अभिज्झा", "noun", "अभिज्झायो", "अभिज्झाय", "अभिज्झाय", "", "covetousness"]) + let v = native_list_append(v, ["အဘိဇ္ဈာ", "noun", "အဘိဇ္ဈာယော", "အဘိဇ္ဈာယ", "အဘိဇ္ဈာယ", "", "covetousness"]) + let v = native_list_append(v, ["อภิชฺฌา", "noun", "อภิชฺฌาโย", "อภิชฺฌาย", "อภิชฺฌาย", "", "covetousness"]) + let v = native_list_append(v, ["အစ္ဆ", "noun", "အစ္ဆာ", "အစ္ဆဿ", "အစ္ဆဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["अच्छ", "noun", "अच्छा", "अच्छस्स", "अच्छस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["อจฺฉ", "noun", "อจฺฉา", "อจฺฉสฺส", "อจฺฉสฺส", "", "bear"]) + let v = native_list_append(v, ["अच्छरा", "noun", "अच्छरायो", "अच्छराय", "अच्छराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["အစ္ဆရာ", "noun", "အစ္ဆရာယော", "အစ္ဆရာယ", "အစ္ဆရာယ", "", "finger"]) + let v = native_list_append(v, ["อจฺฉรา", "noun", "อจฺฉราโย", "อจฺฉราย", "อจฺฉราย", "", "finger"]) + let v = native_list_append(v, ["आदास", "noun", "आदासा", "आदासस्स", "आदासस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["အာဒါသ", "noun", "အာဒါသာ", "အာဒါသဿ", "အာဒါသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["อาทาส", "noun", "อาทาสา", "อาทาสสฺส", "อาทาสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["अद्धानमग्ग", "noun", "अद्धानमग्गा", "अद्धानमग्गस्स", "अद्धानमग्गस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["အဒ္ဓါနမဂ္ဂ", "noun", "အဒ္ဓါနမဂ္ဂါ", "အဒ္ဓါနမဂ္ဂဿ", "အဒ္ဓါနမဂ္ဂဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["អទ្ធានមគ្គ", "noun", "អទ្ធានមគ្គា", "អទ្ធានមគ្គស្ស", "អទ្ធានមគ្គស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["อทฺธานมคฺค", "noun", "อทฺธานมคฺคา", "อทฺธานมคฺคสฺส", "อทฺธานมคฺคสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["អាពាធ", "noun", "អាពាធា", "អាពាធស្ស", "អាពាធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អាទាស", "noun", "អាទាសា", "អាទាសស្ស", "អាទាសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អភិទោស", "noun", "អភិទោសា", "អភិទោសស្ស", "អភិទោសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អភិជ្ឈា", "noun", "អភិជ្ឈាយោ", "អភិជ្ឈាយ", "អភិជ្ឈាយ", "", "covetousness"]) + let v = native_list_append(v, ["អច្ឆ", "noun", "អច្ឆា", "អច្ឆស្ស", "អច្ឆស្ស", "", "bear"]) + let v = native_list_append(v, ["អច្ឆរា", "noun", "អច្ឆរាយោ", "អច្ឆរាយ", "អច្ឆរាយ", "", "finger"]) + let v = native_list_append(v, ["अग्गल", "noun", "अग्गलानि", "अग्गलस्स", "अग्गलस्स", "", "a wooden bolt"]) + let v = native_list_append(v, ["अग्गळ", "noun", "अग्गळानि", "अग्गळस्स", "अग्गळस्स", "", "a wooden bolt"]) + let v = native_list_append(v, ["အဂ္ဂဠ", "noun", "အဂ္ဂဠာနိ", "အဂ္ဂဠဿ", "အဂ္ဂဠဿ", "", "a wooden bolt"]) + let v = native_list_append(v, ["អគ្គឡ", "noun", "អគ្គឡានិ", "អគ្គឡស្ស", "អគ្គឡស្ស", "", "a wooden bolt"]) + let v = native_list_append(v, ["อคฺคฬ", "noun", "อคฺคฬานิ", "อคฺคฬสฺส", "อคฺคฬสฺส", "", "a wooden bolt"]) + let v = native_list_append(v, ["อคฺคล", "noun", "อคฺคลานิ", "อคฺคลสฺส", "อคฺคลสฺส", "", "a wooden bolt"]) + let v = native_list_append(v, ["गाम", "noun", "गामा", "गामस्स", "गामस्स", "", "village"]) + let v = native_list_append(v, ["ဂါမ", "noun", "ဂါမာ", "ဂါမဿ", "ဂါမဿ", "", "village"]) + let v = native_list_append(v, ["គាម", "noun", "គាមា", "គាមស្ស", "គាមស្ស", "", "village"]) + let v = native_list_append(v, ["คาม", "noun", "คามา", "คามสฺส", "คามสฺส", "", "village"]) + let v = native_list_append(v, ["अग्गि", "noun", "अग्गयो", "अग्गिस्स", "अग्गिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["အဂ္ဂိ", "noun", "အဂ္ဂယော", "အဂ္ဂိဿ", "အဂ္ဂိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["អគ្គិ", "noun", "អគ្គយោ", "អគ្គិស្ស", "អគ្គិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["อคฺคิ", "noun", "อคฺคโย", "อคฺคิสฺส", "อคฺคิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["अहङ्कार", "noun", "अहङ्कारा", "अहङ्कारस्स", "अहङ्कारस्स", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["အဟံကာရ", "noun", "အဟံကာရာ", "အဟံကာရဿ", "အဟံကာရဿ", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["អហំការ", "noun", "អហំការា", "អហំការស្ស", "អហំការស្ស", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["អហង្ការ", "noun", "អហង្ការា", "អហង្ការស្ស", "អហង្ការស្ស", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["อหํการ", "noun", "อหํการา", "อหํการสฺส", "อหํการสฺส", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["อหงฺการ", "noun", "อหงฺการา", "อหงฺการสฺส", "อหงฺการสฺส", "", "egotism arrogance ahamkara"]) + let v = native_list_append(v, ["အဟိ", "noun", "အဟယော", "အဟိဿ", "အဟိဿ", "", "snake serpent"]) + let v = native_list_append(v, ["អហិ", "noun", "អហយោ", "អហិស្ស", "អហិស្ស", "", "snake serpent"]) + let v = native_list_append(v, ["อหิ", "noun", "อหโย", "อหิสฺส", "อหิสฺส", "", "snake serpent"]) + let v = native_list_append(v, ["अहिछत्तक", "noun", "अहिछत्तकानि", "अहिछत्तकस्स", "अहिछत्तकस्स", "", "mushroom"]) + let v = native_list_append(v, ["အဟိဆတ္တက", "noun", "အဟိဆတ္တကာနိ", "အဟိဆတ္တကဿ", "အဟိဆတ္တကဿ", "", "mushroom"]) + let v = native_list_append(v, ["អហិឆត្តក", "noun", "អហិឆត្តកានិ", "អហិឆត្តកស្ស", "អហិឆត្តកស្ស", "", "mushroom"]) + let v = native_list_append(v, ["อหิฉตฺตก", "noun", "อหิฉตฺตกานิ", "อหิฉตฺตกสฺส", "อหิฉตฺตกสฺส", "", "mushroom"]) + let v = native_list_append(v, ["इस्स", "noun", "इस्सा", "इस्सस्स", "इस्सस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဣဿ", "noun", "ဣဿာ", "ဣဿဿ", "ဣဿဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ឥស្ស", "noun", "ឥស្សា", "ឥស្សស្ស", "ឥស្សស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["อิสฺส", "noun", "อิสฺสา", "อิสฺสสฺส", "อิสฺสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ဈာန", "noun", "ဈာန", "", "", "", "a state of"]) + let v = native_list_append(v, ["ឈាន", "noun", "ឈាន", "", "", "", "a state of"]) + let v = native_list_append(v, ["ဒွါရ", "noun", "ဒွါရာနိ", "ဒွါရဿ", "ဒွါရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ทฺวาร", "noun", "ทฺวารานิ", "ทฺวารสฺส", "ทฺวารสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["jhāpana", "noun", "jhāpanāni", "jhāpanassa", "jhāpanassa", "", "setting fire to"]) + let v = native_list_append(v, ["झापन", "noun", "झापनानि", "झापनस्स", "झापनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဈာပန", "noun", "ဈာပနာနိ", "ဈာပနဿ", "ဈာပနဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ឈាបន", "noun", "ឈាបនានិ", "ឈាបនស្ស", "ឈាបនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ញាណ", "noun", "ញាណ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဉာဏ", "noun", "ဉာဏာ", "ဉာဏဿ", "ဉာဏဿ", "", "A wisdom insight"]) + let v = native_list_append(v, ["ञाण", "noun", "ञाणा", "ञाणस्स", "ञाणस्स", "", "A wisdom insight"]) + let v = native_list_append(v, ["kumme", "noun", "kumme", "", "", "", "inflection of kumma"]) + let v = native_list_append(v, ["kumbha", "noun", "kumbhā", "kumbhassa", "kumbhassa", "", "water pot pitcher"]) + let v = native_list_append(v, ["भव", "noun", "भवा", "भवस्स", "भवस्स", "", "state of existence"]) + let v = native_list_append(v, ["vaṇibbaka", "noun", "vaṇibbakā", "vaṇibbakassa", "vaṇibbakassa", "", "pauper"]) + let v = native_list_append(v, ["yācaka", "noun", "yācakā", "yācakassa", "yācakassa", "", "beggar"]) + let v = native_list_append(v, ["puñña", "noun", "puññāni", "puññassa", "puññassa", "", "merit"]) + let v = native_list_append(v, ["तेल", "noun", "तेलानि", "तेलस्स", "तेलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["မာရ", "noun", "မာရာ", "မာရဿ", "မာရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["មារ", "noun", "មារា", "មារស្ស", "មារស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["มาร", "noun", "มารา", "มารสฺส", "มารสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["vattā", "noun", "vattā", "", "", "", "alternative citation form"]) + let v = native_list_append(v, ["kukkuṭa", "noun", "kukkuṭā", "kukkuṭassa", "kukkuṭassa", "", "cock rooster"]) + let v = native_list_append(v, ["cīvara", "noun", "cīvarāni", "cīvarassa", "cīvarassa", "", "yellow robe"]) + let v = native_list_append(v, ["rukkha", "noun", "rukkhā", "rukkhassa", "rukkhassa", "", "tree"]) + let v = native_list_append(v, ["वो", "noun", "वो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["madhu", "noun", "madhu", "", "", "", "honey"]) + let v = native_list_append(v, ["ปณฺณ", "noun", "ปณฺณานิ", "ปณฺณสฺส", "ปณฺณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["បណ្ណ", "noun", "បណ្ណានិ", "បណ្ណស្ស", "បណ្ណស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["yañña", "noun", "yaññā", "yaññassa", "yaññassa", "", "sacrifice"]) + let v = native_list_append(v, ["pahāra", "noun", "pahārā", "pahārassa", "pahārassa", "", "blow"]) + let v = native_list_append(v, ["tiṇa", "noun", "tiṇāni", "tiṇassa", "tiṇassa", "", "grass"]) + let v = native_list_append(v, ["kathā", "noun", "kathāyo", "kathāya", "kathāya", "", "speech story talk"]) + let v = native_list_append(v, ["បិណ្ឌ", "noun", "បិណ្ឌា", "បិណ្ឌស្ស", "បិណ្ឌស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["បោស", "noun", "បោសា", "បោសស្ស", "បោសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ពន្ធ", "noun", "ពន្ធា", "ពន្ធស្ស", "ពន្ធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["bhāvanā", "noun", "bhāvanāyo", "bhāvanāya", "bhāvanāya", "", "meditation"]) + let v = native_list_append(v, ["magga", "noun", "maggā", "maggassa", "maggassa", "", "road way path"]) + let v = native_list_append(v, ["sarīra", "noun", "sarīrāni", "sarīrassa", "sarīrassa", "", "body of human"]) + let v = native_list_append(v, ["vālavedhī", "noun", "vālavedhī", "", "", "", "inflection of vālavedhin"]) + let v = native_list_append(v, ["भाग", "noun", "भागा", "भागस्स", "भागस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["makkhikā", "noun", "makkhikāyo", "makkhikāya", "makkhikāya", "", "fly"]) + let v = native_list_append(v, ["gāvī", "noun", "gāviyo", "gāviyā", "gāviyā", "", "cow"]) + let v = native_list_append(v, ["मत", "noun", "मतानि", "मतस्स", "मतस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["तिथि", "noun", "तिथि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तिल", "noun", "तिलानि", "तिलस्स", "तिलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vacana", "noun", "vacanāni", "vacanassa", "vacanassa", "", "utterance"]) + let v = native_list_append(v, ["ādicca", "noun", "ādiccā", "ādiccassa", "ādiccassa", "", "sun"]) + let v = native_list_append(v, ["adhipaññā", "noun", "adhipaññāyo", "adhipaññāya", "adhipaññāya", "", "higher wisdom"]) + let v = native_list_append(v, ["vimutti", "noun", "vimuttiyo", "vimuttiyā", "vimuttiyā", "", "release deliverance emancipation"]) + let v = native_list_append(v, ["pubbaṇha", "noun", "pubbaṇhā", "pubbaṇhassa", "pubbaṇhassa", "", "morning"]) + let v = native_list_append(v, ["divasa", "noun", "divasa", "", "", "", "day"]) + let v = native_list_append(v, ["kotūhala", "noun", "kotūhalāni", "kotūhalassa", "kotūhalassa", "", "excitement"]) + let v = native_list_append(v, ["वाक्य", "noun", "वाक्यानि", "वाक्यस्स", "वाक्यस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["जटिल", "noun", "जटिला", "जटिलस्स", "जटिलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["भगिनी", "noun", "भगिनियो", "भगिनिया", "भगिनिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["ākāsa", "noun", "ākāsā", "ākāsassa", "ākāsassa", "", "space sky atmosphere"]) + let v = native_list_append(v, ["samāpatti", "noun", "samāpattiyo", "samāpattiyā", "samāpattiyā", "", "attainment"]) + let v = native_list_append(v, ["ācariya", "noun", "ācariyā", "ācariyassa", "ācariyassa", "", "teacher"]) + let v = native_list_append(v, ["vaḍḍhakī", "noun", "vaḍḍhakī", "", "", "", "inflection of vaḍḍhaki"]) + let v = native_list_append(v, ["maraṇa", "noun", "maraṇāni", "maraṇassa", "maraṇassa", "", "death"]) + let v = native_list_append(v, ["abbhāgata", "noun", "abbhāgata", "", "", "", "guest"]) + let v = native_list_append(v, ["chavi", "noun", "chaviyo", "chaviyā", "chaviyā", "", "skin"]) + let v = native_list_append(v, ["saṅkha", "noun", "saṅkhā", "saṅkhassa", "saṅkhassa", "", "chank"]) + let v = native_list_append(v, ["nivesana", "noun", "nivesanāni", "nivesanassa", "nivesanassa", "", "settlement house"]) + let v = native_list_append(v, ["samaṇa", "noun", "samaṇā", "samaṇassa", "samaṇassa", "", "samana sramana a"]) + let v = native_list_append(v, ["layo", "noun", "layo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pāṭihāriya", "noun", "pāṭihāriya", "", "", "", "miracle marvel"]) + let v = native_list_append(v, ["pāramī", "noun", "pāramiyo", "pāramiyā", "pāramiyā", "", "completeness perfection"]) + let v = native_list_append(v, ["aṭṭhi", "noun", "aṭṭhīni", "aṭṭhissa", "aṭṭhissa", "", "bone"]) + let v = native_list_append(v, ["gīta", "noun", "gītāni", "gītassa", "gītassa", "", "song"]) + let v = native_list_append(v, ["uṇṇa", "noun", "uṇṇāni", "uṇṇassa", "uṇṇassa", "", "wool"]) + let v = native_list_append(v, ["khetta", "noun", "khettāni", "khettassa", "khettassa", "", "field"]) + let v = native_list_append(v, ["naraka", "noun", "narakā", "narakassa", "narakassa", "", "purgatory hell"]) + let v = native_list_append(v, ["nadī", "noun", "nadiyo", "nadiyā", "nadiyā", "", "river"]) + let v = native_list_append(v, ["ມີນາ", "noun", "ມີນາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຕຸລາ", "noun", "ຕຸລາໂຍ", "ຕຸລາຍ", "ຕຸລາຍ", "", "Lao script form"]) + let v = native_list_append(v, ["tittira", "noun", "tittira", "", "", "", "partridge"]) + let v = native_list_append(v, ["candimā", "noun", "candimāne", "candimassa", "candimassa", "", "the moon"]) + let v = native_list_append(v, ["kāka", "noun", "kākā", "kākassa", "kākassa", "", "crow"]) + let v = native_list_append(v, ["vivana", "noun", "vivanāni", "vivanassa", "vivanassa", "", "wilderness"]) + let v = native_list_append(v, ["নখ", "noun", "নখা", "নখস্স", "নখস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["obhāsa", "noun", "obhāsā", "obhāsassa", "obhāsassa", "", "light"]) + let v = native_list_append(v, ["devaputta", "noun", "devaputta", "", "", "", "son of a"]) + let v = native_list_append(v, ["ruhira", "noun", "ruhirāni", "ruhirassa", "ruhirassa", "", "blood"]) + let v = native_list_append(v, ["वाले", "noun", "वाले", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kalaha", "noun", "kalahā", "kalahassa", "kalahassa", "", "quarrel"]) + let v = native_list_append(v, ["जनता", "noun", "जनतायो", "जनताय", "जनताय", "", "Devanagari script form"]) + let v = native_list_append(v, ["khīra", "noun", "khīrāni", "khīrassa", "khīrassa", "", "milk milky liquid"]) + let v = native_list_append(v, ["यो", "noun", "यो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मीना", "noun", "मीना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["devā", "noun", "devā", "", "", "", "plural nominative of"]) + let v = native_list_append(v, ["suriya", "noun", "suriyā", "suriyassa", "suriyassa", "", "sun"]) + let v = native_list_append(v, ["जना", "noun", "जना", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["कालो", "noun", "कालो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मूल", "noun", "मूलानि", "मूलस्स", "मूलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["खीर", "noun", "खीरानि", "खीरस्स", "खीरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ratane", "noun", "ratane", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["पापा", "noun", "पापा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["สุขา", "noun", "สุขา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["yuge", "noun", "yuge", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["उपाय", "noun", "उपाया", "उपायस्स", "उपायस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["धारणा", "noun", "धारणा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["សន្តិ", "noun", "សន្តិយោ", "សន្តិយា", "សន្តិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["siddha", "noun", "siddhāni", "siddhassa", "siddhassa", "", "success"]) + let v = native_list_append(v, ["siñcaka", "noun", "siñcakā", "siñcakassa", "siñcakassa", "", "watering"]) + let v = native_list_append(v, ["porisa", "noun", "porisa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ඵල", "noun", "ඵලානි", "ඵලස්ස", "ඵලස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဖလ", "noun", "ဖလာနိ", "ဖလဿ", "ဖလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["mittatā", "noun", "mittatā", "", "", "", "friendship"]) + let v = native_list_append(v, ["lohita", "noun", "lohitāni", "lohitassa", "lohitassa", "", "blood"]) + let v = native_list_append(v, ["sakkharā", "noun", "sakkharāyo", "sakkharāya", "sakkharāya", "", "gravel"]) + let v = native_list_append(v, ["दाता", "noun", "दाता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["aggatā", "noun", "aggatā", "", "", "", "pre-eminence prominence superiority"]) + let v = native_list_append(v, ["sakkā", "noun", "sakkā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["ද්වාර", "noun", "ද්වාරානි", "ද්වාරස්ස", "ද්වාරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["दासी", "noun", "दासियो", "दासिया", "दासिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["අහිඡත්තක", "noun", "අහිඡත්තකානි", "අහිඡත්තකස්ස", "අහිඡත්තකස්ස", "", "mushroom"]) + let v = native_list_append(v, ["khajja", "noun", "khajjāni", "khajjassa", "khajjassa", "", "solid food usually"]) + let v = native_list_append(v, ["පණ‍්ණ", "noun", "පණ්ණානි", "පණ්ණස්ස", "පණ්ණස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["dheyya", "noun", "dheyyāni", "dheyyassa", "dheyyassa", "", "realm"]) + let v = native_list_append(v, ["คีต", "noun", "คีตานิ", "คีตสฺส", "คีตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["គីត", "noun", "គីតានិ", "គីតស្ស", "គីតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ගීත", "noun", "ගීතානි", "ගීතස්ස", "ගීතස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["รฏฺฐ", "noun", "รฏฺฐานิ", "รฏฺฐสฺส", "รฏฺฐสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["रट्ठ", "noun", "रट्ठानि", "रट्ठस्स", "रट्ठस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ရဋ္ဌ", "noun", "ရဋ္ဌာနိ", "ရဋ္ဌဿ", "ရဋ္ဌဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["රට්ඨ", "noun", "රට්ඨානි", "රට්ඨස්ස", "රට්ඨස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["sikkhāpada", "noun", "sikkhāpadāni", "sikkhāpadassa", "sikkhāpadassa", "", "a set of"]) + let v = native_list_append(v, ["sikkhā", "noun", "sikkhāyo", "sikkhāya", "sikkhāya", "", "study discipline"]) + let v = native_list_append(v, ["vākya", "noun", "vākyāni", "vākyassa", "vākyassa", "", "sentence saying"]) + let v = native_list_append(v, ["จิตฺต", "noun", "จิตฺตานิ", "จิตฺตสฺส", "จิตฺตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["චිත්ත", "noun", "චිත්තානි", "චිත්තස්ස", "චිත්තස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["vā", "noun", "vā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["kākī", "noun", "kākiyo", "kākiyā", "kākiyā", "", "female equivalent of"]) + let v = native_list_append(v, ["rāja", "noun", "rāja", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["niddā", "noun", "niddāyo", "niddāya", "niddāya", "", "sleep slumber"]) + let v = native_list_append(v, ["mantin", "noun", "mantino", "mantissa", "mantissa", "", "counsellor"]) + let v = native_list_append(v, ["mālā", "noun", "mālāyo", "mālāya", "mālāya", "", "garland wreath"]) + let v = native_list_append(v, ["māla", "noun", "mālā", "mālassa", "mālassa", "", "circular enclosure round"]) + let v = native_list_append(v, ["mānī", "noun", "mānino", "mānissa", "mānissa", "", "one who is"]) + let v = native_list_append(v, ["māyā", "noun", "māyā", "", "", "", "fraud"]) + let v = native_list_append(v, ["mithuna", "noun", "mithunāni", "mithunassa", "mithunassa", "", "a pair of"]) + let v = native_list_append(v, ["muttā", "noun", "muttāyo", "muttāya", "muttāya", "", "pearl"]) + let v = native_list_append(v, ["mudā", "noun", "mudā", "", "", "", "gladness"]) + let v = native_list_append(v, ["muddā", "noun", "muddāyo", "muddāya", "muddāya", "", "seal"]) + let v = native_list_append(v, ["mūga", "noun", "mūgā", "mūgassa", "mūgassa", "", "dumb person"]) + let v = native_list_append(v, ["चरा", "noun", "चरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["megha", "noun", "meghā", "meghassa", "meghassa", "", "cloud"]) + let v = native_list_append(v, ["meṇḍa", "noun", "meṇḍā", "meṇḍassa", "meṇḍassa", "", "ram sheep"]) + let v = native_list_append(v, ["medha", "noun", "medhā", "medhassa", "medhassa", "", "intellectual"]) + let v = native_list_append(v, ["medhā", "noun", "medhā", "", "", "", "wisdom"]) + let v = native_list_append(v, ["mokkha", "noun", "mokkhā", "mokkhassa", "mokkhassa", "", "release freedom deliverance"]) + let v = native_list_append(v, ["chāyā", "noun", "chāyāyo", "chāyāya", "chāyāya", "", "shade shadow"]) + let v = native_list_append(v, ["ඉස්ස", "noun", "ඉස්සා", "ඉස්සස්ස", "ඉස්සස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["issā", "noun", "issāyo", "issāya", "issāya", "", "jealousy"]) + let v = native_list_append(v, ["bhāsā", "noun", "bhāsāyo", "bhāsāya", "bhāsāya", "", "language"]) + let v = native_list_append(v, ["bhaya", "noun", "bhayāni", "bhayassa", "bhayassa", "", "fear fright"]) + let v = native_list_append(v, ["ဘူမိ", "noun", "ဘူမိယော", "ဘူမိယာ", "ဘူမိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["bādhā", "noun", "bādhā", "", "", "", "hindrance"]) + let v = native_list_append(v, ["जम्बु", "noun", "जम्बुयो", "जम्बुया", "जम्बुया", "", "Devanagari script form"]) + let v = native_list_append(v, ["itthi", "noun", "itthiyo", "itthiyā", "itthiyā", "", "woman female"]) + let v = native_list_append(v, ["bhavati", "noun", "bhavati", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["माने", "noun", "माने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bandhu", "noun", "bandhavo", "bandhussa", "bandhussa", "", "kinsman"]) + let v = native_list_append(v, ["bīja", "noun", "bījāni", "bījassa", "bījassa", "", "seed germ"]) + let v = native_list_append(v, ["rūpiya", "noun", "rūpiyāni", "rūpiyassa", "rūpiyassa", "", "silver"]) + let v = native_list_append(v, ["bhaga", "noun", "bhagāni", "bhagassa", "bhagassa", "", "luck fortune"]) + let v = native_list_append(v, ["bhatti", "noun", "bhattiyo", "bhattiyā", "bhattiyā", "", "service devotion"]) + let v = native_list_append(v, ["bhisi", "noun", "bhisi", "", "", "", "cushion pad"]) + let v = native_list_append(v, ["bhisa", "noun", "bhisa", "", "", "", "lotus plant root"]) + let v = native_list_append(v, ["pāla", "noun", "pālā", "pālassa", "pālassa", "", "keeper guardian protector"]) + let v = native_list_append(v, ["pānīya", "noun", "pānīya", "", "", "", "water"]) + let v = native_list_append(v, ["tipusa", "noun", "tipusa", "", "", "", "pumpkin"]) + let v = native_list_append(v, ["titti", "noun", "tittiyo", "tittiyā", "tittiyā", "", "satisfaction contentment"]) + let v = native_list_append(v, ["រន្ធ", "noun", "រន្ធានិ", "រន្ធស្ស", "រន្ធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["soṇa", "noun", "soṇā", "soṇassa", "soṇassa", "", "a dog"]) + let v = native_list_append(v, ["oṭṭha", "noun", "oṭṭha", "", "", "", "lip"]) + let v = native_list_append(v, ["bhātar", "noun", "bhātāro", "bhātu", "bhātu", "", "brother"]) + let v = native_list_append(v, ["मुद्दा", "noun", "muddāyo", "muddāya", "muddāya", "", "Devanagari script form"]) + let v = native_list_append(v, ["pitte", "noun", "pitte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["randha", "noun", "randhāni", "randhassa", "randhassa", "", "an opening"]) + let v = native_list_append(v, ["ສາຍ", "noun", "ສາຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sahacara", "noun", "sahacarā", "sahacarassa", "sahacarassa", "", "gadling"]) + let v = native_list_append(v, ["इसी", "noun", "इसी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सहचर", "noun", "सहचरा", "सहचरस्स", "सहचरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["तर", "noun", "तर", "तरस्स", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["यस", "noun", "यस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गुणा", "noun", "गुणा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["काया", "noun", "काया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["កាល", "noun", "កាលា", "កាលស្ស", "កាលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ពន្ធនាគារ", "noun", "ពន្ធនាគារានិ", "ពន្ធនាគារស្ស", "ពន្ធនាគារស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["भोग", "noun", "भोग", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["โลหิต", "noun", "โลหิตานิ", "โลหิตสฺส", "โลหิตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["paṃsu", "noun", "paṃsavo", "paṃsussa", "paṃsussa", "", "dust"]) + let v = native_list_append(v, ["santosa", "noun", "santosa", "", "", "", "contentment"]) + let v = native_list_append(v, ["bodhisatta", "noun", "bodhisattā", "bodhisattassa", "bodhisattassa", "", "bodhisattva one destined"]) + let v = native_list_append(v, ["agāra", "noun", "agārāni", "agārassa", "agārassa", "", "home house dwelling"]) + let v = native_list_append(v, ["สวน", "noun", "สวนานิ", "สวนสฺส", "สวนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ราคา", "noun", "ราคา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["คุรุ", "noun", "คุรโว", "คุรุสฺส", "คุรุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["bhikkhave", "noun", "bhikkhave", "", "", "", "vocative plural of"]) + let v = native_list_append(v, ["upādāparitassanā", "noun", "upādāparitassanāyo", "upādāparitassanāya", "upādāparitassanāya", "", "agitation through clinging"]) + let v = native_list_append(v, ["bhagavā", "noun", "bhagavā", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["samaya", "noun", "samayā", "samayassa", "samayassa", "", "time occasion"]) + let v = native_list_append(v, ["dhammā", "noun", "dhammā", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["anupādāaparitassanā", "noun", "anupādāaparitassanāyo", "anupādāaparitassanāya", "anupādāaparitassanāya", "", "non-agitation through non-clinging"]) + let v = native_list_append(v, ["bālaka", "noun", "bālakā", "bālakassa", "bālakassa", "", "boy kid"]) + let v = native_list_append(v, ["nibbāna", "noun", "nibbānāni", "nibbānassa", "nibbānassa", "", "nirvana"]) + let v = native_list_append(v, ["tārāpatha", "noun", "tārāpatha", "", "", "", "the sky"]) + let v = native_list_append(v, ["ukkāra", "noun", "ukkāra", "", "", "", "dung excrement"]) + let v = native_list_append(v, ["pāḷi", "noun", "pāḷi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āyasmā", "noun", "āyasmā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["นที", "noun", "นทิโย", "นทิยา", "นทิยา", "", "Thai script form"]) + let v = native_list_append(v, ["khaggavisāṇa", "noun", "khaggavisāṇa", "", "", "", "rhinoceros"]) + let v = native_list_append(v, ["ādi", "noun", "ādayo", "ādissa", "ādissa", "", "beginnings origin"]) + let v = native_list_append(v, ["lakkhī", "noun", "lakkhiyo", "lakkhiyā", "lakkhiyā", "", "fortune luck"]) + let v = native_list_append(v, ["लक्खी", "noun", "लक्खी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dhammaṃ", "noun", "dhammaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["bhikkhū", "noun", "bhikkhū", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["kathaṃ", "noun", "kathaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["samudda", "noun", "samuddā", "samuddassa", "samuddassa", "", "the ocean a"]) + let v = native_list_append(v, ["mahāsamudda", "noun", "mahāsamuddā", "mahāsamuddassa", "mahāsamuddassa", "", "the great ocean"]) + let v = native_list_append(v, ["bhagavato", "noun", "bhagavato", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bhagavantaṃ", "noun", "bhagavantaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["kicca", "noun", "kiccāni", "kiccassa", "kiccassa", "", "that which ought"]) + let v = native_list_append(v, ["dhārāyanta", "noun", "dhārāyantāni", "dhārāyantassa", "dhārāyantassa", "", "a fountain"]) + let v = native_list_append(v, ["धारायन्त", "noun", "धारायन्तानि", "धारायन्तस्स", "धारायन्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ratha", "noun", "rathā", "rathassa", "rathassa", "", "a chariot a"]) + let v = native_list_append(v, ["ānanda", "noun", "ānandā", "ānandassa", "ānandassa", "", "joy bliss happiness"]) + let v = native_list_append(v, ["anicca", "noun", "aniccāni", "aniccassa", "aniccassa", "", "impermanence"]) + let v = native_list_append(v, ["vāta", "noun", "vātā", "vātassa", "vātassa", "", "wind"]) + let v = native_list_append(v, ["vedanā", "noun", "vedanāyo", "vedanāya", "vedanāya", "", "perception feeling sensation"]) + let v = native_list_append(v, ["viññāṇa", "noun", "viññāṇāni", "viññāṇassa", "viññāṇassa", "", "consciousness"]) + let v = native_list_append(v, ["sattha", "noun", "satthāni", "satthassa", "satthassa", "", "sword"]) + let v = native_list_append(v, ["pāpa", "noun", "pāpāni", "pāpassa", "pāpassa", "", "a sin bad"]) + let v = native_list_append(v, ["saddhā", "noun", "saddhāyo", "saddhāya", "saddhāya", "", "faith confidence"]) + let v = native_list_append(v, ["paññā", "noun", "paññāyo", "paññāya", "paññāya", "", "wisdom"]) + let v = native_list_append(v, ["velā", "noun", "velāyo", "velāya", "velāya", "", "time"]) + let v = native_list_append(v, ["mūla", "noun", "mūla", "", "", "", "root"]) + let v = native_list_append(v, ["yuddha", "noun", "yuddhāni", "yuddhassa", "yuddhassa", "", "battle war fight"]) + let v = native_list_append(v, ["paṭṭana", "noun", "paṭṭana", "", "", "", "seaport"]) + let v = native_list_append(v, ["pesana", "noun", "pesana", "", "", "", "a sending"]) + let v = native_list_append(v, ["osāna", "noun", "osāna", "", "", "", "end"]) + let v = native_list_append(v, ["paribbājaka", "noun", "paribbājakā", "paribbājakassa", "paribbājakassa", "", "a wandering ascetic"]) + let v = native_list_append(v, ["antevāsika", "noun", "antevāsika", "", "", "", "student pupil disciple"]) + let v = native_list_append(v, ["avaṇṇa", "noun", "avaṇṇā", "avaṇṇassa", "avaṇṇassa", "", "blame"]) + let v = native_list_append(v, ["vaṇṇa", "noun", "vaṇṇā", "vaṇṇassa", "vaṇṇassa", "", "colour"]) + let v = native_list_append(v, ["āghāta", "noun", "āghātā", "āghātassa", "āghātassa", "", "anger ill-will malice"]) + let v = native_list_append(v, ["appaccaya", "noun", "appaccaya", "", "", "", "discontent dissatisfaction"]) + let v = native_list_append(v, ["anabhiraddhi", "noun", "anabhiraddhi", "", "", "", "wrath"]) + let v = native_list_append(v, ["somanassa", "noun", "somanassāni", "somanassassa", "somanassassa", "", "gladness"]) + let v = native_list_append(v, ["kāre", "noun", "kāre", "", "", "", "inflection of kāra"]) + let v = native_list_append(v, ["𑀧𑀼𑀢𑁆𑀢", "noun", "𑀧𑀼𑀢𑁆𑀢𑀸", "𑀧𑀼𑀢𑁆𑀢𑀲𑁆𑀲", "𑀧𑀼𑀢𑁆𑀢𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ubbega", "noun", "ubbegā", "ubbegassa", "ubbegassa", "", "excitement"]) + let v = native_list_append(v, ["usumā", "noun", "usumāyo", "usumāya", "usumāya", "", "heat"]) + let v = native_list_append(v, ["usmā", "noun", "usmāyo", "usmāya", "usmāya", "", "alternative form of"]) + let v = native_list_append(v, ["uraga", "noun", "uragā", "uragassa", "uragassa", "", "snake"]) + let v = native_list_append(v, ["gadrabha", "noun", "gadrabhā", "gadrabhassa", "gadrabhassa", "", "donkey"]) + let v = native_list_append(v, ["gāthā", "noun", "gāthāyo", "gāthāya", "gāthāya", "", "verse stanza"]) + let v = native_list_append(v, ["peyyāla", "noun", "peyyālāni", "peyyālassa", "peyyālassa", "", "repetition"]) + let v = native_list_append(v, ["rājāmacca", "noun", "rājāmacca", "", "", "", "minister of a"]) + let v = native_list_append(v, ["dosinā", "noun", "dosināyo", "dosināya", "dosināya", "", "a clear night"]) + let v = native_list_append(v, ["ambavana", "noun", "ambavana", "", "", "", "mango grove"]) + let v = native_list_append(v, ["नीर", "noun", "नीर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["paccatthika", "noun", "paccatthika", "", "", "", "enemy opponent adversary"]) + let v = native_list_append(v, ["dīpa", "noun", "dīpā", "dīpassa", "dīpassa", "", "island"]) + let v = native_list_append(v, ["gandha", "noun", "gandhā", "gandhassa", "gandhassa", "", "odor scent perfume"]) + let v = native_list_append(v, ["दाना", "noun", "दाना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["धनु", "noun", "धनूनि", "धनुस्स", "धनुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अन्धकार", "noun", "अन्धकारा", "अन्धकारस्स", "अन्धकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["อกฺขร", "noun", "อกฺขร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ហត្ថ", "noun", "ហត្ថា", "ហត្ថស្ស", "ហត្ថស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["มโน", "noun", "มโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ambu", "noun", "ambūni", "ambussa", "ambussa", "", "water"]) + let v = native_list_append(v, ["သဒ္ဒါ", "noun", "သဒ္ဒါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["អាប", "noun", "អាបានិ", "អាបស្ស", "អាបស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ambesu", "noun", "ambesu", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["𑀳𑀢𑁆𑀣", "noun", "𑀳𑀢𑁆𑀣𑀸", "𑀳𑀢𑁆𑀣𑀲𑁆𑀲", "𑀳𑀢𑁆𑀣𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["अम्म", "noun", "अम्म", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["महाराज", "noun", "महाराज", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["netu", "noun", "netu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["वाला", "noun", "वाला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["นาก", "noun", "นากา", "นากสฺส", "นากสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨽᩣᩈᩣ", "noun", "ᨽᩣᩈᩣᨿᩮᩣ", "ᨽᩣᩈᩣᨿ", "ᨽᩣᩈᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["दिस", "noun", "दिसा", "दिसस्स", "दिसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဝေါဟာရ", "noun", "ဝေါဟာရာ", "ဝေါဟာရဿ", "ဝေါဟာရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["เทวโลก", "noun", "เทวโลกา", "เทวโลกสฺส", "เทวโลกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["बाण", "noun", "बाणा", "बाणस्स", "बाणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["pāti", "noun", "pāti", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pātī", "noun", "pātiyo", "pātiyā", "pātiyā", "", "bowl vessel dish"]) + let v = native_list_append(v, ["มติ", "noun", "มติโย", "มติยา", "มติยา", "", "Thai script form"]) + let v = native_list_append(v, ["दार", "noun", "दारा", "दारस्स", "दारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["លោហិត", "noun", "លោហិតានិ", "លោហិតស្ស", "លោហិតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["देवो", "noun", "देवो", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ចោល", "noun", "ចោលា", "ចោលស្ស", "ចោលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ភូត", "noun", "ភូតា", "ភូតានំ", "ភូតានំ", "", "Khmer script form"]) + let v = native_list_append(v, ["ភរ", "noun", "ភរ", "ភរស្ស", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kalaho", "noun", "kalaho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ৰ", "noun", "ৰ", "ৰস্স", "ৰস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["រស", "noun", "រសា", "រសស្ស", "រសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["កម្ម", "noun", "កម្មានិ", "កម្មស្ស", "កម្មស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["นาค", "noun", "นาคา", "นาคสฺส", "นาคสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["𑀓𑀡𑁆𑀡", "noun", "𑀓𑀡𑁆𑀡𑀸", "𑀓𑀡𑁆𑀡𑀲𑁆𑀲", "𑀓𑀡𑁆𑀡𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["दुक्ख", "noun", "दुक्ख", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["វត្ថុ", "noun", "វត្ថុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["គុណ", "noun", "គុណា", "គុណស្ស", "គុណស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["វេន", "noun", "វេន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["អាគម", "noun", "អាគមា", "អាគមស្ស", "អាគមស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ទេស", "noun", "ទេសា", "ទេសស្ស", "ទេសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ຣ", "noun", "ຣ", "ຣສ຺ສ", "ຣສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ຊະນະ", "noun", "ຊະນາ", "ຊະນັສສະ", "ຊະນັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["អតីត", "noun", "អតីតា", "អតីតស្ស", "អតីតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ជន", "noun", "ជនា", "ជនស្ស", "ជនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["នរក", "noun", "នរក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["រោគ", "noun", "រោគា", "រោគស្ស", "រោគស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["सती", "noun", "सती", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ឥន្ទ្រិយ", "noun", "ឥន្ទ្រិយានិ", "ឥន្ទ្រិយស្ស", "ឥន្ទ្រិយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["វិញ្ញាណ", "noun", "វិញ្ញាណានិ", "វិញ្ញាណស្ស", "វិញ្ញាណស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អត្ថ", "noun", "អត្ថា", "អត្ថស្ស", "អត្ថស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ទេវ", "noun", "ទេវា", "ទេវស្ស", "ទេវស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["កថា", "noun", "កថាយោ", "កថាយ", "កថាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["aṇḍa", "noun", "aṇḍāni", "aṇḍassa", "aṇḍassa", "", "egg"]) + let v = native_list_append(v, ["chava", "noun", "chava", "", "", "", "corpse"]) + let v = native_list_append(v, ["បូជា", "noun", "បូជាយោ", "បូជាយ", "បូជាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["याचक", "noun", "याचका", "याचकस्स", "याचकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["អាវុធ", "noun", "អាវុធានិ", "អាវុធស្ស", "អាវុធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["मङ्गला", "noun", "मङ्गला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhikkhuni", "noun", "bhikkhuni", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["गुद", "noun", "गुदानि", "गुदस्स", "गुदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ภาวนา", "noun", "ภาวนาโย", "ภาวนาย", "ภาวนาย", "", "Thai script form"]) + let v = native_list_append(v, ["काक", "noun", "काका", "काकस्स", "काकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["วาย", "noun", "วาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["จาร", "noun", "จาร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["มาตรา", "noun", "มาตรา", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["คณิกา", "noun", "คณิกา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["दाडिम", "noun", "दाडिमा", "दाडिमस्स", "दाडिमस्स", "", "pomegranate tree"]) + let v = native_list_append(v, ["piyo", "noun", "piyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["อุปราช", "noun", "อุปราชา", "อุปราชสฺส", "อุปราชสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["นราย", "noun", "นราย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["มหาราช", "noun", "มหาราช", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทาตุ", "noun", "ทาตุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["အသီ", "noun", "အသီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဘု", "noun", "ဘု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["สูท", "noun", "สูทา", "สูทสฺส", "สูทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สาวก", "noun", "สาวกา", "สาวกสฺส", "สาวกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สิคาล", "noun", "สิคาลา", "สิคาลสฺส", "สิคาลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ฉายา", "noun", "ฉายาโย", "ฉายาย", "ฉายาย", "", "Thai script form"]) + let v = native_list_append(v, ["yasā", "noun", "yasā", "", "", "", "ablative/vocative singular of"]) + let v = native_list_append(v, ["กร", "noun", "กร", "กรสฺส", "", "", "Thai script form"]) + let v = native_list_append(v, ["โรม", "noun", "โรมานิ", "โรมสฺส", "โรมสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["कुम्भ", "noun", "कुम्भा", "कुम्भस्स", "कुम्भस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गमन", "noun", "गमनानि", "गमनस्स", "गमनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sakke", "noun", "sakke", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["ภิกขุ", "noun", "ภิกขะโว", "ภิกขุสสะ", "ภิกขุสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["อสุจิ", "noun", "อสุจโย", "อสุจิสฺส", "อสุจิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["उपासक", "noun", "उपासका", "उपासकस्स", "उपासकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["อาย", "noun", "อายา", "อายสฺส", "อายสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["सुता", "noun", "सुतायो", "सुताय", "सुताय", "", "Devanagari script form"]) + let v = native_list_append(v, ["मुनि", "noun", "munayo", "munissa", "munissa", "", "Devanagari script form"]) + let v = native_list_append(v, ["ตุลา", "noun", "ตุลาโย", "ตุลาย", "ตุลาย", "", "Thai script form"]) + let v = native_list_append(v, ["มีนา", "noun", "มีนา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["diṭṭhi", "noun", "diṭṭhiyo", "diṭṭhiyā", "diṭṭhiyā", "", "view"]) + let v = native_list_append(v, ["เร", "noun", "เร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ခေတ္တ", "noun", "ခေတ္တာနိ", "ခေတ္တဿ", "ခေတ္တဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဇယ", "noun", "ဇယာ", "ဇယဿ", "ဇယဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["စန္ဒာ", "noun", "စန္ဒာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อาราม", "noun", "อารามา", "อารามสฺส", "อารามสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ර", "noun", "ර", "රස්ස", "රස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ව", "noun", "ව", "වස්ස", "වස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ස", "noun", "ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["အာကာသ", "noun", "အာကာသာ", "အာကာသဿ", "အာကာသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["অসম", "noun", "অসমানি", "অসমস্স", "অসমস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["သရ", "noun", "သရာ", "သရဿ", "သရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["พีช", "noun", "พีชานิ", "พีชสฺส", "พีชสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สิทธิ", "noun", "สิทธิโย", "สิทธิยา", "สิทธิยา", "", "Thai script without"]) + let v = native_list_append(v, ["ယောနိ", "noun", "ယောနိယော", "ယောနိယာ", "ယောနိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["မရဏ", "noun", "မရဏ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["හිම", "noun", "හිමානි", "හිමස්ස", "හිමස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ຫິມະ", "noun", "ຫິມານິ", "ຫິມັສສະ", "ຫິມັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["โอชา", "noun", "โอชา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ရသ", "noun", "ရသာ", "ရသဿ", "ရသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝတ္ထု", "noun", "ဝတ္ထု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝါဒ", "noun", "ဝါဒါ", "ဝါဒဿ", "ဝါဒဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["မေတ္တာ", "noun", "မေတ္တာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["မနုဿ", "noun", "မနုဿာ", "မနုဿဿ", "မနုဿဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ပါတီ", "noun", "ပါတိယော", "ပါတိယာ", "ပါတိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["লোক", "noun", "লোকা", "লোকস্স", "লোকস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ဒေသ", "noun", "ဒေသာ", "ဒေသဿ", "ဒေသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဗီဇာ", "noun", "ဗီဇာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝါသနာ", "noun", "ဝါသနာယော", "ဝါသနာယ", "ဝါသနာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["วิสา", "noun", "วิสา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["caturaṅga", "noun", "caturaṅga", "", "", "", "a type of"]) + let v = native_list_append(v, ["iṭṭhakā", "noun", "iṭṭhakā", "", "", "", "brick"]) + let v = native_list_append(v, ["দাস", "noun", "দাসা", "দাসস্স", "দাসস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ဝါကျ", "noun", "ဝါကျာနိ", "ဝါကျဿ", "ဝါကျဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["สุก", "noun", "สุกา", "สุกสฺส", "สุกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["มน", "noun", "มน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ရောမ", "noun", "ရောမာနိ", "ရောမဿ", "ရောမဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["vagge", "noun", "vagge", "", "", "", "inflection of vagga"]) + let v = native_list_append(v, ["ပဏ္ဏာ", "noun", "ပဏ္ဏာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ภมร", "noun", "ภมรา", "ภมรสฺส", "ภมรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["အာဏာ", "noun", "အာဏာယော", "အာဏာယ", "အာဏာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝဏ္ဏ", "noun", "ဝဏ္ဏာ", "ဝဏ္ဏဿ", "ဝဏ္ဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["เวท", "noun", "เวทา", "เวทสฺส", "เวทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ဂီတာ", "noun", "ဂီတာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ရာဇ", "noun", "ရာဇ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ชรา", "noun", "ชราโย", "ชราย", "ชราย", "", "Thai script form"]) + let v = native_list_append(v, ["ပဇာ", "noun", "ပဇာယော", "ပဇာယ", "ပဇာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["มายา", "noun", "มายา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โทสะ", "noun", "โทสา", "โทสัสสะ", "โทสัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["โทส", "noun", "โทสา", "โทสสฺส", "โทสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["โทโส", "noun", "โทโส", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ဗာလ", "noun", "ဗာလာ", "ဗာလဿ", "ဗာလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["အသိ", "noun", "အသယော", "အသိဿ", "အသိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ပညာ", "noun", "ပညာယော", "ပညာယ", "ပညာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["နိဒ္ဒေသ", "noun", "နိဒ္ဒေသာ", "နိဒ္ဒေသဿ", "နိဒ္ဒေသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["बक", "noun", "बका", "बकस्स", "बकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ताल", "noun", "ताला", "तालस्स", "तालस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["उदक", "noun", "उदकानि", "उदकस्स", "उदकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सामि", "noun", "सामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["taṇhā", "noun", "taṇhā", "", "", "", "thirst desire craving"]) + let v = native_list_append(v, ["सरस्", "noun", "सरानि", "सरसो", "सरसो", "", "Devanagari script form"]) + let v = native_list_append(v, ["समा", "noun", "समायो", "समाय", "समाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["उलूक", "noun", "उलूका", "उलूकस्स", "उलूकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अम्बा", "noun", "अम्बायो", "अम्बाय", "अम्बाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["suvaṇṇabhūmi", "noun", "suvaṇṇabhūmiyo", "suvaṇṇabhūmiyā", "suvaṇṇabhūmiyā", "", "land of gold"]) + let v = native_list_append(v, ["तण्हा", "noun", "तण्हायो", "तण्हाय", "तण्हाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["कोस", "noun", "कोसा", "कोसस्स", "कोसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["पितु", "noun", "पितु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वाल", "noun", "वाला", "वालस्स", "वालस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["gamu", "noun", "gamu", "gamussa", "", "", "The Pali root"]) + let v = native_list_append(v, ["कवच", "noun", "कवचा", "कवचस्स", "कवचस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["हत्थ", "noun", "हत्था", "हत्थस्स", "हत्थस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["पुत्त", "noun", "पुत्ता", "पुत्तस्स", "पुत्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["बला", "noun", "बला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀫𑁂", "noun", "𑀅𑀲𑁆𑀫𑁂", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["भर", "noun", "भर", "भरस्स", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["थोक", "noun", "थोकानि", "थोकस्स", "थोकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["गुह", "noun", "गुह", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["พุทธะ", "noun", "พุทธะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["सत्ता", "noun", "सत्ता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀲𑀫𑀼𑀤𑁆𑀤", "noun", "𑀲𑀫𑀼𑀤𑁆𑀤", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["वसा", "noun", "वसायो", "वसाय", "वसाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["सुरा", "noun", "सुरायो", "सुराय", "सुराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀓𑀝𑁆𑀞", "noun", "𑀓𑀝𑁆𑀞𑀸𑀦𑀺", "𑀓𑀝𑁆𑀞𑀲𑁆𑀲", "𑀓𑀝𑁆𑀞𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀅𑀢𑁆𑀢", "noun", "𑀅𑀢𑁆𑀢", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["रे", "noun", "रे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["असिना", "noun", "असिना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नासे", "noun", "नासे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नासासु", "noun", "नासासु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["महाराजा", "noun", "महाराजा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मना", "noun", "मना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tharo", "noun", "tharo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["वासा", "noun", "वासा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["काकी", "noun", "काकियो", "काकिया", "काकिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["ककार", "noun", "ककारा", "ककारस्स", "ककारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["हकार", "noun", "हकारा", "हकारस्स", "हकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["चकार", "noun", "चकारा", "चकारस्स", "चकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["उपकार", "noun", "उपकारा", "उपकारस्स", "उपकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["यकार", "noun", "यकारा", "यकारस्स", "यकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["जन्तु", "noun", "जन्तु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["राजदूत", "noun", "राजदूता", "राजदूतस्स", "राजदूतस्स", "", "royal messenger government"]) + let v = native_list_append(v, ["သုခ", "noun", "သုခါနိ", "သုခဿ", "သုခဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["चोल", "noun", "चोला", "चोलस्स", "चोलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["pesse", "noun", "pesse", "", "", "", "inflection of pessa"]) + let v = native_list_append(v, ["thoka", "noun", "thokāni", "thokassa", "thokassa", "", "a trifle"]) + let v = native_list_append(v, ["mātar", "noun", "mātaro", "mātu", "mātu", "", "mother"]) + let v = native_list_append(v, ["virāga", "noun", "virāgā", "virāgassa", "virāgassa", "", "dispassionateness"]) + let v = native_list_append(v, ["nirodha", "noun", "nirodhā", "nirodhassa", "nirodhassa", "", "cessation"]) + let v = native_list_append(v, ["sadda", "noun", "saddā", "saddassa", "saddassa", "", "sound word"]) + let v = native_list_append(v, ["असित", "noun", "असितानि", "असितस्स", "असितस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["rajja", "noun", "rajjāni", "rajjassa", "rajjassa", "", "kingship rule reign"]) + let v = native_list_append(v, ["भुजा", "noun", "भुजा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भेद", "noun", "भेदा", "भेदस्स", "भेदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अज", "noun", "अजा", "अजस्स", "अजस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["তেজ", "noun", "তেজ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["suṇisā", "noun", "suṇisā", "", "", "", "daughter-in-law"]) + let v = native_list_append(v, ["इसि", "noun", "इसयो", "इसिस्स", "इसिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["suvāna", "noun", "suvāna", "", "", "", "dog"]) + let v = native_list_append(v, ["তিল", "noun", "তিলানি", "তিলস্স", "তিলস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["nahāru", "noun", "nahāravo", "nahārussa", "nahārussa", "", "sinew tendon"]) + let v = native_list_append(v, ["yūsa", "noun", "yūsā", "yūsassa", "yūsassa", "", "broth soup"]) + let v = native_list_append(v, ["bhamu", "noun", "bhamū", "bhamūnaṃ", "bhamūnaṃ", "", "eyebrow"]) + let v = native_list_append(v, ["सद्दा", "noun", "सद्दा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["usabha", "noun", "usabhā", "usabhassa", "usabhassa", "", "bull"]) + let v = native_list_append(v, ["वास", "noun", "वासा", "वासस्स", "वासस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["niggahita", "noun", "niggahitāni", "niggahitassa", "niggahitassa", "", "The nasal consonant"]) + let v = native_list_append(v, ["आयतन", "noun", "आयतनानि", "आयतनस्स", "आयतनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["जव", "noun", "जव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pitito", "noun", "pitito", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["नये", "noun", "नये", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सन्", "noun", "सा", "सस्स", "सस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["जनपद", "noun", "जनपदा", "जनपदस्स", "जनपदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मेधा", "noun", "मेधा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["आदान", "noun", "आदानानि", "आदानस्स", "आदानस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["वु", "noun", "वु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तय", "noun", "तय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ສະສາ", "noun", "ສະສາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["बन्धु", "noun", "बन्धवो", "बन्धुस्स", "बन्धुस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["dāra", "noun", "dārā", "dārassa", "dārassa", "", "young woman"]) + let v = native_list_append(v, ["pakkhin", "noun", "pakkhino", "pakkhissa", "pakkhissa", "", "bird winged one"]) + let v = native_list_append(v, ["বিল", "noun", "বিল", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["อาการ", "noun", "อาการา", "อาการสฺส", "อาการสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ກາກ", "noun", "ກາກາ", "ກາກສ຺ສ", "ກາກສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["𑀪𑀫𑀭", "noun", "𑀪𑀫𑀭𑀸", "𑀪𑀫𑀭𑀲𑁆𑀲", "𑀪𑀫𑀭𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀲𑀻𑀳", "noun", "𑀲𑀻𑀳𑀸", "𑀲𑀻𑀳𑀲𑁆𑀲", "𑀲𑀻𑀳𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["dosena", "noun", "dosena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["तालु", "noun", "तालु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["อคติ", "noun", "อคติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["দহ", "noun", "দহ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["มาลา", "noun", "มาลาโย", "มาลาย", "มาลาย", "", "Thai script form"]) + let v = native_list_append(v, ["धारा", "noun", "धारायो", "धाराय", "धाराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["jaya", "noun", "jayā", "jayassa", "jayassa", "", "victory"]) + let v = native_list_append(v, ["เสก", "noun", "เสกา", "เสกสฺส", "เสกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["cheda", "noun", "chedā", "chedassa", "chedassa", "", "severance"]) + let v = native_list_append(v, ["ဒုက္ခ", "noun", "ဒုက္ခ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อากร", "noun", "อากรา", "อากรสฺส", "อากรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["อาคม", "noun", "อาคมา", "อาคมสฺส", "อาคมสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["วิธี", "noun", "วิธี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เวร", "noun", "เวรานิ", "เวรสฺส", "เวรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["सिक्का", "noun", "सिक्कायो", "सिक्काय", "सिक्काय", "", "Devanagari script form"]) + let v = native_list_append(v, ["ৰং", "noun", "ৰং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["অনা", "noun", "অনা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["गोधूम", "noun", "गोधूमा", "गोधूमस्स", "गोधूमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["guṇa", "noun", "guṇā", "guṇassa", "guṇassa", "", "string cord"]) + let v = native_list_append(v, ["आदी", "noun", "आदी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["आया", "noun", "आया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["তীর", "noun", "তীরানি", "তীরস্স", "তীরস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["เสนา", "noun", "เสนาโย", "เสนาย", "เสนาย", "", "Thai script form"]) + let v = native_list_append(v, ["ရောဂါ", "noun", "ရောဂါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["কাম", "noun", "কামা", "কামস্স", "কামস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["เลขา", "noun", "เลขาโย", "เลขาย", "เลขาย", "", "Thai script form"]) + let v = native_list_append(v, ["มห", "noun", "มหา", "มหสฺส", "มหสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["কথা", "noun", "কথাযো", "কথায", "কথায", "", "Bengali script form"]) + let v = native_list_append(v, ["জনা", "noun", "জনা", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["सुत", "noun", "सुत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भगवा", "noun", "भगवा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["অন্ত", "noun", "অন্তা", "অন্তস্স", "অন্তস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["vutti", "noun", "vuttiyo", "vuttiyā", "vuttiyā", "", "conduct habit practice"]) + let v = native_list_append(v, ["কলহ", "noun", "কলহা", "কলহস্স", "কলহস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["কাল", "noun", "কালা", "কালস্স", "কালস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["সুখ", "noun", "সুখানি", "সুখস্স", "সুখস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["গীতা", "noun", "গীতা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["গুণ", "noun", "গুণ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["anayo", "noun", "anayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["मोच", "noun", "मोच", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["মাঘ", "noun", "মাঘা", "মাঘস্স", "মাঘস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["कलह", "noun", "कलहा", "कलहस्स", "कलहस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["মন", "noun", "মন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["লোম", "noun", "লোমানি", "লোমস্স", "লোমস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["বাহু", "noun", "বাহৰো", "বাহুস্স", "বাহুস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["পাতি", "noun", "পাতি", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ধনু", "noun", "ধনূনি", "ধনুস্স", "ধনুস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ဥက္ကာ", "noun", "ဥက္ကာယော", "ဥက္ကာယ", "ဥက္ကာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["বন্ধা", "noun", "বন্ধা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["জলা", "noun", "জলা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["aggha", "noun", "agghā", "agghassa", "agghassa", "", "value worth"]) + let v = native_list_append(v, ["द्वारे", "noun", "द्वारे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀕𑁆𑀕𑀺", "noun", "𑀅𑀕𑁆𑀕𑀬𑁄", "𑀅𑀕𑁆𑀕𑀺𑀲𑁆𑀲", "𑀅𑀕𑁆𑀕𑀺𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀯𑀘𑁆𑀙", "noun", "𑀯𑀘𑁆𑀙𑀸", "𑀯𑀘𑁆𑀙𑀲𑁆𑀲", "𑀯𑀘𑁆𑀙𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["aṅguṭṭha", "noun", "aṅguṭṭha", "", "", "", "thumb"]) + let v = native_list_append(v, ["cāga", "noun", "cāga", "", "", "", "abandonment forsaking"]) + let v = native_list_append(v, ["makuṭa", "noun", "makuṭā", "makuṭassa", "makuṭassa", "", "crest crown coronet"]) + let v = native_list_append(v, ["สภา", "noun", "สภา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["นร", "noun", "นรา", "นรสฺส", "นรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ဘူ", "noun", "ဘုယော", "ဘုယာ", "ဘုယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဥပမာ", "noun", "ဥပမာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["upamā", "noun", "upamāyo", "upamāya", "upamāya", "", "simile parable comparison"]) + let v = native_list_append(v, ["sīmā", "noun", "sīmā", "", "", "", "boundary limit"]) + let v = native_list_append(v, ["हित", "noun", "हितानि", "हितस्स", "हितस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अतीत", "noun", "अतीता", "अतीतस्स", "अतीतस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["မကုဋ", "noun", "မကုဋာ", "မကုဋဿ", "မကုဋဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["जनिका", "noun", "जनिकायो", "जनिकाय", "जनिकाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["เภท", "noun", "เภทา", "เภทสฺส", "เภทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["มิค", "noun", "มิค", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["คีตะ", "noun", "คีตานิ", "คีตัสสะ", "คีตัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["คช", "noun", "คชา", "คชสฺส", "คชสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["navakamma", "noun", "navakammāni", "navakammassa", "navakammassa", "", "new works"]) + let v = native_list_append(v, ["kāya", "noun", "kāyā", "kāyassa", "kāyassa", "", "group collection"]) + let v = native_list_append(v, ["ဌာန", "noun", "ဌာနာနိ", "ဌာနဿ", "ဌာနဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["खण", "noun", "खणा", "खणस्स", "खणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["pāda", "noun", "pādā", "pādassa", "pādassa", "", "foot"]) + let v = native_list_append(v, ["सन्ति", "noun", "सन्तियो", "सन्तिया", "सन्तिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["thara", "noun", "thara", "", "", "", "Name of the"]) + let v = native_list_append(v, ["pessa", "noun", "pessā", "pessassa", "pessassa", "", "messenger"]) + let v = native_list_append(v, ["vidatthi", "noun", "vidatthiyo", "vidatthiyā", "vidatthiyā", "", "span a measure"]) + let v = native_list_append(v, ["𑀫𑀼𑀤𑁆𑀥", "noun", "𑀫𑀼𑀤𑁆𑀥", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["จเร", "noun", "จเร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀪𑀢𑁆𑀢", "noun", "𑀪𑀢𑁆𑀢𑀸𑀦𑀺", "𑀪𑀢𑁆𑀢𑀲𑁆𑀲", "𑀪𑀢𑁆𑀢𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["วิชชุ", "noun", "วิชชุโย", "วิชชุยา", "วิชชุยา", "", "Thai script form"]) + let v = native_list_append(v, ["𑀓𑀼𑀫𑁆𑀫", "noun", "𑀓𑀼𑀫𑁆𑀫𑀸", "𑀓𑀼𑀫𑁆𑀫𑀲𑁆𑀲", "𑀓𑀼𑀫𑁆𑀫𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["vicchika", "noun", "vicchikā", "vicchikassa", "vicchikassa", "", "scorpion"]) + let v = native_list_append(v, ["মহ", "noun", "মহা", "মহস্স", "মহস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ราคะ", "noun", "ราคา", "ราคัสสะ", "ราคัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["छल", "noun", "छल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["buddhābhiseka", "noun", "buddhābhiseka", "", "", "", "the act of"]) + let v = native_list_append(v, ["อุปมา", "noun", "อุปมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["कुसल", "noun", "कुसल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["āyā", "noun", "āyā", "", "", "", "inflection of āya"]) + let v = native_list_append(v, ["सरा", "noun", "सरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pubba", "noun", "pubbā", "pubbassa", "pubbassa", "", "pus"]) + let v = native_list_append(v, ["अही", "noun", "अही", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀢𑀓𑁆𑀓", "noun", "𑀢𑀓𑁆𑀓", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["uttarummāra", "noun", "uttarummārā", "uttarummārassa", "uttarummārassa", "", "lintel"]) + let v = native_list_append(v, ["ātāpana", "noun", "ātāpanāni", "ātāpanassa", "ātāpanassa", "", "mortification"]) + let v = native_list_append(v, ["𑀲𑀲", "noun", "𑀲𑀲𑀸", "𑀲𑀲𑀲𑁆𑀲", "𑀲𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["vattha", "noun", "vatthāni", "vatthassa", "vatthassa", "", "cloth garment"]) + let v = native_list_append(v, ["𑀯𑀢𑁆𑀣", "noun", "𑀯𑀢𑁆𑀣𑀸𑀦𑀺", "𑀯𑀢𑁆𑀣𑀲𑁆𑀲", "𑀯𑀢𑁆𑀣𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["abbha", "noun", "abbhāni", "abbhassa", "abbhassa", "", "cloud"]) + let v = native_list_append(v, ["vaṭuma", "noun", "vaṭumāni", "vaṭumassa", "vaṭumassa", "", "road path"]) + let v = native_list_append(v, ["sittha", "noun", "sitthāni", "sitthassa", "sitthassa", "", "a lump of"]) + let v = native_list_append(v, ["duddha", "noun", "duddhāni", "duddhassa", "duddhassa", "", "milk"]) + let v = native_list_append(v, ["chakka", "noun", "chakkāni", "chakkassa", "chakkassa", "", "a group of"]) + let v = native_list_append(v, ["တေဇော", "noun", "တေဇော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["मच्छ", "noun", "मच्छ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["วน", "noun", "วนานิ", "วนสฺส", "วนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["បុត្ត", "noun", "បុត្តា", "បុត្តស្ស", "បុត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["kāla", "noun", "kālā", "kālassa", "kālassa", "", "time"]) + let v = native_list_append(v, ["ปะทะ", "noun", "ปะทานิ", "ปะทัสสะ", "ปะทัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ราย", "noun", "ราย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["muddha", "noun", "muddha", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["सराय", "noun", "सराय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सामी", "noun", "सामी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["यमक", "noun", "यमका", "यमकस्स", "यमकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["विनय", "noun", "विनया", "विनयस्स", "विनयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["अयन", "noun", "अयनानि", "अयनस्स", "अयनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["समुच्चय", "noun", "समुच्चया", "समुच्चयस्स", "समुच्चयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सिरा", "noun", "सिरायो", "सिराय", "सिराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀭𑀸𑀚𑀸", "noun", "𑀭𑀸𑀚𑀸", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["โว", "noun", "โว", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["মতা", "noun", "মতা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["লোণ", "noun", "লোণানি", "লোণস্স", "লোণস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["khura", "noun", "khurā", "khurassa", "khurassa", "", "razor"]) + let v = native_list_append(v, ["𑀯𑀺𑀚𑁆𑀚𑀼", "noun", "𑀯𑀺𑀚𑁆𑀚𑀼𑀬𑁄", "𑀯𑀺𑀚𑁆𑀚𑀼𑀬𑀸", "𑀯𑀺𑀚𑁆𑀚𑀼𑀬𑀸", "", "Brahmi script form"]) + let v = native_list_append(v, ["irubbeda", "noun", "irubbeda", "irubbedassa", "irubbedassa", "", "the Rigveda"]) + let v = native_list_append(v, ["पताका", "noun", "पताका", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पिया", "noun", "पिया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सीस", "noun", "सीसानि", "सीसस्स", "सीसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဆာယာ", "noun", "ဆာယာယော", "ဆာယာယ", "ဆာယာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["থাল", "noun", "থালা", "থালস্স", "থালস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["រថ", "noun", "រថា", "រថស្ស", "រថស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សាសន", "noun", "សាសនានិ", "សាសនស្ស", "សាសនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ৰস", "noun", "ৰস", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["বাহা", "noun", "বাহাযো", "বাহায", "বাহায", "", "Bengali script form"]) + let v = native_list_append(v, ["लेखा", "noun", "लेखायो", "लेखाय", "लेखाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀣𑁂𑀭", "noun", "𑀣𑁂𑀭𑀸", "𑀣𑁂𑀭𑀲𑁆𑀲", "𑀣𑁂𑀭𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀢𑁂𑀮", "noun", "𑀢𑁂𑀮𑀸𑀦𑀺", "𑀢𑁂𑀮𑀲𑁆𑀲", "𑀢𑁂𑀮𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["វេលា", "noun", "វេលាយោ", "វេលាយ", "វេលាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["ភរិយា", "noun", "ភរិយាយោ", "ភរិយាយ", "ភរិយាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["भरणे", "noun", "भरणे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गिरा", "noun", "गिरायो", "गिराय", "गिराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["মুদা", "noun", "মুদা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ធីតា", "noun", "ធីតរោ", "ធីតុ", "ធីតុ", "", "Khmer script form"]) + let v = native_list_append(v, ["ឋាន", "noun", "ឋានានិ", "ឋានស្ស", "ឋានស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["গজা", "noun", "গজা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["វច្ច", "noun", "វច្ចានិ", "វច្ចស្ស", "វច្ចស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["មជ្ជ", "noun", "មជ្ជានិ", "មជ្ជស្ស", "មជ្ជស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ভূত", "noun", "ভূতা", "ভূতানং", "ভূতানং", "", "Bengali script form"]) + let v = native_list_append(v, ["vattar", "noun", "vattāro", "vattu", "vattu", "", "one who says"]) + let v = native_list_append(v, ["vatta", "noun", "vattāni", "vattassa", "vattassa", "", "duty"]) + let v = native_list_append(v, ["កាម", "noun", "កាមា", "កាមស្ស", "កាមស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ឃរ", "noun", "ឃរានិ", "ឃរស្ស", "ឃរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ទោស", "noun", "ទោសា", "ទោសស្ស", "ទោសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["គូថ", "noun", "គូថានិ", "គូថស្ស", "គូថស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ហេមន្ត", "noun", "ហេមន្តា", "ហេមន្តស្ស", "ហេមន្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ឧតុ", "noun", "ឧតវោ", "ឧតុស្ស", "ឧតុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ចន្ទ", "noun", "ចន្ទា", "ចន្ទស្ស", "ចន្ទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សុរិយ", "noun", "សុរិយា", "សុរិយស្ស", "សុរិយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["เกตุ", "noun", "เกตโว", "เกตุสฺส", "เกตุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ពិន្ទុ", "noun", "ពិន្ទូនិ", "ពិន្ទុស្ស", "ពិន្ទុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ហាស", "noun", "ហាស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["chakana", "noun", "chakanāni", "chakanassa", "chakanassa", "", "dung"]) + let v = native_list_append(v, ["maccu", "noun", "maccu", "", "", "", "death"]) + let v = native_list_append(v, ["ကာယ", "noun", "ကာယာ", "ကာယဿ", "ကာယဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["មណ្ឌល", "noun", "មណ្ឌលានិ", "មណ្ឌលស្ស", "មណ្ឌលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["មតិ", "noun", "មតិយោ", "មតិយា", "មតិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["វីថិ", "noun", "វីថិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ធម្ម", "noun", "ធម្មា", "ធម្មស្ស", "ធម្មស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["យោធ", "noun", "យោធា", "យោធស្ស", "យោធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ពល", "noun", "ពលានិ", "ពលស្ស", "ពលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["យោធា", "noun", "យោធា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဝေဒနာ", "noun", "ဝေဒနာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ករ", "noun", "ករ", "ករស្ស", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វណិជ្ជា", "noun", "វណិជ្ជាយោ", "វណិជ្ជាយ", "វណិជ្ជាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["অন্ধকার", "noun", "অন্ধকারা", "অন্ধকারস্স", "অন্ধকারস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["তুলা", "noun", "তুলাযো", "তুলায", "তুলায", "", "Bengali script form"]) + let v = native_list_append(v, ["কাক", "noun", "কাকা", "কাকস্স", "কাকস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["sunakha", "noun", "sunakhā", "sunakhassa", "sunakhassa", "", "dog"]) + let v = native_list_append(v, ["សាមណេរ", "noun", "សាមណេរា", "សាមណេរស្ស", "សាមណេរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["នរ", "noun", "នរា", "នរស្ស", "នរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["issamiga", "noun", "issamigā", "issamigassa", "issamigassa", "", "a species of"]) + let v = native_list_append(v, ["សាខា", "noun", "សាខាយោ", "សាខាយ", "សាខាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["វិជ្ជុ", "noun", "វិជ្ជុយោ", "វិជ្ជុយា", "វិជ្ជុយា", "", "Khmer script form"]) + let v = native_list_append(v, ["ทาสี", "noun", "ทาสิโย", "ทาสิยา", "ทาสิยา", "", "Thai script form"]) + let v = native_list_append(v, ["អាករ", "noun", "អាករា", "អាករស្ស", "អាករស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សមុទ្ទ", "noun", "សមុទ្ទា", "សមុទ្ទស្ស", "សមុទ្ទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["สมุทฺท", "noun", "สมุทฺทา", "สมุทฺทสฺส", "สมุทฺทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["নামা", "noun", "নামা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ফলা", "noun", "ফলা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ធនុ", "noun", "ធនូនិ", "ធនុស្ស", "ធនុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["মোন", "noun", "মোন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["hattha", "noun", "hatthā", "hatthassa", "hatthassa", "", "hand"]) + let v = native_list_append(v, ["थन", "noun", "थन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["កវី", "noun", "កវី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ទូត", "noun", "ទូតា", "ទូតស្ស", "ទូតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["mātā", "noun", "mātā", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["សិគាល", "noun", "សិគាលា", "សិគាលស្ស", "សិគាលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["लय", "noun", "लया", "लयस्स", "लयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["মনা", "noun", "মনা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["মানা", "noun", "মানা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["মানে", "noun", "মানে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["យាន", "noun", "យានានិ", "យានស្ស", "យានស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["বল", "noun", "বলানি", "বলস্স", "বলস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ရူပ", "noun", "ရူပါနိ", "ရူပဿ", "ရူပဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["antarāya", "noun", "antarāyā", "antarāyassa", "antarāyassa", "", "danger obstacle"]) + let v = native_list_append(v, ["dhātu", "noun", "dhātuyo", "dhātuyā", "dhātuyā", "", "element"]) + let v = native_list_append(v, ["jīva", "noun", "jīvāni", "jīvassa", "jīvassa", "", "life"]) + let v = native_list_append(v, ["sippa", "noun", "sippāni", "sippassa", "sippassa", "", "art branch of"]) + let v = native_list_append(v, ["āhāra", "noun", "āhārā", "āhārassa", "āhārassa", "", "feeding support food"]) + let v = native_list_append(v, ["အာဟာရ", "noun", "အာဟာရာ", "အာဟာရဿ", "အာဟာရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဩဇာ", "noun", "ဩဇာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ojā", "noun", "ojāyo", "ojāya", "ojāya", "", "strength sap of"]) + let v = native_list_append(v, ["maṅgala", "noun", "maṅgalāni", "maṅgalassa", "maṅgalassa", "", "festivity good omen"]) + let v = native_list_append(v, ["အဂတိ", "noun", "အဂတိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["katikā", "noun", "katikā", "", "", "", "agreement talk conversation"]) + let v = native_list_append(v, ["គន្ធ", "noun", "គន្ធា", "គន្ធស្ស", "គន្ធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["သာဝက", "noun", "သာဝကာ", "သာဝကဿ", "သာဝကဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["পিত", "noun", "পিত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["सित", "noun", "सितानि", "सितस्स", "सितस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kapayo", "noun", "kapayo", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["នីតិ", "noun", "នីតិយោ", "នីតិយា", "នីតិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["कपोल", "noun", "कपोला", "कपोलस्स", "कपोलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["gimha", "noun", "gimha", "", "", "", "summer"]) + let v = native_list_append(v, ["រោម", "noun", "រោមានិ", "រោមស្ស", "រោមស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["លោម", "noun", "លោមានិ", "លោមស្ស", "លោមស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["गीते", "noun", "गीते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["asubha", "noun", "asubha", "", "", "", "corpse"]) + let v = native_list_append(v, ["māna", "noun", "mānā", "mānassa", "mānassa", "", "pride"]) + let v = native_list_append(v, ["khaṇa", "noun", "khaṇā", "khaṇassa", "khaṇassa", "", "moment"]) + let v = native_list_append(v, ["mañju", "noun", "mañju", "", "", "", "charming lovely"]) + let v = native_list_append(v, ["မာလာ", "noun", "မာလာယော", "မာလာယ", "မာလာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["añjali", "noun", "añjaliyo", "añjaliyā", "añjaliyā", "", "the wai or"]) + let v = native_list_append(v, ["ဗလ", "noun", "ဗလာနိ", "ဗလဿ", "ဗလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["sāsana", "noun", "sāsanāni", "sāsanassa", "sāsanassa", "", "teaching"]) + let v = native_list_append(v, ["อุปัชฌายะ", "noun", "อุปัชฌายา", "อุปัชฌายัสสะ", "อุปัชฌายัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["सूद", "noun", "सूदा", "सूदस्स", "सूदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["मातापिता", "noun", "मातापिता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["អស្សុ", "noun", "អស្សូនិ", "អស្សុស្ស", "អស្សុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សភា", "noun", "សភា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["မာတိကာ", "noun", "မာတိကာယော", "မာတိကာယ", "မာတိကာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["mātikā", "noun", "mātikāyo", "mātikāya", "mātikāya", "", "water course"]) + let v = native_list_append(v, ["nidāna", "noun", "nidāna", "", "", "", "source cause origin"]) + let v = native_list_append(v, ["bhaṇḍa", "noun", "bhaṇḍāni", "bhaṇḍassa", "bhaṇḍassa", "", "good wares implements"]) + let v = native_list_append(v, ["ဆန္ဒ", "noun", "ဆန္ဒာ", "ဆန္ဒဿ", "ဆန္ဒဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["chanda", "noun", "chandā", "chandassa", "chandassa", "", "impulse will wish"]) + let v = native_list_append(v, ["ဇာတိ", "noun", "ဇာတိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jāti", "noun", "jāti", "", "", "", "birth"]) + let v = native_list_append(v, ["วาณิช", "noun", "วาณิชา", "วาณิชสฺส", "วาณิชสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["युवती", "noun", "युवतियो", "युवतिया", "युवतिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["agati", "noun", "agati", "", "", "", "wrong course"]) + let v = native_list_append(v, ["maṇḍapa", "noun", "maṇḍapa", "", "", "", "temporary shed"]) + let v = native_list_append(v, ["ဟာသ", "noun", "ဟာသ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["hāsa", "noun", "hāsa", "", "", "", "laughter"]) + let v = native_list_append(v, ["သီလ", "noun", "သီလာနိ", "သီလဿ", "သီလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["sīla", "noun", "sīlāni", "sīlassa", "sīlassa", "", "nature habit"]) + let v = native_list_append(v, ["ကာလ", "noun", "ကာလာ", "ကာလဿ", "ကာလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["pamāṇa", "noun", "pamāṇa", "", "", "", "measure size amount"]) + let v = native_list_append(v, ["paṭisandi", "noun", "paṭisandi", "", "", "", "reincarnation"]) + let v = native_list_append(v, ["paṭisandhi", "noun", "paṭisandhiyo", "paṭisandhiyā", "paṭisandhiyā", "", "reincarnation"]) + let v = native_list_append(v, ["puggala", "noun", "puggalā", "puggalassa", "puggalassa", "", "individual"]) + let v = native_list_append(v, ["পাণ", "noun", "পাণা", "পাণস্স", "পাণস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["वेदना", "noun", "वेदना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["វរ", "noun", "វរា", "វរស្ស", "វរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["jūta", "noun", "jūta", "", "", "", "gambling"]) + let v = native_list_append(v, ["វិជ្ជា", "noun", "វិជ្ជាយោ", "វិជ្ជាយ", "វិជ្ជាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["ဝိဇ္ဇာ", "noun", "ဝိဇ္ဇာယော", "ဝိဇ္ဇာယ", "ဝိဇ္ဇာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["សិត", "noun", "សិតានិ", "សិតស្ស", "សិតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ឧណ្ណា", "noun", "ឧណ្ណាយោ", "ឧណ្ណាយ", "ឧណ្ណាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["គណ", "noun", "គណា", "គណស្ស", "គណស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["মণ্ডপ", "noun", "মণ্ডপ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["dassana", "noun", "dassanāni", "dassanassa", "dassanassa", "", "seeing looking sight"]) + let v = native_list_append(v, ["আপা", "noun", "আপা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["পাল", "noun", "পালা", "পালস্স", "পালস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ওজা", "noun", "ওজা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["យុគ", "noun", "យុគានិ", "យុគស្ស", "យុគស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["pubbesannivāsa", "noun", "pubbesannivāsa", "", "", "", "the state of"]) + let v = native_list_append(v, ["vatthu", "noun", "vatthūni", "vatthussa", "vatthussa", "", "object thing reason"]) + let v = native_list_append(v, ["dakkhiṇa", "noun", "dakkhiṇa", "", "", "", "the south southern"]) + let v = native_list_append(v, ["uttara", "noun", "uttara", "", "", "", "the north northern"]) + let v = native_list_append(v, ["ဥတ္တရ", "noun", "ဥတ္တရ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["isāna", "noun", "isāna", "", "", "", "the northeast northeastern"]) + let v = native_list_append(v, ["parahita", "noun", "parahita", "", "", "", "welfare of others"]) + let v = native_list_append(v, ["panasa", "noun", "panasa", "", "", "", "jackfruit"]) + let v = native_list_append(v, ["អន្តោ", "noun", "អន្តោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अम्ब", "noun", "अम्बा", "अम्बस्स", "अम्बस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["তাল", "noun", "তালা", "তালস্স", "তালস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ukkā", "noun", "ukkāyo", "ukkāya", "ukkāya", "", "torch"]) + let v = native_list_append(v, ["ระ", "noun", "ระ", "รัสสะ", "รัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["পচন", "noun", "পচনানি", "পচনস্স", "পচনস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["अण्डा", "noun", "अण्डा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["piye", "noun", "piye", "", "", "", "inflection of piya"]) + let v = native_list_append(v, ["asmā", "noun", "asmā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["อาทิ", "noun", "อาทโย", "อาทิสฺส", "อาทิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["sakate", "noun", "sakate", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["สมณ", "noun", "สมณา", "สมณสฺส", "สมณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ghara", "noun", "gharāni", "gharassa", "gharassa", "", "house"]) + let v = native_list_append(v, ["খন্তি", "noun", "খন্তিযো", "খন্তিযা", "খন্তিযা", "", "Bengali script form"]) + let v = native_list_append(v, ["theravāda", "noun", "theravāda", "theravādassa", "theravādassa", "", "Theravada"]) + let v = native_list_append(v, ["balino", "noun", "balino", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ครุ", "noun", "ครโว", "ครุสฺส", "ครุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["पतिं", "noun", "पतिं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["रजा", "noun", "रजा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["นิกาย", "noun", "นิกายา", "นิกายสฺส", "นิกายสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["কুলা", "noun", "কুলা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["เวรมณี", "noun", "เวรมณิโย", "เวรมณิยา", "เวรมณิยา", "", "Thai script form"]) + let v = native_list_append(v, ["मूग", "noun", "मूगा", "मूगस्स", "मूगस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᨾᩘᨣᩃ", "noun", "ᨾᩘᨣᩃᩣᨶᩥ", "ᨾᩘᨣᩃᩔ", "ᨾᩘᨣᩃᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩮᩅ", "noun", "ᨴᩮᩅᩤ", "ᨴᩮᩅᩔ", "ᨴᩮᩅᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨷᩤᨷ", "noun", "ᨷᩤᨷᩤᨶᩥ", "ᨷᩤᨷᩔ", "ᨷᩤᨷᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩉᩥᨲ", "noun", "ᩉᩥᨲᩣᨶᩥ", "ᩉᩥᨲᩔ", "ᩉᩥᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨽᨣᩅᩤ", "noun", "ᨽᨣᩅᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨽᨣᩅᨲᩮᩣ", "noun", "ᨽᨣᩅᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["bheda", "noun", "bhedā", "bhedassa", "bhedassa", "", "breaking disunion dissension"]) + let v = native_list_append(v, ["भयं", "noun", "भयं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सङ्ख्या", "noun", "सङ्ख्यायो", "सङ्ख्याय", "सङ्ख्याय", "", "Devanagari script form"]) + let v = native_list_append(v, ["សទ្ទ", "noun", "សទ្ទា", "សទ្ទស្ស", "សទ្ទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["वना", "noun", "वना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᩋᩁᩉᨶ᩠ᨲ᩺", "noun", "ᩋᩁᩉᨶ᩠ᨲᩮᩣ", "ᩋᩁᩉᨲᩮᩣ", "ᩋᩁᩉᨲᩮᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["arahā", "noun", "arahā", "", "", "", "nominative singular/plural of"]) + let v = native_list_append(v, ["sambuddha", "noun", "sambuddhā", "sambuddhassa", "sambuddhassa", "", "the Omniscient One"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨻᩩᨴ᩠ᨵ", "noun", "ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩤ", "ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩔ", "ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩛᩩᨴ᩠ᨵ", "noun", "ᩈᨾᩛᩩᨴ᩠ᨵᩤ", "ᩈᨾᩛᩩᨴ᩠ᨵᩔ", "ᩈᨾᩛᩩᨴ᩠ᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᨿ", "noun", "ᩈᨾᨿᩣ", "ᩈᨾᨿᩔ", "ᩈᨾᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["Sāvatthī", "noun", "Sāvatthiyo", "Sāvatthiyā", "Sāvatthiyā", "", "Savatthi also known"]) + let v = native_list_append(v, ["ᩈᩣᩅᨲ᩠ᨳᩦ", "noun", "Sāvatthiyo", "Sāvatthiyā", "Sāvatthiyā", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᨶ", "noun", "ᩅᨶᩣᨶᩥ", "ᩅᨶᩔ", "ᩅᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨩᩮᨲ", "noun", "ᨩᩮᨲᩣ", "ᨩᩮᨲᩔ", "ᨩᩮᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ārāma", "noun", "ārāmā", "ārāmassa", "ārāmassa", "", "pleasure"]) + let v = native_list_append(v, ["ᩋᩣᩁᩣᨾ", "noun", "ᩋᩣᩁᩣᨾᩣ", "ᩋᩣᩁᩣᨾᩔ", "ᩋᩣᩁᩣᨾᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["jetā", "noun", "jetā", "", "", "", "nominative/vocative singular and"]) + let v = native_list_append(v, ["ᨴᩮᩅᨲᩣ", "noun", "ᨴᩮᩅᨲᩣᨿᩮᩣ", "ᨴᩮᩅᨲᩣᨿ", "ᨴᩮᩅᨲᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩁᨲ᩠ᨲᩥ", "noun", "ᩁᨲ᩠ᨲᩥᨿᩮᩣ", "ᩁᨲ᩠ᨲᩥᨿᩣ", "ᩁᨲ᩠ᨲᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᨱ᩠ᨱ", "noun", "ᩅᨱ᩠ᨱᩣ", "ᩅᨱ᩠ᨱᩔ", "ᩅᨱ᩠ᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["सुनख", "noun", "सुनखा", "सुनखस्स", "सुनखस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sotthāna", "noun", "sotthānāni", "sotthānassa", "sotthānassa", "", "blessing welfare"]) + let v = native_list_append(v, ["ᩈᩮᩣᨲ᩠ᨳᩣᨶ", "noun", "ᩈᩮᩣᨲ᩠ᨳᩣᨶᩣᨶᩥ", "ᩈᩮᩣᨲ᩠ᨳᩣᨶᩔ", "ᩈᩮᩣᨲ᩠ᨳᩣᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩃᩮᩣᨠ", "noun", "ᩃᩮᩣᨠᩣ", "ᩃᩮᩣᨠᩔ", "ᩃᩮᩣᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["buddhāna", "noun", "buddhāna", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩤᨶ", "noun", "ᨻᩩᨴ᩠ᨵᩤᨶ", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵ", "noun", "ᨻᩩᨴ᩠ᨵ", "ᨻᩩᨴ᩠ᨵᩔ", "ᨻᩩᨴ᩠ᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩣ", "noun", "ᨻᩩᨴ᩠ᨵᩣ", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["มาส", "noun", "มาสา", "มาสสฺส", "มาสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩁᨲᨶ", "noun", "ᩁᨲᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paṇāma", "noun", "paṇāmā", "paṇāmassa", "paṇāmassa", "", "salutation"]) + let v = native_list_append(v, ["ᨸᨱᩣᨾ", "noun", "ᨸᨱᩣᨾᩣ", "ᨸᨱᩣᨾᩔ", "ᨸᨱᩣᨾᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["tiloka", "noun", "tilokā", "tilokassa", "tilokassa", "", "the three worlds"]) + let v = native_list_append(v, ["ᨻᩮᩣᨵᩥ", "noun", "ᨻᩮᩣᨵᩥᨿᩮᩣ", "ᨻᩮᩣᨵᩥᨿᩣ", "ᨻᩮᩣᨵᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩪᩃ", "noun", "ᨾᩪᩃᩣᨶᩥ", "ᨾᩪᩃᩔ", "ᨾᩪᩃᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩣᩁ", "noun", "ᨾᩣᩁᩣ", "ᨾᩣᩁᩔ", "ᨾᩣᩁᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["sambodhi", "noun", "sambodhiyo", "sambodhiyā", "sambodhiyā", "", "enlightenment"]) + let v = native_list_append(v, ["ᩈᨾᩛᩮᩣᨵᩥ", "noun", "ᩈᨾᩛᩮᩣᨵᩥᨿᩮᩣ", "ᩈᨾᩛᩮᩣᨵᩥᨿᩣ", "ᩈᨾᩛᩮᩣᨵᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨬᩣᨱ", "noun", "ᨬᩣᨱᩣ", "ᨬᩣᨱᩔ", "ᨬᩣᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["atīta", "noun", "atītā", "atītassa", "atītassa", "", "past before now"]) + let v = native_list_append(v, ["ᩋᨲᩦᨲ", "noun", "ᩋᨲᩦᨲᩣ", "ᩋᨲᩦᨲᩔ", "ᩋᨲᩦᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨽᨣᩅᩣ", "noun", "ᨽᨣᩅᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["arahaṃ", "noun", "arahaṃ", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["ᩋᩁᩉᩴ", "noun", "ᩋᩁᩉᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᨩ᩠ᨩᩣ", "noun", "ᩅᩥᨩ᩠ᨩᩣᨿᩮᩣ", "ᩅᩥᨩ᩠ᨩᩣᨿ", "ᩅᩥᨩ᩠ᨩᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["caraṇa", "noun", "caraṇāni", "caraṇassa", "caraṇassa", "", "walking about"]) + let v = native_list_append(v, ["caraṇā", "noun", "caraṇāyo", "caraṇāya", "caraṇāya", "", "wandering"]) + let v = native_list_append(v, ["ᨧᩁᨱ", "noun", "ᨧᩁᨱᩣᨶᩥ", "ᨧᩁᨱᩔ", "ᨧᩁᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩩᩁᩥᩈ", "noun", "ᨸᩩᩁᩥᩈᩣ", "ᨸᩩᩁᩥᩈᩔ", "ᨸᩩᩁᩥᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩣᩁᨳᩥ", "noun", "ᩈᩣᩁᨳᨿᩮᩣ", "ᩈᩣᩁᨳᩥᩔ", "ᩈᩣᩁᨳᩥᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨲ᩠ᨳᩣ", "noun", "ᩈᨲ᩠ᨳᩣ", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["ᨾᨶᩩᩔ", "noun", "ᨾᨶᩩᩔᩣ", "ᨾᨶᩩᩔᩔ", "ᨾᨶᩩᩔᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["jīvita", "noun", "jīvitāni", "jīvitassa", "jīvitassa", "", "life lifetime"]) + let v = native_list_append(v, ["ᨩᩦᩅᩥᨲ", "noun", "ᨩᩦᩅᩥᨲᩣᨶᩥ", "ᨩᩦᩅᩥᨲᩔ", "ᨩᩦᩅᩥᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨶᩥᨻᩛᩣᨶ", "noun", "ᨶᩥᨻᩛᩣᨶᩣᨶᩥ", "ᨶᩥᨻᩛᩣᨶᩔ", "ᨶᩥᨻᩛᩣᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["saraṇa", "noun", "saraṇāni", "saraṇassa", "saraṇassa", "", "protection refuge"]) + let v = native_list_append(v, ["ᩈᩁᨱ", "noun", "ᩈᩁᨱᩣᨶᩥ", "ᩈᩁᨱᩔ", "ᩈᩁᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩁ", "noun", "ᩅᩁᩣ", "ᩅᩁᩔ", "ᩅᩁᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨧ᩠ᨧ", "noun", "ᩈᨧ᩠ᨧᩣᨶᩥ", "ᩈᨧ᩠ᨧᩔ", "ᩈᨧ᩠ᨧᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["saccavajja", "noun", "saccavajjāni", "saccavajjassa", "saccavajjassa", "", "solemn declaration"]) + let v = native_list_append(v, ["ᩈᨧ᩠ᨧᩅᨩ᩠ᨩ", "noun", "ᩈᨧ᩠ᨧᩅᨩ᩠ᨩᩣᨶᩥ", "ᩈᨧ᩠ᨧᩅᨩ᩠ᨩᩔ", "ᩈᨧ᩠ᨧᩅᨩ᩠ᨩᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨩᨿ", "noun", "ᨩᨿᩣ", "ᨩᨿᩔ", "ᨩᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["aṅga", "noun", "aṅgāni", "aṅgassa", "aṅgassa", "", "member body part"]) + let v = native_list_append(v, ["ᩋᩘᨣ", "noun", "ᩋᩘᨣᩤᨶᩥ", "ᩋᩘᨣᩔ", "ᩋᩘᨣᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["uttamaṅga", "noun", "uttamaṅgāni", "uttamaṅgassa", "uttamaṅgassa", "", "most important part"]) + let v = native_list_append(v, ["ᩏᨲ᩠ᨲᨾᩘᨣ", "noun", "ᩏᨲ᩠ᨲᨾᩘᨣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩴᩈᩩ", "noun", "ᨸᩴᩈᩅᩮᩤ", "ᨸᩴᩈᩩᩔ", "ᨸᩴᩈᩩᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩣᨴ", "noun", "ᨸᩣᨴᩤ", "ᨸᩣᨴᩔ", "ᨸᩣᨴᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["satthar", "noun", "satthāro", "satthu", "satthu", "", "teacher"]) + let v = native_list_append(v, ["ᩈᨲ᩠ᨳᩁ᩺", "noun", "ᩈᨲ᩠ᨳᩣᩁᩮᩣ", "ᩈᨲ᩠ᨳᩩ", "ᩈᨲ᩠ᨳᩩ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩮᩣᩈ", "noun", "ᨴᩮᩣᩈᩣ", "ᨴᩮᩣᩈᩔ", "ᨴᩮᩣᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["kattā", "noun", "kattā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["มุข", "noun", "มุขานิ", "มุขสฺส", "มุขสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ฐานะ", "noun", "ฐานานิ", "ฐานัสสะ", "ฐานัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["asman", "noun", "asmāno", "asmano", "asmano", "", "stone rock"]) + let v = native_list_append(v, ["asama", "noun", "asamāni", "asamassa", "asamassa", "", "stone rock"]) + let v = native_list_append(v, ["muddhan", "noun", "muddhāno", "muddhano", "muddhano", "", "head"]) + let v = native_list_append(v, ["muddhā", "noun", "muddhā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["addhan", "noun", "addhāno", "addhano", "addhano", "", "path"]) + let v = native_list_append(v, ["addhā", "noun", "addhā", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["addhuno", "noun", "addhuno", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["addhunā", "noun", "addhunā", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["អរិយ", "noun", "អរិយា", "អរិយស្ស", "អរិយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["patha", "noun", "pathā", "pathassa", "pathassa", "", "path road way"]) + let v = native_list_append(v, ["ᨸᨳ", "noun", "ᨸᨳᩣ", "ᨸᨳᩔ", "ᨸᨳᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩮᩣᨠ᩠ᨡ", "noun", "ᨾᩮᩣᨠ᩠ᨡᩣ", "ᨾᩮᩣᨠ᩠ᨡᩔ", "ᨾᩮᩣᨠ᩠ᨡᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨵᨾ᩠ᨾ", "noun", "ᨵᨾ᩠ᨾᩣ", "ᨵᨾ᩠ᨾᩔ", "ᨵᨾ᩠ᨾᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["niyyāna", "noun", "niyyānāni", "niyyānassa", "niyyānassa", "", "going out departure"]) + let v = native_list_append(v, ["ᨩᨶ", "noun", "ᨩᨶᩣ", "ᨩᨶᩔ", "ᨩᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨶ᩠ᨲᩥ", "noun", "ᩈᨶ᩠ᨲᩥᨿᩮᩣ", "ᩈᨶ᩠ᨲᩥᨿᩣ", "ᩈᨶ᩠ᨲᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩅᩮᩈ", "noun", "ᨸᩅᩮᩈᩣ", "ᨸᩅᩮᩈᩔ", "ᨸᩅᩮᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["रामाय", "noun", "रामाय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["रामे", "noun", "रामे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ओकार", "noun", "ओकारा", "ओकारस्स", "ओकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["buddhānaṃ", "noun", "buddhānaṃ", "", "", "", "genitive/dative plural of"]) + let v = native_list_append(v, ["สาขา", "noun", "สาขาโย", "สาขาย", "สาขาย", "", "Thai script form"]) + let v = native_list_append(v, ["ទន្ត", "noun", "ទន្តា", "ទន្តស្ស", "ទន្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["देवेन", "noun", "देवेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["ᩈᩥᨠ᩠ᨡᩣ", "noun", "ᩈᩥᨠ᩠ᨡᩣᨿᩮᩣ", "ᩈᩥᨠ᩠ᨡᩣᨿ", "ᩈᩥᨠ᩠ᨡᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["saṃvara", "noun", "saṃvarā", "saṃvarassa", "saṃvarassa", "", "restraint"]) + let v = native_list_append(v, ["ᩈᩴᩅᩁ", "noun", "ᩈᩴᩅᩁᩣ", "ᩈᩴᩅᩁᩔ", "ᩈᩴᩅᩁᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨷᩮᨿ᩠ᨿᩣᩃ", "noun", "ᨷᩮᨿ᩠ᨿᩣᩃᩣᨶᩥ", "ᨷᩮᨿ᩠ᨿᩣᩃᩔ", "ᨷᩮᨿ᩠ᨿᩣᩃᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["adhipati", "noun", "adhipatayo", "adhipatissa", "adhipatissa", "", "lord ruler master"]) + let v = native_list_append(v, ["devī", "noun", "deviyo", "deviyā", "deviyā", "", "goddess female deity"]) + let v = native_list_append(v, ["vijaya", "noun", "vijayā", "vijayassa", "vijayassa", "", "victory triumph"]) + let v = native_list_append(v, ["paṇḍita", "noun", "paṇḍitā", "paṇḍitassa", "paṇḍitassa", "", "wise man"]) + let v = native_list_append(v, ["paduma", "noun", "paduma", "", "", "", "lotus"]) + let v = native_list_append(v, ["aṇṇava", "noun", "aṇṇavā", "aṇṇavassa", "aṇṇavassa", "", "ocean"]) + let v = native_list_append(v, ["nāyaka", "noun", "nāyakā", "nāyakassa", "nāyakassa", "", "leader master"]) + let v = native_list_append(v, ["upadesa", "noun", "upadesā", "upadesassa", "upadesassa", "", "advice indication instruction"]) + let v = native_list_append(v, ["Takkasilā", "noun", "Takkasilā", "", "", "", "Taxila a city"]) + let v = native_list_append(v, ["vohāra", "noun", "vohārā", "vohārassa", "vohārassa", "", "expression jurisprudence current"]) + let v = native_list_append(v, ["karaṇa", "noun", "karaṇāni", "karaṇassa", "karaṇassa", "", "doing action making"]) + let v = native_list_append(v, ["ᨠᩁᨱ", "noun", "ᨠᩁᨱᩣᨶᩥ", "ᨠᩁᨱᩔ", "ᨠᩁᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["akaraṇa", "noun", "akaraṇāni", "akaraṇassa", "akaraṇassa", "", "inaction not doing"]) + let v = native_list_append(v, ["ᩋᨠᩁᨱ", "noun", "ᩋᨠᩁᨱᩣᨶᩥ", "ᩋᨠᩁᨱᩔ", "ᩋᨠᩁᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩣᩈᨶ", "noun", "ᩈᩣᩈᨶᩣᨶᩥ", "ᩈᩣᩈᨶᩔ", "ᩈᩣᩈᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["pāṭimokkha", "noun", "pāṭimokkhāni", "pāṭimokkhassa", "pāṭimokkhassa", "", "Rules of conduct"]) + let v = native_list_append(v, ["ᨷᩤᨭᩥᨾᩮᩣᨠ᩠ᨡ", "noun", "ᨷᩤᨭᩥᨾᩮᩣᨠ᩠ᨡᩣᨶᩥ", "ᨷᩤᨭᩥᨾᩮᩣᨠ᩠ᨡᩔ", "ᨷᩤᨭᩥᨾᩮᩣᨠ᩠ᨡᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["nātha", "noun", "nāthā", "nāthassa", "nāthassa", "", "protector"]) + let v = native_list_append(v, ["ᨶᩣᨳ", "noun", "ᨶᩣᨳᩣ", "ᨶᩣᨳᩔ", "ᨶᩣᨳᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["piya", "noun", "piya", "", "", "", "husband"]) + let v = native_list_append(v, ["අද‍්ධානමග‍්ග", "noun", "අද්ධානමග්ගා", "අද්ධානමග්ගස්ස", "අද්ධානමග්ගස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["භගවා", "noun", "භගවා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["භික‍්ඛු", "noun", "භික්ඛවො", "භික්ඛුස්ස", "භික්ඛුස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["saṅgha", "noun", "saṅghā", "saṅghassa", "saṅghassa", "", "multitude assemblage of"]) + let v = native_list_append(v, ["සඞ‍්ඝ", "noun", "සඞ්ඝා", "සඞ්ඝස්ස", "සඞ්ඝස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["मनसा", "noun", "मनसा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀫𑀢𑁆𑀣", "noun", "𑀫𑀢𑁆𑀣𑀸", "𑀫𑀢𑁆𑀣𑀲𑁆𑀲", "𑀫𑀢𑁆𑀣𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["පරිබ‍්බාජක", "noun", "පරිබ්බාජකා", "පරිබ්බාජකස්ස", "පරිබ්බාජකස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["antevāsī", "noun", "antevāsino", "antevāsissa", "antevāsissa", "", "pupil who resides"]) + let v = native_list_append(v, ["අන‍්තෙවාසී", "noun", "අන්තෙවාසිනො", "අන්තෙවාසිස්ස", "අන්තෙවාසිස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["මාණව", "noun", "මාණවා", "මාණවස්ස", "මාණවස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["බුද‍්ධ", "noun", "බුද‍්ධ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අවණ‍්ණ", "noun", "අවණ්ණා", "අවණ්ණස්ස", "අවණ්ණස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ධම‍්ම", "noun", "ධම්මා", "ධම්මස්ස", "ධම්මස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["pariyāya", "noun", "pariyāyā", "pariyāyassa", "pariyāyassa", "", "order course turn"]) + let v = native_list_append(v, ["පරියාය", "noun", "පරියායා", "පරියායස්ස", "පරියායස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["වණ‍්ණ", "noun", "වණ්ණා", "වණ්ණස්ස", "වණ්ණස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ආචරිය", "noun", "ආචරියා", "ආචරියස්ස", "ආචරියස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["bhagavant", "noun", "bhagavanto", "bhagavato", "bhagavato", "", "the fortunate one"]) + let v = native_list_append(v, ["ᨽᨣᩅᨶ᩠ᨲ᩺", "noun", "ᨽᨣᩅᨶ᩠ᨲᩮᩣ", "ᨽᨣᩅᨲᩮᩣ", "ᨽᨣᩅᨲᩮᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["භගවන‍්ත්", "noun", "භගවන්තො", "භගවතො", "භගවතො", "", "Sinhala script form"]) + let v = native_list_append(v, ["piṭṭhi", "noun", "piṭṭhiyo", "piṭṭhiyā", "piṭṭhiyā", "", "back"]) + let v = native_list_append(v, ["පිට‍්ඨි", "noun", "පිට්ඨියො", "පිට්ඨියා", "පිට්ඨියා", "", "Sinhala script form"]) + let v = native_list_append(v, ["piṭṭhito", "noun", "piṭṭhito", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["सेने", "noun", "सेने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vāda", "noun", "vādā", "vādassa", "vādassa", "", "speech talk"]) + let v = native_list_append(v, ["වාද", "noun", "වාදා", "වාදස්ස", "වාදස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["රාජා", "noun", "රාජා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["රත‍්ති", "noun", "රත්තියො", "රත්තියා", "රත්තියා", "", "Sinhala script form"]) + let v = native_list_append(v, ["vāsa", "noun", "vāsā", "vāsassa", "vāsassa", "", "life"]) + let v = native_list_append(v, ["වාස", "noun", "වාසා", "වාසස්ස", "වාසස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ញាតិ", "noun", "ញាតយោ", "ញាតិស្ស", "ញាតិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["វត្តមានា", "noun", "វត្តមានាយោ", "វត្តមានាយ", "វត្តមានាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["saṅkhiyadhamma", "noun", "saṅkhiyadhammā", "saṅkhiyadhammassa", "saṅkhiyadhammassa", "", "form of talk"]) + let v = native_list_append(v, ["සඞ‍්ඛියධම‍්ම", "noun", "සඞ්ඛියධම්මා", "සඞ්ඛියධම්මස්ස", "සඞ්ඛියධම්මස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["maṇḍalamāḷa", "noun", "maṇḍalamāḷā", "maṇḍalamāḷassa", "maṇḍalamāḷassa", "", "pavilion"]) + let v = native_list_append(v, ["මණ‍්ඩලමාළ", "noun", "මණ්ඩලමාළා", "මණ්ඩලමාළස්ස", "මණ්ඩලමාළස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["kuṭi", "noun", "kuṭiyo", "kuṭiyā", "kuṭiyā", "", "hut single-roomed dwelling"]) + let v = native_list_append(v, ["सस", "noun", "ससा", "ससस्स", "ससस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["āsana", "noun", "āsanāni", "āsanassa", "āsanassa", "", "sitting sitting down"]) + let v = native_list_append(v, ["ආසන", "noun", "ආසනානි", "ආසනස්ස", "ආසනස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["කථා", "noun", "කථායො", "කථාය", "කථාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["antarākathā", "noun", "antarākathāyo", "antarākathāya", "antarākathāya", "", "chance conversation"]) + let v = native_list_append(v, ["අන‍්තරාකථා", "noun", "අන්තරාකථායො", "අන්තරාකථාය", "අන්තරාකථාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["ราม", "noun", "รามา", "รามสฺส", "รามสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["เถร", "noun", "เถรา", "เถรสฺส", "เถรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["pantha", "noun", "panthā", "panthassa", "panthassa", "", "path road way"]) + let v = native_list_append(v, ["පන්‍ථ", "noun", "පන්ථා", "පන්ථස්ස", "පන්ථස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["bhavant", "noun", "bhavanto", "bhoto", "bhoto", "", "sir your honour"]) + let v = native_list_append(v, ["භවන‍්ත්", "noun", "භවන්තො", "භොතො", "භොතො", "", "Sinhala script form"]) + let v = native_list_append(v, ["นากา", "noun", "นากา", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["rājan", "noun", "rājāno", "rañño", "rañño", "", "king ruler"]) + let v = native_list_append(v, ["রাজন্", "noun", "রাজানো", "রঞ্ঞো", "রঞ্ঞো", "", "Bengali script form"]) + let v = native_list_append(v, ["රාජන්", "noun", "රාජානො", "රඤ්ඤො", "රඤ්ඤො", "", "Sinhala script form"]) + let v = native_list_append(v, ["ราชนฺ", "noun", "ราชาโน", "รญฺโญ", "รญฺโญ", "", "Thai script form"]) + let v = native_list_append(v, ["𑀭𑀸𑀚𑀦𑁆", "noun", "𑀭𑀸𑀚𑀸𑀦𑁄", "𑀭𑀜𑁆𑀜𑁄", "𑀭𑀜𑁆𑀜𑁄", "", "Brahmi script form"]) + let v = native_list_append(v, ["ရာဇန်", "noun", "ရာဇာနော", "ရညော", "ရညော", "", "Burmese script form"]) + let v = native_list_append(v, ["រាជន៑", "noun", "រាជានោ", "រញ្ញោ", "រញ្ញោ", "", "Khmer script form"]) + let v = native_list_append(v, ["មិថុន", "noun", "មិថុនានិ", "មិថុនស្ស", "មិថុនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["sallo", "noun", "sallo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["កលហ", "noun", "កលហា", "កលហស្ស", "កលហស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["មហារាជ", "noun", "មហារាជ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["มหาราชา", "noun", "มหาราชา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["បរិកម្ម", "noun", "បរិកម្មានិ", "បរិកម្មស្ស", "បរិកម្មស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["pāṇa", "noun", "pāṇā", "pāṇassa", "pāṇassa", "", "breath"]) + let v = native_list_append(v, ["sandhiṃ", "noun", "sandhiṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sandhiccheda", "noun", "sandhicchedā", "sandhicchedassa", "sandhicchedassa", "", "house-breaker"]) + let v = native_list_append(v, ["සන්‍ධි", "noun", "සන්ධියො", "සන්ධියා", "සන්ධියා", "", "Sinhala script form"]) + let v = native_list_append(v, ["nillopa", "noun", "nillopā", "nillopassa", "nillopassa", "", "plundering"]) + let v = native_list_append(v, ["නිල‍්ලොප", "noun", "නිල්ලොපා", "නිල්ලොපස්ස", "නිල්ලොපස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ekāgārika", "noun", "ekāgārikā", "ekāgārikassa", "ekāgārikassa", "", "thief"]) + let v = native_list_append(v, ["එකාගාරික", "noun", "එකාගාරිකා", "එකාගාරිකස්ස", "එකාගාරිකස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["paripantha", "noun", "paripanthā", "paripanthassa", "paripanthassa", "", "edge of the"]) + let v = native_list_append(v, ["paripanthe", "noun", "paripanthe", "", "", "", "inflection of paripantha"]) + let v = native_list_append(v, ["පරිපන්‍ථ", "noun", "පරිපන්ථා", "පරිපන්ථස්ස", "පරිපන්ථස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["පරිපන්‍ථෙ", "noun", "පරිපන්‍ථෙ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["paradāra", "noun", "paradārā", "paradārassa", "paradārassa", "", "somebody elses wife"]) + let v = native_list_append(v, ["นาวา", "noun", "นาวาโย", "นาวาย", "นาวาย", "", "Thai script with"]) + let v = native_list_append(v, ["យស", "noun", "យស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["paradāraṃ", "noun", "paradāraṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["පරදාරං", "noun", "පරදාරං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පරදාර", "noun", "පරදාරා", "පරදාරස්ස", "පරදාරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාප", "noun", "පාපානි", "පාපස්ස", "පාපස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["dārā", "noun", "dārāyo", "dārāya", "dārāya", "", "wife married woman"]) + let v = native_list_append(v, ["ঠান", "noun", "ঠানানি", "ঠানস্স", "ঠানস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ᨾᨣ᩠ᨣ", "noun", "ᨾᨣ᩠ᨣᩣ", "ᨾᨣ᩠ᨣᩔ", "ᨾᨣ᩠ᨣᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᨣ᩠ᨣᩮᩣ", "noun", "ᨾᨣ᩠ᨣᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["វិសេស", "noun", "វិសេសា", "វិសេសស្ស", "វិសេសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["បុគ្គល", "noun", "បុគ្គលា", "បុគ្គលស្ស", "បុគ្គលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["គរុ", "noun", "គរវោ", "គរុស្ស", "គរុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["យក្ខ", "noun", "យក្ខា", "យក្ខស្ស", "យក្ខស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ᩁ", "noun", "ᩁ", "ᩁᩔ", "ᩁᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅ", "noun", "ᩅ", "ᩅᩔ", "ᩅᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈ", "noun", "ᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["វគ្គ", "noun", "វគ្គ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yase", "noun", "yase", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["indriya", "noun", "indriyāni", "indriyassa", "indriyassa", "", "directive force"]) + let v = native_list_append(v, ["samiddhi", "noun", "samiddhiyo", "samiddhiyā", "samiddhiyā", "", "success"]) + let v = native_list_append(v, ["āsava", "noun", "āsavā", "āsavassa", "āsavassa", "", "spirit as in"]) + let v = native_list_append(v, ["ᩈᩘᨥ", "noun", "ᩈᩘᨥᩣ", "ᩈᩘᨥᩔ", "ᩈᩘᨥᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩃ", "noun", "ᨾᩃᩣᨶᩥ", "ᨾᩃᩔ", "ᨾᩃᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨣᩩᨱ", "noun", "ᨣᩩᨱᩣ", "ᨣᩩᨱᩔ", "ᨣᩩᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩥᨴ᩠ᨵᩥ", "noun", "ᩈᨾᩥᨴ᩠ᨵᩥᨿᩮᩣ", "ᩈᨾᩥᨴ᩠ᨵᩥᨿᩣ", "ᩈᨾᩥᨴ᩠ᨵᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨲ᩠ᨲ", "noun", "ᨸᨲ᩠ᨲᩣᨶᩥ", "ᨸᨲ᩠ᨲᩔ", "ᨸᨲ᩠ᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["វិកប្ប", "noun", "វិកប្បា", "វិកប្បស្ស", "វិកប្បស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀲𑀧𑁆𑀧", "noun", "𑀲𑀧𑁆𑀧𑀸", "𑀲𑀧𑁆𑀧𑀲𑁆𑀲", "𑀲𑀧𑁆𑀧𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀓𑀫𑁆𑀫", "noun", "𑀓𑀫𑁆𑀫𑀸𑀦𑀺", "𑀓𑀫𑁆𑀫𑀲𑁆𑀲", "𑀓𑀫𑁆𑀫𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["geha", "noun", "geha", "", "", "", "house"]) + let v = native_list_append(v, ["phaḷu", "noun", "phaḷu", "", "", "", "A joint or"]) + let v = native_list_append(v, ["फळु", "noun", "फळु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["khaḷu", "noun", "khaḷu", "", "", "", "A bier or"]) + let v = native_list_append(v, ["खळु", "noun", "खळु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kathi", "noun", "kathi", "", "", "", "vocative singular masculine"]) + let v = native_list_append(v, ["थुस", "noun", "थुसा", "थुसस्स", "थुसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["กุฏิ", "noun", "กุฏิโย", "กุฏิยา", "กุฏิยา", "", "Thai script form"]) + let v = native_list_append(v, ["आय", "noun", "आया", "आयस्स", "आयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["संयम", "noun", "संयमा", "संयमस्स", "संयमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["នាថ", "noun", "នាថា", "នាថស្ស", "នាថស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ᩋᨶᩣᨳᨷᩥᨱ᩠ᨯᩥᨠ", "noun", "ᩋᨶᩣᨳᨷᩥᨱ᩠ᨯᩥᨠᩣ", "ᩋᨶᩣᨳᨷᩥᨱ᩠ᨯᩥᨠᩔ", "ᩋᨶᩣᨳᨷᩥᨱ᩠ᨯᩥᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["anāthapiṇḍika", "noun", "anāthapiṇḍikā", "anāthapiṇḍikassa", "anāthapiṇḍikassa", "", "male nickname"]) + let v = native_list_append(v, ["piṇḍa", "noun", "piṇḍā", "piṇḍassa", "piṇḍassa", "", "lump"]) + let v = native_list_append(v, ["ᩋᨶᩣᨳᨷᩥᨱ᩠ᨯᩥᨠᩈᩞ", "noun", "ᩋᨶᩣᨳᨷᩥᨱ᩠ᨯᩥᨠᩈᩞ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["សិទ្ធិ", "noun", "សិទ្ធិយោ", "សិទ្ធិយា", "សិទ្ធិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["សិទ្ធ", "noun", "សិទ្ធា", "សិទ្ធស្ស", "សិទ្ធស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អតិថិ", "noun", "អតិថយោ", "អតិថិស្ស", "អតិថិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អតិថី", "noun", "អតិថី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["กากี", "noun", "กากิโย", "กากิยา", "กากิยา", "", "Thai script form"]) + let v = native_list_append(v, ["លេខា", "noun", "លេខាយោ", "លេខាយ", "លេខាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["កិច្ច", "noun", "កិច្ចានិ", "កិច្ចស្ស", "កិច្ចស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["เสมหะ", "noun", "เสมหานิ", "เสมหัสสะ", "เสมหัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["अन्तराय", "noun", "अन्तराया", "अन्तरायस्स", "अन्तरायस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सङ्घ", "noun", "सङ्घा", "सङ्घस्स", "सङ्घस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဝံသ", "noun", "ဝံသာ", "ဝံသဿ", "ဝံသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["មន្ត", "noun", "មន្តានិ", "មន្តស្ស", "មន្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សុក", "noun", "សុកា", "សុកស្ស", "សុកស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["จร", "noun", "จรา", "จรสฺส", "จรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["sūkara", "noun", "sūkarā", "sūkarassa", "sūkarassa", "", "pig"]) + let v = native_list_append(v, ["मन्तु", "noun", "मन्तु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ပါရမီ", "noun", "ပါရမိယော", "ပါရမိယာ", "ပါရမိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["pakati", "noun", "pakati", "", "", "", "original form origin"]) + let v = native_list_append(v, ["satti", "noun", "sattiyo", "sattiyā", "sattiyā", "", "ability strength power"]) + let v = native_list_append(v, ["သတ္တိ", "noun", "သတ္တိယော", "သတ္တိယာ", "သတ္တိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["cetanā", "noun", "cetanā", "", "", "", "intention"]) + let v = native_list_append(v, ["vāsanā", "noun", "vāsanāyo", "vāsanāya", "vāsanāya", "", "that which remains"]) + let v = native_list_append(v, ["ဗီဇ", "noun", "ဗီဇာနိ", "ဗီဇဿ", "ဗီဇဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["អង្គុលី", "noun", "អង្គុលី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["បថ", "noun", "បថា", "បថស្ស", "បថស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["sakuṇa", "noun", "sakuṇā", "sakuṇassa", "sakuṇassa", "", "bird"]) + let v = native_list_append(v, ["maṇi", "noun", "maṇayo", "maṇissa", "maṇissa", "", "jewel gem"]) + let v = native_list_append(v, ["សញ្ឈា", "noun", "សញ្ឈា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["អនិច្ច", "noun", "អនិច្ចានិ", "អនិច្ចស្ស", "អនិច្ចស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["pīti", "noun", "pītiyo", "pītiyā", "pītiyā", "", "joy delight pleasure"]) + let v = native_list_append(v, ["ภาวะ", "noun", "ภาวา", "ภาวัสสะ", "ภาวัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["បណ្ឌិត", "noun", "បណ្ឌិតា", "បណ្ឌិតស្ស", "បណ្ឌិតស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ပဏ္ဍိတ", "noun", "ပဏ္ဍိတာ", "ပဏ္ဍိတဿ", "ပဏ္ဍိတဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["បាប", "noun", "បាបានិ", "បាបស្ស", "បាបស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ឧរគ", "noun", "ឧរគា", "ឧរគស្ស", "ឧរគស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["camarī", "noun", "camarī", "", "", "", "yak ox"]) + let v = native_list_append(v, ["ādhipateyya", "noun", "ādhipateyya", "", "", "", "lordship domination power"]) + let v = native_list_append(v, ["nīti", "noun", "nītiyo", "nītiyā", "nītiyā", "", "law guidance"]) + let v = native_list_append(v, ["နီတိ", "noun", "နီတိယော", "နီတိယာ", "နီတိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["วีร", "noun", "วีร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["វីរ", "noun", "វីរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yāyī", "noun", "yāyī", "", "", "", "inflection of yāyin"]) + let v = native_list_append(v, ["ယာယီ", "noun", "ယာယီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vasanta", "noun", "vasantā", "vasantassa", "vasantassa", "", "spring"]) + let v = native_list_append(v, ["ဝသန္တ", "noun", "ဝသန္တာ", "ဝသန္တဿ", "ဝသန္တဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["disā", "noun", "disāyo", "disāya", "disāya", "", "quarter"]) + let v = native_list_append(v, ["ब्रह्मा", "noun", "ब्रह्मा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मङ्गल", "noun", "मङ्गलानि", "मङ्गलस्स", "मङ्गलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vaḍḍhana", "noun", "vaḍḍhanāni", "vaḍḍhanassa", "vaḍḍhanassa", "", "augmentation enlargement extension"]) + let v = native_list_append(v, ["វឌ្ឍន", "noun", "វឌ្ឍនានិ", "វឌ្ឍនស្ស", "វឌ្ឍនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["သာဓက", "noun", "သာဓက", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["sādhaka", "noun", "sādhaka", "", "", "", "proof"]) + let v = native_list_append(v, ["បាទ", "noun", "បាទា", "បាទស្ស", "បាទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["វេទ", "noun", "វេទា", "វេទស្ស", "វេទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["សង្ឃ", "noun", "សង្ឃា", "សង្ឃស្ស", "សង្ឃស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["kolāhala", "noun", "kolāhala", "", "", "", "shouting"]) + let v = native_list_append(v, ["bhoga", "noun", "bhoga", "", "", "", "possession"]) + let v = native_list_append(v, ["puppha", "noun", "puppha", "", "", "", "flower"]) + let v = native_list_append(v, ["paṭiññā", "noun", "paṭiññā", "", "", "", "promise"]) + let v = native_list_append(v, ["upāya", "noun", "upāyā", "upāyassa", "upāyassa", "", "way"]) + let v = native_list_append(v, ["သုတ", "noun", "သုတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သီဟ", "noun", "သီဟာ", "သီဟဿ", "သီဟဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ရာဇာ", "noun", "ရာဇာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝီရ", "noun", "ဝီရ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နဒီ", "noun", "နဒိယော", "နဒိယာ", "နဒိယာ", "", "Devanagari script form"]) + let v = native_list_append(v, ["hemanta", "noun", "hemantā", "hemantassa", "hemantassa", "", "winter"]) + let v = native_list_append(v, ["ကေသ", "noun", "ကေသာ", "ကေသဿ", "ကေသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သိက္ခာ", "noun", "သိက္ခာယော", "သိက္ခာယ", "သိက္ခာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["sigāla", "noun", "sigālā", "sigālassa", "sigālassa", "", "jackal"]) + let v = native_list_append(v, ["အာရာမ", "noun", "အာရာမာ", "အာရာမဿ", "အာရာမဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["kaññā", "noun", "kaññāyo", "kaññāya", "kaññāya", "", "maiden girl"]) + let v = native_list_append(v, ["អាចរិយ", "noun", "អាចរិយា", "អាចរិយស្ស", "អាចរិយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ရာမ", "noun", "ရာမာ", "ရာမဿ", "ရာမဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ယုတ္တိ", "noun", "ယုတ္တိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yutti", "noun", "yuttiyo", "yuttiyā", "yuttiyā", "", "application usage"]) + let v = native_list_append(v, ["vaṃsa", "noun", "vaṃsā", "vaṃsassa", "vaṃsassa", "", "bamboo"]) + let v = native_list_append(v, ["ဇီဝ", "noun", "ဇီဝါနိ", "ဇီဝဿ", "ဇီဝဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ကဏ္ဍ", "noun", "ကဏ္ဍာနိ", "ကဏ္ဍဿ", "ကဏ္ဍဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဂင်္ဂါ", "noun", "ဂင်္ဂါ", "ဂင်္ဂါယ", "ဂင်္ဂါယ", "", "Burmese script form"]) + let v = native_list_append(v, ["cetiya", "noun", "cetiyāni", "cetiyassa", "cetiyassa", "", "memorial"]) + let v = native_list_append(v, ["រាជា", "noun", "រាជា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វណ្ណ", "noun", "វណ្ណា", "វណ្ណស្ស", "វណ្ណស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ပယောဂ", "noun", "ပယောဂါ", "ပယောဂဿ", "ပယောဂဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ភេទ", "noun", "ភេទា", "ភេទស្ស", "ភេទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["anaya", "noun", "anayā", "anayassa", "anayassa", "", "misfortune distress"]) + let v = native_list_append(v, ["មុត្តា", "noun", "មុត្តាយោ", "មុត្តាយ", "មុត្តាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["วิกาล", "noun", "วิกาลา", "วิกาลสฺส", "วิกาลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["วาสนา", "noun", "วาสนาโย", "วาสนาย", "วาสนาย", "", "Thai script form"]) + let v = native_list_append(v, ["กถา", "noun", "กถาโย", "กถาย", "กถาย", "", "Thai script form"]) + let v = native_list_append(v, ["អាណា", "noun", "អាណាយោ", "អាណាយ", "អាណាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["อาสน", "noun", "อาสนานิ", "อาสนสฺส", "อาสนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["သာသနာ", "noun", "သာသနာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อิทธิ", "noun", "อิทธิโย", "อิทธิยา", "อิทธิยา", "", "Thai script form"]) + let v = native_list_append(v, ["ឥទ្ធិ", "noun", "ឥទ្ធិយោ", "ឥទ្ធិយា", "ឥទ្ធិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["ဝိသေသ", "noun", "ဝိသေသာ", "ဝိသေသဿ", "ဝိသေသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["visesa", "noun", "visesā", "visesassa", "visesassa", "", "distinction difference attainment"]) + let v = native_list_append(v, ["လက္ခဏာ", "noun", "လက္ခဏာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["မံသ", "noun", "မံသာနိ", "မံသဿ", "မံသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဩသဓ", "noun", "ဩသဓာနိ", "ဩသဓဿ", "ဩသဓဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["parikkhāra", "noun", "parikkhāra", "", "", "", "eight prescribed articles"]) + let v = native_list_append(v, ["ទុក្ខ", "noun", "ទុក្ខ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["အနိစ္စ", "noun", "အနိစ္စာနိ", "အနိစ္စဿ", "အနိစ္စဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["နိစ္စ", "noun", "နိစ္စာနိ", "နိစ္စဿ", "နိစ္စဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သုဒ္ဒ", "noun", "သုဒ္ဒါ", "သုဒ္ဒဿ", "သုဒ္ဒဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဗြာဟ္မဏ", "noun", "ဗြာဟ္မဏာ", "ဗြာဟ္မဏဿ", "ဗြာဟ္မဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝေဿ", "noun", "ဝေဿာ", "ဝေဿဿ", "ဝေဿဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သံဃာ", "noun", "သံဃာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yaso", "noun", "yaso", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["ဘိက္ခုနီ", "noun", "ဘိက္ခုနိယော", "ဘိက္ခုနိယာ", "ဘိက္ခုနိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["คมน", "noun", "คมนานิ", "คมนสฺส", "คมนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ဝိဟာရ", "noun", "ဝိဟာရာ", "ဝိဟာရဿ", "ဝိဟာရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝသုန္ဓရာ", "noun", "ဝသုန္ဓရာယော", "ဝသုန္ဓရာယ", "ဝသုန္ဓရာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဂရု", "noun", "ဂရဝေါ", "ဂရုဿ", "ဂရုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["နိဂ္ဂဟိတ", "noun", "နိဂ္ဂဟိတာနိ", "နိဂ္ဂဟိတဿ", "နိဂ္ဂဟိတဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ပုဗ္ဗ", "noun", "ပုဗ္ဗာ", "ပုဗ္ဗဿ", "ပုဗ္ဗဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ကထိန်", "noun", "ကထိနော", "ကထိဿ", "ကထိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["uposatha", "noun", "uposatha", "", "", "", "uposatha a day"]) + let v = native_list_append(v, ["ឧត្តរ", "noun", "ឧត្តរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["សាលី", "noun", "សាលី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វិធី", "noun", "វិធី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["သဒ္ဓါ", "noun", "သဒ္ဓါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["आगम", "noun", "आगमा", "आगमस्स", "आगमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["နာမ", "noun", "နာမာနိ", "နာမဿ", "နာမဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဥပရာဇာ", "noun", "ဥပရာဇာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အဂ္ဂမဟာပဏ္ဍိတ", "noun", "အဂ္ဂမဟာပဏ္ဍိတာနိ", "အဂ္ဂမဟာပဏ္ဍိတဿ", "အဂ္ဂမဟာပဏ္ဍိတဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဂုရု", "noun", "ဂုရဝေါ", "ဂုရုဿ", "ဂုရုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["အာစရိယ", "noun", "အာစရိယာ", "အာစရိယဿ", "အာစရိယဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဗြဟ္မာ", "noun", "ဗြဟ္မာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["လက္ခဏ", "noun", "လက္ခဏာနိ", "လက္ခဏဿ", "လက္ခဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒေဝီ", "noun", "ဒေဝိယော", "ဒေဝိယာ", "ဒေဝိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒေဝ", "noun", "ဒေဝါ", "ဒေဝဿ", "ဒေဝဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["cakkavāḷa", "noun", "cakkavāḷāni", "cakkavāḷassa", "cakkavāḷassa", "", "circle"]) + let v = native_list_append(v, ["cakkavāla", "noun", "cakkavālāni", "cakkavālassa", "cakkavālassa", "", "alternative form of"]) + let v = native_list_append(v, ["Devadatta", "noun", "Devadattā", "Devadattassa", "Devadattassa", "", "Devadatta cousin and"]) + let v = native_list_append(v, ["သရီရ", "noun", "သရီရာနိ", "သရီရဿ", "သရီရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ထေရဝါဒ", "noun", "ထေရဝါဒ", "ထေရဝါဒဿ", "ထေရဝါဒဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သိဒ္ဓိ", "noun", "သိဒ္ဓိယော", "သိဒ္ဓိယာ", "သိဒ္ဓိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒါန", "noun", "ဒါနာနိ", "ဒါနဿ", "ဒါနဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["attena", "noun", "attena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["lomassa", "noun", "lomassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["សរ", "noun", "សរា", "សរស្ស", "សរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ခန္တီ", "noun", "ခန္တီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဥပေက္ခာ", "noun", "ဥပေက္ခာယော", "ဥပေက္ခာယ", "ဥပေက္ခာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["မုနိ", "noun", "munayo", "munissa", "munissa", "", "Burmese script form"]) + let v = native_list_append(v, ["ဘိက္ခု", "noun", "ဘိက္ခဝေါ", "ဘိက္ခုဿ", "ဘိက္ခုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ကညာ", "noun", "ကညာယော", "ကညာယ", "ကညာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["វចន", "noun", "វចនានិ", "វចនស្ស", "វចនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ဓနု", "noun", "ဓနူနိ", "ဓနုဿ", "ဓနုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["gaṇa", "noun", "gaṇā", "gaṇassa", "gaṇassa", "", "gang crowd"]) + let v = native_list_append(v, ["nikāya", "noun", "nikāyā", "nikāyassa", "nikāyassa", "", "group"]) + let v = native_list_append(v, ["နိကာယ", "noun", "နိကာယာ", "နိကာယဿ", "နိကာယဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["မနော", "noun", "မနော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ayyā", "noun", "ayyāyo", "ayyāya", "ayyāya", "", "lady"]) + let v = native_list_append(v, ["agada", "noun", "agada", "", "", "", "medicine"]) + let v = native_list_append(v, ["cihana", "noun", "cihana", "", "", "", "mark"]) + let v = native_list_append(v, ["pajā", "noun", "pajāyo", "pajāya", "pajāya", "", "progeny"]) + let v = native_list_append(v, ["उपमा", "noun", "उपमा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["patatta", "noun", "patatta", "", "", "", "wing"]) + let v = native_list_append(v, ["patākā", "noun", "patākāyo", "patākāya", "patākāya", "", "flag banner"]) + let v = native_list_append(v, ["paṭṭa", "noun", "paṭṭā", "paṭṭassa", "paṭṭassa", "", "strip slip riband"]) + let v = native_list_append(v, ["nigrodha", "noun", "nigrodhā", "nigrodhassa", "nigrodhassa", "", "banyan tree"]) + let v = native_list_append(v, ["ພຸທ຺ຘ", "noun", "ພຸທ຺ຘາ", "ພຸທ຺ຘສ຺ສ", "ພຸທ຺ຘສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ສຣຓ", "noun", "ສຣຓານິ", "ສຣຓສ຺ສ", "ສຣຓສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["सरण", "noun", "सरणानि", "सरणस्स", "सरणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["พุทฺธ", "noun", "พุทฺธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สรณ", "noun", "สรณานิ", "สรณสฺส", "สรณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ພ຺ະຄະວັນຕ໌", "noun", "ພ຺ະຄະວັນໂຕ", "ພ຺ະຄະວະໂຕ", "ພ຺ະຄະວະໂຕ", "", "Lao script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲", "noun", "𑀅𑀲𑁆𑀲𑀸", "𑀅𑀲𑁆𑀲𑀲𑁆𑀲", "𑀅𑀲𑁆𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ອະຣະຫັນຕ", "noun", "ອະຣະຫັນໂຕ", "ອະຣະຫະໂຕ", "ອະຣະຫະໂຕ", "", "Lao script form"]) + let v = native_list_append(v, ["ສັມພຸທທ຺ະ", "noun", "ສັມພຸທທ຺າ", "ສັມພຸທທ຺ັສສະ", "ສັມພຸທທ຺ັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ວິຊຊາ", "noun", "ວິຊຊາໂຍ", "ວິຊຊາຍະ", "ວິຊຊາຍະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຈະຣະນ຺ະ", "noun", "ຈະຣະນ຺ານິ", "ຈະຣະນ຺ັສສະ", "ຈະຣະນ຺ັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ໂລກະ", "noun", "ໂລກາ", "ໂລກັສສະ", "ໂລກັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸຣິສະ", "noun", "ປຸຣິສາ", "ປຸຣິສັສສະ", "ປຸຣິສັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ທັມມະ", "noun", "ທັມມາ", "ທັມມັດສະ", "ທັມມັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສາຣະຖິ", "noun", "ສາຣະຖະໂຍ", "ສາຣະຖິສສະ", "ສາຣະຖິສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສັຕຖັຣ", "noun", "ສັຕຖາໂຣ", "ສັຕຖຸ", "ສັຕຖຸ", "", "Lao script form"]) + let v = native_list_append(v, ["ເທວະ", "noun", "ເທວາ", "ເທວັສສະ", "ເທວັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ມະນຸສສະ", "noun", "ມະນຸສສາ", "ມະນຸສສັສສະ", "ມະນຸສສັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸທທ຺ະ", "noun", "ພຸທທ຺ະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທ຺ັມມະ", "noun", "ທ຺ັມມາ", "ທ຺ັມມັສສະ", "ທ຺ັມມັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["សាមី", "noun", "សាមី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["เวทนา", "noun", "เวทนา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["សុរា", "noun", "សុរាយោ", "សុរាយ", "សុរាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["បារមី", "noun", "បារមិយោ", "បារមិយា", "បារមិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["purisapuggala", "noun", "purisapuggala", "", "", "", "individual man"]) + let v = native_list_append(v, ["nakula", "noun", "nakulā", "nakulassa", "nakulassa", "", "mongoose"]) + let v = native_list_append(v, ["គង្គា", "noun", "គង្គា", "គង្គាយ", "គង្គាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["sāvaka", "noun", "sāvakā", "sāvakassa", "sāvakassa", "", "holy disciple"]) + let v = native_list_append(v, ["ສາວະກະ", "noun", "ສາວະກາ", "ສາວະກັສສະ", "ສາວະກັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສັງຄະ", "noun", "ສັງຄາ", "ສັງຄັສສະ", "ສັງຄັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສັງຄ຺ະ", "noun", "ສັງຄ຺າ", "ສັງຄ຺ັສສະ", "ສັງຄ຺ັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ñāya", "noun", "ñāyā", "ñāyassa", "ñāyassa", "", "method system"]) + let v = native_list_append(v, ["ຍ຺າຢະ", "noun", "ຍ຺າຢາ", "ຍ຺າຢັສສະ", "ຍ຺າຢັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["sāmīci", "noun", "sāmīciyo", "sāmīciyā", "sāmīciyā", "", "propriety"]) + let v = native_list_append(v, ["ສາມີຈິ", "noun", "ສາມີຈິໂຍ", "ສາມີຈິຍາ", "ສາມີຈິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ຢຸຄະ", "noun", "ຢຸຄານິ", "ຢຸຄັສສະ", "ຢຸຄັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸຣິສະປຸຄຄະລະ", "noun", "ປຸຣິສະປຸຄຄະລາ", "ປຸຣິສະປຸຄຄະລັສສະ", "ປຸຣິສະປຸຄຄະລັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["āhuṇa", "noun", "āhuṇāni", "āhuṇassa", "āhuṇassa", "", "adoration"]) + let v = native_list_append(v, ["pāhuṇa", "noun", "pāhuṇā", "pāhuṇassa", "pāhuṇassa", "", "guest"]) + let v = native_list_append(v, ["dakkhiṇā", "noun", "dakkhiṇāyo", "dakkhiṇāya", "dakkhiṇāya", "", "donation"]) + let v = native_list_append(v, ["ອັຍ຺ຊະລິ", "noun", "ອັຍ຺ຊະລິໂຍ", "ອັຍ຺ຊະລິຍາ", "ອັຍ຺ຊະລິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸຍ຺ຍ຺ະ", "noun", "ປຸຍ຺ຍ຺ານິ", "ປຸຍ຺ຍ຺ັສສະ", "ປຸຍ຺ຍ຺ັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ເຂຕຕະ", "noun", "ເຂຕຕານິ", "ເຂຕຕັສສະ", "ເຂຕຕັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["พลี", "noun", "พลี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ពលី", "noun", "ពលី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["យញ្ញ", "noun", "យញ្ញា", "យញ្ញស្ស", "យញ្ញស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["sakkāra", "noun", "sakkārā", "sakkārassa", "sakkārassa", "", "honor"]) + let v = native_list_append(v, ["สักการะ", "noun", "สักการา", "สักการัสสะ", "สักการัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ธัมมะ", "noun", "ธัมมา", "ธัมมัสสะ", "ธัมมัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สังฆะ", "noun", "สังฆา", "สังฆัสสะ", "สังฆัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["อะระหันต", "noun", "อะระหันโต", "อะระหะโต", "อะระหะโต", "", "Thai script without"]) + let v = native_list_append(v, ["สัมพุทธะ", "noun", "สัมพุทธา", "สัมพุทธัสสะ", "สัมพุทธัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ภะคะวันต", "noun", "ภะคะวันโต", "ภะคะวะโต", "ภะคะวะโต", "", "Thai script without"]) + let v = native_list_append(v, ["สาวะกะ", "noun", "สาวะกา", "สาวะกัสสะ", "สาวะกัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ภันเต", "noun", "ภันเต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ภะวันต", "noun", "ภะวันโต", "โภโต", "โภโต", "", "Thai script without"]) + let v = native_list_append(v, ["rakkhaṇa", "noun", "rakkhaṇāni", "rakkhaṇassa", "rakkhaṇassa", "", "protection"]) + let v = native_list_append(v, ["รักขะณะ", "noun", "รักขะณานิ", "รักขะณัสสะ", "รักขะณัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["tisaraṇa", "noun", "tisaraṇāni", "tisaraṇassa", "tisaraṇassa", "", "The three refuges"]) + let v = native_list_append(v, ["ติสะระณะ", "noun", "ติสะระณานิ", "ติสะระณัสสะ", "ติสะระณัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สีละ", "noun", "สีลานิ", "สีลัสสะ", "สีลัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["attha", "noun", "atthā", "atthassa", "atthassa", "", "welfare gain wealth"]) + let v = native_list_append(v, ["อัตถะ", "noun", "อัตถา", "อัตถัสสะ", "อัตถัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ปาณะ", "noun", "ปาณา", "ปาณัสสะ", "ปาณัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สะระณะ", "noun", "สะระณานิ", "สะระณัสสะ", "สะระณัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["atipāta", "noun", "atipātā", "atipātassa", "atipātassa", "", "killing"]) + let v = native_list_append(v, ["อะติปาตะ", "noun", "อะติปาตา", "อะติปาตัสสะ", "อะติปาตัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["veramaṇī", "noun", "veramaṇiyo", "veramaṇiyā", "veramaṇiyā", "", "abstinence"]) + let v = native_list_append(v, ["เวระมะณี", "noun", "เวระมะณิโย", "เวระมะณิยา", "เวระมะณิยา", "", "Thai script without"]) + let v = native_list_append(v, ["กามะ", "noun", "กามา", "กามัสสะ", "กามัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["micchācāra", "noun", "micchācārāni", "micchācārassa", "micchācārassa", "", "misconduct"]) + let v = native_list_append(v, ["cāra", "noun", "cārā", "cārassa", "cārassa", "", "motion"]) + let v = native_list_append(v, ["มิจฉาจาระ", "noun", "มิจฉาจารานิ", "มิจฉาจารัสสะ", "มิจฉาจารัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["วาทะ", "noun", "วาทา", "วาทัสสะ", "วาทัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["musāvāda", "noun", "musāvādā", "musāvādassa", "musāvādassa", "", "telling lies"]) + let v = native_list_append(v, ["มุสาวาทะ", "noun", "มุสาวาทา", "มุสาวาทัสสะ", "มุสาวาทัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["surā", "noun", "surāyo", "surāya", "surāya", "", "distilled liquor"]) + let v = native_list_append(v, ["meraya", "noun", "merayāni", "merayassa", "merayassa", "", "fermented liquor"]) + let v = native_list_append(v, ["majja", "noun", "majjāni", "majjassa", "majjassa", "", "intoxicant"]) + let v = native_list_append(v, ["pamāda", "noun", "pamādā", "pamādassa", "pamādassa", "", "carelessness"]) + let v = native_list_append(v, ["ṭhāna", "noun", "ṭhānāni", "ṭhānassa", "ṭhānassa", "", "place"]) + let v = native_list_append(v, ["surāmerayamajjapamādaṭṭhāna", "noun", "surāmerayamajjapamādaṭṭhānāni", "surāmerayamajjapamādaṭṭhānassa", "surāmerayamajjapamādaṭṭhānassa", "", "fermented drink that"]) + let v = native_list_append(v, ["เมระยะ", "noun", "เมระยานิ", "เมระยัสสะ", "เมระยัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["มัชชะ", "noun", "มัชชานิ", "มัชชัสสะ", "มัชชัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ปะมาทะ", "noun", "ปะมาทา", "ปะมาทัสสะ", "ปะมาทัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ādāna", "noun", "ādānāni", "ādānassa", "ādānassa", "", "taking"]) + let v = native_list_append(v, ["อาทานะ", "noun", "อาทานานิ", "อาทานัสสะ", "อาทานัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สุราเมระยะมัชชะปะมาทัฏฐานะ", "noun", "สุราเมระยะมัชชะปะมาทัฏฐานานิ", "สุราเมระยะมัชชะปะมาทัฏฐานัสสะ", "สุราเมระยะมัชชะปะมาทัฏฐานัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["vikāla", "noun", "vikālā", "vikālassa", "vikālassa", "", "wrong time"]) + let v = native_list_append(v, ["bhojana", "noun", "bhojanāni", "bhojanassa", "bhojanassa", "", "meal food"]) + let v = native_list_append(v, ["vikālabhojana", "noun", "vikālabhojanāni", "vikālabhojanassa", "vikālabhojanassa", "", "eating in the"]) + let v = native_list_append(v, ["អសុរ", "noun", "អសុរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["dhāraṇa", "noun", "dhāraṇāni", "dhāraṇassa", "dhāraṇassa", "", "wearing"]) + let v = native_list_append(v, ["วิกาละโภชะนะ", "noun", "วิกาละโภชะนานิ", "วิกาละโภชะนัสสะ", "วิกาละโภชะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["วิกาละ", "noun", "วิกาลา", "วิกาลัสสะ", "วิกาลัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["โภชะนะ", "noun", "โภชะนานิ", "โภชะนัสสะ", "โภชะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["กาละ", "noun", "กาลา", "กาลัสสะ", "กาลัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["นัจจะ", "noun", "นัจจานิ", "นัจจัสสะ", "นัจจัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["maṇḍana", "noun", "maṇḍanāni", "maṇḍanassa", "maṇḍanassa", "", "adornment"]) + let v = native_list_append(v, ["visūka", "noun", "visūkāni", "visūkassa", "visūkassa", "", "restless motion"]) + let v = native_list_append(v, ["วิสูกะ", "noun", "วิสูกานิ", "วิสูกัสสะ", "วิสูกัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ทัสสะนะ", "noun", "ทัสสะนานิ", "ทัสสะนัสสะ", "ทัสสะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["คันธะ", "noun", "คันธา", "คันธัสสะ", "คันธัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["vilepana", "noun", "vilepanāni", "vilepanassa", "vilepanassa", "", "ointment"]) + let v = native_list_append(v, ["lepana", "noun", "lepanāni", "lepanassa", "lepanassa", "", "smearing"]) + let v = native_list_append(v, ["วิเลปะนะ", "noun", "วิเลปะนานิ", "วิเลปะนัสสะ", "วิเลปะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ธาระณะ", "noun", "ธาระณานิ", "ธาระณัสสะ", "ธาระณัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["sayana", "noun", "sayanāni", "sayanassa", "sayanassa", "", "sleeping"]) + let v = native_list_append(v, ["สะยะนะ", "noun", "สะยะนานิ", "สะยะนัสสะ", "สะยะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["uccāsayana", "noun", "uccāsayanāni", "uccāsayanassa", "uccāsayanassa", "", "high bed"]) + let v = native_list_append(v, ["อุจจาสะยะนะ", "noun", "อุจจาสะยะนานิ", "อุจจาสะยะนัสสะ", "อุจจาสะยะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["mahāsayana", "noun", "mahāsayanāni", "mahāsayanassa", "mahāsayanassa", "", "luxurious bed"]) + let v = native_list_append(v, ["มะหาสะยะนะ", "noun", "มะหาสะยะนานิ", "มะหาสะยะนัสสะ", "มะหาสะยะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["วิปัตติ", "noun", "วิปัตติโย", "วิปัตติยา", "วิปัตติยา", "", "Thai script without"]) + let v = native_list_append(v, ["paṭibāha", "noun", "paṭibāhā", "paṭibāhassa", "paṭibāhassa", "", "warding off"]) + let v = native_list_append(v, ["ปะฏิพาหะ", "noun", "ปะฏิพาหา", "ปะฏิพาหัสสะ", "ปะฏิพาหัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["sampatti", "noun", "sampattiyo", "sampattiyā", "sampattiyā", "", "success attainment"]) + let v = native_list_append(v, ["สัมปัตติ", "noun", "สัมปัตติโย", "สัมปัตติยา", "สัมปัตติยา", "", "Thai script without"]) + let v = native_list_append(v, ["ทุกขะ", "noun", "ทุกขานิ", "ทุกขัสสะ", "ทุกขัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["vināsa", "noun", "vināsā", "vināsassa", "vināsassa", "", "destruction"]) + let v = native_list_append(v, ["วินาสะ", "noun", "วินาสา", "วินาสัสสะ", "วินาสัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ปะริตตะ", "noun", "ปะริตตานิ", "ปะริตตัสสะ", "ปะริตตัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["มังคะละ", "noun", "มังคะลานิ", "มังคะลัสสะ", "มังคะลัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["পাদা", "noun", "পাদা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["अकारा", "noun", "अकारा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᩈᩩᨲ", "noun", "ᩈᩩᨲᩣᨶᩥ", "ᩈᩩᨲᩔ", "ᩈᩩᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["โลกะ", "noun", "โลกา", "โลกัสสะ", "โลกัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สัตตะ", "noun", "สัตตา", "สัตตัสสะ", "สัตตัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ปริยาย", "noun", "ปริยายา", "ปริยายสฺส", "ปริยายสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ปะชา", "noun", "ปะชาโย", "ปะชาย", "ปะชาย", "", "Thai script without"]) + let v = native_list_append(v, ["brahmā", "noun", "brahmā", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["พรัหมัน", "noun", "พรัหมัน", "พรัหมะโน", "พรัหมะโน", "", "Thai script form"]) + let v = native_list_append(v, ["attaṃ", "noun", "attaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ajjhayana", "noun", "ajjhayanāni", "ajjhayanassa", "ajjhayanassa", "", "study i.e. learning"]) + let v = native_list_append(v, ["anadhivara", "noun", "anadhivara", "", "", "", "The Blessed One"]) + let v = native_list_append(v, ["andhivara", "noun", "andhivara", "", "", "", "misreading of anadhivara"]) + let v = native_list_append(v, ["อันธิวะระ", "noun", "อันธิวะระ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["วิชชา", "noun", "วิชชาโย", "วิชชายะ", "วิชชายะ", "", "Thai script without"]) + let v = native_list_append(v, ["จะระณะ", "noun", "จะระณานิ", "จะระณัสสะ", "จะระณัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ปุริสะ", "noun", "ปุริสา", "ปุริสัสสะ", "ปุริสัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สาระถิ", "noun", "สาระถะโย", "สาระถิสสะ", "สาระถิสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สัตถัร", "noun", "สัตถาโร", "สัตถุ", "สัตถุ", "", "Thai script without"]) + let v = native_list_append(v, ["มะนุสสะ", "noun", "มะนุสสา", "มะนุสสัสสะ", "มะนุสสัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ญายะ", "noun", "ญายา", "ญายัสสะ", "ญายัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["สามีจิ", "noun", "สามีจิโย", "สามีจิยา", "สามีจิยา", "", "Thai script form"]) + let v = native_list_append(v, ["ยุคะ", "noun", "ยุคานิ", "ยุคัสสะ", "ยุคัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ปุริสะปุคคะละ", "noun", "ปุริสะปุคคะลา", "ปุริสะปุคคะลัสสะ", "ปุริสะปุคคะลัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["āhuna", "noun", "āhunāni", "āhunassa", "āhunassa", "", "adoration"]) + let v = native_list_append(v, ["pāhuna", "noun", "pāhuna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ปุญญะ", "noun", "ปุญญานิ", "ปุญญัสสะ", "ปุญญัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["เขตตะ", "noun", "เขตตานิ", "เขตตัสสะ", "เขตตัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["𑀓𑀯𑀺", "noun", "𑀓𑀯𑀬𑁄", "𑀓𑀯𑀺𑀲𑁆𑀲", "𑀓𑀯𑀺𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["mārena", "noun", "mārena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["āyatana", "noun", "āyatanāni", "āyatanassa", "āyatanassa", "", "sphere"]) + let v = native_list_append(v, ["cakkhāyatana", "noun", "cakkhāyatanāni", "cakkhāyatanassa", "cakkhāyatanassa", "", "organ of sight"]) + let v = native_list_append(v, ["phoṭṭhabba", "noun", "phoṭṭhabbāni", "phoṭṭhabbassa", "phoṭṭhabbassa", "", "touch"]) + let v = native_list_append(v, ["ຈິຕຕະ", "noun", "ຈິຕຕານິ", "ຈິຕຕັສສະ", "ຈິຕຕັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຣະສະ", "noun", "ຣະສາ", "ຣະສັສສະ", "ຣະສັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ປັຈຈະຍະ", "noun", "ປັຈຈະຍາ", "ປັຈຈະຍັສສະ", "ປັຈຈະຍັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຈັກຂຸ", "noun", "ຈັກຂູນິ", "ຈັກຂຸສສະ", "ຈັກຂຸສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ວິຎຎາຓະ", "noun", "ວິຎຎາຓານິ", "ວິຎຎາຓັສສະ", "ວິຎຎາຓັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຘາຕຸ", "noun", "ຘາຕຸໂຍ", "ຘາຕຸຍາ", "ຘາຕຸຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ອາຍະຕະນະ", "noun", "ອາຍະຕະນານິ", "ອາຍະຕະນັສສະ", "ອາຍະຕະນັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["sampayuttaka", "noun", "sampayuttaka", "", "", "", "concomitant"]) + let v = native_list_append(v, ["ສັມປະຍຸຕຕະກະ", "noun", "ສັມປະຍຸຕຕະກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຘັມມະ", "noun", "ຘັມມາ", "ຘັມມັສສະ", "ຘັມມັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຣູປະ", "noun", "ຣູປານິ", "ຣູປັສສະ", "ຣູປັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["samuṭṭhāna", "noun", "samuṭṭhānāni", "samuṭṭhānassa", "samuṭṭhānassa", "", "rising"]) + let v = native_list_append(v, ["uṭṭhāna", "noun", "uṭṭhānāni", "uṭṭhānassa", "uṭṭhānassa", "", "rising"]) + let v = native_list_append(v, ["မနသ်", "noun", "မနသ်", "မနသော", "မနသော", "", "Burmese script form"]) + let v = native_list_append(v, ["মনস্", "noun", "মনস্", "মনসো", "মনসো", "", "Bengali script form"]) + let v = native_list_append(v, ["ມະນັສ", "noun", "ມະນັສ", "ມະນະໂສ", "ມະນະໂສ", "", "Lao script form"]) + let v = native_list_append(v, ["assaddhiya", "noun", "assaddhiyāni", "assaddhiyassa", "assaddhiyassa", "", "disbelief"]) + let v = native_list_append(v, ["yasas", "noun", "yasāni", "yasaso", "yasaso", "", "fame"]) + let v = native_list_append(v, ["यसस्", "noun", "यसानि", "यससो", "यससो", "", "Devanagari script form"]) + let v = native_list_append(v, ["យសស៑", "noun", "យសានិ", "យសសោ", "យសសោ", "", "Khmer script form"]) + let v = native_list_append(v, ["រាគ", "noun", "រាគា", "រាគស្ស", "រាគស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ရာဂ", "noun", "ရာဂါ", "ရာဂဿ", "ရာဂဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ကာမ", "noun", "ကာမာ", "ကာမဿ", "ကာမဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["တဏှာ", "noun", "တဏှာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["kodha", "noun", "kodhā", "kodhassa", "kodhassa", "", "anger"]) + let v = native_list_append(v, ["saṃyojana", "noun", "saṃyojanāni", "saṃyojanassa", "saṃyojanassa", "", "bond fetter"]) + let v = native_list_append(v, ["saññojana", "noun", "saññojanāni", "saññojanassa", "saññojanassa", "", "alternative form of"]) + let v = native_list_append(v, ["saṅga", "noun", "saṅgā", "saṅgassa", "saṅgassa", "", "attachment"]) + let v = native_list_append(v, ["ᩈᨴ᩠ᨵᩣ", "noun", "ᩈᨴ᩠ᨵᩣᨿᩮᩣ", "ᩈᨴ᩠ᨵᩣᨿ", "ᩈᨴ᩠ᨵᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᩔᨴ᩠ᨵᩥᨿ", "noun", "ᩋᩔᨴ᩠ᨵᩥᨿᩣᨶᩥ", "ᩋᩔᨴ᩠ᨵᩥᨿᩔ", "ᩋᩔᨴ᩠ᨵᩥᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨿᩈᩈ᩺", "noun", "ᨿᩈᩣᨶᩥ", "ᨿᩈᩈᩮᩣ", "ᨿᩈᩈᩮᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᩥᨲ᩠ᨲᩥ", "noun", "ᨠᩥᨲ᩠ᨲᩥᨿᩮᩣ", "ᨠᩥᨲ᩠ᨲᩥᨿᩣ", "ᨠᩥᨲ᩠ᨲᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᩥᨲ᩠ᨲᩦ", "noun", "ᨠᩥᨲ᩠ᨲᩦ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kittī", "noun", "kittī", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᩈᨣ᩠ᨣ", "noun", "ᩈᨣ᩠ᨣᩣ", "ᩈᨣ᩠ᨣᩔ", "ᩈᨣ᩠ᨣᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩁᩦᩁ", "noun", "ᩈᩁᩦᩁᩣᨶᩥ", "ᩈᩁᩦᩁᩔ", "ᩈᩁᩦᩁᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᩮᩣᨵ", "noun", "ᨠᩮᩣᨵᩤ", "ᨠᩮᩣᨵᩔ", "ᨠᩮᩣᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩣᨶ", "noun", "ᨾᩣᨶᩣ", "ᨾᩣᨶᩔ", "ᨾᩣᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨬ᩠ᨬᩮᩣᨩᨶ", "noun", "ᩈᨬ᩠ᨬᩮᩣᨩᨶᩣᨶᩥ", "ᩈᨬ᩠ᨬᩮᩣᨩᨶᩔ", "ᩈᨬ᩠ᨬᩮᩣᨩᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["nāma", "noun", "nāmāni", "nāmassa", "nāmassa", "", "name"]) + let v = native_list_append(v, ["ᨶᩣᨾ", "noun", "ᨶᩣᨾᩣᨶᩥ", "ᨶᩣᨾᩔ", "ᨶᩣᨾᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩁᩪᨸ", "noun", "ᩁᩪᨸᩣᨶᩥ", "ᩁᩪᨸᩔ", "ᩁᩪᨸᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩘᨣ", "noun", "ᩈᩘᨣᩣ", "ᩈᩘᨣᩔ", "ᩈᩘᨣᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ສທ຺ຘາ", "noun", "ສທ຺ຘາໂຍ", "ສທ຺ຘາຍ", "ສທ຺ຘາຍ", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸຣິສ", "noun", "ປຸຣິສາ", "ປຸຣິສສ຺ສ", "ປຸຣິສສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ຍສສ຺", "noun", "ຍສານິ", "ຍສໂສ", "ຍສໂສ", "", "Lao script form"]) + let v = native_list_append(v, ["ກິຕ຺ຕິ", "noun", "ກິຕ຺ຕິໂຍ", "ກິຕ຺ຕິຍາ", "ກິຕ຺ຕິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ກິຕ຺ຕີ", "noun", "ກິຕ຺ຕີ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຄ຺ຄ", "noun", "ສຄ຺ຄາ", "ສຄ຺ຄສ຺ສ", "ສຄ຺ຄສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ສຣີຣ", "noun", "ສຣີຣານິ", "ສຣີຣສ຺ສ", "ສຣີຣສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ໂກຘ", "noun", "ໂກຘາ", "ໂກຘສ຺ສ", "ໂກຘສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ມານ", "noun", "ມານາ", "ມານສ຺ສ", "ມານສ຺ສ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ສຎ຺ໂຎຊນ", "noun", "ສຎ຺ໂຎຊນານິ", "ສຎ຺ໂຎຊນສ຺ສ", "ສຎ຺ໂຎຊນສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ຣູປ", "noun", "ຣູປານິ", "ຣູປສ຺ສ", "ຣູປສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ສງ຺ຄ", "noun", "ສງ຺ຄາ", "ສງ຺ຄສ຺ສ", "ສງ຺ຄສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ภควนฺตฺ", "noun", "ภควนฺโต", "ภควโต", "ภควโต", "", "Thai script form"]) + let v = native_list_append(v, ["อรหนฺตฺ", "noun", "อรหนฺโต", "อรหโต", "อรหโต", "", "Thai script form"]) + let v = native_list_append(v, ["สมฺพุทฺธ", "noun", "สมฺพุทฺธา", "สมฺพุทฺธสฺส", "สมฺพุทฺธสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ภควา", "noun", "ภควา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อรหํ", "noun", "อรหํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["วิชฺชา", "noun", "วิชฺชาโย", "วิชฺชาย", "วิชฺชาย", "", "Thai script form"]) + let v = native_list_append(v, ["จรณ", "noun", "จรณานิ", "จรณสฺส", "จรณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ปุริส", "noun", "ปุริสา", "ปุริสสฺส", "ปุริสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩩᩁᩥᩈ", "noun", "ᨷᩩᩁᩥᩈᩣ", "ᨷᩩᩁᩥᩈᩔ", "ᨷᩩᩁᩥᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["สารถิ", "noun", "สารถโย", "สารถิสฺส", "สารถิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สตฺถรฺ", "noun", "สตฺถาโร", "สตฺถุ", "สตฺถุ", "", "Thai script form"]) + let v = native_list_append(v, ["สตฺถา", "noun", "สตฺถา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สตฺถุ", "noun", "สตฺถุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["satthu", "noun", "satthu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ธมฺม", "noun", "ธมฺมา", "ธมฺมสฺส", "ธมฺมสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩣᩅᨠ", "noun", "ᩈᩣᩅᨠᩣ", "ᩈᩣᩅᨠᩔ", "ᩈᩣᩅᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ญาย", "noun", "ญายา", "ญายสฺส", "ญายสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨬᩣᨿ", "noun", "ᨬᩣᨿᩣ", "ᨬᩣᨿᩔ", "ᨬᩣᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩣᨾᩦᨧᩥ", "noun", "ᩈᩣᨾᩦᨧᩥᨿᩮᩣ", "ᩈᩣᨾᩦᨧᩥᨿᩣ", "ᩈᩣᨾᩦᨧᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["สงฺฆ", "noun", "สงฺฆา", "สงฺฆสฺส", "สงฺฆสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨿᩩᨣ", "noun", "ᨿᩩᨣᩤᨶᩥ", "ᨿᩩᨣᩔ", "ᨿᩩᨣᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปุริสปุคฺคล", "noun", "ปุริสปุคฺคลา", "ปุริสปุคฺคลสฺส", "ปุริสปุคฺคลสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩩᩁᩥᩈᨷᩩᨣ᩠ᨣᩃ", "noun", "ᨷᩩᩁᩥᩈᨷᩩᨣ᩠ᨣᩃᩣ", "ᨷᩩᩁᩥᩈᨷᩩᨣ᩠ᨣᩃᩔ", "ᨷᩩᩁᩥᩈᨷᩩᨣ᩠ᨣᩃᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปุญฺญ", "noun", "ปุญฺญานิ", "ปุญฺญสฺส", "ปุญฺญสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩩᨬ᩠ᨬ", "noun", "ᨷᩩᨬ᩠ᨬᩣᨶᩥ", "ᨷᩩᨬ᩠ᨬᩔ", "ᨷᩩᨬ᩠ᨬᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เขตฺต", "noun", "เขตฺตานิ", "เขตฺตสฺส", "เขตฺตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨡᩮᨲ᩠ᨲ", "noun", "ᨡᩮᨲ᩠ᨲᩣᨶᩥ", "ᨡᩮᨲ᩠ᨲᩔ", "ᨡᩮᨲ᩠ᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["upajjhāya", "noun", "upajjhāyā", "upajjhāyassa", "upajjhāyassa", "", "spiritual teacher spiritual"]) + let v = native_list_append(v, ["baddhasīmā", "noun", "baddhasīmāyo", "baddhasīmāya", "baddhasīmāya", "", "boundary stones"]) + let v = native_list_append(v, ["สีมา", "noun", "สีมาโย", "สีมาย", "สีมาย", "", "Thai script form"]) + let v = native_list_append(v, ["mahābodhi", "noun", "mahābodhiyo", "mahābodhiyā", "mahābodhiyā", "", "the Bo Tree"]) + let v = native_list_append(v, ["buddharūpa", "noun", "buddharūpāni", "buddharūpassa", "buddharūpassa", "", "image of the"]) + let v = native_list_append(v, ["nāgaloka", "noun", "nāgalokā", "nāgalokassa", "nāgalokassa", "", "the naga realm"]) + let v = native_list_append(v, ["devaloka", "noun", "devalokā", "devalokassa", "devalokassa", "", "the divine realm"]) + let v = native_list_append(v, ["jambū", "noun", "jambuyo", "jambuyā", "jambuyā", "", "the rose apple"]) + let v = native_list_append(v, ["jambūdīpa", "noun", "jambūdīpā", "jambūdīpassa", "jambūdīpassa", "", "alternative form of"]) + let v = native_list_append(v, ["ทีป", "noun", "ทีปา", "ทีปสฺส", "ทีปสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ทีปะ", "noun", "ทีปา", "ทีปัสสะ", "ทีปัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["jambudīpa", "noun", "jambudīpā", "jambudīpassa", "jambudīpassa", "", "India"]) + let v = native_list_append(v, ["laṅkādīpa", "noun", "laṅkādīpā", "laṅkādīpassa", "laṅkādīpassa", "", "Sri Lanka"]) + let v = native_list_append(v, ["လင်္ကာဒီပ", "noun", "လင်္ကာဒီပါ", "လင်္ကာဒီပဿ", "လင်္ကာဒီပဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["laṅkā", "noun", "laṅkāyo", "laṅkāya", "laṅkāya", "", "Lanka"]) + let v = native_list_append(v, ["kesadhātu", "noun", "kesadhātuyo", "kesadhātuyā", "kesadhātuyā", "", "hair relic"]) + let v = native_list_append(v, ["kesādhātu", "noun", "kesādhātuyo", "kesādhātuyā", "kesādhātuyā", "", "hair relic"]) + let v = native_list_append(v, ["kesā", "noun", "kesā", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["gandhakuṭi", "noun", "gandhakuṭiyo", "gandhakuṭiyā", "gandhakuṭiyā", "", "scented room"]) + let v = native_list_append(v, ["dhammakkhandha", "noun", "dhammakkhandhā", "dhammakkhandhassa", "dhammakkhandhassa", "", "section of the"]) + let v = native_list_append(v, ["khandha", "noun", "khandhā", "khandhassa", "khandhassa", "", "the shoulders"]) + let v = native_list_append(v, ["pādacetiya", "noun", "pādacetiyāni", "pādacetiyassa", "pādacetiyassa", "", "enduring footprint of"]) + let v = native_list_append(v, ["ปาท", "noun", "ปาทา", "ปาทสฺส", "ปาทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩤᨴ", "noun", "ᨷᩤᨴᩤ", "ᨷᩤᨴᩔ", "ᨷᩤᨴᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩮᩤᩈ", "noun", "ᨴᩮᩤᩈᩣ", "ᨴᩮᩤᩈᩔ", "ᨴᩮᩤᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ภวนฺตฺ", "noun", "ภวนฺโต", "โภโต", "โภโต", "", "Thai script form"]) + let v = native_list_append(v, ["ᨽᩅᨶ᩠ᨲ᩺", "noun", "ᨽᩅᨶ᩠ᨲᩮᩣ", "ᨽᩮᩣᨲᩮᩣ", "ᨽᩮᩣᨲᩮᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨣᩩᩁᩩ", "noun", "ᨣᩩᩁᩅᩮᩤ", "ᨣᩩᩁᩩᩔ", "ᨣᩩᩁᩩᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["อุปชฺฌาย", "noun", "อุปชฺฌายา", "อุปชฺฌายสฺส", "อุปชฺฌายสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩏᨷᨩ᩠ᨫᩣᨿ", "noun", "ᩏᨷᨩ᩠ᨫᩣᨿᩣ", "ᩏᨷᨩ᩠ᨫᩣᨿᩔ", "ᩏᨷᨩ᩠ᨫᩣᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["อาจริย", "noun", "อาจริยา", "อาจริยสฺส", "อาจริยสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩣᨧᩁᩥᨿ", "noun", "ᩋᩣᨧᩁᩥᨿᩣ", "ᩋᩣᨧᩁᩥᨿᩔ", "ᩋᩣᨧᩁᩥᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["พทฺธสีมา", "noun", "พทฺธสีมาโย", "พทฺธสีมาย", "พทฺธสีมาย", "", "Thai script form"]) + let v = native_list_append(v, ["ᨻᨴ᩠ᨵᩈᩦᨾᩣ", "noun", "ᨻᨴ᩠ᨵᩈᩦᨾᩣᨿᩮᩣ", "ᨻᨴ᩠ᨵᩈᩦᨾᩣᨿ", "ᨻᨴ᩠ᨵᩈᩦᨾᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เจติย", "noun", "เจติยานิ", "เจติยสฺส", "เจติยสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨧᩮᨲᩥᨿ", "noun", "ᨧᩮᨲᩥᨿᩣᨶᩥ", "ᨧᩮᨲᩥᨿᩔ", "ᨧᩮᨲᩥᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨮᩣᨶ", "noun", "ᨮᩣᨶᩣᨶᩥ", "ᨮᩣᨶᩔ", "ᨮᩣᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["สรีร", "noun", "สรีรานิ", "สรีรสฺส", "สรีรสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨵᩤᨲᩩ", "noun", "ᨵᩤᨲᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["มหาโพธิ", "noun", "มหาโพธิโย", "มหาโพธิยา", "มหาโพธิยา", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩉᩣᨻ᩠ᨵᩮᩥᩣ", "noun", "ᨾᩉᩣᨻ᩠ᨵᩮᩥᩣᨿᩮᩣ", "ᨾᩉᩣᨻ᩠ᨵᩮᩥᩣᨿᩣ", "ᨾᩉᩣᨻ᩠ᨵᩮᩥᩣᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩉᩣᨻᩮᩥ᩠ᨵᩣ", "noun", "ᨾᩉᩣᨻᩮᩥ᩠ᨵᩣᨿᩮᩣ", "ᨾᩉᩣᨻᩮᩥ᩠ᨵᩣᨿᩣ", "ᨾᩉᩣᨻᩮᩥ᩠ᨵᩣᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["พุทฺธรูป", "noun", "พุทฺธรูปานิ", "พุทฺธรูปสฺส", "พุทฺธรูปสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩁᩪᨷ", "noun", "ᨻᩩᨴ᩠ᨵᩁᩪᨷᩤᨶᩥ", "ᨻᩩᨴ᩠ᨵᩁᩪᨷᩔ", "ᨻᩩᨴ᩠ᨵᩁᩪᨷᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["นาคโลก", "noun", "นาคโลกา", "นาคโลกสฺส", "นาคโลกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨶᩣᨣᩃᩮᩣᨠ", "noun", "ᨶᩣᨣᩃᩮᩣᨠᩣ", "ᨶᩣᨣᩃᩮᩣᨠᩔ", "ᨶᩣᨣᩃᩮᩣᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩮᩅᩃᩮᩣᨠ", "noun", "ᨴᩮᩅᩃᩮᩣᨠᩣ", "ᨴᩮᩅᩃᩮᩣᨠᩔ", "ᨴᩮᩅᩃᩮᩣᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["พฺรหฺมโลก", "noun", "พฺรหฺมโลกา", "พฺรหฺมโลกสฺส", "พฺรหฺมโลกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨻᩕᩉ᩠ᨾᩃᩮᩣᨠ", "noun", "ᨻᩕᩉ᩠ᨾᩃᩮᩣᨠᩣ", "ᨻᩕᩉ᩠ᨾᩃᩮᩣᨠᩔ", "ᨻᩕᩉ᩠ᨾᩃᩮᩣᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ชมฺพูทีป", "noun", "ชมฺพูทีปา", "ชมฺพูทีปสฺส", "ชมฺพูทีปสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨩᨾᩛᩪᨴᩦᨷ", "noun", "ᨩᨾᩛᩪᨴᩦᨷᩤ", "ᨩᨾᩛᩪᨴᩦᨷᩔ", "ᨩᨾᩛᩪᨴᩦᨷᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ลงฺกาทีป", "noun", "ลงฺกาทีปา", "ลงฺกาทีปสฺส", "ลงฺกาทีปสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩃᩘᨠᩣᨴᩦᨷ", "noun", "ᩃᩘᨠᩣᨴᩦᨷᩤ", "ᩃᩘᨠᩣᨴᩦᨷᩔ", "ᩃᩘᨠᩣᨴᩦᨷᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เกส", "noun", "เกสา", "เกสสฺส", "เกสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩮᩈ", "noun", "ᨠᩮᩈᩣ", "ᨠᩮᩈᩔ", "ᨠᩮᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["คนฺธกุฏิ", "noun", "คนฺธกุฏิโย", "คนฺธกุฏิยา", "คนฺธกุฏิยา", "", "Thai script form"]) + let v = native_list_append(v, ["ᨣᨶ᩠ᨵᨠᩩᨭᩥ", "noun", "ᨣᨶ᩠ᨵᨠᩩᨭᩥᨿᩮᩣ", "ᨣᨶ᩠ᨵᨠᩩᨭᩥᨿᩣ", "ᨣᨶ᩠ᨵᨠᩩᨭᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ธมฺมกฺขนฺธ", "noun", "ธมฺมกฺขนฺธา", "ธมฺมกฺขนฺธสฺส", "ธมฺมกฺขนฺธสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨵᨾ᩠ᨾᨠ᩠ᨡᨶ᩠ᨵ", "noun", "ᨵᨾ᩠ᨾᨠ᩠ᨡᨶ᩠ᨵᩣ", "ᨵᨾ᩠ᨾᨠ᩠ᨡᨶ᩠ᨵᩔ", "ᨵᨾ᩠ᨾᨠ᩠ᨡᨶ᩠ᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปาทเจติย", "noun", "ปาทเจติยานิ", "ปาทเจติยสฺส", "ปาทเจติยสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩤᨴᨧᩮᨲᩥᨿ", "noun", "ᨷᩤᨴᨧᩮᨲᩥᨿᩣᨶᩥ", "ᨷᩤᨴᨧᩮᨲᩥᨿᩔ", "ᨷᩤᨴᨧᩮᨲᩥᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เกสาธาตุ", "noun", "เกสาธาตุโย", "เกสาธาตุยา", "เกสาธาตุยา", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩮᩈᩣᨵᩤᨲᩩ", "noun", "ᨠᩮᩈᩣᨵᩤᨲᩩᨿᩮᩣ", "ᨠᩮᩈᩣᨵᩤᨲᩩᨿᩣ", "ᨠᩮᩈᩣᨵᩤᨲᩩᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["semha", "noun", "semhāni", "semhassa", "semhassa", "", "phlegm"]) + let v = native_list_append(v, ["เสมฺห", "noun", "เสมฺหานิ", "เสมฺหสฺส", "เสมฺหสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩮᨾ᩠ᩉ", "noun", "ᩈᩮᨾ᩠ᩉᩣᨶᩥ", "ᩈᩮᨾ᩠ᩉᩔ", "ᩈᩮᨾ᩠ᩉᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["aparādha", "noun", "aparādhā", "aparādhassa", "aparādhassa", "", "offence guilt crime"]) + let v = native_list_append(v, ["อปราธ", "noun", "อปราธา", "อปราธสฺส", "อปราธสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨷᩁᩣᨵ", "noun", "ᩋᨷᩁᩣᨵᩤ", "ᩋᨷᩁᩣᨵᩔ", "ᩋᨷᩁᩣᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["sāmī", "noun", "sāmī", "", "", "", "inflection of sāmin"]) + let v = native_list_append(v, ["ᩈᩣᨾᩦ", "noun", "ᩈᩣᨾᩦ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᩣᨿ", "noun", "ᨠᩣᨿᩣ", "ᨠᩣᨿᩔ", "ᨠᩣᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["โลม", "noun", "โลมานิ", "โลมสฺส", "โลมสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩃᩮᩣᨾ", "noun", "ᩃᩮᩣᨾᩣᨶᩥ", "ᩃᩮᩣᨾᩔ", "ᩃᩮᩣᨾᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["นข", "noun", "นขา", "นขสฺส", "นขสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨶᨡ", "noun", "ᨶᨡᩣ", "ᨶᨡᩔ", "ᨶᨡᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ทนฺต", "noun", "ทนฺตา", "ทนฺตสฺส", "ทนฺตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨶ᩠ᨲ", "noun", "ᨴᨶ᩠ᨲᩣ", "ᨴᨶ᩠ᨲᩔ", "ᨴᨶ᩠ᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ตจ", "noun", "ตจา", "ตจสฺส", "ตจสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨲᨧ", "noun", "ᨲᨧᩣ", "ᨲᨧᩔ", "ᨲᨧᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["maṃsa", "noun", "maṃsāni", "maṃsassa", "maṃsassa", "", "flesh meat"]) + let v = native_list_append(v, ["มงฺส", "noun", "มงฺสานิ", "มงฺสสฺส", "มงฺสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩘᩈ", "noun", "ᨾᩘᩈᩣᨶᩥ", "ᨾᩘᩈᩔ", "ᨾᩘᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["nhāru", "noun", "nhāravo", "nhārussa", "nhārussa", "", "alternative form of"]) + let v = native_list_append(v, ["นหารุ", "noun", "นหารโว", "นหารุสฺส", "นหารุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["อฏฺฐิ", "noun", "อฏฺฐีนิ", "อฏฺฐิสฺส", "อฏฺฐิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨭᩛᩥ", "noun", "ᩋᨭᩛᩦᨶᩥ", "ᩋᨭᩛᩥᩔ", "ᩋᨭᩛᩥᩔ", "", "bone"]) + let v = native_list_append(v, ["aṭṭhimiñja", "noun", "aṭṭhimiñjāni", "aṭṭhimiñjassa", "aṭṭhimiñjassa", "", "bone marrow"]) + let v = native_list_append(v, ["อฏฺฐิมิญฺช", "noun", "อฏฺฐิมิญฺชานิ", "อฏฺฐิมิญฺชสฺส", "อฏฺฐิมิญฺชสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["วกฺก", "noun", "วกฺกานิ", "วกฺกสฺส", "วกฺกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩅᨠ᩠ᨠ", "noun", "ᩅᨠ᩠ᨠᩣᨶᩥ", "ᩅᨠ᩠ᨠᩔ", "ᩅᨠ᩠ᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["หทย", "noun", "หทยานิ", "หทยสฺส", "หทยสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩉᨴᨿ", "noun", "ᩉᨴᨿᩣᨶᩥ", "ᩉᨴᨿᩔ", "ᩉᨴᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["yakana", "noun", "yakanāni", "yakanassa", "yakanassa", "", "liver"]) + let v = native_list_append(v, ["ยกน", "noun", "ยกนานิ", "ยกนสฺส", "ยกนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨿᨠᨶ", "noun", "ᨿᨠᨶᩣᨶᩥ", "ᨿᨠᨶᩔ", "ᨿᨠᨶᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["kilomaka", "noun", "kilomakāni", "kilomakassa", "kilomakassa", "", "pleura"]) + let v = native_list_append(v, ["กิโลมก", "noun", "กิโลมกานิ", "กิโลมกสฺส", "กิโลมกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩥᩃᩮᩣᨾᨠ", "noun", "ᨠᩥᩃᩮᩣᨾᨠᩣᨶᩥ", "ᨠᩥᩃᩮᩣᨾᨠᩔ", "ᨠᩥᩃᩮᩣᨾᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["papphāsa", "noun", "papphāsāni", "papphāsassa", "papphāsassa", "", "the lungs"]) + let v = native_list_append(v, ["ปปฺผาส", "noun", "ปปฺผาสานิ", "ปปฺผาสสฺส", "ปปฺผาสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["อนฺต", "noun", "อนฺตา", "อนฺตสฺส", "อนฺตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨶ᩠ᨲ", "noun", "ᩋᨶ᩠ᨲᩣ", "ᩋᨶ᩠ᨲᩔ", "ᩋᨶ᩠ᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["antaguṇa", "noun", "antaguṇāni", "antaguṇassa", "antaguṇassa", "", "mesentery"]) + let v = native_list_append(v, ["อนฺตคุณ", "noun", "อนฺตคุณานิ", "อนฺตคุณสฺส", "อนฺตคุณสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨶ᩠ᨲᨣᩩᨱ", "noun", "ᩋᨶ᩠ᨲᨣᩩᨱᩣᨶᩥ", "ᩋᨶ᩠ᨲᨣᩩᨱᩔ", "ᩋᨶ᩠ᨲᨣᩩᨱᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["udariya", "noun", "udariyāni", "udariyassa", "udariyassa", "", "stomach contents"]) + let v = native_list_append(v, ["อุทริย", "noun", "อุทริยานิ", "อุทริยสฺส", "อุทริยสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩏᨴᩁᩥᨿ", "noun", "ᩏᨴᩁᩥᨿᩣᨶᩥ", "ᩏᨴᩁᩥᨿᩔ", "ᩏᨴᩁᩥᨿᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["karīsa", "noun", "karīsāni", "karīsassa", "karīsassa", "", "refuse"]) + let v = native_list_append(v, ["กรีส", "noun", "กรีสานิ", "กรีสสฺส", "กรีสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩁᩦᩈ", "noun", "ᨠᩁᩦᩈᩣᨶᩥ", "ᨠᩁᩦᩈᩔ", "ᨠᩁᩦᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปิตฺต", "noun", "ปิตฺตานิ", "ปิตฺตสฺส", "ปิตฺตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩥᨲ᩠ᨲ", "noun", "ᨷᩥᨲ᩠ᨲᩣᨶᩥ", "ᨷᩥᨲ᩠ᨲᩔ", "ᨷᩥᨲ᩠ᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปุพฺพ", "noun", "ปุพฺพา", "ปุพฺพสฺส", "ปุพฺพสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩩᨻᩛ", "noun", "ᨷᩩᨻᩛᩣ", "ᨷᩩᨻᩛᩔ", "ᨷᩩᨻᩛᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩃᩮᩣᩉᩥᨲ", "noun", "ᩃᩮᩣᩉᩥᨲᩣᨶᩥ", "ᩃᩮᩣᩉᩥᨲᩔ", "ᩃᩮᩣᩉᩥᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เสท", "noun", "เสทา", "เสทสฺส", "เสทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩮᨴ", "noun", "ᩈᩮᨴᩣ", "ᩈᩮᨴᩔ", "ᩈᩮᨴᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เมท", "noun", "เมทา", "เมทสฺส", "เมทสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩮᨴ", "noun", "ᨾᩮᨴᩣ", "ᨾᩮᨴᩔ", "ᨾᩮᨴᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["อสฺสุ", "noun", "อสฺสูนิ", "อสฺสุสฺส", "อสฺสุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩔᩩ", "noun", "ᩋᩔᩪᨶᩥ", "ᩋᩔᩩᩔ", "ᩋᩔᩩᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["vasā", "noun", "vasāyo", "vasāya", "vasāya", "", "grease"]) + let v = native_list_append(v, ["วสา", "noun", "วสาโย", "วสาย", "วสาย", "", "Thai script form"]) + let v = native_list_append(v, ["ᩅᩈᩣ", "noun", "ᩅᩈᩣᨿᩮᩣ", "ᩅᩈᩣᨿ", "ᩅᩈᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["kheḷa", "noun", "kheḷā", "kheḷassa", "kheḷassa", "", "spittle"]) + let v = native_list_append(v, ["เขฬ", "noun", "เขฬา", "เขฬสฺส", "เขฬสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨡᩮᩊ", "noun", "ᨡᩮᩊᩣ", "ᨡᩮᩊᩔ", "ᨡᩮᩊᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["siṅghāṇikā", "noun", "siṅghāṇikāyo", "siṅghāṇikāya", "siṅghāṇikāya", "", "mucus of the"]) + let v = native_list_append(v, ["siṅghānikā", "noun", "siṅghānikāyo", "siṅghānikāya", "siṅghānikāya", "", "alternative form of"]) + let v = native_list_append(v, ["สิงฺฆาณิกา", "noun", "สิงฺฆาณิกาโย", "สิงฺฆาณิกาย", "สิงฺฆาณิกาย", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩥᩴᨥᩣᨱᩥᨠᩣ", "noun", "ᩈᩥᩴᨥᩣᨱᩥᨠᩣᨿᩮᩣ", "ᩈᩥᩴᨥᩣᨱᩥᨠᩣᨿ", "ᩈᩥᩴᨥᩣᨱᩥᨠᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["lasikā", "noun", "lasikāyo", "lasikāya", "lasikāya", "", "synovial fluid"]) + let v = native_list_append(v, ["ลสิกา", "noun", "ลสิกาโย", "ลสิกาย", "ลสิกาย", "", "Thai script form"]) + let v = native_list_append(v, ["ᩃᩈᩥᨠᩣ", "noun", "ᩃᩈᩥᨠᩣᨿᩮᩣ", "ᩃᩈᩥᨠᩣᨿ", "ᩃᩈᩥᨠᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["มุตฺต", "noun", "มุตฺต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩩᨲ᩠ᨲ", "noun", "ᨾᩩᨲ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["matthaka", "noun", "matthakā", "matthakassa", "matthakassa", "", "head"]) + let v = native_list_append(v, ["มตฺถก", "noun", "มตฺถกา", "มตฺถกสฺส", "มตฺถกสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᨲ᩠ᨳᨠ", "noun", "ᨾᨲ᩠ᨳᨠᩣ", "ᨾᨲ᩠ᨳᨠᩔ", "ᨾᨲ᩠ᨳᨠᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["matthaluṅga", "noun", "matthaluṅgāni", "matthaluṅgassa", "matthaluṅgassa", "", "brain"]) + let v = native_list_append(v, ["มตฺถลุงฺค", "noun", "มตฺถลุงฺคานิ", "มตฺถลุงฺคสฺส", "มตฺถลุงฺคสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᨲ᩠ᨳᩃᩩᨦ᩠ᨣ", "noun", "ᨾᨲ᩠ᨳᩃᩩᨦ᩠ᨣᩣᨶᩥ", "ᨾᨲ᩠ᨳᩃᩩᨦ᩠ᨣᩔ", "ᨾᨲ᩠ᨳᩃᩩᨦ᩠ᨣᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["กมฺม", "noun", "กมฺมานิ", "กมฺมสฺส", "กมฺมสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["kusala", "noun", "kusala", "", "", "", "good action"]) + let v = native_list_append(v, ["กุสล", "noun", "กุสล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩩᩈᩃ", "noun", "ᨠᩩᩈᩃ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᨾ᩠ᨾ", "noun", "ᨠᨾ᩠ᨾᩣᨶᩥ", "ᨠᨾ᩠ᨾᩔ", "ᨠᨾ᩠ᨾᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เทว", "noun", "เทวา", "เทวสฺส", "เทวสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["āyus", "noun", "āyūni", "āyussa", "āyussa", "", "age"]) + let v = native_list_append(v, ["kathin", "noun", "kathino", "kathissa", "kathissa", "", "speaker preacher"]) + let v = native_list_append(v, ["āyu", "noun", "āyu", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["สตฺต", "noun", "สตฺตา", "สตฺตสฺส", "สตฺตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨲ᩠ᨲ", "noun", "ᩈᨲ᩠ᨲᩣ", "ᩈᨲ᩠ᨲᩔ", "ᩈᨲ᩠ᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["อตฺตนฺ", "noun", "อตฺตาโน", "อตฺตโน", "อตฺตโน", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨲ᩠ᨲᨶ᩺", "noun", "ᩋᨲ᩠ᨲᩣᨶᩮᩣ", "ᩋᨲ᩠ᨲᨶᩮᩣ", "ᩋᨲ᩠ᨲᨶᩮᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩣᨲᩁ᩺", "noun", "ᨾᩣᨲᩁᩮᩣ", "ᨾᩣᨲᩩ", "ᨾᩣᨲᩩ", "", "Tai Tham script"]) + let v = native_list_append(v, ["มาตรฺ", "noun", "มาตโร", "มาตุ", "มาตุ", "", "Thai script form"]) + let v = native_list_append(v, ["mātu", "noun", "mātu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ᨷᩥᨲᩁ᩺", "noun", "ᨷᩥᨲᩁᩮᩣ", "ᨷᩥᨲᩩ", "ᨷᩥᨲᩩ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปิตรฺ", "noun", "ปิตโร", "ปิตุ", "ปิตุ", "", "Thai script form"]) + let v = native_list_append(v, ["yakkha", "noun", "yakkhā", "yakkhassa", "yakkhassa", "", "demon yaksha"]) + let v = native_list_append(v, ["ยกฺข", "noun", "ยกฺขา", "ยกฺขสฺส", "ยกฺขสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨿᨠ᩠ᨡ", "noun", "ᨿᨠ᩠ᨡᩣ", "ᨿᨠ᩠ᨡᩔ", "ᨿᨠ᩠ᨡᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["เปต", "noun", "เปตา", "เปตสฺส", "เปตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩮᨲ", "noun", "ᨷᩮᨲᩣ", "ᨷᩮᨲᩔ", "ᨷᩮᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["สมฺปตฺติ", "noun", "สมฺปตฺติโย", "สมฺปตฺติยา", "สมฺปตฺติยา", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨷᨲ᩠ᨲᩥ", "noun", "ᩈᨾ᩠ᨷᨲ᩠ᨲᩥᨿᩮᩣ", "ᩈᨾ᩠ᨷᨲ᩠ᨲᩥᨿᩣ", "ᩈᨾ᩠ᨷᨲ᩠ᨲᩥᨿᩣ", "", "Tai Tham script"]) + let v = native_list_append(v, ["វិបត្តិ", "noun", "វិបត្តិយោ", "វិបត្តិយា", "វិបត្តិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["telesu", "noun", "telesu", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["उपचय", "noun", "उपचया", "उपचयस्स", "उपचयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["verena", "noun", "verena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["naye", "noun", "naye", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["asita", "noun", "asitāni", "asitassa", "asitassa", "", "food"]) + let v = native_list_append(v, ["bhariyā", "noun", "bhariyāyo", "bhariyāya", "bhariyāya", "", "wife"]) + let v = native_list_append(v, ["จิมิ", "noun", "จิมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["बन्ध", "noun", "बन्धा", "बन्धस्स", "बन्धस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["janapada", "noun", "janapadā", "janapadassa", "janapadassa", "", "countryside"]) + let v = native_list_append(v, ["เวน", "noun", "เวน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["तोमर", "noun", "तोमर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["សោក", "noun", "សោកា", "សោកស្ស", "សោកស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀑𑀥𑀺", "noun", "𑀑𑀥𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["មង្គល", "noun", "មង្គលានិ", "មង្គលស្ស", "មង្គលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["អដ្ឋិ", "noun", "អដ្ឋីនិ", "អដ្ឋិស្ស", "អដ្ឋិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ចម្ម", "noun", "ចម្មានិ", "ចម្មស្ស", "ចម្មស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["jaye", "noun", "jaye", "", "", "", "inflection of jaya"]) + let v = native_list_append(v, ["สา", "noun", "สา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["খীর", "noun", "খীরানি", "খীরস্স", "খীরস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ကဝိ", "noun", "ကဝယော", "ကဝိဿ", "ကဝိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ketu", "noun", "ketavo", "ketussa", "ketussa", "", "distinguishing sign"]) + let v = native_list_append(v, ["សាធក", "noun", "សាធក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ghūṭhi", "noun", "ghūṭhi", "", "", "", "rush"]) + let v = native_list_append(v, ["ဝနာ", "noun", "ဝနာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["sāmin", "noun", "sāmino", "sāmissa", "sāmissa", "", "owner"]) + let v = native_list_append(v, ["suvāmin", "noun", "suvāmino", "suvāmissa", "suvāmissa", "", "alternative form of"]) + let v = native_list_append(v, ["suvāmī", "noun", "suvāmī", "", "", "", "inflection of suvāmin"]) + let v = native_list_append(v, ["โรคา", "noun", "โรคา", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["ambā", "noun", "ambāyo", "ambāya", "ambāya", "", "mummy"]) + let v = native_list_append(v, ["annā", "noun", "annāyo", "annāya", "annāya", "", "mummy"]) + let v = native_list_append(v, ["សន្ធិ", "noun", "សន្ធិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["varena", "noun", "varena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["ခရေ", "noun", "ခရေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["បទ", "noun", "បទានិ", "បទស្ស", "បទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀧𑀡𑁆𑀡", "noun", "𑀧𑀡𑁆𑀡𑀸𑀦𑀺", "𑀧𑀡𑁆𑀡𑀲𑁆𑀲", "𑀧𑀡𑁆𑀡𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀫𑀁𑀲", "noun", "𑀫𑀁𑀲𑀸𑀦𑀺", "𑀫𑀁𑀲𑀲𑁆𑀲", "𑀫𑀁𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀫𑀸𑀲", "noun", "𑀫𑀸𑀲𑀸", "𑀫𑀸𑀲𑀲𑁆𑀲", "𑀫𑀸𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ตถาคต", "noun", "ตถาคตา", "ตถาคตสฺส", "ตถาคตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["gaṅgā", "noun", "gaṅgā", "gaṅgāya", "gaṅgāya", "", "Ganges"]) + let v = native_list_append(v, ["kabbe", "noun", "kabbe", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["มาตา", "noun", "มาตา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["পাদ", "noun", "পাদা", "পাদস্স", "পাদস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["kāranta", "noun", "kārantā", "kārantassa", "kārantassa", "", "final sound or"]) + let v = native_list_append(v, ["ယမက", "noun", "ယမကာ", "ယမကဿ", "ယမကဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ধম্ম", "noun", "ধম্মা", "ধম্মস্স", "ধম্মস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["munindo", "noun", "munindo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sotasi", "noun", "sotasi", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["𑀤𑁂𑀯𑀻", "noun", "𑀤𑁂𑀯𑀺𑀬𑁄", "𑀤𑁂𑀯𑀺𑀬𑀸", "𑀤𑁂𑀯𑀺𑀬𑀸", "", "Brahmi script form"]) + let v = native_list_append(v, ["ဗိန္ဒု", "noun", "ဗိန္ဒူနိ", "ဗိန္ဒုဿ", "ဗိန္ဒုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["sūra", "noun", "sūra", "", "", "", "sun"]) + let v = native_list_append(v, ["ṭhiti", "noun", "ṭhiti", "", "", "", "stability"]) + let v = native_list_append(v, ["uppala", "noun", "uppalāni", "uppalassa", "uppalassa", "", "water lily"]) + let v = native_list_append(v, ["လောဘ", "noun", "လောဘ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နိဿယ", "noun", "နိဿယာ", "နိဿယဿ", "နိဿယဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["विवेक", "noun", "विवेका", "विवेकस्स", "विवेकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["သရသ်", "noun", "သရာနိ", "သရသော", "သရသော", "", "Burmese script form"]) + let v = native_list_append(v, ["សរស៑", "noun", "សរានិ", "សរសោ", "សរសោ", "", "Khmer script form"]) + let v = native_list_append(v, ["สังขยา", "noun", "สังขยาโย", "สังขยายะ", "สังขยายะ", "", "Thai script form"]) + let v = native_list_append(v, ["āraññaka", "noun", "āraññaka", "", "", "", "an ascetic forest"]) + let v = native_list_append(v, ["ဟေမန္တ", "noun", "ဟေမန္တာ", "ဟေမန္တဿ", "ဟေမန္တဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀅𑀝𑁆𑀞𑀺", "noun", "𑀅𑀝𑁆𑀞𑀻𑀦𑀺", "𑀅𑀝𑁆𑀞𑀺𑀲𑁆𑀲", "𑀅𑀝𑁆𑀞𑀺𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ᨷᨷ᩠ᨹᩣᩈ", "noun", "ᨷᨷ᩠ᨹᩣᩈᩣᨶᩥ", "ᨷᨷ᩠ᨹᩣᩈᩔ", "ᨷᨷ᩠ᨹᩣᩈᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲𑀼", "noun", "𑀅𑀲𑁆𑀲𑀽𑀦𑀺", "𑀅𑀲𑁆𑀲𑀼𑀲𑁆𑀲", "𑀅𑀲𑁆𑀲𑀼𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["သုဒ္ဒါ", "noun", "သုဒ္ဒါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပုဏ္ဏမာ", "noun", "ပုဏ္ဏမာယော", "ပုဏ္ဏမာယ", "ပုဏ္ဏမာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["อมต", "noun", "อมตานิ", "อมตสฺส", "อมตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["วาต", "noun", "วาตา", "วาตสฺส", "วาตสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["রোগ", "noun", "রোগা", "রোগস্স", "রোগস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ဝေါ", "noun", "ဝေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀫𑀳𑀺𑀲", "noun", "𑀫𑀳𑀺𑀲𑀸", "𑀫𑀳𑀺𑀲𑀲𑁆𑀲", "𑀫𑀳𑀺𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ဂန္ဓကုဋိ", "noun", "ဂန္ဓကုဋိယော", "ဂန္ဓကုဋိယာ", "ဂန္ဓကုဋိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["bhikkhunī", "noun", "bhikkhuniyo", "bhikkhuniyā", "bhikkhuniyā", "", "Buddhist nun"]) + let v = native_list_append(v, ["ajina", "noun", "ajināni", "ajinassa", "ajinassa", "", "the hide of"]) + let v = native_list_append(v, ["itthī", "noun", "itthī", "", "", "", "inflection of itthi"]) + let v = native_list_append(v, ["upekkhā", "noun", "upekkhāyo", "upekkhāya", "upekkhāya", "", "Equanimity one of"]) + let v = native_list_append(v, ["viriya", "noun", "viriyāni", "viriyassa", "viriyassa", "", "Energy enthusiasm one"]) + let v = native_list_append(v, ["nekkhamma", "noun", "nekkhamma", "", "", "", "Renunciation one of"]) + let v = native_list_append(v, ["khanti", "noun", "khantiyo", "khantiyā", "khantiyā", "", "patience forbearance and"]) + let v = native_list_append(v, ["adhiṭṭhāna", "noun", "adhiṭṭhānā", "adhiṭṭhānassa", "adhiṭṭhānassa", "", "will determination resolution"]) + let v = native_list_append(v, ["ရာမည", "noun", "ရာမည", "", "", "", "historic term for"]) + let v = native_list_append(v, ["𑀅𑀲𑁄𑀓", "noun", "𑀅𑀲𑁄𑀓𑀸", "𑀅𑀲𑁄𑀓𑀲𑁆𑀲", "𑀅𑀲𑁄𑀓𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["චක‍්ඛු", "noun", "චක්ඛූනි", "චක්ඛුස්ස", "චක්ඛුස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["කථං", "noun", "කථං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඉන්‍ද්‍රිය", "noun", "ඉන්ද්රියානි", "ඉන්ද්රියස්ස", "ඉන්ද්රියස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ද‍්වාර", "noun", "ද්වාරානි", "ද්වාරස්ස", "ද්වාරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["රූප", "noun", "රූපානි", "රූපස්ස", "රූපස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["cakkhundriya", "noun", "cakkhundriya", "cakkhundriyassa", "cakkhundriyassa", "", "sense of sight"]) + let v = native_list_append(v, ["චක‍්ඛුන්‍ද්‍රිය", "noun", "චක‍්ඛුන්‍ද්‍රිය", "චක්ඛුන්ද්රියස්ස", "චක්ඛුන්ද්රියස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["akusala", "noun", "akusalāni", "akusalassa", "akusalassa", "", "demerit sin bad"]) + let v = native_list_append(v, ["අභිජ‍්ඣා", "noun", "අභිජ්ඣායො", "අභිජ්ඣාය", "අභිජ්ඣාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["domanassa", "noun", "domanassāni", "domanassassa", "domanassassa", "", "dejectedness"]) + let v = native_list_append(v, ["දොමනස‍්ස", "noun", "දොමනස්සානි", "දොමනස්සස්ස", "දොමනස්සස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["සංවර", "noun", "සංවරා", "සංවරස්ස", "සංවරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["kulā", "noun", "kulā", "", "", "", "inflection of kula"]) + let v = native_list_append(v, ["𑀙𑀸𑀬𑀸", "noun", "𑀙𑀸𑀬𑀸𑀬𑁄", "𑀙𑀸𑀬𑀸𑀬", "𑀙𑀸𑀬𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["nayana", "noun", "nayanāni", "nayanassa", "nayanassa", "", "eye"]) + let v = native_list_append(v, ["Māgha", "noun", "Māghā", "Māghassa", "Māghassa", "", "the month of"]) + let v = native_list_append(v, ["មាឃ", "noun", "មាឃា", "មាឃស្ស", "មាឃស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["តក្ក", "noun", "តក្ក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pūjā", "noun", "pūjāyo", "pūjāya", "pūjāya", "", "veneration"]) + let v = native_list_append(v, ["ទាស", "noun", "ទាសា", "ទាសស្ស", "ទាសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["vedena", "noun", "vedena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["dhītar", "noun", "dhītar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dhītā", "noun", "dhītaro", "dhītu", "dhītu", "", "daughter"]) + let v = native_list_append(v, ["धीता", "noun", "धीतरो", "धीतु", "धीतु", "", "Devanagari script form"]) + let v = native_list_append(v, ["thapati", "noun", "thapatayo", "thapatissa", "thapatissa", "", "builder master carpenter"]) + let v = native_list_append(v, ["pitari", "noun", "pitari", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["ථපති", "noun", "ථපතයො", "ථපතිස්ස", "ථපතිස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["භත‍්ත", "noun", "භත්තානි", "භත්තස්ස", "භත්තස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["yāna", "noun", "yānāni", "yānassa", "yānassa", "", "going journey motion"]) + let v = native_list_append(v, ["ජීවිත", "noun", "ජීවිතානි", "ජීවිතස්ස", "ජීවිතස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["dātar", "noun", "dātāro", "dātu", "dātu", "", "giver"]) + let v = native_list_append(v, ["दातर्", "noun", "दातारो", "दातु", "दातु", "", "Devanagari script form"]) + let v = native_list_append(v, ["dātu", "noun", "dātu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["padātar", "noun", "padātāro", "padātu", "padātu", "", "giver bestower"]) + let v = native_list_append(v, ["padātā", "noun", "padātā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["padātu", "noun", "padātu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["පදාතර්", "noun", "පදාතාරො", "පදාතු", "පදාතු", "", "Sinhala script form"]) + let v = native_list_append(v, ["පදාතා", "noun", "පදාතා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පදාතු", "noun", "පදාතු", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["යසස්", "noun", "යසානි", "යසසො", "යසසො", "", "Sinhala script form"]) + let v = native_list_append(v, ["āhattar", "noun", "āhattāro", "āhattu", "āhattu", "", "bringer"]) + let v = native_list_append(v, ["āhattā", "noun", "āhattā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["āhattu", "noun", "āhattu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ආහත‍්තර්", "noun", "ආහත්තාරො", "ආහත්තු", "ආහත්තු", "", "Sinhala script form"]) + let v = native_list_append(v, ["ආහත‍්තා", "noun", "ආහත‍්තා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ආහත‍්තු", "noun", "ආහත‍්තු", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["nipaccākāra", "noun", "nipaccākārā", "nipaccākārassa", "nipaccākārassa", "", "humbleness"]) + let v = native_list_append(v, ["නිපච‍්චාකාර", "noun", "නිපච්චාකාරා", "නිපච්චාකාරස්ස", "නිපච්චාකාරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["සෙනා", "noun", "සෙනායො", "සෙනාය", "සෙනාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["āvasatha", "noun", "āvasathā", "āvasathassa", "āvasathassa", "", "dwelling"]) + let v = native_list_append(v, ["ආවසථ", "noun", "ආවසථා", "ආවසථස්ස", "ආවසථස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["vāsaṃ", "noun", "vāsaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["වාසං", "noun", "වාසං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ទេវី", "noun", "ទេវិយោ", "ទេវិយា", "ទេវិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["akāra", "noun", "akārā", "akārassa", "akārassa", "", "the letter a"]) + let v = native_list_append(v, ["ākāra", "noun", "ākārā", "ākārassa", "ākārassa", "", "the letter ā"]) + let v = native_list_append(v, ["yutta", "noun", "yuttāni", "yuttassa", "yuttassa", "", "conjunction"]) + let v = native_list_append(v, ["hirañña", "noun", "hiraññāni", "hiraññassa", "hiraññassa", "", "gold"]) + let v = native_list_append(v, ["upakāra", "noun", "upakārā", "upakārassa", "upakārassa", "", "help support favour"]) + let v = native_list_append(v, ["अक्खर", "noun", "अक्खरा", "अक्खरस्स", "अक्खरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["विपत्ति", "noun", "विपत्तियो", "विपत्तिया", "विपत्तिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["अत्थ", "noun", "अत्था", "अत्थस्स", "अत्थस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["dunnayatā", "noun", "dunnayatāyo", "dunnayatāya", "dunnayatāya", "", "wrong drawing out"]) + let v = native_list_append(v, ["दुन्नयता", "noun", "दुन्नयतायो", "दुन्नयताय", "दुन्नयताय", "", "Devanagari script form"]) + let v = native_list_append(v, ["kosalla", "noun", "kosallāni", "kosallassa", "kosallassa", "", "proficiency"]) + let v = native_list_append(v, ["कोसल्ल", "noun", "कोसल्लानि", "कोसल्लस्स", "कोसल्लस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["suttanta", "noun", "suttantā", "suttantassa", "suttantassa", "", "discourse especially one"]) + let v = native_list_append(v, ["सुत्तन्त", "noun", "सुत्तन्ता", "सुत्तन्तस्स", "सुत्तन्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["සුත‍්තන‍්ත", "noun", "සුත්තන්තා", "සුත්තන්තස්ස", "සුත්තන්තස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဇရာ", "noun", "ဇရာယော", "ဇရာယ", "ဇရာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["ओदन", "noun", "ओदनानि", "ओदनस्स", "ओदनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["attho", "noun", "attho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["रस्स", "noun", "रस्स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["niggahīta", "noun", "niggahītāni", "niggahītassa", "niggahītassa", "", "The nasal consonant"]) + let v = native_list_append(v, ["निग्गहीत", "noun", "निग्गहीतानि", "निग्गहीतस्स", "निग्गहीतस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["byañjana", "noun", "byañjanāni", "byañjanassa", "byañjanassa", "", "sign"]) + let v = native_list_append(v, ["vyañjana", "noun", "vyañjanāni", "vyañjanassa", "vyañjanassa", "", "sign"]) + let v = native_list_append(v, ["सेस", "noun", "सेस", "सेसस्स", "सेसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kakāra", "noun", "kakārā", "kakārassa", "kakārassa", "", "the letter k"]) + let v = native_list_append(v, ["makāra", "noun", "makārā", "makārassa", "makārassa", "", "the letter m"]) + let v = native_list_append(v, ["मकार", "noun", "मकारा", "मकारस्स", "मकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["वग्ग", "noun", "वग्गा", "वग्गस्स", "वग्गस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["สนฺ", "noun", "สา", "สสฺส", "สสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["anena", "noun", "anena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["अनेन", "noun", "अनेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["ādesa", "noun", "ādesā", "ādesassa", "ādesassa", "", "pointing out"]) + let v = native_list_append(v, ["आदेस", "noun", "आदेसा", "आदेसस्स", "आदेसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["yakāra", "noun", "yakārā", "yakārassa", "yakārassa", "", "The letter y"]) + let v = native_list_append(v, ["vakāra", "noun", "vakārā", "vakārassa", "vakārassa", "", "The letter v"]) + let v = native_list_append(v, ["वकार", "noun", "वकारा", "वकारस्स", "वकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["cakāra", "noun", "cakārā", "cakārassa", "cakārassa", "", "the letter c"]) + let v = native_list_append(v, ["gantha", "noun", "ganthā", "ganthassa", "ganthassa", "", "bond fetter"]) + let v = native_list_append(v, ["गन्थ", "noun", "गन्था", "गन्थस्स", "गन्थस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["samaññā", "noun", "samaññāne", "samaññassa", "samaññassa", "", "designation technical term"]) + let v = native_list_append(v, ["समञ्ञा", "noun", "समञ्ञायो", "समञ्ञाय", "समञ्ञाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["ghosa", "noun", "ghosa", "", "", "", "sound"]) + let v = native_list_append(v, ["payoga", "noun", "payogā", "payogassa", "payogassa", "", "means instrument"]) + let v = native_list_append(v, ["पयोग", "noun", "पयोगा", "पयोगस्स", "पयोगस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["पुब्ब", "noun", "पुब्बा", "पुब्बस्स", "पुब्बस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["नय", "noun", "नया", "नयस्स", "नयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["युत्त", "noun", "युत्तानि", "युत्तस्स", "युत्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ekāra", "noun", "ekārā", "ekārassa", "ekārassa", "", "the letter e"]) + let v = native_list_append(v, ["एकार", "noun", "एकारा", "एकारस्स", "एकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhūta", "noun", "bhūtā", "bhūtānaṃ", "bhūtānaṃ", "", "beings"]) + let v = native_list_append(v, ["okāra", "noun", "okāra", "", "", "", "folly vanity"]) + let v = native_list_append(v, ["ukāra", "noun", "ukārā", "ukārassa", "ukārassa", "", "the letter u"]) + let v = native_list_append(v, ["उकार", "noun", "उकारा", "उकारस्स", "उकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सद्द", "noun", "सद्दा", "सद्दस्स", "सद्दस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["dakāra", "noun", "dakārā", "dakārassa", "dakārassa", "", "the letter d"]) + let v = native_list_append(v, ["दकार", "noun", "दकारा", "दकारस्स", "दकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["aggahaṇa", "noun", "aggahaṇāni", "aggahaṇassa", "aggahaṇassa", "", "seizure taking"]) + let v = native_list_append(v, ["अग्गहण", "noun", "अग्गहणानि", "अग्गहणस्स", "अग्गहणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["dhakāra", "noun", "dhakārā", "dhakārassa", "dhakārassa", "", "the letter dh"]) + let v = native_list_append(v, ["धकार", "noun", "धकारा", "धकारस्स", "धकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["hakāra", "noun", "hakārā", "hakārassa", "hakārassa", "", "the letter h"]) + let v = native_list_append(v, ["gaha", "noun", "gaha", "", "", "", "name of the"]) + let v = native_list_append(v, ["गह", "noun", "गहा", "गहस्स", "गहस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ānisaṃsa", "noun", "ānisaṃsā", "ānisaṃsassa", "ānisaṃsassa", "", "profit"]) + let v = native_list_append(v, ["lomena", "noun", "lomena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["sattu", "noun", "sattavo", "sattussa", "sattussa", "", "enemy"]) + let v = native_list_append(v, ["ivaṇṇa", "noun", "ivaṇṇā", "ivaṇṇassa", "ivaṇṇassa", "", "vowel i or"]) + let v = native_list_append(v, ["इवण्ण", "noun", "इवण्णा", "इवण्णस्स", "इवण्णस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vibhatti", "noun", "vibhattiyo", "vibhattiyā", "vibhattiyā", "", "division partition"]) + let v = native_list_append(v, ["विभत्ति", "noun", "विभत्तियो", "विभत्तिया", "विभत्तिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["yobbana", "noun", "yobbanāni", "yobbanassa", "yobbanassa", "", "youth"]) + let v = native_list_append(v, ["pariyesanā", "noun", "pariyesanāyo", "pariyesanāya", "pariyesanāya", "", "search quest"]) + let v = native_list_append(v, ["piṇḍapāta", "noun", "piṇḍapātā", "piṇḍapātassa", "piṇḍapātassa", "", "a collection of"]) + let v = native_list_append(v, ["dhātī", "noun", "dhātiyo", "dhātiyā", "dhātiyā", "", "wet nurse"]) + let v = native_list_append(v, ["liṅga", "noun", "liṅgāni", "liṅgassa", "liṅgassa", "", "sign mark attribute"]) + let v = native_list_append(v, ["jarā", "noun", "jarāyo", "jarāya", "jarāya", "", "old age decrepitude"]) + let v = native_list_append(v, ["parassapada", "noun", "parassapadāni", "parassapadassa", "parassapadassa", "", "active ending"]) + let v = native_list_append(v, ["परस्सपद", "noun", "परस्सपदानि", "परस्सपदस्स", "परस्सपदस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["attanopada", "noun", "attanopadāni", "attanopadassa", "attanopadassa", "", "middle ending"]) + let v = native_list_append(v, ["abhidhāna", "noun", "abhidhānāni", "abhidhānassa", "abhidhānassa", "", "name appellation expression"]) + let v = native_list_append(v, ["paṭhamapurisa", "noun", "paṭhamapurisā", "paṭhamapurisassa", "paṭhamapurisassa", "", "third person"]) + let v = native_list_append(v, ["paṭhama purisa", "noun", "paṭhama purisa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["attano", "noun", "attano", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["पुरिस", "noun", "पुरिसा", "पुरिसस्स", "पुरिसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kūṭāgāra", "noun", "kūṭāgārāni", "kūṭāgārassa", "kūṭāgārassa", "", "a pinnacle building,or"]) + let v = native_list_append(v, ["adhikaraṇa", "noun", "adhikaraṇāni", "adhikaraṇassa", "adhikaraṇassa", "", "supervision administration"]) + let v = native_list_append(v, ["tulyādhikaraṇa", "noun", "tulyādhikaraṇāni", "tulyādhikaraṇassa", "tulyādhikaraṇassa", "", "grammatical agreement"]) + let v = native_list_append(v, ["तुल्याधिकरण", "noun", "तुल्याधिकरणानि", "तुल्याधिकरणस्स", "तुल्याधिकरणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["tulā", "noun", "tulāyo", "tulāya", "tulāya", "", "beam or pole"]) + let v = native_list_append(v, ["majjhimapurisa", "noun", "majjhimapurisā", "majjhimapurisassa", "majjhimapurisassa", "", "second person"]) + let v = native_list_append(v, ["मज्झिमपुरिस", "noun", "मज्झिमपुरिसा", "मज्झिमपुरिसस्स", "मज्झिमपुरिसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["majjhima purisa", "noun", "majjhima purisa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["मज्झिम पुरिस", "noun", "मज्झिम पुरिस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["uttamapurisa", "noun", "uttamapurisā", "uttamapurisassa", "uttamapurisassa", "", "first person"]) + let v = native_list_append(v, ["uttama purisa", "noun", "uttama purisa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["उत्तमपुरिस", "noun", "उत्तमपुरिसा", "उत्तमपुरिसस्स", "उत्तमपुरिसस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["उत्तम पुरिस", "noun", "उत्तम पुरिस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sajjhakāra", "noun", "sajjhakārā", "sajjhakārassa", "sajjhakārassa", "", "silversmith"]) + let v = native_list_append(v, ["gīveyyaka", "noun", "gīveyyakāni", "gīveyyakassa", "gīveyyakassa", "", "necklace"]) + let v = native_list_append(v, ["sammāsamādhi", "noun", "sammāsamādhayo", "sammāsamādhissa", "sammāsamādhissa", "", "right concentration"]) + let v = native_list_append(v, ["vimuccana", "noun", "vimuccanāni", "vimuccanassa", "vimuccanassa", "", "release"]) + let v = native_list_append(v, ["anussati", "noun", "anussatiyo", "anussatiyā", "anussatiyā", "", "recollection memory mindfulness"]) + let v = native_list_append(v, ["𑀧𑀼𑀭𑀺𑀲", "noun", "𑀧𑀼𑀭𑀺𑀲𑀸", "𑀧𑀼𑀭𑀺𑀲𑀲𑁆𑀲", "𑀧𑀼𑀭𑀺𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["arañña", "noun", "araññāni", "araññassa", "araññassa", "", "forest"]) + let v = native_list_append(v, ["osadha", "noun", "osadhāni", "osadhassa", "osadhassa", "", "medicine"]) + let v = native_list_append(v, ["tāṇa", "noun", "tāṇāni", "tāṇassa", "tāṇassa", "", "protection"]) + let v = native_list_append(v, ["paridevanā", "noun", "paridevanāyo", "paridevanāya", "paridevanāya", "", "wailing lamentation"]) + let v = native_list_append(v, ["adhikāra", "noun", "adhikārā", "adhikārassa", "adhikārassa", "", "management"]) + let v = native_list_append(v, ["bāhu", "noun", "bāhavo", "bāhussa", "bāhussa", "", "arm"]) + let v = native_list_append(v, ["kāpurisa", "noun", "kāpurisā", "kāpurisassa", "kāpurisassa", "", "wretch"]) + let v = native_list_append(v, ["bhesajja", "noun", "bhesajjāni", "bhesajjassa", "bhesajjassa", "", "medicine remedy"]) + let v = native_list_append(v, ["𑀔𑀻𑀭", "noun", "𑀔𑀻𑀭𑀸𑀦𑀺", "𑀔𑀻𑀭𑀲𑁆𑀲", "𑀔𑀻𑀭𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["sekhara", "noun", "sekharā", "sekharassa", "sekharassa", "", "garland for the"]) + let v = native_list_append(v, ["vasundharā", "noun", "vasundharāyo", "vasundharāya", "vasundharāya", "", "earth"]) + let v = native_list_append(v, ["paṭhavī", "noun", "paṭhaviyo", "paṭhaviyā", "paṭhaviyā", "", "earth"]) + let v = native_list_append(v, ["pathavī", "noun", "pathaviyo", "pathaviyā", "pathaviyā", "", "alternative form of"]) + let v = native_list_append(v, ["puthavī", "noun", "puthaviyo", "puthaviyā", "puthaviyā", "", "alternative form of"]) + let v = native_list_append(v, ["puṭhuvī", "noun", "puṭhuviyo", "puṭhuviyā", "puṭhuviyā", "", "alternative form of"]) + let v = native_list_append(v, ["puthuvī", "noun", "puthuviyo", "puthuviyā", "puthuviyā", "", "alternative form of"]) + let v = native_list_append(v, ["लोहित", "noun", "लोहितानि", "लोहितस्स", "लोहितस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sapati", "noun", "sapati", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["នាវា", "noun", "នាវាយោ", "នាវាយ", "នាវាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀫𑀸𑀕𑀥", "noun", "𑀫𑀸𑀕𑀥𑀸", "𑀫𑀸𑀕𑀥𑀲𑁆𑀲", "𑀫𑀸𑀕𑀥𑀲𑁆𑀲", "", "Magadhan"]) + let v = native_list_append(v, ["pisāca", "noun", "pisāca", "", "", "", "demon goblin"]) + let v = native_list_append(v, ["parijana", "noun", "parijanā", "parijanassa", "parijanassa", "", "retinue"]) + let v = native_list_append(v, ["យុត្តិ", "noun", "យុត្តិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["raṇa", "noun", "raṇāni", "raṇassa", "raṇassa", "", "battle"]) + let v = native_list_append(v, ["visaya", "noun", "visayā", "visayassa", "visayassa", "", "locality region sphere"]) + let v = native_list_append(v, ["gabbha", "noun", "gabbhā", "gabbhassa", "gabbhassa", "", "womb the swelling"]) + let v = native_list_append(v, ["godhūma", "noun", "godhūma", "", "", "", "wheat"]) + let v = native_list_append(v, ["vattamānā", "noun", "vattamānāyo", "vattamānāya", "vattamānāya", "", "present tense"]) + let v = native_list_append(v, ["paṭibhāna", "noun", "paṭibhānāni", "paṭibhānassa", "paṭibhānassa", "", "understanding"]) + let v = native_list_append(v, ["navanīta", "noun", "navanīta", "", "", "", "fresh butter"]) + let v = native_list_append(v, ["nonīta", "noun", "nonīta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𑀓𑀸𑀬", "noun", "𑀓𑀸𑀬𑀸", "𑀓𑀸𑀬𑀲𑁆𑀲", "𑀓𑀸𑀬𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["kulavaṃsa", "noun", "kulavaṃsā", "kulavaṃsassa", "kulavaṃsassa", "", "lineage"]) + let v = native_list_append(v, ["𑀚𑀻𑀯", "noun", "𑀚𑀻𑀯𑀸𑀦𑀺", "𑀚𑀻𑀯𑀲𑁆𑀲", "𑀚𑀻𑀯𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ovāda", "noun", "ovādā", "ovādassa", "ovādassa", "", "advice"]) + let v = native_list_append(v, ["pariyodha", "noun", "pariyodhā", "pariyodhassa", "pariyodhassa", "", "defence"]) + let v = native_list_append(v, ["𑀔𑀕𑁆𑀕", "noun", "𑀔𑀕𑁆𑀕𑀸", "𑀔𑀕𑁆𑀕𑀲𑁆𑀲", "𑀔𑀕𑁆𑀕𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["āyācana", "noun", "āyācanāni", "āyācanassa", "āyācanassa", "", "request"]) + let v = native_list_append(v, ["kolaka", "noun", "kolakāni", "kolakassa", "kolakassa", "", "pepper"]) + let v = native_list_append(v, ["आपा", "noun", "आपा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["muṭṭhi", "noun", "muṭṭhi", "", "", "", "the fist"]) + let v = native_list_append(v, ["𑀫𑀼𑀝𑁆𑀞𑀺", "noun", "𑀫𑀼𑀝𑁆𑀞𑀺𑀬𑁄", "𑀫𑀼𑀝𑁆𑀞𑀺𑀬𑀸", "𑀫𑀼𑀝𑁆𑀞𑀺𑀬𑀸", "", "Brahmi script form"]) + let v = native_list_append(v, ["puññābhisanda", "noun", "puññābhisandā", "puññābhisandassa", "puññābhisandassa", "", "accumulation of merit"]) + let v = native_list_append(v, ["pīṭha", "noun", "pīṭhāni", "pīṭhassa", "pīṭhassa", "", "chair"]) + let v = native_list_append(v, ["kosārakkha", "noun", "kosārakkhā", "kosārakkhassa", "kosārakkhassa", "", "keeper of a"]) + let v = native_list_append(v, ["cittakathin", "noun", "cittakathino", "cittakathissa", "cittakathissa", "", "an orator a"]) + let v = native_list_append(v, ["saṅkhyā", "noun", "saṅkhyāyo", "saṅkhyāya", "saṅkhyāya", "", "enumeration"]) + let v = native_list_append(v, ["uddesa", "noun", "uddesā", "uddesassa", "uddesassa", "", "indication"]) + let v = native_list_append(v, ["anugamana", "noun", "anugamanāni", "anugamanassa", "anugamanassa", "", "following after"]) + let v = native_list_append(v, ["योनी", "noun", "योनी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कम्म", "noun", "कम्म", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["असी", "noun", "असी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dāsa", "noun", "dāsā", "dāsassa", "dāsassa", "", "slave"]) + let v = native_list_append(v, ["रामो", "noun", "रामो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vinābhāva", "noun", "vinābhāvā", "vinābhāvassa", "vinābhāvassa", "", "separation"]) + let v = native_list_append(v, ["yobbanamada", "noun", "yobbanamadā", "yobbanamadassa", "yobbanamadassa", "", "the pride of"]) + let v = native_list_append(v, ["ārogyamada", "noun", "ārogyamadā", "ārogyamadassa", "ārogyamadassa", "", "pride of health"]) + let v = native_list_append(v, ["jīvitamada", "noun", "jīvitamadā", "jīvitamadassa", "jīvitamadassa", "", "the pride of"]) + let v = native_list_append(v, ["paheṇaka", "noun", "paheṇakāni", "paheṇakassa", "paheṇakassa", "", "a present fit"]) + let v = native_list_append(v, ["yamaka", "noun", "yamakā", "yamakassa", "yamakassa", "", "twin"]) + let v = native_list_append(v, ["parihāni", "noun", "parihāniyo", "parihāniyā", "parihāniyā", "", "loss"]) + let v = native_list_append(v, ["अतिपात", "noun", "अतिपाता", "अतिपातस्स", "अतिपातस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["puttadāra", "noun", "puttadārā", "puttadārassa", "puttadārassa", "", "children and wife"]) + let v = native_list_append(v, ["mīna", "noun", "mīnā", "mīnassa", "mīnassa", "", "fish"]) + let v = native_list_append(v, ["सेक", "noun", "सेका", "सेकस्स", "सेकस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["jātisaṃsāra", "noun", "jātisaṃsārā", "jātisaṃsārassa", "jātisaṃsārassa", "", "circle of rebirths"]) + let v = native_list_append(v, ["āyo", "noun", "āyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sajjhāya", "noun", "sajjhāyā", "sajjhāyassa", "sajjhāyassa", "", "study rehearsal"]) + let v = native_list_append(v, ["sasura", "noun", "sasura", "", "", "", "a father-in-law"]) + let v = native_list_append(v, ["sassū", "noun", "sassuyo", "sassuyā", "sassuyā", "", "a mother-in-law"]) + let v = native_list_append(v, ["yodhājīva", "noun", "yodhājīvā", "yodhājīvassa", "yodhājīvassa", "", "warrior"]) + let v = native_list_append(v, ["ussāraṇa", "noun", "ussāraṇāni", "ussāraṇassa", "ussāraṇassa", "", "procession going or"]) + let v = native_list_append(v, ["sañjhā", "noun", "sañjhā", "", "", "", "evening"]) + let v = native_list_append(v, ["समास", "noun", "समासा", "समासस्स", "समासस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["asicamma", "noun", "asicammāni", "asicammassa", "asicammassa", "", "sword and shield"]) + let v = native_list_append(v, ["kabba", "noun", "kabbāni", "kabbassa", "kabbassa", "", "poem poetical composition"]) + let v = native_list_append(v, ["paṭisallāna", "noun", "paṭisallānāni", "paṭisallānassa", "paṭisallānassa", "", "retirement seclusion."]) + let v = native_list_append(v, ["cetosamatha", "noun", "cetosamathāni", "cetosamathassa", "cetosamathassa", "", "calmness of mind"]) + let v = native_list_append(v, ["appamattaka", "noun", "appamattakāni", "appamattakassa", "appamattakassa", "", "a trifle"]) + let v = native_list_append(v, ["saṃsagga", "noun", "saṃsaggā", "saṃsaggassa", "saṃsaggassa", "", "contact"]) + let v = native_list_append(v, ["𑅇", "noun", "𑅇", "𑅇𑄥𑄴𑄥", "𑅇𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["भरण", "noun", "भरणानि", "भरणस्स", "भरणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sutti", "noun", "sutti", "", "", "", "good saying"]) + let v = native_list_append(v, ["আরাম", "noun", "আরামা", "আরামস্স", "আরামস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["तरण", "noun", "तरणानि", "तरणस्स", "तरणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["sanacca", "noun", "sanacca", "", "", "", "dancing"]) + let v = native_list_append(v, ["कारा", "noun", "कारायो", "काराय", "काराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["खादन", "noun", "खादनानि", "खादनस्स", "खादनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["वसुन्धरा", "noun", "वसुन्धरायो", "वसुन्धराय", "वसुन्धराय", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဘောဂ", "noun", "ဘောဂ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["उपपात", "noun", "उपपाता", "उपपातस्स", "उपपातस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဥပ္ပလ", "noun", "ဥပ္ပလ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ឧសភ", "noun", "ឧសភា", "ឧសភស្ស", "ឧសភស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["sampavattar", "noun", "sampavattāro", "sampavattu", "sampavattu", "", "instigator"]) + let v = native_list_append(v, ["puṇṇamā", "noun", "puṇṇamāyo", "puṇṇamāya", "puṇṇamāya", "", "the night of"]) + let v = native_list_append(v, ["sīlakkhandha", "noun", "sīlakkhandhā", "sīlakkhandhassa", "sīlakkhandhassa", "", "all that belongs"]) + let v = native_list_append(v, ["vikappa", "noun", "vikappā", "vikappassa", "vikappassa", "", "thought"]) + let v = native_list_append(v, ["মান", "noun", "মানা", "মানস্স", "মানস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["micchāvāyāma", "noun", "micchāvāyāmā", "micchāvāyāmassa", "micchāvāyāmassa", "", "wrong effort"]) + let v = native_list_append(v, ["musala", "noun", "musalā", "musalassa", "musalassa", "", "pestle"]) + let v = native_list_append(v, ["jātivāda", "noun", "jātivādā", "jātivādassa", "jātivādassa", "", "discussion about the"]) + let v = native_list_append(v, ["sippaṭṭhāna", "noun", "sippaṭṭhānāni", "sippaṭṭhānassa", "sippaṭṭhānassa", "", "a branch of"]) + let v = native_list_append(v, ["adhippāya", "noun", "adhippāyā", "adhippāyassa", "adhippāyassa", "", "intention"]) + let v = native_list_append(v, ["ဣသိ", "noun", "ဣသယော", "ဣသိဿ", "ဣသိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဘဂဝတော", "noun", "ဘဂဝတော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အရဟတော", "noun", "အရဟတော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သမ္မာသမ္ဗုဒ္ဓဿ", "noun", "သမ္မာသမ္ဗုဒ္ဓဿ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vippaṭisāra", "noun", "vippaṭisārā", "vippaṭisārassa", "vippaṭisārassa", "", "remorse"]) + let v = native_list_append(v, ["ārambha", "noun", "ārambhā", "ārambhassa", "ārambhassa", "", "beginning attempt"]) + let v = native_list_append(v, ["maṇiratana", "noun", "maṇiratanāni", "maṇiratanassa", "maṇiratanassa", "", "a valuable gem"]) + let v = native_list_append(v, ["dūta", "noun", "dūtā", "dūtassa", "dūtassa", "", "a messenger envoy"]) + let v = native_list_append(v, ["sammosa", "noun", "sammosā", "sammosassa", "sammosassa", "", "confusion"]) + let v = native_list_append(v, ["janatā", "noun", "janatāyo", "janatāya", "janatāya", "", "populace"]) + let v = native_list_append(v, ["paṭivinaya", "noun", "paṭivinayā", "paṭivinayassa", "paṭivinayassa", "", "repression"]) + let v = native_list_append(v, ["sakatā", "noun", "sakatāyo", "sakatāya", "sakatāya", "", "identity"]) + let v = native_list_append(v, ["pāvusa", "noun", "pāvusā", "pāvusassa", "pāvusassa", "", "rain rainy season"]) + let v = native_list_append(v, ["ສັມພຸດທະ", "noun", "ສັມພຸດທາ", "ສັມພຸດທັດສະ", "ສັມພຸດທັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ພະຄະວັນຕ໌", "noun", "ພະຄະວັນໂຕ", "ພະຄະວະໂຕ", "ພະຄະວະໂຕ", "", "Lao script form"]) + let v = native_list_append(v, ["gaddha", "noun", "gaddhā", "gaddhassa", "gaddhassa", "", "a vulture"]) + let v = native_list_append(v, ["ສະລະນະ", "noun", "ສະລະນານິ", "ສະລະນັດສະ", "ສະລະນັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["युवति", "noun", "युवति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["saṃvacchara", "noun", "saṃvaccharā", "saṃvaccharassa", "saṃvaccharassa", "", "a year"]) + let v = native_list_append(v, ["खरे", "noun", "खरे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sapattī", "noun", "sapattiyo", "sapattiyā", "sapattiyā", "", "a co-wife"]) + let v = native_list_append(v, ["pātukamma", "noun", "pātukammāni", "pātukammassa", "pātukammassa", "", "manifestation"]) + let v = native_list_append(v, ["mandatta", "noun", "mandattāni", "mandattassa", "mandattassa", "", "slowness"]) + let v = native_list_append(v, ["saṅkhalikā", "noun", "saṅkhalikāyo", "saṅkhalikāya", "saṅkhalikāya", "", "fetter"]) + let v = native_list_append(v, ["rājaporisa", "noun", "rājaporisāni", "rājaporisassa", "rājaporisassa", "", "the government service"]) + let v = native_list_append(v, ["pavāda", "noun", "pavādā", "pavādassa", "pavādassa", "", "talk"]) + let v = native_list_append(v, ["pesso", "noun", "pesso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["khudā", "noun", "khudāyo", "khudāya", "khudāya", "", "hunger appetite"]) + let v = native_list_append(v, ["आहरण", "noun", "आहरणानि", "आहरणस्स", "आहरणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["nābhi", "noun", "nābhi", "", "", "", "navel"]) + let v = native_list_append(v, ["कूट", "noun", "कूटानि", "कूटस्स", "कूटस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["samāsa", "noun", "samāsā", "samāsassa", "samāsassa", "", "compound combination"]) + let v = native_list_append(v, ["𑀲𑀫𑀸𑀲", "noun", "𑀲𑀫𑀸𑀲𑀸", "𑀲𑀫𑀸𑀲𑀲𑁆𑀲", "𑀲𑀫𑀸𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["সমাস", "noun", "সমাসা", "সমাসস্স", "সমাসস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["khattiya", "noun", "khattiyā", "khattiyassa", "khattiyassa", "", "a member of"]) + let v = native_list_append(v, ["madirā", "noun", "madirāyo", "madirāya", "madirāya", "", "intoxicating drink spirit"]) + let v = native_list_append(v, ["soracca", "noun", "soraccāni", "soraccassa", "soraccassa", "", "gentleness"]) + let v = native_list_append(v, ["cetokhila", "noun", "cetokhilā", "cetokhilassa", "cetokhilassa", "", "fallowness"]) + let v = native_list_append(v, ["pipāsā", "noun", "pipāsāyo", "pipāsāya", "pipāsāya", "", "thirst"]) + let v = native_list_append(v, ["khādana", "noun", "khādanāni", "khādanassa", "khādanassa", "", "the act of"]) + let v = native_list_append(v, ["𑀫𑀚𑁆𑀚", "noun", "𑀫𑀚𑁆𑀚𑀸𑀦𑀺", "𑀫𑀚𑁆𑀚𑀲𑁆𑀲", "𑀫𑀚𑁆𑀚𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["នហារុ", "noun", "នហារវោ", "នហារុស្ស", "នហារុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ariyo", "noun", "ariyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["Phussa", "noun", "Phussa", "", "", "", "the month of"]) + let v = native_list_append(v, ["မင်္ဂလ", "noun", "မင်္ဂလာနိ", "မင်္ဂလဿ", "မင်္ဂလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["sīlavipatti", "noun", "sīlavipattiyo", "sīlavipattiyā", "sīlavipattiyā", "", "moral transgression."]) + let v = native_list_append(v, ["mahāmuni", "noun", "mahāmuni", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["tāsa", "noun", "tāsā", "tāsassa", "tāsassa", "", "fear terror"]) + let v = native_list_append(v, ["siṅga", "noun", "siṅgāni", "siṅgassa", "siṅgassa", "", "horn hard growth"]) + let v = native_list_append(v, ["सङ्ग", "noun", "सङ्गा", "सङ्गस्स", "सङ्गस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vijju", "noun", "vijjuyo", "vijjuyā", "vijjuyā", "", "lightning"]) + let v = native_list_append(v, ["sikkā", "noun", "sikkāyo", "sikkāya", "sikkāya", "", "a string"]) + let v = native_list_append(v, ["जठर", "noun", "जठरानि", "जठरस्स", "जठरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["mātugāma", "noun", "mātugāmā", "mātugāmassa", "mātugāmassa", "", "womankind"]) + let v = native_list_append(v, ["bāḷisika", "noun", "bāḷisikā", "bāḷisikassa", "bāḷisikassa", "", "fisherman"]) + let v = native_list_append(v, ["phāsuḷī", "noun", "phāsuḷiyo", "phāsuḷiyā", "phāsuḷiyā", "", "rib"]) + let v = native_list_append(v, ["uddāna", "noun", "uddānāni", "uddānassa", "uddānassa", "", "list a table"]) + let v = native_list_append(v, ["लोप", "noun", "लोपा", "लोपस्स", "लोपस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["សបថ", "noun", "សបថា", "សបថស្ស", "សបថស្ស", "", "an oath"]) + let v = native_list_append(v, ["nissaya", "noun", "nissayā", "nissayassa", "nissayassa", "", "support"]) + let v = native_list_append(v, ["bhattuddesaka", "noun", "bhattuddesakā", "bhattuddesakassa", "bhattuddesakassa", "", "One whose duty"]) + let v = native_list_append(v, ["चर", "noun", "चरा", "चरस्स", "चरस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["senāsanapaññāpaka", "noun", "senāsanapaññāpakā", "senāsanapaññāpakassa", "senāsanapaññāpakassa", "", "regulator of lodging-places"]) + let v = native_list_append(v, ["senāsana", "noun", "senāsanāni", "senāsanassa", "senāsanassa", "", "sleeping place"]) + let v = native_list_append(v, ["yāgu", "noun", "yāguyo", "yāguyā", "yāguyā", "", "rice-gruel"]) + let v = native_list_append(v, ["pesaka", "noun", "pesakā", "pesakassa", "pesakassa", "", "sender employer"]) + let v = native_list_append(v, ["dhammavicaya", "noun", "dhammavicayā", "dhammavicayassa", "dhammavicayassa", "", "investigation of doctrine."]) + let v = native_list_append(v, ["jaṭila", "noun", "jaṭilā", "jaṭilassa", "jaṭilassa", "", "a kind of"]) + let v = native_list_append(v, ["ကရုဏာ", "noun", "ကရုဏာယော", "ကရုဏာယ", "ကရုဏာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["siloka", "noun", "silokā", "silokassa", "silokassa", "", "fame"]) + let v = native_list_append(v, ["kavayo", "noun", "kavayo", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["नाका", "noun", "नाका", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀯", "noun", "𑀯", "𑀯𑀲𑁆𑀲", "𑀯𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀲", "noun", "𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["mosavajja", "noun", "mosavajjāni", "mosavajjassa", "mosavajjassa", "", "untruth"]) + let v = native_list_append(v, ["kadariyatā", "noun", "kadariyatāyo", "kadariyatāya", "kadariyatāya", "", "niggardliness"]) + let v = native_list_append(v, ["assassa", "noun", "assassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["niḍḍha", "noun", "niḍḍhāni", "niḍḍhassa", "niḍḍhassa", "", "nest"]) + let v = native_list_append(v, ["nīḷa", "noun", "nīḷāni", "nīḷassa", "nīḷassa", "", "nest"]) + let v = native_list_append(v, ["kosiya", "noun", "kosiya", "", "", "", "silk"]) + let v = native_list_append(v, ["โกสิย", "noun", "โกสิย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["samparāya", "noun", "samparāyā", "samparāyassa", "samparāyassa", "", "future state the"]) + let v = native_list_append(v, ["girā", "noun", "girāyo", "girāya", "girāya", "", "word; utterance."]) + let v = native_list_append(v, ["pitucchā", "noun", "pitucchāyo", "pitucchāya", "pitucchāya", "", "a fathers sister"]) + let v = native_list_append(v, ["साले", "noun", "साले", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["กามา", "noun", "กามา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["mañjūsā", "noun", "mañjūsāyo", "mañjūsāya", "mañjūsāya", "", "a casket used"]) + let v = native_list_append(v, ["सच्चे", "noun", "सच्चे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सुखो", "noun", "सुखो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["दिसा", "noun", "दिसायो", "दिसाय", "दिसाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀇𑀢𑁆𑀣𑀻", "noun", "𑀇𑀢𑁆𑀣𑀻", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀑𑀤𑀦", "noun", "𑀑𑀤𑀦", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["vināyaka", "noun", "vināyakā", "vināyakassa", "vināyakassa", "", "leader guide instructor"]) + let v = native_list_append(v, ["anācāra", "noun", "anācārā", "anācārassa", "anācārassa", "", "misconduct misbehavior immorality"]) + let v = native_list_append(v, ["hāyana", "noun", "hāyanāni", "hāyanassa", "hāyanassa", "", "diminution decay decrease"]) + let v = native_list_append(v, ["mantanā", "noun", "mantanā", "", "", "", "counsel consultation advice"]) + let v = native_list_append(v, ["vuṭṭhi", "noun", "vuṭṭhiyo", "vuṭṭhiyā", "vuṭṭhiyā", "", "rain"]) + let v = native_list_append(v, ["vedikā", "noun", "vedikāyo", "vedikāya", "vedikāya", "", "cornice ledge railing"]) + let v = native_list_append(v, ["vepulla", "noun", "vepullāni", "vepullassa", "vepullassa", "", "full development abundance"]) + let v = native_list_append(v, ["veyyākaraṇa", "noun", "veyyākaraṇa", "", "", "", "answer explanation exposition"]) + let v = native_list_append(v, ["veyyattiya", "noun", "veyyattiya", "", "", "", "distinction lucidity accomplishment"]) + let v = native_list_append(v, ["vemattatā", "noun", "vemattatāyo", "vemattatāya", "vemattatāya", "", "difference distinction discrepancy"]) + let v = native_list_append(v, ["สัททะ", "noun", "สัททา", "สัททัสสะ", "สัททัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["bhumma", "noun", "bhummāni", "bhummassa", "bhummassa", "", "ground"]) + let v = native_list_append(v, ["bhummā", "noun", "bhummā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["ภุมมะ", "noun", "ภุมมานิ", "ภุมมัสสะ", "ภุมมัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ภุมมา", "noun", "ภุมมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อัญชะลิ", "noun", "อัญชะลิโย", "อัญชะลิยา", "อัญชะลิยา", "", "Thai script without"]) + let v = native_list_append(v, ["cātummahārājika", "noun", "cātummahārājikā", "cātummahārājikānaṃ", "cātummahārājikānaṃ", "", "the retinue of"]) + let v = native_list_append(v, ["จาตุมมะหาราชิกะ", "noun", "จาตุมมะหาราชิกา", "จาตุมมะหาราชิกานัง", "จาตุมมะหาราชิกานัง", "", "Thai script without"]) + let v = native_list_append(v, ["cātummahārājiko", "noun", "cātummahārājiko", "", "", "", "alternative citation form"]) + let v = native_list_append(v, ["cātummahārājikā", "noun", "cātummahārājikā", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["จาตุมมะหาราชิกา", "noun", "จาตุมมะหาราชิกา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["จาตุมมะหาราชิโก", "noun", "จาตุมมะหาราชิโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["cātumahārāja", "noun", "cātumahārājā", "cātumahārājānaṃ", "cātumahārājānaṃ", "", "the Four Heavenly"]) + let v = native_list_append(v, ["mahārājan", "noun", "mahārājāno", "mahārañño", "mahārañño", "", "great king"]) + let v = native_list_append(v, ["mahārāja", "noun", "mahārāja", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["mahārājo", "noun", "mahārājo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mahārājā", "noun", "mahārājā", "", "", "", "inflection of mahārājan"]) + let v = native_list_append(v, ["sītodaka", "noun", "sītodakāni", "sītodakassa", "sītodakassa", "", "cool water"]) + let v = native_list_append(v, ["ဘဂဝန္တ်", "noun", "ဘဂဝန္တော", "ဘဂဝတော", "ဘဂဝတော", "", "Burmese script form"]) + let v = native_list_append(v, ["arahato", "noun", "arahato", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["အရဟန္တ်", "noun", "အရဟန္တော", "အရဟတော", "အရဟတော", "", "Burmese script form"]) + let v = native_list_append(v, ["अरहतो", "noun", "अरहतो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["อรหโต", "noun", "อรหโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะระหะโต", "noun", "อะระหะโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩁᩉᨲᩮᩣ", "noun", "ᩋᩁᩉᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["भगवन्त्", "noun", "भगवन्तो", "भगवतो", "भगवतो", "", "Devanagari script form"]) + let v = native_list_append(v, ["भगवतो", "noun", "भगवतो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अरहन्त्", "noun", "अरहन्तो", "अरहतो", "अरहतो", "", "Devanagari script form"]) + let v = native_list_append(v, ["သမ္ဗုဒ္ဓ", "noun", "သမ္ဗုဒ္ဓါ", "သမ္ဗုဒ္ဓဿ", "သမ္ဗုဒ္ဓဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["sammāsambuddha", "noun", "sammāsambuddhā", "sammāsambuddhassa", "sammāsambuddhassa", "", "the fully enlightened"]) + let v = native_list_append(v, ["သမ္မာသမ္ဗုဒ္ဓ", "noun", "သမ္မာသမ္ဗုဒ္ဓါ", "သမ္မာသမ္ဗုဒ္ဓဿ", "သမ္မာသမ္ဗုဒ္ဓဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["สมฺมาสมฺพุทฺธ", "noun", "สมฺมาสมฺพุทฺธา", "สมฺมาสมฺพุทฺธสฺส", "สมฺมาสมฺพุทฺธสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สัมมาสัมพุทธะ", "noun", "สัมมาสัมพุทธา", "สัมมาสัมพุทธัสสะ", "สัมมาสัมพุทธัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨾᩣᩈᨾᩛᩩᨴ᩠ᨵ", "noun", "ᩈᨾ᩠ᨾᩣᩈᨾᩛᩩᨴ᩠ᨵᩣ", "ᩈᨾ᩠ᨾᩣᩈᨾᩛᩩᨴ᩠ᨵᩔ", "ᩈᨾ᩠ᨾᩣᩈᨾᩛᩩᨴ᩠ᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩜᩣᩈᨾ᩠ᨻᩩᨴ᩠ᨵ", "noun", "ᩈᨾᩜᩣᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩤ", "ᩈᨾᩜᩣᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩔ", "ᩈᨾᩜᩣᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["सम्मासम्बुद्ध", "noun", "सम्मासम्बुद्धा", "सम्मासम्बुद्धस्स", "सम्मासम्बुद्धस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["सम्मासम्बुद्धस्स", "noun", "सम्मासम्बुद्धस्स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sammāsambuddhassa", "noun", "sammāsambuddhassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["สมฺมาสมฺพุทฺธสฺส", "noun", "สมฺมาสมฺพุทฺธสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัมมาสัมพุทธัสสะ", "noun", "สัมมาสัมพุทธัสสะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨾᩣᩈᨾᩛᩩᨴ᩠ᨵᩔ", "noun", "ᩈᨾ᩠ᨾᩣᩈᨾᩛᩩᨴ᩠ᨵᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩜᩣᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩔ", "noun", "ᩈᨾᩜᩣᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["bhu", "noun", "bhu", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["အန္တ", "noun", "အန္တာ", "အန္တဿ", "အန္တဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သံဃ", "noun", "သံဃာ", "သံဃဿ", "သံဃဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သဳသံ", "noun", "သဳသံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဂုဏ", "noun", "ဂုဏာ", "ဂုဏဿ", "ဂုဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["မာတရ်", "noun", "မာတရော", "မာတု", "မာတု", "", "Burmese script form"]) + let v = native_list_append(v, ["ပိတရ်", "noun", "ပိတရော", "ပိတု", "ပိတု", "", "Burmese script form"]) + let v = native_list_append(v, ["သရဳရံ", "noun", "သရဳရံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vinaya", "noun", "vinayā", "vinayassa", "vinayassa", "", "removal"]) + let v = native_list_append(v, ["mātāpitar", "noun", "mātāpitaro", "mātāpitūnaṃ", "mātāpitūnaṃ", "", "mother and father"]) + let v = native_list_append(v, ["မာတာပိတရ်", "noun", "မာတာပိတရော", "မာတာပိတူနံ", "မာတာပိတူနံ", "", "Burmese script form"]) + let v = native_list_append(v, ["มาตาปิตรฺ", "noun", "มาตาปิตโร", "มาตาปิตูนํ", "มาตาปิตูนํ", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩣᨲᩣᨷᩥᨲᩁ᩺", "noun", "ᨾᩣᨲᩣᨷᩥᨲᩁᩮᩣ", "ᨾᩣᨲᩣᨷᩥᨲᩪᨶᩴ", "ᨾᩣᨲᩣᨷᩥᨲᩪᨶᩴ", "", "Tai Tham script"]) + let v = native_list_append(v, ["mātāpitu", "noun", "mātāpitu", "", "", "", "combining form of"]) + let v = native_list_append(v, ["မာတာပိတု", "noun", "မာတာပိတု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["มาตาปิตุ", "noun", "มาตาปิตุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩣᨲᩣᨷᩥᨲᩩ", "noun", "ᨾᩣᨲᩣᨷᩥᨲᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["မာတာ", "noun", "မာတာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ᨾᩣᨲᩣ", "noun", "ᨾᩣᨲᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["mātāpitā", "noun", "mātāpitā", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["မာတာပိတာ", "noun", "မာတာပိတာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["มาตาปิตา", "noun", "มาตาปิตา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩣᨲᩣᨷᩥᨲᩣ", "noun", "ᨾᩣᨲᩣᨷᩥᨲᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["pitā", "noun", "pitā", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ᨷᩥᨲᩣ", "noun", "ᨷᩥᨲᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปิตา", "noun", "ปิตา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ပိတာ", "noun", "ပိတာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["buddhassa", "noun", "buddhassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["buddhāya", "noun", "buddhāya", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ဗုဒ္ဓါယ", "noun", "ဗုဒ္ဓါယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["គុរុ", "noun", "គុរវោ", "គុរុស្ស", "គុរុស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["သိဒ္ဓ", "noun", "သိဒ္ဓါ", "သိဒ္ဓဿ", "သိဒ္ဓဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["siddho", "noun", "siddho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["सिद्धो", "noun", "सिद्धो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သိဒ္ဓေါ", "noun", "သိဒ္ဓေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សិទ្ធោ", "noun", "សិទ្ធោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["siddhaṃ", "noun", "siddhaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["सिद्धं", "noun", "सिद्धं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သိဒ္ဓံ", "noun", "သိဒ္ဓံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សិទ្ធំ", "noun", "សិទ្ធំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pabhā", "noun", "pabhāyo", "pabhāya", "pabhāya", "", "light radiance shine"]) + let v = native_list_append(v, ["येन", "noun", "येन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀫𑀳𑀡𑁆𑀡𑀯", "noun", "𑀫𑀳𑀡𑁆𑀡𑀯𑀸", "𑀫𑀳𑀡𑁆𑀡𑀯𑀲𑁆𑀲", "𑀫𑀳𑀡𑁆𑀡𑀯𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["mahaṇṇava", "noun", "mahaṇṇavā", "mahaṇṇavassa", "mahaṇṇavassa", "", "an ocean"]) + let v = native_list_append(v, ["𑀪𑀬", "noun", "𑀪𑀬𑀸𑀦𑀺", "𑀪𑀬𑀲𑁆𑀲", "𑀪𑀬𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["okāsakamma", "noun", "okāsakammāni", "okāsakammassa", "okāsakammassa", "", "permission"]) + let v = native_list_append(v, ["𑀲𑀼𑀓", "noun", "𑀲𑀼𑀓𑀸", "𑀲𑀼𑀓𑀲𑁆𑀲", "𑀲𑀼𑀓𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["สามินฺ", "noun", "สามิโน", "สามิสฺส", "สามิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สามิน", "noun", "สามิโน", "สามิสสะ", "สามิสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["सामिन्", "noun", "सामिनो", "सामिस्स", "सामिस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᩈᩣᨾᩥᨶ᩺", "noun", "ᩈᩣᨾᩥᨶᩮᩣ", "ᩈᩣᨾᩥᩔ", "ᩈᩣᨾᩥᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["សាមិន៑", "noun", "សាមិនោ", "សាមិស្ស", "សាមិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["พลิ", "noun", "พลโย", "พลิสฺส", "พลิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["yāyin", "noun", "yāyino", "yāyissa", "yāyissa", "", "one who goes"]) + let v = native_list_append(v, ["ខន្តី", "noun", "ខន្តី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀲𑀺𑀭𑀸", "noun", "𑀲𑀺𑀭𑀸𑀬𑁄", "𑀲𑀺𑀭𑀸𑀬", "𑀲𑀺𑀭𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["වො", "noun", "වො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tātar", "noun", "tātar", "", "", "", "protector saviour"]) + let v = native_list_append(v, ["vasso", "noun", "vasso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["မံသံ", "noun", "မံသံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀫𑀁𑀲𑀁", "noun", "𑀫𑀁𑀲𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["มงฺสํ", "noun", "มงฺสํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩘᩈᩴ", "noun", "ᨾᩘᩈᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["သရဳရ", "noun", "သရဳရာနိ", "သရဳရဿ", "သရဳရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["sarīraṃ", "noun", "sarīraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["သရီရံ", "noun", "သရီရံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["สรีรํ", "noun", "สรีรํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩁᩦᩁᩴ", "noun", "ᩈᩁᩦᩁᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ສຣີຣໍ", "noun", "ສຣີຣໍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["maṃsaṃ", "noun", "maṃsaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["sīsa", "noun", "sīsāni", "sīsassa", "sīsassa", "", "head"]) + let v = native_list_append(v, ["သဳသ", "noun", "သဳသာနိ", "သဳသဿ", "သဳသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["सीसं", "noun", "सीसं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kaṇṇa", "noun", "kaṇṇā", "kaṇṇassa", "kaṇṇassa", "", "angle corner"]) + let v = native_list_append(v, ["ကဏ္ဏ", "noun", "ကဏ္ဏာ", "ကဏ္ဏဿ", "ကဏ္ဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["kaṇṇo", "noun", "kaṇṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑀓𑀡𑁆𑀡𑁄", "noun", "𑀓𑀡𑁆𑀡𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ကဏ္ဏော", "noun", "ကဏ္ဏော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jivhā", "noun", "jivhāyo", "jivhāya", "jivhāya", "", "tongue"]) + let v = native_list_append(v, ["ဇိဝှါ", "noun", "ဇိဝှါယော", "ဇိဝှါယ", "ဇိဝှါယ", "", "Burmese script form"]) + let v = native_list_append(v, ["nāsā", "noun", "nāsāyo", "nāsāya", "nāsāya", "", "nose"]) + let v = native_list_append(v, ["နာသာ", "noun", "နာသာယော", "နာသာယ", "နာသာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["dvāraṃ", "noun", "dvāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["द्वारं", "noun", "द्वारं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ද‍්වාරං", "noun", "ද‍්වාරං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဒွါရံ", "noun", "ဒွါရံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ทฺวารํ", "noun", "ทฺวารํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ទ្វារំ", "noun", "ទ្វារំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["mukhadvāra", "noun", "mukhadvārāni", "mukhadvārassa", "mukhadvārassa", "", "entrance of the"]) + let v = native_list_append(v, ["မုခဒွါရ", "noun", "မုခဒွါရာနိ", "မုခဒွါရဿ", "မုခဒွါရဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["mukhadvāraṃ", "noun", "mukhadvāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["မုခဒွါရံ", "noun", "မုခဒွါရံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["aniccaṃ", "noun", "aniccaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["အနိစ္စံ", "noun", "အနိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["អនិច្ចំ", "noun", "អនិច្ចំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["niccaṃ", "noun", "niccaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["နိစ္စံ", "noun", "နိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ຄະໂນ", "noun", "ຄະໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["gaṇo", "noun", "gaṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["गणो", "noun", "गणो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["គណោ", "noun", "គណោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["saccaṃ", "noun", "saccaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ᩈᨧ᩠ᨧᩴ", "noun", "ᩈᨧ᩠ᨧᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["pariyāyo", "noun", "pariyāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["පරියායො", "noun", "පරියායො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ปริยาโย", "noun", "ปริยาโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["yamako", "noun", "yamako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["यमको", "noun", "यमको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ယမကော", "noun", "ယမကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yamakaṃ", "noun", "yamakaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["यमकं", "noun", "यमकं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ယမကံ", "noun", "ယမကံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vohāro", "noun", "vohāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ဝေါဟာရော", "noun", "ဝေါဟာရော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဂျပါန်", "noun", "ဂျပါန်", "", "", "", "Japan Japanese"]) + let v = native_list_append(v, ["lekhā", "noun", "lekhāyo", "lekhāya", "lekhāya", "", "streak"]) + let v = native_list_append(v, ["bhū", "noun", "bhuyo", "bhuyā", "bhuyā", "", "the earth"]) + let v = native_list_append(v, ["rakkhasa", "noun", "rakkhasā", "rakkhasassa", "rakkhasassa", "", "demon fiend"]) + let v = native_list_append(v, ["𑀭𑀓𑁆𑀔𑀲", "noun", "𑀭𑀓𑁆𑀔𑀲𑀸", "𑀭𑀓𑁆𑀔𑀲𑀲𑁆𑀲", "𑀭𑀓𑁆𑀔𑀲𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["रक्खस", "noun", "रक्खस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sīsaṃ", "noun", "sīsaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["aṃso", "noun", "aṃso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अंसो", "noun", "अंसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["hattho", "noun", "hattho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑀳𑀢𑁆𑀣𑁄", "noun", "𑀳𑀢𑁆𑀣𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["हत्थो", "noun", "हत्थो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ហត្ថោ", "noun", "ហត្ថោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["aṅgulī", "noun", "aṅgulī", "", "", "", "inflection of aṅguli"]) + let v = native_list_append(v, ["អង្គុលិ", "noun", "អង្គុលិយោ", "អង្គុលិយា", "អង្គុលិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["အင်္ဂုလိ", "noun", "အင်္ဂုလိယော", "အင်္ဂုလိယာ", "အင်္ဂုလိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["အင်္ဂုလီ", "noun", "အင်္ဂုလီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အင်္ဂုလဳ", "noun", "အင်္ဂုလဳ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အၚ်္ဂုလိ", "noun", "အၚ်္ဂုလိယော", "အၚ်္ဂုလိယာ", "အၚ်္ဂုလိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["အၚ်္ဂုလဳ", "noun", "အၚ်္ဂုလဳ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["गोधा", "noun", "गोधायो", "गोधाय", "गोधाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀕𑁄𑀥𑀸", "noun", "𑀕𑁄𑀥𑀸𑀬𑁄", "𑀕𑁄𑀥𑀸𑀬", "𑀕𑁄𑀥𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["godhā", "noun", "godhāyo", "godhāya", "godhāya", "", "a kind of"]) + let v = native_list_append(v, ["hiṅgu", "noun", "hiṅgūni", "hiṅgussa", "hiṅgussa", "", "asafetida"]) + let v = native_list_append(v, ["မာသ", "noun", "မာသာ", "မာသဿ", "မာသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["pakkha", "noun", "pakkhā", "pakkhassa", "pakkhassa", "", "side of the"]) + let v = native_list_append(v, ["sukkapakkha", "noun", "sukkapakkhā", "sukkapakkhassa", "sukkapakkhassa", "", "waxing fortnight i.e."]) + let v = native_list_append(v, ["sukkhapakkha", "noun", "sukkhapakkhā", "sukkhapakkhassa", "sukkhapakkhassa", "", "misspelling of sukkapakkha"]) + let v = native_list_append(v, ["သုက္ခပက္ခ", "noun", "သုက္ခပက္ခာ", "သုက္ခပက္ခဿ", "သုက္ခပက္ခဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သုက္ကပက္ခ", "noun", "သုက္ကပက္ခာ", "သုက္ကပက္ခဿ", "သုက္ကပက္ခဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ပက္ခ", "noun", "ပက္ခာ", "ပက္ခဿ", "ပက္ခဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["rājadūta", "noun", "rājadūtā", "rājadūtassa", "rājadūtassa", "", "royal messenger government"]) + let v = native_list_append(v, ["ဒူတ", "noun", "ဒူတာ", "ဒူတဿ", "ဒူတဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ရာဇဒူတ", "noun", "ရာဇဒူတာ", "ရာဇဒူတဿ", "ရာဇဒူတဿ", "", "royal messenger government"]) + let v = native_list_append(v, ["syāmaraṭṭha", "noun", "syāmaraṭṭha", "syāmaraṭṭhassa", "syāmaraṭṭhassa", "", "Siam an ancient"]) + let v = native_list_append(v, ["သျာမရဋ္ဌ", "noun", "သျာမရဋ္ဌ", "သျာမရဋ္ဌဿ", "သျာမရဋ္ဌဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["សក", "noun", "សក", "សកស្ស", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yuvā", "noun", "yuvā", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["yuvatī", "noun", "yuvatiyo", "yuvatiyā", "yuvatiyā", "", "maiden girl"]) + let v = native_list_append(v, ["सुरम्म", "noun", "सुरम्मा", "सुरम्मस्स", "सुरम्मस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["suramma", "noun", "surammā", "surammassa", "surammassa", "", "name of a"]) + let v = native_list_append(v, ["𑀓𑀸𑀭𑀡", "noun", "𑀓𑀸𑀭𑀡𑀸𑀦𑀺", "𑀓𑀸𑀭𑀡𑀲𑁆𑀲", "𑀓𑀸𑀭𑀡𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["ອະລະຫັນຕ", "noun", "ອະລະຫັນໂຕ", "ອະລະຫະໂຕ", "ອະລະຫະໂຕ", "", "Lao script form"]) + let v = native_list_append(v, ["ຈະລະນະ", "noun", "ຈະລະນານິ", "ຈະລະນັດສະ", "ຈະລະນັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸລິສະ", "noun", "ປຸລິສາ", "ປຸລິສັດສະ", "ປຸລິສັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສາລະຖິ", "noun", "ສາລະຖະໂຍ", "ສາລະຖິດສະ", "ສາລະຖິດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສັດຖັລ", "noun", "ສັດຖາໂລ", "ສັດຖຸ", "ສັດຖຸ", "", "Lao script form"]) + let v = native_list_append(v, ["สัตถา", "noun", "สัตถา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ສັຕຖາ", "noun", "ສັຕຖາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັດຖາ", "noun", "ສັດຖາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["สัตถุ", "noun", "สัตถุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨲ᩠ᨳᩩ", "noun", "ᩈᨲ᩠ᨳᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ສັຕຖຸ", "noun", "ສັຕຖຸ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັດຖຸ", "noun", "ສັດຖຸ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ມະນຸດສະ", "noun", "ມະນຸດສາ", "ມະນຸດສັດສະ", "ມະນຸດສັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຍາຍະ", "noun", "ຍາຍາ", "ຍາຍັດສະ", "ຍາຍັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸລິສະປຸກຄະລະ", "noun", "ປຸລິສະປຸກຄະລາ", "ປຸລິສະປຸກຄະລັສສະ", "ປຸລິສະປຸກຄະລັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ພາຫຸ", "noun", "ພາຫໂວ", "ພາຫຸສ຺ສ", "ພາຫຸສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["চকোর", "noun", "চকোরা", "চকোরস্স", "চকোরস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["āvudha", "noun", "āvudhāni", "āvudhassa", "āvudhassa", "", "weapon"]) + let v = native_list_append(v, ["ອາວຸທະ", "noun", "ອາວຸທານິ", "ອາວຸທັສສະ", "ອາວຸທັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ມາລະ", "noun", "ມາລາ", "ມາລັດສະ", "ມາລັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ທານະ", "noun", "ທານານິ", "ທານັສສະ", "ທານັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ອາທິ", "noun", "ອາທໂຍ", "ອາທິສ຺ສ", "ອາທິສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["vidhi", "noun", "vidhayo", "vidhissa", "vidhissa", "", "rule"]) + let v = native_list_append(v, ["ວິທິ", "noun", "ວິທະໂຍ", "ວິທິດສະ", "ວິທິດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ມຸນິ", "noun", "ມຸນໂຍ", "ມຸນິສ຺ສ", "ມຸນິສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["ອິນທະ", "noun", "ອິນທາ", "ອິນທັສສະ", "ອິນທັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["muninda", "noun", "munindā", "munindassa", "munindassa", "", "chief of sages"]) + let v = native_list_append(v, ["ມຸນິນທະ", "noun", "ມຸນິນທາ", "ມຸນິນທັສສະ", "ມຸນິນທັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ມຸນິນໂທ", "noun", "ມຸນິນໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["तेजो", "noun", "तेजो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तेजं", "noun", "तेजं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tejaṃ", "noun", "tejaṃ", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["ເຕຊັສ", "noun", "ເຕຊານິ", "ເຕຊະໂສ", "ເຕຊະໂສ", "", "Lao script form"]) + let v = native_list_append(v, ["সরা", "noun", "সরা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ຊະຍະ", "noun", "ຊະຍາ", "ຊະຍັສສະ", "ຊະຍັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ມັງຄະລະ", "noun", "ມັງຄະລານິ", "ມັງຄະລັສສະ", "ມັງຄະລັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["maṅgalaṃ", "noun", "maṅgalaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["मङ्गलं", "noun", "मङ्गलं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["မင်္ဂလံ", "noun", "မင်္ဂလံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["มังคะลัง", "noun", "มังคะลัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩘᨣᩃᩴ", "noun", "ᨾᩘᨣᩃᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ມັງຄະລັງ", "noun", "ມັງຄະລັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["មង្គលំ", "noun", "មង្គលំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ລັດຕິ", "noun", "ລັດຕິໂຍ", "ລັດຕິຍາ", "ລັດຕິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["āḷavaka", "noun", "āḷavaka", "āḷavakassa", "āḷavakassa", "", "name of a"]) + let v = native_list_append(v, ["ອາລະວະກະ", "noun", "ອາລະວະກະ", "ອາລະວະກັສສະ", "ອາລະວະກັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["មាតិកា", "noun", "មាតិកាយោ", "មាតិកាយ", "មាតិកាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["ຍັກຂະ", "noun", "ຍັກຂາ", "ຍັກຂັສສະ", "ຍັກຂັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຍັກໂຂ", "noun", "ຍັກໂຂ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["យក្ខោ", "noun", "យក្ខោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ᨿᨠ᩠ᨡᩮᩣ", "noun", "ᨿᨠ᩠ᨡᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ยกฺโข", "noun", "ยกฺโข", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["yakkho", "noun", "yakkho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["khantī", "noun", "khantī", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["খন্তী", "noun", "খন্তী", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ຂັນຕີ", "noun", "ຂັນຕີ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ခန္တိ", "noun", "ခန္တိယော", "ခန္တိယာ", "ခန္တိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["ຂັນຕິ", "noun", "ຂັນຕິໂຍ", "ຂັນຕິຍາ", "ຂັນຕິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ខន្តិ", "noun", "ខន្តិយោ", "ខន្តិយា", "ខន្តិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["दन्तो", "noun", "दन्तो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ทนฺโต", "noun", "ทนฺโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨶ᩠ᨲᩮᩣ", "noun", "ᨴᨶ᩠ᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ទន្តោ", "noun", "ទន្តោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sīlaṃ", "noun", "sīlaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["သီလံ", "noun", "သီလံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["สีลัง", "noun", "สีลัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀫𑀤", "noun", "𑀫𑀤𑀸", "𑀫𑀤𑀲𑁆𑀲", "𑀫𑀤𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["คโช", "noun", "คโช", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["गजो", "noun", "गजो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ຄະໂຊ", "noun", "ຄະໂຊ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຄະຊະ", "noun", "ຄະຊາ", "ຄະຊັສສະ", "ຄະຊັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ວະລະ", "noun", "ວະລາ", "ວະລັດສະ", "ວະລັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["เทโว", "noun", "เทโว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["bāhā", "noun", "bāhāyo", "bāhāya", "bāhāya", "", "arm"]) + let v = native_list_append(v, ["liṅgaṃ", "noun", "liṅgaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["लिङ्गं", "noun", "लिङ्गं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["লিঙ্গং", "noun", "লিঙ্গং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["លិង្គំ", "noun", "លិង្គំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ยาจโก", "noun", "ยาจโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["নাকা", "noun", "নাকা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["បាតរាស", "noun", "បាតរាសា", "បាតរាសស្ស", "បាតរាសស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["नराय", "noun", "नराय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नरे", "noun", "नरे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vāla", "noun", "vālā", "vālassa", "vālassa", "", "hair of the"]) + let v = native_list_append(v, ["vāḷa", "noun", "vāḷā", "vāḷassa", "vāḷassa", "", "snake"]) + let v = native_list_append(v, ["วาโฬ", "noun", "วาโฬ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["vāḷo", "noun", "vāḷo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["बालो", "noun", "बालो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["বালো", "noun", "বালো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ဗာလော", "noun", "ဗာလော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["พาโล", "noun", "พาโล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ពាលោ", "noun", "ពាលោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["puccha", "noun", "pucchāni", "pucchassa", "pucchassa", "", "tail"]) + let v = native_list_append(v, ["mīno", "noun", "mīno", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["मीनो", "noun", "मीनो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["มีโน", "noun", "มีโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["មីនោ", "noun", "មីនោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["muhutta", "noun", "muhuttā", "muhuttassa", "muhuttassa", "", "a moment an"]) + let v = native_list_append(v, ["𑀫𑀼𑀳𑀼𑀢𑁆𑀢", "noun", "𑀫𑀼𑀳𑀼𑀢𑁆𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["मुहुत्त", "noun", "मुहुत्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vace", "noun", "vace", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["dhanu", "noun", "dhanūni", "dhanussa", "dhanussa", "", "bow"]) + let v = native_list_append(v, ["ທັມໂມ", "noun", "ທັມໂມ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀮𑀓𑁆𑀔𑀡", "noun", "𑀮𑀓𑁆𑀔𑀡𑀸𑀦𑀺", "𑀮𑀓𑁆𑀔𑀡𑀲𑁆𑀲", "𑀮𑀓𑁆𑀔𑀡𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["लक्खण", "noun", "लक्खणानि", "लक्खणस्स", "लक्खणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ພຸດໂທ", "noun", "ພຸດໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸທ຺ໂຘ", "noun", "ພຸທ຺ໂຘ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸທໂທ຺", "noun", "ພຸທໂທ຺", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["बुद्धो", "noun", "बुद्धो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["বুদ্ধো", "noun", "বুদ্ধো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["බුද‍්ධො", "noun", "බුද‍්ධො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဗုဒ္ဓေါ", "noun", "ဗုဒ္ဓေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["พุทฺโธ", "noun", "พุทฺโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["พุทโธ", "noun", "พุทโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩮᩣ", "noun", "ᨻᩩᨴ᩠ᨵᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩮᩤ", "noun", "ᨻᩩᨴ᩠ᨵᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ពុទ្ធោ", "noun", "ពុទ្ធោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["buddho", "noun", "buddho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["উক্কা", "noun", "উক্কাযো", "উক্কায", "উক্কায", "", "Bengali script form"]) + let v = native_list_append(v, ["ວະໂລ", "noun", "ວະໂລ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["वरो", "noun", "वरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["វរោ", "noun", "វរោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ສັມພຸດໂທ", "noun", "ສັມພຸດໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັມພຸທໂທ຺", "noun", "ສັມພຸທໂທ຺", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["သမ္ဗုဒ္ဓေါ", "noun", "သမ္ဗုဒ္ဓေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["สมฺพุทฺโธ", "noun", "สมฺพุทฺโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัมพุทโธ", "noun", "สัมพุทโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾᩛᩩᨴ᩠ᨵᩮᩣ", "noun", "ᩈᨾᩛᩩᨴ᩠ᨵᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩛᩩᨴ᩠ᨵᩮᩤ", "noun", "ᩈᨾᩛᩩᨴ᩠ᨵᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩮᩤ", "noun", "ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sambuddho", "noun", "sambuddho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["haṃsa", "noun", "haṃsā", "haṃsassa", "haṃsassa", "", "swan goose"]) + let v = native_list_append(v, ["haṃso", "noun", "haṃso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["हंसो", "noun", "हंसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["हरिण", "noun", "हरिणा", "हरिणस्स", "हरिणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ၛာပန", "noun", "ၛာပနာနိ", "ၛာပနဿ", "ၛာပနဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သမဏော", "noun", "သမဏော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["sappe", "noun", "sappe", "", "", "", "inflection of sappa"]) + let v = native_list_append(v, ["ဟံသော", "noun", "ဟံသော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សាយ", "noun", "សាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဗုဒ္ဓံ", "noun", "ဗုဒ္ဓံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ព្យញ្ជន", "noun", "ព្យញ្ជនានិ", "ព្យញ្ជនស្ស", "ព្យញ្ជនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["သာသန", "noun", "သာသနာနိ", "သာသနဿ", "သာသနဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သႃသၼ", "noun", "သႃသၼ", "", "", "", "Burmese script old"]) + let v = native_list_append(v, ["𑀲𑀸𑀲𑀦", "noun", "𑀲𑀸𑀲𑀦𑀸𑀦𑀺", "𑀲𑀸𑀲𑀦𑀲𑁆𑀲", "𑀲𑀸𑀲𑀦𑀲𑁆𑀲", "", "Bengali script form"]) + let v = native_list_append(v, ["सासन", "noun", "सासनानि", "सासनस्स", "सासनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["সাসন", "noun", "সাসনানি", "সাসনস্স", "সাসনস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["සාසන", "noun", "සාසනානි", "සාසනස්ස", "සාසනස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["สาสน", "noun", "สาสนานิ", "สาสนสฺส", "สาสนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["ສາສນ", "noun", "ສາສນານິ", "ສາສນສ຺ສ", "ສາສນສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["สาสะนะ", "noun", "สาสะนานิ", "สาสะนัสสะ", "สาสะนัสสะ", "", "Thai script without"]) + let v = native_list_append(v, ["ສາສະນະ", "noun", "ສາສະນານິ", "ສາສະນັສສະ", "ສາສະນັສສະ", "", "Lao script without"]) + let v = native_list_append(v, ["ชิวฺหา", "noun", "ชิวฺหาโย", "ชิวฺหาย", "ชิวฺหาย", "", "Thai script form"]) + let v = native_list_append(v, ["ภิกฺขุ", "noun", "ภิกฺขโว", "ภิกฺขุสฺส", "ภิกฺขุสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["โภชน", "noun", "โภชนานิ", "โภชนสฺส", "โภชนสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["สิทฺธิ", "noun", "สิทฺธิโย", "สิทฺธิยา", "สิทฺธิยา", "", "Thai script form"]) + let v = native_list_append(v, ["สุราเมรยมชฺชปมาทฏฺฐาน", "noun", "สุราเมรยมชฺชปมาทฏฺฐานานิ", "สุราเมรยมชฺชปมาทฏฺฐานสฺส", "สุราเมรยมชฺชปมาทฏฺฐานสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["អន្តរាយ", "noun", "អន្តរាយា", "អន្តរាយស្ស", "អន្តរាយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["yañño", "noun", "yañño", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["virāgo", "noun", "virāgo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vasu-", "noun", "vasu-", "", "", "", "wealth"]) + let v = native_list_append(v, ["vālavedhin", "noun", "vālavedhino", "vālavedhissa", "vālavedhissa", "", "an archer who"]) + let v = native_list_append(v, ["ភណ្ឌាគារ", "noun", "ភណ្ឌាគារា", "ភណ្ឌាគារស្ស", "ភណ្ឌាគារស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["កាយ", "noun", "កាយា", "កាយស្ស", "កាយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["vidhavā", "noun", "vidhavāyo", "vidhavāya", "vidhavāya", "", "a widow"]) + let v = native_list_append(v, ["អន្តរាយោ", "noun", "អន្តរាយោា", "អន្តរាយោស្ស", "អន្តរាយោស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["अन्तरायो", "noun", "अन्तरायो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["antarāyo", "noun", "antarāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ussāraṇaṃ", "noun", "ussāraṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["उपासको", "noun", "उपासको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["upāsako", "noun", "upāsako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["upāsakattaṃ", "noun", "upāsakattaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["uṇṇā", "noun", "uṇṇāyo", "uṇṇāya", "uṇṇāya", "", "wool"]) + let v = native_list_append(v, ["khajju", "noun", "khajjuyo", "khajjuyā", "khajjuyā", "", "the act of"]) + let v = native_list_append(v, ["uṇṇaṃ", "noun", "uṇṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ulūka", "noun", "ulūkā", "ulūkassa", "ulūkassa", "", "owl"]) + let v = native_list_append(v, ["उलूको", "noun", "उलूको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ulūko", "noun", "ulūko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["uddānaṃ", "noun", "uddānaṃ", "", "", "", "nom/acc singular of"]) + let v = native_list_append(v, ["ucchādanaṃ", "noun", "ucchādanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["tirodhānaṃ", "noun", "tirodhānaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["theravādo", "noun", "theravādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["เถรวาโท", "noun", "เถรวาโท", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ထေရဝါဒော", "noun", "ထေရဝါဒော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["सत्त", "noun", "सत्ता", "सत्तस्स", "सत्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["tāṇaṃ", "noun", "tāṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["suvaṇṇakāro", "noun", "suvaṇṇakāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sītodakaṃ", "noun", "sītodakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["sippaṭṭhānaṃ", "noun", "sippaṭṭhānaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["siñcako", "noun", "siñcako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["senāsanaṃ", "noun", "senāsanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["senāsanapaññāpako", "noun", "senāsanapaññāpako", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["រុក្ខ", "noun", "រុក្ខា", "រុក្ខស្ស", "រុក្ខស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["saṅkhepo", "noun", "saṅkhepo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["saṅkho", "noun", "saṅkho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["saṅkhaṃ", "noun", "saṅkhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["saṃsaggo", "noun", "saṃsaggo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["samparāyo", "noun", "samparāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["lāpo", "noun", "lāpo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sajjhāyo", "noun", "sajjhāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sajjhakāro", "noun", "sajjhakāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["raṇo", "noun", "raṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["raṇaṃ", "noun", "raṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["रणं", "noun", "रणं", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["रणो", "noun", "रणो", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["rāmo", "noun", "rāmo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ရာမော", "noun", "ရာမော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ราโม", "noun", "ราโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["rājaporisaṃ", "noun", "rājaporisaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["rājadāyo", "noun", "rājadāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["rāgo", "noun", "rāgo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["रागो", "noun", "रागो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ရာဂေါ", "noun", "ရာဂေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["រាគោ", "noun", "រាគោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ราโค", "noun", "ราโค", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["puttadāro", "noun", "puttadāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अभिदोसो", "noun", "अभिदोसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["အဘိဒေါသော", "noun", "အဘိဒေါသော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อภิโทโส", "noun", "อภิโทโส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["អភិទោសោ", "noun", "អភិទោសោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["abhidoso", "noun", "abhidoso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["abbhāgato", "noun", "abbhāgato", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["adhippāyo", "noun", "adhippāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pabhedo", "noun", "pabhedo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["akkharappabhedo", "noun", "akkharappabhedo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अण्डं", "noun", "अण्डं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["อัณฑัง", "noun", "อัณฑัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["aṇḍaṃ", "noun", "aṇḍaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["appamattakaṃ", "noun", "appamattakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["अरविन्दं", "noun", "अरविन्दं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["aravindaṃ", "noun", "aravindaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["asicammaṃ", "noun", "asicammaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["asitaṃ", "noun", "asitaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["asito", "noun", "asito", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["असितो", "noun", "असितो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["असितं", "noun", "असितं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ពន្ធនាគារំ", "noun", "ពន្ធនាគារំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["bandhanāgāraṃ", "noun", "bandhanāgāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ākāso", "noun", "ākāso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ānisaṃso", "noun", "ānisaṃso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["អាបំ", "noun", "អាបំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["អាបោ", "noun", "អាបោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["आपं", "noun", "आपं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["आपो", "noun", "आपो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["āpaṃ", "noun", "āpaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["āpo", "noun", "āpo", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["आरम्भो", "noun", "आरम्भो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ārambho", "noun", "ārambho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ārogyamado", "noun", "ārogyamado", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ātāpanaṃ", "noun", "ātāpanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["आयो", "noun", "आयो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["อาโย", "noun", "อาโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["អាយោ", "noun", "អាយោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["āyamukhaṃ", "noun", "āyamukhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["āyācanaṃ", "noun", "āyācanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["bāḷisiko", "noun", "bāḷisiko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["bhattuddesako", "noun", "bhattuddesako", "", "", "", "nominative t of"]) + let v = native_list_append(v, ["brahmadeyyaṃ", "noun", "brahmadeyyaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["cetokhilo", "noun", "cetokhilo", "", "", "", "Templateinflection of"]) + let v = native_list_append(v, ["cetopariyañāṇaṃ", "noun", "cetopariyañāṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["dantakāro", "noun", "dantakāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["dārabharaṇaṃ", "noun", "dārabharaṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["dāsabyaṃ", "noun", "dāsabyaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["देसो", "noun", "देसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဒေသော", "noun", "ဒေသော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ទេសោ", "noun", "ទេសោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["dhammavicayo", "noun", "dhammavicayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["dheyyaṃ", "noun", "dheyyaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["दिनं", "noun", "दिनं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["দিনং", "noun", "দিনং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["dinaṃ", "noun", "dinaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["दिसो", "noun", "दिसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ទិសោ", "noun", "ទិសោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["diṭṭhadhammo", "noun", "diṭṭhadhammo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["samaṇo", "noun", "samaṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["samaṇa gotama", "noun", "samaṇa gotama", "", "", "", "the ascetic Gautama"]) + let v = native_list_append(v, ["သမဏ", "noun", "သမဏာ", "သမဏဿ", "သမဏဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["သမဏ ဂေါတမ", "noun", "သမဏ ဂေါတမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["dubbhikkhaṃ", "noun", "dubbhikkhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["dukkhanirodho", "noun", "dukkhanirodho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["dukkhasamudayo", "noun", "dukkhasamudayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["gabbho", "noun", "gabbho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["घरं", "noun", "घरं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ঘরং", "noun", "ঘরং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ឃរំ", "noun", "ឃរំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["gharaṃ", "noun", "gharaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["gīveyyakaṃ", "noun", "gīveyyakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["हिमं", "noun", "हिमं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["හිමං", "noun", "හිමං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["หิมัง", "noun", "หิมัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຫິມັງ", "noun", "ຫິມັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["himaṃ", "noun", "himaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ibbho", "noun", "ibbho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["इतिहासो", "noun", "इतिहासो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ইতিহাসো", "noun", "ইতিহাসো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["itihāso", "noun", "itihāso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["dhūma", "noun", "dhūmā", "dhūmassa", "dhūmassa", "", "smoke fumes"]) + let v = native_list_append(v, ["जटिलो", "noun", "जटिलो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["jaṭilo", "noun", "jaṭilo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["jātisaṃsāro", "noun", "jātisaṃsāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["সংসারো", "noun", "সংসারো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["संसारो", "noun", "संसारो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["saṃsāro", "noun", "saṃsāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["जातिवादो", "noun", "जातिवादो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["jātivādo", "noun", "jātivādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑀚𑀻𑀯𑁄", "noun", "𑀚𑀻𑀯𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["जीवो", "noun", "जीवो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဇီဝေါ", "noun", "ဇီဝေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jīvo", "noun", "jīvo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑀚𑀻𑀯𑀁", "noun", "𑀚𑀻𑀯𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["जीवं", "noun", "जीवं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဇီဝံ", "noun", "ဇီဝံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jīvaṃ", "noun", "jīvaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["jīvitamado", "noun", "jīvitamado", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kabbaṃ", "noun", "kabbaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["मदो", "noun", "मदो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀫𑀤𑁄", "noun", "𑀫𑀤𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["karaṇḍo", "noun", "karaṇḍo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["karaṇḍaṃ", "noun", "karaṇḍaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["kathāsallāpo", "noun", "kathāsallāpo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kāpuriso", "noun", "kāpuriso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kharo", "noun", "kharo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["khādanaṃ", "noun", "khādanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["खादनं", "noun", "खादनं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kittisaddo", "noun", "kittisaddo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kolakaṃ", "noun", "kolakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["कोसलो", "noun", "कोसलो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kosalo", "noun", "kosalo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["कोसो", "noun", "कोसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कोसं", "noun", "कोसं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kosaṃ", "noun", "kosaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["លយ", "noun", "លយា", "លយស្ស", "លយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["kotūhalaṃ", "noun", "kotūhalaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["kukkuṭo", "noun", "kukkuṭo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["กุลํ", "noun", "กุลํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["कुलं", "noun", "कुलं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kulaṃ", "noun", "kulaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["kulavaṃso", "noun", "kulavaṃso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kulāvakaṃ", "noun", "kulāvakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["कुम्भो", "noun", "कुम्भो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kumbho", "noun", "kumbho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kūṭāgāraṃ", "noun", "kūṭāgāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["kūṭa", "noun", "kūṭāni", "kūṭassa", "kūṭassa", "", "trap snare"]) + let v = native_list_append(v, ["कूटो", "noun", "कूटो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कूटं", "noun", "कूटं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kūṭaṃ", "noun", "kūṭaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["kūṭo", "noun", "kūṭo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["धूमो", "noun", "धूमो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dhūmo", "noun", "dhūmo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["လက္ခဏံ", "noun", "လက္ခဏံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀮𑀓𑁆𑀔𑀡𑀁", "noun", "𑀮𑀓𑁆𑀔𑀡𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["लक्खणं", "noun", "लक्खणं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["lakkhaṇaṃ", "noun", "lakkhaṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["pabbato", "noun", "pabbato", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["लयो", "noun", "लयो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["លយោ", "noun", "លយោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["lomahaṃso", "noun", "lomahaṃso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mandattaṃ", "noun", "mandattaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["maṇiratanaṃ", "noun", "maṇiratanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["মরিচং", "noun", "মরিচং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["maricaṃ", "noun", "maricaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["māradheyyaṃ", "noun", "māradheyyaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["mātugāmo", "noun", "mātugāmo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["नकुल", "noun", "नकुला", "नकुलस्स", "नकुलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["micchāvāyāmo", "noun", "micchāvāyāmo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mosavajjaṃ", "noun", "mosavajjaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["mudiṅgo", "noun", "mudiṅgo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mutiṅgo", "noun", "mutiṅgo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["मूगो", "noun", "मूगो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["mūgo", "noun", "mūgo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["naṅgalaṃ", "noun", "naṅgalaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["နိဒ္ဒေသော", "noun", "နိဒ္ဒေသော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["niddeso", "noun", "niddeso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["နိဿယော", "noun", "နိဿယော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["nissayo", "noun", "nissayo", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["nivesanaṃ", "noun", "nivesanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ñāṇadassanaṃ", "noun", "ñāṇadassanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["nīvaraṇaṃ", "noun", "nīvaraṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["nīvaraṇo", "noun", "nīvaraṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["odātakasiṇaṃ", "noun", "odātakasiṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["okāsakammaṃ", "noun", "okāsakammaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ovādo", "noun", "ovādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["paggharaṇaṃ", "noun", "paggharaṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["pahāro", "noun", "pahāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["paheṇakaṃ", "noun", "paheṇakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["palālapuñjo", "noun", "palālapuñjo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["paṇavo", "noun", "paṇavo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["papañco", "noun", "papañco", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["परिजनो", "noun", "परिजनो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["parijano", "noun", "parijano", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["បរិកម្មំ", "noun", "បរិកម្មំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["parikammaṃ", "noun", "parikammaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["parimaddanaṃ", "noun", "parimaddanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["pariṇāyako", "noun", "pariṇāyako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["វេរ", "noun", "វេរានិ", "វេរស្ស", "វេរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["maggo", "noun", "maggo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["paṭibhānaṃ", "noun", "paṭibhānaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["paṭisallānaṃ", "noun", "paṭisallānaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["paṭivinayo", "noun", "paṭivinayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["विनयो", "noun", "विनयो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vinayo", "noun", "vinayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pavādo", "noun", "pavādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pākāro", "noun", "pākāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pesako", "noun", "pesako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["piṇḍapāto", "noun", "piṇḍapāto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पीठं", "noun", "पीठं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pīṭhaṃ", "noun", "pīṭhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["pubbapuriso", "noun", "pubbapuriso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pubbaṇho", "noun", "pubbaṇho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["បាតរាសោ", "noun", "បាតរាសោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pātarāso", "noun", "pātarāso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["puññābhisando", "noun", "puññābhisando", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पुण्डरीकं", "noun", "पुण्डरीकं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["puṇḍarīkaṃ", "noun", "puṇḍarīkaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["purisadammo", "noun", "purisadammo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["rahado", "noun", "rahado", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sambhedo", "noun", "sambhedo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["भेदो", "noun", "भेदो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["เภโท", "noun", "เภโท", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ភេទោ", "noun", "ភេទោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["bhedo", "noun", "bhedo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sammoso", "noun", "sammoso", "", "", "", "nominative singular confusion"]) + let v = native_list_append(v, ["sampavattu", "noun", "sampavattu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ससो", "noun", "ससो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀲𑀲𑁄", "noun", "𑀲𑀲𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["saso", "noun", "saso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sekharo", "noun", "sekharo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["siloko", "noun", "siloko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["स्नेहो", "noun", "स्नेहो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["স্নেহো", "noun", "স্নেহো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["sneho", "noun", "sneho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["soraccaṃ", "noun", "soraccaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["suddo", "noun", "suddo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["သုဒ္ဒေါ", "noun", "သုဒ္ဒေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សុកោ", "noun", "សុកោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀲𑀼𑀓𑁄", "noun", "𑀲𑀼𑀓𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["สุโก", "noun", "สุโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["satthi", "noun", "satthīni", "satthissa", "satthissa", "", "thigh"]) + let v = native_list_append(v, ["tirobhāvo", "noun", "tirobhāvo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tiropabbato", "noun", "tiropabbato", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ধাতু", "noun", "ধাতুযো", "ধাতুযা", "ধাতুযা", "", "Bengali script form"]) + let v = native_list_append(v, ["उदकं", "noun", "उदकं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["udakaṃ", "noun", "udakaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["udakarahado", "noun", "udakarahado", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["uddeso", "noun", "uddeso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["उपचयो", "noun", "उपचयो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["upacayo", "noun", "upacayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["passāva", "noun", "passāvā", "passāvassa", "passāvassa", "", "urine"]) + let v = native_list_append(v, ["ปัสสาโว", "noun", "ปัสสาโว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["passāvo", "noun", "passāvo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["वचनं", "noun", "वचनं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["វចនំ", "noun", "វចនំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vacanaṃ", "noun", "vacanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["វច្ចំ", "noun", "វច្ចំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vaccaṃ", "noun", "vaccaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["vaḍḍhakin", "noun", "vaḍḍhakin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vaḍḍhaki", "noun", "vaḍḍhakayo", "vaḍḍhakissa", "vaḍḍhakissa", "", "carpenter"]) + let v = native_list_append(v, ["vassaṃ", "noun", "vassaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["वेदो", "noun", "वेदो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["เวโท", "noun", "เวโท", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["វេទោ", "noun", "វេទោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဝေဿော", "noun", "ဝေဿော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["វិកប្បោ", "noun", "វិកប្បោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vikappo", "noun", "vikappo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vimuccanaṃ", "noun", "vimuccanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["visaṃ", "noun", "visaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["visayo", "noun", "visayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vivanaṃ", "noun", "vivanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["विवेको", "noun", "विवेको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["viveko", "noun", "viveko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["yobbanamado", "noun", "yobbanamado", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["चन्दो", "noun", "चन्दो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ចន្ទោ", "noun", "ចន្ទោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["तीरं", "noun", "तीरं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["তীরং", "noun", "তীরং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["tīraṃ", "noun", "tīraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["สกุโณ", "noun", "สกุโณ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["sakuṇo", "noun", "sakuṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["អាករោ", "noun", "អាករោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["อากโร", "noun", "อากโร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ākaro", "noun", "ākaro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["āṇā", "noun", "āṇāyo", "āṇāya", "āṇāya", "", "order command authority"]) + let v = native_list_append(v, ["nāge", "noun", "nāge", "", "", "", "inflection of nāga"]) + let v = native_list_append(v, ["កិច្ចំ", "noun", "កិច្ចំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ကိစ္စံ", "noun", "ကိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["kiccaṃ", "noun", "kiccaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["កិច្ចោ", "noun", "កិច្ចោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ကိစ္စော", "noun", "ကိစ္စော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["kicco", "noun", "kicco", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["អាកាសោ", "noun", "អាកាសោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["အာကာသော", "noun", "အာကာသော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["រន្ធំ", "noun", "រន្ធំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["randhaṃ", "noun", "randhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["rājaputta", "noun", "rājaputtā", "rājaputtassa", "rājaputtassa", "", "kings son prince"]) + let v = native_list_append(v, ["राजपुत्त", "noun", "राजपुत्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["gūtha", "noun", "gūthāni", "gūthassa", "gūthassa", "", "faeces dung"]) + let v = native_list_append(v, ["អន្ត", "noun", "អន្តា", "អន្តស្ស", "អន្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["गूथो", "noun", "गूथो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["คูโถ", "noun", "คูโถ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["គូថោ", "noun", "គូថោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["गूथं", "noun", "गूथं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["คูถํ", "noun", "คูถํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["គូថំ", "noun", "គូថំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["gūthaṃ", "noun", "gūthaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["gūtho", "noun", "gūtho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ගූථ", "noun", "ගූථානි", "ගූථස්ස", "ගූථස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ເມຕຕາ", "noun", "ເມຕຕາໂຍ", "ເມຕຕາຍະ", "ເມຕຕາຍະ", "", "Lao script form"]) + let v = native_list_append(v, ["ອັມພຸ", "noun", "ອັມພູນິ", "ອັມພຸສສະ", "ອັມພຸສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ເສກະ", "noun", "ເສກາ", "ເສກັສສະ", "ເສກັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["सेको", "noun", "सेको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["เสโก", "noun", "เสโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ເສໂກ", "noun", "ເສໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["សេកោ", "noun", "សេកោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["khagga", "noun", "khaggā", "khaggassa", "khaggassa", "", "sword"]) + let v = native_list_append(v, ["ຂັກຄະ", "noun", "ຂັກຄາ", "ຂັກຄັດສະ", "ຂັກຄັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຂັກໂຄ", "noun", "ຂັກໂຄ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀔𑀕𑁆𑀕𑁄", "noun", "𑀔𑀕𑁆𑀕𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["khaggo", "noun", "khaggo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ຫັດຖະ", "noun", "ຫັດຖາ", "ຫັດຖັດສະ", "ຫັດຖັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ຫັດໂຖ", "noun", "ຫັດໂຖ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ໂຍຊະນະ", "noun", "ໂຍຊະນານິ", "ໂຍຊະນັສສະ", "ໂຍຊະນັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ໂຍຊະນັງ", "noun", "ໂຍຊະນັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["yojanaṃ", "noun", "yojanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ອັງຄຸລິ", "noun", "ອັງຄຸລິໂຍ", "ອັງຄຸລິຍາ", "ອັງຄຸລິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ມາລາ", "noun", "ມາລາໂຍ", "ມາລາຍ", "ມາລາຍ", "", "Lao script form"]) + let v = native_list_append(v, ["iddhi", "noun", "iddhiyo", "iddhiyā", "iddhiyā", "", "prosperity"]) + let v = native_list_append(v, ["ອິດທິ", "noun", "ອິດທິໂຍ", "ອິດທິຍາ", "ອິດທິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["kaṭṭha", "noun", "kaṭṭhāni", "kaṭṭhassa", "kaṭṭhassa", "", "stick a piece"]) + let v = native_list_append(v, ["ឥណ", "noun", "ឥណានិ", "ឥណស្ស", "ឥណស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ກັດຖະ", "noun", "ກັດຖານິ", "ກັດຖັດສະ", "ກັດຖັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ກັດຖັງ", "noun", "ກັດຖັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀓𑀝𑁆𑀞𑀁", "noun", "𑀓𑀝𑁆𑀞𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["kaṭṭhaṃ", "noun", "kaṭṭhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ອຸທະລະ", "noun", "ອຸທະລານິ", "ອຸທະລັດສະ", "ອຸທະລັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸທະລັງ", "noun", "ອຸທະລັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["उदरं", "noun", "उदरं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["udaraṃ", "noun", "udaraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ឧបាយ", "noun", "ឧបាយា", "ឧបាយស្ស", "ឧបាយស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ວະຈະນະ", "noun", "ວະຈະນານິ", "ວະຈະນັສສະ", "ວະຈະນັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ວະຈະນັງ", "noun", "ວະຈະນັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ဝင်္က", "noun", "ဝင်္က", "", "", "", "crooked"]) + let v = native_list_append(v, ["nindā", "noun", "nindāyo", "nindāya", "nindāya", "", "blame censure reproach"]) + let v = native_list_append(v, ["သတိ", "noun", "သတိယော", "သတိယာ", "သတိယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["sattāha", "noun", "sattāhāni", "sattāhassa", "sattāhassa", "", "a period of"]) + let v = native_list_append(v, ["जनो", "noun", "जनो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["জনো", "noun", "জনো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ชโน", "noun", "ชโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨩᨶᩮᩣ", "noun", "ᨩᨶᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ຊະໂນ", "noun", "ຊະໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ជនោ", "noun", "ជនោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ກາຍະ", "noun", "ກາຍາ", "ກາຍັສສະ", "ກາຍັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["कायो", "noun", "कायो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀓𑀸𑀬𑁄", "noun", "𑀓𑀸𑀬𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ကာယော", "noun", "ကာယော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["กาโย", "noun", "กาโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩣᨿᩮᩣ", "noun", "ᨠᩣᨿᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ກາໂຍ", "noun", "ກາໂຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["កាយោ", "noun", "កាយោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kāyo", "noun", "kāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["तथागत", "noun", "तथागता", "तथागतस्स", "तथागतस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ສັດຈະ", "noun", "ສັດຈານິ", "ສັດຈັດສະ", "ສັດຈັດສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ສັດຈັງ", "noun", "ສັດຈັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ມະຕິ", "noun", "ມະຕິໂຍ", "ມະຕິຍາ", "ມະຕິຍາ", "", "Lao script form"]) + let v = native_list_append(v, ["ວາທະ", "noun", "ວາທາ", "ວາທັສສະ", "ວາທັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["वादो", "noun", "वादो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["වාදො", "noun", "වාදො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဝါဒေါ", "noun", "ဝါဒေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ວາໂທ", "noun", "ວາໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["vādo", "noun", "vādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ເກຕຸ", "noun", "ເກຕໂວ", "ເກຕຸສ຺ສ", "ເກຕຸສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["Rāhula", "noun", "Rāhula", "", "", "", "Rahula son of"]) + let v = native_list_append(v, ["กาเม", "noun", "กาเม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["นามา", "noun", "นามา", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["ປັນຍາ", "noun", "ປັນຍາໂຍ", "ປັນຍາຍະ", "ປັນຍາຍະ", "", "Lao script form"]) + let v = native_list_append(v, ["padīpa", "noun", "padīpā", "padīpassa", "padīpassa", "", "light"]) + let v = native_list_append(v, ["ປະທີປະ", "noun", "ປະທີປາ", "ປະທີປັສສະ", "ປະທີປັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ປະທີໂປ", "noun", "ປະທີໂປ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["padīpo", "noun", "padīpo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["biḷāra", "noun", "biḷārā", "biḷārassa", "biḷārassa", "", "cat"]) + let v = native_list_append(v, ["aggināḷī", "noun", "aggināḷiyo", "aggināḷiyā", "aggināḷiyā", "", "gun"]) + let v = native_list_append(v, ["aggināḷi", "noun", "aggināḷi", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["nāḷī", "noun", "nāḷiyo", "nāḷiyā", "nāḷiyā", "", "hollow stalk"]) + let v = native_list_append(v, ["vānara", "noun", "vānarā", "vānarassa", "vānarassa", "", "monkey"]) + let v = native_list_append(v, ["वानरो", "noun", "वानरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["วานโร", "noun", "วานโร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["vānaro", "noun", "vānaro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vaccha", "noun", "vacchā", "vacchassa", "vacchassa", "", "calf"]) + let v = native_list_append(v, ["𑀯𑀘𑁆𑀙𑁄", "noun", "𑀯𑀘𑁆𑀙𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["vaccho", "noun", "vaccho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["វាទ", "noun", "វាទា", "វាទស្ស", "វាទស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["kakkaṭaka", "noun", "kakkaṭakā", "kakkaṭakassa", "kakkaṭakassa", "", "crab"]) + let v = native_list_append(v, ["gadrabho", "noun", "gadrabho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["khandhāvāra", "noun", "khandhāvārā", "khandhāvārassa", "khandhāvārassa", "", "camp"]) + let v = native_list_append(v, ["khandhāvāro", "noun", "khandhāvāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["goṇa", "noun", "goṇā", "goṇassa", "goṇassa", "", "ox bullock"]) + let v = native_list_append(v, ["yodha", "noun", "yodhā", "yodhassa", "yodhassa", "", "warrior"]) + let v = native_list_append(v, ["យោធោ", "noun", "យោធោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yodho", "noun", "yodho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kalandaka", "noun", "kalandakā", "kalandakassa", "kalandakassa", "", "squirrel"]) + let v = native_list_append(v, ["kalandako", "noun", "kalandako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["नकुलो", "noun", "नकुलो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["nakulo", "noun", "nakulo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mahiṃsa", "noun", "mahiṃsā", "mahiṃsassa", "mahiṃsassa", "", "buffalo Old World"]) + let v = native_list_append(v, ["mahisa", "noun", "mahisā", "mahisassa", "mahisassa", "", "buffalo Old World"]) + let v = native_list_append(v, ["𑀫𑀳𑀺𑀲𑁄", "noun", "𑀫𑀳𑀺𑀲𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["mahiso", "noun", "mahiso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["mahiṃso", "noun", "mahiṃso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["paṭimā", "noun", "paṭimāyo", "paṭimāya", "paṭimāya", "", "image figure"]) + let v = native_list_append(v, ["पटिमा", "noun", "पटिमा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dīpī", "noun", "dīpī", "", "", "", "inflection of dīpin"]) + let v = native_list_append(v, ["dīpin", "noun", "dīpino", "dīpissa", "dīpissa", "", "leopard"]) + let v = native_list_append(v, ["dīpi", "noun", "dīpi", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["សេន", "noun", "សេនា", "សេនស្ស", "សេនស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["กาเยน", "noun", "กาเยน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["churikā", "noun", "churikāyo", "churikāya", "churikāya", "", "dagger"]) + let v = native_list_append(v, ["ဂေါဓါ", "noun", "ဂေါဓါယော", "ဂေါဓါယ", "ဂေါဓါယ", "", "Burmese script form"]) + let v = native_list_append(v, ["kavaca", "noun", "kavacā", "kavacassa", "kavacassa", "", "mail armour"]) + let v = native_list_append(v, ["कवचो", "noun", "कवचो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kavaco", "noun", "kavaco", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["បញ្ញា", "noun", "បញ្ញាយោ", "បញ្ញាយ", "បញ្ញាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["សីល", "noun", "សីលានិ", "សីលស្ស", "សីលស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["យុវតី", "noun", "យុវតិយោ", "យុវតិយា", "យុវតិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["ဝိစ္ဆိက", "noun", "ဝိစ္ဆိကာ", "ဝိစ္ဆိကဿ", "ဝိစ္ဆိကဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝိစ္ဆိကော", "noun", "ဝိစ္ဆိကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vicchiko", "noun", "vicchiko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["dāḷima", "noun", "dāḷimā", "dāḷimassa", "dāḷimassa", "", "pomegranate tree"]) + let v = native_list_append(v, ["dāḍima", "noun", "dāḍimā", "dāḍimassa", "dāḍimassa", "", "pomegranate tree"]) + let v = native_list_append(v, ["दाडिमो", "noun", "दाडिमो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dāḍimo", "noun", "dāḍimo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["dāḷimo", "noun", "dāḷimo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kumbhīla", "noun", "kumbhīlā", "kumbhīlassa", "kumbhīlassa", "", "crocodile"]) + let v = native_list_append(v, ["kumbhīlo", "noun", "kumbhīlo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["assasenā", "noun", "assasenāyo", "assasenāya", "assasenāya", "", "cavalry"]) + let v = native_list_append(v, ["gokaṇṇa", "noun", "gokaṇṇā", "gokaṇṇassa", "gokaṇṇassa", "", "elk"]) + let v = native_list_append(v, ["gokaṇṇo", "noun", "gokaṇṇo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sallaṃ", "noun", "sallaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["sallaka", "noun", "sallakā", "sallakassa", "sallakassa", "", "porcupine"]) + let v = native_list_append(v, ["sallako", "noun", "sallako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["nāḷikera", "noun", "nāḷikerā", "nāḷikerassa", "nāḷikerassa", "", "coconut palm"]) + let v = native_list_append(v, ["nāḷikero", "noun", "nāḷikero", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["elā", "noun", "elāyo", "elāya", "elāya", "", "cardamom seeds"]) + let v = native_list_append(v, ["नागो", "noun", "नागो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["นาโค", "noun", "นาโค", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["នាគោ", "noun", "នាគោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["nāgo", "noun", "nāgo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kaṇhagotamaka", "noun", "kaṇhagotamakā", "kaṇhagotamakassa", "kaṇhagotamakassa", "", "Kanhagotamaka Black Gotamaka"]) + let v = native_list_append(v, ["kaṇhagotamako", "noun", "kaṇhagotamako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["kakaṇṭaka", "noun", "kakaṇṭakā", "kakaṇṭakassa", "kakaṇṭakassa", "", "chameleon"]) + let v = native_list_append(v, ["kakaṇṭako", "noun", "kakaṇṭako", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ajagara", "noun", "ajagarā", "ajagarassa", "ajagarassa", "", "python"]) + let v = native_list_append(v, ["अजगरो", "noun", "अजगरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ajagaro", "noun", "ajagaro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["tathāgata", "noun", "tathāgatā", "tathāgatassa", "tathāgatassa", "", "tathagata"]) + let v = native_list_append(v, ["katthūrikā", "noun", "katthūrikāyo", "katthūrikāya", "katthūrikāya", "", "musk"]) + let v = native_list_append(v, ["asoka", "noun", "asokā", "asokassa", "asokassa", "", "Ashoka tree"]) + let v = native_list_append(v, ["khīraṃnāḷī", "noun", "khīraṃnāḷiyo", "khīraṃnāḷiyā", "khīraṃnāḷiyā", "", "coconut milk"]) + let v = native_list_append(v, ["khīraṃnāḷi", "noun", "khīraṃnāḷi", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["khīraṃ", "noun", "khīraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["खीरं", "noun", "खीरं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀔𑀻𑀭𑀁", "noun", "𑀔𑀻𑀭𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["খীরং", "noun", "খীরং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["phussarāga", "noun", "phussarāgā", "phussarāgassa", "phussarāgassa", "", "topaz"]) + let v = native_list_append(v, ["bhaṇḍāgāra", "noun", "bhaṇḍāgārā", "bhaṇḍāgārassa", "bhaṇḍāgārassa", "", "warehouse storehouse treasury"]) + let v = native_list_append(v, ["ភណ្ឌាគារោ", "noun", "ភណ្ឌាគារោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["bhaṇḍāgāro", "noun", "bhaṇḍāgāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["gharasappa", "noun", "gharasappā", "gharasappassa", "gharasappassa", "", "rat snake"]) + let v = native_list_append(v, ["gharasappo", "noun", "gharasappo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["สัปโป", "noun", "สัปโป", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀲𑀧𑁆𑀧𑁄", "noun", "𑀲𑀧𑁆𑀧𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["jāṇu", "noun", "jāṇūni", "jāṇussa", "jāṇussa", "", "knee"]) + let v = native_list_append(v, ["jānu", "noun", "jānūni", "jānussa", "jānussa", "", "knee"]) + let v = native_list_append(v, ["𑀤𑀼𑀤𑁆𑀥", "noun", "𑀤𑀼𑀤𑁆𑀥𑀸𑀦𑀺", "𑀤𑀼𑀤𑁆𑀥𑀲𑁆𑀲", "𑀤𑀼𑀤𑁆𑀥𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["kappara", "noun", "kapparā", "kapparassa", "kapparassa", "", "elbow"]) + let v = native_list_append(v, ["āgama", "noun", "āgamā", "āgamassa", "āgamassa", "", "coming arrival"]) + let v = native_list_append(v, ["bhujaga", "noun", "bhujagā", "bhujagassa", "bhujagassa", "", "snake"]) + let v = native_list_append(v, ["ພຸຊະຄະ", "noun", "ພຸຊະຄາ", "ພຸຊະຄັສສະ", "ພຸຊະຄັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸຊະໂຄ", "noun", "ພຸຊະໂຄ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["bhujago", "noun", "bhujago", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["bhuja", "noun", "bhujā", "bhujassa", "bhujassa", "", "arm"]) + let v = native_list_append(v, ["भुजो", "noun", "भुजो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhujo", "noun", "bhujo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sabhā", "noun", "sabhāyo", "sabhāya", "sabhāya", "", "a hall assembly"]) + let v = native_list_append(v, ["thuti", "noun", "thutiyo", "thutiyā", "thutiyā", "", "praise commendation adulation"]) + let v = native_list_append(v, ["𑀪𑀭𑀡", "noun", "𑀪𑀭𑀡𑀸𑀦𑀺", "𑀪𑀭𑀡𑀲𑁆𑀲", "𑀪𑀭𑀡𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["karuṇā", "noun", "karuṇāyo", "karuṇāya", "karuṇāya", "", "pity compassion"]) + let v = native_list_append(v, ["khaṇana", "noun", "khaṇanāni", "khaṇanassa", "khaṇanassa", "", "act of digging"]) + let v = native_list_append(v, ["sirā", "noun", "sirāyo", "sirāya", "sirāya", "", "a blood vessel"]) + let v = native_list_append(v, ["𑀲𑀭𑀻𑀭", "noun", "𑀲𑀭𑀻𑀭𑀸𑀦𑀺", "𑀲𑀭𑀻𑀭𑀲𑁆𑀲", "𑀲𑀭𑀻𑀭𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["অজগর", "noun", "অজগরা", "অজগরস্স", "অজগরস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["𑀦𑀭", "noun", "𑀦𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀅𑀘𑁆𑀙", "noun", "𑀅𑀘𑁆𑀙𑀸", "𑀅𑀘𑁆𑀙𑀲𑁆𑀲", "𑀅𑀘𑁆𑀙𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["aggiṭṭhāna", "noun", "aggiṭṭhānāni", "aggiṭṭhānassa", "aggiṭṭhānassa", "", "fireplace"]) + let v = native_list_append(v, ["सुखं", "noun", "सुखं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["সুখং", "noun", "সুখং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["သုခံ", "noun", "သုခံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["สุขํ", "noun", "สุขํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["សុខំ", "noun", "សុខំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sukhaṃ", "noun", "sukhaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["සුඛ", "noun", "සුඛානි", "සුඛස්ස", "සුඛස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["සුඛො", "noun", "සුඛො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සුඛං", "noun", "සුඛං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සුත", "noun", "සුතා", "සුතස්ස", "සුතස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["सुतो", "noun", "सुतो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["සුතො", "noun", "සුතො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["သုတော", "noun", "သုတော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ᩈᩩᨲᩮᩣ", "noun", "ᩈᩩᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["सुतं", "noun", "सुतं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["සුතං", "noun", "සුතං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["သုတံ", "noun", "သုတံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ᩈᩩᨲᩴ", "noun", "ᩈᩩᨲᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sutaṃ", "noun", "sutaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ලොක", "noun", "ලොකා", "ලොකස්ස", "ලොකස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["लोको", "noun", "लोको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["লোকো", "noun", "লোকো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ලොකො", "noun", "ලොකො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["လောကော", "noun", "လောကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["โลโก", "noun", "โลโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ໂລໂກ", "noun", "ໂລໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ᩃᩮᩣᨠᩮᩣ", "noun", "ᩃᩮᩣᨠᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["លោកោ", "noun", "លោកោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pāṇabhūta", "noun", "pāṇabhūtā", "pāṇabhūtassa", "pāṇabhūtassa", "", "living being"]) + let v = native_list_append(v, ["පාණභූත", "noun", "පාණභූතා", "පාණභූතස්ස", "පාණභූතස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාණභූතො", "noun", "පාණභූතො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāṇabhūto", "noun", "pāṇabhūto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑀓𑀭𑀼𑀡𑀸", "noun", "𑀓𑀭𑀼𑀡𑀸𑀬𑁄", "𑀓𑀭𑀼𑀡𑀸𑀬", "𑀓𑀭𑀼𑀡𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["বন্ধে", "noun", "বন্ধে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["මරණ", "noun", "මරණ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sadde", "noun", "sadde", "", "", "", "inflection of sadda"]) + let v = native_list_append(v, ["padena", "noun", "padena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["នក្ខត្ត", "noun", "នក្ខត្តានិ", "នក្ខត្តស្ស", "នក្ខត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["nidhi", "noun", "nidhayo", "nidhissa", "nidhissa", "", "treasure"]) + let v = native_list_append(v, ["saṃsaya", "noun", "saṃsayā", "saṃsayassa", "saṃsayassa", "", "doubt"]) + let v = native_list_append(v, ["sāgara", "noun", "sāgarā", "sāgarassa", "sāgarassa", "", "ocean"]) + let v = native_list_append(v, ["রে", "noun", "রে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["akkhaṇa", "noun", "akkhaṇā", "akkhaṇassa", "akkhaṇassa", "", "bad luck misfortune"]) + let v = native_list_append(v, ["manussatta", "noun", "manussattāni", "manussattassa", "manussattassa", "", "manhood"]) + let v = native_list_append(v, ["yogga", "noun", "yoggāni", "yoggassa", "yoggassa", "", "carriage wagon"]) + let v = native_list_append(v, ["विम्हय", "noun", "विम्हया", "विम्हयस्स", "विम्हयस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vimhaya", "noun", "vimhayā", "vimhayassa", "vimhayassa", "", "astonishment surprise"]) + let v = native_list_append(v, ["varāha", "noun", "varāhā", "varāhassa", "varāhassa", "", "a boar wild"]) + let v = native_list_append(v, ["lavaṅga", "noun", "lavaṅgāni", "lavaṅgassa", "lavaṅgassa", "", "clove"]) + let v = native_list_append(v, ["gopāla", "noun", "gopāla", "", "", "", "a cowherd"]) + let v = native_list_append(v, ["သုသာနံ", "noun", "သုသာနံ", "", "", "", "cemetery"]) + let v = native_list_append(v, ["ၵဝိ", "noun", "ၵဝိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["uṇhakāla", "noun", "uṇhakālā", "uṇhakālassa", "uṇhakālassa", "", "hot weather"]) + let v = native_list_append(v, ["sītā", "noun", "sītāyo", "sītāya", "sītāya", "", "furrow trench cut"]) + let v = native_list_append(v, ["ससं", "noun", "ससं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀪𑀺𑀓𑁆𑀔𑀸", "noun", "𑀪𑀺𑀓𑁆𑀔𑀸𑀬𑁄", "𑀪𑀺𑀓𑁆𑀔𑀸𑀬", "𑀪𑀺𑀓𑁆𑀔𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["dāru", "noun", "dārūni", "dārussa", "dārussa", "", "wood natural hard"]) + let v = native_list_append(v, ["nisedha", "noun", "nisedhā", "nisedhassa", "nisedhassa", "", "restraining holding back"]) + let v = native_list_append(v, ["कुम्भकार", "noun", "कुम्भकारा", "कुम्भकारस्स", "कुम्भकारस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["lolatā", "noun", "lolatāyo", "lolatāya", "lolatāya", "", "greed longing eagerness"]) + let v = native_list_append(v, ["lobha", "noun", "lobhā", "lobhassa", "lobhassa", "", "greed covetousness"]) + let v = native_list_append(v, ["kuñcikā", "noun", "kuñcikāyo", "kuñcikāya", "kuñcikāya", "", "key object designed"]) + let v = native_list_append(v, ["ciñcā", "noun", "ciñcāyo", "ciñcāya", "ciñcāya", "", "tamarind tree"]) + let v = native_list_append(v, ["maṇibandha", "noun", "maṇibandhā", "maṇibandhassa", "maṇibandhassa", "", "wrist"]) + let v = native_list_append(v, ["bhitti", "noun", "bhittiyo", "bhittiyā", "bhittiyā", "", "wall"]) + let v = native_list_append(v, ["maṇikāra", "noun", "maṇikārā", "maṇikārassa", "maṇikārassa", "", "jeweler"]) + let v = native_list_append(v, ["aṅgāra", "noun", "aṅgārā", "aṅgārassa", "aṅgārassa", "", "charcoal"]) + let v = native_list_append(v, ["rodana", "noun", "rodanāni", "rodanassa", "rodanassa", "", "crying weeping"]) + let v = native_list_append(v, ["kāruñña", "noun", "kāruññāni", "kāruññassa", "kāruññassa", "", "synonym of karuṇā"]) + let v = native_list_append(v, ["majjāra", "noun", "majjārā", "majjārassa", "majjārassa", "", "cat"]) + let v = native_list_append(v, ["nāgara", "noun", "nāgarā", "nāgarassa", "nāgarassa", "", "citizen"]) + let v = native_list_append(v, ["tuṭṭhi", "noun", "tuṭṭhiyo", "tuṭṭhiyā", "tuṭṭhiyā", "", "enjoyment pleasure"]) + let v = native_list_append(v, ["भित्ति", "noun", "भित्तियो", "भित्तिया", "भित्तिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀪𑀺𑀢𑁆𑀢𑀺", "noun", "𑀪𑀺𑀢𑁆𑀢𑀺𑀬𑁄", "𑀪𑀺𑀢𑁆𑀢𑀺𑀬𑀸", "𑀪𑀺𑀢𑁆𑀢𑀺𑀬𑀸", "", "Brahmi script form"]) + let v = native_list_append(v, ["ajamoja", "noun", "ajamojā", "ajamojassa", "ajamojassa", "", "cumin seed"]) + let v = native_list_append(v, ["khamā", "noun", "khamāyo", "khamāya", "khamāya", "", "patience endurance"]) + let v = native_list_append(v, ["catukka", "noun", "catukkāni", "catukkassa", "catukkassa", "", "tetrad foursome set"]) + let v = native_list_append(v, ["salabha", "noun", "salabhā", "salabhassa", "salabhassa", "", "moth"]) + let v = native_list_append(v, ["sappapotaka", "noun", "sappapotakā", "sappapotakassa", "sappapotakassa", "", "snakeling"]) + let v = native_list_append(v, ["pajāpati", "noun", "pajāpatiyo", "pajāpatiyā", "pajāpatiyā", "", "Prajapati"]) + let v = native_list_append(v, ["𑀅𑀘𑁆𑀘𑀺", "noun", "𑀅𑀘𑁆𑀘𑀺𑀬𑁄", "𑀅𑀘𑁆𑀘𑀺𑀬𑀸", "𑀅𑀘𑁆𑀘𑀺𑀬𑀸", "", "Brahmi script form"]) + let v = native_list_append(v, ["अच्चि", "noun", "अच्चियो", "अच्चिया", "अच्चिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဒေါသ", "noun", "ဒေါသ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["nisā", "noun", "nisāyo", "nisāya", "nisāya", "", "night"]) + let v = native_list_append(v, ["vaṇṇadāsī", "noun", "vaṇṇadāsiyo", "vaṇṇadāsiyā", "vaṇṇadāsiyā", "", "prostitute woman who"]) + let v = native_list_append(v, ["madana", "noun", "madanāni", "madanassa", "madanassa", "", "intoxication"]) + let v = native_list_append(v, ["ñātighara", "noun", "ñātigharāni", "ñātigharassa", "ñātigharassa", "", "paternal home"]) + let v = native_list_append(v, ["madhukara", "noun", "madhukarā", "madhukarassa", "madhukarassa", "", "bee"]) + let v = native_list_append(v, ["kaṃsa", "noun", "kaṃsā", "kaṃsassa", "kaṃsassa", "", "bronze"]) + let v = native_list_append(v, ["phagguna", "noun", "phaggunā", "phaggunassa", "phaggunassa", "", "Phalguna"]) + let v = native_list_append(v, ["anumati", "noun", "anumatiyo", "anumatiyā", "anumatiyā", "", "consent permission agreement"]) + let v = native_list_append(v, ["ñāti", "noun", "ñātayo", "ñātissa", "ñātissa", "", "relative kinsman"]) + let v = native_list_append(v, ["ñātayo", "noun", "ñātayo", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["sugandha", "noun", "sugandhā", "sugandhassa", "sugandhassa", "", "fragrance good odour"]) + let v = native_list_append(v, ["nabha", "noun", "nabhāni", "nabhassa", "nabhassa", "", "mist vapour clouds"]) + let v = native_list_append(v, ["ပါပါ", "noun", "ပါပါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["कस्सप", "noun", "कस्सप", "", "", "", "Kassapa the name"]) + let v = native_list_append(v, ["Mahākassapa", "noun", "Mahākassapa", "", "", "", "Maha Kassapa one"]) + let v = native_list_append(v, ["uḷu", "noun", "uḷavo", "uḷussa", "uḷussa", "", "star planet"]) + let v = native_list_append(v, ["cakora", "noun", "cakorā", "cakorassa", "cakorassa", "", "partridge"]) + let v = native_list_append(v, ["nāka", "noun", "nākā", "nākassa", "nākassa", "", "heaven firmament"]) + let v = native_list_append(v, ["viṭapī", "noun", "viṭapino", "viṭapissa", "viṭapissa", "", "tree"]) + let v = native_list_append(v, ["vilocana", "noun", "vilocanāni", "vilocanassa", "vilocanassa", "", "eye"]) + let v = native_list_append(v, ["𑀇𑀤𑁆𑀥𑀺", "noun", "𑀇𑀤𑁆𑀥𑀺𑀬𑁄", "𑀇𑀤𑁆𑀥𑀺𑀬𑀸", "𑀇𑀤𑁆𑀥𑀺𑀬𑀸", "", "Brahmi script form"]) + let v = native_list_append(v, ["pabhāta", "noun", "pabhātāni", "pabhātassa", "pabhātassa", "", "morning daybreak"]) + let v = native_list_append(v, ["pabhāva", "noun", "pabhāvā", "pabhāvassa", "pabhāvassa", "", "might power strength"]) + let v = native_list_append(v, ["titikkhā", "noun", "titikkhāyo", "titikkhāya", "titikkhāya", "", "endurance"]) + let v = native_list_append(v, ["𑀢𑀺𑀢𑀺𑀓𑁆𑀔𑀸", "noun", "𑀢𑀺𑀢𑀺𑀓𑁆𑀔𑀸𑀬𑁄", "𑀢𑀺𑀢𑀺𑀓𑁆𑀔𑀸𑀬", "𑀢𑀺𑀢𑀺𑀓𑁆𑀔𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["तितिक्खा", "noun", "तितिक्खायो", "तितिक्खाय", "तितिक्खाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["नावा", "noun", "नावायो", "नावाय", "नावाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["-kāra", "noun", "-kārā", "-kārassa", "-kārassa", "", "one who works"]) + let v = native_list_append(v, ["ເວລາ", "noun", "ເວລາໂຍ", "ເວລາຍ", "ເວລາຍ", "", "Lao script form"]) + let v = native_list_append(v, ["khajjopanaka", "noun", "khajjopanakā", "khajjopanakassa", "khajjopanakassa", "", "firefly"]) + let v = native_list_append(v, ["khajjūpanaka", "noun", "khajjūpanakā", "khajjūpanakassa", "khajjūpanakassa", "", "alternative form of"]) + let v = native_list_append(v, ["লোহিত", "noun", "লোহিতানি", "লোহিতস্স", "লোহিতস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ນາກ", "noun", "ນາກາ", "ນາກສ຺ສ", "ນາກສ຺ສ", "", "Lao script form"]) + let v = native_list_append(v, ["𑀣𑀽𑀡𑀸", "noun", "𑀣𑀽𑀡𑀸𑀬𑁄", "𑀣𑀽𑀡𑀸𑀬", "𑀣𑀽𑀡𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["thūṇā", "noun", "thūṇāyo", "thūṇāya", "thūṇāya", "", "a pillar prop"]) + let v = native_list_append(v, ["थूणा", "noun", "थूणायो", "थूणाय", "थूणाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["dadhi", "noun", "dadhīni", "dadhissa", "dadhissa", "", "sour milk curd"]) + let v = native_list_append(v, ["कुक्कुट", "noun", "कुक्कुटा", "कुक्कुटस्स", "कुक्कुटस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ສິຕະ", "noun", "ສິຕານິ", "ສິຕັສສະ", "ສິຕັສສະ", "", "Lao script form"]) + let v = native_list_append(v, ["koṭṭha", "noun", "koṭṭhā", "koṭṭhassa", "koṭṭhassa", "", "abdomen stomach"]) + let v = native_list_append(v, ["kukkuṭī", "noun", "kukkuṭiyo", "kukkuṭiyā", "kukkuṭiyā", "", "female equivalent of"]) + let v = native_list_append(v, ["kukkuṭayuddha", "noun", "kukkuṭayuddhāni", "kukkuṭayuddhassa", "kukkuṭayuddhassa", "", "cockfight"]) + let v = native_list_append(v, ["anuggaha", "noun", "anuggahā", "anuggahassa", "anuggahassa", "", "favour help benefit"]) + let v = native_list_append(v, ["អត្ត", "noun", "អត្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pisācī", "noun", "pisāciyo", "pisāciyā", "pisāciyā", "", "female equivalent of"]) + let v = native_list_append(v, ["ভাসা", "noun", "ভাসাযো", "ভাসায", "ভাসায", "", "Bengali script form"]) + let v = native_list_append(v, ["palāyana", "noun", "palāyanāni", "palāyanassa", "palāyanassa", "", "running away fleeing"]) + let v = native_list_append(v, ["সামী", "noun", "সামী", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["gaṇṭhi", "noun", "gaṇṭhayo", "gaṇṭhissa", "gaṇṭhissa", "", "knot tie joint"]) + let v = native_list_append(v, ["bhakuṭi", "noun", "bhakuṭiyo", "bhakuṭiyā", "bhakuṭiyā", "", "frown"]) + let v = native_list_append(v, ["papā", "noun", "papāyo", "papāya", "papāya", "", "a place for"]) + let v = native_list_append(v, ["kuṇāla", "noun", "kuṇālā", "kuṇālassa", "kuṇālassa", "", "cuckoo Indian cuckoo"]) + let v = native_list_append(v, ["𑀧𑀼𑀢𑁆𑀢𑁄", "noun", "𑀧𑀼𑀢𑁆𑀢𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀕𑀭𑀼𑀴", "noun", "𑀕𑀭𑀼𑀴𑀸", "𑀕𑀭𑀼𑀴𑀲𑁆𑀲", "𑀕𑀭𑀼𑀴𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["chettar", "noun", "chettāro", "chettu", "chettu", "", "cutter destroyer"]) + let v = native_list_append(v, ["chettā", "noun", "chettā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["chettu", "noun", "chettu", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["majjapāna", "noun", "majjapānāni", "majjapānassa", "majjapānassa", "", "drinking of intoxicating"]) + let v = native_list_append(v, ["अस्मे", "noun", "अस्मे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dvebhāva", "noun", "dvebhāvā", "dvebhāvassa", "dvebhāvassa", "", "twofoldness"]) + let v = native_list_append(v, ["অতিথি", "noun", "অতিথযো", "অতিথিস্স", "অতিথিস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["bhāva", "noun", "bhāvā", "bhāvassa", "bhāvassa", "", "state condition"]) + let v = native_list_append(v, ["dvebhāvo", "noun", "dvebhāvo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["bhavo", "noun", "bhavo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["भावो", "noun", "भावो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhāvo", "noun", "bhāvo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ภาโว", "noun", "ภาโว", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["ब्यञ्जन", "noun", "ब्यञ्जनानि", "ब्यञ्जनस्स", "ब्यञ्जनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["व्यञ्जनं", "noun", "व्यञ्जनं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ब्यञ्जनं", "noun", "ब्यञ्जनं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["द्वेभाव", "noun", "द्वेभावा", "द्वेभावस्स", "द्वेभावस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["द्वेभावो", "noun", "द्वेभावो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ঠানং", "noun", "ঠানং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ဌာနံ", "noun", "ဌာနံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ฐานํ", "noun", "ฐานํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ฐานัง", "noun", "ฐานัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ठानं", "noun", "ठानं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ठान", "noun", "ठानानि", "ठानस्स", "ठानस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["ṭhāne", "noun", "ṭhāne", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["ठाने", "noun", "ठाने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tipuka", "noun", "tipuka", "", "", "", "lead metal"]) + let v = native_list_append(v, ["aggho", "noun", "aggho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["agghaṃ", "noun", "agghaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["যো", "noun", "যো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["sikkhāpadaṃ", "noun", "sikkhāpadaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["atipāto", "noun", "atipāto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["อะติปาโต", "noun", "อะติปาโต", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अतिपातो", "noun", "अतिपातो", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ādānaṃ", "noun", "ādānaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["อาทานัง", "noun", "อาทานัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["kāmo", "noun", "kāmo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["आदानं", "noun", "आदानं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कामो", "noun", "कामो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["কামো", "noun", "কামো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ကာမော", "noun", "ကာမော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["กาโม", "noun", "กาโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["កាមោ", "noun", "កាមោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["micchācāraṃ", "noun", "micchācāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["มิจฉาจารัง", "noun", "มิจฉาจารัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["musāvādo", "noun", "musāvādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["มุสาวาโท", "noun", "มุสาวาโท", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["វាទោ", "noun", "វាទោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["surāmerayamajjapamādaṭṭhānaṃ", "noun", "surāmerayamajjapamādaṭṭhānaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["สุราเมรยมชฺชปมาทฏฺฐานํ", "noun", "สุราเมรยมชฺชปมาทฏฺฐานํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุราเมระยะมัชชะปะมาทัฏฐานัง", "noun", "สุราเมระยะมัชชะปะมาทัฏฐานัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ယက္ခ", "noun", "ယက္ခာ", "ယက္ခဿ", "ယက္ခဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["बुद्धाय", "noun", "बुद्धाय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဉာတိ", "noun", "ဉာတယော", "ဉာတိဿ", "ဉာတိဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["វិធិ", "noun", "វិធយោ", "វិធិស្ស", "វិធិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ວິທີ", "noun", "ວິທີ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["အရည", "noun", "အရညာနိ", "အရညဿ", "အရညဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ပဒ", "noun", "ပဒါနိ", "ပဒဿ", "ပဒဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ဘယ", "noun", "ဘယာနိ", "ဘယဿ", "ဘယဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["အဘိဓဇမဟာရဋ္ဌဂုရု", "noun", "အဘိဓဇမဟာရဋ္ဌဂုရူနိ", "အဘိဓဇမဟာရဋ္ဌဂုရုဿ", "အဘိဓဇမဟာရဋ္ဌဂုရုဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["အနေ", "noun", "အနေ", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["သာ", "noun", "သာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["rujā", "noun", "rujāyo", "rujāya", "rujāya", "", "pain disease"]) + let v = native_list_append(v, ["alaṅkaraṇa", "noun", "alaṅkaraṇāni", "alaṅkaraṇassa", "alaṅkaraṇassa", "", "doing up fitting"]) + let v = native_list_append(v, ["រុជា", "noun", "រុជាយោ", "រុជាយ", "រុជាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["रुजा", "noun", "रुजायो", "रुजाय", "रुजाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["kapola", "noun", "kapolā", "kapolassa", "kapolassa", "", "cheek"]) + let v = native_list_append(v, ["ဓာတု", "noun", "ဓာတုယော", "ဓာတုယာ", "ဓာတုယာ", "", "Burmese script form"]) + let v = native_list_append(v, ["saṇa", "noun", "saṇāni", "saṇassa", "saṇassa", "", "a kind of"]) + let v = native_list_append(v, ["guhā", "noun", "guhāyo", "guhāya", "guhāya", "", "hiding place cave"]) + let v = native_list_append(v, ["ဂုဟာ", "noun", "ဂုဟာယော", "ဂုဟာယ", "ဂုဟာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["yotte", "noun", "yotte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["dakkha", "noun", "dakkhāni", "dakkhassa", "dakkhassa", "", "ability skill"]) + let v = native_list_append(v, ["appamāda", "noun", "appamādā", "appamādassa", "appamādassa", "", "carefulness vigilance"]) + let v = native_list_append(v, ["ghosanā", "noun", "ghosanāyo", "ghosanāya", "ghosanāya", "", "fame renown praise"]) + let v = native_list_append(v, ["นิธิ", "noun", "นิธโย", "นิธิสฺส", "นิธิสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["សេនា", "noun", "សេនាយោ", "សេនាយ", "សេនាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["रा", "noun", "रा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သဳလ", "noun", "သဳလာနိ", "သဳလဿ", "သဳလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["ຊິວຫາ", "noun", "ຊິວຫາໂຍ", "ຊິວຫາຍະ", "ຊິວຫາຍະ", "", "Lao script form"]) + let v = native_list_append(v, ["vaṇijjā", "noun", "vaṇijjāyo", "vaṇijjāya", "vaṇijjāya", "", "trade trading"]) + let v = native_list_append(v, ["vāṇija", "noun", "vāṇijā", "vāṇijassa", "vāṇijassa", "", "merchant trader"]) + let v = native_list_append(v, ["វាណិជ", "noun", "វាណិជា", "វាណិជស្ស", "វាណិជស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["upāyo", "noun", "upāyo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["সীহ", "noun", "সীহা", "সীহস্স", "সীহস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ปาปา", "noun", "ปาปา", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["ឥសី", "noun", "ឥសី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["aggala", "noun", "aggalā", "aggalassa", "aggalassa", "", "misspelling of aggaḷa"]) + let v = native_list_append(v, ["aggalo", "noun", "aggalo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["aggalaṃ", "noun", "aggalaṃ", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["akkharasamaya", "noun", "akkharasamayā", "akkharasamayassa", "akkharasamayassa", "", "science of writing"]) + let v = native_list_append(v, ["akkharasamayo", "noun", "akkharasamayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["attabhāva", "noun", "attabhāvā", "attabhāvassa", "attabhāvassa", "", "ones own nature"]) + let v = native_list_append(v, ["attabhāvo", "noun", "attabhāvo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["accayena", "noun", "accayena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["accaya", "noun", "accayā", "accayassa", "accayassa", "", "passing away time"]) + let v = native_list_append(v, ["accayo", "noun", "accayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["āgamo", "noun", "āgamo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["អាគមោ", "noun", "អាគមោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["आगमो", "noun", "आगमो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ទេវទត្ត", "noun", "ទេវទត្តា", "ទេវទត្តស្ស", "ទេវទត្តស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["উদর", "noun", "উদরানি", "উদরস্স", "উদরস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["အကုသလ", "noun", "အကုသလာနိ", "အကုသလဿ", "အကုသလဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["যেন", "noun", "যেন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ခရာ", "noun", "ခရာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["Phagguṇa", "noun", "Phagguṇa", "", "", "", "the month of"]) + let v = native_list_append(v, ["Māgasira", "noun", "Māgasira", "", "", "", "the month of"]) + let v = native_list_append(v, ["Kattika", "noun", "Kattika", "", "", "", "the month of"]) + let v = native_list_append(v, ["Assayuja", "noun", "Assayuja", "", "", "", "the month of"]) + let v = native_list_append(v, ["Poṭṭhapāda", "noun", "Poṭṭhapāda", "", "", "", "the month of"]) + let v = native_list_append(v, ["Sāvaṇa", "noun", "Sāvaṇa", "", "", "", "the month of"]) + let v = native_list_append(v, ["Āsāḷha", "noun", "Āsāḷha", "", "", "", "the month of"]) + let v = native_list_append(v, ["Jeṭṭha", "noun", "Jeṭṭha", "", "", "", "the month of"]) + let v = native_list_append(v, ["Vesākha", "noun", "Vesākha", "", "", "", "the month of"]) + let v = native_list_append(v, ["Citta", "noun", "Citta", "", "", "", "the month of"]) + let v = native_list_append(v, ["वञ्चन", "noun", "वञ्चनानि", "वञ्चनस्स", "वञ्चनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["vañcana", "noun", "vañcanāni", "vañcanassa", "vañcanassa", "", "cheating fraud"]) + let v = native_list_append(v, ["lekhaka", "noun", "lekhakā", "lekhakassa", "lekhakassa", "", "writer"]) + let v = native_list_append(v, ["ဌာနေ", "noun", "ဌာနေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["hatthin", "noun", "hatthino", "hatthissa", "hatthissa", "", "an elephant"]) + let v = native_list_append(v, ["usume", "noun", "usume", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["thuse", "noun", "thuse", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["𑀅𑀓𑁆𑀔𑀺", "noun", "𑀅𑀓𑁆𑀔𑀻𑀦𑀺", "𑀅𑀓𑁆𑀔𑀺𑀲𑁆𑀲", "𑀅𑀓𑁆𑀔𑀺𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["สักกะ", "noun", "สักกะ", "สักกัสสะ", "สักกัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["অসি", "noun", "অসযো", "অসিস্স", "অসিস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["সতী", "noun", "সতী", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ឧទរ", "noun", "ឧទរានិ", "ឧទរស្ស", "ឧទរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["সেন", "noun", "সেনা", "সেনস্স", "সেনস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["ឥស្សា", "noun", "ឥស្សាយោ", "ឥស្សាយ", "ឥស្សាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["ឥសិ", "noun", "ឥសយោ", "ឥសិស្ស", "ឥសិស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ឥត្ថី", "noun", "ឥត្ថី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["សុនខ", "noun", "សុនខា", "សុនខស្ស", "សុនខស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["সঙ্ঘ", "noun", "সঙ্ঘা", "সঙ্ঘস্স", "সঙ্ঘস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["වර", "noun", "වරා", "වරස්ස", "වරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["බල", "noun", "බලානි", "බලස්ස", "බලස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["कलहो", "noun", "कलहो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["কলহো", "noun", "কলহো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["កលហោ", "noun", "កលហោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["कमलं", "noun", "कमलं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["កមលំ", "noun", "កមលំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kamalaṃ", "noun", "kamalaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ဆန္ဒော", "noun", "ဆန္ဒော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["chando", "noun", "chando", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["तेलं", "noun", "तेलं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀢𑁂𑀮𑀁", "noun", "𑀢𑁂𑀮𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["তেলং", "noun", "তেলং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["telaṃ", "noun", "telaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["tilaṃ", "noun", "tilaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["तिलं", "noun", "तिलं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["তিলং", "noun", "তিলং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["suttaṃ", "noun", "suttaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ubbego", "noun", "ubbego", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vepullaṃ", "noun", "vepullaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["yottaṃ", "noun", "yottaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["udakaṇṇava", "noun", "udakaṇṇavā", "udakaṇṇavassa", "udakaṇṇavassa", "", "flood of water"]) + let v = native_list_append(v, ["udakaṇṇavo", "noun", "udakaṇṇavo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["aṇṇavo", "noun", "aṇṇavo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["උදකණ‍්ණව", "noun", "උදකණ්ණවා", "උදකණ්ණවස්ස", "උදකණ්ණවස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["උදකණ‍්ණවො", "noun", "උදකණ‍්ණවො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පුරිස", "noun", "පුරිසා", "පුරිසස්ස", "පුරිසස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["පුරිසො", "noun", "පුරිසො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["𑀧𑀼𑀭𑀺𑀲𑁄", "noun", "𑀧𑀼𑀭𑀺𑀲𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["पुरिसो", "noun", "पुरिसो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ปุริโส", "noun", "ปุริโส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩩᩁᩥᩈᩮᩣ", "noun", "ᨷᩩᩁᩥᩈᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩩᩁᩥᩈᩮᩣ", "noun", "ᨸᩩᩁᩥᩈᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["puriso", "noun", "puriso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ປຸລິໂສ", "noun", "ປຸລິໂສ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປຸຣິໂສ", "noun", "ປຸຣິໂສ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["තීර", "noun", "තීරානි", "තීරස්ස", "තීරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["තීරං", "noun", "තීරං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["āsaṅkā", "noun", "āsaṅkāyo", "āsaṅkāya", "āsaṅkāya", "", "fear doubt"]) + let v = native_list_append(v, ["maṇḍa", "noun", "maṇḍā", "maṇḍassa", "maṇḍassa", "", "scum cream"]) + let v = native_list_append(v, ["অহিংসা", "noun", "অহিংসাযো", "অহিংসায", "অহিংসায", "", "Bengali script form"]) + let v = native_list_append(v, ["লোপ", "noun", "লোপা", "লোপস্স", "লোপস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["သတ္တ", "noun", "သတ္တာ", "သတ္တဿ", "သတ္တဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["anādariya", "noun", "anādariyāni", "anādariyassa", "anādariyassa", "", "disregard"]) + let v = native_list_append(v, ["អត្ថោ", "noun", "អត្ថោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ᩅᩁᩮᩣ", "noun", "ᩅᩁᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩁᩴ", "noun", "ᩅᩁᩴ", "", "", "", "which is"]) + let v = native_list_append(v, ["वरं", "noun", "वरं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["වරං", "noun", "වරං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ວະລັງ", "noun", "ວະລັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["វរំ", "noun", "វរំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["varaṃ", "noun", "varaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["වරො", "noun", "වරො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["𑀪𑀬𑀁", "noun", "𑀪𑀬𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ဘယံ", "noun", "ဘယံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["paṭibhayaṃ", "noun", "paṭibhayaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["නාවා", "noun", "නාවායො", "නාවාය", "නාවාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["taraṇa", "noun", "taraṇāni", "taraṇassa", "taraṇassa", "", "crossing over traversing"]) + let v = native_list_append(v, ["तरणं", "noun", "तरणं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["taraṇaṃ", "noun", "taraṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["වා", "noun", "වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāra", "noun", "pārāni", "pārassa", "pārassa", "", "the other side"]) + let v = native_list_append(v, ["පාර", "noun", "පාරානි", "පාරස්ස", "පාරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාරං", "noun", "පාරං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāraṃ", "noun", "pāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["apāra", "noun", "apārāni", "apārassa", "apārassa", "", "the near shore"]) + let v = native_list_append(v, ["අපාර", "noun", "අපාරානි", "අපාරස්ස", "අපාරස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["අපාරං", "noun", "අපාරං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["अपारं", "noun", "अपारं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["apāraṃ", "noun", "apāraṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ගමන", "noun", "ගමනානි", "ගමනස්ස", "ගමනස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["ගමනාය", "noun", "ගමනාය", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["gamanāya", "noun", "gamanāya", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["गमनं", "noun", "गमनं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ගමනං", "noun", "ගමනං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["คมนํ", "noun", "คมนํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["gamanaṃ", "noun", "gamanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["අස‍්ස", "noun", "අස්සා", "අස්සස්ස", "අස්සස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["අස‍්සො", "noun", "අස‍්සො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲𑁄", "noun", "𑀅𑀲𑁆𑀲𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["piṭṭha", "noun", "piṭṭhāni", "piṭṭhassa", "piṭṭhassa", "", "crushed seeds flour"]) + let v = native_list_append(v, ["uttarasetu", "noun", "uttarasetavo", "uttarasetussa", "uttarasetussa", "", "bridge"]) + let v = native_list_append(v, ["උත‍්තරසෙතු", "noun", "උත්තරසෙතවො", "උත්තරසෙතුස්ස", "උත්තරසෙතුස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["භික‍්ඛවෙ", "noun", "භික‍්ඛවෙ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["อสฺส", "noun", "อสฺสา", "อสฺสสฺส", "อสฺสสฺส", "", "Thai script form"]) + let v = native_list_append(v, ["อสฺโส", "noun", "อสฺโส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["තිණ", "noun", "තිණානි", "තිණස්ස", "තිණස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["තිණං", "noun", "තිණං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tiṇaṃ", "noun", "tiṇaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["කට‍්ඨ", "noun", "කට්ඨානි", "කට්ඨස්ස", "කට්ඨස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["කට‍්ඨං", "noun", "කට‍්ඨං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sākhā", "noun", "sākhāyo", "sākhāya", "sākhāya", "", "branch"]) + let v = native_list_append(v, ["සාඛා", "noun", "සාඛායො", "සාඛාය", "සාඛාය", "", "Sinhala script form"]) + let v = native_list_append(v, ["palāsa", "noun", "palāsāni", "palāsassa", "palāsassa", "", "leaf"]) + let v = native_list_append(v, ["පලාස", "noun", "පලාසානි", "පලාසස්ස", "පලාසස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["කුල‍්ල", "noun", "කුල්ලා", "කුල්ලස්ස", "කුල්ලස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["කුල‍්ලො", "noun", "කුල‍්ලො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kullo", "noun", "kullo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["පලාසො", "noun", "පලාසො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["palāso", "noun", "palāso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["පලාසං", "noun", "පලාසං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["palāsaṃ", "noun", "palāsaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["හත්‍ථ", "noun", "හත්ථා", "හත්ථස්ස", "හත්ථස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["හත්‍ථො", "noun", "හත්‍ථො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාද", "noun", "පාදා", "පාදස්ස", "පාදස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාදො", "noun", "පාදො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ᨷᩤᨴᩮᩤ", "noun", "ᨷᩤᨴᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩣᨴᩮᩣ", "noun", "ᨸᩣᨴᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["पादो", "noun", "पादो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["পাদো", "noun", "পাদো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ปาโท", "noun", "ปาโท", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["បាទោ", "noun", "បាទោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pādo", "noun", "pādo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पादं", "noun", "पादं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["পাদং", "noun", "পাদং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["පාදං", "noun", "පාදං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ปาทํ", "noun", "ปาทํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩤᨴᩴ", "noun", "ᨷᩤᨴᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩣᨴᩴ", "noun", "ᨸᩣᨴᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["បាទំ", "noun", "បាទំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ពន្ធោ", "noun", "ពន្ធោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["बन्धो", "noun", "बन्धो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["বন্ধো", "noun", "বন্ধো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["bandho", "noun", "bandho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sotthi", "noun", "sotthiyo", "sotthiyā", "sotthiyā", "", "well-being safety happiness"]) + let v = native_list_append(v, ["สิตะ", "noun", "สิตานิ", "สิตัสสะ", "สิตัสสะ", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩥᨲ", "noun", "ᩈᩥᨲᩣᨶᩥ", "ᩈᩥᨲᩔ", "ᩈᩥᨲᩔ", "", "Tai Tham script"]) + let v = native_list_append(v, ["सितं", "noun", "सितं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["สิตัง", "noun", "สิตัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩥᨲᩴ", "noun", "ᩈᩥᨲᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ສິຕັງ", "noun", "ສິຕັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["សិតំ", "noun", "សិតំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["bhara", "noun", "bhara", "", "", "", "Name of the"]) + let v = native_list_append(v, ["rakkhā", "noun", "rakkhāyo", "rakkhāya", "rakkhāya", "", "protection shelter safety"]) + let v = native_list_append(v, ["ជរា", "noun", "ជរាយោ", "ជរាយ", "ជរាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["भरो", "noun", "भरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ភរោ", "noun", "ភរោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["bharo", "noun", "bharo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sitaṃ", "noun", "sitaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["भरणं", "noun", "भरणं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀪𑀭𑀡𑀁", "noun", "𑀪𑀭𑀡𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["तरो", "noun", "तरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ব্রাহ্মণ", "noun", "ব্রাহ্মণা", "ব্রাহ্মণস্স", "ব্রাহ্মণস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["အတ္တ", "noun", "အတ္တ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yāma", "noun", "yāmā", "yāmassa", "yāmassa", "", "nightwatch of three"]) + let v = native_list_append(v, ["uparāja", "noun", "uparājā", "uparājassa", "uparājassa", "", "crown prince heir"]) + let v = native_list_append(v, ["ဥပရာဇ", "noun", "ဥပရာဇာ", "ဥပရာဇဿ", "ဥပရာဇဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["อุปราชา", "noun", "อุปราชา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ឧបរាជា", "noun", "ឧបរាជា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["uparājā", "noun", "uparājā", "", "", "", "inflection of uparāja"]) + let v = native_list_append(v, ["भासा", "noun", "भासायो", "भासाय", "भासाय", "", "Devanagari script form"]) + let v = native_list_append(v, ["পাপ", "noun", "পাপানি", "পাপস্স", "পাপস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["mantī", "noun", "mantī", "", "", "", "inflection of mantin"]) + let v = native_list_append(v, ["balaṃ", "noun", "balaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["सेन", "noun", "सेना", "सेनस्स", "सेनस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["វេទិកា", "noun", "វេទិកាយោ", "វេទិកាយ", "វេទិកាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["मने", "noun", "मने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नाके", "noun", "नाके", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ថេរ", "noun", "ថេរា", "ថេរស្ស", "ថេរស្ស", "", "Khmer script form"]) + let v = native_list_append(v, ["ឧបេក្ខា", "noun", "ឧបេក្ខាយោ", "ឧបេក្ខាយ", "ឧបេក្ខាយ", "", "Khmer script form"]) + let v = native_list_append(v, ["ताण", "noun", "ताणानि", "ताणस्स", "ताणस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["hantā", "noun", "hantā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["ᩈᩮᨶᩣ", "noun", "ᩈᩮᨶᩣᨿᩮᩣ", "ᩈᩮᨶᩣᨿ", "ᩈᩮᨶᩣᨿ", "", "Tai Tham script"]) + let v = native_list_append(v, ["अना", "noun", "अना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["धातू", "noun", "धातू", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["मुसल", "noun", "मुसला", "मुसलस्स", "मुसलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["দন্ত", "noun", "দন্তা", "দন্তস্স", "দন্তস্স", "", "Bengali script form"]) + let v = native_list_append(v, ["បដិសន្ធិ", "noun", "បដិសន្ធិយោ", "បដិសន្ធិយា", "បដិសន្ធិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["नामा", "noun", "नामा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ভূমি", "noun", "ভূমিযো", "ভূমিযা", "ভূমিযা", "", "Bengali script form"]) + let v = native_list_append(v, ["jaṭhara", "noun", "jaṭhara", "", "", "", "the belly"]) + let v = native_list_append(v, ["upāhanā", "noun", "upāhanā", "", "", "", "a shoe"]) + let v = native_list_append(v, ["कल्लोल", "noun", "कल्लोला", "कल्लोलस्स", "कल्लोलस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["kallola", "noun", "kallolā", "kallolassa", "kallolassa", "", "wave surge billow"]) + let v = native_list_append(v, ["𑀓𑀮𑁆𑀮𑁄𑀮", "noun", "𑀓𑀮𑁆𑀮𑁄𑀮𑀸", "𑀓𑀮𑁆𑀮𑁄𑀮𑀲𑁆𑀲", "𑀓𑀮𑁆𑀮𑁄𑀮𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["kallolamālā", "noun", "kallolamālāyo", "kallolamālāya", "kallolamālāya", "", "a series of"]) + let v = native_list_append(v, ["ဟံသ", "noun", "ဟံသာ", "ဟံသဿ", "ဟံသဿ", "", "Burmese script form"]) + let v = native_list_append(v, ["potthaka", "noun", "potthaka", "", "", "", "a cloth made"]) + let v = native_list_append(v, ["पोत्थक", "noun", "पोत्थक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀚𑀕𑀭", "noun", "𑀅𑀚𑀕𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["dātta", "noun", "dāttāni", "dāttassa", "dāttassa", "", "sickle scythe"]) + let v = native_list_append(v, ["दात्त", "noun", "दात्तानि", "दात्तस्स", "दात्तस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀤𑀸𑀢𑁆𑀢", "noun", "𑀤𑀸𑀢𑁆𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["yogakkhema", "noun", "yogakkhemā", "yogakkhemassa", "yogakkhemassa", "", "rest after toiling"]) + let v = native_list_append(v, ["योगक्खेम", "noun", "योगक्खेमा", "योगक्खेमस्स", "योगक्खेमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀬𑁄𑀕𑀓𑁆𑀔𑁂𑀫", "noun", "𑀬𑁄𑀕𑀓𑁆𑀔𑁂𑀫𑀸", "𑀬𑁄𑀕𑀓𑁆𑀔𑁂𑀫𑀲𑁆𑀲", "𑀬𑁄𑀕𑀓𑁆𑀔𑁂𑀫𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["រថោ", "noun", "រថោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["रथो", "noun", "रथो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["รโถ", "noun", "รโถ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ratho", "noun", "ratho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pamha", "noun", "pamhāni", "pamhassa", "pamhassa", "", "eyelash"]) + let v = native_list_append(v, ["pakhuma", "noun", "pakhumāni", "pakhumassa", "pakhumassa", "", "eyelash"]) + let v = native_list_append(v, ["पम्ह", "noun", "पम्हानि", "पम्हस्स", "पम्हस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀧𑀫𑁆𑀳", "noun", "𑀧𑀫𑁆𑀳𑀸𑀦𑀺", "𑀧𑀫𑁆𑀳𑀲𑁆𑀲", "𑀧𑀫𑁆𑀳𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀧𑀔𑀼𑀫", "noun", "𑀧𑀔𑀼𑀫𑀸𑀦𑀺", "𑀧𑀔𑀼𑀫𑀲𑁆𑀲", "𑀧𑀔𑀼𑀫𑀲𑁆𑀲", "", "Brahmi script form"]) + let v = native_list_append(v, ["पखुम", "noun", "पखुमानि", "पखुमस्स", "पखुमस्स", "", "Devanagari script form"]) + let v = native_list_append(v, ["phoṭa", "noun", "phoṭā", "phoṭassa", "phoṭassa", "", "a swelling a"]) + let v = native_list_append(v, ["ทานํ", "noun", "ทานํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["satthāre", "noun", "satthāre", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["সঙ্ঘো", "noun", "সঙ্ঘো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["saṅgho", "noun", "saṅgho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["nārī", "noun", "nāriyo", "nāriyā", "nāriyā", "", "a woman a"]) + let v = native_list_append(v, ["saññā", "noun", "saññāyo", "saññāya", "saññāya", "", "awareness"]) + let v = native_list_append(v, ["သညာ", "noun", "သညာယော", "သညာယ", "သညာယ", "", "Burmese script form"]) + let v = native_list_append(v, ["निरोधो", "noun", "निरोधो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पत्ति", "noun", "पत्तियो", "पत्तिया", "पत्तिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["anādariyaṃ", "noun", "anādariyaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["bhamara", "noun", "bhamarā", "bhamarassa", "bhamarassa", "", "bee"]) + let v = native_list_append(v, ["bhamaro", "noun", "bhamaro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ภมโร", "noun", "ภมโร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["cittakathī", "noun", "cittakathī", "", "", "", "inflection of cittakathin"]) + let v = native_list_append(v, ["ကထီ", "noun", "ကထီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ကထဳ", "noun", "ကထဳ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["uttarummāro", "noun", "uttarummāro", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["uraṃ", "noun", "uraṃ", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["वराहो", "noun", "वराहो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["varāho", "noun", "varāho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["thūpo", "noun", "thūpo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["nakkhattaṃ", "noun", "nakkhattaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["នក្ខត្តំ", "noun", "នក្ខត្តំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["upadeso", "noun", "upadeso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ဝသန္တော", "noun", "ဝသန္တော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["वसन्तो", "noun", "वसन्तो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vasanto", "noun", "vasanto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["विजयो", "noun", "विजयो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vijayo", "noun", "vijayo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["viriyaṃ", "noun", "viriyaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["𑀯𑀢𑁆𑀣𑀁", "noun", "𑀯𑀢𑁆𑀣𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["vatthaṃ", "noun", "vatthaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ឧសភោ", "noun", "ឧសភោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["usabho", "noun", "usabho", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["vaṭumaṃ", "noun", "vaṭumaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["វិសេសោ", "noun", "វិសេសោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဝိသေသော", "noun", "ဝိသေသော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["viseso", "noun", "viseso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["yodhājīvo", "noun", "yodhājīvo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["उपपातो", "noun", "उपपातो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["upapāto", "noun", "upapāto", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["pāsāṇa", "noun", "pāsāṇa", "", "", "", "rock stone"]) + let v = native_list_append(v, ["kathī", "noun", "kathī", "", "", "", "nominative singular &"]) + let v = native_list_append(v, ["bandhana", "noun", "bandhanāni", "bandhanassa", "bandhanassa", "", "binding bond fetter"]) + let v = native_list_append(v, ["गुदं", "noun", "गुदं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["gudaṃ", "noun", "gudaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["खरो", "noun", "खरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sattaratanaṃ", "noun", "sattaratanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["kharakkhaṇḍa", "noun", "kharakkhaṇḍāni", "kharakkhaṇḍassa", "kharakkhaṇḍassa", "", "water-lily"]) + let v = native_list_append(v, ["kharakkhaṇḍaṃ", "noun", "kharakkhaṇḍaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["appanā", "noun", "appanāyo", "appanāya", "appanāya", "", "thought reasoning resolve"]) + let v = native_list_append(v, ["paṭṭo", "noun", "paṭṭo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["rosaṃ", "noun", "rosaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["bhaṇḍaṃ", "noun", "bhaṇḍaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["vanaṃ", "noun", "vanaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["vanitā", "noun", "vanitāyo", "vanitāya", "vanitāya", "", "woman"]) + let v = native_list_append(v, ["netā", "noun", "netā", "", "", "", "nominative/vocative singular/plural of"]) + let v = native_list_append(v, ["paritassanā", "noun", "paritassanāyo", "paritassanāya", "paritassanāya", "", "trembling fear"]) + let v = native_list_append(v, ["anupādā-aparitassanā", "noun", "anupādā-aparitassanāyo", "anupādā-aparitassanāya", "anupādā-aparitassanāya", "", "alternative form of"]) + let v = native_list_append(v, ["anupādā aparitassanā", "noun", "anupādā aparitassanāyo", "anupādā aparitassanāya", "anupādā aparitassanāya", "", "alternative form of"]) + let v = native_list_append(v, ["අනුපාදාඅපරිතස‍්සනා", "noun", "අනුපාදාඅපරිතස්සනායො", "අනුපාදාඅපරිතස්සනාය", "අනුපාදාඅපරිතස්සනාය", "", "alternative form of"]) + let v = native_list_append(v, ["santhava", "noun", "santhavā", "santhavassa", "santhavassa", "", "acquaintance intimacy friendship"]) + let v = native_list_append(v, ["සන්‍ථව", "noun", "සන්ථවා", "සන්ථවස්ස", "සන්ථවස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["සන‍්ථව", "noun", "සන්ථවා", "සන්ථවස්ස", "සන්ථවස්ස", "", "misspelling of සන්ථව"]) + let v = native_list_append(v, ["සන‍්ථවො", "noun", "සන‍්ථවො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සන්‍ථවො", "noun", "සන්‍ථවො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["santhavo", "noun", "santhavo", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑀯𑀟𑁆𑀠𑀺", "noun", "𑀯𑀟𑁆𑀠𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀯𑀼𑀤𑁆𑀥𑀺", "noun", "𑀯𑀼𑀤𑁆𑀥𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["vaḍḍhi", "noun", "vaḍḍhiyo", "vaḍḍhiyā", "vaḍḍhiyā", "", "increase growth"]) + let v = native_list_append(v, ["vuḍḍhi", "noun", "vuḍḍhiyo", "vuḍḍhiyā", "vuḍḍhiyā", "", "increase growth"]) + let v = native_list_append(v, ["vuddhi", "noun", "vuddhiyo", "vuddhiyā", "vuddhiyā", "", "increase growth"]) + let v = native_list_append(v, ["𑀯𑀼𑀟𑁆𑀠𑀺", "noun", "𑀯𑀼𑀟𑁆𑀠𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["वड्ढि", "noun", "वड्ढियो", "वड्ढिया", "वड्ढिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["वुड्ढि", "noun", "वुड्ढियो", "वुड्ढिया", "वुड्ढिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["वुद्धि", "noun", "वुद्धियो", "वुद्धिया", "वुद्धिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀯𑀲", "noun", "𑀯𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["abhiññāto", "noun", "abhiññāto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["जले", "noun", "जले", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["जला", "noun", "जला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["atimatto", "noun", "atimatto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["सको", "noun", "सको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अच्छो", "noun", "अच्छो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["အစ္ဆော", "noun", "အစ္ဆော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อจฺโฉ", "noun", "อจฺโฉ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["អច្ឆោ", "noun", "អច្ឆោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀅𑀘𑁆𑀙𑁄", "noun", "𑀅𑀘𑁆𑀙𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["हंसे", "noun", "हंसे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kantā", "noun", "kantāyo", "kantāya", "kantāya", "", "beloved woman"]) + let v = native_list_append(v, ["විවෙක", "noun", "විවෙකා", "විවෙකස්ස", "විවෙකස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["විවෙකො", "noun", "විවෙකො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පස‍්සං", "noun", "පස‍්සං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["passaṃ", "noun", "passaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["saṃyama", "noun", "saṃyamā", "saṃyamassa", "saṃyamassa", "", "restraint self-control abstinence"]) + let v = native_list_append(v, ["සංයම", "noun", "සංයමා", "සංයමස්ස", "සංයමස්ස", "", "Sinhala script form"]) + let v = native_list_append(v, ["संयमो", "noun", "संयमो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ពោធិ", "noun", "ពោធិយោ", "ពោធិយា", "ពោធិយា", "", "Khmer script form"]) + let v = native_list_append(v, ["गिरे", "noun", "गिरे", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["सक", "noun", "सक", "सकस्स", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑅇𑄌𑄚", "noun", "𑅇𑄌𑄚𑄂𑄚𑄨", "𑅇𑄌𑄚𑄥𑄴𑄥", "𑅇𑄌𑄚𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["𑅇𑄌𑄚𑄁", "noun", "𑅇𑄌𑄚𑄁", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄃𑄖𑄴𑄗", "noun", "𑄃𑄖𑄴𑄗𑄂", "𑄃𑄖𑄴𑄗𑄥𑄴𑄥", "𑄃𑄖𑄴𑄗𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄃𑄖𑄴𑄗𑄮", "noun", "𑄃𑄖𑄴𑄗𑄮", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄥𑄩𑄣", "noun", "𑄥𑄩𑄣𑄂𑄚𑄨", "𑄥𑄩𑄣𑄥𑄴𑄥", "𑄥𑄩𑄣𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["သဳလံ", "noun", "သဳလံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សីលំ", "noun", "សីលំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑄥𑄩𑄣𑄁", "noun", "𑄥𑄩𑄣𑄁", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["paripūrakāritā", "noun", "paripūrakāritāyo", "paripūrakāritāya", "paripūrakāritāya", "", "completion"]) + let v = native_list_append(v, ["रोगो", "noun", "रोगो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑄛𑄢𑄨𑄛𑄫𑄢𑄇𑄂𑄢𑄨𑄖𑄂", "noun", "𑄛𑄢𑄨𑄛𑄫𑄢𑄇𑄂𑄢𑄨𑄖𑄂𑄠𑄮", "𑄛𑄢𑄨𑄛𑄫𑄢𑄇𑄂𑄢𑄨𑄖𑄂𑄠", "𑄛𑄢𑄨𑄛𑄫𑄢𑄇𑄂𑄢𑄨𑄖𑄂𑄠", "", "Chakma script form"]) + let v = native_list_append(v, ["cāritta", "noun", "cārittāni", "cārittassa", "cārittassa", "", "practice"]) + let v = native_list_append(v, ["𑄌𑄂𑄢𑄨𑄖𑄴𑄖", "noun", "𑄌𑄂𑄢𑄨𑄖𑄴𑄖𑄂𑄚𑄨", "𑄌𑄂𑄢𑄨𑄖𑄴𑄖𑄥𑄴𑄥", "𑄌𑄂𑄢𑄨𑄖𑄴𑄖𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄌𑄂𑄢𑄨𑄖𑄴𑄖𑄁", "noun", "𑄌𑄂𑄢𑄨𑄖𑄴𑄖𑄁", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["cārittaṃ", "noun", "cārittaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["সেনো", "noun", "সেনো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["सेनो", "noun", "सेनो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["សេនោ", "noun", "សេនោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["মনসা", "noun", "মনসা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["vāritta", "noun", "vārittāni", "vārittassa", "vārittassa", "", "avoidance"]) + let v = native_list_append(v, ["𑅇𑄂𑄢𑄨𑄖𑄴𑄖", "noun", "𑅇𑄂𑄢𑄨𑄖𑄴𑄖𑄂𑄚𑄨", "𑅇𑄂𑄢𑄨𑄖𑄴𑄖𑄥𑄴𑄥", "𑅇𑄂𑄢𑄨𑄖𑄴𑄖𑄥𑄴𑄥", "", "Chakma script form"]) + let v = native_list_append(v, ["𑅇𑄂𑄢𑄨𑄖𑄴𑄖𑄁", "noun", "𑅇𑄂𑄢𑄨𑄖𑄴𑄖𑄁", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["vārittaṃ", "noun", "vārittaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["पाती", "noun", "पातियो", "पातिया", "पातिया", "", "Devanagari script form"]) + let v = native_list_append(v, ["मारा", "noun", "मारा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मारे", "noun", "मारे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मारो", "noun", "मारो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["उपायो", "noun", "उपायो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["name", "verb", "name", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["rose", "verb", "rose", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["pata", "verb", "pata", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["dada", "verb", "dada", "", "", "", "first/third-person singular imperfect"]) + let v = native_list_append(v, ["care", "verb", "care", "", "", "", "first-person singular present/imperative"]) + let v = native_list_append(v, ["hare", "verb", "hare", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["mare", "verb", "mare", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["kata", "verb", "masculine", "pi-decl-noun", "kato", "", "past participle of"]) + let v = native_list_append(v, ["tare", "verb", "tare", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["sine", "verb", "sine", "", "", "", "optative active third-person"]) + let v = native_list_append(v, ["nude", "verb", "nude", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["rosa", "verb", "rosa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vane", "verb", "vane", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["semi", "verb", "semi", "", "", "", "first-person singular present/imperative"]) + let v = native_list_append(v, ["mode", "verb", "mode", "", "", "", "inflection of modati"]) + let v = native_list_append(v, ["ado", "verb", "ado", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["ane", "verb", "ane", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["pace", "verb", "pace", "", "", "", "first-person singular present/imperative"]) + let v = native_list_append(v, ["passare", "verb", "passare", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["vase", "verb", "vase", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["brave", "verb", "brave", "", "", "", "first-person singular present/imperative"]) + let v = native_list_append(v, ["nama", "verb", "nama", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["វត្ត", "verb", "វត្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kama", "verb", "kama", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["vara", "verb", "vara", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["pate", "verb", "pate", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["paca", "verb", "paca", "", "", "", "inflection of pacati"]) + let v = native_list_append(v, ["ana", "verb", "ana", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["वन", "verb", "वन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["homa", "verb", "homa", "", "", "", "present/imperative active first-person"]) + let v = native_list_append(v, ["karoti", "verb", "karomi", "akariṃ", "", "", "to build create"]) + let v = native_list_append(v, ["abhittharati", "verb", "abhittharati", "", "", "", "To make haste"]) + let v = native_list_append(v, ["jānāti", "verb", "jānāmi", "", "", "", "to know"]) + let v = native_list_append(v, ["bujjhati", "verb", "bujjhāmi", "", "", "", "to awaken"]) + let v = native_list_append(v, ["dado", "verb", "dado", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["akaro", "verb", "akaro", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["caja", "verb", "caja", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["senti", "verb", "senti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["sape", "verb", "sape", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["asi", "verb", "asi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sande", "verb", "sande", "", "", "", "inflection of sandati"]) + let v = native_list_append(v, ["buddha", "verb", "masculine", "pi-decl-noun", "buddho", "", "past participle of"]) + let v = native_list_append(v, ["ahi", "verb", "ahi", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["etu", "verb", "etu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["vasa", "verb", "vasa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["passa", "verb", "passa", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["paco", "verb", "paco", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["cara", "verb", "cara", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["passe", "verb", "passe", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["kare", "verb", "kare", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["akari", "verb", "akari", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["pati", "verb", "pati", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["kame", "verb", "kame", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["tasa", "verb", "tasa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vada", "verb", "vada", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["खादति", "verb", "khād", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ema", "verb", "ema", "", "", "", "first-person plural present/imperative"]) + let v = native_list_append(v, ["tara", "verb", "tara", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["matta", "verb", "matta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["hara", "verb", "hara", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["soca", "verb", "soca", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["kari", "verb", "kari", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["kanta", "verb", "kanta", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vana", "verb", "vana", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["nuda", "verb", "nuda", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["mara", "verb", "mara", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["henti", "verb", "henti", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["cala", "verb", "cala", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["cale", "verb", "cale", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["heti", "verb", "heti", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["hohi", "verb", "hohi", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["pacate", "verb", "pacate", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["पति", "verb", "पति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["चल", "verb", "चल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tase", "verb", "tase", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["vare", "verb", "vare", "", "", "", "first/second/third-person singular optative"]) + let v = native_list_append(v, ["jeti", "verb", "jemi", "ajesiṃ", "", "", "to win"]) + let v = native_list_append(v, ["moda", "verb", "moda", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["accesi", "verb", "accesi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["santu", "verb", "santu", "", "", "", "third-person plural imperative"]) + let v = native_list_append(v, ["santi", "verb", "santi", "", "", "", "present third-person plural"]) + let v = native_list_append(v, ["asma", "verb", "asma", "", "", "", "present first-person plural"]) + let v = native_list_append(v, ["अदा", "verb", "अदा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["emi", "verb", "emi", "", "", "", "first-person singular present/imperative"]) + let v = native_list_append(v, ["hemi", "verb", "hemi", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["samma", "verb", "samma", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["enti", "verb", "enti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["passante", "verb", "passante", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["passati", "verb", "passāmi", "", "", "", "to see"]) + let v = native_list_append(v, ["passate", "verb", "passate", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["passanti", "verb", "passanti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["accenti", "verb", "accenti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["calati", "verb", "calāmi", "", "", "", "to move"]) + let v = native_list_append(v, ["cavati", "verb", "cavati", "", "", "", "to fall"]) + let v = native_list_append(v, ["ramati", "verb", "ramati", "", "", "", "to play recreate"]) + let v = native_list_append(v, ["carati", "verb", "carāmi", "", "", "", "to walk move"]) + let v = native_list_append(v, ["rosati", "verb", "rosāmi", "", "", "", "misspelling of roseti"]) + let v = native_list_append(v, ["ahosi", "verb", "ahosi", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["roca", "verb", "roca", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["नम", "verb", "नम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["appesi", "verb", "appesi", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["ehi", "verb", "ehi", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["varati", "verb", "var", "no-table-tags", "pi-conj-special", "", "to hinder"]) + let v = native_list_append(v, ["vasi", "verb", "vasi", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["hesi", "verb", "hesi", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["mussati", "verb", "mussati", "", "", "", "to forget"]) + let v = native_list_append(v, ["issati", "verb", "issati", "", "", "", "to envy"]) + let v = native_list_append(v, ["homi", "verb", "homi", "", "", "", "present/imperative active first-person"]) + let v = native_list_append(v, ["nema", "verb", "nema", "", "", "", "present/imperative active first-person"]) + let v = native_list_append(v, ["nemi", "verb", "nemi", "", "", "", "present/imperative active first-person"]) + let v = native_list_append(v, ["plavati", "verb", "plavati", "", "", "", "to float"]) + let v = native_list_append(v, ["posati", "verb", "posati", "", "", "", "to feed nourish"]) + let v = native_list_append(v, ["sapa", "verb", "sapa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["pisati", "verb", "pisati", "", "", "", "to crush grind"]) + let v = native_list_append(v, ["disati", "verb", "disati", "", "", "", "to point out"]) + let v = native_list_append(v, ["jahati", "verb", "jahāmi", "", "", "", "to leave"]) + let v = native_list_append(v, ["cit", "verb", "cit", "", "", "", "root of cintayati"]) + let v = native_list_append(v, ["kasati", "verb", "kasati", "", "", "", "to plough"]) + let v = native_list_append(v, ["kante", "verb", "kante", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["vedeti", "verb", "vedemi", "", "", "", "to know"]) + let v = native_list_append(v, ["saye", "verb", "saye", "", "", "", "third-person singular optative"]) + let v = native_list_append(v, ["भवति", "verb", "भवामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ददाति", "verb", "ददामि", "अदासिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["calanti", "verb", "calanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["अन", "verb", "अन", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vicinati", "verb", "vicinati", "", "", "", "to seek search"]) + let v = native_list_append(v, ["जानाति", "verb", "jānāti", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["esi", "verb", "esi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["gameti", "verb", "gameti", "", "", "", "to send to"]) + let v = native_list_append(v, ["असि", "verb", "असि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["जीवति", "verb", "jīv", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sema", "verb", "sema", "", "", "", "first-person plural present/imperative"]) + let v = native_list_append(v, ["lutta", "verb", "lutta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tusse", "verb", "tusse", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["एति", "verb", "एमि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["jahe", "verb", "jahe", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["हरति", "verb", "हरामि", "अहासिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अस्मि", "verb", "अस्मि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सीदति", "verb", "सीदामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छति", "verb", "गच्छामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["चरति", "verb", "चरामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पाति", "verb", "पाति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पचति", "verb", "pac", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पतति", "verb", "पतामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अहि", "verb", "अहि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तरति", "verb", "तरामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["lagati", "verb", "lagati", "", "", "", "to adhere to"]) + let v = native_list_append(v, ["turati", "verb", "no-table-tags", "pi-conj-special", "turittho", "", "An abstraction of"]) + let v = native_list_append(v, ["khana", "verb", "khana", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["harati", "verb", "harāmi", "ahāsiṃ", "", "", "to carry to"]) + let v = native_list_append(v, ["avoca", "verb", "avoca", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["sanda", "verb", "sanda", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vatti", "verb", "vatti", "", "", "", "to say"]) + let v = native_list_append(v, ["pacati", "verb", "pacāmi", "", "", "", "to cook"]) + let v = native_list_append(v, ["vihara", "verb", "vihara", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ยาม", "verb", "ยาม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["นม", "verb", "นม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["kubbe", "verb", "kubbe", "", "", "", "inflection of karoti"]) + let v = native_list_append(v, ["dade", "verb", "dade", "", "", "", "third-person singular optative"]) + let v = native_list_append(v, ["tarati", "verb", "tarāmi", "", "", "", "to cross over"]) + let v = native_list_append(v, ["setu", "verb", "setu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["nudati", "verb", "nudāmi", "", "", "", "to push"]) + let v = native_list_append(v, ["nudanti", "verb", "nudanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["sandase", "verb", "sandase", "", "", "", "present middle second-person"]) + let v = native_list_append(v, ["हर", "verb", "हर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ruja", "verb", "ruja", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["roseti", "verb", "rosemi", "", "", "", "to enrage"]) + let v = native_list_append(v, ["वसति", "verb", "वसामि", "वसिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pacare", "verb", "pacare", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["pacante", "verb", "pacante", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["vade", "verb", "vade", "", "", "", "inflection of vadati"]) + let v = native_list_append(v, ["tulema", "verb", "tulema", "", "", "", "first-person plural present/imperative"]) + let v = native_list_append(v, ["रोच", "verb", "रोच", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["samme", "verb", "samme", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["vedenti", "verb", "vedenti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["vande", "verb", "vande", "", "", "", "inflection of vandati"]) + let v = native_list_append(v, ["rodati", "verb", "rodati", "", "", "", "to cry weep"]) + let v = native_list_append(v, ["adeti", "verb", "ademi", "", "", "", "to eat"]) + let v = native_list_append(v, ["sapatu", "verb", "sapatu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["adesi", "verb", "adesi", "", "", "", "present first-person singular"]) + let v = native_list_append(v, ["vadare", "verb", "vadare", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["udenti", "verb", "udenti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["khanati", "verb", "khanati", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["honti", "verb", "honti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["hema", "verb", "hema", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["वर", "verb", "वर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["amha", "verb", "amha", "", "", "", "present first-person plural"]) + let v = native_list_append(v, ["roce", "verb", "roce", "", "", "", "singular optative active"]) + let v = native_list_append(v, ["deti", "verb", "deti", "", "", "", "to give"]) + let v = native_list_append(v, ["assu", "verb", "assu", "", "", "", "third-person plural optative"]) + let v = native_list_append(v, ["seti", "verb", "semi", "sesiṃ", "", "", "to sleep"]) + let v = native_list_append(v, ["sedeti", "verb", "sedeti", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ဘဝ", "verb", "ဘဝ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["tussa", "verb", "tussa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vatte", "verb", "vatte", "", "", "", "inflection of vattati"]) + let v = native_list_append(v, ["vacati", "verb", "vacati", "", "", "", "to say"]) + let v = native_list_append(v, ["nenti", "verb", "nenti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["passatu", "verb", "passatu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["यातु", "verb", "यातु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सीदामि", "verb", "सीदामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["adada", "verb", "adada", "", "", "", "first/third-person singular imperfect"]) + let v = native_list_append(v, ["কত", "verb", "kata", "masculine", "pi-decl-noun", "", "Bengali script form"]) + let v = native_list_append(v, ["mahati", "verb", "mah", "", "", "", "to honour to"]) + let v = native_list_append(v, ["vadate", "verb", "vadate", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["assa", "verb", "assa", "", "", "", "second/third-person singular optative"]) + let v = native_list_append(v, ["appeti", "verb", "appemi", "appesiṃ", "", "", "to move forwards"]) + let v = native_list_append(v, ["ademi", "verb", "ademi", "", "", "", "inflection of adeti"]) + let v = native_list_append(v, ["anati", "verb", "anāmi", "", "", "", "to breathe"]) + let v = native_list_append(v, ["accentu", "verb", "accentu", "", "", "", "third-person plural imperative"]) + let v = native_list_append(v, ["vineti", "verb", "vinemi", "", "", "", "to remove to"]) + let v = native_list_append(v, ["বন্ধ", "verb", "বন্ধ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["sentu", "verb", "sentu", "", "", "", "third-person plural imperative"]) + let v = native_list_append(v, ["temeti", "verb", "tememi", "", "", "", "to wet to"]) + let v = native_list_append(v, ["siccati", "verb", "siccati", "", "", "", "to be sprinkled"]) + let v = native_list_append(v, ["galati", "verb", "galati", "", "", "", "to dribble drip"]) + let v = native_list_append(v, ["neti", "verb", "nemi", "", "", "", "to lead conduct"]) + let v = native_list_append(v, ["hontu", "verb", "hontu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["musati", "verb", "musati", "", "", "", "to steal rob"]) + let v = native_list_append(v, ["jemi", "verb", "jemi", "", "", "", "first-person singular present/imperative"]) + let v = native_list_append(v, ["desita", "verb", "masculine", "pi-decl-noun", "desito", "", "past participle of"]) + let v = native_list_append(v, ["savati", "verb", "su", "", "", "", "to flow run"]) + let v = native_list_append(v, ["ahu", "verb", "ahu", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["eti", "verb", "emi", "", "", "", "to come"]) + let v = native_list_append(v, ["सम्मति", "verb", "सम्मामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pacu", "verb", "pacu", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["ខម", "verb", "ខម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["akā", "verb", "akā", "", "", "", "second-person singular/third-person singular"]) + let v = native_list_append(v, ["जिना", "verb", "जिना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sesi", "verb", "sesi", "", "", "", "inflection of seti"]) + let v = native_list_append(v, ["nesi", "verb", "nesi", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["dadu", "verb", "dadu", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["मरति", "verb", "मरामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vanda", "verb", "vanda", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["kantati", "verb", "kantāmi", "", "", "", "to cut to"]) + let v = native_list_append(v, ["စိတ်", "verb", "cit", "", "", "", "root of စိန္တေတိ"]) + let v = native_list_append(v, ["assava", "verb", "assava", "", "", "", "imperative second-person singular"]) + let v = native_list_append(v, ["sevati", "verb", "sevati", "", "", "", "indulge in pursue"]) + let v = native_list_append(v, ["sinā", "verb", "sinā", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["कम", "verb", "कम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["akara", "verb", "akara", "", "", "", "first/third-person singular imperfect"]) + let v = native_list_append(v, ["vidati", "verb", "vid", "", "", "", "to know"]) + let v = native_list_append(v, ["carate", "verb", "carate", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ກມ", "verb", "ກມ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["bhava", "verb", "bhava", "", "", "", "inflection of bhavati"]) + let v = native_list_append(v, ["juhati", "verb", "juhati", "", "", "", "to perform a"]) + let v = native_list_append(v, ["parivasati", "verb", "parivasāmi", "", "", "", "to live among"]) + let v = native_list_append(v, ["paṭivedeti", "verb", "vid", "", "", "", "to announce"]) + let v = native_list_append(v, ["bandha", "verb", "bandha", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["वदति", "verb", "वदामि", "अवोचं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["jaha", "verb", "jaha", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["kamati", "verb", "kamāmi", "", "", "", "to walk"]) + let v = native_list_append(v, ["jema", "verb", "jema", "", "", "", "first-person plural present/imperative"]) + let v = native_list_append(v, ["ခဏ", "verb", "ခဏ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vanati", "verb", "vanāmi", "", "", "", "to desire to"]) + let v = native_list_append(v, ["सेतु", "verb", "सेतु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dhāvati", "verb", "dhāvāmi", "", "", "", "to run"]) + let v = native_list_append(v, ["vicare", "verb", "vicare", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["vivicca", "verb", "vivicca", "", "", "", "absolutive of viviccati"]) + let v = native_list_append(v, ["vūpasameti", "verb", "vūpasameti", "", "", "", "To appease"]) + let v = native_list_append(v, ["ummujjati", "verb", "ummujjati", "", "", "", "To emerge"]) + let v = native_list_append(v, ["viññāpita", "verb", "viññāpita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["patatu", "verb", "patatu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["parisodheti", "verb", "parisodheti", "", "", "", "To cleanse"]) + let v = native_list_append(v, ["payojeti", "verb", "yuj", "", "", "", "to undertake engage"]) + let v = native_list_append(v, ["ijjhati", "verb", "ijjhati", "", "", "", "To prosper"]) + let v = native_list_append(v, ["samijjhati", "verb", "samijjhāmi", "", "", "", "To succeed"]) + let v = native_list_append(v, ["avasissati", "verb", "avasissati", "", "", "", "to be left"]) + let v = native_list_append(v, ["anupāpuṇāti", "verb", "anupāpuṇāmi", "", "", "", "To reach to"]) + let v = native_list_append(v, ["pamudita", "verb", "past participle of pamodati", "", "", "", "greatly delighted"]) + let v = native_list_append(v, ["passambhati", "verb", "passambhati", "", "", "", "To quiet to"]) + let v = native_list_append(v, ["abhisandeti", "verb", "abhisandemi", "", "", "", "to drench to"]) + let v = native_list_append(v, ["parisandeti", "verb", "parisandeti", "", "", "", "To drench"]) + let v = native_list_append(v, ["sanneti", "verb", "sanneti", "", "", "", "To mix"]) + let v = native_list_append(v, ["paggharati", "verb", "paggharāmi", "pagghariṃ", "", "", "To ooze trickle"]) + let v = native_list_append(v, ["anupavecchati", "verb", "anupavecchāmi", "", "", "", "To give to"]) + let v = native_list_append(v, ["pavecchati", "verb", "pavecchāmi", "", "", "", "To give"]) + let v = native_list_append(v, ["payacchati", "verb", "payacchati", "", "", "", "To offer present"]) + let v = native_list_append(v, ["saṃvaḍḍhati", "verb", "saṃvaḍḍhati", "", "", "", "to grow"]) + let v = native_list_append(v, ["abhininnāmeti", "verb", "abhininnāmeti", "", "", "", "to bend towards"]) + let v = native_list_append(v, ["ābādheti", "verb", "ābādheti", "", "", "", "to oppress"]) + let v = native_list_append(v, ["paccavekkhati", "verb", "ikkh", "", "", "", "to look upon"]) + let v = native_list_append(v, ["abhinimmāti", "verb", "abhinimmāti", "", "", "", "to create to"]) + let v = native_list_append(v, ["pavāheti", "verb", "pavāheti", "", "", "", "to cause to"]) + let v = native_list_append(v, ["paccanubhoti", "verb", "bhū", "", "", "", "to experience realize"]) + let v = native_list_append(v, ["pabbatāyati", "verb", "pabbatāyati", "", "", "", "to act like"]) + let v = native_list_append(v, ["nimujjati", "verb", "nimujjati", "", "", "", "to sink down"]) + let v = native_list_append(v, ["gacchati", "verb", "gacchāmi", "", "", "", "to go"]) + let v = native_list_append(v, ["vatteti", "verb", "vatteti", "", "", "", "to make go"]) + let v = native_list_append(v, ["abhinipphādeti", "verb", "abhinipphādeti", "", "", "", "to bring into"]) + let v = native_list_append(v, ["saṅkhipati", "verb", "saṅkhipati", "", "", "", "to collect,heap together"]) + let v = native_list_append(v, ["vikkhipati", "verb", "vikkhipati", "", "", "", "to disturb confuse"]) + let v = native_list_append(v, ["paccāgacchati", "verb", "gam", "", "", "", "to fall back"]) + let v = native_list_append(v, ["sañcarati", "verb", "sañcarati", "", "", "", "to go about"]) + let v = native_list_append(v, ["paṭikaroti", "verb", "paṭikaroti", "", "", "", "to redress"]) + let v = native_list_append(v, ["jine", "verb", "jine", "", "", "", "third-person singular optative"]) + let v = native_list_append(v, ["anujānāti", "verb", "anujānāti", "", "", "", "to give permission"]) + let v = native_list_append(v, ["pamaddati", "verb", "pamaddati", "", "", "", "to crush down"]) + let v = native_list_append(v, ["abhivijināti", "verb", "abhivijināmi", "", "", "", "to conquer"]) + let v = native_list_append(v, ["gaheti", "verb", "gaheti", "", "", "", "to cause to"]) + let v = native_list_append(v, ["caṅkamati", "verb", "caṅkamati", "", "", "", "to walk about"]) + let v = native_list_append(v, ["vivarati", "verb", "vivarati", "", "", "", "to open"]) + let v = native_list_append(v, ["nisīdati", "verb", "nisīdāmi", "nisīdiṃ", "", "", "to sit down"]) + let v = native_list_append(v, ["sañjagghati", "verb", "sañjagghati", "", "", "", "to joke to"]) + let v = native_list_append(v, ["nimmādeti", "verb", "nimmādeti", "", "", "", "to crush"]) + let v = native_list_append(v, ["pabbājeti", "verb", "pabbājeti", "", "", "", "to make go"]) + let v = native_list_append(v, ["nahāpeti", "verb", "nahāpeti", "", "", "", "to bathe"]) + let v = native_list_append(v, ["parimoceti", "verb", "parimoceti", "", "", "", "to set free"]) + let v = native_list_append(v, ["อหิ", "verb", "อหิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["भव", "verb", "भव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ពន្ធ", "verb", "ពន្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["pivati", "verb", "pivāmi", "", "", "", "to drink"]) + let v = native_list_append(v, ["bhāsati", "verb", "bhāsāmi", "abhāsiṃ", "", "", "speak say"]) + let v = native_list_append(v, ["niddāyati", "verb", "niddā", "", "", "", "to sleep"]) + let v = native_list_append(v, ["करोति", "verb", "करोमि", "अकरिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["obhāsa", "verb", "obhāsa", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["सम्म", "verb", "सम्म", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["obhāsati", "verb", "obhāsāmi", "", "", "", "to shine glow"]) + let v = native_list_append(v, ["jīvati", "verb", "jīv", "", "", "", "to live be"]) + let v = native_list_append(v, ["bandhati", "verb", "bandhāmi", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["bhavati", "verb", "bhavāmi", "", "", "", "to become exist"]) + let v = native_list_append(v, ["khādati", "verb", "khādāmi", "", "", "", "to eat devour"]) + let v = native_list_append(v, ["yāti", "verb", "yāmi", "", "", "", "to go travel"]) + let v = native_list_append(v, ["तर", "verb", "तर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yujjhati", "verb", "yujjhāmi", "ayujjhiṃ", "", "", "to fight make"]) + let v = native_list_append(v, ["dibbati", "verb", "div", "", "", "", "to amuse oneself"]) + let v = native_list_append(v, ["ขน", "verb", "ขน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["santussati", "verb", "santussati", "", "", "", "to be content"]) + let v = native_list_append(v, ["santuṭṭha", "verb", "santuṭṭha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["paṭisañcikkhati", "verb", "khā", "", "", "", "to reflect consider"]) + let v = native_list_append(v, ["hoti", "verb", "homi", "ahosiṃ", "", "", "to be to"]) + let v = native_list_append(v, ["bhāveti", "verb", "bhāveti", "", "", "", "to cultivate to"]) + let v = native_list_append(v, ["viharati", "verb", "viharāmi", "vihāsiṃ", "", "", "to live to"]) + let v = native_list_append(v, ["sammodati", "verb", "sammodāmi", "", "", "", "to agree with"]) + let v = native_list_append(v, ["vivadati", "verb", "vivadati", "", "", "", "to dispute"]) + let v = native_list_append(v, ["bhāvita", "verb", "bhāvita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["viññāpeti", "verb", "viññāpeti", "", "", "", "to instruct inform"]) + let v = native_list_append(v, ["vigarahati", "verb", "vigarahati", "", "", "", "to rebuke reproach"]) + let v = native_list_append(v, ["paṭibujjhati", "verb", "paṭibujjhati", "", "", "", "to awake"]) + let v = native_list_append(v, ["uppajjati", "verb", "uppajjāmi", "uppajjiṃ", "", "", "to arise"]) + let v = native_list_append(v, ["pajānāti", "verb", "pajānāti", "", "", "", "to know understand"]) + let v = native_list_append(v, ["abhivādeti", "verb", "abhivādemi", "", "", "", "to salute"]) + let v = native_list_append(v, ["gaṇhāti", "verb", "gaṇhāmi", "gaṇhiṃ", "", "", "to take"]) + let v = native_list_append(v, ["ñāta", "verb", "ñāta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nibbindati", "verb", "nibbindati", "", "", "", "to have enough"]) + let v = native_list_append(v, ["atthi", "verb", "asmi", "", "", "", "to be"]) + let v = native_list_append(v, ["vāti", "verb", "vā", "", "", "", "to blow"]) + let v = native_list_append(v, ["upasaṅkamati", "verb", "upasaṅkamāmi", "upasaṅkamiṃ", "", "", "to approach"]) + let v = native_list_append(v, ["āmanteti", "verb", "āmanteti", "", "", "", "to speak to"]) + let v = native_list_append(v, ["nibbeṭheti", "verb", "nibbeṭheti", "", "", "", "to unravel"]) + let v = native_list_append(v, ["ขม", "verb", "ขม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["gadati", "verb", "gadati", "", "", "", "to speak"]) + let v = native_list_append(v, ["paripucchati", "verb", "paripucchati", "", "", "", "to interrogate"]) + let v = native_list_append(v, ["araha", "verb", "araha", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["pāyāti", "verb", "pāyāti", "", "", "", "to proceed to"]) + let v = native_list_append(v, ["भवामि", "verb", "भवामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vañceti", "verb", "vañceti", "", "", "", "to deceive"]) + let v = native_list_append(v, ["palambheti", "verb", "palambheti", "", "", "", "to betray to"]) + let v = native_list_append(v, ["bhāyati", "verb", "bhāyati", "", "", "", "to be afraid"]) + let v = native_list_append(v, ["paccorohati", "verb", "paccorohāmi", "", "", "", "to descend"]) + let v = native_list_append(v, ["calatu", "verb", "calatu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["netu", "verb", "netu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["nudatu", "verb", "nudatu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["pacatu", "verb", "pacatu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["pacanti", "verb", "pacanti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["vadatu", "verb", "vadatu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["vadanti", "verb", "vadanti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["vadati", "verb", "vadāmi", "avocaṃ", "", "", "to say"]) + let v = native_list_append(v, ["pāti", "verb", "pā", "", "", "", "to keep watch"]) + let v = native_list_append(v, ["upavattati", "verb", "upavattati", "", "", "", "to come to"]) + let v = native_list_append(v, ["vivaṭṭati", "verb", "vivaṭṭati", "", "", "", "to move back"]) + let v = native_list_append(v, ["nibbāpeti", "verb", "nibbāpeti", "", "", "", "to put out"]) + let v = native_list_append(v, ["អត្ថ", "verb", "អត្ថ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sakke", "verb", "sakke", "", "", "", "present/imperative middle first-person"]) + let v = native_list_append(v, ["มะระ", "verb", "มะระ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["namatha", "verb", "namatha", "", "", "", "second-person plural present/imperative"]) + let v = native_list_append(v, ["धावति", "verb", "dhāvati", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["အသိ", "verb", "အသိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀅𑀢𑁆𑀣𑀺", "verb", "𑀅𑀲𑁆𑀫𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["अत्थि", "verb", "अस्मि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["हेति", "verb", "हेति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["orohati", "verb", "orohāmi", "", "", "", "to descend climb"]) + let v = native_list_append(v, ["जयति", "verb", "ji", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नयति", "verb", "nī", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["हराम", "verb", "हराम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vitthata", "verb", "vitthata", "", "", "", "spread out wide"]) + let v = native_list_append(v, ["anupajjati", "verb", "anupajjāmi", "", "", "", "to follow"]) + let v = native_list_append(v, ["होम", "verb", "homa", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["रुजति", "verb", "रुजामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सेम", "verb", "सेम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["आचरति", "verb", "आचरामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["खनति", "verb", "khaṇ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["patasi", "verb", "patasi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["পাতি", "verb", "pā", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["sikkhati", "verb", "sikkhati", "", "", "", "to learn"]) + let v = native_list_append(v, ["kujjhati", "verb", "kujjhati", "", "", "", "to become angry"]) + let v = native_list_append(v, ["𑀓𑀭𑁄𑀢𑀺", "verb", "𑀓𑀭𑁄𑀫𑀺", "𑀅𑀓𑀭𑀺𑀁", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["cajati", "verb", "cajāmi", "", "", "", "to abandon give"]) + let v = native_list_append(v, ["मज्जति", "verb", "मज्जामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sijjati", "verb", "sijjati", "", "", "", "to sweat"]) + let v = native_list_append(v, ["खण", "verb", "खण", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कत", "verb", "kata", "masculine", "pi-decl-noun", "", "Devanagari script form"]) + let v = native_list_append(v, ["pīḷeti", "verb", "pīḷeti", "", "", "", "to bother bully"]) + let v = native_list_append(v, ["deseti", "verb", "desemi", "adesesiṃ", "", "", "to point out"]) + let v = native_list_append(v, ["จเร", "verb", "จเร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["नेम", "verb", "नेम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["rakkhati", "verb", "rakkhāmi", "", "", "", "to protect"]) + let v = native_list_append(v, ["วน", "verb", "วน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀪𑀯𑀢𑀺", "verb", "𑀪𑀯𑀸𑀫𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["सिया", "verb", "सिया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ৰস", "verb", "ৰস", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["कारयति", "verb", "kar", "", "", "", "causative of करोति"]) + let v = native_list_append(v, ["কম", "verb", "কম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["មជ្ជ", "verb", "មជ្ជ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vatta", "verb", "vatta", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["गूहति", "verb", "गूहामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अकरा", "verb", "अकरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["khaṇa", "verb", "khaṇa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["गच्छतु", "verb", "गच्छतु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["याति", "verb", "यामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["करोतु", "verb", "करोतु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["អស្សុ", "verb", "អស្សុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["bhaṇḍa", "verb", "bhaṇḍa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["phanda", "verb", "phanda", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["វរ", "verb", "វរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["জিনা", "verb", "জিনা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ujjagghati", "verb", "ujjagghati", "", "", "", "to laugh aloud"]) + let v = native_list_append(v, ["jagghati", "verb", "jagghati", "", "", "", "to laugh"]) + let v = native_list_append(v, ["netha", "verb", "netha", "", "", "", "present/imperative active second-person"]) + let v = native_list_append(v, ["पतिं", "verb", "patiṃ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["করে", "verb", "করে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["गच्छन्ति", "verb", "गच्छन्ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छसि", "verb", "गच्छसि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छथ", "verb", "गच्छथ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छामि", "verb", "गच्छामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छन्तु", "verb", "गच्छन्तु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छ", "verb", "गच्छ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छाम", "verb", "गच्छाम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मुञ्चति", "verb", "मुञ्चामि", "अमुञ्चिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मुञ्चते", "verb", "मुञ्चते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᩅᩥᩉᩁᨲᩥ", "verb", "ᩅᩥᩉᩁᩣᨾᩥ", "ᩅᩥᩉᩣᩈᩥᩴ", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["चिन्तयति", "verb", "चिन्तयति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᩅᨶ", "verb", "ᩅᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["नमति", "verb", "नमामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["obhāseti", "verb", "obhāsemi", "", "", "", "to make shine"]) + let v = native_list_append(v, ["obhāsetvā", "verb", "obhāsetvā", "", "", "", "absolutive of obhāseti"]) + let v = native_list_append(v, ["ᩒᨽᩣᩈᩮᨲ᩠ᩅᩣ", "verb", "ᩒᨽᩣᩈᩮᨲ᩠ᩅᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["cinteti", "verb", "cit", "", "", "", "to think"]) + let v = native_list_append(v, ["ᨧᩥᨶ᩠ᨲᩮᨲᩥ", "verb", "cit", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["cintayiṃsu", "verb", "cintayiṃsu", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["ᨧᩥᨶ᩠ᨲᨿᩥᩴᩈᩩ", "verb", "ᨧᩥᨶ᩠ᨲᨿᩥᩴᩈᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["cintayati", "verb", "cintayati", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adhigacchati", "verb", "adhigacchati", "", "", "", "to get to"]) + let v = native_list_append(v, ["ᩋᨵᩥᨣᨧ᩠ᨨᨲᩥ", "verb", "ᩋᨵᩥᨣᨧ᩠ᨨᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩮᩈᩮᨲᩥ", "verb", "ᨴᩮᩈᩮᨾᩥ", "ᩋᨴᩮᩈᩮᩈᩥᩴ", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["bhaṇati", "verb", "bhaṇāmi", "", "", "", "to speak"]) + let v = native_list_append(v, ["ᨽᨱᨲᩥ", "verb", "ᨽᨱᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paṇamati", "verb", "paṇamāmi", "", "", "", "to bend"]) + let v = native_list_append(v, ["ᨸᨱᨾᨲᩥ", "verb", "ᨸᨱᨾᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["vandati", "verb", "vandāmi", "", "", "", "to salute"]) + let v = native_list_append(v, ["ᩅᨶ᩠ᨴᨲᩥ", "verb", "ᩅᨶ᩠ᨴᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨣᨧ᩠ᨨᨲᩥ", "verb", "ᨣᨧ᩠ᨨᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩁ", "verb", "ᩅᩁ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩉᩮᩣᨲᩥ", "verb", "ᩉᩮᩣᨾᩥ", "ᩋᩉᩮᩣᩈᩥᩴ", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["khamati", "verb", "khamāmi", "", "", "", "to be patient"]) + let v = native_list_append(v, ["ᨡᨾᨲᩥ", "verb", "ᨡᨾᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["khalati", "verb", "khal", "", "", "", "to stumble"]) + let v = native_list_append(v, ["ᨡᩃᨲᩥ", "verb", "khal", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["भवतु", "verb", "भवतु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["visodheti", "verb", "visodhemi", "", "", "", "to purify to"]) + let v = native_list_append(v, ["ᩅᩥᩈᩮᩣᨵᩮᨲᩥ", "verb", "ᩅᩥᩈᩮᩣᨵᩮᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["bhindati", "verb", "bhindāmi", "", "", "", "to break"]) + let v = native_list_append(v, ["ᨽᩥᨶ᩠ᨴᨲᩥ", "verb", "bhid", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["හොති", "verb", "හොමි", "අහොසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["भवन्ति", "verb", "भवन्ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भवसि", "verb", "भवसि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भवथ", "verb", "भवथ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["භාසති", "verb", "භාසාමි", "අභාසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ददातु", "verb", "ददातु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["upagacchati", "verb", "upagacchāmi", "upagacchiṃ", "", "", "to approach"]) + let v = native_list_append(v, ["upagañchi", "verb", "upagañchi", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["උපගංඡි", "verb", "upagaṃchi", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["viditvā", "verb", "viditvā", "", "", "", "absolutive of vidati"]) + let v = native_list_append(v, ["විදිත්‍වා", "verb", "විදිත්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["vaditvā", "verb", "vaditvā", "", "", "", "absolutive of vadati"]) + let v = native_list_append(v, ["වදති", "verb", "වදාමි", "අවොචං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["paññāpeti", "verb", "paññā", "", "", "", "to make a"]) + let v = native_list_append(v, ["පඤ‍්ඤාපෙති", "verb", "පඤ්ඤාපෙති", "paññā", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["nisīdi", "verb", "nisīdi", "", "", "", "aorist active second/third-person"]) + let v = native_list_append(v, ["නිසීදති", "verb", "නිසීදාමි", "නිසීදිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["නිසීදි", "verb", "නිසීදි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["upasaṅkami", "verb", "upasaṅkami", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["upasaṅkamitvā", "verb", "upasaṅkamitvā", "", "", "", "absolutive of upasaṅkamati"]) + let v = native_list_append(v, ["උපසඞ‍්කමති", "verb", "උපසඞ්කමාමි", "උපසඞ්කමිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["උපසඞ‍්කමි", "verb", "උපසඞ්කමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["උපසඞ‍්කමිත්‍වා", "verb", "උපසඞ්කමිත්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["nisajja", "verb", "nisajja", "", "", "", "absolutive of nisīdati"]) + let v = native_list_append(v, ["නිසජ‍්ජ", "verb", "නිසජ්ජ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["āmantesi", "verb", "āmantesi", "", "", "", "aorist of āmanteti"]) + let v = native_list_append(v, ["ආමන‍්තෙති", "verb", "ආමන්තෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ආමන‍්තෙසි", "verb", "ආමන්තෙසි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sannisīdati", "verb", "sannisīdāmi", "", "", "", "to settle to"]) + let v = native_list_append(v, ["sannipatati", "verb", "sannipatati", "", "", "", "to assemble"]) + let v = native_list_append(v, ["avocum", "verb", "avocum", "", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["අවොචුං", "verb", "අවොචුං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අවොච", "verb", "අවොච", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["karīyati", "verb", "karīyāmi", "", "", "", "passive of karoti"]) + let v = native_list_append(v, ["kārayati", "verb", "kar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["කරොති", "verb", "කරොමි", "අකරිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කාරයති", "verb", "kar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chindati", "verb", "chindāmi", "", "", "", "to cut off"]) + let v = native_list_append(v, ["ඡින්‍දති", "verb", "ඡින්දාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["chedāpayati", "verb", "chid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ඡෙදාපයති", "verb", "chid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pācayati", "verb", "pac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pāceti", "verb", "pācemi", "", "", "", "causative of pacati"]) + let v = native_list_append(v, ["yanti", "verb", "yanti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["kāreti", "verb", "kāremi", "kāresiṃ", "", "", "causative of karoti"]) + let v = native_list_append(v, ["කාරෙති", "verb", "කාරෙමි", "කාරෙසිං", "", "", "causative of කරොති"]) + let v = native_list_append(v, ["chedāpeti", "verb", "chedāpemi", "", "", "", "causative of chindati"]) + let v = native_list_append(v, ["ඡෙදාපෙති", "verb", "ඡෙදාපෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පචති", "verb", "පචාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාචෙති", "verb", "පාචෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාචයති", "verb", "pac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["soceti", "verb", "socemi", "", "", "", "causative of socati"]) + let v = native_list_append(v, ["socati", "verb", "socāmi", "", "", "", "to grieve"]) + let v = native_list_append(v, ["socayati", "verb", "suc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["සොචති", "verb", "සොචාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සොචෙති", "verb", "සොචෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සොචයති", "verb", "suc", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["socāpeti", "verb", "socāpemi", "", "", "", "double causative of"]) + let v = native_list_append(v, ["socāpayati", "verb", "suc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["සොචාපෙති", "verb", "සොචාපෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සොචාපයති", "verb", "suc", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kilamati", "verb", "kilamāmi", "", "", "", "to be weary"]) + let v = native_list_append(v, ["kilameti", "verb", "kilamemi", "", "", "", "causative of kilamati"]) + let v = native_list_append(v, ["kilamayati", "verb", "kilam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["කිලමෙති", "verb", "කිලමෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කිලමයති", "verb", "kilam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["කිලමති", "verb", "කිලමාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kilamāpeti", "verb", "kilamāpemi", "", "", "", "double causative of"]) + let v = native_list_append(v, ["kilamāpayati", "verb", "kilam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["කිලමාපෙති", "verb", "කිලමාපෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කිලමාපයති", "verb", "kilam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["phandati", "verb", "phandāmi", "", "", "", "to tremble"]) + let v = native_list_append(v, ["phandeti", "verb", "phandemi", "", "", "", "causative of phandati"]) + let v = native_list_append(v, ["phandayati", "verb", "phand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ඵන්‍දති", "verb", "ඵන්දාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දෙති", "verb", "ඵන්දෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දයති", "verb", "ඵන්දයති", "phand", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["phandāpeti", "verb", "phandāpemi", "", "", "", "causative of phandati"]) + let v = native_list_append(v, ["phandāpayati", "verb", "phand", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ඵන්‍දාපෙති", "verb", "ඵන්දාපෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දාපයති", "verb", "ඵන්දාපයති", "phand", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["patati", "verb", "patāmi", "patiṃ", "", "", "to fall down"]) + let v = native_list_append(v, ["marati", "verb", "marāmi", "", "", "", "to die"]) + let v = native_list_append(v, ["pāteti", "verb", "pātemi", "", "", "", "causative of patati"]) + let v = native_list_append(v, ["pātayati", "verb", "pat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pātayant", "verb", "masculine", "pi-decl-noun", "pātayaṃ", "", "present active participle"]) + let v = native_list_append(v, ["පතති", "verb", "පතාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාතෙති", "verb", "පාතෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාතයති", "verb", "pat", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāṇamatipāteti", "verb", "pāṇamatipātemi", "", "", "", "to kill a"]) + let v = native_list_append(v, ["පාණමතිපාතෙති", "verb", "පාණමතිපාතෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāṇamatipātayati", "verb", "pat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["පාණමතිපාතයති", "verb", "pat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dadāti", "verb", "dadāmi", "adāsiṃ", "", "", "to give"]) + let v = native_list_append(v, ["දදාති", "verb", "දදාමි", "අදාසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["maññati", "verb", "maññāmi", "", "", "", "to think"]) + let v = native_list_append(v, ["ādiyati", "verb", "ādiyāmi", "", "", "", "to take"]) + let v = native_list_append(v, ["ආදියති", "verb", "ආදියාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sandhiṃ chindati", "verb", "sandhiṃ chindati", "", "", "", "to make a"]) + let v = native_list_append(v, ["හරති", "verb", "හරාමි", "අහාසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tiṭṭhati", "verb", "tiṭṭhāmi", "aṭṭhāsiṃ", "", "", "to stand"]) + let v = native_list_append(v, ["තිට‍්ඨති", "verb", "තිට්ඨාමි", "අට්ඨාසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ගච‍්ඡති", "verb", "ගච්ඡාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["paradāraṃ gacchati", "verb", "paradāraṃ gacchati", "", "", "", "to commit adultery"]) + let v = native_list_append(v, ["පරදාරං ගච‍්ඡති", "verb", "පරදාරං ගච්ඡති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["භණති", "verb", "භණාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කරීයති", "verb", "කරීයාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tussati", "verb", "tussāmi", "", "", "", "to be satisfied"]) + let v = native_list_append(v, ["ᩋᩉᩮᩣᩈᩥ", "verb", "ᩋᩉᩮᩣᩈᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᩉᩩ", "verb", "ᩋᩉᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["අහු", "verb", "අහු", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අහොසි", "verb", "අහොසි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["होति", "verb", "होमि", "अहोसिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vedayati", "verb", "vid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᩅᩮᨴᩮᨲᩥ", "verb", "ᩅᩮᨴᩮᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sujjhati", "verb", "sujjhāmi", "", "", "", "to become clean"]) + let v = native_list_append(v, ["visujjhati", "verb", "visujjhāmi", "", "", "", "to be cleaned"]) + let v = native_list_append(v, ["visodhayati", "verb", "sudh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pajahati", "verb", "pajahāmi", "", "", "", "to give up"]) + let v = native_list_append(v, ["pāpuṇāti", "verb", "pāpuṇāmi", "pāpuṇiṃ", "", "", "to reach"]) + let v = native_list_append(v, ["ᨸᨩᩉᨲᩥ", "verb", "ᨸᨩᩉᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["hotu", "verb", "hotu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["lumpa", "verb", "lumpa", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["করোতি", "verb", "করোমি", "অকরিং", "", "", "Bengali script form"]) + let v = native_list_append(v, ["โหม", "verb", "โหม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["จร", "verb", "จร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["नेमि", "verb", "नेमि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["याम", "verb", "याम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သန္ဒေ", "verb", "သန္ဒေ", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["khama", "verb", "khama", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ພຸທ຺ຘ", "verb", "masculine", "pi-decl-noun", "ພຸທ຺ໂຘ", "", "Lao script form"]) + let v = native_list_append(v, ["คจฺฉติ", "verb", "คจฺฉามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຄຈ຺ຉຕິ", "verb", "ຄຈ຺ຉາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲", "verb", "𑀅𑀲𑁆𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["pūjeti", "verb", "pūjemi", "", "", "", "to honour"]) + let v = native_list_append(v, ["ปูเชติ", "verb", "ปูเชมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ปะจะติ", "verb", "ปะจามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะภิวาเทติ", "verb", "อะภิวาเทมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["namassati", "verb", "namassāmi", "", "", "", "to pay honour"]) + let v = native_list_append(v, ["นะมัสสะติ", "verb", "นะมัสสามิ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["namati", "verb", "namāmi", "", "", "", "to bend"]) + let v = native_list_append(v, ["นะมะติ", "verb", "นะมามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["yācati", "verb", "yācāmi", "", "", "", "to beg ask"]) + let v = native_list_append(v, ["ยาจะติ", "verb", "ยาจามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["attha", "verb", "attha", "", "", "", "second-person plural present/imperative"]) + let v = native_list_append(v, ["อัตถะ", "verb", "อัตถะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["คัจฉะติ", "verb", "คัจฉามิ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["samādiyati", "verb", "samādiyāmi", "", "", "", "to take with"]) + let v = native_list_append(v, ["สะมาทิยะติ", "verb", "สะมาทิยามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["majja", "verb", "majja", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["มัชชะ", "verb", "มัชชะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["bhuñjati", "verb", "bhuñjāmi", "", "", "", "to eat"]) + let v = native_list_append(v, ["brūti", "verb", "brūmi", "", "", "", "say"]) + let v = native_list_append(v, ["พรูติ", "verb", "พรูมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["suṇāti", "verb", "suṇāmi", "", "", "", "to hear"]) + let v = native_list_append(v, ["อะยาจะถะ", "verb", "ayācatha", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เทเสติ", "verb", "เทเสมิ", "อเทเสสิํ", "", "", "Thai script form"]) + let v = native_list_append(v, ["อัตถิ", "verb", "อัสมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["anukampati", "verb", "anukampāmi", "", "", "", "to have pity"]) + let v = native_list_append(v, ["kampati", "verb", "kampāmi", "", "", "", "to shake to"]) + let v = native_list_append(v, ["อะนุกัมปะติ", "verb", "อะนุกัมปามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["-pajjati", "verb", "-pajjāmi", "", "", "", "to go"]) + let v = native_list_append(v, ["vigacchati", "verb", "vigacchāmi", "", "", "", "to depart"]) + let v = native_list_append(v, ["payuñjati", "verb", "payuñjāmi", "", "", "", "to harness"]) + let v = native_list_append(v, ["avatiṭṭhati", "verb", "avatiṭṭhāmi", "", "", "", "to abide"]) + let v = native_list_append(v, ["vippajahati", "verb", "vippajahāmi", "", "", "", "to abandon"]) + let v = native_list_append(v, ["atikkamati", "verb", "atikkamāmi", "", "", "", "to go beyond"]) + let v = native_list_append(v, ["sajjati", "verb", "sajjāmi", "", "", "", "to be attached"]) + let v = native_list_append(v, ["anupatati", "verb", "anupatāmi", "", "", "", "to fall upon"]) + let v = native_list_append(v, ["ᩋᩅᨲᩥᨭᩛᨲᩥ", "verb", "ᩋᩅᨲᩥᨭᩛᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["pahāya", "verb", "pahāya", "", "", "", "absolutive of pajahati"]) + let v = native_list_append(v, ["ᨸᩉᩣᨿ", "verb", "ᨸᩉᩣᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨩᩉᨲᩥ", "verb", "ᨩᩉᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᨷ᩠ᨷᨩᩉᨲᩥ", "verb", "ᩅᩥᨷ᩠ᨷᨩᩉᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᨸ᩠ᨸᨩᩉᨲᩥ", "verb", "ᩅᩥᨸ᩠ᨸᨩᩉᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨲᩥᨠ᩠ᨠᨾᨲᩥ", "verb", "ᩋᨲᩥᨠ᩠ᨠᨾᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨶᩩᨸᨲᨲᩥ", "verb", "ᩋᨶᩩᨸᨲᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ໂຫຕິ", "verb", "ໂຫມິ", "ອໂຫສິໍ", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອວຕິຏ຺ຐຕິ", "verb", "ອວຕິຏ຺ຐາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປຊຫຕິ", "verb", "ປຊຫາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປຫາຍ", "verb", "ປຫາຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊຫຕິ", "verb", "ຊຫາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ວິປ຺ປຊຫຕິ", "verb", "ວິປ຺ປຊຫາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຕິກ຺ກມຕິ", "verb", "ອຕິກ຺ກມາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຊ຺ຊຕິ", "verb", "ສຊ຺ຊາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອນຸປຕຕິ", "verb", "ອນຸປຕາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sampajjati", "verb", "sampajjāmi", "", "", "", "to turn out"]) + let v = native_list_append(v, ["-ṭhahati", "verb", "-ṭhahāmi", "", "", "", "to stand"]) + let v = native_list_append(v, ["patiṭṭhahati", "verb", "patiṭṭhahāmi", "", "", "", "to be established"]) + let v = native_list_append(v, ["วนฺทติ", "verb", "วนฺทามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ขมติ", "verb", "ขมามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["anumodati", "verb", "anumodāmi", "", "", "", "to rejoice in"]) + let v = native_list_append(v, ["modati", "verb", "modāmi", "", "", "", "to rejoiced"]) + let v = native_list_append(v, ["อนุโมทติ", "verb", "อนุโมทามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨶᩩᨾᩮᩣᨴᨲᩥ", "verb", "ᩋᨶᩩᨾᩮᩣᨴᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ททาติ", "verb", "ททามิ", "อทาสิํ", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨴᩤᨲᩥ", "verb", "ᨴᨴᩤᨾᩥ", "ᩋᨴᩤᩈᩥᩴ", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["อตฺถิ", "verb", "อสฺมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨲ᩠ᨳᩥ", "verb", "ᩋᩈ᩠ᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["อสฺสุ", "verb", "อสฺสุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩔᩩ", "verb", "ᩋᩔᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᨲ", "verb", "kata", "masculine", "pi-decl-noun", "", "Tai Tham script"]) + let v = native_list_append(v, ["สุณาติ", "verb", "สุณามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩩᨱᩣᨲᩥ", "verb", "ᩈᩩᨱᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["โหติ", "verb", "โหมิ", "อโหสิํ", "", "", "Thai script form"]) + let v = native_list_append(v, ["pariharati", "verb", "pariharāmi", "", "", "", "to keep up"]) + let v = native_list_append(v, ["ปริหรติ", "verb", "ปริหรามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩁᩥᩉᩁᨲᩥ", "verb", "ᨷᩁᩥᩉᩁᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สมิชฺฌติ", "verb", "สมิชฺฌามิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾᩥᨩ᩠ᨫᨲᩥ", "verb", "ᩈᨾᩥᨩ᩠ᨫᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["naye", "verb", "naye", "", "", "", "inflection of neti"]) + let v = native_list_append(v, ["jesi", "verb", "jesi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["बन्ध", "verb", "बन्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kantanti", "verb", "kantanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["taccheti", "verb", "tacchemi", "", "", "", "to do carpentry"]) + let v = native_list_append(v, ["akaru", "verb", "akaru", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["phallati", "verb", "phallāmi", "", "", "", "to bear fruit"]) + let v = native_list_append(v, ["soce", "verb", "soce", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["arahati", "verb", "arahāmi", "", "", "", "to be worthy"]) + let v = native_list_append(v, ["hosi", "verb", "hosi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲𑀼", "verb", "𑀅𑀲𑁆𑀲𑀼", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["សម្មតិ", "verb", "សម្មាមិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["chinda", "verb", "chinda", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["dajjā", "verb", "dajjā", "", "", "", "optative active third-person"]) + let v = native_list_append(v, ["kāhiti", "verb", "kāhiti", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["kāhati", "verb", "kāhati", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ᨠᩁᩮᩣᨲᩥ", "verb", "ᨠᩁᩮᩣᨾᩥ", "ᩋᨠᩁᩥᩴ", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["กโรติ", "verb", "กโรมิ", "อกริํ", "", "", "Thai script form"]) + let v = native_list_append(v, ["උපගච‍්ඡති", "verb", "උපගච්ඡාමි", "උපගච්ඡිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["gopeti", "verb", "gopemi", "", "", "", "to guard"]) + let v = native_list_append(v, ["ගොපෙති", "verb", "ගොපෙමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["disvā", "verb", "disvā", "", "", "", "absolutive of passati"]) + let v = native_list_append(v, ["පස‍්සති", "verb", "පස්සාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["දිස‍්වා", "verb", "දිස්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["saṃvarati", "verb", "saṃvarāmi", "", "", "", "to restrain"]) + let v = native_list_append(v, ["සංවරති", "verb", "සංවරාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["විහරති", "verb", "විහරාමි", "විහාසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["anvāssavati", "verb", "anvāssavāmi", "", "", "", "to stream into"]) + let v = native_list_append(v, ["අන්‍වාස‍්සවති", "verb", "අන්වාස්සවාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["paṭipajjati", "verb", "paṭipajjāmi", "", "", "", "to start along"]) + let v = native_list_append(v, ["පටිපජ‍්ජති", "verb", "පටිපජ්ජාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["රක‍්ඛති", "verb", "රක්ඛාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["āpajjati", "verb", "āpajjāmi", "", "", "", "to enter to"]) + let v = native_list_append(v, ["ආපජ‍්ජති", "verb", "ආපජ්ජාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["āsavati", "verb", "āsavāmi", "", "", "", "to flow"]) + let v = native_list_append(v, ["assavati", "verb", "assavāmi", "", "", "", "to flow towards"]) + let v = native_list_append(v, ["anvassavati", "verb", "anvassavāmi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["අන්‍වස‍්සවති", "verb", "අන්වස්සවාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["យាតិ", "verb", "យាមិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kilama", "verb", "kilama", "", "", "", "imperative second-person singular"]) + let v = native_list_append(v, ["āharati", "verb", "āharāmi", "āhariṃ", "", "", "to take"]) + let v = native_list_append(v, ["nipatati", "verb", "nipatāmi", "", "", "", "to fall down"]) + let v = native_list_append(v, ["vāsaṃ upagacchati", "verb", "vāsaṃ upagacchati", "", "", "", "to take up"]) + let v = native_list_append(v, ["වාසං උපගච‍්ඡති", "verb", "වාසං උපගච්ඡති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["पुनाति", "verb", "पुनाति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अत्थ", "verb", "अत्थ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["niggaṇhāti", "verb", "niggaṇhāmi", "", "", "", "to restrain"]) + let v = native_list_append(v, ["niggaṇhati", "verb", "gah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gaṇhati", "verb", "gah", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṭhapeti", "verb", "ṭhapemi", "", "", "", "causative of tiṭṭhati"]) + let v = native_list_append(v, ["ठपेति", "verb", "ठपेमि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["nīta", "verb", "nīta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["kattuṃ", "verb", "kattuṃ", "", "", "", "infinitive of karoti"]) + let v = native_list_append(v, ["kātuṃ", "verb", "kātuṃ", "", "", "", "infinitive of karoti"]) + let v = native_list_append(v, ["sakkaroti", "verb", "sakkaromi", "sakkariṃ", "", "", "to honour"]) + let v = native_list_append(v, ["payujjati", "verb", "payujjāmi", "", "", "", "to be applied"]) + let v = native_list_append(v, ["पयुज्जति", "verb", "पयुज्जामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yojeti", "verb", "yojemi", "yojesiṃ", "", "", "to yoke to"]) + let v = native_list_append(v, ["viyojeti", "verb", "viyojemi", "", "", "", "to separate"]) + let v = native_list_append(v, ["वियोजेति", "verb", "वियोजेमि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yuñjati", "verb", "yuñjāmi", "ayuñjiṃ", "", "", "to join with"]) + let v = native_list_append(v, ["pappoti", "verb", "ap", "", "", "", "Fragmentary contraction of"]) + let v = native_list_append(v, ["papponti", "verb", "papponti", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["पापुणाति", "verb", "पापुणामि", "पापुणिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पप्पोति", "verb", "पप्पोति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पप्पोन्ति", "verb", "पप्पोन्ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["rudamāna", "verb", "rudamāna", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pariyuṭṭhāti", "verb", "pariyuṭṭhāti", "", "", "", "to arise"]) + let v = native_list_append(v, ["गण्हाति", "verb", "गण्हामि", "गण्हिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["योजेति", "verb", "योजेमि", "योजेसिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tuleti", "verb", "tulemi", "tulayiṃ", "", "", "to weigh to"]) + let v = native_list_append(v, ["adhigaṇhāti", "verb", "adhigaṇhāti", "", "", "", "to surpass"]) + let v = native_list_append(v, ["paribhuñjati", "verb", "paribhuñjati", "", "", "", "to eat"]) + let v = native_list_append(v, ["vikampati", "verb", "vikampati", "", "", "", "to tremble"]) + let v = native_list_append(v, ["saṃvibhajati", "verb", "saṃvibhajati", "", "", "", "to divide"]) + let v = native_list_append(v, ["sapati", "verb", "sapāmi", "", "", "", "to swear an"]) + let v = native_list_append(v, ["bhakkhati", "verb", "bhakkh", "", "", "", "to eat"]) + let v = native_list_append(v, ["garahati", "verb", "garahāmi", "", "", "", "to reproach to"]) + let v = native_list_append(v, ["aggahi", "verb", "aggahi", "", "", "", "second/third-person singular aorist"]) + let v = native_list_append(v, ["अग्गहि", "verb", "अग्गहि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bodheti", "verb", "budh", "", "", "", "causative of bujjhati"]) + let v = native_list_append(v, ["vattati", "verb", "vattāmi", "", "", "", "exist"]) + let v = native_list_append(v, ["वत्तति", "verb", "वत्तामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sampādeti", "verb", "sampādeti", "", "", "", "to procure"]) + let v = native_list_append(v, ["upapajjati", "verb", "upapajjati", "", "", "", "to be reborn"]) + let v = native_list_append(v, ["vaḍḍhamāna", "verb", "present participle of vaḍḍhati", "", "", "", "growing"]) + let v = native_list_append(v, ["riñcati", "verb", "riñcati", "", "", "", "to leave"]) + let v = native_list_append(v, ["atināmeti", "verb", "atināmeti", "", "", "", "to pass time"]) + let v = native_list_append(v, ["santhambhati", "verb", "santhambhati", "", "", "", "to restrain oneself"]) + let v = native_list_append(v, ["ussāreti", "verb", "ussāreti", "", "", "", "to cause to"]) + let v = native_list_append(v, ["viniveṭheti", "verb", "viniveṭheti", "", "", "", "to disentangle"]) + let v = native_list_append(v, ["ussahanta", "verb", "present participle of ussahati", "", "", "", "trying"]) + let v = native_list_append(v, ["upalikkhati", "verb", "upalikkhati", "", "", "", "to scratch"]) + let v = native_list_append(v, ["vuṭṭhāti", "verb", "vuṭṭhāti", "", "", "", "to rise"]) + let v = native_list_append(v, ["करि", "verb", "करि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vijahati", "verb", "vijahāmi", "", "", "", "to abandon"]) + let v = native_list_append(v, ["sussūsati", "verb", "sussūsati", "", "", "", "to listen"]) + let v = native_list_append(v, ["abhisajjati", "verb", "abhisajjati", "", "", "", "to be angry"]) + let v = native_list_append(v, ["khobheti", "verb", "khobheti", "", "", "", "to shake"]) + let v = native_list_append(v, ["ຄັດສະຕິ", "verb", "ຄັດສາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["กม", "verb", "กม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["sambhinna", "verb", "sambhinna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["phalle", "verb", "phalle", "", "", "", "inflection of phallati"]) + let v = native_list_append(v, ["maṇḍeti", "verb", "maṇḍeti", "", "", "", "to adorn"]) + let v = native_list_append(v, ["𑀫𑀚𑁆𑀚", "verb", "𑀫𑀚𑁆𑀚", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["sobhati", "verb", "sobhati", "", "", "", "to shine"]) + let v = native_list_append(v, ["मर", "verb", "मर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhamati", "verb", "bhamati", "", "", "", "to spin whirl"]) + let v = native_list_append(v, ["sammannati", "verb", "sammannati", "", "", "", "to assent"]) + let v = native_list_append(v, ["pavisati", "verb", "pavisati", "", "", "", "to enter to"]) + let v = native_list_append(v, ["เนม", "verb", "เนม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["adenti", "verb", "adenti", "", "", "", "present third-person plural"]) + let v = native_list_append(v, ["adadu", "verb", "adadu", "", "", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["pasāsati", "verb", "pasāsati", "", "", "", "to teach"]) + let v = native_list_append(v, ["kīḷati", "verb", "kīḷāmi", "", "", "", "to play sport"]) + let v = native_list_append(v, ["करे", "verb", "करे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ācarati", "verb", "ācarāmi", "", "", "", "to practice perform"]) + let v = native_list_append(v, ["āhacca", "verb", "āhacca", "", "", "", "absolutive of āharati"]) + let v = native_list_append(v, ["abhitiṭṭhati", "verb", "abhitiṭṭhāmi", "", "", "", "to stand out"]) + let v = native_list_append(v, ["sutvā", "verb", "sutvā", "", "", "", "absolutive of suṇāti"]) + let v = native_list_append(v, ["สุตวา", "verb", "สุตวา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุตฺวา", "verb", "สุตฺวา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["sāveti", "verb", "sāvemi", "sāvesiṃ", "", "", "causative of suṇāti"]) + let v = native_list_append(v, ["sāvayati", "verb", "su", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anussāveti", "verb", "anussāvemi", "anussāvesiṃ", "", "", "to announce"]) + let v = native_list_append(v, ["anussāvayati", "verb", "su", "", "", "", "See anussāveti for"]) + let v = native_list_append(v, ["อะนุสสาเวติ", "verb", "อะนุสสาเวมิ", "อะนุสสาเวสิง", "", "", "Thai script form"]) + let v = native_list_append(v, ["ogāhati", "verb", "ogāhati", "", "", "", "to plunge or"]) + let v = native_list_append(v, ["ruje", "verb", "ruje", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["hasati", "verb", "hasati", "", "", "", "to laugh to"]) + let v = native_list_append(v, ["oroha", "verb", "oroha", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["vasati", "verb", "vasāmi", "vasiṃ", "", "", "to dwell"]) + let v = native_list_append(v, ["rosanti", "verb", "rosanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["nikkhamati", "verb", "nikkhamāmi", "", "", "", "to go out"]) + let v = native_list_append(v, ["နိက္ခမတိ", "verb", "နိက္ခမာမိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပါပုဏာတိ", "verb", "ပါပုဏာမိ", "ပါပုဏိံ", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ខន", "verb", "ខន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["udeti", "verb", "udemi", "udesiṃ", "", "", "to go out"]) + let v = native_list_append(v, ["udayati", "verb", "i", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ອຸເທຕິ", "verb", "ອຸເທມິ", "ອຸເທສິງ", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸທະຍະຕິ", "verb", "i", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸທະຢະຕິ", "verb", "i", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["jayati", "verb", "ji", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["jināti", "verb", "ji", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["जेति", "verb", "जेमि", "अजेसिं", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["जिनाति", "verb", "ji", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ຊະຍະຕິ", "verb", "ji", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊະຢະຕິ", "verb", "ji", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊິນາຕິ", "verb", "ji", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊຍຕິ", "verb", "ji", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ເຊຕິ", "verb", "ເຊມິ", "ອເຊສິໍ", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພະວະຕິ", "verb", "ພະວາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["abhiyujjhati", "verb", "abhiyujjhāmi", "", "", "", "to contend with"]) + let v = native_list_append(v, ["dameti", "verb", "damemi", "", "", "", "to tame to"]) + let v = native_list_append(v, ["damayati", "verb", "dam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["হেতি", "verb", "হেতি", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ວະລະ", "verb", "vala", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["majjati", "verb", "majjāmi", "", "", "", "to wipe to"]) + let v = native_list_append(v, ["យាម", "verb", "យាម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["খন", "verb", "খন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["khipati", "verb", "khipāmi", "", "", "", "to throw"]) + let v = native_list_append(v, ["ukkhipati", "verb", "ukkhipāmi", "", "", "", "to hold up"]) + let v = native_list_append(v, ["ອຸກຂິປະຕິ", "verb", "ອຸກຂິປາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທາວະຕິ", "verb", "ທາວາມິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["កម", "verb", "កម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sammati", "verb", "sammāmi", "", "", "", "to be appeased"]) + let v = native_list_append(v, ["ວິຊະຫະຕິ", "verb", "ວິຊະຫາມິ", "", "", "", "to abandon"]) + let v = native_list_append(v, ["ວິຫາຍະ", "verb", "ວິຫາຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["vihāya", "verb", "vihāya", "", "", "", "absolutive of vijahati"]) + let v = native_list_append(v, ["rūhati", "verb", "rūhāmi", "", "", "", "to grow"]) + let v = native_list_append(v, ["ropeti", "verb", "ropemi", "", "", "", "causative of rūhati"]) + let v = native_list_append(v, ["abhiropeti", "verb", "ruh", "no-table-tags", "pi-conj-special", "", "to concentrate on"]) + let v = native_list_append(v, ["bharati", "verb", "bhar", "no-table-tags", "pi-conj-special", "", "to bear support"]) + let v = native_list_append(v, ["vicarati", "verb", "vicarāmi", "", "", "", "to move"]) + let v = native_list_append(v, ["kandati", "verb", "kandati", "", "", "", "to cry lament"]) + let v = native_list_append(v, ["añjati", "verb", "añjati", "", "", "", "to pull"]) + let v = native_list_append(v, ["adado", "verb", "adado", "", "", "", "second-person singular imperfect"]) + let v = native_list_append(v, ["සිනා", "verb", "සිනා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pabujjhati", "verb", "pabujjhati", "", "", "", "to awaken"]) + let v = native_list_append(v, ["pabuddha", "verb", "pabuddha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["बन्धति", "verb", "बन्धामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["lumpe", "verb", "lumpe", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["pabhāti", "verb", "pabhāti", "", "", "", "to shine forth"]) + let v = native_list_append(v, ["bubhukkhita", "verb", "bubhukkhita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["bubhukkhati", "verb", "bubhukkhati", "", "", "", "desiderative of bhuñjati"]) + let v = native_list_append(v, ["pabhāta", "verb", "pabhāta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["সম্মতি", "verb", "সম্মামি", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["चलति", "verb", "चलामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᩒᨽᩣᩈᩮᨲᩥ", "verb", "ᩒᨽᩣᩈᩮᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["akkhāta", "verb", "akkhāta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["အနေ", "verb", "အနေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["pucchati", "verb", "pucchāmi", "", "", "", "to ask"]) + let v = native_list_append(v, ["ຂະນະ", "verb", "khana", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["atirocati", "verb", "atirocāmi", "", "", "", "to shine magnificently"]) + let v = native_list_append(v, ["rocati", "verb", "rocāmi", "", "", "", "to please"]) + let v = native_list_append(v, ["acceti", "verb", "accemi", "accesiṃ", "", "", "to elapse"]) + let v = native_list_append(v, ["adhiṭṭhāti", "verb", "adhiṭṭhāmi", "adhiṭṭhahiṃ", "", "", "to stand on"]) + let v = native_list_append(v, ["ajjhāvasati", "verb", "ajjhāvasāmi", "", "", "", "to inhabit to"]) + let v = native_list_append(v, ["icchati", "verb", "icchāmi", "", "", "", "to wish desire"]) + let v = native_list_append(v, ["kamasi", "verb", "kamasi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["sehi", "verb", "sehi", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["অসি", "verb", "অসি", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["वनोति", "verb", "van", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["වර", "verb", "වර", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අස‍්ස", "verb", "අස්ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අත්‍ථි", "verb", "අස්මි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["อสฺส", "verb", "อสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["kaḍḍhati", "verb", "kaḍḍhāmi", "", "", "", "to draw to"]) + let v = native_list_append(v, ["saṅkaḍḍhati", "verb", "saṅkaḍḍhāmi", "", "", "", "to collect"]) + let v = native_list_append(v, ["සඞ‍්කඩ‍්ඪති", "verb", "සඞ්කඩ්ඪාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["saṅkaḍḍhitvā", "verb", "saṅkaḍḍhitvā", "", "", "", "absolutive of saṅkaḍḍhati"]) + let v = native_list_append(v, ["සඞ‍්කඩ‍්ඪිත්‍වා", "verb", "සඞ්කඩ්ඪිත්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["maddati", "verb", "maddati", "", "", "", "to crush tread"]) + let v = native_list_append(v, ["bandhitvā", "verb", "bandhitvā", "", "", "", "absolutive of bandhati"]) + let v = native_list_append(v, ["බන්‍ධිත්‍වා", "verb", "බන්ධිත්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["බන්‍ධති", "verb", "බන්ධාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["āyamati", "verb", "āyamāmi", "", "", "", "stretch extend stretch"]) + let v = native_list_append(v, ["vāyamati", "verb", "vāyamāmi", "", "", "", "to struggle to"]) + let v = native_list_append(v, ["වායමති", "verb", "වායමාමි", "", "", "", "to struggle to"]) + let v = native_list_append(v, ["uttarati", "verb", "uttarāmi", "udatāriṃ", "", "", "to cross over"]) + let v = native_list_append(v, ["උත‍්තරති", "verb", "උත්තරාමි", "උදතාරිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["උත‍්තරෙය්‍යං", "verb", "උත්තරෙය්යං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["uttareyyaṃ", "verb", "uttareyyaṃ", "", "", "", "first-person singular optative"]) + let v = native_list_append(v, ["nissayati", "verb", "nissayāmi", "", "", "", "to lean on"]) + let v = native_list_append(v, ["nissāya", "verb", "nissāya", "", "", "", "absolutive of nissayati"]) + let v = native_list_append(v, ["නිස‍්සාය", "verb", "නිස්සාය", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["නිස‍්සයති", "verb", "නිස්සයාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["तसे", "verb", "तसे", "", "", "", "optative active singular"]) + let v = native_list_append(v, ["दमयति", "verb", "dam", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["සන‍්නිසීදති", "verb", "සන්නිසීදාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ᩈᨶ᩠ᨶᩥᩈᩦᨴᨲᩥ", "verb", "ᩈᨶ᩠ᨶᩥᩈᩦᨴᩤᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปะระทารัง คัจฉะติ", "verb", "ปะระทารัง คัจฉะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ဥပ္ပဇ္ဇတိ", "verb", "ဥပ္ပဇ္ဇာမိ", "ဥပ္ပဇ္ဇိံ", "", "", "to arise"]) + let v = native_list_append(v, ["rundhati", "verb", "rundhāmi", "", "", "", "to restrain to"]) + let v = native_list_append(v, ["nirujjhati", "verb", "nirujjhāmi", "", "", "", "to cease to"]) + let v = native_list_append(v, ["နိရုဇ္ဈတိ", "verb", "နိရုဇ္ဈာမိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝဒတိ", "verb", "ဝဒါမိ", "အဝေါစံ", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အဝေါစ", "verb", "အဝေါစ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["khaṇati", "verb", "khaṇāmi", "", "", "", "to dig"]) + let v = native_list_append(v, ["paṭirosati", "verb", "paṭirosāmi", "", "", "", "to annoy in"]) + let v = native_list_append(v, ["akkosati", "verb", "akkosāmi", "akkocchiṃ", "", "", "to scold to"]) + let v = native_list_append(v, ["paccakkosati", "verb", "paccakkosāmi", "", "", "", "to swear back"]) + let v = native_list_append(v, ["bhaṇḍati", "verb", "bhaṇḍāmi", "", "", "", "to quarrel"]) + let v = native_list_append(v, ["paṭibhaṇḍati", "verb", "paṭibhaṇḍāmi", "", "", "", "to argue back"]) + let v = native_list_append(v, ["vanoti", "verb", "van", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vanute", "verb", "vanute", "", "", "", "present middle third-person"]) + let v = native_list_append(v, ["nayati", "verb", "nī", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vinayati", "verb", "nī", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["turita", "verb", "turita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["तुरितो", "verb", "turito", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["turito", "verb", "turito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["turitaṃ", "verb", "turitaṃ", "", "", "", "inflection of turita"]) + let v = native_list_append(v, ["upādāya", "verb", "upādāya", "", "", "", "absolutive of upādiyati"]) + let v = native_list_append(v, ["paritassati", "verb", "tas", "", "", "", "to tremble to"]) + let v = native_list_append(v, ["tasati", "verb", "tasāmi", "", "", "", "to tremble to"]) + let v = native_list_append(v, ["දෙසෙති", "verb", "දෙසෙමි", "අදෙසෙසිං", "", "", "to point out"]) + let v = native_list_append(v, ["𑀯𑀲", "verb", "𑀯𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["bhijjati", "verb", "bhijjāmi", "", "", "", "passive of bhindati"]) + let v = native_list_append(v, ["abhijānāti", "verb", "abhijānāmi", "", "", "", "to know to"]) + let v = native_list_append(v, ["sandati", "verb", "sandāmi", "", "", "", "to flow"]) + let v = native_list_append(v, ["vijeti", "verb", "vijemi", "vijayiṃ", "", "", "to conquer to"]) + let v = native_list_append(v, ["vijayati", "verb", "ji", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["vijināti", "verb", "ji", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["सोचे", "verb", "सोचे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑄃𑄖𑄴𑄗", "verb", "𑄃𑄖𑄴𑄗", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄌𑄢𑄖𑄨", "verb", "𑄌𑄢𑄂𑄟𑄨", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["pavattati", "verb", "pavattāmi", "", "", "", "to arise to"]) + let v = native_list_append(v, ["𑄛𑅇𑄖𑄴𑄖𑄖𑄨", "verb", "𑄛𑅇𑄖𑄴𑄖𑄂𑄟𑄨", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["vāreti", "verb", "vāremi", "", "", "", "to prevent to"]) + let v = native_list_append(v, ["tāyati", "verb", "tāyāmi", "", "", "", "to protect"]) + let v = native_list_append(v, ["𑄢𑄇𑄴𑄈𑄖𑄨", "verb", "𑄢𑄇𑄴𑄈𑄂𑄟𑄨", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄖𑄂𑄠𑄖𑄨", "verb", "𑄖𑄂𑄠𑄂𑄟𑄨", "", "", "", "to protect"]) + let v = native_list_append(v, ["āneti", "verb", "ānemi", "ānayiṃ", "", "", "to bring to"]) + let v = native_list_append(v, ["samāneti", "verb", "samānemi", "samānayiṃ", "", "", "to bring together"]) + let v = native_list_append(v, ["သုဏာတိ", "verb", "သုဏာမိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["upāsati", "verb", "upāsāmi", "", "", "", "to attend to"]) + let v = native_list_append(v, ["payirupāsati", "verb", "payirupāsāmi", "", "", "", "to sit beside"]) + let v = native_list_append(v, ["පයිරුපාසති", "verb", "පයිරුපාසාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sīdati", "verb", "sīdāmi", "", "", "", "to sink to"]) + let v = native_list_append(v, ["ගන‍්ත්‍වා", "verb", "ගන්ත්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pasīdati", "verb", "pasīdāmi", "", "", "", "to be serene"]) + let v = native_list_append(v, ["gantvā", "verb", "gantvā", "", "", "", "absolutive of gacchati"]) + let v = native_list_append(v, ["paccorohitvā", "verb", "paccorohitvā", "", "", "", "absolutive of paccorohati"]) + let v = native_list_append(v, ["පච‍්චොරොහිත්‍වා", "verb", "පච්චොරොහිත්වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පච‍්චොරොහති", "verb", "පච්චොරොහාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["lumpati", "verb", "lumpāmi", "", "", "", "to break to"]) + let v = native_list_append(v, ["muñcati", "verb", "muñcāmi", "amuñciṃ", "", "", "to loose"]) + let v = native_list_append(v, ["sinoti", "verb", "sinomi", "", "", "", "to bind"]) + let v = native_list_append(v, ["sināti", "verb", "sināmi", "", "", "", "to bathe"]) + let v = native_list_append(v, ["අක‍්කොසති", "verb", "අක්කොසාමි", "අක්කොච්ඡිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["vadhati", "verb", "vadhāmi", "avadhiṃ", "", "", "to strike to"]) + let v = native_list_append(v, ["වධති", "verb", "වධාමි", "අවධිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ජෙති", "verb", "ජෙමි", "අජෙසිං", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["upanayhati", "verb", "upanayhāmi", "", "", "", "to tie up"]) + let v = native_list_append(v, ["උපනය‍්හති", "verb", "උපනය්හාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සම‍්මති", "verb", "සම්මාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ජයති", "verb", "ji", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pasammati", "verb", "sam", "", "", "", "to become allayed"]) + let v = native_list_append(v, ["upasammati", "verb", "upasammāmi", "", "", "", "to grow calm"]) + let v = native_list_append(v, ["උපසම‍්මති", "verb", "උපසම්මාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["නුදති", "verb", "නුදාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["नुदति", "verb", "नुदामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["āruhati", "verb", "āruhāmi", "", "", "", "to ascend climb"]) + let v = native_list_append(v, ["ආරුහති", "verb", "ආරුහාමි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["āruyha", "verb", "āruyha", "", "", "", "absolutive of āruhati"]) + let v = native_list_append(v, ["ආරුය‍්හ", "verb", "ආරුය්හ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["rujati", "verb", "rujāmi", "", "", "", "to cause pain"]) + let v = native_list_append(v, ["lujjati", "verb", "lujjāmi", "", "", "", "to be broken"]) + let v = native_list_append(v, ["olujjati", "verb", "olujjāmi", "", "", "", "to fall to"]) + let v = native_list_append(v, ["karosi", "verb", "karosi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["desaye", "verb", "desaye", "", "", "", "inflection of deseti"]) + let v = native_list_append(v, ["jhāpeti", "verb", "jhāpeti", "", "", "", "causative of jhāyati"]) + let v = native_list_append(v, ["झापेति", "verb", "झापेति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yodheti", "verb", "yodheti", "", "", "", "causative of yujjhati"]) + let v = native_list_append(v, ["योधेति", "verb", "योधेति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वपति", "verb", "वपति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vapati", "verb", "vapati", "", "", "", "to sow"]) + let v = native_list_append(v, ["jalati", "verb", "jalati", "", "", "", "to burn"]) + let v = native_list_append(v, ["vassati", "verb", "vassati", "", "", "", "to rain shower"]) + let v = native_list_append(v, ["sibbati", "verb", "sibbati", "", "", "", "to sew stitch"]) + let v = native_list_append(v, ["katheti", "verb", "katheti", "", "", "", "to tell narrate"]) + let v = native_list_append(v, ["siñcati", "verb", "siñcati", "", "", "", "to sprinkle"]) + let v = native_list_append(v, ["avattharati", "verb", "avattharati", "", "", "", "to strew cover"]) + let v = native_list_append(v, ["attharati", "verb", "attharati", "", "", "", "to spread out"]) + let v = native_list_append(v, ["ahāsi", "verb", "ahāsi", "", "", "", "aorist active second/third-person"]) + let v = native_list_append(v, ["අහාසි", "verb", "අහාසි", "", "", "", "aorist active second/third-person"]) + let v = native_list_append(v, ["sakkoti", "verb", "sakkomi", "", "", "", "to be able"]) + let v = native_list_append(v, ["sakkuṇāti", "verb", "sakkuṇāmi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sakkuṇoti", "verb", "sakk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sakkati", "verb", "sakkāmi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["สกฺโกติ", "verb", "สกฺโกมิ", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["สกฺกติ", "verb", "สกฺกามิ", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["gūhati", "verb", "gūhāmi", "", "", "", "to conceal"]) + let v = native_list_append(v, ["आपज्जति", "verb", "आपज्जामि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वस", "verb", "वस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["punāti", "verb", "punāti", "", "", "", "to cleanse purify"]) + let v = native_list_append(v, ["jhāyati", "verb", "jhāyati", "", "", "", "to burn be"]) + let v = native_list_append(v, ["vijjhati", "verb", "vijjhati", "", "", "", "to pierce perforate"]) + let v = native_list_append(v, ["paharati", "verb", "paharati", "", "", "", "to strike hit"]) + let v = native_list_append(v, ["ᨿᩣᨧᨲᩥ", "verb", "ᨿᩣᨧᩣᨾᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["te", "adj", "te", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["accent", "adj", "accent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["so", "adj", "so", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["sama", "adj", "sama", "", "", "", "even level"]) + let v = native_list_append(v, ["there", "adj", "there", "", "", "", "inflection of thera"]) + let v = native_list_append(v, ["sent", "adj", "sent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["cute", "adj", "cute", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["ore", "adj", "ore", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sake", "adj", "sake", "", "", "", "inflection of saka"]) + let v = native_list_append(v, ["त", "adj", "त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["न", "adj", "न", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ta", "adj", "ta", "", "", "", "that"]) + let v = native_list_append(v, ["eta", "adj", "eta", "", "", "", "this"]) + let v = native_list_append(v, ["theta", "adj", "theta", "", "", "", "reliable"]) + let v = native_list_append(v, ["kappa", "adj", "kappa", "", "", "", "fit suitable worthy"]) + let v = native_list_append(v, ["ne", "adj", "ne", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["na", "adj", "na", "", "", "", "that"]) + let v = native_list_append(v, ["mate", "adj", "mate", "", "", "", "inflection of mata"]) + let v = native_list_append(v, ["pare", "adj", "pare", "", "", "", "inflection of para"]) + let v = native_list_append(v, ["same", "adj", "same", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["santo", "adj", "santo", "", "", "", "nominative singular/plural masculine"]) + let v = native_list_append(v, ["ante", "adj", "ante", "", "", "", "inflection of anta"]) + let v = native_list_append(v, ["tulla", "adj", "tulla", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sa", "adj", "sa", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["sanno", "adj", "sanno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["sukka", "adj", "sukka", "", "", "", "white"]) + let v = native_list_append(v, ["passato", "adj", "passato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["accento", "adj", "accento", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["gato", "adj", "gato", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["gata", "adj", "gata", "", "", "", "past participle of"]) + let v = native_list_append(v, ["para", "adj", "para", "", "", "", "other another"]) + let v = native_list_append(v, ["វត្ត", "adj", "វត្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["gate", "adj", "gate", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["avere", "adj", "avere", "", "", "", "inflection of avera"]) + let v = native_list_append(v, ["vara", "adj", "vara", "", "", "", "excellent"]) + let v = native_list_append(v, ["बुद्ध", "adj", "बुद्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["guru", "adj", "guru", "", "", "", "heavy"]) + let v = native_list_append(v, ["paro", "adj", "paro", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["tad", "adj", "tad", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["tulle", "adj", "tulle", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["site", "adj", "site", "", "", "", "inflection of sita"]) + let v = native_list_append(v, ["mato", "adj", "mato", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["ente", "adj", "ente", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["karoti", "adj", "karoti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kalyāṇa", "adj", "kalyāṇa", "", "", "", "beautiful charming"]) + let v = native_list_append(v, ["bujjhati", "adj", "bujjhati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ora", "adj", "ora", "", "", "", "lower"]) + let v = native_list_append(v, ["anti", "adj", "anti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["patto", "adj", "patto", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["oro", "adj", "oro", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["caja", "adj", "caja", "", "", "", "gerundive of cajati"]) + let v = native_list_append(v, ["mata", "adj", "mata", "", "", "", "dead"]) + let v = native_list_append(v, ["sento", "adj", "sento", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["amate", "adj", "amate", "", "", "", "inflection of amata"]) + let v = native_list_append(v, ["senta", "adj", "senta", "", "", "", "vocative singular masculine/neuter"]) + let v = native_list_append(v, ["senti", "adj", "senti", "", "", "", "nominative/vocative/accusative plural neuter"]) + let v = native_list_append(v, ["sente", "adj", "sente", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["bali", "adj", "bali", "", "", "", "inflection of balin"]) + let v = native_list_append(v, ["ime", "adj", "ime", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["पर", "adj", "पर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["amato", "adj", "amato", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["kato", "adj", "kato", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["sitta", "adj", "sitta", "", "", "", "sprinkled"]) + let v = native_list_append(v, ["jaro", "adj", "jaro", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["seta", "adj", "seta", "", "", "", "white"]) + let v = native_list_append(v, ["kate", "adj", "kate", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["amata", "adj", "amata", "", "", "", "everlasting"]) + let v = native_list_append(v, ["tinta", "adj", "tinta", "", "", "", "wet"]) + let v = native_list_append(v, ["sati", "adj", "sati", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["matte", "adj", "matte", "", "", "", "inflection of matta"]) + let v = native_list_append(v, ["kappe", "adj", "kappe", "", "", "", "inflection of kappa"]) + let v = native_list_append(v, ["asoko", "adj", "asoko", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ete", "adj", "ete", "", "", "", "nominative/accusative plural masculine"]) + let v = native_list_append(v, ["kisa", "adj", "kisa", "", "", "", "gaunt haggard"]) + let v = native_list_append(v, ["pasado", "adj", "pasado", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ima", "adj", "ima", "", "", "", "this very close"]) + let v = native_list_append(v, ["tasa", "adj", "tasa", "", "", "", "movable"]) + let v = native_list_append(v, ["serin", "adj", "serin", "", "", "", "independent"]) + let v = native_list_append(v, ["santa", "adj", "santa", "", "", "", "present active participle"]) + let v = native_list_append(v, ["vagga", "adj", "vagga", "", "", "", "separated"]) + let v = native_list_append(v, ["तद्", "adj", "तद्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["honte", "adj", "honte", "", "", "", "inflection of hoti"]) + let v = native_list_append(v, ["eso", "adj", "eso", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["esa", "adj", "esa", "", "", "", "alternative stem of"]) + let v = native_list_append(v, ["naya", "adj", "naya", "", "", "", "leading"]) + let v = native_list_append(v, ["matta", "adj", "matta", "", "", "", "intoxicated"]) + let v = native_list_append(v, ["जरा", "adj", "जरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tato", "adj", "tato", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["सुख", "adj", "सुख", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अभय", "adj", "अभय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अनेक", "adj", "अनेक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["mutta", "adj", "mutta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["maha", "adj", "maha", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["kanto", "adj", "kanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["kanta", "adj", "kanta", "", "", "", "lovely"]) + let v = native_list_append(v, ["ena", "adj", "ena", "", "", "", "this"]) + let v = native_list_append(v, ["स", "adj", "स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sito", "adj", "sito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["seri", "adj", "seri", "", "", "", "inflection of serin"]) + let v = native_list_append(v, ["suci", "adj", "suci", "", "", "", "pure clean white"]) + let v = native_list_append(v, ["tā", "adj", "tā", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["accanto", "adj", "accanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["mudu", "adj", "mudu", "", "", "", "supple"]) + let v = native_list_append(v, ["matto", "adj", "matto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["nassa", "adj", "nassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["garu", "adj", "garu", "", "", "", "heavy"]) + let v = native_list_append(v, ["lutto", "adj", "lutto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["taso", "adj", "taso", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["saka", "adj", "saka", "", "", "", "ones own"]) + let v = native_list_append(v, ["sita", "adj", "sita", "", "", "", "white"]) + let v = native_list_append(v, ["samo", "adj", "samo", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["anto", "adj", "anto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["sant", "adj", "sant", "", "", "", "alternative citation form"]) + let v = native_list_append(v, ["lolo", "adj", "lolo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["andha", "adj", "andha", "", "", "", "blind"]) + let v = native_list_append(v, ["ครู", "adj", "ครู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["enta", "adj", "enta", "", "", "", "present active participle"]) + let v = native_list_append(v, ["manda", "adj", "manda", "", "", "", "slow"]) + let v = native_list_append(v, ["calante", "adj", "calante", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["carato", "adj", "carato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["गुरु", "adj", "गुरु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["धीरे", "adj", "धीरे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["युवा", "adj", "युवा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नया", "adj", "नया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गुरू", "adj", "गुरू", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["datte", "adj", "datte", "", "", "", "inflection of datta"]) + let v = native_list_append(v, ["amara", "adj", "amara", "", "", "", "immortal"]) + let v = native_list_append(v, ["anta", "adj", "anta", "", "", "", "lowest inferior"]) + let v = native_list_append(v, ["अनाथ", "adj", "अनाथ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["उत्तर", "adj", "उत्तर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tase", "adj", "tase", "", "", "", "inflection of tasa"]) + let v = native_list_append(v, ["vare", "adj", "vare", "", "", "", "inflection of vara"]) + let v = native_list_append(v, ["lutte", "adj", "lutte", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["बाल", "adj", "बाल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dante", "adj", "dante", "", "", "", "inflection of danta"]) + let v = native_list_append(v, ["santi", "adj", "santi", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["sante", "adj", "sante", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["matā", "adj", "matā", "", "", "", "inflection of mata"]) + let v = native_list_append(v, ["sā", "adj", "sā", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["rosato", "adj", "rosato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["bahu", "adj", "bahu", "", "", "", "much many"]) + let v = native_list_append(v, ["neka", "adj", "neka", "", "", "", "several"]) + let v = native_list_append(v, ["passant", "adj", "passant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["pakata", "adj", "pakata", "", "", "", "done made"]) + let v = native_list_append(v, ["tassa", "adj", "tassa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["sacco", "adj", "sacco", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["patito", "adj", "patito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["tippa", "adj", "tippa", "", "", "", "sharp"]) + let v = native_list_append(v, ["patte", "adj", "patte", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["enti", "adj", "enti", "", "", "", "feminine vocative singular"]) + let v = native_list_append(v, ["passante", "adj", "passante", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["passati", "adj", "passati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["passanti", "adj", "passanti", "", "", "", "nominative/vocative/accusative plural neuter"]) + let v = native_list_append(v, ["accenti", "adj", "accenti", "", "", "", "vocative feminine singular"]) + let v = native_list_append(v, ["असम", "adj", "असम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["calato", "adj", "calato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["calati", "adj", "calati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["carati", "adj", "carati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["rosati", "adj", "rosati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["patita", "adj", "patita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["patite", "adj", "patite", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sakko", "adj", "sakko", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ตา", "adj", "ตา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["samassa", "adj", "samassa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["sutta", "adj", "sutta", "", "", "", "asleep"]) + let v = native_list_append(v, ["vedente", "adj", "vedente", "", "", "", "inflection of vedeti"]) + let v = native_list_append(v, ["ehi", "adj", "ehi", "", "", "", "masculine/neuter instrumental/ablative plural"]) + let v = native_list_append(v, ["ตาย", "adj", "ตาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["sapato", "adj", "sapato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["neto", "adj", "neto", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["sute", "adj", "sute", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["suta", "adj", "suta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["udito", "adj", "udito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["udita", "adj", "udita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["udite", "adj", "udite", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sudante", "adj", "sudante", "", "", "", "inflection of sudanta"]) + let v = native_list_append(v, ["ritta", "adj", "ritta", "", "", "", "blank vacant empty"]) + let v = native_list_append(v, ["sutena", "adj", "sutena", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["antena", "adj", "antena", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["sako", "adj", "sako", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["uju", "adj", "uju", "", "", "", "straight right"]) + let v = native_list_append(v, ["sacca", "adj", "sacca", "", "", "", "true"]) + let v = native_list_append(v, ["anagārika", "adj", "anagārika", "", "", "", "homeless"]) + let v = native_list_append(v, ["dinna", "adj", "dinna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["lola", "adj", "lola", "", "", "", "wavering unsteady agitated"]) + let v = native_list_append(v, ["उत्तम", "adj", "उत्तम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sato", "adj", "sato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["jahati", "adj", "jahati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["rassa", "adj", "rassa", "", "", "", "short"]) + let v = native_list_append(v, ["kante", "adj", "kante", "", "", "", "inflection of kanta"]) + let v = native_list_append(v, ["vedeti", "adj", "vedeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kantena", "adj", "kantena", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["accenta", "adj", "accenta", "", "", "", "vocative singular masculine/neuter"]) + let v = native_list_append(v, ["बहु", "adj", "बहु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भवति", "adj", "भवति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["nayo", "adj", "nayo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["calanti", "adj", "calanti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["घोर", "adj", "घोर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भीम", "adj", "भीम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["សុខ", "adj", "សុខ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ຕາ", "adj", "ຕາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["seso", "adj", "seso", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ពុទ្ធ", "adj", "ពុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["भुज", "adj", "भुज", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मह", "adj", "मह", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अकिञ्चन", "adj", "अकिञ्चन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अगद", "adj", "अगद", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["orassa", "adj", "orassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["ພຸດທະ", "adj", "ພຸດທະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["वीर", "adj", "वीर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["lutta", "adj", "lutta", "", "", "", "broken cut off"]) + let v = native_list_append(v, ["बाला", "adj", "बाला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पाप", "adj", "पाप", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sokin", "adj", "sokin", "", "", "", "sorrowful"]) + let v = native_list_append(v, ["matassa", "adj", "matassa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["sinna", "adj", "sinna", "", "", "", "covered in sweat"]) + let v = native_list_append(v, ["पुराण", "adj", "पुराण", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["हरति", "adj", "हरति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सीदति", "adj", "सीदति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गच्छति", "adj", "गच्छति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["चरति", "adj", "चरति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पूर", "adj", "पूर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sese", "adj", "sese", "", "", "", "inflection of sesa"]) + let v = native_list_append(v, ["तरति", "adj", "तरति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["युवन्", "adj", "युवन्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["patta", "adj", "patta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["harati", "adj", "harati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ต", "adj", "ต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["น", "adj", "น", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ส", "adj", "ส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุข", "adj", "สุข", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ภูต", "adj", "ภูต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["pacato", "adj", "pacato", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["pacati", "adj", "pacati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["sakka", "adj", "sakka", "", "", "", "gerundive of sakkoti"]) + let v = native_list_append(v, ["साधु", "adj", "साधु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dinne", "adj", "dinne", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["vakka", "adj", "vakka", "", "", "", "crooked"]) + let v = native_list_append(v, ["ສາ", "adj", "ສາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sabba", "adj", "sabba", "", "", "", "whole"]) + let v = native_list_append(v, ["ຕາຍ", "adj", "ຕາຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["tarante", "adj", "tarante", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["tarato", "adj", "tarato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["tarati", "adj", "tarati", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sassata", "adj", "sassata", "", "", "", "eternal"]) + let v = native_list_append(v, ["sassate", "adj", "sassate", "", "", "", "inflection of sassata"]) + let v = native_list_append(v, ["nudati", "adj", "nudati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["nudato", "adj", "nudato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["nudant", "adj", "nudant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["nudanti", "adj", "nudanti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["nudante", "adj", "nudante", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["orato", "adj", "orato", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["มหา", "adj", "มหา", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["พาล", "adj", "พาล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["พาหุ", "adj", "พาหุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สติ", "adj", "สติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["roseti", "adj", "roseti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["damma", "adj", "damma", "", "", "", "gerundive of dameti"]) + let v = native_list_append(v, ["वसति", "adj", "वसति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pacante", "adj", "pacante", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["karoto", "adj", "karoto", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["सा", "adj", "सा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vedenti", "adj", "vedenti", "", "", "", "inflection of vedeti"]) + let v = native_list_append(v, ["damme", "adj", "damme", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["gutta", "adj", "gutta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sesa", "adj", "sesa", "", "", "", "remaining"]) + let v = native_list_append(v, ["seto", "adj", "seto", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["अन्त", "adj", "अन्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["mahant", "adj", "mahant", "", "", "", "great big massive"]) + let v = native_list_append(v, ["parama", "adj", "parama", "", "", "", "superior best excellent"]) + let v = native_list_append(v, ["दन्त", "adj", "दन्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["lole", "adj", "lole", "", "", "", "inflection of lola"]) + let v = native_list_append(v, ["ने", "adj", "ने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सम", "adj", "सम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sadhana", "adj", "sadhana", "", "", "", "rich wealthy"]) + let v = native_list_append(v, ["adhika", "adj", "adhika", "", "", "", "exceeding superior"]) + let v = native_list_append(v, ["honti", "adj", "honti", "", "", "", "present active participle"]) + let v = native_list_append(v, ["matena", "adj", "matena", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["वर", "adj", "वर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["calant", "adj", "calant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["sutte", "adj", "sutte", "", "", "", "inflection of sutta"]) + let v = native_list_append(v, ["တ", "adj", "တ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["န", "adj", "န", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["seti", "adj", "seti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["honto", "adj", "honto", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["vidu", "adj", "vidu", "", "", "", "inflection of vidū"]) + let v = native_list_append(v, ["vatto", "adj", "vatto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["pakato", "adj", "pakato", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["pakate", "adj", "pakate", "", "", "", "inflection of pakata"]) + let v = native_list_append(v, ["tena", "adj", "tena", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["-ga", "adj", "-ga", "", "", "", "going"]) + let v = native_list_append(v, ["entassa", "adj", "entassa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["นะ", "adj", "นะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["dament", "adj", "dament", "", "", "", "present participle of"]) + let v = native_list_append(v, ["សតិ", "adj", "សតិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["jamma", "adj", "jamma", "", "", "", "vulgar contemptible"]) + let v = native_list_append(v, ["-ge", "adj", "-ge", "", "", "", "inflection of -ga"]) + let v = native_list_append(v, ["vatte", "adj", "vatte", "", "", "", "inflection of vatta"]) + let v = native_list_append(v, ["tarant", "adj", "tarant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["nenti", "adj", "nenti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["aroga", "adj", "aroga", "", "", "", "healthy free from"]) + let v = native_list_append(v, ["bāle", "adj", "bāle", "", "", "", "inflection of bāla"]) + let v = native_list_append(v, ["अमर", "adj", "अमर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["វាល", "adj", "វាល", "", "", "", "malicious troublesome difficult"]) + let v = native_list_append(v, ["গরু", "adj", "গরু", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["danto", "adj", "danto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["অনেক", "adj", "অনেক", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ধীর", "adj", "ধীর", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["adda", "adj", "adda", "", "", "", "moist"]) + let v = native_list_append(v, ["পরে", "adj", "পরে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["উত্তর", "adj", "উত্তর", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ত", "adj", "ত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ন", "adj", "ন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["স", "adj", "স", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["sutto", "adj", "sutto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["mahati", "adj", "mahati", "", "", "", "inflection of mahant"]) + let v = native_list_append(v, ["পরা", "adj", "পরা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["pacant", "adj", "pacant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pacanto", "adj", "pacanto", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["vadant", "adj", "vadant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["vadato", "adj", "vadato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["vadanto", "adj", "vadanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["nudanto", "adj", "nudanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["assa", "adj", "assa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["nent", "adj", "nent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["nento", "adj", "nento", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["appeti", "adj", "appeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["sacce", "adj", "sacce", "", "", "", "inflection of sacca"]) + let v = native_list_append(v, ["anati", "adj", "anati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["suto", "adj", "suto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["vineti", "adj", "vineti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pacale", "adj", "pacale", "", "", "", "inflection of pacala"]) + let v = native_list_append(v, ["নীল", "adj", "নীল", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["পর", "adj", "পর", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["বাল", "adj", "বাল", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["মত", "adj", "মত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["बलि", "adj", "बलि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["অন্ধ", "adj", "অন্ধ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["temeti", "adj", "temeti", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["सिद्ध", "adj", "सिद्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["परा", "adj", "परा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["calanto", "adj", "calanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["उच्च", "adj", "उच्च", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["orena", "adj", "orena", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["-go", "adj", "-go", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ស", "adj", "ស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ຕ", "adj", "ຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["សុទ្ធ", "adj", "សុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sanna", "adj", "sanna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sudanto", "adj", "sudanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["sanne", "adj", "sanne", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["arahant", "adj", "arahant", "", "", "", "majestic honorable"]) + let v = native_list_append(v, ["satta", "adj", "satta", "", "", "", "able strong"]) + let v = native_list_append(v, ["နေ", "adj", "နေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["kappo", "adj", "kappo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["nente", "adj", "nente", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["neti", "adj", "neti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["gutto", "adj", "gutto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["gutte", "adj", "gutte", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sugata", "adj", "sugata", "", "", "", "faring well"]) + let v = native_list_append(v, ["vadante", "adj", "vadante", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["vadanta", "adj", "vadanta", "", "", "", "vocative singular masculine/neuter"]) + let v = native_list_append(v, ["jare", "adj", "jare", "", "", "", "inflection of jara"]) + let v = native_list_append(v, ["ဗုဒ္ဓ", "adj", "ဗုဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["বুদ্ধ", "adj", "বুদ্ধ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["pāpā", "adj", "pāpā", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["carant", "adj", "carant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["महा", "adj", "महा", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["jara", "adj", "jara", "", "", "", "old decrepit"]) + let v = native_list_append(v, ["desito", "adj", "desito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["desite", "adj", "desite", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["varassa", "adj", "varassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["ตะ", "adj", "ตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["नेता", "adj", "नेता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["hita", "adj", "hita", "", "", "", "useful"]) + let v = native_list_append(v, ["kapila", "adj", "kapila", "", "", "", "brown tawny"]) + let v = native_list_append(v, ["harato", "adj", "harato", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["भूत", "adj", "भूत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["स्वागत", "adj", "स्वागत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गिद्ध", "adj", "गिद्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sapant", "adj", "sapant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["मत्त", "adj", "मत्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["thera", "adj", "thera", "", "", "", "old elder"]) + let v = native_list_append(v, ["thero", "adj", "thero", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["သ", "adj", "သ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["सम्मति", "adj", "सम्मति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कुपित", "adj", "कुपित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["किस", "adj", "किस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tatta", "adj", "tatta", "", "", "", "hot heated glowing"]) + let v = native_list_append(v, ["ខម", "adj", "ខម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["गते", "adj", "गते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vīra", "adj", "vīra", "", "", "", "brave heroic"]) + let v = native_list_append(v, ["सुखी", "adj", "सुखी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["danta", "adj", "danta", "", "", "", "made of ivory"]) + let v = native_list_append(v, ["varā", "adj", "varā", "", "", "", "inflection of vara"]) + let v = native_list_append(v, ["samā", "adj", "samā", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["naṃ", "adj", "naṃ", "", "", "", "accusative singular masculine/feminine/neuter"]) + let v = native_list_append(v, ["अन्ति", "adj", "अन्ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ពាល", "adj", "ពាល", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yuvan", "adj", "yuvan", "", "", "", "young"]) + let v = native_list_append(v, ["जीव", "adj", "जीव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["rasse", "adj", "rasse", "", "", "", "inflection of rassa"]) + let v = native_list_append(v, ["पञ्चम", "adj", "पञ्चम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पञ्चमी", "adj", "पञ्चमी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["जनक", "adj", "जनक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["बाहु", "adj", "बाहु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["धीर", "adj", "धीर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अनन्त", "adj", "अनन्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kantati", "adj", "kantati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ឥដ្ឋ", "adj", "ឥដ្ឋ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vidū", "adj", "vidū", "", "", "", "knowing wise skilled"]) + let v = native_list_append(v, ["sanita", "adj", "sanita", "", "", "", "sounding"]) + let v = native_list_append(v, ["nicca", "adj", "nicca", "", "", "", "constant"]) + let v = native_list_append(v, ["cuto", "adj", "cuto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["avero", "adj", "avero", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["avera", "adj", "avera", "", "", "", "peacable"]) + let v = native_list_append(v, ["cajo", "adj", "cajo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["caranta", "adj", "caranta", "", "", "", "vocative singular masculine/neuter"]) + let v = native_list_append(v, ["jita", "adj", "jita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["वारित", "adj", "वारित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bāla", "adj", "bāla", "", "", "", "young"]) + let v = native_list_append(v, ["bālā", "adj", "bālā", "", "", "", "inflection of bāla"]) + let v = native_list_append(v, ["bālo", "adj", "bālo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["sutā", "adj", "sutā", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["sentā", "adj", "sentā", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["ugga", "adj", "ugga", "", "", "", "huge mighty"]) + let v = native_list_append(v, ["අය්‍යා", "adj", "අය්‍යා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["balissa", "adj", "balissa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["อริย", "adj", "อริย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["mahā", "adj", "mahā", "", "", "", "inflection of mahant"]) + let v = native_list_append(v, ["សុវណ្ណ", "adj", "សុវណ្ណ", "", "", "", "beautiful"]) + let v = native_list_append(v, ["𑄖", "adj", "𑄖", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄥", "adj", "𑄥", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄚", "adj", "𑄚", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["tika", "adj", "tika", "", "", "", "consisting of three"]) + let v = native_list_append(v, ["लोला", "adj", "लोला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["និគ្គហិត", "adj", "និគ្គហិត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ត", "adj", "ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ន", "adj", "ន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["តាយ", "adj", "តាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["aneja", "adj", "aneja", "", "", "", "free from lust"]) + let v = native_list_append(v, ["cuta", "adj", "cuta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["खमा", "adj", "खमा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["សម", "adj", "សម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ថោក", "adj", "ថោក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ជិត", "adj", "ជិត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sādhu", "adj", "sādhu", "", "", "", "well"]) + let v = native_list_append(v, ["សោ", "adj", "សោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["akanta", "adj", "akanta", "", "", "", "pleasant"]) + let v = native_list_append(v, ["dīgha", "adj", "dīgha", "", "", "", "long"]) + let v = native_list_append(v, ["taṃ", "adj", "taṃ", "", "", "", "masculine/feminine accusative singular"]) + let v = native_list_append(v, ["ते", "adj", "ते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तानि", "adj", "तानि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ភក្ខ", "adj", "ភក្ខ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["យន្ត", "adj", "យន្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kamati", "adj", "kamati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["sukha", "adj", "sukha", "", "", "", "easy"]) + let v = native_list_append(v, ["မင်္ဂလာ", "adj", "မင်္ဂလာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သုည", "adj", "သုည", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ကိစ္စ", "adj", "ကိစ္စ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vanante", "adj", "vanante", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["vanato", "adj", "vanato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["vanati", "adj", "vanati", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["dhāvati", "adj", "dhāvati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["sāratta", "adj", "sāratta", "", "", "", "impassioned"]) + let v = native_list_append(v, ["sithila", "adj", "sithila", "", "", "", "loose"]) + let v = native_list_append(v, ["जनको", "adj", "जनको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["janaka", "adj", "janaka", "", "", "", "producing causing generating"]) + let v = native_list_append(v, ["ento", "adj", "ento", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["savitakka", "adj", "savitakka", "", "", "", "accompanied by reasoning"]) + let v = native_list_append(v, ["avitakka", "adj", "avitakka", "", "", "", "free from thought"]) + let v = native_list_append(v, ["ariya", "adj", "ariya", "", "", "", "noble distinguished"]) + let v = native_list_append(v, ["atthaṅgama", "adj", "atthaṅgama", "", "", "", "setting down"]) + let v = native_list_append(v, ["cirapabbajita", "adj", "cirapabbajita", "", "", "", "having long since"]) + let v = native_list_append(v, ["samijjhati", "adj", "samijjhati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["porāṇaka", "adj", "porāṇaka", "", "", "", "ancient old former"]) + let v = native_list_append(v, ["abhaya", "adj", "abhaya", "", "", "", "safe fearless"]) + let v = native_list_append(v, ["ābādhika", "adj", "ābādhika", "", "", "", "sick"]) + let v = native_list_append(v, ["adhīna", "adj", "adhīna", "", "", "", "dependent"]) + let v = native_list_append(v, ["parādhīna", "adj", "parādhīna", "", "", "", "dependent on others"]) + let v = native_list_append(v, ["paṭibhaya", "adj", "paṭibhaya", "", "", "", "terrible fearful"]) + let v = native_list_append(v, ["khema", "adj", "khema", "", "", "", "safe"]) + let v = native_list_append(v, ["ānaṇya", "adj", "ānaṇya", "", "", "", "freedom from debt"]) + let v = native_list_append(v, ["abhisandeti", "adj", "abhisandeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["paggharati", "adj", "paggharati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["purima", "adj", "purima", "", "", "", "former earlier"]) + let v = native_list_append(v, ["samādhija", "adj", "samādhija", "", "", "", "produced by concentration"]) + let v = native_list_append(v, ["puratthima", "adj", "puratthima", "", "", "", "eastern"]) + let v = native_list_append(v, ["pacchima", "adj", "pacchima", "", "", "", "latest hindmost lowest"]) + let v = native_list_append(v, ["anupavecchati", "adj", "anupavecchati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["pavecchati", "adj", "pavecchati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["anaṅgaṇa", "adj", "anaṅgaṇa", "", "", "", "passionless blameless"]) + let v = native_list_append(v, ["mudubhūta", "adj", "mudubhūta", "", "", "", "supple malleable"]) + let v = native_list_append(v, ["āneñja", "adj", "āneñja", "", "", "", "static imperturbable"]) + let v = native_list_append(v, ["aṭṭhaṃsa", "adj", "aṭṭhaṃsa", "", "", "", "octagonal"]) + let v = native_list_append(v, ["vippasanna", "adj", "vippasanna", "", "", "", "very clear pure"]) + let v = native_list_append(v, ["paṇḍu", "adj", "paṇḍu", "", "", "", "pale-yellow yellowish"]) + let v = native_list_append(v, ["nīla", "adj", "nīla", "", "", "", "blue"]) + let v = native_list_append(v, ["manomaya", "adj", "manomaya", "", "", "", "mind made"]) + let v = native_list_append(v, ["abhijjamāna", "adj", "abhijjamāna", "", "", "", "not breaking or"]) + let v = native_list_append(v, ["gantabba", "adj", "gantabba", "", "", "", "should be gone."]) + let v = native_list_append(v, ["gacchati", "adj", "gacchati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["mahantī", "adj", "mahantī", "", "", "", "inflection of mahant"]) + let v = native_list_append(v, ["mattika", "adj", "mattika", "", "", "", "made of clay"]) + let v = native_list_append(v, ["suparikammakata", "adj", "suparikammakata", "", "", "", "well prepared or"]) + let v = native_list_append(v, ["mānusaka", "adj", "mānusaka", "", "", "", "human"]) + let v = native_list_append(v, ["atikkanta", "adj", "atikkanta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sarāga", "adj", "sarāga", "", "", "", "passion"]) + let v = native_list_append(v, ["samoha", "adj", "samoha", "", "", "", "infatuated"]) + let v = native_list_append(v, ["saṅkhitta", "adj", "saṅkhitta", "", "", "", "concise"]) + let v = native_list_append(v, ["vikkhitta", "adj", "vikkhitta", "", "", "", "upset perplexed"]) + let v = native_list_append(v, ["asamāhita", "adj", "asamāhita", "", "", "", "not composed"]) + let v = native_list_append(v, ["avimutta", "adj", "avimutta", "", "", "", "not released"]) + let v = native_list_append(v, ["maṇḍanajātika", "adj", "maṇḍanajātika", "", "", "", "desirous of adornment"]) + let v = native_list_append(v, ["sakaṇika", "adj", "sakaṇika", "", "", "", "having a mole"]) + let v = native_list_append(v, ["paccāgata", "adj", "paccāgata", "", "", "", "past participle of"]) + let v = native_list_append(v, ["cavamāna", "adj", "cavamāna", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["suvaṇṇa", "adj", "suvaṇṇa", "", "", "", "beautiful"]) + let v = native_list_append(v, ["upavādaka", "adj", "upavādaka", "", "", "", "finding fault; blaming"]) + let v = native_list_append(v, ["nikkujjita", "adj", "nikkujjita", "", "", "", "turned upside down"]) + let v = native_list_append(v, ["bahukaraṇīya", "adj", "bahukaraṇīya", "", "", "", "having much to"]) + let v = native_list_append(v, ["vītamala", "adj", "vītamala", "", "", "", "stainless"]) + let v = native_list_append(v, ["caramāna", "adj", "caramāna", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["ukkaṭṭha", "adj", "ukkaṭṭha", "", "", "", "high prominent"]) + let v = native_list_append(v, ["lokavidū", "adj", "lokavidū", "", "", "", "Knowing the universe.A"]) + let v = native_list_append(v, ["sassamaṇabrāhmaṇa", "adj", "sassamaṇabrāhmaṇa", "", "", "", "including religious teachers"]) + let v = native_list_append(v, ["ādikalyāṇa", "adj", "ādikalyāṇa", "", "", "", "beautiful in the"]) + let v = native_list_append(v, ["tathārūpa", "adj", "tathārūpa", "", "", "", "such"]) + let v = native_list_append(v, ["mantadhara", "adj", "mantadhara", "", "", "", "bearer of Vedic"]) + let v = native_list_append(v, ["ajjhāyaka", "adj", "ajjhāyaka", "", "", "", "engaged in learning"]) + let v = native_list_append(v, ["anavaya", "adj", "anavaya", "", "", "", "complete not lacking"]) + let v = native_list_append(v, ["tevijja", "adj", "tevijja", "", "", "", "possessing three superhuman"]) + let v = native_list_append(v, ["pamaddana", "adj", "pamaddana", "", "", "", "crushing"]) + let v = native_list_append(v, ["abhiññāta", "adj", "abhiññāta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ataramāna", "adj", "ataramāna", "", "", "", "being unhurried"]) + let v = native_list_append(v, ["nisīdati", "adj", "nisīdati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ibbha", "adj", "ibbha", "", "", "", "menial"]) + let v = native_list_append(v, ["kaṇha", "adj", "kaṇha", "", "", "", "black"]) + let v = native_list_append(v, ["kiṇha", "adj", "kiṇha", "", "", "", "black"]) + let v = native_list_append(v, ["caṇḍa", "adj", "caṇḍa", "", "", "", "fierce,violent quick-tempered,uncontrolled,passionate"]) + let v = native_list_append(v, ["lahusa", "adj", "lahusa", "", "", "", "easily offended touchy"]) + let v = native_list_append(v, ["ucca", "adj", "ucca", "", "", "", "high noble"]) + let v = native_list_append(v, ["patodaka", "adj", "patodaka", "", "", "", ""]) + let v = native_list_append(v, ["ayya", "adj", "ayya", "", "", "", "noble"]) + let v = native_list_append(v, ["manāpa", "adj", "manāpa", "", "", "", "pleasing charming"]) + let v = native_list_append(v, ["anāgāmi", "adj", "anāgāmi", "", "", "", "inflection of anāgāmin"]) + let v = native_list_append(v, ["piyā", "adj", "piyā", "", "", "", "inflection of piya"]) + let v = native_list_append(v, ["asuci", "adj", "asuci", "", "", "", "unclean"]) + let v = native_list_append(v, ["kalusa", "adj", "kalusa", "", "", "", "impure"]) + let v = native_list_append(v, ["kāḷa", "adj", "kāḷa", "", "", "", "black"]) + let v = native_list_append(v, ["saddha", "adj", "saddha", "", "", "", "believing"]) + let v = native_list_append(v, ["នំ", "adj", "នំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vattā", "adj", "vattā", "", "", "", "inflection of vatta"]) + let v = native_list_append(v, ["sambahula", "adj", "sambahula", "", "", "", "many"]) + let v = native_list_append(v, ["yanto", "adj", "yanto", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["yanta", "adj", "yanta", "", "", "", "present active participle"]) + let v = native_list_append(v, ["yante", "adj", "yante", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["मत", "adj", "मत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["svāgata", "adj", "svāgata", "", "", "", "welcome"]) + let v = native_list_append(v, ["taranta", "adj", "taranta", "", "", "", "vocative singular masculine/neuter"]) + let v = native_list_append(v, ["abbhāgata", "adj", "abbhāgata", "", "", "", "having arrived"]) + let v = native_list_append(v, ["appāṭihīrakata", "adj", "appāṭihīrakata", "", "", "", "worthless"]) + let v = native_list_append(v, ["सो", "adj", "सो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["करोति", "adj", "करोति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वाले", "adj", "वाले", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["परम", "adj", "परम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नील", "adj", "नील", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सेतो", "adj", "सेतो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पापा", "adj", "पापा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["สุขา", "adj", "สุขา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["សេរី", "adj", "សេរី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["paṭhama", "adj", "paṭhama", "", "", "", "primary first"]) + let v = native_list_append(v, ["siddha", "adj", "siddha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["porisa", "adj", "porisa", "", "", "", "human"]) + let v = native_list_append(v, ["akhāta", "adj", "akhāta", "", "", "", "not dug"]) + let v = native_list_append(v, ["khāta", "adj", "khāta", "", "", "", "dug"]) + let v = native_list_append(v, ["lohita", "adj", "lohita", "", "", "", "red"]) + let v = native_list_append(v, ["sakkā", "adj", "sakkā", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["khajja", "adj", "khajja", "", "", "", "edible eatable"]) + let v = native_list_append(v, ["sampanna", "adj", "sampanna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["muttā", "adj", "muttā", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["mūga", "adj", "mūga", "", "", "", "dumb"]) + let v = native_list_append(v, ["cheka", "adj", "cheka", "", "", "", "clever"]) + let v = native_list_append(v, ["soki", "adj", "soki", "", "", "", "inflection of sokin"]) + let v = native_list_append(v, ["bhavati", "adj", "bhavati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["जरो", "adj", "जरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ananta", "adj", "ananta", "", "", "", "infinite endless"]) + let v = native_list_append(v, ["thira", "adj", "thira", "", "", "", "firm"]) + let v = native_list_append(v, ["appa", "adj", "appa", "", "", "", "few a small"]) + let v = native_list_append(v, ["himavant", "adj", "himavant", "", "", "", "snowy"]) + let v = native_list_append(v, ["กาฬ", "adj", "กาฬ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["कालिक", "adj", "कालिक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yujjhati", "adj", "yujjhati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["โลหิต", "adj", "โลหิต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["एतद्", "adj", "एतद्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["คุรุ", "adj", "คุรุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["viharati", "adj", "viharati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["sammodati", "adj", "sammodati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["accuta", "adj", "accuta", "", "", "", "everlasting eternal also"]) + let v = native_list_append(v, ["sūrī", "adj", "sūrī", "", "", "", "wise"]) + let v = native_list_append(v, ["āyasmā", "adj", "āyasmā", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["āyasmant", "adj", "āyasmant", "", "", "", "old venerable"]) + let v = native_list_append(v, ["ādi", "adj", "ādi", "", "", "", "initial beginning"]) + let v = native_list_append(v, ["samannāgato", "adj", "samannāgato", "", "", "", "endowed with"]) + let v = native_list_append(v, ["samannāgata", "adj", "samannāgata", "", "", "", "followed by possessed"]) + let v = native_list_append(v, ["iṭṭha", "adj", "iṭṭha", "", "", "", "pleasant pleasing agreeable"]) + let v = native_list_append(v, ["aniṭṭha", "adj", "aniṭṭha", "", "", "", "unpleasant disagreeable"]) + let v = native_list_append(v, ["kicca", "adj", "kicca", "", "", "", "gerundive of karoti"]) + let v = native_list_append(v, ["akiccakāra", "adj", "akiccakāra", "", "", "", "not doing ones"]) + let v = native_list_append(v, ["anicca", "adj", "anicca", "", "", "", "impermanent"]) + let v = native_list_append(v, ["paraṃ", "adj", "paraṃ", "", "", "", "inflection of para"]) + let v = native_list_append(v, ["upasaṅkamati", "adj", "upasaṅkamati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["aṭṭhama", "adj", "aṭṭhama", "", "", "", "eighth"]) + let v = native_list_append(v, ["āmaka", "adj", "āmaka", "", "", "", "raw"]) + let v = native_list_append(v, ["taruṇa", "adj", "taruṇa", "", "", "", "young"]) + let v = native_list_append(v, ["gambhīra", "adj", "gambhīra", "", "", "", "deep"]) + let v = native_list_append(v, ["pharusa", "adj", "pharusa", "", "", "", "harsh"]) + let v = native_list_append(v, ["pāpa", "adj", "pāpa", "", "", "", "evil sinful"]) + let v = native_list_append(v, ["appaccaya", "adj", "appaccaya", "", "", "", "causeless"]) + let v = native_list_append(v, ["kupita", "adj", "kupita", "", "", "", "angry"]) + let v = native_list_append(v, ["anattamana", "adj", "anattamana", "", "", "", "displeased"]) + let v = native_list_append(v, ["abhūta", "adj", "abhūta", "", "", "", "not real"]) + let v = native_list_append(v, ["ขม", "adj", "ขม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["garuka", "adj", "garuka", "", "", "", "heavy"]) + let v = native_list_append(v, ["abhirūpa", "adj", "abhirūpa", "", "", "", "beautiful"]) + let v = native_list_append(v, ["dassanīya", "adj", "dassanīya", "", "", "", "fair beautiful"]) + let v = native_list_append(v, ["lakkhaññā", "adj", "lakkhaññā", "", "", "", "auspicious"]) + let v = native_list_append(v, ["ramaṇīyā", "adj", "ramaṇīyā", "", "", "", "delightful"]) + let v = native_list_append(v, ["avidūra", "adj", "avidūra", "", "", "", "near"]) + let v = native_list_append(v, ["avidūre", "adj", "avidūre", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["tuṇhībhūta", "adj", "tuṇhībhūta", "", "", "", "silent"]) + let v = native_list_append(v, ["sīhaḷa", "adj", "sīhaḷa", "", "", "", "Sinhalese"]) + let v = native_list_append(v, ["bhakkha", "adj", "bhakkha", "", "", "", "eating feeding on"]) + let v = native_list_append(v, ["araha", "adj", "araha", "", "", "", "worthy"]) + let v = native_list_append(v, ["kalyāṇaka", "adj", "kalyāṇaka", "", "", "", "virtuous good"]) + let v = native_list_append(v, ["कल्याणक", "adj", "कल्याणक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["อนาคต", "adj", "อนาคต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["accanta", "adj", "accanta", "", "", "", "continuous"]) + let v = native_list_append(v, ["accante", "adj", "accante", "", "", "", "inflection of accanta"]) + let v = native_list_append(v, ["pacanti", "adj", "pacanti", "", "", "", "feminine vocative singular"]) + let v = native_list_append(v, ["वाला", "adj", "वाला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vadanti", "adj", "vadanti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["vadati", "adj", "vadati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["លោហិត", "adj", "លោហិត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ភូត", "adj", "ភូត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["upavattana", "adj", "upavattana", "", "", "", "existing near"]) + let v = native_list_append(v, ["𑀢𑀁", "adj", "𑀢𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀲𑁄", "adj", "𑀲𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["បុរាណ", "adj", "បុរាណ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ນ", "adj", "ນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສ", "adj", "ສ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["អតីត", "adj", "អតីត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["सती", "adj", "सती", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tullo", "adj", "tullo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["chava", "adj", "chava", "", "", "", "bad evil"]) + let v = native_list_append(v, ["វិទូ", "adj", "វិទូ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["मङ्गला", "adj", "मङ्गला", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["datto", "adj", "datto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["piyo", "adj", "piyo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ropita", "adj", "ropita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sakke", "adj", "sakke", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sukke", "adj", "sukke", "", "", "", "inflection of sukka"]) + let v = native_list_append(v, ["อสุจิ", "adj", "อสุจิ", "", "", "", "unclean"]) + let v = native_list_append(v, ["सुता", "adj", "सुता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["လောလော", "adj", "လောလော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ත", "adj", "ත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["න", "adj", "න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ස", "adj", "ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ၼ", "adj", "ၼ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["অসম", "adj", "অসম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["တေသံ", "adj", "တေသံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ခမာ", "adj", "ခမာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သော", "adj", "သော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vagge", "adj", "vagge", "", "", "", "inflection of vagga"]) + let v = native_list_append(v, ["ชรา", "adj", "ชรา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ဗာလ", "adj", "ဗာလ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["aññāta", "adj", "aññāta", "", "", "", "unknown not known"]) + let v = native_list_append(v, ["karaṇīya", "adj", "karaṇīya", "", "", "", "gerundive of karoti"]) + let v = native_list_append(v, ["कल्याण", "adj", "कल्याण", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["समा", "adj", "समा", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["ขมา", "adj", "ขมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["वाल", "adj", "वाल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तं", "adj", "तं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अयं", "adj", "अयं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["थोक", "adj", "थोक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["พุทธะ", "adj", "พุทธะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["ajjuna", "adj", "ajjuna", "", "", "", "Pentaptera arjuna"]) + let v = native_list_append(v, ["orohati", "adj", "orohati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["अन्ध", "adj", "अन्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["जयति", "adj", "जयति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नयति", "adj", "नयति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["इमा", "adj", "इमा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သုခ", "adj", "သုခ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อเนก", "adj", "อเนก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["thoka", "adj", "thoka", "", "", "", "small little"]) + let v = native_list_append(v, ["sukhasammata", "adj", "sukhasammata", "", "", "", "deemed a pleasure"]) + let v = native_list_append(v, ["anupajjati", "adj", "anupajjati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["असित", "adj", "असित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["उजु", "adj", "उजु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ता", "adj", "ता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भुजा", "adj", "भुजा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["गत", "adj", "गत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["niggahita", "adj", "niggahita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["नये", "adj", "नये", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["တံ", "adj", "တံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["lugga", "adj", "lugga", "", "", "", "past passive participle"]) + let v = native_list_append(v, ["pakkhin", "adj", "pakkhin", "", "", "", "winged"]) + let v = native_list_append(v, ["रुजति", "adj", "रुजति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["खनति", "adj", "खनति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["มห", "adj", "มห", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["सुत", "adj", "सुत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["অন্ত", "adj", "অন্ত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["সুখ", "adj", "সুখ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["বাহু", "adj", "বাহু", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["সাধু", "adj", "সাধু", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ဗလီ", "adj", "ဗလီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀓𑀭𑁄𑀢𑀺", "adj", "𑀓𑀭𑁄𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["taluṇa", "adj", "taluṇa", "", "", "", "young"]) + let v = native_list_append(v, ["cajati", "adj", "cajati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ปฐม", "adj", "ปฐม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สกล", "adj", "สกล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["हित", "adj", "हित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अतीत", "adj", "अतीत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मज्जति", "adj", "मज्जति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["जनिका", "adj", "जनिका", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["बद्ध", "adj", "बद्ध", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["deseti", "adj", "deseti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["𑀫𑀼𑀤𑁆𑀥", "adj", "𑀫𑀼𑀤𑁆𑀥", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["dhuva", "adj", "dhuva", "", "", "", "stable permanent durable"]) + let v = native_list_append(v, ["सकल", "adj", "सकल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["মহ", "adj", "মহ", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["कुसल", "adj", "कुसल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pubba", "adj", "pubba", "", "", "", "former"]) + let v = native_list_append(v, ["duddha", "adj", "duddha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["สม", "adj", "สม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["siṭṭha", "adj", "siṭṭha", "", "", "", "left over"]) + let v = native_list_append(v, ["เอส", "adj", "เอส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ḍaḷha", "adj", "ḍaḷha", "", "", "", "firm fixed rigid"]) + let v = native_list_append(v, ["𑀕𑀼𑀢𑁆𑀢", "adj", "𑀕𑀼𑀢𑁆𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ruṭṭha", "adj", "ruṭṭha", "", "", "", "angry"]) + let v = native_list_append(v, ["muddha", "adj", "muddha", "", "", "", "foolish"]) + let v = native_list_append(v, ["यमक", "adj", "यमक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तुरित", "adj", "तुरित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ताय", "adj", "ताय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["रस्सा", "adj", "रस्सा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀓𑀢", "adj", "𑀓𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀅𑀬𑁆𑀬", "adj", "𑀅𑀬𑁆𑀬", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["দীঘ", "adj", "দীঘ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["नेक", "adj", "नेक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["เอน", "adj", "เอน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀪𑀯𑀢𑀺", "adj", "𑀪𑀯𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["মতা", "adj", "মতা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["เฉก", "adj", "เฉก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["pacala", "adj", "pacala", "", "", "", "shaking trembling wavering"]) + let v = native_list_append(v, ["पिया", "adj", "पिया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀣𑁂𑀭", "adj", "𑀣𑁂𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["कारयति", "adj", "कारयति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["តា", "adj", "តា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ভূত", "adj", "ভূত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["vatta", "adj", "vatta", "", "", "", "opened wide"]) + let v = native_list_append(v, ["गूळ्ह", "adj", "गूळ्ह", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["រស្ស", "adj", "រស្ស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["palita", "adj", "palita", "", "", "", "grey"]) + let v = native_list_append(v, ["diṭṭha", "adj", "diṭṭha", "", "", "", "seen"]) + let v = native_list_append(v, ["परे", "adj", "परे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dibba", "adj", "dibba", "", "", "", "divine heavenly"]) + let v = native_list_append(v, ["দীঘা", "adj", "দীঘা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["धीरा", "adj", "धीरा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vuḍḍha", "adj", "vuḍḍha", "", "", "", "old aged"]) + let v = native_list_append(v, ["jīva", "adj", "jīva", "", "", "", "living"]) + let v = native_list_append(v, ["pāragū", "adj", "pāragū", "", "", "", "gone beyond passed"]) + let v = native_list_append(v, ["pāmokkha", "adj", "pāmokkha", "", "", "", "chief first eminent"]) + let v = native_list_append(v, ["samagga", "adj", "samagga", "", "", "", "united being in"]) + let v = native_list_append(v, ["bahussuta", "adj", "bahussuta", "", "", "", "very learned"]) + let v = native_list_append(v, ["maṅgala", "adj", "maṅgala", "", "", "", "auspicious royal lucky"]) + let v = native_list_append(v, ["dukkhita", "adj", "dukkhita", "", "", "", "afflicted grieved unhappy"]) + let v = native_list_append(v, ["सित", "adj", "सित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["নে", "adj", "নে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["tulye", "adj", "tulye", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["asubha", "adj", "asubha", "", "", "", "unpleasant"]) + let v = native_list_append(v, ["युवती", "adj", "युवती", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["puggalika", "adj", "puggalika", "", "", "", "individual"]) + let v = native_list_append(v, ["thāvara", "adj", "thāvara", "", "", "", "immovable"]) + let v = native_list_append(v, ["វរ", "adj", "វរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["សិត", "adj", "សិត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["entena", "adj", "entena", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["dakkhiṇa", "adj", "dakkhiṇa", "", "", "", "right righthand"]) + let v = native_list_append(v, ["uttara", "adj", "uttara", "", "", "", "higher superior"]) + let v = native_list_append(v, ["ဥတ္တရ", "adj", "ဥတ္တရ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["អន្តោ", "adj", "អន្តោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अग्ग", "adj", "अग्ग", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["piye", "adj", "piye", "", "", "", "inflection of piya"]) + let v = native_list_append(v, ["asmā", "adj", "asmā", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["balino", "adj", "balino", "", "", "", "inflection of balin"]) + let v = native_list_append(v, ["ครุ", "adj", "ครุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["jito", "adj", "jito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["मूग", "adj", "मूग", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ឋិត", "adj", "ឋិត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ᨾᩘᨣᩃ", "adj", "ᨾᩘᨣᩃ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨷᩤᨷ", "adj", "ᨷᩤᨷ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩉᩥᨲ", "adj", "ᩉᩥᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["អនាគត", "adj", "អនាគត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["गच्छन्ति", "adj", "गच्छन्ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["arahā", "adj", "arahā", "", "", "", "inflection of araha"]) + let v = native_list_append(v, ["sambuddha", "adj", "sambuddha", "", "", "", "understood clearly known"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨻᩩᨴ᩠ᨵ", "adj", "ᩈᨾ᩠ᨻᩩᨴ᩠ᨵ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩛᩩᨴ᩠ᨵ", "adj", "ᩈᨾᩛᩩᨴ᩠ᨵ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᩉᩁᨲᩥ", "adj", "ᩅᩥᩉᩁᨲᩥ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["नमति", "adj", "नमति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kevalakappa", "adj", "kevalakappa", "", "", "", "whole entire"]) + let v = native_list_append(v, ["ᨠᩮᩅᩃᨠᨷ᩠ᨷ", "adj", "ᨠᩮᩅᩃᨠᨷ᩠ᨷ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["obhāseti", "adj", "obhāseti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["sadevaka", "adj", "sadevaka", "", "", "", "with gods"]) + let v = native_list_append(v, ["ᩈᨴᩮᩅᨠ", "adj", "ᩈᨴᩮᩅᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩮᩈᩮᨲᩥ", "adj", "ᨴᩮᩈᩮᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨻᩛ", "adj", "ᩈᨻᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["vināsana", "adj", "vināsana", "", "", "", "destroying"]) + let v = native_list_append(v, ["ᩅᩥᨶᩣᩈᨶ", "adj", "ᩅᩥᨶᩣᩈᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["bhaṇati", "adj", "bhaṇati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ᨽᨱᨲᩥ", "adj", "ᨽᨱᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["aññatara", "adj", "aññatara", "", "", "", "a certain"]) + let v = native_list_append(v, ["ᩋᨬ᩠ᨬᨲᩁ", "adj", "ᩋᨬ᩠ᨬᨲᩁ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵ", "adj", "ᨻᩩᨴ᩠ᨵ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨶᨶ᩠ᨲ", "adj", "ᩋᨶᨶ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["uttama", "adj", "uttama", "", "", "", "utmost"]) + let v = native_list_append(v, ["ᩏᨲ᩠ᨲᨾ", "adj", "ᩏᨲ᩠ᨲᨾ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paṇamati", "adj", "paṇamati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ᨸᨱᨾᨲᩥ", "adj", "ᨸᨱᨾᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["atīta", "adj", "atīta", "", "", "", "of the past"]) + let v = native_list_append(v, ["ᩋᨲᩦᨲ", "adj", "ᩋᨲᩦᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["anāgata", "adj", "anāgata", "", "", "", "not yet come"]) + let v = native_list_append(v, ["ᩋᨶᩣᨣᨲ", "adj", "ᩋᨶᩣᨣᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["vandati", "adj", "vandati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ᩅᨶ᩠ᨴᨲᩥ", "adj", "ᩅᨶ᩠ᨴᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paccuppanna", "adj", "paccuppanna", "", "", "", "existent"]) + let v = native_list_append(v, ["ᨸᨧ᩠ᨧᩩᨸ᩠ᨸᨶ᩠ᨶ", "adj", "ᨸᨧ᩠ᨧᩩᨸ᩠ᨸᨶ᩠ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩩᨣᨲ", "adj", "ᩈᩩᨣᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩮᩣ", "adj", "ᩈᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["arahaṃ", "adj", "arahaṃ", "", "", "", "inflection of arahant"]) + let v = native_list_append(v, ["ᩋᩁᩉᩴ", "adj", "ᩋᩁᩉᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨸᨶ᩠ᨶ", "adj", "ᩈᨾ᩠ᨸᨶ᩠ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩃᩮᩣᨠᩅᩥᨴᩪ", "adj", "ᩃᩮᩣᨠᩅᩥᨴᩪ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᨴᩪ", "adj", "ᩅᩥᨴᩪ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["anuttara", "adj", "anuttara", "", "", "", "unbettered without superior"]) + let v = native_list_append(v, ["ᩋᨶᩩᨲ᩠ᨲᩁ", "adj", "ᩋᨶᩩᨲ᩠ᨲᩁ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᨾ᩠ᨾ", "adj", "ᨴᨾ᩠ᨾ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨣᨧ᩠ᨨᨲᩥ", "adj", "ᨣᨧ᩠ᨨᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["añña", "adj", "añña", "", "", "", "other another different"]) + let v = native_list_append(v, ["ᩋᨬ᩠ᨬ", "adj", "ᩋᨬ᩠ᨬ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩁ", "adj", "ᩅᩁ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨧ᩠ᨧ", "adj", "ᩈᨧ᩠ᨧ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["khamati", "adj", "khamati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ᨡᨾᨲᩥ", "adj", "ᨡᨾᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["asama", "adj", "asama", "", "", "", "unequal"]) + let v = native_list_append(v, ["muddhā", "adj", "muddhā", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["តុល្យ", "adj", "តុល្យ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["អរិយ", "adj", "អរិយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["aṭṭhaṅgika", "adj", "aṭṭhaṅgika", "", "", "", "composed of eight"]) + let v = native_list_append(v, ["ᩋᨭᩛᨦ᩠ᨣᩥᨠ", "adj", "ᩋᨭᩛᨦ᩠ᨣᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["niyyānika", "adj", "niyyānika", "", "", "", "leading to salvation"]) + let v = native_list_append(v, ["ᨶᩥᨿ᩠ᨿᩣᨶᩥᨠ", "adj", "ᨶᩥᨿ᩠ᨿᩣᨶᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paṇīta", "adj", "paṇīta", "", "", "", "brought out performed"]) + let v = native_list_append(v, ["ᨸᨱᩦᨲ", "adj", "ᨸᨱᩦᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["santikara", "adj", "santikara", "", "", "", "making peace making"]) + let v = native_list_append(v, ["ᩈᨶ᩠ᨲᩥᨠᩁ", "adj", "ᩈᨶ᩠ᨲᩥᨠᩁ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["svākkhāta", "adj", "svākkhāta", "", "", "", "well-preached"]) + let v = native_list_append(v, ["ᩈ᩠ᩅᩣᨠ᩠ᨡᩣᨲ", "adj", "ᩈ᩠ᩅᩣᨠ᩠ᨡᩣᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sandiṭṭhika", "adj", "sandiṭṭhika", "", "", "", "visible"]) + let v = native_list_append(v, ["ᩈᨶ᩠ᨴᩥᨭᩛᩥᨠ", "adj", "ᩈᨶ᩠ᨴᩥᨭᩛᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kālika", "adj", "kālika", "", "", "", "temporal"]) + let v = native_list_append(v, ["akālika", "adj", "akālika", "", "", "", "not delayed immediate"]) + let v = native_list_append(v, ["ᩋᨠᩣᩃᩥᨠ", "adj", "ᩋᨠᩣᩃᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ehipassika", "adj", "ehipassika", "", "", "", "inviting everyone to"]) + let v = native_list_append(v, ["ᩑᩉᩥᨸᩔᩥᨠ", "adj", "ᩑᩉᩥᨸᩔᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩑᩉᩥᨷᩔᩥᨠ", "adj", "ᩑᩉᩥᨷᩔᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["opanayika", "adj", "opanayika", "", "", "", "leading to"]) + let v = native_list_append(v, ["ᩒᨸᨶᨿᩥᨠ", "adj", "ᩒᨸᨶᨿᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paccatta", "adj", "paccatta", "", "", "", "individual separate"]) + let v = native_list_append(v, ["ᨷᨧ᩠ᨧᨲ᩠ᨲ", "adj", "ᨷᨧ᩠ᨧᨲ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨧ᩠ᨧᨲ᩠ᨲ", "adj", "ᨸᨧ᩠ᨧᨲ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["viññū", "adj", "viññū", "", "", "", "wise learned"]) + let v = native_list_append(v, ["ᩅᩥᨬ᩠ᨬᩪ", "adj", "ᩅᩥᨬ᩠ᨬᩪ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["veditabba", "adj", "veditabba", "", "", "", "which is to"]) + let v = native_list_append(v, ["ᩅᩮᨴᩥᨲᨻᩛ", "adj", "ᩅᩮᨴᩥᨲᨻᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ទន្ត", "adj", "ទន្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["एते", "adj", "एते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pavara", "adj", "pavara", "", "", "", "excellent noble"]) + let v = native_list_append(v, ["agga", "adj", "agga", "", "", "", "highest"]) + let v = native_list_append(v, ["visodheti", "adj", "visodheti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ᩅᩥᩈᩮᩣᨵᩮᨲᩥ", "adj", "ᩅᩥᩈᩮᩣᨵᩮᨲᩥ", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ᨶ", "adj", "ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["bhindati", "adj", "bhindati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["piya", "adj", "piya", "", "", "", "dear beloved"]) + let v = native_list_append(v, ["paṭipanna", "adj", "paṭipanna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["පටිපන‍්න", "adj", "පටිපන‍්න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["भवन्ति", "adj", "भवन्ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["dhammatā", "adj", "dhammatā", "", "", "", "general rule nature"]) + let v = native_list_append(v, ["aneka", "adj", "aneka", "", "", "", "not one"]) + let v = native_list_append(v, ["අනෙක", "adj", "අනෙක", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["බුද‍්ධ", "adj", "බුද‍්ධ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["anubaddha", "adj", "anubaddha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["අනුබද‍්ධ", "adj", "අනුබද‍්ධ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["උජු", "adj", "උජු", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["vipaccanīka", "adj", "vipaccanīka", "", "", "", "hostile"]) + let v = native_list_append(v, ["විපච‍්චනීක", "adj", "විපච‍්චනීක", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["upagacchati", "adj", "upagacchati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["វត្តមានា", "adj", "វត្តមានា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វត្តមាន", "adj", "វត្តមាន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["បច្ចុប្បន្ន", "adj", "បច្ចុប្បន្ន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vutta", "adj", "vutta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["වුත‍්ත", "adj", "වුත‍්ත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["etad", "adj", "etad", "", "", "", "nominative/accusative singular neuter"]) + let v = native_list_append(v, ["එතද්", "adj", "එතද්", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["එත", "adj", "එත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["paññatta", "adj", "paññatta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["පඤ‍්ඤත‍්ත", "adj", "පඤ‍්ඤත‍්ත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["නිසීදති", "adj", "නිසීදති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["උපසඞ‍්කමති", "adj", "උපසඞ‍්කමති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["เสรี", "adj", "เสรี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["nisinna", "adj", "nisinna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sannisīdati", "adj", "sannisīdati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["sannisinna", "adj", "sannisinna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["සන‍්නිසින‍්න", "adj", "සන‍්නිසින‍්න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sannipatita", "adj", "sannipatita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["සන‍්නිපතිත", "adj", "සන‍්නිපතිත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["𑀢", "adj", "𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["vippakata", "adj", "vippakata", "", "", "", "unfinished"]) + let v = native_list_append(v, ["විප‍්පකත", "adj", "විප‍්පකත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["เถร", "adj", "เถร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["bhavant", "adj", "bhavant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["karont", "adj", "karont", "", "", "", "present participle of"]) + let v = native_list_append(v, ["karīyati", "adj", "karīyati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kārayati", "adj", "kārayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kārayant", "adj", "kārayant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["කරොන‍්ත්", "adj", "කරොන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කරොති", "adj", "කරොති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["මහන‍්ත්", "adj", "මහන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["कारयन्त्", "adj", "कारयन्त्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["කාරයති", "adj", "කාරයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කාරයන‍්ත්", "adj", "කාරයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["chindati", "adj", "chindati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["chindant", "adj", "chindant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ඡින්‍දති", "adj", "ඡින්‍දති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඡින්‍දන‍්ත්", "adj", "ඡින්‍දන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["chedāpayati", "adj", "chedāpayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["chedāpayant", "adj", "chedāpayant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ඡෙදාපයති", "adj", "ඡෙදාපයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඡෙදාපයන‍්ත්", "adj", "ඡෙදාපයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pācayati", "adj", "pācayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pācayant", "adj", "pācayant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pāceti", "adj", "pāceti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kāreti", "adj", "kāreti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["කාරෙති", "adj", "කාරෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["chedāpeti", "adj", "chedāpeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ඡෙදාපෙති", "adj", "ඡෙදාපෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පචති", "adj", "පචති", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["පාචෙති", "adj", "පාචෙති", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["පාචයති", "adj", "පාචයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාචයන‍්ත්", "adj", "පාචයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["socayati", "adj", "socayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["socayant", "adj", "socayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["socāpeti", "adj", "socāpeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["socāpayati", "adj", "socāpayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["socāpayant", "adj", "socāpayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["socāpayato", "adj", "socāpayato", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["සොචාපෙති", "adj", "සොචාපෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සොචාපයති", "adj", "සොචාපයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සොචාපයන‍්ත්", "adj", "සොචාපයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සොචාපයතො", "adj", "සොචාපයතො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kilamati", "adj", "kilamati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kilameti", "adj", "kilameti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kilamayati", "adj", "kilamayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kilamayant", "adj", "kilamayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["කිලමෙති", "adj", "කිලමෙති", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["කිලමයති", "adj", "කිලමයති", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["කිලමයන‍්ත්", "adj", "කිලමයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කිලමති", "adj", "කිලමති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kilamāpeti", "adj", "kilamāpeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kilamāpayati", "adj", "kilamāpayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["kilamāpent", "adj", "kilamāpent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["kilamāpayant", "adj", "kilamāpayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["කිලමාපෙති", "adj", "කිලමාපෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කිලමාපයති", "adj", "කිලමාපයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කිලමාපයන‍්ත්", "adj", "කිලමාපයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කිලමාපයතො", "adj", "කිලමාපයතො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["phandati", "adj", "phandati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["phandant", "adj", "phandant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["phandeti", "adj", "phandeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["phandayati", "adj", "phandayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["phandayant", "adj", "phandayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["ඵන්‍දති", "adj", "ඵන්‍දති", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ඵන්‍දෙති", "adj", "ඵන්‍දෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දයති", "adj", "ඵන්‍දයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දයන‍්ත්", "adj", "ඵන්‍දයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["phandāpeti", "adj", "phandāpeti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["phandāpent", "adj", "phandāpent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["phandāpayant", "adj", "phandāpayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["phandāpayati", "adj", "phandāpayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ඵන්‍දාපෙති", "adj", "ඵන්‍දාපෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දාපයති", "adj", "ඵන්‍දාපයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ඵන්‍දාපයන‍්ත්", "adj", "ඵන්‍දාපයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["patati", "adj", "patati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["marati", "adj", "marati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pāteti", "adj", "pāteti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pātayati", "adj", "pātayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["පාතෙති", "adj", "පාතෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාතයති", "adj", "පාතයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාතයන‍්ත්", "adj", "පාතයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāṇamatipāteti", "adj", "pāṇamatipāteti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["පාණමතිපාතෙති", "adj", "පාණමතිපාතෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāṇamatipātayati", "adj", "pāṇamatipātayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pāṇamatipātayant", "adj", "pāṇamatipātayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["pāṇamatipātayato", "adj", "pāṇamatipātayato", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["පාණමතිපාතයති", "adj", "පාණමතිපාතයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාණමතිපාතයන‍්ත්", "adj", "පාණමතිපාතයන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාණමතිපාතයතො", "adj", "පාණමතිපාතයතො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["adinna", "adj", "adinna", "", "", "", "not given or"]) + let v = native_list_append(v, ["දින‍්න", "adj", "දින‍්න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අදින‍්න", "adj", "අදින‍්න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ādiyati", "adj", "ādiyati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ādiyant", "adj", "ādiyant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["ආදියති", "adj", "ආදියති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ආදියන‍්ත්", "adj", "ආදියන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["harant", "adj", "harant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["හරති", "adj", "හරති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["හරන‍්ත්", "adj", "හරන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tiṭṭhati", "adj", "tiṭṭhati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["tiṭṭhant", "adj", "tiṭṭhant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["තිට‍්ඨති", "adj", "තිට‍්ඨති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["තිට‍්ඨන‍්ත්", "adj", "තිට‍්ඨන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["parā", "adj", "parā", "", "", "", "inflection of para"]) + let v = native_list_append(v, ["gacchant", "adj", "gacchant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["ගච‍්ඡති", "adj", "ගච‍්ඡති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ගච‍්ඡන‍්ත්", "adj", "ගච‍්ඡන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["bhaṇant", "adj", "bhaṇant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["භණති", "adj", "භණති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["භණන‍්ත්", "adj", "භණන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["කරීයති", "adj", "කරීයති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පාප", "adj", "පාප", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tussati", "adj", "tussati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["tussant", "adj", "tussant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["tussamāna", "adj", "tussamāna", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["tuṭṭha", "adj", "tuṭṭha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["honta", "adj", "honta", "", "", "", "present participle of"]) + let v = native_list_append(v, ["ᩉᩮᩣᨶ᩠ᨲ", "adj", "ᩉᩮᩣᨶ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["හොන‍්ත", "adj", "හොන‍්ත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["होन्त", "adj", "होन्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["भवन्त्", "adj", "भवन्त्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀪𑀯𑀦𑁆𑀢𑁆", "adj", "𑀪𑀯𑀦𑁆𑀢𑁆", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["paṇamant", "adj", "paṇamant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["ᨸᨱᨾᨶ᩠ᨲ᩺", "adj", "ᨸᨱᨾᨶ᩠ᨲ᩺", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨲ", "adj", "ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩍᨾ", "adj", "ᩍᨾ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᩣᩃᩥᨠ", "adj", "ᨠᩣᩃᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["គរុ", "adj", "គរុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["vedent", "adj", "vedent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["vedayant", "adj", "vedayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["ᩅᩮᨴᩮᨲᩥ", "adj", "ᩅᩮᨴᩮᨲᩥ", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ᩅᩮᨴᩮᨶ᩠ᨲ᩺", "adj", "ᩅᩮᨴᩮᨶ᩠ᨲ᩺", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈ", "adj", "ᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sujjhati", "adj", "sujjhati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["suddha", "adj", "suddha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["visujjhati", "adj", "visujjhati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["visodhayati", "adj", "visodhayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["visodhayant", "adj", "visodhayant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["visodhent", "adj", "visodhent", "", "", "", "present active participle"]) + let v = native_list_append(v, ["visuddha", "adj", "visuddha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["dakkhiṇeyya", "adj", "dakkhiṇeyya", "", "", "", "worthy of an"]) + let v = native_list_append(v, ["santindriya", "adj", "santindriya", "", "", "", "tranquil"]) + let v = native_list_append(v, ["pajahati", "adj", "pajahati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pajahant", "adj", "pajahant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["pajahita", "adj", "pajahita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["pahīna", "adj", "pahīna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["pāpuṇant", "adj", "pāpuṇant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["anāsava", "adj", "anāsava", "", "", "", "free from intoxicants"]) + let v = native_list_append(v, ["ᩅᩥᩈᩩᨴ᩠ᨵ", "adj", "ᩅᩥᩈᩩᨴ᩠ᨵ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᨠ᩠ᨡᩥᨱᩮᨿ᩠ᨿ", "adj", "ᨴᨠ᩠ᨡᩥᨱᩮᨿ᩠ᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨶ᩠ᨲᩥᨶ᩠ᨴᩕᩥᨿ", "adj", "ᩈᨶ᩠ᨲᩥᨶ᩠ᨴᩕᩥᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨩᩉᨲᩥ", "adj", "ᨸᨩᩉᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨩᩉᩥᨲ", "adj", "ᨸᨩᩉᩥᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᩉᩦᨶ", "adj", "ᨸᩉᩦᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨩᩉᨶ᩠ᨲ᩺", "adj", "ᨸᨩᩉᨶ᩠ᨲ᩺", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨶᩮᨠ", "adj", "ᨶᩮᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨲ᩠ᨲ", "adj", "ᨸᨲ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨶᩣᩈᩅ", "adj", "ᩋᨶᩣᩈᩅ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["អឌ្ឍ", "adj", "អឌ្ឍ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kathi", "adj", "kathi", "", "", "", "inflection of kathin"]) + let v = native_list_append(v, ["काळ", "adj", "काळ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["anātha", "adj", "anātha", "", "", "", "helpless"]) + let v = native_list_append(v, ["សិទ្ធ", "adj", "សិទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["កិច្ច", "adj", "កិច្ច", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["អនិច្ច", "adj", "អនិច្ច", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sahadhammika", "adj", "sahadhammika", "", "", "", "co-religionist"]) + let v = native_list_append(v, ["दारुण", "adj", "दारुण", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["បាប", "adj", "បាប", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["चण्ड", "adj", "चण्ड", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["วีร", "adj", "วีร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["វីរ", "adj", "វីរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yāyī", "adj", "yāyī", "", "", "", "inflection of yāyin"]) + let v = native_list_append(v, ["ယာယီ", "adj", "ယာယီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပဌမ", "adj", "ပဌမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["मङ्गल", "adj", "मङ्गल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သာဓက", "adj", "သာဓက", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["sādhaka", "adj", "sādhaka", "", "", "", "effecting accomplishing"]) + let v = native_list_append(v, ["သုတ", "adj", "သုတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဝီရ", "adj", "ဝီရ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဇီဝ", "adj", "ဇီဝ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["khama", "adj", "khama", "", "", "", "patient forgiving"]) + let v = native_list_append(v, ["ပဉ္စမ", "adj", "ပဉ္စမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သတ္တမ", "adj", "သတ္တမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အဋ္ဌမ", "adj", "အဋ္ဌမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နဝမ", "adj", "နဝမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သာဓု", "adj", "သာဓု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သက္ကတ", "adj", "သက္ကတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အနိစ္စ", "adj", "အနိစ္စ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နိစ္စ", "adj", "နိစ္စ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပူရ", "adj", "ပူရ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အနန္တ", "adj", "အနန္တ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဂရု", "adj", "ဂရု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒီဃ", "adj", "ဒီဃ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နိဂ္ဂဟိတ", "adj", "နိဂ္ဂဟိတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ရဿ", "adj", "ရဿ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပုဗ္ဗ", "adj", "ပုဗ္ဗ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပစ္ဆိမ", "adj", "ပစ္ဆိမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ကထိန်", "adj", "ကထိန်", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["अतिरेक", "adj", "अतिरेक", "", "", "", "exceeding in excess"]) + let v = native_list_append(v, ["ឧត្តរ", "adj", "ឧត្តរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဂုရု", "adj", "ဂုရု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ពហុ", "adj", "ពហុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ayyā", "adj", "ayyā", "", "", "", "inflection of ayya"]) + let v = native_list_append(v, ["agada", "adj", "agada", "", "", "", "healthy"]) + let v = native_list_append(v, ["ຕະ", "adj", "ຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["พุทฺธ", "adj", "พุทฺธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["คจฺฉติ", "adj", "คจฺฉติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຄຈ຺ຉຕິ", "adj", "ຄຈ຺ຉຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲", "adj", "𑀅𑀲𑁆𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ສັມພຸທທ຺ະ", "adj", "ສັມພຸທທ຺ະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັມປັນນະ", "adj", "ສັມປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຸຄະຕະ", "adj", "ສຸຄະຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ວິທູ", "adj", "ວິທູ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ໂລກະວິທູ", "adj", "ໂລກະວິທູ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອະນຸຕຕະຣະ", "adj", "ອະນຸຕຕະຣະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທັມມະ", "adj", "ທັມມະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸທທ຺ະ", "adj", "ພຸທທ຺ະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["tasassa", "adj", "tasassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["ສັນທິຕ຺ຖ຺ິກະ", "adj", "ສັນທິຕ຺ຖ຺ິກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ກາລິກະ", "adj", "ກາລິກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອະກາລິກະ", "adj", "ອະກາລິກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ວິຍ຺ຍ຺ູ", "adj", "ວິຍ຺ຍ຺ູ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["មត្ត", "adj", "មត្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ເອຫິປັສສິກະ", "adj", "ເອຫິປັສສິກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ໂອປະນະຢິກະ", "adj", "ໂອປະນະຢິກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປັຈຈັຕຕະ", "adj", "ປັຈຈັຕຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ເວທິຕັພພະ", "adj", "ເວທິຕັພພະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["suñña", "adj", "suñña", "", "", "", "empty"]) + let v = native_list_append(v, ["ປະຕ຺ິປັນນະ", "adj", "ປະຕ຺ິປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["supaṭipanna", "adj", "supaṭipanna", "", "", "", "entered upon the"]) + let v = native_list_append(v, ["ສຸປະຕ຺ິປັນນະ", "adj", "ສຸປະຕ຺ິປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸຊຸ", "adj", "ອຸຊຸ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ñāyapaṭipanna", "adj", "ñāyapaṭipanna", "", "", "", "following the right"]) + let v = native_list_append(v, ["ຍ຺າຢະປະຕ຺ິປັນນະ", "adj", "ຍ຺າຢະປະຕ຺ິປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sāmīcipaṭipanna", "adj", "sāmīcipaṭipanna", "", "", "", "following the proper"]) + let v = native_list_append(v, ["ສາມີຈິປະຕ຺ິປັນນະ", "adj", "ສາມີຈິປະຕ຺ິປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອິມະ", "adj", "ອິມະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["idaṃ", "adj", "idaṃ", "", "", "", "nominative/accusative singular neuter"]) + let v = native_list_append(v, ["ເອສະ", "adj", "ເອສະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ເອຕະ", "adj", "ເອຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["āhuṇeyya", "adj", "āhuṇeyya", "", "", "", "worthy of adoration"]) + let v = native_list_append(v, ["ອາຫຸເນ຺ຢຢະ", "adj", "ອາຫຸເນ຺ຢຢະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["pāhuṇeyya", "adj", "pāhuṇeyya", "", "", "", "worthy of hospitality"]) + let v = native_list_append(v, ["ປາຫຸເນ຺ຢຢະ", "adj", "ປາຫຸເນ຺ຢຢະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["dakkhiṇā", "adj", "dakkhiṇā", "", "", "", "inflection of dakkhiṇa"]) + let v = native_list_append(v, ["ທັກຂິເນ຺ຢຢະ", "adj", "ທັກຂິເນ຺ຢຢະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["karanīya", "adj", "karanīya", "", "", "", "misspelling of karaṇīya"]) + let v = native_list_append(v, ["ກະຣະນີຢະ", "adj", "ກະຣະນີຢະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["añjalikaranīya", "adj", "añjalikaranīya", "", "", "", "worthy of reverential"]) + let v = native_list_append(v, ["ອັຍ຺ຊະລິກະຣະນີຢະ", "adj", "ອັຍ຺ຊະລິກະຣະນີຢະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["พลี", "adj", "พลี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ពលី", "adj", "ពលី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["iminā", "adj", "iminā", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["อิมะ", "adj", "อิมะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ปะจะติ", "adj", "ปะจะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะระหันต", "adj", "อะระหันต", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["สัมพุทธะ", "adj", "สัมพุทธะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["สะวากขาตะ", "adj", "สะวากขาตะ", "", "", "", "misspelling of สวากขาตะ"]) + let v = native_list_append(v, ["ສວາກຂາຕະ", "adj", "ສວາກຂາຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["namassati", "adj", "namassati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["นะมัสสะติ", "adj", "นะมัสสะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุปะฏิปันนะ", "adj", "สุปะฏิปันนะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["namati", "adj", "namati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["นะมะติ", "adj", "นะมะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ภะวันต", "adj", "ภะวันต", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["yācati", "adj", "yācati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ยาจะติ", "adj", "ยาจะติ", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["dutiyaṃ", "adj", "dutiyaṃ", "", "", "", "accusative singular masculine/feminine/neuter"]) + let v = native_list_append(v, ["ทุติยัง", "adj", "ทุติยัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["tatiyaṃ", "adj", "tatiyaṃ", "", "", "", "accusative singular masculine/feminine/neuter"]) + let v = native_list_append(v, ["ตะติยัง", "adj", "ตะติยัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["คัจฉะติ", "adj", "คัจฉะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["samādiyati", "adj", "samādiyati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["สะมาทิยะติ", "adj", "สะมาทิยะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทินนะ", "adj", "ทินนะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัพพะ", "adj", "สัพพะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["มังคะละ", "adj", "มังคะละ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["ᨴᩮᩈᩥᨲ", "adj", "ᨴᩮᩈᩥᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᩩᨲ", "adj", "ᩈᩩᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["เทเสติ", "adj", "เทเสติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["apparajakkha", "adj", "apparajakkha", "", "", "", "Only slightly defiled"]) + let v = native_list_append(v, ["อัปปะระชักขะ", "adj", "อัปปะระชักขะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["katañjalin", "adj", "katañjalin", "", "", "", "waiing in the"]) + let v = native_list_append(v, ["กัตอัญชะลิน", "adj", "กัตอัญชะลิน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["anukampati", "adj", "anukampati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["kampati", "adj", "kampati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["anukampant", "adj", "anukampant", "", "", "", "present participle of"]) + let v = native_list_append(v, ["อะนุกัมปะติ", "adj", "อะนุกัมปะติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะนุกัมปันต", "adj", "อะนุกัมปันต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["adhivara", "adj", "adhivara", "", "", "", "superb"]) + let v = native_list_append(v, ["anadhivara", "adj", "anadhivara", "", "", "", "unsurpassed"]) + let v = native_list_append(v, ["andhivara", "adj", "andhivara", "", "", "", "misreading of anadhivara"]) + let v = native_list_append(v, ["อันธิวะระ", "adj", "อันธิวะระ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["-jātika", "adj", "-jātika", "", "", "", "being like being"]) + let v = native_list_append(v, ["-ชาติกะ", "adj", "-ชาติกะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัมปันนะ", "adj", "สัมปันนะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุคะตะ", "adj", "สุคะตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["วิทู", "adj", "วิทู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะนุตตะระ", "adj", "อะนุตตะระ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทัมมะ", "adj", "ทัมมะ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["โลกะวิทู", "adj", "โลกะวิทู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สันทิฏฐิกะ", "adj", "สันทิฏฐิกะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กาลิกะ", "adj", "กาลิกะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะกาลิกะ", "adj", "อะกาลิกะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอหิปัสสิกะ", "adj", "เอหิปัสสิกะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โอปะนะยิกะ", "adj", "โอปะนะยิกะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ปัจจัตตะ", "adj", "ปัจจัตตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เวทิตัพพะ", "adj", "เวทิตัพพะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["วิญญู", "adj", "วิญญู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ปะฏิปันนะ", "adj", "ปะฏิปันนะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อุชุ", "adj", "อุชุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สามีจิปะฏิปันนะ", "adj", "สามีจิปะฏิปันนะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอตะ", "adj", "เอตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอสะ", "adj", "เอสะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["āhuneyya", "adj", "āhuneyya", "", "", "", "worthy of adoration"]) + let v = native_list_append(v, ["อาหุเนยยะ", "adj", "อาหุเนยยะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["pāhuneyya", "adj", "pāhuneyya", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ปาหุเนยยะ", "adj", "ปาหุเนยยะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทักขิเณยยะ", "adj", "ทักขิเณยยะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กะระณียะ", "adj", "กะระณียะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["vigacchati", "adj", "vigacchati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["vigata", "adj", "vigata", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sampayutta", "adj", "sampayutta", "", "", "", "associated"]) + let v = native_list_append(v, ["payutta", "adj", "payutta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["payuñjati", "adj", "payuñjati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["วิคะตะ", "adj", "วิคะตะ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sampayuttaka", "adj", "sampayuttaka", "", "", "", "concomitant"]) + let v = native_list_append(v, ["ສັມປະຍຸຕຕະກະ", "adj", "ສັມປະຍຸຕຕະກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["avatiṭṭhati", "adj", "avatiṭṭhati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pācīna", "adj", "pācīna", "", "", "", "eastern"]) + let v = native_list_append(v, ["vippajahati", "adj", "vippajahati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["atikkamati", "adj", "atikkamati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["sajjati", "adj", "sajjati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["sajjamāna", "adj", "sajjamāna", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["ᩋᩅᨲᩥᨭᩛᨲᩥ", "adj", "ᩋᩅᨲᩥᨭᩛᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨩᩉᨲᩥ", "adj", "ᨩᩉᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᨷ᩠ᨷᨩᩉᨲᩥ", "adj", "ᩅᩥᨷ᩠ᨷᨩᩉᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩥᨸ᩠ᨸᨩᩉᨲᩥ", "adj", "ᩅᩥᨸ᩠ᨸᨩᩉᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨲᩥᨠ᩠ᨠᨾᨲᩥ", "adj", "ᩋᨲᩥᨠ᩠ᨠᨾᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["akiñcana", "adj", "akiñcana", "", "", "", "having nothing"]) + let v = native_list_append(v, ["ᩋᨠᩥᨬ᩠ᨧᨶ", "adj", "ᩋᨠᩥᨬ᩠ᨧᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ອວຕິຏ຺ຐຕິ", "adj", "ອວຕິຏ຺ຐຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປຊຫຕິ", "adj", "ປຊຫຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊຫຕິ", "adj", "ຊຫຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ວິປ຺ປຊຫຕິ", "adj", "ວິປ຺ປຊຫຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສພ຺ພ", "adj", "ສພ຺ພ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ອຕິກ຺ກມຕິ", "adj", "ອຕິກ຺ກມຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຊ຺ຊຕິ", "adj", "ສຊ຺ຊຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຊ຺ຊມານ", "adj", "ສຊ຺ຊມານ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["อรหนฺตฺ", "adj", "อรหนฺตฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สมฺพุทฺธ", "adj", "สมฺพุทฺธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อรหํ", "adj", "อรหํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สมฺปนฺน", "adj", "สมฺปนฺน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨷᨶ᩠ᨶ", "adj", "ᩈᨾ᩠ᨷᨶ᩠ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สุคต", "adj", "สุคต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อนุตฺตร", "adj", "อนุตฺตร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทมฺม", "adj", "ทมฺม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โลกวิทู", "adj", "โลกวิทู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สฺวากฺขาต", "adj", "สฺวากฺขาต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สนฺทิฏฺฐิก", "adj", "สนฺทิฏฺฐิก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อกาลิก", "adj", "อกาลิก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กาลิก", "adj", "กาลิก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอหิปสฺสิก", "adj", "เอหิปสฺสิก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โอปนยิก", "adj", "โอปนยิก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩰᨷᨶᨿᩥᨠ", "adj", "ᩋᩰᨷᨶᨿᩥᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปจฺจตฺต", "adj", "ปจฺจตฺต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เวทิตพฺพ", "adj", "เวทิตพฺพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["วิญฺญู", "adj", "วิญฺญู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุปฏิปนฺน", "adj", "สุปฏิปนฺน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩩᨷᨭᩥᨷᨶ᩠ᨶ", "adj", "ᩈᩩᨷᨭᩥᨷᨶ᩠ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปฏิปนฺน", "adj", "ปฏิปนฺน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ญายปฏิปนฺน", "adj", "ญายปฏิปนฺน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨬᩣᨿᨷᨭᩥᨷᨶ᩠ᨶ", "adj", "ᨬᩣᨿᨷᨭᩥᨷᨶ᩠ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สามีจิปฏิปนฺน", "adj", "สามีจิปฏิปนฺน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩣᨾᩦᨧᩥᨷᨭᩥᨷᨶ᩠ᨶ", "adj", "ᩈᩣᨾᩦᨧᩥᨷᨭᩥᨷᨶ᩠ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["อิม", "adj", "อิม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอต", "adj", "เอต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อาหุเนยฺย", "adj", "อาหุเนยฺย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩣᩉᩩᨶᩮᨿ᩠ᨿ", "adj", "ᩋᩣᩉᩩᨶᩮᨿ᩠ᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨷᩤᩉᩩᨶᩮᨿ᩠ᨿ", "adj", "ᨷᩤᩉᩩᨶᩮᨿ᩠ᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ทกฺขิเณยฺย", "adj", "ทกฺขิเณยฺย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["baddha", "adj", "baddha", "", "", "", "past passive participle"]) + let v = native_list_append(v, ["patiṭṭhahati", "adj", "patiṭṭhahati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["patiṭṭhita", "adj", "patiṭṭhita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sakala", "adj", "sakala", "", "", "", "whole entire"]) + let v = native_list_append(v, ["วนฺทติ", "adj", "วนฺทติ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สพฺพ", "adj", "สพฺพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ขมติ", "adj", "ขมติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ภวนฺตฺ", "adj", "ภวนฺตฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨽᩅᨶ᩠ᨲ᩺", "adj", "ᨽᩅᨶ᩠ᨲ᩺", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨣᩩᩁᩩ", "adj", "ᨣᩩᩁᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปติฏฺฐิต", "adj", "ปติฏฺฐิต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᨲᩥᨭᩛᩥᨲ", "adj", "ᨷᨲᩥᨭᩛᩥᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨠᩃ", "adj", "ᩈᨠᩃ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["anumoditabba", "adj", "anumoditabba", "", "", "", "gerundive of anumodati"]) + let v = native_list_append(v, ["อนุโมทติ", "adj", "อนุโมทติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อนุโมทิตพฺพ", "adj", "อนุโมทิตพฺพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨶᩩᨾᩮᩣᨴᨲᩥ", "adj", "ᩋᨶᩩᨾᩮᩣᨴᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨶᩩᨾᩮᩣᨴᩥᨲᨻᩛ", "adj", "ᩋᨶᩩᨾᩮᩣᨴᩥᨲᨻᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["dātabba", "adj", "dātabba", "", "", "", "gerundive of dadāti"]) + let v = native_list_append(v, ["ทาตพฺพ", "adj", "ทาตพฺพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᩤᨲᨻᩛ", "adj", "ᨴᩤᨲᨻᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สาธุ", "adj", "สาธุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩣᨵᩩ", "adj", "ᩈᩣᨵᩩ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ทนฺต", "adj", "ทนฺต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨶ᩠ᨲ", "adj", "ᨴᨶ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["วกฺก", "adj", "วกฺก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩅᨠ᩠ᨠ", "adj", "ᩅᨠ᩠ᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["อนฺต", "adj", "อนฺต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨶ᩠ᨲ", "adj", "ᩋᨶ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปุพฺพ", "adj", "ปุพฺพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩩᨻᩛ", "adj", "ᨷᩩᨻᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩃᩮᩣᩉᩥᨲ", "adj", "ᩃᩮᩣᩉᩥᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["มุตฺต", "adj", "มุตฺต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩩᨲ᩠ᨲ", "adj", "ᨾᩩᨲ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kusala", "adj", "kusala", "", "", "", "clever"]) + let v = native_list_append(v, ["กุสล", "adj", "กุสล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩩᩈᩃ", "adj", "ᨠᩩᩈᩃ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kattabba", "adj", "kattabba", "", "", "", "gerundive of karoti"]) + let v = native_list_append(v, ["กตฺตพฺพ", "adj", "กตฺตพฺพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᨲ᩠ᨲᨻᩛ", "adj", "ᨠᨲ᩠ᨲᨻᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["กต", "adj", "กต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทีฆ", "adj", "ทีฆ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᩦᨥ", "adj", "ᨴᩦᨥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kathin", "adj", "kathin", "", "", "", "speaking"]) + let v = native_list_append(v, ["-āyuka", "adj", "-āyuka", "", "", "", "Having a specified"]) + let v = native_list_append(v, ["-อายุก", "adj", "-อายุก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["-ᩋᩣᨿᩩᨠ", "adj", "-ᩋᩣᨿᩩᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sukhī", "adj", "sukhī", "", "", "", "inflection of sukhin"]) + let v = native_list_append(v, ["สุขี", "adj", "สุขี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩩᨡᩦ", "adj", "ᩈᩩᨡᩦ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["pariharati", "adj", "pariharati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ปริหรติ", "adj", "ปริหรติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩁᩥᩉᩁᨲᩥ", "adj", "ᨷᩁᩥᩉᩁᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sukhita", "adj", "sukhita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["สุขิต", "adj", "สุขิต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩩᨡᩥᨲ", "adj", "ᩈᩩᨡᩥᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สมิชฺฌติ", "adj", "สมิชฺฌติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾᩥᨩ᩠ᨫᨲᩥ", "adj", "ᩈᨾᩥᨩ᩠ᨫᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["naye", "adj", "naye", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["asita", "adj", "asita", "", "", "", "eaten"]) + let v = native_list_append(v, ["មង្គល", "adj", "មង្គល", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["สา", "adj", "สา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["សាធក", "adj", "សាធក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["kantanti", "adj", "kantanti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["varena", "adj", "varena", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["তাসু", "adj", "তাসু", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ယမက", "adj", "ယမက", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["phallati", "adj", "phallati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["datta", "adj", "datta", "", "", "", "passive past participle"]) + let v = native_list_append(v, ["sūra", "adj", "sūra", "", "", "", "valiant courageous"]) + let v = native_list_append(v, ["sumedha", "adj", "sumedha", "", "", "", "intelligent"]) + let v = native_list_append(v, ["तुल्य", "adj", "तुल्य", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["arahati", "adj", "arahati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["āraññaka", "adj", "āraññaka", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["vanant", "adj", "vanant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["សម្មតិ", "adj", "សម្មតិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["อมต", "adj", "อมต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["អគ្គ", "adj", "អគ្គ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["mutto", "adj", "mutto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ᨠᩁᩮᩣᨲᩥ", "adj", "ᨠᩁᩮᩣᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["กโรติ", "adj", "กโรติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀫𑀚𑁆𑀛𑀁", "adj", "𑀫𑀚𑁆𑀛𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁄𑀓", "adj", "𑀅𑀲𑁄𑀓", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["gopeti", "adj", "gopeti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["guttadvāra", "adj", "guttadvāra", "", "", "", "with well-guarded senses"]) + let v = native_list_append(v, ["ගුත‍්තද‍්වාර", "adj", "ගුත‍්තද‍්වාර", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ගුත‍්ත", "adj", "ගුත‍්ත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ගොපෙති", "adj", "ගොපෙති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පස‍්සති", "adj", "පස‍්සති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["saṃvuta", "adj", "saṃvuta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["asaṃvuta", "adj", "asaṃvuta", "", "", "", "unrestrained"]) + let v = native_list_append(v, ["අසංවුත", "adj", "අසංවුත", "", "", "", "unrestrained"]) + let v = native_list_append(v, ["සංවුත", "adj", "සංවුත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["viharant", "adj", "viharant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["විහරන‍්ත්", "adj", "විහරන‍්ත්", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["විහරති", "adj", "විහරති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["akusala", "adj", "akusala", "", "", "", "unskilful"]) + let v = native_list_append(v, ["අන්‍වාස‍්සවති", "adj", "අන්‍වාස‍්සවති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pāpaka", "adj", "pāpaka", "", "", "", "evil"]) + let v = native_list_append(v, ["පාපක", "adj", "පාපක", "", "", "", "evil"]) + let v = native_list_append(v, ["āsavati", "adj", "āsavati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["assavati", "adj", "assavati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["අන්‍වස‍්සවති", "adj", "අන්‍වස‍්සවති", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["upavajja", "adj", "upavajja", "", "", "", "blameworthy"]) + let v = native_list_append(v, ["𑀩𑀤𑁆𑀥", "adj", "𑀩𑀤𑁆𑀥", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ඉම", "adj", "ඉම", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අයං", "adj", "අයං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අඤ‍්ඤතර", "adj", "අඤ‍්ඤතර", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["yutta", "adj", "yutta", "", "", "", "past passive participle"]) + let v = native_list_append(v, ["sopakāra", "adj", "sopakāra", "", "", "", "helpful"]) + let v = native_list_append(v, ["tasmā", "adj", "tasmā", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["तस्मा", "adj", "तस्मा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bahūpakāra", "adj", "bahūpakāra", "", "", "", "very useful"]) + let v = native_list_append(v, ["बहूपकार", "adj", "बहूपकार", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဇရာ", "adj", "ဇရာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["सोपकार", "adj", "सोपकार", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["इम", "adj", "इम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["odanta", "adj", "odanta", "", "", "", "ending in o."]) + let v = native_list_append(v, ["रस्स", "adj", "रस्स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अञ्ञ", "adj", "अञ्ञ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["दीघ", "adj", "दीघ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["niggahīta", "adj", "niggahīta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["niggaṇhati", "adj", "niggaṇhati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["gaṇhati", "adj", "gaṇhati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["निग्गहीत", "adj", "निग्गहीत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ṭhapeti", "adj", "ṭhapeti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ठपेति", "adj", "ठपेति", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["सेस", "adj", "सेस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["वग्ग", "adj", "वग्ग", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["nīta", "adj", "nīta", "", "", "", "led guided"]) + let v = native_list_append(v, ["kattukāma", "adj", "kattukāma", "", "", "", "Wanting to do"]) + let v = native_list_append(v, ["kātukāma", "adj", "kātukāma", "", "", "", "Wanting to do"]) + let v = native_list_append(v, ["anena", "adj", "anena", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["अनेन", "adj", "अनेन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sakkata", "adj", "sakkata", "", "", "", "past participle of"]) + let v = native_list_append(v, ["sakkaroti", "adj", "sakkaroti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["सक्कत", "adj", "सक्कत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ghosa", "adj", "ghosa", "", "", "", "voiced"]) + let v = native_list_append(v, ["aghosa", "adj", "aghosa", "", "", "", "voiceless"]) + let v = native_list_append(v, ["अघोस", "adj", "अघोस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सन्त", "adj", "सन्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पठम", "adj", "पठम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कत्तुकाम", "adj", "कत्तुकाम", "", "", "", "Wanting to do"]) + let v = native_list_append(v, ["पुब्ब", "adj", "पुब्ब", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["adhoṭhita", "adj", "adhoṭhita", "", "", "", "standing below"]) + let v = native_list_append(v, ["ṭhita", "adj", "ṭhita", "", "", "", "standing up"]) + let v = native_list_append(v, ["ठित", "adj", "ठित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अधोठित", "adj", "अधोठित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नय", "adj", "नय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["युत्त", "adj", "युत्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["bhūta", "adj", "bhūta", "", "", "", "natural"]) + let v = native_list_append(v, ["antabhūta", "adj", "antabhūta", "", "", "", "final at the"]) + let v = native_list_append(v, ["अन्तभूत", "adj", "अन्तभूत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सब्ब", "adj", "सब्ब", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["एत", "adj", "एत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kaniṭṭha", "adj", "kaniṭṭha", "", "", "", "youngest"]) + let v = native_list_append(v, ["နံ", "adj", "နံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jarādhamma", "adj", "jarādhamma", "", "", "", "subject to growing"]) + let v = native_list_append(v, ["samanuñña", "adj", "samanuñña", "", "", "", "approving"]) + let v = native_list_append(v, ["jarā", "adj", "jarā", "", "", "", "inflection of jara"]) + let v = native_list_append(v, ["kuddha", "adj", "kuddha", "", "", "", "angry"]) + let v = native_list_append(v, ["parassa", "adj", "parassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["gahetabba", "adj", "gahetabba", "", "", "", "gerundive of gaṇhāti"]) + let v = native_list_append(v, ["गहेतब्ब", "adj", "गहेतब्ब", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yojetabba", "adj", "yojetabba", "", "", "", "gerundive of yojeti"]) + let v = native_list_append(v, ["योजेतब्ब", "adj", "योजेतब्ब", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["appatissa", "adj", "appatissa", "", "", "", "not docile;rebellious"]) + let v = native_list_append(v, ["payujjamāna", "adj", "payujjamāna", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["पयुज्जमान", "adj", "पयुज्जमान", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tulya", "adj", "tulya", "", "", "", "gerundive of tuleti"]) + let v = native_list_append(v, ["majjhima", "adj", "majjhima", "", "", "", "middle medium mediocre"]) + let v = native_list_append(v, ["bhīma", "adj", "bhīma", "", "", "", "dreadful horrible cruel"]) + let v = native_list_append(v, ["acchariya", "adj", "acchariya", "", "", "", "marvelous"]) + let v = native_list_append(v, ["bāhu", "adj", "bāhu", "", "", "", "combining form of"]) + let v = native_list_append(v, ["nipaka", "adj", "nipaka", "", "", "", "clever"]) + let v = native_list_append(v, ["patissata", "adj", "patissata", "", "", "", "thoughtful"]) + let v = native_list_append(v, ["pañcaṅgika", "adj", "pañcaṅgika", "", "", "", "consisting of five"]) + let v = native_list_append(v, ["caturaṃsa", "adj", "caturaṃsa", "", "", "", "having four edges"]) + let v = native_list_append(v, ["samatittika", "adj", "samatittika", "", "", "", "brimful"]) + let v = native_list_append(v, ["pūra", "adj", "pūra", "", "", "", "full"]) + let v = native_list_append(v, ["लोहित", "adj", "लोहित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["gilānaka", "adj", "gilānaka", "", "", "", "sick"]) + let v = native_list_append(v, ["sapati", "adj", "sapati", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["sināta", "adj", "sināta", "", "", "", "bathed bathing"]) + let v = native_list_append(v, ["जर", "adj", "जर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["uppanna", "adj", "uppanna", "", "", "", "past participle of"]) + let v = native_list_append(v, ["पच्चुप्पन्न", "adj", "पच्चुप्पन्न", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["gabbhinī", "adj", "gabbhinī", "", "", "", "pregnant"]) + let v = native_list_append(v, ["sappañña", "adj", "sappañña", "", "", "", "wise"]) + let v = native_list_append(v, ["vattamāna", "adj", "vattamāna", "", "", "", "present middle participle"]) + let v = native_list_append(v, ["vattamānā", "adj", "vattamānā", "", "", "", "inflection of vattamāna"]) + let v = native_list_append(v, ["वत्तमान", "adj", "वत्तमान", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कालिका", "adj", "कालिका", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀚𑀻𑀯", "adj", "𑀚𑀻𑀯", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["majjha", "adj", "majjha", "", "", "", "middle"]) + let v = native_list_append(v, ["𑀫𑀚𑁆𑀛", "adj", "𑀫𑀚𑁆𑀛", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["mūḷha", "adj", "mūḷha", "", "", "", "foolish"]) + let v = native_list_append(v, ["दत्त", "adj", "दत्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सुखिन्", "adj", "सुखिन्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["giddha", "adj", "giddha", "", "", "", "greedy"]) + let v = native_list_append(v, ["একো", "adj", "একো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["madhurakajāta", "adj", "madhurakajāta", "", "", "", "weak and stiff"]) + let v = native_list_append(v, ["जित", "adj", "जित", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yamaka", "adj", "yamaka", "", "", "", "double twin"]) + let v = native_list_append(v, ["muddhāvasitta", "adj", "muddhāvasitta", "", "", "", "properly anointed king"]) + let v = native_list_append(v, ["vadaññū", "adj", "vadaññū", "", "", "", "liberal"]) + let v = native_list_append(v, ["tālāvatthukata", "adj", "tālāvatthukata", "", "", "", "rendered groundless; uprooted"]) + let v = native_list_append(v, ["āraññika", "adj", "āraññika", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["sāthalika", "adj", "sāthalika", "", "", "", "lethargic"]) + let v = native_list_append(v, ["rajanīya", "adj", "rajanīya", "", "", "", "enticing"]) + let v = native_list_append(v, ["viyatta", "adj", "viyatta", "", "", "", "learned"]) + let v = native_list_append(v, ["appamattaka", "adj", "appamattaka", "", "", "", "small little trifling"]) + let v = native_list_append(v, ["asaṃsaṭṭha", "adj", "asaṃsaṭṭha", "", "", "", "unmixed"]) + let v = native_list_append(v, ["lugge", "adj", "lugge", "", "", "", "inflection of lugga"]) + let v = native_list_append(v, ["saddala", "adj", "saddala", "", "", "", "grassy"]) + let v = native_list_append(v, ["sabbha", "adj", "sabbha", "", "", "", "polite"]) + let v = native_list_append(v, ["cātuddisa", "adj", "cātuddisa", "", "", "", "belonging to the"]) + let v = native_list_append(v, ["yācanaka", "adj", "yācanaka", "", "", "", "begging"]) + let v = native_list_append(v, ["anissara", "adj", "anissara", "", "", "", "having no power"]) + let v = native_list_append(v, ["vikappī", "adj", "vikappī", "", "", "", "having intentions upon"]) + let v = native_list_append(v, ["duṭṭha", "adj", "duṭṭha", "", "", "", "spoilt"]) + let v = native_list_append(v, ["vijahati", "adj", "vijahati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["yādisa", "adj", "yādisa", "", "", "", "like which like"]) + let v = native_list_append(v, ["itarītara", "adj", "itarītara", "", "", "", "any"]) + let v = native_list_append(v, ["အရဟတော", "adj", "အရဟတော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["vippaṭisārin", "adj", "vippaṭisārin", "", "", "", "remorseful"]) + let v = native_list_append(v, ["bāhu-", "adj", "bāhu-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["upekkhaka", "adj", "upekkhaka", "", "", "", "patient"]) + let v = native_list_append(v, ["vikkhittacitta", "adj", "vikkhittacitta", "", "", "", "of confused or"]) + let v = native_list_append(v, ["aneḷamūga", "adj", "aneḷamūga", "", "", "", "not deaf and"]) + let v = native_list_append(v, ["dunnikkhitta", "adj", "dunnikkhitta", "", "", "", "badly or wrongly"]) + let v = native_list_append(v, ["dubbaca", "adj", "dubbaca", "", "", "", "obstinate"]) + let v = native_list_append(v, ["assaddha", "adj", "assaddha", "", "", "", "faithless"]) + let v = native_list_append(v, ["ສັມພຸດທະ", "adj", "ສັມພຸດທະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທຸຕິຍັງ", "adj", "ທຸຕິຍັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຄັດສະຕິ", "adj", "ຄັດສະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["युवति", "adj", "युवति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["विकट", "adj", "विकट", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vikaṭa", "adj", "vikaṭa", "", "", "", "changed altered"]) + let v = native_list_append(v, ["vikata", "adj", "vikata", "", "", "", "changed altered"]) + let v = native_list_append(v, ["seṭṭha", "adj", "seṭṭha", "", "", "", "best excellent"]) + let v = native_list_append(v, ["kākapeyya", "adj", "kākapeyya", "", "", "", "full to the"]) + let v = native_list_append(v, ["ghammābhitatta", "adj", "ghammābhitatta", "", "", "", "overpowered by heat."]) + let v = native_list_append(v, ["कूट", "adj", "कूट", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vāmana", "adj", "vāmana", "", "", "", "dwarfish small"]) + let v = native_list_append(v, ["वामन", "adj", "वामन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["लोल", "adj", "लोल", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["puṭṭha", "adj", "puṭṭha", "", "", "", "fed nourished"]) + let v = native_list_append(v, ["odātavasana", "adj", "odātavasana", "", "", "", "clad in white"]) + let v = native_list_append(v, ["saṇha", "adj", "saṇha", "", "", "", "smooth"]) + let v = native_list_append(v, ["cakkhussa", "adj", "cakkhussa", "", "", "", "good for the"]) + let v = native_list_append(v, ["ariyo", "adj", "ariyo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["မင်္ဂလ", "adj", "မင်္ဂလ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဖုဿ", "adj", "ဖုဿ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["maṅkubhūta", "adj", "maṅkubhūta", "", "", "", "silent downcast."]) + let v = native_list_append(v, ["piṅgala", "adj", "piṅgala", "", "", "", "reddish-yellow brown tawny"]) + let v = native_list_append(v, ["piñjara", "adj", "piñjara", "", "", "", "of a reddish"]) + let v = native_list_append(v, ["chinna", "adj", "chinna", "", "", "", "cut off destroyed"]) + let v = native_list_append(v, ["āvāsika", "adj", "āvāsika", "", "", "", "resident"]) + let v = native_list_append(v, ["vattasampanna", "adj", "vattasampanna", "", "", "", "dutiful"]) + let v = native_list_append(v, ["เต", "adj", "เต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["pesala", "adj", "pesala", "", "", "", "beautiful pleasant amiable"]) + let v = native_list_append(v, ["anuddiṭṭha", "adj", "anuddiṭṭha", "", "", "", "Not pointed out"]) + let v = native_list_append(v, ["jāta", "adj", "jāta", "", "", "", "born produced arisen"]) + let v = native_list_append(v, ["purāṇa", "adj", "purāṇa", "", "", "", "old worn out"]) + let v = native_list_append(v, ["somanassajāta", "adj", "somanassajāta", "", "", "", "joyful"]) + let v = native_list_append(v, ["𑀲", "adj", "𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["sanantana", "adj", "sanantana", "", "", "", "perpetual"]) + let v = native_list_append(v, ["kāriya", "adj", "kāriya", "", "", "", "to be done"]) + let v = native_list_append(v, ["তুরিত", "adj", "তুরিত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["kosiya", "adj", "kosiya", "", "", "", "silken"]) + let v = native_list_append(v, ["โกสิย", "adj", "โกสิย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຕະຕິຍັງ", "adj", "ຕະຕິຍັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["आगामिन्", "adj", "आगामिन्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["āgāmin", "adj", "āgāmin", "", "", "", "coming back returning"]) + let v = native_list_append(v, ["ອະນຸດຕະລະ", "adj", "ອະນຸດຕະລະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["জর", "adj", "জর", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["aḍḍha", "adj", "aḍḍha", "", "", "", "rich opulent wealthy"]) + let v = native_list_append(v, ["āḷhiya", "adj", "āḷhiya", "", "", "", "rich rich in"]) + let v = native_list_append(v, ["orimo", "adj", "orimo", "", "", "", "Alternative citation form"]) + let v = native_list_append(v, ["kīḷati", "adj", "kīḷati", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["kīta", "adj", "kīta", "", "", "", "bought purchased"]) + let v = native_list_append(v, ["vajirahattha", "adj", "vajirahattha", "", "", "", "having a diamond"]) + let v = native_list_append(v, ["सच्चे", "adj", "सच्चे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सुखो", "adj", "सुखो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["āhacca", "adj", "āhacca", "", "", "", "gerundive of āharati"]) + let v = native_list_append(v, ["abhitiṭṭhati", "adj", "abhitiṭṭhati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["pacceka", "adj", "pacceka", "", "", "", "each one single"]) + let v = native_list_append(v, ["sutavant", "adj", "sutavant", "", "", "", "past active participle"]) + let v = native_list_append(v, ["sutavā", "adj", "sutavā", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["สุตวนฺตฺ", "adj", "สุตวนฺตฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุตวา", "adj", "สุตวา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุตะวันต", "adj", "สุตะวันต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุตะวา", "adj", "สุตะวา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สวากขาตะ", "adj", "สวากขาตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["bhumma", "adj", "bhumma", "", "", "", "terrestrial"]) + let v = native_list_append(v, ["bhummā", "adj", "bhummā", "", "", "", "inflection of bhumma"]) + let v = native_list_append(v, ["bhummo", "adj", "bhummo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ภุมมะ", "adj", "ภุมมะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["ภุมโม", "adj", "ภุมโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ภุมมา", "adj", "ภุมมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["sāveti", "adj", "sāveti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["sāvayati", "adj", "sāvayati", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["anussāveti", "adj", "anussāveti", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["อะนุสสาเวติ", "adj", "อะนุสสาเวติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["cātummahārājika", "adj", "cātummahārājika", "", "", "", "of the Four"]) + let v = native_list_append(v, ["จาตุมมะหาราชิกะ", "adj", "จาตุมมะหาราชิกะ", "", "", "", "Thai script without"]) + let v = native_list_append(v, ["एन", "adj", "एन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["cātummahārājiko", "adj", "cātummahārājiko", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["cātummahārājikā", "adj", "cātummahārājikā", "", "", "", "inflection of cātummahārājika"]) + let v = native_list_append(v, ["จาตุมมะหาราชิกา", "adj", "จาตุมมะหาราชิกา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["จาตุมมะหาราชิโก", "adj", "จาตุมมะหาราชิโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["laddha", "adj", "laddha", "", "", "", "taken obtained received"]) + let v = native_list_append(v, ["sassato", "adj", "sassato", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["sambuddhassa", "adj", "sambuddhassa", "", "", "", "genitive/dative masculine/neuter singular"]) + let v = native_list_append(v, ["arahato", "adj", "arahato", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["အရဟန္တ်", "adj", "အရဟန္တ်", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["တဿ", "adj", "တဿ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["तस्स", "adj", "तस्स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ตสฺส", "adj", "ตสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ตัสสะ", "adj", "ตัสสะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨲᩔ", "adj", "ᨲᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["अरहतो", "adj", "अरहतो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["อรหโต", "adj", "อรหโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะระหะโต", "adj", "อะระหะโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᩁᩉᨲᩮᩣ", "adj", "ᩋᩁᩉᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["अरहन्त्", "adj", "अरहन्त्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သမ္ဗုဒ္ဓ", "adj", "သမ္ဗုဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အန္တ", "adj", "အန္တ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["sakkhidiṭṭha", "adj", "sakkhidiṭṭha", "", "", "", "seen face to"]) + let v = native_list_append(v, ["āgata", "adj", "āgata", "", "", "", "come arrived"]) + let v = native_list_append(v, ["buddhassa", "adj", "buddhassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["buddhāya", "adj", "buddhāya", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["ဗုဒ္ဓါယ", "adj", "ဗုဒ္ဓါယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["គុរុ", "adj", "គុរុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["သိဒ္ဓ", "adj", "သိဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["siddho", "adj", "siddho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["सिद्धो", "adj", "सिद्धो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သိဒ္ဓေါ", "adj", "သိဒ္ဓေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សិទ្ធោ", "adj", "សិទ្ធោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["siddhaṃ", "adj", "siddhaṃ", "", "", "", "inflection of siddha"]) + let v = native_list_append(v, ["सिद्धं", "adj", "सिद्धं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["သိဒ္ဓံ", "adj", "သိဒ္ဓံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សិទ្ធំ", "adj", "សិទ្ធំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["parivuṭṭha", "adj", "parivuṭṭha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["vasati", "adj", "vasati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["लोलो", "adj", "लोलो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["balin", "adj", "balin", "", "", "", "strong"]) + let v = native_list_append(v, ["balī", "adj", "balī", "", "", "", "inflection of balin"]) + let v = native_list_append(v, ["pāpin", "adj", "pāpin", "", "", "", "evil"]) + let v = native_list_append(v, ["pāpī", "adj", "pāpī", "", "", "", "inflection of pāpa"]) + let v = native_list_append(v, ["pāpi", "adj", "pāpi", "", "", "", "inflection of pāpin"]) + let v = native_list_append(v, ["พลิ", "adj", "พลิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["พลินฺ", "adj", "พลินฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀅𑀝𑁆𑀞𑀫", "adj", "𑀅𑀝𑁆𑀞𑀫", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["yāyin", "adj", "yāyin", "", "", "", "going"]) + let v = native_list_append(v, ["anāgāmin", "adj", "anāgāmin", "", "", "", "non-returner anāgāmi one"]) + let v = native_list_append(v, ["anāgāmī", "adj", "anāgāmī", "", "", "", "inflection of anāgāmin"]) + let v = native_list_append(v, ["gūḷha", "adj", "gūḷha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["rosanti", "adj", "rosanti", "", "", "", "vocative singular feminine"]) + let v = native_list_append(v, ["अट्ठम", "adj", "अट्ठम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဨကံ", "adj", "ဨကံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["एको", "adj", "एको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["එකො", "adj", "එකො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဧကော", "adj", "ဧကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဨကော", "adj", "ဨကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["เอโก", "adj", "เอโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩑᨠᩮᩣ", "adj", "ᩑᨠᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ເອໂກ", "adj", "ເອໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ឯកោ", "adj", "ឯកោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["aniccaṃ", "adj", "aniccaṃ", "", "", "", "inflection of anicca"]) + let v = native_list_append(v, ["အနိစ္စံ", "adj", "အနိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["អនិច្ចំ", "adj", "អនិច្ចំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["niccaṃ", "adj", "niccaṃ", "", "", "", "inflection of nicca"]) + let v = native_list_append(v, ["နိစ္စံ", "adj", "နိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["nicco", "adj", "nicco", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["နိစ္စော", "adj", "နိစ္စော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["saddhāyika", "adj", "saddhāyika", "", "", "", "trustworthy"]) + let v = native_list_append(v, ["serī", "adj", "serī", "", "", "", "inflection of serin"]) + let v = native_list_append(v, ["เสรินฺ", "adj", "เสรินฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เสริน", "adj", "เสริน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["saccaṃ", "adj", "saccaṃ", "", "", "", "inflection of sacca"]) + let v = native_list_append(v, ["ᩈᨧ᩠ᨧᩮᩣ", "adj", "ᩈᨧ᩠ᨧᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨧ᩠ᨧᩴ", "adj", "ᩈᨧ᩠ᨧᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["𑀲𑀢𑁆𑀢𑀫", "adj", "𑀲𑀢𑁆𑀢𑀫", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["sattama", "adj", "sattama", "", "", "", "seventh"]) + let v = native_list_append(v, ["yamako", "adj", "yamako", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["यमको", "adj", "यमको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ယမကော", "adj", "ယမကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yamakaṃ", "adj", "yamakaṃ", "", "", "", "inflection of yamaka"]) + let v = native_list_append(v, ["यमकं", "adj", "यमकं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ယမကံ", "adj", "ယမကံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["majjho", "adj", "majjho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["𑀫𑀚𑁆𑀛𑁄", "adj", "𑀫𑀚𑁆𑀛𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["pakkha", "adj", "pakkha", "", "", "", "visible clear"]) + let v = native_list_append(v, ["nikkhamati", "adj", "nikkhamati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["နိက္ခမတိ", "adj", "နိက္ခမတိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["nikkhanta", "adj", "nikkhanta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["နိက္ခန္တ", "adj", "နိက္ခန္တ", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ပက္ခ", "adj", "ပက္ခ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["សក", "adj", "សក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yuvāna", "adj", "yuvāna", "", "", "", "young"]) + let v = native_list_append(v, ["ສ໌ວາກຂາຕະ", "adj", "ສ໌ວາກຂາຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["yuvā", "adj", "yuvā", "", "", "", "nominative/vocative singular masculine"]) + let v = native_list_append(v, ["yuvāno", "adj", "yuvāno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["सुरम्म", "adj", "सुरम्म", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀲𑀼𑀭𑀫𑁆𑀫", "adj", "𑀲𑀼𑀭𑀫𑁆𑀫", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ວິນຍູ", "adj", "ວິນຍູ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["suramma", "adj", "suramma", "", "", "", "very pleasing or"]) + let v = native_list_append(v, ["gatassa", "adj", "gatassa", "", "", "", "genitive/dative singular masculine/neuter"]) + let v = native_list_append(v, ["ສັນທິດຖິກະ", "adj", "ສັນທິດຖິກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປະຕິປັນນະ", "adj", "ປະຕິປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຸປະຕິປັນນະ", "adj", "ສຸປະຕິປັນນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອາຫຸເນຍຍະ", "adj", "ອາຫຸເນຍຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປາຫຸເນຍຍະ", "adj", "ປາຫຸເນຍຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທັກຂິເນຍຍະ", "adj", "ທັກຂິເນຍຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ກະລະນີຍະ", "adj", "ກະລະນີຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພາຫຸ", "adj", "ພາຫຸ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["udeti", "adj", "udeti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["udayati", "adj", "udayati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ອຸເທຕິ", "adj", "ອຸເທຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸທະຍະຕິ", "adj", "ອຸທະຍະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸທະຢະຕິ", "adj", "ອຸທະຢະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸທິຕະ", "adj", "ອຸທິຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ghora", "adj", "ghora", "", "", "", "frightful"]) + let v = native_list_append(v, ["ໂຄລະ", "adj", "ໂຄລະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["jayati", "adj", "jayati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ຊະຍະຕິ", "adj", "ຊະຍະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊະຢະຕິ", "adj", "ຊະຢະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊຍຕິ", "adj", "ຊຍຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊິຕະ", "adj", "ຊິຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊິໂຕ", "adj", "ຊິໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["jitavant", "adj", "jitavant", "", "", "", "past active participle"]) + let v = native_list_append(v, ["jitavā", "adj", "jitavā", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ຊິຕະວັນຕ", "adj", "ຊິຕະວັນຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຊິຕະວາ", "adj", "ຊິຕະວາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພະວະຕິ", "adj", "ພະວະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ມັງຄະລະ", "adj", "ມັງຄະລະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ມັງຄະໂລ", "adj", "ມັງຄະໂລ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["मङ्गलो", "adj", "मङ्गलो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["မင်္ဂလော", "adj", "မင်္ဂလော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["มังคะโล", "adj", "มังคะโล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩘᨣᩃᩮᩣ", "adj", "ᨾᩘᨣᩃᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["maṅgalo", "adj", "maṅgalo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["មង្គលោ", "adj", "មង្គលោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["maṅgalaṃ", "adj", "maṅgalaṃ", "", "", "", "inflection of maṅgala"]) + let v = native_list_append(v, ["मङ्गलं", "adj", "मङ्गलं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["မင်္ဂလံ", "adj", "မင်္ဂလံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["มังคะลัง", "adj", "มังคะลัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨾᩘᨣᩃᩴ", "adj", "ᨾᩘᨣᩃᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ມັງຄະລັງ", "adj", "ມັງຄະລັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["មង្គលំ", "adj", "មង្គលំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["atireka", "adj", "atireka", "", "", "", "exceeding in excess"]) + let v = native_list_append(v, ["ອະຕິເລກະ", "adj", "ອະຕິເລກະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["abhiyujjhati", "adj", "abhiyujjhati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["abhiyujjhita", "adj", "abhiyujjhita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["abhiyujjhito", "adj", "abhiyujjhito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ອະພິຍຸດຊິຕະ", "adj", "ອະພິຍຸດຊິຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັບພະ", "adj", "ສັບພະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັບໂພ", "adj", "ສັບໂພ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["सब्बो", "adj", "सब्बो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["สพฺโพ", "adj", "สพฺโพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัพโพ", "adj", "สัพโพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨻᩛᩮᩣ", "adj", "ᩈᨻᩛᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨻᩛᩮᩤ", "adj", "ᩈᨻᩛᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ສພ຺ໂພ", "adj", "ສພ຺ໂພ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sabbo", "adj", "sabbo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["akkhama", "adj", "akkhama", "", "", "", "impatient"]) + let v = native_list_append(v, ["ອັກຂະມະ", "adj", "ອັກຂະມະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອັກຂະໂມ", "adj", "ອັກຂະໂມ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["akkhamo", "adj", "akkhamo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["khamo", "adj", "khamo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ខមោ", "adj", "ខមោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ขโม", "adj", "ขโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["thaddha", "adj", "thaddha", "", "", "", "hard rigid firm"]) + let v = native_list_append(v, ["ayojjha", "adj", "ayojjha", "", "", "", "not to be"]) + let v = native_list_append(v, ["ຖັດທະ", "adj", "ຖັດທະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["dameti", "adj", "dameti", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["damayati", "adj", "damayati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["তে", "adj", "তে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["दन्तो", "adj", "दन्तो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ทนฺโต", "adj", "ทนฺโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨶ᩠ᨲᩮᩣ", "adj", "ᨴᨶ᩠ᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ទន្តោ", "adj", "ទន្តោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["sudanta", "adj", "sudanta", "", "", "", "restrained exercising self-restraint"]) + let v = native_list_append(v, ["ສຸທັນຕະ", "adj", "ສຸທັນຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສຸທັນໂຕ", "adj", "ສຸທັນໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ວະລະ", "adj", "ວະລະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["atimatta", "adj", "atimatta", "", "", "", "too much in"]) + let v = native_list_append(v, ["majjati", "adj", "majjati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ມັດຕະ", "adj", "ມັດຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["मत्तो", "adj", "मत्तो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ມັດໂຕ", "adj", "ມັດໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["មត្តោ", "adj", "មត្តោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["करणीय", "adj", "करणीय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["करणीया", "adj", "करणीया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["करणीये", "adj", "करणीये", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["करणीयानि", "adj", "करणीयानि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["vāla", "adj", "vāla", "", "", "", "malicious troublesome difficult"]) + let v = native_list_append(v, ["बालो", "adj", "बालो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["বালো", "adj", "বালো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ဗာလော", "adj", "ဗာလော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["พาโล", "adj", "พาโล", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ពាលោ", "adj", "ពាលោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ກະຣະນີໂຢ", "adj", "ກະຣະນີໂຢ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ກະລະນີໂຍ", "adj", "ກະລະນີໂຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["करणीयो", "adj", "करणीयो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["กะระณีโย", "adj", "กะระณีโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["karaṇīyo", "adj", "karaṇīyo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ກາລິໂກ", "adj", "ກາລິໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["कालिको", "adj", "कालिको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["กาลิโก", "adj", "กาลิโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩣᩃᩥᨠᩮᩣ", "adj", "ᨠᩣᩃᩥᨠᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kāliko", "adj", "kāliko", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ໂຄໂລ", "adj", "ໂຄໂລ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["घोरो", "adj", "घोरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ghoro", "adj", "ghoro", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["जितो", "adj", "जितो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ជិតោ", "adj", "ជិតោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ຍ຺າຢະປະຕ຺ິປັນໂນ", "adj", "ຍ຺າຢະປະຕ຺ິປັນໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ญายปฏิปนฺโน", "adj", "ญายปฏิปนฺโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨬᩣᨿᨷᨭᩥᨷᨶ᩠ᨶᩮᩣ", "adj", "ᨬᩣᨿᨷᨭᩥᨷᨶ᩠ᨶᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ñāyapaṭipanno", "adj", "ñāyapaṭipanno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["সো", "adj", "সো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["සො", "adj", "සො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["สะ", "adj", "สะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ສະ", "adj", "ສະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຖັດໂທ", "adj", "ຖັດໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["thaddho", "adj", "thaddho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ທັກຂິເນຍໂຍ", "adj", "ທັກຂິເນຍໂຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທັກຂິເນ຺ຢໂຢ", "adj", "ທັກຂິເນ຺ຢໂຢ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ทกฺขิเณยฺโย", "adj", "ทกฺขิเณยฺโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทักขิเณยโย", "adj", "ทักขิเณยโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨠ᩠ᨡᩥᨱᩮᨿ᩠ᨿᩮᩣ", "adj", "ᨴᨠ᩠ᨡᩥᨱᩮᨿ᩠ᨿᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["dakkhiṇeyyo", "adj", "dakkhiṇeyyo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ທັມໂມ", "adj", "ທັມໂມ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທມ຺ໂມ", "adj", "ທມ຺ໂມ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ทมฺโม", "adj", "ทมฺโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทัมโม", "adj", "ทัมโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᨾ᩠ᨾᩮᩣ", "adj", "ᨴᨾ᩠ᨾᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["dammo", "adj", "dammo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ປະຕິປັນໂນ", "adj", "ປະຕິປັນໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປະຕ຺ິປັນໂນ", "adj", "ປະຕ຺ິປັນໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["පටිපන‍්නො", "adj", "පටිපන‍්නො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ปฏิปนฺโน", "adj", "ปฏิปนฺโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ปะฏิปันโน", "adj", "ปะฏิปันโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["paṭipanno", "adj", "paṭipanno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ປັຈຈັຕໂຕ", "adj", "ປັຈຈັຕໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ปจฺจตฺโต", "adj", "ปจฺจตฺโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ปัจจัตโต", "adj", "ปัจจัตโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᨧ᩠ᨧᨲ᩠ᨲᩮᩣ", "adj", "ᨷᨧ᩠ᨧᨲ᩠ᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨸᨧ᩠ᨧᨲ᩠ᨲᩮᩣ", "adj", "ᨸᨧ᩠ᨧᨲ᩠ᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["paccatto", "adj", "paccatto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ປາຫຸເນຍໂຍ", "adj", "ປາຫຸເນຍໂຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ປາຫຸເນ຺ຢໂຢ", "adj", "ປາຫຸເນ຺ຢໂຢ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["pāhuṇeyyo", "adj", "pāhuṇeyyo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["pāhuneyyo", "adj", "pāhuneyyo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ปาหุเนยโย", "adj", "ปาหุเนยโย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨷᩤᩉᩩᨶᩮᨿ᩠ᨿᩮᩣ", "adj", "ᨷᩤᩉᩩᨶᩮᨿ᩠ᨿᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["सत्तम", "adj", "सत्तम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ພຸດໂທ", "adj", "ພຸດໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸທ຺ໂຘ", "adj", "ພຸທ຺ໂຘ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ພຸທໂທ຺", "adj", "ພຸທໂທ຺", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["बुद्धो", "adj", "बुद्धो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["বুদ্ধো", "adj", "বুদ্ধো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["බුද‍්ධො", "adj", "බුද‍්ධො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ဗုဒ္ဓေါ", "adj", "ဗုဒ္ဓေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["พุทฺโธ", "adj", "พุทฺโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["พุทโธ", "adj", "พุทโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩮᩣ", "adj", "ᨻᩩᨴ᩠ᨵᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨻᩩᨴ᩠ᨵᩮᩤ", "adj", "ᨻᩩᨴ᩠ᨵᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ពុទ្ធោ", "adj", "ពុទ្ធោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["buddho", "adj", "buddho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ວະໂລ", "adj", "ວະໂລ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["वरो", "adj", "वरो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["វរោ", "adj", "វរោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ເວທິຕັພໂພ", "adj", "ເວທິຕັພໂພ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["เวทิตพฺโพ", "adj", "เวทิตพฺโพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เวทิตัพโพ", "adj", "เวทิตัพโพ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩅᩮᨴᩥᨲᨻᩛᩮᩣ", "adj", "ᩅᩮᨴᩥᨲᨻᩛᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩅᩮᨴᩥᨲᨻᩛᩮᩤ", "adj", "ᩅᩮᨴᩥᨲᨻᩛᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["veditabbo", "adj", "veditabbo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["keyya", "adj", "keyya", "", "", "", "for sale purchasable"]) + let v = native_list_append(v, ["បរ", "adj", "បរ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ສຊ຺ຊມາໂນ", "adj", "ສຊ຺ຊມາໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sajjamāno", "adj", "sajjamāno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ສ໌ວາກຂາໂຕ", "adj", "ສ໌ວາກຂາໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສວາກຂາໂຕ", "adj", "ສວາກຂາໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["สฺวากฺขาโต", "adj", "สฺวากฺขาโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สวากขาโต", "adj", "สวากขาโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สะวากขาโต", "adj", "สะวากขาโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈ᩠ᩅᩣᨠ᩠ᨡᩣᨲᩮᩣ", "adj", "ᩈ᩠ᩅᩣᨠ᩠ᨡᩣᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["svākkhāto", "adj", "svākkhāto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["bhīta", "adj", "bhīta", "", "", "", "frightened afraid terrified"]) + let v = native_list_append(v, ["ສັນທິດຖິໂກ", "adj", "ສັນທິດຖິໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັນທິຕ຺ຖ຺ິໂກ", "adj", "ສັນທິຕ຺ຖ຺ິໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["สนฺทิฏฺฐิโก", "adj", "สนฺทิฏฺฐิโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สันทิฏฐิโก", "adj", "สันทิฏฐิโก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨶ᩠ᨴᩥᨭᩛᩥᨠᩮᩣ", "adj", "ᩈᨶ᩠ᨴᩥᨭᩛᩥᨠᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sandiṭṭhiko", "adj", "sandiṭṭhiko", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ສັມປະຍຸຕຕະໂກ", "adj", "ສັມປະຍຸຕຕະໂກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sampayuttako", "adj", "sampayuttako", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ສັມປັນໂນ", "adj", "ສັມປັນໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sampanno", "adj", "sampanno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ສັມພຸດໂທ", "adj", "ສັມພຸດໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັມພຸທໂທ຺", "adj", "ສັມພຸທໂທ຺", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["သမ္ဗုဒ္ဓေါ", "adj", "သမ္ဗုဒ္ဓေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["สมฺพุทฺโธ", "adj", "สมฺพุทฺโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัมพุทโธ", "adj", "สัมพุทโธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨾᩛᩩᨴ᩠ᨵᩮᩣ", "adj", "ᩈᨾᩛᩩᨴ᩠ᨵᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾᩛᩩᨴ᩠ᨵᩮᩤ", "adj", "ᩈᨾᩛᩩᨴ᩠ᨵᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩮᩤ", "adj", "ᩈᨾ᩠ᨻᩩᨴ᩠ᨵᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sambuddho", "adj", "sambuddho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ສາມີຈິປະຕ຺ິປັນໂນ", "adj", "ສາມີຈິປະຕ຺ິປັນໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["สามีจิปฏิปนฺโน", "adj", "สามีจิปฏิปนฺโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สามีจิปะฏิปันโน", "adj", "สามีจิปะฏิปันโน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩣᨾᩦᨧᩥᨷᨭᩥᨷᨶ᩠ᨶᩮᩣ", "adj", "ᩈᩣᨾᩦᨧᩥᨷᨭᩥᨷᨶ᩠ᨶᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sāmīcipaṭipanno", "adj", "sāmīcipaṭipanno", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ສຸຄະໂຕ", "adj", "ສຸຄະໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["สุคโต", "adj", "สุคโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩩᨣᨲᩮᩣ", "adj", "ᩈᩩᨣᨲᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sugato", "adj", "sugato", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["တသ္မိံ", "adj", "တသ္မိံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဗုဒ္ဓံ", "adj", "ဗုဒ္ဓံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["paññāpaka", "adj", "paññāpaka", "", "", "", "advising assigning appointing"]) + let v = native_list_append(v, ["paññāpako", "adj", "paññāpako", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["abbhāgato", "adj", "abbhāgato", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["appamattako", "adj", "appamattako", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["appamattakaṃ", "adj", "appamattakaṃ", "", "", "", "inflection of appamattaka"]) + let v = native_list_append(v, ["asitaṃ", "adj", "asitaṃ", "", "", "", "inflection of asita"]) + let v = native_list_append(v, ["asito", "adj", "asito", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["असितो", "adj", "असितो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["असितं", "adj", "असितं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["diṭṭho", "adj", "diṭṭho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["pīta", "adj", "pīta", "", "", "", "drunk imbibed"]) + let v = native_list_append(v, ["ဨတ", "adj", "ဨတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ibbho", "adj", "ibbho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["𑀚𑀻𑀯𑁄", "adj", "𑀚𑀻𑀯𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["जीवो", "adj", "जीवो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဇီဝေါ", "adj", "ဇီဝေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jīvo", "adj", "jīvo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["𑀚𑀻𑀯𑀁", "adj", "𑀚𑀻𑀯𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["जीवं", "adj", "जीवं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဇီဝံ", "adj", "ဇီဝံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["jīvaṃ", "adj", "jīvaṃ", "", "", "", "inflection of jīva"]) + let v = native_list_append(v, ["tesu", "adj", "tesu", "", "", "", "locative plural masculine/neuter"]) + let v = native_list_append(v, ["kūṭa", "adj", "kūṭa", "", "", "", "dehorned"]) + let v = native_list_append(v, ["कूटो", "adj", "कूटो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कूटं", "adj", "कूटं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kūṭaṃ", "adj", "kūṭaṃ", "", "", "", "inflection of kūṭa"]) + let v = native_list_append(v, ["kūṭo", "adj", "kūṭo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["मूगो", "adj", "मूगो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["mūgo", "adj", "mūgo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["sukhin", "adj", "sukhin", "", "", "", "happy"]) + let v = native_list_append(v, ["ᩈᩩᨡᩥᨶ᩺", "adj", "ᩈᩩᨡᩥᨶ᩺", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สุขินฺ", "adj", "สุขินฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["កិច្ចំ", "adj", "កិច្ចំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ကိစ္စံ", "adj", "ကိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["kiccaṃ", "adj", "kiccaṃ", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["អនន្ត", "adj", "អនន្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["អន្ត", "adj", "អន្ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["dāruṇa", "adj", "dāruṇa", "", "", "", "strong firm severe"]) + let v = native_list_append(v, ["ທາລຸນະ", "adj", "ທາລຸນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["दारुणो", "adj", "दारुणो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ທາລຸໂນ", "adj", "ທາລຸໂນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["dāruṇo", "adj", "dāruṇo", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["khipati", "adj", "khipati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ukkhipati", "adj", "ukkhipati", "", "", "", "masculine and neuter"]) + let v = native_list_append(v, ["ອຸກຂິປະຕິ", "adj", "ອຸກຂິປະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ukkhitta", "adj", "ukkhitta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ອຸກຂິດຕະ", "adj", "ອຸກຂິດຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອຸກຂິດໂຕ", "adj", "ອຸກຂິດໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ukkhitto", "adj", "ukkhitto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["saṅkhata", "adj", "saṅkhata", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ສັງຂະຕະ", "adj", "ສັງຂະຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັງຂະໂຕ", "adj", "ສັງຂະໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["saṅkhato", "adj", "saṅkhato", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ທາວະຕິ", "adj", "ທາວະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["dhāvant", "adj", "dhāvant", "", "", "", "present active participle"]) + let v = native_list_append(v, ["ທາວັນຕ", "adj", "ທາວັນຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທາວັງ", "adj", "ທາວັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["dhāvaṃ", "adj", "dhāvaṃ", "", "", "", "nominative/vocative singular masculine"]) + let v = native_list_append(v, ["ທາວັນໂຕ", "adj", "ທາວັນໂຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["dhāvanto", "adj", "dhāvanto", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ឧត្តម", "adj", "ឧត្តម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ທຸດຖະ", "adj", "ທຸດຖະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ທຸດໂຖ", "adj", "ທຸດໂຖ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["duṭṭho", "adj", "duṭṭho", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["သတိ", "adj", "သတိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["एस", "adj", "एस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ມັດຊະ", "adj", "ມັດຊະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ມັດໂຊ", "adj", "ມັດໂຊ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["nu", "particle", "nu", "", "", "", "then now"]) + let v = native_list_append(v, ["pi", "particle", "pi", "", "", "", "an emphatic particle"]) + let v = native_list_append(v, ["च", "particle", "च", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["न", "particle", "न", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["na", "particle", "na", "", "", "", "no not"]) + let v = native_list_append(v, ["ca", "particle", "ca", "", "", "", "and copulative particle"]) + let v = native_list_append(v, ["ti", "particle", "ti", "", "", "", "elided form of"]) + let v = native_list_append(v, ["pe", "particle", "pe", "", "", "", "abbreviation of peyyāla"]) + let v = native_list_append(v, ["va", "particle", "va", "", "", "", "like as if"]) + let v = native_list_append(v, ["iva", "particle", "iva", "", "", "", "like as"]) + let v = native_list_append(v, ["noce", "particle", "noce", "", "", "", "if not unless"]) + let v = native_list_append(v, ["vata", "particle", "vata", "", "", "", "surely certainly indeed"]) + let v = native_list_append(v, ["api", "particle", "api", "", "", "", "an emphatic particle"]) + let v = native_list_append(v, ["pana", "particle", "pana", "", "", "", "but yet on"]) + let v = native_list_append(v, ["अपि", "particle", "अपि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["व", "particle", "व", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["eva", "particle", "eva", "", "", "", "so even just"]) + let v = native_list_append(v, ["iti", "particle", "iti", "", "", "", "thus"]) + let v = native_list_append(v, ["puna", "particle", "puna", "", "", "", "again"]) + let v = native_list_append(v, ["no", "particle", "no", "", "", "", "surely not"]) + let v = native_list_append(v, ["mā", "particle", "mā", "", "", "", "do not"]) + let v = native_list_append(v, ["bho", "particle", "bho", "", "", "", "friend"]) + let v = native_list_append(v, ["samma", "particle", "samma", "", "", "", "friend my dear"]) + let v = native_list_append(v, ["इव", "particle", "इव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kho", "particle", "kho", "", "", "", "indeed"]) + let v = native_list_append(v, ["วะ", "particle", "วะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["จ", "particle", "จ", "", "", "", "and copulative particle"]) + let v = native_list_append(v, ["น", "particle", "น", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ว", "particle", "ว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຈະ", "particle", "ຈະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["စ", "particle", "စ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["န", "particle", "န", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["จะ", "particle", "จะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["นะ", "particle", "นะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["අපි", "particle", "අපි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["চ", "particle", "চ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ন", "particle", "ন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ວ", "particle", "ວ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ဝ", "particle", "ဝ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["सदा", "particle", "सदा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["sadā", "particle", "sadā", "", "", "", "always"]) + let v = native_list_append(v, ["𑄚", "particle", "𑄚", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["ច", "particle", "ច", "", "", "", "and copulative particle"]) + let v = native_list_append(v, ["ន", "particle", "ន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វ", "particle", "វ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["evaṃ", "particle", "evaṃ", "", "", "", "thus so"]) + let v = native_list_append(v, ["atha", "particle", "atha", "", "", "", "and and then"]) + let v = native_list_append(v, ["एवं", "particle", "एवं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सम्म", "particle", "सम्म", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ච", "particle", "ච", "", "", "", "and copulative particle"]) + let v = native_list_append(v, ["saddhiṃ", "particle", "saddhiṃ", "", "", "", "together"]) + let v = native_list_append(v, ["kathaṃ", "particle", "kathaṃ", "", "", "", "how?"]) + let v = native_list_append(v, ["peyyāla", "particle", "peyyāla", "", "", "", "words omitted et"]) + let v = native_list_append(v, ["ติ", "particle", "ติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอว", "particle", "เอว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ৰ", "particle", "ৰ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ຈ", "particle", "ຈ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ນ", "particle", "ນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ति", "particle", "ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ပိ", "particle", "ပိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["න", "particle", "න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ව", "particle", "ව", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ၼ", "particle", "ၼ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဘော", "particle", "ဘော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["नु", "particle", "नु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ຕິ", "particle", "ຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["एव", "particle", "एव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ปน", "particle", "ปน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀏𑀯", "particle", "𑀏𑀯", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀘", "particle", "𑀘", "", "", "", "and copulative particle"]) + let v = native_list_append(v, ["โข", "particle", "โข", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ខោ", "particle", "ខោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["បន", "particle", "បន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["evam", "particle", "evam", "", "", "", "Form of evaṃ"]) + let v = native_list_append(v, ["ᩑᩅᩴ", "particle", "ᩑᩅᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sammā", "particle", "sammā", "", "", "", "properly rightly thoroughly"]) + let v = native_list_append(v, ["ᩈᨾᩜᩣ", "particle", "ᩈᨾᩜᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨳ", "particle", "ᩋᨳ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨡᩮᩣ", "particle", "ᨡᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨶᨾᩮᩣ", "particle", "ᨶᨾᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨧ", "particle", "ᨧ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩈᨾ᩠ᨾᩣ", "particle", "ᩈᨾ᩠ᨾᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["sabbadā", "particle", "sabbadā", "", "", "", "always"]) + let v = native_list_append(v, ["ᩈᨻᩛᨴᩣ", "particle", "ᩈᨻᩛᨴᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["itipi", "particle", "itipi", "", "", "", "surely"]) + let v = native_list_append(v, ["ᩍᨲᩥᨸᩥ", "particle", "ᩍᨲᩥᨸᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨷᩮᨿ᩠ᨿᩣᩃ", "particle", "ᨷᩮᨿ᩠ᨿᩣᩃ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨶ", "particle", "ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ඛො", "particle", "ඛො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පන", "particle", "පන", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["එවං", "particle", "එවං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["etarahi", "particle", "etarahi", "", "", "", "now"]) + let v = native_list_append(v, ["එතරහි", "particle", "එතරහි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ᩅ", "particle", "ᩅ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ອິຕິປິ", "particle", "ອິຕິປິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສັມມາ", "particle", "ສັມມາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ᨲᩥ", "particle", "ᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สัมมา", "particle", "สัมมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["visuṃ", "particle", "visuṃ", "", "", "", "separately individually"]) + let v = native_list_append(v, ["วิสุง", "particle", "วิสุง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["นะโม", "particle", "นะโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อิติปิ", "particle", "อิติปิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["tatvassa", "particle", "tatvassa", "", "", "", "due to that"]) + let v = native_list_append(v, ["no ce", "particle", "no ce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ᨶᩮᩣ ᨧᩮ", "particle", "ᨶᩮᩣ ᨧᩮ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨲᨲ᩠ᩅᩔ", "particle", "ᨲᨲ᩠ᩅᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ຕຕ຺ວສ຺ສ", "particle", "ຕຕ຺ວສ຺ສ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["นโม", "particle", "นโม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สมฺมา", "particle", "สมฺมา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩍᨲᩥᨷᩥ", "particle", "ᩍᨲᩥᨷᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สทา", "particle", "สทา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨴᩤ", "particle", "ᩈᨴᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["කථං", "particle", "කථං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["සද‍්ධිං", "particle", "සද‍්ධිං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අථ", "particle", "අථ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["නො", "particle", "නො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["पन", "particle", "पन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["adho", "particle", "adho", "", "", "", "below"]) + let v = native_list_append(v, ["अथ", "particle", "अथ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["တိ", "particle", "တိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑅇", "particle", "𑅇", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["ភោ", "particle", "ភោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ນະໂມ", "particle", "ນະໂມ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀯", "particle", "𑀯", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ປິ", "particle", "ປິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["खो", "particle", "खो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["नमो", "particle", "नमो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["နမော", "particle", "နမော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ປະນະ", "particle", "ປະນະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["এৰ", "particle", "এৰ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ອິວະ", "particle", "ອິວະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ឯវំ", "particle", "ឯវំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဧဝံ", "particle", "ဧဝံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ñeva", "particle", "ñeva", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["නු", "particle", "නු", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["’ව", "particle", "’ව", "", "", "", "like as"]) + let v = native_list_append(v, ["ඉව", "particle", "ඉව", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["එව", "particle", "එව", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පි", "particle", "පි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["te", "pron", "te", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["so", "pron", "so", "", "", "", "he it"]) + let v = native_list_append(v, ["me", "pron", "me", "", "", "", "enclitic genitive/dative/instrumental/ablative singular"]) + let v = native_list_append(v, ["ke", "pron", "ke", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["mama", "pron", "mama", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ye", "pron", "ye", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["क", "pron", "क", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["त", "pron", "त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["न", "pron", "न", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ta", "pron", "ta", "", "", "", "he it that"]) + let v = native_list_append(v, ["eta", "pron", "eta", "", "", "", "this one"]) + let v = native_list_append(v, ["ne", "pron", "ne", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["na", "pron", "na", "", "", "", "that"]) + let v = native_list_append(v, ["kissa", "pron", "kissa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["sa", "pron", "sa", "", "", "", "he it"]) + let v = native_list_append(v, ["ko", "pron", "ko", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["yo", "pron", "yo", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["tad", "pron", "tad", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["ya", "pron", "ya", "", "", "", "who which that"]) + let v = native_list_append(v, ["ka", "pron", "ka", "", "", "", "who"]) + let v = native_list_append(v, ["ime", "pron", "ime", "", "", "", "masculine nominative/accusative plural"]) + let v = native_list_append(v, ["vo", "pron", "vo", "", "", "", "accusative/genitive/dative/instrumental plural of"]) + let v = native_list_append(v, ["ete", "pron", "ete", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ima", "pron", "ima", "", "", "", "this"]) + let v = native_list_append(v, ["तद्", "pron", "तद्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["eso", "pron", "eso", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["esa", "pron", "esa", "", "", "", "alternative stem of"]) + let v = native_list_append(v, ["tato", "pron", "tato", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["ये", "pron", "ये", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["य", "pron", "य", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["का", "pron", "का", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["को", "pron", "को", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ena", "pron", "ena", "", "", "", "this"]) + let v = native_list_append(v, ["स", "pron", "स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["tā", "pron", "tā", "", "", "", "that"]) + let v = native_list_append(v, ["nassa", "pron", "nassa", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["mayi", "pron", "mayi", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["kassa", "pron", "kassa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["no", "pron", "no", "", "", "", "accusative/instrumental/genitive/dative plural of"]) + let v = native_list_append(v, ["kā", "pron", "kā", "", "", "", "who"]) + let v = native_list_append(v, ["nā", "pron", "nā", "", "", "", "that"]) + let v = native_list_append(v, ["sā", "pron", "sā", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["yā", "pron", "yā", "", "", "", "who which that"]) + let v = native_list_append(v, ["tassa", "pron", "tassa", "", "", "", "to him to"]) + let v = native_list_append(v, ["မေ", "pron", "မေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["asme", "pron", "asme", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ตา", "pron", "ตา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กา", "pron", "กา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["কেন", "pron", "কেন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["না", "pron", "না", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ehi", "pron", "ehi", "", "", "", "masculine/neuter instrumental/ablative plural"]) + let v = native_list_append(v, ["ตาย", "pron", "ตาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ยาย", "pron", "ยาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["kehi", "pron", "kehi", "", "", "", "masculine/neuter instrumental/ablative plural"]) + let v = native_list_append(v, ["kāsu", "pron", "kāsu", "", "", "", "feminine locative plural"]) + let v = native_list_append(v, ["tava", "pron", "tava", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["ຕາ", "pron", "ຕາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຢາ", "pron", "ຢາ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กาย", "pron", "กาย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ก", "pron", "ก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ต", "pron", "ต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["น", "pron", "น", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ย", "pron", "ย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ส", "pron", "ส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["นา", "pron", "นา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ยา", "pron", "ยา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ສາ", "pron", "ສາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຕາຍ", "pron", "ຕາຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["सा", "pron", "सा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["के", "pron", "के", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yad", "pron", "yad", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["koci", "pron", "koci", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["ने", "pron", "ने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ক", "pron", "ক", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["यद्", "pron", "यद्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["က", "pron", "က", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["တ", "pron", "တ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["န", "pron", "န", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ယ", "pron", "ယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["tena", "pron", "tena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["นะ", "pron", "นะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["මම", "pron", "මම", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["মে", "pron", "মে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ত", "pron", "ত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ন", "pron", "ন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["য", "pron", "য", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["স", "pron", "স", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["assa", "pron", "assa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["কে", "pron", "কে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["যা", "pron", "যা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ស", "pron", "ស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ය", "pron", "ය", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ຕ", "pron", "ຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["နေ", "pron", "နေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ກາ", "pron", "ກາ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["kesu", "pron", "kesu", "", "", "", "masculine/neuter instrumental plural"]) + let v = native_list_append(v, ["ตะ", "pron", "ตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["သ", "pron", "သ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ना", "pron", "ना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अहं", "pron", "अहं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kena", "pron", "kena", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["naṃ", "pron", "naṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["yena", "pron", "yena", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["काय", "pron", "काय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["យាយ", "pron", "យាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑄖", "pron", "𑄖", "", "", "", "he it that"]) + let v = native_list_append(v, ["𑄥", "pron", "𑄥", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄚", "pron", "𑄚", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄠", "pron", "𑄠", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["ក", "pron", "ក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ត", "pron", "ត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ន", "pron", "ន", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["យ", "pron", "យ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["តាយ", "pron", "តាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ຢໍ", "pron", "ຢໍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["សោ", "pron", "សោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["taṃ", "pron", "taṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["yaṃ", "pron", "yaṃ", "", "", "", "whom which that"]) + let v = native_list_append(v, ["kiṃ", "pron", "kiṃ", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["ते", "pron", "ते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तानि", "pron", "तानि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ကာ", "pron", "ကာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နာ", "pron", "နာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ยัง", "pron", "ยัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["tvaṃ", "pron", "tvaṃ", "", "", "", "thou you"]) + let v = native_list_append(v, ["នំ", "pron", "នំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["वो", "pron", "वो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["या", "pron", "या", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सो", "pron", "सो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀫𑁆𑀳𑁂", "pron", "𑀅𑀫𑁆𑀳𑁂", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["यो", "pron", "यो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ahaṃ", "pron", "ahaṃ", "", "", "", "I 1st person"]) + let v = native_list_append(v, ["ක", "pron", "ක", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["mayaṃ", "pron", "mayaṃ", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["मम", "pron", "मम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["មេ", "pron", "មេ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["एतद्", "pron", "एतद्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ayaṃ", "pron", "ayaṃ", "", "", "", "masculine/feminine nominative singular"]) + let v = native_list_append(v, ["𑀓", "pron", "𑀓", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["aññamaññaṃ", "pron", "aññamaññaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ကော", "pron", "ကော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀢𑀁", "pron", "𑀢𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀲𑁄", "pron", "𑀲𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ກ", "pron", "ກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຍ", "pron", "ຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ນ", "pron", "ນ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຢ", "pron", "ຢ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສ", "pron", "ສ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["យំ", "pron", "យំ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["မံ", "pron", "မံ", "", "", "", "me Burmese script"]) + let v = native_list_append(v, ["ကေ", "pron", "ကေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["เยน", "pron", "เยน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠ", "pron", "ᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ත", "pron", "ත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["න", "pron", "න", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ස", "pron", "ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ၵ", "pron", "ၵ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ၼ", "pron", "ၼ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["တေသံ", "pron", "တေသံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သော", "pron", "သော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ကံ", "pron", "ကံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["तं", "pron", "तं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀳𑀁", "pron", "𑀅𑀳𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["अम्हे", "pron", "अम्हे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀫𑁂", "pron", "𑀅𑀲𑁆𑀫𑁂", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["अयं", "pron", "अयं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मे", "pron", "मे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["इमा", "pron", "इमा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ता", "pron", "ता", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["किं", "pron", "किं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["တံ", "pron", "တံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yassa", "pron", "yassa", "", "", "", "masculine/neuter genitive/dative singular"]) + let v = native_list_append(v, ["kāya", "pron", "kāya", "", "", "", "instrumental/dative/ablative/genitive/locative singular of"]) + let v = native_list_append(v, ["เก", "pron", "เก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["กะ", "pron", "กะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอส", "pron", "เอส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ताय", "pron", "ताय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["เอน", "pron", "เอน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โน", "pron", "โน", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โว", "pron", "โว", "", "", "", "Thai script with"]) + let v = native_list_append(v, ["यासु", "pron", "यासु", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["តា", "pron", "តា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ကာယ", "pron", "ကာယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["নে", "pron", "নে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["asmā", "pron", "asmā", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["কানি", "pron", "কানি", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["เย", "pron", "เย", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩮᩣ", "pron", "ᩈᩮᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᩉᩴ", "pron", "ᩋᩉᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨾᩮ", "pron", "ᨾᩮ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["โก", "pron", "โก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["मया", "pron", "मया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["मयि", "pron", "मयि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["एते", "pron", "एते", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तव", "pron", "तव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["त्वं", "pron", "त्वं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["त्वया", "pron", "त्वया", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ᨶ", "pron", "ᨶ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["aññamañña", "pron", "aññamañña", "", "", "", "one another"]) + let v = native_list_append(v, ["අඤ‍්ඤමඤ‍්ඤ", "pron", "අඤ‍්ඤමඤ‍්ඤ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["etad", "pron", "etad", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["එතද්", "pron", "එතද්", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["එත", "pron", "එත", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["𑀢", "pron", "𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀢𑁆𑀯𑀁", "pron", "𑀢𑁆𑀯𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["တွံ", "pron", "တွံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ත්‍වං", "pron", "ත්‍වං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ตฺวํ", "pron", "ตฺวํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["maṃ", "pron", "maṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["අහං", "pron", "අහං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tuvaṃ", "pron", "tuvaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["tumhe", "pron", "tumhe", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["amhe", "pron", "amhe", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ᨿ", "pron", "ᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨲ", "pron", "ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩍᨾ", "pron", "ᩍᨾ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["យា", "pron", "យា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ᩈ", "pron", "ᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["kaci", "pron", "kaci", "", "", "", "whoever"]) + let v = native_list_append(v, ["ໂສ", "pron", "ໂສ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຕະ", "pron", "ຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀅𑀲𑁆𑀲", "pron", "𑀅𑀲𑁆𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ຢະ", "pron", "ຢະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອິມະ", "pron", "ອິມະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["idaṃ", "pron", "idaṃ", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["ເອສະ", "pron", "ເອສະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ເອຕະ", "pron", "ເອຕະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["iminā", "pron", "iminā", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["อิมะ", "pron", "อิมะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อะหัง", "pron", "อะหัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["โส", "pron", "โส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ยะ", "pron", "ยะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຢັງ", "pron", "ຢັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["เอตะ", "pron", "เอตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอสะ", "pron", "เอสะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["kiñcana", "pron", "kiñcana", "", "", "", "anything something"]) + let v = native_list_append(v, ["อิม", "pron", "อิม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["เอต", "pron", "เอต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อหํ", "pron", "อหํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨠᩣᨿ", "pron", "ᨠᩣᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨠᨧᩥ", "pron", "ᨠᨧᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["กจิ", "pron", "กจิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สา", "pron", "สา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["তাসু", "pron", "তাসু", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["𑀯𑀥𑀽", "pron", "𑀯𑀥𑀽", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ဝေါ", "pron", "ဝေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["tayi", "pron", "tayi", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["យទ៑", "pron", "យទ៑", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["យេ", "pron", "យេ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ඉම", "pron", "ඉම", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["නො", "pron", "නො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["මයි", "pron", "මයි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අයං", "pron", "අයං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tasmā", "pron", "tasmā", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["तस्मा", "pron", "तस्मा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["इम", "pron", "इम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["anena", "pron", "anena", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["अनेन", "pron", "अनेन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["एत", "pron", "एत", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ယံ", "pron", "ယံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ယာ", "pron", "ယာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["နံ", "pron", "နံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["នា", "pron", "នា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑀓𑀸𑀬", "pron", "𑀓𑀸𑀬", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["नो", "pron", "नो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀢𑀼𑀫𑁆𑀳𑁂", "pron", "𑀢𑀼𑀫𑁆𑀳𑁂", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ubha", "pron", "ubha", "", "", "", "both"]) + let v = native_list_append(v, ["evarūpa", "pron", "evarūpa", "", "", "", "such"]) + let v = native_list_append(v, ["เต", "pron", "เต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀬", "pron", "𑀬", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀲", "pron", "𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["एन", "pron", "एन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["တဿ", "pron", "တဿ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["तस्स", "pron", "तस्स", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ตสฺส", "pron", "ตสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ตัสสะ", "pron", "ตัสสะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨲᩔ", "pron", "ᨲᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["𑀓𑀸", "pron", "𑀓𑀸", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["কা", "pron", "কা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["කා", "pron", "කා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ᨠᩣ", "pron", "ᨠᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["កា", "pron", "កា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["येन", "pron", "येन", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["වො", "pron", "වො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["উভ", "pron", "উভ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ຍາຍະ", "pron", "ຍາຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຕວັງ", "pron", "ຕວັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຕ໌ວັງ", "pron", "ຕ໌ວັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["তে", "pron", "তে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["সো", "pron", "সো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["සො", "pron", "සො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["สะ", "pron", "สะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ສະ", "pron", "ສະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["တသ္မိံ", "pron", "တသ္မိံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["កាយ", "pron", "កាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ဨတ", "pron", "ဨတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["tesu", "pron", "tesu", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["एस", "pron", "एस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ກາຍະ", "pron", "ກາຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ตัง", "pron", "ตัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["kaṃ", "pron", "kaṃ", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["𑄃𑄠𑄁", "pron", "𑄃𑄠𑄁", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["𑄃𑄨𑄟", "pron", "𑄃𑄨𑄟", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["ၵႃ", "pron", "ၵႃ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ၵေႃ", "pron", "ၵေႃ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["တာ", "pron", "တာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["নং", "pron", "নং", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["तुम्हे", "pron", "तुम्हे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ເຕ", "pron", "ເຕ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["अस्मे", "pron", "अस्मे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["যো", "pron", "যো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["မမ", "pron", "မမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["အညမည", "pron", "အညမည", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["သာ", "pron", "သာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["যেন", "pron", "যেন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["තස‍්ස", "pron", "තස‍්ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["අස‍්ස", "pron", "අස‍්ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["যে", "pron", "যে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["อสฺส", "pron", "อสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["তা", "pron", "তা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ဣမ", "pron", "ဣမ", "", "", "", "this"]) + let v = native_list_append(v, ["အယံ", "pron", "အယံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["एतानि", "pron", "एतानि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑄥𑄮", "pron", "𑄥𑄮", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["মম", "pron", "মম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["mayhaṃ", "pron", "mayhaṃ", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["යෙන", "pron", "යෙන", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["තෙන", "pron", "තෙන", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["මං", "pron", "මං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["තං", "pron", "තං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["මෙ", "pron", "මෙ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["etesaṃ", "pron", "etesaṃ", "", "", "", "genitive/dative plural of"]) + let v = native_list_append(v, ["एतेसं", "pron", "एतेसं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀯𑁄", "pron", "𑀯𑁄", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ৰো", "pron", "ৰো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ໂວ", "pron", "ໂວ", "", "", "", "Lao script with"]) + let v = native_list_append(v, ["ᩅᩮᩤ", "pron", "ᩅᩮᩤ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["វោ", "pron", "វោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["𑅇𑄮", "pron", "𑅇𑄮", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["උභ", "pron", "උභ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["are", "other", "are", "", "", "", "wow whoa"]) + let v = native_list_append(v, ["o-", "other", "o-", "", "", "", "ab- away off"]) + let v = native_list_append(v, ["छ", "other", "छ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["si", "other", "si", "", "", "", "to lie down"]) + let v = native_list_append(v, ["ti", "other", "ti", "", "", "", "three"]) + let v = native_list_append(v, ["tar", "other", "tar", "", "", "", "to cross"]) + let v = native_list_append(v, ["dis", "other", "dis", "", "", "", "to point out"]) + let v = native_list_append(v, ["sata", "other", "sata", "", "", "", "hundred"]) + let v = native_list_append(v, ["catur", "other", "catur", "", "", "", "four"]) + let v = native_list_append(v, ["an-", "other", "an-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["su", "other", "su", "", "", "", "to hear"]) + let v = native_list_append(v, ["-in", "other", "-in", "", "", "", "Adjective in -ī/-inī/-i"]) + let v = native_list_append(v, ["eke", "other", "eke", "", "", "", "inflection of eka"]) + let v = native_list_append(v, ["vac", "other", "vac", "", "", "", "to say"]) + let v = native_list_append(v, ["var", "other", "var", "", "", "", "to hinder to"]) + let v = native_list_append(v, ["vas", "other", "vas", "", "", "", "to dwell"]) + let v = native_list_append(v, ["एक", "other", "एक", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["har", "other", "har", "", "", "", "to take"]) + let v = native_list_append(v, ["-tta", "other", "-tta", "", "", "", "This suffix forms"]) + let v = native_list_append(v, ["cha", "other", "cha", "", "", "", "six"]) + let v = native_list_append(v, ["dus", "other", "dus", "", "", "", "to be bad"]) + let v = native_list_append(v, ["-ana", "other", "-ana", "", "", "", "Verbal noun neuter"]) + let v = native_list_append(v, ["khal", "other", "khal", "", "", "", "to stumble"]) + let v = native_list_append(v, ["guh", "other", "guh", "", "", "", "to hide"]) + let v = native_list_append(v, ["eka", "other", "eka", "", "", "", "one"]) + let v = native_list_append(v, ["cassa", "other", "cassa", "", "", "", "and there were"]) + let v = native_list_append(v, ["sak", "other", "sak", "", "", "", "to be able"]) + let v = native_list_append(v, ["दस", "other", "दस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kham", "other", "kham", "", "", "", "to find bearable"]) + let v = native_list_append(v, ["chid", "other", "chid", "", "", "", "to cut"]) + let v = native_list_append(v, ["phal", "other", "phal", "", "", "", "fruit"]) + let v = native_list_append(v, ["-tte", "other", "-tte", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["sakk", "other", "sakk", "", "", "", "to be able"]) + let v = native_list_append(v, ["-va", "other", "-va", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["terasa", "other", "terasa", "", "", "", "thirteen"]) + let v = native_list_append(v, ["ap", "other", "ap", "", "", "", "to attain"]) + let v = native_list_append(v, ["gah", "other", "gah", "", "", "", "to seize to"]) + let v = native_list_append(v, ["thar", "other", "thar", "", "", "", "to spread"]) + let v = native_list_append(v, ["-ma", "other", "-ma", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["चतुर्", "other", "चतुर्", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["eko", "other", "eko", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["नव", "other", "नव", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ก", "other", "ก", "", "", "", "-er one who"]) + let v = native_list_append(v, ["ฉ", "other", "ฉ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ร", "other", "ร", "", "", "", "The 35th letter"]) + let v = native_list_append(v, ["ล", "other", "ล", "", "", "", "The 36th letter"]) + let v = native_list_append(v, ["ว", "other", "ว", "", "", "", "The 37th letter"]) + let v = native_list_append(v, ["ส", "other", "ส", "", "", "", "The 38th letter"]) + let v = native_list_append(v, ["ເອກ", "other", "ເອກ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ati-", "other", "ati-", "", "", "", "over beyond exceedingly"]) + let v = native_list_append(v, ["এক", "other", "এক", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["เอก", "other", "เอก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["-mante", "other", "-mante", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["ဆ", "other", "ဆ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["dve", "other", "dve", "", "", "", "nominative/accusative of dvi"]) + let v = native_list_append(v, ["tayo", "other", "tayo", "", "", "", "nominative/accusative masculine of"]) + let v = native_list_append(v, ["-mant", "other", "-mant", "", "", "", "Abounding in thing"]) + let v = native_list_append(v, ["একে", "other", "একে", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ছ", "other", "ছ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["nava", "other", "nava", "", "", "", "nine"]) + let v = native_list_append(v, ["द्वि", "other", "द्वि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["सु-", "other", "सु-", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ស", "other", "ស", "", "", "", "The 38th letter"]) + let v = native_list_append(v, ["ទស", "other", "ទស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["satta", "other", "satta", "", "", "", "seven"]) + let v = native_list_append(v, ["එක", "other", "එක", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ekena", "other", "ekena", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["အရေ", "other", "အရေ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["dasa", "other", "dasa", "", "", "", "ten"]) + let v = native_list_append(v, ["su-", "other", "su-", "", "", "", "good well"]) + let v = native_list_append(v, ["अरे", "other", "अरे", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["-व", "other", "-व", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["-manta", "other", "-manta", "", "", "", "masculine/neuter vocative singular"]) + let v = native_list_append(v, ["vi-", "other", "vi-", "", "", "", ""]) + let v = native_list_append(v, ["অভি-", "other", "অভি-", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ឆ", "other", "ឆ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ល", "other", "ល", "", "", "", "The 36th letter"]) + let v = native_list_append(v, ["វ", "other", "វ", "", "", "", "The 37th letter"]) + let v = native_list_append(v, ["acc-", "other", "acc-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-कर", "other", "-कर", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["paṭhama", "other", "paṭhama", "", "", "", "first"]) + let v = native_list_append(v, ["pañca", "other", "pañca", "", "", "", "five"]) + let v = native_list_append(v, ["cattāro", "other", "cattāro", "", "", "", "nominative/accusative masculine of"]) + let v = native_list_append(v, ["ambho", "other", "ambho", "", "", "", "hey oi you"]) + let v = native_list_append(v, ["saddhiṃ", "other", "saddhiṃ", "", "", "", "with in the"]) + let v = native_list_append(v, ["natthi", "other", "natthi", "", "", "", "there is not"]) + let v = native_list_append(v, ["aṭṭha", "other", "aṭṭha", "", "", "", "eight"]) + let v = native_list_append(v, ["dutiya", "other", "dutiya", "", "", "", "second"]) + let v = native_list_append(v, ["tatiya", "other", "tatiya", "", "", "", "third"]) + let v = native_list_append(v, ["catuttha", "other", "catuttha", "", "", "", "fourth"]) + let v = native_list_append(v, ["pañcatha", "other", "pañcatha", "", "", "", "fifth"]) + let v = native_list_append(v, ["chaṭṭha", "other", "chaṭṭha", "", "", "", "sixth"]) + let v = native_list_append(v, ["sattha", "other", "sattha", "", "", "", "seventh"]) + let v = native_list_append(v, ["navama", "other", "navama", "", "", "", "ninth"]) + let v = native_list_append(v, ["dasama", "other", "dasama", "", "", "", "tenth"]) + let v = native_list_append(v, ["ubho", "other", "ubho", "", "", "", "nominative/accusative masculine/feminine/neuter of"]) + let v = native_list_append(v, ["ติ", "other", "ติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["अभि-", "other", "अभि-", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ति", "other", "ति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ඡ", "other", "ඡ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["नवमी", "other", "नवमी", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဨ", "other", "ဨ", "", "", "", "Independent vowel letter"]) + let v = native_list_append(v, ["ဧက", "other", "ဧက", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑀤𑀼𑀯𑁂", "other", "𑀤𑀼𑀯𑁂", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀙", "other", "𑀙", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["-manti", "other", "-manti", "", "", "", "feminine vocative singular"]) + let v = native_list_append(v, ["catu", "other", "catu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ຕິ", "other", "ຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["अनु-", "other", "अनु-", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["duve", "other", "duve", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["उभो", "other", "उभो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ud-", "other", "ud-", "", "", "", "Verbal prefix"]) + let v = native_list_append(v, ["ปฐม", "other", "ปฐม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["𑀲𑀳𑀲𑁆𑀲", "other", "𑀲𑀳𑀲𑁆𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["sahassa", "other", "sahassa", "", "", "", "thousand"]) + let v = native_list_append(v, ["นวม", "other", "นวม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["soḷasa", "other", "soḷasa", "", "", "", "sixteen"]) + let v = native_list_append(v, ["নৰম", "other", "নৰম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ทส", "other", "ทส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทสมี", "other", "ทสมี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ทวิ", "other", "ทวิ", "", "", "", "two"]) + let v = native_list_append(v, ["ᩑᨠ", "other", "ᩑᨠ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨴᩈ", "other", "ᨴᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["dvādasa", "other", "dvādasa", "", "", "", "twelve"]) + let v = native_list_append(v, ["ᨴ᩠ᩅᩣᨴᩈ", "other", "ᨴ᩠ᩅᩣᨴᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᩋᨭᩛ", "other", "ᩋᨭᩛ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["tiṃsa", "other", "tiṃsa", "", "", "", "thirty"]) + let v = native_list_append(v, ["ᨲᩥᩴᩈ", "other", "ᨲᩥᩴᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["tiṃsā", "other", "tiṃsā", "", "", "", "thirty"]) + let v = native_list_append(v, ["ᨴ᩠ᩅᩤᨴᩈ", "other", "ᨴ᩠ᩅᩤᨴᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ᨶᨲ᩠ᨳᩥ", "other", "ᨶᨲ᩠ᨳᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["-vant", "other", "-vant", "", "", "", "Abounding in thing"]) + let v = native_list_append(v, ["-kara", "other", "-kara", "", "", "", "Creating the thing"]) + let v = native_list_append(v, ["-ᨠᩁ", "other", "-ᨠᩁ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["උභො", "other", "උභො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["pañcama", "other", "pañcama", "", "", "", "fifth"]) + let v = native_list_append(v, ["ᨨ", "other", "ᨨ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ဒုတိယ", "other", "ဒုတိယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["တတိယ", "other", "တတိယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ပဌမ", "other", "ပဌမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒသမ", "other", "ဒသမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["စတု", "other", "စတု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒွိ", "other", "ဒွိ", "", "", "", "two"]) + let v = native_list_append(v, ["ຉ", "other", "ຉ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["पञ्च", "other", "पञ्च", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ឯក", "other", "ឯក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ᨲᩥ", "other", "ᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["dvi", "other", "dvi", "", "", "", "two"]) + let v = native_list_append(v, ["ສຸ-", "other", "ສຸ-", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຈະຕຸຣ", "other", "ຈະຕຸຣ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອັຕ຺ຖ຺ະ", "other", "ອັຕ຺ຖ຺ະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["-eyya", "other", "-eyya", "", "", "", "Worthy of"]) + let v = native_list_append(v, ["ปัญจะ", "other", "ปัญจะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สัตตะ", "other", "สัตตะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["anu-", "other", "anu-", "", "", "", "Verbal prefix"]) + let v = native_list_append(v, ["จะตุร", "other", "จะตุร", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["อัฏฐะ", "other", "อัฏฐะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴᩩᨲᩥᨿ", "other", "ᨴᩩᨲᩥᨿ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ທຸຕິຍ", "other", "ທຸຕິຍ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["จตุรฺ", "other", "จตุรฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨧᨲᩩᩁ᩺", "other", "ᨧᨲᩩᩁ᩺", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["อฏฺฐ", "other", "อฏฺฐ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["asīti", "other", "asīti", "", "", "", "eighty"]) + let v = native_list_append(v, ["caturāsīti", "other", "caturāsīti", "", "", "", "eighty four"]) + let v = native_list_append(v, ["จตุราสีติ", "other", "จตุราสีติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨧᨲᩩᩁᩣᩈᩦᨲᩥ", "other", "ᨧᨲᩩᩁᩣᩈᩦᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สหสฺส", "other", "สหสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᩉᩔ", "other", "ᩈᩉᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["dvattiṃsa", "other", "dvattiṃsa", "", "", "", "thirty two"]) + let v = native_list_append(v, ["ทฺวตฺติงฺส", "other", "ทฺวตฺติงฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨴ᩠ᩅᨲ᩠ᨲᩥᩴᩈ", "other", "ᨴ᩠ᩅᨲ᩠ᨲᩥᩴᩈ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ekavīsati", "other", "ekavīsati", "", "", "", "twenty one"]) + let v = native_list_append(v, ["เอกวีสติ", "other", "เอกวีสติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩑᨠᩅᩦᩈᨲᩥ", "other", "ᩑᨠᩅᩦᩈᨲᩥ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["สตฺต", "other", "สตฺต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩈᨲ᩠ᨲ", "other", "ᩈᨲ᩠ᨲ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["සද‍්ධිං", "other", "සද‍්ධිං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kvattho", "other", "kvattho", "", "", "", "What is the"]) + let v = native_list_append(v, ["अट्ठ", "other", "अट्ठ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["cattālīsā", "other", "cattālīsā", "", "", "", "forty"]) + let v = native_list_append(v, ["ekacattālīsā", "other", "ekacattālīsā", "", "", "", "forty one"]) + let v = native_list_append(v, ["एकचत्तालीसा", "other", "एकचत्तालीसा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["चत्तालीसा", "other", "चत्तालीसा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["-kāma", "other", "-kāma", "", "", "", "Adjectival suffix meaning"]) + let v = native_list_append(v, ["ततिय", "other", "ततिय", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["पठम", "other", "पठम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["တိ", "other", "တိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑅇", "other", "𑅇", "", "", "", "The letter vā"]) + let v = native_list_append(v, ["နမောတဿ", "other", "နမောတဿ", "", "", "", "salutation to him"]) + let v = native_list_append(v, ["उद्-", "other", "उद्-", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pātu-", "other", "pātu-", "", "", "", "evidently manifestly"]) + let v = native_list_append(v, ["𑀙𑀝𑁆𑀞", "other", "𑀙𑀝𑁆𑀞", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ຕະຕິຍະ", "other", "ຕະຕິຍະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑀤𑀲𑀫", "other", "𑀤𑀲𑀫", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ᨶᨾᩮᩣᨲᩔ", "other", "ᨶᨾᩮᩣᨲᩔ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["နမော ဗုဒ္ဓါယ သိဒ္ဓံ", "other", "နမော ဗုဒ္ဓါယ သိဒ္ဓံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["namo buddhāya siddhaṃ", "other", "namo buddhāya siddhaṃ", "", "", "", "Homage to the"]) + let v = native_list_append(v, ["दसम", "other", "दसम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဨကဝဳသတိ", "other", "ဨကဝဳသတိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဨက", "other", "ဨက", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["नवम", "other", "नवम", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ทสม", "other", "ทสม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["aḍḍha-", "other", "aḍḍha-", "", "", "", "half-"]) + let v = native_list_append(v, ["អឌ្ឍ-", "other", "អឌ្ឍ-", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ຈະຕຸ", "other", "ຈະຕຸ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ຈະຕຸລ", "other", "ຈະຕຸລ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ສະຫັດສະ", "other", "ສະຫັດສະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["सत्त", "other", "सत्त", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ឯកា", "other", "ឯកា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["paññāsa", "other", "paññāsa", "", "", "", "fifty"]) + let v = native_list_append(v, ["aṭṭhasaṭṭhi", "other", "aṭṭhasaṭṭhi", "", "", "", "sixty-eight"]) + let v = native_list_append(v, ["បឋម", "other", "បឋម", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ekādasama", "other", "ekādasama", "", "", "", "eleventh"]) + let v = native_list_append(v, ["ekādasa", "other", "ekādasa", "", "", "", "eleven"]) + let v = native_list_append(v, ["dvādasama", "other", "dvādasama", "", "", "", "twelfth"]) + let v = native_list_append(v, ["terasama", "other", "terasama", "", "", "", "thirteenth"]) + let v = native_list_append(v, ["𑀏𑀓", "other", "𑀏𑀓", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["သတ္တ", "other", "သတ္တ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["সু-", "other", "সু-", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["द्वादस", "other", "द्वादस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["නත්‍ථි", "other", "නත්‍ථි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["චස‍්ස", "other", "චස‍්ස", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["cāssa", "other", "cāssa", "", "", "", "and there were"]) + let v = native_list_append(v, ["จาสฺส", "other", "จาสฺส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["uttareyyanti", "other", "uttareyyanti", "", "", "", "As third-person plural"]) + let v = native_list_append(v, ["උත‍්තරෙය්‍යන‍්ති", "other", "උත‍්තරෙය්‍යන‍්ති", "", "", "", "As first-person singular"]) + let v = native_list_append(v, ["yannūnāhaṃ", "other", "yannūnāhaṃ", "", "", "", "now then let"]) + let v = native_list_append(v, ["යන‍්නූනාහං", "other", "යන‍්නූනාහං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["bhar", "other", "bhar", "", "", "", "to carry"]) + let v = native_list_append(v, ["chaṭṭhā", "other", "chaṭṭhā", "", "", "", "inflection of chaṭṭha"]) + let v = native_list_append(v, ["chaṭṭhī", "other", "chaṭṭhī", "", "", "", "inflection of chaṭṭha"]) + let v = native_list_append(v, ["paṭi-", "other", "paṭi-", "", "", "", "Verbal prefix"]) + let v = native_list_append(v, ["pati-", "other", "pati-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["abhi-", "other", "abhi-", "", "", "", "Predominantly verbal prefix"]) + let v = native_list_append(v, ["क्वत्थो", "other", "क्वत्थो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["𑀅𑀝𑁆𑀞", "other", "𑀅𑀝𑁆𑀞", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["pi nāma", "other", "pi nāma", "", "", "", "really just so"]) + let v = native_list_append(v, ["පි නාම", "other", "පි නාම", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tettiṃsa", "other", "tettiṃsa", "", "", "", "thirty-three"]) + let v = native_list_append(v, ["तेत्तिंस", "other", "तेत्तिंस", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["aṭṭhacattārīsaṃ", "other", "aṭṭhacattārīsaṃ", "", "", "", "forty-eight"]) + let v = native_list_append(v, ["pañcapaññāsa", "other", "pañcapaññāsa", "", "", "", "fifty-five"]) + let v = native_list_append(v, ["pi", "conj", "pi", "", "", "", "also even so"]) + let v = native_list_append(v, ["hi", "conj", "hi", "", "", "", "for because"]) + let v = native_list_append(v, ["saha", "conj", "saha", "", "", "", "together with"]) + let v = native_list_append(v, ["सह", "conj", "सह", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["api", "conj", "api", "", "", "", "also even so"]) + let v = native_list_append(v, ["अपि", "conj", "अपि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["សហ", "conj", "សហ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["हि", "conj", "हि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["จ", "conj", "จ", "", "", "", "and"]) + let v = native_list_append(v, ["sace", "conj", "sace", "", "", "", "if"]) + let v = native_list_append(v, ["අපි", "conj", "අපි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["วา", "conj", "วา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["සහ", "conj", "සහ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["वा", "conj", "वा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ဝါ", "conj", "ဝါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["វា", "conj", "វា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yadi", "conj", "yadi", "", "", "", "if"]) + let v = native_list_append(v, ["vā", "conj", "vā", "", "", "", "or always enclitic"]) + let v = native_list_append(v, ["ပိ", "conj", "ပိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["yadidaṃ", "conj", "yadidaṃ", "", "", "", "i.e. namely"]) + let v = native_list_append(v, ["ຢະທິທັງ", "conj", "ຢະທິທັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["สะหะ", "conj", "สะหะ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ยะทิทัง", "conj", "ยะทิทัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ยทิทํ", "conj", "ยทิทํ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᨿᨴᩥᨴᩴ", "conj", "ᨿᨴᩥᨴᩴ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["atha ca pana", "conj", "atha ca pana", "", "", "", "and yet"]) + let v = native_list_append(v, ["අථ ච පන", "conj", "අථ ච පන", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["tasmā", "conj", "tasmā", "", "", "", "therefore"]) + let v = native_list_append(v, ["तस्मा", "conj", "तस्मा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ປິ", "conj", "ປິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["වා", "conj", "වා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["පි", "conj", "පි", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["hi", "adv", "hi", "", "", "", "indeed certainly"]) + let v = native_list_append(v, ["kuva", "adv", "kuva", "", "", "", "where"]) + let v = native_list_append(v, ["ati", "adv", "ati", "", "", "", "very"]) + let v = native_list_append(v, ["kuto", "adv", "kuto", "", "", "", "whence"]) + let v = native_list_append(v, ["हि", "adv", "हि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kva", "adv", "kva", "", "", "", "where"]) + let v = native_list_append(v, ["tena", "adv", "tena", "", "", "", "there"]) + let v = native_list_append(v, ["parito", "adv", "parito", "", "", "", "round about around"]) + let v = native_list_append(v, ["यदा", "adv", "यदा", "", "", "", "when"]) + let v = native_list_append(v, ["यथा", "adv", "यथा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तथा", "adv", "तथा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yena", "adv", "yena", "", "", "", "where"]) + let v = native_list_append(v, ["icc", "adv", "icc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pamuditākārena", "adv", "pamuditākārena", "", "", "", "joyfully joyously"]) + let v = native_list_append(v, ["taṃ", "adv", "taṃ", "", "", "", "there"]) + let v = native_list_append(v, ["punappunaṃ", "adv", "punappunaṃ", "", "", "", "again and again"]) + let v = native_list_append(v, ["kālenakālaṃ", "adv", "kālenakālaṃ", "", "", "", "from time to"]) + let v = native_list_append(v, ["āyatiṃ", "adv", "āyatiṃ", "", "", "", "in the future"]) + let v = native_list_append(v, ["lahuso", "adv", "lahuso", "", "", "", "quickly"]) + let v = native_list_append(v, ["bhūtapubbaṃ", "adv", "bhūtapubbaṃ", "", "", "", "formerly"]) + let v = native_list_append(v, ["ekaṃsena", "adv", "ekaṃsena", "", "", "", "in all probability"]) + let v = native_list_append(v, ["pacchā", "adv", "pacchā", "", "", "", "afterwards"]) + let v = native_list_append(v, ["tāva", "adv", "tāva", "", "", "", "so much"]) + let v = native_list_append(v, ["idha", "adv", "idha", "", "", "", "here"]) + let v = native_list_append(v, ["ādi", "adv", "ādi", "", "", "", "initially"]) + let v = native_list_append(v, ["yathābhūtaṃ", "adv", "yathābhūtaṃ", "", "", "", "according to the"]) + let v = native_list_append(v, ["seyyathāpi", "adv", "seyyathāpi", "", "", "", "just as"]) + let v = native_list_append(v, ["ekamantaṃ", "adv", "ekamantaṃ", "", "", "", "on one side"]) + let v = native_list_append(v, ["yathā", "adv", "yathā", "", "", "", "as like"]) + let v = native_list_append(v, ["tattha", "adv", "tattha", "", "", "", "there"]) + let v = native_list_append(v, ["paraṃ", "adv", "paraṃ", "", "", "", "after"]) + let v = native_list_append(v, ["tatra", "adv", "tatra", "", "", "", "there"]) + let v = native_list_append(v, ["tathā", "adv", "tathā", "", "", "", "so thus"]) + let v = native_list_append(v, ["aññathā", "adv", "aññathā", "", "", "", "otherwise"]) + let v = native_list_append(v, ["ajjhattaṃ", "adv", "ajjhattaṃ", "", "", "", "relating to the"]) + let v = native_list_append(v, ["tuṇhī", "adv", "tuṇhī", "", "", "", "silently"]) + let v = native_list_append(v, ["𑀢𑀁", "adv", "𑀢𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ตาว", "adv", "ตาว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["तं", "adv", "तं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kattha", "adv", "kattha", "", "", "", "where whither?"]) + let v = native_list_append(v, ["अति", "adv", "अति", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["कदा", "adv", "कदा", "", "", "", "interrogative"]) + let v = native_list_append(v, ["तत्र", "adv", "तत्र", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["တံ", "adv", "တံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["তথা", "adv", "তথা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["𑀅𑀚𑁆𑀚", "adv", "𑀅𑀚𑁆𑀚", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀢𑀢𑁆𑀣", "adv", "𑀢𑀢𑁆𑀣", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["තත්‍ර", "adv", "තත්‍ර", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["piṭṭhito piṭṭhito", "adv", "piṭṭhito piṭṭhito", "", "", "", "immediately behind"]) + let v = native_list_append(v, ["පිට‍්ඨිතො පිට‍්ඨිතො", "adv", "පිට‍්ඨිතො පිට‍්ඨිතො", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ettha", "adv", "ettha", "", "", "", "here"]) + let v = native_list_append(v, ["එත්‍ථ", "adv", "එත්‍ථ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["paripanthe", "adv", "paripanthe", "", "", "", "in ambush as"]) + let v = native_list_append(v, ["පරිපන්‍ථෙ", "adv", "පරිපන්‍ථෙ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["musā", "adv", "musā", "", "", "", "lyingly"]) + let v = native_list_append(v, ["මුසා", "adv", "මුසා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["dutiyaṃ", "adv", "dutiyaṃ", "", "", "", "for the second"]) + let v = native_list_append(v, ["ทุติยัง", "adv", "ทุติยัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["tatiyaṃ", "adv", "tatiyaṃ", "", "", "", "for the third"]) + let v = native_list_append(v, ["ตะติยัง", "adv", "ตะติยัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["มุสา", "adv", "มุสา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["micchā", "adv", "micchā", "", "", "", "wrong wrongly"]) + let v = native_list_append(v, ["sabbaso", "adv", "sabbaso", "", "", "", "in every respect"]) + let v = native_list_append(v, ["สพฺพโส", "adv", "สพฺพโส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["තථා", "adv", "තථා", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["nipacca", "adv", "nipacca", "", "", "", "absolutive of nipatati"]) + let v = native_list_append(v, ["යථා", "adv", "යථා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["භූතපුබ‍්බං", "adv", "භූතපුබ‍්බං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["𑀇𑀥", "adv", "𑀇𑀥", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["taṃyathā", "adv", "taṃyathā", "", "", "", "this is how"]) + let v = native_list_append(v, ["taṃ yathā", "adv", "taṃ yathā", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["तं यथा", "adv", "तं यथा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["तत्थ", "adv", "तत्थ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["एत्थ", "adv", "एत्थ", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["kvaci", "adv", "kvaci", "", "", "", "somewhere in some"]) + let v = native_list_append(v, ["kuvaṃ", "adv", "kuvaṃ", "", "", "", "where"]) + let v = native_list_append(v, ["क्वचि", "adv", "क्वचि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["yebhuyyena", "adv", "yebhuyyena", "", "", "", "mostly"]) + let v = native_list_append(v, ["yathābhataṃ", "adv", "yathābhataṃ", "", "", "", "as it was"]) + let v = native_list_append(v, ["hiyyo", "adv", "hiyyo", "", "", "", "yesterday"]) + let v = native_list_append(v, ["सायं", "adv", "सायं", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अधुना", "adv", "अधुना", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ທຸຕິຍັງ", "adv", "ທຸຕິຍັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["pātar", "adv", "pātar", "", "", "", "early in the"]) + let v = native_list_append(v, ["gāḷhaṃ", "adv", "gāḷhaṃ", "", "", "", "tightly"]) + let v = native_list_append(v, ["ຕະຕິຍັງ", "adv", "ຕະຕິຍັງ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["sabbadhi", "adv", "sabbadhi", "", "", "", "everywhere"]) + let v = native_list_append(v, ["𑀅𑀥𑀼𑀦𑀸", "adv", "𑀅𑀥𑀼𑀦𑀸", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["adhunā", "adv", "adhunā", "", "", "", "now"]) + let v = native_list_append(v, ["niccaṃ", "adv", "niccaṃ", "", "", "", "perpetually"]) + let v = native_list_append(v, ["နိစ္စံ", "adv", "နိစ္စံ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["អតិ", "adv", "អតិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ກັດຖະ", "adv", "ກັດຖະ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ອະຕິ", "adv", "ອະຕິ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["ตัง", "adv", "ตัง", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ṭhapetvā", "adv", "ṭhapetvā", "", "", "", "absolutive of ṭhapeti"]) + let v = native_list_append(v, ["ठपेत्वा", "adv", "ठपेत्वा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["မုသာ", "adv", "မုသာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["𑄖𑄖𑄳𑄢", "adv", "𑄖𑄖𑄳𑄢", "", "", "", "Chakma script form"]) + let v = native_list_append(v, ["ṭhāne", "adv", "ṭhāne", "", "", "", "when appropriate"]) + let v = native_list_append(v, ["ठाने", "adv", "ठाने", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["ajja", "adv", "ajja", "", "", "", "today now"]) + let v = native_list_append(v, ["pāra", "adv", "pāra", "", "", "", "beyond across"]) + let v = native_list_append(v, ["පාර", "adv", "පාර", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sotthinā", "adv", "sotthinā", "", "", "", "safely"]) + let v = native_list_append(v, ["සොත්‍ථිනා", "adv", "සොත්‍ථිනා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["sāyaṃ", "adv", "sāyaṃ", "", "", "", "in the evening"]) + let v = native_list_append(v, ["turitaṃ", "adv", "turitaṃ", "", "", "", "hastily quickly"]) + let v = native_list_append(v, ["upādā", "adv", "upādā", "", "", "", "subsisting on something"]) + let v = native_list_append(v, ["upādāya", "adv", "upādāya", "", "", "", "out of as"]) + let v = native_list_append(v, ["අජ‍්ජ", "adv", "අජ‍්ජ", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["යෙන", "adv", "යෙන", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["තෙන", "adv", "තෙන", "", "", "", "there"]) + let v = native_list_append(v, ["ajjā", "adv", "ajjā", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["තං", "adv", "තං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["kudā", "adv", "kudā", "", "", "", "when"]) + let v = native_list_append(v, ["kudācanaṃ", "adv", "kudācanaṃ", "", "", "", "at any time"]) + let v = native_list_append(v, ["කුදාචනං", "adv", "කුදාචනං", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["yadā", "adv", "yadā", "", "", "", "when"]) + let v = native_list_append(v, ["යදා", "adv", "යදා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["aññatra", "adv", "aññatra", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["aññattha", "adv", "aññattha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anto", "prep", "anto", "", "", "", "into"]) + let v = native_list_append(v, ["ยาว", "prep", "ยาว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ຍາວ", "prep", "ຍາວ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["adhi", "prep", "adhi", "", "", "", "up to"]) + let v = native_list_append(v, ["antarā", "prep", "antarā", "", "", "", "between"]) + let v = native_list_append(v, ["អន្តោ", "prep", "អន្តោ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["yāva", "prep", "yāva", "", "", "", "as far as"]) + let v = native_list_append(v, ["ᨿᩣᩅ", "prep", "ᨿᩣᩅ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["අන‍්තරා", "prep", "අන‍්තරා", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["ṭhapetvā", "prep", "ṭhapetvā", "", "", "", "except for"]) + let v = native_list_append(v, ["ठपेत्वा", "prep", "ठपेत्वा", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["अधि", "prep", "अधि", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["pāra", "prep", "pāra", "", "", "", "beyond across"]) + let v = native_list_append(v, ["පාර", "prep", "පාර", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["अन्तो", "prep", "अन्तो", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["অন্তো", "prep", "অন্তো", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["အန္တော", "prep", "အန္တော", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["อนฺโต", "prep", "อนฺโต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᩋᨶ᩠ᨲᩮᩣ", "prep", "ᩋᨶ᩠ᨲᩮᩣ", "", "", "", "Tai Tham script"]) + return v +} + +fn vocab_pi_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_pi_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-sa.el b/elp/src/vocabulary-sa.el new file mode 100644 index 0000000..3ba3a21 --- /dev/null +++ b/elp/src/vocabulary-sa.el @@ -0,0 +1,9682 @@ +// vocabulary-sa.el — Sanskrit vocabulary seed +// 9661 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 12902 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_sa_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["विश्व", "noun", "विश्वा॑नि", "विश्व॑स्य", "विश्वा॑य", "", "the whole world"]) + let v = native_list_append(v, ["क", "noun", "काः", "कस्य", "काय", "", "a name"]) + let v = native_list_append(v, ["ख", "noun", "खानि", "खस्य", "खाय", "", "hole aperture cavity"]) + let v = native_list_append(v, ["ङ", "noun", "ङ", "", "", "", "An object of"]) + let v = native_list_append(v, ["ज", "noun", "जाः", "जस्य॑", "जाय॑", "", "son of in"]) + let v = native_list_append(v, ["ञ", "noun", "ञ", "", "", "", "Singer"]) + let v = native_list_append(v, ["ट", "noun", "ट", "", "", "", "A sound like"]) + let v = native_list_append(v, ["ठ", "noun", "ठ", "", "", "", "An imitative sound"]) + let v = native_list_append(v, ["ड", "noun", "ड", "", "", "", "A sound"]) + let v = native_list_append(v, ["ण", "noun", "ण", "", "", "", "Knowledge"]) + let v = native_list_append(v, ["थ", "noun", "थ", "", "", "", "A mountain"]) + let v = native_list_append(v, ["ढ", "noun", "ढ", "", "", "", "An imitative sound"]) + let v = native_list_append(v, ["कमल", "noun", "कमलाः", "कमलस्य", "कमलाय", "", "a lotus lotus"]) + let v = native_list_append(v, ["नाम", "noun", "नाम", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["साम्य", "noun", "साम्यानि", "साम्यस्य", "साम्याय", "", "equality evenness equilibrium"]) + let v = native_list_append(v, ["बुद्ध", "noun", "बुद्ध", "", "", "", "Buddha the enlightened"]) + let v = native_list_append(v, ["वृक्ष", "noun", "वृ॒क्षाः", "वृ॒क्षस्य॑", "वृ॒क्षाय॑", "", "a tree especially"]) + let v = native_list_append(v, ["शलभ", "noun", "शलभाः", "शलभस्य", "शलभाय", "", "locust"]) + let v = native_list_append(v, ["तृण", "noun", "तृणा॑नि", "तृण॑स्य", "तृणा॑य", "", "grass herb any"]) + let v = native_list_append(v, ["स्निह्", "noun", "स्निहः॑", "स्नि॒हः", "स्नि॒हे", "", "wetness moisture"]) + let v = native_list_append(v, ["तन्तुवाय", "noun", "तंतुवायाः", "तंतुवायस्य", "तंतुवायाय", "", "spider"]) + let v = native_list_append(v, ["आसन", "noun", "आस॑नानि", "आस॑नस्य", "आस॑नाय", "", "seat chair"]) + let v = native_list_append(v, ["संस्कृत", "noun", "सं॒स्कृ॒ताः", "सं॒स्कृ॒तस्य॑", "सं॒स्कृ॒ताय॑", "", "a man of"]) + let v = native_list_append(v, ["समुद्र", "noun", "स॒मु॒द्राः", "स॒मु॒द्रस्य॑", "स॒मु॒द्राय॑", "", "any large body"]) + let v = native_list_append(v, ["तरंग", "noun", "तरंगाः", "तरंगस्य", "तरंगाय", "", "a wave billow"]) + let v = native_list_append(v, ["तीर", "noun", "तीराणि", "तीरस्य", "तीराय", "", "beach shore"]) + let v = native_list_append(v, ["महाराष्ट्र", "noun", "महाराष्ट्र", "", "", "", "Maharashtra a state"]) + let v = native_list_append(v, ["हिन्दी", "noun", "हिन्दी", "हिन्द्याः", "हिन्द्यै", "", "Hindi"]) + let v = native_list_append(v, ["वन", "noun", "वना॑नि", "वन॑स्य", "वना॑य", "", "a tree"]) + let v = native_list_append(v, ["संधि", "noun", "संधयः", "संधेः", "संधये", "", "junction connection combination"]) + let v = native_list_append(v, ["गज", "noun", "गजाः", "गजस्य", "गजाय", "", "elephant"]) + let v = native_list_append(v, ["गृह", "noun", "गृ॒हाः", "गृ॒हस्य॑", "गृ॒हाय॑", "", "a house habitation"]) + let v = native_list_append(v, ["सह", "noun", "स॒हाः", "स॒हस्य॑", "स॒हाय॑", "", "various names or"]) + let v = native_list_append(v, ["मेघ", "noun", "मे॒घाः", "मे॒घस्य॑", "मे॒घाय॑", "", "a cloud"]) + let v = native_list_append(v, ["आकाश", "noun", "आका॑शाः", "आका॑शस्य", "आका॑शाय", "", "sky"]) + let v = native_list_append(v, ["मूर्ख", "noun", "मूर्खाः", "मूर्खस्य", "मूर्खाय", "", "fool idiot blockhead"]) + let v = native_list_append(v, ["वली", "noun", "वल्यः", "वल्याः", "वल्यै", "", "fold of the"]) + let v = native_list_append(v, ["मधुर", "noun", "मधुराः", "मधुरस्य", "मधुराय", "", "a kind of"]) + let v = native_list_append(v, ["स्वस्तिक", "noun", "स्वस्तिकाः", "स्वस्तिकस्य", "स्वस्तिकाय", "", "a kind of"]) + let v = native_list_append(v, ["त्विष्", "noun", "त्विषः॑", "त्वि॒षः", "त्वि॒षे", "", "violent agitation vehemence"]) + let v = native_list_append(v, ["शब्दकोश", "noun", "शब्दकोशाः", "शब्दकोशस्य", "शब्दकोशाय", "", "dictionary"]) + let v = native_list_append(v, ["मुक्ति", "noun", "मुक्तयः", "मुक्तेः", "मुक्तये", "", "setting or becoming"]) + let v = native_list_append(v, ["शनिवार", "noun", "शनिवाराः", "शनिवारस्य", "शनिवाराय", "", "Saturday"]) + let v = native_list_append(v, ["सूनु", "noun", "सू॒नवः॑", "सू॒नोः", "सू॒नवे॑", "", "son child offspring"]) + let v = native_list_append(v, ["अनुवाद", "noun", "अनुवादाः", "अनुवादस्य", "अनुवादाय", "", "interpretation"]) + let v = native_list_append(v, ["अनुराग", "noun", "अनुरागाः", "अनुरागस्य", "अनुरागाय", "", "predilection"]) + let v = native_list_append(v, ["देवता", "noun", "दे॒वताः॑", "दे॒वता॑याः", "दे॒वता॑यै", "", "godhead divinity"]) + let v = native_list_append(v, ["ईश्वर", "noun", "ई॒श्व॒राः", "ई॒श्व॒रस्य॑", "ई॒श्व॒राय॑", "", "a husband"]) + let v = native_list_append(v, ["कर्णाटक", "noun", "कर्णाटक", "", "", "", "Karnataka a state"]) + let v = native_list_append(v, ["फल", "noun", "फला॑नि", "फल॑स्य", "फला॑य", "", "fruit"]) + let v = native_list_append(v, ["वस्तु", "noun", "वस्तूनि", "वस्तुनः", "वस्तुने", "", "a thing"]) + let v = native_list_append(v, ["ભારત", "noun", "ભારત", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["भारत", "noun", "भार॑ताः", "भार॑तस्य", "भार॑ताय", "", "a descendant of"]) + let v = native_list_append(v, ["एक", "noun", "एका॑नि", "एक॑स्य", "एका॑य", "", "unity"]) + let v = native_list_append(v, ["पर", "noun", "पराः॑", "पर॑स्य", "परा॑य", "", "a stranger"]) + let v = native_list_append(v, ["अजर्बैजान", "noun", "अजर्बैजान", "", "", "", "Azerbaijan a country"]) + let v = native_list_append(v, ["काला", "noun", "कालाः", "कालायाः", "कालायै", "", "name of several"]) + let v = native_list_append(v, ["कृष्ण", "noun", "कृष्णाः", "कृष्णस्य", "कृष्णाय", "", "one of the"]) + let v = native_list_append(v, ["मातृ", "noun", "मा॒तरः॑", "मा॒तुः", "मा॒त्रे", "", "mother"]) + let v = native_list_append(v, ["सुजित", "noun", "सुजितानि", "सुजितस्य", "सुजिताय", "", "easy conquest"]) + let v = native_list_append(v, ["अग्नि", "noun", "अ॒ग्नयः॑", "अ॒ग्नेः", "अ॒ग्नये॑", "", "Agni god of"]) + let v = native_list_append(v, ["संस्कृति", "noun", "सं॒स्कृ॒इ॒तयः॑", "सं॒स्कृ॒इ॒तेः", "सं॒स्कृ॒इ॒तये॑", "", "culture"]) + let v = native_list_append(v, ["कपोत", "noun", "क॒पोताः॑", "क॒पोत॑स्य", "क॒पोता॑य", "", "pigeon dove"]) + let v = native_list_append(v, ["गुजराती", "noun", "गुजराती", "", "", "", "Gujarati language"]) + let v = native_list_append(v, ["रयि", "noun", "र॒ययः॑", "र॒येः", "र॒यये॑", "", "property goods possessions"]) + let v = native_list_append(v, ["दर्पण", "noun", "दर्प॑णाः", "दर्प॑णस्य", "दर्प॑णाय", "", "mirror"]) + let v = native_list_append(v, ["धन्यवाद", "noun", "धन्यवादाः", "धन्यवादस्य", "धन्यवादाय", "", "thank you"]) + let v = native_list_append(v, ["घृणा", "noun", "घृ॒णाः", "घृ॒णायाः॑", "घृ॒णायै॑", "", "hatred"]) + let v = native_list_append(v, ["ग्रह", "noun", "ग्रहाः॑", "ग्रह॑स्य", "ग्रहा॑य", "", "planet"]) + let v = native_list_append(v, ["ताम्र", "noun", "ता॒म्राणि॑", "ता॒म्रस्य॑", "ता॒म्राय॑", "", "copper"]) + let v = native_list_append(v, ["भाषा", "noun", "भाषाः", "भाषायाः", "भाषायै", "", "speech language especially"]) + let v = native_list_append(v, ["गणेश", "noun", "गणेशाः", "गणेशस्य", "गणेशाय", "", "Ganesha"]) + let v = native_list_append(v, ["गणपति", "noun", "ग॒णप॑तयः", "ग॒णप॑तेः", "ग॒णप॑तये", "", "the leader of"]) + let v = native_list_append(v, ["बीज", "noun", "बीजा॑नि", "बीज॑स्य", "बीजा॑य", "", "seed"]) + let v = native_list_append(v, ["देश", "noun", "दे॒शाः", "दे॒शस्य॑", "दे॒शाय॑", "", "point region spot"]) + let v = native_list_append(v, ["नृप", "noun", "नृपाः", "नृपस्य", "नृपाय", "", "king sovereign"]) + let v = native_list_append(v, ["जन", "noun", "जनाः॑", "जन॑स्य", "जना॑य", "", "person human being"]) + let v = native_list_append(v, ["मत्स्य", "noun", "मत्स्य", "", "", "", "a fish"]) + let v = native_list_append(v, ["दिव्", "noun", "दिव्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["तद्", "noun", "तद्", "", "", "", "this world compare"]) + let v = native_list_append(v, ["काव्य", "noun", "का॒व्यानि॑", "का॒व्यस्य॑", "का॒व्याय॑", "", "a poem"]) + let v = native_list_append(v, ["अश्व", "noun", "अश्वाः॑", "अश्व॑स्य", "अश्वा॑य", "", "horse stallion"]) + let v = native_list_append(v, ["गगन", "noun", "गग॑नानि", "गग॑नस्य", "गग॑नाय", "", "the atmosphere sky"]) + let v = native_list_append(v, ["नेपाल", "noun", "नेपाल", "नेपालस्य", "नेपालाय", "", "Nepal an ancient"]) + let v = native_list_append(v, ["आराम", "noun", "आ॒रा॒माः", "आ॒रा॒मस्य॑", "आ॒रा॒माय॑", "", "sensual pleasure delight"]) + let v = native_list_append(v, ["जरा", "noun", "जराः", "जरायाः", "जरायै", "", "old age"]) + let v = native_list_append(v, ["अभाव", "noun", "अभावाः", "अभावस्य", "अभावाय", "", "death"]) + let v = native_list_append(v, ["विना", "noun", "विना", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["राजा", "noun", "राजा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["प्राण", "noun", "प्रा॒णाः", "प्रा॒णस्य॑", "प्रा॒णाय॑", "", "breath respiration the"]) + let v = native_list_append(v, ["पिता", "noun", "पिता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पावक", "noun", "पावकाः", "पावकस्य", "पावकाय", "", "fire or the"]) + let v = native_list_append(v, ["आदि", "noun", "आदयः", "आदेः", "आदये", "", "beginning commencement"]) + let v = native_list_append(v, ["अहिंसा", "noun", "अहिंसा", "", "", "", "nonviolence"]) + let v = native_list_append(v, ["अमृत", "noun", "अ॒मृताः॑", "अ॒मृत॑स्य", "अ॒मृता॑य", "", "immortal god"]) + let v = native_list_append(v, ["ज्ञान", "noun", "ज्ञानानि", "ज्ञानस्य", "ज्ञानाय", "", "knowing becoming acquainted"]) + let v = native_list_append(v, ["जाह्नवी", "noun", "जाह्नव्यः", "जाह्नव्याः", "जाह्नव्यै", "", "a name of"]) + let v = native_list_append(v, ["हर्ष", "noun", "हर्षाः", "हर्षस्य", "हर्षाय", "", "joy pleasure happiness"]) + let v = native_list_append(v, ["हस्तिन्", "noun", "ह॒स्तिनः॑", "ह॒स्तिनः॑", "ह॒स्तिने॑", "", "an elephant"]) + let v = native_list_append(v, ["द्वार", "noun", "द्वारा॑णि", "द्वार॑स्य", "द्वारा॑य", "", "door gate passage"]) + let v = native_list_append(v, ["द्वेष", "noun", "द्वेषाः॑", "द्वेष॑स्य", "द्वेषा॑य", "", "hatred hate"]) + let v = native_list_append(v, ["दया", "noun", "द॒याः", "द॒यायाः॑", "द॒यायै॑", "", "sympathy"]) + let v = native_list_append(v, ["देह", "noun", "देहाः", "देहस्य", "देहाय", "", "body"]) + let v = native_list_append(v, ["बुद्धि", "noun", "बुद्ध॑यः", "बुद्धेः॑", "बुद्ध॑ये", "", "intelligence the power"]) + let v = native_list_append(v, ["सत्त्व", "noun", "सत्त्वानि", "सत्त्वस्य", "सत्त्वाय", "", "essence"]) + let v = native_list_append(v, ["सुख", "noun", "सु॒खाः", "सु॒खस्य॑", "सु॒खाय॑", "", "name of a"]) + let v = native_list_append(v, ["सूर्य", "noun", "सूर्याः॑", "सूर्य॑स्य", "सूर्या॑य", "", "the sun"]) + let v = native_list_append(v, ["आद्य", "noun", "आ॒द्या॑नि", "आ॒द्य॑स्य", "आ॒द्या॑य", "", "food"]) + let v = native_list_append(v, ["अधर्म", "noun", "अधर्माः", "अधर्मस्य", "अधर्माय", "", "unrighteousness wickedness demerit"]) + let v = native_list_append(v, ["अभय", "noun", "अभयानि", "अभयस्य", "अभयाय", "", "fearlessness"]) + let v = native_list_append(v, ["अभ्र", "noun", "अ॒भ्राणि॑", "अ॒भ्रस्य॑", "अ॒भ्राय॑", "", "cloud thunder-cloud rainy"]) + let v = native_list_append(v, ["धृत", "noun", "धृताः", "धृतस्य", "धृताय", "", "of a son"]) + let v = native_list_append(v, ["दोष", "noun", "दो॒षाः", "दो॒षस्य॑", "दो॒षाय॑", "", "fault deficiency"]) + let v = native_list_append(v, ["कार्य", "noun", "का॒र्या॑णि", "का॒र्य॑स्य", "का॒र्या॑य", "", "function act deed"]) + let v = native_list_append(v, ["क्षेत्र", "noun", "क्षेत्रा॑णि", "क्षेत्र॑स्य", "क्षेत्रा॑य", "", "land soil ground"]) + let v = native_list_append(v, ["माहात्म्य", "noun", "माहात्म्यानि", "माहात्म्यस्य", "माहात्म्याय", "", "magnanimity highmindedness"]) + let v = native_list_append(v, ["मान", "noun", "मानाः॑", "मान॑स्य", "माना॑य", "", "opinion notion conception"]) + let v = native_list_append(v, ["निर्वैर", "noun", "निर्वैर", "", "", "", "absence of enmity"]) + let v = native_list_append(v, ["नियम", "noun", "नि॒य॒माः", "नि॒य॒मस्य॑", "नि॒य॒माय॑", "", "restraining checking holding"]) + let v = native_list_append(v, ["ह्री", "noun", "ह्रियः॑", "ह्रि॒यः", "ह्रि॒ये", "", "shame"]) + let v = native_list_append(v, ["समाधि", "noun", "समाधयः", "समाधेः", "समाधये", "", "putting together joining"]) + let v = native_list_append(v, ["ध्यान", "noun", "ध्यानानि", "ध्यानस्य", "ध्यानाय", "", "meditation contemplation thought"]) + let v = native_list_append(v, ["प्राणायाम", "noun", "प्राणायामाः", "प्राणायामस्य", "प्राणायामाय", "", "pranayama"]) + let v = native_list_append(v, ["यम", "noun", "यमाः॑", "यम॑स्य", "यमा॑य", "", "rein"]) + let v = native_list_append(v, ["ब्रह्मचर्य", "noun", "ब्रह्मचर्याणि", "ब्रह्मचर्यस्य", "ब्रह्मचर्याय", "", "Brahmacharya the study"]) + let v = native_list_append(v, ["ग्रन्थ", "noun", "ग्रन्थाः", "ग्रन्थस्य", "ग्रन्थाय", "", "tying binding stringing"]) + let v = native_list_append(v, ["पाणिनि", "noun", "पाणिनयः", "पाणिनेः", "पाणिनये", "", "Pāṇini an ancient"]) + let v = native_list_append(v, ["देव", "noun", "दे॒वाः", "दे॒वस्य॑", "दे॒वाय॑", "", "deity god the"]) + let v = native_list_append(v, ["अष्टाध्यायी", "noun", "अष्टाध्यायी", "", "", "", "Literary meaning eight"]) + let v = native_list_append(v, ["भगवान्", "noun", "भगवान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["पण्डित", "noun", "प॒ण्डि॒ताः", "प॒ण्डि॒तस्य॑", "प॒ण्डि॒ताय॑", "", "scholar a learned"]) + let v = native_list_append(v, ["दुःख", "noun", "दुः॒खानि॑", "दुः॒खस्य॑", "दुः॒खाय॑", "", "sorrow distress suffering"]) + let v = native_list_append(v, ["प्रयत्न", "noun", "प्रयत्नाः", "प्रयत्नस्य", "प्रयत्नाय", "", "effort endeavor try"]) + let v = native_list_append(v, ["संस्कार", "noun", "संस्काराः", "संस्कारस्य", "संस्काराय", "", "purification"]) + let v = native_list_append(v, ["स्नेह", "noun", "स्नेहाः॑", "स्नेह॑स्य", "स्नेहा॑य", "", "oiliness unctuousness fattiness"]) + let v = native_list_append(v, ["गुरुत्व", "noun", "गु॒रुत्वा॑नि", "गु॒रुत्व॑स्य", "गु॒रुत्वा॑य", "", "weight"]) + let v = native_list_append(v, ["परत्व", "noun", "परत्व", "", "", "", "remoteness"]) + let v = native_list_append(v, ["अपरत्व", "noun", "अपरत्व", "", "", "", "proximity"]) + let v = native_list_append(v, ["द्रवत्व", "noun", "द्रवत्व", "", "", "", "fluidity"]) + let v = native_list_append(v, ["विभाग", "noun", "विभागाः", "विभागस्य", "विभागाय", "", "disjunction"]) + let v = native_list_append(v, ["संयोग", "noun", "संयोगाः", "संयोगस्य", "संयोगाय", "", "conjunction combination connection"]) + let v = native_list_append(v, ["पृथक्त्व", "noun", "पृथक्त्व", "", "", "", "severalty"]) + let v = native_list_append(v, ["परिमाण", "noun", "परिमाणानि", "परिमाणस्य", "परिमाणाय", "", "measuring meting out"]) + let v = native_list_append(v, ["स्पर्श", "noun", "स्प॒र्शाः", "स्प॒र्शस्य॑", "स्प॒र्शाय॑", "", "touch"]) + let v = native_list_append(v, ["रूप", "noun", "रू॒पाणि॑", "रू॒पस्य॑", "रू॒पाय॑", "", "outward appearance color"]) + let v = native_list_append(v, ["शब्द", "noun", "शब्दाः॑", "शब्द॑स्य", "शब्दा॑य", "", "sound noise voice"]) + let v = native_list_append(v, ["इन", "noun", "इ॒नाः", "इ॒नस्य॑", "इ॒नाय॑", "", "a lord master"]) + let v = native_list_append(v, ["से", "noun", "से", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["वे", "noun", "वे", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["य", "noun", "याः", "यस्य", "याय", "", "bacchius"]) + let v = native_list_append(v, ["सोमवार", "noun", "सोमवाराः", "सोमवारस्य", "सोमवाराय", "", "Monday"]) + let v = native_list_append(v, ["दूत", "noun", "दू॒ताः", "दू॒तस्य॑", "दू॒ताय॑", "", "messenger envoy"]) + let v = native_list_append(v, ["आवास", "noun", "आवासाः", "आवासस्य", "आवासाय", "", "abode"]) + let v = native_list_append(v, ["स", "noun", "स", "", "", "", "an anapest"]) + let v = native_list_append(v, ["ह", "noun", "हाः", "हस्य", "हाय", "", "a form of"]) + let v = native_list_append(v, ["संस्कृतम्", "noun", "संस्कृतम्", "", "", "", "neuter singular nominative"]) + let v = native_list_append(v, ["अद्वैत", "noun", "अद्वै॑तानि", "अद्वै॑तस्य", "अद्वै॑ताय", "", "non-duality"]) + let v = native_list_append(v, ["भूगोल", "noun", "भूगोलाः", "भूगोलस्य", "भूगोलाय", "", "the globe Earth"]) + let v = native_list_append(v, ["सौभाग्य", "noun", "सौभाग्यानि", "सौभाग्यस्य", "सौभाग्याय", "", "welfare good luck"]) + let v = native_list_append(v, ["इस्लाम", "noun", "इस्लामाः", "इस्लामस्य", "इस्लामाय", "", "Islam"]) + let v = native_list_append(v, ["मूत", "noun", "मूताः", "मूतस्य", "मूताय", "", "a woven basket"]) + let v = native_list_append(v, ["मूत्र", "noun", "मूत्रा॑णि", "मूत्र॑स्य", "मूत्रा॑य", "", "urine"]) + let v = native_list_append(v, ["ताली", "noun", "ताल्यः", "ताल्याः", "ताल्यै", "", "name of several"]) + let v = native_list_append(v, ["ताला", "noun", "ताला", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["तुला", "noun", "तु॒लाः", "तु॒लायाः॑", "तु॒लायै॑", "", "balance scales"]) + let v = native_list_append(v, ["नाभि", "noun", "नाभ॑यः", "नाभेः॑", "नाभ॑ये", "", "navel belly button"]) + let v = native_list_append(v, ["डकार", "noun", "डकाराः", "डकारस्य", "डकाराय", "", "the letter ड"]) + let v = native_list_append(v, ["दीप", "noun", "दीपाः", "दीपस्य", "दीपाय", "", "a lamp light"]) + let v = native_list_append(v, ["दीपिका", "noun", "दीपिकाः", "दीपिकायाः", "दीपिकायै", "", "light lamp lantern"]) + let v = native_list_append(v, ["पुरुष", "noun", "पुरु॑षाः", "पुरु॑षस्य", "पुरु॑षाय", "", "man male human"]) + let v = native_list_append(v, ["स्त्री", "noun", "स्त्रियः॑", "स्त्रि॒याः", "स्त्रि॒यै", "", "a woman female"]) + let v = native_list_append(v, ["पशु", "noun", "प॒शवः॑", "प॒शोः", "प॒शवे॑", "", "cattle kine"]) + let v = native_list_append(v, ["खनिज", "noun", "खनिज", "", "", "", "gold or silver"]) + let v = native_list_append(v, ["मनुष्य", "noun", "म॒नु॒ष्याः॑", "म॒नु॒ष्य॑स्य", "म॒नु॒ष्या॑य", "", "human human being"]) + let v = native_list_append(v, ["मस्तिष्क", "noun", "म॒स्तिष्काः॑", "म॒स्तिष्क॑स्य", "म॒स्तिष्का॑य", "", "brain"]) + let v = native_list_append(v, ["शरीर", "noun", "शरी॑राणि", "शरी॑रस्य", "शरी॑राय", "", "body"]) + let v = native_list_append(v, ["तन", "noun", "तना॑नि", "तन॑स्य", "तना॑य", "", "offspring posterity"]) + let v = native_list_append(v, ["आत्मा", "noun", "आत्मा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["इच्छा", "noun", "इच्छाः", "इच्छायाः", "इच्छायै", "", "wish desire inclination"]) + let v = native_list_append(v, ["सत्य", "noun", "स॒त्यानि॑", "स॒त्यस्य॑", "स॒त्याय॑", "", "truth"]) + let v = native_list_append(v, ["असत्य", "noun", "असत्यानि", "असत्यस्य", "असत्याय", "", "lie"]) + let v = native_list_append(v, ["चेतना", "noun", "चेतनाः", "चेतनायाः", "चेतनायै", "", "consciousness understanding sense"]) + let v = native_list_append(v, ["माता", "noun", "माता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पति", "noun", "पत॑यः", "पत्युः॑", "पत्ये॑", "", "husband"]) + let v = native_list_append(v, ["पत्नी", "noun", "पत्न्यः॑", "पत्न्याः॑", "पत्न्यै॑", "", "wife"]) + let v = native_list_append(v, ["साहित्य", "noun", "साहित्यानि", "साहित्यस्य", "साहित्याय", "", "association connection society"]) + let v = native_list_append(v, ["रोटी", "noun", "रोट्यः", "रोट्याः", "रोट्यै", "", "synonym of रोटिका"]) + let v = native_list_append(v, ["खाद्य", "noun", "खाद्यानि", "खाद्यस्य", "खाद्याय", "", "food victuals MBh."]) + let v = native_list_append(v, ["एशिया", "noun", "एशिया", "", "", "", "Asia the largest"]) + let v = native_list_append(v, ["यूरोप", "noun", "यूरोप", "", "", "", "Europe a continent"]) + let v = native_list_append(v, ["नदी", "noun", "न॒द्यः॑", "न॒द्यः॑", "न॒द्ये॑", "", "flowing water river"]) + let v = native_list_append(v, ["पर्वत", "noun", "पर्व॑ताः", "पर्व॑तस्य", "पर्व॑ताय", "", "mountain mountain range"]) + let v = native_list_append(v, ["इतिहास", "noun", "इ॒ति॒हा॒साः", "इ॒ति॒हा॒सस्य॑", "इ॒ति॒हा॒साय॑", "", "legend tradition traditional"]) + let v = native_list_append(v, ["युग", "noun", "यु॒गानि॑", "यु॒गस्य॑", "यु॒गाय॑", "", "yoke"]) + let v = native_list_append(v, ["राजनीति", "noun", "राजनीतयः", "राजनीतेः", "राजनीतये", "", "politics"]) + let v = native_list_append(v, ["गणित", "noun", "गणितानि", "गणितस्य", "गणिताय", "", "mathematics"]) + let v = native_list_append(v, ["बुधवार", "noun", "बुधवाराः", "बुधवारस्य", "बुधवाराय", "", "Wednesday"]) + let v = native_list_append(v, ["शुक्रवार", "noun", "शुक्रवाराः", "शुक्रवारस्य", "शुक्रवाराय", "", "Friday"]) + let v = native_list_append(v, ["रविवार", "noun", "रविवाराः", "रविवारस्य", "रविवाराय", "", "Sunday"]) + let v = native_list_append(v, ["चार", "noun", "चाराः", "चारस्य", "चाराय", "", "going motion progression"]) + let v = native_list_append(v, ["सात", "noun", "सा॒तानि॑", "सा॒तस्य॑", "सा॒ताय॑", "", "a gift wealth"]) + let v = native_list_append(v, ["नौ", "noun", "नावः॑", "ना॒वः", "ना॒वे", "", "ship boat"]) + let v = native_list_append(v, ["विशेषण", "noun", "विशेषणानि", "विशेषणस्य", "विशेषणाय", "", "the act of"]) + let v = native_list_append(v, ["धर्म", "noun", "धर्माः॑", "धर्म॑स्य", "धर्मा॑य", "", "that which is"]) + let v = native_list_append(v, ["दण्ड", "noun", "द॒ण्डाः", "द॒ण्डस्य॑", "द॒ण्डाय॑", "", "stick staff rod"]) + let v = native_list_append(v, ["व्यापार", "noun", "व्यापाराः", "व्यापारस्य", "व्यापाराय", "", "occupation employment business"]) + let v = native_list_append(v, ["शिक्षक", "noun", "शिक्षकाः", "शिक्षकस्य", "शिक्षकाय", "", "teacher instructor"]) + let v = native_list_append(v, ["आचार्य", "noun", "आ॒चा॒र्याः॑", "आ॒चा॒र्य॑स्य", "आ॒चा॒र्या॑य", "", "‘knowing or teaching"]) + let v = native_list_append(v, ["कवि", "noun", "क॒वयः॑", "क॒वेः", "क॒वये॑", "", "wise man sage"]) + let v = native_list_append(v, ["लेखक", "noun", "लेखकाः", "लेखकस्य", "लेखकाय", "", "writer"]) + let v = native_list_append(v, ["चिकित्सक", "noun", "चिकित्सकाः", "चिकित्सकस्य", "चिकित्सकाय", "", "doctor physician"]) + let v = native_list_append(v, ["ज्योतिष", "noun", "ज्योति॑षाः", "ज्योति॑षस्य", "ज्योति॑षाय", "", "an astronomer"]) + let v = native_list_append(v, ["कृषि", "noun", "कृषयः", "कृषेः", "कृषये", "", "agriculture farming"]) + let v = native_list_append(v, ["युद्ध", "noun", "यु॒द्धानि॑", "यु॒द्धस्य॑", "यु॒द्धाय॑", "", "battle fight war"]) + let v = native_list_append(v, ["कला", "noun", "क॒लाः", "क॒लायाः॑", "क॒लायै॑", "", "a small part"]) + let v = native_list_append(v, ["संगीत", "noun", "संगीतानि", "संगीतस्य", "संगीताय", "", "choral song chorus"]) + let v = native_list_append(v, ["परमाणु", "noun", "परमाणवः", "परमाणोः", "परमाणवे", "", "atom an infinitesimal"]) + let v = native_list_append(v, ["गति", "noun", "गत॑यः", "गतेः॑", "गत॑ये", "", "going moving gait"]) + let v = native_list_append(v, ["वेग", "noun", "वेगाः", "वेगस्य", "वेगाय", "", "speed velocity rapidity"]) + let v = native_list_append(v, ["समय", "noun", "स॒म॒याः", "स॒म॒यस्य॑", "स॒म॒याय॑", "", "coming together meeting"]) + let v = native_list_append(v, ["बल", "noun", "बला॑नि", "बल॑स्य", "बला॑य", "", "power strength might"]) + let v = native_list_append(v, ["ऊर्जा", "noun", "ऊर्जा", "", "", "", "vigor"]) + let v = native_list_append(v, ["द्रव", "noun", "द्रवाः", "द्रवस्य", "द्रवाय", "", "going quick motion"]) + let v = native_list_append(v, ["द्रव्य", "noun", "द्रव्याणि", "द्रव्यस्य", "द्रव्याय", "", "lac gum resin"]) + let v = native_list_append(v, ["गुरुत्वाकर्षण", "noun", "गुरुत्वाकर्षणाः", "गुरुत्वाकर्षणस्य", "गुरुत्वाकर्षणाय", "", "gravity"]) + let v = native_list_append(v, ["विज्ञान", "noun", "वि॒ज्ञाना॑नि", "वि॒ज्ञान॑स्य", "वि॒ज्ञाना॑य", "", "the act of"]) + let v = native_list_append(v, ["कीट", "noun", "की॒टाः", "की॒टस्य॑", "की॒टाय॑", "", "a worm insect"]) + let v = native_list_append(v, ["सर्प", "noun", "स॒र्पाः", "स॒र्पस्य॑", "स॒र्पाय॑", "", "a snake serpent"]) + let v = native_list_append(v, ["पृथ्वी", "noun", "पृ॒थ्व्यः॑", "पृ॒थ्व्याः", "पृ॒थ्व्यै", "", "alternative form of"]) + let v = native_list_append(v, ["बुध", "noun", "बुधाः", "बुधस्य", "बुधाय", "", "Mercury planet"]) + let v = native_list_append(v, ["शुक्र", "noun", "शु॒क्राः", "शु॒क्रस्य॑", "शु॒क्राय॑", "", "name of Agni"]) + let v = native_list_append(v, ["गुरु", "noun", "गु॒रवः॑", "गु॒रोः", "गु॒रवे॑", "", "guru"]) + let v = native_list_append(v, ["शनि", "noun", "शनि", "शनेः", "शनये", "", "Saturn"]) + let v = native_list_append(v, ["अन्तरिक्ष", "noun", "अ॒न्तरि॑क्षाणि", "अ॒न्तरि॑क्षस्य", "अ॒न्तरि॑क्षाय", "", "the midspace between"]) + let v = native_list_append(v, ["ब्रह्माण्ड", "noun", "ब्रह्माण्डानि", "ब्रह्माण्डस्य", "ब्रह्माण्डाय", "", "Lord Brahmas egg"]) + let v = native_list_append(v, ["हीरा", "noun", "हीराः", "हीरायाः", "हीरायै", "", "an ant"]) + let v = native_list_append(v, ["पीतल", "noun", "पीतलाः", "पीतलस्य", "पीतलाय", "", "yellow color"]) + let v = native_list_append(v, ["हिम", "noun", "हि॒माः", "हि॒मस्य॑", "हि॒माय॑", "", "cold frost"]) + let v = native_list_append(v, ["लेखन", "noun", "लेखनानि", "लेखनस्य", "लेखनाय", "", "writing"]) + let v = native_list_append(v, ["पाल", "noun", "पालाः", "पालस्य", "पालाय", "", "guard protector keeper"]) + let v = native_list_append(v, ["चक्र", "noun", "च॒क्राणि॑", "च॒क्रस्य॑", "च॒क्राय॑", "", "a wheel of"]) + let v = native_list_append(v, ["पुल", "noun", "पुलाः", "पुलस्य", "पुलाय", "", "horripilation"]) + let v = native_list_append(v, ["चक्रवात", "noun", "चक्रवाताः", "चक्रवातस्य", "चक्रवाताय", "", "cyclone"]) + let v = native_list_append(v, ["सिंह", "noun", "सिं॒हाः", "सिं॒हस्य॑", "सिं॒हाय॑", "", "lion"]) + let v = native_list_append(v, ["गरुड", "noun", "गरुड", "ग॒रु॒डस्य॑", "ग॒रु॒डाय॑", "", "garuda a large"]) + let v = native_list_append(v, ["अणु", "noun", "अण॑वः", "अणोः॑", "अण॑वे", "", "atom of matter"]) + let v = native_list_append(v, ["अम्ल", "noun", "अम्लाः", "अम्लस्य", "अम्लाय", "", "acidity vinegar wood"]) + let v = native_list_append(v, ["क्षार", "noun", "क्षार", "", "", "", "Corrosive caustic acid"]) + let v = native_list_append(v, ["दूरदर्शन", "noun", "दू॒र॒दर्श॑नाः", "दू॒र॒दर्श॑नस्य", "दू॒र॒दर्श॑नाय", "", "vulture literally “far-seeing"]) + let v = native_list_append(v, ["दूरभाष", "noun", "दूरभाषाः", "दूरभाषस्य", "दूरभाषाय", "", "telephone"]) + let v = native_list_append(v, ["संगणक", "noun", "संगणकाः", "संगणकस्य", "संगणकाय", "", "computer"]) + let v = native_list_append(v, ["संख्या", "noun", "संख्याः", "संख्यायाः", "संख्यायै", "", "a number sum"]) + let v = native_list_append(v, ["चल", "noun", "चलाः", "चलस्य", "चलाय", "", "agitation shaking"]) + let v = native_list_append(v, ["गण", "noun", "ग॒णाः", "ग॒णस्य॑", "ग॒णाय॑", "", "a flock troop"]) + let v = native_list_append(v, ["हृदय", "noun", "हृद॑यानि", "हृद॑यस्य", "हृद॑याय", "", "the heart"]) + let v = native_list_append(v, ["योनि", "noun", "योन॑यः", "योनेः॑", "योन॑ये", "", "the womb uterus"]) + let v = native_list_append(v, ["शिश्न", "noun", "शि॒श्नाः", "शि॒श्नस्य॑", "शि॒श्नाय॑", "", "phallus penis"]) + let v = native_list_append(v, ["पेट", "noun", "पेटाः", "पेटस्य", "पेटाय", "", "a basket bag"]) + let v = native_list_append(v, ["स्तन", "noun", "स्तनाः॑", "स्तन॑स्य", "स्तना॑य", "", "the female breast"]) + let v = native_list_append(v, ["मस्तक", "noun", "मस्तकाः", "मस्तकस्य", "मस्तकाय", "", "the head skull"]) + let v = native_list_append(v, ["गर्भावस्था", "noun", "गर्भावस्था", "", "", "", ""]) + let v = native_list_append(v, ["टीका", "noun", "टीकाः", "टीकायाः", "टीकायै", "", "a commentary esp."]) + let v = native_list_append(v, ["अंश", "noun", "अंशाः॑", "अंश॑स्य", "अंशा॑य", "", "a share portion"]) + let v = native_list_append(v, ["धीरे", "noun", "धीरे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["दूर", "noun", "दू॒राणि॑", "दू॒रस्य॑", "दू॒राय॑", "", "distance remoteness"]) + let v = native_list_append(v, ["विशाल", "noun", "वि॒शा॒लाः", "वि॒शा॒लस्य॑", "वि॒शा॒लाय॑", "", "a kind of"]) + let v = native_list_append(v, ["शीघ्र", "noun", "शीघ्राः", "शीघ्रस्य", "शीघ्राय", "", "m a name"]) + let v = native_list_append(v, ["युवा", "noun", "युवा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["काम", "noun", "कामाः॑", "काम॑स्य", "कामा॑य", "", "wish desire longing"]) + let v = native_list_append(v, ["अकाल", "noun", "अकालाः", "अकालस्य", "अकालाय", "", "a wrong or"]) + let v = native_list_append(v, ["क्रिया", "noun", "क्रि॒याः", "क्रि॒यायाः॑", "क्रि॒यायै॑", "", "doing performing performance"]) + let v = native_list_append(v, ["गुरू", "noun", "गुरू", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["रस", "noun", "रसाः॑", "रस॑स्य", "रसा॑य", "", "the sap or"]) + let v = native_list_append(v, ["गन्ध", "noun", "ग॒न्धाः", "ग॒न्धस्य॑", "ग॒न्धाय॑", "", "odour smell fragrance"]) + let v = native_list_append(v, ["अन्तर", "noun", "अन्त॑राणि", "अन्त॑रस्य", "अन्त॑राय", "", "the interior"]) + let v = native_list_append(v, ["आचार", "noun", "आचाराः", "आचारस्य", "आचाराय", "", "conduct manner of"]) + let v = native_list_append(v, ["अधिकार", "noun", "अधिकाराः", "अधिकारस्य", "अधिकाराय", "", "authority"]) + let v = native_list_append(v, ["अधिकारी", "noun", "अधिकारी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["अर्थ", "noun", "अर्थाः॑", "अर्थ॑स्य", "अर्था॑य", "", "aim purpose meaning"]) + let v = native_list_append(v, ["अवकाश", "noun", "अवकाशाः", "अवकाशस्य", "अवकाशाय", "", "space room"]) + let v = native_list_append(v, ["आज", "noun", "आजाः", "आजस्य", "आजाय", "", "a vulture"]) + let v = native_list_append(v, ["आदर", "noun", "आदर", "", "", "", "regard respect"]) + let v = native_list_append(v, ["आनन्द", "noun", "आ॒न॒न्दाः", "आ॒न॒न्दस्य॑", "आ॒न॒न्दाय॑", "", "happiness joy enjoyment"]) + let v = native_list_append(v, ["आयु", "noun", "आय॑वः", "आयोः॑", "आय॑वे", "", "man a living"]) + let v = native_list_append(v, ["आवश्यकता", "noun", "आवश्यकताः", "आवश्यकतायाः", "आवश्यकतायै", "", "necessity inevitability"]) + let v = native_list_append(v, ["अक्षर", "noun", "अ॒क्षरा॑णि", "अ॒क्षर॑स्य", "अ॒क्षरा॑य", "", "syllable"]) + let v = native_list_append(v, ["अधिक", "noun", "अधिकानि", "अधिकस्य", "अधिकाय", "", "excess surplus"]) + let v = native_list_append(v, ["आरम्भ", "noun", "आ॒र॒म्भाः", "आ॒र॒म्भस्य॑", "आ॒र॒म्भाय॑", "", "beginning commencement undertaking"]) + let v = native_list_append(v, ["आशा", "noun", "आ॒शाः", "आ॒शायाः॑", "आ॒शायै॑", "", "hope expectation"]) + let v = native_list_append(v, ["आश्चर्य", "noun", "आश्चर्याणि", "आश्चर्यस्य", "आश्चर्याय", "", "strange appearance"]) + let v = native_list_append(v, ["ईर्षा", "noun", "ईर्षाः", "ईर्षायाः", "ईर्षायै", "", "envy or impatience"]) + let v = native_list_append(v, ["उत्तर", "noun", "उत्त॑राणि", "उत्त॑रस्य", "उत्त॑राय", "", "subsequent speech an"]) + let v = native_list_append(v, ["गुरुवार", "noun", "गुरुवाराः", "गुरुवारस्य", "गुरुवाराय", "", "Thursday"]) + let v = native_list_append(v, ["दिन", "noun", "दिनाः॑", "दिन॑स्य", "दिना॑य", "", "day"]) + let v = native_list_append(v, ["चोर", "noun", "चो॒राः", "चो॒रस्य॑", "चो॒राय॑", "", "thief robber"]) + let v = native_list_append(v, ["गंगा", "noun", "गंगाः॑", "गंगा॑याः", "गंगा॑यै", "", "alternative spelling of"]) + let v = native_list_append(v, ["गर्भ", "noun", "गर्भाः॑", "गर्भ॑स्य", "गर्भा॑य", "", "the womb"]) + let v = native_list_append(v, ["गीत", "noun", "गी॒तानि॑", "गी॒तस्य॑", "गी॒ताय॑", "", "singing song"]) + let v = native_list_append(v, ["गीता", "noun", "गी॒ताः", "गी॒तायाः॑", "गी॒तायै॑", "", "a song sacred"]) + let v = native_list_append(v, ["ग्रीष्म", "noun", "ग्री॒ष्माः", "ग्री॒ष्मस्य॑", "ग्री॒ष्माय॑", "", "summer the hot"]) + let v = native_list_append(v, ["गान", "noun", "गानानि", "गानस्य", "गानाय", "", "song singing"]) + let v = native_list_append(v, ["घण्टा", "noun", "घण्टाः", "घण्टायाः", "घण्टायै", "", "a bell"]) + let v = native_list_append(v, ["घास", "noun", "घा॒साः", "घा॒सस्य॑", "घा॒साय॑", "", "food meadow or"]) + let v = native_list_append(v, ["ललाट", "noun", "ल॒लाटा॑नि", "ल॒लाट॑स्य", "ल॒लाटा॑य", "", "forehead brow"]) + let v = native_list_append(v, ["केश", "noun", "केशाः॑", "केश॑स्य", "केशा॑य", "", "hair of the"]) + let v = native_list_append(v, ["बाल", "noun", "बा॒लाः", "बा॒लस्य॑", "बा॒लाय॑", "", "boy child"]) + let v = native_list_append(v, ["पुस्तक", "noun", "पुस्तकानि", "पुस्तकस्य", "पुस्तकाय", "", "a protuberant ornament"]) + let v = native_list_append(v, ["मित्र", "noun", "मि॒त्राः", "मि॒त्रस्य॑", "मि॒त्राय॑", "", "a friend companion"]) + let v = native_list_append(v, ["कष्ट", "noun", "कष्टाः", "कष्टस्य", "कष्टाय", "", "evil difficulty trouble"]) + let v = native_list_append(v, ["स्वप्न", "noun", "स्वप्नाः॑", "स्वप्न॑स्य", "स्वप्ना॑य", "", "sleep sleeping"]) + let v = native_list_append(v, ["उदास", "noun", "उदास", "", "", "", "apathy stoicism indifference"]) + let v = native_list_append(v, ["पुत्री", "noun", "पुत्र्यः", "पुत्र्याः", "पुत्र्यै", "", "daughter"]) + let v = native_list_append(v, ["शक्ति", "noun", "शक्त॑यः", "शक्तेः॑", "शक्त॑ये", "", "strength power might"]) + let v = native_list_append(v, ["खेलना", "noun", "खेलनाः", "खेलनायाः", "खेलनायै", "", "alternative spelling of"]) + let v = native_list_append(v, ["खेद", "noun", "खेदाः", "खेदस्य", "खेदाय", "", "lassitude depression"]) + let v = native_list_append(v, ["ऋतु", "noun", "ऋ॒तवः॑", "ऋ॒तोः", "ऋ॒तवे॑", "", "any settled point"]) + let v = native_list_append(v, ["मनस्", "noun", "मनां॑सि", "मन॑सः", "मन॑से", "", "mind in its"]) + let v = native_list_append(v, ["जगन्नाथ", "noun", "ज॒ग॒न्ना॒थाः", "ज॒ग॒न्ना॒थस्य॑", "ज॒ग॒न्ना॒थाय॑", "", "Jagannath one of"]) + let v = native_list_append(v, ["जगत्", "noun", "जग॑न्ति", "जग॑तः", "जग॑ते", "", "that which moves"]) + let v = native_list_append(v, ["नाथ", "noun", "ना॒थानि॑", "ना॒थस्य॑", "ना॒थाय॑", "", "refuge help resort"]) + let v = native_list_append(v, ["चन्द्र", "noun", "च॒न्द्राः", "च॒न्द्रस्य॑", "च॒न्द्राय॑", "", "the moon also"]) + let v = native_list_append(v, ["मठ", "noun", "मठाः", "मठस्य", "मठाय", "", "monastery"]) + let v = native_list_append(v, ["मेध", "noun", "मेधाः॑", "मेध॑स्य", "मेधा॑य", "", "juice of meat"]) + let v = native_list_append(v, ["अमृता", "noun", "अ॒मृताः॑", "अ॒मृता॑याः", "अ॒मृता॑यै", "", "goddess"]) + let v = native_list_append(v, ["वर्ष", "noun", "व॒र्षाणि॑", "व॒र्षस्य॑", "व॒र्षाय॑", "", "rain raining a"]) + let v = native_list_append(v, ["अश्वमेध", "noun", "अ॒श्व॒मे॒धाः", "अ॒श्व॒मे॒धस्य॑", "अ॒श्व॒मे॒धाय॑", "", "horse sacrifice the"]) + let v = native_list_append(v, ["आज्ञा", "noun", "आज्ञाः", "आज्ञायाः", "आज्ञायै", "", "order command Mn."]) + let v = native_list_append(v, ["अज्ञान", "noun", "अज्ञान", "", "", "", "ignorance illusion incognizance"]) + let v = native_list_append(v, ["उदर", "noun", "उ॒दरा॑णि", "उ॒दर॑स्य", "उ॒दरा॑य", "", "the belly abdomen"]) + let v = native_list_append(v, ["अरविन्द", "noun", "अरविन्द", "", "", "", "lotus"]) + let v = native_list_append(v, ["पागल", "noun", "पागलाः", "पागलस्य", "पागलाय", "", "a particular mixed"]) + let v = native_list_append(v, ["मन्त्रिन्", "noun", "म॒न्त्रिणः॑", "म॒न्त्रिणः॑", "म॒न्त्रिणे॑", "", "a minister councilor"]) + let v = native_list_append(v, ["कन्या", "noun", "क॒न्याः॑", "क॒न्या॑याः", "क॒न्या॑यै", "", "maiden virgin unmarried"]) + let v = native_list_append(v, ["धृतराष्ट्र", "noun", "धृतराष्ट्राः", "धृतराष्ट्रस्य", "धृतराष्ट्राय", "", "King of Hastinapura"]) + let v = native_list_append(v, ["अल्लाह", "noun", "अल्लाहाः", "अल्लाहस्य", "अल्लाहाय", "", "God"]) + let v = native_list_append(v, ["जङ्गल", "noun", "जङ्गलानि", "जङ्गलस्य", "जङ्गलाय", "", "any arid or"]) + let v = native_list_append(v, ["हल", "noun", "हलाः", "हलस्य", "हलाय", "", "plough"]) + let v = native_list_append(v, ["बुलबुल", "noun", "बुलबुलाः", "बुलबुलस्य", "बुलबुलाय", "", "nightingale bulbul"]) + let v = native_list_append(v, ["कार", "noun", "का॒राः", "का॒रस्य॑", "का॒राय॑", "", "gain prize booty"]) + let v = native_list_append(v, ["मृग", "noun", "मृ॒गाः", "मृ॒गस्य॑", "मृ॒गाय॑", "", "a forest animal"]) + let v = native_list_append(v, ["शाल", "noun", "शा॒लाः", "शा॒लस्य॑", "शा॒लाय॑", "", "Shorea robusta or"]) + let v = native_list_append(v, ["किशोर", "noun", "किशोराः", "किशोरस्य", "किशोराय", "", "boy"]) + let v = native_list_append(v, ["किशोरी", "noun", "किशोरी", "", "", "", "girl"]) + let v = native_list_append(v, ["क्षौरी", "noun", "क्षौर्यः", "क्षौर्याः", "क्षौर्यै", "", "razor"]) + let v = native_list_append(v, ["क्षौर", "noun", "क्षौराः", "क्षौरस्य", "क्षौराय", "", "shaving"]) + let v = native_list_append(v, ["मित्रा", "noun", "मित्रा", "", "", "", "masculine nominative/vocative/accusative dual"]) + let v = native_list_append(v, ["राग", "noun", "रागाः", "रागस्य", "रागाय", "", "dye colour especially"]) + let v = native_list_append(v, ["अवतार", "noun", "अव॑ताराः", "अव॑तारस्य", "अव॑ताराय", "", "avatar descent especially"]) + let v = native_list_append(v, ["मेष", "noun", "मे॒षाः", "मे॒षस्य॑", "मे॒षाय॑", "", "ram sheep"]) + let v = native_list_append(v, ["वलय", "noun", "वलयाः", "वलयस्य", "वलयाय", "", "a bracelet armlet"]) + let v = native_list_append(v, ["उमा", "noun", "उमा", "", "", "", "flax Linum usitatissimum"]) + let v = native_list_append(v, ["घर्म", "noun", "घ॒र्माः", "घ॒र्मस्य॑", "घ॒र्माय॑", "", "heat warmth"]) + let v = native_list_append(v, ["परशु", "noun", "प॒र॒शवः॑", "प॒र॒शोः", "प॒र॒शवे॑", "", "a hatchet an"]) + let v = native_list_append(v, ["परुष", "noun", "परुषाः", "परुषस्य", "परुषाय", "", "a reed"]) + let v = native_list_append(v, ["आलु", "noun", "आलवः", "आलोः", "आलवे", "", "a pitcher a"]) + let v = native_list_append(v, ["इन्द्र", "noun", "इन्द्राः॑", "इन्द्र॑स्य", "इन्द्रा॑य", "", "Indra"]) + let v = native_list_append(v, ["राज", "noun", "राज", "", "", "", "combining form of"]) + let v = native_list_append(v, ["माया", "noun", "मा॒याः", "मा॒यायाः॑", "मा॒यायै॑", "", "art wisdom inhuman"]) + let v = native_list_append(v, ["मर्दन", "noun", "मर्दनानि", "मर्दनस्य", "मर्दनाय", "", "the act of"]) + let v = native_list_append(v, ["गौर", "noun", "गौ॒राः", "गौ॒रस्य॑", "गौ॒राय॑", "", "white yellowish the"]) + let v = native_list_append(v, ["तारा", "noun", "ताराः॑", "तारा॑याः", "तारा॑यै", "", "star asterism"]) + let v = native_list_append(v, ["साय", "noun", "सायानि", "सायस्य", "सायाय", "", "end"]) + let v = native_list_append(v, ["कालचक्र", "noun", "कालचक्रानि", "कालचक्रस्य", "कालचक्राय", "", "wheel of time"]) + let v = native_list_append(v, ["माल", "noun", "मालानि", "मालस्य", "मालाय", "", "a forest or"]) + let v = native_list_append(v, ["चाप", "noun", "चापाः", "चापस्य", "चापाय", "", "bow"]) + let v = native_list_append(v, ["दम", "noun", "दमाः॑", "दम॑स्य", "दमा॑य", "", "house"]) + let v = native_list_append(v, ["คุณ", "noun", "คุณ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["अभिनय", "noun", "अभिनयाः", "अभिनयस्य", "अभिनयाय", "", "acting indication of"]) + let v = native_list_append(v, ["सप्ताह", "noun", "सप्ताहाः", "सप्ताहस्य", "सप्ताहाय", "", "a period of"]) + let v = native_list_append(v, ["कुल", "noun", "कुला॑नि", "कुल॑स्य", "कुला॑य", "", "family"]) + let v = native_list_append(v, ["मधु", "noun", "मधू॑नि", "मधु॑नः", "मधु॑ने", "", "honey"]) + let v = native_list_append(v, ["स्वागम", "noun", "स्वागमाः", "स्वागमस्य", "स्वागमाय", "", "salutation"]) + let v = native_list_append(v, ["सृष्टि", "noun", "सृष्ट॑यः", "सृष्टेः॑", "सृष्ट॑ये", "", "emission distribution"]) + let v = native_list_append(v, ["भ्राता", "noun", "भ्राता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["मानस", "noun", "मानसानि", "मानसस्य", "मानसाय", "", "the mental powers"]) + let v = native_list_append(v, ["गुल", "noun", "गुलाः", "गुलस्य", "गुलाय", "", "raw or unrefined"]) + let v = native_list_append(v, ["पत्र", "noun", "पत्र", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["जापान", "noun", "जापान", "जापानस्य", "जापानाय", "", "Japan a country"]) + let v = native_list_append(v, ["प्रभात", "noun", "प्र॒भा॒तानि॑", "प्र॒भा॒तस्य॑", "प्र॒भा॒ताय॑", "", "daybreak dawn morning"]) + let v = native_list_append(v, ["पद्म", "noun", "पद्माः", "पद्मस्य", "पद्माय", "", "lotus"]) + let v = native_list_append(v, ["पद", "noun", "प॒दानि॑", "प॒दस्य॑", "प॒दाय॑", "", "step pace stride"]) + let v = native_list_append(v, ["नारायण", "noun", "ना॒रा॒य॒णाः", "ना॒रा॒य॒णस्य॑", "ना॒रा॒य॒णाय॑", "", "the son of"]) + let v = native_list_append(v, ["काम्बोज", "noun", "काम्बोजाः", "काम्बोजस्य", "काम्बोजाय", "", "a native of"]) + let v = native_list_append(v, ["पलाण्डु", "noun", "पलाण्डवः", "पलाण्डोः", "पलाण्डवे", "", "onion"]) + let v = native_list_append(v, ["नाक", "noun", "नाकाः॑", "नाक॑स्य", "नाका॑य", "", "heaven firmament"]) + let v = native_list_append(v, ["चुम्बन", "noun", "चुम्बनानि", "चुम्बनस्य", "चुम्बनाय", "", "the act of"]) + let v = native_list_append(v, ["गिरी", "noun", "गिरी", "", "", "", "nominative/accusative dual of"]) + let v = native_list_append(v, ["भय", "noun", "भ॒यानि॑", "भ॒यस्य॑", "भ॒याय॑", "", "fear alarm dread"]) + let v = native_list_append(v, ["भोजन", "noun", "भोज॑नानि", "भोज॑नस्य", "भोज॑नाय", "", "the act of"]) + let v = native_list_append(v, ["नक्ति", "noun", "नक्त॑यः", "नक्तेः॑", "नक्त॑ये", "", "night"]) + let v = native_list_append(v, ["स्वसृ", "noun", "स्वसा॑रः", "स्वसुः॑", "स्वस्रे॑", "", "a sister"]) + let v = native_list_append(v, ["चर्मन्", "noun", "चर्मा॑णि", "चर्म॑णः", "चर्म॑णे", "", "skin"]) + let v = native_list_append(v, ["भर्ग", "noun", "भर्गाः॑", "भर्ग॑स्य", "भर्गा॑य", "", "radiance effulgence splendour"]) + let v = native_list_append(v, ["भ्रू", "noun", "भ्रुवः॑", "भ्रु॒वः", "भ्रु॒वे", "", "eyebrow"]) + let v = native_list_append(v, ["भ्रातृ", "noun", "भ्रात॑रः", "भ्रातुः॑", "भ्रात्रे॑", "", "a brother"]) + let v = native_list_append(v, ["बुध्न", "noun", "बु॒ध्नाः", "बु॒ध्नस्य॑", "बु॒ध्नाय॑", "", "bottom ground base"]) + let v = native_list_append(v, ["पितृ", "noun", "पि॒तरः॑", "पि॒तुः", "पि॒त्रे", "", "a father"]) + let v = native_list_append(v, ["भूर्ज", "noun", "भूर्जाः", "भूर्जस्य", "भूर्जाय", "", "Himalayan birch Betula"]) + let v = native_list_append(v, ["दक्षिण", "noun", "दक्षि॑णाः", "दक्षि॑णस्य", "दक्षि॑णाय", "", "right side"]) + let v = native_list_append(v, ["दीर्घ", "noun", "दी॒र्घाः", "दी॒र्घस्य॑", "दी॒र्घाय॑", "", "long vowel"]) + let v = native_list_append(v, ["जिह्वा", "noun", "जि॒ह्वाः", "जि॒ह्वायाः॑", "जि॒ह्वायै॑", "", "tongue"]) + let v = native_list_append(v, ["दोस्", "noun", "दोंषि", "दोषः", "दोषे", "", "forearm arm"]) + let v = native_list_append(v, ["अश्रु", "noun", "अश्रू॑णि", "अश्रु॑णः", "अश्रु॑णे", "", "tear"]) + let v = native_list_append(v, ["देवर", "noun", "दे॒व॒राः", "दे॒व॒रस्य॑", "दे॒व॒राय॑", "", "womans brother-in-law husbands"]) + let v = native_list_append(v, ["व्रत", "noun", "व्र॒तानि॑", "व्र॒तस्य॑", "व्र॒ताय॑", "", "will"]) + let v = native_list_append(v, ["चित्त", "noun", "चि॒त्तानि॑", "चि॒त्तस्य॑", "चि॒त्ताय॑", "", "thinking"]) + let v = native_list_append(v, ["योग", "noun", "योगाः॑", "योग॑स्य", "योगा॑य", "", "yoga a group"]) + let v = native_list_append(v, ["यन्त्र", "noun", "य॒न्त्राणि॑", "य॒न्त्रस्य॑", "य॒न्त्राय॑", "", "any instrument for"]) + let v = native_list_append(v, ["सूत्र", "noun", "सूत्रा॑णि", "सूत्र॑स्य", "सूत्रा॑य", "", "thread yarn string"]) + let v = native_list_append(v, ["मृत", "noun", "मृतानि", "मृतस्य", "मृताय", "", "death"]) + let v = native_list_append(v, ["आस्य", "noun", "आ॒स्या॑नि", "आ॒स्य॑स्य", "आ॒स्या॑य", "", "mouth jaws"]) + let v = native_list_append(v, ["कान्त", "noun", "कान्ताः", "कान्तस्य", "कान्ताय", "", "any one beloved"]) + let v = native_list_append(v, ["वारि", "noun", "वारी॑णि", "वारि॑णः", "वारि॑णे", "", "water"]) + let v = native_list_append(v, ["जा", "noun", "जाः", "जः", "जे", "", "offspring"]) + let v = native_list_append(v, ["धी", "noun", "धियः॑", "धि॒यः", "धि॒ये", "", "thought especially religious"]) + let v = native_list_append(v, ["भू", "noun", "भुवः॑", "भु॒वः", "भु॒वे", "", "the act of"]) + let v = native_list_append(v, ["दारु", "noun", "दारू॑णि", "दारु॑णः", "दारु॑णे", "", "piece of wood"]) + let v = native_list_append(v, ["जाति", "noun", "जा॒तयः॑", "जा॒तेः", "जा॒तये॑", "", "birth production"]) + let v = native_list_append(v, ["दुहितृ", "noun", "दु॒हि॒तरः॑", "दु॒हि॒तुः", "दु॒हि॒त्रे", "", "daughter"]) + let v = native_list_append(v, ["दातृ", "noun", "दाता॑रः", "दातुः॑", "दात्रे॑", "", "giver donor liberal"]) + let v = native_list_append(v, ["जनि", "noun", "जन॑यः", "जन्यु॑र्", "जन॑ये", "", "woman wife"]) + let v = native_list_append(v, ["गो", "noun", "गावः॑", "गोः", "गवे॑", "", "a cow"]) + let v = native_list_append(v, ["गिरि", "noun", "गि॒रयः॑", "गि॒रेः", "गि॒रये॑", "", "mountain hill elevation"]) + let v = native_list_append(v, ["ग्ना", "noun", "ग्नाः", "ग्नः", "ग्ने", "", "wife"]) + let v = native_list_append(v, ["अर्जुन", "noun", "अर्जु॑नानि", "अर्जु॑नस्य", "अर्जु॑नाय", "", "silver"]) + let v = native_list_append(v, ["अन", "noun", "अ॒नाः", "अ॒नस्य॑", "अ॒नाय॑", "", "breath respiration"]) + let v = native_list_append(v, ["आति", "noun", "आ॒तयः॑", "आ॒तेः", "आ॒तये॑", "", "an aquatic bird"]) + let v = native_list_append(v, ["अङ्क", "noun", "अ॒ङ्काः", "अ॒ङ्कस्य॑", "अ॒ङ्काय॑", "", "hook"]) + let v = native_list_append(v, ["मांस", "noun", "मां॒सानि॑", "मां॒सस्य॑", "मां॒साय॑", "", "flesh meat"]) + let v = native_list_append(v, ["एड", "noun", "एडाः", "एडस्य", "एडाय", "", "a kind of"]) + let v = native_list_append(v, ["अश्मन्", "noun", "अश्मा॑नः", "अश्म॑नः", "अश्म॑ने", "", "a stone a"]) + let v = native_list_append(v, ["शाखा", "noun", "शाखाः॑", "शाखा॑याः", "शाखा॑यै", "", "branch literally and"]) + let v = native_list_append(v, ["शिरस्", "noun", "शिरां॑सि", "शिर॑सः", "शिर॑से", "", "head skull"]) + let v = native_list_append(v, ["शर्वर", "noun", "शर्वर", "", "", "", "darkness L."]) + let v = native_list_append(v, ["शिशिर", "noun", "शिशि॑राः", "शिशि॑रस्य", "शिशि॑राय", "", "cold coolness hoarfrost"]) + let v = native_list_append(v, ["राजन्", "noun", "राजा॑नः", "राज्ञः॑", "राज्ञे॑", "", "a king sovereign"]) + let v = native_list_append(v, ["अविक", "noun", "अविकाः", "अविकस्य", "अविकाय", "", "sheep"]) + let v = native_list_append(v, ["अस्थि", "noun", "अस्थी॑नि", "अस्थि॑नः", "अस्थि॑ने", "", "a bone"]) + let v = native_list_append(v, ["अक्षि", "noun", "अक्षी॑णि", "अक्षि॑णः", "अक्षि॑णे", "", "eye"]) + let v = native_list_append(v, ["नभ्य", "noun", "नभ्या॑नि", "नभ्य॑स्य", "नभ्या॑य", "", "the centre part"]) + let v = native_list_append(v, ["अयस्", "noun", "अयां॑सि", "अय॑सः", "अय॑से", "", "metal copper"]) + let v = native_list_append(v, ["अहर्", "noun", "अह॑रि", "अह॑रः", "अह॑रे", "", "a day"]) + let v = native_list_append(v, ["पक्षी", "noun", "पक्षी", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["द्वार्", "noun", "द्वारः॑", "द्वा॒रः", "द्वा॒रे", "", "gate door entrance"]) + let v = native_list_append(v, ["क्ष", "noun", "क्षाः", "क्षस्य", "क्षाय", "", "field"]) + let v = native_list_append(v, ["हनु", "noun", "हन॑वः", "हनोः॑", "हन॑वे", "", "a jaw"]) + let v = native_list_append(v, ["जानु", "noun", "जानू॑नि", "जानु॑नः", "जानु॑ने", "", "knee"]) + let v = native_list_append(v, ["जम्भ", "noun", "जम्भाः॑", "जम्भ॑स्य", "जम्भा॑य", "", "tooth eyetooth tusk"]) + let v = native_list_append(v, ["हंस", "noun", "हं॒साः", "हं॒सस्य॑", "हं॒साय॑", "", "a goose gander"]) + let v = native_list_append(v, ["हरि", "noun", "हर॑यः", "हरेः॑", "हर॑ये", "", "a horse steed"]) + let v = native_list_append(v, ["हिरण्य", "noun", "हिर॑ण्यानि", "हिर॑ण्यस्य", "हिर॑ण्याय", "", "gold"]) + let v = native_list_append(v, ["हेमन्त", "noun", "हे॒म॒न्ताः", "हे॒म॒न्तस्य॑", "हे॒म॒न्ताय॑", "", "winter the cold"]) + let v = native_list_append(v, ["हस्त", "noun", "हस्ताः॑", "हस्त॑स्य", "हस्ता॑य", "", "the hand"]) + let v = native_list_append(v, ["गञ्ज", "noun", "गञ्ज", "", "", "", "disrespect"]) + let v = native_list_append(v, ["ग्रावन्", "noun", "ग्रावा॑णः", "ग्राव्णः॑", "ग्राव्णे॑", "", "traditional translation a"]) + let v = native_list_append(v, ["घोर", "noun", "घो॒राः", "घो॒रस्य॑", "घो॒राय॑", "", "the terrible Śiva"]) + let v = native_list_append(v, ["घृण", "noun", "घृ॒णाः", "घृ॒णस्य॑", "घृ॒णाय॑", "", "heat ardour sunshine"]) + let v = native_list_append(v, ["ईर्म", "noun", "ई॒र्माः", "ई॒र्मस्य॑", "ई॒र्माय॑", "", "arm"]) + let v = native_list_append(v, ["दत्", "noun", "दन्तः॑", "द॒तः", "द॒ते", "", "a tooth"]) + let v = native_list_append(v, ["अथर्वन्", "noun", "अथ॑र्वाणः", "अथ॑र्वणः", "अथ॑र्वणे", "", "a priest who"]) + let v = native_list_append(v, ["नामन्", "noun", "नामा॑नि", "नाम्नः॑", "नाम्ने॑", "", "name personal name"]) + let v = native_list_append(v, ["आस्", "noun", "आस्", "", "", "", "mouth"]) + let v = native_list_append(v, ["ओष्ठ", "noun", "ओष्ठाः॑", "ओष्ठ॑स्य", "ओष्ठा॑य", "", "lip"]) + let v = native_list_append(v, ["अंस", "noun", "अंसाः॑", "अंस॑स्य", "अंसा॑य", "", "shoulder shoulder-blade"]) + let v = native_list_append(v, ["सवितृ", "noun", "स॒वि॒तारः॑", "स॒वि॒तुः", "स॒वि॒त्रे", "", "The Vivifier the"]) + let v = native_list_append(v, ["असृज्", "noun", "असृ॑ञ्जि", "असृ॑जः", "असृ॑जे", "", "blood"]) + let v = native_list_append(v, ["दृषद्", "noun", "दृषद्", "", "", "", "a rock"]) + let v = native_list_append(v, ["प्रकाश", "noun", "प्रकाशाः", "प्रकाशस्य", "प्रकाशाय", "", "lustre brightness light"]) + let v = native_list_append(v, ["मोह", "noun", "मोहाः॑", "मोह॑स्य", "मोहा॑य", "", "loss of consciousness"]) + let v = native_list_append(v, ["अजा", "noun", "अजाः", "अजायाः", "अजायै", "", "female noun of"]) + let v = native_list_append(v, ["असि", "noun", "अ॒सयः॑", "अ॒सेः", "अ॒सये॑", "", "sword scimitar knife"]) + let v = native_list_append(v, ["वाच्", "noun", "वाच्", "", "", "", "speech voice talk"]) + let v = native_list_append(v, ["अक्ष", "noun", "अक्षाः॑", "अक्ष॑स्य", "अक्षा॑य", "", "axle axis"]) + let v = native_list_append(v, ["एध", "noun", "एधाः॑", "एध॑स्य", "एधा॑य", "", "fuel firewood"]) + let v = native_list_append(v, ["अप्", "noun", "आप॑स्", "अ॒पः", "अ॒पे", "", "water also personified"]) + let v = native_list_append(v, ["युवन", "noun", "युवनाः", "युवनस्य", "युवनाय", "", "the moon"]) + let v = native_list_append(v, ["शङ्ख", "noun", "श॒ङ्खाः", "श॒ङ्खस्य॑", "श॒ङ्खाय॑", "", "a shell especially"]) + let v = native_list_append(v, ["नस", "noun", "नस", "", "", "", "the nose"]) + let v = native_list_append(v, ["क्रविस्", "noun", "क्र॒वींषि॑", "क्र॒विषः॑", "क्र॒विषे॑", "", "raw flesh"]) + let v = native_list_append(v, ["लघु", "noun", "ल॒घवः॑", "ल॒घोः", "ल॒घवे॑", "", "Trigonella corniculata"]) + let v = native_list_append(v, ["उद्र", "noun", "उ॒द्राः", "उ॒द्रस्य॑", "उ॒द्राय॑", "", "an otter"]) + let v = native_list_append(v, ["उदन्", "noun", "उ॒दानि॑", "उ॒द्नः", "उ॒द्ने", "", "water"]) + let v = native_list_append(v, ["मूष्", "noun", "मूष्", "", "", "", "mouse"]) + let v = native_list_append(v, ["धातु", "noun", "धात॑वः", "धातोः॑", "धात॑वे", "", "layer stratum"]) + let v = native_list_append(v, ["पाठ", "noun", "पाठाः", "पाठस्य", "पाठाय", "", "recitation recital"]) + let v = native_list_append(v, ["देवनागरी", "noun", "देवनागर्यः", "देवनागर्याः", "देवनागर्यै", "", "Devanagari"]) + let v = native_list_append(v, ["नगर", "noun", "नग॑राणि", "नग॑रस्य", "नग॑राय", "", "town city"]) + let v = native_list_append(v, ["स्वर", "noun", "स्वराः॑", "स्वर॑स्य", "स्वरा॑य", "", "sound noise"]) + let v = native_list_append(v, ["व्यञ्जन", "noun", "व्यञ्ज॑नानि", "व्यञ्ज॑नस्य", "व्यञ्ज॑नाय", "", "consonant"]) + let v = native_list_append(v, ["ह्रस्व", "noun", "ह्र॒स्वाः", "ह्र॒स्वस्य॑", "ह्र॒स्वाय॑", "", "a dwarf"]) + let v = native_list_append(v, ["नीड", "noun", "नी॒डाः", "नी॒डस्य॑", "नी॒डाय॑", "", "a birds nest"]) + let v = native_list_append(v, ["पसस्", "noun", "पसां॑सि", "पस॑सः", "पस॑से", "", "penis phallus"]) + let v = native_list_append(v, ["यातृ", "noun", "यातरः", "यातुः", "यात्रे", "", "co-sister-in-law husband’s brother’s"]) + let v = native_list_append(v, ["यकृत्", "noun", "यकृत्", "यक्नः", "", "", "the liver"]) + let v = native_list_append(v, ["वृक", "noun", "वृकाः॑", "वृक॑स्य", "वृका॑य", "", "a wolf"]) + let v = native_list_append(v, ["वि", "noun", "वयः॑", "वेः", "वये॑", "", "a bird"]) + let v = native_list_append(v, ["वाज", "noun", "वाजाः॑", "वाज॑स्य", "वाजा॑य", "", "strength vigour energy"]) + let v = native_list_append(v, ["वत्स", "noun", "व॒त्साः", "व॒त्सस्य॑", "व॒त्साय॑", "", "a calf"]) + let v = native_list_append(v, ["उरण", "noun", "उर॑णाः", "उर॑णस्य", "उर॑णाय", "", "a ram"]) + let v = native_list_append(v, ["ऊर्णा", "noun", "ऊर्णाः॑", "ऊर्णा॑याः", "ऊर्णा॑यै", "", "wool a woollen"]) + let v = native_list_append(v, ["भीति", "noun", "भीतयः", "भीतेः", "भीतये", "", "fear"]) + let v = native_list_append(v, ["भीम", "noun", "भीमाः", "भीमस्य", "भीमाय", "", "Bhīma the second-eldest"]) + let v = native_list_append(v, ["बोधन", "noun", "बोधनानि", "बोधनस्य", "बोधनाय", "", "waking being awake"]) + let v = native_list_append(v, ["पठन", "noun", "पठनानि", "पठनस्य", "पठनाय", "", "study"]) + let v = native_list_append(v, ["हृद्", "noun", "हृदि॑", "हृ॒दः", "हृ॒दे", "", "heart"]) + let v = native_list_append(v, ["कृत्ति", "noun", "कृत्त॑यः", "कृत्तेः॑", "कृत्त॑ये", "", "skin"]) + let v = native_list_append(v, ["आख्या", "noun", "आख्याः", "आख्यायाः", "आख्यायै", "", "appellation name"]) + let v = native_list_append(v, ["भीषा", "noun", "भीषा", "", "", "", "the act of"]) + let v = native_list_append(v, ["नारी", "noun", "नार्यः॑", "नार्याः॑", "नार्यै॑", "", "woman wife"]) + let v = native_list_append(v, ["जाया", "noun", "जा॒याः", "जा॒यायाः॑", "जा॒यायै॑", "", "a wife"]) + let v = native_list_append(v, ["जय", "noun", "ज॒याः", "ज॒यस्य॑", "ज॒याय॑", "", "conquest victory triumph"]) + let v = native_list_append(v, ["यात्रा", "noun", "यात्राः", "यात्रायाः", "यात्रायै", "", "journey travel march"]) + let v = native_list_append(v, ["रथ", "noun", "रथाः॑", "रथ॑स्य", "रथा॑य", "", "chariot car especially"]) + let v = native_list_append(v, ["स्यन्दन", "noun", "स्यन्दन", "", "", "", "flowing"]) + let v = native_list_append(v, ["श्वशुर", "noun", "श्वशु॑राः", "श्वशु॑रस्य", "श्वशु॑राय", "", "father-in-law either the"]) + let v = native_list_append(v, ["देवृ", "noun", "दे॒वरः॑", "दे॒वुः", "दे॒व्रे", "", "womans brother-in-law husbands"]) + let v = native_list_append(v, ["वृश्चिक", "noun", "वृश्चि॑काः", "वृश्चि॑कस्य", "वृश्चि॑काय", "", "scorpion"]) + let v = native_list_append(v, ["बिडाली", "noun", "बिडाल्यः", "बिडाल्याः", "बिडाल्यै", "", "cat"]) + let v = native_list_append(v, ["मार्जार", "noun", "मार्जाराः", "मार्जारस्य", "मार्जाराय", "", "cat"]) + let v = native_list_append(v, ["विग्रह", "noun", "विग्रहाः", "विग्रहस्य", "विग्रहाय", "", "division"]) + let v = native_list_append(v, ["पित्त", "noun", "पित्तानि", "पित्तस्य", "पित्ताय", "", "bile the bilious"]) + let v = native_list_append(v, ["जन्म", "noun", "जन्म", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["जनन", "noun", "जननानि", "जननस्य", "जननाय", "", "birth coming into"]) + let v = native_list_append(v, ["नवनीत", "noun", "नव॑नीतानि", "नव॑नीतस्य", "नव॑नीताय", "", "fresh butter"]) + let v = native_list_append(v, ["कल", "noun", "कलाः", "कलस्य", "कलाय", "", "a low or"]) + let v = native_list_append(v, ["दुग्ध", "noun", "दु॒ग्धानि॑", "दु॒ग्धस्य॑", "दु॒ग्धाय॑", "", "milk"]) + let v = native_list_append(v, ["क्षीर", "noun", "क्षी॒राणि॑", "क्षी॒रस्य॑", "क्षी॒राय॑", "", "milk thickened milk"]) + let v = native_list_append(v, ["दुःस्वप्न", "noun", "दुः॒स्वप्नाः॑", "दुः॒स्वप्न॑स्य", "दुः॒स्वप्ना॑य", "", "nightmare"]) + let v = native_list_append(v, ["ភូមិ", "noun", "ភូមិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["तुरग", "noun", "तुरग", "", "", "", "horse"]) + let v = native_list_append(v, ["नभस्", "noun", "नभां॑सि", "नभ॑सः", "नभ॑से", "", "mist fog clouds"]) + let v = native_list_append(v, ["कृमि", "noun", "कृम॑यः", "कृमेः॑", "कृम॑ये", "", "a worm insect"]) + let v = native_list_append(v, ["शृङ्ग", "noun", "शृङ्गा॑णि", "शृङ्ग॑स्य", "शृङ्गा॑य", "", "the horn of"]) + let v = native_list_append(v, ["ពុទ្ធ", "noun", "ពុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["वाट", "noun", "वाटाः", "वाटस्य", "वाटाय", "", "enclosure either a"]) + let v = native_list_append(v, ["मधुलिह्", "noun", "मधुलिहः", "मधुलिहः", "मधुलिहे", "", "a bee honey"]) + let v = native_list_append(v, ["भ्रमर", "noun", "भ्रमराः", "भ्रमरस्य", "भ्रमराय", "", "a large black"]) + let v = native_list_append(v, ["सर्पिणी", "noun", "सर्पिण्यः", "सर्पिण्याः", "सर्पिण्यै", "", "female serpent"]) + let v = native_list_append(v, ["मक्षिक", "noun", "मक्षिकाः", "मक्षिकस्य", "मक्षिकाय", "", "bee"]) + let v = native_list_append(v, ["मक्षिकामल", "noun", "मक्षिकामलानि", "मक्षिकामलस्य", "मक्षिकामलाय", "", "wax"]) + let v = native_list_append(v, ["पयस्", "noun", "पयां॑सि", "पय॑सः", "पय॑से", "", "milk"]) + let v = native_list_append(v, ["वर्षा", "noun", "व॒र्षाः", "व॒र्षायाः॑", "व॒र्षायै॑", "", "rain"]) + let v = native_list_append(v, ["वृष्टि", "noun", "वृ॒ष्टयः॑", "वृ॒ष्टेः", "वृ॒ष्टये॑", "", "rain"]) + let v = native_list_append(v, ["अन्तरात्मन्", "noun", "अन्तरात्मन्", "", "", "", "the soul"]) + let v = native_list_append(v, ["चेतस्", "noun", "चेतां॑सि", "चेत॑सः", "चेत॑से", "", "splendour"]) + let v = native_list_append(v, ["भुज", "noun", "भुजाः॑", "भुज॑स्य", "भुजा॑य", "", "arm"]) + let v = native_list_append(v, ["वादक", "noun", "वादकाः", "वादकस्य", "वादकाय", "", "musician"]) + let v = native_list_append(v, ["भा", "noun", "भाः", "भः", "भे", "", "light or a"]) + let v = native_list_append(v, ["शोभा", "noun", "शोभाः", "शोभायाः", "शोभायै", "", "splendour brilliance lustre"]) + let v = native_list_append(v, ["शिर", "noun", "शिराः", "शिरस्य", "शिराय", "", "head skull cephalon"]) + let v = native_list_append(v, ["चुम्ब", "noun", "चुम्बाः", "चुम्बस्य", "चुम्बाय", "", "kissing"]) + let v = native_list_append(v, ["अनिल", "noun", "अनि॑लाः", "अनि॑लस्य", "अनि॑लाय", "", "air"]) + let v = native_list_append(v, ["पवन", "noun", "पवनाः", "पवनस्य", "पवनाय", "", "purifier wind or"]) + let v = native_list_append(v, ["मरुत्", "noun", "म॒रुतः॑", "म॒रुतः॑", "म॒रुते॑", "", "wind air"]) + let v = native_list_append(v, ["मारुत", "noun", "मारुत", "", "", "", "wind air the"]) + let v = native_list_append(v, ["वात", "noun", "वाताः॑", "वात॑स्य", "वाता॑य", "", "wind air"]) + let v = native_list_append(v, ["द्यु", "noun", "द्यावः॑", "दि॒वः", "दि॒वे", "", "heaven the sky"]) + let v = native_list_append(v, ["अण्ड", "noun", "अ॒ण्डाः", "अ॒ण्डस्य॑", "अ॒ण्डाय॑", "", "egg"]) + let v = native_list_append(v, ["लाला", "noun", "लाला", "", "", "", "saliva spittle slobber"]) + let v = native_list_append(v, ["मह", "noun", "म॒हाः", "म॒हस्य॑", "म॒हाय॑", "", "feast festival MBh."]) + let v = native_list_append(v, ["बृहत्", "noun", "बृ॒हन्ति॑", "बृ॒ह॒तः", "बृ॒ह॒ते", "", "height"]) + let v = native_list_append(v, ["कुमार", "noun", "कु॒मा॒राः", "कु॒मा॒रस्य॑", "कु॒मा॒राय॑", "", "a child boy"]) + let v = native_list_append(v, ["शिशु", "noun", "शिश॑वः", "शिशोः॑", "शिश॑वे", "", "a child infant"]) + let v = native_list_append(v, ["श्वन्", "noun", "श्वानः॑", "शुनः॑", "शुने॑", "", "a dog hound"]) + let v = native_list_append(v, ["त्वच्", "noun", "त्वचः॑", "त्व॒चः", "त्व॒चे", "", "skin of men"]) + let v = native_list_append(v, ["वल्क", "noun", "व॒ल्काः", "व॒ल्कस्य॑", "व॒ल्काय॑", "", "bark of a"]) + let v = native_list_append(v, ["पुष्प", "noun", "पुष्पा॑णि", "पुष्प॑स्य", "पुष्पा॑य", "", "flower blossom"]) + let v = native_list_append(v, ["पीवस्", "noun", "पीवां॑सि", "पीव॑सः", "पीव॑से", "", "fat"]) + let v = native_list_append(v, ["मेदस्", "noun", "मेदां॑सि", "मेद॑सः", "मेद॑से", "", "fat flesh marrow"]) + let v = native_list_append(v, ["पर्ण", "noun", "प॒र्णानि॑", "प॒र्णस्य॑", "प॒र्णाय॑", "", "pinion feather also"]) + let v = native_list_append(v, ["कर्ण", "noun", "कर्णाः॑", "कर्ण॑स्य", "कर्णा॑य", "", "ear"]) + let v = native_list_append(v, ["श्रवण", "noun", "श्रवण", "", "", "", "the act of"]) + let v = native_list_append(v, ["श्रुति", "noun", "श्रुत॑यः", "श्रुतेः॑", "श्रुत॑ये", "", "hearing listening"]) + let v = native_list_append(v, ["पट", "noun", "पटाः", "पटस्य", "पटाय", "", "garment piece of"]) + let v = native_list_append(v, ["अंशक", "noun", "अंशकाः", "अंशकस्य", "अंशकाय", "", "share"]) + let v = native_list_append(v, ["अंशु", "noun", "अं॒शवः॑", "अं॒शोः", "अं॒शवे॑", "", "filament stalk beam"]) + let v = native_list_append(v, ["अंशुक", "noun", "अंशुकानि", "अंशुकस्य", "अंशुकाय", "", "cloth"]) + let v = native_list_append(v, ["अंशुमत्", "noun", "अंशुमत्", "", "", "", "the sun"]) + let v = native_list_append(v, ["अंहस्", "noun", "अंहां॑सि", "अंह॑सः", "अंह॑से", "", "anxiety trouble distress"]) + let v = native_list_append(v, ["अकनिष्ठ", "noun", "अकनिष्ठ stem or", "", "", "", "a class of"]) + let v = native_list_append(v, ["अकन्या", "noun", "अकन्याः", "अकन्यायाः", "अकन्यायै", "", "not a virgin"]) + let v = native_list_append(v, ["अकर्तृ", "noun", "अकर्तृ", "", "", "", "not an agent"]) + let v = native_list_append(v, ["अकर्मन्", "noun", "अकर्माणि", "अकर्मणः", "अकर्मणे", "", "absence of work"]) + let v = native_list_append(v, ["अकार", "noun", "अकाराः", "अकारस्य", "अकाराय", "", "the Devanagari letter"]) + let v = native_list_append(v, ["अकारण", "noun", "अकारणानि", "अकारणस्य", "अकारणाय", "", "absence of a"]) + let v = native_list_append(v, ["अकार्य", "noun", "अकार्याणि", "अकार्यस्य", "अकार्याय", "", "criminal action"]) + let v = native_list_append(v, ["अकिञ्चन", "noun", "अकिञ्चनानि", "अकिञ्चनस्य", "अकिञ्चनाय", "", "that which is"]) + let v = native_list_append(v, ["अकीर्ति", "noun", "अकीर्ति", "", "", "", "ill fame notoriety"]) + let v = native_list_append(v, ["सत्", "noun", "सन्तः॑", "स॒तः", "स॒ते", "", "a being in"]) + let v = native_list_append(v, ["मन्त्र", "noun", "मन्त्राः॑", "मन्त्र॑स्य", "मन्त्रा॑य", "", "sacred text or"]) + let v = native_list_append(v, ["अकूपार", "noun", "अकू॑पाराः", "अकू॑पारस्य", "अकू॑पाराय", "", "sea"]) + let v = native_list_append(v, ["अकृत", "noun", "अकृ॑तानि", "अकृ॑तस्य", "अकृ॑ताय", "", "an act never"]) + let v = native_list_append(v, ["अकृत्य", "noun", "अकृत्यानि", "अकृत्यस्य", "अकृत्याय", "", "crime"]) + let v = native_list_append(v, ["अकृष्ट", "noun", "अकृष्ट", "", "", "", "unploughed land"]) + let v = native_list_append(v, ["अक्का", "noun", "अक्काः", "अक्कायाः", "अक्कायै", "", "mother"]) + let v = native_list_append(v, ["अक्तु", "noun", "अ॒क्तवः॑", "अ॒क्तोः", "अ॒क्तवे॑", "", "ointment"]) + let v = native_list_append(v, ["अक्रूर", "noun", "अक्रूर", "", "", "", "Krishnas paternal uncle"]) + let v = native_list_append(v, ["अक्षया", "noun", "अक्षया", "", "", "", "the seventh day"]) + let v = native_list_append(v, ["अक्षमा", "noun", "अक्षमा", "", "", "", "impatience envy"]) + let v = native_list_append(v, ["अक्षता", "noun", "अक्ष॑ताः", "अक्ष॑तायाः", "अक्ष॑तायै", "", "virgin"]) + let v = native_list_append(v, ["अकृता", "noun", "अकृताः", "अकृतायाः", "अकृतायै", "", "a daughter who"]) + let v = native_list_append(v, ["अक्षयता", "noun", "अक्षयता", "", "", "", "imperishableness"]) + let v = native_list_append(v, ["अक्षयत्व", "noun", "अक्षयत्व", "", "", "", "imperishability"]) + let v = native_list_append(v, ["अक्षरा", "noun", "अक्षराः", "अक्षरायाः", "अक्षरायै", "", "word"]) + let v = native_list_append(v, ["अक्षहृदय", "noun", "अक्षहृदय", "", "", "", "innermost nature of"]) + let v = native_list_append(v, ["अक्षान्ति", "noun", "अक्षान्ति", "", "", "", "impatience jealousy intolerance"]) + let v = native_list_append(v, ["अक्षन्", "noun", "अक्षन्", "", "", "", "an organ of"]) + let v = native_list_append(v, ["अक्षौहिणी", "noun", "अक्षौहिणी", "", "", "", "akshauhini"]) + let v = native_list_append(v, ["अखण्ड", "noun", "अखण्ड", "", "", "", "time"]) + let v = native_list_append(v, ["अग", "noun", "अगाः", "अगस्य", "अगाय", "", "snake"]) + let v = native_list_append(v, ["अगद", "noun", "अगदाः", "अगदस्य", "अगदाय", "", "freedom from disease"]) + let v = native_list_append(v, ["अगम्यागमन", "noun", "अगम्यागमन", "", "", "", "illicit intercourse with"]) + let v = native_list_append(v, ["अगस्ति", "noun", "अगस्तयः", "अगस्तेः", "अगस्तये", "", "mountain"]) + let v = native_list_append(v, ["अगाध", "noun", "अगाधाः", "अगाधस्य", "अगाधाय", "", "hole chasm"]) + let v = native_list_append(v, ["अगार", "noun", "अगार", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["अगुण", "noun", "अगुणाः", "अगुणस्य", "अगुणाय", "", "fault"]) + let v = native_list_append(v, ["अगुरु", "noun", "अगुरवः", "अगुरोः", "अगुरवे", "", "fragrant aloe wood"]) + let v = native_list_append(v, ["वीर", "noun", "वी॒राः", "वी॒रस्य॑", "वी॒राय॑", "", "a man especially"]) + let v = native_list_append(v, ["नर", "noun", "नराः॑", "नर॑स्य", "नरा॑य", "", "a human a"]) + let v = native_list_append(v, ["बाला", "noun", "बालाः", "बालायाः", "बालायै", "", "female child girl"]) + let v = native_list_append(v, ["विरा", "noun", "विराः", "विरायाः", "विरायै", "", "wife matron whose"]) + let v = native_list_append(v, ["अंह्रि", "noun", "अंह्रयः", "अंह्रेः", "अंह्रये", "", "foot"]) + let v = native_list_append(v, ["कामसूत्र", "noun", "कामसूत्राणि", "कामसूत्रस्य", "कामसूत्राय", "", "Kamasutra"]) + let v = native_list_append(v, ["इदानि", "noun", "इ॒दानी॑नि", "इ॒दानि॑नः", "इ॒दानि॑ने", "", "a measure of"]) + let v = native_list_append(v, ["मति", "noun", "म॒तयः॑", "म॒तेः", "म॒तये॑", "", "thought design intention"]) + let v = native_list_append(v, ["रात्रि", "noun", "रात्र॑यः", "रात्रेः॑", "रात्र॑ये", "", "night"]) + let v = native_list_append(v, ["वायु", "noun", "वा॒यवः॑", "वा॒योः", "वा॒यवे॑", "", "wind"]) + let v = native_list_append(v, ["धेनु", "noun", "धे॒नवः॑", "धे॒नोः", "धे॒नवे॑", "", "a milk cow"]) + let v = native_list_append(v, ["सेना", "noun", "सेनाः॑", "सेना॑याः", "सेना॑यै", "", "an army armament"]) + let v = native_list_append(v, ["देवी", "noun", "दे॒व्यः॑", "दे॒व्याः", "दे॒व्यै", "", "female deity goddess"]) + let v = native_list_append(v, ["वधू", "noun", "व॒ध्वः॑", "व॒ध्वाः", "व॒ध्वै", "", "a bride or"]) + let v = native_list_append(v, ["तनू", "noun", "त॒न्वः॑", "त॒न्वः॑", "त॒न्वै", "", "body"]) + let v = native_list_append(v, ["श्वश्रू", "noun", "श्व॒श्र्वः॑", "श्व॒श्र्वाः", "श्व॒श्र्वै", "", "a mother-in-law either"]) + let v = native_list_append(v, ["पाप", "noun", "पा॒पाः", "पा॒पस्य॑", "पा॒पाय॑", "", "a wicked man"]) + let v = native_list_append(v, ["ननान्दृ", "noun", "नना॑न्दरः", "नना॑न्दुः", "नना॑न्द्रे", "", "sister-in-law husbands sister"]) + let v = native_list_append(v, ["नृ", "noun", "नरः॑", "नरः॑", "नरे॑", "", "a man"]) + let v = native_list_append(v, ["स्तृ", "noun", "स्तारः॑", "स्तुः", "स्त्रे", "", "a star"]) + let v = native_list_append(v, ["उसृ", "noun", "उ॒षरः॑", "उ॒स्रः", "उ॒स्रे", "", "morning light daybreak"]) + let v = native_list_append(v, ["नप्तृ", "noun", "नप्ता॑रः", "नप्तुः॑", "नप्त्रे॑", "", "grandson sons son"]) + let v = native_list_append(v, ["प्रबुध्", "noun", "प्र॒बुधः॑", "प्र॒बुधः॑", "प्र॒बुधे॑", "", "awaking"]) + let v = native_list_append(v, ["प्रजाकाम", "noun", "प्र॒जाका॑माः", "प्र॒जाका॑मस्य", "प्र॒जाका॑माय", "", "desire of offspring"]) + let v = native_list_append(v, ["दम्पति", "noun", "दम्प॑तयः", "दम्प॑तेः", "दम्प॑तये", "", "the lord of"]) + let v = native_list_append(v, ["सखि", "noun", "सखा॑यः", "सख्युः॑", "सख्ये॑", "", "a friend companion"]) + let v = native_list_append(v, ["ऋग्वेद", "noun", "ऋ॒ग्वे॒दाः", "ऋ॒ग्वे॒दस्य॑", "ऋ॒ग्वे॒दाय॑", "", "Rigveda first of"]) + let v = native_list_append(v, ["अथर्ववेद", "noun", "अ॒थ॒र्व॒वेदाः॑", "अ॒थ॒र्व॒वेद॑स्य", "अ॒थ॒र्व॒वेदा॑य", "", "Atharvaveda"]) + let v = native_list_append(v, ["वेद", "noun", "वेदाः॑", "वेद॑स्य", "वेदा॑य", "", "knowledge true or"]) + let v = native_list_append(v, ["नराशंस", "noun", "नरा॒शंसाः॑", "नरा॒शंस॑स्य", "नरा॒शंसा॑य", "", "Possibly literally the"]) + let v = native_list_append(v, ["शर्करा", "noun", "शर्क॑राः", "शर्क॑रायाः", "शर्क॑रायै", "", "gravel grit pebbles"]) + let v = native_list_append(v, ["भग", "noun", "भगाः॑", "भग॑स्य", "भगा॑य", "", "Bhaga one of"]) + let v = native_list_append(v, ["अङ्गार", "noun", "अङ्गा॑राः", "अङ्गा॑रस्य", "अङ्गा॑राय", "", "charcoal either heated"]) + let v = native_list_append(v, ["आर्य", "noun", "आर्याः॑", "आर्य॑स्य", "आर्या॑य", "", "an Indo-Aryan i.e."]) + let v = native_list_append(v, ["अर्भ", "noun", "अ॒र्भाः", "अ॒र्भस्य॑", "अ॒र्भाय॑", "", "child boy"]) + let v = native_list_append(v, ["अंहु", "noun", "अंहू॑नि", "अंहु॑नः", "अंहु॑ने", "", "anxiety distress"]) + let v = native_list_append(v, ["कृपाण", "noun", "कृपाणाः", "कृपाणस्य", "कृपाणाय", "", "sword dagger"]) + let v = native_list_append(v, ["पुत्र", "noun", "पु॒त्राः", "पु॒त्रस्य॑", "पु॒त्राय॑", "", "a son child"]) + let v = native_list_append(v, ["वातिगगम", "noun", "वातिगगमाः", "वातिगगमस्य", "वातिगगमाय", "", "eggplant Solanum melongena"]) + let v = native_list_append(v, ["प्रथमपुरुष", "noun", "प्रथमपुरुषाः", "प्रथमपुरुषस्य", "प्रथमपुरुषाय", "", "third person but"]) + let v = native_list_append(v, ["मध्यमपुरुष", "noun", "मध्यमपुरुषाः", "मध्यमपुरुषस्य", "मध्यमपुरुषाय", "", "a particular personification"]) + let v = native_list_append(v, ["उत्तमपुरुष", "noun", "उत्तमपुरुषाः", "उत्तमपुरुषस्य", "उत्तमपुरुषाय", "", "first person literally"]) + let v = native_list_append(v, ["अपत्यता", "noun", "अपत्यताः", "अपत्यतायाः", "अपत्यतायै", "", "state of childhood"]) + let v = native_list_append(v, ["कच्छ", "noun", "कच्छाः", "कच्छस्य", "कच्छाय", "", "a bank or"]) + let v = native_list_append(v, ["श्री", "noun", "श्रियः॑", "श्रि॒यः", "श्रि॒ये", "", "light lustre radiance"]) + let v = native_list_append(v, ["लङ्का", "noun", "लङ्काः", "लङ्कायाः", "लङ्कायै", "", "the citadel of"]) + let v = native_list_append(v, ["वृद्धि", "noun", "वृद्ध॑यः", "वृद्धेः॑", "वृद्ध॑ये", "", "growth increase augmentation"]) + let v = native_list_append(v, ["बहुव्रीहि", "noun", "ब॒हु॒व्री॒हयः॑", "ब॒हु॒व्री॒हेः", "ब॒हु॒व्री॒हये॑", "", "bahuvrihi"]) + let v = native_list_append(v, ["मिहिर", "noun", "मिहिराः", "मिहिरस्य", "मिहिराय", "", "sun"]) + let v = native_list_append(v, ["मुद्रा", "noun", "मुद्राः", "मुद्रायाः", "मुद्रायै", "", "a seal or"]) + let v = native_list_append(v, ["नक्त", "noun", "नक्ता॑नि", "नक्त॑स्य", "नक्ता॑य", "", "night"]) + let v = native_list_append(v, ["अमल", "noun", "अमलाः", "अमलस्य", "अमलाय", "", "crystal"]) + let v = native_list_append(v, ["पाद", "noun", "पादाः॑", "पाद॑स्य", "पादा॑य", "", "the foot of"]) + let v = native_list_append(v, ["होतृ", "noun", "होता॑रः", "होतुः॑", "होत्रे॑", "", "an offerer of"]) + let v = native_list_append(v, ["लक्ष्मी", "noun", "ल॒क्ष्म्यः॑", "ल॒क्ष्म्यः॑", "ल॒क्ष्म्ये॑", "", "mark sign token"]) + let v = native_list_append(v, ["आशु", "noun", "आ॒शवः॑", "आ॒शोः", "आ॒शवे॑", "", "the quick one"]) + let v = native_list_append(v, ["वृकतात्", "noun", "वृकतात्", "", "", "", "wolfishness rapacity"]) + let v = native_list_append(v, ["अभिधानम्", "noun", "अभिधानम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["अवि", "noun", "अव॑यः", "अवेः॑", "अव॑ये", "", "sheep mentioned with"]) + let v = native_list_append(v, ["ऋच्", "noun", "ऋचः॑", "ऋ॒चः", "ऋ॒चे", "", "praise verse especially"]) + let v = native_list_append(v, ["वरुण", "noun", "वरुण", "", "", "", "Varuna"]) + let v = native_list_append(v, ["पुराण", "noun", "पुराण", "", "", "", "a thing or"]) + let v = native_list_append(v, ["ब्रह्मन्", "noun", "ब्रह्मन्", "ब्रह्म॑णः", "ब्रह्म॑णे", "", "Brahman or the"]) + let v = native_list_append(v, ["भाल", "noun", "भालानि", "भालस्य", "भालाय", "", "the forehead brow"]) + let v = native_list_append(v, ["गभस्ति", "noun", "गभ॑स्तयः", "गभ॑स्तेः", "गभ॑स्तये", "", "fork ?"]) + let v = native_list_append(v, ["नमस्", "noun", "नमां॑सि", "नम॑सः", "नम॑से", "", "bow obeisance homage"]) + let v = native_list_append(v, ["ऋक्ष", "noun", "ऋक्षाः॑", "ऋक्ष॑स्य", "ऋक्षा॑य", "", "a bear"]) + let v = native_list_append(v, ["आगस्", "noun", "आगां॑सि", "आग॑सः", "आग॑से", "", "transgression offence injury"]) + let v = native_list_append(v, ["द्राक्षा", "noun", "द्राक्षाः॑", "द्राक्षा॑याः", "द्राक्षा॑यै", "", "grape vine raisin"]) + let v = native_list_append(v, ["अश्रि", "noun", "अश्र॑यः", "अश्रेः॑", "अश्र॑ये", "", "the sharp side"]) + let v = native_list_append(v, ["पुर", "noun", "पुरा॑णि", "पुर॑स्य", "पुरा॑य", "", "fortress castle city"]) + let v = native_list_append(v, ["ऊधस्", "noun", "ऊध॑सः", "ऊध॑सः", "ऊध॑से", "", "the udder of"]) + let v = native_list_append(v, ["ऊधर्", "noun", "ऊधर्", "", "", "", "the udder of"]) + let v = native_list_append(v, ["नारङ्ग", "noun", "नारङ्गाः", "नारङ्गस्य", "नारङ्गाय", "", "the orange tree"]) + let v = native_list_append(v, ["अज्र", "noun", "अज्राः॑", "अज्र॑स्य", "अज्रा॑य", "", "field plain"]) + let v = native_list_append(v, ["नव", "noun", "नवाः॑", "नव॑स्य", "नवा॑य", "", "young monk novice"]) + let v = native_list_append(v, ["पस्त्य", "noun", "प॒स्त्या॑नि", "प॒स्त्य॑स्य", "प॒स्त्या॑य", "", "stall stable as"]) + let v = native_list_append(v, ["पक्ष", "noun", "प॒क्षाः", "प॒क्षस्य॑", "प॒क्षाय॑", "", "wing pinion"]) + let v = native_list_append(v, ["अजिर", "noun", "अ॒जि॒राः", "अ॒जि॒रस्य॑", "अ॒जि॒राय॑", "", "name of a"]) + let v = native_list_append(v, ["पलाल", "noun", "पलालाः", "पलालस्य", "पलालाय", "", "a stalk straw"]) + let v = native_list_append(v, ["व्रीहि", "noun", "व्रीहयः", "व्रीहेः", "व्रीहये", "", "rice"]) + let v = native_list_append(v, ["पलित", "noun", "प॒लि॒तानि॑", "प॒लि॒तस्य॑", "प॒लि॒ताय॑", "", "grey hair also"]) + let v = native_list_append(v, ["पन्था", "noun", "पन्थानः", "पथः", "पथे", "", "a way path"]) + let v = native_list_append(v, ["पर्कटी", "noun", "पर्कट्यः", "पर्कट्याः", "पर्कट्यै", "", "Ficus infectoria"]) + let v = native_list_append(v, ["पृषत्", "noun", "पृष॑न्तः", "पृष॑तः", "पृष॑ते", "", "the spotted antelope"]) + let v = native_list_append(v, ["पार्ष्णि", "noun", "पार्ष्ण॑यः", "पार्ष्णेः॑", "पार्ष्ण॑ये", "", "the heel"]) + let v = native_list_append(v, ["पर्शु", "noun", "पर्श॑वः", "पर्शोः॑", "पर्श॑वे", "", "a rib"]) + let v = native_list_append(v, ["प्रश्न", "noun", "प्र॒श्नाः", "प्र॒श्नस्य॑", "प्र॒श्नाय॑", "", "question demand interrogation"]) + let v = native_list_append(v, ["क्लोमन्", "noun", "क्लोमा॑नः", "क्लोम्नः॑", "क्लोम्ने॑", "", "the right lung"]) + let v = native_list_append(v, ["प्लुषि", "noun", "प्लुष॑यः", "प्लुषेः॑", "प्लुष॑ये", "", "a species of"]) + let v = native_list_append(v, ["फेन", "noun", "फेनाः॑", "फेन॑स्य", "फेना॑य", "", "foam froth scum"]) + let v = native_list_append(v, ["पार्वती", "noun", "पार्वत्यः", "पार्वत्याः", "पार्वत्यै", "", "a mountain stream"]) + let v = native_list_append(v, ["प्रथम", "noun", "प्र॒थ॒माः", "प्र॒थ॒मस्य॑", "प्र॒थ॒माय॑", "", "namely वर्ण varṇa"]) + let v = native_list_append(v, ["पूर", "noun", "पूराः", "पूरस्य", "पूराय", "", "the act of"]) + let v = native_list_append(v, ["पुलक", "noun", "पुलकाः", "पुलकस्य", "पुलकाय", "", "a species of"]) + let v = native_list_append(v, ["भट्ट", "noun", "भट्टाः", "भट्टस्य", "भट्टाय", "", "lord my lord"]) + let v = native_list_append(v, ["ब्राह्मण", "noun", "ब्राह्म॑णाः", "ब्राह्म॑णस्य", "ब्राह्म॑णाय", "", "one who has"]) + let v = native_list_append(v, ["पायु", "noun", "पाय॑वः", "पायोः॑", "पाय॑वे", "", "anus"]) + let v = native_list_append(v, ["दान", "noun", "दाना॑नि", "दान॑स्य", "दाना॑य", "", "gift alms donation"]) + let v = native_list_append(v, ["अहि", "noun", "अह॑यः", "अहेः॑", "अह॑ये", "", "a snake serpent"]) + let v = native_list_append(v, ["वृत्र", "noun", "वृ॒त्राः", "वृ॒त्रस्य॑", "वृ॒त्राय॑", "", "coverer investor restrainer"]) + let v = native_list_append(v, ["ऋत", "noun", "ऋत", "", "", "", "name of a"]) + let v = native_list_append(v, ["वल", "noun", "व॒लाः", "व॒लस्य॑", "व॒लाय॑", "", "cave cavern"]) + let v = native_list_append(v, ["तर्कु", "noun", "त॒र्कवः॑", "त॒र्कोः", "त॒र्कवे॑", "", "spindle"]) + let v = native_list_append(v, ["तोय", "noun", "तोया॑नि", "तोय॑स्य", "तोया॑य", "", "water"]) + let v = native_list_append(v, ["तोयकण", "noun", "तोयकणाः", "तोयकणस्य", "तोयकणाय", "", "a drop of"]) + let v = native_list_append(v, ["तमस्", "noun", "तमां॑सि", "तम॑सः", "तम॑से", "", "darkness gloom also"]) + let v = native_list_append(v, ["तनु", "noun", "तनु", "", "", "", "name of a"]) + let v = native_list_append(v, ["तपस्", "noun", "तपां॑सि", "तप॑सः", "तप॑से", "", "warmth heat"]) + let v = native_list_append(v, ["तित्तिर", "noun", "ति॒त्ति॒राः", "ति॒त्ति॒रस्य॑", "ति॒त्ति॒राय॑", "", "partridge"]) + let v = native_list_append(v, ["तित्तिरि", "noun", "ति॒त्तिर॑यः", "ति॒त्तिरेः॑", "ति॒त्तिर॑ये", "", "partridge"]) + let v = native_list_append(v, ["तल्प", "noun", "तल्पाः", "तल्पस्य", "तल्पाय", "", "couch bed sofa"]) + let v = native_list_append(v, ["धूम", "noun", "धू॒माः", "धू॒मस्य॑", "धू॒माय॑", "", "smoke vapour mist"]) + let v = native_list_append(v, ["शश", "noun", "श॒शाः", "श॒शस्य॑", "श॒शाय॑", "", "hare rabbit"]) + let v = native_list_append(v, ["शारि", "noun", "शार॑यः", "शारेः॑", "शार॑ये", "", "myna bird of"]) + let v = native_list_append(v, ["शुप्ति", "noun", "शुप्त॑यः", "शुप्तेः॑", "शुप्त॑ये", "", "shoulder"]) + let v = native_list_append(v, ["श्रोणि", "noun", "श्रोण॑यः", "श्रोणेः॑", "श्रोण॑ये", "", "the hip and"]) + let v = native_list_append(v, ["पद्", "noun", "पादः॑", "प॒दः", "प॒दे", "", "a foot"]) + let v = native_list_append(v, ["तरु", "noun", "तरवः", "तरोः", "तरवे", "", "tree"]) + let v = native_list_append(v, ["द्रुम", "noun", "द्रुमाः", "द्रुमस्य", "द्रुमाय", "", "tree sometimes also"]) + let v = native_list_append(v, ["कुज", "noun", "कुजाः", "कुजस्य", "कुजाय", "", "born from the"]) + let v = native_list_append(v, ["कु", "noun", "कवः", "कोः", "कवे", "", "the earth"]) + let v = native_list_append(v, ["वनिता", "noun", "वनिताः", "वनितायाः", "वनितायै", "", "a loved wife"]) + let v = native_list_append(v, ["महिला", "noun", "म॒हि॒लाः", "म॒हि॒लायाः॑", "म॒हि॒लायै॑", "", "a woman a"]) + let v = native_list_append(v, ["प्रियङ्गु", "noun", "प्रियङ्गवः", "प्रियङ्गोः", "प्रियङ्गवे", "", "panic grass Setaria"]) + let v = native_list_append(v, ["सर्पिस्", "noun", "स॒र्पींषि॑", "स॒र्पिषः॑", "स॒र्पिषे॑", "", "ghee i.e. melted"]) + let v = native_list_append(v, ["अबला", "noun", "अबलाः", "अबलायाः", "अबलायै", "", "woman literally not"]) + let v = native_list_append(v, ["अङ्गना", "noun", "अङ्गनाः", "अङ्गनायाः", "अङ्गनायै", "", "a woman with"]) + let v = native_list_append(v, ["उदात्त", "noun", "उदात्ताः", "उदात्तस्य", "उदात्ताय", "", "udātta"]) + let v = native_list_append(v, ["अनुदात्त", "noun", "अनुदात्ताः", "अनुदात्तस्य", "अनुदात्ताय", "", "anudātta"]) + let v = native_list_append(v, ["स्वरित", "noun", "स्वरिताः", "स्वरितस्य", "स्वरिताय", "", "the svarita accent"]) + let v = native_list_append(v, ["पुण्डरीक", "noun", "पु॒ण्डरी॑काणि", "पु॒ण्डरी॑कस्य", "पु॒ण्डरी॑काय", "", "lotus-flower especially one"]) + let v = native_list_append(v, ["कल्य", "noun", "कल्यानि", "कल्यस्य", "कल्याय", "", "health"]) + let v = native_list_append(v, ["यजुस्", "noun", "यजूं॑षि", "यजु॑षः", "यजु॑षे", "", "religious reverence veneration"]) + let v = native_list_append(v, ["स्थान", "noun", "स्थाना॑नि", "स्थान॑स्य", "स्थाना॑य", "", "the act of"]) + let v = native_list_append(v, ["निघण्टु", "noun", "निघण्टवः", "निघण्टोः", "निघण्टवे", "", "glossary"]) + let v = native_list_append(v, ["कर्मक", "noun", "कर्मक", "", "", "", "कर्मन् karman work"]) + let v = native_list_append(v, ["कर्मन्", "noun", "कर्मा॑णि", "कर्म॑णः", "कर्म॑णे", "", "an act action"]) + let v = native_list_append(v, ["मन्दार", "noun", "मन्दाराः", "मन्दारस्य", "मन्दाराय", "", "the coral tree"]) + let v = native_list_append(v, ["मन्दर", "noun", "मन्दराः", "मन्दरस्य", "मन्दराय", "", "a pearl chain"]) + let v = native_list_append(v, ["कोश", "noun", "कोशाः॑", "कोश॑स्य", "कोशा॑य", "", "cask vessel for"]) + let v = native_list_append(v, ["सामन्", "noun", "सामा॑नि", "साम्नः॑", "साम्ने॑", "", "any song or"]) + let v = native_list_append(v, ["छन्दस्", "noun", "छन्दां॑सि", "छन्द॑सः", "छन्द॑से", "", "desire longing for"]) + let v = native_list_append(v, ["गोपुर", "noun", "गोपुराणि", "गोपुरस्य", "गोपुराय", "", "town-gate"]) + let v = native_list_append(v, ["ईश्", "noun", "ईश्", "", "", "", "master lord the"]) + let v = native_list_append(v, ["जाङ्गल", "noun", "जाङ्गलाः", "जाङ्गलस्य", "जाङ्गलाय", "", "the francoline partridge"]) + let v = native_list_append(v, ["सोम", "noun", "सोमाः॑", "सोम॑स्य", "सोमा॑य", "", "the Soma drink"]) + let v = native_list_append(v, ["नासा", "noun", "नासाः॑", "नासा॑याः", "नासा॑यै", "", "nose"]) + let v = native_list_append(v, ["उषस्", "noun", "उ॒षासः॑", "उ॒षसः॑", "उ॒षसे॑", "", "morning light dawn"]) + let v = native_list_append(v, ["हिमालय", "noun", "हिमालय", "हिमालयस्य", "हिमालयाय", "", "the Himalayas"]) + let v = native_list_append(v, ["ऋषि", "noun", "ऋष॑यः", "ऋषेः॑", "ऋष॑ये", "", "a rishi a"]) + let v = native_list_append(v, ["ऊर्ध्व", "noun", "ऊ॒र्ध्वानि॑", "ऊ॒र्ध्वस्य॑", "ऊ॒र्ध्वाय॑", "", "height elevation"]) + let v = native_list_append(v, ["अपर", "noun", "अप॑राः", "अप॑रस्य", "अप॑राय", "", "the hind foot"]) + let v = native_list_append(v, ["पृदाकु", "noun", "पृदा॑कवः", "पृदा॑कोः", "पृदा॑कवे", "", "adder viper snake"]) + let v = native_list_append(v, ["पृदाकुसानु", "noun", "पृदाकुसानु", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["क्षप्", "noun", "क्षपः॑", "क्ष॒पः", "क्ष॒पे", "", "night"]) + let v = native_list_append(v, ["ब्राह्म", "noun", "ब्राह्माणि", "ब्राह्मस्य", "ब्राह्माय", "", "sacred study study"]) + let v = native_list_append(v, ["जनस्", "noun", "जनां॑सि", "जन॑सः", "जन॑से", "", "race class of"]) + let v = native_list_append(v, ["मल", "noun", "मला॑नि", "मल॑स्य", "मला॑य", "", "dirt filth dust"]) + let v = native_list_append(v, ["युवन्", "noun", "युवा॑नः", "यूनः॑", "यूने॑", "", "a youth young"]) + let v = native_list_append(v, ["नपात्", "noun", "नपा॑तः", "नपा॑तः", "नपा॑ते", "", "descendant offspring son"]) + let v = native_list_append(v, ["मनु", "noun", "मन॑वः", "मनोः॑", "मन॑वे", "", "man mankind"]) + let v = native_list_append(v, ["मास", "noun", "मासाः॑", "मास॑स्य", "मासा॑य", "", "the moon"]) + let v = native_list_append(v, ["सिन्धु", "noun", "सिन्ध॑वः", "सिन्धोः॑", "सिन्ध॑वे", "", "a river stream"]) + let v = native_list_append(v, ["गङ्गा", "noun", "गङ्गा", "गङ्गायाः", "गङ्गायै", "", "Ganga a river"]) + let v = native_list_append(v, ["पृष्ठ", "noun", "पृ॒ष्ठानि॑", "पृ॒ष्ठस्य॑", "पृ॒ष्ठाय॑", "", "the back the"]) + let v = native_list_append(v, ["सरस्वती", "noun", "सरस्वती", "सर॑स्वत्याः", "सर॑स्वत्यै", "", "Saraswati the goddess"]) + let v = native_list_append(v, ["राम", "noun", "रामाः", "रामस्य", "रामाय", "", "a kind of"]) + let v = native_list_append(v, ["शिव", "noun", "शिव", "शिवस्य", "शिवाय", "", "Shiva the destroying"]) + let v = native_list_append(v, ["उद्गूर्ण", "noun", "उद्गूर्णानि", "उद्गूर्णस्य", "उद्गूर्णाय", "", "the act of"]) + let v = native_list_append(v, ["राज्य", "noun", "रा॒ज्यानि॑", "रा॒ज्यस्य॑", "रा॒ज्याय॑", "", "kingdom country realm"]) + let v = native_list_append(v, ["ภูมิ", "noun", "ภูมิ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["देवदासी", "noun", "देवदास्यः", "देवदास्याः", "देवदास्यै", "", "devadasi"]) + let v = native_list_append(v, ["ทูต", "noun", "ทูต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["राशिचक्र", "noun", "रा॒शिच॑क्राणि", "रा॒शिच॑क्रस्य", "रा॒शिच॑क्राय", "", "the zodiacal circle"]) + let v = native_list_append(v, ["कर्कट", "noun", "कर्कटाः", "कर्कटस्य", "कर्कटाय", "", "crab"]) + let v = native_list_append(v, ["ऋद्धि", "noun", "ऋद्ध॑यः", "ऋद्धेः॑", "ऋद्ध॑ये", "", "growth increase"]) + let v = native_list_append(v, ["मृत्यु", "noun", "मृ॒त्यवः॑", "मृ॒त्योः", "मृ॒त्यवे॑", "", "death dying"]) + let v = native_list_append(v, ["परिवार", "noun", "परिवाराः", "परिवारस्य", "परिवाराय", "", "cover covering"]) + let v = native_list_append(v, ["असुर", "noun", "असु॑राः", "असु॑रस्य", "असु॑राय", "", "spirit good spirit"]) + let v = native_list_append(v, ["लोह", "noun", "लो॒हाः", "लो॒हस्य॑", "लो॒हाय॑", "", "red metal copper"]) + let v = native_list_append(v, ["पर्जन्य", "noun", "प॒र्जन्याः॑", "प॒र्जन्य॑स्य", "प॒र्जन्या॑य", "", "rain-cloud cloud"]) + let v = native_list_append(v, ["सिंहल", "noun", "सिंहलाः", "सिंहलस्य", "सिंहलाय", "", "Sri Lanka an"]) + let v = native_list_append(v, ["वैश्य", "noun", "वैश्याः॑", "वैश्य॑स्य", "वैश्या॑य", "", "A peasant or"]) + let v = native_list_append(v, ["सर्म", "noun", "सर्माः॑", "सर्म॑स्य", "सर्मा॑य", "", "going running flowing"]) + let v = native_list_append(v, ["लाक्षा", "noun", "लाक्षाः", "लाक्षायाः", "लाक्षायै", "", "a species of"]) + let v = native_list_append(v, ["द्रु", "noun", "द्रवः॑", "द्रोः", "द्रवे॑", "", "wood or any"]) + let v = native_list_append(v, ["सन", "noun", "सनाः", "सनस्य", "सनाय", "", "gain acquisition"]) + let v = native_list_append(v, ["ग्रीवा", "noun", "ग्री॒वाः", "ग्री॒वायाः॑", "ग्री॒वायै॑", "", "the back part"]) + let v = native_list_append(v, ["विवाह", "noun", "वि॒वा॒हाः", "वि॒वा॒हस्य॑", "वि॒वा॒हाय॑", "", "marriage marriage with"]) + let v = native_list_append(v, ["हेतु", "noun", "हे॒तवः॑", "हे॒तोः", "हे॒तवे॑", "", "impulse motive cause"]) + let v = native_list_append(v, ["सुवर्ण", "noun", "सु॒वर्णा॑नि", "सु॒वर्ण॑स्य", "सु॒वर्णा॑य", "", "gold"]) + let v = native_list_append(v, ["उदय", "noun", "उ॒द॒याः", "उ॒द॒यस्य॑", "उ॒द॒याय॑", "", "going up rising"]) + let v = native_list_append(v, ["मणि", "noun", "म॒णयः॑", "म॒णेः", "म॒णये॑", "", "jewel gem pearl"]) + let v = native_list_append(v, ["बिन्दु", "noun", "बि॒न्दवः॑", "बि॒न्दोः", "बि॒न्दवे॑", "", "a detached particle"]) + let v = native_list_append(v, ["विहार", "noun", "विहाराः", "विहारस्य", "विहाराय", "", "distribution transposition of"]) + let v = native_list_append(v, ["विष", "noun", "वि॒षाणि॑", "वि॒षस्य॑", "वि॒षाय॑", "", "poison venom bane"]) + let v = native_list_append(v, ["राजकुमार", "noun", "राजकुमाराः", "राजकुमारस्य", "राजकुमाराय", "", "kings son prince"]) + let v = native_list_append(v, ["अधिप", "noun", "अधिपाः", "अधिपस्य", "अधिपाय", "", "ruler commander regent"]) + let v = native_list_append(v, ["अपस्मार", "noun", "अपस्माराः", "अपस्मारस्य", "अपस्माराय", "", "epilepsy falling sickness"]) + let v = native_list_append(v, ["तनूज", "noun", "त॒नू॒जाः", "त॒नू॒जस्य॑", "त॒नू॒जाय॑", "", "son"]) + let v = native_list_append(v, ["तन्वी", "noun", "तन्व्यः", "तन्व्याः", "तन्व्यै", "", "slender or delicate"]) + let v = native_list_append(v, ["तन्तु", "noun", "तन्त॑वः", "तन्तोः॑", "तन्त॑वे", "", "thread cord string"]) + let v = native_list_append(v, ["नाग", "noun", "ना॒गाः", "ना॒गस्य॑", "ना॒गाय॑", "", "a snake especially"]) + let v = native_list_append(v, ["फणिन्", "noun", "फणिनः", "फणिनः", "फणिने", "", "hooded a serpent"]) + let v = native_list_append(v, ["राहु", "noun", "राहवः", "राहोः", "राहवे", "", "Rahu one of"]) + let v = native_list_append(v, ["केतु", "noun", "के॒तवः॑", "के॒तोः", "के॒तवे॑", "", "bright appearance clearness"]) + let v = native_list_append(v, ["सांख्य", "noun", "सांख्याः", "सांख्यस्य", "सांख्याय", "", "one who calculates"]) + let v = native_list_append(v, ["बालातप", "noun", "बालातपाः", "बालातपस्य", "बालातपाय", "", "early heat of"]) + let v = native_list_append(v, ["तप", "noun", "तपाः", "तपस्य", "तपाय", "", "heat warmth"]) + let v = native_list_append(v, ["शरण", "noun", "शरण", "", "", "", "name of a"]) + let v = native_list_append(v, ["कामदेव", "noun", "कामदेवाः", "कामदेवस्य", "कामदेवाय", "", "Kamadeva the god"]) + let v = native_list_append(v, ["भक्ति", "noun", "भ॒क्तयः॑", "भ॒क्तेः", "भ॒क्तये॑", "", "distribution partition separation"]) + let v = native_list_append(v, ["सिद्धार्थ", "noun", "सिद्धार्थ", "सिद्धार्थस्य", "सिद्धार्थाय", "", "Siddhārtha Gautama the"]) + let v = native_list_append(v, ["वास्तु", "noun", "वास्तू॑नि", "वास्तु॑नः", "वास्तु॑ने", "", "the site or"]) + let v = native_list_append(v, ["वसु", "noun", "वस॑वः", "वसोः॑", "वस॑वे", "", "name of the"]) + let v = native_list_append(v, ["अभिधान", "noun", "अभिधानानि", "अभिधानस्य", "अभिधानाय", "", "telling naming speaking"]) + let v = native_list_append(v, ["साधन", "noun", "साधनानि", "साधनस्य", "साधनाय", "", "the act of"]) + let v = native_list_append(v, ["साहाय्य", "noun", "साहाय्यानि", "साहाय्यस्य", "साहाय्याय", "", "help succour"]) + let v = native_list_append(v, ["साधकत्व", "noun", "साधकत्वानि", "साधकत्वस्य", "साधकत्वाय", "", "magic jugglery"]) + let v = native_list_append(v, ["साधर्म्य", "noun", "साधर्म्याणि", "साधर्म्यस्य", "साधर्म्याय", "", "community or equality"]) + let v = native_list_append(v, ["साधु", "noun", "सा॒धवः॑", "सा॒धोः", "सा॒धवे॑", "", "a good or"]) + let v = native_list_append(v, ["गञ्जा", "noun", "गञ्जाः", "गञ्जायाः", "गञ्जायै", "", "tavern"]) + let v = native_list_append(v, ["साधारण", "noun", "साधारणाः", "साधारणस्य", "साधारणाय", "", "name of the"]) + let v = native_list_append(v, ["साध्य", "noun", "साध्याः", "साध्यस्य", "साध्याय", "", "they that are"]) + let v = native_list_append(v, ["सहित", "noun", "सहितानि", "सहितस्य", "सहिताय", "", "a bow weighing"]) + let v = native_list_append(v, ["विपक्ष", "noun", "विपक्षाः", "विपक्षस्य", "विपक्षाय", "", "being on a"]) + let v = native_list_append(v, ["นรก", "noun", "นรก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["गोपाल", "noun", "गो॒पा॒लाः", "गो॒पा॒लस्य॑", "गो॒पा॒लाय॑", "", "a cowherd"]) + let v = native_list_append(v, ["मुरली", "noun", "मुरल्यः", "मुरल्याः", "मुरल्यै", "", "flute pipe"]) + let v = native_list_append(v, ["प्रथस्", "noun", "प्रथां॑सि", "प्रथ॑सः", "प्रथ॑से", "", "width extension"]) + let v = native_list_append(v, ["जगदीश", "noun", "ज॒ग॒दी॒शाः", "ज॒ग॒दी॒शस्य॑", "ज॒ग॒दी॒शाय॑", "", "an epithet of"]) + let v = native_list_append(v, ["शुनक", "noun", "शुनकाः", "शुनकस्य", "शुनकाय", "", "a young or"]) + let v = native_list_append(v, ["सूकर", "noun", "सू॒क॒राः", "सू॒क॒रस्य॑", "सू॒क॒राय॑", "", "pig hog swine"]) + let v = native_list_append(v, ["सार", "noun", "साराः", "सारस्य", "साराय", "", "course motion"]) + let v = native_list_append(v, ["आहार", "noun", "आहाराः", "आहारस्य", "आहाराय", "", "taking"]) + let v = native_list_append(v, ["समर्थ", "noun", "समर्थाः", "समर्थस्य", "समर्थाय", "", "a word which"]) + let v = native_list_append(v, ["सहाय", "noun", "सहायाः", "सहायस्य", "सहायाय", "", "one who goes"]) + let v = native_list_append(v, ["प्रदेश", "noun", "प्रदेशाः", "प्रदेशस्य", "प्रदेशाय", "", "pointing out showing"]) + let v = native_list_append(v, ["संसार", "noun", "संसाराः", "संसारस्य", "संसाराय", "", "going or wandering"]) + let v = native_list_append(v, ["विधवा", "noun", "वि॒धवाः॑", "वि॒धवा॑याः", "वि॒धवा॑यै", "", "widow woman whose"]) + let v = native_list_append(v, ["अङ्कस्", "noun", "अङ्कां॑सि", "अङ्क॑सः", "अङ्क॑से", "", "a curve or"]) + let v = native_list_append(v, ["तायु", "noun", "ता॒यवः॑", "ता॒योः", "ता॒यवे॑", "", "thief"]) + let v = native_list_append(v, ["क्षिति", "noun", "क्षित॑यः", "क्षितेः॑", "क्षित॑ये", "", "wane perishing destruction"]) + let v = native_list_append(v, ["अनेकान्तवाद", "noun", "अनेकान्तवादाः", "अनेकान्तवादस्य", "अनेकान्तवादाय", "", "skepticism"]) + let v = native_list_append(v, ["बोधिसत्त्व", "noun", "बोधिसत्त्वाः", "बोधिसत्त्वस्य", "बोधिसत्त्वाय", "", "bodhisattva"]) + let v = native_list_append(v, ["अङ्गुरि", "noun", "अ॒ङ्गुर॑यः", "अ॒ङ्गुरेः॑", "अ॒ङ्गुर॑ये", "", "finger toe"]) + let v = native_list_append(v, ["अङ्गुलि", "noun", "अ॒ङ्गुल॑यः", "अ॒ङ्गुलेः॑", "अ॒ङ्गुल॑ये", "", "a finger"]) + let v = native_list_append(v, ["हर", "noun", "हराः", "हरस्य", "हराय", "", "a divisor"]) + let v = native_list_append(v, ["प्रसाद", "noun", "प्रसादाः", "प्रसादस्य", "प्रसादाय", "", "clearness brightness pellucidness"]) + let v = native_list_append(v, ["आश्रम", "noun", "आश्रमाः", "आश्रमस्य", "आश्रमाय", "", "hermitage the abode"]) + let v = native_list_append(v, ["मिथुन", "noun", "मि॒थु॒नाः", "मि॒थु॒नस्य॑", "मि॒थु॒नाय॑", "", "a pair male"]) + let v = native_list_append(v, ["मरण", "noun", "मरणानि", "मरणस्य", "मरणाय", "", "the act of"]) + let v = native_list_append(v, ["वृषभ", "noun", "वृ॒ष॒भाः", "वृ॒ष॒भस्य॑", "वृ॒ष॒भाय॑", "", "a bull used"]) + let v = native_list_append(v, ["सृगाल", "noun", "सृगालाः", "सृगालस्य", "सृगालाय", "", "jackal"]) + let v = native_list_append(v, ["शृगाल", "noun", "शृगालाः", "शृगालस्य", "शृगालाय", "", "alternative form of"]) + let v = native_list_append(v, ["शृकाल", "noun", "शृकालाः", "शृकालस्य", "शृकालाय", "", "alternative form of"]) + let v = native_list_append(v, ["चिन्तन", "noun", "चिन्तनानि", "चिन्तनस्य", "चिन्तनाय", "", "thinking thinking of"]) + let v = native_list_append(v, ["घोटक", "noun", "घोटकाः", "घोटकस्य", "घोटकाय", "", "horse"]) + let v = native_list_append(v, ["चूर्ण", "noun", "चूर्णाः", "चूर्णस्य", "चूर्णाय", "", "powder"]) + let v = native_list_append(v, ["वाणिज", "noun", "वाणिजाः", "वाणिजस्य", "वाणिजाय", "", "merchant trader"]) + let v = native_list_append(v, ["बणिज्", "noun", "ब॒णिजः॑", "ब॒णिजः॑", "ब॒णिजे॑", "", "alternative form of"]) + let v = native_list_append(v, ["क्रोश", "noun", "क्रोशाः॑", "क्रोश॑स्य", "क्रोशा॑य", "", "cry yell shriek"]) + let v = native_list_append(v, ["प्रान्त", "noun", "प्रान्ताः", "प्रान्तस्य", "प्रान्ताय", "", "edge border margin"]) + let v = native_list_append(v, ["मस्त", "noun", "मस्ताः", "मस्तस्य", "मस्ताय", "", "head forehead"]) + let v = native_list_append(v, ["मुख", "noun", "मुखा॑नि", "मुख॑स्य", "मुखा॑य", "", "mouth"]) + let v = native_list_append(v, ["धरित्री", "noun", "धरि॑त्र्यः", "धरि॑त्र्याः", "धरि॑त्र्यै", "", "female equivalent of"]) + let v = native_list_append(v, ["छल्ली", "noun", "छल्ल्यः", "छल्ल्याः", "छल्ल्यै", "", "bark"]) + let v = native_list_append(v, ["वसति", "noun", "व॒स॒तयः॑", "व॒स॒तेः", "व॒स॒तये॑", "", "staying dwelling abiding"]) + let v = native_list_append(v, ["गोल", "noun", "गोलाः", "गोलस्य", "गोलाय", "", "a ball"]) + let v = native_list_append(v, ["सभा", "noun", "स॒भाः", "स॒भायाः॑", "स॒भायै॑", "", "an assembly congregation"]) + let v = native_list_append(v, ["क्रव्य", "noun", "क्र॒व्याणि॑", "क्र॒व्यस्य॑", "क्र॒व्याय॑", "", "raw flesh carrion"]) + let v = native_list_append(v, ["तन्त्री", "noun", "तन्त्र्यः", "तन्त्र्याः", "तन्त्र्यै", "", "lute"]) + let v = native_list_append(v, ["कुञ्चिका", "noun", "कुञ्चिकाः", "कुञ्चिकायाः", "कुञ्चिकायै", "", "key"]) + let v = native_list_append(v, ["भूमि", "noun", "भूम॑यः", "भूमेः॑", "भूम॑ये", "", "earth soil ground"]) + let v = native_list_append(v, ["मरु", "noun", "म॒रवः॑", "म॒रोः", "म॒रवे॑", "", "wilderness sandy waste"]) + let v = native_list_append(v, ["वशगा", "noun", "वशगाः", "वशगायाः", "वशगायै", "", "obedient wife"]) + let v = native_list_append(v, ["शौर्य", "noun", "शौर्या॑णि", "शौर्य॑स्य", "शौर्या॑य", "", "heroism valour prowess"]) + let v = native_list_append(v, ["तुच्छ", "noun", "तु॒च्छानि॑", "तु॒च्छस्य॑", "तु॒च्छाय॑", "", "anything trifling"]) + let v = native_list_append(v, ["उपरम", "noun", "उपरमाः", "उपरमस्य", "उपरमाय", "", "cessation stopping expiration"]) + let v = native_list_append(v, ["उदन्या", "noun", "उदन्याः", "उदन्यायाः", "उदन्यायै", "", "desire for water"]) + let v = native_list_append(v, ["विहग", "noun", "विहगाः", "विहगस्य", "विहगाय", "", "bird"]) + let v = native_list_append(v, ["पिप्पलि", "noun", "पिप्पलयः", "पिप्पल्याः", "पिप्पल्यै", "", "berry"]) + let v = native_list_append(v, ["ऋषित्व", "noun", "ऋषित्वानि", "ऋषित्वस्य", "ऋषित्वाय", "", "the state of"]) + let v = native_list_append(v, ["ऋक्षेण", "noun", "ऋक्षेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["आलय", "noun", "आलयाः", "आलयस्य", "आलयाय", "", "house dwelling"]) + let v = native_list_append(v, ["भूर्जपत्त्र", "noun", "भूर्जपत्त्राः", "भूर्जपत्त्रस्य", "भूर्जपत्त्राय", "", "the birch tree"]) + let v = native_list_append(v, ["मषि", "noun", "मषयः", "मषेः", "मषये", "", "powder"]) + let v = native_list_append(v, ["कलम", "noun", "कलमाः", "कलमस्य", "कलमाय", "", "a sort of"]) + let v = native_list_append(v, ["सूत", "noun", "सूत", "", "", "", "quicksilver"]) + let v = native_list_append(v, ["शिष्ट", "noun", "शिष्ट", "", "", "", "anything that remains"]) + let v = native_list_append(v, ["विद्युत्", "noun", "वि॒द्युतः॑", "वि॒द्युतः॑", "वि॒द्युते॑", "", "lightning a flashing"]) + let v = native_list_append(v, ["गाथा", "noun", "गाथाः॑", "गाथा॑याः", "गाथा॑यै", "", "verse stanza especially"]) + let v = native_list_append(v, ["गाथ", "noun", "गा॒थाः", "गा॒थस्य॑", "गा॒थाय॑", "", "song"]) + let v = native_list_append(v, ["अपभ्रंश", "noun", "अ॒प॒भ्रं॒शाः", "अ॒प॒भ्रं॒शस्य॑", "अ॒प॒भ्रं॒शाय॑", "", "falling down a"]) + let v = native_list_append(v, ["घृत", "noun", "घृ॒तानि॑", "घृ॒तस्य॑", "घृ॒ताय॑", "", "ghee"]) + let v = native_list_append(v, ["संहिता", "noun", "संहिताः", "संहितायाः", "संहितायै", "", "conjunction connection union"]) + let v = native_list_append(v, ["शस्त्र", "noun", "शस्त्राणि", "शस्त्रस्य", "शस्त्राय", "", "invocation praise applied"]) + let v = native_list_append(v, ["उद्गातृ", "noun", "उ॒द्गा॒तारः॑", "उ॒द्गा॒तुः", "उ॒द्गा॒त्रे", "", "one of the"]) + let v = native_list_append(v, ["अध्वर्यु", "noun", "अ॒ध्व॒र्यवः॑", "अ॒ध्व॒र्योः", "अ॒ध्व॒र्यवे॑", "", "one who institutes"]) + let v = native_list_append(v, ["स्मृति", "noun", "स्मृत॑यः", "स्मृतेः॑", "स्मृत॑ये", "", "remembrance reminiscence thinking"]) + let v = native_list_append(v, ["मूषक", "noun", "मूषकाः", "मूषकस्य", "मूषकाय", "", "rat mouse"]) + let v = native_list_append(v, ["आखु", "noun", "आ॒खवः॑", "आ॒खोः", "आ॒खवे॑", "", "a mole"]) + let v = native_list_append(v, ["गिरिका", "noun", "गिरिकाः", "गिरिकायाः", "गिरिकायै", "", "making hills ?"]) + let v = native_list_append(v, ["वेणु", "noun", "वेणवः", "वेणोः", "वेणवे", "", "a bamboo reed"]) + let v = native_list_append(v, ["स्वेद", "noun", "स्वेदाः॑", "स्वेद॑स्य", "स्वेदा॑य", "", "sweat perspiration"]) + let v = native_list_append(v, ["कुण्डलिनी", "noun", "कुण्डलिन्यः", "कुण्डलिन्याः", "कुण्डलिन्यै", "", "Cocculus cordifolius ⇒"]) + let v = native_list_append(v, ["मण्डल", "noun", "मण्ड॑लानि", "मण्ड॑लस्य", "मण्ड॑लाय", "", "disk especially of"]) + let v = native_list_append(v, ["पवमान", "noun", "पवमानाः", "पवमानस्य", "पवमानाय", "", "wind or the"]) + let v = native_list_append(v, ["काल", "noun", "का॒लाः", "का॒लस्य॑", "का॒लाय॑", "", "a fixed or"]) + let v = native_list_append(v, ["वैश्वानर", "noun", "वै॒श्वा॒न॒राः", "वै॒श्वा॒न॒रस्य॑", "वै॒श्वा॒न॒राय॑", "", "name of Agni"]) + let v = native_list_append(v, ["तूलि", "noun", "तूलयः", "तूल्याः", "तूल्यै", "", "painters brush"]) + let v = native_list_append(v, ["अचित्ति", "noun", "अचित्तयः", "अचित्त्याः", "अचित्त्यै", "", "want of sense"]) + let v = native_list_append(v, ["वैबोधिक", "noun", "वैबोधिकाः", "वैबोधिकस्य", "वैबोधिकाय", "", "one who awakens"]) + let v = native_list_append(v, ["विबोध", "noun", "विबोधाः", "विबोधस्य", "विबोधाय", "", "inattention absence of"]) + let v = native_list_append(v, ["जुहू", "noun", "जु॒ह्वः॑", "जु॒ह्वाः", "जु॒ह्वै", "", "tongue especially of"]) + let v = native_list_append(v, ["साति", "noun", "सा॒तयः॑", "सा॒तेः", "सा॒तये॑", "", "gaining obtaining acquisition"]) + let v = native_list_append(v, ["ภู", "noun", "ภู", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["वृष", "noun", "वृषाः॑", "वृष॑स्य", "वृषा॑य", "", "man male husband"]) + let v = native_list_append(v, ["समर", "noun", "समर", "", "", "", "coming together meeting"]) + let v = native_list_append(v, ["ईषा", "noun", "ई॒षाः", "ई॒षायाः॑", "ई॒षायै॑", "", "the pole or"]) + let v = native_list_append(v, ["रोच", "noun", "रो॒चाः", "रो॒चस्य॑", "रो॒चाय॑", "", "one who lightens"]) + let v = native_list_append(v, ["रुचि", "noun", "रुचयः", "रुच्याः", "रुच्यै", "", "light lustre splendour"]) + let v = native_list_append(v, ["स्वपू", "noun", "स्व॒प्वः॑", "स्व॒प्वाः", "स्व॒प्वै", "", "a broom"]) + let v = native_list_append(v, ["रुधिर", "noun", "रु॒धि॒राः", "रु॒धि॒रस्य॑", "रु॒धि॒राय॑", "", "the bloodred planet"]) + let v = native_list_append(v, ["सा", "noun", "साः", "सः", "से", "", "name of Lakshmi"]) + let v = native_list_append(v, ["दुर्जन", "noun", "दुर्जनाः", "दुर्जनस्य", "दुर्जनाय", "", "bad man villain"]) + let v = native_list_append(v, ["तटाक", "noun", "तटाकाः", "तटाकस्य", "तटाकाय", "", "a pool"]) + let v = native_list_append(v, ["तर्क", "noun", "त॒र्काः", "त॒र्कस्य॑", "त॒र्काय॑", "", "conjecture"]) + let v = native_list_append(v, ["तर्का", "noun", "तर्काः", "तर्कायाः", "तर्कायै", "", "reasoning inquiry ="]) + let v = native_list_append(v, ["जीवित", "noun", "जी॒वि॒तानि॑", "जी॒वि॒तस्य॑", "जी॒वि॒ताय॑", "", "living being"]) + let v = native_list_append(v, ["जुष्ट", "noun", "जुष्टा॑नि", "जुष्ट॑स्य", "जुष्टा॑य", "", "the remnants of"]) + let v = native_list_append(v, ["दृष्टि", "noun", "दृष्ट॑यः", "दृष्टेः॑", "दृष्ट॑ये", "", "seeing viewing beholding"]) + let v = native_list_append(v, ["ದೇವ", "noun", "ದೇವ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ಗಜ", "noun", "ಗಜ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["वसन्त", "noun", "व॒स॒न्ताः", "व॒स॒न्तस्य॑", "व॒स॒न्ताय॑", "", "brilliant season the"]) + let v = native_list_append(v, ["मैत्रेय", "noun", "मैत्रेय", "मैत्रेयस्य", "मैत्रेयाय", "", "Maitreya a bodhisattva"]) + let v = native_list_append(v, ["घूक", "noun", "घूकाः", "घूकस्य", "घूकाय", "", "owl Pañcad. I"]) + let v = native_list_append(v, ["નદી", "noun", "નદ્યઃ", "નદ્યાઃ", "નદ્યૈ", "", "Gujarati script form"]) + let v = native_list_append(v, ["मृदु", "noun", "मृ॒दवः॑", "मृ॒दोः", "मृ॒दवे॑", "", "the planet Saturn"]) + let v = native_list_append(v, ["द्वीप", "noun", "द्वी॒पाः", "द्वी॒पस्य॑", "द्वी॒पाय॑", "", "island peninsula sandbank"]) + let v = native_list_append(v, ["वणिज्", "noun", "व॒णिजः॑", "व॒णिजः॑", "व॒णिजे॑", "", "merchant trader businessman"]) + let v = native_list_append(v, ["पुरु", "noun", "पु॒रवः॑", "पु॒रोः", "पु॒रवे॑", "", "the pollen of"]) + let v = native_list_append(v, ["अन्त", "noun", "अन्ताः॑", "अन्त॑स्य", "अन्ता॑य", "", "end conclusion termination"]) + let v = native_list_append(v, ["भृष्टि", "noun", "भृ॒ष्टयः॑", "भृ॒ष्टेः", "भृ॒ष्टये॑", "", "spike point top"]) + let v = native_list_append(v, ["जीवन्मुक्ति", "noun", "जीवन्मुक्तयः", "जीवन्मुक्तेः", "जीवन्मुक्तये", "", "emancipation while still"]) + let v = native_list_append(v, ["औपरिष्टक", "noun", "औपरिष्टक", "", "", "", "mouth congress Burton"]) + let v = native_list_append(v, ["जघन", "noun", "जघनाः", "जघनस्य", "जघनाय", "", "buttocks"]) + let v = native_list_append(v, ["सुम्न", "noun", "सु॒म्नानि॑", "सु॒म्नस्य॑", "सु॒म्नाय॑", "", "benevolence favour grace"]) + let v = native_list_append(v, ["द्युम्न", "noun", "द्यु॒म्नानि॑", "द्यु॒म्नस्य॑", "द्यु॒म्नाय॑", "", "splendour glory majesty"]) + let v = native_list_append(v, ["दन्त", "noun", "दन्ताः॑", "दन्त॑स्य", "दन्ता॑य", "", "tooth"]) + let v = native_list_append(v, ["काफी", "noun", "काफ्यः", "काफ्याः", "काफ्यै", "", "coffee"]) + let v = native_list_append(v, ["मैथुन", "noun", "मैथुनानि", "मैथुनस्य", "मैथुनाय", "", "sex sexual intercourse"]) + let v = native_list_append(v, ["हस्तमैथुन", "noun", "हस्तमैथुनाः", "हस्तमैथुनस्य", "हस्तमैथुनाय", "", "masturbation"]) + let v = native_list_append(v, ["वीर्य", "noun", "वीर्याणि", "वीर्यस्य", "वीर्याय", "", "manliness valour strength"]) + let v = native_list_append(v, ["रक्त", "noun", "रक्ताः", "रक्तस्य", "रक्ताय", "", "red colour"]) + let v = native_list_append(v, ["विकिपीडिया", "noun", "विकिपीडिया", "", "", "", "Wikipedia"]) + let v = native_list_append(v, ["सङ्गीत", "noun", "सङ्गीतानि", "सङ्गीतस्य", "सङ्गीताय", "", "alternative form of"]) + let v = native_list_append(v, ["सुन्दर", "noun", "सुन्दराः", "सुन्दरस्य", "सुन्दराय", "", "Clerodendrum phlomidis L."]) + let v = native_list_append(v, ["शास्त्र", "noun", "शा॒स्त्राणि॑", "शा॒स्त्रस्य॑", "शा॒स्त्राय॑", "", "order command"]) + let v = native_list_append(v, ["शिला", "noun", "शिलाः", "शिलायाः", "शिलायै", "", "stone rock crag"]) + let v = native_list_append(v, ["रवि", "noun", "र॒वयः॑", "र॒वेः", "र॒वये॑", "", "the sun or"]) + let v = native_list_append(v, ["मूत्रमार्ग", "noun", "मूत्रमार्गाः", "मूत्रमार्गस्य", "मूत्रमार्गाय", "", "the urethra"]) + let v = native_list_append(v, ["रोग", "noun", "रोगाः", "रोगस्य", "रोगाय", "", "‘breaking up of"]) + let v = native_list_append(v, ["चिबुक", "noun", "चिबुकानि", "चिबुकस्य", "चिबुकाय", "", "chin"]) + let v = native_list_append(v, ["श्वान", "noun", "श्वानाः", "श्वानस्य", "श्वानाय", "", "a dog"]) + let v = native_list_append(v, ["विकास", "noun", "विकासाः", "विकासस्य", "विकासाय", "", "development progress"]) + let v = native_list_append(v, ["कण्ठ", "noun", "क॒ण्ठाः", "क॒ण्ठस्य॑", "क॒ण्ठाय॑", "", "throat neck"]) + let v = native_list_append(v, ["मिथ्या", "noun", "मिथ्याः", "मिथ्यायाः", "मिथ्यायै", "", "illusion"]) + let v = native_list_append(v, ["हिमपात", "noun", "हिमपाताः", "हिमपातस्य", "हिमपाताय", "", "snowfall"]) + let v = native_list_append(v, ["चन्द्रबिन्दु", "noun", "चन्द्रबिन्दवः", "चन्द्रबिन्दोः", "चन्द्रबिन्दवे", "", "candrabindu"]) + let v = native_list_append(v, ["अनुस्वार", "noun", "अनुस्वाराः", "अनुस्वारस्य", "अनुस्वाराय", "", "anusvara the after-sound"]) + let v = native_list_append(v, ["संजय", "noun", "संजयाः", "संजयस्य", "संजयाय", "", "conquest victory"]) + let v = native_list_append(v, ["सञ्जय", "noun", "स॒ञ्ज॒याः", "स॒ञ्ज॒यस्य॑", "स॒ञ्ज॒याय॑", "", "pronunciation spelling of"]) + let v = native_list_append(v, ["ধর্ম", "noun", "ধর্ম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["वेश्या", "noun", "वेश्याः", "वेश्यायाः", "वेश्यायै", "", "a prostitute courtesan"]) + let v = native_list_append(v, ["लिपि", "noun", "लिपयः", "लिपेः", "लिपये", "", "writing"]) + let v = native_list_append(v, ["कामुक", "noun", "कामु॑काः", "कामु॑कस्य", "कामु॑काय", "", "a lover gallant"]) + let v = native_list_append(v, ["उद्यान", "noun", "उ॒द्याना॑नि", "उ॒द्यान॑स्य", "उ॒द्याना॑य", "", "park"]) + let v = native_list_append(v, ["काली", "noun", "काल्यः", "काल्याः", "काल्यै", "", "black colour ink"]) + let v = native_list_append(v, ["त्वचा", "noun", "त्वचा", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["कपाल", "noun", "क॒पालाः॑", "क॒पाल॑स्य", "क॒पाला॑य", "", "skull cranium"]) + let v = native_list_append(v, ["लज्जा", "noun", "लज्जाः", "लज्जायाः", "लज्जायै", "", "shame embarrassment modesty"]) + let v = native_list_append(v, ["ज्ञ", "noun", "ज्ञ", "", "", "", "A wise and"]) + let v = native_list_append(v, ["मार्ग", "noun", "मार्गाः", "मार्गस्य", "मार्गाय", "", "way road route"]) + let v = native_list_append(v, ["वर्ग", "noun", "वर्गाः॑", "वर्ग॑स्य", "वर्गा॑य", "", "a separate division"]) + let v = native_list_append(v, ["वर्णमाला", "noun", "वर्णमालाः", "वर्णमालायाः", "वर्णमालायै", "", "order or series"]) + let v = native_list_append(v, ["निरोध", "noun", "निरोधाः", "निरोधस्य", "निरोधाय", "", "confinement"]) + let v = native_list_append(v, ["सुलभ", "noun", "सुलभाः", "सुलभस्य", "सुलभाय", "", "the fire at"]) + let v = native_list_append(v, ["करण", "noun", "करणाः", "करणस्य", "करणाय", "", "helper companion"]) + let v = native_list_append(v, ["शुभ", "noun", "शुभानि", "शुभस्य", "शुभाय", "", "anything bright or"]) + let v = native_list_append(v, ["अशुभ", "noun", "अशुभ", "", "", "", "harm"]) + let v = native_list_append(v, ["चतुरङ्ग", "noun", "चतु॑रङ्गाः", "चतु॑रङ्गस्य", "चतु॑रङ्गाय", "", "Cucumis utilissimus"]) + let v = native_list_append(v, ["आकाशगङ्गा", "noun", "आकाशगङ्गा", "", "", "", "A name for"]) + let v = native_list_append(v, ["बोधि", "noun", "बोधयः", "बोधेः", "बोधये", "", "Buddhism Jainism bodhi"]) + let v = native_list_append(v, ["व्याघ्र", "noun", "व्या॒घ्राः", "व्या॒घ्रस्य॑", "व्या॒घ्राय॑", "", "a tiger not"]) + let v = native_list_append(v, ["विष्णु", "noun", "विष्ण॑वः", "विष्णोः॑", "विष्ण॑वे", "", "Vishnu"]) + let v = native_list_append(v, ["व्याकरण", "noun", "व्याकरणानि", "व्याकरणस्य", "व्याकरणाय", "", "separation distinction discrimination"]) + let v = native_list_append(v, ["राज्ञी", "noun", "राज्ञ्यः॑", "राज्ञ्याः॑", "राज्ञ्यै॑", "", "queen princess the"]) + let v = native_list_append(v, ["देवराज", "noun", "दे॒व॒रा॒जाः", "दे॒व॒रा॒जस्य॑", "दे॒व॒रा॒जाय॑", "", "divine ruler TBr."]) + let v = native_list_append(v, ["पुरी", "noun", "पुर्यः", "पुर्याः", "पुर्यै", "", "fortress castle town"]) + let v = native_list_append(v, ["श्याम", "noun", "श्या॒माः", "श्या॒मस्य॑", "श्या॒माय॑", "", "a black bull"]) + let v = native_list_append(v, ["विमान", "noun", "वि॒मानाः॑", "वि॒मान॑स्य", "वि॒माना॑य", "", "a car or"]) + let v = native_list_append(v, ["वर", "noun", "वराः॑", "वर॑स्य", "वरा॑य", "", "chooser one who"]) + let v = native_list_append(v, ["अश्वा", "noun", "अश्वाः॑", "अश्वा॑याः", "अश्वा॑यै", "", "mare"]) + let v = native_list_append(v, ["कर्पर", "noun", "कर्पराः", "कर्परस्य", "कर्पराय", "", "cup pot bowl"]) + let v = native_list_append(v, ["राजि", "noun", "राज॑यः", "राजेः॑", "राज॑ये", "", "a streak line"]) + let v = native_list_append(v, ["राशि", "noun", "रा॒शयः॑", "रा॒शेः", "रा॒शये॑", "", "a heap mass"]) + let v = native_list_append(v, ["नक्षत्र", "noun", "नक्ष॑त्राणि", "नक्ष॑त्रस्य", "नक्ष॑त्राय", "", "a star or"]) + let v = native_list_append(v, ["श्रमण", "noun", "श्रमणाः", "श्रमणस्य", "श्रमणाय", "", "one who performs"]) + let v = native_list_append(v, ["श्रम", "noun", "श्रमाः", "श्रमस्य", "श्रमाय", "", "fatigue weariness exhaustion"]) + let v = native_list_append(v, ["देवभाषा", "noun", "देवभाषाः", "देवभाषायाः", "देवभाषायै", "", "Sanskrit"]) + let v = native_list_append(v, ["मलिक", "noun", "मलिकाः", "मलिकस्य", "मलिकाय", "", "king Cat."]) + let v = native_list_append(v, ["उदाहरण", "noun", "उदाहरणानि", "उदाहरणस्य", "उदाहरणाय", "", "the act of"]) + let v = native_list_append(v, ["प्रमुख", "noun", "प्रमुखाः", "प्रमुखस्य", "प्रमुखाय", "", "chief respectable man"]) + let v = native_list_append(v, ["परिचय", "noun", "परिचयाः", "परिचयस्य", "परिचयाय", "", "heaping up accumulation"]) + let v = native_list_append(v, ["घटना", "noun", "घटनाः", "घटनायाः", "घटनायै", "", "exertion motion acting"]) + let v = native_list_append(v, ["शाब्दिक", "noun", "शा॒ब्दि॒काः", "शा॒ब्दि॒कस्य॑", "शा॒ब्दि॒काय॑", "", "conversant with words"]) + let v = native_list_append(v, ["शासन", "noun", "शासनानि", "शासनस्य", "शासनाय", "", "order edict command"]) + let v = native_list_append(v, ["उपसर्ग", "noun", "उपसर्गाः", "उपसर्गस्य", "उपसर्गाय", "", "A nipāta particle"]) + let v = native_list_append(v, ["रहस्य", "noun", "रहस्यानि", "रहस्यस्य", "रहस्याय", "", "a secret any"]) + let v = native_list_append(v, ["कविता", "noun", "कविताः", "कवितायाः", "कवितायै", "", "poetry ornate style"]) + let v = native_list_append(v, ["સંસ્કૃત", "noun", "સંસ્કૃત", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["व्यक्ति", "noun", "व्यक्तयः", "व्यक्तेः", "व्यक्तये", "", "visible appearance or"]) + let v = native_list_append(v, ["तित्तरी", "noun", "तित्तरी", "", "", "", "butterfly"]) + let v = native_list_append(v, ["મુખ", "noun", "મુખ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["भण्टाकी", "noun", "भण्टाक्यः", "भण्टाक्याः", "भण्टाक्यै", "", "brinjal aubergine eggplant"]) + let v = native_list_append(v, ["भण्डाकी", "noun", "भण्डाक्यः", "भण्डाक्याः", "भण्डाक्यै", "", "brinjal Solanum melongena"]) + let v = native_list_append(v, ["समाचार", "noun", "समाचाराः", "समाचारस्य", "समाचाराय", "", "equal manners or"]) + let v = native_list_append(v, ["चीन", "noun", "चीनाः", "चीनस्य", "चीनाय", "", "the Cīna or"]) + let v = native_list_append(v, ["अद्भुत", "noun", "अद्भुताः", "अद्भुतस्य", "अद्भुताय", "", "the marvelous in"]) + let v = native_list_append(v, ["राष्ट्र", "noun", "रा॒ष्ट्राणि॑", "रा॒ष्ट्रस्य॑", "रा॒ष्ट्राय॑", "", "a kingdom realm"]) + let v = native_list_append(v, ["ध्वज", "noun", "ध्व॒जाः", "ध्व॒जस्य॑", "ध्व॒जाय॑", "", "a flag-staff"]) + let v = native_list_append(v, ["रक्षा", "noun", "रक्षाः", "रक्षायाः", "रक्षायै", "", "the act of"]) + let v = native_list_append(v, ["ভারত", "noun", "ভারত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["पर्याय", "noun", "पर्यायाः", "पर्यायस्य", "पर्यायाय", "", "method arrangement"]) + let v = native_list_append(v, ["लेख", "noun", "लेखाः", "लेखस्य", "लेखाय", "", "a line stroke"]) + let v = native_list_append(v, ["स्खलन", "noun", "स्खलन", "", "", "", "stumbling tottering tripping"]) + let v = native_list_append(v, ["संज्ञा", "noun", "सं॒ज्ञाः", "सं॒ज्ञायाः॑", "सं॒ज्ञायै॑", "", "agreement mutual understanding"]) + let v = native_list_append(v, ["जल", "noun", "ज॒लाः", "ज॒लस्य॑", "ज॒लाय॑", "", "a stupid man"]) + let v = native_list_append(v, ["सहोदर", "noun", "सहोदराः", "सहोदरस्य", "सहोदराय", "", "sibling brother"]) + let v = native_list_append(v, ["हिंसा", "noun", "हिंसा", "", "", "", "injury mischief wrong"]) + let v = native_list_append(v, ["विश्पति", "noun", "वि॒श्पत॑यः", "वि॒श्पतेः॑", "वि॒श्पत॑ये", "", "the chief of"]) + let v = native_list_append(v, ["मर्मन्", "noun", "मर्मा॑णि", "मर्म॑णः", "मर्म॑णे", "", "mortal spot vulnerable"]) + let v = native_list_append(v, ["नड", "noun", "नडाः", "नडस्य", "नडाय", "", "tropical reed Phragmites"]) + let v = native_list_append(v, ["मेथि", "noun", "मेथयः", "मेथेः", "मेथये", "", "a pillar post"]) + let v = native_list_append(v, ["शस्ति", "noun", "शस्तयः", "शस्त्याः", "शस्त्यै", "", "praise a hymn"]) + let v = native_list_append(v, ["रजस्", "noun", "रजां॑सि", "रज॑सः", "रज॑से", "", "atmosphere space between"]) + let v = native_list_append(v, ["उक्ति", "noun", "उ॒क्तयः॑", "उ॒क्तेः", "उ॒क्तये॑", "", "sentence proclamation speech"]) + let v = native_list_append(v, ["उक्त", "noun", "उ॒क्तानि॑", "उ॒क्तस्य॑", "उ॒क्ताय॑", "", "word sentence Śiś."]) + let v = native_list_append(v, ["मृध", "noun", "मृधाः", "मृधस्य", "मृधाय", "", "fight battle war"]) + let v = native_list_append(v, ["संदेश", "noun", "संदेशाः", "संदेशस्य", "संदेशाय", "", "communication of intelligence"]) + let v = native_list_append(v, ["कृप्", "noun", "कृप्", "", "", "", "beautiful appearance beauty"]) + let v = native_list_append(v, ["बर्हिस्", "noun", "ब॒र्हींषि॑", "ब॒र्हिषः॑", "ब॒र्हिषे॑", "", "a bed cushion"]) + let v = native_list_append(v, ["अर्हत्", "noun", "अर्हन्तः", "अर्हतः", "अर्हते", "", "arhat a buddha"]) + let v = native_list_append(v, ["डमरु", "noun", "डमरवः", "डमरोः", "डमरवे", "", "a sacred drum"]) + let v = native_list_append(v, ["वज्र", "noun", "वज्राः॑", "वज्र॑स्य", "वज्रा॑य", "", "the hard or"]) + let v = native_list_append(v, ["वेदी", "noun", "वेद्यः", "वेद्याः", "वेद्यै", "", "name of Saraswati"]) + let v = native_list_append(v, ["चैत्य", "noun", "चैत्याः", "चैत्यस्य", "चैत्याय", "", "the individual soul"]) + let v = native_list_append(v, ["रत्न", "noun", "रत्ना॑नि", "रत्न॑स्य", "रत्ना॑य", "", "gift present goods"]) + let v = native_list_append(v, ["कोटि", "noun", "कोटयः", "कोटेः", "कोटये", "", "the curved end"]) + let v = native_list_append(v, ["बृहस्पतिवार", "noun", "बृहस्पतिवाराः", "बृहस्पतिवारस्य", "बृहस्पतिवाराय", "", "Thursday"]) + let v = native_list_append(v, ["यज्ञ", "noun", "य॒ज्ञाः", "य॒ज्ञस्य॑", "य॒ज्ञाय॑", "", "worship devotion prayer"]) + let v = native_list_append(v, ["यजुर्वेद", "noun", "य॒जु॒र्वेदाः॑", "य॒जु॒र्वेद॑स्य", "य॒जु॒र्वेदा॑य", "", "Yajurveda second of"]) + let v = native_list_append(v, ["सत्संग", "noun", "सत्संग", "", "", "", "A company of"]) + let v = native_list_append(v, ["कालिदास", "noun", "कालिदासाः", "कालिदासस्य", "कालिदासाय", "", "A celebrated Sanskrit"]) + let v = native_list_append(v, ["वृत्त", "noun", "वृ॒त्ताः", "वृ॒त्तस्य॑", "वृ॒त्ताय॑", "", "tortoise"]) + let v = native_list_append(v, ["मद", "noun", "मदाः", "मदस्य", "मदाय", "", "hilarity rapture excitement"]) + let v = native_list_append(v, ["केतक", "noun", "केतकाः", "केतकस्य", "केतकाय", "", "screw pine Pandanus"]) + let v = native_list_append(v, ["क्षितिज", "noun", "क्षितिज", "", "", "", "a tree"]) + let v = native_list_append(v, ["साम्राज्य", "noun", "साम्रा॑ज्यानि", "साम्रा॑ज्यस्य", "साम्रा॑ज्याय", "", "empire"]) + let v = native_list_append(v, ["कर्म", "noun", "कर्म", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["नायक", "noun", "नायकाः", "नायकस्य", "नायकाय", "", "guide leader chief"]) + let v = native_list_append(v, ["ईर्ष्या", "noun", "ई॒र्ष्याः", "ई॒र्ष्यायाः॑", "ई॒र्ष्यायै॑", "", "envy or impatience"]) + let v = native_list_append(v, ["চীন", "noun", "চীন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["अद्रि", "noun", "अद्र॑यः", "अद्रेः॑", "अद्र॑ये", "", "rock stone"]) + let v = native_list_append(v, ["पुर्", "noun", "पुरः॑", "पु॒रः", "पु॒रे", "", "stronghold fortress"]) + let v = native_list_append(v, ["वर्ण", "noun", "वर्णाः॑", "वर्ण॑स्य", "वर्णा॑य", "", "covering cloak mantle"]) + let v = native_list_append(v, ["गविष्टि", "noun", "गवि॑ष्टयः", "गवि॑ष्टेः", "गवि॑ष्टये", "", "desire eagerness ardor"]) + let v = native_list_append(v, ["गृहपति", "noun", "गृ॒ह॒पत॑यः", "गृ॒ह॒पतेः॑", "गृ॒ह॒पत॑ये", "", "householder"]) + let v = native_list_append(v, ["इन्दु", "noun", "इन्द॑वः", "इन्दोः॑", "इन्द॑वे", "", "a drop especially"]) + let v = native_list_append(v, ["श्रद्धा", "noun", "श्र॒द्धाः", "श्र॒द्धायाः॑", "श्र॒द्धायै॑", "", "faith trust confidence"]) + let v = native_list_append(v, ["मन्यु", "noun", "म॒न्यवः॑", "म॒न्योः", "म॒न्यवे॑", "", "mind spirit"]) + let v = native_list_append(v, ["धातृ", "noun", "धा॒तारः॑", "धा॒तुः", "धा॒त्रे", "", "creator founder"]) + let v = native_list_append(v, ["प्रजापति", "noun", "प्र॒जाप॑तयः", "प्र॒जाप॑तेः", "प्र॒जाप॑तये", "", "Prajapati a deity"]) + let v = native_list_append(v, ["अदिति", "noun", "अदि॑तयः", "अदि॑तेः", "अदि॑तये", "", "freedom safety"]) + let v = native_list_append(v, ["अघ्न्या", "noun", "अ॒घ्न्याः", "अ॒घ्न्यायाः॑", "अ॒घ्न्यायै॑", "", "a cow"]) + let v = native_list_append(v, ["ओषधि", "noun", "ओष॑धयः", "ओष॑धेः", "ओष॑धये", "", "an herb plant"]) + let v = native_list_append(v, ["सुर", "noun", "सुराः", "सुरस्य", "सुराय", "", "god divine deity"]) + let v = native_list_append(v, ["दास", "noun", "दासाः॑", "दास॑स्य", "दासा॑य", "", "demon"]) + let v = native_list_append(v, ["दस्यु", "noun", "दस्यवः", "दस्योः", "दस्यवे", "", "impious man"]) + let v = native_list_append(v, ["शल्मलि", "noun", "शल्मलयः", "शल्मलेः", "शल्मलये", "", "silk-cotton tree"]) + let v = native_list_append(v, ["पुरंधि", "noun", "पुरं॑धयः", "पुरं॑धेः", "पुरं॑धये", "", "woman"]) + let v = native_list_append(v, ["ब्रह्मोद्य", "noun", "ब्र॒ह्मोद्या॑नि", "ब्र॒ह्मोद्य॑स्य", "ब्र॒ह्मोद्या॑य", "", "theological contest"]) + let v = native_list_append(v, ["सूक्त", "noun", "सू॒क्तानि॑", "सू॒क्तस्य॑", "सू॒क्ताय॑", "", "good speech"]) + let v = native_list_append(v, ["असत्", "noun", "अस॑न्ति", "अस॑तः", "अस॑ते", "", "non-existence"]) + let v = native_list_append(v, ["विराज्", "noun", "वि॒राज्ञ्यः॑", "वि॒राज्ञ्याः॑", "वि॒राज्ञ्यै॑", "", "excellence majesty dignity"]) + let v = native_list_append(v, ["पारग", "noun", "पारगाणि", "पारगस्य", "पारगाय", "", "fulfillment of a"]) + let v = native_list_append(v, ["हिमवत्", "noun", "हि॒म॒वन्तः॑", "हि॒म॒वतः॑", "हि॒म॒वते॑", "", "a snowy mountain"]) + let v = native_list_append(v, ["यव", "noun", "यवाः॑", "यव॑स्य", "यवा॑य", "", "barley"]) + let v = native_list_append(v, ["अश्वत्थ", "noun", "अ॒श्व॒त्थाः", "अ॒श्व॒त्थस्य॑", "अ॒श्व॒त्थाय॑", "", "ashvattha sacred fig"]) + let v = native_list_append(v, ["प्रमन्थ", "noun", "प्रमन्थाः", "प्रमन्थस्य", "प्रमन्थाय", "", "a stick used"]) + let v = native_list_append(v, ["न्यग्रोध", "noun", "न्य॒ग्रोधाः॑", "न्य॒ग्रोध॑स्य", "न्य॒ग्रोधा॑य", "", "banyan Ficus benghalensis"]) + let v = native_list_append(v, ["पिप्पल", "noun", "पिप्पलाः", "पिप्पलस्य", "पिप्पलाय", "", "berry especially of"]) + let v = native_list_append(v, ["वराह", "noun", "व॒रा॒हाः", "व॒रा॒हस्य॑", "व॒रा॒हाय॑", "", "boar hog pig"]) + let v = native_list_append(v, ["महिष", "noun", "म॒हि॒षाः", "म॒हि॒षस्य॑", "म॒हि॒षाय॑", "", "buffalo"]) + let v = native_list_append(v, ["कपि", "noun", "कपयः", "कपेः", "कपये", "", "ape monkey"]) + let v = native_list_append(v, ["वानर", "noun", "वानराः", "वानरस्य", "वानराय", "", "monkey any such"]) + let v = native_list_append(v, ["चक्रवाक", "noun", "चक्रवाक", "", "", "", "ruddy shelduck"]) + let v = native_list_append(v, ["मयूरी", "noun", "म॒यू॒र्यः॑", "म॒यू॒र्याः", "म॒यू॒र्यै", "", "peahen RV. etc."]) + let v = native_list_append(v, ["शुक", "noun", "शुकाः॑", "शुक॑स्य", "शुका॑य", "", "parrot"]) + let v = native_list_append(v, ["अनार्य", "noun", "अनार्याः", "अनार्यस्य", "अनार्याय", "", "a non-Aryan"]) + let v = native_list_append(v, ["समिति", "noun", "समितयः", "समित्याः", "समित्यै", "", "committee coming together"]) + let v = native_list_append(v, ["ग्राम", "noun", "ग्रामाः॑", "ग्राम॑स्य", "ग्रामा॑य", "", "an inhabited place"]) + let v = native_list_append(v, ["गृहपत्नी", "noun", "गृहपत्न्यः", "गृहपत्न्याः", "गृहपत्न्यै", "", "mistress of a"]) + let v = native_list_append(v, ["ऋण", "noun", "ऋ॒णानि॑", "ऋ॒णस्य॑", "ऋ॒णाय॑", "", "anything due obligation"]) + let v = native_list_append(v, ["सुराकार", "noun", "सुराकाराणि", "सुराकारस्य", "सुराकाराय", "", "distiller VS."]) + let v = native_list_append(v, ["अरित्र", "noun", "अ॒रित्राः॑", "अ॒रित्र॑स्य", "अ॒रित्रा॑य", "", "oar"]) + let v = native_list_append(v, ["निष्क", "noun", "निष्काः", "निष्कस्य", "निष्काय", "", "a golden ornament"]) + let v = native_list_append(v, ["सभास्थाणु", "noun", "सभास्थाणवः", "सभास्थाणोः", "सभास्थाणवे", "", "gambling table"]) + let v = native_list_append(v, ["कितव", "noun", "कितवाः", "कितवस्य", "कितवाय", "", "gambler RV. VS."]) + let v = native_list_append(v, ["धूर्त", "noun", "धूर्ताः", "धूर्तस्य", "धूर्ताय", "", "rogue cheater trickster"]) + let v = native_list_append(v, ["दुन्दुभि", "noun", "दु॒न्दु॒भयः॑", "दु॒न्दु॒भेः", "दु॒न्दु॒भये॑", "", "a kind of"]) + let v = native_list_append(v, ["वाण", "noun", "वा॒णाः", "वा॒णस्य॑", "वा॒णाय॑", "", "sounding a sound"]) + let v = native_list_append(v, ["प्रपाठक", "noun", "प्रपाठकाः", "प्रपाठकस्य", "प्रपाठकाय", "", "lecture as a"]) + let v = native_list_append(v, ["दशत्", "noun", "द॒शतः॑", "द॒शतः॑", "द॒शते॑", "", "a group of"]) + let v = native_list_append(v, ["रसा", "noun", "र॒साः", "र॒सायाः॑", "र॒सायै॑", "", "moisture humidity"]) + let v = native_list_append(v, ["बालक", "noun", "बालकाः", "बालकस्य", "बालकाय", "", "child boy youth"]) + let v = native_list_append(v, ["अमर", "noun", "अ॒म॒राः", "अ॒म॒रस्य॑", "अ॒म॒राय॑", "", "a god a"]) + let v = native_list_append(v, ["काण्ड", "noun", "काण्डाः॑", "काण्ड॑स्य", "काण्डा॑य", "", "a joint of"]) + let v = native_list_append(v, ["अध्याय", "noun", "अध्यायाः", "अध्यायस्य", "अध्यायाय", "", "lesson lecture"]) + let v = native_list_append(v, ["खिल", "noun", "खिलाः", "खिलस्य", "खिलाय", "", "unused land between"]) + let v = native_list_append(v, ["ईशान", "noun", "ईशा॑नाः", "ईशा॑नस्य", "ईशा॑नाय", "", "ruler lord AV."]) + let v = native_list_append(v, ["महादव", "noun", "महादवाः", "महादवस्य", "महादवाय", "", "great god"]) + let v = native_list_append(v, ["ब्रह्म", "noun", "ब्रह्माः", "ब्रह्मस्य", "ब्रह्माय", "", "priest"]) + let v = native_list_append(v, ["आथर्वण", "noun", "आथर्वणाः", "आथर्वणस्य", "आथर्वणाय", "", "a descendant of"]) + let v = native_list_append(v, ["अथर्वाङ्गिरस", "noun", "अथर्वाङ्गिरसानि", "अथर्वाङ्गिरसस्य", "अथर्वाङ्गिरसाय", "", "the work or"]) + let v = native_list_append(v, ["भेषज", "noun", "भे॒ष॒जानि॑", "भे॒ष॒जस्य॑", "भे॒ष॒जाय॑", "", "medicine remedy drug"]) + let v = native_list_append(v, ["यातु", "noun", "या॒तवः॑", "या॒तोः", "या॒तवे॑", "", "witchcraft black magic"]) + let v = native_list_append(v, ["बह्वृच", "noun", "बह्वृचाः", "बह्वृचस्य", "बह्वृचाय", "", "a person knowledgeable"]) + let v = native_list_append(v, ["सवन", "noun", "सवनानि", "सवनस्य", "सवनाय", "", "ritual pressing of"]) + let v = native_list_append(v, ["विधान", "noun", "विधानानि", "विधानस्य", "विधानाय", "", "order measure arrangement"]) + let v = native_list_append(v, ["पुरोहित", "noun", "पु॒रोहि॑ताः", "पु॒रोहि॑तस्य", "पु॒रोहि॑ताय", "", "one commissioned or"]) + let v = native_list_append(v, ["ब्रह्मवेद", "noun", "ब्रह्मवेदाः", "ब्रह्मवेदस्य", "ब्रह्मवेदाय", "", "Atharvaveda AV. Anukr."]) + let v = native_list_append(v, ["ब्रह्मविद्या", "noun", "ब्रह्मविद्याः", "ब्रह्मविद्यायाः", "ब्रह्मविद्यायै", "", "knowledge of Brahman"]) + let v = native_list_append(v, ["तक्मन्", "noun", "त॒क्मानः॑", "त॒क्मनः॑", "त॒क्मने॑", "", "a disease or"]) + let v = native_list_append(v, ["विधि", "noun", "विधयः", "विधेः", "विधये", "", "worshipper AitBr."]) + let v = native_list_append(v, ["সূর্য", "noun", "সূর্য", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["अर्थवाद", "noun", "अर्थवादाः", "अर्थवादस्य", "अर्थवादाय", "", "explanation of the"]) + let v = native_list_append(v, ["ધર્મ", "noun", "ધર્માઃ", "ધર્મસ્ય", "ધર્માય", "", "Gujarati script form"]) + let v = native_list_append(v, ["उपनिषद्", "noun", "उपनिषद्", "", "", "", "an esoteric or"]) + let v = native_list_append(v, ["नि", "noun", "नयः॑", "नेः", "नये॑", "", "alternative form of"]) + let v = native_list_append(v, ["अग्निष्टोम", "noun", "अग्निष्टोमाः", "अग्निष्टोमस्य", "अग्निष्टोमाय", "", "a ritual variation"]) + let v = native_list_append(v, ["गवामयन", "noun", "गवामयनानि", "गवामयनस्य", "गवामयनाय", "", "a ceremony"]) + let v = native_list_append(v, ["अग्निहोत्र", "noun", "अ॒ग्नि॒हो॒त्राणि॑", "अ॒ग्नि॒हो॒त्रस्य॑", "अ॒ग्नि॒हो॒त्राय॑", "", "a sacrifice to"]) + let v = native_list_append(v, ["अग्न्याधान", "noun", "अग्न्याधानानि", "अग्न्याधानस्य", "अग्न्याधानाय", "", "the placing of"]) + let v = native_list_append(v, ["नाचिकेत", "noun", "नाचिकेत", "", "", "", "fire L."]) + let v = native_list_append(v, ["मध्यम", "noun", "म॒ध्य॒माः", "म॒ध्य॒मस्य॑", "म॒ध्य॒माय॑", "", "a prince whose"]) + let v = native_list_append(v, ["ज्ञानकाण्ड", "noun", "ज्ञानकाण्डानि", "ज्ञानकाण्डस्य", "ज्ञानकाण्डाय", "", "department of Vedic"]) + let v = native_list_append(v, ["कर्मकाण्ड", "noun", "कर्मकाण्डानि", "कर्मकाण्डस्य", "कर्मकाण्डाय", "", "department of Vedic"]) + let v = native_list_append(v, ["आत्मन्", "noun", "आ॒त्मानः॑", "आ॒त्मनः॑", "आ॒त्मने॑", "", "breath RV."]) + let v = native_list_append(v, ["मायिन्", "noun", "मायिन्", "", "", "", "magician juggler Kathās."]) + let v = native_list_append(v, ["अन्तर्यामिन्", "noun", "अन्तर्यामिन्", "", "", "", "inner guide regulator"]) + let v = native_list_append(v, ["देवयान", "noun", "देवयानानि", "देवयानस्य", "देवयानाय", "", "path leading to"]) + let v = native_list_append(v, ["पितृयाण", "noun", "पितृयाणाः", "पितृयाणस्य", "पितृयाणाय", "", "the path leading"]) + let v = native_list_append(v, ["चण्डाल", "noun", "चण्डालाः", "चण्डालस्य", "चण्डालाय", "", "outcast one born"]) + let v = native_list_append(v, ["प्रज्ञा", "noun", "प्र॒ज्ञाः", "प्र॒ज्ञायाः॑", "प्र॒ज्ञायै॑", "", "wisdom intelligence knowledge"]) + let v = native_list_append(v, ["লেখক", "noun", "লেখক", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["उक्थ", "noun", "उ॒क्थानि॑", "उ॒क्थस्य॑", "उ॒क्थाय॑", "", "saying"]) + let v = native_list_append(v, ["उद्गीथ", "noun", "उद्गीथाः", "उद्गीथस्य", "उद्गीथाय", "", "chanting of the"]) + let v = native_list_append(v, ["जीवात्मन्", "noun", "जीवात्मन्", "", "", "", "the personal soul"]) + let v = native_list_append(v, ["विकार", "noun", "विकाराः", "विकारस्य", "विकाराय", "", "the syllable vi"]) + let v = native_list_append(v, ["शिवलिङ्ग", "noun", "शिवलिङ्ग", "", "", "", "lingam Shivalinga an"]) + let v = native_list_append(v, ["भूमन्", "noun", "भूमा॑नि", "भूम्नः॑", "भूम्ने॑", "", "world RV. AV."]) + let v = native_list_append(v, ["व्याहृति", "noun", "व्याहृतयः", "व्याहृत्याः", "व्याहृत्यै", "", "utterance speech statement"]) + let v = native_list_append(v, ["ಇತಿಹಾಸ", "noun", "ಇತಿಹಾಸ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ઇતિહાસ", "noun", "ઇતિહાસ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["भूर्", "noun", "भूर्", "", "", "", "earth as the"]) + let v = native_list_append(v, ["भुवस्", "noun", "भुवस्", "", "", "", "air as the"]) + let v = native_list_append(v, ["भुवर्", "noun", "भुवर्", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["गर्भधारण", "noun", "गर्भधारणानि", "गर्भधारणस्य", "गर्भधारणाय", "", "pregnancy"]) + let v = native_list_append(v, ["সংস্কৃত", "noun", "সংস্কৃত", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["स्वर्", "noun", "स्वर्", "सूरः॑", "सू॒रे", "", "the sun"]) + let v = native_list_append(v, ["खिलकाण्ड", "noun", "खिलकाण्डानि", "खिलकाण्डस्य", "खिलकाण्डाय", "", "supplementary section appendix"]) + let v = native_list_append(v, ["वंश", "noun", "वं॒शाः", "वं॒शस्य॑", "वं॒शाय॑", "", "bamboo cane cane"]) + let v = native_list_append(v, ["मधुकाण्ड", "noun", "मधुकाण्डानि", "मधुकाण्डस्य", "मधुकाण्डाय", "", "the first section"]) + let v = native_list_append(v, ["গঙ্গা", "noun", "গঙ্গা", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["मुण्ड", "noun", "मुण्डाः", "मुण्डस्य", "मुण्डाय", "", "name of Shiva"]) + let v = native_list_append(v, ["अजाति", "noun", "अजातयः", "अजात्याः", "अजात्यै", "", "sham merchandise Yājñ."]) + let v = native_list_append(v, ["वैतथ्य", "noun", "वैतथ्यानि", "वैतथ्यस्य", "वैतथ्याय", "", "falseness"]) + let v = native_list_append(v, ["चरण", "noun", "चरणाः", "चरणस्य", "चरणाय", "", "foot Gobh. Mn."]) + let v = native_list_append(v, ["वैतान", "noun", "वैतानाः", "वैतानस्य", "वैतानाय", "", "canopy BhP."]) + let v = native_list_append(v, ["यजमान", "noun", "यज॑मानाः", "यज॑मानस्य", "यज॑मानाय", "", "one who commissions"]) + let v = native_list_append(v, ["वेदि", "noun", "वेद॑यः", "वेदेः॑", "वेद॑ये", "", "knowledge science"]) + let v = native_list_append(v, ["अग्न्याधेय", "noun", "अग्न्याधेयानि", "अग्न्याधेयस्य", "अग्न्याधेयाय", "", "placing of the"]) + let v = native_list_append(v, ["हविस्", "noun", "ह॒वींषि॑", "ह॒विषः॑", "ह॒विषे॑", "", "oblation offering anything"]) + let v = native_list_append(v, ["दर्शपूर्णमास", "noun", "दर्शपूर्णमासाः", "दर्शपूर्णमासस्य", "दर्शपूर्णमासाय", "", "days of the"]) + let v = native_list_append(v, ["चातुर्मास्य", "noun", "चातुर्मास्यानि", "चातुर्मास्यस्य", "चातुर्मास्याय", "", "beginning of a"]) + let v = native_list_append(v, ["सत्त्र", "noun", "स॒त्त्राणि॑", "स॒त्त्रस्य॑", "स॒त्त्राय॑", "", "sacrifice sacrificial session"]) + let v = native_list_append(v, ["उखा", "noun", "उखाः", "उखायाः", "उखायै", "", "a boiler cauldron"]) + let v = native_list_append(v, ["आवसथ्य", "noun", "आवसथ्याः", "आवसथ्यस्य", "आवसथ्याय", "", "domestic fire fire"]) + let v = native_list_append(v, ["वैवाहिक", "noun", "वैवाहिकाः", "वैवाहिकस्य", "वैवाहिकाय", "", "wedding preparations pre-wedding"]) + let v = native_list_append(v, ["पाकयज्ञ", "noun", "पाकयज्ञाः", "पाकयज्ञस्य", "पाकयज्ञाय", "", "sacrifice of a"]) + let v = native_list_append(v, ["जातकर्मन्", "noun", "जातकर्मन्", "", "", "", "birth ceremony in"]) + let v = native_list_append(v, ["नामकरण", "noun", "नामकरणाः", "नामकरणस्य", "नामकरणाय", "", "nominal suffix Nir."]) + let v = native_list_append(v, ["शर्मन्", "noun", "शर्मा॑णि", "शर्म॑णः", "शर्म॑णे", "", "shelter safety RV."]) + let v = native_list_append(v, ["वर्मन्", "noun", "वर्मा॑णि", "वर्म॑णः", "वर्म॑णे", "", "armor RV. etc."]) + let v = native_list_append(v, ["गुप्त", "noun", "गु॒प्ताः", "गु॒प्तस्य॑", "गु॒प्ताय॑", "", "the Gupta dynasty"]) + let v = native_list_append(v, ["गोदान", "noun", "गोदा॑नानि", "गोदा॑नस्य", "गोदा॑नाय", "", "gift of a"]) + let v = native_list_append(v, ["स्नातक", "noun", "स्नातकाः", "स्नातकस्य", "स्नातकाय", "", "a person who"]) + let v = native_list_append(v, ["परिणय", "noun", "परिणयाः", "परिणयस्य", "परिणयाय", "", "leading around"]) + let v = native_list_append(v, ["ब्रह्मयज्ञ", "noun", "ब्रह्मयज्ञाः", "ब्रह्मयज्ञस्य", "ब्रह्मयज्ञाय", "", "recitation from the"]) + let v = native_list_append(v, ["देवयज्ञ", "noun", "देवयज्ञाः", "देवयज्ञस्य", "देवयज्ञाय", "", "sacrifice to the"]) + let v = native_list_append(v, ["तर्पण", "noun", "तर्पणानि", "तर्पणस्य", "तर्पणाय", "", "fullness satisfaction MBh."]) + let v = native_list_append(v, ["पितृयज्ञ", "noun", "पितृयज्ञाः", "पितृयज्ञस्य", "पितृयज्ञाय", "", "oblation made to"]) + let v = native_list_append(v, ["बलि", "noun", "ब॒लयः॑", "ब॒लेः", "ब॒लये॑", "", "offering gift oblation"]) + let v = native_list_append(v, ["भूतयज्ञ", "noun", "भूतयज्ञाः", "भूतयज्ञस्य", "भूतयज्ञाय", "", "a sacrificial offering"]) + let v = native_list_append(v, ["मनुष्ययज्ञ", "noun", "मनुष्ययज्ञाः", "मनुष्ययज्ञस्य", "मनुष्ययज्ञाय", "", "offering of devotion"]) + let v = native_list_append(v, ["पुरोडाश", "noun", "पु॒रो॒डाशाः॑", "पु॒रो॒डाश॑स्य", "पु॒रो॒डाशा॑य", "", "oblation sacrifice"]) + let v = native_list_append(v, ["एकोद्दिष्ट", "noun", "एकोद्दिष्टानि", "एकोद्दिष्टस्य", "एकोद्दिष्टाय", "", "a funerary ceremony"]) + let v = native_list_append(v, ["सपिण्ड", "noun", "सपिण्डाः", "सपिण्डस्य", "सपिण्डाय", "", "deceased relative who"]) + let v = native_list_append(v, ["पितृमेध", "noun", "पितृमेधाः", "पितृमेधस्य", "पितृमेधाय", "", "sacrifice to the"]) + let v = native_list_append(v, ["पार्वण", "noun", "पार्वणाः", "पार्वणस्य", "पार्वणाय", "", "half-month Jyot."]) + let v = native_list_append(v, ["पिण्ड", "noun", "पिण्डाः॑", "पिण्ड॑स्य", "पिण्डा॑य", "", "any round or"]) + let v = native_list_append(v, ["गृह्य", "noun", "गृह्यानि", "गृह्यस्य", "गृह्याय", "", "anus L."]) + let v = native_list_append(v, ["पटल", "noun", "पटलानि", "पटलस्य", "पटलाय", "", "a section or"]) + let v = native_list_append(v, ["आख्यात", "noun", "आख्यातानि", "आख्यातस्य", "आख्याताय", "", "verb"]) + let v = native_list_append(v, ["निपात", "noun", "निपाताः", "निपातस्य", "निपाताय", "", "descent falling"]) + let v = native_list_append(v, ["वृषन्", "noun", "वृषा॑णः", "वृष्णः॑", "वृष्णे॑", "", "man male any"]) + let v = native_list_append(v, ["वचन", "noun", "वचनानि", "वचनस्य", "वचनाय", "", "speaking utterance Sāṃkhyak."]) + let v = native_list_append(v, ["विभक्ति", "noun", "वि॒भ॒क्तयः॑", "वि॒भ॒क्तेः", "वि॒भ॒क्तये॑", "", "separation partition"]) + let v = native_list_append(v, ["कृत्", "noun", "कृत्", "", "", "", "a suffix which"]) + let v = native_list_append(v, ["तद्धित", "noun", "तद्धितानि", "तद्धितस्य", "तद्धिताय", "", "ones welfare Āp."]) + let v = native_list_append(v, ["अनुवाक", "noun", "अनुवाकाः", "अनुवाकस्य", "अनुवाकाय", "", "saying after repeating"]) + let v = native_list_append(v, ["प्रतीक", "noun", "प्रती॑कानि", "प्रती॑कस्य", "प्रती॑काय", "", "exterior surface RV."]) + let v = native_list_append(v, ["কৃষ্ণ", "noun", "কৃষ্ণ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["अष्टक", "noun", "अष्ट॑कानि", "अष्ट॑कस्य", "अष्ट॑काय", "", "an object having"]) + let v = native_list_append(v, ["माधवीय", "noun", "माधवीयानि", "माधवीयस्य", "माधवीयाय", "", "a work of"]) + let v = native_list_append(v, ["आख्यान", "noun", "आख्यानानि", "आख्यानस्य", "आख्यानाय", "", "communication Pāṇ. Kap."]) + let v = native_list_append(v, ["पर्वन्", "noun", "पर्वा॑णि", "पर्व॑णः", "पर्व॑णे", "", "joint limb RV."]) + let v = native_list_append(v, ["उपाख्यान", "noun", "उपाख्यानानि", "उपाख्यानस्य", "उपाख्यानाय", "", "account relation of"]) + let v = native_list_append(v, ["अनुक्रमणिका", "noun", "अनुक्रमणिकाः", "अनुक्रमणिकायाः", "अनुक्रमणिकायै", "", "table of contents"]) + let v = native_list_append(v, ["आदिपर्वन्", "noun", "आदिपर्वन्", "", "", "", "first chapter"]) + let v = native_list_append(v, ["पर्वसंग्रह", "noun", "पर्वसंग्रहाः", "पर्वसंग्रहस्य", "पर्वसंग्रहाय", "", "an introductory text"]) + let v = native_list_append(v, ["गदापर्वन्", "noun", "गदापर्वन्", "", "", "", "part of chapter"]) + let v = native_list_append(v, ["स्वयंवर", "noun", "स्वयंवराः", "स्वयंवरस्य", "स्वयंवराय", "", "self-choice"]) + let v = native_list_append(v, ["भारतवर्ष", "noun", "भारतवर्षाणि", "भारतवर्षस्य", "भारतवर्षाय", "", "realm of the"]) + let v = native_list_append(v, ["गौड", "noun", "गौडाः", "गौडस्य", "गौडाय", "", "a region in"]) + let v = native_list_append(v, ["वैदर्भ", "noun", "वैदर्भाः", "वैदर्भस्य", "वैदर्भाय", "", "a king of"]) + let v = native_list_append(v, ["कुशीलव", "noun", "कुशीलवाः", "कुशीलवस्य", "कुशीलवाय", "", "Kuśa and Lava"]) + let v = native_list_append(v, ["आदिकाव्य", "noun", "आदिकाव्यानि", "आदिकाव्यस्य", "आदिकाव्याय", "", "first court poem"]) + let v = native_list_append(v, ["आर्ष", "noun", "आर्षाः", "आर्षस्य", "आर्षाय", "", "an old form"]) + let v = native_list_append(v, ["रूपक", "noun", "रूपकाः", "रूपकस्य", "रूपकाय", "", "a certain coin"]) + let v = native_list_append(v, ["महाकवि", "noun", "महाकवयः", "महाकवेः", "महाकवये", "", "great poet classical"]) + let v = native_list_append(v, ["महाकाव्य", "noun", "महाकाव्यानि", "महाकाव्यस्य", "महाकाव्याय", "", "great or classical"]) + let v = native_list_append(v, ["प्रशस्ति", "noun", "प्रशस्तयः", "प्रशस्त्याः", "प्रशस्त्यै", "", "glory fame praise"]) + let v = native_list_append(v, ["दिग्नाग", "noun", "दिग्नागाः", "दिग्नागस्य", "दिग्नागाय", "", "the four or"]) + let v = native_list_append(v, ["ยาจก", "noun", "ยาจก", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["चातक", "noun", "चातकाः", "चातकस्य", "चातकाय", "", "Jacobin cuckoo Clamator"]) + let v = native_list_append(v, ["कर्णिकार", "noun", "कर्णिकाराः", "कर्णिकारस्य", "कर्णिकाराय", "", "karnikara tree Pterospermum"]) + let v = native_list_append(v, ["गोविन्द", "noun", "गोविन्दाः", "गोविन्दस्य", "गोविन्दाय", "", "cowherd"]) + let v = native_list_append(v, ["नट", "noun", "नटाः", "नटस्य", "नटाय", "", "dancer mime"]) + let v = native_list_append(v, ["नाटक", "noun", "नाटकाः", "नाटकस्य", "नाटकाय", "", "actor dancer mime"]) + let v = native_list_append(v, ["उपरूपक", "noun", "उपरूपकानि", "उपरूपकस्य", "उपरूपकाय", "", "a drama of"]) + let v = native_list_append(v, ["विदूषक", "noun", "विदूषकाः", "विदूषकस्य", "विदूषकाय", "", "jester fool particularly"]) + let v = native_list_append(v, ["नान्दी", "noun", "नान्द्यः", "नान्द्याः", "नान्द्यै", "", "joy pleasure"]) + let v = native_list_append(v, ["प्रवेशक", "noun", "प्रवेशकाः", "प्रवेशकस्य", "प्रवेशकाय", "", "an entering entrance"]) + let v = native_list_append(v, ["विष्कम्भ", "noun", "विष्कम्भाः", "विष्कम्भस्य", "विष्कम्भाय", "", "support prop Lāṭy."]) + let v = native_list_append(v, ["नाटिका", "noun", "नाटिकाः", "नाटिकायाः", "नाटिकायै", "", "a style of"]) + let v = native_list_append(v, ["प्रहसन", "noun", "प्रहसनानि", "प्रहसनस्य", "प्रहसनाय", "", "laughter amusement mockery"]) + let v = native_list_append(v, ["संगीतशाला", "noun", "संगीतशालाः", "संगीतशालायाः", "संगीतशालायै", "", "music hall Mṛcch."]) + let v = native_list_append(v, ["नेपथ्य", "noun", "नेपथ्याः", "नेपथ्यस्य", "नेपथ्याय", "", "decoration costume MBh."]) + let v = native_list_append(v, ["नीति", "noun", "नीतयः", "नीतेः", "नीतये", "", "leading bringing guidance"]) + let v = native_list_append(v, ["नीतिशास्त्र", "noun", "नीतिशास्त्रानि", "नीतिशास्त्रस्य", "नीतिशास्त्राय", "", "science of politics"]) + let v = native_list_append(v, ["लम्बक", "noun", "लम्बकाः", "लम्बकस्य", "लम्बकाय", "", "perpendicular Āryabh."]) + let v = native_list_append(v, ["अदृष्ट", "noun", "अदृष्टाः", "अदृष्टस्य", "अदृष्टाय", "", "a certain poison"]) + let v = native_list_append(v, ["त्रिज्या", "noun", "त्रिज्याः", "त्रिज्यायाः", "त्रिज्यायै", "", "radius"]) + let v = native_list_append(v, ["प्रजा", "noun", "प्र॒जाः", "प्र॒जायाः॑", "प्र॒जायै॑", "", "procreation"]) + let v = native_list_append(v, ["कर्ता", "noun", "कर्ता", "", "", "", "nominative singular masculine/feminine"]) + let v = native_list_append(v, ["प्रकृति", "noun", "प्रकृतयः", "प्रकृतेः", "प्रकृतये", "", "the original or"]) + let v = native_list_append(v, ["विराम", "noun", "विरामाः", "विरामस्य", "विरामाय", "", "termination stop"]) + let v = native_list_append(v, ["अविद्या", "noun", "अवि॑द्याः", "अवि॑द्यायाः", "अवि॑द्यायै", "", "ignorance particularly in"]) + let v = native_list_append(v, ["प्रधान", "noun", "प्रधानाः", "प्रधानस्य", "प्रधानाय", "", "name of a"]) + let v = native_list_append(v, ["रमण", "noun", "रमणानि", "रमणस्य", "रमणाय", "", "pleasure joy"]) + let v = native_list_append(v, ["रम", "noun", "रम", "", "", "", "lover"]) + let v = native_list_append(v, ["क्रोध", "noun", "क्रोधाः॑", "क्रोध॑स्य", "क्रोधा॑य", "", "anger wrath"]) + let v = native_list_append(v, ["प्राचीन", "noun", "प्राचीनाः", "प्राचीनस्य", "प्राचीनाय", "", "alternative form of"]) + let v = native_list_append(v, ["प्रासाद", "noun", "प्रासादाः", "प्रासादस्य", "प्रासादाय", "", "a lofty seat"]) + let v = native_list_append(v, ["कुक्कुर", "noun", "कुक्कुराः", "कुक्कुरस्य", "कुक्कुराय", "", "a dog"]) + let v = native_list_append(v, ["वाद", "noun", "वादाः", "वादस्य", "वादाय", "", "speech statement Mn."]) + let v = native_list_append(v, ["तृष्णा", "noun", "तृष्णाः॑", "तृष्णा॑याः", "तृष्णा॑यै", "", "thirst desire"]) + let v = native_list_append(v, ["मृगतृष्णा", "noun", "मृगतृष्णाः", "मृगतृष्णायाः", "मृगतृष्णायै", "", "mirage optical illusion"]) + let v = native_list_append(v, ["भिक्षु", "noun", "भिक्षवः", "भिक्षोः", "भिक्षवे", "", "mendicant beggar"]) + let v = native_list_append(v, ["वाहन", "noun", "वाह॑नानि", "वाह॑नस्य", "वाह॑नाय", "", "vehicle carriage horse"]) + let v = native_list_append(v, ["मृदा", "noun", "मृदा", "", "", "", "soil clay"]) + let v = native_list_append(v, ["वाणिज्य", "noun", "वाणिज्य", "", "", "", "commerce"]) + let v = native_list_append(v, ["सन्धि", "noun", "स॒न्धयः॑", "स॒न्धेः", "स॒न्धये॑", "", "alternative spelling of"]) + let v = native_list_append(v, ["कर", "noun", "क॒राः", "क॒रस्य॑", "क॒राय॑", "", "doer maker"]) + let v = native_list_append(v, ["समस्या", "noun", "समस्याः", "समस्यायाः", "समस्यायै", "", "junction union the"]) + let v = native_list_append(v, ["हरण", "noun", "हरणानि", "हरणस्य", "हरणाय", "", "abduction"]) + let v = native_list_append(v, ["कण", "noun", "कणाः॑", "कण॑स्य", "कणा॑य", "", "any minute particle"]) + let v = native_list_append(v, ["काष्ठ", "noun", "काष्ठानि", "काष्ठस्य", "काष्ठाय", "", "wood timber"]) + let v = native_list_append(v, ["हरित्", "noun", "ह॒रितः॑", "ह॒रितः॑", "ह॒रिते॑", "", "a kind of"]) + let v = native_list_append(v, ["रासभी", "noun", "रासभ्यः", "रासभ्याः", "रासभ्यै", "", "female donkey she-ass"]) + let v = native_list_append(v, ["रसभ", "noun", "रसभाः", "रसभस्य", "रसभाय", "", "donkey"]) + let v = native_list_append(v, ["दर्शन", "noun", "दर्श॑नानि", "दर्श॑नस्य", "दर्श॑नाय", "", "philosophy philosophical system"]) + let v = native_list_append(v, ["परा", "noun", "पराः", "परायाः", "परायै", "", "foreign country Kathās."]) + let v = native_list_append(v, ["अपरा", "noun", "अपराः", "अपरायाः", "अपरायै", "", "west L."]) + let v = native_list_append(v, ["विशेष", "noun", "विशेषाः", "विशेषस्य", "विशेषाय", "", "distinction difference GṛŚrS."]) + let v = native_list_append(v, ["ग्रहण", "noun", "ग्रहणानि", "ग्रहणस्य", "ग्रहणाय", "", "eclipse"]) + let v = native_list_append(v, ["प्रहार", "noun", "प्रहाराः", "प्रहारस्य", "प्रहाराय", "", "attack hit"]) + let v = native_list_append(v, ["पराजय", "noun", "पराजयाः", "पराजयस्य", "पराजयाय", "", "being deprived of"]) + let v = native_list_append(v, ["विजय", "noun", "वि॒ज॒याः", "वि॒ज॒यस्य॑", "वि॒ज॒याय॑", "", "contest for victory"]) + let v = native_list_append(v, ["क्रम", "noun", "क्रमाः॑", "क्रम॑स्य", "क्रमा॑य", "", "a step"]) + let v = native_list_append(v, ["आधार", "noun", "आधाराः", "आधारस्य", "आधाराय", "", "support prop stay"]) + let v = native_list_append(v, ["धारण", "noun", "धार॑णानि", "धार॑णस्य", "धार॑णाय", "", "the act of"]) + let v = native_list_append(v, ["पान", "noun", "पाना॑नि", "पान॑स्य", "पाना॑य", "", "the act of"]) + let v = native_list_append(v, ["भाग्य", "noun", "भाग्य", "", "", "", "luck destiny fate"]) + let v = native_list_append(v, ["परिजन", "noun", "परिजनाः", "परिजनस्य", "परिजनाय", "", "a surrounding person"]) + let v = native_list_append(v, ["कर्षण", "noun", "कर्षणाः", "कर्षणस्य", "कर्षणाय", "", "an act of"]) + let v = native_list_append(v, ["समवाय", "noun", "समवायाः", "समवायस्य", "समवायाय", "", "coming together contact"]) + let v = native_list_append(v, ["प्राच्य", "noun", "प्राच्याः", "प्राच्यस्य", "प्राच्याय", "", "a name of"]) + let v = native_list_append(v, ["यवनिका", "noun", "यवनिकाः", "यवनिकायाः", "यवनिकायै", "", "a Greek woman"]) + let v = native_list_append(v, ["विद्यापति", "noun", "विद्यापतयः", "विद्यापतेः", "विद्यापतये", "", "chief scholar Rājat."]) + let v = native_list_append(v, ["लिङ्गशरीर", "noun", "लिङ्गशरीराणि", "लिङ्गशरीरस्य", "लिङ्गशरीराय", "", "a subtle body"]) + let v = native_list_append(v, ["आर", "noun", "आराणि", "आरस्य", "आराय", "", "brass BhP."]) + let v = native_list_append(v, ["हेलि", "noun", "हेलयः", "हेलेः", "हेलये", "", "sun VarBṛS. Pur."]) + let v = native_list_append(v, ["ज्यौ", "noun", "ज्यावः", "ज्यावः", "ज्यावे", "", "the planet Jupiter"]) + let v = native_list_append(v, ["केन्द्र", "noun", "केन्द्राणि", "केन्द्रस्य", "केन्द्राय", "", "centre of a"]) + let v = native_list_append(v, ["जामित्र", "noun", "जामित्राणि", "जामित्रस्य", "जामित्राय", "", "seventh lunar mansion"]) + let v = native_list_append(v, ["अहर्गण", "noun", "अहर्गणाः", "अहर्गणस्य", "अहर्गणाय", "", "series of sacrificial"]) + let v = native_list_append(v, ["उच्च", "noun", "उच्चाः", "उच्चस्य", "उच्चाय", "", "height MBh."]) + let v = native_list_append(v, ["विश्", "noun", "विशः॑", "वि॒शः", "वि॒शे", "", "settlement house"]) + let v = native_list_append(v, ["ធម៌", "noun", "ធម៌", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["विश्वास", "noun", "विश्वासाः", "विश्वासस्य", "विश्वासाय", "", "confidence trust reliance"]) + let v = native_list_append(v, ["उच्चारण", "noun", "उच्चारणानि", "उच्चारणस्य", "उच्चारणाय", "", "pronunciation articulation enunciation"]) + let v = native_list_append(v, ["भी", "noun", "भियः॑", "भि॒यः", "भि॒ये", "", "fear fright alarm"]) + let v = native_list_append(v, ["क्षति", "noun", "क्षतयः", "क्षतेः", "क्षतये", "", "injury hurt wound"]) + let v = native_list_append(v, ["शून्यता", "noun", "शून्यता", "", "", "", "sunyata nonexistence nonreality"]) + let v = native_list_append(v, ["ทาส", "noun", "ทาส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["पीठ", "noun", "पीठानि", "पीठस्य", "पीठाय", "", "seat bench desk"]) + let v = native_list_append(v, ["क्षत्रिय", "noun", "क्ष॒त्रियाः॑", "क्ष॒त्रिय॑स्य", "क्ष॒त्रिया॑य", "", "a Kshatriya a"]) + let v = native_list_append(v, ["याद", "noun", "याद", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शङ्क", "noun", "शङ्क", "", "", "", "doubt"]) + let v = native_list_append(v, ["छाया", "noun", "छा॒याः", "छा॒यायाः॑", "छा॒यायै॑", "", "shadow shade shady"]) + let v = native_list_append(v, ["अतिथि", "noun", "अति॑थयः", "अति॑थेः", "अति॑थये", "", "a guest visitor"]) + let v = native_list_append(v, ["आरोग्य", "noun", "आरोग्याणि", "आरोग्यस्य", "आरोग्याय", "", "health good health"]) + let v = native_list_append(v, ["पुष्कर", "noun", "पुष्करानि", "पुष्करस्य", "पुष्कराय", "", "blue lotus flower"]) + let v = native_list_append(v, ["भ्रात्र", "noun", "भ्रात्र", "", "", "", "brother"]) + let v = native_list_append(v, ["शिष्य", "noun", "शिष्याः", "शिष्यस्य", "शिष्याय", "", "student pupil disciple"]) + let v = native_list_append(v, ["शिष्यपरम्परा", "noun", "शिष्यपरम्परा", "", "", "", "a series or"]) + let v = native_list_append(v, ["अङ्ग", "noun", "अङ्गाः॑", "अङ्ग॑स्य", "अङ्गा॑य", "", "a limb of"]) + let v = native_list_append(v, ["अत्र", "noun", "अ॒त्राः", "अ॒त्रस्य॑", "अ॒त्राय॑", "", "name of a"]) + let v = native_list_append(v, ["असिद्धि", "noun", "असिद्धि", "", "", "", "failure"]) + let v = native_list_append(v, ["तन्", "noun", "तन्", "", "", "", "continuation uninterrupted succession"]) + let v = native_list_append(v, ["समत्व", "noun", "समत्व", "", "", "", "equanimity balance"]) + let v = native_list_append(v, ["तेजस्", "noun", "तेजां॑सि", "तेज॑सः", "तेज॑से", "", "the sharp edge"]) + let v = native_list_append(v, ["दूरम्", "noun", "दूरम्", "", "", "", "distance remoteness"]) + let v = native_list_append(v, ["महत्", "noun", "म॒हान्तः॑", "म॒ह॒तः", "म॒ह॒ते", "", "great man man"]) + let v = native_list_append(v, ["ဗုဒ္ဓ", "noun", "ဗုဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဇလ", "noun", "ဇလ", "", "", "", ""]) + let v = native_list_append(v, ["कच्छप", "noun", "कच्छपाः", "कच्छपस्य", "कच्छपाय", "", "tortoise turtle"]) + let v = native_list_append(v, ["महात्मन्", "noun", "महात्मानः", "महात्मनः", "महात्मने", "", "the Supreme Spirit"]) + let v = native_list_append(v, ["भक्त", "noun", "भ॒क्तानि॑", "भ॒क्तस्य॑", "भ॒क्ताय॑", "", "share portion"]) + let v = native_list_append(v, ["मस्जिद", "noun", "मस्जिदाः", "मस्जिदस्य", "मस्जिदाय", "", "a mosque"]) + let v = native_list_append(v, ["लण्ड", "noun", "लण्डानि", "लण्डस्य", "लण्डाय", "", "excrement faeces ordure"]) + let v = native_list_append(v, ["महेश्वर", "noun", "म॒हे॒श्व॒राः", "म॒हे॒श्व॒रस्य॑", "म॒हे॒श्व॒राय॑", "", "an epithet of"]) + let v = native_list_append(v, ["संभोग", "noun", "सं॒भोगाः॑", "सं॒भोग॑स्य", "सं॒भोगा॑य", "", "enjoyment in general"]) + let v = native_list_append(v, ["नीचामेढ्र", "noun", "नीचामेढ्राः", "नीचामेढ्रस्य", "नीचामेढ्राय", "", "one whose penis"]) + let v = native_list_append(v, ["मन्दिरम्", "noun", "मन्दिरम्", "", "", "", "house"]) + let v = native_list_append(v, ["नमस्कार", "noun", "न॒म॒स्का॒राः", "न॒म॒स्का॒रस्य॑", "न॒म॒स्का॒राय॑", "", "the exclamation of"]) + let v = native_list_append(v, ["भूत", "noun", "भूतानि", "भूतस्य", "भूताय", "", "living being anything"]) + let v = native_list_append(v, ["स्वागत", "noun", "स्वागतानि", "स्वागतस्य", "स्वागताय", "", "welcome"]) + let v = native_list_append(v, ["कम्बल", "noun", "क॒म्ब॒लाः", "क॒म्ब॒लस्य॑", "क॒म्ब॒लाय॑", "", "a woolen blanket"]) + let v = native_list_append(v, ["लाभ", "noun", "लाभ", "", "", "", "meeting with finding"]) + let v = native_list_append(v, ["उषा", "noun", "उषा", "", "", "", "dawn"]) + let v = native_list_append(v, ["तुलसी", "noun", "तुलस्यः", "तुलस्याः", "तुलस्यै", "", "basil a sacred"]) + let v = native_list_append(v, ["जीवन", "noun", "जी॒व॒नाः", "जी॒व॒नस्य॑", "जी॒व॒नाय॑", "", "a living being"]) + let v = native_list_append(v, ["हनुमान्", "noun", "हनुमान्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["छात्र", "noun", "छात्राः", "छात्रस्य", "छात्राय", "", "alternative spelling of"]) + let v = native_list_append(v, ["प्रार्थना", "noun", "प्रार्थनाः", "प्रार्थनायाः", "प्रार्थनायै", "", "prayer"]) + let v = native_list_append(v, ["शर्म", "noun", "शर्म", "", "", "", "combining form of"]) + let v = native_list_append(v, ["मद्यसार", "noun", "मद्यसाराः", "मद्यसारस्य", "मद्यसाराय", "", "alcohol"]) + let v = native_list_append(v, ["मदिरा", "noun", "मदिराः", "मदिरायाः", "मदिरायै", "", "spirituous liquor any"]) + let v = native_list_append(v, ["मद्य", "noun", "मद्या॑नि", "मद्य॑स्य", "मद्या॑य", "", "any intoxicating drink"]) + let v = native_list_append(v, ["प्रसन्न", "noun", "प्रसन्नाः", "प्रसन्नस्य", "प्रसन्नाय", "", "good humour complacence"]) + let v = native_list_append(v, ["उत्सव", "noun", "उत्सवाः", "उत्सवस्य", "उत्सवाय", "", "ceremony festival"]) + let v = native_list_append(v, ["महोत्सव", "noun", "महोत्सव", "", "", "", "festival"]) + let v = native_list_append(v, ["कौशल", "noun", "कौशलानि", "कौशलस्य", "कौशलाय", "", "dexterity competency skill"]) + let v = native_list_append(v, ["नेत्र", "noun", "नेत्राणि", "नेत्रस्य", "नेत्राय", "", "n eye"]) + let v = native_list_append(v, ["नयन", "noun", "नयनाणि", "नयनस्य", "नयनाय", "", "eye"]) + let v = native_list_append(v, ["भवन", "noun", "भवनाः", "भवनस्य", "भवनाय", "", "building edifice"]) + let v = native_list_append(v, ["चन्द्रिका", "noun", "चन्द्रिका", "", "", "", "moonlight moonshine"]) + let v = native_list_append(v, ["चित्र", "noun", "चि॒त्राणि॑", "चि॒त्रस्य॑", "चि॒त्राय॑", "", "shiny object jewel"]) + let v = native_list_append(v, ["आतप", "noun", "आतपाः", "आतपस्य", "आतपाय", "", "sunshine sunlight sunbeam"]) + let v = native_list_append(v, ["శ్రీ", "noun", "శ్రీ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["मुक्त", "noun", "मुक्तानि", "मुक्तस्य", "मुक्ताय", "", "the spirit released"]) + let v = native_list_append(v, ["स्वतन्त्र", "noun", "स्वतन्त्रानि", "स्वतन्त्रस्य", "स्वतन्त्राय", "", "self-dependence independence self-will"]) + let v = native_list_append(v, ["सदस्य", "noun", "स॒द॒स्याः", "स॒द॒स्यस्य॑", "स॒द॒स्याय॑", "", "“present in the"]) + let v = native_list_append(v, ["प्रारम्भ", "noun", "प्रारम्भाः", "प्रारम्भस्य", "प्रारम्भाय", "", "beginning"]) + let v = native_list_append(v, ["दृढ", "noun", "दृढानि", "दृढस्य", "दृढाय", "", "iron"]) + let v = native_list_append(v, ["धनी", "noun", "धनी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["धनिक", "noun", "धनिक", "", "", "", "a rich man"]) + let v = native_list_append(v, ["कोप", "noun", "कोपाः॑", "कोप॑स्य", "कोपा॑य", "", "morbid irritation or"]) + let v = native_list_append(v, ["मानव", "noun", "मान॑वाः", "मान॑वस्य", "मान॑वाय", "", "human human being"]) + let v = native_list_append(v, ["शून्य", "noun", "शू॒न्यानि॑", "शू॒न्यस्य॑", "शू॒न्याय॑", "", "zero"]) + let v = native_list_append(v, ["पुल्ल", "noun", "पुल्लानि", "पुल्लस्य", "पुल्लाय", "", "flower"]) + let v = native_list_append(v, ["फुल्ल", "noun", "फुल्लानि", "फुल्लस्य", "फुल्लाय", "", "a full-blown flower"]) + let v = native_list_append(v, ["దేవ", "noun", "దేవ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["सरल", "noun", "सरल", "", "", "", "a species of"]) + let v = native_list_append(v, ["छुरी", "noun", "छुर्यः", "छुर्याः", "छुर्यै", "", "a dagger knife"]) + let v = native_list_append(v, ["मर्द", "noun", "मर्दाः", "मर्दस्य", "मर्दाय", "", "grinding pounding violent"]) + let v = native_list_append(v, ["भूतल", "noun", "भूतलानि", "भूतलस्य", "भूतलाय", "", "floor ground surface"]) + let v = native_list_append(v, ["फट", "noun", "फट", "", "", "", "The expanded hood"]) + let v = native_list_append(v, ["जान", "noun", "जाना॑नि", "जान॑स्य", "जाना॑य", "", "birth origin birthplace"]) + let v = native_list_append(v, ["संविधान", "noun", "संविधानाः", "संविधानस्य", "संविधानाय", "", "constitution"]) + let v = native_list_append(v, ["रङ्ग", "noun", "रङ्गाः", "रङ्गस्य", "रङ्गाय", "", "colour paint dye"]) + let v = native_list_append(v, ["पोत", "noun", "पोताः", "पोतस्य", "पोताय", "", "the young of"]) + let v = native_list_append(v, ["रोचक", "noun", "रोचक", "", "", "", "a worker in"]) + let v = native_list_append(v, ["नास्तिक", "noun", "नास्तिकाः", "नास्तिकस्य", "नास्तिकाय", "", "atheist unbeliever"]) + let v = native_list_append(v, ["केवल", "noun", "केवलाः", "केवलस्य", "केवलाय", "", "a dancer tumbler"]) + let v = native_list_append(v, ["गर्जन", "noun", "गर्जनानि", "गर्जनस्य", "गर्जनाय", "", "roar bellow"]) + let v = native_list_append(v, ["स्वर्ग", "noun", "स्व॒र्गाः", "स्व॒र्गस्य॑", "स्व॒र्गाय॑", "", "heaven paradise"]) + let v = native_list_append(v, ["सहन", "noun", "सहनानि", "सहनस्य", "सहनाय", "", "patience"]) + let v = native_list_append(v, ["अङ्गुष्ठ", "noun", "अ॒ङ्गुष्ठाः॑", "अ॒ङ्गुष्ठ॑स्य", "अ॒ङ्गुष्ठा॑य", "", "thumb"]) + let v = native_list_append(v, ["अङ्गुली", "noun", "अङ्गुल्यः", "अङ्गुल्याः", "अङ्गुल्यै", "", "finger"]) + let v = native_list_append(v, ["दुर्ग", "noun", "दु॒र्गाणि॑", "दु॒र्गस्य॑", "दु॒र्गाय॑", "", "difficult or narrow"]) + let v = native_list_append(v, ["सुरक्षा", "noun", "सुरक्षा", "", "", "", "safeness"]) + let v = native_list_append(v, ["शपथ", "noun", "शपथाः", "शपथस्य", "शपथाय", "", "oath vow"]) + let v = native_list_append(v, ["प्रतिज्ञा", "noun", "प्रतिज्ञाः", "प्रतिज्ञायाः", "प्रतिज्ञायै", "", "vow promise"]) + let v = native_list_append(v, ["चतुर", "noun", "चतुराः", "चतुरस्य", "चतुराय", "", "a round pillow"]) + let v = native_list_append(v, ["योजना", "noun", "योजना", "", "", "", "yoking building"]) + let v = native_list_append(v, ["सागर", "noun", "सागराः", "सागरस्य", "सागराय", "", "ocean"]) + let v = native_list_append(v, ["पेशी", "noun", "पेश्यः", "पेश्याः", "पेश्यै", "", "a piece of"]) + let v = native_list_append(v, ["निष्ठा", "noun", "निष्ठाः", "निष्ठायाः", "निष्ठायै", "", "devotion attachment"]) + let v = native_list_append(v, ["वर्तनी", "noun", "वर्तन्यः", "वर्तन्याः", "वर्तन्यै", "", "way"]) + let v = native_list_append(v, ["कामना", "noun", "कामनाः", "कामनायाः", "कामनायै", "", "wish desire"]) + let v = native_list_append(v, ["दल", "noun", "दला॑नि", "दल॑स्य", "दला॑य", "", "a fragment a"]) + let v = native_list_append(v, ["स्नान", "noun", "स्नानानि", "स्नानस्य", "स्नानाय", "", "bath bathing"]) + let v = native_list_append(v, ["आम्र", "noun", "आ॒म्राः", "आ॒म्रस्य॑", "आ॒म्राय॑", "", "the mango fruit"]) + let v = native_list_append(v, ["భూమి", "noun", "భూమి", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["सहायता", "noun", "सहायताः", "सहायतायाः", "सहायतायै", "", "a number of"]) + let v = native_list_append(v, ["उपवन", "noun", "उपवनानि", "उपवनस्य", "उपवनाय", "", "garden grove"]) + let v = native_list_append(v, ["शशक", "noun", "शशकाः", "शशकस्य", "शशकाय", "", "rabbit"]) + let v = native_list_append(v, ["साहस", "noun", "साहसानि", "साहसस्य", "साहसाय", "", "adventure boldness daring"]) + let v = native_list_append(v, ["परिणाम", "noun", "परिणामाः", "परिणामस्य", "परिणामाय", "", "product result conclusion"]) + let v = native_list_append(v, ["భూ", "noun", "భూ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["प्रमाण", "noun", "प्रमाण", "", "", "", "proof authority any"]) + let v = native_list_append(v, ["साक्ष्य", "noun", "साक्ष्य", "", "", "", "testimony evidence verification"]) + let v = native_list_append(v, ["स्वास्थ्य", "noun", "स्वास्थ्यानि", "स्वास्थ्यस्य", "स्वास्थ्याय", "", "health"]) + let v = native_list_append(v, ["बाधा", "noun", "बाधाः", "बाधायाः", "बाधायै", "", "interruption obstacle hardship"]) + let v = native_list_append(v, ["रोगी", "noun", "रोगी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["खण्ड", "noun", "खण्डाः", "खण्डस्य", "खण्डाय", "", "a break gap"]) + let v = native_list_append(v, ["अम्बर", "noun", "अम्ब॑राणि", "अम्ब॑रस्य", "अम्ब॑राय", "", "surroundings environment"]) + let v = native_list_append(v, ["सिद्धि", "noun", "सिद्धयः", "सिद्धेः", "सिद्धये", "", "success perfection attainment"]) + let v = native_list_append(v, ["मूढ", "noun", "मूढाः", "मूढस्य", "मूढाय", "", "confusion of mind"]) + let v = native_list_append(v, ["निर्बुद्धि", "noun", "नि॒र्बुद्ध॑यः", "नि॒र्बुद्धेः॑", "नि॒र्बुद्ध॑ये", "", "idiot fool"]) + let v = native_list_append(v, ["शय्या", "noun", "शय्याः", "शय्यायाः", "शय्यायै", "", "bed couch sofa"]) + let v = native_list_append(v, ["विद्", "noun", "विदः", "विदः", "विदे", "", "Mercury"]) + let v = native_list_append(v, ["गते", "noun", "गते", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["दुर्बल", "noun", "दुर्बलाः", "दुर्बलस्य", "दुर्बलाय", "", "weakling impotent man"]) + let v = native_list_append(v, ["शोक", "noun", "शोकाः॑", "शोक॑स्य", "शोका॑य", "", "flame glow heat"]) + let v = native_list_append(v, ["उज्ज्वल", "noun", "उज्ज्वलाः", "उज्ज्वलस्य", "उज्ज्वलाय", "", "love passion"]) + let v = native_list_append(v, ["औषध", "noun", "औ॒ष॒धानि॑", "औ॒ष॒धस्य॑", "औ॒ष॒धाय॑", "", "drug medicine"]) + let v = native_list_append(v, ["सत्यता", "noun", "सत्यताः", "सत्यतायाः", "सत्यतायै", "", "reality truth"]) + let v = native_list_append(v, ["महार्घ", "noun", "महार्घाः", "महार्घस्य", "महार्घाय", "", "Perdix chenensis a"]) + let v = native_list_append(v, ["बहुमूल्य", "noun", "बहुमूल्यानि", "बहुमूल्यस्य", "बहुमूल्याय", "", "a large sum"]) + let v = native_list_append(v, ["रिक्त", "noun", "रिक्त", "", "", "", "an empty place"]) + let v = native_list_append(v, ["श्रीत्वम्", "noun", "श्रीत्वम्", "", "", "", "bonanza"]) + let v = native_list_append(v, ["प्रताप", "noun", "प्रतापाः", "प्रतापस्य", "प्रतापाय", "", "bonanza"]) + let v = native_list_append(v, ["कागद", "noun", "कागदानि", "कागदस्य", "कागदाय", "", "paper"]) + let v = native_list_append(v, ["समान", "noun", "समानाः", "समानस्य", "समानाय", "", "one of the"]) + let v = native_list_append(v, ["पानीय", "noun", "पानीयानि", "पानीयस्य", "पानीयाय", "", "water"]) + let v = native_list_append(v, ["भार्या", "noun", "भा॒र्याः॑", "भा॒र्या॑याः", "भा॒र्या॑यै", "", "a wife"]) + let v = native_list_append(v, ["शत्रु", "noun", "शत्र॑वः", "शत्रोः॑", "शत्र॑वे", "", "overthrower enemy foe"]) + let v = native_list_append(v, ["शान्ति", "noun", "शान्त॑यः", "शान्तेः॑", "शान्त॑ये", "", "cessation abatement extinction"]) + let v = native_list_append(v, ["यवसुरा", "noun", "यवसुरा", "", "", "", "beer a kind"]) + let v = native_list_append(v, ["अनुच्छेद", "noun", "अनुच्छेद", "", "", "", "paragraph"]) + let v = native_list_append(v, ["लेखनी", "noun", "लेखन्यः", "लेखन्याः", "लेखन्यै", "", "an instrument for"]) + let v = native_list_append(v, ["नाश", "noun", "नाशाः", "नाशस्य", "नाशाय", "", "demolition ruin destruction"]) + let v = native_list_append(v, ["चषक", "noun", "चषकाः", "चषकस्य", "चषकाय", "", "cup glass wineglass"]) + let v = native_list_append(v, ["न्याय", "noun", "न्या॒याः", "न्या॒यस्य॑", "न्या॒याय॑", "", "that into which"]) + let v = native_list_append(v, ["शव", "noun", "शवाः॑", "शव॑स्य", "शवा॑य", "", "corpse"]) + let v = native_list_append(v, ["पथ", "noun", "पथाः", "पथस्य", "पथाय", "", "way road path"]) + let v = native_list_append(v, ["परिहास", "noun", "परिहास", "", "", "", "fun joke jest"]) + let v = native_list_append(v, ["विनाश", "noun", "वि॒ना॒शाः", "वि॒ना॒शस्य॑", "वि॒ना॒शाय॑", "", "annihilation perdition destruction"]) + let v = native_list_append(v, ["प्रतिष्ठा", "noun", "प्रतिष्ठाः", "प्रतिष्ठायाः", "प्रतिष्ठायै", "", "ground base pedestal"]) + let v = native_list_append(v, ["आशीर्वाद", "noun", "आशीर्वाद", "", "", "", "blessing benediction"]) + let v = native_list_append(v, ["विचार", "noun", "विचाराः", "विचारस्य", "विचाराय", "", "thought idea consideration"]) + let v = native_list_append(v, ["प्रस्ताव", "noun", "प्रस्तावाः", "प्रस्तावस्य", "प्रस्तावाय", "", "mention offer proposal"]) + let v = native_list_append(v, ["निर्णय", "noun", "निर्णयाः", "निर्णयस्य", "निर्णयाय", "", "resolution settlement"]) + let v = native_list_append(v, ["भविष्य", "noun", "भविष्याणि", "भविष्यस्य", "भविष्याय", "", "the future Hariv."]) + let v = native_list_append(v, ["परीक्षा", "noun", "परीक्षाः", "परीक्षायाः", "परीक्षायै", "", "inspection investigation examination"]) + let v = native_list_append(v, ["ताप", "noun", "ता॒पाः", "ता॒पस्य॑", "ता॒पाय॑", "", "heat glow"]) + let v = native_list_append(v, ["अन्ति", "noun", "अन्तयः", "अन्त्याः", "अन्त्यै", "", "an elder sister"]) + let v = native_list_append(v, ["पाटल", "noun", "पा॒ट॒लानि॑", "पा॒ट॒लस्य॑", "पा॒ट॒लाय॑", "", "the trumpet flower"]) + let v = native_list_append(v, ["पण्यशाला", "noun", "पण्यशालाः", "पण्यशालायाः", "पण्यशालायै", "", "market marketplace"]) + let v = native_list_append(v, ["शिल्पशाला", "noun", "शिल्पशालाः", "शिल्पशालायाः", "शिल्पशालायै", "", "workshop manufactory"]) + let v = native_list_append(v, ["श्मशान", "noun", "श्म॒शा॒नानि॑", "श्म॒शा॒नस्य॑", "श्म॒शा॒नाय॑", "", "cemetery"]) + let v = native_list_append(v, ["कारागार", "noun", "कारागाराणि", "कारागारस्य", "कारागाराय", "", "prisonhouse jail"]) + let v = native_list_append(v, ["लक्ष्य", "noun", "लक्ष्याणि", "लक्ष्यस्य", "लक्ष्याय", "", "an object aimed"]) + let v = native_list_append(v, ["श्यामा", "noun", "श्यामाः", "श्यामायाः", "श्यामायै", "", "night particularly a"]) + let v = native_list_append(v, ["हास्य", "noun", "हास्याः", "हास्यस्य", "हास्याय", "", "laughter"]) + let v = native_list_append(v, ["लोचन", "noun", "लोचनानि", "लोचनस्य", "लोचनाय", "", "organ of sight"]) + let v = native_list_append(v, ["हानि", "noun", "हानि", "", "", "", "abandonment relinquishment"]) + let v = native_list_append(v, ["ज्वर", "noun", "ज्वराः", "ज्वरस्य", "ज्वराय", "", "fever feverish heat"]) + let v = native_list_append(v, ["चकोर", "noun", "चकोराः", "चकोरस्य", "चकोराय", "", "the Greek partridge"]) + let v = native_list_append(v, ["पल", "noun", "पलानि", "पलस्य", "पलाय", "", "flesh meat"]) + let v = native_list_append(v, ["अक्षत", "noun", "अक्षताः", "अक्षतस्य", "अक्षताय", "", "eunuch"]) + let v = native_list_append(v, ["अरि", "noun", "अ॒रयः॑", "अ॒रेः", "अ॒रये॑", "", "enemy stranger"]) + let v = native_list_append(v, ["मूल्य", "noun", "मूल्यानि", "मूल्यस्य", "मूल्याय", "", "price worth cost"]) + let v = native_list_append(v, ["अङ्घ्रि", "noun", "अङ्घ्र॑यः", "अङ्घ्रेः॑", "अङ्घ्र॑ये", "", "foot"]) + let v = native_list_append(v, ["द्रम्म", "noun", "द्रम्माणि", "द्रम्मस्य", "द्रम्माय", "", "drachma Greek coin"]) + let v = native_list_append(v, ["काय", "noun", "काय", "", "", "", "the body"]) + let v = native_list_append(v, ["चैत्र", "noun", "चैत्र", "चैत्रस्य", "चैत्राय", "", "First month of"]) + let v = native_list_append(v, ["तिथे", "noun", "तिथे", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["दिवस", "noun", "दिवस", "", "", "", "day"]) + let v = native_list_append(v, ["करुणा", "noun", "करुणाः", "करुणायाः", "करुणायै", "", "pity compassion"]) + let v = native_list_append(v, ["अस्त्र", "noun", "अस्त्राणि", "अस्त्रस्य", "अस्त्राय", "", "a missile weapon"]) + let v = native_list_append(v, ["रुद्राक्ष", "noun", "रुद्राक्षाः", "रुद्राक्षस्य", "रुद्राक्षाय", "", "a tree used"]) + let v = native_list_append(v, ["माला", "noun", "मालाः", "मालायाः", "मालायै", "", "garland wreath crown"]) + let v = native_list_append(v, ["गन्धक", "noun", "गन्धकाः", "गन्धकस्य", "गन्धकाय", "", "sulfur"]) + let v = native_list_append(v, ["षड्यन्त्र", "noun", "षड्यन्त्राणि", "षड्यन्त्रस्य", "षड्यन्त्राय", "", "conspiracy plot intrigue"]) + let v = native_list_append(v, ["अनुमति", "noun", "अनुमतयः", "अनुमतेः", "अनुमतये", "", "assent permission approbation"]) + let v = native_list_append(v, ["अरुण", "noun", "अ॒रु॒णाः", "अ॒रु॒णस्य॑", "अ॒रु॒णाय॑", "", "a name for"]) + let v = native_list_append(v, ["शुक्ति", "noun", "शुक्ति", "", "", "", "shell esp. pearl"]) + let v = native_list_append(v, ["धन", "noun", "धना॑नि", "धन॑स्य", "धना॑य", "", "contest race strife"]) + let v = native_list_append(v, ["जीव", "noun", "जी॒वाः", "जी॒वस्य॑", "जी॒वाय॑", "", "life existence"]) + let v = native_list_append(v, ["वैद्य", "noun", "वैद्याः", "वैद्यस्य", "वैद्याय", "", "a learned man"]) + let v = native_list_append(v, ["नख", "noun", "न॒खाः", "न॒खस्य॑", "न॒खाय॑", "", "nail"]) + let v = native_list_append(v, ["लोक", "noun", "लो॒काः", "लो॒कस्य॑", "लो॒काय॑", "", "free or open"]) + let v = native_list_append(v, ["मौन", "noun", "मौ॒नानि॑", "मौ॒नस्य॑", "मौ॒नाय॑", "", "silence taciturnity"]) + let v = native_list_append(v, ["ध्वनि", "noun", "ध्व॒नयः॑", "ध्व॒नेः", "ध्व॒नये॑", "", "sound echo noise"]) + let v = native_list_append(v, ["कोलाहल", "noun", "कोलाहलाः", "कोलाहलस्य", "कोलाहलाय", "", "a loud and"]) + let v = native_list_append(v, ["हत्या", "noun", "हत्या", "", "", "", "killing slaying slaughter"]) + let v = native_list_append(v, ["तन्त्र", "noun", "तन्त्रा॑णि", "तन्त्र॑स्य", "तन्त्रा॑य", "", "a loom"]) + let v = native_list_append(v, ["द्वितीय", "noun", "द्वि॒तीयाः॑", "द्वि॒तीय॑स्य", "द्वि॒तीया॑य", "", "fellow friend or"]) + let v = native_list_append(v, ["शरद्", "noun", "शरद्", "", "", "", "autumn autumnal season"]) + let v = native_list_append(v, ["तल", "noun", "तलानि", "तलस्य", "तलाय", "", "surface level floor"]) + let v = native_list_append(v, ["पञ्चम", "noun", "पञ्चमानि", "पञ्चमस्य", "पञ्चमाय", "", "a fifth"]) + let v = native_list_append(v, ["पञ्चमी", "noun", "पञ्चम्यः", "पञ्चम्याः", "पञ्चम्यै", "", "the fifth day"]) + let v = native_list_append(v, ["वसन्तपञ्चमी", "noun", "वसन्तपञ्चमी", "", "", "", "A festival held"]) + let v = native_list_append(v, ["उपनयन", "noun", "उपनयन", "", "", "", "the act of"]) + let v = native_list_append(v, ["कण्टक", "noun", "कण्ट॑काः", "कण्ट॑कस्य", "कण्ट॑काय", "", "a thorn"]) + let v = native_list_append(v, ["कलत्र", "noun", "कलत्राणि", "कलत्रस्य", "कलत्राय", "", "wife consort"]) + let v = native_list_append(v, ["जनक", "noun", "जनकाः", "जनकस्य", "जनकाय", "", "a progenitor father"]) + let v = native_list_append(v, ["मिथिला", "noun", "मिथिला", "", "", "", "Mithila a city"]) + let v = native_list_append(v, ["कनक", "noun", "कन॑कानि", "कन॑कस्य", "कन॑काय", "", "gold"]) + let v = native_list_append(v, ["अलस", "noun", "अ॒ल॒साः", "अ॒ल॒सस्य॑", "अ॒ल॒साय॑", "", "a sore or"]) + let v = native_list_append(v, ["आलस्य", "noun", "आल॑स्यानि", "आल॑स्यस्य", "आल॑स्याय", "", "idleness laziness"]) + let v = native_list_append(v, ["सर", "noun", "स॒राः", "स॒रस्य॑", "स॒राय॑", "", "sound"]) + let v = native_list_append(v, ["उपहार", "noun", "उपहाराः", "उपहारस्य", "उपहाराय", "", "offering oblation to"]) + let v = native_list_append(v, ["वनस्पति", "noun", "वन॒स्पत॑यः", "वन॒स्पतेः॑", "वन॒स्पत॑ये", "", "‘lord of the"]) + let v = native_list_append(v, ["तान", "noun", "तानाः॑", "तान॑स्य", "ताना॑य", "", "fibre"]) + let v = native_list_append(v, ["स्त्रीधन", "noun", "स्त्रीधन", "", "", "", "womens wealth a"]) + let v = native_list_append(v, ["षोडशकला", "noun", "षोडशकला", "", "", "", "the 16 digits"]) + let v = native_list_append(v, ["स्थिति", "noun", "स्थित॑यः", "स्थितेः॑", "स्थित॑ये", "", "standing upright or"]) + let v = native_list_append(v, ["मोक्ष", "noun", "मोक्षाः", "मोक्षस्य", "मोक्षाय", "", "emancipation liberation release"]) + let v = native_list_append(v, ["शेष", "noun", "शेषाः", "शेषस्य", "शेषाय", "", "that which is"]) + let v = native_list_append(v, ["वेङ्कट", "noun", "वेङ्कटाः", "वेङ्कटस्य", "वेङ्कटाय", "", "Name of a"]) + let v = native_list_append(v, ["वेङ्कटेश्वर", "noun", "वेङ्कटेश्वर", "", "", "", "‘ lord of"]) + let v = native_list_append(v, ["व्यवहार", "noun", "व्यवहाराः", "व्यवहारस्य", "व्यवहाराय", "", "doing conduct behaviour"]) + let v = native_list_append(v, ["जयन्त", "noun", "जयन्त", "", "", "", "the moon"]) + let v = native_list_append(v, ["जननी", "noun", "जनन्यः", "जनन्याः", "जनन्यै", "", "a mother"]) + let v = native_list_append(v, ["उद्देश्य", "noun", "उद्देश्याः", "उद्देश्यस्य", "उद्देश्याय", "", "purpose aim"]) + let v = native_list_append(v, ["कुरु", "noun", "कुर॑वः", "कुरोः॑", "कुर॑वे", "", "name of an"]) + let v = native_list_append(v, ["गन्धर्व", "noun", "ग॒न्ध॒र्वाः", "ग॒न्ध॒र्वस्य॑", "ग॒न्ध॒र्वाय॑", "", "a gandharva one"]) + let v = native_list_append(v, ["यमी", "noun", "यमी", "य॒म्याः", "य॒म्यै", "", "Name of Yamas"]) + let v = native_list_append(v, ["नरसिंह", "noun", "नरसिंह", "न॒र॒सिं॒हस्य॑", "न॒र॒सिं॒हाय॑", "", "‘man-lion’ great warrior"]) + let v = native_list_append(v, ["संकेत", "noun", "संकेताः", "संकेतस्य", "संकेताय", "", "agreement compact stipulation"]) + let v = native_list_append(v, ["नारद", "noun", "नार॑दाः", "नार॑दस्य", "नार॑दाय", "", "Narada one of"]) + let v = native_list_append(v, ["महाभारत", "noun", "म॒हा॒भार॑तानि", "म॒हा॒भार॑तस्य", "म॒हा॒भार॑ताय", "", "Mahabharata"]) + let v = native_list_append(v, ["कैलास", "noun", "कैलासाः", "कैलासस्य", "कैलासाय", "", "Mount Kailasa fabulous"]) + let v = native_list_append(v, ["मालव", "noun", "मालव", "", "", "", "name of a"]) + let v = native_list_append(v, ["सूर्यकान्त", "noun", "सूर्यकान्त", "", "", "", "‘sun-loved’ the sun-stone"]) + let v = native_list_append(v, ["हाटक", "noun", "हाटक", "हाटकस्य", "हाटकाय", "", "Hataka an ancient"]) + let v = native_list_append(v, ["अभिमन्यु", "noun", "अभिमन्यवः", "अभिमन्योः", "अभिमन्यवे", "", "Abhimanyu son of"]) + let v = native_list_append(v, ["अगस्त्य", "noun", "अगस्त्याः", "अगस्त्यस्य", "अगस्त्याय", "", "Agastya son of"]) + let v = native_list_append(v, ["अहंकार", "noun", "अहंकाराः", "अहंकारस्य", "अहंकाराय", "", "conception of ones"]) + let v = native_list_append(v, ["अमरावती", "noun", "अमरावत्यः", "अमरावत्याः", "अमरावत्यै", "", "name of a"]) + let v = native_list_append(v, ["अरुन्धती", "noun", "अरुन्धत्यः", "अरुन्धत्याः", "अरुन्धत्यै", "", "the star Alcor"]) + let v = native_list_append(v, ["रति", "noun", "रति", "", "", "", "name of the"]) + let v = native_list_append(v, ["प्रीति", "noun", "प्रीतयः", "प्रीतेः", "प्रीतये", "", "any pleasurable sensation"]) + let v = native_list_append(v, ["ज्योत्स्ना", "noun", "ज्योत्स्नाः॑", "ज्योत्स्ना॑याः", "ज्योत्स्ना॑यै", "", "moonlight a moonlit"]) + let v = native_list_append(v, ["बाहु", "noun", "बा॒हवः॑", "बा॒होः", "बा॒हवे॑", "", "the arm especially"]) + let v = native_list_append(v, ["कारण", "noun", "कारणानि", "कारणस्य", "कारणाय", "", "cause reason factor"]) + let v = native_list_append(v, ["झङ्कार", "noun", "झङ्कार", "", "", "", "a low murmuring"]) + let v = native_list_append(v, ["भैरवी", "noun", "भैरव्यः", "भैरव्याः", "भैरव्यै", "", "name of °व"]) + let v = native_list_append(v, ["कीर", "noun", "कीराः", "कीरस्य", "कीराय", "", "parrot"]) + let v = native_list_append(v, ["वाणि", "noun", "वाण॑यः", "वाणेः॑", "वाण॑ये", "", "weaving"]) + let v = native_list_append(v, ["खर", "noun", "खराः", "खरस्य", "खराय", "", "donkey so called"]) + let v = native_list_append(v, ["मनोहर", "noun", "मनोहराणि", "मनोहरस्य", "मनोहराय", "", "gold"]) + let v = native_list_append(v, ["रञ्जन", "noun", "रञ्जनाः", "रञ्जनस्य", "रञ्जनाय", "", "baruwa sugarcane baruwa"]) + let v = native_list_append(v, ["मार", "noun", "माराः", "मारस्य", "माराय", "", "death pestilence"]) + let v = native_list_append(v, ["चारु", "noun", "चारवः", "चारोः", "चारवे", "", "a particular वासक"]) + let v = native_list_append(v, ["केशिन्", "noun", "के॒शिनः॑", "के॒शिनः॑", "के॒शिने॑", "", "an epithet of"]) + let v = native_list_append(v, ["धीर", "noun", "धीराः॑", "धीर॑स्य", "धीरा॑य", "", "the ocean sea"]) + let v = native_list_append(v, ["शंकर", "noun", "शं॒क॒राः", "शं॒क॒रस्य॑", "शं॒क॒राय॑", "", "the maker of"]) + let v = native_list_append(v, ["शंकराभरण", "noun", "शंकराभरण", "", "", "", "a particular राग"]) + let v = native_list_append(v, ["कथा", "noun", "कथाः", "कथायाः", "कथायै", "", "conversation speech"]) + let v = native_list_append(v, ["नन्दिनी", "noun", "नन्दिन्यः", "नन्दिन्याः", "नन्दिन्यै", "", "daughter"]) + let v = native_list_append(v, ["नन्दक", "noun", "नन्दकाः", "नन्दकस्य", "नन्दकाय", "", "joy delight"]) + let v = native_list_append(v, ["नंदक", "noun", "नंदक", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["गार्जर", "noun", "गार्जराः", "गार्जरस्य", "गार्जराय", "", "carrot"]) + let v = native_list_append(v, ["సమృద్ధి", "noun", "సమృద్ధి", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["प्रभु", "noun", "प्र॒भवः॑", "प्र॒भोः", "प्र॒भवे॑", "", "master lord king"]) + let v = native_list_append(v, ["वेला", "noun", "वेलाः॑", "वेला॑याः", "वेला॑यै", "", "time"]) + let v = native_list_append(v, ["वेतन", "noun", "वेतनानि", "वेतनस्य", "वेतनाय", "", "wages hire salary"]) + let v = native_list_append(v, ["शिक्षा", "noun", "शिक्षाः", "शिक्षायाः", "शिक्षायै", "", "desire of being"]) + let v = native_list_append(v, ["विद्या", "noun", "वि॒द्याः", "वि॒द्यायाः॑", "वि॒द्यायै॑", "", "knowledge wisdom"]) + let v = native_list_append(v, ["विद्याधरी", "noun", "विद्याधर्यः", "विद्याधर्याः", "विद्याधर्यै", "", "fairy sprite"]) + let v = native_list_append(v, ["अनन्त", "noun", "अ॒न॒न्ताः", "अ॒न॒न्तस्य॑", "अ॒न॒न्ताय॑", "", "an epithet of"]) + let v = native_list_append(v, ["सीता", "noun", "सीताः", "सीतायाः", "सीतायै", "", "a furrow the"]) + let v = native_list_append(v, ["उष्ण", "noun", "उष्णाः", "उष्णस्य", "उष्णाय", "", "onion"]) + let v = native_list_append(v, ["सूचना", "noun", "सूचना", "", "", "", "pointing out indication"]) + let v = native_list_append(v, ["राष्ट्रपति", "noun", "रा॒ष्ट्रप॑तयः", "रा॒ष्ट्रप॑तेः", "रा॒ष्ट्रप॑तये", "", "lord of a"]) + let v = native_list_append(v, ["मुख्य", "noun", "मुख्याः॑", "मुख्य॑स्य", "मुख्या॑य", "", "a leader guide"]) + let v = native_list_append(v, ["खरा", "noun", "खरा", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["मन्मथ", "noun", "मन्मथ", "", "", "", "love or the"]) + let v = native_list_append(v, ["आनन", "noun", "आननानि", "आननस्य", "आननाय", "", "the mouth"]) + let v = native_list_append(v, ["चक्रवाल", "noun", "चक्रवालाः", "चक्रवालस्य", "चक्रवालाय", "", "multitude"]) + let v = native_list_append(v, ["चन्दन", "noun", "चन्दनाः", "चन्दनस्य", "चन्दनाय", "", "sandalwood"]) + let v = native_list_append(v, ["దూత", "noun", "దూత", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["तीर्थ", "noun", "ती॒र्थानि॑", "ती॒र्थस्य॑", "ती॒र्थाय॑", "", "a passage way"]) + let v = native_list_append(v, ["संतोष", "noun", "संतोषाः", "संतोषस्य", "संतोषाय", "", "satisfaction contentment"]) + let v = native_list_append(v, ["अजगर", "noun", "अ॒ज॒ग॒राः", "अ॒ज॒ग॒रस्य॑", "अ॒ज॒ग॒राय॑", "", "a python a"]) + let v = native_list_append(v, ["गुण", "noun", "गु॒णाः", "गु॒णस्य॑", "गु॒णाय॑", "", "string strand"]) + let v = native_list_append(v, ["ਗਗਨ", "noun", "ਗਗਨਾਨਿ", "ਗਗਨਸ੍ਯ", "ਗਗਨਾਯ", "", "Gurmukhi script form"]) + let v = native_list_append(v, ["शरद", "noun", "शरद", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["आकार", "noun", "आकाराः", "आकारस्य", "आकाराय", "", "the letter ā"]) + let v = native_list_append(v, ["आरा", "noun", "आराः॑", "आरा॑याः", "आरा॑यै", "", "an awl a"]) + let v = native_list_append(v, ["आक्रमण", "noun", "अ॒ति॒क्रम॑णानि", "अ॒ति॒क्रम॑णस्य", "अ॒ति॒क्रम॑णाय", "", "approaching stepping upon"]) + let v = native_list_append(v, ["महत्त्व", "noun", "महत्त्वानि", "महत्त्वस्य", "महत्त्वाय", "", "greatness the quality"]) + let v = native_list_append(v, ["मीन", "noun", "मीनाः", "मीनस्य", "मीनाय", "", "a fish"]) + let v = native_list_append(v, ["आणि", "noun", "आ॒णयः॑", "आ॒णेः", "आ॒णये॑", "", "the part of"]) + let v = native_list_append(v, ["जनिमन्", "noun", "जनि॑मानि", "जनि॑म्नः", "जनि॑म्ने", "", "generation"]) + let v = native_list_append(v, ["वैडूर्य", "noun", "वैडूर्याणि", "वैडूर्यस्य", "वैडूर्याय", "", "cats eye AdbhB."]) + let v = native_list_append(v, ["नलद", "noun", "नलदाः", "नलदस्य", "नलदाय", "", "Nardostachys jatamansi Indian"]) + let v = native_list_append(v, ["दिव्य", "noun", "दि॒व्यानि॑", "दि॒व्यस्य॑", "दि॒व्याय॑", "", "divine world anything"]) + let v = native_list_append(v, ["क्षत्र", "noun", "क्ष॒त्राणि॑", "क्ष॒त्रस्य॑", "क्ष॒त्राय॑", "", "dominion supremacy power"]) + let v = native_list_append(v, ["लिङ्ग", "noun", "लिङ्गानि", "लिङ्गस्य", "लिङ्गाय", "", "mark spot sign"]) + let v = native_list_append(v, ["इन्धन", "noun", "इन्धन", "", "", "", "kindling lighting"]) + let v = native_list_append(v, ["इष्ट", "noun", "इष्टाः", "इष्टस्य", "इष्टाय", "", "lover husband"]) + let v = native_list_append(v, ["ईश", "noun", "ई॒शाः", "ई॒शस्य॑", "ई॒शाय॑", "", "lord master ruler"]) + let v = native_list_append(v, ["బుద్ధ", "noun", "బుద్ధ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["भुज्", "noun", "भुजः॑", "भु॒जः", "भु॒जे", "", "enjoyment profit advantage"]) + let v = native_list_append(v, ["स्थल", "noun", "स्थला॑नि", "स्थल॑स्य", "स्थला॑य", "", "dry land opp."]) + let v = native_list_append(v, ["स्थाणु", "noun", "स्था॒णवः॑", "स्था॒णोः", "स्था॒णवे॑", "", "a stump stem"]) + let v = native_list_append(v, ["स्थापन", "noun", "स्थापनानि", "स्थापनस्य", "स्थापनाय", "", "causing to stand"]) + let v = native_list_append(v, ["स्थैर्य", "noun", "स्थैर्याणि", "स्थैर्यस्य", "स्थैर्याय", "", "firmness hardness solidity"]) + let v = native_list_append(v, ["वृति", "noun", "वृतयः", "वृतेः", "वृतये", "", "surrounding covering"]) + let v = native_list_append(v, ["कृत्य", "noun", "कृत्याः॑", "कृत्य॑स्य", "कृत्या॑य", "", "the class of"]) + let v = native_list_append(v, ["अष्ठीवत्", "noun", "अष्ठीवत्", "", "", "", "shank shin"]) + let v = native_list_append(v, ["कृति", "noun", "कृत॑यः", "कृतेः॑", "कृत॑ये", "", "the act of"]) + let v = native_list_append(v, ["ऊर्मि", "noun", "ऊ॒र्मयः॑", "ऊ॒र्मेः", "ऊ॒र्मये॑", "", "wave billow"]) + let v = native_list_append(v, ["कुक्षि", "noun", "कु॒क्षयः॑", "कु॒क्षेः", "कु॒क्षये॑", "", "belly"]) + let v = native_list_append(v, ["रोचिस्", "noun", "रोचिस्", "", "", "", "lustre brightness"]) + let v = native_list_append(v, ["पूजा", "noun", "पूजाः", "पूजायाः", "पूजायै", "", "worship"]) + let v = native_list_append(v, ["पिश", "noun", "पिश", "", "", "", "a sort of"]) + let v = native_list_append(v, ["जटा", "noun", "जटाः॑", "जटा॑याः", "जटा॑यै", "", "the hair twisted"]) + let v = native_list_append(v, ["श्रवस्", "noun", "श्रवां॑सि", "श्रव॑सः", "श्रव॑से", "", "fame glory renown"]) + let v = native_list_append(v, ["यान", "noun", "याना॑नि", "यान॑स्य", "याना॑य", "", "carriage vehicle mode"]) + let v = native_list_append(v, ["वल्श", "noun", "वल्शाः॑", "वल्श॑स्य", "वल्शा॑य", "", "shoot branch twig"]) + let v = native_list_append(v, ["प्रातिमोक्ष", "noun", "प्रातिमोक्षाः", "प्रातिमोक्षस्य", "प्रातिमोक्षाय", "", "Pratimoksha code of"]) + let v = native_list_append(v, ["ज्या", "noun", "ज्याः", "ज्यायाः॑", "ज्यायै॑", "", "a bowstring"]) + let v = native_list_append(v, ["गूथ", "noun", "गूथाः", "गूथस्य", "गूथाय", "", "feces excrement ordure"]) + let v = native_list_append(v, ["घोषणा", "noun", "घोषणाः", "घोषणायाः", "घोषणायै", "", "announcement"]) + let v = native_list_append(v, ["सविता", "noun", "सविता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["घोषक", "noun", "घोषकाः", "घोषकस्य", "घोषकाय", "", "announcer"]) + let v = native_list_append(v, ["घोष", "noun", "घोषाः॑", "घोष॑स्य", "घोषा॑य", "", "indistinct noise tumult"]) + let v = native_list_append(v, ["नरक", "noun", "नर॑काः", "नर॑कस्य", "नर॑काय", "", "hell"]) + let v = native_list_append(v, ["रामायण", "noun", "रामायणानि", "रामायणस्य", "रामायणाय", "", "Ramayana"]) + let v = native_list_append(v, ["यक्ष", "noun", "य॒क्षाणि॑", "य॒क्षस्य॑", "य॒क्षाय॑", "", "a yaksha a"]) + let v = native_list_append(v, ["स्वस्ति", "noun", "स्व॒स्तयः॑", "स्व॒स्तेः", "स्व॒स्तये॑", "", "blessing"]) + let v = native_list_append(v, ["वाचा", "noun", "वाचाः", "वाचायाः", "वाचायै", "", "speech word"]) + let v = native_list_append(v, ["ब्रह्मदेश", "noun", "ब्रह्मदेश", "", "", "", "Myanmar Burma a"]) + let v = native_list_append(v, ["निवास", "noun", "निवासाः", "निवासस्य", "निवासाय", "", "clothing dress"]) + let v = native_list_append(v, ["नरलोक", "noun", "नरलोक", "", "", "", "‘mens world’ the"]) + let v = native_list_append(v, ["सिंहाचल", "noun", "सिंहाचल", "", "", "", "Name of a"]) + let v = native_list_append(v, ["सिंहद्वार", "noun", "सिंहद्वार", "", "", "", "a gate entrance"]) + let v = native_list_append(v, ["सिंहिका", "noun", "सिंहिका", "", "", "", "name of the"]) + let v = native_list_append(v, ["सिंहकेसर", "noun", "सिंहकेसर", "", "", "", "a lions mane"]) + let v = native_list_append(v, ["सिंहदंष्ट्र", "noun", "सिंहदंष्ट्र", "", "", "", "a kind of"]) + let v = native_list_append(v, ["सिंहबल", "noun", "सिंहबल", "", "", "", "name of a"]) + let v = native_list_append(v, ["सिंहवाहिनी", "noun", "सिंहवाहिनी", "", "", "", "One of the"]) + let v = native_list_append(v, ["सिंहासन", "noun", "सिंहासनानि", "सिंहासनस्य", "सिंहासनाय", "", "throne lions seat"]) + let v = native_list_append(v, ["सिंहास्य", "noun", "सिंहास्य", "", "", "", "a kind of"]) + let v = native_list_append(v, ["आदिवराह", "noun", "आदिवराह", "", "", "", "‘the first boar’"]) + let v = native_list_append(v, ["आदिकेशव", "noun", "आदिकेशव", "", "", "", "‘the first long-haired"]) + let v = native_list_append(v, ["आदिकवि", "noun", "आदिकवि", "", "", "", "‘the first poet’"]) + let v = native_list_append(v, ["आदिदेव", "noun", "आदिदेव", "", "", "", "‘the first god’"]) + let v = native_list_append(v, ["आदिशक्ति", "noun", "आदिशक्ति", "", "", "", "the primeval power"]) + let v = native_list_append(v, ["धन्य", "noun", "धन्याः॑", "धन्य॑स्य", "धन्या॑य", "", "infidel atheist"]) + let v = native_list_append(v, ["सत्फल", "noun", "सत्फलाः", "सत्फलस्य", "सत्फलाय", "", "the pomegranate tree"]) + let v = native_list_append(v, ["सत्संकल्प", "noun", "सत्संकल्प", "", "", "", "one who has"]) + let v = native_list_append(v, ["सत्कार", "noun", "सत्कार", "", "", "", "kind treatment honour"]) + let v = native_list_append(v, ["सत्पुत्र", "noun", "सत्पुत्र", "", "", "", "a good or"]) + let v = native_list_append(v, ["सत्पति", "noun", "सत्पति", "", "", "", "a mighty lord"]) + let v = native_list_append(v, ["सत्पथ", "noun", "सत्पथ", "", "", "", "a good or"]) + let v = native_list_append(v, ["मोहन", "noun", "मोहनाः", "मोहनस्य", "मोहनाय", "", "the thorn apple"]) + let v = native_list_append(v, ["मोहरात्रि", "noun", "मोहरात्रि", "", "", "", "‘night of bewilderment’"]) + let v = native_list_append(v, ["स्मरगुरु", "noun", "स्मरगुरु", "", "", "", "‘love-preceptor’ name of"]) + let v = native_list_append(v, ["स्मर", "noun", "स्म॒राः", "स्म॒रस्य॑", "स्म॒राय॑", "", "memory remembrance recollection"]) + let v = native_list_append(v, ["आंजनेय", "noun", "आंजनेय", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["कथाम्", "noun", "कथाम्", "", "", "", "feminine singular accusative"]) + let v = native_list_append(v, ["अरण्य", "noun", "अर॑ण्यानि", "अर॑ण्यस्य", "अर॑ण्याय", "", "a foreign or"]) + let v = native_list_append(v, ["तडाग", "noun", "तडागाः", "तडागस्य", "तडागाय", "", "pond"]) + let v = native_list_append(v, ["वटवृक्ष", "noun", "वटवृक्षाः", "वटवृक्षस्य", "वटवृक्षाय", "", "a banyan tree"]) + let v = native_list_append(v, ["बिल", "noun", "बिला॑नि", "बिल॑स्य", "बिला॑य", "", "a cave hole"]) + let v = native_list_append(v, ["श्रामणेर", "noun", "श्रामणेराः", "श्रामणेरस्य", "श्रामणेराय", "", "novice monk pupil"]) + let v = native_list_append(v, ["नीलोत्पल", "noun", "नीलोत्पल", "", "", "", "blue lotus Nymphaea"]) + let v = native_list_append(v, ["पूर्णिमा", "noun", "पूर्णिमाः", "पूर्णिमायाः", "पूर्णिमायै", "", "day of full"]) + let v = native_list_append(v, ["कुल्फ", "noun", "कु॒ल्फाः", "कु॒ल्फस्य॑", "कु॒ल्फाय॑", "", "ankle"]) + let v = native_list_append(v, ["वसुधा", "noun", "वसु॑धाः", "वसु॑धायाः", "वसु॑धायै", "", "earth"]) + let v = native_list_append(v, ["कुटुम्ब", "noun", "कुटु॑म्बानि", "कुटु॑म्बस्य", "कुटु॑म्बाय", "", "a household members"]) + let v = native_list_append(v, ["कुटुम्बक", "noun", "कुटुम्बकानि", "कुटुम्बकस्य", "कुटुम्बकाय", "", "a household family"]) + let v = native_list_append(v, ["आदर्श", "noun", "आ॒द॒र्शाः", "आ॒द॒र्शस्य॑", "आ॒द॒र्शाय॑", "", "mirror"]) + let v = native_list_append(v, ["กรุณา", "noun", "กรุณา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["शील", "noun", "शीलानि", "शीलस्य", "शीलाय", "", "conduct disposition nature"]) + let v = native_list_append(v, ["មាស", "noun", "មាស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["उल्ब", "noun", "उल्बा॑नि", "उल्ब॑स्य", "उल्बा॑य", "", "cover envelope"]) + let v = native_list_append(v, ["दिति", "noun", "दित॑यः", "दितेः॑", "दित॑ये", "", "distributing dividing splitting"]) + let v = native_list_append(v, ["हति", "noun", "हतयः", "हतेः", "हतये", "", "a stroke or"]) + let v = native_list_append(v, ["मांसं", "noun", "मांसं", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["मांसम्", "noun", "मांसम्", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["जलवेष्टितभूमि", "noun", "जलवेष्टितभूमि", "", "", "", "island"]) + let v = native_list_append(v, ["लोला", "noun", "लोलाः", "लोलायाः", "लोलायै", "", "the tongue"]) + let v = native_list_append(v, ["रसना", "noun", "रसनाः", "रसनायाः", "रसनायै", "", "tongue"]) + let v = native_list_append(v, ["रोध", "noun", "रोधाः", "रोधस्य", "रोधाय", "", "the act of"]) + let v = native_list_append(v, ["धूप", "noun", "धूपाः", "धूपस्य", "धूपाय", "", "incense perfume aromatic"]) + let v = native_list_append(v, ["बुद्बुद", "noun", "बुद्बुद", "", "", "", "bubble"]) + let v = native_list_append(v, ["मुदिता", "noun", "मुदिता", "", "", "", "joy gladness especially"]) + let v = native_list_append(v, ["मैथिली", "noun", "मैथिली", "", "", "", "Maithili language"]) + let v = native_list_append(v, ["गोमांस", "noun", "गोमांस", "", "", "", "beef"]) + let v = native_list_append(v, ["द्वंद्व", "noun", "द्वंद्वानि", "द्वंद्वस्य", "द्वंद्वाय", "", "pair couple"]) + let v = native_list_append(v, ["सिंहपुर", "noun", "सिंहपुराणि", "सिंहपुरस्य", "सिंहपुराय", "", "Singapore an island"]) + let v = native_list_append(v, ["प्रमाद", "noun", "प्र॒मादाः॑", "प्र॒माद॑स्य", "प्र॒मादा॑य", "", "carelessness heedlessness"]) + let v = native_list_append(v, ["अप्रमाद", "noun", "अप्रमादाः", "अप्रमादस्य", "अप्रमादाय", "", "vigilance mindfulness attentiveness"]) + let v = native_list_append(v, ["अर्थशास्त्र", "noun", "अर्थशास्त्राणि", "अर्थशास्त्रस्य", "अर्थशास्त्राय", "", "Arthashastra a book"]) + let v = native_list_append(v, ["अर्थशास्त्रक", "noun", "अर्थशास्त्रकानि", "अर्थशास्त्रकस्य", "अर्थशास्त्रकाय", "", "alternative form of"]) + let v = native_list_append(v, ["भृग्", "noun", "भृग्", "", "", "", "the crackling of"]) + let v = native_list_append(v, ["स्त्रीत्व", "noun", "स्त्रीत्व", "", "", "", "womanhood wifehood"]) + let v = native_list_append(v, ["शिवपुराण", "noun", "शिवपुराण", "", "", "", "name of one"]) + let v = native_list_append(v, ["जम्बुद्वीप", "noun", "ज॒म्बु॒द्वी॒पाः", "ज॒म्बु॒द्वी॒पस्य॑", "ज॒म्बु॒द्वी॒पाय॑", "", "Jambudvipa one of"]) + let v = native_list_append(v, ["कीर्ति", "noun", "कीर्तयः", "कीर्तेः", "कीर्तये", "", "mention making mention"]) + let v = native_list_append(v, ["अग्र", "noun", "अग्रा॑णि", "अग्र॑स्य", "अग्रा॑य", "", "foremost point or"]) + let v = native_list_append(v, ["पलायन", "noun", "पलायनानि", "पलायनस्य", "पलायनाय", "", "fleeing flight escape"]) + let v = native_list_append(v, ["पलायित", "noun", "पलायित", "", "", "", "gallop L."]) + let v = native_list_append(v, ["अपहरण", "noun", "अपहरण", "", "", "", "taking away carrying"]) + let v = native_list_append(v, ["गंधक", "noun", "गंधक", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["गन्धमादन", "noun", "गन्धमादन", "", "", "", "‘intoxicating with fragrance’"]) + let v = native_list_append(v, ["गन्धकारी", "noun", "गन्धकारी", "", "", "", "a female servant"]) + let v = native_list_append(v, ["गन्धगज", "noun", "गन्धगज", "", "", "", "‘scent-elephant’ an elephant"]) + let v = native_list_append(v, ["गन्धमृग", "noun", "गन्धमृग", "", "", "", "the musk deer"]) + let v = native_list_append(v, ["गन्धाखु", "noun", "गन्धाखु", "", "", "", "muskrat"]) + let v = native_list_append(v, ["गन्धनकुल", "noun", "गन्धनकुल", "", "", "", "the muskrat of"]) + let v = native_list_append(v, ["सुधाकर", "noun", "सुधाकर", "", "", "", "a mine or"]) + let v = native_list_append(v, ["सुधा", "noun", "सुधाः", "सुधायाः", "सुधायै", "", "‘good drink’ the"]) + let v = native_list_append(v, ["सुधापाणि", "noun", "सुधापाणि", "", "", "", "‘bearing nectar in"]) + let v = native_list_append(v, ["रुद्र", "noun", "रु॒द्राः", "रु॒द्रस्य॑", "रु॒द्राय॑", "", "Rudra father of"]) + let v = native_list_append(v, ["रुद्", "noun", "रुद्", "", "", "", "pain"]) + let v = native_list_append(v, ["रोद", "noun", "रोद", "", "", "", "weeping wailing lamentation"]) + let v = native_list_append(v, ["रोदन", "noun", "रोदन", "", "", "", "weeping crying"]) + let v = native_list_append(v, ["रोदसी", "noun", "रोदसी", "", "", "", "heaven and earth"]) + let v = native_list_append(v, ["रुद्राणी", "noun", "रुद्राणी", "", "", "", "The wife of"]) + let v = native_list_append(v, ["रुद्रप्रयाग", "noun", "रुद्रप्रयाग", "", "", "", "The sacred place"]) + let v = native_list_append(v, ["रोदस्", "noun", "रोदस्", "", "", "", "heaven and earth"]) + let v = native_list_append(v, ["सुधानिधि", "noun", "सुधानिधि", "", "", "", "the moon"]) + let v = native_list_append(v, ["सुधांशु", "noun", "सु॒धां॒शवः॑", "सु॒धां॒शोः", "सु॒धां॒शवे॑", "", "the moon as"]) + let v = native_list_append(v, ["आन्ध्र", "noun", "आन्ध्र", "", "", "", "the Andhra country"]) + let v = native_list_append(v, ["राज्", "noun", "राजः॑", "रा॒जः", "रा॒जे", "", "a king sovereign"]) + let v = native_list_append(v, ["प्रेष्ठ", "noun", "प्रेष्ठ", "", "", "", "a lover husband"]) + let v = native_list_append(v, ["गोदावरी", "noun", "गोदावर्यः", "गोदावर्याः", "गोदावर्यै", "", "Name of a"]) + let v = native_list_append(v, ["गोकुल", "noun", "गोकुलानि", "गोकुलस्य", "गोकुलाय", "", "a herd of"]) + let v = native_list_append(v, ["गोत्र", "noun", "गो॒त्राणि॑", "गो॒त्रस्य॑", "गो॒त्राय॑", "", "protection or shelter"]) + let v = native_list_append(v, ["गोलोक", "noun", "गोलोक", "", "", "", "‘cow-world’"]) + let v = native_list_append(v, ["गोक्षीर", "noun", "गो॒क्षी॒राणि॑", "गो॒क्षी॒रस्य॑", "गो॒क्षी॒राय॑", "", "cowmilk"]) + let v = native_list_append(v, ["क्षीराब्धि", "noun", "क्षीराब्धि", "", "", "", "the sea of"]) + let v = native_list_append(v, ["क्षीरान्न", "noun", "क्षीरान्न", "", "", "", "rice cooked with"]) + let v = native_list_append(v, ["रजस्वला", "noun", "रजस्वला", "", "", "", "a menstruating or"]) + let v = native_list_append(v, ["रक्षणा", "noun", "रक्षणा", "", "", "", "guarding protection Ṡak."]) + let v = native_list_append(v, ["रक्षण", "noun", "रक्षण", "", "", "", "‘protector’ Name of"]) + let v = native_list_append(v, ["रघु", "noun", "र॒घवः॑", "र॒घोः", "र॒घवे॑", "", "a racer"]) + let v = native_list_append(v, ["रघुवंश", "noun", "रघुवंश", "", "", "", "Raghus race R."]) + let v = native_list_append(v, ["रघुनन्दन", "noun", "रघुनन्दनाः", "रघुनन्दनस्य", "रघुनन्दनाय", "", "an epithet of"]) + let v = native_list_append(v, ["रचन", "noun", "रचनानि", "रचनस्य", "रचनाय", "", "the act of"]) + let v = native_list_append(v, ["दर्भ", "noun", "द॒र्भाः", "द॒र्भस्य॑", "द॒र्भाय॑", "", "a tuft or"]) + let v = native_list_append(v, ["रक्तबीज", "noun", "रक्तबीज", "", "", "", "“blood-seed” bahuvrihi"]) + let v = native_list_append(v, ["रक्ताक्ष", "noun", "रक्ताक्षाः", "रक्ताक्षस्य", "रक्ताक्षाय", "", "a buffalo L."]) + let v = native_list_append(v, ["रण", "noun", "रणाः॑", "रण॑स्य", "रणा॑य", "", "delight pleasure gladness"]) + let v = native_list_append(v, ["रक्तदन्ती", "noun", "रक्तदन्ती", "", "", "", "‘red-toothed’"]) + let v = native_list_append(v, ["रत्नाकर", "noun", "रत्नाकर", "", "", "", "a jewel-mine"]) + let v = native_list_append(v, ["रत्नतल्प", "noun", "रत्नतल्प", "", "", "", "a couch adorned"]) + let v = native_list_append(v, ["रत्नराशि", "noun", "रत्नराशि", "", "", "", "a heap of"]) + let v = native_list_append(v, ["रत्नदीप", "noun", "रत्नदीप", "", "", "", "‘jewels-lamp’"]) + let v = native_list_append(v, ["रत्नगिरि", "noun", "रत्नगिरि", "", "", "", "name of a"]) + let v = native_list_append(v, ["रथोत्सव", "noun", "रथोत्सव", "", "", "", "a car-festival a"]) + let v = native_list_append(v, ["रथसप्तमी", "noun", "रथसप्तमी", "", "", "", "name of the"]) + let v = native_list_append(v, ["रन्ध्र", "noun", "रन्ध्रा॑णि", "रन्ध्र॑स्य", "रन्ध्रा॑य", "", "a slit split"]) + let v = native_list_append(v, ["रन्ध्रान्वेषण", "noun", "रन्ध्रान्वेषण", "", "", "", "the act of"]) + let v = native_list_append(v, ["सम्भोग", "noun", "सम्भोगाः", "सम्भोगस्य", "सम्भोगाय", "", "alternative spelling of"]) + let v = native_list_append(v, ["अन्न", "noun", "अन्ना॑नि", "अन्न॑स्य", "अन्ना॑य", "", "food victuals"]) + let v = native_list_append(v, ["अन्नप्राश", "noun", "अन्नप्राश", "", "", "", "putting rice into"]) + let v = native_list_append(v, ["अन्नपूर्णा", "noun", "अन्नपूर्णा", "", "", "", "Name of a"]) + let v = native_list_append(v, ["अन्नदान", "noun", "अन्नदान", "", "", "", "the giving of"]) + let v = native_list_append(v, ["भृति", "noun", "भृ॒तयः॑", "भृ॒तेः", "भृ॒तये॑", "", "bearing carrying bringing"]) + let v = native_list_append(v, ["रमल", "noun", "रमल", "", "", "", "a mode of"]) + let v = native_list_append(v, ["रव", "noun", "रवाः॑", "रव॑स्य", "रवा॑य", "", "a roar yell"]) + let v = native_list_append(v, ["राक्षस", "noun", "राक्षसाः", "राक्षसस्य", "राक्षसाय", "", "a demon in"]) + let v = native_list_append(v, ["राक्षसत्व", "noun", "राक्षसत्व", "", "", "", "the state or"]) + let v = native_list_append(v, ["राक्षसी", "noun", "राक्षसी", "", "", "", "a female demon"]) + let v = native_list_append(v, ["रागिणी", "noun", "रागिणी", "", "", "", "a modification of"]) + let v = native_list_append(v, ["राजेन्द्र", "noun", "राजेन्द्र", "", "", "", "a lord of"]) + let v = native_list_append(v, ["राजाधिराज", "noun", "राजाधिराज", "", "", "", "a king of"]) + let v = native_list_append(v, ["राजान्न", "noun", "राजान्न", "", "", "", "food obtained from"]) + let v = native_list_append(v, ["राजासन", "noun", "राजासन", "", "", "", "a royal seat"]) + let v = native_list_append(v, ["राजशेखर", "noun", "राजशेखर", "", "", "", "Name of various"]) + let v = native_list_append(v, ["राजर्षि", "noun", "राजर्षि", "", "", "", "a royal ऋषि"]) + let v = native_list_append(v, ["राजलक्ष्मी", "noun", "राजलक्ष्मी", "", "", "", "the Fortune or"]) + let v = native_list_append(v, ["राजीव", "noun", "राजी॑वाः", "राजी॑वस्य", "राजी॑वाय", "", "a species of"]) + let v = native_list_append(v, ["राधा", "noun", "राधाः", "राधायाः", "राधायै", "", "prosperity success"]) + let v = native_list_append(v, ["राधेय", "noun", "राधेय", "", "", "", "metr. of Karna"]) + let v = native_list_append(v, ["रावण", "noun", "रावण", "", "", "", "Ravana the king"]) + let v = native_list_append(v, ["कुन्ती", "noun", "कुन्त्यः", "कुन्त्याः", "कुन्त्यै", "", "Kunti daughter of"]) + let v = native_list_append(v, ["पाण्डु", "noun", "पाण्डु", "", "", "", "jaundice Car."]) + let v = native_list_append(v, ["पाण्डव", "noun", "पाण्डवाः", "पाण्डवस्य", "पाण्डवाय", "", "a son of"]) + let v = native_list_append(v, ["रामदास", "noun", "रामदास", "", "", "", "name of a"]) + let v = native_list_append(v, ["रामलीला", "noun", "रामलीला", "", "", "", "name of the"]) + let v = native_list_append(v, ["रामदूत", "noun", "रामदूत", "", "", "", "‘रामss messenger’ name"]) + let v = native_list_append(v, ["रामनवमी", "noun", "रामनवमी", "", "", "", "name of the"]) + let v = native_list_append(v, ["रामसेतु", "noun", "रामसेतवः", "रामसेतोः", "रामसेतवे", "", "Rama Setu"]) + let v = native_list_append(v, ["रामा", "noun", "रामा", "", "", "", "a beautiful woman"]) + let v = native_list_append(v, ["रामानुज", "noun", "रामानुज", "", "", "", "‘younger brother of"]) + let v = native_list_append(v, ["सेतु", "noun", "सेत॑वः", "सेतोः॑", "सेत॑वे", "", "a bridge"]) + let v = native_list_append(v, ["राष्ट्रीय", "noun", "राष्ट्रीयाः", "राष्ट्रीयस्य", "राष्ट्रीयाय", "", "an heir-apparent or"]) + let v = native_list_append(v, ["रुच्", "noun", "रुचः॑", "रु॒चः", "रु॒चे", "", "light lustre brightness"]) + let v = native_list_append(v, ["रुक्मिणी", "noun", "रुक्मिण्यः", "रुक्मिण्याः", "रुक्मिण्यै", "", "Rukmini first queen"]) + let v = native_list_append(v, ["रुधिरोद्गारिन्", "noun", "रुधिरोद्गारिन्", "", "", "", "‘emitting blood’"]) + let v = native_list_append(v, ["रूप्य", "noun", "रूप्या॑णि", "रूप्य॑स्य", "रूप्या॑य", "", "silver Mn. MBh."]) + let v = native_list_append(v, ["शुक्ल", "noun", "शुक्लाः", "शुक्लस्य", "शुक्लाय", "", "the bright half"]) + let v = native_list_append(v, ["भाव", "noun", "भा॒वाः", "भा॒वस्य॑", "भा॒वाय॑", "", "becoming being existing"]) + let v = native_list_append(v, ["विक्रम", "noun", "विक्रमाः", "विक्रमस्य", "विक्रमाय", "", "a step stride"]) + let v = native_list_append(v, ["तारण", "noun", "तारण", "", "", "", "crossing safe passage"]) + let v = native_list_append(v, ["व्यय", "noun", "व्यय", "", "", "", "disappearance decay ruin"]) + let v = native_list_append(v, ["पराभव", "noun", "पराभव", "", "", "", "vanishing disappearance dissolution"]) + let v = native_list_append(v, ["आयुर्वेद", "noun", "आ॒यु॒र्वेदाः॑", "आ॒यु॒र्वेद॑स्य", "आ॒यु॒र्वेदा॑य", "", "the science of"]) + let v = native_list_append(v, ["विवरण", "noun", "विवरणानि", "विवरणस्य", "विवरणाय", "", "translation interpretation gloss"]) + let v = native_list_append(v, ["मतिभ्रम", "noun", "मतिभ्रम", "", "", "", "confusion of mind"]) + let v = native_list_append(v, ["नाशन", "noun", "नाशनानि", "नाशनस्य", "नाशनाय", "", "destruction removal"]) + let v = native_list_append(v, ["भ्रम", "noun", "भ्रमाः", "भ्रमस्य", "भ्रमाय", "", "wandering or roaming"]) + let v = native_list_append(v, ["भ्रमण", "noun", "भ्रमणानि", "भ्रमणस्य", "भ्रमणाय", "", "wandering or roaming"]) + let v = native_list_append(v, ["भ्रमरक", "noun", "भ्रमरक", "", "", "", "a curl on"]) + let v = native_list_append(v, ["भ्रान्ति", "noun", "भ्रान्तयः", "भ्रान्तेः", "भ्रान्तये", "", "wandering or roaming"]) + let v = native_list_append(v, ["नल", "noun", "नल", "", "", "", "a species of"]) + let v = native_list_append(v, ["क्रोधन", "noun", "क्रोधन", "", "", "", "the 59th year"]) + let v = native_list_append(v, ["जन्मभूमि", "noun", "जन्मभूमयः", "जन्मभूमेः", "जन्मभूमये", "", "native country birthplace"]) + let v = native_list_append(v, ["कच्छपी", "noun", "कच्छपी", "", "", "", "wart"]) + let v = native_list_append(v, ["समूह", "noun", "स॒मू॒हाः", "स॒मू॒हस्य॑", "स॒मू॒हाय॑", "", "a collection assemblage"]) + let v = native_list_append(v, ["नवरस", "noun", "नवरसाः", "नवरसस्य", "नवरसाय", "", "the nine sentiments"]) + let v = native_list_append(v, ["कीलक", "noun", "कीलक", "", "", "", "a pin bolt"]) + let v = native_list_append(v, ["प्लवंग", "noun", "प्लवंग", "", "", "", "a monkey"]) + let v = native_list_append(v, ["प्लव", "noun", "प्ल॒वाः", "प्ल॒वस्य॑", "प्ल॒वाय॑", "", "a float raft"]) + let v = native_list_append(v, ["रेखा", "noun", "रेखाः", "रेखायाः", "रेखायै", "", "a scratch streak"]) + let v = native_list_append(v, ["रेणु", "noun", "रे॒णवः॑", "रे॒णोः", "रे॒णवे॑", "", "dust a grain"]) + let v = native_list_append(v, ["रेणुका", "noun", "रेणुका", "", "", "", "a particular drug"]) + let v = native_list_append(v, ["रोहण", "noun", "रोह॑णानि", "रोह॑णस्य", "रोह॑णाय", "", "the act of"]) + let v = native_list_append(v, ["जनको", "noun", "जनको", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["रोहिणी", "noun", "रोहि॑ण्यः", "रोहि॑ण्याः", "रोहि॑ण्यै", "", "a red cow"]) + let v = native_list_append(v, ["रौद्र", "noun", "रौद्र", "", "", "", "a descendant of"]) + let v = native_list_append(v, ["दुर्मति", "noun", "दुर्मति", "", "", "", "bad disposition of"]) + let v = native_list_append(v, ["गुरुकुल", "noun", "गु॒रु॒कुला॑नि", "गु॒रु॒कुल॑स्य", "गु॒रु॒कुला॑य", "", "the house of"]) + let v = native_list_append(v, ["लक्ष", "noun", "ल॒क्षाः", "ल॒क्षस्य॑", "ल॒क्षाय॑", "", "a mark sign"]) + let v = native_list_append(v, ["लक्ष्मण", "noun", "लक्ष्मण", "", "", "", "Lakshmana son of"]) + let v = native_list_append(v, ["लग्न", "noun", "लग्न", "", "", "", "the point of"]) + let v = native_list_append(v, ["लग्नक", "noun", "लग्नक", "", "", "", "a fixed surety"]) + let v = native_list_append(v, ["त्वच", "noun", "त्वच", "", "", "", "skin"]) + let v = native_list_append(v, ["लता", "noun", "लताः", "लतायाः", "लतायै", "", "a creeper any"]) + let v = native_list_append(v, ["लम्ब", "noun", "लम्बाः", "लम्बस्य", "लम्बाय", "", "a perpendicular"]) + let v = native_list_append(v, ["अनस्", "noun", "अनां॑सि", "अन॑सः", "अन॑से", "", "cart wagon"]) + let v = native_list_append(v, ["शूरत्व", "noun", "शूरत्व", "", "", "", "state or condition"]) + let v = native_list_append(v, ["ललना", "noun", "ललना", "", "", "", "a wanton woman"]) + let v = native_list_append(v, ["ललित", "noun", "ललित", "", "", "", "name of Durga"]) + let v = native_list_append(v, ["ललाम", "noun", "ललाम", "", "", "", "a coloured mark"]) + let v = native_list_append(v, ["आम्ल", "noun", "आम्ल", "", "", "", "sourness acidity"]) + let v = native_list_append(v, ["मरकत", "noun", "मरकतानि", "मरकतस्य", "मरकताय", "", "emerald"]) + let v = native_list_append(v, ["लास्य", "noun", "लास्य", "", "", "", "dancing a dance"]) + let v = native_list_append(v, ["लाघव", "noun", "लाघवानि", "लाघवस्य", "लाघवाय", "", "swiftness rapidity speed"]) + let v = native_list_append(v, ["लालस", "noun", "लालसाः", "लालसस्य", "लालसाय", "", "longing or ardent"]) + let v = native_list_append(v, ["लावण्य", "noun", "लावण्य", "", "", "", "saltness the taste"]) + let v = native_list_append(v, ["क्षोभ", "noun", "क्षोभ", "", "", "", "shaking agitation disturbance"]) + let v = native_list_append(v, ["पिपासा", "noun", "पि॒पा॒साः", "पि॒पा॒सायाः॑", "पि॒पा॒सायै॑", "", "thirst"]) + let v = native_list_append(v, ["तण्डुल", "noun", "तण्डुल", "", "", "", "grain after threshing"]) + let v = native_list_append(v, ["गुच्छ", "noun", "गुच्छाः", "गुच्छस्य", "गुच्छाय", "", "a bundle bunch"]) + let v = native_list_append(v, ["कल्पना", "noun", "कल्पना", "", "", "", "making manufacturing preparing"]) + let v = native_list_append(v, ["उदुम्बर", "noun", "उदुम्बराः", "उदुम्बरस्य", "उदुम्बराय", "", "the tree Ficus"]) + let v = native_list_append(v, ["सेवा", "noun", "सेवाः", "सेवायाः", "सेवायै", "", "going or resorting"]) + let v = native_list_append(v, ["अधर", "noun", "अध॑राः", "अध॑रस्य", "अध॑राय", "", "the lower lip"]) + let v = native_list_append(v, ["आलापा", "noun", "आलापा", "", "", "", "a particular melody"]) + let v = native_list_append(v, ["आलाप", "noun", "आलाप", "", "", "", "speaking to addressing"]) + let v = native_list_append(v, ["मानवती", "noun", "मानवती", "", "", "", "a woman angry"]) + let v = native_list_append(v, ["धेनुका", "noun", "धेनुका", "", "", "", "milch cow cow"]) + let v = native_list_append(v, ["पावनी", "noun", "पावनी", "", "", "", "purifier sanctifier"]) + let v = native_list_append(v, ["रूपवती", "noun", "रूपवती", "", "", "", "a handsome woman"]) + let v = native_list_append(v, ["रसिक", "noun", "रसिकाः", "रसिकस्य", "रसिकाय", "", "a man full"]) + let v = native_list_append(v, ["कोसल", "noun", "कोसल", "", "", "", "one of the"]) + let v = native_list_append(v, ["अब्धि", "noun", "अब्धि", "", "", "", "the ocean"]) + let v = native_list_append(v, ["पदार्थ", "noun", "पदार्थ", "", "", "", "the meaning of"]) + let v = native_list_append(v, ["श्यामल", "noun", "श्यामलाः", "श्यामलस्य", "श्यामलाय", "", "black the colour"]) + let v = native_list_append(v, ["शत्रुघ्न", "noun", "शत्रुघ्न", "", "", "", "name of one"]) + let v = native_list_append(v, ["शतावरी", "noun", "शतावरी", "", "", "", "Asparagus racemosus"]) + let v = native_list_append(v, ["शत्रुत्व", "noun", "शत्रुत्व", "", "", "", "rivalry enmity"]) + let v = native_list_append(v, ["धान्य", "noun", "धा॒न्या॑नि", "धा॒न्य॑स्य", "धा॒न्या॑य", "", "corn grain"]) + let v = native_list_append(v, ["मुष्क", "noun", "मु॒ष्काः", "मु॒ष्कस्य॑", "मु॒ष्काय॑", "", "testicle scrotum"]) + let v = native_list_append(v, ["मालिनी", "noun", "मालिन्यः", "मालिन्याः", "मालिन्यै", "", "the wife of"]) + let v = native_list_append(v, ["हरिद्रा", "noun", "हरिद्रा", "", "", "", "Curcuma longa turmeric"]) + let v = native_list_append(v, ["हरिन्मणि", "noun", "हरिन्मणि", "", "", "", "‘green gem’"]) + let v = native_list_append(v, ["हराद्रि", "noun", "हराद्रि", "", "", "", "Mount Kailasa the"]) + let v = native_list_append(v, ["पिपीलक", "noun", "पिपीलकाः", "पिपीलकस्य", "पिपीलकाय", "", "a large black"]) + let v = native_list_append(v, ["नाद", "noun", "नादाः", "नादस्य", "नादाय", "", "a loud sound"]) + let v = native_list_append(v, ["सैनिक", "noun", "सैनिक", "", "", "", "an army-man soldier"]) + let v = native_list_append(v, ["हय", "noun", "हयाः॑", "हय॑स्य", "हया॑य", "", "a horse"]) + let v = native_list_append(v, ["हयग्रीव", "noun", "हयग्रीवाः", "हयग्रीवस्य", "हयग्रीवाय", "", "Hayagriva an avatar"]) + let v = native_list_append(v, ["वदन", "noun", "वद॑नानि", "वद॑नस्य", "वद॑नाय", "", "mouth face"]) + let v = native_list_append(v, ["आग्नेय", "noun", "आग्नेय", "", "", "", "the south-east quarter"]) + let v = native_list_append(v, ["पतन", "noun", "पतन", "", "", "", "the act of"]) + let v = native_list_append(v, ["मध्याह्न", "noun", "मध्याह्नाः", "मध्याह्नस्य", "मध्याह्नाय", "", "midday noon"]) + let v = native_list_append(v, ["रसायन", "noun", "रसायनानि", "रसायनस्य", "रसायनाय", "", "a medicine supposed"]) + let v = native_list_append(v, ["अग्रज", "noun", "अ॒ग्र॒जाः", "अ॒ग्र॒जस्य॑", "अ॒ग्र॒जाय॑", "", "the firstborn an"]) + let v = native_list_append(v, ["आदित्य", "noun", "आदित्य", "", "", "", "one of the"]) + let v = native_list_append(v, ["नवग्रह", "noun", "नवग्रह", "", "", "", "the nine planets"]) + let v = native_list_append(v, ["नवरत्न", "noun", "नवरत्न", "", "", "", "the nine precious"]) + let v = native_list_append(v, ["व्यास", "noun", "व्यास", "", "", "", "width breadth the"]) + let v = native_list_append(v, ["जलचर", "noun", "जलचर", "", "", "", "‘water-goer’ an aquatic"]) + let v = native_list_append(v, ["वाराणसी", "noun", "वाराणसी", "वाराणस्याः", "वाराणस्यै", "", "Varanasi a metropolis"]) + let v = native_list_append(v, ["मातामही", "noun", "मातामही", "", "", "", "a maternal grandmother"]) + let v = native_list_append(v, ["मातामह", "noun", "मातामह", "", "", "", "a maternal grandfather"]) + let v = native_list_append(v, ["पितामह", "noun", "पि॒ता॒म॒हाः", "पि॒ता॒म॒हस्य॑", "पि॒ता॒म॒हाय॑", "", "paternal grandfather"]) + let v = native_list_append(v, ["पितामही", "noun", "पितामही", "", "", "", "a paternal grandmother"]) + let v = native_list_append(v, ["प्रपितामह", "noun", "प्रपितामहाः", "प्रपितामहस्य", "प्रपितामहाय", "", "a paternal great"]) + let v = native_list_append(v, ["प्रपितामही", "noun", "प्रपितामही", "", "", "", "a paternal great-grandmother"]) + let v = native_list_append(v, ["पौत्र", "noun", "पौत्र", "", "", "", "a sons son"]) + let v = native_list_append(v, ["वमन", "noun", "वमनानि", "वमनस्य", "वमनाय", "", "the act of"]) + let v = native_list_append(v, ["गृहस्थ", "noun", "गृहस्थ", "", "", "", "a householder Brahman"]) + let v = native_list_append(v, ["क्लेश", "noun", "क्लेशाः", "क्लेशस्य", "क्लेशाय", "", "pain affliction distress"]) + let v = native_list_append(v, ["चक्रपाणि", "noun", "चक्रपाणि", "", "", "", "‘discus-handed"]) + let v = native_list_append(v, ["चक्रधर", "noun", "चक्रधर", "", "", "", "bearing a wheel"]) + let v = native_list_append(v, ["पाणि", "noun", "पाणयः", "पाणेः", "पाणये", "", "the hand"]) + let v = native_list_append(v, ["पातक", "noun", "पातक", "", "", "", "‘that which causes"]) + let v = native_list_append(v, ["चित्रगुप्त", "noun", "चित्रगुप्त", "", "", "", "Chitragupta one of"]) + let v = native_list_append(v, ["तत्पुरुष", "noun", "त॒त्पुरु॑षाः", "त॒त्पुरु॑षस्य", "त॒त्पुरु॑षाय", "", "the original or"]) + let v = native_list_append(v, ["सूची", "noun", "सू॒च्यः॑", "सू॒च्याः", "सू॒च्यै", "", "a needle or"]) + let v = native_list_append(v, ["अच्युत", "noun", "अच्युत", "", "", "", "Name of Vishnu"]) + let v = native_list_append(v, ["इन्दिरा", "noun", "इन्दिराः", "इन्दिरायाः", "इन्दिरायै", "", "beauty splendour"]) + let v = native_list_append(v, ["रमा", "noun", "रमा", "", "", "", "a wife mistress"]) + let v = native_list_append(v, ["कैवल्य", "noun", "कैवल्य", "", "", "", "absolute unity"]) + let v = native_list_append(v, ["कैरव", "noun", "कैरव", "", "", "", "the white lotus"]) + let v = native_list_append(v, ["कूर्म", "noun", "कू॒र्माः", "कू॒र्मस्य॑", "कू॒र्माय॑", "", "a tortoise turtle"]) + let v = native_list_append(v, ["परीक्षक", "noun", "परीक्षक", "", "", "", "an examiner judge"]) + let v = native_list_append(v, ["निधि", "noun", "नि॒धयः॑", "नि॒धेः", "नि॒धये॑", "", "setting down or"]) + let v = native_list_append(v, ["पुण्य", "noun", "पुण्या॑नि", "पुण्य॑स्य", "पुण्या॑य", "", "the good or"]) + let v = native_list_append(v, ["खनि", "noun", "ख॒नयः॑", "ख॒नेः", "ख॒नये॑", "", "a mine especially"]) + let v = native_list_append(v, ["खनन", "noun", "खननानि", "खननस्य", "खननाय", "", "the act of"]) + let v = native_list_append(v, ["खानक", "noun", "खानक", "", "", "", "one who digs"]) + let v = native_list_append(v, ["सम्पादन", "noun", "सम्पादनानि", "सम्पादनस्य", "सम्पादनाय", "", "the act of"]) + let v = native_list_append(v, ["कर्कटक", "noun", "कर्कटकाः", "कर्कटकस्य", "कर्कटकाय", "", "a crab"]) + let v = native_list_append(v, ["अव्यय", "noun", "अव्यय", "", "", "", "an indeclinable word"]) + let v = native_list_append(v, ["संतति", "noun", "संतति", "", "", "", "stretching or extending"]) + let v = native_list_append(v, ["संतान", "noun", "संतान", "", "", "", "continued succession continuance"]) + let v = native_list_append(v, ["संकर", "noun", "संकर", "", "", "", "mixing together commingling"]) + let v = native_list_append(v, ["संग्राम", "noun", "संग्राम", "", "", "", "battle war fight"]) + let v = native_list_append(v, ["संक्रमण", "noun", "सं॒क्रम॑णानि", "सं॒क्रम॑णस्य", "सं॒क्रम॑णाय", "", "going or meeting"]) + let v = native_list_append(v, ["आस्थान", "noun", "अ॒स्थाना॑नि", "अ॒स्थान॑स्य", "अ॒स्थाना॑य", "", "place site ground"]) + let v = native_list_append(v, ["धैर्य", "noun", "धैर्याणि", "धैर्यस्य", "धैर्याय", "", "firmness constancy calmness"]) + let v = native_list_append(v, ["क्रय", "noun", "क्रय", "", "", "", "buying purchase"]) + let v = native_list_append(v, ["विक्रय", "noun", "विक्रय", "", "", "", "sale selling vending"]) + let v = native_list_append(v, ["कथन", "noun", "कथनानि", "कथनस्य", "कथनाय", "", "the act of"]) + let v = native_list_append(v, ["कुञ्जर", "noun", "कुञ्जराः", "कुञ्जरस्य", "कुञ्जराय", "", "an elephant"]) + let v = native_list_append(v, ["बहुत्व", "noun", "ब॒हुत्वा॑नि", "ब॒हुत्व॑स्य", "ब॒हुत्वा॑य", "", "muchness abundance multitude"]) + let v = native_list_append(v, ["इन्द्रिय", "noun", "इ॒न्द्रि॒याणि॑", "इ॒न्द्रि॒यस्य॑", "इ॒न्द्रि॒याय॑", "", "power force the"]) + let v = native_list_append(v, ["पञ्चक", "noun", "पञ्चक", "", "", "", "any collection or"]) + let v = native_list_append(v, ["कोण", "noun", "कोणाः", "कोणस्य", "कोणाय", "", "a corner angle"]) + let v = native_list_append(v, ["सुभद्रा", "noun", "सुभद्राः", "सुभद्रायाः", "सुभद्रायै", "", "Subhadra daughter of"]) + let v = native_list_append(v, ["हिमाचल", "noun", "हिमाचल", "", "", "", "‘snow-mountain’ the Himalaya"]) + let v = native_list_append(v, ["अचल", "noun", "अचल", "", "", "", "the deity Acala"]) + let v = native_list_append(v, ["ओड्र", "noun", "ओड्राः", "ओड्रस्य", "ओड्राय", "", "name of a"]) + let v = native_list_append(v, ["दण्डक", "noun", "दण्डक", "", "", "", "‘a staff’"]) + let v = native_list_append(v, ["दण्डन", "noun", "दण्ड॑नाः", "दण्ड॑नस्य", "दण्ड॑नाय", "", "beating chastising punishing"]) + let v = native_list_append(v, ["दण्डनीति", "noun", "दण्डनीति", "", "", "", "application of the"]) + let v = native_list_append(v, ["भागवत", "noun", "भागवताः", "भागवतस्य", "भागवताय", "", "a follower or"]) + let v = native_list_append(v, ["आञ्जनेय", "noun", "आञ्जनेय", "", "", "", "‘son of अञ्जना"]) + let v = native_list_append(v, ["स्वामिनी", "noun", "स्वामिन्यः", "स्वामिन्याः", "स्वामिन्यै", "", "a proprietress mistress"]) + let v = native_list_append(v, ["द्वारा", "noun", "द्वारा", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["अच्छ", "noun", "अच्छाः", "अच्छस्य", "अच्छाय", "", "bear"]) + let v = native_list_append(v, ["विशाखा", "noun", "विशाखाः", "विशाखायाः", "विशाखायै", "", "the 14th later"]) + let v = native_list_append(v, ["रामेश्वर", "noun", "रामेश्वर", "", "", "", "Name of an"]) + let v = native_list_append(v, ["शिथिल", "noun", "शिथिल", "", "", "", "a loose fastening"]) + let v = native_list_append(v, ["शिथिली", "noun", "शिथिली", "", "", "", "a kind of"]) + let v = native_list_append(v, ["शिथिलत्व", "noun", "शिथिलत्व", "", "", "", "looseness laxity relaxation"]) + let v = native_list_append(v, ["कलिङ्ग", "noun", "कलिङ्ग", "", "", "", "name of a"]) + let v = native_list_append(v, ["द्रविड", "noun", "द्रविडाः", "द्रविडस्य", "द्रविडाय", "", "name of people"]) + let v = native_list_append(v, ["द्राविड", "noun", "द्राविड", "", "", "", "the Dravidian people"]) + let v = native_list_append(v, ["उत्कल", "noun", "उत्कल", "", "", "", "name of the"]) + let v = native_list_append(v, ["लिप्ता", "noun", "लिप्ताः", "लिप्तायाः", "लिप्तायै", "", "an arcminute"]) + let v = native_list_append(v, ["प्रदर्शन", "noun", "प्रदर्शनानि", "प्रदर्शनस्य", "प्रदर्शनाय", "", "look appearance often"]) + let v = native_list_append(v, ["गया", "noun", "गया", "", "", "", "Gaya historical and"]) + let v = native_list_append(v, ["गोप्तृ", "noun", "गोप्तारः", "गोप्तुः", "गोप्त्रे", "", "guardian"]) + let v = native_list_append(v, ["प्राकृत", "noun", "प्राकृताः", "प्राकृतस्य", "प्राकृताय", "", "an ordinary common"]) + let v = native_list_append(v, ["अर्यमन्", "noun", "अ॒र्य॒माणः॑", "अ॒र्य॒म्णः", "अ॒र्य॒म्णे", "", "a friend play-fellow"]) + let v = native_list_append(v, ["प्राकार", "noun", "प्राकाराः", "प्राकारस्य", "प्राकाराय", "", "a wall enclosure"]) + let v = native_list_append(v, ["दुर्गा", "noun", "दुर्गा", "दु॒र्गायाः॑", "दु॒र्गायै॑", "", "Durga a form"]) + let v = native_list_append(v, ["भवानी", "noun", "भवानी", "", "", "", "Name of a"]) + let v = native_list_append(v, ["भव", "noun", "भव", "", "", "", "coming into existence"]) + let v = native_list_append(v, ["कामाक्षी", "noun", "कामाक्षी", "", "", "", "Name of Hindu"]) + let v = native_list_append(v, ["चामुण्डा", "noun", "चामुण्डाः", "चामुण्डायाः", "चामुण्डायै", "", "a form of"]) + let v = native_list_append(v, ["नर्मदा", "noun", "नर्मदा", "", "", "", "‘pleasure-giver’."]) + let v = native_list_append(v, ["मगध", "noun", "मगध", "", "", "", "name of a"]) + let v = native_list_append(v, ["मञ्जिष्ठा", "noun", "मञ्जिष्ठाः", "मञ्जिष्ठायाः", "मञ्जिष्ठायै", "", "Indian madder Rubia"]) + let v = native_list_append(v, ["अत्रि", "noun", "अत्र॑यः", "अत्रेः॑", "अत्र॑ये", "", "a devourer"]) + let v = native_list_append(v, ["शिशुपाल", "noun", "शिशुपाल", "शिशुपालस्य", "शिशुपालाय", "", "Shishupala king of"]) + let v = native_list_append(v, ["द्रोण", "noun", "द्रोणा॑नि", "द्रोण॑स्य", "द्रोणा॑य", "", "a wooden vessel"]) + let v = native_list_append(v, ["शताब्द", "noun", "शताब्द", "", "", "", "a hundred years"]) + let v = native_list_append(v, ["शतक", "noun", "शतक", "", "", "", "a hundred a"]) + let v = native_list_append(v, ["होता", "noun", "होता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["बजे", "noun", "बजे", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["शार्क", "noun", "शार्क", "", "", "", "clayed or candied"]) + let v = native_list_append(v, ["मैनाक", "noun", "मैनाक", "", "", "", "Name of a"]) + let v = native_list_append(v, ["देवकी", "noun", "देवकी", "देवक्याः", "देवक्यै", "", "Wife of Vasudeva"]) + let v = native_list_append(v, ["व्यायाम", "noun", "व्या॒या॒माः", "व्या॒या॒मस्य॑", "व्या॒या॒माय॑", "", "dragging different ways"]) + let v = native_list_append(v, ["भाजन", "noun", "भाज॑नानि", "भाज॑नस्य", "भाज॑नाय", "", "dividing sharing"]) + let v = native_list_append(v, ["स्वाति", "noun", "स्वाति", "", "", "", "Name of the"]) + let v = native_list_append(v, ["वसुदेव", "noun", "वसुदेव", "वसुदेवस्य", "वसुदेवाय", "", "Vasudeva husband of"]) + let v = native_list_append(v, ["अध्यापक", "noun", "अध्यापकाः", "अध्यापकस्य", "अध्यापकाय", "", "teacher professor"]) + let v = native_list_append(v, ["कण्ठीरव", "noun", "कण्ठीरव", "", "", "", "‘roaring from the"]) + let v = native_list_append(v, ["शिरोमणि", "noun", "शिरोमणि", "", "", "", "‘crest-jewel’ a jewel"]) + let v = native_list_append(v, ["वृन्दावन", "noun", "वृन्दावनानि", "वृन्दावनस्य", "वृन्दावनाय", "", "a forest near"]) + let v = native_list_append(v, ["वृन्दा", "noun", "वृन्दा", "", "", "", "sacred basil ="]) + let v = native_list_append(v, ["या", "noun", "याः", "यः", "ये", "", "going"]) + let v = native_list_append(v, ["हाल", "noun", "हालाः", "हालस्य", "हालाय", "", "plough"]) + let v = native_list_append(v, ["वातावरण", "noun", "वातावरणानि", "वातावरणस्य", "वातावरणाय", "", "atmosphere environment"]) + let v = native_list_append(v, ["प्रदूषण", "noun", "प्रदूषणानि", "प्रदूषणस्य", "प्रदूषणाय", "", "pollution"]) + let v = native_list_append(v, ["विद्यालय", "noun", "विद्यालयाः", "विद्यालयस्य", "विद्यालयाय", "", "a place of"]) + let v = native_list_append(v, ["शृङ्गार", "noun", "शृङ्गार", "", "", "", "love as ‘the"]) + let v = native_list_append(v, ["कफ", "noun", "कफाः", "कफस्य", "कफाय", "", "phlegm"]) + let v = native_list_append(v, ["त्रपु", "noun", "त्रपूणि", "त्रपुणः", "त्रपुणे", "", "tin"]) + let v = native_list_append(v, ["छात्रा", "noun", "छात्राः", "छात्रायाः", "छात्रायै", "", "female student pupil"]) + let v = native_list_append(v, ["निम्बू", "noun", "निम्ब्वः", "निम्ब्वाः", "निम्ब्वै", "", "the common lime"]) + let v = native_list_append(v, ["भाग", "noun", "भा॒गाः", "भा॒गस्य॑", "भा॒गाय॑", "", "part portion share"]) + let v = native_list_append(v, ["कठिनता", "noun", "कठिनताः", "कठिनतायाः", "कठिनतायै", "", "hardness firmness harshness"]) + let v = native_list_append(v, ["कारक", "noun", "कार॑काणि", "कार॑कस्य", "कार॑काय", "", "instrumental in bringing"]) + let v = native_list_append(v, ["मत", "noun", "म॒तानि॑", "म॒तस्य॑", "म॒ताय॑", "", "a thought idea"]) + let v = native_list_append(v, ["जाल", "noun", "जाला॑नि", "जाल॑स्य", "जाला॑य", "", "a net for"]) + let v = native_list_append(v, ["तिथि", "noun", "तिथयः", "तिथेः", "तिथये", "", "a lunar day"]) + let v = native_list_append(v, ["प्रस्थान", "noun", "प्रस्थान", "", "", "", "setting out departure"]) + let v = native_list_append(v, ["शालिवाहन", "noun", "शालिवाहनाः", "शालिवाहनस्य", "शालिवाहनाय", "", "Shalivahana mythological Indian"]) + let v = native_list_append(v, ["शकट", "noun", "शकट", "", "", "", "a cart wagon"]) + let v = native_list_append(v, ["तिल", "noun", "तिलाः", "तिलस्य", "तिलाय", "", "Sesamum indicum its"]) + let v = native_list_append(v, ["रेफ", "noun", "रेफाः", "रेफस्य", "रेफाय", "", "a burring guttural"]) + let v = native_list_append(v, ["वस्त्र", "noun", "वस्त्रा॑णि", "वस्त्र॑स्य", "वस्त्रा॑य", "", "clothes garment dress"]) + let v = native_list_append(v, ["बीजगणित", "noun", "बीज॑गणितानि", "बीज॑गणितस्य", "बीज॑गणिताय", "", "algebra"]) + let v = native_list_append(v, ["तालिका", "noun", "तालिकाः", "तालिकायाः", "तालिकायै", "", "palm of the"]) + let v = native_list_append(v, ["बृहस्पति", "noun", "बृह॒स्पत॑यः", "बृह॒स्पतेः॑", "बृह॒स्पत॑ये", "", "Bṛhaspati son of"]) + let v = native_list_append(v, ["निवेदन", "noun", "निवेदनाः", "निवेदनस्य", "निवेदनाय", "", "a name of"]) + let v = native_list_append(v, ["कन्द", "noun", "कन्दाः", "कन्दस्य", "कन्दाय", "", "a bulbous or"]) + let v = native_list_append(v, ["दीपावलि", "noun", "दीपावलयः", "दीपावलेः", "दीपावलये", "", "a row of"]) + let v = native_list_append(v, ["कलन", "noun", "कलनानि", "कलनस्य", "कलनाय", "", "the act of"]) + let v = native_list_append(v, ["मात्रा", "noun", "मात्राः॑", "मात्रा॑याः", "मात्रा॑यै", "", "measure quantity size"]) + let v = native_list_append(v, ["कर्तव्य", "noun", "कर्तव्यानि", "कर्तव्यस्य", "कर्तव्याय", "", "any work that"]) + let v = native_list_append(v, ["राहुल", "noun", "राहुल", "", "", "", "Rāhula the son"]) + let v = native_list_append(v, ["मारुति", "noun", "मारुतयः", "मारुतेः", "मारुतये", "", "a name of"]) + let v = native_list_append(v, ["वाक्य", "noun", "वाक्यानि", "वाक्यस्य", "वाक्याय", "", "speech saying assertion"]) + let v = native_list_append(v, ["रसायनज्ञ", "noun", "रसायनज्ञाः", "रसायनज्ञस्य", "रसायनज्ञाय", "", "chemist"]) + let v = native_list_append(v, ["जटिल", "noun", "ज॒टि॒लाः", "ज॒टि॒लस्य॑", "ज॒टि॒लाय॑", "", "an ascetic"]) + let v = native_list_append(v, ["गर्व", "noun", "गर्वाः", "गर्वस्य", "गर्वाय", "", "pride arrogance haughtiness"]) + let v = native_list_append(v, ["स्रवन्ती", "noun", "स्रव॑न्त्यः", "स्रव॑न्त्याः", "स्रव॑न्त्यै", "", "a river stream"]) + let v = native_list_append(v, ["स्रव", "noun", "स्रवाः", "स्रवस्य", "स्रवाय", "", "flowing streaming a"]) + let v = native_list_append(v, ["सुमति", "noun", "सुमतयः", "सुमत्याः", "सुमत्यै", "", "good mind or"]) + let v = native_list_append(v, ["तत्सम", "noun", "तत्समाः", "तत्समस्य", "तत्समाय", "", "A Sanskrit learned"]) + let v = native_list_append(v, ["सामाजिक", "noun", "सामाजिकाः", "सामाजिकस्य", "सामाजिकाय", "", "a member of"]) + let v = native_list_append(v, ["कथासरित्सागर", "noun", "कथासरित्सागर", "", "", "", "the Kathasaritsagara"]) + let v = native_list_append(v, ["पुरुषसूक्त", "noun", "पुरुषसूक्त", "पु॒रु॒ष॒सू॒क्तस्य॑", "पु॒रु॒ष॒सू॒क्ताय॑", "", "The Purusha Sukta"]) + let v = native_list_append(v, ["भगिनी", "noun", "भगिन्यः", "भगिन्याः", "भगिन्यै", "", "sister"]) + let v = native_list_append(v, ["ब्राह्मी", "noun", "ब्राह्मी", "", "", "", "Brahmi script"]) + let v = native_list_append(v, ["दिवि", "noun", "दिवि", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["अन्धपरम्परान्याय", "noun", "अन्धपरम्परान्याय", "", "", "", "the rule of"]) + let v = native_list_append(v, ["अरुन्धतीदर्शनन्याय", "noun", "अरुन्धतीदर्शनन्याय", "", "", "", "the rule of"]) + let v = native_list_append(v, ["अशोकवनिकान्याय", "noun", "अशोकवनिकान्याय", "", "", "", "the rule of"]) + let v = native_list_append(v, ["कपिञ्जल", "noun", "कपिञ्जल", "", "", "", "the francoline partridge"]) + let v = native_list_append(v, ["कपिञ्जलन्याय", "noun", "कपिञ्जलन्याय", "", "", "", "the rule of"]) + let v = native_list_append(v, ["अन्धचटकन्याय", "noun", "अन्धचटकन्याय", "", "", "", "the rule of"]) + let v = native_list_append(v, ["घुणाक्षरन्याय", "noun", "घुणाक्षरन्याय", "", "", "", "fortuitous and unexpected"]) + let v = native_list_append(v, ["घुणाक्षर", "noun", "घुणाक्षर", "", "", "", "an incision in"]) + let v = native_list_append(v, ["अश्मलोष्ट्रन्याय", "noun", "अश्मलोष्ट्रन्याय", "", "", "", "the rule of"]) + let v = native_list_append(v, ["ধৰ্ম", "noun", "ধৰ্ম", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["पत्रिका", "noun", "पत्रिकाः", "पत्रिकायाः", "पत्रिकायै", "", "alternative spelling of"]) + let v = native_list_append(v, ["महायान", "noun", "महायानानि", "महायानस्य", "महायानाय", "", "Mahayana a school"]) + let v = native_list_append(v, ["धूमकेतु", "noun", "धूमकेतवः", "धूमकेतोः", "धूमकेतवे", "", "comet"]) + let v = native_list_append(v, ["शम्भु", "noun", "शम्भवः", "शम्भोः", "शम्भवे", "", "an epithet of"]) + let v = native_list_append(v, ["क्षुद्र", "noun", "क्षुद्राः", "क्षुद्रस्य", "क्षुद्राय", "", "a small particle"]) + let v = native_list_append(v, ["शूद्र", "noun", "शू॒द्राः", "शू॒द्रस्य॑", "शू॒द्राय॑", "", "a Shudra"]) + let v = native_list_append(v, ["दशरथ", "noun", "दशरथ", "दशरथस्य", "दशरथाय", "", "Name of Rāmas"]) + let v = native_list_append(v, ["विधा", "noun", "विधाः", "विधायाः", "विधायै", "", "division part portion"]) + let v = native_list_append(v, ["पोष", "noun", "पोषाः", "पोषस्य", "पोषाय", "", "thriving prosperity abundance"]) + let v = native_list_append(v, ["पोषण", "noun", "पोषण", "", "", "", "the act of"]) + let v = native_list_append(v, ["यंत्र", "noun", "यंत्र", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["राजधानी", "noun", "राज॑धान्यः", "राज॑धान्याः", "राज॑धान्यै", "", "capital city"]) + let v = native_list_append(v, ["अयोध्या", "noun", "अयोध्याः", "अयोध्यायाः", "अयोध्यायै", "", "a city the"]) + let v = native_list_append(v, ["पालक", "noun", "पालकाः", "पालकस्य", "पालकाय", "", "a guardian protector"]) + let v = native_list_append(v, ["द्वितीया विभक्ति", "noun", "द्वितीया विभक्तयः", "द्वितीया विभक्तेः", "द्वितीया विभक्तये", "", "accusative case"]) + let v = native_list_append(v, ["प्रथमा विभक्ति", "noun", "प्रथमा विभक्तयः", "प्रथमा विभक्तेः", "प्रथमा विभक्तये", "", "nominative case"]) + let v = native_list_append(v, ["तृतीया विभक्ति", "noun", "तृतीया विभक्तयः", "तृतीया विभक्तेः", "तृतीया विभक्तये", "", "instrumental case"]) + let v = native_list_append(v, ["चतुर्थी विभक्ति", "noun", "चतुर्थी विभक्तयः", "चतुर्थी विभक्तेः", "चतुर्थी विभक्तये", "", "dative case"]) + let v = native_list_append(v, ["षष्ठी विभक्ति", "noun", "षष्ठी विभक्तयः", "षष्ठी विभक्तेः", "षष्ठी विभक्तये", "", "genitive case"]) + let v = native_list_append(v, ["सप्तमी विभक्ति", "noun", "सप्तमी विभक्तयः", "सप्तमी विभक्तेः", "सप्तमी विभक्तये", "", "locative case"]) + let v = native_list_append(v, ["सेवि", "noun", "सेवीनि", "सेविनः", "सेविने", "", "the jujube fruit"]) + let v = native_list_append(v, ["त्रुटि", "noun", "त्रुटयः", "त्रुटेः", "त्रुटये", "", "truti Hindu unit"]) + let v = native_list_append(v, ["दाल", "noun", "दालाः", "दालस्य", "दालाय", "", "a kind of"]) + let v = native_list_append(v, ["काश", "noun", "काशाः", "काशस्य", "काशाय", "", "the becoming visible"]) + let v = native_list_append(v, ["वाले", "noun", "वाले", "", "", "", "feminine vocative singular"]) + let v = native_list_append(v, ["परिवर्तन", "noun", "प॒रि॒वर्त॑नानि", "प॒रि॒वर्त॑नस्य", "प॒रि॒वर्त॑नाय", "", "turning or whirling"]) + let v = native_list_append(v, ["जनता", "noun", "ज॒नताः॑", "ज॒नता॑याः", "ज॒नता॑यै", "", "people folk"]) + let v = native_list_append(v, ["परम", "noun", "परम", "", "", "", "highest point extreme"]) + let v = native_list_append(v, ["यमुना", "noun", "यमुना", "यमुनायाः", "यमुनायै", "", "the river Yamuna"]) + let v = native_list_append(v, ["ज्वाला", "noun", "ज्वालाः", "ज्वालायाः", "ज्वालायै", "", "flame blaze"]) + let v = native_list_append(v, ["दरिद्र", "noun", "दरिद्राः", "दरिद्रस्य", "दरिद्राय", "", "a beggar"]) + let v = native_list_append(v, ["निर्माण", "noun", "निर्माणानि", "निर्माणस्य", "निर्माणाय", "", "measuring measure reach"]) + let v = native_list_append(v, ["कश्मीर", "noun", "कश्मीराः", "कश्मीरस्य", "कश्मीराय", "", "Kashmir a contested"]) + let v = native_list_append(v, ["हार", "noun", "हाराः", "हारस्य", "हाराय", "", "taking away removal"]) + let v = native_list_append(v, ["शिखा", "noun", "शिखाः", "शिखायाः", "शिखायै", "", "plume tuft of"]) + let v = native_list_append(v, ["देवस्", "noun", "देवस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["उपयोग", "noun", "उपयोगाः", "उपयोगस्य", "उपयोगाय", "", "use utility application"]) + let v = native_list_append(v, ["मूल", "noun", "मूला॑नि", "मूल॑स्य", "मूला॑य", "", "root"]) + let v = native_list_append(v, ["गणन", "noun", "गणनानि", "गणनस्य", "गणनाय", "", "reckoning counting calculation"]) + let v = native_list_append(v, ["राति", "noun", "रा॒तयः॑", "रा॒तेः", "रा॒तये॑", "", "a favor grace"]) + let v = native_list_append(v, ["उपन्यास", "noun", "उपन्यासाः", "उपन्यासस्य", "उपन्यासाय", "", "putting down placing"]) + let v = native_list_append(v, ["अलि", "noun", "अलयः", "अलेः", "अलये", "", "a large black"]) + let v = native_list_append(v, ["स्वाद", "noun", "स्वादाः", "स्वादस्य", "स्वादाय", "", "taste flavour"]) + let v = native_list_append(v, ["स्मरण", "noun", "स्मरणानि", "स्मरणस्य", "स्मरणाय", "", "remembrance memory"]) + let v = native_list_append(v, ["सभ्य", "noun", "सभ्याः", "सभ्यस्य", "सभ्याय", "", "an assistant at"]) + let v = native_list_append(v, ["पापा", "noun", "पापाः", "पापायाः", "पापायै", "", "a beast of"]) + let v = native_list_append(v, ["गरुडस्", "noun", "गरुडस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["महाभारतस्", "noun", "महाभारतस्", "", "", "", "masculine singular nominative"]) + let v = native_list_append(v, ["अभ्यास", "noun", "अभ्यासाः", "अभ्यासस्य", "अभ्यासाय", "", "alternative form of"]) + let v = native_list_append(v, ["जालपृष्ठ", "noun", "जालपृष्ठानि", "जालपृष्ठस्य", "जालपृष्ठाय", "", "webpage"]) + let v = native_list_append(v, ["उपाय", "noun", "उपाय", "", "", "", "method means way"]) + let v = native_list_append(v, ["त्याग", "noun", "त्या॒गाः", "त्या॒गस्य॑", "त्या॒गाय॑", "", "abandonment"]) + let v = native_list_append(v, ["धारणा", "noun", "धारणाः", "धारणायाः", "धारणायै", "", "holding bearing"]) + let v = native_list_append(v, ["ढाल", "noun", "ढालानि", "ढालस्य", "ढालाय", "", "a shield"]) + let v = native_list_append(v, ["मिलन", "noun", "मिलनानि", "मिलनस्य", "मिलनाय", "", "coming together meeting"]) + let v = native_list_append(v, ["शक", "noun", "शकाः", "शकस्य", "शकाय", "", "Saka Indo-Scythians"]) + let v = native_list_append(v, ["योद्धा", "noun", "योद्धा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["निर्वाण", "noun", "निर्वाणानि", "निर्वाणस्य", "निर्वाणाय", "", "blowing out extinction"]) + let v = native_list_append(v, ["रणनीति", "noun", "रणनीतयः", "रणनीतेः", "रणनीतये", "", "tactic strategy"]) + let v = native_list_append(v, ["दानी", "noun", "दानी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["दाता", "noun", "दाता", "", "", "", "inflection of दातृ"]) + let v = native_list_append(v, ["पाताल", "noun", "पाताल", "", "", "", "an excavation a"]) + let v = native_list_append(v, ["रजत", "noun", "र॒ज॒तानि॑", "र॒ज॒तस्य॑", "र॒ज॒ताय॑", "", "silver"]) + let v = native_list_append(v, ["क्षयरोग", "noun", "क्षयरोगाः", "क्षयरोगस्य", "क्षयरोगाय", "", "tuberculosis"]) + let v = native_list_append(v, ["क्षय", "noun", "क्षयाः॑", "क्षय॑स्य", "क्षया॑य", "", "dominion"]) + let v = native_list_append(v, ["दासी", "noun", "दास्यः", "दास्याः", "दास्यै", "", "a female servant"]) + let v = native_list_append(v, ["विषय", "noun", "विषयाः", "विषयस्य", "विषयाय", "", "a thing"]) + let v = native_list_append(v, ["स्तर", "noun", "स्तराः", "स्तरस्य", "स्तराय", "", "layer stratum"]) + let v = native_list_append(v, ["मध्य", "noun", "मध्याः॑", "मध्य॑स्य", "मध्या॑य", "", "centre middle"]) + let v = native_list_append(v, ["तिमि", "noun", "तिमयः", "तिमेः", "तिमये", "", "large sea fish"]) + let v = native_list_append(v, ["अस्तित्व", "noun", "अस्ति॑त्वानि", "अस्ति॑त्वस्य", "अस्ति॑त्वाय", "", "existence reality"]) + let v = native_list_append(v, ["अनुभव", "noun", "अनुभवाः", "अनुभवस्य", "अनुभवाय", "", "perception apprehension fruition"]) + let v = native_list_append(v, ["प्रसिद्धि", "noun", "प्रसिद्धयः", "प्रसिद्धेः", "प्रसिद्धये", "", "fame renown publicity"]) + let v = native_list_append(v, ["कक्षा", "noun", "कक्षाः", "कक्षायाः", "कक्षायै", "", "any place surrounded"]) + let v = native_list_append(v, ["मक्षिका", "noun", "मक्षिकाः", "मक्षिकायाः", "मक्षिकायै", "", "a fly bee"]) + let v = native_list_append(v, ["मूर्खता", "noun", "मू॒र्खताः॑", "मू॒र्खता॑याः", "मू॒र्खता॑यै", "", "foolishness stupidity dullness"]) + let v = native_list_append(v, ["मयूर", "noun", "म॒यूराः॑", "म॒यूर॑स्य", "म॒यूरा॑य", "", "peacock YV. MBh."]) + let v = native_list_append(v, ["चरा", "noun", "चरा", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["ဘူမိ", "noun", "ဘူမိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["जम्बु", "noun", "जम्बु", "", "", "", "the jambul tree"]) + let v = native_list_append(v, ["जम्बुल", "noun", "जम्बुलाः", "जम्बुलस्य", "जम्बुलाय", "", "synonym of जम्बु"]) + let v = native_list_append(v, ["निम्न", "noun", "नि॒म्नानि॑", "नि॒म्नस्य॑", "नि॒म्नाय॑", "", "depth low ground"]) + let v = native_list_append(v, ["विचित्र", "noun", "विचित्राणि", "विचित्रस्य", "विचित्राय", "", "variegated color"]) + let v = native_list_append(v, ["संकट", "noun", "संकटानि", "संकटस्य", "संकटाय", "", "a narrow passage"]) + let v = native_list_append(v, ["आपण", "noun", "आपणाः", "आपणस्य", "आपणाय", "", "shop store establishment"]) + let v = native_list_append(v, ["प्रस्तुत", "noun", "प्रस्तुतानि", "प्रस्तुतस्य", "प्रस्तुताय", "", "beginning undertaking"]) + let v = native_list_append(v, ["स्वीकार", "noun", "स्वीकाराः", "स्वीकारस्य", "स्वीकाराय", "", "making ones own"]) + let v = native_list_append(v, ["श्रेणी", "noun", "श्रेण्यः॑", "श्रेण्याः॑", "श्रेण्यै॑", "", "formation of a"]) + let v = native_list_append(v, ["मा", "noun", "माः", "मः", "मे", "", "measure"]) + let v = native_list_append(v, ["तर", "noun", "तर", "", "", "", "Crossing"]) + let v = native_list_append(v, ["वास्तविक", "noun", "वास्तविकाः", "वास्तविकस्य", "वास्तविकाय", "", "a realist"]) + let v = native_list_append(v, ["चरित्र", "noun", "च॒रित्रा॑णि", "च॒रित्र॑स्य", "च॒रित्रा॑य", "", "a foot leg"]) + let v = native_list_append(v, ["समाज", "noun", "समाजाः", "समाजस्य", "समाजाय", "", "society assembly conclave"]) + let v = native_list_append(v, ["भूकम्प", "noun", "भूक॑म्पाः", "भूक॑म्पस्य", "भूक॑म्पाय", "", "an earthquake"]) + let v = native_list_append(v, ["अब्द", "noun", "अब्दाः", "अब्दस्य", "अब्दाय", "", "“giving water” a"]) + let v = native_list_append(v, ["आस", "noun", "आसाः॑", "आस॑स्य", "आसा॑य", "", "ashes"]) + let v = native_list_append(v, ["क्षण", "noun", "क्षणाः", "क्षणस्य", "क्षणाय", "", "any instantaneous point"]) + let v = native_list_append(v, ["रेखागणित", "noun", "रेखागणितानि", "रेखागणितस्य", "रेखागणिताय", "", "geometry"]) + let v = native_list_append(v, ["योग्य", "noun", "योग्याः॑", "योग्य॑स्य", "योग्या॑य", "", "draught animal"]) + let v = native_list_append(v, ["तार", "noun", "ताराः", "तारस्य", "ताराय", "", "crossing"]) + let v = native_list_append(v, ["प्रकाशक", "noun", "प्रकाशकाः", "प्रकाशकस्य", "प्रकाशकाय", "", "light-giver the sun"]) + let v = native_list_append(v, ["आकर्षण", "noun", "आक॑र्षणाः", "आक॑र्षणस्य", "आक॑र्षणाय", "", "attraction"]) + let v = native_list_append(v, ["भोग", "noun", "भोगाः॑", "भोग॑स्य", "भोगा॑य", "", "enjoyment pleasure delight"]) + let v = native_list_append(v, ["कृपा", "noun", "कृ॒पाः॑", "कृ॒पा॑याः", "कृ॒पा॑यै", "", "pity tenderness compassion"]) + let v = native_list_append(v, ["अञ्चल", "noun", "अञ्चलाः", "अञ्चलस्य", "अञ्चलाय", "", "border hem corner"]) + let v = native_list_append(v, ["सम्बन्ध", "noun", "सम्बन्धाः", "सम्बन्धस्य", "सम्बन्धाय", "", "binding or joining"]) + let v = native_list_append(v, ["वर्णन", "noun", "वर्णनानि", "वर्णनस्य", "वर्णनाय", "", "the act of"]) + let v = native_list_append(v, ["त्रिकोण", "noun", "त्रिकोणाः", "त्रिकोणस्य", "त्रिकोणाय", "", "triangle"]) + let v = native_list_append(v, ["अक्षरसमाम्नाय", "noun", "अक्षरसमाम्नाय", "", "", "", "alphabet Pat. BhP."]) + let v = native_list_append(v, ["आभा", "noun", "आभाः", "आभायाः", "आभायै", "", "appearance"]) + let v = native_list_append(v, ["คุรุ", "noun", "คุรุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ग्रामीण", "noun", "ग्रामीण", "", "", "", "belonging to the"]) + let v = native_list_append(v, ["प्रतीत्यसमुत्पाद", "noun", "प्रतीत्यसमुत्पाद", "", "", "", "the chain of"]) + let v = native_list_append(v, ["राजावर्त", "noun", "राजावर्ताः", "राजावर्तस्य", "राजावर्ताय", "", "lapis lazuli Bālar."]) + let v = native_list_append(v, ["स्तूप", "noun", "स्तूपाः", "स्तूपस्य", "स्तूपाय", "", "knot or tuft"]) + let v = native_list_append(v, ["ओम", "noun", "ओमाः", "ओमस्य", "ओमाय", "", "friend helper protector"]) + let v = native_list_append(v, ["न्यायालय", "noun", "न्यायालय", "न्यायालयस्य", "न्यायालयाय", "", "court tribunal"]) + let v = native_list_append(v, ["यूका", "noun", "यूकाः", "यूकायाः", "यूकायै", "", "a louse Mn."]) + let v = native_list_append(v, ["वाह", "noun", "वा॒हाः", "वा॒हस्य॑", "वा॒हाय॑", "", "draught animal"]) + let v = native_list_append(v, ["पतंग", "noun", "प॒तं॒गाः", "प॒तं॒गस्य॑", "प॒तं॒गाय॑", "", "Denotes various flying"]) + let v = native_list_append(v, ["चतुष्पद्", "noun", "चतुष्पद्", "", "", "", "a quadruped"]) + let v = native_list_append(v, ["द्यौष्पितृ", "noun", "द्यौष्पितृ", "द्यौष्पि॒तुः", "द्यौष्पि॒त्रे", "", "Dyaus Pita the"]) + let v = native_list_append(v, ["अशोक", "noun", "अशोक", "अशोकस्य", "अशोकाय", "", "Ashoka an emperor"]) + let v = native_list_append(v, ["ᬥᬃᬫ", "noun", "ᬥᬃᬫ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["वीरता", "noun", "वीरताः", "वीरतायाः", "वीरतायै", "", "manliness heroism"]) + let v = native_list_append(v, ["कलश", "noun", "क॒लशाः॑", "क॒लश॑स्य", "क॒लशा॑य", "", "a water-pot pitcher"]) + let v = native_list_append(v, ["नीर", "noun", "नीराणि", "नीरस्य", "नीराय", "", "water"]) + let v = native_list_append(v, ["परस्मैपद", "noun", "परस्मैपदानि", "परस्मैपदस्य", "परस्मैपदाय", "", "word for another"]) + let v = native_list_append(v, ["अमित्र", "noun", "अ॒मित्राः॑", "अ॒मित्र॑स्य", "अ॒मित्रा॑य", "", "not a friend"]) + let v = native_list_append(v, ["निमन्त्रण", "noun", "निमन्त्रण", "", "", "", "invitation a calling"]) + let v = native_list_append(v, ["ध्यानयोग", "noun", "ध्यानयोग", "", "", "", "profound meditation or"]) + let v = native_list_append(v, ["भाववाचक", "noun", "भाववाचक", "", "", "", "an abstract noun"]) + let v = native_list_append(v, ["दाना", "noun", "दाना", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["निवेश", "noun", "निवेशाः", "निवेशस्य", "निवेशाय", "", "entering entrance penetration"]) + let v = native_list_append(v, ["प्रवेश", "noun", "प्रवेशाः", "प्रवेशस्य", "प्रवेशाय", "", "entering entrance penetration"]) + let v = native_list_append(v, ["धनु", "noun", "धनवः", "धनोः", "धनवे", "", "bow"]) + let v = native_list_append(v, ["स्थानीय", "noun", "स्थानीयानि", "स्थानीयस्य", "स्थानीयाय", "", "a town or"]) + let v = native_list_append(v, ["आभरण", "noun", "आभरणाः", "आभरणस्य", "आभरणाय", "", "decorating"]) + let v = native_list_append(v, ["अन्धकार", "noun", "अन्धकाराः", "अन्धकारस्य", "अन्धकाराय", "", "darkness"]) + let v = native_list_append(v, ["वृत्ति", "noun", "वृत्तयः", "वृत्तेः", "वृत्तये", "", "job work"]) + let v = native_list_append(v, ["हस्तिनापुर", "noun", "हस्तिनापुर", "हस्तिनापुरस्य", "हस्तिनापुराय", "", "Hastinapura a city"]) + let v = native_list_append(v, ["मौर्य", "noun", "मौर्याः", "मौर्यस्य", "मौर्याय", "", "Maurya Mauryan Empire"]) + let v = native_list_append(v, ["त्रिपाद", "noun", "त्रिपाद", "", "", "", "an asterism of"]) + let v = native_list_append(v, ["भस्म", "noun", "भस्म", "", "", "", "ash charred residue"]) + let v = native_list_append(v, ["क्षमा", "noun", "क्षमाः", "क्षमायाः", "क्षमायै", "", "patience forbearance indulgence"]) + let v = native_list_append(v, ["वाला", "noun", "वालाः", "वालायाः", "वालायै", "", "coconut"]) + let v = native_list_append(v, ["आहुति", "noun", "आहुतयः", "आहुतेः", "आहुतये", "", "sacrifice instance of"]) + let v = native_list_append(v, ["श्वा", "noun", "श्वा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["कन्यादान", "noun", "कन्यादानानि", "कन्यादानस्य", "कन्यादानाय", "", "giving a girl"]) + let v = native_list_append(v, ["ढोल", "noun", "ढोलाः", "ढोलस्य", "ढोलाय", "", "a dhol kind"]) + let v = native_list_append(v, ["दिशा", "noun", "दिशाः॑", "दिशा॑याः", "दिशा॑यै", "", "direction region quarter"]) + let v = native_list_append(v, ["ज्ञाता", "noun", "ज्ञाता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["संग्रह", "noun", "संग्रहाः", "संग्रहस्य", "संग्रहाय", "", "holding together seizing"]) + let v = native_list_append(v, ["बाण", "noun", "बाणाः", "बाणस्य", "बाणाय", "", "a shaft made"]) + let v = native_list_append(v, ["भास", "noun", "भासाः", "भासस्य", "भासाय", "", "light lustre brightness"]) + let v = native_list_append(v, ["अध्यक्ष", "noun", "अध्यक्षाः", "अध्यक्षस्य", "अध्यक्षाय", "", "eyewitness overseer inspector"]) + let v = native_list_append(v, ["चिकित्सा", "noun", "चिकित्साः", "चिकित्सायाः", "चिकित्सायै", "", "medical attendance practice"]) + let v = native_list_append(v, ["มติ", "noun", "มติ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["दार", "noun", "दाराः", "दारस्य", "दाराय", "", "wife"]) + let v = native_list_append(v, ["देवो", "noun", "देवो", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सरोज", "noun", "सरोज", "", "", "", "a lotus Kāv."]) + let v = native_list_append(v, ["वीणा", "noun", "वीणाः॑", "वीणा॑याः", "वीणा॑यै", "", "the Indian lute"]) + let v = native_list_append(v, ["उपदेश", "noun", "उपदेशाः", "उपदेशस्य", "उपदेशाय", "", "advice teaching"]) + let v = native_list_append(v, ["सम्मान", "noun", "सम्मानाः", "सम्मानस्य", "सम्मानाय", "", "respect"]) + let v = native_list_append(v, ["मेथी", "noun", "मेथ्यः", "मेथ्याः", "मेथ्यै", "", "fenugreek methi"]) + let v = native_list_append(v, ["संगति", "noun", "संगतयः", "संगतेः", "संगतये", "", "coming together meeting"]) + let v = native_list_append(v, ["ज्योति", "noun", "ज्योतयः", "ज्योतेः", "ज्योतये", "", "alternative form of"]) + let v = native_list_append(v, ["संचार", "noun", "संचाराः", "संचारस्य", "संचाराय", "", "walking about wandering"]) + let v = native_list_append(v, ["कृषक", "noun", "कृषकाः", "कृषकस्य", "कृषकाय", "", "farmer ploughman"]) + let v = native_list_append(v, ["कौशल्या", "noun", "कौशल्या", "कौशल्यायाः", "कौशल्यायै", "", "Name of Dasharathas"]) + let v = native_list_append(v, ["परिवर्तित", "noun", "परिवर्तितानि", "परिवर्तितस्य", "परिवर्तिताय", "", "the action of"]) + let v = native_list_append(v, ["मूर्ति", "noun", "मूर्तयः", "मूर्तेः", "मूर्तये", "", "a solid body"]) + let v = native_list_append(v, ["គុណ", "noun", "គុណ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["तारक", "noun", "तारकाः", "तारकस्य", "तारकाय", "", "an epithet of"]) + let v = native_list_append(v, ["បុរាណ", "noun", "បុរាណ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["पिपीलिका", "noun", "पिपीलिकाः", "पिपीलिकायाः", "पिपीलिकायै", "", "the common small"]) + let v = native_list_append(v, ["खा", "noun", "खाः", "खायाः", "खायै", "", "spring well fountain"]) + let v = native_list_append(v, ["व्यवस्थ", "noun", "व्यवस्थाः", "व्यवस्थस्य", "व्यवस्थाय", "", "System"]) + let v = native_list_append(v, ["उत्थान", "noun", "उ॒त्थाना॑नि", "उ॒त्थान॑स्य", "उ॒त्थाना॑य", "", "the act of"]) + let v = native_list_append(v, ["स्वरूप", "noun", "स्व॒रू॒पाणि॑", "स्व॒रू॒पस्य॑", "स्व॒रू॒पाय॑", "", "own condition peculiarity"]) + let v = native_list_append(v, ["उल्लेख", "noun", "उल्लेख", "", "", "", "reference mention"]) + let v = native_list_append(v, ["सज्जन", "noun", "सज्जनानि", "सज्जनस्य", "सज्जनाय", "", "equipment preparation"]) + let v = native_list_append(v, ["នរក", "noun", "នរក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["व्योमन्", "noun", "व्यो॑मानः", "व्यो॑म्नः", "व्यो॑म्ने", "", "heaven sky atmosphere"]) + let v = native_list_append(v, ["व्रण", "noun", "व्रण", "", "", "", "wound sore ulcer"]) + let v = native_list_append(v, ["होत्र", "noun", "हो॒त्राणि॑", "हो॒त्रस्य॑", "हो॒त्राय॑", "", "sacrificing the function"]) + let v = native_list_append(v, ["खड्ग", "noun", "खड्गाः॑", "खड्ग॑स्य", "खड्गा॑य", "", "a sword"]) + let v = native_list_append(v, ["सती", "noun", "सती", "", "", "", "a good and"]) + let v = native_list_append(v, ["ज्ञानिन्", "noun", "ज्ञानिनः", "ज्ञानिनः", "ज्ञानिने", "", "a fortune-teller astrologer"]) + let v = native_list_append(v, ["चौर", "noun", "चौ॒राः", "चौ॒रस्य॑", "चौ॒राय॑", "", "a thief robber"]) + let v = native_list_append(v, ["रक्ति", "noun", "रक्ति", "", "", "", "affection attachment devotion"]) + let v = native_list_append(v, ["मर्त", "noun", "मर्ताः॑", "मर्त॑स्य", "मर्ता॑य", "", "a mortal man"]) + let v = native_list_append(v, ["వాత", "noun", "వాత", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["ទេវ", "noun", "ទេវ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["सोपान", "noun", "सोपान", "", "", "", "stairs steps a"]) + let v = native_list_append(v, ["शर", "noun", "श॒राः", "श॒रस्य॑", "श॒राय॑", "", "a sort of"]) + let v = native_list_append(v, ["स्तोत्र", "noun", "स्तो॒त्राणि॑", "स्तो॒त्रस्य॑", "स्तो॒त्राय॑", "", "eulogium a hymn"]) + let v = native_list_append(v, ["शाला", "noun", "शालाः॑", "शाला॑याः", "शाला॑यै", "", "a house mansion"]) + let v = native_list_append(v, ["याचक", "noun", "याचकाः", "याचकस्य", "याचकाय", "", "a petitioner asker"]) + let v = native_list_append(v, ["शूल", "noun", "शूलाः॑", "शूल॑स्य", "शूला॑य", "", "any sharp instrument"]) + let v = native_list_append(v, ["शृङ्गेरि", "noun", "शृङ्गेरि", "", "", "", "Sringeri Name of"]) + let v = native_list_append(v, ["घर्षण", "noun", "घर्षणानि", "घर्षणस्य", "घर्षणाय", "", "rubbing polishing"]) + let v = native_list_append(v, ["घात", "noun", "घाताः", "घातस्य", "घाताय", "", "a blow bruise"]) + let v = native_list_append(v, ["घातक", "noun", "घातक", "", "", "", "killing"]) + let v = native_list_append(v, ["घातिन्", "noun", "घातिनः", "घातिनः", "घातिने", "", "murderer"]) + let v = native_list_append(v, ["त्रिशूल", "noun", "त्रि॒शूला॑नि", "त्रि॒शूल॑स्य", "त्रि॒शूला॑य", "", "a trident"]) + let v = native_list_append(v, ["प्रभा", "noun", "प्र॒भाः", "प्र॒भायाः॑", "प्र॒भायै॑", "", "light brilliance radiance"]) + let v = native_list_append(v, ["दरद", "noun", "दरद", "", "", "", "fear"]) + let v = native_list_append(v, ["कमठ", "noun", "कमठ", "", "", "", "a tortoise"]) + let v = native_list_append(v, ["मङ्गला", "noun", "मङ्गलाः", "मङ्गलायाः", "मङ्गलायै", "", "Name of Uma"]) + let v = native_list_append(v, ["कार्त्तिकेय", "noun", "कार्त्तिकेयाः", "कार्त्तिकेयस्य", "कार्त्तिकेयाय", "", "commander of the"]) + let v = native_list_append(v, ["मेघनाद", "noun", "मेघनाद", "", "", "", "‘cloud-noise’ thunder"]) + let v = native_list_append(v, ["लम्बोदर", "noun", "लम्बोदर", "", "", "", "Name of Ganesha."]) + let v = native_list_append(v, ["अमला", "noun", "अमला", "", "", "", "Name of Hindu"]) + let v = native_list_append(v, ["शेखर", "noun", "शेखराः", "शेखरस्य", "शेखराय", "", "the top or"]) + let v = native_list_append(v, ["वाणी", "noun", "वाण्यः॑", "वाण्याः॑", "वाण्यै॑", "", "sound voice music"]) + let v = native_list_append(v, ["शतघ्नी", "noun", "शतघ्नी", "", "", "", "a deadly weapon"]) + let v = native_list_append(v, ["यात्रिक", "noun", "यात्रिक", "", "", "", "a traveller pilgrim"]) + let v = native_list_append(v, ["सर्वधारी", "noun", "सर्वधारी", "", "", "", "Name of the"]) + let v = native_list_append(v, ["प्रभव", "noun", "प्रभव", "", "", "", "production source origin"]) + let v = native_list_append(v, ["विभव", "noun", "विभव", "", "", "", "being everywhere omnipresence"]) + let v = native_list_append(v, ["श्रीमुख", "noun", "श्रीमुख", "", "", "", "a beautiful face"]) + let v = native_list_append(v, ["बहुधान्य", "noun", "बहुधान्य", "", "", "", "‘abounding in corn’"]) + let v = native_list_append(v, ["प्रमादिन्", "noun", "प्रमादिन्", "", "", "", "Name of the"]) + let v = native_list_append(v, ["अङ्गिरस्", "noun", "अङ्गि॑रसः", "अङ्गि॑रसः", "अङ्गि॑रसे", "", "Angiras son of"]) + let v = native_list_append(v, ["भरणी", "noun", "भरणी", "भर॑ण्याः", "भर॑ण्यै", "", "Bharani a nakshatra"]) + let v = native_list_append(v, ["पुष्पक", "noun", "पुष्पक", "", "", "", "Name of the"]) + let v = native_list_append(v, ["पुष्टि", "noun", "पुष्ट॑यः", "पुष्टेः॑", "पुष्ट॑ये", "", "well-nourished condition fatness"]) + let v = native_list_append(v, ["अश्वत्थामन्", "noun", "अश्वत्थामन्", "अश्वत्थाम्नः", "अश्वत्थाम्ने", "", "Ashwatthama son of"]) + let v = native_list_append(v, ["यादव", "noun", "यादवाः", "यादवस्य", "यादवाय", "", "a descendant of"]) + let v = native_list_append(v, ["जनमेजय", "noun", "जनमेजय", "", "", "", "‘causing men to"]) + let v = native_list_append(v, ["मत्स्यगन्धा", "noun", "मत्स्यगन्धा", "", "", "", "Name of Satyavati"]) + let v = native_list_append(v, ["शल्य", "noun", "शल्य", "", "", "", "a dart javelin"]) + let v = native_list_append(v, ["भीष्म", "noun", "भीष्म", "", "", "", "horror horribleness"]) + let v = native_list_append(v, ["भीषण", "noun", "भीषण", "", "", "", "the act of"]) + let v = native_list_append(v, ["विभीषण", "noun", "विभीषण", "", "", "", "Name of a"]) + let v = native_list_append(v, ["ऊर्मिला", "noun", "ऊर्मिला", "", "", "", "Name of daughter"]) + let v = native_list_append(v, ["सुग्रीव", "noun", "सुग्रीव", "", "", "", "King of Kiṣkindhā"]) + let v = native_list_append(v, ["टिप्पणी", "noun", "टिप्पण्यः", "टिप्पण्याः", "टिप्पण्यै", "", "a gloss comment"]) + let v = native_list_append(v, ["प्रवाह", "noun", "प्रवाह", "", "", "", "a stream river"]) + let v = native_list_append(v, ["प्रवह", "noun", "प्रवह", "", "", "", "wind air"]) + let v = native_list_append(v, ["शूर्पकर्ण", "noun", "शूर्पकर्ण", "", "", "", "an elephant"]) + let v = native_list_append(v, ["शूर्प", "noun", "शूर्पा॑णि", "शूर्प॑स्य", "शूर्पा॑य", "", "a winnowing basket"]) + let v = native_list_append(v, ["उमासुत", "noun", "उमासुत", "", "", "", "son of Uma."]) + let v = native_list_append(v, ["उमापति", "noun", "उमापतयः", "उमापतेः", "उमापतये", "", "Umās Husband an"]) + let v = native_list_append(v, ["शूर्पणखा", "noun", "शूर्पणखाः", "शूर्पणखायाः", "शूर्पणखायै", "", "Name of the"]) + let v = native_list_append(v, ["विघ्न", "noun", "विघ्नाः", "विघ्नस्य", "विघ्नाय", "", "a breaker destroyer"]) + let v = native_list_append(v, ["विघ्नेश्वर", "noun", "विघ्नेश्वर", "", "", "", "lord of obstacles"]) + let v = native_list_append(v, ["विघ्नपति", "noun", "विघ्नपति", "विघ्नपतेः", "विघ्नपतये", "", "lord of obstacles"]) + let v = native_list_append(v, ["गजमुख", "noun", "गजमुख", "", "", "", "elephant-faced."]) + let v = native_list_append(v, ["गजवदन", "noun", "गजवदन", "", "", "", "elephant-faced."]) + let v = native_list_append(v, ["गजानन", "noun", "गजानन", "", "", "", "Elephant-faced."]) + let v = native_list_append(v, ["हेरम्ब", "noun", "हेरम्ब", "", "", "", "a buffalo"]) + let v = native_list_append(v, ["विनायक", "noun", "विनायक", "", "", "", "a leader guide"]) + let v = native_list_append(v, ["एकदन्त", "noun", "एकदन्त", "", "", "", "‘one-toothed’ Name of"]) + let v = native_list_append(v, ["मूषिक", "noun", "मूषिकाः", "मूषिकस्य", "मूषिकाय", "", "rat mouse"]) + let v = native_list_append(v, ["आखुरथ", "noun", "आखुरथ", "", "", "", "Name of Ganesha"]) + let v = native_list_append(v, ["द्वैमातुर", "noun", "द्वैमातुर", "", "", "", "Name of Ganesha."]) + let v = native_list_append(v, ["गुणक", "noun", "गुणक", "", "", "", "a calculator reckoner"]) + let v = native_list_append(v, ["गुद", "noun", "गुद", "", "", "", "an intestine entrail"]) + let v = native_list_append(v, ["गणक", "noun", "गण॑काः", "गण॑कस्य", "गण॑काय", "", "one who reckons"]) + let v = native_list_append(v, ["काक", "noun", "काकाः॑", "काक॑स्य", "काका॑य", "", "imitation of the"]) + let v = native_list_append(v, ["ભૂમિ", "noun", "ભૂમિ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["રૂપ", "noun", "રૂપાણિ", "રૂપસ્ય", "રૂપાય", "", "Gujarati script form"]) + let v = native_list_append(v, ["यति", "noun", "यत॑यः", "यतेः॑", "यत॑ये", "", "a disposer"]) + let v = native_list_append(v, ["भारती", "noun", "भारती", "", "", "", "a female descendant"]) + let v = native_list_append(v, ["వసతి", "noun", "వసతి", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["दाडिम", "noun", "दाडिमाः", "दाडिमस्य", "दाडिमाय", "", "pomegranate"]) + let v = native_list_append(v, ["गजः", "noun", "गजः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["बाह्य", "noun", "बाह्य", "", "", "", "the outer part"]) + let v = native_list_append(v, ["केयूर", "noun", "केयूर", "", "", "", "a bracelet worn"]) + let v = native_list_append(v, ["अष्टमी", "noun", "अष्टमी", "", "", "", "Ashtami"]) + let v = native_list_append(v, ["चतुर्थी", "noun", "चतुर्थ्यः", "चतुर्थ्याः", "चतुर्थ्यै", "", "The fourth day"]) + let v = native_list_append(v, ["दशमी", "noun", "दशमी", "", "", "", "The tenth day"]) + let v = native_list_append(v, ["नवमी", "noun", "नवमी", "", "", "", "The ninth day"]) + let v = native_list_append(v, ["तिलक", "noun", "तिलक", "", "", "", "a freckle compared"]) + let v = native_list_append(v, ["एकादशी", "noun", "एकादशी", "", "", "", "The eleventh day"]) + let v = native_list_append(v, ["कीटक", "noun", "कीटक", "", "", "", "a worm an"]) + let v = native_list_append(v, ["मञ्जरी", "noun", "मञ्जरी", "", "", "", "a cluster of"]) + let v = native_list_append(v, ["मञ्जीरा", "noun", "मञ्जीरा", "", "", "", "Name of a"]) + let v = native_list_append(v, ["तुङ्गभद्रा", "noun", "तुङ्गभद्रा", "", "", "", "Name of a"]) + let v = native_list_append(v, ["तुङ्ग", "noun", "तुङ्ग", "", "", "", "a hil elevation"]) + let v = native_list_append(v, ["भद्र", "noun", "भ॒द्राणि॑", "भ॒द्रस्य॑", "भ॒द्राय॑", "", "prosperity happiness health"]) + let v = native_list_append(v, ["भद्रकाली", "noun", "भ॒द्रका॑ल्यः", "भ॒द्रका॑ल्याः", "भ॒द्रका॑ल्यै", "", "Name of a"]) + let v = native_list_append(v, ["भद्रपदा", "noun", "भद्रपदाः", "भद्रपदायाः", "भद्रपदायै", "", "name of the"]) + let v = native_list_append(v, ["परिमल", "noun", "परिमल", "", "", "", "fragrance or a"]) + let v = native_list_append(v, ["अपान", "noun", "अपान", "", "", "", "anus rectum"]) + let v = native_list_append(v, ["सरयु", "noun", "सरयु", "", "", "", "air wind"]) + let v = native_list_append(v, ["उदान", "noun", "उदानाः", "उदानस्य", "उदानाय", "", "breathing upwards"]) + let v = native_list_append(v, ["व्यान", "noun", "व्या॒नाः", "व्या॒नस्य॑", "व्या॒नाय॑", "", "one of the"]) + let v = native_list_append(v, ["तार्किक", "noun", "तार्किकाः", "तार्किकस्य", "तार्किकाय", "", "a dialectician logician"]) + let v = native_list_append(v, ["वेदाङ्ग", "noun", "वेदाङ्गानि", "वेदाङ्गस्य", "वेदाङ्गाय", "", "a limb for"]) + let v = native_list_append(v, ["निरुक्त", "noun", "निरुक्त", "", "", "", "explanation or etymological"]) + let v = native_list_append(v, ["एकाग्रता", "noun", "एकाग्रता", "", "", "", "intentness in the"]) + let v = native_list_append(v, ["दानव", "noun", "दान॑वाः", "दान॑वस्य", "दान॑वाय", "", "Danava a class"]) + let v = native_list_append(v, ["प्रलोभ", "noun", "प्रलोभ", "", "", "", "allurement seduction"]) + let v = native_list_append(v, ["मृत्तिका", "noun", "मृत्तिकाः", "मृत्तिकायाः", "मृत्तिकायै", "", "earth clay loam"]) + let v = native_list_append(v, ["रम्भा", "noun", "रम्भाः", "रम्भायाः", "रम्भायै", "", "the plantain Musa"]) + let v = native_list_append(v, ["स्थिरता", "noun", "स्थिरताः", "स्थिरतायाः", "स्थिरतायै", "", "stability firmness"]) + let v = native_list_append(v, ["कुम्भ", "noun", "कु॒म्भाः", "कु॒म्भस्य॑", "कु॒म्भाय॑", "", "a jar pitcher"]) + let v = native_list_append(v, ["मकर", "noun", "मक॑राः", "मक॑रस्य", "मक॑राय", "", "a kind of"]) + let v = native_list_append(v, ["गमन", "noun", "गमनानि", "गमनस्य", "गमनाय", "", "going moving manner"]) + let v = native_list_append(v, ["ओजस्", "noun", "ओजां॑सि", "ओज॑सः", "ओज॑से", "", "ability strength"]) + let v = native_list_append(v, ["उपासक", "noun", "उपासक", "", "", "", "serving a servant"]) + let v = native_list_append(v, ["कपट", "noun", "कपटाः", "कपटस्य", "कपटाय", "", "fraud deceit cheating"]) + let v = native_list_append(v, ["नग्न", "noun", "न॒ग्नाः", "न॒ग्नस्य॑", "न॒ग्नाय॑", "", "a naked mendicant"]) + let v = native_list_append(v, ["नग्नत्व", "noun", "नग्नत्व", "", "", "", "nakedness"]) + let v = native_list_append(v, ["प्रतिमा", "noun", "प्र॒ति॒माः", "प्र॒ति॒मायाः॑", "प्र॒ति॒मायै॑", "", "a figure image"]) + let v = native_list_append(v, ["मुनि", "noun", "मुन॑यः", "मुनेः॑", "मुन॑ये", "", "a saint or"]) + let v = native_list_append(v, ["विन्यास", "noun", "विन्यास", "", "", "", "The transition between"]) + let v = native_list_append(v, ["भरत", "noun", "भरत", "", "", "", "actor dancer tumbler"]) + let v = native_list_append(v, ["तपन", "noun", "तप॑नाः", "तप॑नस्य", "तप॑नाय", "", "the sun"]) + let v = native_list_append(v, ["क्रतु", "noun", "क्रत॑वः", "क्रतोः॑", "क्रत॑वे", "", "intelligence understanding enlightenment"]) + let v = native_list_append(v, ["भास्", "noun", "भांसि॑", "भा॒सः", "भा॒से", "", "light lustre radiance"]) + let v = native_list_append(v, ["मरुभूमि", "noun", "मरुभूमयः", "मरुभूमेः", "मरुभूमये", "", "desert"]) + let v = native_list_append(v, ["काशि", "noun", "काशि", "", "", "", "‘shining’ the sun"]) + let v = native_list_append(v, ["सोमनाथ", "noun", "सोमनाथ", "", "", "", "Name of a"]) + let v = native_list_append(v, ["आलोचना", "noun", "आलोचना", "", "", "", "seeing perceiving reflection"]) + let v = native_list_append(v, ["हेमलम्ब", "noun", "हेमलम्ब", "", "", "", "Name of the"]) + let v = native_list_append(v, ["प्रमोद", "noun", "प्रमोद", "", "", "", "excessive joy delight"]) + let v = native_list_append(v, ["कालयुक्त", "noun", "कालयुक्त", "", "", "", "Name of the"]) + let v = native_list_append(v, ["चित्रभानु", "noun", "चित्रभानु", "", "", "", "Name of the"]) + let v = native_list_append(v, ["सर्वजित्", "noun", "सर्वजित्", "", "", "", "Name of the"]) + let v = native_list_append(v, ["विरोधिन्", "noun", "विरोधिन्", "", "", "", "Name of the"]) + let v = native_list_append(v, ["जर्तु", "noun", "जर्तवः", "जर्तोः", "जर्तवे", "", "vulva"]) + let v = native_list_append(v, ["पद्धति", "noun", "पद्धतयः", "पद्धतेः", "पद्धतये", "", "a foot-stroke a"]) + let v = native_list_append(v, ["शतम्", "noun", "शतम्", "", "", "", "nominative singular neuter"]) + let v = native_list_append(v, ["हट्ट", "noun", "हट्ट", "", "", "", "a market fair"]) + let v = native_list_append(v, ["अभिप्राय", "noun", "अभिप्राय", "", "", "", "purpose intention wish"]) + let v = native_list_append(v, ["चालुक्य", "noun", "चालुक्य", "", "", "", "Chalukyas"]) + let v = native_list_append(v, ["डाल", "noun", "डालाः", "डालस्य", "डालाय", "", "a branch"]) + let v = native_list_append(v, ["रंहति", "noun", "रंहतयः", "रंहतेः", "रंहतये", "", "speed velocity of"]) + let v = native_list_append(v, ["सामग्री", "noun", "सामग्र्यः", "सामग्र्याः", "सामग्र्यै", "", "totality entirety completeness"]) + let v = native_list_append(v, ["लक्षण", "noun", "लक्षणानि", "लक्षणस्य", "लक्षणाय", "", "sign symbol mark"]) + let v = native_list_append(v, ["अवसर", "noun", "अवसराः", "अवसरस्य", "अवसराय", "", "descent of water"]) + let v = native_list_append(v, ["मात्र", "noun", "मात्राणि", "मात्रस्य", "मात्राय", "", "an element elementary"]) + let v = native_list_append(v, ["संघ", "noun", "संघ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["श्रोमत", "noun", "श्रोम॑तानि", "श्रोम॑तस्य", "श्रोम॑ताय", "", "fame renown glory"]) + let v = native_list_append(v, ["अमिताभ", "noun", "अमिताभ", "अमिताभस्य", "अमिताभाय", "", "Amitābha the principal"]) + let v = native_list_append(v, ["मत्तेभविक्रीडित", "noun", "मत्तेभविक्रीडित", "", "", "", "name of a"]) + let v = native_list_append(v, ["घोट", "noun", "घोट", "", "", "", "a horse"]) + let v = native_list_append(v, ["पूर्ति", "noun", "पूर्तयः", "पूर्तेः", "पूर्तये", "", "filling completion"]) + let v = native_list_append(v, ["श्वास", "noun", "श्वासाः", "श्वासस्य", "श्वासाय", "", "breath"]) + let v = native_list_append(v, ["वक्त्र", "noun", "वक्त्राणि", "वक्त्रस्य", "वक्त्राय", "", "mouth"]) + let v = native_list_append(v, ["शिक्षण", "noun", "शिक्षणानि", "शिक्षणस्य", "शिक्षणाय", "", "education instruction teaching"]) + let v = native_list_append(v, ["शाणा", "noun", "शाणाः", "शाणायाः", "शाणायै", "", "feminine of शाण"]) + let v = native_list_append(v, ["स्वामिन्", "noun", "स्वामिनः", "स्वामिनः", "स्वामिने", "", "an owner proprietor"]) + let v = native_list_append(v, ["अनुनासिक", "noun", "अनुनासिकानि", "अनुनासिकस्य", "अनुनासिकाय", "", "nasalization"]) + let v = native_list_append(v, ["इषु", "noun", "इष॑वः", "इषोः॑", "इष॑वे", "", "arrow"]) + let v = native_list_append(v, ["झाट", "noun", "झाटाः", "झाटस्य", "झाटाय", "", "an arbour L."]) + let v = native_list_append(v, ["छेदि", "noun", "छेद॑यः", "छेदेः॑", "छेद॑ये", "", "one who cuts"]) + let v = native_list_append(v, ["मनन", "noun", "म॒नना॑नि", "म॒नन॑स्य", "म॒नना॑य", "", "thinking reflection"]) + let v = native_list_append(v, ["विवाद", "noun", "विवादाः", "विवादस्य", "विवादाय", "", "argument altercation dispute"]) + let v = native_list_append(v, ["ताल", "noun", "तालाः", "तालस्य", "तालाय", "", "the palm tree"]) + let v = native_list_append(v, ["द्रोह", "noun", "द्रोहाः", "द्रोहस्य", "द्रोहाय", "", "injury mischief harm"]) + let v = native_list_append(v, ["सखी", "noun", "सख्यः", "सख्याः", "सख्यै", "", "a female friend"]) + let v = native_list_append(v, ["वनस्", "noun", "वनां॑सि", "वन॑सः", "वन॑से", "", "loveliness beauty"]) + let v = native_list_append(v, ["निष्ठ", "noun", "निष्ठ", "", "", "", "basis state intentness"]) + let v = native_list_append(v, ["प्रशंसा", "noun", "प्रशंसाः", "प्रशंसायाः", "प्रशंसायै", "", "praise commendation fame"]) + let v = native_list_append(v, ["प्लीहन्", "noun", "प्ली॒हानः॑", "प्ली॒ह्नः", "प्ली॒ह्ने", "", "the spleen"]) + let v = native_list_append(v, ["जतु", "noun", "जतू॑नि", "जतु॑नः", "जतु॑ने", "", "lac"]) + let v = native_list_append(v, ["अस्पृश्यता", "noun", "अस्पृश्यताः", "अस्पृश्यतायाः", "अस्पृश्यतायै", "", "untouchability"]) + let v = native_list_append(v, ["कङ्काल", "noun", "कङ्कालानि", "कङ्कालस्य", "कङ्कालाय", "", "skeleton"]) + let v = native_list_append(v, ["मज्जन्", "noun", "म॒ज्जानः॑", "म॒ज्ज्ञः", "म॒ज्ज्ञे", "", "marrow of the"]) + let v = native_list_append(v, ["वपा", "noun", "व॒पाः", "व॒पायाः॑", "व॒पायै॑", "", "a mound or"]) + let v = native_list_append(v, ["स्नावन्", "noun", "स्नावा॑नि", "स्नाव्नः॑", "स्नाव्ने॑", "", "sinew tendon muscle"]) + let v = native_list_append(v, ["अवस्था", "noun", "अवस्थाः", "अवस्थायाः", "अवस्थायै", "", "condition state"]) + let v = native_list_append(v, ["दशा", "noun", "दशा", "", "", "", "fringe hem border"]) + let v = native_list_append(v, ["शर्ध", "noun", "शर्धाः॑", "शर्ध॑स्य", "शर्धा॑य", "", "troop"]) + let v = native_list_append(v, ["तत्त्व", "noun", "तत्त्वानि", "तत्त्वस्य", "तत्त्वाय", "", "true or real"]) + let v = native_list_append(v, ["उदक", "noun", "उ॒द॒कानि॑", "उ॒द॒कस्य॑", "उ॒द॒काय॑", "", "water"]) + let v = native_list_append(v, ["रोक", "noun", "रो॒काः", "रो॒कस्य॑", "रो॒काय॑", "", "light lustre brightness"]) + let v = native_list_append(v, ["धूम्रपान", "noun", "धूम्रपानानि", "धूम्रपानस्य", "धूम्रपानाय", "", "smoking"]) + let v = native_list_append(v, ["धूम्र", "noun", "धू॒म्राः", "धू॒म्रस्य॑", "धू॒म्राय॑", "", "smoke"]) + let v = native_list_append(v, ["कल्याण", "noun", "क॒ल्याणा॑नि", "क॒ल्याण॑स्य", "क॒ल्याणा॑य", "", "good fortune happiness"]) + let v = native_list_append(v, ["स्व", "noun", "स्व", "", "", "", "ones self"]) + let v = native_list_append(v, ["सरत्", "noun", "सरन्तः", "सरतः", "सरते", "", "thread"]) + let v = native_list_append(v, ["पक्ष्मन्", "noun", "पक्ष्मा॑णि", "पक्ष्म॑णः", "पक्ष्म॑णे", "", "eyelash"]) + let v = native_list_append(v, ["অশোক", "noun", "অশোক", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["पर्शान", "noun", "पर्शा॑नाः", "पर्शा॑नस्य", "पर्शा॑नाय", "", "abyss chasm precipice"]) + let v = native_list_append(v, ["जैन", "noun", "जैनाः", "जैनस्य", "जैनाय", "", "a Jain"]) + let v = native_list_append(v, ["उद्योग", "noun", "उद्योगाः", "उद्योगस्य", "उद्योगाय", "", "the act of"]) + let v = native_list_append(v, ["लोपाक", "noun", "लोपाकाः", "लोपाकस्य", "लोपाकाय", "", "kind of jackal"]) + let v = native_list_append(v, ["कूप", "noun", "कूपाः॑", "कूप॑स्य", "कूपा॑य", "", "a well a"]) + let v = native_list_append(v, ["प्रक्षालन", "noun", "प्रक्षालनानि", "प्रक्षालनस्य", "प्रक्षालनाय", "", "washing cleaning purifying"]) + let v = native_list_append(v, ["ज्रयस्", "noun", "ज्रयां॑सि", "ज्रय॑सः", "ज्रय॑से", "", "expanse"]) + let v = native_list_append(v, ["मन्या", "noun", "मन्याः॑", "मन्या॑याः", "मन्या॑यै", "", "nape back of"]) + let v = native_list_append(v, ["अहल्या", "noun", "अहल्या", "", "", "", "Name of the"]) + let v = native_list_append(v, ["सरस्", "noun", "सरां॑सि", "सर॑सः", "सर॑से", "", "pond lake"]) + let v = native_list_append(v, ["ऐरावत", "noun", "ऐ॒रा॒व॒ताः", "ऐ॒रा॒व॒तस्य॑", "ऐ॒रा॒व॒ताय॑", "", "produced from the"]) + let v = native_list_append(v, ["समा", "noun", "समाः॑", "समा॑याः", "समा॑यै", "", "season"]) + let v = native_list_append(v, ["भौमवार", "noun", "भौमवाराः", "भौमवारस्य", "भौमवाराय", "", "Tuesday"]) + let v = native_list_append(v, ["हस्ती", "noun", "हस्ती", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["इष्टका", "noun", "इष्ट॑काः", "इष्ट॑कायाः", "इष्ट॑कायै", "", "brick"]) + let v = native_list_append(v, ["उलूक", "noun", "उलू॑काः", "उलू॑कस्य", "उलू॑काय", "", "owl"]) + let v = native_list_append(v, ["पात्र", "noun", "पात्रा॑णि", "पात्र॑स्य", "पात्रा॑य", "", "a drinking vessel"]) + let v = native_list_append(v, ["अलकनन्दा", "noun", "अलकनन्दा", "", "", "", "a young girl"]) + let v = native_list_append(v, ["अम्बा", "noun", "अ॒म्बाः", "अ॒म्बायाः॑", "अ॒म्बायै॑", "", "a mother good"]) + let v = native_list_append(v, ["उषःकल", "noun", "उषःकलाः", "उषःकलस्य", "उषःकलाय", "", "calling out at"]) + let v = native_list_append(v, ["अम्बिका", "noun", "अम्बिका", "", "", "", "A mother"]) + let v = native_list_append(v, ["चक्षु", "noun", "चक्ष॑वः", "चक्षोः॑", "चक्ष॑वे", "", "the eye"]) + let v = native_list_append(v, ["नौका", "noun", "नौकाः", "नौकायाः", "नौकायै", "", "a boat or"]) + let v = native_list_append(v, ["भोट", "noun", "भोटाः", "भोटस्य", "भोटाय", "", "Tibet a geographic"]) + let v = native_list_append(v, ["भजन", "noun", "भजनानि", "भजनस्य", "भजनाय", "", "the act of"]) + let v = native_list_append(v, ["ऋष्टि", "noun", "ऋ॒ष्टयः॑", "ऋ॒ष्टेः", "ऋ॒ष्टये॑", "", "a spear sword"]) + let v = native_list_append(v, ["नु", "noun", "नवः", "नोः", "नवे", "", "praise eulogium L."]) + let v = native_list_append(v, ["पिनाक", "noun", "पिनाकाः", "पिनाकस्य", "पिनाकाय", "", "staff or bow"]) + let v = native_list_append(v, ["हाला", "noun", "हालाः", "हालायाः", "हालायै", "", "spirituous liquor"]) + let v = native_list_append(v, ["छत्त्र", "noun", "छत्त्रा॑णि", "छत्त्र॑स्य", "छत्त्रा॑य", "", "parasol umbrella"]) + let v = native_list_append(v, ["अनसूया", "noun", "अनसूया", "", "", "", "freedom from spite"]) + let v = native_list_append(v, ["सौचिक", "noun", "सौचिकाः", "सौचिकस्य", "सौचिकाय", "", "tailor"]) + let v = native_list_append(v, ["शब्दार्थ", "noun", "शब्दार्थाः", "शब्दार्थस्य", "शब्दार्थाय", "", "sound or word"]) + let v = native_list_append(v, ["आङ्ग्लभाषा", "noun", "आङ्ग्लभाषाः", "आङ्ग्लभाषायाः", "आङ्ग्लभाषायै", "", "English language"]) + let v = native_list_append(v, ["भस्त्रा", "noun", "भस्त्राः॑", "भस्त्रा॑याः", "भस्त्रा॑यै", "", "bellows a device"]) + let v = native_list_append(v, ["पितु", "noun", "पि॒तवः॑", "पि॒तोः", "पि॒तवे॑", "", "food nourishment"]) + let v = native_list_append(v, ["उक्षन्", "noun", "उ॒क्षणः॑", "उ॒क्ष्णः", "उ॒क्ष्णे", "", "a bull"]) + let v = native_list_append(v, ["भस्त्री", "noun", "भस्त्र्यः", "भस्त्र्याः", "भस्त्र्यै", "", "synonym of भस्त्रा"]) + let v = native_list_append(v, ["बभ्रु", "noun", "बभ्रवः", "बभ्रोः", "बभ्रवे", "", "a ichneumon mongoose"]) + let v = native_list_append(v, ["वाल", "noun", "वालाः॑", "वाल॑स्य", "वाला॑य", "", "the tail of"]) + let v = native_list_append(v, ["बहिष्कार", "noun", "बहिष्काराः", "बहिष्कारस्य", "बहिष्काराय", "", "expulsion removal"]) + let v = native_list_append(v, ["सर्जन", "noun", "सर्ज॑नानि", "सर्ज॑नस्य", "सर्ज॑नाय", "", "abandonment surrender"]) + let v = native_list_append(v, ["मर्मर", "noun", "मर्मराः", "मर्मरस्य", "मर्मराय", "", "a murmur"]) + let v = native_list_append(v, ["युवक", "noun", "युवकाः", "युवकस्य", "युवकाय", "", "a youth young"]) + let v = native_list_append(v, ["मर्यादा", "noun", "म॒र्यादाः॑", "म॒र्यादा॑याः", "म॒र्यादा॑यै", "", "shore"]) + let v = native_list_append(v, ["अपसर्जन", "noun", "अपसर्जनानि", "अपसर्जनस्य", "अपसर्जनाय", "", "abandonment"]) + let v = native_list_append(v, ["शीर्षन्", "noun", "शी॒र्षा¹ शी॒र्षाणि॑", "शी॒र्ष्णः", "शी॒र्ष्णे", "", "head"]) + let v = native_list_append(v, ["शृङ्खल", "noun", "शृङ्खलाः", "शृङ्खलस्य", "शृङ्खलाय", "", "chain fetter especially"]) + let v = native_list_append(v, ["साम", "noun", "सामानि", "सामस्य", "सामाय", "", "likeness similarity"]) + let v = native_list_append(v, ["स्थिर", "noun", "स्थिराः", "स्थिरस्य", "स्थिराय", "", "the earth"]) + let v = native_list_append(v, ["मर्य", "noun", "मर्याः॑", "मर्य॑स्य", "मर्या॑य", "", "young man suitor"]) + let v = native_list_append(v, ["गल", "noun", "गलाः", "गलस्य", "गलाय", "", "throat"]) + let v = native_list_append(v, ["काञ्चन", "noun", "काञ्चनाः", "काञ्चनस्य", "काञ्चनाय", "", "gold"]) + let v = native_list_append(v, ["भुजंग", "noun", "भुजंगाः", "भुजंगस्य", "भुजंगाय", "", "a serpent snake"]) + let v = native_list_append(v, ["अन्धस्", "noun", "अन्धां॑सि", "अन्ध॑सः", "अन्ध॑से", "", "the Soma plant"]) + let v = native_list_append(v, ["पर्यटन", "noun", "पर्यटनानि", "पर्यटनस्य", "पर्यटनाय", "", "wandering about roaming"]) + let v = native_list_append(v, ["तत", "noun", "त॒ताः", "त॒तस्य॑", "त॒ताय॑", "", "a father"]) + let v = native_list_append(v, ["उन्नति", "noun", "उन्नतयः", "उन्नतेः", "उन्नतये", "", "rising ascending swelling"]) + let v = native_list_append(v, ["अर्ध", "noun", "अ॒र्धानि॑", "अ॒र्धस्य॑", "अ॒र्धाय॑", "", "the half also"]) + let v = native_list_append(v, ["अतिकाय", "noun", "अतिकाय", "", "", "", "Name of a"]) + let v = native_list_append(v, ["भित्त", "noun", "भित्तानि", "भित्तस्य", "भित्ताय", "", "a bit small"]) + let v = native_list_append(v, ["ਲੋਕ", "noun", "ਲੋਕਾਃ", "ਲੋਕਸ੍ਯ", "ਲੋਕਾਯ", "", "Gurmukhi script form"]) + let v = native_list_append(v, ["कृत", "noun", "कृ॒तानि॑", "कृ॒तस्य॑", "कृ॒ताय॑", "", "work deed action"]) + let v = native_list_append(v, ["प्रतीक्षा", "noun", "प्रतीक्षाः", "प्रतीक्षायाः", "प्रतीक्षायै", "", "expectation consideration respect"]) + let v = native_list_append(v, ["भर", "noun", "भराः॑", "भर॑स्य", "भरा॑य", "", "the act of"]) + let v = native_list_append(v, ["गायन", "noun", "गायनानि", "गायनस्य", "गायनाय", "", "the act of"]) + let v = native_list_append(v, ["ભૂ", "noun", "ભૂ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["अप्रमाण", "noun", "अप्रमाण", "", "", "", "infinite"]) + let v = native_list_append(v, ["फिङ्गक", "noun", "फिङ्गकाः", "फिङ्गकस्य", "फिङ्गकाय", "", "species of shrike"]) + let v = native_list_append(v, ["श्याव", "noun", "श्यावाः", "श्यावस्य", "श्यावाय", "", "a brown horse"]) + let v = native_list_append(v, ["जामातृ", "noun", "जामा॑तरः", "जामा॑तुः", "जामा॑त्रे", "", "a son-in-law"]) + let v = native_list_append(v, ["होला", "noun", "होलाः", "होलायाः", "होलायै", "", "the Holi festival"]) + let v = native_list_append(v, ["पङ्क", "noun", "पङ्काः॑", "पङ्क॑स्य", "पङ्का॑य", "", "mire bog morass"]) + let v = native_list_append(v, ["किरण", "noun", "कि॒रणाः॑", "कि॒रण॑स्य", "कि॒रणा॑य", "", "dust very minute"]) + let v = native_list_append(v, ["मन्दुरा", "noun", "मन्दुराः", "मन्दुरायाः", "मन्दुरायै", "", "stable for horses"]) + let v = native_list_append(v, ["उष्ट्र", "noun", "उष्ट्राः॑", "उष्ट्र॑स्य", "उष्ट्रा॑य", "", "camel"]) + let v = native_list_append(v, ["चटक", "noun", "चटकाः", "चटकस्य", "चटकाय", "", "a sparrow"]) + let v = native_list_append(v, ["हेति", "noun", "हे॒तयः॑", "हे॒तेः", "हे॒तये॑", "", "a missile"]) + let v = native_list_append(v, ["स्नुषा", "noun", "स्नु॒षाः", "स्नु॒षायाः॑", "स्नु॒षायै॑", "", "daughter-in-law"]) + let v = native_list_append(v, ["कोलिक", "noun", "कोलिकाः", "कोलिकस्य", "कोलिकाय", "", "weaver"]) + let v = native_list_append(v, ["धूलि", "noun", "धूलयः", "धूलेः", "धूलये", "", "dust powder pollen"]) + let v = native_list_append(v, ["नस्", "noun", "नस्", "नसोः", "", "", "the nose snout"]) + let v = native_list_append(v, ["धाना", "noun", "धा॒नाः", "धा॒नायाः॑", "धा॒नायै॑", "", "grain corn"]) + let v = native_list_append(v, ["कोक", "noun", "कोकाः", "कोकस्य", "कोकाय", "", "wolf"]) + let v = native_list_append(v, ["निद्रा", "noun", "नि॒द्राः", "नि॒द्रायाः॑", "नि॒द्रायै॑", "", "sleep slumber"]) + let v = native_list_append(v, ["कृकर", "noun", "कृकराः", "कृकरस्य", "कृकराय", "", "a partridge"]) + let v = native_list_append(v, ["पाक", "noun", "पाक", "", "", "", "the young of"]) + let v = native_list_append(v, ["कुब्ज", "noun", "कु॒ब्जाः", "कु॒ब्जस्य॑", "कु॒ब्जाय॑", "", "a kind of"]) + let v = native_list_append(v, ["पृथुक", "noun", "पृथु॑काः", "पृथु॑कस्य", "पृथु॑काय", "", "m boy young"]) + let v = native_list_append(v, ["ऋज्र", "noun", "ऋज्राः", "ऋज्रस्य", "ऋज्राय", "", "leader"]) + let v = native_list_append(v, ["श्येन", "noun", "श्ये॒नाः", "श्ये॒नस्य॑", "श्ये॒नाय॑", "", "a hawk falcon"]) + let v = native_list_append(v, ["तरुण", "noun", "तरुणाः", "तरुणस्य", "तरुणाय", "", "a youth"]) + let v = native_list_append(v, ["भुजङ्ग", "noun", "भुजङ्गाः", "भुजङ्गस्य", "भुजङ्गाय", "", "pronunciation spelling of"]) + let v = native_list_append(v, ["शफ", "noun", "श॒फाः", "श॒फस्य॑", "श॒फाय॑", "", "hoof"]) + let v = native_list_append(v, ["ऋषभ", "noun", "ऋ॒ष॒भाः", "ऋ॒ष॒भस्य॑", "ऋ॒ष॒भाय॑", "", "a bull"]) + let v = native_list_append(v, ["हृद्रोग", "noun", "हृ॒द्रो॒गाः", "हृ॒द्रो॒गस्य॑", "हृ॒द्रो॒गाय॑", "", "sorrow grief heart-ache"]) + let v = native_list_append(v, ["क्षम्", "noun", "क्षामः", "ग्मः", "क्षे", "", "ground earth"]) + let v = native_list_append(v, ["मृद्", "noun", "मृदः॑", "मृ॒दः", "मृ॒दे", "", "earth soil clay"]) + let v = native_list_append(v, ["पांसु", "noun", "पां॒सवः॑", "पां॒सोः", "पां॒सवे॑", "", "dust crumbling soil"]) + let v = native_list_append(v, ["पाषी", "noun", "पाष्यः", "पाष्याः", "पाष्यै", "", "stone"]) + let v = native_list_append(v, ["ऋश्य", "noun", "ऋश्याः॑", "ऋश्य॑स्य", "ऋश्या॑य", "", "a stag the"]) + let v = native_list_append(v, ["वार्", "noun", "वारि॑", "वा॒रः", "वा॒रे", "", "water"]) + let v = native_list_append(v, ["वापी", "noun", "वाप्यः", "वाप्याः", "वाप्यै", "", "pond pool of"]) + let v = native_list_append(v, ["लोपाश", "noun", "लो॒पा॒शाः", "लो॒पा॒शस्य॑", "लो॒पा॒शाय॑", "", "fox jackal"]) + let v = native_list_append(v, ["अद्ग", "noun", "अद्गाः॑", "अद्ग॑स्य", "अद्गा॑य", "", "knot in wood"]) + let v = native_list_append(v, ["मशक", "noun", "मशकाः", "मशकस्य", "मशकाय", "", "gnat mosquito fly"]) + let v = native_list_append(v, ["जलूका", "noun", "जलूकाः", "जलूकायाः", "जलूकायै", "", "leech"]) + let v = native_list_append(v, ["वसा", "noun", "वसाः", "वसायाः", "वसायै", "", "fat lard grease"]) + let v = native_list_append(v, ["वाष्प", "noun", "वाष्पाः", "वाष्पस्य", "वाष्पाय", "", "steam vapour"]) + let v = native_list_append(v, ["मत्कुण", "noun", "मत्कुणाः", "मत्कुणस्य", "मत्कुणाय", "", "bug"]) + let v = native_list_append(v, ["मूर्धन्", "noun", "मू॒र्धानः॑", "मू॒र्ध्नः", "मू॒र्ध्ने", "", "the forehead skull"]) + let v = native_list_append(v, ["मुष्टि", "noun", "मु॒ष्टयः॑", "मु॒ष्टेः", "मु॒ष्टये॑", "", "fist clenched hand"]) + let v = native_list_append(v, ["शूरसेन", "noun", "शू॒र॒सेनाः॑", "शू॒र॒सेन॑स्य", "शू॒र॒सेना॑य", "", "an ancient region"]) + let v = native_list_append(v, ["सुरा", "noun", "सुराः॑", "सुरा॑याः", "सुरा॑यै", "", "wine spirituous liquor"]) + let v = native_list_append(v, ["स्वादु", "noun", "स्वा॒दवः॑", "स्वा॒दोः", "स्वा॒दवे॑", "", "sweetness"]) + let v = native_list_append(v, ["तात", "noun", "ता॒ताः", "ता॒तस्य॑", "ता॒ताय॑", "", "daddy papa"]) + let v = native_list_append(v, ["भाम", "noun", "भामाः॑", "भाम॑स्य", "भामा॑य", "", "light brightness splendor"]) + let v = native_list_append(v, ["जात", "noun", "जा॒ताः", "जा॒तस्य॑", "जा॒ताय॑", "", "child offspring son"]) + let v = native_list_append(v, ["हेड", "noun", "हेडाः॑", "हेड॑स्य", "हेडा॑य", "", "anger passion hatred"]) + let v = native_list_append(v, ["रिक्षा", "noun", "रिक्षाः", "रिक्षायाः", "रिक्षायै", "", "a nit the"]) + let v = native_list_append(v, ["महायुद्ध", "noun", "महायुद्धानि", "महायुद्धस्य", "महायुद्धाय", "", "a great fight"]) + let v = native_list_append(v, ["मीळ्ह", "noun", "मी॒ळ्हानि॑", "मी॒ळ्हस्य॑", "मी॒ळ्हाय॑", "", "contest strife"]) + let v = native_list_append(v, ["श्रेयस्", "noun", "श्रेयां॑सः", "श्रेय॑सः", "श्रेय॑से", "", "name of various"]) + let v = native_list_append(v, ["मीढ", "noun", "मी॒ढानि॑", "मी॒ढस्य॑", "मी॒ढाय॑", "", "contest strife"]) + let v = native_list_append(v, ["हिर", "noun", "हिराः॑", "हिर॑स्य", "हिरा॑य", "", "a strip band"]) + let v = native_list_append(v, ["कोङ्कण", "noun", "कोङ्कण stem or", "कोङ्कणानाम्", "कोङ्कणेभ्यः", "", "the people of"]) + let v = native_list_append(v, ["मुण्डो", "noun", "मुण्डो", "", "", "", "combining form of"]) + let v = native_list_append(v, ["कदल", "noun", "कदलानि", "कदलस्य", "कदलाय", "", "the plantain tree"]) + let v = native_list_append(v, ["छला", "noun", "छला", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["पात", "noun", "पाताः", "पातस्य", "पाताय", "", "flying mode of"]) + let v = native_list_append(v, ["असिना", "noun", "असिना", "", "", "", "instrumental masculine singular"]) + let v = native_list_append(v, ["नासायास्", "noun", "नासायास्", "", "", "", "ablative/genitive singular of"]) + let v = native_list_append(v, ["नासायाम्", "noun", "नासायाम्", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["नासायै", "noun", "नासायै", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["नासे", "noun", "नासे", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["नासाम्", "noun", "नासाम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["नासया", "noun", "नासया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["नासाभ्याम्", "noun", "नासाभ्याम्", "", "", "", "instrumental/dative/ablative dual of"]) + let v = native_list_append(v, ["नासयोस्", "noun", "नासयोस्", "", "", "", "genitive/locative dual of"]) + let v = native_list_append(v, ["नासास्", "noun", "नासास्", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["नासाभिस्", "noun", "नासाभिस्", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["नासाभ्यस्", "noun", "नासाभ्यस्", "", "", "", "dative/ablative plural of"]) + let v = native_list_append(v, ["नासानाम्", "noun", "नासानाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["नासासु", "noun", "नासासु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["स्कन्ध", "noun", "स्क॒न्धाः", "स्क॒न्धस्य॑", "स्क॒न्धाय॑", "", "shoulder torso"]) + let v = native_list_append(v, ["नष्टचन्द्र", "noun", "नष्टचन्द्राः", "नष्टचन्द्रस्य", "नष्टचन्द्राय", "", "Name of the"]) + let v = native_list_append(v, ["ऋणिन्", "noun", "ऋणिनः", "ऋणिनः", "ऋणिने", "", "debtor"]) + let v = native_list_append(v, ["सैर", "noun", "सैराणि", "सैरस्य", "सैराय", "", "a kind of"]) + let v = native_list_append(v, ["यात्री", "noun", "यात्री", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["मना", "noun", "म॒नाः", "म॒नायाः॑", "म॒नायै॑", "", "devotion attachment zeal"]) + let v = native_list_append(v, ["अन्ध", "noun", "अ॒न्धाः", "अ॒न्धस्य॑", "अ॒न्धाय॑", "", "n night darkness"]) + let v = native_list_append(v, ["अव", "noun", "अवाः॑", "अव॑स्य", "अवा॑य", "", "favor"]) + let v = native_list_append(v, ["प्राणी", "noun", "प्राणी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["ली", "noun", "लियः", "लियः", "लिये", "", "clinging adhering"]) + let v = native_list_append(v, ["सर्गः", "noun", "सर्गः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["शरु", "noun", "शर॑वः", "शरोः॑", "शर॑वे", "", "arrow dart missile"]) + let v = native_list_append(v, ["अस्र", "noun", "अस्र", "", "", "", "blood"]) + let v = native_list_append(v, ["चिता", "noun", "चि॒ताः", "चि॒तायाः॑", "चि॒तायै॑", "", "pile of wood"]) + let v = native_list_append(v, ["भोला", "noun", "भोलाः (*bholāḥ)", "भोलायाः (*bholāyāḥ)", "भोलायै (*bholāyai)", "", "dawn sunrise"]) + let v = native_list_append(v, ["भोलानाथ", "noun", "भोलानाथाः", "भोलानाथस्य", "भोलानाथाय", "", "an epithet of"]) + let v = native_list_append(v, ["शुच्", "noun", "शुचः॑", "शु॒चः", "शु॒चे", "", "flame glow heat"]) + let v = native_list_append(v, ["योस्", "noun", "योस्", "", "", "", "welfare health happiness"]) + let v = native_list_append(v, ["अल्पप्राण", "noun", "अल्पप्राणाः", "अल्पप्राणस्य", "अल्पप्राणाय", "", "slight breathing or"]) + let v = native_list_append(v, ["महाप्राण", "noun", "महाप्राणाः", "महाप्राणस्य", "महाप्राणाय", "", "hard breathing or"]) + let v = native_list_append(v, ["कण्ठ्य", "noun", "कण्ठ्यां॑सः", "कण्ठ्य॑सः", "कण्ठ्य॑से", "", "A guttural sound"]) + let v = native_list_append(v, ["केसर", "noun", "केस॑राः", "केस॑रस्य", "केस॑राय", "", "hair"]) + let v = native_list_append(v, ["शास्ति", "noun", "शास्तयः", "शास्तेः", "शास्तये", "", "correction punishment"]) + let v = native_list_append(v, ["ईड्", "noun", "ईडः॑", "ई॒डः", "ई॒डे", "", "praise extolling"]) + let v = native_list_append(v, ["ककार", "noun", "ककाराः", "ककारस्य", "ककाराय", "", "The name of"]) + let v = native_list_append(v, ["खकार", "noun", "खकाराः", "खकारस्य", "खकाराय", "", "The name of"]) + let v = native_list_append(v, ["गकार", "noun", "गकाराः", "गकारस्य", "गकाराय", "", "The name of"]) + let v = native_list_append(v, ["घकार", "noun", "खकाराः", "खकारस्य", "खकाराय", "", "The name of"]) + let v = native_list_append(v, ["हकार", "noun", "हकाराः", "हकारस्य", "हकाराय", "", "The name of"]) + let v = native_list_append(v, ["ङकार", "noun", "ङकाराः", "ङकारस्य", "ङकाराय", "", "The name of"]) + let v = native_list_append(v, ["चकार", "noun", "चकाराः", "चकारस्य", "चकाराय", "", "The name of"]) + let v = native_list_append(v, ["छकार", "noun", "छकाराः", "छकारस्य", "छकाराय", "", "The name of"]) + let v = native_list_append(v, ["जकार", "noun", "जकाराः", "जकारस्य", "जकाराय", "", "The name of"]) + let v = native_list_append(v, ["झकार", "noun", "झकाराः", "झकारस्य", "झकाराय", "", "The name of"]) + let v = native_list_append(v, ["ञकार", "noun", "ञकाराः", "ञकारस्य", "ञकाराय", "", "The name of"]) + let v = native_list_append(v, ["उपकार", "noun", "उपकाराः", "उपकारस्य", "उपकाराय", "", "help assistance"]) + let v = native_list_append(v, ["षट्कोण", "noun", "षट्कोणाः", "षट्कोणस्य", "षट्कोणाय", "", "Shatkona"]) + let v = native_list_append(v, ["यकार", "noun", "यकाराः", "यकारस्य", "यकाराय", "", "The name of"]) + let v = native_list_append(v, ["शकार", "noun", "शकाराः", "शकारस्य", "शकाराय", "", "The name of"]) + let v = native_list_append(v, ["यकारादिपद", "noun", "यकारादिपदानि", "यकारादिपदस्य", "यकारादिपदाय", "", "a word beginning"]) + let v = native_list_append(v, ["जन्तु", "noun", "ज॒न्तवः॑", "ज॒न्तोः", "ज॒न्तवे॑", "", "child offspring"]) + let v = native_list_append(v, ["अंशकरण", "noun", "अंशकरणाः", "अंशकरणस्य", "अंशकरणाय", "", "the act of"]) + let v = native_list_append(v, ["अंशकरणम्", "noun", "अंशकरणम्", "", "", "", "nominative/vocative/accusative singular of"]) + let v = native_list_append(v, ["ओष्ठ्य", "noun", "ओष्ठ्याः", "ओष्ठ्यस्य", "ओष्ठ्याय", "", "A labial sound"]) + let v = native_list_append(v, ["अर्धपथ", "noun", "अर्धपथाः", "अर्धपथस्य", "अर्धपथाय", "", "midway the midst"]) + let v = native_list_append(v, ["अर्धपथे", "noun", "अर्धपथे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["कक्ष", "noun", "कक्षाः॑", "कक्ष॑स्य", "कक्षा॑य", "", "armpit region of"]) + let v = native_list_append(v, ["अर्धपथः", "noun", "अर्धपथः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अर्धपथम्", "noun", "अर्धपथम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["अर्धपथात्", "noun", "अर्धपथात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["कनिष्क", "noun", "कनिष्काः", "कनिष्कस्य", "कनिष्काय", "", "Kanishka an emperor"]) + let v = native_list_append(v, ["माधव", "noun", "माधव", "", "", "", "the name of"]) + let v = native_list_append(v, ["चन्द्रगुप्त", "noun", "च॒न्द्र॒गु॒प्ताः", "च॒न्द्र॒गु॒प्तस्य॑", "च॒न्द्र॒गु॒प्ताय॑", "", "a male given"]) + let v = native_list_append(v, ["क्षत्रप", "noun", "क्षत्रपाः", "क्षत्रपस्य", "क्षत्रपाय", "", "satrap provincial governor"]) + let v = native_list_append(v, ["सातवाहन", "noun", "सातवाहनाः", "सातवाहनस्य", "सातवाहनाय", "", "the Satavahana dynasty"]) + let v = native_list_append(v, ["राजवंश", "noun", "राजवंशाः", "राजवंशस्य", "राजवंशाय", "", "a dynasty"]) + let v = native_list_append(v, ["हस्ताक्षर", "noun", "हस्ताक्षराणि", "हस्ताक्षरस्य", "हस्ताक्षराय", "", "sign signature"]) + let v = native_list_append(v, ["अवधारण", "noun", "अवधारणानि", "अवधारणस्य", "अवधारणाय", "", "ascertainment affirmation emphasis"]) + let v = native_list_append(v, ["पार", "noun", "पा॒राणि॑", "पा॒रस्य॑", "पा॒राय॑", "", "the further bank"]) + let v = native_list_append(v, ["कस्तूरी", "noun", "कस्तूर्यः", "कस्तूर्याः", "कस्तूर्यै", "", "musk castoreum"]) + let v = native_list_append(v, ["वैदिक", "noun", "वै॒दि॒कानि॑", "वै॒दि॒कस्य॑", "वै॒दि॒काय॑", "", "a Vedic passage"]) + let v = native_list_append(v, ["त्वष्टृ", "noun", "त्वष्टा॑रः", "त्वष्टुः॑", "त्वष्ट्रे॑", "", "carpenter"]) + let v = native_list_append(v, ["ಘೋರ", "noun", "ಘೋರ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["अञ्जस्", "noun", "अञ्जां॑सि", "अञ्ज॑सः", "अञ्ज॑से", "", "ointment"]) + let v = native_list_append(v, ["लेप", "noun", "लेपाः", "लेपस्य", "लेपाय", "", "ointment unguent"]) + let v = native_list_append(v, ["भर्तृ", "noun", "भर्ता॑रः", "भर्तुः॑", "भर्त्रे॑", "", "husband"]) + let v = native_list_append(v, ["असित", "noun", "असि॑ताः", "असि॑तस्य", "असि॑ताय", "", "black snake"]) + let v = native_list_append(v, ["अर्शस्", "noun", "अर्शां॑सि", "अर्श॑सः", "अर्श॑से", "", "hemorrhoids piles"]) + let v = native_list_append(v, ["चक्रवर्ती", "noun", "चक्रवर्ती", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["श्मश्रु", "noun", "श्मश्रूणि", "श्मश्रुणः", "श्मश्रुणे", "", "beard"]) + let v = native_list_append(v, ["व्यवस्था", "noun", "व्यवस्थाः", "व्यवस्थायाः", "व्यवस्थायै", "", "respective difference"]) + let v = native_list_append(v, ["रजनी", "noun", "रज॑न्यः", "रज॑न्याः", "रज॑न्यै", "", "night"]) + let v = native_list_append(v, ["स्फ्य", "noun", "स्फ्यानि॑", "स्फ्यस्य॑", "स्फ्याय॑", "", "shoulder blade"]) + let v = native_list_append(v, ["एव", "noun", "एवाः॑", "एव॑स्य", "एवा॑य", "", "way course"]) + let v = native_list_append(v, ["स्तम्भ", "noun", "स्तम्भाः", "स्तम्भस्य", "स्तम्भाय", "", "pillar post column"]) + let v = native_list_append(v, ["सप्तमी", "noun", "सप्तमी", "", "", "", "The 7th tithi"]) + let v = native_list_append(v, ["शीर्ष", "noun", "शी॒र्षाणि॑", "शी॒र्षस्य॑", "शी॒र्षाय॑", "", "head skull"]) + let v = native_list_append(v, ["खट", "noun", "खटाः", "खटस्य", "खटाय", "", "an axe hatchet"]) + let v = native_list_append(v, ["स्वाधीनता", "noun", "स्वाधीनताः", "स्वाधीनतायाः", "स्वाधीनतायै", "", "independence freedom liberty"]) + let v = native_list_append(v, ["राघव", "noun", "राघवाः", "राघवस्य", "राघवाय", "", "a member of"]) + let v = native_list_append(v, ["हिङ्गु", "noun", "हिङ्गवः", "हिङ्गोः", "हिङ्गवे", "", "asafoetida Ferula assa-foetida"]) + let v = native_list_append(v, ["यवन", "noun", "यवनाः", "यवनस्य", "यवनाय", "", "a foreigner an"]) + let v = native_list_append(v, ["उकरा", "noun", "उकरा", "", "", "", "the name of"]) + let v = native_list_append(v, ["दृकाण", "noun", "दृकाणाः", "दृकाणस्य", "दृकाणाय", "", "the third part"]) + let v = native_list_append(v, ["परिस्तोम", "noun", "परिस्तोमाः", "परिस्तोमस्य", "परिस्तोमाय", "", "cushion bed-covering"]) + let v = native_list_append(v, ["बर्बर", "noun", "बर्बराः", "बर्बरस्य", "बर्बराय", "", "barbarian foreigner non-Aryan"]) + let v = native_list_append(v, ["पलव", "noun", "पलवाः", "पलवस्य", "पलवाय", "", "wicker basket for"]) + let v = native_list_append(v, ["कवक", "noun", "कवकानि", "कवकस्य", "कवकाय", "", "fungus mushroom"]) + let v = native_list_append(v, ["बुक", "noun", "बुक", "", "", "", "laughter"]) + let v = native_list_append(v, ["भुजा", "noun", "भुजा", "", "", "", "coil"]) + let v = native_list_append(v, ["यहु", "noun", "यह॑वः", "यहोः॑", "यह॑वे", "", "child offspring"]) + let v = native_list_append(v, ["आकृति", "noun", "आकृ॑तयः", "आकृ॑तेः", "आकृ॑तये", "", "shape form figure"]) + let v = native_list_append(v, ["चरु", "noun", "च॒रवः॑", "च॒रोः", "च॒रवे॑", "", "pot"]) + let v = native_list_append(v, ["वश्य", "noun", "वश्याः", "वश्यस्य", "वश्याय", "", "a dependent slave"]) + let v = native_list_append(v, ["वश", "noun", "वशाः॑", "वश॑स्य", "वशा॑य", "", "will wish desire"]) + let v = native_list_append(v, ["रोमन्थ", "noun", "रोमन्थाः", "रोमन्थस्य", "रोमन्थाय", "", "rumination chewing the"]) + let v = native_list_append(v, ["भेद", "noun", "भे॒दाः", "भे॒दस्य॑", "भे॒दाय॑", "", "cleft partition splitting"]) + let v = native_list_append(v, ["सज्जा", "noun", "सज्जाः", "सज्जायाः", "सज्जायै", "", "equipment armour mail"]) + let v = native_list_append(v, ["दृश्य", "noun", "दृश्याः॑", "दृश्य॑स्य", "दृश्या॑य", "", "n a visible"]) + let v = native_list_append(v, ["ह्रादुनि", "noun", "ह्रा॒दुन॑यः", "ह्रा॒दुनेः॑", "ह्रा॒दुन॑ये", "", "hail hailstone"]) + let v = native_list_append(v, ["अज", "noun", "अ॒जाः", "अ॒जस्य॑", "अ॒जाय॑", "", "troop"]) + let v = native_list_append(v, ["जनितृ", "noun", "ज॒नि॒तारः॑", "ज॒नि॒तुः", "ज॒नि॒त्रे", "", "a father progenitor"]) + let v = native_list_append(v, ["हुत", "noun", "हु॒तानि॑", "हु॒तस्य॑", "हु॒ताय॑", "", "oblation offering that"]) + let v = native_list_append(v, ["मातुःष्वसृ", "noun", "मातुःष्वसृ", "", "", "", "maternal aunt"]) + let v = native_list_append(v, ["धान", "noun", "धाना॑नि", "धान॑स्य", "धाना॑य", "", "receptacle case seat"]) + let v = native_list_append(v, ["यूष", "noun", "यू॒षाः", "यू॒षस्य॑", "यू॒षाय॑", "", "soup broth"]) + let v = native_list_append(v, ["निन्दा", "noun", "नि॒न्दाः", "नि॒न्दायाः॑", "नि॒न्दायै॑", "", "blame reproach censure"]) + let v = native_list_append(v, ["भ्रूण", "noun", "भ्रू॒णानि॑", "भ्रू॒णस्य॑", "भ्रू॒णाय॑", "", "embryo fetus"]) + let v = native_list_append(v, ["होम", "noun", "होमाः॑", "होम॑स्य", "होमा॑य", "", "the act of"]) + let v = native_list_append(v, ["शुल्क", "noun", "शु॒ल्काः", "शु॒ल्कस्य॑", "शु॒ल्काय॑", "", "price value purchase-money"]) + let v = native_list_append(v, ["आता", "noun", "आताः॑", "आता॑याः", "आता॑यै", "", "the frame of"]) + let v = native_list_append(v, ["गर्दभ", "noun", "ग॒र्द॒भाः", "ग॒र्द॒भस्य॑", "ग॒र्द॒भाय॑", "", "ass donkey"]) + let v = native_list_append(v, ["स्नायु", "noun", "स्नायवः", "स्नायुवाः", "स्नाय्वै", "", "sinew tendon"]) + let v = native_list_append(v, ["रोहित", "noun", "रोहि॑ताः", "रोहि॑तस्य", "रोहि॑ताय", "", "red or a"]) + let v = native_list_append(v, ["संध्या", "noun", "सं॒ध्याः", "सं॒ध्यायाः॑", "सं॒ध्यायै॑", "", "the act of"]) + let v = native_list_append(v, ["पिशाच", "noun", "पि॒शा॒चाः", "पि॒शा॒चस्य॑", "पि॒शा॒चाय॑", "", "a fiend ogre"]) + let v = native_list_append(v, ["निर्यास", "noun", "निर्यास", "", "", "", "juice sap"]) + let v = native_list_append(v, ["ओष", "noun", "ओ॒षाः", "ओ॒षस्य॑", "ओ॒षाय॑", "", "combustion"]) + let v = native_list_append(v, ["आरोप", "noun", "आरोपाः", "आरोपस्य", "आरोपाय", "", "imposing as a"]) + let v = native_list_append(v, ["जीर्ण", "noun", "जी॒र्णाः", "जी॒र्णस्य॑", "जी॒र्णाय॑", "", "an old man"]) + let v = native_list_append(v, ["गोरूप", "noun", "गोरूपानि", "गोरूपस्य", "गोरूपाय", "", "the shape of"]) + let v = native_list_append(v, ["वाटर", "noun", "वाटराणि", "वाटरस्य", "वाटराय", "", "a type of"]) + let v = native_list_append(v, ["ध्रुव", "noun", "ध्रुव", "", "", "", "the celestial pole"]) + let v = native_list_append(v, ["तट", "noun", "तटाः", "तटस्य", "तटाय", "", "a slope declivity"]) + let v = native_list_append(v, ["भिक्षा", "noun", "भि॒क्षाः", "भि॒क्षायाः॑", "भि॒क्षायै॑", "", "alms begging"]) + let v = native_list_append(v, ["सेवक", "noun", "सेवक", "", "", "", "a servant"]) + let v = native_list_append(v, ["ऐश्वर्य", "noun", "ऐश्वर्याणि", "ऐश्वर्यस्य", "ऐश्वर्याय", "", "supremacy power sovereignty"]) + let v = native_list_append(v, ["पदक", "noun", "पदक", "", "", "", "A step position"]) + let v = native_list_append(v, ["हरस्", "noun", "हरां॑सि", "हर॑सः", "हर॑से", "", "flame fire"]) + let v = native_list_append(v, ["धामन्", "noun", "धामा॑नि", "धाम्नः॑", "धाम्ने॑", "", "abode dwelling house"]) + let v = native_list_append(v, ["वास", "noun", "वा॒सास्", "वा॒सस्य॑", "वा॒साय॑", "", "dwelling staying"]) + let v = native_list_append(v, ["आपत्ति", "noun", "आपत्तयः", "आपत्तेः", "आपत्तये", "", "happening occurring"]) + let v = native_list_append(v, ["तक्षन्", "noun", "तक्षा॑णः", "तक्ष्णः॑", "तक्ष्णे॑", "", "a carpenter"]) + let v = native_list_append(v, ["पायस", "noun", "पायसानि", "पायसस्य", "पायसाय", "", "milk"]) + let v = native_list_append(v, ["नेतृत्व", "noun", "नेतृत्व", "", "", "", "leadership"]) + let v = native_list_append(v, ["समारोह", "noun", "समारोहाः", "समारोहस्य", "समारोहाय", "", "ascending mounting riding"]) + let v = native_list_append(v, ["कोकिल", "noun", "को॒कि॒लाः", "को॒कि॒लस्य॑", "को॒कि॒लाय॑", "", "a cuckoo"]) + let v = native_list_append(v, ["आयतन", "noun", "आयतन", "", "", "", "house home seat"]) + let v = native_list_append(v, ["जव", "noun", "जवाः॑", "जव॑स्य", "जवा॑य", "", "speed velocity swiftness"]) + let v = native_list_append(v, ["संसिद्धि", "noun", "संसिद्धि", "", "", "", "success"]) + let v = native_list_append(v, ["फलक", "noun", "फलकानि", "फलकस्य", "फलकाय", "", "fruit result gain"]) + let v = native_list_append(v, ["एधस्", "noun", "एधां॑सि", "एध॑सः", "एध॑से", "", "fuel combustion"]) + let v = native_list_append(v, ["दूर्वा", "noun", "दूर्वाः॑", "दूर्वा॑याः", "दूर्वा॑यै", "", "panicgrass Panicum spp."]) + let v = native_list_append(v, ["एला", "noun", "एलाः", "एलायाः", "एलायै", "", "cardamom"]) + let v = native_list_append(v, ["गालि", "noun", "गालि stem or", "गालीनाम्", "गालिभ्यः", "", "reviling speech invectives"]) + let v = native_list_append(v, ["जङ्घा", "noun", "जङ्घाः॑", "जङ्घा॑याः", "जङ्घा॑यै", "", "shank part of"]) + let v = native_list_append(v, ["संकल्प", "noun", "सं॒क॒ल्पाः", "सं॒क॒ल्पस्य॑", "सं॒क॒ल्पाय॑", "", "conception or idea"]) + let v = native_list_append(v, ["નરક", "noun", "નરક", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["अतिशयोक्ति", "noun", "अति॑शयोक्तयः", "अति॑शयोक्तेः", "अति॑शयोक्तये", "", "overexaggeration"]) + let v = native_list_append(v, ["तत्क्षण", "noun", "तत्क्षण", "", "", "", "the same moment"]) + let v = native_list_append(v, ["कोट", "noun", "कोटाः", "कोटस्य", "कोटाय", "", "fort castle"]) + let v = native_list_append(v, ["अन्त्र", "noun", "अन्त्राणि", "अन्त्रस्य", "अन्त्राय", "", "Classical Sanskrit and"]) + let v = native_list_append(v, ["जनपद", "noun", "ज॒न॒प॒दाः", "ज॒न॒प॒दस्य॑", "ज॒न॒प॒दाय॑", "", "Janapadas a number"]) + let v = native_list_append(v, ["मेल", "noun", "मेलाः", "मेलस्य", "मेलाय", "", "meeting union intercourse"]) + let v = native_list_append(v, ["भर्मन्", "noun", "भर्मा॑णि", "भर्म॑णः", "भर्म॑णे", "", "support maintenance nourishment"]) + let v = native_list_append(v, ["अनु", "noun", "अन॑वः", "अनोः॑", "अन॑वे", "", "non-Aryan man"]) + let v = native_list_append(v, ["शर्कर", "noun", "शर्कराः", "शर्करस्य", "शर्कराय", "", "pebble small stone"]) + let v = native_list_append(v, ["नारिकेल", "noun", "नारिकेलाः", "नारिकेलस्य", "नारिकेलाय", "", "coconut the coconut"]) + let v = native_list_append(v, ["गोष्ठ", "noun", "गो॒ष्ठाः", "गो॒ष्ठस्य॑", "गो॒ष्ठाय॑", "", "cow-pen cowshed cattle"]) + let v = native_list_append(v, ["दहन", "noun", "दहनानि", "दहनस्य", "दहनाय", "", "the act of"]) + let v = native_list_append(v, ["अनुज", "noun", "अनुजाः", "अनुजस्य", "अनुजाय", "", "a younger brother"]) + let v = native_list_append(v, ["मेधा", "noun", "मे॒धाः", "मे॒धायाः॑", "मे॒धायै॑", "", "wisdom intelligence"]) + let v = native_list_append(v, ["स्तुति", "noun", "स्तु॒तयः॑", "स्तु॒तेः", "स्तु॒तये॑", "", "praise eulogy panegyric"]) + let v = native_list_append(v, ["वाद्य", "noun", "वाद्या॑नि", "वाद्य॑स्य", "वाद्या॑य", "", "speech statement"]) + let v = native_list_append(v, ["उपकरण", "noun", "उपकरणानि", "उपकरणस्य", "उपकरणाय", "", "equipment device tool"]) + let v = native_list_append(v, ["करम्भ", "noun", "करम्भाः", "करम्भस्य", "करम्भाय", "", "groats ground oats"]) + let v = native_list_append(v, ["दधि", "noun", "दधीनि", "दधिनः", "दधिने", "", "coagulated or curdled"]) + let v = native_list_append(v, ["तक्र", "noun", "त॒क्राणि॑", "त॒क्रस्य॑", "त॒क्राय॑", "", "buttermilk mixed with"]) + let v = native_list_append(v, ["कुबेर", "noun", "कुबेराः", "कुबेरस्य", "कुबेराय", "", "Kubera king of"]) + let v = native_list_append(v, ["कुवेर", "noun", "कुवेर", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["बन्धु", "noun", "बन्ध॑वः", "बन्धोः॑", "बन्ध॑वे", "", "connection relation association"]) + let v = native_list_append(v, ["मुकुट", "noun", "मुकुटाः", "मुकुटस्य", "मुकुटाय", "", "crown diadem tiara"]) + let v = native_list_append(v, ["दिनेश", "noun", "दिनेशाः", "दिनेशस्य", "दिनेशाय", "", "the sun"]) + let v = native_list_append(v, ["स्वरु", "noun", "स्वर॑वः", "स्वरोः॑", "स्वर॑वे", "", "a large piece"]) + let v = native_list_append(v, ["यौवन", "noun", "यौ॒व॒नानि॑", "यौ॒व॒नस्य॑", "यौ॒व॒नाय॑", "", "youth youthfulness"]) + let v = native_list_append(v, ["निगम", "noun", "निगमाः", "निगमस्य", "निगमाय", "", "insertion esp. the"]) + let v = native_list_append(v, ["अजमोद", "noun", "अजमोद", "", "", "", "celery Apium graveolens"]) + let v = native_list_append(v, ["भ्रंश", "noun", "भ्रं॒शाः", "भ्रं॒शस्य॑", "भ्रं॒शाय॑", "", "decay decline ruin"]) + let v = native_list_append(v, ["घन", "noun", "घ॒नाः", "घ॒नस्य॑", "घ॒नाय॑", "", "a killer striker"]) + let v = native_list_append(v, ["सूर", "noun", "सूराः॑", "सूर॑स्य", "सूरा॑य", "", "the Sun"]) + let v = native_list_append(v, ["स्तरी", "noun", "स्त॒र्यः॑", "", "", "", "a barren cow"]) + let v = native_list_append(v, ["तना", "noun", "तना", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["वितरण", "noun", "वितरणानि", "वितरणस्य", "वितरणाय", "", "distribution apportioning"]) + let v = native_list_append(v, ["लवण", "noun", "लवणानि", "लवणस्य", "लवणाय", "", "salt e.g. sea"]) + let v = native_list_append(v, ["परिषद्", "noun", "प॒रि॒षदः॑", "प॒रि॒षदः॑", "प॒रि॒षदे॑", "", "assembly meeting group"]) + let v = native_list_append(v, ["तैल", "noun", "तै॒लानि॑", "तै॒लस्य॑", "तै॒लाय॑", "", "oil"]) + let v = native_list_append(v, ["सखा", "noun", "सखा", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["गोपनीयता", "noun", "गोपनीयताः", "गोपनीयतायाः", "गोपनीयतायै", "", "concealability"]) + let v = native_list_append(v, ["सगर्भ्य", "noun", "सग॑र्भ्याः", "सग॑र्भ्यस्य", "सग॑र्भ्याय", "", "full-blooded brother sharing"]) + let v = native_list_append(v, ["मातुल", "noun", "मातुलाः", "मातुलस्य", "मातुलाय", "", "maternal uncle mother’s"]) + let v = native_list_append(v, ["मातुला", "noun", "मातुलाः", "मातुलायाः", "मातुलायै", "", "maternal aunt mother’s"]) + let v = native_list_append(v, ["पितृव्य", "noun", "पितृव्याः", "पितृव्यस्य", "पितृव्याय", "", "paternal uncle the"]) + let v = native_list_append(v, ["पितृव्या", "noun", "पितृव्याः", "पितृव्यायाः", "पितृव्यायै", "", "paternal aunt the"]) + let v = native_list_append(v, ["यामेय", "noun", "यामेयाः", "यामेयस्य", "यामेयाय", "", "sororal nephew the"]) + let v = native_list_append(v, ["देवन", "noun", "देवनाः", "देवनस्य", "देवनाय", "", "splendor shining glory"]) + let v = native_list_append(v, ["देवना", "noun", "देवना", "", "", "", "pastime sport hobby"]) + let v = native_list_append(v, ["स्याल", "noun", "स्या॒लाः", "स्या॒लस्य॑", "स्या॒लाय॑", "", "a mans brother-in-law"]) + let v = native_list_append(v, ["श्याल", "noun", "श्याल", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["आबुत्त", "noun", "आबुत्ताः", "आबुत्तस्य", "आबुत्ताय", "", "brother-in-law sister’s husband"]) + let v = native_list_append(v, ["स्याली", "noun", "स्याल्यः", "स्याल्याः", "स्याल्यै", "", "mans sister-in-law wifes"]) + let v = native_list_append(v, ["टङ्का", "noun", "टङ्काः", "टङ्कायाः", "टङ्कायै", "", "leg"]) + let v = native_list_append(v, ["तालु", "noun", "तालूनि", "तालुनः", "तालुने", "", "palate"]) + let v = native_list_append(v, ["मातुलानी", "noun", "मातुलान्यः", "मातुलान्याः", "मातुलान्यै", "", "maternal aunt mother’s"]) + let v = native_list_append(v, ["ज्ञाति", "noun", "ज्ञा॒तयः॑", "ज्ञा॒तेः", "ज्ञा॒तये॑", "", "relative kinsman especially"]) + let v = native_list_append(v, ["बान्धव", "noun", "बान्धवाः", "बान्धवस्य", "बान्धवाय", "", "kinsman relative"]) + let v = native_list_append(v, ["वाचम्", "noun", "वाचम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["वाक्", "noun", "वाक्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["काच", "noun", "काचाः", "काचस्य", "काचाय", "", "glass"]) + let v = native_list_append(v, ["धारा", "noun", "धाराः॑", "धारा॑याः", "धारा॑यै", "", "stream or current"]) + let v = native_list_append(v, ["रज्जु", "noun", "रज्ज॑वः", "रज्जोः॑", "रज्ज॑वे", "", "a rope cord"]) + let v = native_list_append(v, ["रश्मि", "noun", "र॒श्मयः॑", "र॒श्मेः", "र॒श्मये॑", "", "rope string cord"]) + let v = native_list_append(v, ["मिश्रण", "noun", "मिश्रणानि", "मिश्रणस्य", "मिश्रणाय", "", "mixing mixture"]) + let v = native_list_append(v, ["जहका", "noun", "जह॑काः", "जह॑कायाः", "जह॑कायै", "", "hedgehog"]) + let v = native_list_append(v, ["परिचित", "noun", "परिचित", "", "", "", "known familiar"]) + let v = native_list_append(v, ["उद्भव", "noun", "उद्भवाः", "उद्भवस्य", "उद्भवाय", "", "origin birth making"]) + let v = native_list_append(v, ["ममता", "noun", "ममता", "", "", "", "The feeling of"]) + let v = native_list_append(v, ["देवन्", "noun", "दे॒वानः॑", "दे॒व्नः", "दे॒व्ने", "", "womans brother-in-law husbands"]) + let v = native_list_append(v, ["सपत्नी", "noun", "स॒पत्न्यः॑", "स॒पत्न्याः॑", "स॒पत्न्यै॑", "", "a co-wife rival"]) + let v = native_list_append(v, ["प्लिहन्", "noun", "प्लिहन्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["साद", "noun", "सा॒दाः", "सा॒दस्य॑", "सा॒दाय॑", "", "sitting on horseback"]) + let v = native_list_append(v, ["कुमारी", "noun", "कु॒मा॒र्यः॑", "कु॒मा॒र्याः", "कु॒मा॒र्यै", "", "young girl maiden"]) + let v = native_list_append(v, ["अरत्नि", "noun", "अ॒र॒त्नयः॑", "अ॒र॒त्नेः", "अ॒र॒त्नये॑", "", "elbow"]) + let v = native_list_append(v, ["वस्मन्", "noun", "वस्मा॑नि", "वस्म॑नः", "वस्म॑ने", "", "clothing garment cover"]) + let v = native_list_append(v, ["उल्का", "noun", "उ॒ल्काः", "उ॒ल्कायाः॑", "उ॒ल्कायै॑", "", "meteor"]) + let v = native_list_append(v, ["बोध", "noun", "बो॒धाः", "बो॒धस्य॑", "बो॒धाय॑", "", "waking becoming or"]) + let v = native_list_append(v, ["उत्तराधिकारी", "noun", "उत्तराधिकारी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["अश्विनी", "noun", "अश्विनी", "अ॒श्विन्याः॑", "अ॒श्विन्यै॑", "", "Ashvini a nakshatra"]) + let v = native_list_append(v, ["जिन", "noun", "जिनाः", "जिनस्य", "जिनाय", "", "Jina Arihant a"]) + let v = native_list_append(v, ["भानु", "noun", "भा॒नवः॑", "भा॒नोः", "भा॒नवे॑", "", "ray of light"]) + let v = native_list_append(v, ["शोध", "noun", "शोध", "", "", "", "correction rectification"]) + let v = native_list_append(v, ["उष्णकाल", "noun", "उष्णकालाः", "उष्णकालस्य", "उष्णकालाय", "", "summer the hot"]) + let v = native_list_append(v, ["साधना", "noun", "साधनाः", "साधनायाः", "साधनायै", "", "performance"]) + let v = native_list_append(v, ["हेषस्", "noun", "हेषां॑सि", "हेष॑सः", "हेष॑से", "", "missile"]) + let v = native_list_append(v, ["कुठार", "noun", "कुठाराः", "कुठारस्य", "कुठाराय", "", "axe"]) + let v = native_list_append(v, ["वम्र", "noun", "वम्राः", "वम्रस्य", "वम्राय", "", "ant"]) + let v = native_list_append(v, ["उपार्जन", "noun", "उपार्जनानि", "उपार्जनस्य", "उपार्जनाय", "", "procuring earning"]) + let v = native_list_append(v, ["आदेश", "noun", "आदेशाः", "आदेशस्य", "आदेशाय", "", "instruction order advice"]) + let v = native_list_append(v, ["विजयादशमी", "noun", "विजयादशमी", "विजयादशम्याः", "विजयादशम्यै", "", "Vijayadashami a Hindu"]) + let v = native_list_append(v, ["बजाय", "noun", "बजाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["युक्त", "noun", "यु॒क्तानि॑", "यु॒क्तस्य॑", "यु॒क्ताय॑", "", "a team yoke"]) + let v = native_list_append(v, ["ಸ್ತ್ರೀ", "noun", "ಸ್ತ್ರಿಯಃ", "ಸ್ತ್ರಿಯಃ", "ಸ್ತ್ರಿಯೇ", "", "Kannada script form"]) + let v = native_list_append(v, ["गोधूम", "noun", "गो॒धूमाः॑", "गो॒धूम॑स्य", "गो॒धूमा॑य", "", "wheat"]) + let v = native_list_append(v, ["निज", "noun", "नि॒जाः", "नि॒जस्य॑", "नि॒जाय॑", "", "a relative"]) + let v = native_list_append(v, ["आकाशवाणी", "noun", "आकाशवाण्यः", "आकाशवाण्याः", "आकाशवाण्यै", "", "radio"]) + let v = native_list_append(v, ["स्पर्धा", "noun", "स्पर्धाः", "स्पर्धायाः", "स्पर्धायै", "", "competition rivalry emulation"]) + let v = native_list_append(v, ["मेह", "noun", "मेहाः॑", "मेह॑स्य", "मेहा॑य", "", "urine"]) + let v = native_list_append(v, ["उत्सुक", "noun", "उत्सुकानि", "उत्सुकस्य", "उत्सुकाय", "", "sorrow"]) + let v = native_list_append(v, ["उपवास", "noun", "उपवासाः", "उपवासस्य", "उपवासाय", "", "fast abstinence from"]) + let v = native_list_append(v, ["देवपुत्र", "noun", "देवपुत्राः", "देवपुत्रस्य", "देवपुत्राय", "", "son of heaven"]) + let v = native_list_append(v, ["चपेट", "noun", "चपेटाः", "चपेटस्य", "चपेटाय", "", "a slap with"]) + let v = native_list_append(v, ["दा", "noun", "दाः", "दः", "दे", "", "a giver"]) + let v = native_list_append(v, ["ঔষধ", "noun", "ঔষধ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["भार", "noun", "भा॒राः", "भा॒रस्य॑", "भा॒राय॑", "", "burden load weight"]) + let v = native_list_append(v, ["मन्दिर", "noun", "मन्दिराणि", "मन्दिरस्य", "मन्दिराय", "", "any waiting or"]) + let v = native_list_append(v, ["मत्सर", "noun", "म॒त्स॒राः", "म॒त्स॒रस्य॑", "म॒त्स॒राय॑", "", "jealousy envy"]) + let v = native_list_append(v, ["कुशल", "noun", "कुश॑लानि", "कुश॑लस्य", "कुश॑लाय", "", "welfare well-being prosperous"]) + let v = native_list_append(v, ["कर्तृत्व", "noun", "कर्तृत्व", "", "", "", "authorship the state"]) + let v = native_list_append(v, ["เลขา", "noun", "เลขา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["हूण", "noun", "हूणाः", "हूणस्य", "हूणाय", "", "the name of"]) + let v = native_list_append(v, ["दाव", "noun", "दा॒वाः", "दा॒वस्य॑", "दा॒वाय॑", "", "a forest fire"]) + let v = native_list_append(v, ["वैशाख", "noun", "वै॒शा॒खाः", "वै॒शा॒खस्य॑", "वै॒शा॒खाय॑", "", "Second month of"]) + let v = native_list_append(v, ["अनुभूति", "noun", "अनुभूतयः", "अनुभूतेः", "अनुभूतये", "", "perception experience feeling"]) + let v = native_list_append(v, ["वासुदेव", "noun", "वासुदेव", "वासुदेवस्य", "वासुदेवाय", "", "an epithet of"]) + let v = native_list_append(v, ["खान", "noun", "खानानि", "खानस्य", "खानाय", "", "eating food"]) + let v = native_list_append(v, ["सुत", "noun", "सुत", "", "", "", "son child offspring"]) + let v = native_list_append(v, ["अब्ज", "noun", "अब्ज", "", "", "", "100 crores or"]) + let v = native_list_append(v, ["माति", "noun", "मातयः", "मातेः", "मातये", "", "measure"]) + let v = native_list_append(v, ["त्वरित", "noun", "त्वरितानि", "त्वरितस्य", "त्वरिताय", "", "hurried"]) + let v = native_list_append(v, ["धमनी", "noun", "धमन्यः", "धमन्याः", "धमन्यै", "", "a sort of"]) + let v = native_list_append(v, ["पण", "noun", "पण", "", "", "", "play for a"]) + let v = native_list_append(v, ["पलाव", "noun", "पलावाः", "पलावस्य", "पलावाय", "", "chaff husks"]) + let v = native_list_append(v, ["पिष्ट", "noun", "पि॒ष्टानि॑", "पि॒ष्टस्य॑", "पि॒ष्टाय॑", "", "flour meal"]) + let v = native_list_append(v, ["मोच", "noun", "मोचानि", "मोचस्य", "मोचाय", "", "banana"]) + let v = native_list_append(v, ["उपेक्षा", "noun", "उपेक्षाः", "उपेक्षायाः", "उपेक्षायै", "", "endurance patience"]) + let v = native_list_append(v, ["कलह", "noun", "कलहाः", "कलहस्य", "कलहाय", "", "strife contention quarrel"]) + let v = native_list_append(v, ["सौर", "noun", "सौराः", "सौरस्य", "सौराय", "", "a worshipper of"]) + let v = native_list_append(v, ["शीर्षक", "noun", "शीर्षकाः", "शीर्षकस्य", "शीर्षकाय", "", "name of a"]) + let v = native_list_append(v, ["रोचस्", "noun", "रोचां॑सि", "रोच॑सः", "रोच॑से", "", "light lustre"]) + let v = native_list_append(v, ["खस", "noun", "खसाः", "खसस्य", "खसाय", "", "itch scab"]) + let v = native_list_append(v, ["क्षत्री", "noun", "क्षत्र्यः", "क्षत्र्याः", "क्षत्र्यै", "", "a kshatriya woman"]) + let v = native_list_append(v, ["दर", "noun", "दराः", "दरस्य", "दराय", "", "cleaving breaking"]) + let v = native_list_append(v, ["खेलन", "noun", "खेलनानि", "खेलनस्य", "खेलनाय", "", "play pastime sport"]) + let v = native_list_append(v, ["ಭೂಮಿ", "noun", "ಭೂಮಿ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["यमराज", "noun", "य॒म॒राजाः॑", "य॒म॒राज॑स्य", "य॒म॒राजा॑य", "", "Yama the god"]) + let v = native_list_append(v, ["वितस्ति", "noun", "वित॑स्तयः", "वित॑स्तेः", "वित॑स्तये", "", "a particular measure"]) + let v = native_list_append(v, ["शरणागत", "noun", "शरणागताः", "शरणागतस्य", "शरणागताय", "", "supplicant for asylum"]) + let v = native_list_append(v, ["शूर", "noun", "शूराः॑", "शूर॑स्य", "शूरा॑य", "", "a strong man"]) + let v = native_list_append(v, ["व्यधिकरण", "noun", "व्यधिकरणानि", "व्यधिकरणस्य", "व्यधिकरणाय", "", "an incongruity opposite"]) + let v = native_list_append(v, ["कर्मधारय", "noun", "कर्मधारयाः", "कर्मधारयस्य", "कर्मधारयाय", "", "a karmadharaya a"]) + let v = native_list_append(v, ["आम्रेडित", "noun", "आम्रेडितानि", "आम्रेडितस्य", "आम्रेडिताय", "", "repetition reiteration"]) + let v = native_list_append(v, ["मन्त्रालय", "noun", "मन्त्रालयानि", "मन्त्रालयस्य", "मन्त्रालयाय", "", "ministry"]) + let v = native_list_append(v, ["खश", "noun", "खशाः", "खशस्य", "खशाय", "", "northern tribe living"]) + let v = native_list_append(v, ["रक्षित", "noun", "र॒क्षि॒ताः", "र॒क्षि॒तस्य॑", "र॒क्षि॒ताय॑", "", "a male given"]) + let v = native_list_append(v, ["अर्घ", "noun", "अ॒र्घाः", "अ॒र्घस्य॑", "अ॒र्घाय॑", "", "worth value price"]) + let v = native_list_append(v, ["द्विगु", "noun", "द्विगवः", "द्विगोः", "द्विगवे", "", "a kind of"]) + let v = native_list_append(v, ["आवृत्ति", "noun", "आवृत्ति", "", "", "", "turning in"]) + let v = native_list_append(v, ["कुष्ठ", "noun", "कुष्ठाः॑", "कुष्ठ॑स्य", "कुष्ठा॑य", "", "crepe ginger Hellenia"]) + let v = native_list_append(v, ["वर्त्मन्", "noun", "वर्त्मा॑नि", "वर्त्म॑नः", "वर्त्म॑ने", "", "the track or"]) + let v = native_list_append(v, ["लट", "noun", "लटाः", "लटस्य", "लटाय", "", "thief"]) + let v = native_list_append(v, ["दक्षिणा", "noun", "दक्षिणाः", "दक्षिणायाः", "दक्षिणायै", "", "donation"]) + let v = native_list_append(v, ["प्रियदर्शिन्", "noun", "प्रियदर्शिन्", "प्रियदर्शिनः", "प्रियदर्शिने", "", "Piyadasi an epithet"]) + let v = native_list_append(v, ["संगम", "noun", "संगमाः", "संगमस्य", "संगमाय", "", "a coming together"]) + let v = native_list_append(v, ["प्रतिभा", "noun", "प्रतिभाः", "प्रतिभायाः", "प्रतिभायै", "", "an image"]) + let v = native_list_append(v, ["आत्मनेपद", "noun", "आत्मनेपदानि", "आत्मनेपदस्य", "आत्मनेपदाय", "", "word for the"]) + let v = native_list_append(v, ["जलद", "noun", "जलदाः", "जलदस्य", "जलदाय", "", "water-giver a cloud"]) + let v = native_list_append(v, ["खगोल", "noun", "ख॒गोलाः॑", "ख॒गोल॑स्य", "ख॒गोला॑य", "", "planet heavenly body"]) + let v = native_list_append(v, ["घट्ट", "noun", "घट्टाः", "घट्टस्य", "घट्टाय", "", "a quay or"]) + let v = native_list_append(v, ["सहस्", "noun", "सहां॑सि", "सह॑सः", "सह॑से", "", "strength power force"]) + let v = native_list_append(v, ["लुप्त", "noun", "लुप्तानि", "लुप्तस्य", "लुप्ताय", "", "plunder loot stolen"]) + let v = native_list_append(v, ["तक्षशिला", "noun", "तक्षशिला", "तक्षशिलायाः", "तक्षशिलायै", "", "Takshashila an ancient"]) + let v = native_list_append(v, ["कपिलवस्तु", "noun", "कपिलवस्तु", "कपिलवस्तोः", "कपिलवस्तवे", "", "Kapilavastu a city"]) + let v = native_list_append(v, ["विभाजन", "noun", "विभाजनानि", "विभाजनस्य", "विभाजनाय", "", "division distribution"]) + let v = native_list_append(v, ["शालि", "noun", "शालयः", "शालेः", "शालये", "", "rice"]) + let v = native_list_append(v, ["समाधान", "noun", "समाधानानि", "समाधानस्य", "समाधानाय", "", "putting together laying"]) + let v = native_list_append(v, ["प्रबन्ध", "noun", "बन्धाः", "बन्धस्य", "बन्धाय", "", "continuous application or"]) + let v = native_list_append(v, ["शिल्प", "noun", "शिल्पानि", "शिल्पस्य", "शिल्पाय", "", "the art of"]) + let v = native_list_append(v, ["दीनार", "noun", "दीनाराः", "दीनारस्य", "दीनाराय", "", "dinar"]) + let v = native_list_append(v, ["ဘူ", "noun", "ဘူ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["हित", "noun", "हितानि", "हितस्य", "हिताय", "", "interest"]) + let v = native_list_append(v, ["अतीत", "noun", "अतीतानि", "अतीतस्य", "अतीताय", "", "the past"]) + let v = native_list_append(v, ["गदा", "noun", "गदाः", "गदायाः", "गदायै", "", "a mace club"]) + let v = native_list_append(v, ["भिषज्", "noun", "भि॒षजः॑", "भि॒षजः॑", "भि॒षजे॑", "", "a healer a"]) + let v = native_list_append(v, ["คช", "noun", "คช", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["यज्ञोपवीत", "noun", "य॒ज्ञो॒प॒वी॒तानि॑", "य॒ज्ञो॒प॒वी॒तस्य॑", "य॒ज्ञो॒प॒वी॒ताय॑", "", "the sacred thread"]) + let v = native_list_append(v, ["चयन", "noun", "चय॑नानि", "चय॑नस्य", "चय॑नाय", "", "piling up wood"]) + let v = native_list_append(v, ["श्रिया", "noun", "श्रियाः", "श्रियायाः", "श्रियायै", "", "happiness"]) + let v = native_list_append(v, ["कश्यप", "noun", "क॒श्यपाः॑", "क॒श्यप॑स्य", "क॒श्यपा॑य", "", "a tortoise"]) + let v = native_list_append(v, ["पाषाण", "noun", "पाषाणाः", "पाषाणस्य", "पाषाणाय", "", "stone rock"]) + let v = native_list_append(v, ["प्रवास", "noun", "प्रवास", "", "", "", "a trip"]) + let v = native_list_append(v, ["प्रसार", "noun", "प्रसार", "", "", "", "spreading or stretching"]) + let v = native_list_append(v, ["समीक्षा", "noun", "समीक्षाः", "समीक्षायाः", "समीक्षायै", "", "thorough or close"]) + let v = native_list_append(v, ["स्रोतस्", "noun", "स्रोतां॑सि", "स्रोत॑सः", "स्रोत॑से", "", "river stream torrent"]) + let v = native_list_append(v, ["मयूख", "noun", "म॒यूखाः॑", "म॒यूख॑स्य", "म॒यूखा॑य", "", "a kind of"]) + let v = native_list_append(v, ["प्रत्याशी", "noun", "प्रत्याशी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["आयात", "noun", "आयातानि", "आयातस्य", "आयाताय", "", "abundance plentifulness"]) + let v = native_list_append(v, ["साक्षात्कार", "noun", "साक्षात्काराः", "साक्षात्कारस्य", "साक्षात्काराय", "", "evident or intuitive"]) + let v = native_list_append(v, ["ಕ್ರೋಧ", "noun", "ಕ್ರೋಧ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["वृत्रघ्ने", "noun", "वृत्रघ्ने", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["प्रतिनिधित्व", "noun", "प्रतिनिधित्व", "", "", "", ""]) + let v = native_list_append(v, ["गद्य", "noun", "गद्यानि", "गद्यस्य", "गद्याय", "", "prose composition not"]) + let v = native_list_append(v, ["दक्षिणापथ", "noun", "दक्षिणापथ", "", "", "", "the southern path"]) + let v = native_list_append(v, ["स्वधा", "noun", "स्व॒धाः", "स्व॒धायाः॑", "स्व॒धायै॑", "", "custom habit natural"]) + let v = native_list_append(v, ["सूर्यास्त", "noun", "सूर्यास्ताः", "सूर्यास्तस्य", "सूर्यास्ताय", "", "sunset"]) + let v = native_list_append(v, ["ಬುದ್ಧ", "noun", "ಬುದ್ಧ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["समर्पण", "noun", "समर्पणानि", "समर्पणस्य", "समर्पणाय", "", "offering"]) + let v = native_list_append(v, ["निचय", "noun", "निचय", "", "", "", "a heap a"]) + let v = native_list_append(v, ["अपाय", "noun", "अपायाः", "अपायस्य", "अपायाय", "", "danger risk"]) + let v = native_list_append(v, ["कोटर", "noun", "कोटर", "", "", "", "a hole"]) + let v = native_list_append(v, ["ऋभु", "noun", "ऋ॒भवः॑", "ऋ॒भोः", "ऋ॒भवे॑", "", "artisan metalworker craftsman"]) + let v = native_list_append(v, ["ऋभुणा", "noun", "ऋभुणा", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["ऋद्धेः", "noun", "ऋद्धेः", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ग्नायै", "noun", "ग्नायै", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ग्नया", "noun", "ग्नया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["विस्मय", "noun", "विस्मय", "", "", "", "amazement wonder admiration"]) + let v = native_list_append(v, ["शीत", "noun", "शी॒तानि॑", "शी॒तस्य॑", "शी॒ताय॑", "", "cold coldness cold"]) + let v = native_list_append(v, ["उत्पाद", "noun", "उत्पाद", "", "", "", "genesis birth onset"]) + let v = native_list_append(v, ["ऋतवस्", "noun", "ऋतवस्", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ऋतूनाम्", "noun", "ऋतूनाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["व्याख्यान", "noun", "व्याख्यान", "", "", "", "Communication narration"]) + let v = native_list_append(v, ["एरका", "noun", "एरकाः", "एरकायाः", "एरकायै", "", "a kind of"]) + let v = native_list_append(v, ["कर्पास", "noun", "क॒र्पासाः॑", "क॒र्पास॑स्य", "क॒र्पासा॑य", "", "cotton Gossypium arboreum"]) + let v = native_list_append(v, ["शावक", "noun", "शावकाः", "शावकस्य", "शावकाय", "", "the young one"]) + let v = native_list_append(v, ["संलयन", "noun", "संलयनानि", "संलयनस्य", "संलयनाय", "", "sitting or lying"]) + let v = native_list_append(v, ["संदेह", "noun", "सं॒दे॒हाः", "सं॒दे॒हस्य॑", "सं॒दे॒हाय॑", "", "a conglomeration or"]) + let v = native_list_append(v, ["मीर", "noun", "मीराः", "मीरस्य", "मीराय", "", "the sea ocean"]) + let v = native_list_append(v, ["छल", "noun", "छलानि", "छलस्य", "छलाय", "", "fraud deceit sham"]) + let v = native_list_append(v, ["वध्या", "noun", "वध्या", "", "", "", "murder killing"]) + let v = native_list_append(v, ["वध", "noun", "व॒धाः", "व॒धस्य॑", "व॒धाय॑", "", "murder slaughter"]) + let v = native_list_append(v, ["निरीक्षण", "noun", "निरीक्षणानि", "निरीक्षणस्य", "निरीक्षणाय", "", "look looking at"]) + let v = native_list_append(v, ["पतित्व", "noun", "पतित्व", "", "", "", ""]) + let v = native_list_append(v, ["कदन", "noun", "कदनानि", "कदनस्य", "कदनाय", "", "destruction killing slaughter"]) + let v = native_list_append(v, ["रजनि", "noun", "रजनि", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["अही", "noun", "अ॒ह्यः॑", "अ॒ह्याः", "अ॒ह्यै", "", "a cow"]) + let v = native_list_append(v, ["आन्दोलन", "noun", "आन्दोलन", "", "", "", "movement"]) + let v = native_list_append(v, ["व्याख्या", "noun", "व्याख्याः", "व्याख्यायाः", "व्याख्यायै", "", "explanation exposition gloss"]) + let v = native_list_append(v, ["उत्पत्ति", "noun", "उत्पत्तयः", "उत्पत्तेः", "उत्पत्तये", "", "genesis birth onset"]) + let v = native_list_append(v, ["अधिनायक", "noun", "अधिनायकाः", "अधिनायकस्य", "अधिनायकाय", "", "supreme leader"]) + let v = native_list_append(v, ["पाशुपत", "noun", "पाशुपताः", "पाशुपतस्य", "पाशुपताय", "", "a Pashupata Shaivite"]) + let v = native_list_append(v, ["मास्", "noun", "मासः॑", "मा॒सः", "मा॒से", "", "the moon"]) + let v = native_list_append(v, ["उत्साह", "noun", "उत्साहाः", "उत्साहस्य", "उत्साहाय", "", "power energy"]) + let v = native_list_append(v, ["प्रतीति", "noun", "प्रतीतयः", "प्रतीतेः", "प्रतीतये", "", "trust credit"]) + let v = native_list_append(v, ["रिरंसा", "noun", "रिरंसाः", "रिरंसायाः", "रिरंसायै", "", "sexual desire"]) + let v = native_list_append(v, ["नेम", "noun", "नेमाः", "नेमस्य", "नेमाय", "", "portion"]) + let v = native_list_append(v, ["वाङ्मय", "noun", "वा॒ङ्मयाः॑", "वा॒ङ्मय॑स्य", "वा॒ङ्मया॑य", "", "speech eloquence rhetoric"]) + let v = native_list_append(v, ["मच्छ", "noun", "मच्छाः", "मच्छस्य", "मच्छाय", "", "fish"]) + let v = native_list_append(v, ["शफर", "noun", "शफराः", "शफरस्य", "शफराय", "", "a species of"]) + let v = native_list_append(v, ["वाङ्", "noun", "वाङ्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["आवेश", "noun", "आवेशाः", "आवेशस्य", "आवेशाय", "", "joining ones self"]) + let v = native_list_append(v, ["रेष", "noun", "रे॒षाः", "रे॒षस्य॑", "रे॒षाय॑", "", "injury hurt"]) + let v = native_list_append(v, ["अभिरुचि", "noun", "अभिरुचयः", "अभिरुचेः", "अभिरुचये", "", "delighting in being"]) + let v = native_list_append(v, ["भर्त्सना", "noun", "भर्त्सनाः", "भर्त्सनायाः", "भर्त्सनायै", "", "synonym of भर्त्सन"]) + let v = native_list_append(v, ["फलन", "noun", "फलनानि", "फलनस्य", "फलनाय", "", "bearing fruit fruition"]) + let v = native_list_append(v, ["अचर", "noun", "अचर", "", "", "", "law practice rule"]) + let v = native_list_append(v, ["सृक", "noun", "सृ॒काणि॑", "सृ॒कस्य॑", "सृ॒काय॑", "", "cusp point tip"]) + let v = native_list_append(v, ["हरित", "noun", "हरिताः", "हरितस्य", "हरिताय", "", "yellowish the color"]) + let v = native_list_append(v, ["तुरीय", "noun", "तुरीय", "", "", "", "a quarter"]) + let v = native_list_append(v, ["वहित्र", "noun", "व॒हित्रा॑णि", "व॒हित्र॑स्य", "व॒हित्रा॑य", "", "boat vessel"]) + let v = native_list_append(v, ["काज", "noun", "काजानि", "काजस्य", "काजाय", "", "a wooden hammer"]) + let v = native_list_append(v, ["यशस्", "noun", "यशां॑सि", "यश॑सः", "यश॑से", "", "glory fame renown"]) + let v = native_list_append(v, ["कुख्याति", "noun", "कुख्यातयः", "कुख्यातेः", "कुख्यातये", "", "ill-repute infamy"]) + let v = native_list_append(v, ["अनुप्रास", "noun", "अनुप्रासाः", "अनुप्रासस्य", "अनुप्रासाय", "", "alliteration"]) + let v = native_list_append(v, ["आश्रय", "noun", "आश्रयाः", "आश्रयस्य", "आश्रयाय", "", "refuge shelter"]) + let v = native_list_append(v, ["त्रास", "noun", "त्रासाः", "त्रासस्य", "त्रासाय", "", "fear terror"]) + let v = native_list_append(v, ["विनय", "noun", "विनयाः", "विनयस्य", "विनयाय", "", "taking away removal"]) + let v = native_list_append(v, ["अस्त", "noun", "अस्ता॑नि", "अस्त॑स्य", "अस्ता॑य", "", "home house"]) + let v = native_list_append(v, ["अयन", "noun", "अय॑नानि", "अय॑नस्य", "अय॑नाय", "", "path road way"]) + let v = native_list_append(v, ["वसिष्ठ", "noun", "वसि॑ष्ठाः", "वसि॑ष्ठस्य", "वसि॑ष्ठाय", "", "Vasishtha husband of"]) + let v = native_list_append(v, ["सार्थ", "noun", "सार्थाः॑", "सार्थ॑स्य", "सार्था॑य", "", "crowd multitude"]) + let v = native_list_append(v, ["खुर", "noun", "खुराः", "खुरस्य", "खुराय", "", "hoof"]) + let v = native_list_append(v, ["अपदेश", "noun", "अपदेशाः", "अपदेशस्य", "अपदेशाय", "", "pretense pretext plea"]) + let v = native_list_append(v, ["शाप", "noun", "शापाः", "शापस्य", "शापाय", "", "spell"]) + let v = native_list_append(v, ["समुच्चय", "noun", "समुच्चयाः", "समुच्चयस्य", "समुच्चयाय", "", "aggregation accumulation collection"]) + let v = native_list_append(v, ["કાર્ય", "noun", "કાર્ય", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["सिरा", "noun", "सि॒राः", "सि॒रायाः॑", "सि॒रायै॑", "", "a stream"]) + let v = native_list_append(v, ["नीळ", "noun", "नी॒ळाः", "नी॒ळस्य॑", "नी॒ळाय॑", "", "a birds nest"]) + let v = native_list_append(v, ["स्यालभार्या", "noun", "स्यालभार्याः (*syālabhāryāḥ)", "स्यालभार्यायाः (*syālabhāryāyāḥ)", "स्यालभार्यायै (*syālabhāryāyai)", "", "ones wifes brothers"]) + let v = native_list_append(v, ["वोढृ", "noun", "वो॒ढारः॑", "वो॒ढुः", "वो॒ढ्रे", "", "one who bears"]) + let v = native_list_append(v, ["वोळ्हृ", "noun", "वो॒ळ्हारः॑", "वो॒ळ्हुः", "वो॒ढ्रे", "", "one who bears"]) + let v = native_list_append(v, ["परिक्रमा", "noun", "परिक्रमा", "", "", "", "circumambulation"]) + let v = native_list_append(v, ["उद्घाटन", "noun", "उद्घाटन", "", "", "", "inauguration"]) + let v = native_list_append(v, ["अपत्य", "noun", "अप॑त्यानि", "अप॑त्यस्य", "अप॑त्याय", "", "offspring child descendant"]) + let v = native_list_append(v, ["त्रिष्टुभ्", "noun", "त्रिष्टुभ्", "", "", "", "triṣṭubh a metre"]) + let v = native_list_append(v, ["भुवन", "noun", "भुव॑नानि", "भुव॑नस्य", "भुव॑नाय", "", "a being living"]) + let v = native_list_append(v, ["अजीर्ण", "noun", "अजीर्ण", "", "", "", "indigestion"]) + let v = native_list_append(v, ["म्लेच्छ", "noun", "म्ले॒च्छाः", "म्ले॒च्छस्य॑", "म्ले॒च्छाय॑", "", "mleccha foreigner barbarian"]) + let v = native_list_append(v, ["उपचार", "noun", "उपचार", "", "", "", "procedure practice method"]) + let v = native_list_append(v, ["अवयव", "noun", "अवयवाः", "अवयवस्य", "अवयवाय", "", "a limb member"]) + let v = native_list_append(v, ["भाटक", "noun", "भाटक", "", "", "", "rent fare"]) + let v = native_list_append(v, ["महादेव", "noun", "म॒हा॒दे॒वाः", "म॒हा॒दे॒वस्य॑", "म॒हा॒दे॒वाय॑", "", "the great God"]) + let v = native_list_append(v, ["शोथ", "noun", "शोथाः", "शोथस्य", "शोथाय", "", "a swelling tumour"]) + let v = native_list_append(v, ["भूमिपुत्र", "noun", "भूमिपुत्र", "", "", "", "Mars the fourth"]) + let v = native_list_append(v, ["दोह", "noun", "दोहाः॑", "दोह॑स्य", "दोहा॑य", "", "milk"]) + let v = native_list_append(v, ["आपीन", "noun", "आपीनानि", "आपीनस्य", "आपीनाय", "", "an udder"]) + let v = native_list_append(v, ["पताका", "noun", "पताकाः", "पताकायाः", "पताकायै", "", "flag banner"]) + let v = native_list_append(v, ["सुवर्णभूमि", "noun", "सुवर्णभूमि", "", "", "", "Suvarnabhumi"]) + let v = native_list_append(v, ["ગચ્છ", "noun", "ગચ્છ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["अयस्कार", "noun", "अय॑स्काराः", "अय॑स्कारस्य", "अय॑स्काराय", "", "iron smith blacksmith"]) + let v = native_list_append(v, ["आशय", "noun", "आ॒श॒याः", "आ॒श॒यस्य॑", "आ॒श॒याय॑", "", "resting-place bed"]) + let v = native_list_append(v, ["सीस", "noun", "सीस", "", "", "", "lead the metal"]) + let v = native_list_append(v, ["आसार", "noun", "आसाराः", "आसारस्य", "आसाराय", "", "surrounding an enemy"]) + let v = native_list_append(v, ["रेक्णस्", "noun", "रेक्णां॑सि", "रेक्ण॑सः", "रेक्ण॑से", "", "property left behind"]) + let v = native_list_append(v, ["भूषण", "noun", "भूषणानि", "भूषणस्य", "भूषणाय", "", "embellishment ornament decoration"]) + let v = native_list_append(v, ["प्रेत", "noun", "प्रेताः॑", "प्रेत॑स्य", "प्रेता॑य", "", "a dead person"]) + let v = native_list_append(v, ["लेखा", "noun", "लेखाः", "लेखायाः", "लेखायै", "", "streak line"]) + let v = native_list_append(v, ["अपद्रव्य", "noun", "अपद्रव्याणि", "अपद्रव्यस्य", "अपद्रव्याय", "", "a bad thing"]) + let v = native_list_append(v, ["स्रुत", "noun", "स्रु॒तानि॑", "स्रु॒तस्य॑", "स्रु॒ताय॑", "", "flow"]) + let v = native_list_append(v, ["समीर", "noun", "समीराः", "समीरस्य", "समीराय", "", "breeze wind"]) + let v = native_list_append(v, ["ऋति", "noun", "ऋ॒तयः॑", "ऋ॒तेः", "ऋ॒तये॑", "", "quarrel strife"]) + let v = native_list_append(v, ["सदस्", "noun", "सदां॑सि", "सद॑सः", "सद॑से", "", "seat residence abode"]) + let v = native_list_append(v, ["श्रोत्र", "noun", "श्रोत्रा॑णि", "श्रोत्र॑स्य", "श्रोत्रा॑य", "", "the organ of"]) + let v = native_list_append(v, ["तुमुल", "noun", "तु॒मुला॑नि", "तु॒मुल॑स्य", "तु॒मुला॑य", "", "tumult clatter confusion"]) + let v = native_list_append(v, ["अत्याचार", "noun", "अत्याचाराः", "अत्याचारस्य", "अत्याचाराय", "", "performance of works"]) + let v = native_list_append(v, ["मथुरा", "noun", "मथुराः", "मथुरायाः", "मथुरायै", "", "Mathura a city"]) + let v = native_list_append(v, ["प्रत्यय", "noun", "प्रत्ययाः", "प्रत्ययस्य", "प्रत्ययाय", "", "belief firm conviction"]) + let v = native_list_append(v, ["नारि", "noun", "नार॑यः", "नारेः॑", "नार॑ये", "", "alternative form of"]) + let v = native_list_append(v, ["গু", "noun", "গু", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["शीघ्रता", "noun", "शीघ्रताः", "शीघ्रतायाः", "शीघ्रतायै", "", "quickness speed rapidity"]) + let v = native_list_append(v, ["तलक", "noun", "तलकाः", "तलकस्य", "तलकाय", "", "a pot of"]) + let v = native_list_append(v, ["दर्वी", "noun", "दर्व्यः॑", "दर्व्याः॑", "दर्व्यै॑", "", "a spoon generally"]) + let v = native_list_append(v, ["មតិ", "noun", "មតិ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["स्पृध्", "noun", "स्पृधः॑", "स्पृ॒धः", "स्पृ॒धे", "", "contest competition"]) + let v = native_list_append(v, ["हर्म्य", "noun", "ह॒र्म्याणि॑", "ह॒र्म्यस्य॑", "ह॒र्म्याय॑", "", "a large house"]) + let v = native_list_append(v, ["मूर्धन्य", "noun", "मूर्धन्याः", "मूर्धन्यस्य", "मूर्धन्याय", "", "retroflex place of"]) + let v = native_list_append(v, ["पौरुष", "noun", "पौ॒रु॒षाणि॑", "पौ॒रु॒षस्य॑", "पौ॒रु॒षाय॑", "", "manhood virility"]) + let v = native_list_append(v, ["पेचक", "noun", "पेच॑काः", "पेच॑कस्य", "पेच॑काय", "", "owl"]) + let v = native_list_append(v, ["प्रहेलिका", "noun", "प्रहेलिकाः", "प्रहेलिकायाः", "प्रहेलिकायै", "", "riddle puzzle enigma"]) + let v = native_list_append(v, ["समावेश", "noun", "समावेशाः", "समावेशस्य", "समावेशाय", "", "entering penetration"]) + let v = native_list_append(v, ["प्रौढ", "noun", "प्रौढाः", "प्रौढस्य", "प्रौढाय", "", "an adult"]) + let v = native_list_append(v, ["अञ्जना", "noun", "अञ्जनाः", "अञ्जनायाः", "अञ्जनायै", "", "a kind of"]) + let v = native_list_append(v, ["उत्पल", "noun", "उत्पलानि", "उत्पलस्य", "उत्पलाय", "", "the blossom of"]) + let v = native_list_append(v, ["लूता", "noun", "लूताः", "लूतायाः", "लूतायै", "", "a spider"]) + let v = native_list_append(v, ["पुच्छ", "noun", "पुच्छाः॑", "पुच्छ॑स्य", "पुच्छा॑य", "", "tail"]) + let v = native_list_append(v, ["गोपी", "noun", "गोप्यः", "गोप्याः", "गोप्यै", "", "milkmaid cowherdess milkman"]) + let v = native_list_append(v, ["क्षुध्", "noun", "क्षुधः॑", "क्षु॒धः", "क्षु॒धे", "", "hunger"]) + let v = native_list_append(v, ["द्रुह्", "noun", "द्रुहः॑", "द्रु॒हः", "द्रु॒हे", "", "injury harm offence"]) + let v = native_list_append(v, ["पृथिवी", "noun", "पृ॒थि॒व्यः॑", "पृ॒थि॒व्याः", "पृ॒थि॒व्यै", "", "the earth or"]) + let v = native_list_append(v, ["संन्यासी", "noun", "संन्यासी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["अघ", "noun", "अ॒घानि॑", "अ॒घस्य॑", "अ॒घाय॑", "", "evil mishap sin"]) + let v = native_list_append(v, ["विभूति", "noun", "विभूतयः", "विभूतेः", "विभूतये", "", "greatness glory splendour"]) + let v = native_list_append(v, ["ध्वान्त", "noun", "ध्वा॒न्तानि॑", "ध्वा॒न्तस्य॑", "ध्वा॒न्ताय॑", "", "night darkness"]) + let v = native_list_append(v, ["धीरा", "noun", "धीरा", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["खरोष्ठी", "noun", "खरोष्ठ्यः", "खरोष्ठ्याः", "खरोष्ठ्यै", "", "Kharoshthi script"]) + let v = native_list_append(v, ["खरोष्टी", "noun", "खरोष्टी", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["तृ", "noun", "तारः॑", "तुः", "त्रे", "", "a star"]) + let v = native_list_append(v, ["ទូត", "noun", "ទូត", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["स्वर्णकार", "noun", "स्वर्णकार", "", "", "", ""]) + let v = native_list_append(v, ["उशिज्", "noun", "उ॒शिजः॑", "उ॒शिजः॑", "उ॒शिजे॑", "", "a kind of"]) + let v = native_list_append(v, ["पूय", "noun", "पूयाः॑", "पूय॑स्य", "पूया॑य", "", "purulent matter pus"]) + let v = native_list_append(v, ["तृप्ति", "noun", "तृप्त॑यः", "तृप्तेः॑", "तृप्त॑ये", "", "satisfaction contentment delight"]) + let v = native_list_append(v, ["त्यजस्", "noun", "त्यजां॑सि", "त्यज॑सः", "त्यज॑से", "", "abandonment"]) + let v = native_list_append(v, ["कृष्णायस्", "noun", "कृष्णायांसि", "कृष्णायसः", "कृष्णायसे", "", "iron black metal"]) + let v = native_list_append(v, ["शिखर", "noun", "शिखराणि", "शिखरस्य", "शिखराय", "", "peak top summit"]) + let v = native_list_append(v, ["अवसर्पिणी", "noun", "अवसर्पिण्यः", "अवसर्पिण्याः", "अवसर्पिण्यै", "", "Avasarpiṇī the descending"]) + let v = native_list_append(v, ["पार्थिवात्", "noun", "पार्थिवात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["पार्थिवेन", "noun", "पार्थिवेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["पार्थिवः", "noun", "पार्थिवः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["पार्थिवस्य", "noun", "पार्थिवस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["पार्थिवौ", "noun", "पार्थिवौ", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["पार्थिवम्", "noun", "पार्थिवम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["पार्थिवेषु", "noun", "पार्थिवेषु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["पार्थिवेभ्यः", "noun", "पार्थिवेभ्यः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["महापद्म", "noun", "महापद्माः", "महापद्मस्य", "महापद्माय", "", "white lotus flower"]) + let v = native_list_append(v, ["नेत्रच्छद", "noun", "नेत्रच्छदाः", "नेत्रच्छदस्य", "नेत्रच्छदाय", "", "the eyelid"]) + let v = native_list_append(v, ["नयनपुट", "noun", "नयनपुटाः", "नयनपुटस्य", "नयनपुटाय", "", "eyelid"]) + let v = native_list_append(v, ["अक्षिपुट", "noun", "अक्षिपुट", "", "", "", "eyelid"]) + let v = native_list_append(v, ["वचस्", "noun", "वचां॑सि", "वच॑सः", "वच॑से", "", "word speech"]) + let v = native_list_append(v, ["महावीर", "noun", "म॒हा॒वी॒राः", "म॒हा॒वी॒रस्य॑", "म॒हा॒वी॒राय॑", "", "Mahavira 24th Tirthankara"]) + let v = native_list_append(v, ["महावीरः", "noun", "महावीरः", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["महावीरौ", "noun", "महावीरौ", "", "", "", "nominative masculine dual"]) + let v = native_list_append(v, ["महावीरम्", "noun", "महावीरम्", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["महावीराः", "noun", "महावीराः", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["स्मेरता", "noun", "स्मेरताः", "स्मेरतायाः", "स्मेरतायै", "", "smile"]) + let v = native_list_append(v, ["उत्तराधर", "noun", "उत्तराधराणि", "उत्तराधरस्य", "उत्तराधराय", "", "lips"]) + let v = native_list_append(v, ["उत्तराधरविवर", "noun", "उत्तराधरविवराणि", "उत्तराधरविवरस्य", "उत्तराधरविवराय", "", "mouth"]) + let v = native_list_append(v, ["च्युप", "noun", "च्युपाः", "च्युपस्य", "च्युपाय", "", "mouth"]) + let v = native_list_append(v, ["तुण्ड", "noun", "तुण्डानि", "तुण्डस्य", "तुण्डाय", "", "mouth face"]) + let v = native_list_append(v, ["नेत्री", "noun", "ने॒त्र्यः॑", "ने॒त्र्याः", "ने॒त्र्यै", "", "female leader"]) + let v = native_list_append(v, ["नेतृ", "noun", "ने॒तारः॑", "ने॒तुः", "ने॒त्रे", "", "leader conductor guide"]) + let v = native_list_append(v, ["पादप", "noun", "पादपाः", "पादपस्य", "पादपाय", "", "plant tree"]) + let v = native_list_append(v, ["कपोल", "noun", "क॒पो॒लाः", "क॒पो॒लस्य॑", "क॒पो॒लाय॑", "", "cheek"]) + let v = native_list_append(v, ["वेष", "noun", "वेषाः॑", "वेष॑स्य", "वेषा॑य", "", "work activity management"]) + let v = native_list_append(v, ["अप्सरस्", "noun", "अ॒प्स॒रसः॑", "अ॒प्स॒रसः॑", "अ॒प्स॒रसे॑", "", "an apsara a"]) + let v = native_list_append(v, ["पीयूष", "noun", "पी॒यूषाः॑", "पी॒यूष॑स्य", "पी॒यूषा॑य", "", "coffee"]) + let v = native_list_append(v, ["पीयूषभुज्", "noun", "पीयूषभुज्", "", "", "", "nectar-quaffer one who"]) + let v = native_list_append(v, ["छिद्", "noun", "छिद्", "", "", "", "the divisor denominator"]) + let v = native_list_append(v, ["सारक", "noun", "सारक", "", "", "", "a mouse"]) + let v = native_list_append(v, ["पयोहिम", "noun", "पयोहिमानि", "पयोहिमस्य", "पयोहिमाय", "", "ice cream"]) + let v = native_list_append(v, ["दुग्धाग्र", "noun", "दुग्धाग्राणि", "दुग्धाग्रस्य", "दुग्धाग्राय", "", "cream"]) + let v = native_list_append(v, ["भावित", "noun", "भावित", "", "", "", "A result or"]) + let v = native_list_append(v, ["भवितव्य", "noun", "भवितव्यानि", "भवितव्यस्य", "भवितव्याय", "", "an inevitable necessity"]) + let v = native_list_append(v, ["पीयूषधाराकिर्", "noun", "पीयूषधाराकिर्", "", "", "", "the Moon whose"]) + let v = native_list_append(v, ["लज्जका", "noun", "लज्जका", "", "", "", "Levant cotton Gossypium"]) + let v = native_list_append(v, ["हास्यास्पद", "noun", "हास्यास्पदानि", "हास्यास्पदस्य", "हास्यास्पदाय", "", "a laughable topic"]) + let v = native_list_append(v, ["स्मेर", "noun", "स्मेराः॑", "स्मेर॑स्य", "स्मेरा॑य", "", "smile"]) + let v = native_list_append(v, ["भूकदम्बक", "noun", "भूकदम्बक", "", "", "", "ajwain bishops weed"]) + let v = native_list_append(v, ["भूकर्बुदारक", "noun", "भूकर्बुदारक", "", "", "", "Assyrian plum plant"]) + let v = native_list_append(v, ["भूकपित्थ", "noun", "भूकपित्थ", "", "", "", "wood apple Limonia"]) + let v = native_list_append(v, ["भोटान्त", "noun", "भोटान्त", "", "", "", "The country of"]) + let v = native_list_append(v, ["त्रिवेदी", "noun", "त्रिवेदी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["वशत्व", "noun", "वशत्व", "", "", "", "dependence"]) + let v = native_list_append(v, ["वशात्व", "noun", "वशात्व", "", "", "", "the state of"]) + let v = native_list_append(v, ["द्यूत", "noun", "द्यू॒तानि॑", "द्यू॒तस्य॑", "द्यू॒ताय॑", "", "gambling game of"]) + let v = native_list_append(v, ["लक्ष्मणपुर", "noun", "लक्ष्मणपुर", "", "", "", "Lucknow an Indian"]) + let v = native_list_append(v, ["वासर", "noun", "वासराः", "वासरस्य", "वासराय", "", "day"]) + let v = native_list_append(v, ["बस्तिकोप", "noun", "बस्तिकोप", "", "", "", "cystitis ― inflammation"]) + let v = native_list_append(v, ["सन्धान", "noun", "सन्धान", "", "", "", "small eggplant"]) + let v = native_list_append(v, ["गोग्रह", "noun", "गोग्रह", "", "", "", "booty spoils"]) + let v = native_list_append(v, ["नष्टाप्तिसूत्र", "noun", "नष्टाप्तिसूत्र", "", "", "", "booty plunder"]) + let v = native_list_append(v, ["तरुतृ", "noun", "त॒रु॒तारः॑", "त॒रु॒तुः", "त॒रु॒त्रे", "", "conqueror"]) + let v = native_list_append(v, ["शाक्यमुनि", "noun", "शाक्यमुनयः", "शाक्यमुनेः", "शाक्यमुनये", "", "the Sakyamuni the"]) + let v = native_list_append(v, ["शकटव्यूह", "noun", "शकटव्यूह", "", "", "", "a type of"]) + let v = native_list_append(v, ["कादम्ब", "noun", "कादम्बाः", "कादम्बस्य", "कादम्बाय", "", "a kind of"]) + let v = native_list_append(v, ["शकटाल", "noun", "शकटाल", "", "", "", "an intelligent minister"]) + let v = native_list_append(v, ["आकलन", "noun", "आकलनानि", "आकलनस्य", "आकलनाय", "", "fastening"]) + let v = native_list_append(v, ["शर्मण्यदेश", "noun", "शर्मण्यदेशाः", "शर्मण्यदेशस्य", "शर्मण्यदेशाय", "", "Germany a country"]) + let v = native_list_append(v, ["तरुणस्य", "noun", "तरुणस्य", "", "", "", "genitive masculine singular"]) + let v = native_list_append(v, ["वारा", "noun", "वाराः", "वारायाः", "वारायै", "", "a harlot courtesan"]) + let v = native_list_append(v, ["जालवृत्ति", "noun", "जालवृत्ति", "", "", "", "a blog"]) + let v = native_list_append(v, ["वेलाभूमि", "noun", "वेलाभूमि", "", "", "", "coast land immediately"]) + let v = native_list_append(v, ["स्पश्", "noun", "स्पशः॑", "स्प॒शः", "स्प॒शे", "", "a spy one"]) + let v = native_list_append(v, ["क्षु", "noun", "क्षूणि॑", "क्षुणः॑", "क्षुणे॑", "", "food"]) + let v = native_list_append(v, ["मध्यस्थ", "noun", "मध्यस्थानि", "मध्यस्थस्य", "मध्यस्थाय", "", "interface"]) + let v = native_list_append(v, ["दूरवाणी", "noun", "दूरवाण्यः", "दूरवाण्याः", "दूरवाण्यै", "", "telephone cellphone"]) + let v = native_list_append(v, ["सूद", "noun", "सूदाः॑", "सूद॑स्य", "सूदा॑य", "", "well"]) + let v = native_list_append(v, ["दूरभाषसङ्ख्या", "noun", "दूरभाषसङ्ख्याः", "दूरभाषसङ्ख्यायाः", "दूरभाषसङ्ख्यायै", "", "phone number"]) + let v = native_list_append(v, ["जङ्गम", "noun", "जङ्गम", "", "", "", "a movable thing"]) + let v = native_list_append(v, ["कृते", "noun", "कृते", "", "", "", "for work for"]) + let v = native_list_append(v, ["वाम", "noun", "वामाः", "वामस्य", "वामाय", "", "the left side"]) + let v = native_list_append(v, ["दीक्षा", "noun", "दीक्षाः", "दीक्षायाः", "दीक्षायै", "", "consecration initiation"]) + let v = native_list_append(v, ["मातापिता", "noun", "मातापिता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["गुरवस्", "noun", "गुरवस्", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["समकार", "noun", "समकाराः", "समकारस्य", "समकाराय", "", "fax"]) + let v = native_list_append(v, ["अपगम", "noun", "अपगमाः", "अपगमस्य", "अपगमाय", "", "the act of"]) + let v = native_list_append(v, ["व्यन्तर", "noun", "व्यन्तराः", "व्यन्तरस्य", "व्यन्तराय", "", "a kind of"]) + let v = native_list_append(v, ["कृष्णव्याल", "noun", "कृष्णव्यालाः", "कृष्णव्यालस्य", "कृष्णव्यालाय", "", "scarlet leadwort Plumbago"]) + let v = native_list_append(v, ["विपरिवर्तन", "noun", "विपरिवर्तनानि", "विपरिवर्तनस्य", "विपरिवर्तनाय", "", "wallowing rolling about"]) + let v = native_list_append(v, ["उत्कटदुःख", "noun", "उत्कटदुःखानि", "उत्कटदुःखस्य", "उत्कटदुःखाय", "", "suffering extreme sorrow"]) + let v = native_list_append(v, ["जनानाम्", "noun", "जनानाम्", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["मेढ्र", "noun", "मेढ्रा॑णि", "मेढ्र॑स्य", "मेढ्रा॑य", "", "organ of urination"]) + let v = native_list_append(v, ["રાજમાર્ગ", "noun", "રાજમાર્ગાઃ", "રાજમાર્ગસ્ય", "રાજમાર્ગાય", "", "Gujarati script form"]) + let v = native_list_append(v, ["युवती", "noun", "युवत्यः", "युवत्याः", "युवत्यै", "", "alternative form of"]) + let v = native_list_append(v, ["मिह्", "noun", "मिहः॑", "मि॒हः", "मि॒हे", "", "mist fog haze"]) + let v = native_list_append(v, ["शरभ", "noun", "श॒र॒भाः", "श॒र॒भस्य॑", "श॒र॒भाय॑", "", "a sharabha mythical"]) + let v = native_list_append(v, ["पुरोळाश्", "noun", "पुरोळाश्", "", "", "", "a cake of"]) + let v = native_list_append(v, ["रै", "noun", "रायः॑", "रा॒यः", "रा॒ये", "", "property possession wealth"]) + let v = native_list_append(v, ["वेदना", "noun", "वेदनाः", "वेदनायाः", "वेदनायै", "", "pain agony"]) + let v = native_list_append(v, ["दंष्ट्र", "noun", "दंष्ट्राः॑", "दंष्ट्र॑स्य", "दंष्ट्रा॑य", "", "large tooth tusk"]) + let v = native_list_append(v, ["रीति", "noun", "री॒तयः॑", "री॒तेः", "री॒तये॑", "", "motion course RV"]) + let v = native_list_append(v, ["चिकित्सालय", "noun", "चिकित्सालयाः", "चिकित्सालयस्य", "चिकित्सालयाय", "", "hospital a place"]) + let v = native_list_append(v, ["युध्य", "noun", "युध्य", "", "", "", "war battle"]) + let v = native_list_append(v, ["राजभट", "noun", "राजभट", "", "", "", "kings soldier soldier"]) + let v = native_list_append(v, ["भक्ष", "noun", "भ॒क्षाः", "भ॒क्षस्य॑", "भ॒क्षाय॑", "", "eating drinking"]) + let v = native_list_append(v, ["रोमन्", "noun", "रोमा॑णि", "रोम्णः॑", "रोम्णे॑", "", "body hair wool"]) + let v = native_list_append(v, ["अम्ब", "noun", "अम्ब", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["द्वेषस्", "noun", "द्वेषां॑सि", "द्वेष॑सः", "द्वेष॑से", "", "hatred dislike hostility"]) + let v = native_list_append(v, ["युध्", "noun", "युधः॑", "यु॒धः", "यु॒धे", "", "war battle fight"]) + let v = native_list_append(v, ["एलीका", "noun", "एलीकाः", "एलीकायाः", "एलीकायै", "", "small cardamom"]) + let v = native_list_append(v, ["नक्त्", "noun", "नक्तः॑", "न॒क्तः", "न॒क्ते", "", "night"]) + let v = native_list_append(v, ["पीडा", "noun", "पीडाः", "पीडायाः", "पीडायै", "", "pain suffering"]) + let v = native_list_append(v, ["शिवाय", "noun", "शिवाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["अष्ट्रा", "noun", "अष्ट्राः॑", "अष्ट्रा॑याः", "अष्ट्रा॑यै", "", "goad or whip"]) + let v = native_list_append(v, ["चमत्कार", "noun", "चमत्काराः", "चमत्कारस्य", "चमत्काराय", "", "astonishment surprise"]) + let v = native_list_append(v, ["दक्ष", "noun", "दक्षाः॑", "दक्ष॑स्य", "दक्षा॑य", "", "ability fitness"]) + let v = native_list_append(v, ["शरदा", "noun", "श॒रदाः॑", "श॒रदा॑याः", "श॒रदा॑यै", "", "alternative form of"]) + let v = native_list_append(v, ["हठ", "noun", "हठाः", "हठस्य", "हठाय", "", "violence force obstinacy"]) + let v = native_list_append(v, ["द्वितीया", "noun", "द्वि॒तीयाः॑", "द्वि॒तीया॑याः", "द्वि॒तीया॑यै", "", "female companion or"]) + let v = native_list_append(v, ["गोमूत्र", "noun", "गोमूत्राणि", "गोमूत्रस्य", "गोमूत्राय", "", "cow urine"]) + let v = native_list_append(v, ["सच्छास्त्र", "noun", "सच्छास्त्र", "", "", "", "good or genuine"]) + let v = native_list_append(v, ["हीर", "noun", "हीर", "", "", "", ""]) + let v = native_list_append(v, ["યાચક", "noun", "યાચક", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["नावाज", "noun", "ना॒वा॒जाः", "ना॒वा॒जस्य॑", "ना॒वा॒जाय॑", "", "sailor captain navigator"]) + let v = native_list_append(v, ["अरमति", "noun", "अ॒रम॑तयः", "अ॒रम॑तेः", "अ॒रम॑तये", "", "obedience devotion commitment"]) + let v = native_list_append(v, ["अलंकार", "noun", "अलंकाराः", "अलंकारस्य", "अलंकाराय", "", "the act of"]) + let v = native_list_append(v, ["भगवत्", "noun", "भगवन्तः", "भगवतः", "भगवते", "", "the divine or"]) + let v = native_list_append(v, ["સમય", "noun", "સમય", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["धाराखान", "noun", "धाराखान", "", "", "", "shower"]) + let v = native_list_append(v, ["आर्द्रक", "noun", "आर्द्रक", "", "", "", "wet moist"]) + let v = native_list_append(v, ["पराकाष्ठा", "noun", "पराकाष्ठा", "", "", "", "zenith climax"]) + let v = native_list_append(v, ["पालि", "noun", "पालयः", "पालेः", "पालये", "", "the tip or"]) + let v = native_list_append(v, ["बालिका", "noun", "बालिकाः", "बालिकायाः", "बालिकायै", "", "girl"]) + let v = native_list_append(v, ["तनस्", "noun", "तनां॑सि", "तन॑सः", "तन॑से", "", "offspring"]) + let v = native_list_append(v, ["उरणे", "noun", "उरणे", "", "", "", "locative masculine singular"]) + let v = native_list_append(v, ["कूच", "noun", "कूचाः", "कूचस्य", "कूचाय", "", "the female breast"]) + let v = native_list_append(v, ["व्यथा", "noun", "व्यथाः", "व्यथायाः", "व्यथायै", "", "agitation perturbation alarm"]) + let v = native_list_append(v, ["कनीनिका", "noun", "क॒नीनि॑काः", "क॒नीनि॑कायाः", "क॒नीनि॑कायै", "", "girl maiden"]) + let v = native_list_append(v, ["क्वथित", "noun", "क्वथित", "", "", "", "boiled decocted stewed"]) + let v = native_list_append(v, ["सहस्रिमान", "noun", "सहस्रिमान", "", "", "", "millimetre"]) + let v = native_list_append(v, ["आधिक", "noun", "आधिकानि", "आधिकस्य", "आधिकाय", "", "plus sign addition"]) + let v = native_list_append(v, ["वातायन", "noun", "वातायनाः", "वातायनस्य", "वातायनाय", "", "moving or fleet"]) + let v = native_list_append(v, ["व्युत्पादक", "noun", "व्युत्पादक", "", "", "", "developer"]) + let v = native_list_append(v, ["वार", "noun", "वाराः॑", "वार॑स्य", "वारा॑य", "", "alternative form of"]) + let v = native_list_append(v, ["खग", "noun", "खगाः", "खगस्य", "खगाय", "", "bird"]) + let v = native_list_append(v, ["भागा", "noun", "भागा", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["दत्तांश", "noun", "दत्तांशाः", "दत्तांशस्य", "दत्तांशाय", "", "data information"]) + let v = native_list_append(v, ["दत्तनिधि", "noun", "दत्तनिधि", "", "", "", "database"]) + let v = native_list_append(v, ["लुब्धक", "noun", "लुब्धक", "", "", "", "the star Sirius"]) + let v = native_list_append(v, ["श्वित्र", "noun", "श्वि॒त्राः", "श्वि॒त्रस्य॑", "श्वि॒त्राय॑", "", "leprosy"]) + let v = native_list_append(v, ["किकि", "noun", "किकयः", "किकेः", "किकये", "", "blue jay"]) + let v = native_list_append(v, ["कीकि", "noun", "कीकयः", "कीकेः", "कीकये", "", "blue jay"]) + let v = native_list_append(v, ["भावज्ञा", "noun", "भावज्ञाः", "भावज्ञायाः", "भावज्ञायै", "", "foxtail millet Setaria"]) + let v = native_list_append(v, ["प्रतिरोध", "noun", "प्रतिरोधाः", "प्रतिरोधस्य", "प्रतिरोधाय", "", "opposition"]) + let v = native_list_append(v, ["गच्छ", "noun", "गच्छाः", "गच्छस्य", "गच्छाय", "", "family race"]) + let v = native_list_append(v, ["भयं", "noun", "भयं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सङ्ख्या", "noun", "सङ्ख्या", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["धर्मयुद्ध", "noun", "धर्मयुद्धानि", "धर्मयुद्धस्य", "धर्मयुद्धाय", "", "religious war"]) + let v = native_list_append(v, ["मुच्", "noun", "मुचः", "मुचः", "मुचे", "", "deliverance"]) + let v = native_list_append(v, ["होरा", "noun", "होराः", "होरायाः", "होरायै", "", "the rising of"]) + let v = native_list_append(v, ["विस्तर", "noun", "विस्तराः", "विस्तरस्य", "विस्तराय", "", "bed"]) + let v = native_list_append(v, ["उपाध्याय", "noun", "उपाध्यायाः", "उपाध्यायस्य", "उपाध्यायाय", "", "teacher preceptor advisor"]) + let v = native_list_append(v, ["स्यूत", "noun", "स्यू॒ताः", "स्यू॒तस्य॑", "स्यू॒ताय॑", "", "bag"]) + let v = native_list_append(v, ["द्वय", "noun", "द्व॒यानि॑", "द्व॒यस्य॑", "द्व॒याय॑", "", "pair couple set"]) + let v = native_list_append(v, ["इरस्", "noun", "इरांसि", "इरसः", "इरसे", "", "ill-will anger hostility"]) + let v = native_list_append(v, ["विष्", "noun", "विषः", "विषः", "विषे", "", "feces ordure"]) + let v = native_list_append(v, ["मुद्", "noun", "मुदः", "मुदः", "मुदे", "", "joy delight gladness"]) + let v = native_list_append(v, ["มาส", "noun", "มาส", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["महस्", "noun", "महां॑सि", "मह॑सः", "मह॑से", "", "greatness might power"]) + let v = native_list_append(v, ["बलीवर्द", "noun", "ब॒ली॒वर्दाः॑", "ब॒ली॒वर्द॑स्य", "ब॒ली॒वर्दा॑य", "", "bull ox"]) + let v = native_list_append(v, ["असूया", "noun", "असूया", "", "", "", "imputing a fault"]) + let v = native_list_append(v, ["मनोगतम्", "noun", "मनोगतम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["मनोगत", "noun", "मनोगतानि", "मनोगतस्य", "मनोगताय", "", "thought notion opinion"]) + let v = native_list_append(v, ["मनोगते", "noun", "मनोगते", "", "", "", "inflection of मनोगत"]) + let v = native_list_append(v, ["मनोगतानि", "noun", "मनोगतानि", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["अहिभृत्", "noun", "अहिभृत्", "", "", "", "Shiva"]) + let v = native_list_append(v, ["उदगद्रि", "noun", "उदगद्रि", "", "", "", "an epithet for"]) + let v = native_list_append(v, ["मनोगतेन", "noun", "मनोगतेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["मनोगतैः", "noun", "मनोगतैः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["मनोगतस्य", "noun", "मनोगतस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["रामः", "noun", "रामः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["रामौ", "noun", "रामौ", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["रामाः", "noun", "रामाः", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["रामम्", "noun", "रामम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["रामान्", "noun", "रामान्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["रामेण", "noun", "रामेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["रामैः", "noun", "रामैः", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["रामाय", "noun", "रामाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["रामेभ्यः", "noun", "रामेभ्यः", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["रामात्", "noun", "रामात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["रामस्य", "noun", "रामस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["रामयोः", "noun", "रामयोः", "", "", "", "genitive dual of"]) + let v = native_list_append(v, ["रामाणाम्", "noun", "रामाणाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["रामे", "noun", "रामे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["रामेषु", "noun", "रामेषु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["आत्मानौ", "noun", "आत्मानौ", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["आत्मानः", "noun", "आत्मानः", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["आत्मानम्", "noun", "आत्मानम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["आत्मनः", "noun", "आत्मनः", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["आत्मना", "noun", "आत्मना", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["आत्मभ्याम्", "noun", "आत्मभ्याम्", "", "", "", "instrumental/dative/ablative dual of"]) + let v = native_list_append(v, ["आत्मभिः", "noun", "आत्मभिः", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["आत्मने", "noun", "आत्मने", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["आत्मभ्यः", "noun", "आत्मभ्यः", "", "", "", "dative/ablative plural of"]) + let v = native_list_append(v, ["आत्मनोः", "noun", "आत्मनोः", "", "", "", "genitive/locative dual of"]) + let v = native_list_append(v, ["आत्मनाम्", "noun", "आत्मनाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["आत्मनि", "noun", "आत्मनि", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["आत्मसु", "noun", "आत्मसु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["ओकार", "noun", "ओकाराः", "ओकारस्य", "ओकाराय", "", "the letter for"]) + let v = native_list_append(v, ["वन्", "noun", "वनाम्", "", "", "", "tree wood wooden"]) + let v = native_list_append(v, ["चित्", "noun", "चितः॑", "चि॒तः", "चि॒ते", "", "thought intellect spirit"]) + let v = native_list_append(v, ["तिथिः", "noun", "तिथिः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["तिथी", "noun", "तिथी", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["तिथयः", "noun", "तिथयः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तिथिम्", "noun", "तिथिम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["तिथीः", "noun", "तिथीः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तिथ्या", "noun", "तिथ्या", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["तिथिभिः", "noun", "तिथिभिः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तिथये", "noun", "तिथये", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["तिथिभ्यः", "noun", "तिथिभ्यः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तिथेः", "noun", "तिथेः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तिथ्योः", "noun", "तिथ्योः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तिथीनाम्", "noun", "तिथीनाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["तिथौ", "noun", "तिथौ", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["तिथिषु", "noun", "तिथिषु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["दुग्धं", "noun", "दुग्धं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["धेनोः", "noun", "धेनोः", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["कृष्णस्", "noun", "कृष्णस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["कपिला", "noun", "कपिलाः", "कपिलायाः", "कपिलायै", "", "a brown cow"]) + let v = native_list_append(v, ["सुन्दरी", "noun", "सुन्दरी", "", "", "", ""]) + let v = native_list_append(v, ["कण्ठेन", "noun", "कण्ठेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["देवेन", "noun", "देवेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["मया", "noun", "मया", "", "", "", "medical treatment"]) + let v = native_list_append(v, ["ओतु", "noun", "ओत॑वः", "ओतोः॑", "ओत॑वे", "", "the yarn of"]) + let v = native_list_append(v, ["राट्", "noun", "राट्", "", "", "", "inflection of राज्"]) + let v = native_list_append(v, ["निद्", "noun", "निदः॑", "नि॒दः", "नि॒दे", "", "contempt blame reproach"]) + let v = native_list_append(v, ["अशिर", "noun", "अशिराः", "अशिरस्य", "अशिराय", "", "consumer"]) + let v = native_list_append(v, ["असिर", "noun", "असिराः", "असिरस्य", "असिराय", "", "ray beam"]) + let v = native_list_append(v, ["नखराग", "noun", "नखराग", "", "", "", "nail polish"]) + let v = native_list_append(v, ["अलङ्करण", "noun", "अलङ्करणानि", "अलङ्करणस्य", "अलङ्करणाय", "", "ornament decoration"]) + let v = native_list_append(v, ["सर्ग", "noun", "सर्गाः॑", "सर्ग॑स्य", "सर्गा॑य", "", "discharging voiding letting"]) + let v = native_list_append(v, ["उत्पीठिकायाः", "noun", "उत्पीठिकायाः", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["हिम्", "noun", "हिम्", "", "", "", "cold frost snow"]) + let v = native_list_append(v, ["आपणम्", "noun", "आपणम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["मनसा", "noun", "मनसा", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["क्षेत्रनाम", "noun", "क्षेत्रनामानि", "क्षेत्रनामस्य", "क्षेत्रनामाय", "", "field name"]) + let v = native_list_append(v, ["भवन्ति", "noun", "भवन्तयः", "भवन्तेः", "भवन्तये", "", "time being present"]) + let v = native_list_append(v, ["බුද‍්ධ", "noun", "බුද්ධාඃ", "බුද්ධස්ය", "බුද්ධාය", "", "Sinhalese script form"]) + let v = native_list_append(v, ["रुक्म", "noun", "रु॒क्माः", "रु॒क्मस्य॑", "रु॒क्माय॑", "", "what is bright"]) + let v = native_list_append(v, ["सेने", "noun", "सेने", "", "", "", "inflection of सेना॑"]) + let v = native_list_append(v, ["सस्य", "noun", "स॒स्यानि॑", "स॒स्यस्य॑", "स॒स्याय॑", "", "corn grain fruit"]) + let v = native_list_append(v, ["सस", "noun", "स॒साः", "स॒सस्य॑", "स॒साय॑", "", "corn herb grass"]) + let v = native_list_append(v, ["क्षोदस्", "noun", "क्षोदां॑सि", "क्षोद॑सः", "क्षोद॑से", "", "swell of the"]) + let v = native_list_append(v, ["उष्", "noun", "उष्", "", "", "", "archaic weak stem"]) + let v = native_list_append(v, ["यूस्", "noun", "यूस्", "", "", "", "soup broth"]) + let v = native_list_append(v, ["पूर्", "noun", "पूर्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["गिर्", "noun", "गिरः॑", "गि॒रः", "गि॒रे", "", "praise hymn song"]) + let v = native_list_append(v, ["गीर्", "noun", "गीर्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["क्षास्", "noun", "क्षास्", "", "", "", "nominative/vocative singular of"]) + let v = native_list_append(v, ["गौस्", "noun", "गौस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["द्यौस्", "noun", "द्यौस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पृच्छा", "noun", "पृच्छाः", "पृच्छायाः", "पृच्छायै", "", "question inquiry"]) + let v = native_list_append(v, ["मीमांसा", "noun", "मी॒मां॒साः", "मी॒मां॒सायाः॑", "मी॒मां॒सायै॑", "", "profound thought reflection"]) + let v = native_list_append(v, ["योक्त्र", "noun", "योक्त्रा॑णि", "योक्त्र॑स्य", "योक्त्रा॑य", "", "any instrument for"]) + let v = native_list_append(v, ["विट्", "noun", "विट्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अरुचि", "noun", "अरुचि", "", "", "", "disgust aversion"]) + let v = native_list_append(v, ["पिच्छोरा", "noun", "पिच्छोराः", "पिच्छोरायाः", "पिच्छोरायै", "", "flute"]) + let v = native_list_append(v, ["उषास्", "noun", "उषास्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["चूडाकरण", "noun", "चूडाकरण", "", "", "", "‘forming the crest’"]) + let v = native_list_append(v, ["चूडा", "noun", "चूडा", "", "", "", "head hair"]) + let v = native_list_append(v, ["चूडामणि", "noun", "चूडामणि", "", "", "", "a jewel worn"]) + let v = native_list_append(v, ["ज्येष्ठ", "noun", "ज्येष्ठाः॑", "ज्येष्ठ॑स्य", "ज्येष्ठा॑य", "", "the eldest brother"]) + let v = native_list_append(v, ["असृक्", "noun", "असृक्", "", "", "", "inflection of असृ॑ज्"]) + let v = native_list_append(v, ["शंस", "noun", "शंसाः॑", "शंस॑स्य", "शंसा॑य", "", "recitation invocation praise"]) + let v = native_list_append(v, ["सू", "noun", "सुवः॑", "सु॒वः", "सु॒वे", "", "one who begets"]) + let v = native_list_append(v, ["नॄन्", "noun", "नॄन्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["खडु", "noun", "खडु", "", "", "", "a bier or"]) + let v = native_list_append(v, ["फडु", "noun", "फडु", "", "", "", "a joint or"]) + let v = native_list_append(v, ["थुष", "noun", "थुष", "", "", "", "chaff"]) + let v = native_list_append(v, ["રાક્ષસ", "noun", "રાક્ષસ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["पुंस्", "noun", "पुमांसः", "पुंसः", "पुंसे", "", "a man male"]) + let v = native_list_append(v, ["काट", "noun", "काटाः", "काटस्य", "काटाय", "", "deepness hole well"]) + let v = native_list_append(v, ["प्रयोजन", "noun", "प्रयोजनानि", "प्रयोजनस्य", "प्रयोजनाय", "", "use employment application"]) + let v = native_list_append(v, ["विनिमय", "noun", "विनिमयाः", "विनिमयस्य", "विनिमयाय", "", "exchange barter"]) + let v = native_list_append(v, ["न्यास", "noun", "न्यासाः", "न्यासस्य", "न्यासाय", "", "putting down or"]) + let v = native_list_append(v, ["धारित", "noun", "धारितानि", "धारितस्य", "धारिताय", "", "misspelling of धोरित"]) + let v = native_list_append(v, ["संयम", "noun", "संयमाः", "संयमस्य", "संयमाय", "", "restraint self-control discipline"]) + let v = native_list_append(v, ["मेनि", "noun", "मे॒नयः॑", "मे॒नेः", "मे॒नये॑", "", "revenge harming magical"]) + let v = native_list_append(v, ["जिह्म", "noun", "जि॒ह्मानि॑", "जि॒ह्मस्य॑", "जि॒ह्माय॑", "", "falsehood dishonesty"]) + let v = native_list_append(v, ["दीक्षितृ", "noun", "दीक्षितृ", "", "", "", "consecrator dedicator initiator"]) + let v = native_list_append(v, ["अनाहार", "noun", "अनाहाराः", "अनाहारस्य", "अनाहाराय", "", "abstinence especially from"]) + let v = native_list_append(v, ["अनन्तवत्", "noun", "अनन्तवत्", "", "", "", "forever unlimited"]) + let v = native_list_append(v, ["दीव्", "noun", "दीव्", "", "दीवे", "", "gambling game of"]) + let v = native_list_append(v, ["उद्द्योत", "noun", "उद्द्योत", "", "", "", "light lustre"]) + let v = native_list_append(v, ["रुग्ण", "noun", "रु॒ग्णानि॑", "रु॒ग्णस्य॑", "रु॒ग्णाय॑", "", "a cleft fissure"]) + let v = native_list_append(v, ["លេខា", "noun", "លេខា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अनास्रव", "noun", "अनास्रव", "", "", "", "freedom from sinful"]) + let v = native_list_append(v, ["अनिन्द्रिय", "noun", "अनिन्द्रियाणि", "अनिन्द्रियस्य", "अनिन्द्रियाय", "", "that which is"]) + let v = native_list_append(v, ["वर्पस्", "noun", "वर्पां॑सि", "वर्प॑सः", "वर्प॑से", "", "form"]) + let v = native_list_append(v, ["अन्तरीय", "noun", "अन्तरीय", "", "", "", "lower garment"]) + let v = native_list_append(v, ["अन्तर्धि", "noun", "अन्तर्धि", "", "", "", "concealment"]) + let v = native_list_append(v, ["अन्तर्वासस्", "noun", "अन्तर्वासस्", "", "", "", ""]) + let v = native_list_append(v, ["अन्तःपुर", "noun", "अन्तःपुर", "", "", "", "female apartments gynaeceum"]) + let v = native_list_append(v, ["अपशब्द", "noun", "अपशब्द", "", "", "", "bad or vulgar"]) + let v = native_list_append(v, ["अध्याशय", "noun", "अध्याशय", "", "", "", "imagination"]) + let v = native_list_append(v, ["आनन्तर्य", "noun", "आनन्तर्य", "", "", "", "unpardonable sin"]) + let v = native_list_append(v, ["अन्तराभवदेह", "noun", "अन्तराभवदेह", "", "", "", "a soul between"]) + let v = native_list_append(v, ["अन्तराय", "noun", "अन्तरायाः", "अन्तरायस्य", "अन्तरायाय", "", "obstacle impediment"]) + let v = native_list_append(v, ["अनागति", "noun", "अनागति", "", "", "", "non-attainment"]) + let v = native_list_append(v, ["प्रमाथ", "noun", "प्रमाथ", "", "", "", "hurting injuring"]) + let v = native_list_append(v, ["अप्रसाद", "noun", "अप्रसाद", "", "", "", "disfavor"]) + let v = native_list_append(v, ["अभिज्ञा", "noun", "अभिज्ञाः", "अभिज्ञायाः", "अभिज्ञायै", "", "recognition identification"]) + let v = native_list_append(v, ["अभिसमय", "noun", "अभिसमय", "", "", "", "understanding agreement"]) + let v = native_list_append(v, ["अभ्याख्यान", "noun", "अभ्याख्यान", "", "", "", "false or baseless"]) + let v = native_list_append(v, ["आमर्ष", "noun", "आमर्ष", "", "", "", "anger indignation impatience"]) + let v = native_list_append(v, ["सङ्घ", "noun", "सङ्घाः", "सङ्घस्य", "सङ्घाय", "", "close contact or"]) + let v = native_list_append(v, ["बिडाला", "noun", "बिडालाः", "बिडालायाः", "बिडालायै", "", "cat especially a"]) + let v = native_list_append(v, ["आयुस्", "noun", "आयूं॑षि", "आयु॑षः", "आयु॑षे", "", "life vital power"]) + let v = native_list_append(v, ["नेमि", "noun", "ने॒मयः॑", "ने॒मेः", "ने॒मये॑", "", "the ring or"]) + let v = native_list_append(v, ["मन्तृ", "noun", "म॒न्तारः॑", "म॒न्तुः", "म॒न्त्रे", "", "a thinker adviser"]) + let v = native_list_append(v, ["मन्तु", "noun", "मन्त॑वः", "मन्तोः॑", "मन्त॑वे", "", "an adviser manager"]) + let v = native_list_append(v, ["मनोतृ", "noun", "म॒नो॒तारः॑", "म॒नो॒तुः", "म॒नो॒त्रे", "", "an inventor"]) + let v = native_list_append(v, ["मनुस्", "noun", "मनु॑षः", "मनु॑षः", "मनु॑षे", "", "human human being"]) + let v = native_list_append(v, ["जनुस्", "noun", "ज॒नुषः॑", "ज॒नुषः॑", "ज॒नुषे॑", "", "birth production"]) + let v = native_list_append(v, ["जन्मन्", "noun", "जन्मा॑नि", "जन्म॑नः", "जन्म॑ने", "", "birth production origin"]) + let v = native_list_append(v, ["जास्पति", "noun", "जास्पत॑यः", "जास्पतेः॑", "जास्पत॑ये", "", "the head of"]) + let v = native_list_append(v, ["जन्य", "noun", "जन्याः॑", "जन्य॑स्य", "जन्या॑य", "", "the friend or"]) + let v = native_list_append(v, ["दम्", "noun", "दमि॑", "द॒मः", "द॒मे", "", "a house"]) + let v = native_list_append(v, ["दुवस्", "noun", "दुवां॑सि", "दुव॑सः", "दुव॑से", "", "a gift oblation"]) + let v = native_list_append(v, ["दानु", "noun", "दानू॑नि", "दानु॑नः", "दानु॑ने", "", "a drop of"]) + let v = native_list_append(v, ["जनू", "noun", "ज॒न्वः॑", "ज॒न्वाः", "ज॒न्वै", "", "birth production"]) + let v = native_list_append(v, ["जनु", "noun", "जनवः", "जनोः", "जनवे", "", "the soul"]) + let v = native_list_append(v, ["जानि", "noun", "जान॑यः", "जानेः॑", "जान॑ये", "", "wife"]) + let v = native_list_append(v, ["जनी", "noun", "जन्यः॑", "जन्याः॑", "जन्यै॑", "", "a woman wife"]) + let v = native_list_append(v, ["यूनि", "noun", "यूनयः", "यूनेः", "यूनये", "", "connection union"]) + let v = native_list_append(v, ["यून", "noun", "यूनानि", "यूनस्य", "यूनाय", "", "a band cord"]) + let v = native_list_append(v, ["युग्म", "noun", "यु॒ग्मानि॑", "यु॒ग्मस्य॑", "यु॒ग्माय॑", "", "a pair couple"]) + let v = native_list_append(v, ["युग्य", "noun", "युग्यानि", "युग्यस्य", "युग्याय", "", "a vehicle"]) + let v = native_list_append(v, ["स्फिगी", "noun", "स्फि॒ग्यः॑", "स्फि॒ग्याः", "स्फि॒ग्यै", "", "alternative form of"]) + let v = native_list_append(v, ["युज्य", "noun", "युज्या॑नि", "युज्य॑स्य", "युज्या॑य", "", "union alliance"]) + let v = native_list_append(v, ["युज्", "noun", "युजः॑", "यु॒जः", "यु॒जे", "", "a yoke-fellow companion"]) + let v = native_list_append(v, ["योगस्", "noun", "योगांसि", "योगसः", "योगसे", "", "meditation religious abstraction"]) + let v = native_list_append(v, ["धुर्", "noun", "धुरः॑", "धु॒रः", "धु॒रे", "", "a yoke"]) + let v = native_list_append(v, ["धुर", "noun", "धुराः॑", "धुर॑स्य", "धुरा॑य", "", "yoke pole"]) + let v = native_list_append(v, ["धुरा", "noun", "धुराः॑", "धुरा॑याः", "धुरा॑यै", "", "a burden load"]) + let v = native_list_append(v, ["तोक", "noun", "तो॒कानि॑", "तो॒कस्य॑", "तो॒काय॑", "", "offspring children"]) + let v = native_list_append(v, ["भस्मन्", "noun", "भस्मा॑नि", "भस्म॑नः", "भस्म॑ने", "", "what is pulverized"]) + let v = native_list_append(v, ["भस्", "noun", "भस्", "", "", "", "ashes"]) + let v = native_list_append(v, ["प्सरस्", "noun", "प्सरां॑सि", "प्सर॑सः", "प्सर॑से", "", "a feast enjoyment"]) + let v = native_list_append(v, ["प्सुरस्", "noun", "प्सुरां॑सि", "प्सुर॑सः", "प्सुर॑से", "", "food victuals"]) + let v = native_list_append(v, ["याजि", "noun", "याजयः", "याजेः", "याजये", "", "a sacrifice"]) + let v = native_list_append(v, ["यजस्", "noun", "यजां॑सि", "यज॑सः", "यज॑से", "", "worship"]) + let v = native_list_append(v, ["यज्यु", "noun", "यज्य॑वः", "यज्योः॑", "यज्य॑वे", "", "an Adhvaryu priest"]) + let v = native_list_append(v, ["याग", "noun", "यागाः", "यागस्य", "यागाय", "", "an offering"]) + let v = native_list_append(v, ["याम", "noun", "यामाः॑", "याम॑स्य", "यामा॑य", "", "motion course going"]) + let v = native_list_append(v, ["यामन्", "noun", "यामा॑नि", "याम्नः॑", "याम्ने॑", "", "going coming motion"]) + let v = native_list_append(v, ["यावन्", "noun", "यावा॑नः", "याव्नः॑", "याव्ने॑", "", "a rider horseman"]) + let v = native_list_append(v, ["यह्व", "noun", "य॒ह्वाः", "य॒ह्वस्य॑", "य॒ह्वाय॑", "", "a sacrificer"]) + let v = native_list_append(v, ["यह्वा", "noun", "य॒ह्वाः", "य॒ह्वायाः॑", "य॒ह्वायै॑", "", "intelligence"]) + let v = native_list_append(v, ["यह्वी", "noun", "य॒ह्व्यः॑", "य॒ह्व्याः", "य॒ह्व्यै", "", "heaven and earth"]) + let v = native_list_append(v, ["यहस्", "noun", "यहां॑सि", "यह॑सः", "यह॑से", "", "water"]) + let v = native_list_append(v, ["सैयशास्त्र", "noun", "सैयशास्त्र", "", "", "", "magic"]) + let v = native_list_append(v, ["गुल्म", "noun", "गुल्माः॑", "गुल्म॑स्य", "गुल्मा॑य", "", "A cluster or"]) + let v = native_list_append(v, ["जू", "noun", "जुवः", "जुवः", "जुवे", "", "speed"]) + let v = native_list_append(v, ["जुवस्", "noun", "जुवस्", "जुव॑सः", "जुव॑से", "", "celerity quickness speed"]) + let v = native_list_append(v, ["प्सु", "noun", "प्सवः", "प्सोः", "प्सवे", "", "aspect appearance form"]) + let v = native_list_append(v, ["अप्सस्", "noun", "अप्सां॑सि", "अप्स॑सः", "अप्स॑से", "", "the hidden part"]) + let v = native_list_append(v, ["गु", "noun", "गवः", "गोः", "गवे", "", "cow"]) + let v = native_list_append(v, ["वस्ति", "noun", "व॒स्तयः॑", "व॒स्तेः", "व॒स्तये॑", "", "bladder"]) + let v = native_list_append(v, ["दुरोण", "noun", "दु॒रो॒णानि॑", "दु॒रो॒णस्य॑", "दु॒रो॒णाय॑", "", "home house dwelling"]) + let v = native_list_append(v, ["दुर्योण", "noun", "दु॒र्यो॒णानि॑", "दु॒र्यो॒णस्य॑", "दु॒र्यो॒णाय॑", "", "home house dwelling"]) + let v = native_list_append(v, ["दुर", "noun", "दु॒राः", "दु॒रस्य॑", "दु॒राय॑", "", "one who opens"]) + let v = native_list_append(v, ["दुर्", "noun", "दुर्", "", "", "", "gate door entrance"]) + let v = native_list_append(v, ["सैय", "noun", "सैय", "", "", "", "magic"]) + let v = native_list_append(v, ["संस्मरण", "noun", "संस्मरणानि", "संस्मरणस्य", "संस्मरणाय", "", "the act of"]) + let v = native_list_append(v, ["जूति", "noun", "जू॒तयः॑", "जू॒तेः", "जू॒तये॑", "", "going or driving"]) + let v = native_list_append(v, ["प्रज्ञान", "noun", "प्र॒ज्ञाना॑नि", "प्र॒ज्ञान॑स्य", "प्र॒ज्ञाना॑य", "", "knowledge wisdom intelligence"]) + let v = native_list_append(v, ["मारण", "noun", "मार॑णानि", "मार॑णस्य", "मार॑णाय", "", "killing slaying slaughter"]) + let v = native_list_append(v, ["मरुस्थली", "noun", "मरुस्थल्यः", "मरुस्थल्याः", "मरुस्थल्यै", "", "desert spot wilderness"]) + let v = native_list_append(v, ["मर्त्य", "noun", "मर्त्याः॑", "मर्त्य॑स्य", "मर्त्या॑य", "", "a mortal man"]) + let v = native_list_append(v, ["अतिथिपति", "noun", "अति॑थिपतयः", "अति॑थिपतेः", "अति॑थिपतये", "", "host one who"]) + let v = native_list_append(v, ["सदस्पति", "noun", "सद॒स्पत॑यः", "सद॒स्पतेः॑", "सद॒स्पत॑ये", "", "lords of the"]) + let v = native_list_append(v, ["नदीपति", "noun", "न॒दी॒प॒तयः॑", "न॒दी॒प॒तेः", "न॒दी॒प॒तये॑", "", "lord of flowing"]) + let v = native_list_append(v, ["ग्लौ", "noun", "ग्लावः॑", "ग्ला॒वः", "ग्ला॒वे", "", "a round lump"]) + let v = native_list_append(v, ["धर्तृ", "noun", "ध॒र्तारः॑", "ध॒र्तुः", "ध॒र्त्रे", "", "bearer supporter"]) + let v = native_list_append(v, ["धर्त्र", "noun", "ध॒र्त्राणि॑", "ध॒र्त्रस्य॑", "ध॒र्त्राय॑", "", "prop support stay"]) + let v = native_list_append(v, ["धरुण", "noun", "ध॒रुणा॑नि", "ध॒रुण॑स्य", "ध॒रुणा॑य", "", "basis foundation firm"]) + let v = native_list_append(v, ["दरीमन्", "noun", "दरी॑माणि", "दरी॑म्णः", "दरी॑म्णे", "", "destruction"]) + let v = native_list_append(v, ["धर्मन्", "noun", "ध॒र्माणः॑", "ध॒र्मणः॑", "ध॒र्मणे॑", "", "bearer supporter"]) + let v = native_list_append(v, ["धर्मता", "noun", "धर्म॑ताः", "धर्म॑तायाः", "धर्म॑तायै", "", "essence inherent nature"]) + let v = native_list_append(v, ["भरीमन्", "noun", "भरी॑माणि", "भरी॑म्णः", "भरी॑म्णे", "", "supporting nourishing nourishment"]) + let v = native_list_append(v, ["स्तरीमन्", "noun", "स्तरी॑माणि", "स्तरी॑म्णः", "स्तरी॑म्णे", "", "the act of"]) + let v = native_list_append(v, ["दर्म", "noun", "द॒र्माः", "द॒र्मस्य॑", "द॒र्माय॑", "", "breaker destroyer demolisher"]) + let v = native_list_append(v, ["दर्मन्", "noun", "द॒र्माणः॑", "द॒र्मणः॑", "द॒र्मणे॑", "", "breaker destroyer demolisher"]) + let v = native_list_append(v, ["दर्तृ", "noun", "दर्ता॑रः", "दर्तुः॑", "दर्त्रे॑", "", "breaker"]) + let v = native_list_append(v, ["दारुण", "noun", "दारुणानि", "दारुणस्य", "दारुणाय", "", "harshness severity horror"]) + let v = native_list_append(v, ["दर्वि", "noun", "दर्व॑यः", "दर्वेः॑", "दर्व॑ये", "", "a spoon generally"]) + let v = native_list_append(v, ["स्तृति", "noun", "स्तृत॑यः", "स्तृतेः॑", "स्तृत॑ये", "", "the act of"]) + let v = native_list_append(v, ["स्तेन", "noun", "स्ते॒नाः", "स्ते॒नस्य॑", "स्ते॒नाय॑", "", "thief robber"]) + let v = native_list_append(v, ["स्तेय", "noun", "स्तेया॑नि", "स्तेय॑स्य", "स्तेया॑य", "", "theft robbery larceny"]) + let v = native_list_append(v, ["स्तायु", "noun", "स्ता॒यवः॑", "स्ता॒योः", "स्ता॒यवे॑", "", "thief robber"]) + let v = native_list_append(v, ["स्तरु", "noun", "स्तरवः", "स्तरोः", "स्तरवे", "", "overthrower an enemy"]) + let v = native_list_append(v, ["स्तुका", "noun", "स्तुकाः॑", "स्तुका॑याः", "स्तुका॑यै", "", "a knot or"]) + let v = native_list_append(v, ["सवीमन्", "noun", "सवी॑मानि", "सवी॑म्नः", "सवी॑म्ने", "", "setting in motion"]) + let v = native_list_append(v, ["स्तरिमन्", "noun", "स्त॒रि॒माणः॑", "स्त॒रि॒म्णः", "स्त॒रि॒म्णे", "", "that which is"]) + let v = native_list_append(v, ["सव", "noun", "स॒वाः", "स॒वस्य॑", "स॒वाय॑", "", "one who sets"]) + let v = native_list_append(v, ["भरु", "noun", "भरवः", "भरोः", "भरवे", "", "lord master"]) + let v = native_list_append(v, ["भार्मन्", "noun", "भार्मा॑णः", "भार्म॑णः", "भार्म॑णे", "", "a board for"]) + let v = native_list_append(v, ["धरिमन्", "noun", "धरिमाणः", "धरिम्णः", "धरिम्णे", "", "a balance weight"]) + let v = native_list_append(v, ["परीमन्", "noun", "परी॑माणि", "परी॑म्णः", "परी॑म्णे", "", "bounty plenty"]) + let v = native_list_append(v, ["परेमन्", "noun", "परे॑माणि", "परे॑म्णः", "परे॑म्णे", "", "bounty plenty SV."]) + let v = native_list_append(v, ["द्राघिमन्", "noun", "द्रा॒घि॒माणः॑", "द्रा॒घि॒म्णः", "द्रा॒घि॒म्णे", "", "length"]) + let v = native_list_append(v, ["द्राघ्मन्", "noun", "द्रा॒घ्माणः॑", "द्रा॒घ्मणः॑", "द्रा॒घ्मणे॑", "", "length"]) + let v = native_list_append(v, ["द्रापि", "noun", "द्रा॒पयः॑", "द्रा॒पेः", "द्रा॒पये॑", "", "mantle garment"]) + let v = native_list_append(v, ["द्रप्स", "noun", "द्र॒प्साः", "द्र॒प्सस्य॑", "द्र॒प्साय॑", "", "a drop as"]) + let v = native_list_append(v, ["द्रुपद", "noun", "द्रु॒प॒दानि॑", "द्रु॒प॒दस्य॑", "द्रु॒प॒दाय॑", "", "a wooden pillar"]) + let v = native_list_append(v, ["कलविङ्क", "noun", "क॒ल॒विङ्काः॑", "क॒ल॒विङ्क॑स्य", "क॒ल॒विङ्का॑य", "", "a sparrow"]) + let v = native_list_append(v, ["प्रउग", "noun", "प्रउ॑गाणि", "प्रउ॑गस्य", "प्रउ॑गाय", "", "the forepart of"]) + let v = native_list_append(v, ["तितउ", "noun", "तित॑ऊनि", "तित॑उनः", "तित॑उने", "", "a sieve cribble"]) + let v = native_list_append(v, ["सुऊति", "noun", "सु॒ऊ॒तयः॑", "सु॒ऊ॒तेः", "सु॒ऊ॒तये॑", "", "good protection or"]) + let v = native_list_append(v, ["ऊति", "noun", "ऊ॒तयः॑", "ऊ॒तेः", "ऊ॒तये॑", "", "help protection promoting"]) + let v = native_list_append(v, ["ऊम", "noun", "ऊमाः॑", "ऊम॑स्य", "ऊमा॑य", "", "a helper friend"]) + let v = native_list_append(v, ["नृम्ण", "noun", "नृ॒म्णानि॑", "नृ॒म्णस्य॑", "नृ॒म्णाय॑", "", "manhood virtus virility"]) + let v = native_list_append(v, ["नृपशु", "noun", "नृप॑शवः", "नृप॑शोः", "नृप॑शवे", "", "man-beast a brute"]) + let v = native_list_append(v, ["पशव्य", "noun", "प॒श॒व्या॑नि", "प॒श॒व्य॑स्य", "प॒श॒व्या॑य", "", "a herd or"]) + let v = native_list_append(v, ["शेप", "noun", "शेपाः॑", "शेप॑स्य", "शेपा॑य", "", "the male organ"]) + let v = native_list_append(v, ["शेपस्", "noun", "शेपां॑सि", "शेप॑सः", "शेप॑से", "", "the male organ"]) + let v = native_list_append(v, ["शेफ", "noun", "शेफाः", "शेफस्य", "शेफाय", "", "the male organ"]) + let v = native_list_append(v, ["शेफस्", "noun", "शेफांसि", "शेफसः", "शेफसे", "", "the male organ"]) + let v = native_list_append(v, ["हर्षण", "noun", "हर्ष॑णानि", "हर्ष॑णस्य", "हर्ष॑णाय", "", "bristling erection"]) + let v = native_list_append(v, ["शुङ्ग", "noun", "शु॒ङ्गानि॑", "शु॒ङ्गस्य॑", "शु॒ङ्गाय॑", "", "the sheath or"]) + let v = native_list_append(v, ["शुङ्गा", "noun", "शु॒ङ्गाः", "शु॒ङ्गायाः॑", "शु॒ङ्गायै॑", "", "the sheath or"]) + let v = native_list_append(v, ["अशनि", "noun", "अ॒शन॑यः", "अ॒शनेः॑", "अ॒शन॑ये", "", "the thunderbolt a"]) + let v = native_list_append(v, ["शुचि", "noun", "शुच॑यः", "शुचेः॑", "शुच॑ये", "", "purification purity honesty"]) + let v = native_list_append(v, ["सर्षप", "noun", "स॒र्षपाः॑", "स॒र्षप॑स्य", "स॒र्षपा॑य", "", "mustard mustard-seed"]) + let v = native_list_append(v, ["वी", "noun", "वियः", "वियः", "विये", "", "the act of"]) + let v = native_list_append(v, ["वीति", "noun", "वी॒तयः॑", "वी॒तेः", "वी॒तये॑", "", "enjoyment feast dainty"]) + let v = native_list_append(v, ["रंहि", "noun", "रंह॑यः", "रंहेः॑", "रंह॑ये", "", "running flowing hastening"]) + let v = native_list_append(v, ["रहस्", "noun", "रहां॑सि", "रह॑सः", "रह॑से", "", "a lonely or"]) + let v = native_list_append(v, ["रिपु", "noun", "रि॒पवः॑", "रि॒पोः", "रि॒पवे॑", "", "deceiver cheat rogue"]) + let v = native_list_append(v, ["रिप्", "noun", "रिपः॑", "रि॒पः", "रि॒पे", "", "fraud deceit"]) + let v = native_list_append(v, ["शवस्", "noun", "शवां॑सि", "शव॑सः", "शव॑से", "", "strength power might"]) + let v = native_list_append(v, ["विसृष्टि", "noun", "विसृ॑ष्टयः", "विसृ॑ष्टेः", "विसृ॑ष्टये", "", "letting go"]) + let v = native_list_append(v, ["त्सरु", "noun", "त्सर॑वः", "त्सरोः॑", "त्सर॑वे", "", "a crawling animal"]) + let v = native_list_append(v, ["तुरस्पेय", "noun", "तु॒र॒स्पेया॑नि", "तु॒र॒स्पेय॑स्य", "तु॒र॒स्पेया॑य", "", "the conquerors drinking"]) + let v = native_list_append(v, ["शरारु", "noun", "श॒रार॑वः", "श॒रारोः॑", "श॒रार॑वे", "", "any mischievous creature"]) + let v = native_list_append(v, ["हिंस्र", "noun", "हिं॒स्राः", "हिं॒स्रस्य॑", "हिं॒स्राय॑", "", "a man who"]) + let v = native_list_append(v, ["ग्मा", "noun", "ग्माः", "ग्मः", "ग्मे", "", "the earth"]) + let v = native_list_append(v, ["त्विषि", "noun", "त्विष॑यः", "त्विषेः॑", "त्विष॑ये", "", "vehemence impetuosity energy"]) + let v = native_list_append(v, ["वपुस्", "noun", "वपूं॑षि", "वपु॑षः", "वपु॑षे", "", "form figure especially"]) + let v = native_list_append(v, ["वपुष", "noun", "वपु॑षाणि", "वपु॑षस्य", "वपु॑षाय", "", "marvellous beauty dative"]) + let v = native_list_append(v, ["वपुष्या", "noun", "व॒पु॒ष्याः", "व॒पु॒ष्यायाः॑", "व॒पु॒ष्यायै॑", "", "wonder astonishment"]) + let v = native_list_append(v, ["रेपस्", "noun", "रेपां॑सि", "रेप॑सः", "रेप॑से", "", "spot stain"]) + let v = native_list_append(v, ["रिप्र", "noun", "रि॒प्राणि॑", "रि॒प्रस्य॑", "रि॒प्राय॑", "", "dirt impurity"]) + let v = native_list_append(v, ["रेभ", "noun", "रे॒भाः", "रे॒भस्य॑", "रे॒भाय॑", "", "a praiser panegyrist"]) + let v = native_list_append(v, ["रपस्", "noun", "रपां॑सि", "रप॑सः", "रप॑से", "", "bodily defect injury"]) + let v = native_list_append(v, ["रभस्", "noun", "रभां॑सि", "रभ॑सः", "रभ॑से", "", "violence impetuosity force"]) + let v = native_list_append(v, ["अर्क", "noun", "अ॒र्काः", "अ॒र्कस्य॑", "अ॒र्काय॑", "", "a ray flash"]) + let v = native_list_append(v, ["अर्चा", "noun", "अ॒र्चाः", "अ॒र्चायाः॑", "अ॒र्चायै॑", "", "worship adoration"]) + let v = native_list_append(v, ["अर्चि", "noun", "अ॒र्चयः॑", "अ॒र्चेः", "अ॒र्चये॑", "", "ray flame"]) + let v = native_list_append(v, ["अर्चिस्", "noun", "अ॒र्चींषि॑", "अ॒र्चिषः॑", "अ॒र्चिषे॑", "", "ray flame light"]) + let v = native_list_append(v, ["रैवत्य", "noun", "रा॒इ॒व॒त्यानि॑", "रा॒इ॒व॒त्यस्य॑", "रा॒इ॒व॒त्याय॑", "", "riches wealth"]) + let v = native_list_append(v, ["राद्धि", "noun", "राद्ध॑यः", "राद्धेः॑", "राद्ध॑ये", "", "accomplishment perfection completion"]) + let v = native_list_append(v, ["राधस्", "noun", "राधां॑सि", "राध॑सः", "राध॑से", "", "favour kindness bounty"]) + let v = native_list_append(v, ["सोल्लुण्ठ", "noun", "सोल्लुण्ठाः", "सोल्लुण्ठस्य", "सोल्लुण्ठाय", "", "irony sarcasm"]) + let v = native_list_append(v, ["दोमन्", "noun", "दोमानि", "दोम्नः", "दोम्ने", "", "pain inconvenience"]) + let v = native_list_append(v, ["तुञ्ज", "noun", "तु॒ञ्जाः", "तु॒ञ्जस्य॑", "तु॒ञ्जाय॑", "", "shock assault"]) + let v = native_list_append(v, ["तरुस्", "noun", "तरूं॑षि", "तरु॑षः", "तरु॑षे", "", "battle"]) + let v = native_list_append(v, ["त्वेष्य", "noun", "त्वे॒ष्या॑णि", "त्वे॒ष्य॑स्य", "त्वे॒ष्या॑य", "", "fierce movement"]) + let v = native_list_append(v, ["त्वेषस्", "noun", "त्वे॒षांसि॑", "त्वे॒षसः॑", "त्वे॒षसे॑", "", "energy impulse"]) + let v = native_list_append(v, ["त्वेषथ", "noun", "त्वे॒षथाः॑", "त्वे॒षथ॑स्य", "त्वे॒षथा॑य", "", "violence fury"]) + let v = native_list_append(v, ["चण्डिमन्", "noun", "चण्डिमानः", "चण्डिम्नः", "चण्डिम्ने", "", "violence intensity heat"]) + let v = native_list_append(v, ["तीव्र", "noun", "ती॒व्राः", "ती॒व्रस्य॑", "ती॒व्राय॑", "", "sharpness pungency"]) + let v = native_list_append(v, ["तविष्या", "noun", "त॒वि॒ष्याः", "त॒वि॒ष्यायाः॑", "त॒वि॒ष्यायै॑", "", "violence"]) + let v = native_list_append(v, ["तवस्", "noun", "त॒वसः॑", "त॒वसः॑", "त॒वसे॑", "", "power strength courage"]) + let v = native_list_append(v, ["तवस्य", "noun", "त॒व॒स्यानि॑", "त॒व॒स्यस्य॑", "त॒व॒स्याय॑", "", "strength"]) + let v = native_list_append(v, ["तविष", "noun", "त॒वि॒षाः", "त॒वि॒षस्य॑", "त॒वि॒षाय॑", "", "the ocean"]) + let v = native_list_append(v, ["पनस", "noun", "पनसानि", "पनसस्य", "पनसाय", "", "jackfruit breadfruit"]) + let v = native_list_append(v, ["ब्रह्मा", "noun", "ब्रह्मा", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["मङ्गल", "noun", "म॒ङ्ग॒लानि॑", "म॒ङ्ग॒लस्य॑", "म॒ङ्ग॒लाय॑", "", "amulet talisman"]) + let v = native_list_append(v, ["वर्धन", "noun", "वर्ध॑नाः", "वर्ध॑नस्य", "वर्ध॑नाय", "", "growth"]) + let v = native_list_append(v, ["वक्षस्", "noun", "वक्षां॑सि", "वक्ष॑सः", "वक्ष॑से", "", "chest breast"]) + let v = native_list_append(v, ["वार्त्ता", "noun", "वार्त्ताः", "वार्त्तायाः", "वार्त्तायै", "", "news tidings story"]) + let v = native_list_append(v, ["नारक", "noun", "नारकाः", "नारकस्य", "नारकाय", "", "Hell"]) + let v = native_list_append(v, ["विकल्प", "noun", "विकल्पाः", "विकल्पस्य", "विकल्पाय", "", "an intermediate kalpa"]) + let v = native_list_append(v, ["वग्नु", "noun", "व॒ग्नवः॑", "व॒ग्नोः", "व॒ग्नवे॑", "", "noise sound usually"]) + let v = native_list_append(v, ["रजि", "noun", "रज॑यः", "रजेः॑", "रज॑ये", "", "direction"]) + let v = native_list_append(v, ["रशना", "noun", "र॒श॒नाः", "र॒श॒नायाः॑", "र॒श॒नायै॑", "", "rope string cord"]) + let v = native_list_append(v, ["रश्मन्", "noun", "र॒श्मानः॑", "र॒श्मनः॑", "र॒श्मने॑", "", "rope string cord"]) + let v = native_list_append(v, ["इष्टि", "noun", "इ॒ष्टयः॑", "इ॒ष्टेः", "इ॒ष्टये॑", "", "seeking going after"]) + let v = native_list_append(v, ["स्फिच्", "noun", "स्फिचः", "स्फिचः", "स्फिचे", "", "a buttock"]) + let v = native_list_append(v, ["स्फिज्", "noun", "स्फिजः", "स्फिजः", "स्फिजे", "", "alternative form of"]) + let v = native_list_append(v, ["ဂင်္ဂါ", "noun", "ဂင်္ဂါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["आदंश", "noun", "आदंश", "", "", "", "bite wound caused"]) + let v = native_list_append(v, ["आपादन", "noun", "आपादन", "", "", "", "affecting the bringing"]) + let v = native_list_append(v, ["आमिष", "noun", "आमिष", "", "", "", "meat flesh"]) + let v = native_list_append(v, ["चनस्", "noun", "चनां॑सि", "चन॑सः", "चन॑से", "", "delight"]) + let v = native_list_append(v, ["आलम्बन", "noun", "आलम्बन", "", "", "", "base support foundation"]) + let v = native_list_append(v, ["अंसकूट", "noun", "अंस॑कूटाः", "अंस॑कूटस्य", "अंस॑कूटाय", "", "shoulder"]) + let v = native_list_append(v, ["कुलिक", "noun", "कुलिक", "", "", "", "judge chief"]) + let v = native_list_append(v, ["अंसफलक", "noun", "अं॒स॒फ॒ल॒कानि॑", "अं॒स॒फ॒ल॒कस्य॑", "अं॒स॒फ॒ल॒काय॑", "", "shoulder-blade"]) + let v = native_list_append(v, ["अकुशल", "noun", "अकु॑शलानि", "अकु॑शलस्य", "अकु॑शलाय", "", "evil an evil"]) + let v = native_list_append(v, ["अक्षोभ", "noun", "अक्षोभ", "", "", "", "tranquility calmness"]) + let v = native_list_append(v, ["अदत्तादान", "noun", "अदत्तादान", "", "", "", "stealing theft"]) + let v = native_list_append(v, ["अंसत्र", "noun", "अंस॑त्राणि", "अंस॑त्रस्य", "अंस॑त्राय", "", "armour protecting the"]) + let v = native_list_append(v, ["अंसपृष्ठ", "noun", "अंस॑पृष्ठानि", "अंस॑पृष्ठस्य", "अंस॑पृष्ठाय", "", "back of the"]) + let v = native_list_append(v, ["आगम", "noun", "आगम", "", "", "", "something handed down"]) + let v = native_list_append(v, ["ဂုရု", "noun", "ဂုရု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒေဝ", "noun", "ဒေဝ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["तूय", "noun", "तूयाः॑", "तूय॑स्य", "तूया॑य", "", "water"]) + let v = native_list_append(v, ["दोषा", "noun", "दो॒षाः", "दो॒षायाः॑", "दो॒षायै॑", "", "darkness evening night"]) + let v = native_list_append(v, ["उपमा", "noun", "उपमाः", "उपमायाः", "उपमायै", "", "similarity resemblance"]) + let v = native_list_append(v, ["शत्रू", "noun", "शत्रू", "", "", "", "masculine nominative dual"]) + let v = native_list_append(v, ["ພຸທ຺ຘ", "noun", "ພຸທ຺ຘ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["พุทฺธ", "noun", "พุทฺธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ऊबध्य", "noun", "ऊब॑ध्यानि", "ऊब॑ध्यस्य", "ऊब॑ध्याय", "", "undigested grass found"]) + let v = native_list_append(v, ["ऊवध्य", "noun", "ऊवध्य", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["पाषण्ड", "noun", "पाषण्ड", "", "", "", "heretic atheist nonbeliever"]) + let v = native_list_append(v, ["चरणे", "noun", "चरणे", "", "", "", "nominative neuter dual"]) + let v = native_list_append(v, ["इक्षु", "noun", "इक्षु", "", "", "", "sugar cane Saccharum"]) + let v = native_list_append(v, ["इन्द्रनील", "noun", "इन्द्रनील", "", "", "", "sapphire"]) + let v = native_list_append(v, ["स्कम्भ", "noun", "स्क॒म्भाः", "स्क॒म्भस्य॑", "स्क॒म्भाय॑", "", "prop pillar support"]) + let v = native_list_append(v, ["ओकस्", "noun", "ओकां॑सि", "ओक॑सः", "ओक॑से", "", "pleasure liking"]) + let v = native_list_append(v, ["ओघ", "noun", "ओघाः", "ओघस्य", "ओघाय", "", "stream flood torrent"]) + let v = native_list_append(v, ["अपूप", "noun", "अ॒पू॒पाः", "अ॒पू॒पस्य॑", "अ॒पू॒पाय॑", "", "a cake made"]) + let v = native_list_append(v, ["ସଂସ୍କୃତ", "noun", "ସଂସ୍କୃତ", "", "", "", "Odia script form"]) + let v = native_list_append(v, ["संन्यास", "noun", "संन्यासाः", "संन्यासस्य", "संन्यासाय", "", "renunciation of the"]) + let v = native_list_append(v, ["पुष्कलावती", "noun", "पुष्कलावती", "", "", "", "Pushkalavati the ancient"]) + let v = native_list_append(v, ["क्षुर", "noun", "क्षु॒राः", "क्षु॒रस्य॑", "क्षु॒राय॑", "", "a razor"]) + let v = native_list_append(v, ["ᬖᭀᬭ", "noun", "ᬖᭀᬭ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["ᬤᬵᬲ", "noun", "ᬤᬵᬲ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["इष्टिका", "noun", "इष्टिकाः", "इष्टिकायाः", "इष्टिकायै", "", "alternative form of"]) + let v = native_list_append(v, ["เทว", "noun", "เทว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["उपचय", "noun", "उपचय", "", "", "", "growth increase accumulation"]) + let v = native_list_append(v, ["उपद्रव", "noun", "उपद्रव", "", "", "", "sudden disease"]) + let v = native_list_append(v, ["उपादान", "noun", "उपादान", "", "", "", "offering"]) + let v = native_list_append(v, ["रण्ड", "noun", "रण्डाः", "रण्डस्य", "रण्डाय", "", "a man who"]) + let v = native_list_append(v, ["श्लोक", "noun", "श्लोकाः॑", "श्लोक॑स्य", "श्लोका॑य", "", "sound noise call"]) + let v = native_list_append(v, ["गण्ड", "noun", "ग॒ण्डाः", "ग॒ण्डस्य॑", "ग॒ण्डाय॑", "", "the cheek the"]) + let v = native_list_append(v, ["गल्ल", "noun", "गल्लाः", "गल्लस्य", "गल्लाय", "", "the cheek the"]) + let v = native_list_append(v, ["स्वरान्तर", "noun", "स्वरान्तराणि", "स्वरान्तरस्य", "स्वरान्तराय", "", "vowel-interval - hiatus"]) + let v = native_list_append(v, ["प्रतिशाखा", "noun", "प्रतिशाखाः", "प्रतिशाखायाः", "प्रतिशाखायै", "", "a side branch"]) + let v = native_list_append(v, ["गूर्ति", "noun", "गू॒र्तयः॑", "गू॒र्तेः", "गू॒र्तये॑", "", "approval praise welcoming"]) + let v = native_list_append(v, ["ताण्डव", "noun", "ताण्डवाः", "ताण्डवस्य", "ताण्डवाय", "", "frenzied violent dancing"]) + let v = native_list_append(v, ["निगमन", "noun", "निगमनानि", "निगमनस्य", "निगमनाय", "", "insertion quotation of"]) + let v = native_list_append(v, ["परिसर", "noun", "परिसर", "", "", "", "verge border proximity"]) + let v = native_list_append(v, ["कृष्णा", "noun", "कृष्णाः", "कृष्णायाः", "कृष्णायै", "", "a name of"]) + let v = native_list_append(v, ["बुद्धीन्द्रिय", "noun", "बुद्धीन्द्रियाणि", "बुद्धीन्द्रियस्य", "बुद्धीन्द्रियाय", "", "any of the"]) + let v = native_list_append(v, ["मस्तु", "noun", "मस्तू॑नि", "मस्तु॑नः", "मस्तु॑ने", "", "sour cream"]) + let v = native_list_append(v, ["बुन्द", "noun", "बु॒न्दाः", "बु॒न्दस्य॑", "बु॒न्दाय॑", "", "an arrow"]) + let v = native_list_append(v, ["बन्ध", "noun", "ब॒न्धाः", "ब॒न्धस्य॑", "ब॒न्धाय॑", "", "a binding fetter"]) + let v = native_list_append(v, ["यूथ", "noun", "यु॒थाः", "यु॒थस्य॑", "यु॒थाय॑", "", "troop flock herd"]) + let v = native_list_append(v, ["गेह", "noun", "गे॒हाः", "गे॒हस्य॑", "गे॒हाय॑", "", "house home residence"]) + let v = native_list_append(v, ["त्मन्", "noun", "त्मानः॑", "त्मनः॑", "त्मने॑", "", "breath"]) + let v = native_list_append(v, ["रथी", "noun", "र॒थ्यः॑", "र॒थ्यः॑", "र॒थ्ये॑", "", "a rider especially"]) + let v = native_list_append(v, ["विषुव", "noun", "विषुवाः", "विषुवस्य", "विषुवाय", "", "equinox"]) + let v = native_list_append(v, ["अयनान्त", "noun", "अयनान्ताः", "अयनान्तस्य", "अयनान्ताय", "", "solstice"]) + let v = native_list_append(v, ["भान", "noun", "भाना॑नि", "भान॑स्य", "भाना॑य", "", "appearance"]) + let v = native_list_append(v, ["परिष्ठिति", "noun", "परिष्ठितयः", "परिष्ठितेः", "परिष्ठितये", "", "abode residence"]) + let v = native_list_append(v, ["क्रन्दस्", "noun", "क्रन्दां॑सि", "क्रन्द॑सः", "क्रन्द॑से", "", "a war-cry battle"]) + let v = native_list_append(v, ["वेद्या", "noun", "वे॒द्याः", "वे॒द्यायाः॑", "वे॒द्यायै॑", "", "knowledge"]) + let v = native_list_append(v, ["वेदस्", "noun", "वेदां॑सि", "वेद॑सः", "वेद॑से", "", "knowledge science"]) + let v = native_list_append(v, ["मरीचि", "noun", "मरी॑चयः", "मरी॑चेः", "मरी॑चये", "", "a particle of"]) + let v = native_list_append(v, ["क्रन्दनु", "noun", "क्र॒न्द॒नवः॑", "क्र॒न्द॒नोः", "क्र॒न्द॒नवे॑", "", "roaring roar"]) + let v = native_list_append(v, ["अनीक", "noun", "अनी॑काः", "अनी॑कस्य", "अनी॑काय", "", "the face"]) + let v = native_list_append(v, ["मज्जा", "noun", "म॒ज्जाः", "म॒ज्जायाः॑", "म॒ज्जायै॑", "", "marrow of the"]) + let v = native_list_append(v, ["मज्जस्", "noun", "मज्जांसि", "मज्जसः", "मज्जसे", "", "marrow of the"]) + let v = native_list_append(v, ["पौष्टिक", "noun", "पौष्टिकानि", "पौष्टिकस्य", "पौष्टिकाय", "", "a cloth worn"]) + let v = native_list_append(v, ["क्रीडा", "noun", "क्री॒डाः", "क्री॒डायाः॑", "क्री॒डायै॑", "", "sport play pastime"]) + let v = native_list_append(v, ["लशुन", "noun", "लशुनानि", "लशुनस्य", "लशुनाय", "", "garlic"]) + let v = native_list_append(v, ["अयोग्यता", "noun", "अयोग्यताः", "अयोग्यतायाः", "अयोग्यतायै", "", "unsuitability unfitness unworthiness"]) + let v = native_list_append(v, ["श्रोता", "noun", "श्रोता", "", "", "", "nominative singular masculine/feminine"]) + let v = native_list_append(v, ["भरस्", "noun", "भरां॑सि", "भर॑सः", "भर॑से", "", "bearing upholding"]) + let v = native_list_append(v, ["स्थामन्", "noun", "स्थामा॑नि", "स्थाम्नः॑", "स्थाम्ने॑", "", "station seat place"]) + let v = native_list_append(v, ["क्रेता", "noun", "क्रेता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अर्जन", "noun", "अर्जनानि", "अर्जनस्य", "अर्जनाय", "", "procuring acquiring gaining"]) + let v = native_list_append(v, ["द्वारका", "noun", "द्वारकाः", "द्वारकायाः", "द्वारकायै", "", "Dwarka a city"]) + let v = native_list_append(v, ["ကဝိ", "noun", "ကဝိ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["गृभ्", "noun", "गृभ्", "", "गृभे", "", "grasping seizing"]) + let v = native_list_append(v, ["रागी", "noun", "रागी", "", "", "", "finger millet Eleusine"]) + let v = native_list_append(v, ["धृति", "noun", "धृत॑यः", "धृतेः॑", "धृत॑ये", "", "constancy firmness"]) + let v = native_list_append(v, ["कुलाल", "noun", "कुलालाः", "कुलालस्य", "कुलालाय", "", "a potter"]) + let v = native_list_append(v, ["प्रस्तर", "noun", "प्रस्तराः", "प्रस्तरस्य", "प्रस्तराय", "", "a flat surface"]) + let v = native_list_append(v, ["घूठि", "noun", "घूठि", "", "", "", "bow"]) + let v = native_list_append(v, ["भाषित", "noun", "भाषित", "", "", "", "speech language talk"]) + let v = native_list_append(v, ["गोस्वामिन्", "noun", "गोस्वामिन्", "", "", "", "the master or"]) + let v = native_list_append(v, ["प्रभाकर", "noun", "प्रभाकर", "", "", "", "‘light-maker’ the sun"]) + let v = native_list_append(v, ["𑀫𑀸𑀲", "noun", "𑀫𑀸𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["गुहा", "noun", "गुहाः॑", "गुहा॑याः", "गुहा॑यै", "", "hiding place cave"]) + let v = native_list_append(v, ["प्राची", "noun", "प्राच्यः॑", "प्राच्याः॑", "प्राच्यै॑", "", "the east"]) + let v = native_list_append(v, ["पर्द", "noun", "पर्दाः॑", "पर्द॑स्य", "पर्दा॑य", "", "a fart"]) + let v = native_list_append(v, ["उड्डयन", "noun", "उड्डयनानि", "उड्डयनस्य", "उड्डयनाय", "", "alternative form of"]) + let v = native_list_append(v, ["लवंग", "noun", "लवंग", "", "", "", "misspelling of लवङ्ग"]) + let v = native_list_append(v, ["जटायु", "noun", "जटायवः", "जटायोः", "जटायवे", "", "bearded vulture lammergeier"]) + let v = native_list_append(v, ["माष", "noun", "माषाः॑", "माष॑स्य", "माषा॑य", "", "any Old World"]) + let v = native_list_append(v, ["मलपृष्ठ", "noun", "मलपृष्ठ", "", "", "", "the outer page"]) + let v = native_list_append(v, ["धर्मचक्र", "noun", "धर्मचक्राणि", "धर्मचक्रस्य", "धर्मचक्राय", "", "the dharmachakra the"]) + let v = native_list_append(v, ["𑀯𑀥𑀽", "noun", "𑀯𑀥𑀽", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀤𑁂𑀯𑀻", "noun", "𑀤𑁂𑀯𑀻", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["द्विप", "noun", "द्विपाः", "द्विपस्य", "द्विपाय", "", "elephant"]) + let v = native_list_append(v, ["विवेक", "noun", "विवेकाः", "विवेकस्य", "विवेकाय", "", "discrimination discernment"]) + let v = native_list_append(v, ["अक", "noun", "अका॑नि", "अक॑स्य", "अका॑य", "", "pain unhappiness"]) + let v = native_list_append(v, ["अत्क", "noun", "अत्काः॑", "अत्क॑स्य", "अत्का॑य", "", "cloak garment"]) + let v = native_list_append(v, ["सकार", "noun", "सकाराः", "सकारस्य", "सकाराय", "", "the letter and"]) + let v = native_list_append(v, ["अजाजि", "noun", "अजाजि", "", "", "", "cumin seed"]) + let v = native_list_append(v, ["अरङ्यायतन​", "noun", "अरङ्यायतन​", "", "", "", "hermitage"]) + let v = native_list_append(v, ["हरीतकी", "noun", "हरीतकी", "", "", "", "chebulic myrobalan Terminalia"]) + let v = native_list_append(v, ["अरुणर्जु", "noun", "अरुणर्जु", "", "", "", "Hygrophila"]) + let v = native_list_append(v, ["आर्यमार्ग", "noun", "आर्यमार्ग", "", "", "", "way of the"]) + let v = native_list_append(v, ["आलेपन​", "noun", "आलेपन​", "", "", "", "salve"]) + let v = native_list_append(v, ["अवत्रापिन्", "noun", "अवत्रापिन्", "", "", "", "a modest person"]) + let v = native_list_append(v, ["अनामय", "noun", "अनामयानि", "अनामयस्य", "अनामयाय", "", "health"]) + let v = native_list_append(v, ["संकलन", "noun", "संकलनानि", "संकलनस्य", "संकलनाय", "", "joining or adding"]) + let v = native_list_append(v, ["संवेग", "noun", "संवेगाः", "संवेगस्य", "संवेगाय", "", "violent agitation excitement"]) + let v = native_list_append(v, ["लक्षम्", "noun", "लक्षम्", "", "", "", "characteristic"]) + let v = native_list_append(v, ["अव्याकृत", "noun", "अव्याकृत", "", "", "", "primordial matter from"]) + let v = native_list_append(v, ["ब्रध्न", "noun", "ब्र॒ध्नाः", "ब्र॒ध्नस्य॑", "ब्र॒ध्नाय॑", "", "the sun"]) + let v = native_list_append(v, ["मन्त्री", "noun", "मन्त्री", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["डिम्ब", "noun", "डिम्बाः", "डिम्बस्य", "डिम्बाय", "", "an egg"]) + let v = native_list_append(v, ["วาต", "noun", "วาต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["पत्त्र", "noun", "पत्त्रा॑णि", "पत्त्र॑स्य", "पत्त्रा॑य", "", "leaf of a"]) + let v = native_list_append(v, ["स्थावर", "noun", "स्थावराणि", "स्थावरस्य", "स्थावराय", "", "immovable property"]) + let v = native_list_append(v, ["वैद्यनाथ", "noun", "वैद्यनाथ", "", "", "", "lord of physicians"]) + let v = native_list_append(v, ["बिल्व", "noun", "बिल्वाः", "बिल्वस्य", "बिल्वाय", "", "bael fruit tree"]) + let v = native_list_append(v, ["मैत्री", "noun", "मै॒त्र्यः॑", "मै॒त्र्याः", "मै॒त्र्यै", "", "friendship"]) + let v = native_list_append(v, ["अनुग्रह", "noun", "अनुग्रह", "", "", "", "favour kindness showing"]) + let v = native_list_append(v, ["भिक्षुणी", "noun", "भिक्षुण्यः", "भिक्षुण्याः", "भिक्षुण्यै", "", "Buddhist nun"]) + let v = native_list_append(v, ["वृकी", "noun", "वृ॒क्यः॑", "वृ॒क्यः॑", "वृ॒क्ये॑", "", "a she-wolf"]) + let v = native_list_append(v, ["पुवस्", "noun", "पुवां॑सि", "पुव॑सः", "पुव॑से", "", "purulent matter pus"]) + let v = native_list_append(v, ["मकक", "noun", "मक॑काः", "मक॑कस्य", "मक॑काय", "", "some sort of"]) + let v = native_list_append(v, ["कशप्लक", "noun", "कश॑प्लकाः", "कश॑प्लकस्य", "कश॑प्लकाय", "", "the buttocks or"]) + let v = native_list_append(v, ["जंहस्", "noun", "जंहां॑सि", "जंह॑सः", "जंह॑से", "", "moving going striding"]) + let v = native_list_append(v, ["पुद्गल", "noun", "पुद्गलाः", "पुद्गलस्य", "पुद्गलाय", "", "the body"]) + let v = native_list_append(v, ["अंशुमती", "noun", "अंशुमती", "", "", "", "Desmodium gangeticum"]) + let v = native_list_append(v, ["अशैक्षमार्ग", "noun", "अशैक्षमार्गाः", "अशैक्षमार्गस्य", "अशैक्षमार्गाय", "", "the path of"]) + let v = native_list_append(v, ["अशैक्ष", "noun", "अशैक्ष", "", "", "", "one no longer"]) + let v = native_list_append(v, ["अश्रद्ध​", "noun", "अश्रद्ध​", "", "", "", "unbeliever"]) + let v = native_list_append(v, ["आश्लेषा", "noun", "आश्लेषा", "", "", "", "Cancer constellation"]) + let v = native_list_append(v, ["अश्वगन्ध", "noun", "अश्वगन्ध", "", "", "", "ashwagandha"]) + let v = native_list_append(v, ["कर्तनी", "noun", "कर्तन्यः", "कर्तन्याः", "कर्तन्यै", "", "scissors"]) + let v = native_list_append(v, ["ស្វគ្គ៌", "noun", "ស្វគ្គ៌", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ទាស", "noun", "ទាស", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["និត្យ", "noun", "និត្យ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["សំបទ៑", "noun", "សំបទ៑", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["सम्पद्", "noun", "स॒म्पदः॑", "स॒म्पदः॑", "स॒म्पदे॑", "", "success fulfilment"]) + let v = native_list_append(v, ["យាតនា", "noun", "យាតនា", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["यातना", "noun", "यातनाः", "यातनायाः", "यातनायै", "", "torment agony"]) + let v = native_list_append(v, ["ភវក្ឞយ", "noun", "ភវក្ឞយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["भवक्षय", "noun", "भवक्षयाः", "भवक्षयस्य", "भवक्षयाय", "", "end of existence"]) + let v = native_list_append(v, ["धीता", "noun", "धीताः", "धीतायाः", "धीतायै", "", "daughter Buddh."]) + let v = native_list_append(v, ["गुह्", "noun", "गुहः॑", "गु॒हः", "गु॒हे", "", "a hiding place"]) + let v = native_list_append(v, ["भूपति", "noun", "भू॒पत॑यः", "भू॒पतेः॑", "भू॒पत॑ये", "", "lord of the"]) + let v = native_list_append(v, ["वयुन", "noun", "व॒युना॑नि", "व॒युन॑स्य", "व॒युना॑य", "", "wisdom"]) + let v = native_list_append(v, ["परस्वत्", "noun", "परस्वत्", "", "", "", "rhinoceros"]) + let v = native_list_append(v, ["केले", "noun", "केले", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["असे", "noun", "असे", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["शिरोपधान", "noun", "शिरोपधानानि", "शिरोपधानस्य", "शिरोपधानाय", "", "pillow"]) + let v = native_list_append(v, ["फेनक", "noun", "फेनकाः", "फेनकस्य", "फेनकाय", "", "a lathering substance"]) + let v = native_list_append(v, ["ध्रुति", "noun", "ध्रुत॑यः", "ध्रुतेः॑", "ध्रुत॑ये", "", "misleading seduction deception"]) + let v = native_list_append(v, ["मियेध", "noun", "मि॒येधाः॑", "मि॒येध॑स्य", "मि॒येधा॑य", "", "sacrificial oblation offering"]) + let v = native_list_append(v, ["ओदन", "noun", "ओ॒द॒नाः", "ओ॒द॒नस्य॑", "ओ॒द॒नाय॑", "", "grain mashed and"]) + let v = native_list_append(v, ["साढृ", "noun", "साढा॑रः", "साढुः॑", "साढ्रे॑", "", "a conqueror"]) + let v = native_list_append(v, ["साळ्हृ", "noun", "साळ्हा॑रः", "साळ्हुः॑", "साढ्रे॑", "", "a victor conqueror"]) + let v = native_list_append(v, ["मयस्", "noun", "मयां॑सि", "मय॑सः", "मय॑से", "", "pleasure enjoyment refreshment"]) + let v = native_list_append(v, ["वकार", "noun", "वकाराः", "वकारस्य", "वकाराय", "", "The name of"]) + let v = native_list_append(v, ["छिद्र", "noun", "छि॒द्राणि॑", "छि॒द्रस्य॑", "छि॒द्राय॑", "", "hole slit cleft"]) + let v = native_list_append(v, ["नय", "noun", "नयाः", "नयस्य", "नयाय", "", "leading of an"]) + let v = native_list_append(v, ["स्रुव", "noun", "स्रुव", "", "", "", "a small wooden"]) + let v = native_list_append(v, ["मण्डूक", "noun", "म॒ण्डूकाः॑", "म॒ण्डूक॑स्य", "म॒ण्डूका॑य", "", "frog"]) + let v = native_list_append(v, ["उर्वरा", "noun", "उ॒र्वराः॑", "उ॒र्वरा॑याः", "उ॒र्वरा॑यै", "", "fertile soil field"]) + let v = native_list_append(v, ["ऋश", "noun", "ऋशाः॑", "ऋश॑स्य", "ऋशा॑य", "", "a stag the"]) + let v = native_list_append(v, ["जातिफल", "noun", "जातिफलानि", "जातिफलस्य", "जातिफलाय", "", "nutmeg Myristica fragrans"]) + let v = native_list_append(v, ["योद्धृ", "noun", "योद्धारः", "योद्धुः", "योद्ध्रे", "", "a fighter warrior"]) + let v = native_list_append(v, ["हस्तत्राण", "noun", "हस्तत्राणानि", "हस्तत्राणस्य", "हस्तत्राणाय", "", "hand glove"]) + let v = native_list_append(v, ["करवस्त्र", "noun", "करवस्त्राणि", "करवस्त्रस्य", "करवस्त्राय", "", "handkerchief"]) + let v = native_list_append(v, ["भिण्डा", "noun", "भिण्डाः", "भिण्डायाः", "भिण्डायै", "", "okra"]) + let v = native_list_append(v, ["आलुक", "noun", "आलुकाः", "आलुकस्य", "आलुकाय", "", "a kind of"]) + let v = native_list_append(v, ["पुष्पशाक", "noun", "पुष्पशाकाः", "पुष्पशाकस्य", "पुष्पशाकाय", "", "“the flower vegetable”"]) + let v = native_list_append(v, ["केम्बुक", "noun", "केम्बुकानि", "केम्बुकस्य", "केम्बुकाय", "", "cabbage"]) + let v = native_list_append(v, ["कपिशाक", "noun", "कपिशाकाः", "कपिशाकस्य", "कपिशाकाय", "", "broccoli"]) + let v = native_list_append(v, ["अलाबु", "noun", "अ॒लाब॑वः", "अ॒लाबोः॑", "अ॒लाब॑वे", "", "the bottle gourd"]) + let v = native_list_append(v, ["कोशवती", "noun", "कोशवत्यः", "कोशवत्याः", "कोशवत्यै", "", "ridge gourd"]) + let v = native_list_append(v, ["पटोल", "noun", "पटोलाः", "पटोलस्य", "पटोलाय", "", "pointed gourd Trichosanthes"]) + let v = native_list_append(v, ["कुष्माण्ड", "noun", "कुष्माण्डाः", "कुष्माण्डस्य", "कुष्माण्डाय", "", "pumpkin"]) + let v = native_list_append(v, ["पालङ्की", "noun", "पालङ्क्यः", "पालङ्क्याः", "पालङ्क्यै", "", "Indian spinach Beta"]) + let v = native_list_append(v, ["वातिङ्गण", "noun", "वातिङ्गणाः", "वातिङ्गणस्य", "वातिङ्गणाय", "", "aubergine eggplant"]) + let v = native_list_append(v, ["रक्तफल", "noun", "रक्तफलानि", "रक्तफलस्य", "रक्तफलाय", "", "tomato"]) + let v = native_list_append(v, ["शैम्ब्य", "noun", "शैम्ब्याः", "शैम्ब्यस्य", "शैम्ब्याय", "", "green beans"]) + let v = native_list_append(v, ["कर्कटिका", "noun", "कर्कटिकाः", "कर्कटिकायाः", "कर्कटिकायै", "", "cucumber"]) + let v = native_list_append(v, ["भशिरा", "noun", "भशिराः", "भशिरायाः", "भशिरायै", "", "beetroot"]) + let v = native_list_append(v, ["धानेयक", "noun", "धानेयकानि", "धानेयकस्य", "धानेयकाय", "", "coriander"]) + let v = native_list_append(v, ["मूलिका", "noun", "मूलिकाः", "मूलिकायाः", "मूलिकायै", "", "radish"]) + let v = native_list_append(v, ["हरेणु", "noun", "हरेणवः", "हरेणोः", "हरेणवे", "", "a kind of"]) + let v = native_list_append(v, ["छत्रक", "noun", "छत्रक", "", "", "", "misspelling of छत्त्रक"]) + let v = native_list_append(v, ["मेथिका", "noun", "मेथिकाः", "मेथिकायाः", "मेथिकायै", "", "fenugreek methi"]) + let v = native_list_append(v, ["कारवेल्ल", "noun", "कारवेल्लाः", "कारवेल्लस्य", "कारवेल्लाय", "", "bitter melon or"]) + let v = native_list_append(v, ["निम्बूक", "noun", "निम्बूकाः", "निम्बूकस्य", "निम्बूकाय", "", "a common lime"]) + let v = native_list_append(v, ["गृञ्जन", "noun", "गृञ्जनानि", "गृञ्जनस्य", "गृञ्जनाय", "", "turnip"]) + let v = native_list_append(v, ["वर्वट", "noun", "वर्वट", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["राजमाष", "noun", "राजमाषाः", "राजमाषस्य", "राजमाषाय", "", "kidney beans"]) + let v = native_list_append(v, ["चण", "noun", "चणाः", "चणस्य", "चणाय", "", "gram chickpea Cicer"]) + let v = native_list_append(v, ["टिण्डिश", "noun", "टिण्डिशाः", "टिण्डिशस्य", "टिण्डिशाय", "", "Tinda or apple"]) + let v = native_list_append(v, ["न्यून", "noun", "न्यू॑नानि", "न्यू॑नस्य", "न्यू॑नाय", "", "vulva"]) + let v = native_list_append(v, ["मांस्", "noun", "मांस्", "", "", "", "flesh meat"]) + let v = native_list_append(v, ["वृक्क", "noun", "वृ॒क्काः", "वृ॒क्कस्य॑", "वृ॒क्काय॑", "", "kidney"]) + let v = native_list_append(v, ["बन्धन", "noun", "बन्ध॑नानि", "बन्ध॑नस्य", "बन्ध॑नाय", "", "a bond fetter"]) + let v = native_list_append(v, ["वैष्णव", "noun", "वैष्णव", "", "", "", "a worshipper of"]) + let v = native_list_append(v, ["शैव", "noun", "शैवाः", "शैवस्य", "शैवाय", "", "a worshipper of"]) + let v = native_list_append(v, ["कौशलम्", "noun", "कौशलम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["वाताद", "noun", "वातादाः", "वातादस्य", "वातादाय", "", "air-eater a kind"]) + let v = native_list_append(v, ["हेळ", "noun", "हेळाः॑", "हेळ॑स्य", "हेळा॑य", "", "anger passion hatred"]) + let v = native_list_append(v, ["व्यजन", "noun", "व्यजनानि", "व्यजनस्य", "व्यजनाय", "", "a palm-leaf or"]) + let v = native_list_append(v, ["शल्यक्रिया", "noun", "शल्यक्रियाः", "शल्यक्रियायाः", "शल्यक्रियायै", "", "surgery"]) + let v = native_list_append(v, ["शल्यकार", "noun", "शल्यकाराः", "शल्यकारस्य", "शल्यकाराय", "", "surgeon"]) + let v = native_list_append(v, ["आसन्द", "noun", "आसन्दाः", "आसन्दस्य", "आसन्दाय", "", "chair"]) + let v = native_list_append(v, ["गोलदीप", "noun", "गोलदीपाः", "गोलदीपस्य", "गोलदीपाय", "", "bulb"]) + let v = native_list_append(v, ["दण्डदीप", "noun", "दण्डदीपाः", "दण्डदीपस्य", "दण्डदीपाय", "", "fluorescent lamp tubelight"]) + let v = native_list_append(v, ["करदीप", "noun", "करदीपाः", "करदीपस्य", "करदीपाय", "", "torch"]) + let v = native_list_append(v, ["शाक", "noun", "शाकाः", "शाकस्य", "शाकाय", "", "a vegetable greens"]) + let v = native_list_append(v, ["अङ्कनी", "noun", "अङ्कन्यः", "अङ्कन्याः", "अङ्कन्यै", "", "pencil"]) + let v = native_list_append(v, ["मसि", "noun", "मसयः", "मसेः", "मसये", "", "alternative form of"]) + let v = native_list_append(v, ["मसी", "noun", "मस्यः", "मस्याः", "मस्यै", "", "alternative form of"]) + let v = native_list_append(v, ["मषी", "noun", "मष्यः", "मष्याः", "मष्यै", "", "alternative form of"]) + let v = native_list_append(v, ["मसिपात्र", "noun", "मसिपात्राणि", "मसिपात्रस्य", "मसिपात्राय", "", "inkpot"]) + let v = native_list_append(v, ["मसीपात्र", "noun", "मसीपात्राणि", "मसीपात्रस्य", "मसीपात्राय", "", "alternative form of"]) + let v = native_list_append(v, ["मषिपात्र", "noun", "मषिपात्राणि", "मषिपात्रस्य", "मषिपात्राय", "", "alternative form of"]) + let v = native_list_append(v, ["मषीपात्र", "noun", "मषीपात्राणि", "मषीपात्रस्य", "मषीपात्राय", "", "alternative form of"]) + let v = native_list_append(v, ["लुम्बिनी", "noun", "लुम्बिनी", "", "", "", "Lumbini a pilgrimage"]) + let v = native_list_append(v, ["वचा", "noun", "वचा", "", "", "", "sweet flag Acorus"]) + let v = native_list_append(v, ["नापित", "noun", "नापित", "", "", "", "barber"]) + let v = native_list_append(v, ["तिन्दिश", "noun", "तिन्दिश", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["जवा", "noun", "जवाः", "जवायाः", "जवायै", "", "rose more specifically"]) + let v = native_list_append(v, ["आवर्त", "noun", "आवर्ताः", "आवर्तस्य", "आवर्ताय", "", "whirlpool"]) + let v = native_list_append(v, ["धन्वन्", "noun", "धन्वा॑नि", "धन्व॑नः", "धन्व॑ने", "", "a bow"]) + let v = native_list_append(v, ["आगार", "noun", "आ॒गा॒राणि॑", "आ॒गा॒रस्य॑", "आ॒गा॒राय॑", "", "apartment house dwelling"]) + let v = native_list_append(v, ["स्नानागार", "noun", "स्नानागाराणि", "स्नानागारस्य", "स्नानागाराय", "", "bathroom"]) + let v = native_list_append(v, ["शयन", "noun", "शय॑नानि", "शय॑नस्य", "शय॑नाय", "", "the act of"]) + let v = native_list_append(v, ["शयनागार", "noun", "शयनागाराणि", "शयनागारस्य", "शयनागाराय", "", "bedroom dormitory"]) + let v = native_list_append(v, ["सुनीत", "noun", "सुनीतानि", "सुनीतस्य", "सुनीताय", "", "good or wise"]) + let v = native_list_append(v, ["वरस्", "noun", "वरां॑सि", "वर॑सः", "वर॑से", "", "width breadth expanse"]) + let v = native_list_append(v, ["सव्य", "noun", "स॒व्याः", "स॒व्यस्य॑", "स॒व्याय॑", "", "the left arm"]) + let v = native_list_append(v, ["पालिका", "noun", "पालिकाः", "पालिकायाः", "पालिकायै", "", "protector feminine"]) + let v = native_list_append(v, ["बन्दिन्", "noun", "बन्दिनः", "बन्दिनः", "बन्दिने", "", "alternative form of"]) + let v = native_list_append(v, ["कश्यपमेरु", "noun", "कश्यपमेरवः", "कश्यपमेरोः", "कश्यपमेरवे", "", "Kashmir"]) + let v = native_list_append(v, ["घ्रंस", "noun", "घ्रं॒साः", "घ्रं॒सस्य॑", "घ्रं॒साय॑", "", "heat of the"]) + let v = native_list_append(v, ["युध्म", "noun", "यु॒ध्माः", "यु॒ध्मस्य॑", "यु॒ध्माय॑", "", "warrior hero combatant"]) + let v = native_list_append(v, ["कदली", "noun", "कदल्यः", "कदल्याः", "कदल्यै", "", "banana"]) + let v = native_list_append(v, ["बन्दिनी", "noun", "बन्दिन्यः", "बन्दिन्याः", "बन्दिन्यै", "", "prisoner feminine"]) + let v = native_list_append(v, ["लोहित", "noun", "लोहि॑ताः", "लोहि॑तस्य", "लोहि॑ताय", "", "blood"]) + let v = native_list_append(v, ["शास्त्रिन्", "noun", "शास्त्रिणः", "शास्त्रिणः", "शास्त्रिणे", "", "learned in the"]) + let v = native_list_append(v, ["मन्त्रिणी", "noun", "मन्त्रिण्यः", "मन्त्रिण्याः", "मन्त्रिण्यै", "", "ministress feminine of"]) + let v = native_list_append(v, ["शास्त्रिणी", "noun", "शास्त्रिण्यः", "शास्त्रिण्याः", "शास्त्रिण्यै", "", "knower of the"]) + let v = native_list_append(v, ["सङ्गणक", "noun", "सङ्गणक", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["चक्रवर्तिन्", "noun", "चक्रवर्तिनः", "चक्रवर्तिनः", "चक्रवर्तिने", "", "chakravartin wheel-turner in"]) + let v = native_list_append(v, ["चक्रवर्तिनी", "noun", "चक्रवर्तिन्यः", "चक्रवर्तिन्याः", "चक्रवर्तिन्यै", "", "wheel-turner in reference"]) + let v = native_list_append(v, ["स्नात", "noun", "स्ना॒ताः", "स्ना॒तस्य॑", "स्ना॒ताय॑", "", "one whose religious"]) + let v = native_list_append(v, ["अन्तःकरण", "noun", "अन्तःकरण", "", "", "", "Antahkarana the totality"]) + let v = native_list_append(v, ["उपनेत्र", "noun", "उपनेत्राणि", "उपनेत्रस्य", "उपनेत्राय", "", "spectacles"]) + let v = native_list_append(v, ["सर्वनामन्", "noun", "सर्वनामानि", "सर्वनाम्नः", "सर्वनाम्ने", "", "pronoun"]) + let v = native_list_append(v, ["क्रेतृ", "noun", "क्रेतारः", "क्रेतुः", "क्रेत्रे", "", "buyer purchaser"]) + let v = native_list_append(v, ["विक्रेतृ", "noun", "विक्रेतारः", "विक्रेतुः", "विक्रेत्रे", "", "seller one who"]) + let v = native_list_append(v, ["प्रत्याशिन्", "noun", "प्रत्याशिनः", "प्रत्याशिनः", "प्रत्याशिने", "", "candidate one who"]) + let v = native_list_append(v, ["प्रत्याशिनी", "noun", "प्रत्याशिन्यः", "प्रत्याशिन्याः", "प्रत्याशिन्यै", "", "candidate feminine"]) + let v = native_list_append(v, ["श्रावण", "noun", "श्रावणाः", "श्रावणस्य", "श्रावणाय", "", "a heretic L."]) + let v = native_list_append(v, ["भाद्र", "noun", "भाद्र", "", "", "", "Sixth month of"]) + let v = native_list_append(v, ["आश्विन", "noun", "आ॒श्वि॒नाः", "आ॒श्वि॒नस्य॑", "आ॒श्वि॒नाय॑", "", "month in the"]) + let v = native_list_append(v, ["मार्गशीर्ष", "noun", "मार्गशीर्षाः", "मार्गशीर्षस्य", "मार्गशीर्षाय", "", "ninth month of"]) + let v = native_list_append(v, ["अग्रहायण", "noun", "अग्रहायण", "", "", "", "ninth month of"]) + let v = native_list_append(v, ["पौष", "noun", "पौषाः", "पौषस्य", "पौषाय", "", "tenth month of"]) + let v = native_list_append(v, ["माघ", "noun", "मा॒घाः", "मा॒घस्य॑", "मा॒घाय॑", "", "eleventh month of"]) + let v = native_list_append(v, ["फाल्गुन", "noun", "फा॒ल्गु॒नाः", "फा॒ल्गु॒नस्य॑", "फा॒ल्गु॒नाय॑", "", "Phalguna twelfth month"]) + let v = native_list_append(v, ["अस्वीकार", "noun", "अस्वीकाराः", "अस्वीकारस्य", "अस्वीकाराय", "", "nonacquiescence dissent"]) + let v = native_list_append(v, ["अन्तःपात्र", "noun", "अन्तःपात्र", "", "", "", "the interior of"]) + let v = native_list_append(v, ["कर्गद", "noun", "कर्गदाः", "कर्गदस्य", "कर्गदाय", "", "paper"]) + let v = native_list_append(v, ["उत्पीठिका", "noun", "उत्पीठिकाः", "उत्पीठिकायाः", "उत्पीठिकायै", "", "table"]) + let v = native_list_append(v, ["अन्तर्जाल", "noun", "अन्तर्जालानि", "अन्तर्जालस्य", "अन्तर्जालाय", "", "internet"]) + let v = native_list_append(v, ["मश", "noun", "मशाः", "मशस्य", "मशाय", "", "mosquito"]) + let v = native_list_append(v, ["गर्भिणी", "noun", "ग॒र्भिण्यः॑", "ग॒र्भिण्याः॑", "ग॒र्भिण्यै॑", "", "a pregnant woman"]) + let v = native_list_append(v, ["दूरीकरण", "noun", "दूरीकरणानि", "दूरीकरणस्य", "दूरीकरणाय", "", "making distant removing"]) + let v = native_list_append(v, ["वैकुण्ठ", "noun", "वैकुण्ठ", "", "", "", "The paradise or"]) + let v = native_list_append(v, ["दायी", "noun", "दायी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["दायिनी", "noun", "दायिन्यः", "दायिन्याः", "दायिन्यै", "", "giver one who"]) + let v = native_list_append(v, ["संज्ञापद", "noun", "संज्ञापदानि", "संज्ञापदस्य", "संज्ञापदाय", "", "noun"]) + let v = native_list_append(v, ["साक्षी", "noun", "साक्षी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["रोगिन्", "noun", "रोगिणः", "रोगिणः", "रोगिणे", "", "ill one with"]) + let v = native_list_append(v, ["रोगिणी", "noun", "रोगिण्यः", "रोगिण्याः", "रोगिण्यै", "", "ill one with"]) + let v = native_list_append(v, ["योगिन्", "noun", "योगिनः", "योगिनः", "योगिने", "", "Yogi one who"]) + let v = native_list_append(v, ["योगिनी", "noun", "योगिन्यः", "योगिन्याः", "योगिन्यै", "", "Yogini one who"]) + let v = native_list_append(v, ["साक्षिन्", "noun", "साक्षिणः", "साक्षिणः", "साक्षिणे", "", "witness spectator"]) + let v = native_list_append(v, ["साक्षिणी", "noun", "साक्षिण्यः", "साक्षिण्याः", "साक्षिण्यै", "", "spectator witness feminine"]) + let v = native_list_append(v, ["मघ", "noun", "म॒घानि॑", "म॒घस्य॑", "म॒घाय॑", "", "wealth power"]) + let v = native_list_append(v, ["भौम", "noun", "भौम", "", "", "", "the planet Mars"]) + let v = native_list_append(v, ["अधिकारिन्", "noun", "अधिकारिणः", "अधिकारिणः", "अधिकारिणे", "", "official one with"]) + let v = native_list_append(v, ["अधिकारिणी", "noun", "अधिकारिण्यः", "अधिकारिण्याः", "अधिकारिण्यै", "", "official one with"]) + let v = native_list_append(v, ["उत्तराधिकारिन्", "noun", "उत्तराधिकारिणः", "उत्तराधिकारिणः", "उत्तराधिकारिणे", "", "successor"]) + let v = native_list_append(v, ["उत्तराधिकारिणी", "noun", "उत्तराधिकारिण्यः", "उत्तराधिकारिण्याः", "उत्तराधिकारिण्यै", "", "heir feminine"]) + let v = native_list_append(v, ["यात्रिन्", "noun", "यात्रिणः", "यात्रिणः", "यात्रिणे", "", "traveller one who"]) + let v = native_list_append(v, ["यात्रिणी", "noun", "यात्रिण्यः", "यात्रिण्याः", "यात्रिण्यै", "", "traveller one who"]) + let v = native_list_append(v, ["अपराधिनी", "noun", "अपराधिन्यः", "अपराधिन्याः", "अपराधिन्यै", "", "criminal one who"]) + let v = native_list_append(v, ["कालिका", "noun", "कालिकाः", "कालिकायाः", "कालिकायै", "", "name of a"]) + let v = native_list_append(v, ["कन्दुक", "noun", "कन्दुकानि", "कन्दुकस्य", "कन्दुकाय", "", "ball"]) + let v = native_list_append(v, ["पादकन्दुक", "noun", "पादकन्दुकाः", "पादकन्दुकस्य", "पादकन्दुकाय", "", "football the ball"]) + let v = native_list_append(v, ["पादकन्दुकक्रीडा", "noun", "पादकन्दुकक्रीडाः", "पादकन्दुकक्रीडायाः", "पादकन्दुकक्रीडायै", "", "football the game"]) + let v = native_list_append(v, ["भङ्ग", "noun", "भ॒ङ्गाः", "भ॒ङ्गस्य॑", "भ॒ङ्गाय॑", "", "breaking splitting dividing"]) + let v = native_list_append(v, ["विद्यार्थिन्", "noun", "विद्यार्थिनः", "विद्यार्थिनः", "विद्यार्थिने", "", "student one who"]) + let v = native_list_append(v, ["विद्यार्थिनी", "noun", "विद्यार्थिन्यः", "विद्यार्थिन्याः", "विद्यार्थिन्यै", "", "student one who"]) + let v = native_list_append(v, ["शिष्या", "noun", "शिष्याः", "शिष्यायाः", "शिष्यायै", "", "student disciple feminine"]) + let v = native_list_append(v, ["छत्र", "noun", "छत्राणि", "छत्रस्य", "छत्राय", "", "alternative spelling of"]) + let v = native_list_append(v, ["अभियन्ता", "noun", "अभियन्ता", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["अभियन्तृ", "noun", "अभियन्तारः", "अभियन्तुः", "अभियन्त्रे", "", "engineer"]) + let v = native_list_append(v, ["स्वेदन", "noun", "स्वेदनानि", "स्वेदनस्य", "स्वेदनाय", "", "the act of"]) + let v = native_list_append(v, ["स्वेदक", "noun", "स्वेदकाः", "स्वेदकस्य", "स्वेदकाय", "", "sweater something which"]) + let v = native_list_append(v, ["संन्यासिन्", "noun", "संन्यासिनः", "संन्यासिनः", "संन्यासिने", "", "ascetic one who"]) + let v = native_list_append(v, ["संन्यासिनी", "noun", "संन्यासिन्यः", "संन्यासिन्याः", "संन्यासिन्यै", "", "ascetic one who"]) + let v = native_list_append(v, ["स्वार्थ", "noun", "स्वार्थाः", "स्वार्थस्य", "स्वार्थाय", "", "selfishness meaning for"]) + let v = native_list_append(v, ["सौर्य", "noun", "सौर्याः", "सौर्यस्य", "सौर्याय", "", "Saturn regarded as"]) + let v = native_list_append(v, ["अगरु", "noun", "अगरवः", "अगरोः", "अगरवे", "", "agarwood"]) + let v = native_list_append(v, ["कपीश", "noun", "कपीशाः", "कपीशस्य", "कपीशाय", "", "a name of"]) + let v = native_list_append(v, ["केलि", "noun", "केलयः", "केलेः", "केलये", "", "play sport"]) + let v = native_list_append(v, ["तालक", "noun", "तालकानि", "तालकस्य", "तालकाय", "", "orpiment"]) + let v = native_list_append(v, ["मालिन्", "noun", "मालिनः", "मालिनः", "मालिने", "", "gardener florist"]) + let v = native_list_append(v, ["चन्द्रमः", "noun", "चन्द्रमः", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["चन्द्रमस्", "noun", "च॒न्द्रम॑सः", "च॒न्द्रम॑सः", "च॒न्द्रम॑से", "", "the deity of"]) + let v = native_list_append(v, ["चन्द्रमाः", "noun", "चन्द्रमाः", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["ऋणिनी", "noun", "ऋणिन्यः", "ऋणिन्याः", "ऋणिन्यै", "", "female debtor"]) + let v = native_list_append(v, ["सुखिन्", "noun", "सुखिनः", "सुखिनः", "सुखिने", "", "a religious ascetic"]) + let v = native_list_append(v, ["विद्वान्", "noun", "विद्वान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["विद्वांस्", "noun", "वि॒द्वांसः॑", "वि॒दुषः॑", "वि॒दुषे॑", "", "a wise man"]) + let v = native_list_append(v, ["दानिन्", "noun", "दानिनः", "दानिनः", "दानिने", "", "giver donor"]) + let v = native_list_append(v, ["दानिनी", "noun", "दानिन्यः", "दानिन्याः", "दानिन्यै", "", "giver donor feminine"]) + let v = native_list_append(v, ["वाटिका", "noun", "वाटिकाः", "वाटिकायाः", "वाटिकायै", "", "an enclosure garden"]) + let v = native_list_append(v, ["चमू", "noun", "च॒म्वः॑", "च॒म्वाः", "च॒म्वै", "", "a vessel or"]) + let v = native_list_append(v, ["परिग्रह", "noun", "प॒रि॒ग्र॒हाः", "प॒रि॒ग्र॒हस्य॑", "प॒रि॒ग्र॒हाय॑", "", "getting attaining acquisition"]) + let v = native_list_append(v, ["अपरिग्रह", "noun", "अपरिग्रहाः", "अपरिग्रहस्य", "अपरिग्रहाय", "", "greedlessness"]) + let v = native_list_append(v, ["लीला", "noun", "लीलाः", "लीलायाः", "लीलायै", "", "play sport diversion"]) + let v = native_list_append(v, ["प्रत्याहार", "noun", "प्रत्याहार", "", "", "", "withdrawal especially of"]) + let v = native_list_append(v, ["चित्तवृत्ति", "noun", "चित्तवृत्ति", "", "", "", "disposition or state"]) + let v = native_list_append(v, ["पीनस", "noun", "पीनसाः", "पीनसस्य", "पीनसाय", "", "cold affecting the"]) + let v = native_list_append(v, ["प्रतिश्याय", "noun", "प्रतिश्यायाः", "प्रतिश्यायस्य", "प्रतिश्यायाय", "", "cold affecting the"]) + let v = native_list_append(v, ["कल्प", "noun", "कल्पा॑नि", "कल्प॑स्य", "कल्पा॑य", "", "a kind of"]) + let v = native_list_append(v, ["कलिका", "noun", "कलिकाः", "कलिकायाः", "कलिकायै", "", "the sixteenth part"]) + let v = native_list_append(v, ["प्राणिन्", "noun", "प्रा॒णिनः॑", "प्रा॒णिनः॑", "प्रा॒णिने॑", "", "a living or"]) + let v = native_list_append(v, ["उपालम्भ", "noun", "उपालम्भाः", "उपालम्भस्य", "उपालम्भाय", "", "reproach censure abuse"]) + let v = native_list_append(v, ["नेत्रोपम", "noun", "नेत्रोपमाः", "नेत्रोपमस्य", "नेत्रोपमाय", "", "the almond tree"]) + let v = native_list_append(v, ["ईषद्वीर्य", "noun", "ईषद्वीर्याः", "ईषद्वीर्यस्य", "ईषद्वीर्याय", "", "the almond tree"]) + let v = native_list_append(v, ["वाताम", "noun", "वाताम", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["यौन", "noun", "यौनानि", "यौनस्य", "यौनाय", "", "matrimonial connection conjugal"]) + let v = native_list_append(v, ["योनी", "noun", "योन्यः॑", "योन्याः॑", "योन्यै॑", "", "alternative spelling of"]) + let v = native_list_append(v, ["संकल्पः", "noun", "संकल्पः", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["संकल्पौ", "noun", "संकल्पौ", "", "", "", "masculine nominative dual"]) + let v = native_list_append(v, ["संकल्पयोः", "noun", "संकल्पयोः", "", "", "", "masculine genitive dual"]) + let v = native_list_append(v, ["संकल्पाः", "noun", "संकल्पाः", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["संकल्पान्", "noun", "संकल्पान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["संकल्पैः", "noun", "संकल्पैः", "", "", "", "masculine instrumental plural"]) + let v = native_list_append(v, ["संकल्पेभ्यः", "noun", "संकल्पेभ्यः", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["संकल्पानाम्", "noun", "संकल्पानाम्", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["संकल्पेषु", "noun", "संकल्पेषु", "", "", "", "masculine locative plural"]) + let v = native_list_append(v, ["संकल्पम्", "noun", "संकल्पम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["संकल्पेन", "noun", "संकल्पेन", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["संकल्पाय", "noun", "संकल्पाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["संकल्पात्", "noun", "संकल्पात्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["संकल्पस्य", "noun", "संकल्पस्य", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["संकल्पे", "noun", "संकल्पे", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["शत्र्वोस्", "noun", "शत्र्वोस्", "", "", "", "masculine genitive dual"]) + let v = native_list_append(v, ["शत्रवस्", "noun", "शत्रवस्", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["शत्रुभ्यस्", "noun", "शत्रुभ्यस्", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["शत्रूणाम्", "noun", "शत्रूणाम्", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["शत्रुषु", "noun", "शत्रुषु", "", "", "", "masculine locative plural"]) + let v = native_list_append(v, ["शत्रून्", "noun", "शत्रून्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["शत्रुभिस्", "noun", "शत्रुभिस्", "", "", "", "masculine instrumental plural"]) + let v = native_list_append(v, ["शत्रुस्", "noun", "शत्रुस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["शत्रो", "noun", "शत्रो", "", "", "", "masculine vocative singular"]) + let v = native_list_append(v, ["शत्रुम्", "noun", "शत्रुम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["शत्रुणा", "noun", "शत्रुणा", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["शत्र्वा", "noun", "शत्र्वा", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["शत्रवे", "noun", "शत्रवे", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["शत्र्वे", "noun", "शत्र्वे", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["शत्रोस्", "noun", "शत्रोस्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["शत्र्वस्", "noun", "शत्र्वस्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["शत्रौ", "noun", "शत्रौ", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["बुभुक्षा", "noun", "बुभुक्षाः", "बुभुक्षायाः", "बुभुक्षायै", "", "desire of enjoying"]) + let v = native_list_append(v, ["संचालक", "noun", "संचालकाः", "संचालकस्य", "संचालकाय", "", "guide wrong reading"]) + let v = native_list_append(v, ["संचारक", "noun", "संचारकाः", "संचारकस्य", "संचारकाय", "", "a leader guide"]) + let v = native_list_append(v, ["व्यञ्चन", "noun", "व्यञ्चन", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["मस्", "noun", "मस्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["चन्द्रमास्", "noun", "चन्द्रमास्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["तैलम्", "noun", "तैलम्", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["सत्यताम्", "noun", "सत्यताम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["सत्यतया", "noun", "सत्यतया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["सत्यतायै", "noun", "सत्यतायै", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["सत्यतायाः", "noun", "सत्यतायाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सत्यतायाम्", "noun", "सत्यतायाम्", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["मूर्खतायाः", "noun", "मूर्खतायाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["राजमार्ग", "noun", "राजमार्गाः", "राजमार्गस्य", "राजमार्गाय", "", "highway royal or"]) + let v = native_list_append(v, ["दर्शनाय", "noun", "दर्शनाय", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["दूरता", "noun", "दूरताः", "दूरतायाः", "दूरतायै", "", "remoteness distance"]) + let v = native_list_append(v, ["दूरत्व", "noun", "दूरत्वानि", "दूरत्वस्य", "दूरत्वाय", "", "remoteness distance"]) + let v = native_list_append(v, ["असंख्येय", "noun", "अ॒स॒ङ्ख्ये॒यानि॑", "अ॒स॒ङ्ख्ये॒यस्य॑", "अ॒स॒ङ्ख्ये॒याय॑", "", "an innumerable multitude"]) + let v = native_list_append(v, ["प्राप्यक", "noun", "प्राप्यकाणि", "प्राप्यकस्य", "प्राप्यकाय", "", "bill"]) + let v = native_list_append(v, ["असी", "noun", "असी", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["त्राण", "noun", "त्राणानि", "त्राणस्य", "त्राणाय", "", "protecting preserving protection"]) + let v = native_list_append(v, ["खनित्र", "noun", "खनित्राणि", "खनित्रस्य", "खनित्राय", "", "an instrument for"]) + let v = native_list_append(v, ["खनित्रस्य", "noun", "खनित्रस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["खनित्रेण", "noun", "खनित्रेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["खनित्रे", "noun", "खनित्रे", "", "", "", "inflection of खनित्र"]) + let v = native_list_append(v, ["खनित्रम्", "noun", "खनित्रम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["खनित्रयोः", "noun", "खनित्रयोः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["खनित्राणि", "noun", "खनित्राणि", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["खनित्रैः", "noun", "खनित्रैः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["भगदत्त", "noun", "भगदत्त", "भगदत्तस्य", "भगदत्ताय", "", "Bhagadatta a mythological"]) + let v = native_list_append(v, ["आजि", "noun", "आ॒जयः॑", "आ॒जेः", "आ॒जये॑", "", "match competition"]) + let v = native_list_append(v, ["क्रियाविशेषण", "noun", "क्रियाविशेषणानि", "क्रियाविशेषणस्य", "क्रियाविशेषणाय", "", "that which defines"]) + let v = native_list_append(v, ["अर्पण", "noun", "अर्पणानि", "अर्पणस्य", "अर्पणाय", "", "putting fixing"]) + let v = native_list_append(v, ["आकाशधातु", "noun", "आ॒का॒श॒धात॑वः", "आ॒का॒श॒धातोः॑", "आ॒का॒श॒धात॑वे", "", "element of space"]) + let v = native_list_append(v, ["आजिवीके", "noun", "आजिवीके", "", "", "", "Jainist religious mendicant"]) + let v = native_list_append(v, ["अञ्जनरस", "noun", "अञ्जनरस", "", "", "", "a preparation of"]) + let v = native_list_append(v, ["षण्मास", "noun", "षण्मासाः", "षण्मासस्य", "षण्मासाय", "", "a period of"]) + let v = native_list_append(v, ["प्रवृत्ति", "noun", "प्रवृत्तयः", "प्रवृत्तेः", "प्रवृत्तये", "", "moving forwards advance"]) + let v = native_list_append(v, ["दामन्", "noun", "दा॒मानः॑", "दा॒म्नः", "दा॒म्ने", "", "a giver donor"]) + let v = native_list_append(v, ["आत्मगुप्तफल्", "noun", "आत्मगुप्तफल्", "", "", "", "fruit of the"]) + let v = native_list_append(v, ["आत्मगुप्ता", "noun", "आत्मगुप्ता", "", "", "", "velvet bean"]) + let v = native_list_append(v, ["आत्मभाव​", "noun", "आत्मभाव​", "", "", "", "self-essence"]) + let v = native_list_append(v, ["भेद​", "noun", "भेद​", "", "", "", "contrast difference"]) + let v = native_list_append(v, ["आत्मवर्ग", "noun", "आत्मवर्ग", "", "", "", "a chapter of"]) + let v = native_list_append(v, ["तरणताल", "noun", "तरणतालाः", "तरणतालस्य", "तरणतालाय", "", "swimming pool"]) + let v = native_list_append(v, ["जाबालिपुर", "noun", "जाबालिपुराणि", "जाबालिपुरस्य", "जाबालिपुराय", "", "Jabalpur Jubbulpore a"]) + let v = native_list_append(v, ["डमरुक", "noun", "डमरुक", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["पादत्र", "noun", "पादत्राः", "पादत्रस्य", "पादत्राय", "", "alternative spelling of"]) + let v = native_list_append(v, ["आनापानस्मृति", "noun", "आनापानस्मृतयः", "आनापानस्मृतेः", "आनापानस्मृतये", "", "mindfulness of breathing"]) + let v = native_list_append(v, ["पादत्राण", "noun", "पादत्राणानि", "पादत्राणस्य", "पादत्राणाय", "", "shoe"]) + let v = native_list_append(v, ["पादत्राणम्", "noun", "पादत्राणम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["पादत्राणेन", "noun", "पादत्राणेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["पादत्राणस्य", "noun", "पादत्राणस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["पादत्राणानि", "noun", "पादत्राणानि", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["पादत्राणैः", "noun", "पादत्राणैः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["पादत्राणेषु", "noun", "पादत्राणेषु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["राज्ञीषु", "noun", "राज्ञीषु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["राज्ञीभिस्", "noun", "राज्ञीभिस्", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["राज्ञ्यः", "noun", "राज्ञ्यः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["राज्ञीभ्यस्", "noun", "राज्ञीभ्यस्", "", "", "", "dative/ablative plural of"]) + let v = native_list_append(v, ["राज्ञीस्", "noun", "राज्ञीस्", "", "", "", "feminine nominative plural"]) + let v = native_list_append(v, ["राज्ञ्यौ", "noun", "राज्ञ्यौ", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["राज्ञ्योः", "noun", "राज्ञ्योः", "", "", "", "feminine genitive dual"]) + let v = native_list_append(v, ["राज्ञि", "noun", "राज्ञि", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["राज्ञीम्", "noun", "राज्ञीम्", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["राज्ञ्या", "noun", "राज्ञ्या", "", "", "", "feminine instrumental singular"]) + let v = native_list_append(v, ["राज्ञ्यै", "noun", "राज्ञ्यै", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["राज्ञ्याः", "noun", "राज्ञ्याः", "", "", "", "feminine ablative singular"]) + let v = native_list_append(v, ["तैलेन", "noun", "तैलेन", "", "", "", "neuter instrumental singular"]) + let v = native_list_append(v, ["तैलाय", "noun", "तैलाय", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["तैलात्", "noun", "तैलात्", "", "", "", "neuter ablative singular"]) + let v = native_list_append(v, ["तैलस्य", "noun", "तैलस्य", "", "", "", "neuter genitive singular"]) + let v = native_list_append(v, ["तैले", "noun", "तैले", "", "", "", "neuter locative singular"]) + let v = native_list_append(v, ["खेदः", "noun", "खेदः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["खेदम्", "noun", "खेदम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["खेदेन", "noun", "खेदेन", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["खेदाय", "noun", "खेदाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["खेदात्", "noun", "खेदात्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["खेदस्य", "noun", "खेदस्य", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["खेदे", "noun", "खेदे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["खेदेषु", "noun", "खेदेषु", "", "", "", "masculine locative plural"]) + let v = native_list_append(v, ["खेदानाम्", "noun", "खेदानाम्", "", "", "", "masculine genitive plural"]) + let v = native_list_append(v, ["खेदैः", "noun", "खेदैः", "", "", "", "masculine instrumental plural"]) + let v = native_list_append(v, ["खेदान्", "noun", "खेदान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["खेदेभ्यः", "noun", "खेदेभ्यः", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["खेदाः", "noun", "खेदाः", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["क्रौर्य", "noun", "क्रौर्य", "", "", "", "cruelty"]) + let v = native_list_append(v, ["कृपायाम्", "noun", "कृपायाम्", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["कृपायै", "noun", "कृपायै", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["कृपाम्", "noun", "कृपाम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["कृपायाः", "noun", "कृपायाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["कृपाः", "noun", "कृपाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["कृपाभिः", "noun", "कृपाभिः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["अभयारण्य", "noun", "अभयारण्यानि", "अभयारण्यस्य", "अभयारण्याय", "", "wildlife sanctuary"]) + let v = native_list_append(v, ["भल्लातक", "noun", "भल्लातकाः", "भल्लातकस्य", "भल्लातकाय", "", "the marking nut"]) + let v = native_list_append(v, ["भल्लाक", "noun", "भल्लाक", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["भल्लात", "noun", "भल्लात", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["अतिभूमि", "noun", "अतिभूमि", "", "", "", "culmination excess"]) + let v = native_list_append(v, ["अतिपात", "noun", "अतिपाताः", "अतिपातस्य", "अतिपाताय", "", "lapse neglect"]) + let v = native_list_append(v, ["अत्याहित", "noun", "अत्याहित", "", "", "", "calamity disaster"]) + let v = native_list_append(v, ["अनुताप", "noun", "अनुतापाः", "अनुतापस्य", "अनुतापाय", "", "regret remorse repentance"]) + let v = native_list_append(v, ["ग्रन्थि", "noun", "ग्र॒न्थयः॑", "ग्र॒न्थेः", "ग्र॒न्थये॑", "", "knot"]) + let v = native_list_append(v, ["आयुध", "noun", "आयुधानि", "आयुधस्य", "आयुधाय", "", "weapon"]) + let v = native_list_append(v, ["आहितुण्डिक", "noun", "आहितुण्डिक", "", "", "", "snake charmer"]) + let v = native_list_append(v, ["उपराग", "noun", "उपराग", "", "", "", "eclipse"]) + let v = native_list_append(v, ["असु", "noun", "अस॑वः", "असोः॑", "अस॑वे", "", "breath life"]) + let v = native_list_append(v, ["अस्वास्थ्य", "noun", "अस्वास्थ्य", "", "", "", "discomfort illness sickness"]) + let v = native_list_append(v, ["आपतन", "noun", "आपतन", "", "", "", "occurrence"]) + let v = native_list_append(v, ["आपन्नसत्त्वा", "noun", "आपन्नसत्त्वा", "", "", "", "pregnant woman"]) + let v = native_list_append(v, ["दूरभाषः", "noun", "दूरभाषः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["दूरभाषम्", "noun", "दूरभाषम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["दूरभाषेण", "noun", "दूरभाषेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["दूरभाषाय", "noun", "दूरभाषाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["दूरभाषात्", "noun", "दूरभाषात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["दूरभाषस्य", "noun", "दूरभाषस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["दूरभाषे", "noun", "दूरभाषे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["दूरभाषेषु", "noun", "दूरभाषेषु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["दूरभाषाः", "noun", "दूरभाषाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["दूरभाषौ", "noun", "दूरभाषौ", "", "", "", "nominative/vocative/accusative dual of"]) + let v = native_list_append(v, ["दृढबीज", "noun", "दृढबीजाः", "दृढबीजस्य", "दृढबीजाय", "", "gum arabic tree"]) + let v = native_list_append(v, ["सादः", "noun", "सादः", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["सादम्", "noun", "सादम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["सादेन", "noun", "सादेन", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["सादाय", "noun", "सादाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["सादात्", "noun", "सादात्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["सादस्य", "noun", "सादस्य", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["सादे", "noun", "सादे", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["सादाः", "noun", "सादाः", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["सादेभ्यः", "noun", "सादेभ्यः", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["सादान्", "noun", "सादान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["सादेषु", "noun", "सादेषु", "", "", "", "masculine locative plural"]) + let v = native_list_append(v, ["सादैः", "noun", "सादैः", "", "", "", "masculine instrumental plural"]) + let v = native_list_append(v, ["धनिन्", "noun", "धनिनः", "धनिनः", "धनिने", "", "a rich man"]) + let v = native_list_append(v, ["हार्द", "noun", "हार्दानि", "हार्दस्य", "हार्दाय", "", "love kindness affection"]) + let v = native_list_append(v, ["वेदान्त", "noun", "वेदान्ताः", "वेदान्तस्य", "वेदान्ताय", "", "Vedanta Puranas Upanishad"]) + let v = native_list_append(v, ["नाट्य", "noun", "नाट्यानि", "नाट्यस्य", "नाट्याय", "", "dance"]) + let v = native_list_append(v, ["हलदी", "noun", "हलद्यः", "हलद्याः", "हलद्यै", "", "turmeric Curcuma longa"]) + let v = native_list_append(v, ["हलद्दी", "noun", "हलद्द्यः", "हलद्द्याः", "हलद्द्यै", "", "alternative spelling of"]) + let v = native_list_append(v, ["हलदीका", "noun", "हलदीकाः", "हलदीकायाः", "हलदीकायै", "", "alternative spelling of"]) + let v = native_list_append(v, ["हलदिका", "noun", "हलदिकाः", "हलदिकायाः", "हलदिकायै", "", "alternative spelling of"]) + let v = native_list_append(v, ["विषकन्या", "noun", "विषकन्याः", "विषकन्यायाः", "विषकन्यायै", "", "Visha Kanya a"]) + let v = native_list_append(v, ["योषित्", "noun", "योषित्", "", "", "", "girl young woman"]) + let v = native_list_append(v, ["प्रयुज्", "noun", "प्रयुज्", "", "", "", "acquisition"]) + let v = native_list_append(v, ["संशय", "noun", "संशयाः", "संशयस्य", "संशयाय", "", "doubt uncertainty irresolution"]) + let v = native_list_append(v, ["पार्श्व", "noun", "पा॒र्श्वानि॑", "पा॒र्श्वस्य॑", "पा॒र्श्वाय॑", "", "the region of"]) + let v = native_list_append(v, ["क्रीडक", "noun", "क्री॒डकाः॑", "क्री॒डक॑स्य", "क्री॒डका॑य", "", "one who sports"]) + let v = native_list_append(v, ["क्रीडिका", "noun", "क्रीडिकाः", "क्रीडिकायाः", "क्रीडिकायै", "", "a female player"]) + let v = native_list_append(v, ["क्रीडाङ्गण", "noun", "क्रीडाङ्गण", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["क्रीडाङ्गन", "noun", "क्रीडाङ्गनानि", "क्रीडाङ्गनस्य", "क्रीडाङ्गनाय", "", "playground"]) + let v = native_list_append(v, ["लोभ", "noun", "लोभाः", "लोभस्य", "लोभाय", "", "perplexity confusion"]) + let v = native_list_append(v, ["बज", "noun", "ब॒जाः", "ब॒जस्य॑", "ब॒जाय॑", "", "name of a"]) + let v = native_list_append(v, ["वेट", "noun", "वेटाः", "वेटस्य", "वेटाय", "", "toothbrush tree Salvadora"]) + let v = native_list_append(v, ["अनङ्ग", "noun", "अ॒न॒ङ्गानि॑", "अ॒न॒ङ्गस्य॑", "अ॒न॒ङ्गाय॑", "", "the ether air"]) + let v = native_list_append(v, ["उड्डीयानबन्ध", "noun", "उड्डीयानबन्ध", "", "", "", "abdominal lock"]) + let v = native_list_append(v, ["क्याकु", "noun", "क्याकूनि", "क्याकुनः", "क्याकुने", "", "fungus"]) + let v = native_list_append(v, ["कद", "noun", "कदाः", "कदस्य", "कदाय", "", "cloud"]) + let v = native_list_append(v, ["कदः", "noun", "कदः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शिफा", "noun", "शिफाः", "शिफायाः", "शिफायै", "", "a fibrous or"]) + let v = native_list_append(v, ["शिफ", "noun", "शिफाः", "शिफस्य", "शिफाय", "", "alternative spelling of"]) + let v = native_list_append(v, ["गुलः", "noun", "गुलः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["गुलम्", "noun", "गुलम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["शिफाः", "noun", "शिफाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शिफः", "noun", "शिफः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शिफे", "noun", "शिफे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["वन्दिन्", "noun", "वन्दिनः", "वन्दिनः", "वन्दिने", "", "praiser bard herald"]) + let v = native_list_append(v, ["अभिषेक", "noun", "अ॒भि॒षे॒काः", "अ॒भि॒षे॒कस्य॑", "अ॒भि॒षे॒काय॑", "", "anointing inaugurating or"]) + let v = native_list_append(v, ["सेक", "noun", "सेकाः॑", "सेक॑स्य", "सेका॑य", "", "sprinkling irrigation moistening"]) + let v = native_list_append(v, ["अभिनवगुप्त", "noun", "अभिनवगुप्ताः", "अभिनवगुप्तस्य", "अभिनवगुप्ताय", "", "Abhinavagupta 950 –"]) + let v = native_list_append(v, ["अभिज्ञान", "noun", "अभिज्ञानानि", "अभिज्ञानस्य", "अभिज्ञानाय", "", "recognition remembrance recollection"]) + let v = native_list_append(v, ["फिरङ्ग", "noun", "फिरङ्ग", "फिरङ्गस्य", "फिरङ्गाय", "", "“the country of"]) + let v = native_list_append(v, ["कश", "noun", "कशाः॑", "कश॑स्य", "कशा॑य", "", "a species of"]) + let v = native_list_append(v, ["तनम्", "noun", "तनम्", "", "", "", "inflection of तन"]) + let v = native_list_append(v, ["तनेन", "noun", "तनेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["तनाय", "noun", "तनाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["तनात्", "noun", "तनात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["तनस्य", "noun", "तनस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["तने", "noun", "तने", "", "", "", "inflection of तन"]) + let v = native_list_append(v, ["तनयोः", "noun", "तनयोः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तनानि", "noun", "तनानि", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["तनैः", "noun", "तनैः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["लैङ्ग", "noun", "लैङ्गानि", "लैङ्गस्य", "लैङ्गाय", "", "name of a"]) + let v = native_list_append(v, ["तुखार", "noun", "तुखाराः", "तुखारस्य", "तुखाराय", "", "Tocharian any member"]) + let v = native_list_append(v, ["शिक्षिका", "noun", "शिक्षिकाः", "शिक्षिकायाः", "शिक्षिकायै", "", "a female teacher"]) + let v = native_list_append(v, ["शिक्षिकाम्", "noun", "शिक्षिकाम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["शिक्षिकया", "noun", "शिक्षिकया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["शिक्षिकायै", "noun", "शिक्षिकायै", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["शिक्षिकायाः", "noun", "शिक्षिकायाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शिक्षिके", "noun", "शिक्षिके", "", "", "", "inflection of शिक्षिका"]) + let v = native_list_append(v, ["शिक्षिकाः", "noun", "शिक्षिकाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शिक्षिकाभ्यः", "noun", "शिक्षिकाभ्यः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शिक्षिकाभिः", "noun", "शिक्षिकाभिः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शाकपुष्प", "noun", "शाकपुष्पाणि", "शाकपुष्पस्य", "शाकपुष्पाय", "", "alternative spelling of"]) + let v = native_list_append(v, ["चिकित्सकः", "noun", "चिकित्सकः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["चिकित्सकम्", "noun", "चिकित्सकम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["चिकित्सकेन", "noun", "चिकित्सकेन", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["चिकित्सकाय", "noun", "चिकित्सकाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["चिकित्सकात्", "noun", "चिकित्सकात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["चिकित्सकस्य", "noun", "चिकित्सकस्य", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["चिकित्सके", "noun", "चिकित्सके", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["चिकित्सकान्", "noun", "चिकित्सकान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["चिकित्सकैः", "noun", "चिकित्सकैः", "", "", "", "masculine instrumental plural"]) + let v = native_list_append(v, ["चिकित्सकानाम्", "noun", "चिकित्सकानाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["चिकित्सकेषु", "noun", "चिकित्सकेषु", "", "", "", "masculine locative plural"]) + let v = native_list_append(v, ["चिकित्सकेभ्यः", "noun", "चिकित्सकेभ्यः", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["चिकित्सकाः", "noun", "चिकित्सकाः", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["चिकित्सकौ", "noun", "चिकित्सकौ", "", "", "", "masculine nominative dual"]) + let v = native_list_append(v, ["चिकित्सिका", "noun", "चिकित्सिकाः", "चिकित्सिकायाः", "चिकित्सिकायै", "", "a female doctor"]) + let v = native_list_append(v, ["चिकित्सिके", "noun", "चिकित्सिके", "", "", "", "inflection of चिकित्सिका"]) + let v = native_list_append(v, ["चिकित्सिकाः", "noun", "चिकित्सिकाः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["चिकित्सिकया", "noun", "चिकित्सिकया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["चिकित्सिकायास्", "noun", "चिकित्सिकायास्", "", "", "", "ablative/genitive singular of"]) + let v = native_list_append(v, ["दाह", "noun", "दाहाः", "दाहस्य", "दाहाय", "", "burning combustion conflagration"]) + let v = native_list_append(v, ["विदाह", "noun", "विदाहाः", "विदाहस्य", "विदाहाय", "", "burning heat inflammation"]) + let v = native_list_append(v, ["विदाहक", "noun", "विदाहकानि", "विदाहकस्य", "विदाहकाय", "", "caustic potash"]) + let v = native_list_append(v, ["छद्म", "noun", "छद्म", "", "", "", "combining form of"]) + let v = native_list_append(v, ["छद्मन्", "noun", "छद्मा॑नि", "छद्म॑नः", "छद्म॑ने", "", "a roof"]) + let v = native_list_append(v, ["पौंस्य", "noun", "पौंस्या॑नि", "पौंस्य॑स्य", "पौंस्या॑य", "", "manhood virility"]) + let v = native_list_append(v, ["काजम्", "noun", "काजम्", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["काजेन", "noun", "काजेन", "", "", "", "neuter instrumental singular"]) + let v = native_list_append(v, ["काजाय", "noun", "काजाय", "", "", "", "neuter dative singular"]) + let v = native_list_append(v, ["काजात्", "noun", "काजात्", "", "", "", "neuter ablative singular"]) + let v = native_list_append(v, ["काजस्य", "noun", "काजस्य", "", "", "", "neuter genitive singular"]) + let v = native_list_append(v, ["काजेषु", "noun", "काजेषु", "", "", "", "neuter locative plural"]) + let v = native_list_append(v, ["काजैः", "noun", "काजैः", "", "", "", "neuter instrumental plural"]) + let v = native_list_append(v, ["द्विचक्रिका", "noun", "द्विचक्रिकाः", "द्विचक्रिकायाः", "द्विचक्रिकायै", "", "bicycle"]) + let v = native_list_append(v, ["यव्या", "noun", "य॒व्याः", "य॒व्यायाः॑", "य॒व्यायै॑", "", "river stream"]) + let v = native_list_append(v, ["कामकेलि", "noun", "काम॑केलयः", "काम॑केलेः", "काम॑केलये", "", "“love-sport” amorous sport"]) + let v = native_list_append(v, ["शोधक", "noun", "शोधकाः", "शोधकस्य", "शोधकाय", "", "purifier"]) + let v = native_list_append(v, ["पूर्वपदप्रधान", "noun", "पूर्वपदप्रधान", "", "", "", "preliminary"]) + let v = native_list_append(v, ["विश्वकर्मन्", "noun", "विश्वकर्माणः", "विश्वकर्मणः", "विश्वकर्मणे", "", "Vishvakarman the architect"]) + let v = native_list_append(v, ["मेरुदण्ड", "noun", "मेरुदण्डाः", "मेरुदण्डस्य", "मेरुदण्डाय", "", "the spine"]) + let v = native_list_append(v, ["कषेरुका", "noun", "कषेरुकाः", "कषेरुकायाः", "कषेरुकायै", "", "backbone spine"]) + let v = native_list_append(v, ["धनंजय", "noun", "धनंजयाः", "धनंजयस्य", "धनंजयाय", "", "fire"]) + let v = native_list_append(v, ["अनूक", "noun", "अनू॑काः", "अनू॑कस्य", "अनू॑काय", "", "the backbone spine"]) + let v = native_list_append(v, ["पादांशुक", "noun", "पादांशुकानि", "पादांशुकस्य", "पादांशुकाय", "", "pajamas"]) + let v = native_list_append(v, ["श्रमिका", "noun", "श्रमिकाः", "श्रमिकायाः", "श्रमिकायै", "", "a female labourer"]) + let v = native_list_append(v, ["मानित्व", "noun", "मानित्व", "", "", "", "haughtiness pride arrogance"]) + let v = native_list_append(v, ["क्षान्ति", "noun", "क्षान्तयः", "क्षान्तेः", "क्षान्तये", "", "patience forbearance endurance"]) + let v = native_list_append(v, ["आर्जव", "noun", "आर्जवानि", "आर्जवस्य", "आर्जवाय", "", "straightness uprightness rectitude"]) + let v = native_list_append(v, ["अमानित्व", "noun", "अमानित्व", "", "", "", "humility"]) + let v = native_list_append(v, ["निदाघ", "noun", "नि॒दा॒घाः", "नि॒दा॒घस्य॑", "नि॒दा॒घाय॑", "", "heat warmth"]) + let v = native_list_append(v, ["बालकेलि", "noun", "बालकेलयः", "बालकेलेः", "बालकेलये", "", "childs play or"]) + let v = native_list_append(v, ["बालक्रीडा", "noun", "बालक्रीडाः", "बालक्रीडायाः", "बालक्रीडायै", "", "childs play or"]) + let v = native_list_append(v, ["रकार", "noun", "रकाराः", "रकारस्य", "रकाराय", "", "the letter or"]) + let v = native_list_append(v, ["सायंकाल", "noun", "सायंकालानि", "सायंकालस्य", "सायंकालाय", "", "eventide evening"]) + let v = native_list_append(v, ["सायं", "noun", "सायं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सायम्", "noun", "सायम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["संदिह्", "noun", "सं॒दिहः॑", "सं॒दिहः॑", "सं॒दिहे॑", "", "a heap mound"]) + let v = native_list_append(v, ["कठिनत्व", "noun", "कठिनत्वानि", "कठिनत्वस्य", "कठिनत्वाय", "", "hardness firmness harshness"]) + let v = native_list_append(v, ["पाटलिपुत्र", "noun", "पाटलिपुत्र", "", "", "", "Pataliputra the ancient"]) + let v = native_list_append(v, ["समास", "noun", "समासाः", "समासस्य", "समासाय", "", "throwing or putting"]) + let v = native_list_append(v, ["विश्वकर्मा", "noun", "विश्वकर्मा", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["पट्टिका", "noun", "पट्टिकाः", "पट्टिकायाः", "पट्टिकायै", "", "a tablet plate"]) + let v = native_list_append(v, ["रोध्र", "noun", "रोध्राः", "रोध्रस्य", "रोध्राय", "", "the tree Symplocos"]) + let v = native_list_append(v, ["डिण्डिश", "noun", "डिण्डिश", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["त्वरि", "noun", "त्वरयः", "त्वरेः", "त्वरये", "", "haste"]) + let v = native_list_append(v, ["लोध्र", "noun", "लोध्र", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["दम्पती", "noun", "दम्पती", "दम्प॑त्योः", "दम्प॑तिभ्याम्", "", "husband and wife"]) + let v = native_list_append(v, ["भूप", "noun", "भूपाः॑", "भूप॑स्य", "भूपा॑य", "", "earth-protector a king"]) + let v = native_list_append(v, ["शंतनु", "noun", "शंत॑नवः", "शंत॑नोः", "शंत॑नवे", "", "Shantanu King of"]) + let v = native_list_append(v, ["मलिन", "noun", "मलिनाः", "मलिनस्य", "मलिनाय", "", "a religious mendicant"]) + let v = native_list_append(v, ["प्रेष्", "noun", "प्रेषः॑", "प्रे॒षः", "प्रे॒षे", "", "pressing pressure"]) + let v = native_list_append(v, ["प्रेषण", "noun", "प्रेष॑णानि", "प्रेष॑णस्य", "प्रेष॑णाय", "", "the act of"]) + let v = native_list_append(v, ["बहुता", "noun", "ब॒हुताः॑", "ब॒हुता॑याः", "ब॒हुता॑यै", "", "muchness abundance multitude"]) + let v = native_list_append(v, ["मूर्च्छा", "noun", "मूर्च्छा", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["मूर्च्छन", "noun", "मूर्च्छन", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["महागज", "noun", "म॒हाग॑जाः", "म॒हाग॑जस्य", "म॒हाग॑जाय", "", "a great elephant"]) + let v = native_list_append(v, ["दिक्करिन्", "noun", "दिक्करिणः", "दिक्करिणः", "दिक्करिणे", "", "eight female mythical"]) + let v = native_list_append(v, ["करिन्", "noun", "करिणः", "करिणः", "करिणे", "", "having a trunk"]) + let v = native_list_append(v, ["कन्दरा", "noun", "कन्दराः", "कन्दरायाः", "कन्दरायै", "", "great cliff an"]) + let v = native_list_append(v, ["कन्दर", "noun", "कन्दराः", "कन्दरस्य", "कन्दराय", "", "great cliff an"]) + let v = native_list_append(v, ["मूर्छा", "noun", "मूर्छाः", "मूर्छायाः", "मूर्छायै", "", "fainting a swoon"]) + let v = native_list_append(v, ["दुर्योधन", "noun", "दुर्योधनाः", "दुर्योधनस्य", "दुर्योधनाय", "", "Duryodhana son of"]) + let v = native_list_append(v, ["हठयोग", "noun", "हठयोगाः", "हठयोगस्य", "हठयोगाय", "", "a kind of"]) + let v = native_list_append(v, ["सहवास", "noun", "स॒हवा॑साः", "स॒हवा॑सस्य", "स॒हवा॑साय", "", "dwelling together common"]) + let v = native_list_append(v, ["रक्षस्", "noun", "रक्षां॑सि", "रक्ष॑सः", "रक्ष॑से", "", "harm injury damage"]) + let v = native_list_append(v, ["अर्णव", "noun", "अ॒र्ण॒वाः", "अ॒र्ण॒वस्य॑", "अ॒र्ण॒वाय॑", "", "wave ocean sea"]) + let v = native_list_append(v, ["अर्श", "noun", "अर्शाः", "अर्शस्य", "अर्शाय", "", "alternative spelling of"]) + let v = native_list_append(v, ["शाक्त", "noun", "शाक्ताः", "शाक्तस्य", "शाक्ताय", "", "a worshipper of"]) + let v = native_list_append(v, ["पराशर", "noun", "पराशराः", "पराशरस्य", "पराशराय", "", "crusher destroyer"]) + let v = native_list_append(v, ["कद्रु", "noun", "कद्र॑वः", "कद्रोः॑", "कद्र॑वे", "", "tawny colour"]) + let v = native_list_append(v, ["वसन्तर्तु", "noun", "वसन्तर्तवः", "वसन्तर्तोः", "वसन्तर्तवे", "", "the spring season"]) + let v = native_list_append(v, ["ऋकार", "noun", "ऋकाराः", "ऋकारस्य", "ऋकाराय", "", "the letter or"]) + let v = native_list_append(v, ["इकार", "noun", "इकाराः", "इकारस्य", "इकाराय", "", "the letter or"]) + let v = native_list_append(v, ["फकार", "noun", "फकाराः", "फकारस्य", "फकाराय", "", "the letter or"]) + let v = native_list_append(v, ["पकार", "noun", "पकाराः", "पकारस्य", "पकाराय", "", "the letter or"]) + let v = native_list_append(v, ["बकार", "noun", "बकाराः", "बकारस्य", "बकाराय", "", "the letter or"]) + let v = native_list_append(v, ["षकार", "noun", "षकाराः", "षकारस्य", "षकाराय", "", "the letter ष"]) + let v = native_list_append(v, ["उष्णता", "noun", "उष्णताः", "उष्णतायाः", "उष्णतायै", "", "heat warmth"]) + let v = native_list_append(v, ["प्राप्तिका", "noun", "प्राप्तिकाः", "प्राप्तिकायाः", "प्राप्तिकायै", "", "receipt"]) + let v = native_list_append(v, ["कृदन्त", "noun", "कृदन्ताः", "कृदन्तस्य", "कृदन्ताय", "", "a word ending"]) + let v = native_list_append(v, ["करि", "noun", "करयः", "करेः", "करये", "", "hand"]) + let v = native_list_append(v, ["बसयान", "noun", "बसयानानि", "बसयानस्य", "बसयानाय", "", "bus"]) + let v = native_list_append(v, ["बस्यान", "noun", "बस्यान", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["कारयान", "noun", "कारयानानि", "कारयानस्य", "कारयानाय", "", "car"]) + let v = native_list_append(v, ["गन्तृ", "noun", "गन्तारः", "गन्तुः", "गन्त्रे", "", "one who or"]) + let v = native_list_append(v, ["उपधान", "noun", "उ॒प॒धाना॑नि", "उ॒प॒धान॑स्य", "उ॒प॒धाना॑य", "", "the act of"]) + let v = native_list_append(v, ["पादोपधान", "noun", "पादोपधानानि", "पादोपधानस्य", "पादोपधानाय", "", "a cushion for"]) + let v = native_list_append(v, ["तालानि", "noun", "तालानि", "", "", "", "neuter nominative plural"]) + let v = native_list_append(v, ["कलि", "noun", "कल॑यः", "कलेः॑", "कल॑ये", "", "ace the side"]) + let v = native_list_append(v, ["कम्", "noun", "कम्", "", "", "", "happiness bliss"]) + let v = native_list_append(v, ["अर्जनम्", "noun", "अर्जनम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["अर्जनेन", "noun", "अर्जनेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["अर्जनाय", "noun", "अर्जनाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["अर्जनस्य", "noun", "अर्जनस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["आधान", "noun", "आ॒धाना॑नि", "आ॒धान॑स्य", "आ॒धाना॑य", "", "putting near or"]) + let v = native_list_append(v, ["शिग्रु", "noun", "शिग्रु", "", "", "", "Moringa oleifera"]) + let v = native_list_append(v, ["संवर्धन", "noun", "संवर्धनानि", "संवर्धनस्य", "संवर्धनाय", "", "growing up complete"]) + let v = native_list_append(v, ["गुड", "noun", "गु॒डाः", "गु॒डस्य॑", "गु॒डाय॑", "", "sugar which forms"]) + let v = native_list_append(v, ["ऊर्ध्ववायु", "noun", "ऊर्ध्ववायवः", "ऊर्ध्ववायोः", "ऊर्ध्ववायवे", "", "burp"]) + let v = native_list_append(v, ["मेरु", "noun", "मेरवः", "मेरोः", "मेरवे", "", "Name of a"]) + let v = native_list_append(v, ["हस्ततल", "noun", "हस्ततलानि", "हस्ततलस्य", "हस्ततलाय", "", "the palm of"]) + let v = native_list_append(v, ["तलातल", "noun", "तलातलानि", "तलातलस्य", "तलातलाय", "", "name of a"]) + let v = native_list_append(v, ["अतल", "noun", "अतलानि", "अतलस्य", "अतलाय", "", "name of a"]) + let v = native_list_append(v, ["यादस्", "noun", "यादां॑सि", "याद॑सः", "याद॑से", "", "an overflow of"]) + let v = native_list_append(v, ["फलनेन", "noun", "फलनेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["फलनाय", "noun", "फलनाय", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["फलनात्", "noun", "फलनात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["फलनस्य", "noun", "फलनस्य", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["फलनम्", "noun", "फलनम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["विरोधालंकार", "noun", "विरोधालंकाराः", "विरोधालंकारस्य", "विरोधालंकाराय", "", "a figure of"]) + let v = native_list_append(v, ["शब्दालंकार", "noun", "शब्दालंकाराः", "शब्दालंकारस्य", "शब्दालंकाराय", "", "embellishment of the"]) + let v = native_list_append(v, ["अलङ्कार", "noun", "अलङ्कार", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["आलंकारिक", "noun", "आलंकारिकाः", "आलंकारिकस्य", "आलंकारिकाय", "", "a writer on"]) + let v = native_list_append(v, ["अर्थालंकार", "noun", "अर्थालंकाराः", "अर्थालंकारस्य", "अर्थालंकाराय", "", "embellishment of the"]) + let v = native_list_append(v, ["भरण", "noun", "भर॑णानि", "भर॑णस्य", "भर॑णाय", "", "the act of"]) + let v = native_list_append(v, ["आयाम", "noun", "आयामाः", "आयामस्य", "आयामाय", "", "stretching extending"]) + let v = native_list_append(v, ["यामान्", "noun", "यामान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["याभ", "noun", "याभाः", "याभस्य", "याभाय", "", "sexual intercourse"]) + let v = native_list_append(v, ["छात्त्र", "noun", "छात्त्राः", "छात्त्रस्य", "छात्त्राय", "", "pupil student"]) + let v = native_list_append(v, ["तरण", "noun", "तरणाः", "तरणस्य", "तरणाय", "", "a raft"]) + let v = native_list_append(v, ["द्विरेफ", "noun", "द्विरेफाः", "द्विरेफस्य", "द्विरेफाय", "", "a large black"]) + let v = native_list_append(v, ["हास", "noun", "हासाः", "हासस्य", "हासाय", "", "laughing laughter mirth"]) + let v = native_list_append(v, ["गौतम", "noun", "गौ॒त॒माः", "गौ॒त॒मस्य॑", "गौ॒त॒माय॑", "", "name of various"]) + let v = native_list_append(v, ["मेण्ढ्र", "noun", "मेण्ढ्राः", "मेण्ढ्रस्य", "मेण्ढ्राय", "", "the penis"]) + let v = native_list_append(v, ["ग्रामचर्या", "noun", "ग्रामचर्याः", "ग्रामचर्यायाः", "ग्रामचर्यायै", "", "sexual intercourse"]) + let v = native_list_append(v, ["हिरण", "noun", "हिरणानि", "हिरणस्य", "हिरणाय", "", "gold"]) + let v = native_list_append(v, ["कारा", "noun", "काराः", "कारायाः", "कारायै", "", "a prison"]) + let v = native_list_append(v, ["खादन", "noun", "खादनानि", "खादनस्य", "खादनाय", "", "chewing eating"]) + let v = native_list_append(v, ["खानि", "noun", "खानयः", "खानेः", "खानये", "", "a mine"]) + let v = native_list_append(v, ["आखेट", "noun", "आखेटाः", "आखेटस्य", "आखेटाय", "", "chase hunting"]) + let v = native_list_append(v, ["दन्तघर्षण", "noun", "दन्तघर्षणानि", "दन्तघर्षणस्य", "दन्तघर्षणाय", "", "tooth brushing"]) + let v = native_list_append(v, ["दन्तकूर्च", "noun", "दन्तकूर्चाः", "दन्तकूर्चस्य", "दन्तकूर्चाय", "", "toothbrush"]) + let v = native_list_append(v, ["कूर्च", "noun", "कू॒र्चाः", "कू॒र्चस्य॑", "कू॒र्चाय॑", "", "a bunch of"]) + let v = native_list_append(v, ["शैशव", "noun", "शैशवानि", "शैशवस्य", "शैशवाय", "", "childhood infancy pupilage"]) + let v = native_list_append(v, ["बाल्य", "noun", "बाल्यानि", "बाल्यस्य", "बाल्याय", "", "boyhood childhood infancy"]) + let v = native_list_append(v, ["राजतरंगिणी", "noun", "राजतरंगिण्यः", "राजतरंगिण्याः", "राजतरंगिण्यै", "", "“stream of kings”"]) + let v = native_list_append(v, ["कश्यपमीर", "noun", "कश्यपमीराः", "कश्यपमीरस्य", "कश्यपमीराय", "", "Kashmir"]) + let v = native_list_append(v, ["काश्मीर", "noun", "काश्मीराः", "काश्मीरस्य", "काश्मीराय", "", "a king of"]) + let v = native_list_append(v, ["खद्योत", "noun", "खद्यो॑ताः", "खद्यो॑तस्य", "खद्यो॑ताय", "", "“sky-illuminator” a firefly"]) + let v = native_list_append(v, ["पूर्णमास्", "noun", "पूर्णमास्", "", "", "", "full moon the"]) + let v = native_list_append(v, ["भारिक", "noun", "भारिकाः", "भारिकस्य", "भारिकाय", "", "a carrier porter"]) + let v = native_list_append(v, ["वारक", "noun", "वारकाः", "वारकस्य", "वारकाय", "", "a restrainer resister"]) + let v = native_list_append(v, ["वारकिन्", "noun", "वारकिणः", "वारकिणः", "वारकिणे", "", "an opposer obstructor"]) + let v = native_list_append(v, ["गात्र", "noun", "गात्रा॑णि", "गात्र॑स्य", "गात्रा॑य", "", "instrument for movement"]) + let v = native_list_append(v, ["भर्त्सन", "noun", "भर्त्सनानि", "भर्त्सनस्य", "भर्त्सनाय", "", "threatening"]) + let v = native_list_append(v, ["भर्त्सक", "noun", "भर्त्सकाः", "भर्त्सकस्य", "भर्त्सकाय", "", "a threatener reviler"]) + let v = native_list_append(v, ["अनूप", "noun", "अ॒नू॒पाः", "अ॒नू॒पस्य॑", "अ॒नू॒पाय॑", "", "a pond"]) + let v = native_list_append(v, ["सामवेद", "noun", "सा॒म॒वेदाः॑", "सा॒म॒वेद॑स्य", "सा॒म॒वेदा॑य", "", "the Samaveda see"]) + let v = native_list_append(v, ["शम्ब", "noun", "शम्बाः॑", "शम्ब॑स्य", "शम्बा॑य", "", "a weapon used"]) + let v = native_list_append(v, ["अरणि", "noun", "अ॒रण॑यः", "अ॒रणेः॑", "अ॒रण॑ये", "", "being fitted into"]) + let v = native_list_append(v, ["नकार", "noun", "नकाराः", "नकारस्य", "नकाराय", "", "the letter or"]) + let v = native_list_append(v, ["खेला", "noun", "खेलाः", "खेलायाः", "खेलायै", "", "play sport"]) + let v = native_list_append(v, ["आखेटक", "noun", "आखेटकाः", "आखेटकस्य", "आखेटकाय", "", "a hunter"]) + let v = native_list_append(v, ["खेट", "noun", "खेटाः", "खेटस्य", "खेटाय", "", "moving in the"]) + let v = native_list_append(v, ["आगा", "noun", "आगाः", "आगायाः", "आगायै", "", "intonation"]) + let v = native_list_append(v, ["आञ्छन", "noun", "आञ्छनानि", "आञ्छनस्य", "आञ्छनाय", "", "stretching drawing setting"]) + let v = native_list_append(v, ["भूभाग", "noun", "भूभा॑गाः", "भूभा॑गस्य", "भूभा॑गाय", "", "a portion of"]) + let v = native_list_append(v, ["मूर्छन", "noun", "मूर्छनानि", "मूर्छनस्य", "मूर्छनाय", "", "a particular process"]) + let v = native_list_append(v, ["लाञ्छन", "noun", "लाञ्छनानि", "लाञ्छनस्य", "लाञ्छनाय", "", "a mark sign"]) + let v = native_list_append(v, ["कोष्ठ", "noun", "कोष्ठाः", "कोष्ठस्य", "कोष्ठाय", "", "entrails stomach abdomen"]) + let v = native_list_append(v, ["दैत्य", "noun", "दैत्याः", "दैत्यस्य", "दैत्याय", "", "Daitya a son"]) + let v = native_list_append(v, ["शष्प", "noun", "शष्पा॑णि", "शष्प॑स्य", "शष्पा॑य", "", "young sprouting grass"]) + let v = native_list_append(v, ["प्यायन", "noun", "प्यायनानि", "प्यायनस्य", "प्यायनाय", "", "growth increase"]) + let v = native_list_append(v, ["पीन", "noun", "पीनाः", "पीनस्य", "पीनाय", "", "profuse perspiration"]) + let v = native_list_append(v, ["करिबन्ध", "noun", "करिबन्धाः", "करिबन्धस्य", "करिबन्धाय", "", "the post to"]) + let v = native_list_append(v, ["करिकृष्णा", "noun", "करिकृष्णाः", "करिकृष्णायाः", "करिकृष्णायै", "", "Piper chaba"]) + let v = native_list_append(v, ["करिकुम्भ", "noun", "करिकुम्भाः", "करिकुम्भस्य", "करिकुम्भाय", "", "the frontal globe"]) + let v = native_list_append(v, ["करिकणा", "noun", "करिकणाः", "करिकणायाः", "करिकणायै", "", "Piper chaba"]) + let v = native_list_append(v, ["करिमुक्ता", "noun", "करिमुक्ताः", "करिमुक्तायाः", "करिमुक्तायै", "", "a pearl"]) + let v = native_list_append(v, ["करिवैजयन्ती", "noun", "करिवैजयन्त्यः", "करिवैजयन्त्याः", "करिवैजयन्त्यै", "", "a flag carried"]) + let v = native_list_append(v, ["करिक", "noun", "करिकाः", "करिकस्य", "करिकाय", "", "an elephant"]) + let v = native_list_append(v, ["करिकुसुम्भ", "noun", "करिकुसुम्भाः", "करिकुसुम्भस्य", "करिकुसुम्भाय", "", "a fragrant powder"]) + let v = native_list_append(v, ["करिमाचल", "noun", "करिमाचलाः", "करिमाचलस्य", "करिमाचलाय", "", "destroyer of elephants"]) + let v = native_list_append(v, ["करिज", "noun", "करिजाः", "करिजस्य", "करिजाय", "", "a young elephant"]) + let v = native_list_append(v, ["करिदन्त", "noun", "करिदन्ताः", "करिदन्तस्य", "करिदन्ताय", "", "an elephants tusk"]) + let v = native_list_append(v, ["करिप", "noun", "करिपाः", "करिपस्य", "करिपाय", "", "the keeper of"]) + let v = native_list_append(v, ["करिदारक", "noun", "करिदारकाः", "करिदारकस्य", "करिदारकाय", "", "a lion"]) + let v = native_list_append(v, ["करिपथ", "noun", "करिपथाः", "करिपथस्य", "करिपथाय", "", "the way of"]) + let v = native_list_append(v, ["करिपोत", "noun", "करिपोताः", "करिपोतस्य", "करिपोताय", "", "a young elephant"]) + let v = native_list_append(v, ["करिहस्त", "noun", "करिहस्ताः", "करिहस्तस्य", "करिहस्ताय", "", "a particular position"]) + let v = native_list_append(v, ["करीन्द्र", "noun", "करीन्द्राः", "करीन्द्रस्य", "करीन्द्राय", "", "a large elephant"]) + let v = native_list_append(v, ["करिशावक", "noun", "करिशावकाः", "करिशावकस्य", "करिशावकाय", "", "a young elephant"]) + let v = native_list_append(v, ["करिस्कन्ध", "noun", "करिस्कन्धाः", "करिस्कन्धस्य", "करिस्कन्धाय", "", "a herd of"]) + let v = native_list_append(v, ["करिमकर", "noun", "करिमकराः", "करिमकरस्य", "करिमकराय", "", "a fabulous monster"]) + let v = native_list_append(v, ["करिवर", "noun", "करिवराः", "करिवरस्य", "करिवराय", "", "an excellent elephant"]) + let v = native_list_append(v, ["करिमुख", "noun", "करिमुखाः", "करिमुखस्य", "करिमुखाय", "", "elephant-faced name of"]) + let v = native_list_append(v, ["करिगर्जित", "noun", "करिगर्जितानि", "करिगर्जितस्य", "करिगर्जिताय", "", "the roaring of"]) + let v = native_list_append(v, ["करिरत", "noun", "करिरतानि", "करिरतस्य", "करिरताय", "", "elephants coitus a"]) + let v = native_list_append(v, ["करियादस्", "noun", "करियादांसि", "करियादसः", "करियादसे", "", "a water-elephant hippopotamus"]) + let v = native_list_append(v, ["करिमण्डित", "noun", "करिमण्डितानि", "करिमण्डितस्य", "करिमण्डिताय", "", "name of a"]) + let v = native_list_append(v, ["करिपत्त्र", "noun", "करिपत्त्राणि", "करिपत्त्रस्य", "करिपत्त्राय", "", "name of a"]) + let v = native_list_append(v, ["करिचर्मन्", "noun", "करिचर्माणि", "करिचर्मणः", "करिचर्मणे", "", "an elephants hide"]) + let v = native_list_append(v, ["शाव", "noun", "शावाः", "शावस्य", "शावाय", "", "the young one"]) + let v = native_list_append(v, ["अल", "noun", "अलानि", "अलस्य", "अलाय", "", "the sting in"]) + let v = native_list_append(v, ["अलिन्", "noun", "अलिनः", "अलिनः", "अलिने", "", "a large black"]) + let v = native_list_append(v, ["बटु", "noun", "बटवः", "बटोः", "बटवे", "", "a boy lad"]) + let v = native_list_append(v, ["उच्छ्वास", "noun", "उ॒च्छ्वा॒साः", "उ॒च्छ्वा॒सस्य॑", "उ॒च्छ्वा॒साय॑", "", "breathing out"]) + let v = native_list_append(v, ["किन्नर", "noun", "किन्नराः", "किन्नरस्य", "किन्नराय", "", "alternative spelling of"]) + let v = native_list_append(v, ["द्विर", "noun", "द्विराः", "द्विरस्य", "द्विराय", "", "a large black"]) + let v = native_list_append(v, ["बालिश", "noun", "बालिशाः", "बालिशस्य", "बालिशाय", "", "a child"]) + let v = native_list_append(v, ["क्षुधा", "noun", "क्षुधाः", "क्षुधायाः", "क्षुधायै", "", "hunger"]) + let v = native_list_append(v, ["विनीत", "noun", "विनीताः", "विनीतस्य", "विनीताय", "", "a merchant trader"]) + let v = native_list_append(v, ["ପଥିକ", "noun", "ପଥିକାଃ", "ପଥିକସ୍ଯ", "ପଥିକାଯ", "", "Odia script form"]) + let v = native_list_append(v, ["ज्योतिस्", "noun", "ज्योतीं॑षि", "ज्योति॑षः", "ज्योति॑षे", "", "light of the"]) + let v = native_list_append(v, ["तडित्", "noun", "तडितः", "तडितः", "तडिते", "", "stroke"]) + let v = native_list_append(v, ["तलित्", "noun", "तलित्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["कठिनपृष्ठ", "noun", "कठिनपृष्ठाः", "कठिनपृष्ठस्य", "कठिनपृष्ठाय", "", "a hard-backed tortoise"]) + let v = native_list_append(v, ["कठिनपृष्ठक", "noun", "कठिनपृष्ठकाः", "कठिनपृष्ठकस्य", "कठिनपृष्ठकाय", "", "a hard-backed tortoise"]) + let v = native_list_append(v, ["हिक्का", "noun", "हिक्काः", "हिक्कायाः", "हिक्कायै", "", "hiccup"]) + let v = native_list_append(v, ["हेक्का", "noun", "हेक्काः", "हेक्कायाः", "हेक्कायै", "", "alternative spelling of"]) + let v = native_list_append(v, ["हिक्किका", "noun", "हिक्किकाः", "हिक्किकायाः", "हिक्किकायै", "", "alternative spelling of"]) + let v = native_list_append(v, ["हिक्वा", "noun", "हिक्वाः", "हिक्वायाः", "हिक्वायै", "", "misspelling of हिक्का"]) + let v = native_list_append(v, ["हिक्कित", "noun", "हिक्कितानि", "हिक्कितस्य", "हिक्किताय", "", "alternative spelling of"]) + let v = native_list_append(v, ["चमस", "noun", "च॒म॒साः", "च॒म॒सस्य॑", "च॒म॒साय॑", "", "a vessel used"]) + let v = native_list_append(v, ["हेम", "noun", "हेमानि", "हेमस्य", "हेमाय", "", "gold"]) + let v = native_list_append(v, ["संलक्षण", "noun", "संलक्षणानि", "संलक्षणस्य", "संलक्षणाय", "", "the act of"]) + let v = native_list_append(v, ["किट", "noun", "किटाः", "किटस्य", "किटाय", "", "a kind of"]) + let v = native_list_append(v, ["वीळु", "noun", "वी॒ळूनि॑", "वी॒ळुनः॑", "वी॒ळुने॑", "", "anything firmly fixed"]) + let v = native_list_append(v, ["वीडु", "noun", "वी॒डूनि॑", "वी॒डुनः॑", "वी॒डुने॑", "", "anything firmly fixed"]) + let v = native_list_append(v, ["फडिङ्गा", "noun", "फडिङ्गाः", "फडिङ्गायाः", "फडिङ्गायै", "", "a cricket locust"]) + let v = native_list_append(v, ["हीक", "noun", "हीकाः", "हीकस्य", "हीकाय", "", "an evil spirit"]) + let v = native_list_append(v, ["यत्न", "noun", "यत्नाः", "यत्नस्य", "यत्नाय", "", "activity of will"]) + let v = native_list_append(v, ["अट्टालिका", "noun", "अट्टालिकाः", "अट्टालिकायाः", "अट्टालिकायै", "", "an attic"]) + let v = native_list_append(v, ["अभ्यङ्ग", "noun", "अभ्यङ्गाः", "अभ्यङ्गस्य", "अभ्यङ्गाय", "", "abhyanga a form"]) + let v = native_list_append(v, ["यन्तृ", "noun", "यन्तारः", "यन्तुः", "यन्त्रे", "", "a driver of"]) + let v = native_list_append(v, ["विलक्षण", "noun", "विलक्षणानि", "विलक्षणस्य", "विलक्षणाय", "", "any state or"]) + let v = native_list_append(v, ["पिञ्जर", "noun", "पिञ्जराः", "पिञ्जरस्य", "पिञ्जराय", "", "a tawny-brown color"]) + let v = native_list_append(v, ["कङ्कत", "noun", "कङ्कताः", "कङ्कतस्य", "कङ्कताय", "", "comb"]) + let v = native_list_append(v, ["खद्योतस्", "noun", "खद्योतस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["डालस्", "noun", "डालस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["डालम्", "noun", "डालम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["डालेन", "noun", "डालेन", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["डालाय", "noun", "डालाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["डालात्", "noun", "डालात्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["डालस्य", "noun", "डालस्य", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["डाले", "noun", "डाले", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["परिच्छेद", "noun", "परिच्छेदाः", "परिच्छेदस्य", "परिच्छेदाय", "", "cutting severing division"]) + let v = native_list_append(v, ["किंनर", "noun", "किंनराः", "किंनरस्य", "किंनराय", "", "a mythical being"]) + let v = native_list_append(v, ["किम्पुरुष", "noun", "कि॒म्पुरु॑षाः", "कि॒म्पुरु॑षस्य", "कि॒म्पुरु॑षाय", "", "a mongrel being"]) + let v = native_list_append(v, ["परिच्छेदस्", "noun", "परिच्छेदस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["परिच्छेदम्", "noun", "परिच्छेदम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["परिच्छेदेन", "noun", "परिच्छेदेन", "", "", "", "masculine instrumental singular"]) + let v = native_list_append(v, ["परिच्छेदे", "noun", "परिच्छेदे", "", "", "", "masculine locative singular"]) + let v = native_list_append(v, ["परिच्छेदाय", "noun", "परिच्छेदाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["परिच्छेदात्", "noun", "परिच्छेदात्", "", "", "", "masculine ablative singular"]) + let v = native_list_append(v, ["परिच्छेदस्य", "noun", "परिच्छेदस्य", "", "", "", "masculine genitive singular"]) + let v = native_list_append(v, ["परिच्छेदेषु", "noun", "परिच्छेदेषु", "", "", "", "masculine locative plural"]) + let v = native_list_append(v, ["परिच्छेदान्", "noun", "परिच्छेदान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["परिच्छेदैस्", "noun", "परिच्छेदैस्", "", "", "", "masculine instrumental plural"]) + let v = native_list_append(v, ["परिच्छेदेभ्यस्", "noun", "परिच्छेदेभ्यस्", "", "", "", "masculine dative plural"]) + let v = native_list_append(v, ["परिच्छेदास्", "noun", "परिच्छेदास्", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["परिच्छेदौ", "noun", "परिच्छेदौ", "", "", "", "masculine nominative dual"]) + let v = native_list_append(v, ["परिच्छेदाभ्याम्", "noun", "परिच्छेदाभ्याम्", "", "", "", "masculine instrumental dual"]) + let v = native_list_append(v, ["परिच्छेदयोस्", "noun", "परिच्छेदयोस्", "", "", "", "masculine genitive dual"]) + let v = native_list_append(v, ["उण्डुक", "noun", "उण्डुकाः", "उण्डुकस्य", "उण्डुकाय", "", "a species of"]) + let v = native_list_append(v, ["अयुत", "noun", "अ॒युता॑नि", "अ॒युत॑स्य", "अ॒युता॑य", "", "ten thousand a"]) + let v = native_list_append(v, ["युत", "noun", "युतानि", "युतस्य", "युताय", "", "a particular measure"]) + let v = native_list_append(v, ["शुष्कफल", "noun", "शुष्क॑फलानि", "शुष्क॑फलस्य", "शुष्क॑फलाय", "", "dried fruits"]) + let v = native_list_append(v, ["रसगोल", "noun", "रसगोलाः", "रसगोलस्य", "रसगोलाय", "", "a rasgulla"]) + let v = native_list_append(v, ["कार्त्तिक", "noun", "कार्त्तिकाः", "कार्त्तिकस्य", "कार्त्तिकाय", "", "Kartika eighth month"]) + let v = native_list_append(v, ["सूतिका", "noun", "सूति॑काः", "सूति॑कायाः", "सूति॑कायै", "", "a woman who"]) + let v = native_list_append(v, ["सूतिकागार", "noun", "सूति॑कागाराणि", "सूति॑कागारस्य", "सूति॑कागाराय", "", "a lying-in chamber"]) + let v = native_list_append(v, ["सूतिकागृह", "noun", "सूति॑कागृहाणि", "सूति॑कागृहस्य", "सूति॑कागृहाय", "", "a lying-in chamber"]) + let v = native_list_append(v, ["बदर", "noun", "बदराः", "बदरस्य", "बदराय", "", "an Indian jujube"]) + let v = native_list_append(v, ["देवसर्षप", "noun", "दे॒वस॑र्षपाः", "दे॒वस॑र्षपस्य", "दे॒वस॑र्षपाय", "", "divine mustard a"]) + let v = native_list_append(v, ["लाबु", "noun", "लाबवः", "लाबोः", "लाबवे", "", "alternative form of"]) + let v = native_list_append(v, ["लाबू", "noun", "लाब्वः", "लाब्वाः", "लाब्वै", "", "alternative form of"]) + let v = native_list_append(v, ["अलाबू", "noun", "अलाब्वः", "अलाब्वाः", "अलाब्वै", "", "alternative form of"]) + let v = native_list_append(v, ["अलाबुका", "noun", "अलाबुकाः", "अलाबुकायाः", "अलाबुकायै", "", "alternative form of"]) + let v = native_list_append(v, ["अलाबुक", "noun", "अलाबुकानि", "अलाबुकस्य", "अलाबुकाय", "", "alternative form of"]) + let v = native_list_append(v, ["ऊह", "noun", "ऊहाः", "ऊहस्य", "ऊहाय", "", "removing derangement transposition"]) + let v = native_list_append(v, ["खर्जु", "noun", "खर्जवः", "खर्जोः", "खर्जवे", "", "scratching itching itch"]) + let v = native_list_append(v, ["क्षुब्ध", "noun", "क्षुब्धाः", "क्षुब्धस्य", "क्षुब्धाय", "", "a kind of"]) + let v = native_list_append(v, ["आरूप्य", "noun", "आरूप्य", "", "", "", "formlessness absence of"]) + let v = native_list_append(v, ["बर्जह", "noun", "बर्ज॑हाः", "बर्ज॑हस्य", "बर्ज॑हाय", "", "udder"]) + let v = native_list_append(v, ["बर्जह्य", "noun", "ब॒र्ज॒ह्यानि॑", "ब॒र्ज॒ह्यस्य॑", "ब॒र्ज॒ह्याय॑", "", "nipple"]) + let v = native_list_append(v, ["वृष्णि", "noun", "वृ॒ष्णयः॑", "वृ॒ष्णेः", "वृ॒ष्णये॑", "", "a ram"]) + let v = native_list_append(v, ["ದೂತ", "noun", "ದೂತ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["आर्यदेव​", "noun", "आर्यदेव​", "", "", "", "a male given"]) + let v = native_list_append(v, ["आर्यवंश", "noun", "आर्यवंश", "", "", "", "noble blood or"]) + let v = native_list_append(v, ["आर्यवर्मन्", "noun", "आर्यवर्मन्", "", "", "", "a male given"]) + let v = native_list_append(v, ["प्रावृष्", "noun", "प्रावृषः", "प्रावृषः", "प्रावृषे", "", "rainy season monsoon"]) + let v = native_list_append(v, ["गृध्र", "noun", "गृध्राः॑", "गृध्र॑स्य", "गृध्रा॑य", "", "a vulture"]) + let v = native_list_append(v, ["युवति", "noun", "यु॒व॒तयः॑", "यु॒व॒तेः", "यु॒व॒तये॑", "", "a girl a"]) + let v = native_list_append(v, ["सुपर्ण", "noun", "सु॒प॒र्णाः", "सु॒प॒र्णस्य॑", "सु॒प॒र्णाय॑", "", "any large bird"]) + let v = native_list_append(v, ["संवहन", "noun", "संवहनानि", "संवहनस्य", "संवहनाय", "", "guiding conducting"]) + let v = native_list_append(v, ["संवत्सर", "noun", "सं॒व॒त्स॒राः", "सं॒व॒त्स॒रस्य॑", "सं॒व॒त्स॒राय॑", "", "a year a"]) + let v = native_list_append(v, ["अध्वन्", "noun", "अध्वा॑नः", "अध्व॑नः", "अध्व॑ने", "", "a road way"]) + let v = native_list_append(v, ["खरे", "noun", "खरे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["भल्लूक", "noun", "भल्लूकाः", "भल्लूकस्य", "भल्लूकाय", "", "bear"]) + let v = native_list_append(v, ["तीक्ष्णदंष्ट्रक", "noun", "तीक्ष्णदंष्ट्रकाः", "तीक्ष्णदंष्ट्रकस्य", "तीक्ष्णदंष्ट्रकाय", "", "leopard"]) + let v = native_list_append(v, ["पृष्टि", "noun", "पृ॒ष्टयः॑", "पृ॒ष्टेः", "पृ॒ष्टये॑", "", "a rib"]) + let v = native_list_append(v, ["कटि", "noun", "कटयः", "कटेः", "कटये", "", "the waist"]) + let v = native_list_append(v, ["कम्प", "noun", "कम्पाः", "कम्पस्य", "कम्पाय", "", "trembling motion tremor"]) + let v = native_list_append(v, ["कम्पन", "noun", "कम्पनाः", "कम्पनस्य", "कम्पनाय", "", "a kind of"]) + let v = native_list_append(v, ["मद्गु", "noun", "म॒द्गवः॑", "म॒द्गोः", "म॒द्गवे॑", "", "diver loon a"]) + let v = native_list_append(v, ["मरीयमिपुत्र", "noun", "मरीयमिपुत्राः", "मरीयमिपुत्रस्य", "मरीयमिपुत्राय", "", "Jesus Christ"]) + let v = native_list_append(v, ["मरीयमि", "noun", "मरीयमयः", "मरीयमेः", "मरीयमये", "", "Mary the mother"]) + let v = native_list_append(v, ["मुद्ग", "noun", "मु॒द्गाः", "मु॒द्गस्य॑", "मु॒द्गाय॑", "", "the mung bean"]) + let v = native_list_append(v, ["दुर्मनस्", "noun", "दुर्मनांसि", "दुर्मनसः", "दुर्मनसे", "", "bad disposition perversity"]) + let v = native_list_append(v, ["भैषज्य", "noun", "भैष॑ज्यानि", "भैष॑ज्यस्य", "भैष॑ज्याय", "", "curativeness healing efficacy"]) + let v = native_list_append(v, ["औपस्थ्य", "noun", "औपस्थ्यानि", "औपस्थ्यस्य", "औपस्थ्याय", "", "sexual intercourse"]) + let v = native_list_append(v, ["भञ्जक", "noun", "भञ्जकाः", "भञ्जकस्य", "भञ्जकाय", "", "a breaker of"]) + let v = native_list_append(v, ["आहरण", "noun", "आहरणानि", "आहरणस्य", "आहरणाय", "", "taking seizing"]) + let v = native_list_append(v, ["अङ्गसङ्ग", "noun", "अङ्ग॑सङ्गाः", "अङ्ग॑सङ्गस्य", "अङ्ग॑सङ्गाय", "", "coitus sexual intercourse"]) + let v = native_list_append(v, ["कान्ति", "noun", "कान्तयः", "कान्तेः", "कान्तये", "", "desire wish"]) + let v = native_list_append(v, ["सुगन्ध", "noun", "सु॒ग॒न्धाः", "सु॒ग॒न्धस्य॑", "सु॒ग॒न्धाय॑", "", "a pleasant fragrant"]) + let v = native_list_append(v, ["दुर्गन्ध", "noun", "दुर्गन्धाः", "दुर्गन्धस्य", "दुर्गन्धाय", "", "bad-smell stink"]) + let v = native_list_append(v, ["सूर्यकान्ति", "noun", "सूर्यकान्तयः", "सूर्यकान्तेः", "सूर्यकान्तये", "", "sunlight sunshine"]) + let v = native_list_append(v, ["सम्पत्ति", "noun", "सम्पत्तयः", "सम्पत्तेः", "सम्पत्तये", "", "prosperity welfare good"]) + let v = native_list_append(v, ["क्रान्ति", "noun", "क्रान्तयः", "क्रान्तेः", "क्रान्तये", "", "going proceeding step"]) + let v = native_list_append(v, ["नति", "noun", "नतयः", "नतेः", "नतये", "", "bending bowing stooping"]) + let v = native_list_append(v, ["नत", "noun", "न॒तानि॑", "न॒तस्य॑", "न॒ताय॑", "", "zenith-distance at meridian"]) + let v = native_list_append(v, ["प्रातःकाल", "noun", "प्रातःकालाः", "प्रातःकालस्य", "प्रातःकालाय", "", "morning daybreak"]) + let v = native_list_append(v, ["कूट", "noun", "कूटाः॑", "कूट॑स्य", "कूटा॑य", "", "maṇḍapa a kind"]) + let v = native_list_append(v, ["श्वसन", "noun", "श्व॒स॒नानि॑", "श्व॒स॒नस्य॑", "श्व॒स॒नाय॑", "", "breathing respiration breath"]) + let v = native_list_append(v, ["हिन्दु", "noun", "हिन्दवः", "हिन्दोः", "हिन्दवे", "", "a Hindu"]) + let v = native_list_append(v, ["वीरुध्", "noun", "वीरुधः", "वीरुधः", "", "", "a plant herb"]) + let v = native_list_append(v, ["हिन्दुस्थान", "noun", "हिन्दुस्थानानि", "हिन्दुस्थानस्य", "हिन्दुस्थानाय", "", "India"]) + let v = native_list_append(v, ["वङ्गन", "noun", "वङ्गनाः", "वङ्गनस्य", "वङ्गनाय", "", "aubergine"]) + let v = native_list_append(v, ["अङ्गन", "noun", "अङ्गनानि", "अङ्गनस्य", "अङ्गनाय", "", "the act of"]) + let v = native_list_append(v, ["वामन", "noun", "वा॒म॒नाः", "वा॒म॒नस्य॑", "वा॒म॒नाय॑", "", "a dwarfish bull"]) + let v = native_list_append(v, ["𑀲𑀫𑀸𑀲", "noun", "𑀲𑀫𑀸𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["माङ्गलिक", "noun", "माङ्गलिकानि", "माङ्गलिकस्य", "माङ्गलिकाय", "", "any auspicious object"]) + let v = native_list_append(v, ["सम्राज्", "noun", "स॒म्राजः॑", "स॒म्राजः॑", "स॒म्राजे॑", "", "a supreme ruler"]) + let v = native_list_append(v, ["सम्राट्", "noun", "सम्राट्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["लोल", "noun", "लोलाः", "लोलस्य", "लोलाय", "", "the penis"]) + let v = native_list_append(v, ["उदासिन्", "noun", "उदासिनः", "उदासिनः", "उदासिने", "", "a stoic philosopher"]) + let v = native_list_append(v, ["हर्षित", "noun", "हर्षितानि", "हर्षितस्य", "हर्षिताय", "", "joy delight"]) + let v = native_list_append(v, ["हेमन्", "noun", "हेमन्", "", "", "", "winter"]) + let v = native_list_append(v, ["ज्योतिरिङ्गण", "noun", "ज्योतिरिङ्गणाः", "ज्योतिरिङ्गणस्य", "ज्योतिरिङ्गणाय", "", "firefly"]) + let v = native_list_append(v, ["ज्योतिर्", "noun", "ज्योतिर्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["इङ्गन", "noun", "इङ्गनानि", "इङ्गनस्य", "इङ्गनाय", "", "shaking moving"]) + let v = native_list_append(v, ["दाक्षिण्य", "noun", "दाक्षिण्यानि", "दाक्षिण्यस्य", "दाक्षिण्याय", "", "dexterity skill officiousness"]) + let v = native_list_append(v, ["भिषक्", "noun", "भिषक्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["युक्ति", "noun", "युक्तयः", "युक्तेः", "युक्तये", "", "union junction connection"]) + let v = native_list_append(v, ["माण्डलिक", "noun", "माण्डलिकाः", "माण्डलिकस्य", "माण्डलिकाय", "", "governor of a"]) + let v = native_list_append(v, ["मण्डलिका", "noun", "मण्डलिकाः", "मण्डलिकायाः", "मण्डलिकायै", "", "a group troop"]) + let v = native_list_append(v, ["बर्बट", "noun", "बर्बटाः", "बर्बटस्य", "बर्बटाय", "", "Dolichos catjang"]) + let v = native_list_append(v, ["बर्बटी", "noun", "बर्बट्यः", "बर्बट्याः", "बर्बट्यै", "", "a kind of"]) + let v = native_list_append(v, ["निमय", "noun", "निमयाः", "निमयस्य", "निमयाय", "", "exchange barter change"]) + let v = native_list_append(v, ["बस्त", "noun", "ब॒स्ताः", "ब॒स्तस्य॑", "ब॒स्ताय॑", "", "a goat"]) + let v = native_list_append(v, ["हिन्दीम्", "noun", "हिन्दीम्", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["हिन्द्या", "noun", "हिन्द्या", "", "", "", "feminine instrumental singular"]) + let v = native_list_append(v, ["हिन्द्यै", "noun", "हिन्द्यै", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["हिन्द्याः", "noun", "हिन्द्याः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["हिन्द्यास्", "noun", "हिन्द्यास्", "", "", "", "feminine ablative singular"]) + let v = native_list_append(v, ["हिन्द्याम्", "noun", "हिन्द्याम्", "", "", "", "feminine locative singular"]) + let v = native_list_append(v, ["आर्द्र", "noun", "आ॒र्द्राः", "आ॒र्द्रस्य॑", "आ॒र्द्राय॑", "", "name of a"]) + let v = native_list_append(v, ["मद्यपान", "noun", "मद्यपानानि", "मद्यपानस्य", "मद्यपानाय", "", "drinking of alcohol"]) + let v = native_list_append(v, ["यक्ष्म", "noun", "यक्ष्माः॑", "यक्ष्म॑स्य", "यक्ष्मा॑य", "", "illness disease sickness"]) + let v = native_list_append(v, ["आर्तव", "noun", "आ॒र्त॒वाः", "आ॒र्त॒वस्य॑", "आ॒र्त॒वाय॑", "", "a section of"]) + let v = native_list_append(v, ["व्युष्टि", "noun", "व्यु॑ष्टयः", "व्यु॑ष्टेः", "व्यु॑ष्टये", "", "the first gleam"]) + let v = native_list_append(v, ["अस्थन्", "noun", "अ॒स्थानि॑", "अ॒स्थ्नः", "अ॒स्थ्ने", "", "a bone"]) + let v = native_list_append(v, ["ಮಾಸ", "noun", "ಮಾಸ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["सङ्ग", "noun", "सङ्गाः", "सङ्गस्य", "सङ्गाय", "", "sticking clinging to"]) + let v = native_list_append(v, ["अदाक्षिण्य", "noun", "अदाक्षिण्यानि", "अदाक्षिण्यस्य", "अदाक्षिण्याय", "", "incivility impoliteness"]) + let v = native_list_append(v, ["विद्यादेवी", "noun", "विद्यादेव्यः", "विद्यादेव्याः", "विद्यादेव्यै", "", "a female divinity"]) + let v = native_list_append(v, ["चान्द्र", "noun", "चान्द्राः", "चान्द्रस्य", "चान्द्राय", "", "a lunar month"]) + let v = native_list_append(v, ["वीचि", "noun", "वीच॑यः", "वीचेः॑", "वीच॑ये", "", "going or leading"]) + let v = native_list_append(v, ["वीचिस्", "noun", "वीचिस्", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["वीचिः", "noun", "वीचिः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["काल्याम्", "noun", "काल्याम्", "", "", "", "feminine locative singular"]) + let v = native_list_append(v, ["अर्यमा", "noun", "अर्यमा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["विसर्ग", "noun", "वि॒स॒र्गाः", "वि॒स॒र्गस्य॑", "वि॒स॒र्गाय॑", "", "liberation freedom letting"]) + let v = native_list_append(v, ["शिक्य", "noun", "शि॒क्या॑नि", "शि॒क्य॑स्य", "शि॒क्या॑य", "", "a kind of"]) + let v = native_list_append(v, ["शिच्", "noun", "शिचः", "शिचः", "शिचे", "", "the cord or"]) + let v = native_list_append(v, ["शिक्", "noun", "शिक्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["औत्सुक्य", "noun", "औत्सुक्यानि", "औत्सुक्यस्य", "औत्सुक्याय", "", "anxiety desire longing"]) + let v = native_list_append(v, ["चातुर्य", "noun", "चातुर्याणि", "चातुर्यस्य", "चातुर्याय", "", "skill cleverness dexterity"]) + let v = native_list_append(v, ["जठर", "noun", "ज॒ठरा॑णि", "ज॒ठर॑स्य", "ज॒ठरा॑य", "", "stomach belly abdomen"]) + let v = native_list_append(v, ["संग्रन्थन", "noun", "संग्रन्थनानि", "संग्रन्थनस्य", "संग्रन्थनाय", "", "tying together"]) + let v = native_list_append(v, ["संग्रथन", "noun", "संग्रथनानि", "संग्रथनस्य", "संग्रथनाय", "", "tying together repairing"]) + let v = native_list_append(v, ["ग्रथन", "noun", "ग्रथनानि", "ग्रथनस्य", "ग्रथनाय", "", "tying binding together"]) + let v = native_list_append(v, ["सुसंस्कृत", "noun", "सुसं॑स्कृताः", "सुसं॑स्कृतस्य", "सुसं॑स्कृताय", "", "a sacred text"]) + let v = native_list_append(v, ["सेविका", "noun", "सेविकाः", "सेविकायाः", "सेविकायै", "", "a maid female"]) + let v = native_list_append(v, ["अमनस्", "noun", "अम॑नांसि", "अम॑नसः", "अम॑नसे", "", "lack of intelligence"]) + let v = native_list_append(v, ["क्षुभ्", "noun", "क्षुभः॑", "क्षु॒भः", "क्षु॒भे", "", "a shake blow"]) + let v = native_list_append(v, ["लोप", "noun", "लोपाः॑", "लोप॑स्य", "लोपा॑य", "", "breaking hurting injury"]) + let v = native_list_append(v, ["क्षेम", "noun", "क्षेमाः॑", "क्षेम॑स्य", "क्षेमा॑य", "", "safety tranquillity peace"]) + let v = native_list_append(v, ["पिङ्ग", "noun", "पिङ्गाः", "पिङ्गस्य", "पिङ्गाय", "", "yellow colour"]) + let v = native_list_append(v, ["पादशोथ", "noun", "पादशोथाः", "पादशोथस्य", "पादशोथाय", "", "gout"]) + let v = native_list_append(v, ["दुःस्पृष्ट", "noun", "दुःस्पृष्टानि", "दुःस्पृष्टस्य", "दुःस्पृष्टाय", "", "slight contact the"]) + let v = native_list_append(v, ["स्पृष्ट", "noun", "स्पृष्टाः", "स्पृष्टस्य", "स्पृष्टाय", "", "the plosive and"]) + let v = native_list_append(v, ["रसगोलक", "noun", "रसगोलकाः", "रसगोलकस्य", "रसगोलकाय", "", "synonym of रसगोल"]) + let v = native_list_append(v, ["कामलता", "noun", "कामलताः", "कामलतायाः", "कामलतायै", "", "the penis"]) + let v = native_list_append(v, ["श्वसित", "noun", "श्वसितानि", "श्वसितस्य", "श्वसिताय", "", "breathing breath respiration"]) + let v = native_list_append(v, ["मर", "noun", "म॒राः", "म॒रस्य॑", "म॒राय॑", "", "death"]) + let v = native_list_append(v, ["कुलत्थ", "noun", "कुलत्थाः", "कुलत्थस्य", "कुलत्थाय", "", "Kulthi the horse"]) + let v = native_list_append(v, ["कुलत्थिका", "noun", "कुलत्थिकाः", "कुलत्थिकायाः", "कुलत्थिकायै", "", "Kulthi the horse"]) + let v = native_list_append(v, ["कुलत्थक", "noun", "कुलत्थकानि", "कुलत्थकस्य", "कुलत्थकाय", "", "Kulthi the horse"]) + let v = native_list_append(v, ["कालिय", "noun", "कालियाः", "कालियस्य", "कालियाय", "", "Kaliya a poisonous"]) + let v = native_list_append(v, ["प्रेमन्", "noun", "प्रे॒माणः॑", "प्रे॒म्णः", "प्रे॒म्णे", "", "love affection fondness"]) + let v = native_list_append(v, ["स्फोट", "noun", "स्फोटाः", "स्फोटस्य", "स्फोटाय", "", "bursting explosion"]) + let v = native_list_append(v, ["नमन", "noun", "नमनानि", "नमनस्य", "नमनाय", "", "bowing down sinking"]) + let v = native_list_append(v, ["बुक्कन", "noun", "बुक्कनानि", "बुक्कनस्य", "बुक्कनाय", "", "the barking of"]) + let v = native_list_append(v, ["लयन", "noun", "लयनानि", "लयनस्य", "लयनाय", "", "the act of"]) + let v = native_list_append(v, ["पूषन्", "noun", "पू॒षाणः॑", "पू॒ष्णः", "पू॒ष्णे", "", "Pūṣan a Vedic"]) + let v = native_list_append(v, ["खनक", "noun", "खनकाः", "खनकस्य", "खनकाय", "", "one who digs"]) + let v = native_list_append(v, ["विभजन", "noun", "विभजनानि", "विभजनस्य", "विभजनाय", "", "separation distinction"]) + let v = native_list_append(v, ["मुद्गौदन", "noun", "मुद्गौदनानि", "मुद्गौदनस्य", "मुद्गौदनाय", "", "a soup made"]) + let v = native_list_append(v, ["चर", "noun", "चराः", "चरस्य", "चराय", "", "a spy"]) + let v = native_list_append(v, ["लुब्ध", "noun", "लुब्धाः", "लुब्धस्य", "लुब्धाय", "", "a hunter"]) + let v = native_list_append(v, ["आलम्भ", "noun", "आलम्भाः", "आलम्भस्य", "आलम्भाय", "", "taking hold of"]) + let v = native_list_append(v, ["लम्भ", "noun", "लम्भाः", "लम्भस्य", "लम्भाय", "", "finding attainment gain"]) + let v = native_list_append(v, ["अस्थिभङ्ग", "noun", "अस्थिभङ्गाः", "अस्थिभङ्गस्य", "अस्थिभङ्गाय", "", "fracture of the"]) + let v = native_list_append(v, ["सक्थि", "noun", "सक्थी॑नि", "स॒क्थ्नः", "सक्थि॑ने", "", "the thigh thigh-bone"]) + let v = native_list_append(v, ["साफल्य", "noun", "साफल्यानि", "साफल्यस्य", "साफल्याय", "", "fruitfulness profitableness advantage"]) + let v = native_list_append(v, ["धीर्य", "noun", "धी॒र्या॑णि", "धी॒र्य॑स्य", "धी॒र्या॑य", "", "intelligence prudence"]) + let v = native_list_append(v, ["ಧೈರ್ಯ", "noun", "ಧೈರ್ಯ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["संधा", "noun", "सं॒धाः", "सं॒धायाः॑", "सं॒धायै॑", "", "union association"]) + let v = native_list_append(v, ["सन्धा", "noun", "सन्धा", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["केदार", "noun", "केदार", "", "", "", "irrigated field N."]) + let v = native_list_append(v, ["हीरक", "noun", "हीरकाः", "हीरकस्य", "हीरकाय", "", "a diamond"]) + let v = native_list_append(v, ["पादग्रन्थि", "noun", "पादग्रन्थयः", "पादग्रन्थेः", "पादग्रन्थये", "", "the ankle"]) + let v = native_list_append(v, ["पुरुषोत्तम", "noun", "पुरुषोत्तमाः", "पुरुषोत्तमस्य", "पुरुषोत्तमाय", "", "the best among"]) + let v = native_list_append(v, ["ಕಾರ್ಯ", "noun", "ಕಾರ್ಯ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ကရုဏာ", "noun", "ကရုဏာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["शिशयिषा", "noun", "शिशयिषाः", "शिशयिषायाः", "शिशयिषायै", "", "desire to lie"]) + let v = native_list_append(v, ["अर्धक", "noun", "अर्धकानि", "अर्धकस्य", "अर्धकाय", "", "a half part"]) + let v = native_list_append(v, ["आशी", "noun", "आश्यः", "आश्याः", "आश्यै", "", "a serpents fang"]) + let v = native_list_append(v, ["नाका", "noun", "नाका", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["छर्दि", "noun", "छ॒र्दयः॑", "छ॒र्देः", "छ॒र्दये॑", "", "expulsion of breath"]) + let v = native_list_append(v, ["पक्व", "noun", "प॒क्वाः", "प॒क्वस्य॑", "प॒क्वाय॑", "", "cooked food dish"]) + let v = native_list_append(v, ["पक्ति", "noun", "पक्त॑यः", "पक्तेः॑", "पक्त॑ये", "", "cooking preparation of"]) + let v = native_list_append(v, ["पक्तृ", "noun", "प॒क्तारः॑", "प॒क्तुः", "प॒क्त्रे", "", "one who cooks"]) + let v = native_list_append(v, ["पक्ता", "noun", "पक्ता", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["चन्द्रकान्ति", "noun", "चन्द्रकान्तयः", "चन्द्रकान्तेः", "चन्द्रकान्तये", "", "the brilliancy or"]) + let v = native_list_append(v, ["चुम्बा", "noun", "चुम्बाः", "चुम्बायाः", "चुम्बायै", "", "synonym of चुम्बन"]) + let v = native_list_append(v, ["प्रास", "noun", "प्रासाः", "प्रासस्य", "प्रासाय", "", "casting throwing"]) + let v = native_list_append(v, ["गृद्धि", "noun", "गृद्धयः", "गृद्धेः", "गृद्धये", "", "greed"]) + let v = native_list_append(v, ["पाश", "noun", "पाशाः॑", "पाश॑स्य", "पाशा॑य", "", "a noose cord"]) + let v = native_list_append(v, ["वायुमण्डल", "noun", "वायुमण्डलानि", "वायुमण्डलस्य", "वायुमण्डलाय", "", "a whirlwind"]) + let v = native_list_append(v, ["भल्ल", "noun", "भल्लाः", "भल्लस्य", "भल्लाय", "", "a kind of"]) + let v = native_list_append(v, ["श्वाविध्", "noun", "श्वा॒विधः॑", "श्वा॒विधः॑", "श्वा॒विधे॑", "", "a porcupine"]) + let v = native_list_append(v, ["क्रन्दन", "noun", "क्रन्दनानि", "क्रन्दनस्य", "क्रन्दनाय", "", "a cry of"]) + let v = native_list_append(v, ["वैकल्पिकता", "noun", "वैकल्पिकताः", "वैकल्पिकतायाः", "वैकल्पिकतायै", "", "optionality"]) + let v = native_list_append(v, ["वैकल्पिकत्व", "noun", "वैकल्पिकत्वानि", "वैकल्पिकत्वस्य", "वैकल्पिकत्वाय", "", "synonym of वैकल्पिकता"]) + let v = native_list_append(v, ["विनति", "noun", "विनतयः", "विनतेः", "विनतये", "", "bowing obeisance to"]) + let v = native_list_append(v, ["गर", "noun", "ग॒राः", "ग॒रस्य॑", "ग॒राय॑", "", "swallowing"]) + let v = native_list_append(v, ["क्षालन", "noun", "क्षालनानि", "क्षालनस्य", "क्षालनाय", "", "the act of"]) + let v = native_list_append(v, ["बैजिक", "noun", "बैजिकाः", "बैजिकस्य", "बैजिकाय", "", "a young shoot"]) + let v = native_list_append(v, ["वह्य", "noun", "व॒ह्यानि॑", "व॒ह्यस्य॑", "व॒ह्याय॑", "", "fit to be"]) + let v = native_list_append(v, ["डीन", "noun", "डीनानि", "डीनस्य", "डीनाय", "", "flight especially of"]) + let v = native_list_append(v, ["आनन्ददत्त", "noun", "आनन्ददत्ताः", "आनन्ददत्तस्य", "आनन्ददत्ताय", "", "the penis"]) + let v = native_list_append(v, ["लेण्ड", "noun", "लेण्डानि", "लेण्डस्य", "लेण्डाय", "", "alternative form of"]) + let v = native_list_append(v, ["शुश्रूषा", "noun", "शुश्रूषाः", "शुश्रूषायाः", "शुश्रूषायै", "", "desire or wish"]) + let v = native_list_append(v, ["मणिबन्ध", "noun", "मणिबन्धाः", "मणिबन्धस्य", "मणिबन्धाय", "", "the wrist"]) + let v = native_list_append(v, ["ಕರ್ತವ್ಯ", "noun", "ಕರ್ತವ್ಯ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["विमाता", "noun", "विमाता", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["विमातृ", "noun", "विमातरः", "विमातुः", "विमात्रे", "", "a stepmother"]) + let v = native_list_append(v, ["तुष्टि", "noun", "तुष्टयः", "तुष्टेः", "तुष्टये", "", "satisfaction contentment delight"]) + let v = native_list_append(v, ["राष्ट्रिय", "noun", "रा॒ष्ट्रियाः॑", "रा॒ष्ट्रिय॑स्य", "रा॒ष्ट्रिया॑य", "", "alternative form of"]) + let v = native_list_append(v, ["बद्धक", "noun", "बद्ध॑काः", "बद्ध॑कस्य", "बद्ध॑काय", "", "one who is"]) + let v = native_list_append(v, ["प्रकोप", "noun", "प्रकोपाः", "प्रकोपस्य", "प्रकोपाय", "", "violent anger rage"]) + let v = native_list_append(v, ["लण्ड्र", "noun", "लण्ड्र", "लण्ड्रस्य", "लण्ड्राय", "", "London the capital"]) + let v = native_list_append(v, ["आलिङ्गन", "noun", "आलिङ्गनानि", "आलिङ्गनस्य", "आलिङ्गनाय", "", "the act of"]) + let v = native_list_append(v, ["लिङ्गन", "noun", "लिङ्गनानि", "लिङ्गनस्य", "लिङ्गनाय", "", "synonym of आलिङ्गन"]) + let v = native_list_append(v, ["पितृष्वसृ", "noun", "पितृष्वसारः", "पितृष्वसुः", "पितृष्वस्रे", "", "a fathers sister"]) + let v = native_list_append(v, ["पितृष्वसा", "noun", "पितृष्वसा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पितुःष्वसृ", "noun", "पितुःष्वसारः", "पितुःष्वसुः", "पितुःष्वस्रे", "", "a fathers sister"]) + let v = native_list_append(v, ["पितुः", "noun", "पितुः", "", "", "", "ablative/genitive singular of"]) + let v = native_list_append(v, ["तोष", "noun", "तोषाः", "तोषस्य", "तोषाय", "", "satisfaction contentment pleasure"]) + let v = native_list_append(v, ["पितुःष्वसा", "noun", "पितुःष्वसा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["सासु", "noun", "सासु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["हरिमन्", "noun", "ह॒रि॒माणः॑", "ह॒रि॒म्णः", "ह॒रि॒म्णे", "", "yellow colour"]) + let v = native_list_append(v, ["हरिमा", "noun", "हरिमा", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["लिङ्गाग्र", "noun", "लिङ्गाग्राणि", "लिङ्गाग्रस्य", "लिङ्गाग्राय", "", "the glans penis"]) + let v = native_list_append(v, ["क्रीत", "noun", "क्री॒तानि॑", "क्री॒तस्य॑", "क्री॒ताय॑", "", "a bargain"]) + let v = native_list_append(v, ["इस्लामधर्म", "noun", "इस्लामधर्माः", "इस्लामधर्मस्य", "इस्लामधर्माय", "", "Islam"]) + let v = native_list_append(v, ["उल्लास", "noun", "उल्लासाः", "उल्लासस्य", "उल्लासाय", "", "light splendour"]) + let v = native_list_append(v, ["रमजान", "noun", "रमजानाः", "रमजानस्य", "रमजानाय", "", "Ramadan"]) + let v = native_list_append(v, ["रमजानमास", "noun", "रमजानमासाः", "रमजानमासस्य", "रमजानमासाय", "", "Ramadan"]) + let v = native_list_append(v, ["यवनधर्म", "noun", "यवनधर्माः", "यवनधर्मस्य", "यवनधर्माय", "", "Islam"]) + let v = native_list_append(v, ["मुस्लिमधर्म", "noun", "मुस्लिमधर्माः", "मुस्लिमधर्मस्य", "मुस्लिमधर्माय", "", "Islam"]) + let v = native_list_append(v, ["प्रजेश", "noun", "प्रजेश", "", "", "", "lord of creatures"]) + let v = native_list_append(v, ["पलाश", "noun", "पलाश", "", "", "", "leaf foliage"]) + let v = native_list_append(v, ["मञ्जूषा", "noun", "मञ्जूषाः", "मञ्जूषायाः", "मञ्जूषायै", "", "a box chest"]) + let v = native_list_append(v, ["मञ्जुषा", "noun", "मञ्जुषाः", "मञ्जुषायाः", "मञ्जुषायै", "", "alternative form of"]) + let v = native_list_append(v, ["डाकिनी", "noun", "डाकिन्यः", "डाकिन्याः", "डाकिन्यै", "", "a female imp"]) + let v = native_list_append(v, ["आषाढ", "noun", "आषाढ", "", "", "", "the fourth month"]) + let v = native_list_append(v, ["पुरंदर", "noun", "पु॒रं॒द॒राः", "पु॒रं॒द॒रस्य॑", "पु॒रं॒द॒राय॑", "", "destroyer of forts/strongholds"]) + let v = native_list_append(v, ["द्रमिल", "noun", "द्रमिलाः", "द्रमिलस्य", "द्रमिलाय", "", "synonym of द्रविड"]) + let v = native_list_append(v, ["द्रमिड", "noun", "द्रमिडाः", "द्रमिडस्य", "द्रमिडाय", "", "alternative form of"]) + let v = native_list_append(v, ["शिश्नदेव", "noun", "शि॒श्नदे॑वाः", "शि॒श्नदे॑वस्य", "शि॒श्नदे॑वाय", "", "having the phallus"]) + let v = native_list_append(v, ["सुखो", "noun", "सुखो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["संस्कृतज्ञ", "noun", "संस्कृतज्ञाः", "संस्कृतज्ञस्य", "संस्कृतज्ञाय", "", "a pundit one"]) + let v = native_list_append(v, ["आण्ड", "noun", "आ॒ण्डाः", "आ॒ण्डस्य॑", "आ॒ण्डाय॑", "", "an egg"]) + let v = native_list_append(v, ["भगवद्गीता", "noun", "भ॒ग॒व॒द्गी॒ताः", "भ॒ग॒व॒द्गी॒तायाः॑", "भ॒ग॒व॒द्गी॒तायै॑", "", "the Bhagavad Gita"]) + let v = native_list_append(v, ["ग्लानि", "noun", "ग्ला॒नयः॑", "ग्ला॒नेः", "ग्ला॒नये॑", "", "exhaustion fatigue sickness"]) + let v = native_list_append(v, ["ಗ್ಲಾನಿ", "noun", "ಗ್ಲಾನಿ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["पण्डा", "noun", "पण्डाः", "पण्डायाः", "पण्डायै", "", "wisdom knowledge"]) + let v = native_list_append(v, ["आत्मग्लानि", "noun", "आत्मग्लानयः", "आत्मग्लानेः", "आत्मग्लानये", "", "regret depression"]) + let v = native_list_append(v, ["याता", "noun", "याता", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["𑀑𑀤𑀦", "noun", "𑀑𑀤𑀦", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀚𑁆𑀬𑁄𑀢𑀺𑀭𑁆", "noun", "𑀚𑁆𑀬𑁄𑀢𑀺𑀭𑁆", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀓𑁆𑀭𑀻𑀢", "noun", "𑀓𑁆𑀭𑀻𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["छुबुक", "noun", "छुबु॑कानि", "छुबु॑कस्य", "छुबु॑काय", "", "alternative form of"]) + let v = native_list_append(v, ["𑀅𑀪𑀺𑀱𑁂𑀓", "noun", "𑀅𑀪𑀺𑀱𑁂𑀓", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["बोल्लक", "noun", "बोल्लकाः", "बोल्लकस्य", "बोल्लकाय", "", "one who speaks"]) + let v = native_list_append(v, ["व्युष्", "noun", "व्युष्", "", "", "", "dawn daybreak"]) + let v = native_list_append(v, ["परिणीत", "noun", "परिणीतानि", "परिणीतस्य", "परिणीताय", "", "the act of"]) + let v = native_list_append(v, ["श्रीवत्स", "noun", "श्रीवत्स", "", "", "", "shrivatsa endless knot"]) + let v = native_list_append(v, ["पुरम्", "noun", "पुरम्", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["पुरन्दर", "noun", "पुरन्दर", "पुरन्दरस्य", "पुरन्दराय", "", "pronunciation spelling of"]) + let v = native_list_append(v, ["परिणीति", "noun", "परिणीतयः", "परिणीतेः", "परिणीतये", "", "the act of"]) + let v = native_list_append(v, ["वैपुल्य", "noun", "वैपुल्य", "", "", "", "spaciousness thickness breadth"]) + let v = native_list_append(v, ["अङ्गमर्दन", "noun", "अङ्गमर्दनानि", "अङ्गमर्दनस्य", "अङ्गमर्दनाय", "", "massage"]) + let v = native_list_append(v, ["मृतोत्थान", "noun", "मृतोत्थानानि", "मृतोत्थानस्य", "मृतोत्थानाय", "", "resurrection"]) + let v = native_list_append(v, ["मेन्धिका", "noun", "मेन्धिकाः", "मेन्धिकायाः", "मेन्धिकायै", "", "henna “Lawsonia inermis”"]) + let v = native_list_append(v, ["मेन्धी", "noun", "मेन्ध्यः", "मेन्ध्याः", "मेन्ध्यै", "", "synonym of मेन्धिका"]) + let v = native_list_append(v, ["बहुबोल्लक", "noun", "बहुबोल्लकाः", "बहुबोल्लकस्य", "बहुबोल्लकाय", "", "a great talker"]) + let v = native_list_append(v, ["धीवर", "noun", "धी॒व॒राः", "धी॒व॒रस्य॑", "धी॒व॒राय॑", "", "a clever wise"]) + let v = native_list_append(v, ["𑀥𑀻𑀯𑀭", "noun", "𑀥𑀻𑀯𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["उत्स", "noun", "उत्साः॑", "उत्स॑स्य", "उत्सा॑य", "", "a spring fountain"]) + let v = native_list_append(v, ["प्रणयोन्माद", "noun", "प्रणयोन्मादाः", "प्रणयोन्मादस्य", "प्रणयोन्मादाय", "", "frenzy passion emotion"]) + let v = native_list_append(v, ["नमो", "noun", "नमो", "", "", "", "combining form of"]) + let v = native_list_append(v, ["पृतना", "noun", "पृत॑नाः", "पृत॑नायाः", "पृत॑नायै", "", "battle strife war"]) + let v = native_list_append(v, ["मुण्डस्", "noun", "मुण्डस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["चिन्ता", "noun", "चिन्ताः", "चिन्तायाः", "चिन्तायै", "", "thinking thought consideration"]) + let v = native_list_append(v, ["आपद्", "noun", "आपदः", "आपदः", "आपदे", "", "fall accident"]) + let v = native_list_append(v, ["ការ្យ", "noun", "ការ្យ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["लौल्य", "noun", "लौल्यानि", "लौल्यस्य", "लौल्याय", "", "restlessness unsteadiness inconstancy"]) + let v = native_list_append(v, ["औदार्य", "noun", "औदार्याणि", "औदार्यस्य", "औदार्याय", "", "nobility generosity magnanimity"]) + let v = native_list_append(v, ["ऐक्य", "noun", "ऐक्यानि", "ऐक्यस्य", "ऐक्याय", "", "oneness unity"]) + let v = native_list_append(v, ["दारिद्र्य", "noun", "दारिद्र्याणि", "दारिद्र्यस्य", "दारिद्र्याय", "", "poverty indigence"]) + let v = native_list_append(v, ["अनल", "noun", "अनल", "", "", "", "Agni the Hindu"]) + let v = native_list_append(v, ["भिद्", "noun", "भिदः॑", "भि॒दः", "भि॒दे", "", "a wall"]) + let v = native_list_append(v, ["दारिद्र", "noun", "दारिद्राणि", "दारिद्रस्य", "दारिद्राय", "", "alternative form of"]) + let v = native_list_append(v, ["महार्णव", "noun", "महार्णवाः", "महार्णवस्य", "महार्णवाय", "", "an ocean"]) + let v = native_list_append(v, ["𑘢𑘿𑘨𑘰𑘎𑘵𑘝", "noun", "𑘢𑘿𑘨𑘰𑘎𑘵𑘝", "", "", "", "Modi script form"]) + let v = native_list_append(v, ["कौरव", "noun", "कौ॒र॒वाः", "कौ॒र॒वस्य॑", "कौ॒र॒वाय॑", "", "a Kaurava descendant"]) + let v = native_list_append(v, ["शकमुरुण्ड", "noun", "शकमुरुण्डाः", "शकमुरुण्डस्य", "शकमुरुण्डाय", "", "name of a"]) + let v = native_list_append(v, ["𑀰𑀓𑀫𑀼𑀭𑀼𑀡𑁆𑀟", "noun", "𑀰𑀓𑀫𑀼𑀭𑀼𑀡𑁆𑀟", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["उषवदात", "noun", "उषवदात", "", "", "", "a male given"]) + let v = native_list_append(v, ["𑀉𑀱𑀯𑀤𑀸𑀢", "noun", "𑀉𑀱𑀯𑀤𑀸𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["उलान", "noun", "उलान", "", "", "", "a male given"]) + let v = native_list_append(v, ["𑀉𑀮𑀸𑀦", "noun", "𑀉𑀮𑀸𑀦", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["दिक्", "noun", "दिक्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ဂုဏ", "noun", "ဂုဏ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["निर्भय", "noun", "निर्भयाणि", "निर्भयस्य", "निर्भयाय", "", "fearlessness security"]) + let v = native_list_append(v, ["क्षुत्", "noun", "क्षुतः", "क्षुतः", "क्षुते", "", "a sneeze"]) + let v = native_list_append(v, ["नीललोहित", "noun", "नी॒ल॒लो॒हि॒ताः", "नी॒ल॒लो॒हि॒तस्य॑", "नी॒ल॒लो॒हि॒ताय॑", "", "purple colour dark"]) + let v = native_list_append(v, ["ᨷᩥᨲᩣ", "noun", "ᨷᩥᨲᩣ", "", "", "", "Tai Tham script"]) + let v = native_list_append(v, ["ปิตา", "noun", "ปิตา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ပိတာ", "noun", "ပိတာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["शिम्बल", "noun", "शिम्बल", "", "", "", "silk-cotton tree"]) + let v = native_list_append(v, ["ဗုဒ္ဓါယ", "noun", "ဗုဒ္ဓါယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["វុទ្ធ", "noun", "វុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["នមស៑", "noun", "នមស៑", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វុទ្ធាយ", "noun", "វុទ្ធាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["គុរុ", "noun", "គុរុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ធម្ម៌", "noun", "ធម្ម៌", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["स्फोटिका", "noun", "स्फोटिकाः", "स्फोटिकायाः", "स्फोटिकायै", "", "a small boil"]) + let v = native_list_append(v, ["शिचम्", "noun", "शिचम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["शिचा", "noun", "शिचा", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["शिचे", "noun", "शिचे", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["शिचस्", "noun", "शिचस्", "", "", "", "inflection of शिच्"]) + let v = native_list_append(v, ["शिचि", "noun", "शिचि", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["𑀭𑀢𑀺", "noun", "𑀭𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["शिलालेख", "noun", "शिलालेखाः", "शिलालेखस्य", "शिलालेखाय", "", "a rock inscription"]) + let v = native_list_append(v, ["सभापति", "noun", "स॒भापत॑यः", "स॒भापतेः॑", "स॒भापत॑ये", "", "the president or"]) + let v = native_list_append(v, ["कॢप्ति", "noun", "कॢप्त॑यः", "कॢप्तेः॑", "कॢप्त॑ये", "", "preparation"]) + let v = native_list_append(v, ["भाषास्", "noun", "भाषास्", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["अजगन्ध", "noun", "अजगन्धाः", "अजगन्धस्य", "अजगन्धाय", "", "peppermint"]) + let v = native_list_append(v, ["वाचन", "noun", "वाचनानि", "वाचनस्य", "वाचनाय", "", "the act of"]) + let v = native_list_append(v, ["प्रभाकीट", "noun", "प्रभाकीटाः", "प्रभाकीटस्य", "प्रभाकीटाय", "", "a firefly"]) + let v = native_list_append(v, ["โกฺรธ", "noun", "โกฺรธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["त्र्यम्बक", "noun", "त्र्य॑म्बकाः", "त्र्य॑म्बकस्य", "त्र्य॑म्बकाय", "", "an epithet of"]) + let v = native_list_append(v, ["𑀉𑀧𑀯𑀸𑀲", "noun", "𑀉𑀧𑀯𑀸𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["शोभना", "noun", "शोभनाः", "शोभनायाः", "शोभनायै", "", "a beautiful woman"]) + let v = native_list_append(v, ["शुभ्", "noun", "शुभः॑", "शु॒भः", "शु॒भे", "", "beauty splendour radiance"]) + let v = native_list_append(v, ["अञ्चति", "noun", "अञ्चतयः", "अञ्चतेः", "अञ्चतये", "", "wind"]) + let v = native_list_append(v, ["हुतात्मा", "noun", "हुतात्मा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["हुतात्मन्", "noun", "हुतात्मानः", "हुतात्मनः", "हुतात्मने", "", "a martyr"]) + let v = native_list_append(v, ["अप्सरास्", "noun", "अप्सरास्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["𑘭𑘽𑘭𑘿𑘎𑘵𑘝", "noun", "𑘭𑘽𑘭𑘿𑘎𑘵𑘝", "", "", "", "Modi script form"]) + let v = native_list_append(v, ["त्वच्छेद", "noun", "त्वच्छेदाः", "त्वच्छेदस्य", "त्वच्छेदाय", "", "a skin-wound scratch"]) + let v = native_list_append(v, ["विच्छेद", "noun", "विच्छेदाः", "विच्छेदस्य", "विच्छेदाय", "", "cutting apart breaking"]) + let v = native_list_append(v, ["जलकण्टक", "noun", "जलकण्टकाः", "जलकण्टकस्य", "जलकण्टकाय", "", "singhara"]) + let v = native_list_append(v, ["कर्पूर", "noun", "क॒र्पूराः॑", "क॒र्पूर॑स्य", "क॒र्पूरा॑य", "", "camphor"]) + let v = native_list_append(v, ["उद्वर्तन", "noun", "उद्वर्तनानि", "उद्वर्तनस्य", "उद्वर्तनाय", "", "the act of"]) + let v = native_list_append(v, ["सुषुप्त", "noun", "सुषु॑प्तानि", "सुषु॑प्तस्य", "सुषु॑प्ताय", "", "a deep sleep"]) + let v = native_list_append(v, ["𑀲𑀺𑀭𑀸", "noun", "𑀲𑀺𑀭𑀸", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["त्रातृ", "noun", "त्रा॒तारः॑", "त्रा॒तुः", "त्रा॒त्रे", "", "protector saviour"]) + let v = native_list_append(v, ["त्राता", "noun", "त्राता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["कुङ्कुम", "noun", "कुङ्कुमानि", "कुङ्कुमस्य", "कुङ्कुमाय", "", "saffron"]) + let v = native_list_append(v, ["ज्यायस्त्व", "noun", "ज्यायस्त्वानि", "ज्यायस्त्वस्य", "ज्यायस्त्वाय", "", "betterness superiority"]) + let v = native_list_append(v, ["गणो", "noun", "गणो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["𑀯𑀺𑀰𑁆𑀯𑀲𑀺𑀓", "noun", "𑀯𑀺𑀰𑁆𑀯𑀲𑀺𑀓", "", "", "", "An Indo-Scythian title"]) + let v = native_list_append(v, ["𑀯𑀺𑀰𑁆𑀯𑀰𑀺𑀓", "noun", "𑀯𑀺𑀰𑁆𑀯𑀰𑀺𑀓", "", "", "", "An Indo-Scythian title"]) + let v = native_list_append(v, ["होरमुर्ण्डग", "noun", "होरमुर्ण्डग", "", "", "", "a male given"]) + let v = native_list_append(v, ["अनुशय", "noun", "अनुशय", "", "", "", "repentance revocation of"]) + let v = native_list_append(v, ["क्लैब्य", "noun", "क्लैब्य", "", "", "", "impotence timidness faintheartedness"]) + let v = native_list_append(v, ["गोधा", "noun", "गो॒धाः", "गो॒धायाः॑", "गो॒धायै॑", "", "a kind of"]) + let v = native_list_append(v, ["𑀕𑁄𑀥𑀸", "noun", "𑀕𑁄𑀥𑀸", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["क्वाथ", "noun", "क्वा॒थाः", "क्वा॒थस्य॑", "क्वा॒थाय॑", "", "boiling"]) + let v = native_list_append(v, ["प्राचीर", "noun", "प्राचीराः", "प्राचीरस्य", "प्राचीराय", "", "an enclosure hedge"]) + let v = native_list_append(v, ["မာသ", "noun", "မာသ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ರುದ್ರ", "noun", "ರುದ್ರ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["अमेध्य", "noun", "अ॒मे॒ध्यानि॑", "अ॒मे॒ध्यस्य॑", "अ॒मे॒ध्याय॑", "", "any substance unfit"]) + let v = native_list_append(v, ["ख्यात", "noun", "ख्यातानि", "ख्यातस्य", "ख्याताय", "", "communication mention"]) + let v = native_list_append(v, ["ဒူတ", "noun", "ဒူတ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["पूति", "noun", "पूत॑यः", "पूतेः॑", "पूत॑ये", "", "purification cleansing"]) + let v = native_list_append(v, ["पूतिवात", "noun", "पूतिवाताः", "पूतिवातस्य", "पूतिवाताय", "", "fart"]) + let v = native_list_append(v, ["समोष", "noun", "समोषाः", "समोषस्य", "समोषाय", "", "a samosa"]) + let v = native_list_append(v, ["समोस", "noun", "समोस", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["पर्युषितवाक्य", "noun", "पर्युषितवाक्यानि", "पर्युषितवाक्यस्य", "पर्युषितवाक्याय", "", "a promise that"]) + let v = native_list_append(v, ["युवानः", "noun", "युवानः", "", "", "", "nominative/vocative plural of"]) + let v = native_list_append(v, ["युवानम्", "noun", "युवानम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["क्लान्ति", "noun", "क्लान्तयः", "क्लान्तेः", "क्लान्तये", "", "tiredness languor exhaustion"]) + let v = native_list_append(v, ["पौलिका", "noun", "पौलिकाः", "पौलिकायाः", "पौलिकायै", "", "a kind of"]) + let v = native_list_append(v, ["चिक्कण", "noun", "चि॒क्कणा॑नि", "चि॒क्कण॑स्य", "चि॒क्कणा॑य", "", "any smooth liquid"]) + let v = native_list_append(v, ["𑀓𑀸𑀭𑀡", "noun", "𑀓𑀸𑀭𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["पुंश्चिह्न", "noun", "पुंश्चिह्नानि", "पुंश्चिह्नस्य", "पुंश्चिह्नाय", "", "the penis"]) + let v = native_list_append(v, ["मदनाङ्कुश", "noun", "मदनाङ्कुशाः", "मदनाङ्कुशस्य", "मदनाङ्कुशाय", "", "the penis"]) + let v = native_list_append(v, ["अरुष", "noun", "अ॒रु॒षाः", "अ॒रु॒षस्य॑", "अ॒रु॒षाय॑", "", "the sun"]) + let v = native_list_append(v, ["धोरित", "noun", "धोरितानि", "धोरितस्य", "धोरिताय", "", "a horses trot"]) + let v = native_list_append(v, ["वृत्रहा", "noun", "वृत्रहा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["वृत्रहन्ता", "noun", "वृत्रहन्ता", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["गर्भनाडी", "noun", "गर्भनाड्यः", "गर्भनाड्याः", "गर्भनाड्यै", "", "umbilical cord"]) + let v = native_list_append(v, ["नाडी", "noun", "ना॒ड्यः॑", "ना॒ड्याः", "ना॒ड्यै", "", "stem of a"]) + let v = native_list_append(v, ["हनन", "noun", "हननाः", "हननस्य", "हननाय", "", "a kind of"]) + let v = native_list_append(v, ["जिघांसा", "noun", "जिघांसाः", "जिघांसायाः", "जिघांसायै", "", "desire to kill"]) + let v = native_list_append(v, ["काष्ठतक्षक", "noun", "काष्ठतक्षकाः", "काष्ठतक्षकस्य", "काष्ठतक्षकाय", "", "a carpenter"]) + let v = native_list_append(v, ["वर्षाकाल", "noun", "वर्षाकाल", "", "", "", "rainy season"]) + let v = native_list_append(v, ["शिरःपीडा", "noun", "शिरःपीडाः", "शिरःपीडायाः", "शिरःपीडायै", "", "headache"]) + let v = native_list_append(v, ["शिरःपट्ट", "noun", "शिरःपट्टाः", "शिरःपट्टस्य", "शिरःपट्टाय", "", "turban"]) + let v = native_list_append(v, ["लिङ्गम्", "noun", "लिङ्गम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["मौक्तिकमाला", "noun", "मौक्तिकमालाः", "मौक्तिकमालायाः", "मौक्तिकमालायै", "", "a pearl necklace"]) + let v = native_list_append(v, ["मौक्तिक", "noun", "मौक्तिकाः", "मौक्तिकस्य", "मौक्तिकाय", "", "a pearl"]) + let v = native_list_append(v, ["चिन्तामणि", "noun", "चिन्तामणयः", "चिन्तामणेः", "चिन्तामणये", "", "a fabulous gem"]) + let v = native_list_append(v, ["शक्र", "noun", "श॒क्राः", "श॒क्रस्य॑", "श॒क्राय॑", "", "Indra"]) + let v = native_list_append(v, ["𑘎𑘰𑘨𑘜", "noun", "𑘎𑘰𑘨𑘜𑘰𑘡𑘱", "𑘎𑘰𑘨𑘜𑘭𑘿𑘧", "𑘎𑘰𑘨𑘜𑘰𑘧", "", "Modi script form"]) + let v = native_list_append(v, ["अक्षितोति", "noun", "अक्षि॑तोतयः", "अक्षि॑तोतेः", "अक्षि॑तोतये", "", "an epithet of"]) + let v = native_list_append(v, ["अक्षुण्णता", "noun", "अक्षुण्णताः", "अक्षुण्णतायाः", "अक्षुण्णतायै", "", "the state of"]) + let v = native_list_append(v, ["सहस्रनेत्र", "noun", "सहस्रनेत्र", "सहस्रनेत्रस्य", "सहस्रनेत्राय", "", "an epithet of"]) + let v = native_list_append(v, ["वज्रहस्त", "noun", "वज्र॑हस्ताः", "वज्र॑हस्तस्य", "वज्र॑हस्ताय", "", "an epithet of"]) + let v = native_list_append(v, ["मेढ्रज", "noun", "मेढ्रजाः", "मेढ्रजस्य", "मेढ्रजाय", "", "an epithet of"]) + let v = native_list_append(v, ["मेधाविन्", "noun", "मे॒धा॒विनः॑", "मे॒धा॒विनः॑", "मे॒धा॒विने॑", "", "a learned man"]) + let v = native_list_append(v, ["यष्टृ", "noun", "य॒ष्टारः॑", "य॒ष्टुः", "य॒ष्ट्रे", "", "one who worships"]) + let v = native_list_append(v, ["कृच्छ्रम्", "noun", "कृच्छ्रम्", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["तप्त", "noun", "त॒प्तानि॑", "त॒प्तस्य॑", "त॒प्ताय॑", "", "hot water"]) + let v = native_list_append(v, ["क्ष्वेडित", "noun", "क्ष्वेडिताः", "क्ष्वेडितस्य", "क्ष्वेडिताय", "", "humming murmuring growling"]) + let v = native_list_append(v, ["खष्प", "noun", "खष्पाः", "खष्पस्य", "खष्पाय", "", "anger"]) + let v = native_list_append(v, ["आकाशेश", "noun", "आ॒का॒शे॒शाः", "आ॒का॒शे॒शस्य॑", "आ॒का॒शे॒शाय॑", "", "lord of the"]) + let v = native_list_append(v, ["उदाहरणम्", "noun", "उदाहरणम्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["उदाहरणे", "noun", "उदाहरणे", "", "", "", "neuter nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["कृच्छ्र", "noun", "कृ॒च्छ्राणि॑", "कृ॒च्छ्रस्य॑", "कृ॒च्छ्राय॑", "", "trouble pain calamity"]) + let v = native_list_append(v, ["कृच्छ्रे", "noun", "कृच्छ्रे", "", "", "", "m or n"]) + let v = native_list_append(v, ["वत्सल", "noun", "वत्सलाः", "वत्सलस्य", "वत्सलाय", "", "The tender sentiment"]) + let v = native_list_append(v, ["धार्मिकत्व", "noun", "धार्मिकत्व", "", "", "", "righteousness virtue justice"]) + let v = native_list_append(v, ["नायकाधिप", "noun", "नायकाधिपाः", "नायकाधिपस्य", "नायकाधिपाय", "", "chief of leaders"]) + let v = native_list_append(v, ["नराधिप​", "noun", "नराधिपाः", "नराधिपस्य", "नराधिपाय", "", "king of men"]) + let v = native_list_append(v, ["नरः", "noun", "नरः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["नरौ", "noun", "नरौ", "", "", "", "nominative/accusative/vocative dual of"]) + let v = native_list_append(v, ["नराः", "noun", "नराः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["नरम्", "noun", "नरम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["नरान्", "noun", "नरान्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["नरेण", "noun", "नरेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["नराभ्याम्", "noun", "नराभ्याम्", "", "", "", "instrumental/dative/ablative dual of"]) + let v = native_list_append(v, ["नरैः", "noun", "नरैः", "", "", "", "by/using the men"]) + let v = native_list_append(v, ["नराय", "noun", "नराय", "", "", "", "for the man"]) + let v = native_list_append(v, ["नरस्य", "noun", "नरस्य", "", "", "", "the mans genitive"]) + let v = native_list_append(v, ["नरयोस्", "noun", "नरयोस्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["नरेभ्यस्", "noun", "नरेभ्यस्", "", "", "", "dative/ablative plural of"]) + let v = native_list_append(v, ["नराणाम्", "noun", "नराणाम्", "", "", "", "of the men"]) + let v = native_list_append(v, ["नरे", "noun", "नरे", "", "", "", "in/on the man"]) + let v = native_list_append(v, ["नरात्", "noun", "नरात्", "", "", "", "from the man"]) + let v = native_list_append(v, ["नरेषु", "noun", "नरेषु", "", "", "", "in/on the men"]) + let v = native_list_append(v, ["सुराधिप", "noun", "सुराधिपाः", "सुराधिपस्य", "सुराधिपाय", "", "Indra the king"]) + let v = native_list_append(v, ["सुराधिपस्", "noun", "सुराधिपस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["महर्षि", "noun", "म॒हर्ष॑यः", "म॒हर्षेः॑", "म॒हर्ष॑ये", "", "a Maharishi a"]) + let v = native_list_append(v, ["उच्चार", "noun", "उच्चाराणि", "उच्चारस्य", "उच्चाराय", "", "feces excrement discharge"]) + let v = native_list_append(v, ["कुर्कुर", "noun", "कुर्कुराः", "कुर्कुरस्य", "कुर्कुराय", "", "dog"]) + let v = native_list_append(v, ["सांवादिक", "noun", "सांवादिकाः", "सांवादिकस्य", "सांवादिकाय", "", "a controversialist or"]) + let v = native_list_append(v, ["चिच्छक्ति", "noun", "चिच्छक्तयः", "चिच्छक्तेः", "चिच्छक्तये", "", "thinking capacity of"]) + let v = native_list_append(v, ["मुहूर्त", "noun", "मु॒हू॒र्ताः", "मु॒हू॒र्तस्य॑", "मु॒हू॒र्ताय॑", "", "a moment an"]) + let v = native_list_append(v, ["नक्र", "noun", "नक्र", "", "", "", "the zodiac sign"]) + let v = native_list_append(v, ["कौर्पि", "noun", "कौर्पयः", "कौर्पेः", "कौर्पये", "", "the zodiac sign"]) + let v = native_list_append(v, ["समृद्धि", "noun", "समृ॑द्धयः", "समृ॑द्धेः", "समृ॑द्धये", "", "great prosperity or"]) + let v = native_list_append(v, ["नार", "noun", "नार", "", "", "", "Human mortal"]) + let v = native_list_append(v, ["हव्य", "noun", "ह॒व्यानि॑", "ह॒व्यस्य॑", "ह॒व्याय॑", "", "anything to be"]) + let v = native_list_append(v, ["ऐन्दव", "noun", "ऐन्दवाः", "ऐन्दवस्य", "ऐन्दवाय", "", "the Cāndrāyaṇa vrata"]) + let v = native_list_append(v, ["हरिण", "noun", "ह॒रि॒णाः", "ह॒रि॒णस्य॑", "ह॒रि॒णाय॑", "", "a deer antelope"]) + let v = native_list_append(v, ["वयन", "noun", "वयनानि", "वयनस्य", "वयनाय", "", "the act of"]) + let v = native_list_append(v, ["चिर", "noun", "चिराणि", "चिरस्य", "चिराय", "", "delay"]) + let v = native_list_append(v, ["𑀭𑀸𑀫𑀸𑀬𑀡", "noun", "𑀭𑀸𑀫𑀸𑀬𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["गङ्गाधर", "noun", "गङ्गाधर", "गङ्गाधरस्य", "गङ्गाधराय", "", "holder of the"]) + let v = native_list_append(v, ["चान्द्रायण", "noun", "चान्द्रायणाः", "चान्द्रायणस्य", "चान्द्रायणाय", "", "someone who observes"]) + let v = native_list_append(v, ["दिङ्मुख", "noun", "दिङ्मुखानि", "दिङ्मुखस्य", "दिङ्मुखाय", "", "any quarter or"]) + let v = native_list_append(v, ["छगल", "noun", "छ॒ग॒लाः", "छ॒ग॒लस्य॑", "छ॒ग॒लाय॑", "", "a goat"]) + let v = native_list_append(v, ["𑀰𑀓𑁆𑀭", "noun", "𑀰𑀓𑁆𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀮𑀺𑀗𑁆𑀕", "noun", "𑀮𑀺𑀗𑁆𑀕", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀚𑁆𑀬𑁄𑀢𑀺𑀭𑀺𑀗𑁆𑀕𑀡", "noun", "𑀚𑁆𑀬𑁄𑀢𑀺𑀭𑀺𑀗𑁆𑀕𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀢𑀾𑀧𑁆𑀢𑀺", "noun", "𑀢𑀾𑀧𑁆𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀕𑀭𑁆𑀪𑀥𑀸𑀭𑀡", "noun", "𑀕𑀭𑁆𑀪𑀥𑀸𑀭𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["सदाशिव", "noun", "सदाशिवाः", "सदाशिवस्य", "सदाशिवाय", "", "a name of"]) + let v = native_list_append(v, ["श्रीनिवास", "noun", "श्रीनिवासाः", "श्रीनिवासस्य", "श्रीनिवासाय", "", "the abode of"]) + let v = native_list_append(v, ["𑀓𑁆𑀭𑀸𑀦𑁆𑀢𑀺", "noun", "𑀓𑁆𑀭𑀸𑀦𑁆𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀦𑀬𑀦𑀧𑀼𑀝", "noun", "𑀦𑀬𑀦𑀧𑀼𑀝", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["मुरलीधर", "noun", "मुरलीधराः", "मुरलीधरस्य", "मुरलीधराय", "", "the holder of"]) + let v = native_list_append(v, ["सुश्रोणी", "noun", "सुश्रोण्यः", "सुश्रोण्याः", "सुश्रोण्यै", "", "a woman with"]) + let v = native_list_append(v, ["𑀲𑀼𑀰𑁆𑀭𑁄𑀡𑀻", "noun", "𑀲𑀼𑀰𑁆𑀭𑁄𑀡𑀻", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["दधन्", "noun", "द॒धानि॑", "द॒ध्नः", "द॒ध्ने", "", "coagulated milk thick"]) + let v = native_list_append(v, ["सहस्रदीधिति", "noun", "सहस्रदीधितयः", "सहस्रदीधितेः", "सहस्रदीधितये", "", "possessed of a"]) + let v = native_list_append(v, ["चक्षुस्", "noun", "चक्षुस्", "", "", "", "light clearness"]) + let v = native_list_append(v, ["𑀔𑀭𑁆𑀚𑀽", "noun", "𑀔𑀭𑁆𑀚𑀽", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀔𑀭𑁆𑀚𑀼", "noun", "𑀔𑀭𑁆𑀚𑀼", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["मदन", "noun", "मद॑नाः", "मद॑नस्य", "मद॑नाय", "", "passion love of"]) + let v = native_list_append(v, ["पीत", "noun", "पीताः", "पीतस्य", "पीताय", "", "yellow color"]) + let v = native_list_append(v, ["त्रिपुण्ड्र", "noun", "त्रिपुण्ड्र", "", "", "", "Three curved horizontal"]) + let v = native_list_append(v, ["𑀧𑁆𑀭𑁂𑀫𑀦𑁆", "noun", "𑀧𑁆𑀭𑁂𑀫𑀦𑁆", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀲𑁆𑀢𑀼𑀢𑀺", "noun", "𑀲𑁆𑀢𑀼𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀪𑀕𑀤𑀢𑁆𑀢", "noun", "𑀪𑀕𑀤𑀢𑁆𑀢", "𑀪𑀕𑀤𑀢𑁆𑀢𑀲𑁆𑀬", "𑀪𑀕𑀤𑀢𑁆𑀢𑀸𑀬", "", "Brahmi script form"]) + let v = native_list_append(v, ["एकाह", "noun", "एकाहाः", "एकाहस्य", "एकाहाय", "", "the duration of"]) + let v = native_list_append(v, ["स्तोम", "noun", "स्तोमाः॑", "स्तोम॑स्य", "स्तोमा॑य", "", "praise eulogy"]) + let v = native_list_append(v, ["प्रत्युत्पन्न", "noun", "प्रत्युत्पन्नानि", "प्रत्युत्पन्नस्य", "प्रत्युत्पन्नाय", "", "multiplication product the"]) + let v = native_list_append(v, ["मर्कट", "noun", "म॒र्कटाः॑", "म॒र्कट॑स्य", "म॒र्कटा॑य", "", "a monkey ape"]) + let v = native_list_append(v, ["वयस्", "noun", "वयां॑सि", "वय॑सः", "वय॑से", "", "strength vigor force"]) + let v = native_list_append(v, ["श्वानी", "noun", "श्वान्यः", "श्वान्याः", "श्वान्यै", "", "a bitch female"]) + let v = native_list_append(v, ["𑀩𑀾𑀳𑀲𑁆𑀧𑀢𑀺", "noun", "𑀩𑀾𑀳𑀲𑁆𑀧𑀢𑀺", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["नकुल", "noun", "न॒कु॒लाः", "न॒कु॒लस्य॑", "न॒कु॒लाय॑", "", "Any of genus"]) + let v = native_list_append(v, ["नना", "noun", "न॒नाः", "न॒नायाः॑", "न॒नायै॑", "", "mother mummy"]) + let v = native_list_append(v, ["प्रतिबिम्ब", "noun", "प्रतिबिम्बानि", "प्रतिबिम्बस्य", "प्रतिबिम्बाय", "", "reflected image reflection"]) + let v = native_list_append(v, ["अनुष्टुभ्", "noun", "अ॒नु॒ष्टुभः॑", "अ॒नु॒ष्टुभः॑", "अ॒नु॒ष्टुभे॑", "", "the Anuṣṭubh a"]) + let v = native_list_append(v, ["स्वप्नदोष", "noun", "स्वप्नदोष", "", "", "", "nocturnal emission night"]) + let v = native_list_append(v, ["सरित्", "noun", "स॒रितः॑", "स॒रितः॑", "स॒रिते॑", "", "river stream"]) + let v = native_list_append(v, ["अपस्", "noun", "अपां॑सि", "अप॑सः", "अप॑से", "", "work action especially"]) + let v = native_list_append(v, ["भर्गस्", "noun", "भर्गां॑सि", "भर्ग॑सः", "भर्ग॑से", "", "radiance splendour lustre"]) + let v = native_list_append(v, ["विवेको", "noun", "विवेको", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["कर्तृ", "noun", "क॒र्तारः॑", "क॒र्तुः", "क॒र्त्रे", "", "maker doer agent"]) + let v = native_list_append(v, ["महीरजस्", "noun", "महीरजांसि", "महीरजसः", "महीरजसे", "", "sand"]) + let v = native_list_append(v, ["स्फटिक", "noun", "स्फटिकाः", "स्फटिकस्य", "स्फटिकाय", "", "crystal quartz"]) + let v = native_list_append(v, ["पिटक", "noun", "पिटकाः", "पिटकस्य", "पिटकाय", "", "a basket or"]) + let v = native_list_append(v, ["प्रत्यङ्गिरा", "noun", "प्रत्यङ्गिरा", "", "", "", "a form of"]) + let v = native_list_append(v, ["राजपुत्र", "noun", "रा॒ज॒पु॒त्राः", "रा॒ज॒पु॒त्रस्य॑", "रा॒ज॒पु॒त्राय॑", "", "the son of"]) + let v = native_list_append(v, ["मात्सर्यम्", "noun", "मात्सर्यम्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ऊष्मन्", "noun", "ऊ॒ष्माणः॑", "ऊ॒ष्मणः॑", "ऊ॒ष्मणे॑", "", "heat warmth glow"]) + let v = native_list_append(v, ["उष्मन्", "noun", "उष्माणः", "उष्मणः", "उष्मणे", "", "alternative form of"]) + let v = native_list_append(v, ["सेको", "noun", "सेको", "", "", "", "Devanagari script form"]) + let v = native_list_append(v, ["रक्षिका", "noun", "रक्षिकाः", "रक्षिकायाः", "रक्षिकायै", "", "female equivalent of"]) + let v = native_list_append(v, ["अतिथिदेव", "noun", "अतिथिदेवाः", "अतिथिदेवस्य", "अतिथिदेवाय", "", "someone who treats"]) + let v = native_list_append(v, ["मातृदेव", "noun", "मातृदेवाः", "मातृदेवस्य", "मातृदेवाय", "", "someone who treats"]) + let v = native_list_append(v, ["पितृदेव", "noun", "पितृदेवाः", "पितृदेवस्य", "पितृदेवाय", "", "someone who treats"]) + let v = native_list_append(v, ["आचार्यदेव", "noun", "आचार्यदेवाः", "आचार्यदेवस्य", "आचार्यदेवाय", "", "someone who treats"]) + let v = native_list_append(v, ["अतिथिदेवस्", "noun", "अतिथिदेवस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["पितृदेवस्", "noun", "पितृदेवस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["मातृदेवस्", "noun", "मातृदेवस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["आचार्यदेवो", "noun", "आचार्यदेवो", "", "", "", "combining form of"]) + let v = native_list_append(v, ["आचार्यदेवः", "noun", "आचार्यदेवः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["𑀰𑁆𑀭𑀻", "noun", "𑀰𑁆𑀭𑀻", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["শ্রী", "noun", "শ্রী", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["શ્રી", "noun", "શ્રી", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["ᬰ᭄ᬭᬷ", "noun", "ᬰ᭄ᬭᬷ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["ꦯꦿꦷ", "noun", "ꦯꦿꦷ", "", "", "", "Javanese script form"]) + let v = native_list_append(v, ["শ্ৰী", "noun", "শ্ৰী", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["𑖫𑖿𑖨𑖱", "noun", "𑖫𑖿𑖨𑖱", "", "", "", "Siddham script form"]) + let v = native_list_append(v, ["𑌶𑍍𑌰𑍀", "noun", "𑌶𑍍𑌰𑍀", "", "", "", "Grantha script form"]) + let v = native_list_append(v, ["ಶ್ರೀ", "noun", "ಶ್ರೀ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ឝ្រី", "noun", "ឝ្រី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ศฺรี", "noun", "ศฺรี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ཤྲཱི", "noun", "ཤྲཱི", "", "", "", "Tibetan script form"]) + let v = native_list_append(v, ["ၐြီ", "noun", "ၐြီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["वङ्ग", "noun", "वङ्ग", "", "", "", "Bengal a region"]) + let v = native_list_append(v, ["झष", "noun", "झषाः", "झषस्य", "झषाय", "", "fish"]) + let v = native_list_append(v, ["स्थूर", "noun", "स्थूराः", "स्थूरस्य", "स्थूराय", "", "a bull"]) + let v = native_list_append(v, ["स्वर्ण", "noun", "स्वर्ण", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["श्लेष्मन्", "noun", "श्ले॒ष्माणः॑", "श्ले॒ष्मणः॑", "श्ले॒ष्मणे॑", "", "phlegm mucus rheum"]) + let v = native_list_append(v, ["श्लेष्मा", "noun", "श्लेष्मा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["उद्देश", "noun", "उद्देशाः", "उद्देशस्य", "उद्देशाय", "", "the act of"]) + let v = native_list_append(v, ["जीरक", "noun", "जीरकाः", "जीरकस्य", "जीरकाय", "", "cumin"]) + let v = native_list_append(v, ["उल्व", "noun", "उल्वा॑नि", "उल्व॑स्य", "उल्वा॑य", "", "alternative form of"]) + let v = native_list_append(v, ["चिह्न", "noun", "चिह्न", "", "", "", "symbol"]) + let v = native_list_append(v, ["आह्लाद", "noun", "आह्लाद", "", "", "", "laugh"]) + let v = native_list_append(v, ["भयङ्कर", "noun", "भयङ्कराः", "भयङ्करस्य", "भयङ्कराय", "", "a type of"]) + let v = native_list_append(v, ["जनो", "noun", "जनो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["कायो", "noun", "कायो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["तथागत", "noun", "तथागताः", "तथागतस्य", "तथागताय", "", "tathagata an appellation"]) + let v = native_list_append(v, ["वादो", "noun", "वादो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["වාදො", "noun", "වාදො", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["ဝါဒေါ", "noun", "ဝါဒေါ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ວາໂທ", "noun", "ວາໂທ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["𑘀𑘪𑘭𑘿𑘞𑘰", "noun", "𑘀𑘪𑘭𑘿𑘞𑘰", "", "", "", "Modi script form"]) + let v = native_list_append(v, ["वानरो", "noun", "वानरो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["रोचन", "noun", "रो॒च॒नानि॑", "रो॒च॒नस्य॑", "रो॒च॒नाय॑", "", "light brightness"]) + let v = native_list_append(v, ["विरोचन", "noun", "वि॒रोच॑नाः", "वि॒रोच॑नस्य", "वि॒रोच॑नाय", "", "the sun"]) + let v = native_list_append(v, ["𑀤𑁂𑀯𑀓𑀼𑀮", "noun", "𑀤𑁂𑀯𑀓𑀼𑀮", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["वैरोचन", "noun", "वैरोचन", "", "", "", "an epithet of"]) + let v = native_list_append(v, ["बुद्ध", "verb", "बुद्ध past passive participle", "buddha", "बुध्", "", "past passive participle"]) + let v = native_list_append(v, ["आद", "verb", "आद॑", "", "", "", "perfect of अद्"]) + let v = native_list_append(v, ["आप", "verb", "आप॑", "", "", "", "perfect of आप्"]) + let v = native_list_append(v, ["निन्दति", "verb", "निन्दा॑मि", "अनि॑न्दीत्", "", "", "to insult"]) + let v = native_list_append(v, ["खादति", "verb", "खादा॑मि", "अखा॑दीत्", "", "", "to chew bite"]) + let v = native_list_append(v, ["इच्छति", "verb", "इ॒च्छामि॑", "", "", "", "to desire wish"]) + let v = native_list_append(v, ["क्षालयति", "verb", "क्षा॒लया॑मि", "", "", "", "to wash cleanse"]) + let v = native_list_append(v, ["अमृत", "verb", "अम्रि॑", "अमृ॑त", "", "", "aorist of मृ"]) + let v = native_list_append(v, ["धृत", "verb", "धृ॒त past passive participle", "dhṛtá", "धृ", "", "past participle of"]) + let v = native_list_append(v, ["कार्य", "verb", "का॒र्य॑", "kāryà", "metrical Vedic kāríya", "", "future passive participle"]) + let v = native_list_append(v, ["माता", "verb", "मातास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["चक्र", "verb", "च॒क्र", "cakrá", "", "", "second-person plural active"]) + let v = native_list_append(v, ["स्रवति", "verb", "स्रवा॑मि", "", "", "", "to flow stream"]) + let v = native_list_append(v, ["वयति", "verb", "वया॑मि", "", "", "", "to spin weave"]) + let v = native_list_append(v, ["भाति", "verb", "भामि॑", "", "", "", "to shine be"]) + let v = native_list_append(v, ["भरति", "verb", "भरा॑मि", "", "", "", "to bear carry"]) + let v = native_list_append(v, ["भुरति", "verb", "भु॒रामि॑", "", "", "", "to palpitate"]) + let v = native_list_append(v, ["बर्हयति", "verb", "ब॒र्हया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["बोधति", "verb", "बोधा॑मि", "", "", "", "to wake wake"]) + let v = native_list_append(v, ["भवति", "verb", "भवा॑मि", "", "", "", "to become"]) + let v = native_list_append(v, ["ददाति", "verb", "ददा॑मि", "", "", "", "to give bestow"]) + let v = native_list_append(v, ["दाम्यति", "verb", "दाम्या॑मि", "", "", "", "to be tamed"]) + let v = native_list_append(v, ["यभति", "verb", "यभा॑मि", "", "", "", "to have sexual"]) + let v = native_list_append(v, ["दुष्यति", "verb", "दुष्यामि", "", "", "", "to become bad"]) + let v = native_list_append(v, ["द्राति", "verb", "द्रामि॑", "", "", "", "to sleep"]) + let v = native_list_append(v, ["द्रायति", "verb", "द्राया॑मि", "", "", "", "to sleep"]) + let v = native_list_append(v, ["दहति", "verb", "दहा॑मि", "", "", "", "to burn consume"]) + let v = native_list_append(v, ["धयति", "verb", "धया॑मि", "", "", "", "to suck drink"]) + let v = native_list_append(v, ["दधाति", "verb", "दधा॑मि", "", "", "", "to put place"]) + let v = native_list_append(v, ["धृष्णोति", "verb", "धृ॒ष्णोमि॑", "", "", "", "to be bold"]) + let v = native_list_append(v, ["ओषति", "verb", "ओषा॑मि", "", "", "", "to burn burn"]) + let v = native_list_append(v, ["द्रुह्यति", "verb", "द्रुह्या॑मि", "", "", "", "to hurt injure"]) + let v = native_list_append(v, ["जानाति", "verb", "जा॒नामि॑", "", "", "", "to know have"]) + let v = native_list_append(v, ["ह्वरति", "verb", "ह्वरा॑मि", "", "", "", "to deviate or"]) + let v = native_list_append(v, ["ग्रसति", "verb", "ग्रसा॑मि", "", "", "", "to affect or"]) + let v = native_list_append(v, ["हन्ति", "verb", "हन्मि॑", "", "", "", "to strike beat"]) + let v = native_list_append(v, ["अत्स्यति", "verb", "atsyati", "", "", "", "future active indicative"]) + let v = native_list_append(v, ["अस्ति", "verb", "अस्मि॑", "", "", "", "to be"]) + let v = native_list_append(v, ["सुवति", "verb", "सु॒वामि॑", "", "", "", "to set in"]) + let v = native_list_append(v, ["असि", "verb", "असि॑", "ási", "", "", "second-person singular present"]) + let v = native_list_append(v, ["लषति", "verb", "लषति third-singular indicative", "laṣati", "", "", "to wish desire"]) + let v = native_list_append(v, ["वहति", "verb", "वहा॑मि", "", "", "", "to carry transport"]) + let v = native_list_append(v, ["वस्ते", "verb", "वसे॑", "", "", "", "to put on"]) + let v = native_list_append(v, ["वमति", "verb", "वमा॑मि", "", "", "", "to vomit spit"]) + let v = native_list_append(v, ["वृणोति", "verb", "वृ॒णोमि॑", "", "", "", "to cover screen"]) + let v = native_list_append(v, ["वाति", "verb", "वामि॑", "", "", "", "to blow as"]) + let v = native_list_append(v, ["दुग्ध", "verb", "दु॒ग्ध", "dugdhá", "दुह्", "", "past passive participle"]) + let v = native_list_append(v, ["सत्", "verb", "सत् present active participle", "sát", "अस्", "", "present participle of"]) + let v = native_list_append(v, ["जीवति", "verb", "जीवा॑मि", "", "", "", "lives is or"]) + let v = native_list_append(v, ["वेद", "verb", "वेद॑", "", "", "", "perfect of विद्"]) + let v = native_list_append(v, ["वेत्ति", "verb", "वेद्मि॑", "", "", "", "to know understand"]) + let v = native_list_append(v, ["अत्ति", "verb", "अद्मि॑", "", "", "", "to eat consume"]) + let v = native_list_append(v, ["एति", "verb", "एमि॑", "", "", "", "to go walk"]) + let v = native_list_append(v, ["अजति", "verb", "अजा॑मि", "", "", "", "to drive"]) + let v = native_list_append(v, ["पिपर्ति", "verb", "पिप॑र्मि", "", "", "", "to bring over"]) + let v = native_list_append(v, ["तिष्ठति", "verb", "तिष्ठा॑मि", "", "", "", "to stand stand"]) + let v = native_list_append(v, ["हरति", "verb", "हरा॑मि", "", "", "", "to take bear"]) + let v = native_list_append(v, ["अस्मि", "verb", "अस्मि॑", "ásmi", "", "", "present active first-person"]) + let v = native_list_append(v, ["सीदति", "verb", "सीदा॑मि", "", "", "", "to sit sit"]) + let v = native_list_append(v, ["सचते", "verb", "सचे॑", "", "", "", "to be associated"]) + let v = native_list_append(v, ["गच्छति", "verb", "गच्छा॑मि", "", "", "", "to go move"]) + let v = native_list_append(v, ["द्यति", "verb", "द्यामि॑", "", "", "", "to bind"]) + let v = native_list_append(v, ["देग्धि", "verb", "देह्मि॑", "", "", "", "to anoint smear"]) + let v = native_list_append(v, ["चरति", "verb", "चरा॑मि", "अचा॑रीत्", "", "", "to move oneself"]) + let v = native_list_append(v, ["रोचते", "verb", "रोचे॑", "", "", "", "to shine be"]) + let v = native_list_append(v, ["मन्यते", "verb", "मन्ये॑", "", "", "", "to think believe"]) + let v = native_list_append(v, ["तनोति", "verb", "त॒नोमि॑", "", "", "", "to extend spread"]) + let v = native_list_append(v, ["पाति", "verb", "पामि॑", "", "", "", "to watch keep"]) + let v = native_list_append(v, ["पिबति", "verb", "पिबा॑मि", "", "", "", "to drink quaff"]) + let v = native_list_append(v, ["पचति", "verb", "पचा॑मि", "", "", "", "to cook bake"]) + let v = native_list_append(v, ["पर्दते", "verb", "पर्दे॑", "", "", "", "to fart"]) + let v = native_list_append(v, ["पतति", "verb", "पता॑मि", "अप॑प्तत्", "", "", "to fly soar"]) + let v = native_list_append(v, ["प्रीणाति", "verb", "प्री॒णामि॑", "", "", "", "to please gladden"]) + let v = native_list_append(v, ["प्रवते", "verb", "प्रवे॑", "", "", "", "to spring up"]) + let v = native_list_append(v, ["पृच्छति", "verb", "पृ॒च्छामि॑", "", "", "", "to ask question"]) + let v = native_list_append(v, ["दिशति", "verb", "दि॒शामि॑", "", "", "", "to point out"]) + let v = native_list_append(v, ["तपति", "verb", "तपा॑मि", "", "", "", "to give out"]) + let v = native_list_append(v, ["तरति", "verb", "तरा॑मि", "", "", "", "to pass across"]) + let v = native_list_append(v, ["तृष्यति", "verb", "तृष्या॑मि", "", "", "", "to be thirsty"]) + let v = native_list_append(v, ["तक्षति", "verb", "तक्षा॑मि", "", "", "", "to form by"]) + let v = native_list_append(v, ["क्षेति", "verb", "क्षेमि॑", "", "", "", "to abide stay"]) + let v = native_list_append(v, ["तन्यति", "verb", "तन्यामि", "", "", "", "to resound roar"]) + let v = native_list_append(v, ["श्रीणति", "verb", "śrīṇati", "", "", "", "misspelling of श्रीणाति"]) + let v = native_list_append(v, ["श्रायति", "verb", "श्राया॑मि", "", "", "", "to cook boil"]) + let v = native_list_append(v, ["श्रयति", "verb", "श्रया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["गुञ्जति", "verb", "गुञ्जामि", "", "", "", "to buzz hum"]) + let v = native_list_append(v, ["साध्य", "verb", "सा॒ध्य third-singular indicative", "sādhyá", "", "", "to be subdued"]) + let v = native_list_append(v, ["वसति", "verb", "वसा॑मि", "", "", "", "to dwell live"]) + let v = native_list_append(v, ["स्वेदते", "verb", "स्वेदे॑", "", "", "", "to sweat perspire"]) + let v = native_list_append(v, ["लभते", "verb", "लभे", "", "", "", "to take seize"]) + let v = native_list_append(v, ["धरति", "verb", "धरा॑मि", "", "", "", "to hold bear"]) + let v = native_list_append(v, ["जुगुप्सु", "verb", "जुगुप्सु desiderative active participle", "jugupsu", "गुप्", "", "present active desiderative"]) + let v = native_list_append(v, ["श्रद्दधाति", "verb", "श्रद्दधामि", "", "", "", "to have faith"]) + let v = native_list_append(v, ["लिख", "verb", "likha", "", "", "", "present imperative active"]) + let v = native_list_append(v, ["लिखते", "verb", "likhate", "", "", "", "present indicative middle"]) + let v = native_list_append(v, ["लिखे", "verb", "likhe", "", "", "", "present indicative middle"]) + let v = native_list_append(v, ["बोधि", "verb", "बो॒धि", "bodhí", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["गृणाति", "verb", "गृ॒णामि॑", "", "", "", "to call call"]) + let v = native_list_append(v, ["शोभित", "verb", "शोभित third-singular indicative", "śobhita", "", "", "adorned graced decorated"]) + let v = native_list_append(v, ["द्वेष्टि", "verb", "द्वेष्मि॑", "", "", "", "to hate show"]) + let v = native_list_append(v, ["भनति", "verb", "भना॑मि", "", "", "", "to sound resound"]) + let v = native_list_append(v, ["सुरति", "verb", "सुरामि", "", "", "", "to rule possess"]) + let v = native_list_append(v, ["अपोहति", "verb", "अपोहामि", "", "", "", "to strip off"]) + let v = native_list_append(v, ["ष्ठीवति", "verb", "ष्ठीवा॑मि", "", "", "", "to spit expectorate"]) + let v = native_list_append(v, ["वर्तते", "verb", "वर्ते॑", "", "", "", "to turn to"]) + let v = native_list_append(v, ["स्मयते", "verb", "स्मय॑ते third-singular indicative", "smáyate", "स्मि", "", "to smile laugh"]) + let v = native_list_append(v, ["असत्", "verb", "अस॑त्", "ásat", "अस्", "", "third-person singular present"]) + let v = native_list_append(v, ["यातु", "verb", "yātu", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["सीदामि", "verb", "सीदा॑मि", "sī́dāmi", "", "", "first-person singular present"]) + let v = native_list_append(v, ["यजमान", "verb", "यज॑मान present mediopassive participle", "yájamāna", "यज्", "", "present middle participle"]) + let v = native_list_append(v, ["आख्यात", "verb", "आख्यात past passive participle", "ākhyāta", "आख्या", "", "passive past participle"]) + let v = native_list_append(v, ["नृत्यति", "verb", "नृत्या॑मि", "", "", "", "dance RV. etc."]) + let v = native_list_append(v, ["कर्ता", "verb", "क॒र्तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["आर", "verb", "आर॑", "", "", "", "perfect of ऋ"]) + let v = native_list_append(v, ["जनति", "verb", "जनामि", "", "", "", "to give birth"]) + let v = native_list_append(v, ["कर्षति", "verb", "कर्षा॑मि", "", "", "", "to draw drag"]) + let v = native_list_append(v, ["स्मरति", "verb", "स्मरा॑मि", "", "", "", "to remember recall"]) + let v = native_list_append(v, ["भूत", "verb", "bhūtá", "", "", "", "past participle of"]) + let v = native_list_append(v, ["मुक्त", "verb", "mukta", "मुच्", "", "", "past participle of"]) + let v = native_list_append(v, ["शुद्ध", "verb", "शु॒द्ध past passive participle", "śuddhá", "शुध्", "", "past passive participle"]) + let v = native_list_append(v, ["मरति", "verb", "मरामि", "", "", "", "to die pass"]) + let v = native_list_append(v, ["कुरु", "verb", "कु॒रु", "kurú", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["जहाति", "verb", "जहामि", "", "", "", "to renounce abandon"]) + let v = native_list_append(v, ["पश्यति", "verb", "पश्या॑मि", "", "", "", "to see behold"]) + let v = native_list_append(v, ["जुषति", "verb", "जुषामि", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["इष्ट", "verb", "इष्ट past passive participle", "iṣṭa", "इष्", "", "past passive participle"]) + let v = native_list_append(v, ["एकीभवति", "verb", "ए॒की॒भवा॑मि", "", "", "", "to be blended"]) + let v = native_list_append(v, ["वदति", "verb", "वदा॑मि", "", "", "", "to speak pronounce"]) + let v = native_list_append(v, ["भाषति", "verb", "भाषा॑मि", "", "", "", "to speak talk"]) + let v = native_list_append(v, ["मव्यति", "verb", "मव्यामि", "", "", "", "to bind"]) + let v = native_list_append(v, ["भृज्जति", "verb", "भृ॒ज्जामि॑", "", "", "", "roasts grills fries"]) + let v = native_list_append(v, ["नष्ट", "verb", "न॒ष्ट past passive participle", "naṣṭá", "नश्", "", "past passive participle"]) + let v = native_list_append(v, ["बुध्यते", "verb", "बुध्ये॑", "", "", "", "to wake"]) + let v = native_list_append(v, ["होता", "verb", "हो॒तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["कर्तव्य", "verb", "kártavya", "kartavyà", "metrical Vedic kartaviya", "", "future passive participle"]) + let v = native_list_append(v, ["करोति", "verb", "क॒रोमि॑", "", "", "", "to do"]) + let v = native_list_append(v, ["स्थापित", "verb", "स्थापित past passive participle", "sthāpita", "स्था", "", "causative past passive"]) + let v = native_list_append(v, ["आस", "verb", "आस॑", "", "", "", "perfect of अस्"]) + let v = native_list_append(v, ["शान्त", "verb", "शा॒न्त", "śāntá", "", "", "past participle of"]) + let v = native_list_append(v, ["प्लोषति", "verb", "प्लोषामि", "", "", "", "to burn scorch"]) + let v = native_list_append(v, ["प्रस्वेदते", "verb", "प्रस्वेदते third-singular indicative", "prasvedate", "प्रस्विद्", "", "to begin to"]) + let v = native_list_append(v, ["भवामि", "verb", "bhavāmi", "", "", "", "Im I am"]) + let v = native_list_append(v, ["वर्णयति", "verb", "वर्णयामि", "", "", "", "to paint colour"]) + let v = native_list_append(v, ["ज्ञाता", "verb", "ज्ञातास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["स्नाति", "verb", "स्नामि॑", "", "", "", "to bathe perform"]) + let v = native_list_append(v, ["विस्खलति", "verb", "विस्खलति third-singular indicative", "viskhalati", "विस्खल्", "", "to stumble trip"]) + let v = native_list_append(v, ["वर्तमान", "verb", "व॒र्त॒मा॒न present mediopassive participle", "vartamāná", "वृत्", "", "present participle of"]) + let v = native_list_append(v, ["सती", "verb", "satī́", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["प्रशंस्", "verb", "प्रशंस् third-singular indicative", "praśaṃs", "", "", "to proclaim declare"]) + let v = native_list_append(v, ["प्रसद्", "verb", "प्रसद् third-singular indicative", "prasad", "", "", "to fall into"]) + let v = native_list_append(v, ["प्रसिध्", "verb", "प्रसिध् third-singular indicative", "prasidh", "", "", "to drive on."]) + let v = native_list_append(v, ["వసతి", "verb", "వసతి third-singular indicative", "vásati", "वस्", "", "Telugu script form"]) + let v = native_list_append(v, ["गोपनीय", "verb", "गो॒प॒नीय॑ future passive participle", "gopanī́ya", "गुप्", "", "to be preserved"]) + let v = native_list_append(v, ["चयते", "verb", "चय॑ते third-singular indicative", "cáyate", "चि", "", "to punish"]) + let v = native_list_append(v, ["जुहोति", "verb", "जु॒होमि॑", "", "", "", "to sprinkle on"]) + let v = native_list_append(v, ["हवते", "verb", "हवे॑", "", "", "", "to invoke to"]) + let v = native_list_append(v, ["रंहति", "verb", "रंहा॑मि", "", "", "", "to hasten to"]) + let v = native_list_append(v, ["धावति", "verb", "धावा॑मि", "", "", "", "to run flow"]) + let v = native_list_append(v, ["स्थित", "verb", "sthitá", "", "", "", "past passive participle"]) + let v = native_list_append(v, ["रोधति", "verb", "रोधा॑मि", "", "", "", "to grow"]) + let v = native_list_append(v, ["ह्रादते", "verb", "ह्राद॑ते third-singular indicative", "hrā́date", "", "", "to sound"]) + let v = native_list_append(v, ["क्षिपति", "verb", "क्षि॒पामि॑", "", "", "", "to throw to"]) + let v = native_list_append(v, ["हसति", "verb", "हसामि", "", "", "", "to laugh smile"]) + let v = native_list_append(v, ["हर्षति", "verb", "हर्षा॑मि", "", "", "", "to be excited"]) + let v = native_list_append(v, ["हदति", "verb", "हदा॑मि", "", "", "", "to defecate void"]) + let v = native_list_append(v, ["हत", "verb", "हत past passive participle", "hata", "हन्", "", "past participle of"]) + let v = native_list_append(v, ["ज्वलति", "verb", "ज्वला॑मि", "", "", "", "to burn blaze"]) + let v = native_list_append(v, ["ईष्टे", "verb", "ईशे॑", "", "", "", "to own possess"]) + let v = native_list_append(v, ["यजति", "verb", "यजा॑मि", "", "", "", "to worship adore"]) + let v = native_list_append(v, ["शक्नोति", "verb", "श॒क्नोमि॑", "", "", "", "to be strong"]) + let v = native_list_append(v, ["सीव्यति", "verb", "सीव्या॑मि", "", "", "", "to sew darn"]) + let v = native_list_append(v, ["गन्तुम्", "verb", "gantum", "गम्", "", "", "infinitive of गम्"]) + let v = native_list_append(v, ["रोदिति", "verb", "रोदि॑मि", "", "", "", "to cry weep"]) + let v = native_list_append(v, ["आह", "verb", "आह॑ third-singular indicative", "ā́ha", "अह्", "", "perfect of अह्"]) + let v = native_list_append(v, ["कृत", "verb", "कृ॒त past passive participle", "kṛtá", "कृ", "", "past participle of"]) + let v = native_list_append(v, ["भर", "verb", "भर॑", "bhára", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ऋघायति", "verb", "ऋ॒घा॒यामि॑", "", "", "", "to be passionate"]) + let v = native_list_append(v, ["वर्षति", "verb", "वर्षामि", "", "", "", "rains showers pours"]) + let v = native_list_append(v, ["गिरति", "verb", "गि॒रामि॑", "", "", "", "to swallow devour"]) + let v = native_list_append(v, ["चमति", "verb", "चमा॑मि", "अच॑मीत्", "", "", "to sip drink"]) + let v = native_list_append(v, ["रक्षति", "verb", "रक्षा॑मि", "", "", "", "to protect defend"]) + let v = native_list_append(v, ["दर्शयति", "verb", "द॒र्शया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["अवति", "verb", "अवा॑मि", "आवी॑त्", "", "", "to drive impel"]) + let v = native_list_append(v, ["तुष्यति", "verb", "तुष्या॑मि", "", "", "", "to be satisfied"]) + let v = native_list_append(v, ["गर्जति", "verb", "गर्जा॑मि", "", "", "", "to roar growl"]) + let v = native_list_append(v, ["नश्यति", "verb", "नश्या॑मि", "", "", "", "to be lost"]) + let v = native_list_append(v, ["नश्यतस्", "verb", "naśyatas", "", "", "", "third-person dual active"]) + let v = native_list_append(v, ["नश्यथस्", "verb", "naśyathas", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["नश्यावस्", "verb", "naśyāvas", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["नश्यामि", "verb", "naśyāmi", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["नश्यसि", "verb", "naśyasi", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["नश्यामस्", "verb", "naśyāmas", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["नश्यथ", "verb", "naśyatha", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["नश्यन्ति", "verb", "naśyanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["नश्ये", "verb", "naśye", "", "", "", "first-person singular passive"]) + let v = native_list_append(v, ["नश्यसे", "verb", "naśyase", "", "", "", "second-person singular passive"]) + let v = native_list_append(v, ["नश्यते", "verb", "naśyate", "", "", "", "third-person singular passive"]) + let v = native_list_append(v, ["नश्यावहे", "verb", "naśyāvahe", "", "", "", "first-person dual passive"]) + let v = native_list_append(v, ["नश्येथे", "verb", "naśyethe", "", "", "", "second-person dual passive"]) + let v = native_list_append(v, ["नश्येते", "verb", "naśyete", "", "", "", "third-person dual passive"]) + let v = native_list_append(v, ["नश्यामहे", "verb", "naśyāmahe", "", "", "", "first-person plural passive"]) + let v = native_list_append(v, ["नश्यध्वे", "verb", "naśyadhve", "", "", "", "second-person plural passive"]) + let v = native_list_append(v, ["नश्यन्ते", "verb", "naśyante", "", "", "", "third-person plural passive"]) + let v = native_list_append(v, ["नाशयति", "verb", "ना॒शया॑मि", "", "", "", "causative of नश्यति"]) + let v = native_list_append(v, ["म्रियते", "verb", "म्रि॒ये", "", "", "", "to die decease"]) + let v = native_list_append(v, ["जयति", "verb", "जया॑मि", "", "", "", "to conquer defeat"]) + let v = native_list_append(v, ["नयति", "verb", "नया॑मि", "", "", "", "to guide lead"]) + let v = native_list_append(v, ["रन्धयति", "verb", "र॒न्धय॑ति third-singular indicative", "randháyati", "रन्ध्", "", "to cook food"]) + let v = native_list_append(v, ["भाषते", "verb", "भाषे॑", "", "", "", "to speak say"]) + let v = native_list_append(v, ["शोचति", "verb", "शोचा॑मि", "", "", "", "to shine gleam"]) + let v = native_list_append(v, ["रमते", "verb", "रमे॑", "", "", "", "to delight enjoy"]) + let v = native_list_append(v, ["भजते", "verb", "भजे॑", "", "", "", "to divide distribute"]) + let v = native_list_append(v, ["काशते", "verb", "काशे॑", "", "", "", "to shine brilliantly"]) + let v = native_list_append(v, ["शास्ति", "verb", "शास्मि॑", "", "", "", "to teach instruct"]) + let v = native_list_append(v, ["जायते", "verb", "जाये॑", "", "", "", "to be born"]) + let v = native_list_append(v, ["मुह्यति", "verb", "मुह्या॑मि", "", "", "", "to become unconscious"]) + let v = native_list_append(v, ["तुदति", "verb", "तु॒दामि॑", "", "", "", "to strike hit"]) + let v = native_list_append(v, ["विन्दति", "verb", "वि॒न्दामि॑", "", "", "", "to find discover"]) + let v = native_list_append(v, ["चकार", "verb", "च॒कर॑", "", "", "", "perfect of कृ"]) + let v = native_list_append(v, ["हराम", "verb", "हरा॑म", "hárāma", "", "", "first-person plural imperative"]) + let v = native_list_append(v, ["एधते", "verb", "एधे॑", "", "", "", "to prosper increase"]) + let v = native_list_append(v, ["शङ्कते", "verb", "शङ्के॑", "", "", "", "to doubt to"]) + let v = native_list_append(v, ["दृश्य", "verb", "dṛ́śya", "", "", "", "future passive participle"]) + let v = native_list_append(v, ["ह्वयति", "verb", "ह्वया॑मि", "", "", "", "to call call"]) + let v = native_list_append(v, ["गलति", "verb", "गला॑मि", "", "", "", "to drip"]) + let v = native_list_append(v, ["स्तौति", "verb", "स्तौमि॑", "", "", "", "to praise laud"]) + let v = native_list_append(v, ["भवै", "verb", "भवै॑", "bhávai", "", "", "imperative middle first-person"]) + let v = native_list_append(v, ["क्षीयते", "verb", "क्षी॒यते॑ third-singular indicative", "kṣīyáte", "क्षि", "", "to diminish waste"]) + let v = native_list_append(v, ["क्षेषत्", "verb", "kṣeṣat", "", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["गत", "verb", "ग॒त past passive participle", "gatá", "गम्", "", "past participle of"]) + let v = native_list_append(v, ["कासते", "verb", "कासे॑", "", "", "", "to cough"]) + let v = native_list_append(v, ["यच्छति", "verb", "यच्छा॑मि", "", "", "", "it holds holds"]) + let v = native_list_append(v, ["धारयति", "verb", "धा॒रया॑मि", "", "", "", "to maintain to"]) + let v = native_list_append(v, ["मेक्षयति", "verb", "मेक्षयति third-singular indicative", "mekṣayati", "मिक्ष्", "", "to mix in"]) + let v = native_list_append(v, ["रुजति", "verb", "रु॒जामि॑", "", "", "", "to break break"]) + let v = native_list_append(v, ["सम्प्रेक्ष्", "verb", "सम्प्रेक्ष् third-singular indicative", "samprekṣ", "", "", "root of सम्प्रेक्षते"]) + let v = native_list_append(v, ["जासयति", "verb", "जा॒सया॑मि", "", "", "", "to exhaust weaken"]) + let v = native_list_append(v, ["आचरति", "verb", "आचरामि", "", "", "", "to approach come"]) + let v = native_list_append(v, ["जागर्ति", "verb", "जा॒गर्मि॑", "", "", "", "present of जागृ"]) + let v = native_list_append(v, ["स्वनति", "verb", "स्वनामि", "", "", "", "to sound resound"]) + let v = native_list_append(v, ["प्लवते", "verb", "प्लव॑ते third-singular indicative", "plávate", "प्लु", "", "to sail float"]) + let v = native_list_append(v, ["शंसति", "verb", "शंस॑ति third-singular indicative", "śáṃsati", "शंस्", "", "to declare announce"]) + let v = native_list_append(v, ["स्रेधति", "verb", "स्रेध॑ति third-singular indicative", "srédhati", "स्रिध्", "", "to err make"]) + let v = native_list_append(v, ["मृष्यति", "verb", "मृष्यामि", "", "", "", "Classical Sanskrit form"]) + let v = native_list_append(v, ["स्तृणाति", "verb", "स्तृ॒णामि॑", "", "", "", "to scatter strew"]) + let v = native_list_append(v, ["खनति", "verb", "खना॑मि", "", "", "", "to dig"]) + let v = native_list_append(v, ["युक्त", "verb", "युक्त past passive participle", "yukta", "युज्", "", "past passive participle"]) + let v = native_list_append(v, ["रेळ्हि", "verb", "रेह्मि॑", "", "", "", "to lick"]) + let v = native_list_append(v, ["लिहति", "verb", "लि॒हामि॑", "", "", "", "to lick lap"]) + let v = native_list_append(v, ["मेहति", "verb", "मेह॑ति third-singular indicative", "méhati", "मिह्", "", "to urinate"]) + let v = native_list_append(v, ["स्पर्धते", "verb", "स्पर्धे॑", "", "", "", "to compete rival"]) + let v = native_list_append(v, ["दृणाति", "verb", "दृ॒णामि॑", "", "", "", "to tear rend"]) + let v = native_list_append(v, ["गायति", "verb", "गाया॑मि", "", "", "", "to sing recite"]) + let v = native_list_append(v, ["उदच्यते", "verb", "उदच्ये", "", "", "", "passive of उदञ्च्"]) + let v = native_list_append(v, ["भयते", "verb", "भया॑मि", "", "", "", "to fear be"]) + let v = native_list_append(v, ["शृणोति", "verb", "शृ॒णोमि॑", "", "", "", "to listen hear"]) + let v = native_list_append(v, ["दशति", "verb", "दशा॑मि", "", "", "", "to bite"]) + let v = native_list_append(v, ["तेजते", "verb", "तेजे॑", "", "", "", "to be or"]) + let v = native_list_append(v, ["लिम्पति", "verb", "लि॒म्पामि॑", "", "", "", "to smear anoint"]) + let v = native_list_append(v, ["गृभ्णाति", "verb", "गृ॒भ्णामि॑", "", "", "", "to seize"]) + let v = native_list_append(v, ["क्वथते", "verb", "क्वथे॑", "", "", "", "to boil decoct"]) + let v = native_list_append(v, ["घटित", "verb", "घटित past passive participle", "ghaṭita", "घट्", "", "united joined connected"]) + let v = native_list_append(v, ["अर्हति", "verb", "अर्हा॑मि", "आर्ही॑त्", "", "", "to be worth"]) + let v = native_list_append(v, ["घर्षति", "verb", "घर्षा॑मि", "", "", "", "to rub brush"]) + let v = native_list_append(v, ["शिक्षति", "verb", "शिक्षा॑मि", "", "", "", "to learn acquire"]) + let v = native_list_append(v, ["श्लाघते", "verb", "श्लाघे॑", "", "", "", "to confide in"]) + let v = native_list_append(v, ["वष्टि", "verb", "वश्मि॑", "", "", "", "to will command"]) + let v = native_list_append(v, ["घृणोति", "verb", "घृ॒णोमि॑", "", "", "", "to burn shine"]) + let v = native_list_append(v, ["उच्यति", "verb", "उच्या॑मि", "", "", "", "to be accustomed"]) + let v = native_list_append(v, ["रायति", "verb", "राय॑ति third-singular indicative", "rā́yati", "रै", "", "to bark bark"]) + let v = native_list_append(v, ["त्रसति", "verb", "त्रसा॑मि", "", "", "", "to tremble quiver"]) + let v = native_list_append(v, ["जीर्यति", "verb", "जीर्या॑मि", "", "", "", "to grow old"]) + let v = native_list_append(v, ["युध्यते", "verb", "युध्ये॑", "", "", "", "to fight battle"]) + let v = native_list_append(v, ["ईर्ष्यति", "verb", "ईर्ष्या॑मि", "", "", "", "to envy"]) + let v = native_list_append(v, ["रिणक्ति", "verb", "रि॒णच्मि॑", "", "", "", "to leave leave"]) + let v = native_list_append(v, ["हित", "verb", "हि॒त past passive participle", "hitá", "धा", "", "put laid set"]) + let v = native_list_append(v, ["मृडति", "verb", "मृ॒डामि॑", "", "", "", "to forgive pardon"]) + let v = native_list_append(v, ["मज्जति", "verb", "मज्जा॑मि", "", "", "", "to sink"]) + let v = native_list_append(v, ["स्वपति", "verb", "स्वपा॑मि", "", "", "", "to sleep slumber"]) + let v = native_list_append(v, ["पद्यते", "verb", "पद्ये", "", "", "", "to fall topple"]) + let v = native_list_append(v, ["जिघ्रति", "verb", "जिघ्र॑ति third-singular indicative", "jíghrati", "घ्रा", "", "to smell sniff"]) + let v = native_list_append(v, ["वक्ति", "verb", "वच्मि॑", "", "", "", "present of वच्"]) + let v = native_list_append(v, ["वक्षति", "verb", "वक्षा॑मि", "", "", "", "to increase to"]) + let v = native_list_append(v, ["बद्ध", "verb", "ब॒द्ध past passive participle", "baddhá", "बन्ध्", "", "past passive participle"]) + let v = native_list_append(v, ["पीडयति", "verb", "पी॒डय॑ति third-singular indicative", "pīḍáyati", "पीड्", "", "to squeeze press"]) + let v = native_list_append(v, ["स्यात्", "verb", "syāt", "", "", "", "may be ―"]) + let v = native_list_append(v, ["सन्ति", "verb", "सन्ति॑", "sánti", "", "", "present active third-person"]) + let v = native_list_append(v, ["संनिरुणद्धि", "verb", "संनिरुणद्धि third-singular indicative", "saṃniruṇaddhi", "संनिरुध्", "", "to stop"]) + let v = native_list_append(v, ["पवयति", "verb", "प॒वय॑ति third-singular indicative", "paváyati", "पू", "", "to cleanse purify"]) + let v = native_list_append(v, ["छर्दति", "verb", "छर्दा॑मि", "", "", "", "to kindle"]) + let v = native_list_append(v, ["स्वपिति", "verb", "स्वपि॑मि", "", "", "", "to sleep slumber"]) + let v = native_list_append(v, ["विचेष्टति", "verb", "विचेष्टति third-singular indicative", "viceṣṭati", "विचेष्ट्", "", "to exert oneself"]) + let v = native_list_append(v, ["रोपयति", "verb", "रो॒पया॑मि", "", "", "", "to elevate"]) + let v = native_list_append(v, ["अवगच्छति", "verb", "अ॒व॒गच्छा॑मि", "अ॒वाग॑मत्", "", "", "to understand recognize"]) + let v = native_list_append(v, ["चष्टे", "verb", "चक्षे॑", "", "", "", "to see look"]) + let v = native_list_append(v, ["क्षरति", "verb", "क्षरा॑मि", "", "", "", "to flow stream"]) + let v = native_list_append(v, ["अस्त", "verb", "अस्त past passive participle", "asta", "अस्", "", "past passive participle"]) + let v = native_list_append(v, ["ईडयति", "verb", "ईडयति third-singular indicative", "īḍayati", "ईड्", "", "to praise laud"]) + let v = native_list_append(v, ["ईळे", "verb", "ई॒ळे", "", "", "", "perfect of ईळ्"]) + let v = native_list_append(v, ["ऋणोति", "verb", "ऋ॒णोमि॑", "", "", "", "to go move"]) + let v = native_list_append(v, ["કાર્ય", "verb", "kāryà", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["𑀪𑀯𑀢𑀺", "verb", "𑀪𑀯𑀢𑀺 third-singular indicative", "bhavati", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["भवत्", "verb", "भव॑त् present active participle", "bhávat", "भू", "", "present active participle"]) + let v = native_list_append(v, ["जिज्ञासते", "verb", "जिज्ञा॑से", "", "", "", "desiderative of ज्ञा"]) + let v = native_list_append(v, ["मिमीते", "verb", "मिमे॑", "", "", "", "to measure mark"]) + let v = native_list_append(v, ["अर्चति", "verb", "अर्चा॑मि", "", "", "", "to shine"]) + let v = native_list_append(v, ["भजति", "verb", "भजा॑मि", "", "", "", "to distribute divide"]) + let v = native_list_append(v, ["भाजयति", "verb", "भा॒जया॑मि", "", "", "", "to divide distribute"]) + let v = native_list_append(v, ["भनक्ति", "verb", "भ॒नज्मि॑", "", "", "", "to break split"]) + let v = native_list_append(v, ["कारयति", "verb", "का॒रय॑ति third-singular indicative", "kāráyati", "कृ", "", "to cause to"]) + let v = native_list_append(v, ["अकर्", "verb", "अक॑रम्", "अकः॑", "", "", "aorist of कृ"]) + let v = native_list_append(v, ["पुष्यति", "verb", "पुष्या॑मि", "", "", "", "to thrive prosper"]) + let v = native_list_append(v, ["क्रीणाति", "verb", "क्री॒णामि॑", "", "", "", "to buy purchase"]) + let v = native_list_append(v, ["परीक्षते", "verb", "परीक्षे", "", "", "", "to inspect examine"]) + let v = native_list_append(v, ["रदति", "verb", "रदा॑मि", "", "", "", "to scratch scrape"]) + let v = native_list_append(v, ["अधात्", "verb", "अधा॑म्", "अधा॑त्", "", "", "aorist of धा"]) + let v = native_list_append(v, ["आनयति", "verb", "आ॒नया॑मि", "", "", "", "to bring fetch"]) + let v = native_list_append(v, ["ध्रजति", "verb", "ध्रजा॑मि", "", "", "", "to glide swoop"]) + let v = native_list_append(v, ["गूहति", "verb", "गूहा॑मि", "", "", "", "to cover conceal"]) + let v = native_list_append(v, ["दृष्ट", "verb", "दृ॒ष्ट", "dṛṣṭá", "", "", "past participle of"]) + let v = native_list_append(v, ["योधयति", "verb", "यो॒धया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["स्निह्यति", "verb", "स्निह्या॑मि", "", "", "", "to adhere stick"]) + let v = native_list_append(v, ["ददर्श", "verb", "द॒दर्श॑", "", "", "", "perfect of दृश्"]) + let v = native_list_append(v, ["स्तृणोति", "verb", "स्तृ॒णोमि॑", "", "", "", "to scatter strew"]) + let v = native_list_append(v, ["सीक्षते", "verb", "सीक्ष॑ते third-singular indicative", "sī́kṣate", "सह्", "", "to wish to"]) + let v = native_list_append(v, ["पूयति", "verb", "पूय॑ति third-singular indicative", "pū́yati", "पूय्", "", "to become foul"]) + let v = native_list_append(v, ["विद्यते", "verb", "वि॒द्ये", "", "", "", "to be found"]) + let v = native_list_append(v, ["त्रपते", "verb", "त्रपे॑", "", "", "", "to be embarrassed"]) + let v = native_list_append(v, ["प्रवस्ते", "verb", "प्रवस्ते third-singular indicative", "pravaste", "वस्", "", "to put on"]) + let v = native_list_append(v, ["शङ्के", "verb", "शङ्के third-singular indicative", "śaṅke", "शङ्क्", "", "first-person singular present"]) + let v = native_list_append(v, ["आगच्छति", "verb", "आ॒गच्छा॑मि", "", "", "", "to come —"]) + let v = native_list_append(v, ["दूरवाणीं करोति", "verb", "दूरवाणीं करोति third-singular indicative", "dūravāṇīṃ karoti", "", "", "to phone to"]) + let v = native_list_append(v, ["स्थापयामि", "verb", "sthāpayāmi", "", "", "", "present passive causative"]) + let v = native_list_append(v, ["त्यजति", "verb", "त्यजा॑मि", "", "", "", "to leave"]) + let v = native_list_append(v, ["उपन्यस्यति", "verb", "उपन्यस्यामि", "", "", "", "To move to"]) + let v = native_list_append(v, ["समाकुरुते", "verb", "समाकुरुते third-singular indicative", "samākurute", "कृ", "", "to unite to"]) + let v = native_list_append(v, ["अयजत्", "verb", "ayajat", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["तिष्ठत्", "verb", "तिष्ठ॑त् present active participle", "tíṣṭhat", "स्था", "", "present active participle"]) + let v = native_list_append(v, ["तस्थौ", "verb", "त॒स्थौ", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["स्थीयमान", "verb", "sthīyamāna", "no-table-tags", "sa-decl-adj-mfn", "", "present passive participle"]) + let v = native_list_append(v, ["वलते", "verb", "वलते third-singular indicative", "valate", "वल्", "", "to go"]) + let v = native_list_append(v, ["उद्रुणद्धि", "verb", "उद्रुणद्धि third-singular indicative", "udruṇaddhi", "उद्रुध्", "", "to turn out"]) + let v = native_list_append(v, ["अवकर्षति", "verb", "अवकर्षति third-singular indicative", "avakarṣati", "कृष्", "", "to turn off"]) + let v = native_list_append(v, ["प्रपद्यते", "verb", "प्रपद् यते third-singular indicative", "prapadyate", "प्रपद्", "", "to turn out"]) + let v = native_list_append(v, ["च्यवते", "verb", "च्यवे॑", "", "", "", "to turn off"]) + let v = native_list_append(v, ["छ्यवते", "verb", "छ्यवते third-singular indicative", "chyavate", "छ्यु", "", "to go"]) + let v = native_list_append(v, ["ह्वरते", "verb", "ह्वरे॑", "", "", "", "to turn"]) + let v = native_list_append(v, ["सेधति", "verb", "सेधा॑मि", "", "", "", "to drive off"]) + let v = native_list_append(v, ["वृक्ते", "verb", "वृजे", "", "", "", "to twist off"]) + let v = native_list_append(v, ["आकाङ्क्षते", "verb", "आकाङ्क्षते third-singular indicative", "ākāṅkṣate", "आकाङ्क्ष्", "", "to desire to"]) + let v = native_list_append(v, ["उद्धन्ति", "verb", "उद्धन् ति third-singular indicative", "uddhanti", "उद्धन्", "", "to turn up"]) + let v = native_list_append(v, ["अभिषचते", "verb", "अभिषचते third-singular indicative", "abhiṣacate", "अभिषच्", "", "to turn to"]) + let v = native_list_append(v, ["अववृणक्ति", "verb", "अववृणक्ति third-singular indicative", "avavṛṇakti", "अववर्ज्", "", "to turn"]) + let v = native_list_append(v, ["उब्जति", "verb", "उ॒ब्जति॑ third-singular indicative", "ubjáti", "उब्ज्", "", "to subdue"]) + let v = native_list_append(v, ["वियाति", "verb", "विया ति third-singular indicative", "viyāti", "विया", "", "to pass away"]) + let v = native_list_append(v, ["संनिर्गच्छति", "verb", "संनिर्गच्छति third-singular indicative", "saṃnirgacchati", "संनिर्गम्", "", "to go away"]) + let v = native_list_append(v, ["अरोधत्", "verb", "arodhat", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["गच्छतु", "verb", "gacchatu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["अभवत्", "verb", "abhavat", "", "", "", "past of भू"]) + let v = native_list_append(v, ["याति", "verb", "यामि॑", "", "", "", "to go move"]) + let v = native_list_append(v, ["करिष्यति", "verb", "क॒रि॒ष्यामि॑", "", "", "", "future of कृ"]) + let v = native_list_append(v, ["करोतु", "verb", "karotu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["प्रतिगच्छति", "verb", "प्रतिगच्छति third-singular indicative", "pratigacchati", "प्रतिगम्", "", "to return"]) + let v = native_list_append(v, ["अगच्छत्", "verb", "अग॑च्छत्", "ágacchat", "", "", "imperfect active third-person"]) + let v = native_list_append(v, ["ऐच्छत्", "verb", "aicchat", "", "", "", "imperfect third-person singular"]) + let v = native_list_append(v, ["अकरोत्", "verb", "अक॑रोत्", "ákarot", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["स्मृत्वा", "verb", "smṛtvā", "", "", "", "gerund of स्मृ"]) + let v = native_list_append(v, ["तीर्त्वा", "verb", "ती॒र्त्वा", "tīrtvā́", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["पूर्त्वा", "verb", "pūrtvā", "", "", "", "gerund of पॄ"]) + let v = native_list_append(v, ["बुद्ध्वा", "verb", "buddhvā", "", "", "", "gerund of बुध्"]) + let v = native_list_append(v, ["लब्ध्वा", "verb", "labdhvā", "", "", "", "gerund of लभ्"]) + let v = native_list_append(v, ["कृत्वा", "verb", "कृ॒त्वा", "kṛtvā́", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["शुचित्वा", "verb", "śucitvā", "", "", "", "gerund of शुच्"]) + let v = native_list_append(v, ["उक्त्वा", "verb", "uktvā", "", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["भरतु", "verb", "bharatu", "", "", "", "imperative of भृ"]) + let v = native_list_append(v, ["भवान्", "verb", "भवा॑न्", "bhávān", "", "", "subjunctive active third-person"]) + let v = native_list_append(v, ["आसीत्", "verb", "आसी॑त् third-singular indicative", "ā́sīt", "अस्", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["सहते", "verb", "सहे॑", "", "", "", "to overcome vanquish"]) + let v = native_list_append(v, ["जक्षत्", "verb", "jákṣat", "no-table-tags", "sa-decl-adj-mfn", "", "present active participle"]) + let v = native_list_append(v, ["क्रीळति", "verb", "क्रीळा॑मि", "", "", "", "to play sport"]) + let v = native_list_append(v, ["पीयति", "verb", "पीया॑मि", "", "", "", "to blame revile"]) + let v = native_list_append(v, ["कृणोति", "verb", "कृ॒णोमि॑", "", "", "", "to do make"]) + let v = native_list_append(v, ["युनक्ति", "verb", "यु॒नज्मि॑", "", "", "", "to yoke harness"]) + let v = native_list_append(v, ["आमन्त्रयते", "verb", "आमन्त्रये", "", "", "", "to invite"]) + let v = native_list_append(v, ["शुष्यति", "verb", "शुष्या॑मि", "", "", "", "to be dry"]) + let v = native_list_append(v, ["शोषयति", "verb", "शो॒षया॑मि", "", "", "", "to make dry"]) + let v = native_list_append(v, ["हठति", "verb", "हठामि", "", "", "", "to leap jump"]) + let v = native_list_append(v, ["ऊहति", "verb", "ऊहामि", "", "", "", "to wait for"]) + let v = native_list_append(v, ["शिनष्टि", "verb", "शि॒नष्मि॑", "", "", "", "to leave behind"]) + let v = native_list_append(v, ["शिंष्टः", "verb", "śiṃṣṭaḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["शिंषन्ति", "verb", "śiṃṣanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["शिनक्षि", "verb", "śinakṣi", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["शिंष्ठः", "verb", "śiṃṣṭhaḥ", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["शिंष्ठ", "verb", "śiṃṣṭha", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["शिनष्मि", "verb", "śinaṣmi", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["शिंष्वः", "verb", "śiṃṣvaḥ", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["शिंष्मः", "verb", "śiṃṣmaḥ", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["शिंष्टे", "verb", "śiṃṣṭe", "", "", "", "present middle third-person"]) + let v = native_list_append(v, ["शिंषाते", "verb", "śiṃṣāte", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["कृन्तति", "verb", "कृ॒न्तामि॑", "अक॑र्तीत्", "", "", "to cut to"]) + let v = native_list_append(v, ["कृन्ततस्", "verb", "kṛntatas", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["कृन्तन्ति", "verb", "kṛntanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["गच्छतस्", "verb", "गच्छ॑तस्", "gácchatas", "", "", "present active third-person"]) + let v = native_list_append(v, ["गच्छन्ति", "verb", "गच्छ॑न्ति", "gácchanti", "", "", "present active third-person"]) + let v = native_list_append(v, ["गच्छसि", "verb", "gacchasi", "", "", "", "present indicative active"]) + let v = native_list_append(v, ["गच्छथस्", "verb", "gacchathas", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["गच्छथ", "verb", "gacchatha", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["गच्छामि", "verb", "gacchāmi", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["गच्छावस्", "verb", "gacchāvas", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["गच्छामस्", "verb", "gacchāmas", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["गच्छताम्", "verb", "gacchatām", "", "", "", "inflection of गच्छति"]) + let v = native_list_append(v, ["गच्छन्तु", "verb", "gacchantu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["गच्छ", "verb", "gaccha", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["गच्छानि", "verb", "gacchāni", "", "", "", "imperative active first-person"]) + let v = native_list_append(v, ["गच्छेत्", "verb", "gacchet", "", "", "", "potential active third-person"]) + let v = native_list_append(v, ["गम्यते", "verb", "ग॒म्ये", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["गम्येते", "verb", "gamyete", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["गम्यन्ते", "verb", "gamyante", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["गम्ये", "verb", "gamye", "", "", "", "present passive first-person"]) + let v = native_list_append(v, ["अगम्ये", "verb", "agamye", "", "", "", "imperfect passive first-person"]) + let v = native_list_append(v, ["अगच्छे", "verb", "agacche", "", "", "", "imperfect middle first-person"]) + let v = native_list_append(v, ["गम्येत", "verb", "gamyeta", "", "", "", "optative passive third-person"]) + let v = native_list_append(v, ["गच्छेत", "verb", "gaccheta", "", "", "", "inflection of गच्छति"]) + let v = native_list_append(v, ["गच्छेयम्", "verb", "gaccheyam", "", "", "", "optative active first-person"]) + let v = native_list_append(v, ["गच्छेव", "verb", "gaccheva", "", "", "", "optative active first-person"]) + let v = native_list_append(v, ["गच्छाव", "verb", "gacchāva", "", "", "", "imperative active first-person"]) + let v = native_list_append(v, ["गच्छेताम्", "verb", "gacchetām", "", "", "", "inflection of गच्छति"]) + let v = native_list_append(v, ["गच्छेयुस्", "verb", "gaccheyus", "", "", "", "optative active third-person"]) + let v = native_list_append(v, ["गच्छेस्", "verb", "gacches", "", "", "", "optative active second-person"]) + let v = native_list_append(v, ["गच्छेतम्", "verb", "gacchetam", "", "", "", "optative active second-person"]) + let v = native_list_append(v, ["गच्छेम", "verb", "gacchema", "", "", "", "optative active first-person"]) + let v = native_list_append(v, ["अगच्छताम्", "verb", "अग॑च्छताम्", "ágacchatām", "", "", "imperfect active third-person"]) + let v = native_list_append(v, ["अगच्छन्", "verb", "agacchan", "", "", "", "imperfect active third-person"]) + let v = native_list_append(v, ["अगच्छस्", "verb", "agacchas", "", "", "", "imperfect active second-person"]) + let v = native_list_append(v, ["अगच्छतम्", "verb", "agacchatam", "", "", "", "imperfect active second-person"]) + let v = native_list_append(v, ["अगच्छत", "verb", "agacchata", "", "", "", "inflection of गच्छति"]) + let v = native_list_append(v, ["अगच्छम्", "verb", "agaccham", "", "", "", "imperfect active first-person"]) + let v = native_list_append(v, ["अगच्छाव", "verb", "agacchāva", "", "", "", "imperfect active first-person"]) + let v = native_list_append(v, ["अगच्छाम", "verb", "agacchāma", "", "", "", "imperfect active first-person"]) + let v = native_list_append(v, ["गच्छतम्", "verb", "gacchatam", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["गच्छत", "verb", "gacchata", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["गच्छाम", "verb", "gacchāma", "", "", "", "imperative active first-person"]) + let v = native_list_append(v, ["लुम्बति", "verb", "लुम्बामि", "", "", "", "to torment harass"]) + let v = native_list_append(v, ["ऊर्दते", "verb", "ऊर्दे", "और्दिष्ट", "", "", "it measures"]) + let v = native_list_append(v, ["बोधते", "verb", "बोधे", "", "", "", "to know"]) + let v = native_list_append(v, ["सरति", "verb", "सरा॑मि", "", "", "", "to run"]) + let v = native_list_append(v, ["रिणाति", "verb", "रि॒णामि॑", "", "", "", "to make flow"]) + let v = native_list_append(v, ["वञ्चति", "verb", "वञ्चा॑मि", "", "", "", "to move or"]) + let v = native_list_append(v, ["स्तेनयति", "verb", "स्तेनयति third-singular indicative", "stenayati", "स्तेन्", "", "to steal rob"]) + let v = native_list_append(v, ["किरति", "verb", "कि॒रामि॑", "", "", "", "to strew pour"]) + let v = native_list_append(v, ["बाधति", "verb", "बाधा॑मि", "", "", "", "to press move"]) + let v = native_list_append(v, ["राजति", "verb", "राजामि", "", "", "", "to direct to"]) + let v = native_list_append(v, ["कुत्सयति", "verb", "कु॒त्सया॑मि", "", "", "", "to abuse blame"]) + let v = native_list_append(v, ["ईहति", "verb", "ईहति third-singular indicative", "īhati", "ईह्", "", "desire"]) + let v = native_list_append(v, ["कत्थति", "verb", "कत्थति third-singular indicative", "katthati", "कत्थ्", "", ""]) + let v = native_list_append(v, ["काङ्क्षति", "verb", "काङ्क्षामि", "", "", "", "to wish desire"]) + let v = native_list_append(v, ["व्रीडति", "verb", "व्रीडति third-singular indicative", "vrīḍati", "व्रीड्", "", ""]) + let v = native_list_append(v, ["उज्झति", "verb", "उ॒ज्झामि॑", "", "", "", "to quit"]) + let v = native_list_append(v, ["अङ्खयति", "verb", "अङ्खयति third-singular indicative", "aṅkhayati", "अङ्ख्", "", "to check"]) + let v = native_list_append(v, ["सहति", "verb", "सहति third-singular indicative", "sahati", "सह्", "", "to suffer to"]) + let v = native_list_append(v, ["लपति", "verb", "लपति third-singular indicative", "lapati", "लप्", "", "to chatter prate"]) + let v = native_list_append(v, ["वर्तति", "verb", "वर्तामि", "", "", "", "synonym of वर्तते"]) + let v = native_list_append(v, ["श्रम्भति", "verb", "श्रम्भति third-singular indicative", "śrambhati", "श्रम्भ्", "", ""]) + let v = native_list_append(v, ["अजिरायति", "verb", "अजिर ायति third-singular indicative", "ajirāyati", "अजिर", "", ""]) + let v = native_list_append(v, ["काशति", "verb", "काशामि", "", "", "", ""]) + let v = native_list_append(v, ["रणति", "verb", "रणा॑मि", "", "", "", "to delight take"]) + let v = native_list_append(v, ["जवति", "verb", "जवामि", "", "", "", "to press forwards"]) + let v = native_list_append(v, ["तन्त्रयति", "verb", "तन्त्रयति third-singular indicative", "tantrayati", "तन्त्र्", "", ""]) + let v = native_list_append(v, ["स्फलति", "verb", "स्फलति third-singular indicative", "sphalati", "स्फल्", "", "to burst to"]) + let v = native_list_append(v, ["बोधयति", "verb", "बो॒धया॑मि", "", "", "", "to awaken wake"]) + let v = native_list_append(v, ["स्थापयति", "verb", "स्था॒पया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["अगमत्", "verb", "अग॑मम्", "अग॑मत्", "", "", "aorist or imperfect"]) + let v = native_list_append(v, ["अद्राक्षीत्", "verb", "अद्रा॑क्षम्", "अद्रा॑क्षीत्", "", "", "aorist of दृश्"]) + let v = native_list_append(v, ["यजतु", "verb", "yajatu", "", "", "", "imperative of यजति"]) + let v = native_list_append(v, ["अगम्यत", "verb", "agamyata", "", "", "", "imperfect passive third-person"]) + let v = native_list_append(v, ["गम्यताम्", "verb", "gamyatām", "", "", "", "imperative passive third-person"]) + let v = native_list_append(v, ["अस्तु", "verb", "astu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["नर्तयति", "verb", "नर्तयामि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["प्रणृत्यति", "verb", "प्रणृत् यति third-singular indicative", "praṇṛtyati", "प्रणृत्", "", "to dance"]) + let v = native_list_append(v, ["नृत्त", "verb", "nṛtta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["धृत्वा", "verb", "dhṛtvā", "", "", "", "gerund of धृ"]) + let v = native_list_append(v, ["धृत्य", "verb", "dhṛtya", "", "", "", "gerund of धृ"]) + let v = native_list_append(v, ["धरेरन्", "verb", "dhareran", "", "", "", "optative active third-person"]) + let v = native_list_append(v, ["सम्प्रददाति", "verb", "सम्प्रददामि", "", "", "", "to present offer"]) + let v = native_list_append(v, ["अगन्", "verb", "अग॑मम्", "अग॑न्", "", "", "aorist of गम्"]) + let v = native_list_append(v, ["अश्रोत्", "verb", "अश्र॑वम्", "अश्रो॑त्", "", "", "aorist of श्रु"]) + let v = native_list_append(v, ["मोचयति", "verb", "मो॒चया॑मि", "", "", "", "causes to release"]) + let v = native_list_append(v, ["मोक्तुम्", "verb", "moktum", "", "", "", "infinitive of मुच्"]) + let v = native_list_append(v, ["कर्तुम्", "verb", "कर्तु॑म्", "kártum", "कृ", "", "infinitive of कृ"]) + let v = native_list_append(v, ["मुञ्चति", "verb", "मु॒ञ्चामि॑", "", "", "", "to free set"]) + let v = native_list_append(v, ["मुञ्चते", "verb", "मु॒ञ्चते॑", "muñcáte", "", "", "third-person singular present"]) + let v = native_list_append(v, ["मुमोच", "verb", "मु॒मोच॑", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["मुमुचे", "verb", "मु॒मु॒चे", "mumucé", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["मोचते", "verb", "मोचते third-singular indicative", "mocate", "मुच्", "", "to cheat deceive"]) + let v = native_list_append(v, ["जगाम", "verb", "ज॒गम॑", "", "", "", "perfect of गम्"]) + let v = native_list_append(v, ["जज्ञौ", "verb", "ज॒ज्ञौ", "", "", "", "first/third-person singular perfect"]) + let v = native_list_append(v, ["जानीते", "verb", "जा॒ने", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["जज्ञे", "verb", "ज॒ज्ञे", "jajñé", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ज्ञातुम्", "verb", "jñātum", "", "", "", "infinitive of ज्ञा"]) + let v = native_list_append(v, ["ज्ञातुं", "verb", "jñātuṃ", "", "", "", "combining form of"]) + let v = native_list_append(v, ["ज्ञापयति", "verb", "ज्ञा पयति third-singular indicative", "jñāpayati", "ज्ञा", "", "to cause to"]) + let v = native_list_append(v, ["उभ्नाति", "verb", "उ॒भ्नामि॑", "", "", "", "to hurt kill"]) + let v = native_list_append(v, ["स्यूत", "verb", "स्यू॒त past passive participle", "syūtá", "सिव्", "", "past passive participle"]) + let v = native_list_append(v, ["ददौ", "verb", "द॒दौ", "", "", "", "perfect of दा"]) + let v = native_list_append(v, ["अस्थात्", "verb", "अस्था॑म्", "अस्था॑त्", "", "", "aorist of स्था"]) + let v = native_list_append(v, ["चिन्तयति", "verb", "चि॒न्तया॑मि", "", "", "", "to think consider"]) + let v = native_list_append(v, ["कथयति", "verb", "क॒थया॑मि", "", "", "", "to tell narrate"]) + let v = native_list_append(v, ["चोरयति", "verb", "चो॒रया॑मि", "", "", "", "to steal rob"]) + let v = native_list_append(v, ["द्रवति", "verb", "द्रवा॑मि", "अद्रु॑द्रुवत्", "", "", "to run"]) + let v = native_list_append(v, ["द्रावयति", "verb", "द्रा॒वया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["दुद्राव", "verb", "दु॒द्रव॑", "", "", "", "perfect of द्रु"]) + let v = native_list_append(v, ["विवेश", "verb", "वि॒वेश॑", "", "", "", "past of विश्"]) + let v = native_list_append(v, ["मनति", "verb", "मनति third-singular indicative", "manati", "म्ना", "", "to remember"]) + let v = native_list_append(v, ["अमनत्", "verb", "amanat", "", "", "", "imperfect active indicative"]) + let v = native_list_append(v, ["मनेत्", "verb", "manet", "", "", "", "optative of म्ना"]) + let v = native_list_append(v, ["इङ्गति", "verb", "इङ्गामि", "", "", "", "to move shake"]) + let v = native_list_append(v, ["इङ्गते", "verb", "इङ्गते third-singular indicative", "iṅgate", "इङ्ग्", "", "synonym of इङ्गति"]) + let v = native_list_append(v, ["इङ्गितुम्", "verb", "iṅgitum", "", "", "", "infinitive of इङ्ग्"]) + let v = native_list_append(v, ["कुट्टयति", "verb", "कु॒ट्टया॑मि", "", "", "", "to crush grind"]) + let v = native_list_append(v, ["चुकोट्ट", "verb", "चुकोट्ट third-singular indicative", "cukoṭṭa", "कुट्ट्", "", "perfect past active"]) + let v = native_list_append(v, ["चोदति", "verb", "चोदामि", "अचो॑दीत्", "", "", "to impel incite"]) + let v = native_list_append(v, ["इरस्यति", "verb", "इ॒र॒स्यामि॑", "", "", "", "to behave insolently"]) + let v = native_list_append(v, ["वलति", "verb", "वलति third-singular indicative", "valati", "वल्", "", "alternative form of"]) + let v = native_list_append(v, ["गृध्यति", "verb", "गृध्या॑मि", "", "", "", "to covet desire"]) + let v = native_list_append(v, ["गर्धयते", "verb", "गर्धयते third-singular indicative", "gardhayate", "गृध्", "", "to deceive cheat"]) + let v = native_list_append(v, ["जसति", "verb", "जसा॑मि", "", "", "", "to go"]) + let v = native_list_append(v, ["नमति", "verb", "नमा॑मि", "", "", "", "to bend bow"]) + let v = native_list_append(v, ["वर्धति", "verb", "वर्धा॑मि", "", "", "", "to grow increase"]) + let v = native_list_append(v, ["ववर्ध", "verb", "व॒वर्ध॑", "vavárdha", "ववृधे", "", "first/third-person singular active"]) + let v = native_list_append(v, ["पूजयति", "verb", "पूजयामि", "", "", "", "to worship revere"]) + let v = native_list_append(v, ["पालयति", "verb", "पा॒लया॑मि", "", "", "", "to protect guard"]) + let v = native_list_append(v, ["शुम्भति", "verb", "शु॒म्भामि॑", "", "", "", "to shine to"]) + let v = native_list_append(v, ["बिभाय", "verb", "बि॒भय॑", "", "", "", "perfect of भी"]) + let v = native_list_append(v, ["घिण्णते", "verb", "घिण्णे", "", "", "", "to grasp take"]) + let v = native_list_append(v, ["बिभेति", "verb", "बि॒भेमि॑", "", "", "", "to fear dread"]) + let v = native_list_append(v, ["जिह्रेति", "verb", "जि॒ह्रेमि॑", "", "", "", "to blush be"]) + let v = native_list_append(v, ["गमिष्यति", "verb", "ग॒मि॒ष्यामि॑", "", "", "", "future of गम्"]) + let v = native_list_append(v, ["बिभर्ति", "verb", "बिभ॑र्मि", "", "", "", "to bear convey"]) + let v = native_list_append(v, ["जिहीते", "verb", "जिहे॑", "", "", "", "to go move"]) + let v = native_list_append(v, ["नेनेक्ति", "verb", "नेने॑ज्मि", "", "", "", "to wash cleanse"]) + let v = native_list_append(v, ["वेवेक्ति", "verb", "वेवेक्ति third-singular indicative", "vevekti", "विज्", "", "to separate divide"]) + let v = native_list_append(v, ["वेवेष्टि", "verb", "वेवे॑ष्मि", "", "", "", "to surround encircle"]) + let v = native_list_append(v, ["जिघर्ति", "verb", "जिघ॑र्मि", "अघा॑र्षीत्", "", "", "The meaning of"]) + let v = native_list_append(v, ["जिहर्ति", "verb", "जिह॑र्ति third-singular indicative", "jíharti", "हृ", "", "to take away"]) + let v = native_list_append(v, ["इयर्ति", "verb", "इय॑र्मि", "", "", "", "to go"]) + let v = native_list_append(v, ["सिसर्ति", "verb", "सिस॑र्मि", "", "", "", "to escape run"]) + let v = native_list_append(v, ["बभस्ति", "verb", "बभ॑स्मि", "", "", "", "to chew eat"]) + let v = native_list_append(v, ["चिकेति", "verb", "चि॒केमि॑", "", "", "", "to observe"]) + let v = native_list_append(v, ["चिकेत्ति", "verb", "चिकेत्ति third-singular indicative", "ciketti", "कित्", "", ""]) + let v = native_list_append(v, ["तुतोर्ति", "verb", "तुतोर्ति third-singular indicative", "tutorti", "तुर्", "", ""]) + let v = native_list_append(v, ["दिधेष्टि", "verb", "दिधेष्टि third-singular indicative", "didheṣṭi", "धिष्", "", ""]) + let v = native_list_append(v, ["दधन्ति", "verb", "दधन्ति third-singular indicative", "dadhanti", "धन्", "", ""]) + let v = native_list_append(v, ["जजन्ति", "verb", "जजन्ति third-singular indicative", "jajanti", "जन्", "", ""]) + let v = native_list_append(v, ["जिगाति", "verb", "जिगा॑मि", "", "", "", "to go go"]) + let v = native_list_append(v, ["साध्नोति", "verb", "सा॒ध्नोमि॑", "", "", "", "to obtain"]) + let v = native_list_append(v, ["ववर्त", "verb", "व॒वर्त॑", "", "", "", "perfect of वृत्"]) + let v = native_list_append(v, ["प्रियते", "verb", "प्रि॒ये", "", "", "", "to be busy"]) + let v = native_list_append(v, ["बभार", "verb", "ब॒भर॑", "", "", "", "past of भृ"]) + let v = native_list_append(v, ["बभ्रे", "verb", "बभ्रे third-singular indicative", "babhre", "भृ", "", "past of भृ"]) + let v = native_list_append(v, ["प्रीयते", "verb", "प्रीये", "", "", "", "synonym of प्रीणाति"]) + let v = native_list_append(v, ["स्वर्दते", "verb", "स्वर्दते third-singular indicative", "svardate", "स्वर्द्", "", "to taste relish"]) + let v = native_list_append(v, ["खेलति", "verb", "खेला॑मि", "", "", "", "to play"]) + let v = native_list_append(v, ["बुक्कति", "verb", "बुक्कामि", "", "", "", "to bark woof"]) + let v = native_list_append(v, ["बुक्कयति", "verb", "बुक्कयति third-singular indicative", "bukkayati", "बुक्क्", "", "to bark woof"]) + let v = native_list_append(v, ["क्षिण्", "verb", "kṣiṇ", "8 U", "", "", ""]) + let v = native_list_append(v, ["ऋण्", "verb", "ṛṇ", "8 U", "", "", ""]) + let v = native_list_append(v, ["तृण्", "verb", "tṛṇ", "8 U", "", "", ""]) + let v = native_list_append(v, ["घृण्", "verb", "ghṛṇ", "8 U", "घृ", "", ""]) + let v = native_list_append(v, ["वन्", "verb", "van", "वा", "", "", "to like love"]) + let v = native_list_append(v, ["तनोमि", "verb", "tanomi", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["तनुवः", "verb", "tanuvaḥ", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["तन्वः", "verb", "tanvaḥ", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["तनुमः", "verb", "tanumaḥ", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["तन्मः", "verb", "tanmaḥ", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["तनोषि", "verb", "tanoṣi", "", "", "", "present active indicative"]) + let v = native_list_append(v, ["कुरुतस्", "verb", "kurutas", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["क्रीणीतस्", "verb", "krīṇītas", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["प्रीणीतस्", "verb", "prīṇītas", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["श्रीणीतः", "verb", "śrīṇītaḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["मीनीतस्", "verb", "mīnītas", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["सिनीतः", "verb", "sinītaḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["स्कुनीतः", "verb", "skunītaḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["स्तभ्नीतः", "verb", "stabhnītaḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["स्तुभ्नीतः", "verb", "stubhnītaḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["एधे", "verb", "edhe", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["स्पर्धे", "verb", "spardhe", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["गाधे", "verb", "gādhe", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["बाधे", "verb", "bādhe", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["नाधे", "verb", "nādhe", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["नाथामि", "verb", "nāthāmi", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["दधे", "verb", "द॒धे", "dadhé", "", "", "present middle first-person"]) + let v = native_list_append(v, ["स्कुन्दे", "verb", "skunde", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["श्विन्दे", "verb", "śvinde", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["चेतिष्यति", "verb", "cetiṣyati", "", "", "", "simple future active"]) + let v = native_list_append(v, ["भवानि", "verb", "भवा॑नि", "bhávāni", "", "", "imperative active first-person"]) + let v = native_list_append(v, ["भवतु", "verb", "bhavatu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्वपितुम्", "verb", "svapitum", "", "", "", "infinitive of स्वप्"]) + let v = native_list_append(v, ["दाधाव्यते", "verb", "दाधाव्ये", "", "", "", "cleaning or polishing"]) + let v = native_list_append(v, ["धाव्यते", "verb", "dhāvyate", "", "", "", "passive of धावति"]) + let v = native_list_append(v, ["उल्लिखति", "verb", "उल्लिखामि", "", "", "", "to make lines"]) + let v = native_list_append(v, ["कोचति", "verb", "कोचति third-singular indicative", "kocati", "कुच्", "", "to be curved"]) + let v = native_list_append(v, ["प्रतिरुन्धते", "verb", "pratirundhate", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["स्थापयतु", "verb", "sthāpayatu", "", "", "", "causative imperative third-person"]) + let v = native_list_append(v, ["पास्यति", "verb", "पा॒स्यामि॑", "", "", "", "future of पा"]) + let v = native_list_append(v, ["अपनह्यति", "verb", "अपनह्यति third-singular indicative", "apanahyati", "", "", "to strip to"]) + let v = native_list_append(v, ["हूर्छति", "verb", "हूर्छामि", "", "", "", "to go crookedly"]) + let v = native_list_append(v, ["आह्वयति", "verb", "आह्वयति third-singular indicative", "āhvayati", "आह्वे", "", "to call"]) + let v = native_list_append(v, ["जह्वार", "verb", "jahvāra", "", "", "", "perfect third-person singular"]) + let v = native_list_append(v, ["स्वरति", "verb", "स्वरा॑मि", "", "", "", "to sing"]) + let v = native_list_append(v, ["सस्वार", "verb", "sasvāra", "", "", "", "perfect third-person singular"]) + let v = native_list_append(v, ["स्वर्ता", "verb", "svartā", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["स्वरिता", "verb", "svaritā", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["स्वरिष्यति", "verb", "svariṣyati", "", "", "", "simple future third-person"]) + let v = native_list_append(v, ["स्वर्ष्यति", "verb", "svarṣyati", "", "", "", "simple future third-person"]) + let v = native_list_append(v, ["स्वरतात्", "verb", "svaratāt", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्वरतु", "verb", "svaratu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["अस्वरत्", "verb", "asvarat", "", "", "", "imperfect active third-person"]) + let v = native_list_append(v, ["स्वर्यात्", "verb", "svaryāt", "", "", "", "benedictive third-person singular"]) + let v = native_list_append(v, ["स्वरेत्", "verb", "svaret", "", "", "", "potential active third-person"]) + let v = native_list_append(v, ["अस्वारीत्", "verb", "अस्वा॑रिषम्", "अस्वा॑रीत्", "", "", "aorist of स्वर्"]) + let v = native_list_append(v, ["अस्वार्षीत्", "verb", "asvārṣīt", "", "", "", "aorist third-person singular"]) + let v = native_list_append(v, ["अस्वर्ष्यत्", "verb", "asvarṣyat", "", "", "", "conditional third-person singular"]) + let v = native_list_append(v, ["अस्वरिष्यत्", "verb", "asvariṣyat", "", "", "", "conditional third-person singular"]) + let v = native_list_append(v, ["सिस्वरिषति", "verb", "सिस्वरिषति third-singular indicative", "sisvariṣati", "स्वर्", "", "desiderative of स्वर्"]) + let v = native_list_append(v, ["सुस्वूर्षति", "verb", "सुस्वूर्षति third-singular indicative", "susvūrṣati", "", "", "desiderative of स्वृ"]) + let v = native_list_append(v, ["सास्वर्ति", "verb", "सास्वर्ति third-singular indicative", "sāsvarti", "", "", "frequentative and intensive"]) + let v = native_list_append(v, ["जिगमिषति", "verb", "जिगमिषति third-singular indicative", "jigamiṣati", "", "", "desiderative of गम्"]) + let v = native_list_append(v, ["जङ्गमीति", "verb", "जङ्गमीति third-singular indicative", "jaṅgamīti", "", "", "frequentative and intensive"]) + let v = native_list_append(v, ["जिगांसते", "verb", "जिगांसते third-singular indicative", "jigāṃsate", "", "", "desiderative of गम्"]) + let v = native_list_append(v, ["अजिगांसत्", "verb", "ajigāṃsat", "", "", "", "desiderative imperfect active"]) + let v = native_list_append(v, ["गमति", "verb", "गम॑ति", "gámati", "गम्", "", "third-person singular subjunctive"]) + let v = native_list_append(v, ["जग्मथुर्", "verb", "jagmathur", "", "", "", "Incomplete prakriya form"]) + let v = native_list_append(v, ["जग्मथुः", "verb", "jagmathuḥ", "", "", "", "perfect active second-person"]) + let v = native_list_append(v, ["प्रवदति", "verb", "प्रवदामि", "", "", "", "to name"]) + let v = native_list_append(v, ["लेढि", "verb", "लेह्मि॑", "अलि॑क्षत्", "", "", "to taste to"]) + let v = native_list_append(v, ["लीढे", "verb", "līḍhe", "", "", "", "present middle third-person"]) + let v = native_list_append(v, ["लिलेह", "verb", "lileha", "", "", "", "perfect active third-person"]) + let v = native_list_append(v, ["लेढा", "verb", "लेढास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["लिह्यात्", "verb", "lihyāt", "", "", "", "present optative third-person"]) + let v = native_list_append(v, ["आस्ते", "verb", "आसे॑", "", "", "", "to be to"]) + let v = native_list_append(v, ["आसयति", "verb", "आ॒सया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["सभाजयति", "verb", "सभाजयामि", "", "", "", "to offer"]) + let v = native_list_append(v, ["पृणक्ति", "verb", "पृ॒णच्मि॑", "", "", "", "to give generously"]) + let v = native_list_append(v, ["वृणक्ति", "verb", "वृ॒णज्मि॑", "", "", "", "to remove pluck"]) + let v = native_list_append(v, ["विनक्ति", "verb", "वि॒नच्मि॑", "", "", "", "to winnow to"]) + let v = native_list_append(v, ["तनक्ति", "verb", "त॒नच्मि॑", "", "", "", "to contract"]) + let v = native_list_append(v, ["अनक्ति", "verb", "अ॒नज्मि॑", "", "", "", "To anoint apply"]) + let v = native_list_append(v, ["उनत्ति", "verb", "उ॒नद्मि॑", "", "", "", "to bathe flow"]) + let v = native_list_append(v, ["हिनस्ति", "verb", "हि॒नस्मि॑", "", "", "", "to wound injure"]) + let v = native_list_append(v, ["तृणेढि", "verb", "तृ॒णेह्मि॑", "", "", "", "to bruise crush"]) + let v = native_list_append(v, ["भुनक्ति", "verb", "भु॒नज्मि॑", "", "", "", "to enjoy revel"]) + let v = native_list_append(v, ["पिनष्टि", "verb", "पि॒नष्मि॑", "", "", "", "to grind crush"]) + let v = native_list_append(v, ["विन्ते", "verb", "विन्ते third-singular indicative", "vinte", "विद्", "", ""]) + let v = native_list_append(v, ["विन्त्ते", "verb", "विन्त्ते third-singular indicative", "vintte", "विद्", "", "alternative form of"]) + let v = native_list_append(v, ["अकर्तिष्यत्", "verb", "akartiṣyat", "", "", "", "conditional active third-person"]) + let v = native_list_append(v, ["अकर्त्स्यत्", "verb", "akartsyat", "", "", "", "conditional active third-person"]) + let v = native_list_append(v, ["अकर्तिष्यताम्", "verb", "akartiṣyatām", "", "", "", "conditional active third-person"]) + let v = native_list_append(v, ["अकर्त्स्यताम्", "verb", "akartsyatām", "", "", "", "conditional active third-person"]) + let v = native_list_append(v, ["चकृतिम", "verb", "cakṛtima", "", "", "", "perfect active first-person"]) + let v = native_list_append(v, ["बभूव", "verb", "ब॒भूव॑", "", "", "", "perfect of भू"]) + let v = native_list_append(v, ["भवन्ति", "verb", "bhavanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["भवतस्", "verb", "bhavatas", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["भवसि", "verb", "bhavasi", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["भवथस्", "verb", "bhavathas", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["भवथ", "verb", "bhavatha", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["भूयध्वे", "verb", "bhūyadhve", "", "", "", "present passive second-person"]) + let v = native_list_append(v, ["भूये", "verb", "bhūye", "", "", "", "present passive first-person"]) + let v = native_list_append(v, ["भूयावहे", "verb", "bhūyāvahe", "", "", "", "present passive first-person"]) + let v = native_list_append(v, ["भवावस्", "verb", "bhavāvas", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["भवामस्", "verb", "bhavāmas", "", "", "", "present active first-person"]) + let v = native_list_append(v, ["भूयसे", "verb", "bhūyase", "", "", "", "present passive second-person"]) + let v = native_list_append(v, ["भूयेथे", "verb", "bhūyethe", "", "", "", "present passive second-person"]) + let v = native_list_append(v, ["भूयामहे", "verb", "bhūyāmahe", "", "", "", "present passive first-person"]) + let v = native_list_append(v, ["भूयते", "verb", "भू॒ये", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["भूयेते", "verb", "bhūyete", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["भूयन्ते", "verb", "bhūyante", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["भविष्यामि", "verb", "भ॒वि॒ष्यामि॑", "bhaviṣyā́mi", "", "", "future active first-person"]) + let v = native_list_append(v, ["भविष्यति", "verb", "भ॒वि॒ष्यामि॑", "", "", "", "future active third-person"]) + let v = native_list_append(v, ["भविष्यसि", "verb", "bhaviṣyasi", "", "", "", "future active second-person"]) + let v = native_list_append(v, ["रीळ्ह", "verb", "री॒ळ्ह past passive participle", "rīḷhá", "रिह्", "", "past participle of"]) + let v = native_list_append(v, ["श्लिष्यति", "verb", "श्लिष्या॑मि", "", "", "", "to attach to"]) + let v = native_list_append(v, ["श्लिष्यतः", "verb", "śliṣyataḥ", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["श्लिष्यन्ति", "verb", "śliṣyanti", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["श्लिष्यसि", "verb", "śliṣyasi", "", "", "", "present active second-person"]) + let v = native_list_append(v, ["जग्मतुस्", "verb", "jagmatus", "", "", "", "perfect active third-person"]) + let v = native_list_append(v, ["जग्मुः", "verb", "jagmuḥ", "", "", "", "perfect active third-person"]) + let v = native_list_append(v, ["जगमिथ", "verb", "jagamitha", "", "", "", "perfect active second-person"]) + let v = native_list_append(v, ["जग्म", "verb", "jagma", "", "", "", "perfect active second-person"]) + let v = native_list_append(v, ["जगम", "verb", "jagama", "", "", "", "perfect active first-person"]) + let v = native_list_append(v, ["जग्मिव", "verb", "jagmiva", "", "", "", "perfect active first-person"]) + let v = native_list_append(v, ["जग्मिम", "verb", "jagmima", "", "", "", "perfect active first-person"]) + let v = native_list_append(v, ["गन्ता", "verb", "ग॒न्तास्मि॑", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["गन्तारौ", "verb", "gantārau", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["गन्तारस्", "verb", "gantāras", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["गन्तासि", "verb", "gantāsi", "", "", "", "periphrastic future second-person"]) + let v = native_list_append(v, ["गन्तास्थस्", "verb", "gantāsthas", "", "", "", "periphrastic future second-person"]) + let v = native_list_append(v, ["गन्तास्थ", "verb", "gantāstha", "", "", "", "periphrastic future second-person"]) + let v = native_list_append(v, ["गन्तास्मि", "verb", "gantāsmi", "", "", "", "periphrastic future first-person"]) + let v = native_list_append(v, ["गन्तास्वस्", "verb", "gantāsvas", "", "", "", "periphrastic future first-person"]) + let v = native_list_append(v, ["गन्तास्मस्", "verb", "gantāsmas", "", "", "", "periphrastic future first-person"]) + let v = native_list_append(v, ["गमिष्यतस्", "verb", "gamiṣyatas", "", "", "", "future active third-person"]) + let v = native_list_append(v, ["गमिष्यन्ति", "verb", "gamiṣyanti", "", "", "", "future active third-person"]) + let v = native_list_append(v, ["गमिष्यसि", "verb", "gamiṣyasi", "", "", "", "future active second-person"]) + let v = native_list_append(v, ["गमिष्यथस्", "verb", "gamiṣyathas", "", "", "", "future active second-person"]) + let v = native_list_append(v, ["गमिष्यथ", "verb", "gamiṣyatha", "", "", "", "future active second-person"]) + let v = native_list_append(v, ["गमिष्यामि", "verb", "gamiṣyāmi", "", "", "", "future active first-person"]) + let v = native_list_append(v, ["गमिष्यावस्", "verb", "gamiṣyāvas", "", "", "", "future active first-person"]) + let v = native_list_append(v, ["गमिष्यामस्", "verb", "gamiṣyāmas", "", "", "", "future active first-person"]) + let v = native_list_append(v, ["लीढ", "verb", "ली॒ढ past passive participle", "līḍhá", "लिह्", "", "past participle of"]) + let v = native_list_append(v, ["भवतात्", "verb", "bhavatāt", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["एधताम्", "verb", "edhatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्पर्धताम्", "verb", "spardhatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["गाधताम्", "verb", "gādhatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["गाधते", "verb", "गाधते third-singular indicative", "gādhate", "गाध्", "", "to remain stay"]) + let v = native_list_append(v, ["बाधताम्", "verb", "bādhatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["नाधताम्", "verb", "nādhatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["नाथताम्", "verb", "nāthatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["नाथतु", "verb", "nāthatu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["नाथतात्", "verb", "nāthatāt", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["दधताम्", "verb", "dadhatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्कुन्दताम्", "verb", "skundatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["श्विन्दताम्", "verb", "śvindatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["वन्दताम्", "verb", "vandatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["भन्दताम्", "verb", "bhandatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["मन्दताम्", "verb", "mandatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्पन्दताम्", "verb", "spandatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["क्लिन्दताम्", "verb", "klindatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["मोदताम्", "verb", "modatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["ददताम्", "verb", "dadatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्वदताम्", "verb", "svadatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["स्वर्दताम्", "verb", "svardatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["ऊर्दताम्", "verb", "ūrdatām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["ददातु", "verb", "dadātu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["दत्ताम्", "verb", "dattām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["दत्तात्", "verb", "dattāt", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["तनोतु", "verb", "tanotu", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["तनुतात्", "verb", "tanutāt", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["तनुताम्", "verb", "tanutām", "", "", "", "imperative active third-person"]) + let v = native_list_append(v, ["आगच्छ", "verb", "āgaccha", "", "", "", "imperative active second-person"]) + let v = native_list_append(v, ["असनिष्यत", "verb", "asaniṣyata", "", "", "", "conditional middle third-person"]) + let v = native_list_append(v, ["असनिष्यत्", "verb", "asaniṣyat", "", "", "", "conditional active third-person"]) + let v = native_list_append(v, ["असानीत्", "verb", "asānīt", "", "", "", "aorist active third-person"]) + let v = native_list_append(v, ["असनीत्", "verb", "asanīt", "", "", "", "aorist active third-person"]) + let v = native_list_append(v, ["सनुते", "verb", "सनुते third-singular indicative", "sanute", "सन्", "", "to be successful"]) + let v = native_list_append(v, ["ससान", "verb", "स॒सन॑", "", "", "", "perfect of सन्"]) + let v = native_list_append(v, ["सेने", "verb", "sene", "", "", "", "first/third-person singular perfect"]) + let v = native_list_append(v, ["सनिता", "verb", "sanitā", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["सनिष्यति", "verb", "saniṣyati", "", "", "", "future active third-person"]) + let v = native_list_append(v, ["असनोत्", "verb", "asanot", "", "", "", "imperfect active third-person"]) + let v = native_list_append(v, ["सन्यात्", "verb", "sanyāt", "", "", "", "benedictive active third-person"]) + let v = native_list_append(v, ["भिनत्ति", "verb", "भि॒नद्मि॑", "", "", "", "to split divide"]) + let v = native_list_append(v, ["जुघुक्षति", "verb", "जुघुक्षामि", "", "", "", "to wish to"]) + let v = native_list_append(v, ["सस्ति", "verb", "सस्मि॑", "", "", "", "to sleep"]) + let v = native_list_append(v, ["पृणाति", "verb", "पृ॒णामि॑", "", "", "", "to fill"]) + let v = native_list_append(v, ["मम्नौ", "verb", "मम्नौ third-singular indicative", "mamnau", "", "", "first/third-person singular perfect"]) + let v = native_list_append(v, ["परिवर्तते", "verb", "प॒रि॒वर्ते॑", "", "", "", "to turn round"]) + let v = native_list_append(v, ["तृन्त्ते", "verb", "तृन्त्ते third-singular indicative", "tṛntte", "तृद्", "", "to cleave"]) + let v = native_list_append(v, ["अधितिष्ठति", "verb", "अधितिष्ठामि", "", "", "", "to stand above"]) + let v = native_list_append(v, ["अभिनयति", "verb", "अभिनयति third-singular indicative", "abhinayati", "अभिनी", "", "to represent dramatically"]) + let v = native_list_append(v, ["विशति", "verb", "वि॒शामि॑", "", "", "", "to enter"]) + let v = native_list_append(v, ["कर्तोस्", "verb", "kártos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["दातोस्", "verb", "dā́tos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["गन्तोस्", "verb", "gántos", "", "", "", "Vedic infinitive ablative"]) + let v = native_list_append(v, ["दामने", "verb", "dā́mane", "", "", "", "Vedic dative infinitive"]) + let v = native_list_append(v, ["एतवे", "verb", "étave", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["एतोस्", "verb", "étos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["कर्तवे", "verb", "kártave", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["जनितोस्", "verb", "jánitos", "", "", "", "Vedic infinitive ablative"]) + let v = native_list_append(v, ["प्रवाचे", "verb", "pravā́ce", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["प्रैतोस्", "verb", "praitos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["तुर्वणे", "verb", "turváṇe", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["हिंसितोस्", "verb", "híṃsitos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["प्रमेतोस्", "verb", "prametos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["प्रदातोस्", "verb", "prá-dātos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["ज्ञातोस्", "verb", "jñā́tos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["ईजितुम्", "verb", "ījitum", "", "", "", "irregular infinitive of"]) + let v = native_list_append(v, ["बप्सति", "verb", "बप्स॑ति", "bápsati", "", "", "present active third-person"]) + let v = native_list_append(v, ["वक्तोस्", "verb", "váktos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["वक्तवे", "verb", "vaktave", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["निधातोस्", "verb", "nídhātos", "", "", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["राष्टि", "verb", "राष्टि॑ third-singular indicative", "rā́ṣṭi", "राज्", "", "to direct to"]) + let v = native_list_append(v, ["आक्षिपति", "verb", "आक्षिपति third-singular indicative", "ākṣipati", "आक्षिप्", "", "call point out"]) + let v = native_list_append(v, ["स्विद्यति", "verb", "स्विद्या॑मि", "", "", "", "to sweat perspire"]) + let v = native_list_append(v, ["ททาติ", "verb", "ททาติ third-singular indicative", "dádāti", "दा", "", "Thai script form"]) + let v = native_list_append(v, ["जनयति", "verb", "ज॒नया॑मि", "", "", "", "to beget produce"]) + let v = native_list_append(v, ["पोस्फोर्ति", "verb", "पोस्फोर्ति third-singular indicative", "posphorti", "of स्फुर्", "", "to tremble violently"]) + let v = native_list_append(v, ["रोरोति", "verb", "रोरोति third-singular indicative", "roroti", "रु", "", "to roar or"]) + let v = native_list_append(v, ["बोभोति", "verb", "बोभोति third-singular indicative", "bobhoti", "भू", "", "to be frequently"]) + let v = native_list_append(v, ["रोरवीति", "verb", "रोर॑वीमि", "", "", "", "to roar or"]) + let v = native_list_append(v, ["पापतीति", "verb", "पाप॑तीमि", "", "", "", "to fly or"]) + let v = native_list_append(v, ["बोभवीति", "verb", "बोभ॑वीमि", "", "", "", "to be frequently"]) + let v = native_list_append(v, ["बोभवति", "verb", "बोभवति third-singular indicative", "bobhavati", "भू", "", "to be frequently"]) + let v = native_list_append(v, ["भ्रंशते", "verb", "भ्रंशे॑", "", "", "", "to drop fall"]) + let v = native_list_append(v, ["स्फुरति", "verb", "स्फु॒रामि॑", "", "", "", "to spurn"]) + let v = native_list_append(v, ["ताष्टि", "verb", "ताक्ष्मि॑", "", "", "", "to form by"]) + let v = native_list_append(v, ["प्साति", "verb", "प्सामि", "", "", "", "to chew"]) + let v = native_list_append(v, ["निरवदाति", "verb", "निरवदाति third-singular indicative", "niravadāti", "", "", "to distribute or"]) + let v = native_list_append(v, ["गदति", "verb", "गदामि", "", "", "", "to speak say"]) + let v = native_list_append(v, ["दुनोति", "verb", "दु॒नोमि॑", "अदौ॑षीत्", "", "", "to be burnt"]) + let v = native_list_append(v, ["श्रोता", "verb", "श्रोतास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["स्कुनाति", "verb", "स्कु॒नामि॑", "", "", "", "to pick pluck"]) + let v = native_list_append(v, ["शोचयति", "verb", "शो॒चया॑मि", "", "", "", "causative of शोचति"]) + let v = native_list_append(v, ["भाषित", "verb", "bhāṣita", "", "", "", "past participle of"]) + let v = native_list_append(v, ["लिखित", "verb", "likhitá", "no-table-tags", "sa-decl-adj-mfn", "", "past participle of"]) + let v = native_list_append(v, ["पठति", "verb", "पठा॑मि", "", "", "", "to read"]) + let v = native_list_append(v, ["छिनत्ति", "verb", "छि॒नद्मि॑", "", "", "", "to cut"]) + let v = native_list_append(v, ["संतापयति", "verb", "स॒न्ता॒पया॑मि", "", "", "", "to inflame cause"]) + let v = native_list_append(v, ["दर्शनीय", "verb", "द॒र्श॒नीय॑ future passive participle", "darśanī́ya", "दृश्", "", "future passive participle"]) + let v = native_list_append(v, ["द्रष्टव्य", "verb", "द्र॒ष्ट॒व्य future passive participle", "draṣṭavyá", "दृश्", "", "future passive participle"]) + let v = native_list_append(v, ["श्रीणाति", "verb", "श्री॒णामि॑", "", "", "", "to mix mingle"]) + let v = native_list_append(v, ["វិវធ៌យតិ", "verb", "វិវធ៌យតិ third-singular indicative", "vivardhayati", "वृध्", "", "Khmer script form"]) + let v = native_list_append(v, ["विवर्धयति", "verb", "वि॒व॒र्धया॑मि", "", "", "", "cause to prosper"]) + let v = native_list_append(v, ["विवर्धते", "verb", "विवर्धे", "", "", "", "to grow to"]) + let v = native_list_append(v, ["យាតិ", "verb", "យាតិ third-singular indicative", "yā́ti", "या", "", "Khmer script form"]) + let v = native_list_append(v, ["पुनाति", "verb", "पु॒नामि॑", "", "", "", "to purify cleanse"]) + let v = native_list_append(v, ["स्मृत", "verb", "स्मृ॒त past passive participle", "smṛtá", "स्मृ", "", "past passive participle"]) + let v = native_list_append(v, ["यत", "verb", "yata", "यम्", "", "", "past participle of"]) + let v = native_list_append(v, ["दोग्धि", "verb", "दोह्मि॑", "", "", "", "to milk a"]) + let v = native_list_append(v, ["इत", "verb", "इ॒त past passive participle", "itá", "इ", "", "past passive participle"]) + let v = native_list_append(v, ["लिखति", "verb", "लि॒खामि॑", "", "", "", "to scratch scrape"]) + let v = native_list_append(v, ["क्रुध्यति", "verb", "क्रुध्या॑मि", "", "", "", "to become angry"]) + let v = native_list_append(v, ["गृह्णाति", "verb", "गृ॒ह्णामि॑", "", "", "", "to grab seize"]) + let v = native_list_append(v, ["गर्हति", "verb", "गर्हामि", "", "", "", "to lodge a"]) + let v = native_list_append(v, ["स्नात", "verb", "स्ना॒त", "snātá", "", "", "past participle of"]) + let v = native_list_append(v, ["तापयति", "verb", "ता॒पया॑मि", "", "", "", "to make warm"]) + let v = native_list_append(v, ["क्षिणाति", "verb", "क्षि॒णामि॑", "", "", "", "to destroy ruin"]) + let v = native_list_append(v, ["क्षमते", "verb", "क्षमे॑", "अक्षं॑स्त", "", "", "to be patient"]) + let v = native_list_append(v, ["विद्वांस्", "verb", "विद् वांस् perfect active participle", "vidvāṃs", "विद्", "", "perfect participle of"]) + let v = native_list_append(v, ["सनोति", "verb", "स॒नोमि॑", "", "", "", "to gain acquire"]) + let v = native_list_append(v, ["आपयति", "verb", "आ॒पया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["चुम्बति", "verb", "चुम्बामि", "", "", "", "to kiss"]) + let v = native_list_append(v, ["अधिगच्छति", "verb", "अ॒धि॒गच्छा॑मि", "अ॒ध्यग॑मत्", "", "", "to find obtain"]) + let v = native_list_append(v, ["फलति", "verb", "फलामि", "", "", "", "See फल् phal"]) + let v = native_list_append(v, ["𑀬𑀸𑀢𑀺", "verb", "𑀬𑀸𑀢𑀺 third-singular indicative", "yā́ti", "या", "", "Brahmi script form"]) + let v = native_list_append(v, ["उच्छति", "verb", "उ॒च्छामि॑", "", "", "", "to dawn"]) + let v = native_list_append(v, ["यत्", "verb", "यत् present active participle", "yát", "इ", "", "present active participle"]) + let v = native_list_append(v, ["शोच्यते", "verb", "शोच्ये", "", "", "", "to be made"]) + let v = native_list_append(v, ["अङ्कयति", "verb", "अङ्कयामि", "", "", "", "to stamp mark"]) + let v = native_list_append(v, ["भिषक्ति", "verb", "भि॒षज्मि॑", "", "", "", "to heal to"]) + let v = native_list_append(v, ["आकृत", "verb", "आकृत past passive participle", "ākṛta", "कृ", "", "past passive participle"]) + let v = native_list_append(v, ["स्फुटति", "verb", "स्फु॒टामि॑", "", "", "", "to burst explode"]) + let v = native_list_append(v, ["स्फोटयति", "verb", "स्फोटयति third-singular indicative", "sphoṭayati", "स्फुट्", "", "to cause to"]) + let v = native_list_append(v, ["लुभ्यति", "verb", "लुभ्या॑मि", "", "", "", "to desire greatly"]) + let v = native_list_append(v, ["लोभयति", "verb", "लो॒भया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["ಕಾರ್ಯ", "verb", "kāryà", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["अस्यति", "verb", "अस्या॑मि", "", "", "", "to throw fling"]) + let v = native_list_append(v, ["प्रास्यति", "verb", "प्रास् यति third-singular indicative", "prāsyati", "प्रास्", "", "to throw or"]) + let v = native_list_append(v, ["जज्झती", "verb", "जज्झ॑ती", "jájjhatī", "जझ्झती", "", "feminine present participle"]) + let v = native_list_append(v, ["आवृत", "verb", "āvṛta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ការ្យ", "verb", "kāryà", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["आगत", "verb", "आग॑त past passive participle", "ā́gata", "आगम्", "", "past participle of"]) + let v = native_list_append(v, ["बुभुक्षति", "verb", "बुभुक्षामि", "", "", "", "to wish to"]) + let v = native_list_append(v, ["शिशयिषते", "verb", "शिशयिषते third-singular indicative", "śiśayiṣate", "शी", "", "to wish to"]) + let v = native_list_append(v, ["सुषुप्सति", "verb", "सुषुप्सति third-singular indicative", "suṣupsati", "स्वप्", "", "to wish to"]) + let v = native_list_append(v, ["शुश्रूषते", "verb", "शुश्रू॑षे", "", "", "", "to wish or"]) + let v = native_list_append(v, ["शोभति", "verb", "शोभामि", "", "", "", "to beautify embellish"]) + let v = native_list_append(v, ["पर्युष्ट", "verb", "paryuṣṭa", "", "", "", "past participle of"]) + let v = native_list_append(v, ["अञ्चति", "verb", "अञ्चा॑मि", "", "", "", "to bend curve"]) + let v = native_list_append(v, ["विविक्षति", "verb", "विविक्षामि", "", "", "", "to wish to"]) + let v = native_list_append(v, ["छिक्कति", "verb", "छिक्कामि", "", "", "", "to sneeze"]) + let v = native_list_append(v, ["दीव्यति", "verb", "दीव्या॑मि", "", "", "", "to cast throw"]) + let v = native_list_append(v, ["तृप्यति", "verb", "तृप्या॑मि", "", "", "", "to be satisfied"]) + let v = native_list_append(v, ["माद्यति", "verb", "माद्या॑मि", "", "", "", "to rejoice be"]) + let v = native_list_append(v, ["म्लेच्छति", "verb", "म्लेच्छामि", "", "", "", "to speak indistinctly"]) + let v = native_list_append(v, ["श्नथति", "verb", "श्नथामि", "", "", "", "to pierce strike"]) + let v = native_list_append(v, ["श्रावयति", "verb", "श्रा॒वया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["जिघांसति", "verb", "जिघां॑सति third-singular indicative", "jíghāṃsati", "हन्", "", "to wish to"]) + let v = native_list_append(v, ["प्रीत", "verb", "प्रीत past passive participle", "prīta", "प्री", "", "past passive participle"]) + let v = native_list_append(v, ["करणीय", "verb", "क॒र॒णीय॑ future passive participle", "karaṇī́ya", "कृ", "", "future passive participle"]) + let v = native_list_append(v, ["कुरति", "verb", "कुरामि", "", "", "", "to utter a"]) + let v = native_list_append(v, ["पीत", "verb", "पी॒त past passive participle", "pītá", "पा", "", "past passive participle"]) + let v = native_list_append(v, ["रोहति", "verb", "रोहा॑मि", "", "", "", "to rise ascend"]) + let v = native_list_append(v, ["निन्दित", "verb", "नि॒न्दि॒त", "ninditá", "", "", "past participle of"]) + let v = native_list_append(v, ["𑀦𑀺𑀦𑁆𑀤𑀺𑀢", "verb", "ninditá", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["तोलयति", "verb", "तो॒लया॑मि", "", "", "", "to lift up"]) + let v = native_list_append(v, ["कर्जति", "verb", "कर्जति third-singular indicative", "karjati", "", "", "to torment pain"]) + let v = native_list_append(v, ["जजति", "verb", "जजामि", "", "", "", "to fight attack"]) + let v = native_list_append(v, ["इष्णाति", "verb", "इ॒ष्णामि॑", "", "", "", "to cause to"]) + let v = native_list_append(v, ["इषण्यति", "verb", "इषण्यति third-singular indicative", "iṣaṇyati", "इषन्य्", "", "to excite to"]) + let v = native_list_append(v, ["पिङ्क्ते", "verb", "पिञ्जे", "", "", "", "to tinge dye"]) + let v = native_list_append(v, ["प्रवहति", "verb", "प्र॒वहा॑मि", "", "", "", "to flow rush"]) + let v = native_list_append(v, ["स्तिघ्नोति", "verb", "स्ति॒घ्नोमि॑", "अस्ते॑घिष्ट", "", "", "to mount step"]) + let v = native_list_append(v, ["क्रन्दति", "verb", "क्रन्दा॑मि", "", "", "", "to lament grieve"]) + let v = native_list_append(v, ["बन्धति", "verb", "बन्धा॑मि", "", "", "", "to bind tether"]) + let v = native_list_append(v, ["नास्ति", "verb", "नास्ति third-singular indicative", "nāsti", "", "", "it is not"]) + let v = native_list_append(v, ["कर्तति", "verb", "कर्ता॑मि", "अक॑र्तीत्", "", "", "to cut cut"]) + let v = native_list_append(v, ["उपविशति", "verb", "उपविशामि", "", "", "", "to sit"]) + let v = native_list_append(v, ["पृतन्यति", "verb", "पृ॒त॒न्यति॑ third-singular indicative", "pṛtanyáti", "", "", "to fight attack"]) + let v = native_list_append(v, ["ह्रसति", "verb", "ह्रसामि", "", "", "", "to diminish decrease"]) + let v = native_list_append(v, ["कम्पते", "verb", "कम्पे", "", "", "", "to shiver tremble"]) + let v = native_list_append(v, ["ताम्यति", "verb", "ताम्या॑मि", "", "", "", "to gasp for"]) + let v = native_list_append(v, ["दिधक्षति", "verb", "दिधक्षामि", "", "", "", "to wish to"]) + let v = native_list_append(v, ["हूत", "verb", "हू॒त", "hūtá", "", "", "past participle of"]) + let v = native_list_append(v, ["उत्तिष्ठति", "verb", "उत्तिष्ठामि", "", "", "", "to get up"]) + let v = native_list_append(v, ["उक्षति", "verb", "उक्षामि", "", "", "", "to be strong"]) + let v = native_list_append(v, ["मिच्छति", "verb", "मि॒च्छामि॑", "", "", "", "to irritate to"]) + let v = native_list_append(v, ["क्रीडति", "verb", "क्रीडामि", "", "", "", "to play"]) + let v = native_list_append(v, ["लुण्टति", "verb", "लुण्टामि", "", "", "", "to rob steal"]) + let v = native_list_append(v, ["श्रुधि", "verb", "śrudhí", "", "", "", "second-person singular aorist"]) + let v = native_list_append(v, ["जहि", "verb", "jahí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["इहि", "verb", "इ॒हि", "ihí", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["एधि", "verb", "edhí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["चलति", "verb", "चला॑मि", "", "", "", "to walk"]) + let v = native_list_append(v, ["शपति", "verb", "शपामि", "", "", "", "to curse"]) + let v = native_list_append(v, ["ऋच्छति", "verb", "ऋ॒च्छामि॑", "", "", "", "to go move"]) + let v = native_list_append(v, ["स्वीकरोति", "verb", "स्वीकरोमि", "", "", "", "to receive"]) + let v = native_list_append(v, ["कलयति", "verb", "कलयामि", "", "", "", "to take hold"]) + let v = native_list_append(v, ["प्रुष्णोति", "verb", "प्रु॒ष्णोमि॑", "", "", "", "to sprinkle shower"]) + let v = native_list_append(v, ["प्रुष्णुवन्ति", "verb", "प्रु॒ष्णु॒वन्ति॑", "pruṣṇuvánti", "", "", "present active third-person"]) + let v = native_list_append(v, ["यात्", "verb", "या त् present active participle", "yā́t", "या", "", "present active participle"]) + let v = native_list_append(v, ["प्रभाति", "verb", "प्रभामि", "", "", "", "to shine forth"]) + let v = native_list_append(v, ["आधाय", "verb", "ādhāya", "", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["प्रभासि", "verb", "prabhāsi", "", "", "", "present indicative active"]) + let v = native_list_append(v, ["वेति", "verb", "वेमि॑", "अवै॑षीत्", "", "", "persecute strive chase"]) + let v = native_list_append(v, ["अहन्", "verb", "अह॑न्", "áhan", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["हुवे", "verb", "हु॒वे", "huvé", "", "", "first-person singular present"]) + let v = native_list_append(v, ["ततक्ष", "verb", "त॒तक्ष॑", "tatákṣa", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["वोचं", "verb", "vocaṃ", "", "", "", "first-person singular aorist"]) + let v = native_list_append(v, ["कौति", "verb", "कौति third-singular indicative", "kauti", "", "", "to hum cry"]) + let v = native_list_append(v, ["प्रतिभाति", "verb", "प्रतिभा ति third-singular indicative", "pratibhāti", "प्रतिभा", "", "to shine upon"]) + let v = native_list_append(v, ["जयत्", "verb", "जय॑त् present active participle", "jáyat", "जि", "", "present active participle"]) + let v = native_list_append(v, ["अहन्न्", "verb", "अह॑न्न्", "áhann", "", "", "sandhi form of"]) + let v = native_list_append(v, ["सिञ्चति", "verb", "सि॒ञ्चामि॑", "", "", "", "to pour out"]) + let v = native_list_append(v, ["उत्कर्षति", "verb", "उत्कर्षति third-singular indicative", "utkarṣati", "", "", "draws out"]) + let v = native_list_append(v, ["भ्रमति", "verb", "भ्रमा॑मि", "", "", "", "to wander or"]) + let v = native_list_append(v, ["चेरिवांस्", "verb", "चे॒रि॒वांस् perfect active participle", "cerivā́ṃs", "चर्", "", "perfect participle of"]) + let v = native_list_append(v, ["चकृवांस्", "verb", "च॒कृ॒वांस् perfect active participle", "cakṛvā́ṃs", "कृ", "", "perfect participle of"]) + let v = native_list_append(v, ["बध्नाति", "verb", "ब॒ध्नामि॑", "", "", "", "to bind tether"]) + let v = native_list_append(v, ["अभूत्", "verb", "अभू॑वम्", "अभू॑त्", "", "", "aorist of भू"]) + let v = native_list_append(v, ["जृम्भते", "verb", "जृम्भे॑", "अजृ॑म्भिष्ट", "", "", "to open the"]) + let v = native_list_append(v, ["तर्कयति", "verb", "तर्कयति third-singular indicative", "tarkayati", "", "", "to guess think"]) + let v = native_list_append(v, ["लिखितव्य", "verb", "likhitavyá", "no-table-tags", "sa-decl-adj-mfn", "", "future passive participle"]) + let v = native_list_append(v, ["लङ्घयति", "verb", "लङ्घयति third-singular indicative", "laṅghayati", "", "", "To leap over"]) + let v = native_list_append(v, ["खण्डयति", "verb", "खण्डयामि", "", "", "", "to break cut"]) + let v = native_list_append(v, ["कालयति", "verb", "का॒लया॑मि", "", "", "", "to push on"]) + let v = native_list_append(v, ["निष्कालयति", "verb", "निष्कालयति third-singular indicative", "niṣkālayati", "निष्कल्", "", "to drive out"]) + let v = native_list_append(v, ["आरोहयति", "verb", "आरोहयति third-singular indicative", "ārohayati", "आरुह्", "", "To raise"]) + let v = native_list_append(v, ["हिनोति", "verb", "हि॒नोमि॑", "अहै॑षीत्", "", "", "to send forth"]) + let v = native_list_append(v, ["वनोति", "verb", "व॒नोमि॑", "", "", "", "to like love"]) + let v = native_list_append(v, ["वङ्गति", "verb", "वङ्गति third-singular indicative", "vaṅgati", "", "", "to go lamely"]) + let v = native_list_append(v, ["मारयति", "verb", "मा॒रया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["मर्दति", "verb", "मर्दा॑मि", "", "", "", "to pound crush"]) + let v = native_list_append(v, ["क्षपयति", "verb", "क्ष॒पया॑मि", "", "", "", "to destroy ruin"]) + let v = native_list_append(v, ["गमयति", "verb", "ग॒मया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["बाधते", "verb", "बाधे॑", "", "", "", "to press force"]) + let v = native_list_append(v, ["मिलति", "verb", "मिलामि", "", "", "", "to meet encounter"]) + let v = native_list_append(v, ["चिनोति", "verb", "चि॒नोमि॑", "", "", "", "to arrange in"]) + let v = native_list_append(v, ["घट्टयति", "verb", "घट्टयामि", "", "", "", "to rub touch"]) + let v = native_list_append(v, ["हारयति", "verb", "हा॒रया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["गणयति", "verb", "ग॒णया॑मि", "", "", "", "count number enumerate"]) + let v = native_list_append(v, ["एषयति", "verb", "ए॒षया॑मि", "", "", "", "to probe"]) + let v = native_list_append(v, ["सज्जयति", "verb", "सज्जयति third-singular indicative", "sajjayati", "", "", "to equip prepare"]) + let v = native_list_append(v, ["कषति", "verb", "कषा॑मि", "", "", "", "to rub scratch"]) + let v = native_list_append(v, ["सम्बुध्यते", "verb", "सम्बुध्ये", "", "", "", "to wake up"]) + let v = native_list_append(v, ["प्रणयति", "verb", "प्रण॑यति third-singular indicative", "práṇayati", "", "", "to convey"]) + let v = native_list_append(v, ["निर्हरति", "verb", "निर्हरति third-singular indicative", "nirharati", "", "", "to drive out"]) + let v = native_list_append(v, ["वाहयति", "verb", "वा॒हया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["दमयति", "verb", "द॒मया॑मि", "", "", "", "to subdue overpower"]) + let v = native_list_append(v, ["आस्तरति", "verb", "आस्तरति third-singular indicative", "āstarati", "", "", "to spread cover"]) + let v = native_list_append(v, ["दृशेन्य", "verb", "dṛśénya", "", "", "", "future passive participle"]) + let v = native_list_append(v, ["उत्पटति", "verb", "उत्पटति", "", "", "", "to burst open"]) + let v = native_list_append(v, ["अवस्रावयति", "verb", "अवस्रावयति third-singular indicative", "avasrāvayati", "", "", "to make something"]) + let v = native_list_append(v, ["आवुनाति", "verb", "आवुनाति", "", "", "", "to string something"]) + let v = native_list_append(v, ["प्रथित", "verb", "प्र॒थि॒त past passive participle", "prathitá", "प्रथ्", "", "past passive participle"]) + let v = native_list_append(v, ["उत्तरति", "verb", "उत्त॑रामि", "", "", "", "to elevate pass"]) + let v = native_list_append(v, ["उच्छ्रीयते", "verb", "उच्छ्रीयते third-singular indicative", "ucchrīyate", "", "", "to be raised"]) + let v = native_list_append(v, ["उद्गृह्णाति", "verb", "उद्गृह्णाति third-singular indicative", "udgṛhṇāti", "", "", "to lift up"]) + let v = native_list_append(v, ["ईडेन्य", "verb", "īḍénya", "", "", "", "future passive participle"]) + let v = native_list_append(v, ["ईळेन्य", "verb", "īḷénya", "", "", "", "future passive participle"]) + let v = native_list_append(v, ["क्रियते", "verb", "क्रि॒यामि॑", "", "", "", "to be done"]) + let v = native_list_append(v, ["कल्पयति", "verb", "क॒ल्पय॑ति third-singular indicative", "kalpáyati", "कॢप्", "", "to set something"]) + let v = native_list_append(v, ["ग्रन्थयति", "verb", "ग्रन्थयामि", "", "", "", "to tie"]) + let v = native_list_append(v, ["घोषति", "verb", "घोषा॑मि", "", "", "", "to cry or"]) + let v = native_list_append(v, ["चर्वति", "verb", "चर्वामि", "", "", "", "to chew"]) + let v = native_list_append(v, ["चालयति", "verb", "चा॒लया॑मि", "", "", "", "to shake jog"]) + let v = native_list_append(v, ["चीरयति", "verb", "चीरयति", "", "", "", "to split"]) + let v = native_list_append(v, ["ताडयति", "verb", "ता॒डया॑मि", "", "", "", "to beat strike"]) + let v = native_list_append(v, ["प्रविष्ट", "verb", "प्र॒वि॒ष्ट past passive participle", "praviṣṭá", "प्रविश्", "", "past passive participle"]) + let v = native_list_append(v, ["उपव्ययते", "verb", "उप॑व्ययते third-singular indicative", "úpavyayate", "उपव्ये", "", "to put on"]) + let v = native_list_append(v, ["भेजे", "verb", "भे॒जे", "bhejé", "", "", "third-person singular indicative"]) + let v = native_list_append(v, ["मरते", "verb", "मर॑ते", "márate", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["आसत्", "verb", "ā́sat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["तक्ति", "verb", "तक्मि", "", "", "", "to rush"]) + let v = native_list_append(v, ["व्रजति", "verb", "व्रजा॑मि", "", "", "", "to go walk"]) + let v = native_list_append(v, ["लीन", "verb", "ली॒न past passive participle", "līná", "ली", "", "past passive participle"]) + let v = native_list_append(v, ["घटते", "verb", "घटे॑", "", "", "", "is intently occupied"]) + let v = native_list_append(v, ["तप्स्यति", "verb", "त॒प्स्यामि॑", "", "", "", "future of तप्"]) + let v = native_list_append(v, ["अताप्सीत्", "verb", "अता॑प्सम्", "अता॑प्सीत्", "", "", "aorist of तप्"]) + let v = native_list_append(v, ["तप्यात्", "verb", "त॒प्यात् third-singular indicative", "tapyā́t", "तप्", "", "benedictive of तप्"]) + let v = native_list_append(v, ["तताप", "verb", "त॒तप॑", "", "", "", "perfect of तप्"]) + let v = native_list_append(v, ["तप्यते", "verb", "त॒प्ये", "", "", "", "to be heated"]) + let v = native_list_append(v, ["तप्यति", "verb", "तप्या॑मि", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["तप्ता", "verb", "त॒प्तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["भरिष्यति", "verb", "भ॒रि॒ष्यामि॑", "", "", "", "future of भृ"]) + let v = native_list_append(v, ["आजीत्", "verb", "आजि॑षम्", "आजी॑त्", "", "", "aorist of अज्"]) + let v = native_list_append(v, ["तीर्ण", "verb", "tīrṇa", "तॄ", "", "", "past passive participle"]) + let v = native_list_append(v, ["तिल्लति", "verb", "तिल्लति third-singular indicative", "tillati", "", "", "to go"]) + let v = native_list_append(v, ["टालयति", "verb", "टालयति third-singular indicative", "ṭālayati", "टल्", "", "to frustrate"]) + let v = native_list_append(v, ["बाधिष्यते", "verb", "बा॒धि॒ष्ये", "", "", "", "future of बाध्"]) + let v = native_list_append(v, ["बाधिता", "verb", "बा॒धि॒तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["अकाषीत्", "verb", "अका॑षिषम्", "अका॑षीत्", "", "", "aorist of कष्"]) + let v = native_list_append(v, ["आञ्चीत्", "verb", "आञ्चि॑षम्", "आञ्ची॑त्", "", "", "aorist of अञ्च्"]) + let v = native_list_append(v, ["अञ्चिष्यति", "verb", "अ॒ञ्चि॒ष्यामि॑", "", "", "", "future of अञ्च्"]) + let v = native_list_append(v, ["आप्नोति", "verb", "आ॒प्नोमि॑", "", "", "", "to reach to"]) + let v = native_list_append(v, ["वक्ष्यति", "verb", "व॒क्ष्यामि॑", "", "", "", "future of वच्"]) + let v = native_list_append(v, ["वच्यते", "verb", "व॒च्ये", "", "", "", "to move to"]) + let v = native_list_append(v, ["कर्क्ष्यति", "verb", "क॒र्क्ष्यामि॑", "", "", "", "future of कृष्"]) + let v = native_list_append(v, ["क्रक्ष्यति", "verb", "क्र॒क्ष्यामि॑", "", "", "", "future of कृष्"]) + let v = native_list_append(v, ["दुहति", "verb", "दुहामि", "", "", "", "synonym of दोग्धि"]) + let v = native_list_append(v, ["ततान", "verb", "त॒तन॑", "", "", "", "perfect of तन्"]) + let v = native_list_append(v, ["तानयति", "verb", "ता॒नया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["अहासीत्", "verb", "अहा॑सम्", "अहा॑सीत्", "", "", "aorist of हा"]) + let v = native_list_append(v, ["ईरयति", "verb", "ई॒रया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["जिगाय", "verb", "जि॒गय॑", "", "", "", "perfect of जि"]) + let v = native_list_append(v, ["संस्थापित", "verb", "सं॒स्था॒पि॒त", "saṃsthāpitá", "संस्था", "", "causative past passive"]) + let v = native_list_append(v, ["खणखणायते", "verb", "खणखणाये", "", "", "", "to utter or"]) + let v = native_list_append(v, ["विस्मरति", "verb", "वि॒स्मरा॑मि", "", "", "", "to forget"]) + let v = native_list_append(v, ["देहि", "verb", "दे॒हि", "dehí", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ढौकयति", "verb", "ढौ॒कया॑मि", "", "", "", "to bring near"]) + let v = native_list_append(v, ["चपयति", "verb", "चपयामि", "", "", "", "to pound to"]) + let v = native_list_append(v, ["भज्यते", "verb", "भ॒ज्ये", "", "", "", "to be broken"]) + let v = native_list_append(v, ["छुपति", "verb", "छुपामि", "", "", "", "to touch"]) + let v = native_list_append(v, ["क्षोटयति", "verb", "क्षोटयति third-singular indicative", "kṣoṭayati", "क्षोट्", "", "to throw cast"]) + let v = native_list_append(v, ["नह्यति", "verb", "नह्या॑मि", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["दरति", "verb", "दरति third-singular indicative", "darati", "दॄ", "", "to be frightened"]) + let v = native_list_append(v, ["घूर्णति", "verb", "घूर्णति third-singular indicative", "ghūrṇati", "घूर्ण्", "", "to move to"]) + let v = native_list_append(v, ["स्कु", "verb", "sku", "स्कव्", "", "", "to pick pluck"]) + let v = native_list_append(v, ["क्रामति", "verb", "क्रामा॑मि", "", "", "", "to step walk"]) + let v = native_list_append(v, ["वर्धते", "verb", "वर्धा॑मि", "", "", "", "to grow increase"]) + let v = native_list_append(v, ["अतति", "verb", "अता॑मि", "", "", "", "to go constantly"]) + let v = native_list_append(v, ["झ्यु", "verb", "झ्यु third-singular indicative", "jhyu", "", "", "To go or"]) + let v = native_list_append(v, ["ढौकित", "verb", "ढौकित past passive participle", "ḍhaukita", "ढौक्", "", "brought near"]) + let v = native_list_append(v, ["झगझगायते", "verb", "झगझगायते third-singular indicative", "jhagajhagāyate", "", "", "to flash sparkle"]) + let v = native_list_append(v, ["झट्", "verb", "झट् third-singular indicative", "jhaṭ", "", "", "To become matted"]) + let v = native_list_append(v, ["विसर्जयति", "verb", "विसर्जयामि", "", "", "", "to discharge emit"]) + let v = native_list_append(v, ["प्रत्याययति", "verb", "प्रत्याययति third-singular indicative", "pratyāyayati", "इ", "", "to convince"]) + let v = native_list_append(v, ["व्ययति", "verb", "व्यय॑ति third-singular indicative", "vyáyati", "व्ये", "", "to wind wrap"]) + let v = native_list_append(v, ["चूषति", "verb", "चूषा॑मि", "", "", "", "to suck suck"]) + let v = native_list_append(v, ["फुत्कार", "verb", "फुत्कार third-singular indicative", "phutkāra", "", "", "puffing blowing"]) + let v = native_list_append(v, ["විද්‍වාංස්", "verb", "විද්වාංස් perfect active participle", "vidvāṃs", "विद्", "", "Sinhalese script form"]) + let v = native_list_append(v, ["ලිඛති", "verb", "ලිඛාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["व्यथते", "verb", "व्यथे॑", "", "", "", "trembles wavers goes"]) + let v = native_list_append(v, ["यम्यते", "verb", "य॒म्ये", "", "", "", "is raised or"]) + let v = native_list_append(v, ["आक्रोशति", "verb", "आ॒क्रोशा॑मि", "", "", "", "to call to"]) + let v = native_list_append(v, ["ආක්‍රොශති", "verb", "ආක්රොශාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["වක‍්ති", "verb", "වක්ති third-singular indicative", "vákti", "වච්", "", "Sinhalese script form"]) + let v = native_list_append(v, ["ජයති", "verb", "ජයාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["उपनह्यति", "verb", "उपनह्यामि", "", "", "", "to tie up"]) + let v = native_list_append(v, ["උපනහ්‍යති", "verb", "උපනහ්යාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["अहार्षीत्", "verb", "अहा॑र्षम्", "अहा॑र्षीत्", "", "", "aorist of हृ"]) + let v = native_list_append(v, ["हर्ता", "verb", "ह॒र्तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["जहार", "verb", "ज॒हर॑", "", "", "", "perfect of हृ"]) + let v = native_list_append(v, ["हरिष्यति", "verb", "ह॒रि॒ष्यामि॑", "", "", "", "future of हृ"]) + let v = native_list_append(v, ["अवोचत्", "verb", "अवो॑चम्", "अवो॑चत्", "", "", "aorist of वच्"]) + let v = native_list_append(v, ["අවොචත්", "verb", "අවොචම්", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["शाम्यति", "verb", "शाम्या॑मि", "", "", "", "to become tired"]) + let v = native_list_append(v, ["ශාම්‍යති", "verb", "ශාම්යාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["උපනහ්‍යන‍්තෙ", "verb", "උපනහ්යන්තෙ", "upanahyante", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["प्रशाम्यति", "verb", "प्रशाम्यामि", "", "", "", "present of प्रशम्"]) + let v = native_list_append(v, ["ප්‍රශාම්‍යති", "verb", "ප්රශාම්යාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["लेखिष्यति", "verb", "ले॒खि॒ष्यामि॑", "", "", "", "future of लिख्"]) + let v = native_list_append(v, ["अलेकिष्यत्", "verb", "अले॑किष्यम्", "", "", "", "conditional of लिख्"]) + let v = native_list_append(v, ["लिख्यात्", "verb", "लिख् यात् third-singular indicative", "likhyāt", "लिख्", "", "benedictive of लिख्"]) + let v = native_list_append(v, ["अलेखीत्", "verb", "अले॑खिषम्", "अले॑खीत्", "", "", "aorist of लिख्"]) + let v = native_list_append(v, ["लिलेख", "verb", "लि॒लेख॑", "", "", "", "perfect of लिख्"]) + let v = native_list_append(v, ["हृष्यति", "verb", "हृष्यामि", "", "", "", "thrills with rapture"]) + let v = native_list_append(v, ["නුදති", "verb", "නුදාමි", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["नुदति", "verb", "नु॒दामि॑", "", "", "", "present of नुद्"]) + let v = native_list_append(v, ["मवते", "verb", "मवे", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["आरुह्य", "verb", "āruhya", "", "", "", "gerund of आरुह्"]) + let v = native_list_append(v, ["ආරුහ්‍ය", "verb", "ආරුහ්ය", "āruhya", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["मापयति", "verb", "मा॒पया॑मि", "", "", "", "causes to be"]) + let v = native_list_append(v, ["त्वेषति", "verb", "त्वेष॑ति third-singular indicative", "tvéṣati", "त्विष्", "", "to be agitated"]) + let v = native_list_append(v, ["नौति", "verb", "नौमि॑", "", "", "", "to praise laud"]) + let v = native_list_append(v, ["स्तभ्नाति", "verb", "स्त॒भ्नामि॑", "", "", "", "to fix firmly"]) + let v = native_list_append(v, ["स्तम्भते", "verb", "स्तम्भे", "", "", "", "to rest or"]) + let v = native_list_append(v, ["मृष्ट", "verb", "मृ॒ष्ट past passive participle", "mṛṣṭá", "मृज्", "", "past passive participle"]) + let v = native_list_append(v, ["अज्ञासीत्", "verb", "अज्ञा॑सम्", "अज्ञा॑सीत्", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["ज्ञास्यति", "verb", "ज्ञास्यामि", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["ज्ञायते", "verb", "ज्ञा॒ये", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["अशुचत्", "verb", "अशुचम्", "अशुचत", "", "", "aorist of शुच्"]) + let v = native_list_append(v, ["அஶுசத்", "verb", "அஶுசம்", "அஶுசத", "", "", "aorist of शुच्"]) + let v = native_list_append(v, ["प्रक्षालयति", "verb", "प्र॒क्षा॒लया॑मि", "", "", "", "washes off washes"]) + let v = native_list_append(v, ["अवर्", "verb", "अव॑रम्", "अव॑र्", "", "", "aorist of वृ"]) + let v = native_list_append(v, ["कूर्दति", "verb", "कूर्दामि", "", "", "", "to leap jump"]) + let v = native_list_append(v, ["ஶ𑍃ணோதி", "verb", "ஶ𑍃ணோதி third-singular indicative", "śṛṇóti", "श्रु", "", "to listen hear"]) + let v = native_list_append(v, ["श्रोष्यति", "verb", "श्रो॒ष्यामि॑", "", "", "", "future of श्रु"]) + let v = native_list_append(v, ["हन्तव्य", "verb", "ह॒न्त॒व्य", "hantavyá", "हन्", "", "future passive participle"]) + let v = native_list_append(v, ["हनति", "verb", "हना॑मि", "", "", "", "synonym of हन्ति"]) + let v = native_list_append(v, ["उड्डयते", "verb", "उड्डये", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["उड्डीयते", "verb", "उड्डीये", "", "", "", "flies up soars"]) + let v = native_list_append(v, ["उड्डापयति", "verb", "उ॒ड्डा॒पया॑मि", "", "", "", "causes to fly"]) + let v = native_list_append(v, ["विजते", "verb", "वि॒जे", "", "", "", "shakes trembles"]) + let v = native_list_append(v, ["उद्विजते", "verb", "उ॒द्वि॒जे", "", "", "", "gushes or springs"]) + let v = native_list_append(v, ["उद्घटित", "verb", "उद्घटित past passive participle", "udghaṭita", "उद्घट्", "", "past passive participle"]) + let v = native_list_append(v, ["भविष्यत्", "verb", "भ॒वि॒ष्यत् future active participle", "bhaviṣyát", "भू", "", "future active participle"]) + let v = native_list_append(v, ["कृतवत्", "verb", "कृ॒तव॑त् past active participle", "kṛtávat", "कृ", "", "one who has"]) + let v = native_list_append(v, ["सीवयति", "verb", "सी॒वया॑मि", "", "", "", "sews stitches"]) + let v = native_list_append(v, ["अनिति", "verb", "अनि॑मि", "", "", "", "to breathe respire"]) + let v = native_list_append(v, ["क्षेपयति", "verb", "क्षे॒पया॑मि", "", "", "", "causes to cast"]) + let v = native_list_append(v, ["त्यक्ष्यति", "verb", "त्य॒क्ष्यामि॑", "", "", "", "future of त्यज्"]) + let v = native_list_append(v, ["लग्यति", "verb", "लग्या॑मि", "", "", "", "adheres sticks clings"]) + let v = native_list_append(v, ["स्खलति", "verb", "स्खलामि", "", "", "", "stumbles trips totters"]) + let v = native_list_append(v, ["युयुत्सु", "verb", "युयुत्सु desiderative active participle", "yuyutsu", "युध्", "", "desiderative participle of"]) + let v = native_list_append(v, ["जुगुप्सते", "verb", "जुगुप्से", "", "", "", "third-person singular desiderative"]) + let v = native_list_append(v, ["गोप्तुम्", "verb", "goptum", "", "", "", "infinitive of गुप्"]) + let v = native_list_append(v, ["गोपितुम्", "verb", "gopitum", "", "", "", "infinitive of गुप्"]) + let v = native_list_append(v, ["गोपयति", "verb", "गो॒पया॑मि", "", "", "", "guards protects preserves"]) + let v = native_list_append(v, ["प्रतिबद्ध", "verb", "प्र॒ति॒ब॒द्ध past passive participle", "pratibaddhá", "प्रतिबन्ध्", "", "past passive participle"]) + let v = native_list_append(v, ["अवकूल्", "verb", "अवकूल् third-singular indicative", "avakūl", "", "", "to singe burn"]) + let v = native_list_append(v, ["नयसि", "verb", "nayasi", "", "", "", "second-person singular active"]) + let v = native_list_append(v, ["नयामि", "verb", "nayāmi", "", "", "", "first-person singular active"]) + let v = native_list_append(v, ["नयतः", "verb", "nayataḥ", "", "", "", "third-person dual active"]) + let v = native_list_append(v, ["नयथः", "verb", "nayathaḥ", "", "", "", "second-person dual active"]) + let v = native_list_append(v, ["नयावः", "verb", "nayāvaḥ", "", "", "", "first-person dual active"]) + let v = native_list_append(v, ["नयन्ति", "verb", "nayanti", "", "", "", "third-person plural active"]) + let v = native_list_append(v, ["नयथ", "verb", "nayatha", "", "", "", "second-person plural active"]) + let v = native_list_append(v, ["नयामः", "verb", "nayāmaḥ", "", "", "", "first-person plural active"]) + let v = native_list_append(v, ["ब्रवीति", "verb", "ब्रवी॑मि", "", "", "", "to say speak"]) + let v = native_list_append(v, ["ईट्टे", "verb", "ईडे॑", "", "", "", "to praise"]) + let v = native_list_append(v, ["शुध्यति", "verb", "शुध्यामि", "", "", "", "is cleared or"]) + let v = native_list_append(v, ["अश्रौषीत्", "verb", "अश्रौषम्", "अश्रौः", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["शुश्राव", "verb", "शु॒श्रव॑", "", "", "", "perfect of श्रु"]) + let v = native_list_append(v, ["श्रूयते", "verb", "श्रू॒ये", "", "", "", "to be heard"]) + let v = native_list_append(v, ["भर्जयति", "verb", "भ॒र्जया॑मि", "", "", "", "fries roasts"]) + let v = native_list_append(v, ["भर्जित", "verb", "भर्जित past passive causative participle", "bharjita", "भ्रज्ज्", "", "causative past passive"]) + let v = native_list_append(v, ["भृक्त", "verb", "भृक्त past passive participle", "bhṛkta", "भ्रज्ज्", "", "roasted fried"]) + let v = native_list_append(v, ["भृष्ट", "verb", "भृष्ट past passive participle", "bhṛṣṭa", "भ्रज्ज्", "", "past passive participle"]) + let v = native_list_append(v, ["वर्धापयति", "verb", "व॒र्धा॒पया॑मि", "", "", "", "causes to increase"]) + let v = native_list_append(v, ["वर्", "verb", "var", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["लज्जते", "verb", "ल॒ज्जे", "", "", "", "is ashamed blushes"]) + let v = native_list_append(v, ["त्याज्य", "verb", "त्याज्य future passive participle", "tyājya", "त्यज्", "", "future passive participle"]) + let v = native_list_append(v, ["शुच्यति", "verb", "शुच्यामि", "", "", "", "to be bright"]) + let v = native_list_append(v, ["अभार्षीत्", "verb", "अभा॑र्षम्", "अभा॑र्षीत्", "", "", "aorist of भृ"]) + let v = native_list_append(v, ["भ्रियात्", "verb", "भ्रि॒यात् third-singular indicative", "bhriyā́t", "benedictive", "", "benedictive of भृ"]) + let v = native_list_append(v, ["आरत्", "verb", "आर॑म्", "आर॑त्", "", "", "aorist of ऋ"]) + let v = native_list_append(v, ["अनौत्सीत्", "verb", "अनौ॑त्सम्", "अनौ॑त्सीत्", "", "", "aorist of नुद्"]) + let v = native_list_append(v, ["नुनोद", "verb", "नु॒नोद॑", "", "", "", "perfect of नुद्"]) + let v = native_list_append(v, ["अधाक्षीत्", "verb", "अधा॑क्षम्", "अधा॑क्षीत्", "", "", "aorist of दह्"]) + let v = native_list_append(v, ["ददाह", "verb", "द॒दह॑", "", "", "", "perfect of दह्"]) + let v = native_list_append(v, ["अरौत्सीत्", "verb", "अरौ॑त्सम्", "अरौ॑त्सीत्", "", "", "aorist of रुध्"]) + let v = native_list_append(v, ["रुरोध", "verb", "रु॒रोध॑", "", "", "", "perfect of रुध्"]) + let v = native_list_append(v, ["जजान", "verb", "ज॒जन॑", "", "", "", "perfect of जन्"]) + let v = native_list_append(v, ["अजन्त", "verb", "अज॑नि", "अज॑न्त", "", "", "middle aorist of"]) + let v = native_list_append(v, ["मार्ष्टि", "verb", "मार्ज्मि॑", "", "", "", "to wipe"]) + let v = native_list_append(v, ["ममार्ज", "verb", "म॒मार्ज॑", "", "", "", "perfect of मृज्"]) + let v = native_list_append(v, ["पपर्च", "verb", "प॒पर्च॑", "", "", "", "perfect of पृच्"]) + let v = native_list_append(v, ["अप्राक्", "verb", "अप्रा॑क्षम्", "अप्रा॑क्", "", "", "aorist of पृच्"]) + let v = native_list_append(v, ["अरोत्", "verb", "अरो॑धम्", "अरो॑त्", "", "", "aorist of रुध्"]) + let v = native_list_append(v, ["अमौक्", "verb", "अमौ॑क्षम्", "अमौ॑क्", "", "", "aorist of मुच्"]) + let v = native_list_append(v, ["अमोक्", "verb", "अमो॑चम्", "अमो॑क्", "", "", "aorist of मुच्"]) + let v = native_list_append(v, ["अकार्षीत्", "verb", "अका॑र्षम्", "अका॑र्षीत्", "", "", "aorist of कृ"]) + let v = native_list_append(v, ["दुदोह", "verb", "दु॒दोह॑", "", "", "", "perfect of दुह्"]) + let v = native_list_append(v, ["साधयति", "verb", "सा॒धया॑मि", "", "", "", "to straighten make"]) + let v = native_list_append(v, ["गम्य", "verb", "गम्य future passive participle", "gamya", "गम्", "", "future passive of"]) + let v = native_list_append(v, ["चोद्य", "verb", "चोद्य third-singular indicative", "codya", "", "", "To be driven"]) + let v = native_list_append(v, ["भ्रान्त", "verb", "भ्रा॒न्त past participle", "bhrāntá", "भ्रम्", "", "past participle of"]) + let v = native_list_append(v, ["क्षापयति", "verb", "क्षा॒पय॑ति third-singular indicative", "kṣāpáyati", "क्षै", "", "to burn singe"]) + let v = native_list_append(v, ["श्यायति", "verb", "श्यायामि", "", "", "", "causes to coagulate"]) + let v = native_list_append(v, ["श्यायते", "verb", "śyāyate", "", "", "", "third-person singular mediopassive"]) + let v = native_list_append(v, ["श्यास्यते", "verb", "श्यास्ये", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["श्याता", "verb", "श्यातास्मि", "", "", "", "third-person singular periphrastic"]) + let v = native_list_append(v, ["अश्यास्त", "verb", "अश्यास्त third-singular indicative", "aśyāsta", "श्यै", "", "third-person singular aorist"]) + let v = native_list_append(v, ["शश्ये", "verb", "शश्ये third-singular indicative", "śaśye", "श्यै", "", "third-person singular perfect"]) + let v = native_list_append(v, ["शीयते", "verb", "शीये॑", "", "", "", "to fall out"]) + let v = native_list_append(v, ["वपति", "verb", "वपा॑मि", "", "", "", "to scatter spread"]) + let v = native_list_append(v, ["उप्त", "verb", "उ॒प्त past passive participle", "uptá", "वप्", "", "past participle of"]) + let v = native_list_append(v, ["उत्सृष्ट", "verb", "उत्सृष्ट past passive participle", "utsṛṣṭa", "उत्सृज्", "", "past passive participle"]) + let v = native_list_append(v, ["आक्षेति", "verb", "आक्षे॑मि", "", "", "", "to abide dwell"]) + let v = native_list_append(v, ["प्रापयति", "verb", "प्रापयति third-singular indicative", "prāpayati", "प्राप्", "", "to cause to"]) + let v = native_list_append(v, ["ब्रूहि", "verb", "ब्रू॒हि", "brūhí", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["जम्भति", "verb", "जम्भति third-singular indicative", "jambhati", "", "", "to snap at"]) + let v = native_list_append(v, ["कृणुहि", "verb", "kṛṇuhí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["लसति", "verb", "लसति", "", "", "", "to slip descend"]) + let v = native_list_append(v, ["पादयति", "verb", "पा॒दया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["शब्दयति", "verb", "शब्दयति third-singular indicative", "śabdayati", "", "", "to sound make"]) + let v = native_list_append(v, ["उपपतति", "verb", "उप॑पतति third-singular indicative", "úpapatati", "पत्", "", "to hasten toward"]) + let v = native_list_append(v, ["त्रुट्यति", "verb", "त्रुट् य॑ति third-singular indicative", "trúṭyati", "त्रुट्", "", "to be broken"]) + let v = native_list_append(v, ["प्रोञ्छति", "verb", "प्रोञ्छामि", "", "", "", "to wipe off"]) + let v = native_list_append(v, ["छादयति", "verb", "छादयति third-singular indicative", "chādayati", "छद्", "", "to cover veil"]) + let v = native_list_append(v, ["गिलति", "verb", "गि॒लति॑", "giláti", "", "", "alternative form of"]) + let v = native_list_append(v, ["जयते", "verb", "जया॑मि", "", "", "", "to win conquer"]) + let v = native_list_append(v, ["जिजीविषु", "verb", "जिजीविषु desiderative active participle", "jijīviṣu", "जीव्", "", "desiderative participle of"]) + let v = native_list_append(v, ["याच्यते", "verb", "याच् यते third-singular indicative", "yācyate", "याच्", "", "to ask"]) + let v = native_list_append(v, ["सृजति", "verb", "सृ॒जामि॑", "", "", "", "present of सृज्"]) + let v = native_list_append(v, ["भक्षति", "verb", "भक्षामि", "", "", "", "to eat devour"]) + let v = native_list_append(v, ["चक्षति", "verb", "चक्षामि", "", "", "", "to appear become"]) + let v = native_list_append(v, ["दक्षते", "verb", "दक्षे॑", "", "", "", "to be able"]) + let v = native_list_append(v, ["लक्षति", "verb", "लक्षामि", "", "", "", "to perceive observe"]) + let v = native_list_append(v, ["अक्षति", "verb", "अक्षामि", "", "", "", "to attain reach"]) + let v = native_list_append(v, ["पक्षति", "verb", "पक्षामि", "", "", "", "to take seize"]) + let v = native_list_append(v, ["यक्षति", "verb", "यक्षामि", "", "", "", "to be quick"]) + let v = native_list_append(v, ["लुप्यते", "verb", "लुप्ये", "", "", "", "passive of लुप्"]) + let v = native_list_append(v, ["लुम्पति", "verb", "लु॒म्पामि॑", "", "", "", "breaks violates hurts"]) + let v = native_list_append(v, ["ईक्षते", "verb", "ईक्षे॑", "", "", "", "to see look"]) + let v = native_list_append(v, ["दीक्षते", "verb", "दीक्षे", "", "", "", "to consecrate or"]) + let v = native_list_append(v, ["निक्षति", "verb", "निक्षामि", "", "", "", "to pierce"]) + let v = native_list_append(v, ["भिक्षति", "verb", "भिक्षामि", "", "", "", "to wish for"]) + let v = native_list_append(v, ["गन्ति", "verb", "गन्मि॑", "", "", "", "to go"]) + let v = native_list_append(v, ["द्विगुणयति", "verb", "द्विगुणयति third-singular indicative", "dviguṇayati", "द्विगुणय", "", "to double"]) + let v = native_list_append(v, ["डयते", "verb", "डये", "", "", "", "to fly"]) + let v = native_list_append(v, ["रञ्जति", "verb", "रञ्जामि", "", "", "", "to be dyed"]) + let v = native_list_append(v, ["शयति", "verb", "शयामि", "", "", "", "to lie lie"]) + let v = native_list_append(v, ["लयति", "verb", "लया॑मि", "", "", "", "to adhere obtain"]) + let v = native_list_append(v, ["आख्याति", "verb", "आख्याति third-singular indicative", "ākhyāti", "", "", "to tell inform"]) + let v = native_list_append(v, ["ਤਪ੍ਤ", "verb", "ਤਪ੍ਤ past passive participle", "taptá", "तप्", "", "Gurmukhi script form"]) + let v = native_list_append(v, ["शेषति", "verb", "शेषामि", "", "", "", "to leave spare"]) + let v = native_list_append(v, ["पोषति", "verb", "पोषामि", "", "", "", "to thrive flourish"]) + let v = native_list_append(v, ["पोषयति", "verb", "पो॒षया॑मि", "", "", "", "to rear nourish"]) + let v = native_list_append(v, ["जुषते", "verb", "जु॒षे", "अजो॑षिष्ट", "", "", "to enjoy"]) + let v = native_list_append(v, ["तोषयति", "verb", "तो॒षया॑मि", "", "", "", "to satisfy please"]) + let v = native_list_append(v, ["दोषयति", "verb", "दो॒षया॑मि", "", "", "", "to corrupt pollute"]) + let v = native_list_append(v, ["रोषति", "verb", "रोषामि", "", "", "", "to be hurt"]) + let v = native_list_append(v, ["मोषति", "verb", "मोषामि", "", "", "", "to steal rob"]) + let v = native_list_append(v, ["पाहि", "verb", "pāhí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["जस्यति", "verb", "जस्या॑मि", "", "", "", "to be exhausted"]) + let v = native_list_append(v, ["चोदयति", "verb", "चो॒दया॑मि", "", "", "", "to sharpen whet"]) + let v = native_list_append(v, ["प्रतिरमति", "verb", "प्रतिरमति third-singular indicative", "pratiramati", "प्रतिरम्", "", "to look towards"]) + let v = native_list_append(v, ["स्तुहि", "verb", "stuhí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["रौति", "verb", "रौमि॑", "", "", "", "to roar bellow"]) + let v = native_list_append(v, ["बुभूषति", "verb", "बुभू॑षामि", "", "", "", "desiderative of भू"]) + let v = native_list_append(v, ["इन्द्धे", "verb", "इ॒न्धे", "", "", "", "to kindle"]) + let v = native_list_append(v, ["धोक्ष्यति", "verb", "धो॒क्ष्यामि॑", "", "", "", "future of दुह्"]) + let v = native_list_append(v, ["अधुक्षत्", "verb", "अधु॑क्षम्", "अधु॑क्षत्", "", "", "aorist of दुह्"]) + let v = native_list_append(v, ["दुह्यात्", "verb", "दु॒ह्यात् third-singular indicative", "duhyā́t", "दुह्", "", "benedictive of दुह्"]) + let v = native_list_append(v, ["दोग्धा", "verb", "दोग्धास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["भूयात्", "verb", "भू॒यात् third-singular indicative", "bhūyā́t", "भू", "", "benedictive of भू"]) + let v = native_list_append(v, ["ध्रोक्ष्यति", "verb", "ध्रो॒क्ष्यामि॑", "", "", "", "future of द्रुह्"]) + let v = native_list_append(v, ["अद्रुक्षत्", "verb", "अद्रु॑क्षम्", "अद्रु॑क्षत्", "", "", "aorist of द्रुह्"]) + let v = native_list_append(v, ["दुद्रोह", "verb", "दु॒द्रोह॑", "", "", "", "perfect of द्रुह्"]) + let v = native_list_append(v, ["अनैषीत्", "verb", "अनै॑षम्", "अनै॑षीत्", "", "", "aorist of नी"]) + let v = native_list_append(v, ["चाकॢपे", "verb", "चा॒कॢ॒पे", "", "", "", "perfect of कॢप्"]) + let v = native_list_append(v, ["कर्ति", "verb", "कर्मि॑", "", "", "", "present of कृ"]) + let v = native_list_append(v, ["अकरत्", "verb", "अक॑रम्", "अक॑रत्", "", "", "aorist of कृ"]) + let v = native_list_append(v, ["क्रियात्", "verb", "क्रि॒यात् third-singular indicative", "kriyā́t", "कृ", "", "benedictive of कृ"]) + let v = native_list_append(v, ["जभार", "verb", "ज॒भर॑", "", "", "", "past of भृ"]) + let v = native_list_append(v, ["नुद्यात्", "verb", "नुद् यात् third-singular indicative", "nudyāt", "नुद्", "", "benedictive of नुद्"]) + let v = native_list_append(v, ["नोत्ता", "verb", "नोत्तास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["नोत्स्यति", "verb", "नो॒त्स्यामि॑", "", "", "", "future of नुद्"]) + let v = native_list_append(v, ["हीयते", "verb", "ही॒ये", "", "", "", "to be left"]) + let v = native_list_append(v, ["हापयति", "verb", "हा॒पया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["अघस्", "verb", "अघ॑सम्", "अघः॑", "", "", "aorist of घस्"]) + let v = native_list_append(v, ["तन्दते", "verb", "तन्दे॑", "", "", "", "becomes relaxed"]) + let v = native_list_append(v, ["अमत", "verb", "अम्नि॑", "अम॑त", "", "", "aorist of मन्"]) + let v = native_list_append(v, ["अतन्", "verb", "अत॑नम्", "अत॑न्", "", "", "aorist of तन्"]) + let v = native_list_append(v, ["अदात्", "verb", "अदा॑म्", "अदा॑त्", "", "", "aorist of दा"]) + let v = native_list_append(v, ["अवर्क्", "verb", "अव॑र्जम्", "अव॑र्क्", "", "", "aorist of वृज्"]) + let v = native_list_append(v, ["आर्त्", "verb", "आर्ध॑म्", "आर्द्ध॑", "", "", "aorist of ऋध्"]) + let v = native_list_append(v, ["ऋध्नोति", "verb", "ऋ॒ध्नोमि॑", "", "", "", "present of ऋध्"]) + let v = native_list_append(v, ["अभेत्", "verb", "अभे॑दम्", "अभे॑त्", "", "", "aorist of भिद्"]) + let v = native_list_append(v, ["आर्त", "verb", "आरि॑", "आर्त॑", "", "", "aorist of ऋ"]) + let v = native_list_append(v, ["कृषीष्ट", "verb", "कृ॒षी॒ष्ट third-singular indicative", "kṛṣīṣṭá", "कृ", "", "benedictive of कृ"]) + let v = native_list_append(v, ["अजैषीत्", "verb", "अजै॑षम्", "अजै॑षीत्", "", "", "aorist of जि"]) + let v = native_list_append(v, ["जीविष्यति", "verb", "जी॒वि॒ष्यामि॑", "", "", "", "future third-person singular"]) + let v = native_list_append(v, ["जीविता", "verb", "जी॒वि॒तास्मि॑", "", "", "", "periphrastic future third-person"]) + let v = native_list_append(v, ["अजीविष्यत्", "verb", "ajīviṣyat", "", "", "", "imperfect third-person singular"]) + let v = native_list_append(v, ["अजीवीत्", "verb", "अजी॑विषम्", "अजी॑वीत्", "", "", "aorist third-person singular"]) + let v = native_list_append(v, ["जीव्यात्", "verb", "जीव् यात् third-singular indicative", "jīvyāt", "जीव्", "", "benedictive third-person singular"]) + let v = native_list_append(v, ["जिजीव", "verb", "जि॒जीव॑", "", "", "", "perfect third-person singular"]) + let v = native_list_append(v, ["जीव्यते", "verb", "जी॒व्ये", "", "", "", "passive third-person singular"]) + let v = native_list_append(v, ["जीवयति", "verb", "जी॒वया॑मि", "", "", "", "makes alive restores"]) + let v = native_list_append(v, ["जीवापयति", "verb", "जी॒वा॒पया॑मि", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["अजीजिवत्", "verb", "अजी॑जिवम्", "अजी॑जिवत्", "", "", "causative aorist third-person"]) + let v = native_list_append(v, ["जिजीविषति", "verb", "जिजीविषामि", "", "", "", "desiderative third-person singular"]) + let v = native_list_append(v, ["जुज्यूषति", "verb", "जुज्यूषामि", "", "", "", "desiderative third-person singular"]) + let v = native_list_append(v, ["जिजीवयिषति", "verb", "जिजीवयिषामि", "", "", "", "desiderative causative third-person"]) + let v = native_list_append(v, ["जेजिव्यते", "verb", "जे॒जि॒व्ये", "", "", "", "intensive third-person singular"]) + let v = native_list_append(v, ["जीवितुम्", "verb", "jīvitum", "जीव्", "", "", "infinitive of जीव्"]) + let v = native_list_append(v, ["जीवितवै", "verb", "jīvitavai", "जीव्", "", "", "infinitive of जीव्"]) + let v = native_list_append(v, ["जीवसे", "verb", "jīvase", "जीव्", "", "", "infinitive of जीव्"]) + let v = native_list_append(v, ["जीवित्वा", "verb", "jīvitvā", "जीव्", "", "", "gerund of जीव्"]) + let v = native_list_append(v, ["जीव्य", "verb", "jīvya", "जीव्", "", "", "gerund of जीव्"]) + let v = native_list_append(v, ["जीवितव्य", "verb", "जीवितव्य future passive participle", "jīvitavya", "जीव्", "", "gerundive of जीव्"]) + let v = native_list_append(v, ["जीवनीय", "verb", "जीवनीय future passive participle", "jīvanīya", "जीव्", "", "gerundive of जीव्"]) + let v = native_list_append(v, ["जीवापित", "verb", "जीवापित past passive participle", "jīvāpita", "जीव्", "", "causative past participle"]) + let v = native_list_append(v, ["जिज्यूषित", "verb", "jijyūṣita", "जीव्", "no-table-tags", "", "desiderative participle of"]) + let v = native_list_append(v, ["जिजीवयिषु", "verb", "jijīvayiṣu", "जीव्", "no-table-tags", "", "desiderative participle of"]) + let v = native_list_append(v, ["परिहार", "verb", "परिहार third-singular indicative", "parihāra", "", "", "to move to"]) + let v = native_list_append(v, ["अब्रवीत्", "verb", "अब्र॑वीत्", "ábravīt", "", "", "third-person singular imperfective"]) + let v = native_list_append(v, ["भेदति", "verb", "भेद॑ति", "bhédati", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["खात", "verb", "खा॒त", "khātá", "no-table-tags", "", "dug up excavated"]) + let v = native_list_append(v, ["कृत्त", "verb", "कृत्त third-singular indicative", "kṛtta", "", "", "to be cut"]) + let v = native_list_append(v, ["अर्चित", "verb", "अर्चित third-singular indicative", "arcita", "", "", "worshipped"]) + let v = native_list_append(v, ["अगात्", "verb", "अगा॑म्", "अगा॑त्", "", "", "aorist of गा"]) + let v = native_list_append(v, ["ससाद", "verb", "स॒सद॑", "", "", "", "perfect of सद्"]) + let v = native_list_append(v, ["सत्स्यति", "verb", "स॒त्स्यामि॑", "", "", "", "future of सद्"]) + let v = native_list_append(v, ["जेष्यति", "verb", "जेष्यामि", "", "", "", "future of जि"]) + let v = native_list_append(v, ["जयिष्यति", "verb", "जयिष्यामि", "", "", "", "future of जि"]) + let v = native_list_append(v, ["जेता", "verb", "जे॒तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["तप्तुम्", "verb", "तप् तुम्", "taptum", "तप्", "", "infinitive of तप्"]) + let v = native_list_append(v, ["तप्तोस्", "verb", "तप् तोस्", "taptos", "तप्", "", "Vedic infinitive of"]) + let v = native_list_append(v, ["तप्त्वा", "verb", "तप् त्वा", "taptvā", "तप्", "", "gerund of तप्"]) + let v = native_list_append(v, ["रुणद्धि", "verb", "रु॒णध्मि॑", "", "", "", "present of रुध्"]) + let v = native_list_append(v, ["अवार्क्षीत्", "verb", "अवा॑र्क्षम्", "अवा॑र्क्षीत्", "", "", "aorist of वृज्"]) + let v = native_list_append(v, ["योक्ष्यति", "verb", "यो॒क्ष्यामि॑", "", "", "", "future of युज्"]) + let v = native_list_append(v, ["अयोक्", "verb", "अयो॑जम्", "अयो॑क्", "", "", "aorist of युज्"]) + let v = native_list_append(v, ["ब्रूयते", "verb", "ब्रूये", "", "", "", "present passive third-person"]) + let v = native_list_append(v, ["आष्ट", "verb", "आष्ट ॑", "ā́ṣṭa", "", "", "third-person singular indicative"]) + let v = native_list_append(v, ["सारयति", "verb", "सा॒रया॑मि", "", "", "", "causes to run"]) + let v = native_list_append(v, ["आनट्", "verb", "आन॑शम्", "आन॑ट्", "", "", "aorist of नश्"]) + let v = native_list_append(v, ["अतिष्ठत्", "verb", "अति॑ष्ठत्", "átiṣṭhat", "", "", "third-person singular imperfective"]) + let v = native_list_append(v, ["अग्रहीत्", "verb", "अग्र॑हीषम्", "अग्र॑हीत्", "", "", "aorist of ग्रह्"]) + let v = native_list_append(v, ["अबुद्ध", "verb", "अभु॑त्सि", "अबु॑द्ध", "", "", "aorist of बुध्"]) + let v = native_list_append(v, ["जोषति", "verb", "जोष॑ति", "jóṣati", "", "", "third-person singular aorist"]) + let v = native_list_append(v, ["कुर्वत्", "verb", "कु॒र्वत् present active participle", "kurvát", "कृ", "", "active participle of"]) + let v = native_list_append(v, ["जुजोष", "verb", "जु॒जोष॑", "", "", "", "perfect of जुष्"]) + let v = native_list_append(v, ["बुबोध", "verb", "बु॒बोध॑", "", "", "", "perfect of बुध्"]) + let v = native_list_append(v, ["ननाश", "verb", "न॒नश॑", "", "", "", "perfect of नश्"]) + let v = native_list_append(v, ["आनंश", "verb", "आ॒नंश॑", "", "", "", "perfect of अश्"]) + let v = native_list_append(v, ["आव", "verb", "आव॑", "", "", "", "perfect of अव्"]) + let v = native_list_append(v, ["तुष्टाव", "verb", "तु॒ष्टव॑", "", "", "", "perfect of स्तु"]) + let v = native_list_append(v, ["संवर्तयति", "verb", "संवर्तयति third-singular indicative", "saṃvartayati", "संवृत्", "", "to cause to"]) + let v = native_list_append(v, ["जगर्ध", "verb", "ज॒गर्ध॑", "", "", "", "perfect of गृध्"]) + let v = native_list_append(v, ["क्रोशति", "verb", "क्रोशा॑मि", "", "", "", "to cry out"]) + let v = native_list_append(v, ["विवेष्टि", "verb", "विवे॑ष्मि", "", "", "", "to labour produce"]) + let v = native_list_append(v, ["अवेदीत्", "verb", "अवे॑दिषम्", "अवे॑दीत्", "", "", "aorist of विद्"]) + let v = native_list_append(v, ["विवेद", "verb", "वि॒वेद॑", "", "", "", "perfect of विद्"]) + let v = native_list_append(v, ["कारयते", "verb", "का॒रया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["दभ्नोति", "verb", "द॒भ्नोमि॑", "", "", "", "to harm injure"]) + let v = native_list_append(v, ["अविदत्", "verb", "अवि॑दम्", "अवि॑दत्", "", "", "aorist of विद्"]) + let v = native_list_append(v, ["अवाक्षीत्", "verb", "अवा॑क्षम्", "अवा॑क्षीत्", "", "", "aorist of वह्"]) + let v = native_list_append(v, ["कृष्ट", "verb", "कृष्ट past passive participle", "kṛṣṭa", "कृष्", "", "past passive participle"]) + let v = native_list_append(v, ["पपाद", "verb", "प॒पद॑", "", "", "", "perfect of पद्"]) + let v = native_list_append(v, ["अपात्", "verb", "अपा॑म्", "अपा॑त्", "", "", "aorist of पा"]) + let v = native_list_append(v, ["पपौ", "verb", "प॒पौ", "", "", "", "perfect of पा"]) + let v = native_list_append(v, ["अप्राक्षीत्", "verb", "अप्रा॑क्षम्", "अप्रा॑क्षीत्", "", "", "aorist of प्रछ्"]) + let v = native_list_append(v, ["अश्रेत्", "verb", "अश्र॑यम्", "अश्रे॑त्", "", "", "aorist of श्रि"]) + let v = native_list_append(v, ["अभोक्", "verb", "अभो॑जम्", "अभो॑क्", "", "", "aorist of भुज्"]) + let v = native_list_append(v, ["असरत्", "verb", "अस॑रम्", "अस॑रत्", "", "", "aorist of सृ"]) + let v = native_list_append(v, ["वक्तव्य", "verb", "vaktavyà", "no-table-tags", "sa-decl-adj-mfn", "", "future passive participle"]) + let v = native_list_append(v, ["स्तूयते", "verb", "स्तूये", "", "", "", "passive of स्तु"]) + let v = native_list_append(v, ["जंहति", "verb", "जंहा॑मि", "", "", "", "to go move"]) + let v = native_list_append(v, ["रिच्यते", "verb", "रिच् यते third-singular indicative", "ricyate", "रिच्", "", "alternative form of"]) + let v = native_list_append(v, ["अरेचि", "verb", "अरेचि third-singular indicative", "areci", "रिच्", "", "passive aorist of"]) + let v = native_list_append(v, ["अरिचत्", "verb", "अरि॑चम्", "अरि॑चत्", "", "", "aorist of रिच्"]) + let v = native_list_append(v, ["रेक्ष्यते", "verb", "रे॒क्ष्ये", "", "", "", "future of रिच्"]) + let v = native_list_append(v, ["रेक्ता", "verb", "रे॒क्तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["रिरेच", "verb", "रि॒रेच॑", "", "", "", "perfect of रिच्"]) + let v = native_list_append(v, ["बृंहति", "verb", "बृंहामि", "", "", "", "to be thick"]) + let v = native_list_append(v, ["भर्क्ष्यति", "verb", "भ॒र्क्ष्यामि॑", "", "", "", "future of बृह्"]) + let v = native_list_append(v, ["बर्ढा", "verb", "ब॒र्ढास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["बबर्ह", "verb", "ब॒बर्ह॑", "", "", "", "perfect of बृह्"]) + let v = native_list_append(v, ["बृह्यते", "verb", "बृ॒ह्ये", "", "", "", "to be thick"]) + let v = native_list_append(v, ["मित", "verb", "मि॒त past passive participle", "mitá", "मा", "", "past participle of"]) + let v = native_list_append(v, ["इद्ध", "verb", "इद्ध past passive participle", "iddha", "इध्", "", "past passive participle"]) + let v = native_list_append(v, ["बृंहित", "verb", "बृं॒हि॒त past passive participle", "bṛṃhitá", "बृह्", "", "past participle of"]) + let v = native_list_append(v, ["धरिष्यति", "verb", "ध॒रि॒ष्यामि॑", "", "", "", "future of धृ"]) + let v = native_list_append(v, ["उवाच", "verb", "उ॒वच॑", "", "", "", "perfect of वच्"]) + let v = native_list_append(v, ["शेते", "verb", "शये॑", "", "", "", "to lie lie"]) + let v = native_list_append(v, ["वान", "verb", "वा॒न past passive participle", "vāná", "वा", "", "past participle of"]) + let v = native_list_append(v, ["दधार", "verb", "द॒धर॑", "", "", "", "perfect of धृ"]) + let v = native_list_append(v, ["उवाह", "verb", "उ॒वह॑", "", "", "", "perfect of वह्"]) + let v = native_list_append(v, ["इयाज", "verb", "इ॒यज॑", "", "", "", "perfect of यज्"]) + let v = native_list_append(v, ["अयाक्षीत्", "verb", "अया॑क्षम्", "अया॑क्षीत्", "", "", "aorist of यज्"]) + let v = native_list_append(v, ["प्रेक्षते", "verb", "प्रेक्षे॑", "", "", "", "to look at"]) + let v = native_list_append(v, ["वन्दे", "verb", "वन्दे॑", "vánde", "", "", "present mediopassive first-person"]) + let v = native_list_append(v, ["उच्यते", "verb", "उ॒च्ये", "", "", "", "passive of वच्"]) + let v = native_list_append(v, ["उद्यते", "verb", "उ॒द्ये", "", "", "", "passive of वद्"]) + let v = native_list_append(v, ["इच्छामि", "verb", "इ॒च्छामि॑", "icchā́mi", "", "", "present active first-person"]) + let v = native_list_append(v, ["आनञ्ज", "verb", "आ॒नञ्ज॑", "", "", "", "perfect of अञ्ज्"]) + let v = native_list_append(v, ["सुष्वाप", "verb", "सु॒ष्वप॑", "", "", "", "perfect of स्वप्"]) + let v = native_list_append(v, ["इयाय", "verb", "इ॒यय॑", "", "", "", "perfect of इ"]) + let v = native_list_append(v, ["वेवेत्ति", "verb", "वेवे॑द्मि", "", "", "", "intensive of विद्"]) + let v = native_list_append(v, ["अस्वार्", "verb", "अस्वा॑र्षम्", "अस्वाः॑", "", "", "aorist of स्वर्"]) + let v = native_list_append(v, ["पीत्वा", "verb", "पी॒त्वा", "pītvā́", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["अवर्त्", "verb", "अव॑र्तम्", "अव॑र्त्", "", "", "aorist of वृत्"]) + let v = native_list_append(v, ["ययाम", "verb", "य॒यम॑", "", "", "", "perfect of यम्"]) + let v = native_list_append(v, ["भ्रमिष्यति", "verb", "भ्र॒मि॒ष्यामि॑", "", "", "", "future of भ्रम्"]) + let v = native_list_append(v, ["भ्रमितुम्", "verb", "bhramitum", "भ्रम्", "", "", "infinitive of भ्रम्"]) + let v = native_list_append(v, ["भ्रान्तुम्", "verb", "bhrāntum", "भ्रम्", "", "", "infinitive of भ्रम्"]) + let v = native_list_append(v, ["भ्रमित्वा", "verb", "bhramitvā", "भ्रम्", "", "", "gerund of भ्रम्"]) + let v = native_list_append(v, ["भ्रान्त्वा", "verb", "bhrāntvā", "भ्रम्", "", "", "gerund of भ्रम्"]) + let v = native_list_append(v, ["अवात्सीत्", "verb", "अवा॑त्सम्", "अवा॑त्सीत्", "", "", "aorist of वस्"]) + let v = native_list_append(v, ["उवास", "verb", "उ॒वस॑", "", "", "", "perfect of वस्"]) + let v = native_list_append(v, ["अचेत्", "verb", "अच॑यम्", "अचे॑त्", "", "", "aorist of चि"]) + let v = native_list_append(v, ["अचैषीत्", "verb", "अचै॑षम्", "अचै॑षीत्", "", "", "aorist of चि"]) + let v = native_list_append(v, ["वत्स्यति", "verb", "व॒त्स्यामि॑", "", "", "", "future of वस्"]) + let v = native_list_append(v, ["अदर्क्", "verb", "अद॑र्शम्", "अद॑र्क्", "", "", "aorist of दृश्"]) + let v = native_list_append(v, ["पस्पशे", "verb", "प॒स्प॒शे", "", "", "", "perfect of पश्"]) + let v = native_list_append(v, ["द्रक्ष्यति", "verb", "द्र॒क्ष्यामि॑", "", "", "", "future of दृश्"]) + let v = native_list_append(v, ["एष्यति", "verb", "ए॒ष्यामि॑", "", "", "", "future of इ"]) + let v = native_list_append(v, ["अतांसीत्", "verb", "अतां॑सम्", "अतां॑सीत्", "", "", "aorist of तन्"]) + let v = native_list_append(v, ["खनिष्यति", "verb", "खनिष्यामि", "", "", "", "future of खन्"]) + let v = native_list_append(v, ["खनिता", "verb", "खनितास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["अखनीत्", "verb", "अखनिषम्", "अखनिष्ट", "", "", "aorist of खन्"]) + let v = native_list_append(v, ["अखानीत्", "verb", "अखानिषम्", "अखानिष्ट", "", "", "aorist of खन्"]) + let v = native_list_append(v, ["खन्यात्", "verb", "खन् यात् third-singular indicative", "khanyāt", "खन्", "", "benedictive of खन्"]) + let v = native_list_append(v, ["खायात्", "verb", "खायात् third-singular indicative", "khāyāt", "खन्", "", "benedictive of खन्"]) + let v = native_list_append(v, ["चखान", "verb", "च॒खन॑", "", "", "", "perfect of खन्"]) + let v = native_list_append(v, ["उत्थाय", "verb", "utthāya", "", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["अजनिष्ट", "verb", "अज॑निषि", "अज॑निष्ट", "", "", "middle aorist of"]) + let v = native_list_append(v, ["जगार", "verb", "ज॒गर॑", "", "", "", "perfect of गॄ"]) + let v = native_list_append(v, ["चिच्छेद", "verb", "चि॒च्छेद॑", "", "", "", "perfect of छिद्"]) + let v = native_list_append(v, ["अच्छेत्", "verb", "अच्छे॑दम्", "अच्छे॑त्", "", "", "aorist of छिद्"]) + let v = native_list_append(v, ["अयासीत्", "verb", "अया॑सम्", "अया॑सीत्", "", "", "aorist of या"]) + let v = native_list_append(v, ["बिभ्यति", "verb", "bibhyati", "", "", "", "present active third-person"]) + let v = native_list_append(v, ["तुतोष", "verb", "तुतोष third-singular indicative", "tutoṣa", "तुष्", "", "perfect of तुष्"]) + let v = native_list_append(v, ["जघास", "verb", "ज॒घस॑", "", "", "", "perfect of घस्"]) + let v = native_list_append(v, ["चचार", "verb", "च॒चर॑", "", "", "", "perfect of चर्"]) + let v = native_list_append(v, ["बभाज", "verb", "ब॒भज॑", "", "", "", "perfect of भज्"]) + let v = native_list_append(v, ["अभाक्षीत्", "verb", "अभा॑क्षम्", "अभा॑क्षीत्", "", "", "aorist of भज्"]) + let v = native_list_append(v, ["मार्गमाण", "verb", "mārgamāṇa", "no-table-tags", "sa-decl-adj-mfn", "", "present participle of"]) + let v = native_list_append(v, ["पपात", "verb", "प॒पत॑", "", "", "", "perfect of पत्"]) + let v = native_list_append(v, ["अपत्त", "verb", "अप॑दि", "अप॑त्त", "", "", "aorist of पद्"]) + let v = native_list_append(v, ["आनर्च", "verb", "आ॒नर्च॑", "", "", "", "perfect of अर्च्"]) + let v = native_list_append(v, ["उवाप", "verb", "उ॒वप॑", "", "", "", "perfect of वप्"]) + let v = native_list_append(v, ["वेष्टमान", "verb", "veṣṭamāna", "no-table-tags", "sa-decl-adj-mfn", "", "present participle of"]) + let v = native_list_append(v, ["मन्यमान", "verb", "manyamāna", "no-table-tags", "sa-decl-adj-mfn", "", "present active participle"]) + let v = native_list_append(v, ["रुदति", "verb", "रुदामि", "", "", "", "to cry weep"]) + let v = native_list_append(v, ["भृत", "verb", "भृ॒त past passive participle", "bhṛtá", "भृ", "", "past passive participle"]) + let v = native_list_append(v, ["ममार", "verb", "म॒मर॑", "", "", "", "perfect of मृ"]) + let v = native_list_append(v, ["अर्पयति", "verb", "अ॒र्पया॑मि", "", "", "", "cause to move"]) + let v = native_list_append(v, ["समर्पयति", "verb", "स॒म॒र्पया॑मि", "", "", "", "throw at hurl"]) + let v = native_list_append(v, ["मीलति", "verb", "मीलामि", "", "", "", "close the eyes"]) + let v = native_list_append(v, ["सम्मील्य", "verb", "स॒म्मील्य॑", "sammī́lya", "सम्मील्", "", "gerund of सम्मील्"]) + let v = native_list_append(v, ["सम्मीलति", "verb", "सम्मीलामि", "", "", "", "shut the eyes"]) + let v = native_list_append(v, ["घृष्ट", "verb", "घृ॒ष्ट past passive participle", "ghṛṣṭá", "घृष्", "", "past passive participle"]) + let v = native_list_append(v, ["रुरोह", "verb", "रु॒रोह॑", "", "", "", "perfect of रुह्"]) + let v = native_list_append(v, ["अरुक्षत्", "verb", "अरु॑क्षम्", "अरु॑क्षत्", "", "", "aorist of रुह्"]) + let v = native_list_append(v, ["अरुहत्", "verb", "अरु॑हम्", "अरु॑हत्", "", "", "aorist of रुह्"]) + let v = native_list_append(v, ["बध्यते", "verb", "बध्ये", "", "", "", "to be bound"]) + let v = native_list_append(v, ["नहति", "verb", "नहामि", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["अपिनह्यति", "verb", "अपिनह्यामि", "", "", "", "to tie on"]) + let v = native_list_append(v, ["पिनह्यति", "verb", "पिनह्यामि", "", "", "", "to tie on"]) + let v = native_list_append(v, ["विदधाति", "verb", "विदधाति third-singular indicative", "vidadhāti", "विधा", "", "apportion put in"]) + let v = native_list_append(v, ["दष्ट", "verb", "द॒ष्ट past passive participle", "daṣṭá", "दंश्", "", "past passive participle"]) + let v = native_list_append(v, ["धास्यति", "verb", "धा॒स्यामि॑", "", "", "", "future of धा"]) + let v = native_list_append(v, ["धाता", "verb", "धा॒तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["धित्सति", "verb", "धित्सामि", "", "", "", "desiderative of धा"]) + let v = native_list_append(v, ["धीयते", "verb", "धी॒ये", "", "", "", "passive of धा"]) + let v = native_list_append(v, ["दधौ", "verb", "द॒धौ", "", "", "", "perfect of धा"]) + let v = native_list_append(v, ["संदधाति", "verb", "संदधाति third-singular indicative", "saṃdadhāti", "संधा", "", "to place on"]) + let v = native_list_append(v, ["ह्लादते", "verb", "ह्लादते third-singular indicative", "hlādate", "ह्लाद्", "", "to sound shout"]) + let v = native_list_append(v, ["तर्जति", "verb", "तर्जा॑मि", "", "", "", "to threaten scold"]) + let v = native_list_append(v, ["तर्जयति", "verb", "त॒र्जया॑मि", "", "", "", "causative of तर्ज्"]) + let v = native_list_append(v, ["गाहितुम्", "verb", "गाहि॑तुम्", "gā́hitum", "गाह्", "", "infinitive of गाह्"]) + let v = native_list_append(v, ["गाहते", "verb", "गाहे", "", "", "", "to dive into"]) + let v = native_list_append(v, ["जपति", "verb", "जपा॑मि", "", "", "", "to utter in"]) + let v = native_list_append(v, ["लिखितवत्", "verb", "likhitavat", "no-table-tags", "sa-decl-adj-mfn", "", "past active participle"]) + let v = native_list_append(v, ["आदिष्टवत्", "verb", "ādiṣṭavat", "no-table-tags", "sa-decl-adj-mfn", "", "past active participle"]) + let v = native_list_append(v, ["मार्गति", "verb", "मार्गा॑मि", "", "", "", "to seek look"]) + let v = native_list_append(v, ["च्योतति", "verb", "च्योतामि", "", "", "", "to flow trickle"]) + let v = native_list_append(v, ["प्रत्यागच्छति", "verb", "प्रत्यागच्छति third-singular indicative", "pratyāgacchati", "प्रत्यागम्", "", "to come back"]) + let v = native_list_append(v, ["प्रत्याक्रोशति", "verb", "प्रत्याक्रोशति third-singular indicative", "pratyākrośati", "प्रत्याक्रुश्", "", "to challenge or"]) + let v = native_list_append(v, ["उत्थापयति", "verb", "उत्था॑पयामि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["अजीजनत्", "verb", "अजी॑जनम्", "अजी॑जनत्", "", "", "causative aorist third-person"]) + let v = native_list_append(v, ["काम्यति", "verb", "काम्यामि", "", "", "", "to have a"]) + let v = native_list_append(v, ["अस्राक्षीत्", "verb", "अस्रा॑क्षम्", "अस्रा॑क्षीत्", "", "", "aorist of सृज्"]) + let v = native_list_append(v, ["प्रतीक्षते", "verb", "प्रती॑क्षे", "", "", "", "to look at"]) + let v = native_list_append(v, ["वीक्षते", "verb", "वीक्षे॑", "", "", "", "to see look"]) + let v = native_list_append(v, ["अवेक्षते", "verb", "अवे॑क्षे", "", "", "", "to look at"]) + let v = native_list_append(v, ["जानत्", "verb", "जा॒नत् present active participle", "jānát", "ज्ञा", "", "active participle of"]) + let v = native_list_append(v, ["स्पाशयति", "verb", "स्पाशयामि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["क्ष्णौति", "verb", "क्ष्णौति॑ third-singular indicative", "kṣṇáuti", "क्ष्णु", "", "to whet sharpen"]) + let v = native_list_append(v, ["हन्तुम्", "verb", "hantum", "", "", "", "infinitive of हन्"]) + let v = native_list_append(v, ["शून", "verb", "शू॒न past passive participle", "śūná", "शू", "", "swelled swollen"]) + let v = native_list_append(v, ["आनाश", "verb", "आ॒नाश॑", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["गधि", "verb", "gadhí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["गहि", "verb", "gahí", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["विद्यमान", "verb", "विद्यमान present passive participle", "vidyamāna", "विद्", "", "present passive participle"]) + let v = native_list_append(v, ["करति", "verb", "कर॑ति", "kárati", "कृ", "", "third-person singular subjunctive"]) + let v = native_list_append(v, ["अजमान", "verb", "अज॑मान", "ájamāna", "अज्", "", "participle of अजति"]) + let v = native_list_append(v, ["लुञ्चति", "verb", "लुञ्चामि", "", "", "", "to pluck pull"]) + let v = native_list_append(v, ["दोलायते", "verb", "दोलाये", "", "", "", "to move to"]) + let v = native_list_append(v, ["त्राहि", "verb", "trāhi", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["श्वसिति", "verb", "श्वसि॑मि", "", "", "", "to blow hiss"]) + let v = native_list_append(v, ["उच्छ्वसिति", "verb", "उ॒च्छ्वसि॑मि", "", "", "", "to breathe hard"]) + let v = native_list_append(v, ["नंस्यति", "verb", "नं॒स्यामि॑", "", "", "", "future of नम्"]) + let v = native_list_append(v, ["नमिष्यति", "verb", "न॒मि॒ष्यामि॑", "", "", "", "future of नम्"]) + let v = native_list_append(v, ["अनंसीत्", "verb", "अनं॑सम्", "अनं॑सीत्", "", "", "aorist of नम्"]) + let v = native_list_append(v, ["ननाम", "verb", "न॒नम॑", "", "", "", "perfect of नम्"]) + let v = native_list_append(v, ["लम्बते", "verb", "लम्बे॑", "", "", "", "to hang down"]) + let v = native_list_append(v, ["लम्बयति", "verb", "लम्बयामि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["रम्बते", "verb", "रम्ब॑ते third-singular indicative", "rámbate", "रम्ब्", "", "to dangle to"]) + let v = native_list_append(v, ["ललति", "verb", "ललामि", "", "", "", "to play sport"]) + let v = native_list_append(v, ["निर्वाहयति", "verb", "निर्वाहयामि", "", "", "", "to perform accomplish"]) + let v = native_list_append(v, ["तुरति", "verb", "तु॒रामि॑", "", "", "", "to hurry press"]) + let v = native_list_append(v, ["तुरत्", "verb", "तु॒रत् present active participle", "turát", "त्वर्", "", "present active participle"]) + let v = native_list_append(v, ["पृच्छ्यते", "verb", "पृ॒च्छ्ये", "", "", "", "to be asked"]) + let v = native_list_append(v, ["शशाक", "verb", "श॒शक॑", "", "", "", "perfect of शक्"]) + let v = native_list_append(v, ["अशकत्", "verb", "अश॑कम्", "अश॑कत्", "", "", "aorist of शक्"]) + let v = native_list_append(v, ["शक्ष्यति", "verb", "श॒क्ष्यामि॑", "", "", "", "future of शक्"]) + let v = native_list_append(v, ["रंहिष्यति", "verb", "रं॒हि॒ष्यामि॑", "", "", "", "future of रंह्"]) + let v = native_list_append(v, ["रंहिता", "verb", "रं॒हि॒तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["अरंहीत्", "verb", "अरं॑हिषम्", "अरं॑हीत्", "", "", "aorist of रंह्"]) + let v = native_list_append(v, ["ररंह", "verb", "ररंहे", "", "", "", "perfect of रंह्"]) + let v = native_list_append(v, ["पिंशति", "verb", "पिं॒शति॑ third-singular indicative", "piṃśáti", "पिश्", "", "to cut carve"]) + let v = native_list_append(v, ["यजामहे", "verb", "yájāmahe", "", "", "", "first-person plural middle"]) + let v = native_list_append(v, ["ಯಜಾಮಹೇ", "verb", "yájāmahe", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["યજામહે", "verb", "yájāmahe", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["वृणीते", "verb", "वृ॒णे", "", "", "", "to choose select"]) + let v = native_list_append(v, ["लुनाति", "verb", "लु॒नामि॑", "", "", "", "to cut sever"]) + let v = native_list_append(v, ["ऐषीत्", "verb", "ऐषि॑षम्", "ऐषी॑त्", "", "", "aorist of इष्"]) + let v = native_list_append(v, ["इयेष", "verb", "इ॒येष॑", "", "", "", "perfect of इष्"]) + let v = native_list_append(v, ["ऐषत्", "verb", "ऐष॑म्", "ऐष॑त्", "", "", "aorist of इष्"]) + let v = native_list_append(v, ["उवोच", "verb", "उ॒वोच॑", "", "", "", "perfect of उच्"]) + let v = native_list_append(v, ["शुशोच", "verb", "शु॒शोच॑", "", "", "", "perfect of शुच्"]) + let v = native_list_append(v, ["आवम्", "verb", "आव॑म्", "ā́vam", "", "", "imperfect active first-person"]) + let v = native_list_append(v, ["पूर्यते", "verb", "पू॒र्ये", "", "", "", "passive of पॄ"]) + let v = native_list_append(v, ["बुबुध्वांस्", "verb", "बुबुध्वांस् perfect active participle", "bubudhvāṃs", "बुध्", "", "active participle of"]) + let v = native_list_append(v, ["ञुणूषते", "verb", "ञुणूषामि", "", "", "", "third-person singular desiderative"]) + let v = native_list_append(v, ["भालयते", "verb", "भालयामि", "", "", "", "to describe"]) + let v = native_list_append(v, ["रुष्यति", "verb", "रुष् यति third-singular indicative", "ruṣyati", "रुष्", "", "to be vexed"]) + let v = native_list_append(v, ["आपत्", "verb", "आप॑म्", "आप॑त्", "", "", "aorist of आप्"]) + let v = native_list_append(v, ["दृश्यति", "verb", "dṛśyati", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["दृश्यते", "verb", "दृ॒श्ये", "", "", "", "to be seen"]) + let v = native_list_append(v, ["शस्य", "verb", "शस्य ॑ future passive participle", "śásya", "शंस्", "", "future passive participle"]) + let v = native_list_append(v, ["सजति", "verb", "सज॑ति third-singular indicative", "sájati", "सञ्ज्", "", "to adhere to"]) + let v = native_list_append(v, ["बिभ्रत्", "verb", "बिभ्र॑त् present active participle", "bíbhrat", "भृ", "", "active participle of"]) + let v = native_list_append(v, ["ध्वरति", "verb", "ध्वरा॑मि", "", "", "", "to bend cause"]) + let v = native_list_append(v, ["दालयति", "verb", "दालयामि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["दारयति", "verb", "दारयामि", "", "", "", "to tear asunder"]) + let v = native_list_append(v, ["तूर्वति", "verb", "तूर्वा॑मि", "", "", "", "to overpower"]) + let v = native_list_append(v, ["असदत्", "verb", "अस॑दम्", "अस॑दत्", "", "", "aorist of सद्"]) + let v = native_list_append(v, ["पिट्टयति", "verb", "पिट्टयामि", "", "", "", "to stamp or"]) + let v = native_list_append(v, ["काङ्क्षित", "verb", "काङ्क्षित past passive participle", "kāṅkṣita", "काङ्क्ष्", "", "wished desired longed"]) + let v = native_list_append(v, ["काङ्क्षिष्यति", "verb", "काङ्क्षिष्यामि", "", "", "", "future of काङ्क्ष्"]) + let v = native_list_append(v, ["काङ्क्षिता", "verb", "काङ्क्षितास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["अकाङ्क्षीत्", "verb", "अकाङ्क्षम्", "अकाङ्", "", "", "aorist of काङ्क्ष्"]) + let v = native_list_append(v, ["चकाङ्क्ष", "verb", "चकाङ्क्षे", "", "", "", "perfect of काङ्क्ष्"]) + let v = native_list_append(v, ["चक्षते", "verb", "चक्षा॑मि", "", "", "", "to seem appear"]) + let v = native_list_append(v, ["प्रचष्टे", "verb", "प्रचक्षे", "", "", "", "to consider regard"]) + let v = native_list_append(v, ["क्षुरति", "verb", "क्षु॒रामि॑", "", "", "", "to cut dig"]) + let v = native_list_append(v, ["वण्टति", "verb", "वण्टामि", "", "", "", "to share divide"]) + let v = native_list_append(v, ["भारयति", "verb", "भा॒रया॑मि", "", "", "", "to carry AV.Paipp."]) + let v = native_list_append(v, ["रोचयति", "verb", "रो॒चया॑मि", "", "", "", "to make shine"]) + let v = native_list_append(v, ["मानयति", "verb", "मा॒नया॑मि", "", "", "", "to esteem honor"]) + let v = native_list_append(v, ["प्रकृष्ट", "verb", "प्रकृष्ट past passive participle", "prakṛṣṭa", "प्रकृष्", "", "past passive participle"]) + let v = native_list_append(v, ["प्रगृह्णाति", "verb", "प्रगृह्णामि", "", "", "", "to hold forth"]) + let v = native_list_append(v, ["जरयति", "verb", "ज॒रया॑मि", "", "", "", "to make old"]) + let v = native_list_append(v, ["चिकीर्षति", "verb", "चिकी॑र्षामि", "", "", "", "to desire or"]) + let v = native_list_append(v, ["अत्येति", "verb", "अत्ये॑ति third-singular indicative", "átyeti", "अती", "", "to go by"]) + let v = native_list_append(v, ["घृष्यते", "verb", "घृष्ये", "", "", "", "to be rubbed"]) + let v = native_list_append(v, ["खण्डते", "verb", "खण्डे", "", "", "", "to break"]) + let v = native_list_append(v, ["खलति", "verb", "खलामि", "", "", "", "to shake"]) + let v = native_list_append(v, ["मृष्यते", "verb", "मृष्ये॑", "", "", "", "to forget"]) + let v = native_list_append(v, ["आमृष्यते", "verb", "आमृष्ये", "", "", "", "to bear"]) + let v = native_list_append(v, ["लेपयति", "verb", "ले॒पया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["रेचयति", "verb", "रे॒चया॑मि", "", "", "", "to evacuate make"]) + let v = native_list_append(v, ["छिद्यते", "verb", "छि॒द्ये", "", "", "", "to be cut"]) + let v = native_list_append(v, ["उत्थाति", "verb", "उत्थामि", "", "", "", "to stand up"]) + let v = native_list_append(v, ["वासयते", "verb", "वा॒सये॑", "", "", "", "to lodge make"]) + let v = native_list_append(v, ["वेष्टयति", "verb", "वे॒ष्टया॑मि", "", "", "", "to wrap around"]) + let v = native_list_append(v, ["वापयति", "verb", "वापयामि", "", "", "", "to sow"]) + let v = native_list_append(v, ["उपवेशयति", "verb", "उपवेशयामि", "", "", "", "causative of उप॑विशति"]) + let v = native_list_append(v, ["भावयति", "verb", "भावयामि", "", "", "", "causative of भव॑ति"]) + let v = native_list_append(v, ["वाश्यते", "verb", "वाश्ये॑", "", "", "", "to roar bellow"]) + let v = native_list_append(v, ["विकर्षति", "verb", "विकर्षामि", "", "", "", "to draw apart"]) + let v = native_list_append(v, ["विलीयते", "verb", "विलीये", "", "", "", "to dissolve melt"]) + let v = native_list_append(v, ["लीयते", "verb", "लीये॑", "", "", "", "to cling adhere"]) + let v = native_list_append(v, ["विलापयति", "verb", "विलापयामि", "", "", "", "causative of विलीयते"]) + let v = native_list_append(v, ["विश्रमते", "verb", "विश्रमे", "", "", "", "to rest relax"]) + let v = native_list_append(v, ["श्रमते", "verb", "श्रमे", "", "", "", "Later Sanskrit form"]) + let v = native_list_append(v, ["श्राम्यति", "verb", "श्राम्या॑मि", "", "", "", "to become tired"]) + let v = native_list_append(v, ["मुच्यते", "verb", "मुच्ये॑", "", "", "", "to be set"]) + let v = native_list_append(v, ["आयाति", "verb", "आया॑मि", "", "", "", "to come near"]) + let v = native_list_append(v, ["खादित", "verb", "खा॒दि॒त past passive participle", "khāditá", "खाद्", "", "eaten"]) + let v = native_list_append(v, ["छृणत्ति", "verb", "छृणद्मि", "", "", "", "to vomit"]) + let v = native_list_append(v, ["रिष्यति", "verb", "रिष् य॑ति third-singular indicative", "ríṣyati", "रिष्", "", "to be hurt"]) + let v = native_list_append(v, ["जघान", "verb", "ज॒घन॑", "", "", "", "perfect of हन्"]) + let v = native_list_append(v, ["वेदयति", "verb", "वे॒दया॑मि", "", "", "", "to make known"]) + let v = native_list_append(v, ["ह्वलति", "verb", "ह्वला॑मि", "", "", "", "to go astray"]) + let v = native_list_append(v, ["सर्पति", "verb", "सर्पा॑मि", "", "", "", "to creep crawl"]) + let v = native_list_append(v, ["क्षिप्यति", "verb", "क्षिप्यामि", "", "", "", "to throw"]) + let v = native_list_append(v, ["ध्वनति", "verb", "ध्वना॑मि", "", "", "", "to sound"]) + let v = native_list_append(v, ["ऋध्यति", "verb", "ऋध्यामि", "", "", "", "to grow prosper"]) + let v = native_list_append(v, ["दम्भयति", "verb", "द॒म्भया॑मि", "", "", "", "to abase degrade"]) + let v = native_list_append(v, ["रुरोच", "verb", "रु॒रोच॑", "", "", "", "perfect of रुच्"]) + let v = native_list_append(v, ["त्वरते", "verb", "त्वरे॑", "", "", "", "to hurry make"]) + let v = native_list_append(v, ["चकर्ष", "verb", "च॒कर्ष॑", "", "", "", "perfect of कृष्"]) + let v = native_list_append(v, ["अक्रन्", "verb", "अक्र॑न्", "ákran", "", "", "third-person plural aorist"]) + let v = native_list_append(v, ["सुस्राव", "verb", "सु॒स्रव॑", "", "", "", "perfect of स्रु"]) + let v = native_list_append(v, ["जिघाय", "verb", "जि॒घय॑", "", "", "", "perfect of हि"]) + let v = native_list_append(v, ["अहेत्", "verb", "अह॑यम्", "अहे॑त्", "", "", "aorist of हि"]) + let v = native_list_append(v, ["जुहाव", "verb", "जु॒हव॑", "", "", "", "perfect of ह्वे"]) + let v = native_list_append(v, ["जिहीड", "verb", "जि॒हीड॑", "", "", "", "perfect of हीड्"]) + let v = native_list_append(v, ["जिहिंस", "verb", "जि॒हिंस॑", "", "", "", "perfect of हिंस्"]) + let v = native_list_append(v, ["पश्यामि", "verb", "पश्या॑मि", "páśyāmi", "", "", "present active first-person"]) + let v = native_list_append(v, ["आरे", "verb", "आ॒रे", "āré", "", "", "third-person singular indicative"]) + let v = native_list_append(v, ["निनाय", "verb", "नि॒नय॑", "", "", "", "perfect of नी"]) + let v = native_list_append(v, ["ररौ", "verb", "र॒रौ", "", "", "", "perfect of रा"]) + let v = native_list_append(v, ["उवाद", "verb", "उ॒वद॑", "", "", "", "perfect of वद्"]) + let v = native_list_append(v, ["बबन्ध", "verb", "ब॒बन्ध॑", "", "", "", "perfect of बन्ध्"]) + let v = native_list_append(v, ["पप्रौ", "verb", "प॒प्रौ", "", "", "", "perfect of पॄ"]) + let v = native_list_append(v, ["चके", "verb", "च॒के", "", "", "", "perfect of का"]) + let v = native_list_append(v, ["उल्लसति", "verb", "उल्लसामि", "", "", "", "to shine forth"]) + let v = native_list_append(v, ["सान्ति", "verb", "सान्ति॑", "sā́nti", "", "", "neuter nominative/accusative/vocative plural"]) + let v = native_list_append(v, ["एता", "verb", "ए॒तास्मि॑", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["ध्यायति", "verb", "ध्याया॑मि", "", "", "", "to think of"]) + let v = native_list_append(v, ["त्रासयति", "verb", "त्रा॒सया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["वर्धयति", "verb", "व॒र्धया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["सादयति", "verb", "सा॒दया॑मि", "", "", "", "to cause to"]) + let v = native_list_append(v, ["स्रष्टा", "verb", "स्रष्टास्मि", "", "", "", "periphrastic future of"]) + let v = native_list_append(v, ["स्मसि", "verb", "स्मसि॑", "smási", "", "", "first-person plural indicative"]) + let v = native_list_append(v, ["स्मस्", "verb", "smás", "", "", "", "first-person plural indicative"]) + let v = native_list_append(v, ["वाव", "verb", "वाव ॑", "vā́va", "", "", "first-person dual present"]) + let v = native_list_append(v, ["लुठति", "verb", "लुठामि", "", "", "", "to roll move"]) + let v = native_list_append(v, ["लोडयति", "verb", "लोडयामि", "", "", "", "to set in"]) + let v = native_list_append(v, ["कृणत्ति", "verb", "कृ॒णत्मि॑", "", "", "", "to twist threads"]) + let v = native_list_append(v, ["पुपोष", "verb", "पु॒पोष॑", "", "", "", "perfect of पुष्"]) + let v = native_list_append(v, ["विश्व", "adj", "विश्व", "", "", "", "all every every"]) + let v = native_list_append(v, ["ज", "adj", "ज", "", "", "", "born begotten gotten"]) + let v = native_list_append(v, ["द", "adj", "द", "", "", "", "giving granting effecting"]) + let v = native_list_append(v, ["कमल", "adj", "कमल", "", "", "", "pale red rose-colored"]) + let v = native_list_append(v, ["बुद्ध", "adj", "बुद्ध", "", "", "", "awake"]) + let v = native_list_append(v, ["स्निह्", "adj", "स्निह्", "", "", "", "loving affectionate"]) + let v = native_list_append(v, ["संस्कृत", "adj", "संस्कृत", "", "", "", "put together constructed"]) + let v = native_list_append(v, ["संधि", "adj", "संधि", "", "", "", "containing a conjunction"]) + let v = native_list_append(v, ["सह", "adj", "सह", "", "", "", "powerful mighty"]) + let v = native_list_append(v, ["मूर्ख", "adj", "मूर्ख", "", "", "", "foolish silly stupid"]) + let v = native_list_append(v, ["मधुर", "adj", "मधुर", "", "", "", "sweet delicious nectarous"]) + let v = native_list_append(v, ["आद", "adj", "आद", "", "", "", "taking receiving"]) + let v = native_list_append(v, ["ईश्वर", "adj", "ईश्वर", "", "", "", "able to do"]) + let v = native_list_append(v, ["ભારત", "adj", "ભારત", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["भारत", "adj", "भारत", "", "", "", "descended from भरत"]) + let v = native_list_append(v, ["एक", "adj", "एक", "", "", "", "alone solitary single"]) + let v = native_list_append(v, ["पर", "adj", "पर", "", "", "", "other different than"]) + let v = native_list_append(v, ["अनन्य", "adj", "अनन्य", "", "", "", "not different identical"]) + let v = native_list_append(v, ["कृष्ण", "adj", "कृष्ण", "", "", "", "black dark dark-blue"]) + let v = native_list_append(v, ["श्वेत", "adj", "श्वेत", "", "", "", "white bright dressed"]) + let v = native_list_append(v, ["गुजराती", "adj", "गुजराती", "", "", "", "Gujarati of or"]) + let v = native_list_append(v, ["ताम्र", "adj", "ताम्र", "", "", "", "of a coppery"]) + let v = native_list_append(v, ["जन", "adj", "जन", "", "", "", "generating"]) + let v = native_list_append(v, ["काव्य", "adj", "काव्य", "", "", "", "endowed with the"]) + let v = native_list_append(v, ["प्रिय", "adj", "प्रेयस्", "प्रेष्ठ", "", "", "beloved dear to"]) + let v = native_list_append(v, ["पावक", "adj", "पावक", "", "", "", "pure clear bright"]) + let v = native_list_append(v, ["नित्य", "adj", "नित्य", "", "", "", "ones own"]) + let v = native_list_append(v, ["आढ्य", "adj", "आढ्य", "", "", "", "wealthy opulent rich"]) + let v = native_list_append(v, ["अमृत", "adj", "अमृत", "", "", "", "immortal undying imperishable"]) + let v = native_list_append(v, ["ब्राह्मि", "adj", "ब्राह्मि", "", "", "", "holy divine"]) + let v = native_list_append(v, ["सुख", "adj", "सुख", "", "", "", "running swiftly or"]) + let v = native_list_append(v, ["सूर्य", "adj", "सूर्य", "", "", "", "solar"]) + let v = native_list_append(v, ["तामस", "adj", "तामस", "", "", "", "Dark consisting of"]) + let v = native_list_append(v, ["आद्य", "adj", "आद्य", "", "", "", "being at the"]) + let v = native_list_append(v, ["अनेक", "adj", "अनेक", "", "", "", "more than one"]) + let v = native_list_append(v, ["अभक्त", "adj", "अभक्त", "", "", "", "not attached to"]) + let v = native_list_append(v, ["धृत", "adj", "धृत", "", "", "", "held"]) + let v = native_list_append(v, ["कार्य", "adj", "कार्य", "", "", "", "fit to be"]) + let v = native_list_append(v, ["निर्मम", "adj", "निर्मम", "", "", "", "unselfish"]) + let v = native_list_append(v, ["निर्वैर", "adj", "निर्वैर", "", "", "", "free from enmity"]) + let v = native_list_append(v, ["यम", "adj", "यम", "", "", "", "twin-born forming a"]) + let v = native_list_append(v, ["देव", "adj", "देव", "", "", "", "heavenly divine also"]) + let v = native_list_append(v, ["भगवान्", "adj", "भगवान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["पण्डित", "adj", "पण्डित", "", "", "", "learned wise shrewd"]) + let v = native_list_append(v, ["दुःख", "adj", "दुःख", "", "", "", "painful uncomfortable uneasy"]) + let v = native_list_append(v, ["इन", "adj", "इन", "", "", "", "able strong energetic"]) + let v = native_list_append(v, ["स", "adj", "स", "", "", "", "procuring bestowing"]) + let v = native_list_append(v, ["ह", "adj", "ह", "", "", "", "killing striking slaying"]) + let v = native_list_append(v, ["संस्कृतम्", "adj", "संस्कृतम्", "", "", "", "masculine singular accusative"]) + let v = native_list_append(v, ["अद्वैत", "adj", "अद्वैत", "", "", "", "non-dual ŚBr. etc."]) + let v = native_list_append(v, ["आम", "adj", "आम", "", "", "", "raw uncooked unbaked"]) + let v = native_list_append(v, ["मूत", "adj", "मूत", "", "", "", "bound tied woven"]) + let v = native_list_append(v, ["सौम्य", "adj", "सौम्य", "", "", "", "related or pertaining"]) + let v = native_list_append(v, ["मनुष्य", "adj", "मनुष्य", "", "", "", "human useful befitting"]) + let v = native_list_append(v, ["सत्य", "adj", "सत्य", "", "", "", "true real actual"]) + let v = native_list_append(v, ["असत्य", "adj", "असत्य", "", "", "", "false"]) + let v = native_list_append(v, ["खाद्य", "adj", "खाद्य", "", "", "", "eatable edible"]) + let v = native_list_append(v, ["पर्वत", "adj", "पर्वत", "", "", "", "knotty rugged said"]) + let v = native_list_append(v, ["गणित", "adj", "गणित", "", "", "", "counted numbered reckoned"]) + let v = native_list_append(v, ["खेल", "adj", "खेल", "", "", "", "moving shaking trembling"]) + let v = native_list_append(v, ["सात", "adj", "सात", "", "", "", "gained obtained"]) + let v = native_list_append(v, ["विशेषण", "adj", "विशेषण", "", "", "", "distinguishing discriminative specifying"]) + let v = native_list_append(v, ["वैज्ञानिक", "adj", "वैज्ञानिक", "", "", "", "rich in knowledge"]) + let v = native_list_append(v, ["कवि", "adj", "कवि", "", "", "", "gifted with insight"]) + let v = native_list_append(v, ["युद्ध", "adj", "युद्ध", "", "", "", "fought encountered conquered"]) + let v = native_list_append(v, ["संगीत", "adj", "संगीत", "", "", "", "sung together sung"]) + let v = native_list_append(v, ["बल", "adj", "बल", "", "", "", "strong robust"]) + let v = native_list_append(v, ["द्रव", "adj", "द्रव", "", "", "", "flowing fluid dropping"]) + let v = native_list_append(v, ["द्रव्य", "adj", "द्रव्य", "", "", "", "derived from or"]) + let v = native_list_append(v, ["सर्प", "adj", "सर्प", "", "", "", "creeping crawling stealing"]) + let v = native_list_append(v, ["पृथ्वी", "adj", "पृथ्वी", "", "", "", "inflection of पृथु"]) + let v = native_list_append(v, ["बुध", "adj", "बुध", "", "", "", "awaking"]) + let v = native_list_append(v, ["शुक्र", "adj", "शुक्र", "", "", "", "bright resplendent"]) + let v = native_list_append(v, ["गुरु", "adj", "गरीयस्", "गरिष्ठ", "", "", "heavy weighty"]) + let v = native_list_append(v, ["ब्रह्माण्ड", "adj", "ब्रह्माण्ड", "", "", "", "cosmic"]) + let v = native_list_append(v, ["हिम", "adj", "हिम", "", "", "", "cold cool"]) + let v = native_list_append(v, ["लेखन", "adj", "लेखन", "", "", "", "writing"]) + let v = native_list_append(v, ["पुल", "adj", "पुल", "", "", "", "extended wide"]) + let v = native_list_append(v, ["बाढ", "adj", "बाढ", "", "", "", "strong mighty"]) + let v = native_list_append(v, ["अणु", "adj", "अणीयस्", "अणिष्ठ", "", "", "minute atomic"]) + let v = native_list_append(v, ["अम्ल", "adj", "अम्ल", "", "", "", "sour"]) + let v = native_list_append(v, ["दूरदर्शन", "adj", "दूरदर्शन", "", "", "", "visible only from"]) + let v = native_list_append(v, ["चल", "adj", "चल", "", "", "", "moving trembling shaking"]) + let v = native_list_append(v, ["हृदय", "adj", "हृदय", "", "", "", "going to the"]) + let v = native_list_append(v, ["धीरे", "adj", "धीरे", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["दूर", "adj", "दूर", "", "", "", "distant far long"]) + let v = native_list_append(v, ["विशाल", "adj", "विशाल", "", "", "", "spacious extensive broad"]) + let v = native_list_append(v, ["शीघ्र", "adj", "शीघ्र", "", "", "", "quick rapid speedy"]) + let v = native_list_append(v, ["युवा", "adj", "युवा", "", "", "", "inflection of युव॑न्"]) + let v = native_list_append(v, ["अकाल", "adj", "अकाल", "", "", "", "unseasonable"]) + let v = native_list_append(v, ["गुरू", "adj", "गुरू", "", "", "", "masculine nominative/vocative/accusative dual"]) + let v = native_list_append(v, ["अन्तर", "adj", "अन्तर", "", "", "", "being in the"]) + let v = native_list_append(v, ["अनाथ", "adj", "अनाथ", "", "", "", "orphan fatherless parentless"]) + let v = native_list_append(v, ["अवश्य", "adj", "अवश्य", "", "", "", "inevitable not under"]) + let v = native_list_append(v, ["आज", "adj", "आज", "", "", "", "coming from or"]) + let v = native_list_append(v, ["आयु", "adj", "आयु", "", "", "", "living alive"]) + let v = native_list_append(v, ["आवश्यक", "adj", "आवश्यक", "", "", "", "necessary required"]) + let v = native_list_append(v, ["अक्षर", "adj", "अक्षर", "", "", "", "imperishable lasting"]) + let v = native_list_append(v, ["अधिक", "adj", "अधिकतर", "अधिकतम", "", "", "additional subsequent supernumerary"]) + let v = native_list_append(v, ["आश्चर्य", "adj", "आश्चर्य", "", "", "", "appearing rarely"]) + let v = native_list_append(v, ["उत्तर", "adj", "उत्तर", "", "", "", "upper higher loftier"]) + let v = native_list_append(v, ["दिन", "adj", "दिन", "", "", "", "cut divided mown"]) + let v = native_list_append(v, ["गम्भीर", "adj", "गम्भीर", "", "", "", "deep"]) + let v = native_list_append(v, ["गीत", "adj", "गीत", "", "", "", "sung chanted"]) + let v = native_list_append(v, ["गोद", "adj", "गोद", "", "", "", "giving cows or"]) + let v = native_list_append(v, ["बाल", "adj", "बाल", "", "", "", "childish immature"]) + let v = native_list_append(v, ["कष्ट", "adj", "कष्ट", "", "", "", "bad evil ill"]) + let v = native_list_append(v, ["उदार", "adj", "उदार", "", "", "", "noble"]) + let v = native_list_append(v, ["उदास", "adj", "उदास", "", "", "", "throwing out casting"]) + let v = native_list_append(v, ["जगत्", "adj", "जगत्", "", "", "", "moving moveable locomotive"]) + let v = native_list_append(v, ["नाथ", "adj", "नाथ", "", "", "", "possessed of occupied"]) + let v = native_list_append(v, ["चन्द्र", "adj", "चन्द्र", "", "", "", "glittering shining as"]) + let v = native_list_append(v, ["अमृता", "adj", "अमृता", "", "", "", "inflection of अमृत"]) + let v = native_list_append(v, ["वर्ष", "adj", "वर्ष", "", "", "", "raining"]) + let v = native_list_append(v, ["पागल", "adj", "पागल", "", "", "", "mad deranged demented"]) + let v = native_list_append(v, ["मन्त्रिन्", "adj", "मन्त्रिन्", "", "", "", "wise eloquent"]) + let v = native_list_append(v, ["उचित", "adj", "उचित", "", "", "", "delightful pleasurable agreeable"]) + let v = native_list_append(v, ["कठिन", "adj", "कठिन", "", "", "", "difficult"]) + let v = native_list_append(v, ["कमर", "adj", "कमर", "", "", "", "desirous wishing lustful"]) + let v = native_list_append(v, ["जङ्गल", "adj", "जङ्गल", "", "", "", "arid sterile desert"]) + let v = native_list_append(v, ["कार", "adj", "कार", "", "", "", "making doing working"]) + let v = native_list_append(v, ["दैव", "adj", "दैव", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["शाल", "adj", "शाल", "", "", "", "being in a"]) + let v = native_list_append(v, ["दीन", "adj", "दीन", "", "", "", "scarce scanty"]) + let v = native_list_append(v, ["परुष", "adj", "परुष", "", "", "", "spotted variegated dirty-colored"]) + let v = native_list_append(v, ["मर्दन", "adj", "मर्दन", "", "", "", "crushing grinding destroying"]) + let v = native_list_append(v, ["गौर", "adj", "गौर", "", "", "", "white yellowish reddish"]) + let v = native_list_append(v, ["पूर्ण", "adj", "पूर्ण", "", "", "", "full filled filled"]) + let v = native_list_append(v, ["मधु", "adj", "मधु", "", "", "", "sweet delicious pleasant"]) + let v = native_list_append(v, ["मानस", "adj", "मानस", "", "", "", "belonging to the"]) + let v = native_list_append(v, ["प्रभात", "adj", "प्रभात", "", "", "", "shone forth begun"]) + let v = native_list_append(v, ["उत्तम", "adj", "उत्तम", "", "", "", "uppermost highest most"]) + let v = native_list_append(v, ["पद्म", "adj", "पद्म", "", "", "", "lotus-coloured"]) + let v = native_list_append(v, ["नारायण", "adj", "नारायण", "", "", "", "of or pertaining"]) + let v = native_list_append(v, ["काम्बोज", "adj", "काम्बोज", "", "", "", "born in or"]) + let v = native_list_append(v, ["नाक", "adj", "नाक", "", "", "", "happy painless"]) + let v = native_list_append(v, ["भोजन", "adj", "भोजन", "", "", "", "feeding giving to"]) + let v = native_list_append(v, ["बहु", "adj", "बहु", "", "", "", "much many frequent"]) + let v = native_list_append(v, ["बुध्न", "adj", "बुध्न", "", "", "", "misspelling of बुध्न्य"]) + let v = native_list_append(v, ["दक्षिण", "adj", "दक्षिण", "", "", "", "right righthand located"]) + let v = native_list_append(v, ["दीर्घ", "adj", "द्राघीयस्", "द्राघिष्ठ", "", "", "long in space"]) + let v = native_list_append(v, ["चित्त", "adj", "चित्त", "", "", "", "noticed"]) + let v = native_list_append(v, ["मृत", "adj", "मृत", "", "", "", "dead deceased"]) + let v = native_list_append(v, ["कान्त", "adj", "कान्त", "", "", "", "desired"]) + let v = native_list_append(v, ["दारु", "adj", "दारु", "", "", "", "bursting breaking splitting"]) + let v = native_list_append(v, ["अर्जुन", "adj", "अर्जुन", "", "", "", "white clear bright"]) + let v = native_list_append(v, ["एड", "adj", "एड", "", "", "", "deaf"]) + let v = native_list_append(v, ["शर्वर", "adj", "शर्वर", "", "", "", "variegated spotted L."]) + let v = native_list_append(v, ["शिशिर", "adj", "शिशिर", "", "", "", "cool chilly cold"]) + let v = native_list_append(v, ["नभ्य", "adj", "नभ्य", "", "", "", "foggy"]) + let v = native_list_append(v, ["हरि", "adj", "हरि", "", "", "", "yellow or green"]) + let v = native_list_append(v, ["हिरण्य", "adj", "हिरण्य", "", "", "", "golden made of"]) + let v = native_list_append(v, ["घोर", "adj", "घोर", "", "", "", "terrific frightful terrible"]) + let v = native_list_append(v, ["राजन", "adj", "राजन", "", "", "", "belonging to a"]) + let v = native_list_append(v, ["अक्ष", "adj", "अक्ष", "", "", "", "eyed"]) + let v = native_list_append(v, ["लघु", "adj", "लघीयस्", "लघिष्ठ", "", "", "light quick swift"]) + let v = native_list_append(v, ["व्यञ्जन", "adj", "व्यञ्जन", "", "", "", "manifesting indicating"]) + let v = native_list_append(v, ["ह्रस्व", "adj", "ह्रस्व", "", "", "", "short small dwarfish"]) + let v = native_list_append(v, ["यातृ", "adj", "यातृ", "", "", "", "going travelling"]) + let v = native_list_append(v, ["भीम", "adj", "भीम", "", "", "", "fearful frightening terrific"]) + let v = native_list_append(v, ["बोधन", "adj", "बोधन", "", "", "", "causing to awake"]) + let v = native_list_append(v, ["जय", "adj", "जय", "", "", "", "conquering winning"]) + let v = native_list_append(v, ["कल", "adj", "कल", "", "", "", "indistinct dumb"]) + let v = native_list_append(v, ["ពុទ្ធ", "adj", "ពុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["वात", "adj", "वात", "", "", "", "attacked assailed injured"]) + let v = native_list_append(v, ["अल्प", "adj", "अल्प ीयस्", "अल्पिष्ठ", "", "", "small minute trifling"]) + let v = native_list_append(v, ["मह", "adj", "मह", "", "", "", "great large big"]) + let v = native_list_append(v, ["बृहत्", "adj", "बर्हीयस्", "बर्हि॑ष्ठ", "", "", "large great big"]) + let v = native_list_append(v, ["शिशु", "adj", "शिशु", "", "", "", "young infantine"]) + let v = native_list_append(v, ["श्रवण", "adj", "श्रवण", "", "", "", "limping lame"]) + let v = native_list_append(v, ["अंशक", "adj", "अंशक", "", "", "", "forming part"]) + let v = native_list_append(v, ["अंशुमत्", "adj", "अंशुमत्", "", "", "", "fibrous rich in"]) + let v = native_list_append(v, ["अंसल", "adj", "अंसल", "", "", "", "lusty"]) + let v = native_list_append(v, ["अकनिष्ठ", "adj", "अकनिष्ठ", "", "", "", "of whom none"]) + let v = native_list_append(v, ["अकम्प्य", "adj", "अकम्प्य", "", "", "", "not to be"]) + let v = native_list_append(v, ["अकर्मन्", "adj", "अकर्मन्", "", "", "", "not working"]) + let v = native_list_append(v, ["अकर्मक", "adj", "अकर्मक", "", "", "", "intransitive"]) + let v = native_list_append(v, ["अकाम", "adj", "अकाम", "", "", "", "without desire or"]) + let v = native_list_append(v, ["अकारण", "adj", "अकारण", "", "", "", "causeless"]) + let v = native_list_append(v, ["अकार्य", "adj", "अकार्य", "", "", "", "not to be"]) + let v = native_list_append(v, ["अकिञ्चन", "adj", "अकिञ्चन", "", "", "", "without anything utterly"]) + let v = native_list_append(v, ["अकीर्तिकर", "adj", "अकीर्तिकर", "", "", "", "causing disgrace disparaging"]) + let v = native_list_append(v, ["अकूपार", "adj", "अकूपार", "", "", "", "unbounded"]) + let v = native_list_append(v, ["अकृत", "adj", "अकृत", "", "", "", "undone not committed"]) + let v = native_list_append(v, ["अकृतार्थ", "adj", "अकृतार्थ", "", "", "", "having ones objective"]) + let v = native_list_append(v, ["अकृत्य", "adj", "अकृत्य", "", "", "", "not to be"]) + let v = native_list_append(v, ["अकृष्ट", "adj", "अकृष्ट", "", "", "", "unploughed untilled"]) + let v = native_list_append(v, ["अकेश", "adj", "अकेश", "", "", "", "hairless"]) + let v = native_list_append(v, ["अक्त", "adj", "अक्त", "", "", "", "driven"]) + let v = native_list_append(v, ["अक्रूर", "adj", "अक्रूर", "", "", "", "not cruel gentle"]) + let v = native_list_append(v, ["अक्लिष्ट", "adj", "अक्लिष्ट", "", "", "", "untroubled"]) + let v = native_list_append(v, ["अक्षम", "adj", "अक्षम", "", "", "", "unable to endure"]) + let v = native_list_append(v, ["अक्षय", "adj", "अक्षय", "", "", "", "exempt from decay"]) + let v = native_list_append(v, ["अक्षय्य", "adj", "अक्षय्य", "", "", "", "undecaying"]) + let v = native_list_append(v, ["अक्षार", "adj", "अक्षार", "", "", "", "free from alkali"]) + let v = native_list_append(v, ["अक्षोभ्य", "adj", "अक्षोभ्य", "", "", "", "immovable imperturbable"]) + let v = native_list_append(v, ["अखण्ड", "adj", "अखण्ड", "", "", "", "not fragmentary entire"]) + let v = native_list_append(v, ["अखिल", "adj", "अखिल", "", "", "", "without a gap"]) + let v = native_list_append(v, ["अग", "adj", "अग", "", "", "", "unable to walk"]) + let v = native_list_append(v, ["अगद", "adj", "अगद", "", "", "", "free from disease"]) + let v = native_list_append(v, ["अगम्य", "adj", "अगम्य", "", "", "", "unfit to be"]) + let v = native_list_append(v, ["अगाध", "adj", "अगाध", "", "", "", "not shallow deep"]) + let v = native_list_append(v, ["अगुण", "adj", "अगुण", "", "", "", "destitute of qualities"]) + let v = native_list_append(v, ["अगुरु", "adj", "अगुरु", "", "", "", "not heavy light"]) + let v = native_list_append(v, ["वीर", "adj", "वीर", "", "", "", "heroic powerful strong"]) + let v = native_list_append(v, ["अग्निचित्", "adj", "अग्निचित्", "", "", "", "arranging the sacrificial"]) + let v = native_list_append(v, ["वायु", "adj", "वायु", "", "", "", "tired languid"]) + let v = native_list_append(v, ["धेनु", "adj", "धेनु", "", "", "", "milch yielding or"]) + let v = native_list_append(v, ["पाप", "adj", "पाप", "", "", "", "bad vicious wicked"]) + let v = native_list_append(v, ["प्रबुध्", "adj", "प्रबुध्", "", "", "", "watchful attentive"]) + let v = native_list_append(v, ["सुदृश्", "adj", "सुदृश्", "", "", "", "keen-sighted"]) + let v = native_list_append(v, ["अद्रुह्", "adj", "अद्रुह्", "", "", "", "free from malice"]) + let v = native_list_append(v, ["वेदविद्", "adj", "वेदविद्", "", "", "", "knowing the Veda"]) + let v = native_list_append(v, ["वृत्रहन्", "adj", "वृत्रहन्", "", "", "", "killing enemies or"]) + let v = native_list_append(v, ["उपस्थसद्", "adj", "उपस्थसद्", "", "", "", "sitting in the"]) + let v = native_list_append(v, ["प्रजाकाम", "adj", "प्रजाकाम", "", "", "", "desirous of offspring"]) + let v = native_list_append(v, ["सभार्य", "adj", "सभार्य", "", "", "", "with a wife"]) + let v = native_list_append(v, ["आर्य", "adj", "आर्य", "", "", "", "Indo-Aryan pertaining to"]) + let v = native_list_append(v, ["अर्भ", "adj", "अर्भ", "", "", "", "little small unimportant"]) + let v = native_list_append(v, ["अंहु", "adj", "अंहु", "", "", "", "narrow"]) + let v = native_list_append(v, ["श्री", "adj", "श्रेयस्", "श्रेष्ठ", "", "", "diffusing light or"]) + let v = native_list_append(v, ["बहुव्रीहि", "adj", "बहुव्रीहि", "", "", "", "possessing much rice"]) + let v = native_list_append(v, ["अमल", "adj", "अमल", "", "", "", "spotless stainless immaculate"]) + let v = native_list_append(v, ["आशु", "adj", "आशु", "", "", "", "fast quick swift"]) + let v = native_list_append(v, ["वादा", "adj", "वादा", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["पुराण", "adj", "पुराण", "", "", "", "belonging to ancient"]) + let v = native_list_append(v, ["गभस्ति", "adj", "गभस्ति", "", "", "", "shining fork-like double-edged"]) + let v = native_list_append(v, ["ऋक्ष", "adj", "ऋक्ष", "", "", "", "bald bare"]) + let v = native_list_append(v, ["नव", "adj", "नव", "", "", "", "new fresh recent"]) + let v = native_list_append(v, ["अजिर", "adj", "अजिर", "", "", "", "agile quick rapid"]) + let v = native_list_append(v, ["पलित", "adj", "पलित", "", "", "", "grey hoary old"]) + let v = native_list_append(v, ["पृथु", "adj", "पृथु", "", "", "", "broad wide expansive"]) + let v = native_list_append(v, ["पृषत्", "adj", "पृषत्", "", "", "", "spotted speckled"]) + let v = native_list_append(v, ["प्रथम", "adj", "प्रथम", "", "", "", "foremost first in"]) + let v = native_list_append(v, ["पूर", "adj", "पूर", "", "", "", "filling making full"]) + let v = native_list_append(v, ["पुलस्ति", "adj", "पुलस्ति", "", "", "", "wearing the hair"]) + let v = native_list_append(v, ["भट्ट", "adj", "भट्ट", "", "", "", "venerable"]) + let v = native_list_append(v, ["ब्राह्मण", "adj", "ब्राह्मण", "", "", "", "relating to or"]) + let v = native_list_append(v, ["ऋत", "adj", "ऋत", "", "", "", "proper right fit"]) + let v = native_list_append(v, ["तोयज", "adj", "तोयज", "", "", "", "water-born"]) + let v = native_list_append(v, ["तनु", "adj", "तनु", "", "", "", "thin slender attenuated"]) + let v = native_list_append(v, ["तपु", "adj", "तपु", "", "", "", "burning hot"]) + let v = native_list_append(v, ["रिशादस्", "adj", "रिशादस्", "", "", "", "benign ? or"]) + let v = native_list_append(v, ["तरु", "adj", "तरु", "", "", "", "quick"]) + let v = native_list_append(v, ["उदात्त", "adj", "उदात्त", "", "", "", "lifted upraised lofty"]) + let v = native_list_append(v, ["अनुदात्त", "adj", "अनुदात्त", "", "", "", "not raised not"]) + let v = native_list_append(v, ["स्वरित", "adj", "स्वरित", "", "", "", "caused to sound"]) + let v = native_list_append(v, ["कल्य", "adj", "कल्य", "", "", "", "well healthy free"]) + let v = native_list_append(v, ["कल्ल", "adj", "कल्ल", "", "", "", "deaf"]) + let v = native_list_append(v, ["सकर्मक", "adj", "सकर्मक", "", "", "", "effective having consequences"]) + let v = native_list_append(v, ["प्रथमम्", "adj", "प्रथमम्", "", "", "", "inflection of प्रथम"]) + let v = native_list_append(v, ["मन्दर", "adj", "मन्दर", "", "", "", "slow tardy sluggish"]) + let v = native_list_append(v, ["जाङ्गल", "adj", "जाङ्गल", "", "", "", "arid sparingly grown"]) + let v = native_list_append(v, ["ऊर्ध्व", "adj", "ऊर्ध्व", "", "", "", "rising or tending"]) + let v = native_list_append(v, ["अपर", "adj", "अपर", "", "", "", "posterior later latter"]) + let v = native_list_append(v, ["पृदाकुसानु", "adj", "पृदाकुसानु", "", "", "", "having a surface"]) + let v = native_list_append(v, ["ब्राह्म", "adj", "ब्राह्म", "", "", "", "relating to Brahma"]) + let v = native_list_append(v, ["मल", "adj", "मल", "", "", "", "dirty"]) + let v = native_list_append(v, ["युवन्", "adj", "यवीयस्", "यविष्ठ", "", "", "young youthful adult"]) + let v = native_list_append(v, ["मनु", "adj", "मनु", "", "", "", "thinking wise intelligent"]) + let v = native_list_append(v, ["राम", "adj", "राम", "", "", "", "dark dark-coloured black"]) + let v = native_list_append(v, ["शिव", "adj", "शिव", "", "", "", "auspicious favourable kind"]) + let v = native_list_append(v, ["उद्गूर्ण", "adj", "उद्गूर्ण", "", "", "", "raised lifted held"]) + let v = native_list_append(v, ["राज्य", "adj", "राज्य", "", "", "", "kingly princely royal"]) + let v = native_list_append(v, ["लोह", "adj", "लोह", "", "", "", "red reddish copper-coloured"]) + let v = native_list_append(v, ["वैश्य", "adj", "वैश्य", "", "", "", "belonging to a"]) + let v = native_list_append(v, ["सकृत्", "adj", "सकृत्", "", "", "", "acting at once"]) + let v = native_list_append(v, ["सहस्र", "adj", "सहस्र", "", "", "", "a thousandth or"]) + let v = native_list_append(v, ["नवोदय", "adj", "नवोदय", "", "", "", "newly risen moon"]) + let v = native_list_append(v, ["नवोदित", "adj", "नवोदित", "", "", "", "newly risen sun"]) + let v = native_list_append(v, ["सन", "adj", "सन्यस्", "", "", "", "old ancient"]) + let v = native_list_append(v, ["सुवर्ण", "adj", "सुवर्ण", "", "", "", "of a good"]) + let v = native_list_append(v, ["विष", "adj", "विष", "", "", "", "poisonous"]) + let v = native_list_append(v, ["तनूज", "adj", "तनूज", "", "", "", "produced or born"]) + let v = native_list_append(v, ["नाग", "adj", "नाग", "", "", "", "formed of snakes"]) + let v = native_list_append(v, ["सांख्य", "adj", "सांख्य", "", "", "", "numeral relating to"]) + let v = native_list_append(v, ["तप", "adj", "तप", "", "", "", "consuming by heat"]) + let v = native_list_append(v, ["शरण", "adj", "शरण", "", "", "", "protecting guarding defending"]) + let v = native_list_append(v, ["सिद्धार्थ", "adj", "सिद्धार्थ", "", "", "", "reached a goal"]) + let v = native_list_append(v, ["वसु", "adj", "वस्यस्", "वसिष्ठ", "", "", "excellent good beneficent"]) + let v = native_list_append(v, ["साधन", "adj", "साधन", "", "", "", "leading straight to"]) + let v = native_list_append(v, ["साधु", "adj", "साधु", "", "", "", "straight right"]) + let v = native_list_append(v, ["साधार", "adj", "साधार", "", "", "", "having a support"]) + let v = native_list_append(v, ["साधारण", "adj", "साधारण", "", "", "", "common ordinary"]) + let v = native_list_append(v, ["साध्य", "adj", "साध्य", "", "", "", "relating to the"]) + let v = native_list_append(v, ["सहित", "adj", "सहित", "", "", "", "joined conjoined united"]) + let v = native_list_append(v, ["विपक्ष", "adj", "विपक्ष", "", "", "", "deprived of wings"]) + let v = native_list_append(v, ["सार", "adj", "सार", "", "", "", "driving away destroying"]) + let v = native_list_append(v, ["आहार", "adj", "आहार", "", "", "", "bringing near procuring"]) + let v = native_list_append(v, ["समर्थ", "adj", "समर्थ", "", "", "", "having a similar"]) + let v = native_list_append(v, ["सहाय", "adj", "सहाय", "", "", "", "along with clarified"]) + let v = native_list_append(v, ["ऋष्व", "adj", "ऋष्व", "", "", "", "elevated high"]) + let v = native_list_append(v, ["हर", "adj", "हर", "", "", "", "bearing wearing taking"]) + let v = native_list_append(v, ["मिथुन", "adj", "मिथुन", "", "", "", "paired forming a"]) + let v = native_list_append(v, ["वृषभ", "adj", "वृषभ", "", "", "", "manly mighty vigorous"]) + let v = native_list_append(v, ["चूर्ण", "adj", "चूर्ण", "", "", "", "minute"]) + let v = native_list_append(v, ["प्रान्त", "adj", "प्रान्त", "", "", "", "dwelling near the"]) + let v = native_list_append(v, ["वसति", "adj", "वसति", "", "", "", "dwelling abiding"]) + let v = native_list_append(v, ["तुच्छ", "adj", "तुच्छ", "", "", "", "empty vain small"]) + let v = native_list_append(v, ["स्वश्व", "adj", "स्वश्व", "", "", "", "having excellent horses"]) + let v = native_list_append(v, ["ऋतावन्", "adj", "ऋतावन्", "", "", "", "keeping within the"]) + let v = native_list_append(v, ["सूत", "adj", "सूत", "", "", "", "urged impelled"]) + let v = native_list_append(v, ["शिष्ट", "adj", "शिष्ट", "", "", "", "left remaining escaped"]) + let v = native_list_append(v, ["विद्युत्", "adj", "विद्युत्", "", "", "", "flashing shining glittering"]) + let v = native_list_append(v, ["घृत", "adj", "घृत", "", "", "", "sprinkled"]) + let v = native_list_append(v, ["स्वेद", "adj", "स्वेद", "", "", "", "sweating perspiring toiling"]) + let v = native_list_append(v, ["मण्डल", "adj", "मण्डल", "", "", "", "circular round"]) + let v = native_list_append(v, ["पवमान", "adj", "पवमान", "", "", "", "being purified or"]) + let v = native_list_append(v, ["काल", "adj", "काल", "", "", "", "black dark blue"]) + let v = native_list_append(v, ["वैश्वानर", "adj", "वैश्वानर", "", "", "", "relating or belonging"]) + let v = native_list_append(v, ["रोच", "adj", "रोच", "", "", "", "shining radiant"]) + let v = native_list_append(v, ["रुचि", "adj", "रुचि", "", "", "", "pleasant agreeable ="]) + let v = native_list_append(v, ["कनीन", "adj", "कनीयस्", "कनिष्ठ", "", "", "young youthful"]) + let v = native_list_append(v, ["रुधिर", "adj", "रुधिर", "", "", "", "red blood-red bloody"]) + let v = native_list_append(v, ["सा", "adj", "सा", "", "", "", "giving bestowing granting"]) + let v = native_list_append(v, ["दुर्जन", "adj", "दुर्जन", "", "", "", "malicious wicked"]) + let v = native_list_append(v, ["जीवित", "adj", "जीवित", "", "", "", "living"]) + let v = native_list_append(v, ["जुष्ट", "adj", "जुष्ट", "", "", "", "pleased propitious"]) + let v = native_list_append(v, ["ದೇವ", "adj", "ದೇವ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["मैत्रेय", "adj", "मैत्रेय", "", "", "", "friendly benevolent MBh."]) + let v = native_list_append(v, ["मृदु", "adj", "म्रदीयस्", "म्रदिष्ठ", "", "", "soft delicate tender"]) + let v = native_list_append(v, ["पुरु", "adj", "पुरु", "पुरुतम", "", "", "much many abundant"]) + let v = native_list_append(v, ["अन्त", "adj", "अन्त", "", "", "", "near"]) + let v = native_list_append(v, ["सुम्न", "adj", "सुम्न", "", "", "", "benevolent kind gracious"]) + let v = native_list_append(v, ["रक्त", "adj", "रक्त", "", "", "", "red"]) + let v = native_list_append(v, ["सङ्गीत", "adj", "सङ्गीत", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["सुन्दर", "adj", "सुन्दर", "", "", "", "beautiful handsome lovely"]) + let v = native_list_append(v, ["श्वान", "adj", "श्वान", "", "", "", "relating to or"]) + let v = native_list_append(v, ["संजय", "adj", "संजय", "", "", "", "completely victorious triumphant"]) + let v = native_list_append(v, ["सञ्जय", "adj", "सञ्जय", "", "", "", "pronunciation spelling of"]) + let v = native_list_append(v, ["कामुक", "adj", "कामुक", "", "", "", "wishing for desiring"]) + let v = native_list_append(v, ["काली", "adj", "काली", "", "", "", "feminine of काल"]) + let v = native_list_append(v, ["मार्ग", "adj", "मार्ग", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["सुलभ", "adj", "सुलभ", "", "", "", "easy to be"]) + let v = native_list_append(v, ["सम", "adj", "सम", "", "", "", "same equal alike"]) + let v = native_list_append(v, ["करण", "adj", "करण", "", "", "", "doing making effecting"]) + let v = native_list_append(v, ["शुभ", "adj", "शुभ", "", "", "", "splendid bright beautiful"]) + let v = native_list_append(v, ["अशुभ", "adj", "अशुभ", "", "", "", "dirty foul inauspicious"]) + let v = native_list_append(v, ["चतुरङ्ग", "adj", "चतुरङ्ग", "", "", "", "having 4 limbs"]) + let v = native_list_append(v, ["बोधि", "adj", "बोधि", "", "", "", "learned wise Uṇ."]) + let v = native_list_append(v, ["श्याम", "adj", "श्याम", "", "", "", "black dark-coloured dark"]) + let v = native_list_append(v, ["विमान", "adj", "विमान", "", "", "", "measuring out traversing"]) + let v = native_list_append(v, ["वर", "adj", "वर", "", "", "", "choosing"]) + let v = native_list_append(v, ["शोभित", "adj", "शोभित", "", "", "", "beautiful lovely"]) + let v = native_list_append(v, ["श्रमण", "adj", "श्रमण", "", "", "", "making effort or"]) + let v = native_list_append(v, ["ऐतिहासिक", "adj", "ऐतिहासिक", "", "", "", "derived from ancient"]) + let v = native_list_append(v, ["प्रमुख", "adj", "प्रमुख", "", "", "", "turning the face"]) + let v = native_list_append(v, ["शाब्दिक", "adj", "शाब्दिक", "", "", "", "sonorous uttering a"]) + let v = native_list_append(v, ["लैङ्गिक", "adj", "लैङ्गिक", "", "", "", "based upon a"]) + let v = native_list_append(v, ["शारीरिक", "adj", "शारीरिक", "", "", "", "relating to the"]) + let v = native_list_append(v, ["रहस्य", "adj", "रहस्य", "", "", "", "secret private clandestine"]) + let v = native_list_append(v, ["સંસ્કૃત", "adj", "સંસ્કૃત", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["समाचार", "adj", "समाचार", "", "", "", "equal or similar"]) + let v = native_list_append(v, ["अद्भुत", "adj", "अद्भुत", "", "", "", "extraordinary supernatural wonderful"]) + let v = native_list_append(v, ["ভারত", "adj", "ভারত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["जल", "adj", "जल", "", "", "", "stupid unintelligent dumb"]) + let v = native_list_append(v, ["सहोदर", "adj", "सहोदर", "", "", "", "co-uterine from the"]) + let v = native_list_append(v, ["प्राथमिक", "adj", "प्राथमिक", "", "", "", "belonging or relating"]) + let v = native_list_append(v, ["वास्तव", "adj", "वास्तव", "", "", "", "substantial real true"]) + let v = native_list_append(v, ["उक्त", "adj", "उक्त", "", "", "", "uttered said spoken"]) + let v = native_list_append(v, ["अर्हत्", "adj", "अर्हत्", "", "", "", "deserving entitled to"]) + let v = native_list_append(v, ["वज्र", "adj", "वज्र", "", "", "", "adamantine hard impenetrable"]) + let v = native_list_append(v, ["वृत्त", "adj", "वृत्त", "", "", "", "Turned set in"]) + let v = native_list_append(v, ["अन्ताराष्ट्रिय", "adj", "अन्ताराष्ट्रिय", "", "", "", "international"]) + let v = native_list_append(v, ["शारद", "adj", "शारद", "", "", "", "autumnal"]) + let v = native_list_append(v, ["आप्त्य", "adj", "आप्त्य", "", "", "", "watery"]) + let v = native_list_append(v, ["रक्षोहन्", "adj", "रक्षोहन्", "", "", "", "rakshasa-slaying demon-smasher"]) + let v = native_list_append(v, ["अदिति", "adj", "अदिति", "", "", "", "unbound"]) + let v = native_list_append(v, ["अगोह्य", "adj", "अगोह्य", "", "", "", "uncovered bright"]) + let v = native_list_append(v, ["कामदुह्", "adj", "कामदुह्", "", "", "", "granting wishes"]) + let v = native_list_append(v, ["पुरंधि", "adj", "पुरंधि", "", "", "", "bountiful fruitful"]) + let v = native_list_append(v, ["ब्रह्मोद्य", "adj", "ब्रह्मोद्य", "", "", "", "relating to theological"]) + let v = native_list_append(v, ["सूक्त", "adj", "सूक्त", "", "", "", "well spoken or"]) + let v = native_list_append(v, ["असत्", "adj", "असत्", "", "", "", "non-existent unreal"]) + let v = native_list_append(v, ["विराज्", "adj", "विराज्", "", "", "", "ruler chief sovereign"]) + let v = native_list_append(v, ["पारग", "adj", "पारग", "", "", "", "crossing over to"]) + let v = native_list_append(v, ["हिमवत्", "adj", "हिमवत्", "", "", "", "snowy icy"]) + let v = native_list_append(v, ["अश्वत्थ", "adj", "अश्वत्थ", "", "", "", "relating to the"]) + let v = native_list_append(v, ["पुरुषाद्", "adj", "पुरुषाद्", "", "", "", "man-eating"]) + let v = native_list_append(v, ["महिष", "adj", "महीयस्", "महिष्ठ", "", "", "great powerful"]) + let v = native_list_append(v, ["वानर", "adj", "वानर", "", "", "", "belonging to an"]) + let v = native_list_append(v, ["अनार्य", "adj", "अनार्य", "", "", "", "not honorable or"]) + let v = native_list_append(v, ["ऋण", "adj", "ऋण", "", "", "", "going flying fugitive"]) + let v = native_list_append(v, ["अरित्र", "adj", "अरित्र", "", "", "", "propelling driving"]) + let v = native_list_append(v, ["धूर्त", "adj", "धूर्त", "", "", "", "cunning crafty fraudulent"]) + let v = native_list_append(v, ["दशत्", "adj", "दशत्", "", "", "", "consisting of ten"]) + let v = native_list_append(v, ["धार्मिक", "adj", "धार्मिक", "", "", "", "righteous virtuous"]) + let v = native_list_append(v, ["अमर", "adj", "अमर", "", "", "", "undying immortal imperishable"]) + let v = native_list_append(v, ["खिल", "adj", "खिल", "", "", "", "insufficient lacking BhP."]) + let v = native_list_append(v, ["ईशान", "adj", "ईशान", "", "", "", "owning possessing"]) + let v = native_list_append(v, ["आथर्वण", "adj", "आथर्वण", "", "", "", "of or relating"]) + let v = native_list_append(v, ["अथर्वाङ्गिरस", "adj", "अथर्वाङ्गिरस", "", "", "", "of or relating"]) + let v = native_list_append(v, ["भेषज", "adj", "भेषज", "", "", "", "curative healing sanative"]) + let v = native_list_append(v, ["यातुविद्", "adj", "यातुविद्", "", "", "", "skilled in sorcery"]) + let v = native_list_append(v, ["बह्वृच", "adj", "बह्वृच", "", "", "", "containing many verses"]) + let v = native_list_append(v, ["सवन", "adj", "सवन", "", "", "", "together with woods"]) + let v = native_list_append(v, ["विधान", "adj", "विधान", "", "", "", "disposing arranging regulating"]) + let v = native_list_append(v, ["पुरोहित", "adj", "पुरोहित", "", "", "", "placed in front"]) + let v = native_list_append(v, ["ধার্মিক", "adj", "ধার্মিক", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ધાર્મિક", "adj", "ધાર્મિક", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["सद्", "adj", "सद्", "", "", "", "sitting or dwelling"]) + let v = native_list_append(v, ["द्वादशाह", "adj", "द्वादशाह", "", "", "", "lasting twelve days"]) + let v = native_list_append(v, ["अग्निहोत्र", "adj", "अग्निहोत्र", "", "", "", "sacrificing to Agni"]) + let v = native_list_append(v, ["नाचिकेत", "adj", "नाचिकेत", "", "", "", "of or relating"]) + let v = native_list_append(v, ["मध्यम", "adj", "मध्यम", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["प्रतिबुद्ध", "adj", "प्रतिबुद्ध", "", "", "", "awakened awake RV."]) + let v = native_list_append(v, ["मायिन्", "adj", "मायिन्", "", "", "", "deceptive guileful illusory"]) + let v = native_list_append(v, ["देवयान", "adj", "देवयान", "", "", "", "longing for the"]) + let v = native_list_append(v, ["पितृयाण", "adj", "पितृयाण", "", "", "", "leading to the"]) + let v = native_list_append(v, ["प्रज्ञा", "adj", "प्रज्ञा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["प्रज्ञात्मन्", "adj", "प्रज्ञात्मन्", "", "", "", "one whose nature"]) + let v = native_list_append(v, ["সংস্কৃত", "adj", "সংস্কৃত", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["मुण्ड", "adj", "मुण्ड", "", "", "", "shaved bald having"]) + let v = native_list_append(v, ["वैतान", "adj", "वैतान", "", "", "", "of or relating"]) + let v = native_list_append(v, ["चातुर्मास्य", "adj", "चातुर्मास्य", "", "", "", "of or relating"]) + let v = native_list_append(v, ["आवसथ्य", "adj", "आवसथ्य", "", "", "", "in a house"]) + let v = native_list_append(v, ["वैवाहिक", "adj", "वैवाहिक", "", "", "", "nuptial treating of"]) + let v = native_list_append(v, ["शर्मन्", "adj", "शर्मन्", "", "", "", "happy prosperous W."]) + let v = native_list_append(v, ["गुप्त", "adj", "गुप्त", "", "", "", "guarded protected"]) + let v = native_list_append(v, ["तर्पण", "adj", "तर्पण", "", "", "", "satisfying Suśr."]) + let v = native_list_append(v, ["बलि", "adj", "बलि", "", "", "", "neuter nominative singular"]) + let v = native_list_append(v, ["অন্ধ", "adj", "অন্ধ", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["पार्वण", "adj", "पार्वण", "", "", "", "relating to or"]) + let v = native_list_append(v, ["सामयाचारिक", "adj", "सामयाचारिक", "", "", "", "relating to conventional"]) + let v = native_list_append(v, ["गृह्य", "adj", "गृह्य", "", "", "", "to be grasped"]) + let v = native_list_append(v, ["वृषन्", "adj", "वृषन्", "", "", "", "manly powerful strong"]) + let v = native_list_append(v, ["वचन", "adj", "वचन", "", "", "", "speaking"]) + let v = native_list_append(v, ["प्रतीक", "adj", "प्रतीक", "", "", "", "turned towards"]) + let v = native_list_append(v, ["কৃষ্ণ", "adj", "কৃষ্ণ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["अष्टक", "adj", "अष्टक", "", "", "", "having eight parts"]) + let v = native_list_append(v, ["माधवीय", "adj", "माधवीय", "", "", "", "of or relating"]) + let v = native_list_append(v, ["स्वयंवर", "adj", "स्वयंवर", "", "", "", "choosing for ones"]) + let v = native_list_append(v, ["गौड", "adj", "गौड", "", "", "", "made of sugar"]) + let v = native_list_append(v, ["वैदर्भ", "adj", "वैदर्भ", "", "", "", "of or relating"]) + let v = native_list_append(v, ["आर्ष", "adj", "आर्ष", "", "", "", "of or relating"]) + let v = native_list_append(v, ["रूपक", "adj", "रूपक", "", "", "", "having form figurative"]) + let v = native_list_append(v, ["नाटक", "adj", "नाटक", "", "", "", "acting dancing W."]) + let v = native_list_append(v, ["विदूषक", "adj", "विदूषक", "", "", "", "disgraceful defiling BhP."]) + let v = native_list_append(v, ["नाटिका", "adj", "नाटिका", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["अदृष्ट", "adj", "अदृष्ट", "", "", "", "unseen invisible"]) + let v = native_list_append(v, ["विराट्", "adj", "विराट्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["प्रधान", "adj", "प्रधान", "", "", "", "chief foremost most"]) + let v = native_list_append(v, ["रमण", "adj", "रमण", "", "", "", "pleasing charming delightful"]) + let v = native_list_append(v, ["दत्तक", "adj", "दत्तक", "", "", "", "adopted given"]) + let v = native_list_append(v, ["प्राचीन", "adj", "प्राचीन", "", "", "", "facing the east"]) + let v = native_list_append(v, ["वाद", "adj", "वाद", "", "", "", "speaking saying"]) + let v = native_list_append(v, ["महान्", "adj", "महान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["महत्तम", "adj", "महत्तम", "", "", "", "greatest"]) + let v = native_list_append(v, ["वाहन", "adj", "वाहन", "", "", "", "carrying drawing conveying"]) + let v = native_list_append(v, ["पूर्व", "adj", "पूर्व", "", "", "", "ancient old"]) + let v = native_list_append(v, ["प्रसिद्ध", "adj", "प्रसिद्ध", "", "", "", "brought about accomplished"]) + let v = native_list_append(v, ["सिद्ध", "adj", "सिद्ध", "", "", "", "proven"]) + let v = native_list_append(v, ["हरित्", "adj", "हरित्", "", "", "", "pale yellow pale"]) + let v = native_list_append(v, ["परा", "adj", "परा", "", "", "", "feminine singular nominative"]) + let v = native_list_append(v, ["अपरा", "adj", "अपरा", "", "", "", "feminine singular nominative"]) + let v = native_list_append(v, ["विशेष", "adj", "विशेष", "", "", "", "extraordinary abundant"]) + let v = native_list_append(v, ["घृणित", "adj", "घृणित", "", "", "", "hated"]) + let v = native_list_append(v, ["विजय", "adj", "विजय", "", "", "", "leading to victory"]) + let v = native_list_append(v, ["भाग्य", "adj", "भाग्य", "", "", "", "divisible"]) + let v = native_list_append(v, ["पूरक", "adj", "पूरक", "", "", "", "supplementary"]) + let v = native_list_append(v, ["सम्पूरक", "adj", "सम्पूरक", "", "", "", "complementary"]) + let v = native_list_append(v, ["सुगम", "adj", "सुगम", "", "", "", "accessible convenient"]) + let v = native_list_append(v, ["दुर्लभ", "adj", "दुर्लभतर", "", "", "", "difficult to be"]) + let v = native_list_append(v, ["निर्धन", "adj", "निर्धन", "", "", "", "poor"]) + let v = native_list_append(v, ["प्राच्य", "adj", "प्राच्य", "", "", "", "of the east"]) + let v = native_list_append(v, ["उच्च", "adj", "उच्च", "", "", "", "high elevated"]) + let v = native_list_append(v, ["सावधान", "adj", "सावधान", "", "", "", "careful"]) + let v = native_list_append(v, ["उच्चारण", "adj", "उच्चारण", "", "", "", "making audible"]) + let v = native_list_append(v, ["क्षत्रिय", "adj", "क्षत्रिय", "", "", "", "governing endowed with"]) + let v = native_list_append(v, ["सप्तम", "adj", "सप्तम", "", "", "", "seventh"]) + let v = native_list_append(v, ["षष्ठ", "adj", "षष्ठ", "", "", "", "sixth"]) + let v = native_list_append(v, ["आरोग्य", "adj", "आरोग्य", "", "", "", "healthy giving health"]) + let v = native_list_append(v, ["उन्मत्त", "adj", "उन्मत्त", "", "", "", "drunk intoxicated"]) + let v = native_list_append(v, ["महत्", "adj", "महीयस्", "महिष्ठ", "", "", "great large big"]) + let v = native_list_append(v, ["ဗုဒ္ဓ", "adj", "ဗုဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဇလ", "adj", "ဇလ", "", "", "", ""]) + let v = native_list_append(v, ["महा", "adj", "महा", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["महात्मा", "adj", "महात्मा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["महात्मन्", "adj", "महात्मन्", "", "", "", "having a great"]) + let v = native_list_append(v, ["भक्त", "adj", "भक्त", "", "", "", "distributed assigned allotted"]) + let v = native_list_append(v, ["ऊर्ध्वलिङ्ग", "adj", "ऊर्ध्वलिङ्ग", "", "", "", "having an erect"]) + let v = native_list_append(v, ["अज्ञात", "adj", "अज्ञात", "", "", "", "unknown unrecognised"]) + let v = native_list_append(v, ["भारी", "adj", "भारी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["भूत", "adj", "भूत", "", "", "", "become been"]) + let v = native_list_append(v, ["स्वागत", "adj", "स्वागत", "", "", "", "welcome"]) + let v = native_list_append(v, ["जीवन", "adj", "जीवन", "", "", "", "vivifying giving life"]) + let v = native_list_append(v, ["प्रमत्त", "adj", "प्रमत्त", "", "", "", "tipsy"]) + let v = native_list_append(v, ["मत्त", "adj", "मत्त", "", "", "", "intoxicated drunk inebriated"]) + let v = native_list_append(v, ["मद्य", "adj", "मद्य", "", "", "", "intoxicating exhilarating gladdening"]) + let v = native_list_append(v, ["प्रसन्न", "adj", "प्रसन्न", "", "", "", "happy cheerful"]) + let v = native_list_append(v, ["खिन्न", "adj", "खिन्न", "", "", "", "sad depressed"]) + let v = native_list_append(v, ["चित्र", "adj", "चित्र", "", "", "", "bright conspicuous visible"]) + let v = native_list_append(v, ["శ్రీ", "adj", "శ్రీ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["मुक्त", "adj", "मुक्त", "", "", "", "discharged abandoned"]) + let v = native_list_append(v, ["स्वतन्त्र", "adj", "स्वतन्त्र", "", "", "", "free"]) + let v = native_list_append(v, ["प्रारम्भिक", "adj", "प्रारम्भिक", "", "", "", "elementary"]) + let v = native_list_append(v, ["दृढ", "adj", "दृढ", "", "", "", "steadfast firm rigid"]) + let v = native_list_append(v, ["धनी", "adj", "धनी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["धनिक", "adj", "धनिक", "", "", "", "wealth rich"]) + let v = native_list_append(v, ["कुपित", "adj", "कुपित", "", "", "", "irritated angry"]) + let v = native_list_append(v, ["शून्य", "adj", "शून्य", "", "", "", "blank deserted"]) + let v = native_list_append(v, ["पुल्ल", "adj", "पुल्ल", "", "", "", "inflated expanded"]) + let v = native_list_append(v, ["फुल्ल", "adj", "फुल्ल", "", "", "", "split or cleft"]) + let v = native_list_append(v, ["దేవ", "adj", "దేవ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["कोमल", "adj", "कोमल", "", "", "", "tender delicate soft"]) + let v = native_list_append(v, ["सरल", "adj", "सरल", "", "", "", "running on straight"]) + let v = native_list_append(v, ["मर्द", "adj", "मर्द", "", "", "", "crushing grinding rubbing"]) + let v = native_list_append(v, ["आहत", "adj", "आहत", "", "", "", "hurt"]) + let v = native_list_append(v, ["स्वस्थ", "adj", "स्वस्थ", "", "", "", "healthy healthful"]) + let v = native_list_append(v, ["रोचक", "adj", "रोचक", "", "", "", "brightening enlightening interesting"]) + let v = native_list_append(v, ["नास्तिक", "adj", "नास्तिक", "", "", "", "atheistical"]) + let v = native_list_append(v, ["केवल", "adj", "केवल", "", "", "", "exclusively one’s one"]) + let v = native_list_append(v, ["स्वर्ग", "adj", "स्वर्ग", "", "", "", "heavenly"]) + let v = native_list_append(v, ["सहन", "adj", "सहन", "", "", "", "patient enduring"]) + let v = native_list_append(v, ["दुर्ग", "adj", "दुर्ग", "", "", "", "difficult to access"]) + let v = native_list_append(v, ["चतुर", "adj", "चतुर", "", "", "", "dexterous clever ingenious"]) + let v = native_list_append(v, ["विफल", "adj", "विफल", "", "", "", "useless"]) + let v = native_list_append(v, ["सतर्क", "adj", "सतर्क", "", "", "", "alert cautious considerate"]) + let v = native_list_append(v, ["संयुक्त", "adj", "संयुक्त", "", "", "", "conjoined joined together"]) + let v = native_list_append(v, ["अभिनव", "adj", "अभिनव", "", "", "", "new young modern"]) + let v = native_list_append(v, ["कौट", "adj", "कौट", "", "", "", "fraudulent dishonest"]) + let v = native_list_append(v, ["अशुद्ध", "adj", "अशुद्ध", "", "", "", "impure foul"]) + let v = native_list_append(v, ["प्रातिरूपिक", "adj", "प्रातिरूपिक", "", "", "", "counterfeit"]) + let v = native_list_append(v, ["सुरूप", "adj", "सुरूप", "", "", "", "beautiful"]) + let v = native_list_append(v, ["सामान्य", "adj", "सामान्य", "", "", "", "common"]) + let v = native_list_append(v, ["समाप्त", "adj", "समाप्त", "", "", "", "finished completed terminated"]) + let v = native_list_append(v, ["खण्ड", "adj", "खण्ड", "", "", "", "broken having chasms"]) + let v = native_list_append(v, ["मूढ", "adj", "मूढ", "", "", "", "stupefied bewildered perplexed"]) + let v = native_list_append(v, ["निर्बुद्धि", "adj", "निर्बुद्धि", "", "", "", "senseless stupid ignorant"]) + let v = native_list_append(v, ["स्था", "adj", "स्था", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["विद्", "adj", "वित्तर", "वित्तम", "", "", "knowing understanding a"]) + let v = native_list_append(v, ["बुध्", "adj", "बुध्", "", "", "", "awaking"]) + let v = native_list_append(v, ["सफल", "adj", "सफल", "", "", "", "successful profitable fruitful"]) + let v = native_list_append(v, ["दुर्बल", "adj", "दुर्बल", "", "", "", "weak feeble emaciated"]) + let v = native_list_append(v, ["निर्बल", "adj", "निर्बल", "", "", "", "weak powerless"]) + let v = native_list_append(v, ["शोक", "adj", "शोक", "", "", "", "burning hot AV."]) + let v = native_list_append(v, ["अशक्त", "adj", "अशक्त", "", "", "", "incompetent incapable"]) + let v = native_list_append(v, ["उज्ज्वल", "adj", "उज्ज्वल", "", "", "", "blazing up luminous"]) + let v = native_list_append(v, ["सच", "adj", "सच", "", "", "", "worshipping attached to"]) + let v = native_list_append(v, ["महार्घ", "adj", "महार्घ", "", "", "", "costly expensive high-priced"]) + let v = native_list_append(v, ["बहुमूल्य", "adj", "बहुमूल्य", "", "", "", "costly expensive high-priced"]) + let v = native_list_append(v, ["नम्र", "adj", "नम्र", "", "", "", "humble submissive polite"]) + let v = native_list_append(v, ["रिक्त", "adj", "रिक्त", "", "", "", "empty vacant hollow"]) + let v = native_list_append(v, ["कठोर", "adj", "कठोर", "", "", "", "strict cruel severe"]) + let v = native_list_append(v, ["समान", "adj", "समान", "", "", "", "same identical alike"]) + let v = native_list_append(v, ["पानीय", "adj", "पानीय", "", "", "", "future passive participle"]) + let v = native_list_append(v, ["शुद्ध", "adj", "शुद्ध", "", "", "", "pure clear clean"]) + let v = native_list_append(v, ["भविष्य", "adj", "भविष्य", "", "", "", "imminent impending to"]) + let v = native_list_append(v, ["स्वादिष्ठ", "adj", "स्वादिष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["पाटल", "adj", "पाटल", "", "", "", "pale red pink"]) + let v = native_list_append(v, ["बन्दी", "adj", "बन्दी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["लक्ष्य", "adj", "लक्ष्य", "", "", "", "to be marked"]) + let v = native_list_append(v, ["शाम", "adj", "शाम", "", "", "", "appeasing curing having"]) + let v = native_list_append(v, ["हास्य", "adj", "हास्य", "", "", "", "comical"]) + let v = native_list_append(v, ["लोचन", "adj", "लोचन", "", "", "", "illuminating brightening"]) + let v = native_list_append(v, ["अक्षत", "adj", "अक्षत", "", "", "", "not crushed"]) + let v = native_list_append(v, ["पर्याप्त", "adj", "पर्याप्त", "", "", "", "obtained gained"]) + let v = native_list_append(v, ["अरि", "adj", "अरि", "", "", "", "ungenerous malicious hostile"]) + let v = native_list_append(v, ["मूल्य", "adj", "मूल्य", "", "", "", "beginning at the"]) + let v = native_list_append(v, ["भास्वर", "adj", "भास्वर", "", "", "", "shining luminous"]) + let v = native_list_append(v, ["अरुण", "adj", "अरुण", "", "", "", "reddish brown tawny"]) + let v = native_list_append(v, ["जीव", "adj", "जीव", "", "", "", "alive living"]) + let v = native_list_append(v, ["वैद्य", "adj", "वैद्य", "", "", "", "versed in science"]) + let v = native_list_append(v, ["जीत", "adj", "जीत", "", "", "", "oppressed"]) + let v = native_list_append(v, ["द्वितीय", "adj", "द्वितीय", "", "", "", "second second part"]) + let v = native_list_append(v, ["तृतीय", "adj", "तृतीय", "", "", "", "the third"]) + let v = native_list_append(v, ["पञ्चम", "adj", "पञ्चम", "", "", "", "fifth"]) + let v = native_list_append(v, ["पञ्चमी", "adj", "पञ्चमी", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["कनक", "adj", "कनक", "", "", "", "made of gold"]) + let v = native_list_append(v, ["आलस", "adj", "आलस", "", "", "", "lazy idle slothful"]) + let v = native_list_append(v, ["अलस", "adj", "अलस", "", "", "", "lazy lethargic inactive"]) + let v = native_list_append(v, ["आलस्य", "adj", "आलस्य", "", "", "", "idle lazy inactive"]) + let v = native_list_append(v, ["सर", "adj", "सर", "", "", "", "springer runner"]) + let v = native_list_append(v, ["जयन्त", "adj", "जयन्त", "", "", "", "winning victorious"]) + let v = native_list_append(v, ["मालव", "adj", "मालव", "", "", "", "relating or belonging"]) + let v = native_list_append(v, ["खर", "adj", "खर", "", "", "", "hard harsh rough"]) + let v = native_list_append(v, ["मनोहर", "adj", "मनोहर", "", "", "", "‘heart-stealing’ taking the"]) + let v = native_list_append(v, ["रञ्जन", "adj", "रञ्जन", "", "", "", "colouring dyeing"]) + let v = native_list_append(v, ["मार", "adj", "मार", "", "", "", "killing destroying"]) + let v = native_list_append(v, ["चारु", "adj", "चारु", "", "", "", "agreeable approved esteemed"]) + let v = native_list_append(v, ["केशिन्", "adj", "केशिन्", "", "", "", "having fine or"]) + let v = native_list_append(v, ["सरस", "adj", "सरस", "", "", "", "containing sap juicy"]) + let v = native_list_append(v, ["धीर", "adj", "धीर", "", "", "", "intelligent wise skillful"]) + let v = native_list_append(v, ["शंकर", "adj", "शंकर", "", "", "", "causing prosperity auspicious"]) + let v = native_list_append(v, ["नन्दक", "adj", "नन्दक", "", "", "", "delighting in comp."]) + let v = native_list_append(v, ["तनुल", "adj", "तनुल", "", "", "", "spread expanded"]) + let v = native_list_append(v, ["प्रभु", "adj", "प्रभु", "", "", "", "good excelling mighty"]) + let v = native_list_append(v, ["अनन्त", "adj", "अनन्त", "", "", "", "endless boundless eternal"]) + let v = native_list_append(v, ["अनंत", "adj", "अनंत", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["उष्ण", "adj", "उष्ण", "", "", "", "warm hot"]) + let v = native_list_append(v, ["मुख्य", "adj", "मुख्य", "", "", "", "chief main principal"]) + let v = native_list_append(v, ["खरा", "adj", "खरा", "", "", "", "inflection of खर"]) + let v = native_list_append(v, ["विद्याचण", "adj", "विद्याचण", "", "", "", "learned educated"]) + let v = native_list_append(v, ["आस्तिक", "adj", "आस्तिक", "", "", "", "one who believes"]) + let v = native_list_append(v, ["नलद", "adj", "नलद", "", "", "", "bringing near king"]) + let v = native_list_append(v, ["दिव्य", "adj", "दिव्य", "", "", "", "divine heavenly celestial"]) + let v = native_list_append(v, ["इष्ट", "adj", "इष्ट", "", "", "", "sought wished desired"]) + let v = native_list_append(v, ["ईश", "adj", "ईश", "", "", "", "owning possessing"]) + let v = native_list_append(v, ["బుద్ధ", "adj", "బుద్ధ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["भुज्", "adj", "भुज्", "", "", "", "enjoying also carnally"]) + let v = native_list_append(v, ["स्थाणु", "adj", "स्थाणु", "", "", "", "standing firmly stationary"]) + let v = native_list_append(v, ["स्थापन", "adj", "स्थापन", "", "", "", "causing to stand"]) + let v = native_list_append(v, ["वारित", "adj", "वारित", "", "", "", "warded off prevented"]) + let v = native_list_append(v, ["व्राण", "adj", "व्राण", "", "", "", "held back pent"]) + let v = native_list_append(v, ["वृत", "adj", "वृत", "", "", "", "concealed screened hidden"]) + let v = native_list_append(v, ["वृत्य", "adj", "वृत्य", "", "", "", "surrounded encompassed"]) + let v = native_list_append(v, ["कृत्य", "adj", "कृत्य", "", "", "", "‘to be done"]) + let v = native_list_append(v, ["पिशङ्ग", "adj", "पिशङ्ग", "", "", "", "reddish reddish-brown or"]) + let v = native_list_append(v, ["यान", "adj", "यान", "", "", "", "leading conducting said"]) + let v = native_list_append(v, ["सिंहास्य", "adj", "सिंहास्य", "", "", "", "lion-faced"]) + let v = native_list_append(v, ["धन्य", "adj", "धन्य", "", "", "", "bringing or bestowing"]) + let v = native_list_append(v, ["सत्फल", "adj", "सत्फल", "", "", "", "having good fruit"]) + let v = native_list_append(v, ["सत्पुत्र", "adj", "सत्पुत्र", "", "", "", "one who has"]) + let v = native_list_append(v, ["मोहन", "adj", "मोहन", "", "", "", "depriving of consciousness"]) + let v = native_list_append(v, ["स्मरनिपुण", "adj", "स्मरनिपुण", "", "", "", "skilled in the"]) + let v = native_list_append(v, ["स्मरातुर", "adj", "स्मरातुर", "", "", "", "love-sick pining with"]) + let v = native_list_append(v, ["स्मर", "adj", "स्मर", "", "", "", "remembering recollecting जाति-स्मर"]) + let v = native_list_append(v, ["क्रूर", "adj", "क्रूर", "", "", "", "bloody raw"]) + let v = native_list_append(v, ["उच्चैः", "adj", "उच्चैः", "", "", "", "instrumental masculine/neuter plural"]) + let v = native_list_append(v, ["एकाकिन्", "adj", "एकाकिन्", "", "", "", "alone solitary"]) + let v = native_list_append(v, ["กรุณา", "adj", "กรุณา", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["दीर्घायु", "adj", "दीर्घायु", "", "", "", "long-lived"]) + let v = native_list_append(v, ["लोला", "adj", "लोला", "", "", "", "inflection of लोल"]) + let v = native_list_append(v, ["बृहन्त्", "adj", "बृहन्त्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["अप्रमाद", "adj", "अप्रमाद", "", "", "", "careful cautious"]) + let v = native_list_append(v, ["उच्चे", "adj", "उच्चे", "", "", "", "masculine singular locative"]) + let v = native_list_append(v, ["उच्चम्", "adj", "उच्चम्", "", "", "", "masculine singular accusative"]) + let v = native_list_append(v, ["अग्र", "adj", "अग्र", "", "", "", "foremost anterior first"]) + let v = native_list_append(v, ["पलायित", "adj", "पलायित", "", "", "", "flown fled defeated"]) + let v = native_list_append(v, ["हृत", "adj", "हृत", "", "", "", "taken away seized"]) + let v = native_list_append(v, ["गन्धि", "adj", "गन्धि", "", "", "", "having the smell"]) + let v = native_list_append(v, ["अर्च्", "adj", "अर्च्", "", "", "", "shining brilliant"]) + let v = native_list_append(v, ["रुद्र", "adj", "रुद्र", "", "", "", "roaring howling"]) + let v = native_list_append(v, ["रुद्", "adj", "रुद्", "", "", "", "crying weeping"]) + let v = native_list_append(v, ["प्री", "adj", "प्री", "", "", "", "loving delighting in"]) + let v = native_list_append(v, ["प्रेष्ठ", "adj", "प्रेष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["क्षीरद", "adj", "क्षीरद", "", "", "", "milk-giving anything that"]) + let v = native_list_append(v, ["रघु", "adj", "रघु", "", "", "", "fleet rapid"]) + let v = native_list_append(v, ["अबुध्न", "adj", "अबुध्न", "", "", "", "bottomless RV. i.24.7"]) + let v = native_list_append(v, ["रक्ताक्ष", "adj", "रक्ताक्ष", "", "", "", "red-eyed having red"]) + let v = native_list_append(v, ["रक्तहीन", "adj", "रक्तहीन", "", "", "", "bloodless cold-blooded W."]) + let v = native_list_append(v, ["अन्न", "adj", "अन्न", "", "", "", "eaten"]) + let v = native_list_append(v, ["मह्", "adj", "मह्", "", "", "", "great strong powerful"]) + let v = native_list_append(v, ["रम्य", "adj", "रम्य", "", "", "", "to be enjoyed"]) + let v = native_list_append(v, ["राक्षस", "adj", "राक्षस", "", "", "", "pertaining to characteristic"]) + let v = native_list_append(v, ["पाण्डु", "adj", "पाण्डु", "", "", "", "yellowish white white"]) + let v = native_list_append(v, ["पाण्डव", "adj", "पाण्डव", "", "", "", "relating to belonging"]) + let v = native_list_append(v, ["सेतु", "adj", "सेतु", "", "", "", "binding"]) + let v = native_list_append(v, ["राष्ट्रीय", "adj", "राष्ट्रीय", "", "", "", "belonging to a"]) + let v = native_list_append(v, ["रूप्य", "adj", "रूप्य", "", "", "", "well-shaped beautiful Pāṇ."]) + let v = native_list_append(v, ["नष्ट", "adj", "नष्ट", "", "", "", "lost disappeared perished"]) + let v = native_list_append(v, ["क्रोधन", "adj", "क्रोधन", "", "", "", "inclined to wrath"]) + let v = native_list_append(v, ["क्रोधनीय", "adj", "क्रोधनीय", "", "", "", "anything which may"]) + let v = native_list_append(v, ["प्लवंग", "adj", "प्लवंग", "", "", "", "‘moving by jumps’"]) + let v = native_list_append(v, ["प्लव", "adj", "प्लव", "", "", "", "swimming floating ṠāṅkhGṛ."]) + let v = native_list_append(v, ["रोहिणी", "adj", "रोहिणी", "", "", "", "feminine of रोहित"]) + let v = native_list_append(v, ["रौद्र", "adj", "रौद्र", "", "", "", "relating or belonging"]) + let v = native_list_append(v, ["दुर्मति", "adj", "दुर्मति", "", "", "", "weak-minded silly ignorant"]) + let v = native_list_append(v, ["लक्ष", "adj", "लक्ष", "", "", "", "a lakh one"]) + let v = native_list_append(v, ["लग्न", "adj", "लग्न", "", "", "", "adhered clinging to"]) + let v = native_list_append(v, ["लम्ब", "adj", "लम्ब", "", "", "", "hanging down pendent"]) + let v = native_list_append(v, ["व्यर्थ", "adj", "व्यर्थ", "", "", "", "useless unavailing unprofitable"]) + let v = native_list_append(v, ["निरर्थक", "adj", "निरर्थक", "", "", "", "useless vain unsuccessful"]) + let v = native_list_append(v, ["ललित", "adj", "ललित", "", "", "", "sported played playing"]) + let v = native_list_append(v, ["लालस", "adj", "लालस", "", "", "", "eagerly longing for"]) + let v = native_list_append(v, ["अधर", "adj", "अधर", "", "", "", "low tending downwards"]) + let v = native_list_append(v, ["रसिक", "adj", "रसिक", "", "", "", "tasteful elegant"]) + let v = native_list_append(v, ["श्यामल", "adj", "श्यामल", "", "", "", "dark-coloured"]) + let v = native_list_append(v, ["शत्रुघ्न", "adj", "शत्रुघ्न", "", "", "", "foe-killing destroying enemies"]) + let v = native_list_append(v, ["धान्य", "adj", "धान्य", "", "", "", "consisting or made"]) + let v = native_list_append(v, ["नवीन", "adj", "नवीन", "", "", "", "new fresh young"]) + let v = native_list_append(v, ["सैनिक", "adj", "सैनिक", "", "", "", "relating or belonging"]) + let v = native_list_append(v, ["पश्चिम", "adj", "पश्चिम", "", "", "", "being behind later"]) + let v = native_list_append(v, ["आग्नेय", "adj", "आग्नेय", "", "", "", "belonging relating or"]) + let v = native_list_append(v, ["आदित्य", "adj", "आदित्य", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["ग्राम्य", "adj", "ग्राम्य", "", "", "", "used or produced"]) + let v = native_list_append(v, ["देश्य", "adj", "देश्य", "", "", "", "to be pointed"]) + let v = native_list_append(v, ["तालव्य", "adj", "तालव्य", "", "", "", "relating to the"]) + let v = native_list_append(v, ["दन्त्य", "adj", "दन्त्य", "", "", "", "dental used to"]) + let v = native_list_append(v, ["अन्योन्य", "adj", "अन्योन्य", "", "", "", "one another mutual"]) + let v = native_list_append(v, ["परात्पर", "adj", "परात्पर", "", "", "", "superior to the"]) + let v = native_list_append(v, ["पाश्चात्य", "adj", "पाश्चात्य", "", "", "", "western"]) + let v = native_list_append(v, ["अच्युत", "adj", "अच्युत", "", "", "", "not fallen"]) + let v = native_list_append(v, ["मुग्ध", "adj", "मुग्ध", "", "", "", "perplexed bewildered"]) + let v = native_list_append(v, ["पुण्य", "adj", "पुण्य", "", "", "", "auspicious propitious lucky"]) + let v = native_list_append(v, ["सम्पादन", "adj", "सम्पादन", "", "", "", "procuring bestowing"]) + let v = native_list_append(v, ["सम्पादित", "adj", "सम्पादित", "", "", "", "brought about accomplished"]) + let v = native_list_append(v, ["अव्यय", "adj", "अव्यय", "", "", "", "sheep"]) + let v = native_list_append(v, ["इन्द्रिय", "adj", "इन्द्रिय", "", "", "", "pertaining to or"]) + let v = native_list_append(v, ["पञ्चक", "adj", "पञ्चक", "", "", "", "consisting of 5"]) + let v = native_list_append(v, ["अचल", "adj", "अचल", "", "", "", "immovable motionless"]) + let v = native_list_append(v, ["उच्चः", "adj", "उच्चः", "", "", "", "masculine singular nominative"]) + let v = native_list_append(v, ["उच्चानि", "adj", "उच्चानि", "", "", "", "neuter plural nominative/accusative/vocative"]) + let v = native_list_append(v, ["भागवत", "adj", "भागवत", "", "", "", "relating to or"]) + let v = native_list_append(v, ["अच्छ", "adj", "अच्छ", "", "", "", "not shaded not"]) + let v = native_list_append(v, ["शिथिल", "adj", "शिथिल", "", "", "", "loose slack lax"]) + let v = native_list_append(v, ["द्राविड", "adj", "द्राविड", "", "", "", "Dravidian"]) + let v = native_list_append(v, ["प्राकृत", "adj", "प्राकृत", "", "", "", "original natural"]) + let v = native_list_append(v, ["भव्य", "adj", "भव्य", "", "", "", "being existing present"]) + let v = native_list_append(v, ["शताब्द", "adj", "शताब्द", "", "", "", "consisting of a"]) + let v = native_list_append(v, ["कारक", "adj", "कारक", "", "", "", "making doing acting"]) + let v = native_list_append(v, ["मत", "adj", "मत", "", "", "", "thought believed imagined"]) + let v = native_list_append(v, ["जाल", "adj", "जाल", "", "", "", "watery"]) + let v = native_list_append(v, ["रेफ", "adj", "रेफ", "", "", "", "low vile contemptible"]) + let v = native_list_append(v, ["निवेदन", "adj", "निवेदन", "", "", "", "announcing proclaiming"]) + let v = native_list_append(v, ["देशीय", "adj", "देशीय", "", "", "", "peculiar or belonging"]) + let v = native_list_append(v, ["कलन", "adj", "कलन", "", "", "", "effecting causing"]) + let v = native_list_append(v, ["दशम", "adj", "दशम", "", "", "", "tenth"]) + let v = native_list_append(v, ["जटिल", "adj", "जटिल", "", "", "", "hairy"]) + let v = native_list_append(v, ["सुमति", "adj", "सुमति", "", "", "", "very wise or"]) + let v = native_list_append(v, ["सामाजिक", "adj", "सामाजिक", "", "", "", "relating to or"]) + let v = native_list_append(v, ["महा-", "adj", "महा-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["ऊन", "adj", "उनीयस्", "उनिष्ठ", "", "", "deficient wanting lacking"]) + let v = native_list_append(v, ["शम्भु", "adj", "शम्भु", "", "", "", "being or existing"]) + let v = native_list_append(v, ["क्षुद्र", "adj", "क्षुद्र", "", "", "", "very small minute"]) + let v = native_list_append(v, ["दशरथ", "adj", "दशरथ", "", "", "", "having ten chariots"]) + let v = native_list_append(v, ["पोषण", "adj", "पोषण", "", "", "", "nourishing cherishing"]) + let v = native_list_append(v, ["पोषक", "adj", "पोषक", "", "", "", "nourishing feeding a"]) + let v = native_list_append(v, ["पोष्य", "adj", "पोष्य", "", "", "", "thriving well fed."]) + let v = native_list_append(v, ["पोषित", "adj", "पोषित", "", "", "", "nourished cherished supported."]) + let v = native_list_append(v, ["अयोध्या", "adj", "अयोध्या", "", "", "", "nominative feminine singular"]) + let v = native_list_append(v, ["पालक", "adj", "पालक", "", "", "", "guarding protecting nourishing"]) + let v = native_list_append(v, ["काश", "adj", "काश", "", "", "", "shining-brightly"]) + let v = native_list_append(v, ["परिवर्तन", "adj", "परिवर्तन", "", "", "", "causing to turn"]) + let v = native_list_append(v, ["परम", "adj", "परम", "", "", "", "most distant last"]) + let v = native_list_append(v, ["दरिद्र", "adj", "दरिद्र", "", "", "", "roving strolling"]) + let v = native_list_append(v, ["ऐश", "adj", "ऐश", "", "", "", "divine supreme regal"]) + let v = native_list_append(v, ["नील", "adj", "नील", "", "", "", "of a dark"]) + let v = native_list_append(v, ["हार", "adj", "हार", "", "", "", "bearing carrying carrying"]) + let v = native_list_append(v, ["देवस्", "adj", "देवस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["राति", "adj", "राति", "", "", "", "ready or willing"]) + let v = native_list_append(v, ["दुःखी", "adj", "दुःखी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["सभ्य", "adj", "सभ्य", "", "", "", "being in an"]) + let v = native_list_append(v, ["शुष्क", "adj", "शुष्क", "", "", "", "dried dried up"]) + let v = native_list_append(v, ["मासिक", "adj", "मासिक", "", "", "", "dedicated to a"]) + let v = native_list_append(v, ["निर्वाण", "adj", "निर्वाण", "", "", "", "blown or put"]) + let v = native_list_append(v, ["दानी", "adj", "दानी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["रजत", "adj", "रजत", "", "", "", "white bright white"]) + let v = native_list_append(v, ["क्षय", "adj", "क्षय", "", "", "", "dwelling residing"]) + let v = native_list_append(v, ["स्पष्ट", "adj", "स्पष्ट", "", "", "", "clear visible"]) + let v = native_list_append(v, ["आर्थिक", "adj", "आर्थिक", "", "", "", "significant Pāṇ. 4-4"]) + let v = native_list_append(v, ["भयंकर", "adj", "भयंकर", "", "", "", "terrible"]) + let v = native_list_append(v, ["विशेषज्ञ", "adj", "विशेषज्ञ", "", "", "", "knowing various kinds"]) + let v = native_list_append(v, ["मध्य", "adj", "मध्य", "", "", "", "middle"]) + let v = native_list_append(v, ["स्थापित", "adj", "स्थापित", "", "", "", "caused or made"]) + let v = native_list_append(v, ["मानसिक", "adj", "मानसिक", "", "", "", "committed only in"]) + let v = native_list_append(v, ["पवित्र", "adj", "पवित्र", "", "", "", "purifying averting evil"]) + let v = native_list_append(v, ["निम्न", "adj", "निम्न", "", "", "", "deep lit."]) + let v = native_list_append(v, ["विचित्र", "adj", "विचित्र", "", "", "", "weird strange odd"]) + let v = native_list_append(v, ["संकट", "adj", "संकट", "", "", "", "brought together contracted"]) + let v = native_list_append(v, ["विविध", "adj", "विविध", "", "", "", "of various sorts"]) + let v = native_list_append(v, ["प्रस्तुत", "adj", "प्रस्तुत", "", "", "", "praised"]) + let v = native_list_append(v, ["वार्षिक", "adj", "वार्षिक", "", "", "", "belonging to the"]) + let v = native_list_append(v, ["उपलब्ध", "adj", "उपलब्ध", "", "", "", "gained obtained"]) + let v = native_list_append(v, ["वास्तविक", "adj", "वास्तविक", "", "", "", "real substantial"]) + let v = native_list_append(v, ["अयोग्य", "adj", "अयोग्य", "", "", "", "incompetent unqualified inept"]) + let v = native_list_append(v, ["योग्य", "adj", "योग्य", "", "", "", "fit for the"]) + let v = native_list_append(v, ["भिन्न", "adj", "भिन्न", "", "", "", "broken split shattered"]) + let v = native_list_append(v, ["तार", "adj", "तार", "", "", "", "carrying across like"]) + let v = native_list_append(v, ["प्रकाशक", "adj", "प्रकाशक", "", "", "", "clear bright shining"]) + let v = native_list_append(v, ["शान्त", "adj", "शान्त", "", "", "", "abated subsided ceased"]) + let v = native_list_append(v, ["वड्र", "adj", "वड्र", "", "", "", "large great"]) + let v = native_list_append(v, ["समृद्ध", "adj", "समृद्ध", "", "", "", "prosperous flourishing thriving"]) + let v = native_list_append(v, ["संतुष्ट", "adj", "संतुष्ट", "", "", "", "well-satisfied content"]) + let v = native_list_append(v, ["सम्बन्ध", "adj", "सम्बन्ध", "", "", "", "able capable L."]) + let v = native_list_append(v, ["คุรุ", "adj", "คุรุ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["श्रेष्ठ", "adj", "श्रेष्ठ", "", "", "", "most beautiful most"]) + let v = native_list_append(v, ["निर्दोष", "adj", "निर्दोष", "", "", "", "faultless"]) + let v = native_list_append(v, ["वाह", "adj", "वाह", "", "", "", "carrying conveying"]) + let v = native_list_append(v, ["पतंग", "adj", "पतंग", "", "", "", "flying"]) + let v = native_list_append(v, ["पूत", "adj", "पूत", "", "", "", "cleansed purified pure"]) + let v = native_list_append(v, ["अशोक", "adj", "अशोक", "", "", "", "he who is"]) + let v = native_list_append(v, ["अमित्र", "adj", "अमित्र", "", "", "", "not having a"]) + let v = native_list_append(v, ["प्रत्यक्ष", "adj", "प्रत्यक्ष", "", "", "", "obvious apparent"]) + let v = native_list_append(v, ["स्थानीय", "adj", "स्थानीय", "", "", "", "having its place"]) + let v = native_list_append(v, ["निश्चित", "adj", "निश्चित", "", "", "", "of one who"]) + let v = native_list_append(v, ["षष्ठी", "adj", "षष्ठी", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["अधिकतर", "adj", "अधिकतर", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["धूसर", "adj", "धूसर", "", "", "", "grey colour"]) + let v = native_list_append(v, ["अर्भग", "adj", "अर्भग", "", "", "", "youthful Rv. i"]) + let v = native_list_append(v, ["वैयाकरण", "adj", "वैयाकरण", "", "", "", "grammatical"]) + let v = native_list_append(v, ["विवाहित", "adj", "विवाहित", "", "", "", ""]) + let v = native_list_append(v, ["दार", "adj", "दार", "", "", "", "tearing up rending"]) + let v = native_list_append(v, ["सरोज", "adj", "सरोज", "", "", "", "produced or found"]) + let v = native_list_append(v, ["अभि-", "adj", "अभि-", "", "", "", "fearless"]) + let v = native_list_append(v, ["रमणीय", "adj", "रमणीय", "", "", "", "delightful pleasing pleasant"]) + let v = native_list_append(v, ["अज्र्य", "adj", "अज्र्य", "", "", "", "being in or"]) + let v = native_list_append(v, ["आधुनिक", "adj", "आधुनिक", "", "", "", "new recent of"]) + let v = native_list_append(v, ["परिवर्तित", "adj", "परिवर्तित", "", "", "", "turned round revolved"]) + let v = native_list_append(v, ["वर्तमान", "adj", "वर्तमान", "", "", "", "turning moving existing"]) + let v = native_list_append(v, ["तारक", "adj", "तारक", "", "", "", "delivering in the"]) + let v = native_list_append(v, ["បុរាណ", "adj", "បុរាណ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["उत्थान", "adj", "उत्थान", "", "", "", "causing to arise"]) + let v = native_list_append(v, ["सज्जन", "adj", "सज्जन", "", "", "", "hanging around"]) + let v = native_list_append(v, ["ज्ञानिन्", "adj", "ज्ञानिन्", "", "", "", "knowing endowed with"]) + let v = native_list_append(v, ["వాత", "adj", "వాత", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["इत्यादि", "adj", "इत्यादि", "", "", "", "having such thing"]) + let v = native_list_append(v, ["ទេវ", "adj", "ទេវ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अघोर", "adj", "अघोर", "", "", "", "undreadful"]) + let v = native_list_append(v, ["मग्न", "adj", "मग्न", "", "", "", "immersed"]) + let v = native_list_append(v, ["घात", "adj", "घात", "", "", "", "slaying killing"]) + let v = native_list_append(v, ["घातिन्", "adj", "घातिन्", "", "", "", "killing murderous"]) + let v = native_list_append(v, ["घातुक", "adj", "घातुक", "", "", "", "slaying killing."]) + let v = native_list_append(v, ["कल्पित", "adj", "कल्पित", "", "", "", "made fabricated artificial"]) + let v = native_list_append(v, ["लम्बोदर", "adj", "लम्बोदर", "", "", "", "having a large"]) + let v = native_list_append(v, ["प्रभव", "adj", "प्रभव", "", "", "", "prominent excelling distinguished"]) + let v = native_list_append(v, ["विभव", "adj", "विभव", "", "", "", "powerful rich"]) + let v = native_list_append(v, ["प्रमादिन्", "adj", "प्रमादिन्", "", "", "", "negligent careless indifferent."]) + let v = native_list_append(v, ["पुष्कल", "adj", "पुष्कल", "", "", "", "much many numerous"]) + let v = native_list_append(v, ["पुष्ट", "adj", "पुष्ट", "", "", "", "nourished cherished well-fed"]) + let v = native_list_append(v, ["पुष्करिन्", "adj", "पुष्करिन्", "", "", "", "abounding in lotuses."]) + let v = native_list_append(v, ["यादव", "adj", "यादव", "", "", "", "of or pertaining"]) + let v = native_list_append(v, ["भीष्म", "adj", "भीष्म", "", "", "", "terrible horrible dreadful"]) + let v = native_list_append(v, ["भीषण", "adj", "भीषण", "", "", "", "terrifying frightening formidable"]) + let v = native_list_append(v, ["विभीषण", "adj", "विभीषण", "", "", "", "terrifying fearful horrible."]) + let v = native_list_append(v, ["सुग्रीव", "adj", "सुग्रीव", "", "", "", "handsome-necked having a"]) + let v = native_list_append(v, ["प्रवह", "adj", "प्रवह", "", "", "", "bearing along carrying"]) + let v = native_list_append(v, ["शूर्पकर्ण", "adj", "शूर्पकर्ण", "", "", "", "having ears like"]) + let v = native_list_append(v, ["विनायक", "adj", "विनायक", "", "", "", "taking away removing"]) + let v = native_list_append(v, ["द्वैमातुर", "adj", "द्वैमातुर", "", "", "", "having two mothers."]) + let v = native_list_append(v, ["गणनीय", "adj", "गणनीय", "", "", "", "to be counted"]) + let v = native_list_append(v, ["వసతి", "adj", "వసతి", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["गोपनीय", "adj", "गोपनीय", "", "", "", "secret mysterious"]) + let v = native_list_append(v, ["बाह्य", "adj", "बाह्य", "", "", "", "being outside a"]) + let v = native_list_append(v, ["चतुर्थी", "adj", "चतुर्थी", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["नवमी", "adj", "नवमी", "", "", "", "inflection of नवम"]) + let v = native_list_append(v, ["मञ्जुल", "adj", "मञ्जुल", "", "", "", "beautiful pleasing lovely"]) + let v = native_list_append(v, ["मञ्जिष्ठ", "adj", "मञ्जिष्ठ", "", "", "", "very bright bright"]) + let v = native_list_append(v, ["मञ्जु", "adj", "मञ्जु", "", "", "", "beautiful lovely charming"]) + let v = native_list_append(v, ["तुङ्ग", "adj", "तुङ्ग", "", "", "", "prominent erect lofty"]) + let v = native_list_append(v, ["भद्र", "adj", "भद्र", "", "", "", "blessed auspicious fortunate"]) + let v = native_list_append(v, ["तार्किक", "adj", "तार्किक", "", "", "", "related or belonging"]) + let v = native_list_append(v, ["निरुक्त", "adj", "निरुक्त", "", "", "", "uttered pronounced expressed"]) + let v = native_list_append(v, ["मृदुल", "adj", "मृदुल", "", "", "", "soft tender mild."]) + let v = native_list_append(v, ["उग्र", "adj", "ओजीयस्", "ओजिष्ठ", "", "", "mighty formidable powerful"]) + let v = native_list_append(v, ["नग्न", "adj", "नग्न", "", "", "", "naked bare"]) + let v = native_list_append(v, ["तपन", "adj", "तपन", "", "", "", "warming burning shining"]) + let v = native_list_append(v, ["कालयुक्त", "adj", "कालयुक्त", "", "", "", "fit for the"]) + let v = native_list_append(v, ["चित्रभानु", "adj", "चित्रभानु", "", "", "", "of variegated lustre"]) + let v = native_list_append(v, ["सर्वजित्", "adj", "सर्वजित्", "", "", "", "all-conquering."]) + let v = native_list_append(v, ["विरोधिन्", "adj", "विरोधिन्", "", "", "", "opposing hindering preventing"]) + let v = native_list_append(v, ["अनुसार", "adj", "अनुसार", "", "", "", "following conforming"]) + let v = native_list_append(v, ["प्रकट", "adj", "प्रकट", "", "", "", "evident clear manifest"]) + let v = native_list_append(v, ["नामक", "adj", "नामक", "", "", "", "named"]) + let v = native_list_append(v, ["मात्र", "adj", "मात्र", "", "", "", "having the measure"]) + let v = native_list_append(v, ["प्रचलित", "adj", "प्रचलित", "", "", "", "current customary circulating"]) + let v = native_list_append(v, ["स्थित", "adj", "स्थित", "", "", "", "standing situated"]) + let v = native_list_append(v, ["दैनिक", "adj", "दैनिक", "", "", "", "daily diurnal"]) + let v = native_list_append(v, ["अनुनासिक", "adj", "अनुनासिक", "", "", "", "nasal uttered through"]) + let v = native_list_append(v, ["विवादास्पद", "adj", "विवादास्पद", "", "", "", "controversial subject to"]) + let v = native_list_append(v, ["ताल", "adj", "ताल", "", "", "", "made of palmyra"]) + let v = native_list_append(v, ["असाधारण", "adj", "असाधारण", "", "", "", "special not common"]) + let v = native_list_append(v, ["उभय", "adj", "उभय", "", "", "", "in both ways"]) + let v = native_list_append(v, ["उरु", "adj", "वरीयस्", "वरिष्ठ", "", "", "broad wide"]) + let v = native_list_append(v, ["कल्याण", "adj", "कल्याण", "", "", "", "beautiful agreeable"]) + let v = native_list_append(v, ["অশোক", "adj", "অশোক", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["जैन", "adj", "जैन", "", "", "", "Jain of or"]) + let v = native_list_append(v, ["असिन्व", "adj", "असिन्व", "", "", "", "insatiable"]) + let v = native_list_append(v, ["हत", "adj", "हत", "", "", "", "struck beaten slain"]) + let v = native_list_append(v, ["निखिल", "adj", "निखिल", "", "", "", "complete all whole"]) + let v = native_list_append(v, ["केकर", "adj", "केकर", "", "", "", "squint-eyed"]) + let v = native_list_append(v, ["कुल्व", "adj", "कुल्व", "", "", "", "bald"]) + let v = native_list_append(v, ["विषम", "adj", "विषम", "", "", "", "different unequal unlike"]) + let v = native_list_append(v, ["मूक", "adj", "मूक", "", "", "", "dumb mute"]) + let v = native_list_append(v, ["लङ्ग", "adj", "लङ्ग", "", "", "", "limping lame"]) + let v = native_list_append(v, ["सामूहिक", "adj", "सामूहिक", "", "", "", "collected in masses"]) + let v = native_list_append(v, ["बभ्रु", "adj", "बभ्रु", "", "", "", "deep brown reddish"]) + let v = native_list_append(v, ["अवर", "adj", "अवर", "", "", "", "below inferior"]) + let v = native_list_append(v, ["वक्र", "adj", "वक्र", "", "", "", "crooked curved bent"]) + let v = native_list_append(v, ["मल्ह", "adj", "मल्ह", "", "", "", "dewlapped having a"]) + let v = native_list_append(v, ["साम", "adj", "साम", "", "", "", "undigested crude not"]) + let v = native_list_append(v, ["स्थिर", "adj", "स्थिर", "", "", "", "stable constant still"]) + let v = native_list_append(v, ["काञ्चन", "adj", "काञ्चन", "", "", "", "golden"]) + let v = native_list_append(v, ["तत", "adj", "तत", "", "", "", "extended stretched"]) + let v = native_list_append(v, ["अर्ध", "adj", "अर्ध", "", "", "", "half halved forming"]) + let v = native_list_append(v, ["अतिकाय", "adj", "अतिकाय", "", "", "", "gigantic"]) + let v = native_list_append(v, ["कृत", "adj", "कृत", "", "", "", "done made prepared"]) + let v = native_list_append(v, ["भर", "adj", "भर", "", "", "", "bearing carrying bringing"]) + let v = native_list_append(v, ["अधम", "adj", "अधम", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["श्याव", "adj", "श्याव", "", "", "", "dark"]) + let v = native_list_append(v, ["बधिर", "adj", "बधिर", "", "", "", "deaf"]) + let v = native_list_append(v, ["सत्ता", "adj", "सत्ता", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["वित्त", "adj", "वित्त", "", "", "", "found acquired gained"]) + let v = native_list_append(v, ["पाक", "adj", "पाक", "", "", "", "very young"]) + let v = native_list_append(v, ["कुब्ज", "adj", "कुब्ज", "", "", "", "humpbacked"]) + let v = native_list_append(v, ["ऋज्र", "adj", "ऋज्र", "", "", "", "fast quick of"]) + let v = native_list_append(v, ["तरुण", "adj", "तरुण", "", "", "", "young tender juvenile"]) + let v = native_list_append(v, ["पुत्रकाम", "adj", "पुत्रकाम", "", "", "", "desirous of begetting"]) + let v = native_list_append(v, ["मक्षू", "adj", "मक्षू", "", "", "", "soon"]) + let v = native_list_append(v, ["ऋजु", "adj", "रजी॑यस्", "रजि॑ष्ठ", "", "", "straight upright tending"]) + let v = native_list_append(v, ["धृषु", "adj", "धृषु", "", "", "", "proud"]) + let v = native_list_append(v, ["स्वादु", "adj", "स्वादीयस्", "स्वादिष्ठ", "", "", "delicious tasty savory"]) + let v = native_list_append(v, ["स्वर्ग्य", "adj", "स्वर्ग्य", "", "", "", "dwelling in heaven"]) + let v = native_list_append(v, ["जात", "adj", "जात", "", "", "", "born produced begotten"]) + let v = native_list_append(v, ["दूळभ", "adj", "दूळभ", "", "", "", "difficult to deceive"]) + let v = native_list_append(v, ["श्रेयस्", "adj", "श्रेयस्", "", "", "", "more excellent better"]) + let v = native_list_append(v, ["मीढ", "adj", "मीढ", "", "", "", "urinated"]) + let v = native_list_append(v, ["मुण्डो", "adj", "मुण्डो", "", "", "", "combining form of"]) + let v = native_list_append(v, ["नष्टक्रिय", "adj", "नष्टक्रिय", "", "", "", "on whom a"]) + let v = native_list_append(v, ["ऋणिन्", "adj", "ऋणिन्", "", "", "", "indebted"]) + let v = native_list_append(v, ["अनृणिन्", "adj", "अनृणिन्", "", "", "", "free from debt"]) + let v = native_list_append(v, ["श्चन्द्र", "adj", "श्चन्द्र", "", "", "", "shining radiant"]) + let v = native_list_append(v, ["चतुर्थ", "adj", "चतुर्थ", "", "", "", "fourth"]) + let v = native_list_append(v, ["सैर", "adj", "सैर", "", "", "", "relating to or"]) + let v = native_list_append(v, ["अन्ध", "adj", "अन्ध", "", "", "", "blind"]) + let v = native_list_append(v, ["शुच्", "adj", "शुच्", "", "", "", "shining illumining"]) + let v = native_list_append(v, ["अल्पप्राण", "adj", "अल्पप्राण", "", "", "", "having shortness of"]) + let v = native_list_append(v, ["महाप्राण", "adj", "महाप्राण", "", "", "", "aspirated"]) + let v = native_list_append(v, ["श्चन्द्रः", "adj", "श्चन्द्रः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["श्चन्द्राय", "adj", "श्चन्द्राय", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["श्चन्द्रस्य", "adj", "श्चन्द्रस्य", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["श्चन्द्रे", "adj", "श्चन्द्रे", "", "", "", "inflection of श्चन्द्र"]) + let v = native_list_append(v, ["श्चन्द्राः", "adj", "श्चन्द्राः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["कण्ठ्य", "adj", "कण्ठ्य", "", "", "", "being at or"]) + let v = native_list_append(v, ["ओष्ठ्य", "adj", "ओष्ठ्य", "", "", "", "being at or"]) + let v = native_list_append(v, ["असहाय", "adj", "असहाय", "", "", "", "without companions friendless"]) + let v = native_list_append(v, ["मूर", "adj", "मूर", "", "", "", "foolish stupid dumb"]) + let v = native_list_append(v, ["माधव", "adj", "माधव", "", "", "", "vernal relating to"]) + let v = native_list_append(v, ["अवधारण", "adj", "अवधारण", "", "", "", "restrictive"]) + let v = native_list_append(v, ["पार", "adj", "पार", "", "", "", "bringing across"]) + let v = native_list_append(v, ["वैदिक", "adj", "वैदिक", "", "", "", "relating to the"]) + let v = native_list_append(v, ["अपराधी", "adj", "अपराधी", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["ಘೋರ", "adj", "ಘೋರ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["असित", "adj", "असित", "", "", "", "black dark"]) + let v = native_list_append(v, ["एव", "adj", "एव", "", "", "", "speedy quick"]) + let v = native_list_append(v, ["उत्तान", "adj", "उत्तान", "", "", "", "stretched out spread"]) + let v = native_list_append(v, ["स्वल्प", "adj", "स्वल्प", "", "", "", "small little minute"]) + let v = native_list_append(v, ["बर्बर", "adj", "बर्बर", "", "", "", "stammering stuttering"]) + let v = native_list_append(v, ["यहु", "adj", "यहु", "", "", "", "mighty strong"]) + let v = native_list_append(v, ["विपरीत", "adj", "विपरीत", "", "", "", "turned round reversed"]) + let v = native_list_append(v, ["वश्य", "adj", "वश्य", "", "", "", "subjected dependent"]) + let v = native_list_append(v, ["वश", "adj", "वश", "", "", "", "willing"]) + let v = native_list_append(v, ["वशंवद", "adj", "वशंवद", "", "", "", "submissive to the"]) + let v = native_list_append(v, ["दृश्य", "adj", "दृश्य", "", "", "", "visible able to"]) + let v = native_list_append(v, ["अज", "adj", "अज", "", "", "", "unborn not born"]) + let v = native_list_append(v, ["अमवत्", "adj", "अमवत्", "", "", "", "strong impetuous"]) + let v = native_list_append(v, ["हुत", "adj", "हुत", "", "", "", "poured out"]) + let v = native_list_append(v, ["धान", "adj", "धान", "", "", "", "containing holding"]) + let v = native_list_append(v, ["रोहित", "adj", "रोहित", "", "", "", "red dark red"]) + let v = native_list_append(v, ["जर्जर", "adj", "जर्जर", "", "", "", "decayed decrepit"]) + let v = native_list_append(v, ["शुभ्र", "adj", "शुभ्र", "", "", "", "bright radiant shining"]) + let v = native_list_append(v, ["ओष", "adj", "ओष", "", "", "", "shining"]) + let v = native_list_append(v, ["जीर्ण", "adj", "जीर्ण", "", "", "", "old aged"]) + let v = native_list_append(v, ["गोरूप", "adj", "गोरूप", "", "", "", "bovine cow-like cow-shaped"]) + let v = native_list_append(v, ["क्षित", "adj", "क्षित", "", "", "", "wasted decayed exhausted"]) + let v = native_list_append(v, ["ध्रुव", "adj", "ध्रुव", "", "", "", "fixed immovable"]) + let v = native_list_append(v, ["हन्", "adj", "हन्", "", "", "", "killing striking slaying"]) + let v = native_list_append(v, ["वरिष्ठ", "adj", "वरिष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["कनिष्ठ", "adj", "कनिष्ठ", "", "", "", "youngest younger-born"]) + let v = native_list_append(v, ["पायस", "adj", "पायस", "", "", "", "any item made"]) + let v = native_list_append(v, ["गत", "adj", "गत", "", "", "", "gone departed"]) + let v = native_list_append(v, ["जव", "adj", "जव", "", "", "", "swift fast"]) + let v = native_list_append(v, ["शर्कर", "adj", "शर्कर", "", "", "", "made of gravel"]) + let v = native_list_append(v, ["दहन", "adj", "दहन", "", "", "", "burning consuming by"]) + let v = native_list_append(v, ["वाद्य", "adj", "वाद्य", "", "", "", "to be spoken"]) + let v = native_list_append(v, ["वैध", "adj", "वैध", "", "", "", "enjoined by rule"]) + let v = native_list_append(v, ["गर्द", "adj", "गर्द", "", "", "", "crying ?"]) + let v = native_list_append(v, ["घन", "adj", "घनीयस्", "घनिष्ठ", "", "", "compact dense solid"]) + let v = native_list_append(v, ["ईड्य", "adj", "ईड्य", "", "", "", "laudable praiseworthy"]) + let v = native_list_append(v, ["लवण", "adj", "लवण", "", "", "", "salty saline"]) + let v = native_list_append(v, ["मातुल", "adj", "मातुल", "", "", "", "relating to maternal"]) + let v = native_list_append(v, ["मातुला", "adj", "मातुला", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["श्रुत", "adj", "श्रुत", "", "", "", "heard listened orally"]) + let v = native_list_append(v, ["बोध", "adj", "बोध", "", "", "", "knowing understanding"]) + let v = native_list_append(v, ["अग्रिम", "adj", "अग्रिम", "", "", "", "being in front"]) + let v = native_list_append(v, ["श्लक्ष्ण", "adj", "श्लक्ष्ण", "", "", "", "tender minute small"]) + let v = native_list_append(v, ["ज्ञात", "adj", "ज्ञात", "", "", "", "known"]) + let v = native_list_append(v, ["युक्त", "adj", "युक्त", "", "", "", "yoked fastened harnessed"]) + let v = native_list_append(v, ["निज", "adj", "निज", "", "", "", "inborn innate inherent"]) + let v = native_list_append(v, ["असंतुष्ट", "adj", "असंतुष्ट", "", "", "", "dissatisfied uncontent"]) + let v = native_list_append(v, ["कुटिल", "adj", "कुटिल", "", "", "", "dishonest"]) + let v = native_list_append(v, ["क्षीण", "adj", "क्षीण", "", "", "", "wasted"]) + let v = native_list_append(v, ["उत्सुक", "adj", "उत्सुक", "", "", "", "restless uneasy unquiet"]) + let v = native_list_append(v, ["उपवास", "adj", "उपवास", "", "", "", "staying near"]) + let v = native_list_append(v, ["देवपुत्र", "adj", "देवपुत्र", "", "", "", "having gods as"]) + let v = native_list_append(v, ["भार", "adj", "भार", "", "", "", "bearing carrying holding"]) + let v = native_list_append(v, ["मत्सर", "adj", "मत्सर", "", "", "", "jealous envious"]) + let v = native_list_append(v, ["कुशल", "adj", "कुशल", "", "", "", "right proper suitable"]) + let v = native_list_append(v, ["त्वरित", "adj", "त्वरित", "", "", "", "hasty quick swift"]) + let v = native_list_append(v, ["पिष्ट", "adj", "पिष्ट", "", "", "", "crushed ground"]) + let v = native_list_append(v, ["सौर", "adj", "सौर", "", "", "", "consisting of spirituous"]) + let v = native_list_append(v, ["सुस्वादु", "adj", "सुस्वादु", "", "", "", "having a good"]) + let v = native_list_append(v, ["शीर्षक", "adj", "शीर्षक", "", "", "", "familiar with the"]) + let v = native_list_append(v, ["मिश्र", "adj", "मिश्र", "", "", "", "mixed mingled blended"]) + let v = native_list_append(v, ["शूर", "adj", "शूर", "", "", "", "strong powerful valiant"]) + let v = native_list_append(v, ["व्यधिकरण", "adj", "व्यधिकरण", "", "", "", "in an opposite"]) + let v = native_list_append(v, ["आम्रेडित", "adj", "आम्रेडित", "", "", "", "reduplicated reiterated"]) + let v = native_list_append(v, ["रक्षित", "adj", "रक्षित", "", "", "", "protected guarded saved"]) + let v = native_list_append(v, ["कथित", "adj", "कथित", "", "", "", "told spoken said"]) + let v = native_list_append(v, ["इतर", "adj", "इतर", "", "", "", "the rest the"]) + let v = native_list_append(v, ["वष्टि", "adj", "वष्टि", "", "", "", "desirous craving wanting"]) + let v = native_list_append(v, ["गूर्त", "adj", "गूर्त", "", "", "", "agreeable pleasing likeable"]) + let v = native_list_append(v, ["समर्पित", "adj", "समर्पित", "", "", "", "thrown or hurled"]) + let v = native_list_append(v, ["कृश", "adj", "कृश", "", "", "", "emaciated"]) + let v = native_list_append(v, ["लुप्त", "adj", "लुप्त", "", "", "", "disappeared gone"]) + let v = native_list_append(v, ["स्वार्थी", "adj", "स्वार्थी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["ईर्षित", "adj", "ईर्षित", "", "", "", "envied coveted"]) + let v = native_list_append(v, ["सौराष्ट्र", "adj", "सौराष्ट्र", "", "", "", "from Saurashtra"]) + let v = native_list_append(v, ["उत्कृष्ट", "adj", "उत्कृष्ट", "", "", "", "drawn up or"]) + let v = native_list_append(v, ["हित", "adj", "हित", "", "", "", "kind"]) + let v = native_list_append(v, ["अतीत", "adj", "अतीत", "", "", "", "dead passed on"]) + let v = native_list_append(v, ["भेषज्य", "adj", "भेषज्य", "", "", "", "curative"]) + let v = native_list_append(v, ["कश्यप", "adj", "कश्यप", "", "", "", "having black teeth"]) + let v = native_list_append(v, ["ಮುಗ್ಧ", "adj", "ಮುಗ್ಧ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["उष्ट", "adj", "उष्ट", "", "", "", "burnt"]) + let v = native_list_append(v, ["आयात", "adj", "आयात", "", "", "", "arrived come"]) + let v = native_list_append(v, ["निर्यात", "adj", "निर्यात", "", "", "", "Gone out issued"]) + let v = native_list_append(v, ["बद्ध", "adj", "बद्ध", "", "", "", "bound tied"]) + let v = native_list_append(v, ["સૌરાષ્ટ્ર", "adj", "સૌરાષ્ટ્ર", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["हीन", "adj", "हीन", "", "", "", "abandoned forsaken left"]) + let v = native_list_append(v, ["गद्य", "adj", "गद्य", "", "", "", "to be spoken"]) + let v = native_list_append(v, ["गभीर", "adj", "गभीर", "", "", "", "deep"]) + let v = native_list_append(v, ["ಬುದ್ಧ", "adj", "ಬುದ್ಧ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ऋभु", "adj", "ऋभु", "", "", "", "skillful expert master"]) + let v = native_list_append(v, ["शीत", "adj", "शीत", "", "", "", "cold cool chilly"]) + let v = native_list_append(v, ["सकल", "adj", "सकल", "", "", "", "total gross whole"]) + let v = native_list_append(v, ["परिपूर्ण", "adj", "परिपूर्ण", "", "", "", "quite full"]) + let v = native_list_append(v, ["निर्मल", "adj", "निर्मल", "", "", "", "spotless unsullied clean"]) + let v = native_list_append(v, ["निर्भर", "adj", "निर्भर", "", "", "", "full of abounding"]) + let v = native_list_append(v, ["प्रचेतस्", "adj", "प्रचेतस्", "", "", "", "attentive observant mindful"]) + let v = native_list_append(v, ["उन्नत", "adj", "उन्नत", "", "", "", "bent or turned"]) + let v = native_list_append(v, ["निरीक्षण", "adj", "निरीक्षण", "", "", "", "looking at regarding"]) + let v = native_list_append(v, ["पाशुपत", "adj", "पाशुपत", "", "", "", "pertaining to Shiva"]) + let v = native_list_append(v, ["नेम", "adj", "नेम", "", "", "", "one several"]) + let v = native_list_append(v, ["นวม", "adj", "นวม", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["वाङ्मय", "adj", "वाङ्मय", "", "", "", "eloquent rhetorical"]) + let v = native_list_append(v, ["स्वपस्", "adj", "स्वपस्", "", "", "", "doing good work"]) + let v = native_list_append(v, ["रिष्ट", "adj", "रिष्ट", "", "", "", "hurt wounded injured"]) + let v = native_list_append(v, ["अचर", "adj", "अचर", "", "", "", "immovable impassable"]) + let v = native_list_append(v, ["हरित", "adj", "हरित", "", "", "", "yellowish"]) + let v = native_list_append(v, ["तुरीय", "adj", "तुरीय", "", "", "", "fourth"]) + let v = native_list_append(v, ["सुबोध", "adj", "सुबोध", "", "", "", "intelligible coherent comprehensible"]) + let v = native_list_append(v, ["विनय", "adj", "विनय", "", "", "", "leading away or"]) + let v = native_list_append(v, ["अर्पित", "adj", "अर्पित", "", "", "", "inserted fixed"]) + let v = native_list_append(v, ["वसिष्ठ", "adj", "वसिष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["કાર્ય", "adj", "કાર્ય", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["अजीर्ण", "adj", "अजीर्ण", "", "", "", "not decomposed undigested"]) + let v = native_list_append(v, ["निक्त", "adj", "निक्त", "", "", "", "washed cleansed purified"]) + let v = native_list_append(v, ["अतुल्य", "adj", "अतुल्य", "", "", "", "unequalled incomparable unparalleled"]) + let v = native_list_append(v, ["पिनद्ध", "adj", "पिनद्ध", "", "", "", "wrapped covered fastened"]) + let v = native_list_append(v, ["भूषण", "adj", "भूषण", "", "", "", "decorating ornating embellishing"]) + let v = native_list_append(v, ["प्रेत", "adj", "प्रेत", "", "", "", "departed deceased dead"]) + let v = native_list_append(v, ["आदिम", "adj", "आदिम", "", "", "", "first"]) + let v = native_list_append(v, ["हितकार", "adj", "हितकार", "", "", "", "favourable beneficial useful"]) + let v = native_list_append(v, ["वस्यस्", "adj", "वस्यस्", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["स्रुत", "adj", "स्रुत", "", "", "", "flowing pouring"]) + let v = native_list_append(v, ["वृद्ध", "adj", "वृद्ध", "", "", "", "grown become larger"]) + let v = native_list_append(v, ["क्रुद्ध", "adj", "क्रुद्ध", "", "", "", "irritated provoked angry"]) + let v = native_list_append(v, ["तुमुल", "adj", "तुमुल", "", "", "", "tumultuous noisy"]) + let v = native_list_append(v, ["अत्याचार", "adj", "अत्याचार", "", "", "", "negligent of or"]) + let v = native_list_append(v, ["अनिरुद्ध", "adj", "अनिरुद्ध", "", "", "", "unobstructed"]) + let v = native_list_append(v, ["गूढ", "adj", "गूढ", "", "", "", "covered hidden concealed"]) + let v = native_list_append(v, ["गूळ्ह", "adj", "गूळ्ह", "", "", "", "covered hidden concealed"]) + let v = native_list_append(v, ["षोडश", "adj", "षोडश", "", "", "", "sixteenth"]) + let v = native_list_append(v, ["ऊढ", "adj", "ऊढ", "", "", "", "carried conveyed"]) + let v = native_list_append(v, ["अविद्वस्", "adj", "अविद्वस्", "", "", "", "ignorant unknowledgeable"]) + let v = native_list_append(v, ["तुच्छ्य", "adj", "तुच्छ्य", "", "", "", "empty vain"]) + let v = native_list_append(v, ["स्पृध्", "adj", "स्पृध्", "", "", "", "emulous vying with"]) + let v = native_list_append(v, ["दृष्ट", "adj", "दृष्ट", "", "", "", "visible apparent"]) + let v = native_list_append(v, ["पौरुष", "adj", "पौरुष", "", "", "", "manly"]) + let v = native_list_append(v, ["दृळ्ह", "adj", "दृळ्ह", "", "", "", "fixed firm hard"]) + let v = native_list_append(v, ["शक्य", "adj", "शक्य", "", "", "", "possible practicable capable"]) + let v = native_list_append(v, ["स्थूल", "adj", "स्थूल", "", "", "", "large stout bulky"]) + let v = native_list_append(v, ["चतुर्दश", "adj", "चतुर्दश", "", "", "", "fourteenth"]) + let v = native_list_append(v, ["अष्टादश", "adj", "अष्टादश", "", "", "", "eighteenth"]) + let v = native_list_append(v, ["प्रौढ", "adj", "प्रौढ", "", "", "", "great mighty"]) + let v = native_list_append(v, ["सूक्ष्म", "adj", "सूक्ष्म", "", "", "", "acute subtle keen"]) + let v = native_list_append(v, ["पार्थिव", "adj", "पार्थिव", "", "", "", "earthly earthen of"]) + let v = native_list_append(v, ["अघ", "adj", "अघ", "", "", "", "bad evil sinful"]) + let v = native_list_append(v, ["विभूति", "adj", "विभूति", "", "", "", "mighty powerful"]) + let v = native_list_append(v, ["ध्वान्त", "adj", "ध्वान्त", "", "", "", "covered veiled"]) + let v = native_list_append(v, ["धीरा", "adj", "धीरा", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["निरन्तर", "adj", "निरन्तर", "", "", "", "dense full"]) + let v = native_list_append(v, ["ओजिष्ठ", "adj", "ओजिष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["ऊना", "adj", "ऊना", "", "", "", "masculine nominative/vocative/accusative dual"]) + let v = native_list_append(v, ["उशिज्", "adj", "उशिज्", "", "", "", "wishing desiring earnest"]) + let v = native_list_append(v, ["तृप्त", "adj", "तृप्त", "", "", "", "satiated satisfied content"]) + let v = native_list_append(v, ["सटीक", "adj", "सटीक", "", "", "", "accompanied or explained"]) + let v = native_list_append(v, ["जरत्", "adj", "जरत्", "", "", "", "old ancient"]) + let v = native_list_append(v, ["पार्थिवात्", "adj", "पार्थिवात्", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["पार्थिवेन", "adj", "पार्थिवेन", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["पार्थिवः", "adj", "पार्थिवः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["पार्थिवस्य", "adj", "पार्थिवस्य", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["पार्थिवौ", "adj", "पार्थिवौ", "", "", "", "masculine nominative/vocative/accusative dual"]) + let v = native_list_append(v, ["पार्थिवम्", "adj", "पार्थिवम्", "", "", "", "inflection of पार्थिव"]) + let v = native_list_append(v, ["पार्थिवेषु", "adj", "पार्थिवेषु", "", "", "", "masculine/neuter locative plural"]) + let v = native_list_append(v, ["पार्थिवेभ्यः", "adj", "पार्थिवेभ्यः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["असितभ्रू", "adj", "असितभ्रू", "", "", "", "having black eyelid"]) + let v = native_list_append(v, ["महावीर", "adj", "महावीर", "", "", "", "very brave courageous"]) + let v = native_list_append(v, ["महावीरः", "adj", "महावीरः", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["महावीरौ", "adj", "महावीरौ", "", "", "", "nominative masculine dual"]) + let v = native_list_append(v, ["महावीरम्", "adj", "महावीरम्", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["महावीराः", "adj", "महावीराः", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["उत्तराधर", "adj", "उत्तराधर", "", "", "", "superior and inferior"]) + let v = native_list_append(v, ["नेतृ", "adj", "नेतृ", "", "", "", "leading guiding"]) + let v = native_list_append(v, ["सित", "adj", "सित", "", "", "", "bound tied fettered"]) + let v = native_list_append(v, ["नगण्य", "adj", "नगण्य", "", "", "", "negligible very small"]) + let v = native_list_append(v, ["तिग्म", "adj", "तिग्म", "", "", "", "sharp pointed"]) + let v = native_list_append(v, ["छिद्", "adj", "छिद्", "", "", "", "cutting cutting off"]) + let v = native_list_append(v, ["सर्जनात्मक", "adj", "सर्जनात्मक", "", "", "", "Of or pertaining"]) + let v = native_list_append(v, ["भावित", "adj", "भावित", "", "", "", "caused to be"]) + let v = native_list_append(v, ["भवितव्य", "adj", "भवितव्य", "", "", "", "that must be"]) + let v = native_list_append(v, ["लज्जास्पद", "adj", "लज्जास्पद", "", "", "", "embarrassing humiliating"]) + let v = native_list_append(v, ["स्मेर", "adj", "स्मेर", "", "", "", "blown"]) + let v = native_list_append(v, ["तरुतृ", "adj", "तरुतृ", "", "", "", "winning"]) + let v = native_list_append(v, ["प्रतिलोम", "adj", "प्रतिलोम", "", "", "", "contrary to the"]) + let v = native_list_append(v, ["दुष्टेन", "adj", "दुष्टेन", "", "", "", "instrumental masculine singular"]) + let v = native_list_append(v, ["मौखिक", "adj", "मौखिक", "", "", "", "oral spoken vocal"]) + let v = native_list_append(v, ["मध्यस्थ", "adj", "मध्यस्थ", "", "", "", "impartial neutral not"]) + let v = native_list_append(v, ["जङ्गम", "adj", "जङ्गम", "", "", "", "mobile movable locomotive"]) + let v = native_list_append(v, ["वाम", "adj", "वाम", "", "", "", "left not right"]) + let v = native_list_append(v, ["बहुल", "adj", "बहुल", "", "", "", "thick large"]) + let v = native_list_append(v, ["गुरवस्", "adj", "गुरवस्", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["विपरिवर्तन", "adj", "विपरिवर्तन", "", "", "", "causing to turn"]) + let v = native_list_append(v, ["युवती", "adj", "युवती", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["चित", "adj", "चित", "", "", "", "piled up heaped"]) + let v = native_list_append(v, ["अश्रीर", "adj", "अश्रीर", "", "", "", "unpleasant ugly"]) + let v = native_list_append(v, ["ऋजिप्य", "adj", "ऋजिप्य", "", "", "", "straight-flying"]) + let v = native_list_append(v, ["अनाधिकारिक", "adj", "अनाधिकारिक", "", "", "", "unofficial"]) + let v = native_list_append(v, ["शिवाय", "adj", "शिवाय", "", "", "", "masculine dative singular"]) + let v = native_list_append(v, ["नेदीयस्", "adj", "नेदीयस्", "", "", "", "nearer very near"]) + let v = native_list_append(v, ["नेदिष्ठ", "adj", "नेदिष्ठ", "", "", "", "nearest next"]) + let v = native_list_append(v, ["दक्ष", "adj", "दक्ष", "", "", "", "right side"]) + let v = native_list_append(v, ["द्वितीया", "adj", "द्वितीया", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["सुश्रवस्", "adj", "सुश्रवस्", "", "", "", "famous"]) + let v = native_list_append(v, ["देशज", "adj", "देशज", "", "", "", "aboriginal native"]) + let v = native_list_append(v, ["भूतमय", "adj", "भूतमय", "", "", "", "true"]) + let v = native_list_append(v, ["जेन्य", "adj", "जेन्य", "", "", "", "epithet of Agni"]) + let v = native_list_append(v, ["जात्यरत्नमय", "adj", "जात्यरत्नमय", "", "", "", "consisting of genuine"]) + let v = native_list_append(v, ["गुणज्ञ", "adj", "गुणज्ञ", "", "", "", "virtuous"]) + let v = native_list_append(v, ["द्रुह्वन्", "adj", "द्रुह्वन्", "", "", "", "deceptive hostile injuring"]) + let v = native_list_append(v, ["अरमति", "adj", "अरमति", "", "", "", "tireless without relaxation"]) + let v = native_list_append(v, ["भगवत्", "adj", "भगवत्", "", "", "", "possessing fortune fortunate"]) + let v = native_list_append(v, ["जूर्ण", "adj", "जूर्ण", "", "", "", "old decayed worn"]) + let v = native_list_append(v, ["सिन्व", "adj", "सिन्व", "", "", "", "satiable"]) + let v = native_list_append(v, ["वातायन", "adj", "वातायन", "", "", "", "moving in the"]) + let v = native_list_append(v, ["खग", "adj", "खग", "", "", "", "going in the"]) + let v = native_list_append(v, ["वैद्युतक", "adj", "वैद्युतक", "", "", "", "electronic"]) + let v = native_list_append(v, ["श्वित्र", "adj", "श्वित्र", "", "", "", "white"]) + let v = native_list_append(v, ["अत्यद्भुत", "adj", "अत्यद्भुत", "", "", "", "very wonderful"]) + let v = native_list_append(v, ["मुच्", "adj", "मुच्", "", "", "", "freeing or delivering"]) + let v = native_list_append(v, ["द्वय", "adj", "द्वय", "", "", "", "double twofold"]) + let v = native_list_append(v, ["युष्माक", "adj", "युष्माक", "", "", "", "your yours of"]) + let v = native_list_append(v, ["निरीक्षक", "adj", "निरीक्षक", "", "", "", "looking at seeing"]) + let v = native_list_append(v, ["मनोगतम्", "adj", "मनोगतम्", "", "", "", "inflection of मनोगत"]) + let v = native_list_append(v, ["मनोगत", "adj", "मनोगत", "", "", "", "existing or passing"]) + let v = native_list_append(v, ["मनोगते", "adj", "मनोगते", "", "", "", "inflection of मनोगत"]) + let v = native_list_append(v, ["मनोगतेन", "adj", "मनोगतेन", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["मनोगतैः", "adj", "मनोगतैः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["मनोगतस्य", "adj", "मनोगतस्य", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["रामेण", "adj", "रामेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["कौतुकिन्", "adj", "कौतुकिन्", "", "", "", "curious full of"]) + let v = native_list_append(v, ["कृष्णस्", "adj", "कृष्णस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["कपिलायाः", "adj", "कपिलायाः", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["सुन्दरी", "adj", "सुन्दरी", "", "", "", "beautiful"]) + let v = native_list_append(v, ["मधुरेण", "adj", "मधुरेण", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["देवेन", "adj", "देवेन", "", "", "", "inflection of देव"]) + let v = native_list_append(v, ["एष", "adj", "एष", "", "", "", "gliding running hastening"]) + let v = native_list_append(v, ["अदर", "adj", "अदर", "", "", "", "not little much"]) + let v = native_list_append(v, ["भवतस्", "adj", "भवतस्", "", "", "", "masculine/neuter ablative/genitive singular"]) + let v = native_list_append(v, ["रीळ्ह", "adj", "रीळ्ह", "", "", "", "licked"]) + let v = native_list_append(v, ["බුද‍්ධ", "adj", "බුද‍්ධ", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["लीढ", "adj", "लीढ", "", "", "", "licked tasted"]) + let v = native_list_append(v, ["बाळ्ह", "adj", "बाळ्ह", "", "", "", "strong mighty"]) + let v = native_list_append(v, ["अब्जित्", "adj", "अब्जित्", "", "", "", "conquering waters"]) + let v = native_list_append(v, ["रजिष्ठ", "adj", "रजिष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["भवन्त्", "adj", "भवन्त्", "", "", "", "strong stem of"]) + let v = native_list_append(v, ["𑀪𑀯𑀦𑁆𑀢𑁆", "adj", "𑀪𑀯𑀦𑁆𑀢𑁆", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["दुह्", "adj", "दुह्", "", "", "", "yielding granting"]) + let v = native_list_append(v, ["ज्येष्ठ", "adj", "ज्येष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["लिह्", "adj", "लिह्", "", "", "", "licking"]) + let v = native_list_append(v, ["सू", "adj", "सू", "", "", "", "begetting procreating bringing"]) + let v = native_list_append(v, ["काट", "adj", "काट", "", "", "", "black"]) + let v = native_list_append(v, ["धारित", "adj", "धारित", "", "", "", "held borne supported"]) + let v = native_list_append(v, ["बर्हिष्ठ", "adj", "बर्हिष्ठ", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["जिह्म", "adj", "जिह्म", "", "", "", "oblique transverse athwart"]) + let v = native_list_append(v, ["अनाहार", "adj", "अनाहार", "", "", "", "one who abstains"]) + let v = native_list_append(v, ["अन्तवत्", "adj", "अन्तवत्", "", "", "", "limited having an"]) + let v = native_list_append(v, ["अनापत्ति", "adj", "अनापत्ति", "", "", "", "guiltless blameless"]) + let v = native_list_append(v, ["उद्द्योत", "adj", "उद्द्योत", "", "", "", "flashing up shining"]) + let v = native_list_append(v, ["សិទ្ធ", "adj", "សិទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["रुग्ण", "adj", "रुग्ण", "", "", "", "broken bent shattered"]) + let v = native_list_append(v, ["अनित्य", "adj", "अनित्य", "", "", "", "noneternal impermanent transient"]) + let v = native_list_append(v, ["अनिन्द्रिय", "adj", "अनिन्द्रिय", "", "", "", "senseless lacking senses"]) + let v = native_list_append(v, ["अनुशासक", "adj", "अनुशासक", "", "", "", "instructor director one"]) + let v = native_list_append(v, ["अपरिमाण", "adj", "अपरिमाण", "", "", "", "immeasurable"]) + let v = native_list_append(v, ["स्वरि", "adj", "स्वरि", "", "", "", "noisy boisterous"]) + let v = native_list_append(v, ["जन्य", "adj", "जन्य", "", "", "", "belonging to a"]) + let v = native_list_append(v, ["दानु", "adj", "दानु", "", "", "", "valiant victor conqueror"]) + let v = native_list_append(v, ["यूनि", "adj", "यूनि", "", "", "", "inflection of युव॑न्"]) + let v = native_list_append(v, ["युग्म", "adj", "युग्म", "", "", "", "even"]) + let v = native_list_append(v, ["धुर", "adj", "धुर", "", "", "", "having anything as"]) + let v = native_list_append(v, ["यज्यु", "adj", "यज्यु", "", "", "", "worshipping devout pious"]) + let v = native_list_append(v, ["याम", "adj", "याम", "", "", "", "relating to or"]) + let v = native_list_append(v, ["यह्व", "adj", "यह्व", "", "", "", "restless swift active"]) + let v = native_list_append(v, ["यह्वत्", "adj", "यह्वत्", "", "", "", "ever-flowing waters"]) + let v = native_list_append(v, ["भुग्न", "adj", "भुग्न", "", "", "", "bent curved crooked"]) + let v = native_list_append(v, ["भग्न", "adj", "भग्न", "", "", "", "broken literally and"]) + let v = native_list_append(v, ["तक्व", "adj", "तक्व", "", "", "", "quick fast"]) + let v = native_list_append(v, ["जू", "adj", "जू", "", "", "", "quick speedy courser"]) + let v = native_list_append(v, ["ऋतप्सु", "adj", "ऋतप्सु", "", "", "", "one whose appearance"]) + let v = native_list_append(v, ["तकु", "adj", "तकु", "", "", "", "quick fast"]) + let v = native_list_append(v, ["दैय", "adj", "दैय", "", "", "", "That should be"]) + let v = native_list_append(v, ["मारुक", "adj", "मारुक", "", "", "", "dying perishing"]) + let v = native_list_append(v, ["आतिथ्य", "adj", "आतिथ्य", "", "", "", "proper for a"]) + let v = native_list_append(v, ["काम्य", "adj", "काम्य", "", "", "", "desirable beautiful amiable"]) + let v = native_list_append(v, ["धरुण", "adj", "धरुण", "", "", "", "bearing holding supporting"]) + let v = native_list_append(v, ["दर्त्नु", "adj", "दर्त्नु", "", "", "", "bursting breaking"]) + let v = native_list_append(v, ["भरिष", "adj", "भरिष", "", "", "", "rapacious avaricious greedy"]) + let v = native_list_append(v, ["दर्तृ", "adj", "दर्तृ", "", "", "", "breaking"]) + let v = native_list_append(v, ["दारुण", "adj", "दारुण", "", "", "", "hard harsh antonym"]) + let v = native_list_append(v, ["स्तर्य", "adj", "स्तर्य", "", "", "", "to be laid"]) + let v = native_list_append(v, ["स्तीर्ण", "adj", "स्तीर्ण", "", "", "", "spread strewn scattered"]) + let v = native_list_append(v, ["भरत्", "adj", "भरत्", "", "", "", "bearing carrying"]) + let v = native_list_append(v, ["परिमन्यु", "adj", "परिमन्यु", "", "", "", "angry"]) + let v = native_list_append(v, ["द्रापि", "adj", "द्रापि", "", "", "", "causing to run"]) + let v = native_list_append(v, ["प्रउग्य", "adj", "प्रउग्य", "", "", "", "being at or"]) + let v = native_list_append(v, ["द्युम्निन्", "adj", "द्युम्निन्", "", "", "", "majestic strong powerful"]) + let v = native_list_append(v, ["पाय्य", "adj", "पाय्य", "", "", "", "to be drunk"]) + let v = native_list_append(v, ["पशव्य", "adj", "पशव्य", "", "", "", "belonging or relating"]) + let v = native_list_append(v, ["शेव", "adj", "शेव", "", "", "", "dear precious"]) + let v = native_list_append(v, ["सुशेवस्", "adj", "सुशेवस्", "", "", "", "very gracious very"]) + let v = native_list_append(v, ["सुशेव", "adj", "सुशेव", "", "", "", "very dear very"]) + let v = native_list_append(v, ["सुशेव्य", "adj", "सुशेव्य", "", "", "", "dearly loved"]) + let v = native_list_append(v, ["सुशोक", "adj", "सुशोक", "", "", "", "shining beautifully"]) + let v = native_list_append(v, ["शूशुजान", "adj", "शूशुजान", "", "", "", "puffed up audacious"]) + let v = native_list_append(v, ["हर्षण", "adj", "हर्षण", "", "", "", "causing the hair"]) + let v = native_list_append(v, ["शुच", "adj", "शुच", "", "", "", "pure"]) + let v = native_list_append(v, ["शुचि", "adj", "शुचि", "", "", "", "shining glowing gleaming"]) + let v = native_list_append(v, ["नादेय", "adj", "नादेय", "", "", "", "coming from or"]) + let v = native_list_append(v, ["विश्वश्चन्द्र", "adj", "विश्वश्चन्द्र", "", "", "", "all-glittering"]) + let v = native_list_append(v, ["सुश्रप", "adj", "सुश्रप", "", "", "", "easily cooked"]) + let v = native_list_append(v, ["सुश्चन्द्र", "adj", "सुश्चन्द्र", "", "", "", "glittering beautifully"]) + let v = native_list_append(v, ["अश्वश्चन्द्र", "adj", "अश्वश्चन्द्र", "", "", "", "splendid or brilliant"]) + let v = native_list_append(v, ["वी", "adj", "वी", "", "", "", "going to eager"]) + let v = native_list_append(v, ["वीतिराधस्", "adj", "वीतिराधस्", "", "", "", "affording enjoyment"]) + let v = native_list_append(v, ["रारहाण", "adj", "रारहाण", "", "", "", "hastening quick rapid"]) + let v = native_list_append(v, ["रंसु", "adj", "रंसु", "", "", "", "cheerful delightful"]) + let v = native_list_append(v, ["राध्य", "adj", "राध्य", "", "", "", "to be accomplished"]) + let v = native_list_append(v, ["राद्ध", "adj", "राद्ध", "", "", "", "accomplished brought about"]) + let v = native_list_append(v, ["रिपुघ्न", "adj", "रिपुघ्न", "", "", "", "enemy-killing"]) + let v = native_list_append(v, ["रिपुघातिन्", "adj", "रिपुघातिन्", "", "", "", "enemy-killing"]) + let v = native_list_append(v, ["रिपु", "adj", "रिपु", "", "", "", "deceitful treacherous"]) + let v = native_list_append(v, ["वीतभी", "adj", "वीतभी", "", "", "", "free from fear"]) + let v = native_list_append(v, ["वीतभीति", "adj", "वीतभीति", "", "", "", "free from fear"]) + let v = native_list_append(v, ["वीतमन्यु", "adj", "वीतमन्यु", "", "", "", "free from resentment"]) + let v = native_list_append(v, ["प्रैणान", "adj", "प्रैणान", "", "", "", "propitiated gratified"]) + let v = native_list_append(v, ["सरु", "adj", "सरु", "", "", "", "minute thin fine"]) + let v = native_list_append(v, ["त्वेष", "adj", "त्वेष", "", "", "", "vehement impetuous causing"]) + let v = native_list_append(v, ["त्वेषद्युम्न", "adj", "त्वेषद्युम्न", "", "", "", "having glittering brilliancy"]) + let v = native_list_append(v, ["त्वेषनृम्ण", "adj", "त्वेषनृम्ण", "", "", "", "of brilliant power"]) + let v = native_list_append(v, ["त्वेषरथ", "adj", "त्वेषरथ", "", "", "", "his chariot charges"]) + let v = native_list_append(v, ["तुर", "adj", "तुर", "", "", "", "quick willing prompt"]) + let v = native_list_append(v, ["त्सारिन्", "adj", "त्सारिन्", "", "", "", "approaching stealthily hidden"]) + let v = native_list_append(v, ["शरारु", "adj", "शरारु", "", "", "", "injurious noxious"]) + let v = native_list_append(v, ["हिंस्र", "adj", "हिंस्र", "", "", "", "injurious mischievous hurtful"]) + let v = native_list_append(v, ["अभिष्टिद्युम्न", "adj", "अभिष्टिद्युम्न", "", "", "", "whose glory is"]) + let v = native_list_append(v, ["तुविद्युम्न", "adj", "तुविद्युम्न", "", "", "", "very glorious very"]) + let v = native_list_append(v, ["धृष्ट", "adj", "धृष्ट", "", "", "", "bold daring confident"]) + let v = native_list_append(v, ["प्सात", "adj", "प्सात", "", "", "", "chewed eaten devoured"]) + let v = native_list_append(v, ["वपुस्", "adj", "वपुस्", "", "", "", "having form or"]) + let v = native_list_append(v, ["वपुष", "adj", "वपुष", "", "", "", "wonderfully beautiful stunning"]) + let v = native_list_append(v, ["वपुष्य", "adj", "वपुष्य", "", "", "", "wonderfully beautiful wonderful"]) + let v = native_list_append(v, ["वपुष्टर", "adj", "वपुष्टर", "", "", "", "more or most"]) + let v = native_list_append(v, ["वपुष्टम", "adj", "वपुष्टम", "", "", "", "most beautiful or"]) + let v = native_list_append(v, ["रिप्र", "adj", "रिप्र", "", "", "", "vile bad"]) + let v = native_list_append(v, ["रेभ", "adj", "रेभ", "", "", "", "creaking crackling murmuring"]) + let v = native_list_append(v, ["वर्चोदा", "adj", "वर्चोदा", "", "", "", "granting power bestowing"]) + let v = native_list_append(v, ["वर्चोधा", "adj", "वर्चोधा", "", "", "", "granting power bestowing"]) + let v = native_list_append(v, ["अर्चा", "adj", "अर्चा", "", "", "", "masculine/feminine/neuter instrumental singular"]) + let v = native_list_append(v, ["अर्चि", "adj", "अर्चि", "", "", "", "inflection of अर्च्"]) + let v = native_list_append(v, ["रैवत", "adj", "रैवत", "", "", "", "wealthy"]) + let v = native_list_append(v, ["रयिन्तम", "adj", "रयिन्तम", "", "", "", "extremely wealthy"]) + let v = native_list_append(v, ["सोल्लुण्ठ", "adj", "सोल्लुण्ठ", "", "", "", "ironical sarcastic"]) + let v = native_list_append(v, ["दुवस्यु", "adj", "दुवस्यु", "", "", "", "worshipping reverential"]) + let v = native_list_append(v, ["चण्ड", "adj", "चण्ड", "", "", "", "glowing with passion"]) + let v = native_list_append(v, ["तीव्र", "adj", "तीव्र", "", "", "", "strong severe violent"]) + let v = native_list_append(v, ["तविषीयु", "adj", "तविषीयु", "", "", "", "spirited of a"]) + let v = native_list_append(v, ["तव्य", "adj", "तव्य", "", "", "", "strong"]) + let v = native_list_append(v, ["तवस्", "adj", "तवस्", "", "", "", "strong energetic courageous"]) + let v = native_list_append(v, ["तविष", "adj", "तविष", "", "", "", "strong energetic courageous"]) + let v = native_list_append(v, ["अक्षित", "adj", "अक्षित", "", "", "", "imperishable everlasting undying"]) + let v = native_list_append(v, ["सज्ज", "adj", "सज्ज", "", "", "", "ready prepared equipped"]) + let v = native_list_append(v, ["मङ्गल", "adj", "मङ्गल", "", "", "", "auspicious lucky"]) + let v = native_list_append(v, ["वर्धन", "adj", "वर्धन", "", "", "", "strengthening"]) + let v = native_list_append(v, ["अवशिन्", "adj", "अवशिन्", "", "", "", "not having or"]) + let v = native_list_append(v, ["आवासिक", "adj", "आवासिक", "", "", "", "staying in abiding"]) + let v = native_list_append(v, ["नारक", "adj", "नारक", "", "", "", "hellish infernal"]) + let v = native_list_append(v, ["वग्नु", "adj", "वग्नु", "", "", "", "garrulous loquacious"]) + let v = native_list_append(v, ["ईर्षु", "adj", "ईर्षु", "", "", "", "envious jealous"]) + let v = native_list_append(v, ["ईर्ष्यु", "adj", "ईर्ष्यु", "", "", "", "envious jealous"]) + let v = native_list_append(v, ["ईक्ष", "adj", "ईक्ष", "", "", "", "seeing looking"]) + let v = native_list_append(v, ["နဝမ", "adj", "နဝမ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["सक्त", "adj", "सक्त", "", "", "", "clinging or adhering"]) + let v = native_list_append(v, ["आजानेय", "adj", "आजानेय", "", "", "", "of noble birth"]) + let v = native_list_append(v, ["अकृतज्ञ", "adj", "अकृतज्ञ", "", "", "", "ungrateful"]) + let v = native_list_append(v, ["अकुशल", "adj", "अकुशल", "", "", "", "unhappy inauspicious evil"]) + let v = native_list_append(v, ["अक्ष्णया", "adj", "अक्ष्णया", "", "", "", "diagonally transversely"]) + let v = native_list_append(v, ["अक्षोभ", "adj", "अक्षोभ", "", "", "", "unagitated unmoved"]) + let v = native_list_append(v, ["अतिरेक", "adj", "अतिरेक", "", "", "", "surplus"]) + let v = native_list_append(v, ["ဂုရု", "adj", "ဂုရု", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["ဒေဝ", "adj", "ဒေဝ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["रूपवत्", "adj", "रूपवत्", "", "", "", "corporeal embodied"]) + let v = native_list_append(v, ["तूय", "adj", "तूय", "", "", "", "strong"]) + let v = native_list_append(v, ["ພຸທ຺ຘ", "adj", "ພຸທ຺ຘ", "", "", "", "Lao script form"]) + let v = native_list_append(v, ["พุทฺธ", "adj", "พุทฺธ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["पाषण्ड", "adj", "पाषण्ड", "", "", "", "heretical impious"]) + let v = native_list_append(v, ["तीक्ष्ण", "adj", "तीक्ष्ण", "", "", "", "sharp"]) + let v = native_list_append(v, ["ସଂସ୍କୃତ", "adj", "ସଂସ୍କୃତ", "", "", "", "Odia script form"]) + let v = native_list_append(v, ["ภวนฺตฺ", "adj", "ภวนฺตฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ᬖᭀᬭ", "adj", "ᬖᭀᬭ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["ᬲᬶᬤ᭄ᬥ", "adj", "ᬲᬶᬤ᭄ᬥ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["เทว", "adj", "เทว", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["สุขี", "adj", "สุขี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["उपतापिन्", "adj", "उपतापिन्", "", "", "", "suffering from pain"]) + let v = native_list_append(v, ["रण्ड", "adj", "रण्ड", "", "", "", "maimed crippled"]) + let v = native_list_append(v, ["म्लात", "adj", "म्लात", "", "", "", "tanned softened leather"]) + let v = native_list_append(v, ["दन्तमूलीय", "adj", "दन्तमूलीय", "", "", "", "toothroot - a"]) + let v = native_list_append(v, ["जिह्वामूलीय", "adj", "जिह्वामूलीय", "", "", "", "uttered from the"]) + let v = native_list_append(v, ["कृष्णा", "adj", "कृष्णा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["इद्धाग्नि", "adj", "इद्धाग्नि", "", "", "", "whose fire is"]) + let v = native_list_append(v, ["रथी", "adj", "रथी", "", "", "", "going or fighting"]) + let v = native_list_append(v, ["परिविष्ट", "adj", "परिविष्ट", "", "", "", "surrounded beset besieged"]) + let v = native_list_append(v, ["एवंगत", "adj", "एवंगत", "", "", "", "being in such"]) + let v = native_list_append(v, ["एवंक्रतु", "adj", "एवंक्रतु", "", "", "", "thus minded"]) + let v = native_list_append(v, ["आलाक्त", "adj", "आलाक्त", "", "", "", "envenomed marked or"]) + let v = native_list_append(v, ["अनवपृग्ण", "adj", "अनवपृग्ण", "", "", "", "not closely united"]) + let v = native_list_append(v, ["पौष्टिक", "adj", "पौष्टिक", "", "", "", "relating to growth"]) + let v = native_list_append(v, ["क्रीड", "adj", "क्रीड", "", "", "", "playing sporting"]) + let v = native_list_append(v, ["क्रीळ", "adj", "क्रीळ", "", "", "", "playing sporting"]) + let v = native_list_append(v, ["अपर्याप्त", "adj", "अपर्याप्त", "", "", "", "insufficient inadequate incomplete"]) + let v = native_list_append(v, ["अर्जित", "adj", "अर्जित", "", "", "", "acquired gained earned"]) + let v = native_list_append(v, ["साप्ताहिक", "adj", "साप्ताहिक", "", "", "", "weekly occurring in"]) + let v = native_list_append(v, ["अलंकृत", "adj", "अलंकृत", "", "", "", "adorned decorated"]) + let v = native_list_append(v, ["द्वारका", "adj", "द्वारका", "", "", "", "many-gated"]) + let v = native_list_append(v, ["महर्द्धिक", "adj", "महर्द्धिक", "", "", "", "very prosperous"]) + let v = native_list_append(v, ["प्रवर", "adj", "प्रवर", "", "", "", "best finest"]) + let v = native_list_append(v, ["भाषित", "adj", "भाषित", "", "", "", "spoken said uttered"]) + let v = native_list_append(v, ["नव्य", "adj", "नव्य", "", "", "", "new"]) + let v = native_list_append(v, ["एकल", "adj", "एकल", "", "", "", "alone solitary"]) + let v = native_list_append(v, ["अज्वर", "adj", "अज्वर", "", "", "", "without fever"]) + let v = native_list_append(v, ["अभ्यन्तरकल्प", "adj", "अभ्यन्तरकल्प", "", "", "", "intermediate age middle"]) + let v = native_list_append(v, ["संक्रमित", "adj", "संक्रमित", "", "", "", "conducted led to"]) + let v = native_list_append(v, ["तुल्य", "adj", "तुल्य", "", "", "", "equal to"]) + let v = native_list_append(v, ["संरक्षित", "adj", "संरक्षित", "", "", "", "protected preserved taken"]) + let v = native_list_append(v, ["अनामय", "adj", "अनामय", "", "", "", "healthy free from"]) + let v = native_list_append(v, ["अक्षम्य", "adj", "अक्षम्य", "", "", "", "unforgivable unpardonable"]) + let v = native_list_append(v, ["उच्छिन्न", "adj", "उच्छिन्न", "", "", "", "cut off"]) + let v = native_list_append(v, ["अविद्य", "adj", "अविद्य", "", "", "", "ignorant foolish unwise"]) + let v = native_list_append(v, ["अव्याकृत", "adj", "अव्याकृत", "", "", "", "undeveloped unexpounded"]) + let v = native_list_append(v, ["ब्रध्न", "adj", "ब्रध्न", "", "", "", "ruddy pale red"]) + let v = native_list_append(v, ["วาต", "adj", "วาต", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["स्थावर", "adj", "स्थावर", "", "", "", "fixed stationary"]) + let v = native_list_append(v, ["पराक्रमी", "adj", "पराक्रमी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["धिष्ण्य", "adj", "धिष्ण्य", "", "", "", "attentive"]) + let v = native_list_append(v, ["नूतन", "adj", "नूतन", "", "", "", "current modern"]) + let v = native_list_append(v, ["पुद्गल", "adj", "पुद्गल", "", "", "", "beautiful lovely handsome"]) + let v = native_list_append(v, ["𑀲𑀳𑀲𑁆𑀭", "adj", "𑀲𑀳𑀲𑁆𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ធាម្ម៌ិក", "adj", "ធាម្ម៌ិក", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["សវ្វ៌", "adj", "សវ្វ៌", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अनृक्षर", "adj", "अनृक्षर", "", "", "", "without thorns"]) + let v = native_list_append(v, ["स्मृत", "adj", "स्मृत", "", "", "", "remembered recollected thought"]) + let v = native_list_append(v, ["सृष्ट", "adj", "सृष्ट", "", "", "", "let go discharged"]) + let v = native_list_append(v, ["नीत", "adj", "नीत", "", "", "", "led guided brought"]) + let v = native_list_append(v, ["यत", "adj", "यत", "", "", "", "restrained held brought"]) + let v = native_list_append(v, ["रुद्ध", "adj", "रुद्ध", "", "", "", "obstructed stopped suppressed"]) + let v = native_list_append(v, ["अनेन", "adj", "अनेन", "", "", "", "without stags"]) + let v = native_list_append(v, ["शस्त", "adj", "शस्त", "", "", "", "recited repeated"]) + let v = native_list_append(v, ["छिन्न", "adj", "छिन्न", "", "", "", "cut off divided"]) + let v = native_list_append(v, ["छिद्र", "adj", "छिद्र", "", "", "", "torn apart"]) + let v = native_list_append(v, ["नय", "adj", "नय", "", "", "", "fit right proper"]) + let v = native_list_append(v, ["स्निग्ध", "adj", "स्निग्ध", "", "", "", "loving affectionate friendly"]) + let v = native_list_append(v, ["जग्ध", "adj", "जग्ध", "", "", "", "eaten"]) + let v = native_list_append(v, ["इत", "adj", "इत", "", "", "", "gone"]) + let v = native_list_append(v, ["दग्ध", "adj", "दग्ध", "", "", "", "burnt scorched consumed"]) + let v = native_list_append(v, ["रक्तफल", "adj", "रक्तफल", "", "", "", "having or bearing"]) + let v = native_list_append(v, ["चण", "adj", "चण", "", "", "", "renowned or famous"]) + let v = native_list_append(v, ["न्यून", "adj", "न्यून", "", "", "", "less diminished defective"]) + let v = native_list_append(v, ["बन्धन", "adj", "बन्धन", "", "", "", "binding tying fettering"]) + let v = native_list_append(v, ["वैष्णव", "adj", "वैष्णव", "", "", "", "relating or belonging"]) + let v = native_list_append(v, ["शैव", "adj", "शैव", "", "", "", "relating to belonging"]) + let v = native_list_append(v, ["दिग्ध", "adj", "दिग्ध", "", "", "", "smeared anointed"]) + let v = native_list_append(v, ["मोमुघ", "adj", "मोमुघ", "", "", "", "mad insane"]) + let v = native_list_append(v, ["ऋद्ध", "adj", "ऋद्ध", "", "", "", "thriving prosperous"]) + let v = native_list_append(v, ["अननुमेय", "adj", "अननुमेय", "", "", "", "unpredictable uninferable"]) + let v = native_list_append(v, ["अनुमेय", "adj", "अनुमेय", "", "", "", "predictable measurable inferable"]) + let v = native_list_append(v, ["रेखाङ्कित", "adj", "रेखाङ्कित", "", "", "", "underlined"]) + let v = native_list_append(v, ["अङ्कित", "adj", "अङ्कित", "", "", "", "marked"]) + let v = native_list_append(v, ["सुनीत", "adj", "सुनीत", "", "", "", "well-led or guided"]) + let v = native_list_append(v, ["शान्तनु", "adj", "शान्तनु", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["सव्य", "adj", "सव्य", "", "", "", "left left-hand"]) + let v = native_list_append(v, ["बन्दिन्", "adj", "बन्दिन्", "", "", "", "prisoner captive slave"]) + let v = native_list_append(v, ["लोहित", "adj", "लोहित", "", "", "", "red reddish"]) + let v = native_list_append(v, ["गार्ह्य", "adj", "गार्ह्य", "", "", "", "domestic"]) + let v = native_list_append(v, ["स्नात", "adj", "स्नात", "", "", "", "bathed washed cleansed"]) + let v = native_list_append(v, ["श्रावण", "adj", "श्रावण", "", "", "", "relating to or"]) + let v = native_list_append(v, ["आश्विन", "adj", "आश्विन", "", "", "", "belonging or devoted"]) + let v = native_list_append(v, ["पौष", "adj", "पौष", "", "", "", "relating to or"]) + let v = native_list_append(v, ["माघ", "adj", "माघ", "", "", "", "relating to the"]) + let v = native_list_append(v, ["फाल्गुन", "adj", "फाल्गुन", "", "", "", "relating to the"]) + let v = native_list_append(v, ["मेधिर", "adj", "मेधिर", "", "", "", "intelligent wise"]) + let v = native_list_append(v, ["अस्थिर", "adj", "अस्थिर", "", "", "", "unstable shaky"]) + let v = native_list_append(v, ["गर्भिणी", "adj", "गर्भिणी", "", "", "", "feminine of ग॒र्भिन्॑"]) + let v = native_list_append(v, ["तृढ", "adj", "तृढ", "", "", "", "crushed"]) + let v = native_list_append(v, ["अज्ञ", "adj", "अज्ञ", "", "", "", "unknowing ignorant"]) + let v = native_list_append(v, ["भौम", "adj", "भौम", "", "", "", "earthly terrestrial relating"]) + let v = native_list_append(v, ["ओजोदा", "adj", "ओजोदा", "", "", "", "strengthening giving strength"]) + let v = native_list_append(v, ["अपराधिन्", "adj", "अपराधिन्", "", "", "", "criminal offender guilty"]) + let v = native_list_append(v, ["उपयोगिन्", "adj", "उपयोगिन्", "", "", "", "useful"]) + let v = native_list_append(v, ["उपयोगिनी", "adj", "उपयोगिनी", "", "", "", "feminine of उपयोगिन्"]) + let v = native_list_append(v, ["दत्त", "adj", "दत्त", "", "", "", "given granted presented"]) + let v = native_list_append(v, ["भङ्ग", "adj", "भङ्ग", "", "", "", "broken"]) + let v = native_list_append(v, ["कटु", "adj", "कटु", "", "", "", "bitter acrid"]) + let v = native_list_append(v, ["अहंकारिणी", "adj", "अहंकारिणी", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["काण", "adj", "काण", "", "", "", "blind in one"]) + let v = native_list_append(v, ["अहंकारिन्", "adj", "अहंकारिन्", "", "", "", "having conception of"]) + let v = native_list_append(v, ["स्वेदन", "adj", "स्वेदन", "", "", "", "perspiring inclined to"]) + let v = native_list_append(v, ["संयमी", "adj", "संयमी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["संयमिन्", "adj", "संयमिन्", "", "", "", "practicing self-control"]) + let v = native_list_append(v, ["संयमिनी", "adj", "संयमिनी", "", "", "", "one who practises"]) + let v = native_list_append(v, ["स्वार्थिन्", "adj", "स्वार्थिन्", "", "", "", "selfish"]) + let v = native_list_append(v, ["स्वार्थिनी", "adj", "स्वार्थिनी", "", "", "", "feminine of स्वार्थिन्"]) + let v = native_list_append(v, ["सौर्य", "adj", "सौर्य", "", "", "", "solar related to"]) + let v = native_list_append(v, ["भोग्य", "adj", "भोग्य", "", "", "", "fit to be"]) + let v = native_list_append(v, ["साढ", "adj", "साढ", "", "", "", "overcome conquered"]) + let v = native_list_append(v, ["अषाढ", "adj", "अषाढ", "", "", "", "invincible unconquerable"]) + let v = native_list_append(v, ["अषाळ्ह", "adj", "अषाळ्ह", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["मालिन्", "adj", "मालिन्", "", "", "", "garlanded crowned encircled"]) + let v = native_list_append(v, ["ऋणी", "adj", "ऋणी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["ऋणिनी", "adj", "ऋणिनी", "", "", "", "feminine of ऋणिन्"]) + let v = native_list_append(v, ["दुःखिन्", "adj", "दुःखिन्", "", "", "", "sad grieved pained"]) + let v = native_list_append(v, ["सुखिन्", "adj", "सुखिन्", "", "", "", "possessing or causing"]) + let v = native_list_append(v, ["विद्वान्", "adj", "विद्वान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["बहुक", "adj", "बहुक", "", "", "", "costing much"]) + let v = native_list_append(v, ["दानिन्", "adj", "दानिन्", "", "", "", "generous"]) + let v = native_list_append(v, ["दानिनी", "adj", "दानिनी", "", "", "", "feminine of दानिन्"]) + let v = native_list_append(v, ["विपुल", "adj", "विपुल", "", "", "", "large extensive wide"]) + let v = native_list_append(v, ["अपरिग्रह", "adj", "अपरिग्रह", "", "", "", "without possessions"]) + let v = native_list_append(v, ["सनातन", "adj", "सनातन", "", "", "", "existing from the"]) + let v = native_list_append(v, ["कालीन", "adj", "कालीन", "", "", "", "belonging or relating"]) + let v = native_list_append(v, ["सनक", "adj", "सनक", "", "", "", "old ancient former"]) + let v = native_list_append(v, ["कुलीन", "adj", "कुलीन", "", "", "", "belonging to the"]) + let v = native_list_append(v, ["कल्प", "adj", "कल्प", "", "", "", "practicable feasible possible"]) + let v = native_list_append(v, ["प्राणिन्", "adj", "प्राणिन्", "", "", "", "breathing living alive"]) + let v = native_list_append(v, ["यौन", "adj", "यौन", "", "", "", "relating to the"]) + let v = native_list_append(v, ["बुभुक्षित", "adj", "बुभुक्षित", "", "", "", "hungry starving ravenous"]) + let v = native_list_append(v, ["असंख्येय", "adj", "असंख्येय", "", "", "", "innumerable countless"]) + let v = native_list_append(v, ["असेचन​", "adj", "असेचन​", "", "", "", "lovely charming"]) + let v = native_list_append(v, ["प्राप्य", "adj", "प्राप्य", "", "", "", "to be reached"]) + let v = native_list_append(v, ["तेजस्विन्", "adj", "तेजस्विन्", "", "", "", "sharp the eye"]) + let v = native_list_append(v, ["त्राण", "adj", "त्राण", "", "", "", "protected"]) + let v = native_list_append(v, ["अर्पण", "adj", "अर्पण", "", "", "", "procuring"]) + let v = native_list_append(v, ["काल्पनिक", "adj", "काल्पनिक", "", "", "", "existing only in"]) + let v = native_list_append(v, ["षाण्मासिक", "adj", "षाण्मासिक", "", "", "", "six-monthly half-yearly six"]) + let v = native_list_append(v, ["जित", "adj", "जित", "", "", "", "won conquered"]) + let v = native_list_append(v, ["आङ्ग्ल", "adj", "आङ्ग्ल", "", "", "", "English relating to"]) + let v = native_list_append(v, ["धनाढ्य", "adj", "धनाढ्य", "", "", "", "opulent rich"]) + let v = native_list_append(v, ["असंकॢप्त", "adj", "असंकॢप्त", "", "", "", "not desired"]) + let v = native_list_append(v, ["अश्रुमुख", "adj", "अश्रुमुख", "", "", "", "having tears on"]) + let v = native_list_append(v, ["धनिन्", "adj", "धनिन्", "", "", "", "possessing wealth or"]) + let v = native_list_append(v, ["हार्द", "adj", "हार्द", "", "", "", "relating to or"]) + let v = native_list_append(v, ["असार", "adj", "असार", "", "", "", "sapless without strength"]) + let v = native_list_append(v, ["रङ्गिन्", "adj", "रङ्गिन्", "", "", "", "colouring dyeing painting"]) + let v = native_list_append(v, ["अनङ्ग", "adj", "अनङ्ग", "", "", "", "bodiless incorporeal"]) + let v = native_list_append(v, ["नागिन्", "adj", "नागिन्", "", "", "", "covered with or"]) + let v = native_list_append(v, ["फिरङ्गिन्", "adj", "फिरङ्गिन्", "", "", "", "Frankish European"]) + let v = native_list_append(v, ["लैङ्ग", "adj", "लैङ्ग", "", "", "", "related to liṅga"]) + let v = native_list_append(v, ["निष्कारण", "adj", "निष्कारण", "", "", "", "causeless unnecessary"]) + let v = native_list_append(v, ["कामकेलि", "adj", "कामकेलि", "", "", "", "having amorous sport"]) + let v = native_list_append(v, ["शोधक", "adj", "शोधक", "", "", "", "purificatory"]) + let v = native_list_append(v, ["धनंजय", "adj", "धनंजय", "", "", "", "winning or acquiring"]) + let v = native_list_append(v, ["आर्जव", "adj", "आर्जव", "", "", "", "straight"]) + let v = native_list_append(v, ["निर्मुक्त", "adj", "निर्मुक्त", "", "", "", "freed"]) + let v = native_list_append(v, ["शांतनु", "adj", "शांतनु", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["शन्तनु", "adj", "शन्तनु", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["शंतनु", "adj", "शंतनु", "", "", "", "wholesome for the"]) + let v = native_list_append(v, ["मलिन", "adj", "मलिन", "", "", "", "dirty filthy impure"]) + let v = native_list_append(v, ["प्रेषित", "adj", "प्रेषित", "", "", "", "set in motion"]) + let v = native_list_append(v, ["अर्हित", "adj", "अर्हित", "", "", "", "honoured worshipped"]) + let v = native_list_append(v, ["मूर्छित", "adj", "मूर्छित", "", "", "", "fainted stupefied insensible"]) + let v = native_list_append(v, ["मूर्च्छित", "adj", "मूर्च्छित", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["करिन्", "adj", "करिन्", "", "", "", "doing effecting"]) + let v = native_list_append(v, ["अर्णव", "adj", "अर्णव", "", "", "", "agitated restless"]) + let v = native_list_append(v, ["नीच", "adj", "नीच", "", "", "", "low not high"]) + let v = native_list_append(v, ["शाक्त", "adj", "शाक्त", "", "", "", "relating to power"]) + let v = native_list_append(v, ["कद्रु", "adj", "कद्रु", "", "", "", "brown reddish-brown"]) + let v = native_list_append(v, ["क्षुल्ल", "adj", "क्षुल्ल", "", "", "", "small little minute"]) + let v = native_list_append(v, ["क्षुल्लक", "adj", "क्षुल्लक", "", "", "", "small little"]) + let v = native_list_append(v, ["करि", "adj", "करि", "", "", "", "causing accomplishing"]) + let v = native_list_append(v, ["क्षुण्ण", "adj", "क्षुण्ण", "", "", "", "pounded pulverised crushed"]) + let v = native_list_append(v, ["अतल", "adj", "अतल", "", "", "", "bottomless"]) + let v = native_list_append(v, ["तालिन्", "adj", "तालिन्", "", "", "", "placing upon"]) + let v = native_list_append(v, ["आलंकारिक", "adj", "आलंकारिक", "", "", "", "used for decoration"]) + let v = native_list_append(v, ["साध्वलंकृत", "adj", "साध्वलंकृत", "", "", "", "beautifully adorned"]) + let v = native_list_append(v, ["स्वलंकृत", "adj", "स्वलंकृत", "", "", "", "adorned beautifully"]) + let v = native_list_append(v, ["समलंकृत", "adj", "समलंकृत", "", "", "", "adorned well highly"]) + let v = native_list_append(v, ["अभ्यलंकृत", "adj", "अभ्यलंकृत", "", "", "", "adorned decorated"]) + let v = native_list_append(v, ["भरण", "adj", "भरण", "", "", "", "bearing maintaining"]) + let v = native_list_append(v, ["वङ्क्य", "adj", "वङ्क्य", "", "", "", "crooked curved flexible"]) + let v = native_list_append(v, ["वङ्कु", "adj", "वङ्कु", "", "", "", "going crookedly bent"]) + let v = native_list_append(v, ["गौतम", "adj", "गौतम", "", "", "", "relating to Gotama"]) + let v = native_list_append(v, ["आज्ञाकारिन्", "adj", "आज्ञाकारिन्", "", "", "", "one who executes"]) + let v = native_list_append(v, ["शैशव", "adj", "शैशव", "", "", "", "childish"]) + let v = native_list_append(v, ["काश्मीर", "adj", "काश्मीर", "", "", "", "living in born"]) + let v = native_list_append(v, ["ताम्रमुख", "adj", "ताम्रमुख", "", "", "", "copper-faced"]) + let v = native_list_append(v, ["भारिन्", "adj", "भारिन्", "", "", "", "bearing or carrying"]) + let v = native_list_append(v, ["अनुक", "adj", "अनुक", "", "", "", "subordinate dependent"]) + let v = native_list_append(v, ["सोढ", "adj", "सोढ", "", "", "", "borne endured tolerated"]) + let v = native_list_append(v, ["भारिक", "adj", "भारिक", "", "", "", "forming a load"]) + let v = native_list_append(v, ["अनूप", "adj", "अनूप", "", "", "", "situated near the"]) + let v = native_list_append(v, ["शम्ब", "adj", "शम्ब", "", "", "", "happy fortunate"]) + let v = native_list_append(v, ["खेट", "adj", "खेट", "", "", "", "expressing defectiveness or"]) + let v = native_list_append(v, ["आञ्छित", "adj", "आञ्छित", "", "", "", "stretched set"]) + let v = native_list_append(v, ["मूर्छन", "adj", "मूर्छन", "", "", "", "stupefying causing insensibility"]) + let v = native_list_append(v, ["लाञ्छित", "adj", "लाञ्छित", "", "", "", "marked decorated characterised"]) + let v = native_list_append(v, ["दैत्य", "adj", "दैत्य", "", "", "", "belonging or relating"]) + let v = native_list_append(v, ["प्यान", "adj", "प्यान", "", "", "", "fat swollen"]) + let v = native_list_append(v, ["प्यायन", "adj", "प्यायन", "", "", "", "causing to thrive"]) + let v = native_list_append(v, ["प्यायित", "adj", "प्यायित", "", "", "", "fat grown fat"]) + let v = native_list_append(v, ["पीन", "adj", "पीन", "", "", "", "swelling swollen full"]) + let v = native_list_append(v, ["शाव", "adj", "शाव", "", "", "", "cadaverous relating to"]) + let v = native_list_append(v, ["यादृश्", "adj", "यादृश्", "", "", "", "like of whatever"]) + let v = native_list_append(v, ["यादृश", "adj", "यादृश", "", "", "", "like of whatever"]) + let v = native_list_append(v, ["रिफित", "adj", "रिफित", "", "", "", "pronounced with a"]) + let v = native_list_append(v, ["बालिश", "adj", "बालिश", "", "", "", "young childish puerile"]) + let v = native_list_append(v, ["विनीत", "adj", "विनीत", "", "", "", "well-led"]) + let v = native_list_append(v, ["कठिनचित्त", "adj", "कठिनचित्त", "", "", "", "hardhearted cruel unkind"]) + let v = native_list_append(v, ["कठिनहृदय", "adj", "कठिनहृदय", "", "", "", "hard-hearted cruel unkind"]) + let v = native_list_append(v, ["पृष्ट", "adj", "पृष्ट", "", "", "", "asked inquired questioned"]) + let v = native_list_append(v, ["हिक्किन्", "adj", "हिक्किन्", "", "", "", "suffering from hiccup"]) + let v = native_list_append(v, ["आसक्त", "adj", "आसक्त", "", "", "", "fixed or fastened"]) + let v = native_list_append(v, ["संलग्न", "adj", "संलग्न", "", "", "", "closely attached adhering"]) + let v = native_list_append(v, ["वीळु", "adj", "वीळु", "", "", "", "strong firm hard"]) + let v = native_list_append(v, ["वीडु", "adj", "वीडु", "", "", "", "strong firm hard"]) + let v = native_list_append(v, ["यन्तृ", "adj", "यन्तृ", "", "", "", "restraining limiting withholding"]) + let v = native_list_append(v, ["विलक्षण", "adj", "विलक्षण", "", "", "", "having different marks"]) + let v = native_list_append(v, ["पिङ्गल", "adj", "पिङ्गल", "", "", "", "reddish-brown tawny yellow"]) + let v = native_list_append(v, ["पिञ्जर", "adj", "पिञ्जर", "", "", "", "reddish-yellow tawny yellow"]) + let v = native_list_append(v, ["तलित", "adj", "तलित", "", "", "", "fixed placed"]) + let v = native_list_append(v, ["अयुत", "adj", "अयुत", "", "", "", "unimpeded"]) + let v = native_list_append(v, ["युत", "adj", "युत", "", "", "", "kept off removed"]) + let v = native_list_append(v, ["क्षुब्ध", "adj", "क्षुब्ध", "", "", "", "agitated shaken"]) + let v = native_list_append(v, ["अरण", "adj", "अरण", "", "", "", "strange foreign"]) + let v = native_list_append(v, ["आरूप्य", "adj", "आरूप्य", "", "", "", "formless without form"]) + let v = native_list_append(v, ["वृष्णि", "adj", "वृष्णि", "", "", "", "male manly strong"]) + let v = native_list_append(v, ["गृध्र", "adj", "गृध्र", "", "", "", "desiring greedily or"]) + let v = native_list_append(v, ["वृष्ट", "adj", "वृष्ट", "", "", "", "rained"]) + let v = native_list_append(v, ["अभिवृष्ट", "adj", "अभिवृष्ट", "", "", "", "rained upon"]) + let v = native_list_append(v, ["युवति", "adj", "युवति", "", "", "", "feminine vocative singular"]) + let v = native_list_append(v, ["सुपर्ण", "adj", "सुपर्ण", "", "", "", "having beautiful wings"]) + let v = native_list_append(v, ["खरे", "adj", "खरे", "", "", "", "inflection of खर"]) + let v = native_list_append(v, ["गाढ", "adj", "गाढ", "", "", "", "dived into bathed"]) + let v = native_list_append(v, ["विकट", "adj", "विकट", "", "", "", "dreadful monstrous horrible"]) + let v = native_list_append(v, ["विकृत", "adj", "विकृत", "", "", "", "unaccomplished incomplete"]) + let v = native_list_append(v, ["मीढ्वस्", "adj", "मीढ्वस्", "", "", "", "generous bestowing richly"]) + let v = native_list_append(v, ["मीळ्हुष्टम", "adj", "मीळ्हुष्टम", "", "", "", "most liberal most"]) + let v = native_list_append(v, ["मीढुष्टम", "adj", "मीढुष्टम", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["सुसज्जित", "adj", "सुसज्जित", "", "", "", "well-decorated adorned"]) + let v = native_list_append(v, ["सज्जित", "adj", "सज्जित", "", "", "", "fastened or attached"]) + let v = native_list_append(v, ["कम्पन", "adj", "कम्पन", "", "", "", "trembling shaken unsteady"]) + let v = native_list_append(v, ["कम्पित", "adj", "कम्पित", "", "", "", "trembling shaking"]) + let v = native_list_append(v, ["दुर्मनस्", "adj", "दुर्मनस्", "", "", "", "in bad or"]) + let v = native_list_append(v, ["भञ्जक", "adj", "भञ्जक", "", "", "", "breaking destroying dividing"]) + let v = native_list_append(v, ["आहरण", "adj", "आहरण", "", "", "", "taking away robbing"]) + let v = native_list_append(v, ["तमस्वत्", "adj", "तमस्वत्", "", "", "", "dark gloomy"]) + let v = native_list_append(v, ["सुगन्ध", "adj", "सुगन्ध", "", "", "", "fragrant having a"]) + let v = native_list_append(v, ["नत", "adj", "नत", "", "", "", "bent bowed curved"]) + let v = native_list_append(v, ["कूट", "adj", "कूट", "", "", "", "the highest most"]) + let v = native_list_append(v, ["श्वसन", "adj", "श्वसन", "", "", "", "blowing hissing panting"]) + let v = native_list_append(v, ["हिन्दु", "adj", "हिन्दु", "", "", "", "Hindu related to"]) + let v = native_list_append(v, ["वामन", "adj", "वामन", "", "", "", "dwarfish small or"]) + let v = native_list_append(v, ["रञ्जित", "adj", "रञ्जित", "", "", "", "coloured dyed painted"]) + let v = native_list_append(v, ["माङ्गलिक", "adj", "माङ्गलिक", "", "", "", "desirous of success"]) + let v = native_list_append(v, ["लोल", "adj", "लोल", "", "", "", "moving hither and"]) + let v = native_list_append(v, ["उदासिन्", "adj", "उदासिन्", "", "", "", "indifferent disregarding"]) + let v = native_list_append(v, ["हर्षित", "adj", "हर्षित", "", "", "", "made to stand"]) + let v = native_list_append(v, ["दाक्षिण्य", "adj", "दाक्षिण्य", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["मदिर", "adj", "मदिर", "", "", "", "intoxicating exhilarating gladdening"]) + let v = native_list_append(v, ["माण्डलिक", "adj", "माण्डलिक", "", "", "", "relating to a"]) + let v = native_list_append(v, ["प्रताडित", "adj", "प्रताडित", "", "", "", "hurt pained abused"]) + let v = native_list_append(v, ["आर्द्र", "adj", "आर्द्र", "", "", "", "wet moist damp"]) + let v = native_list_append(v, ["आर्तव", "adj", "आर्तव", "", "", "", "belonging relating or"]) + let v = native_list_append(v, ["शष्पिञ्जर", "adj", "शष्पिञ्जर", "", "", "", "yellowish like young"]) + let v = native_list_append(v, ["सस्पिञ्जर", "adj", "सस्पिञ्जर", "", "", "", "yellowish like young"]) + let v = native_list_append(v, ["चान्द्र", "adj", "चान्द्र", "", "", "", "lunar related to"]) + let v = native_list_append(v, ["शिक्याकृत", "adj", "शिक्याकृत", "", "", "", "suspended by strings"]) + let v = native_list_append(v, ["आकृत", "adj", "आकृत", "", "", "", "arranged built as"]) + let v = native_list_append(v, ["सम्मुख", "adj", "सम्मुख", "", "", "", "facing fronting confronting"]) + let v = native_list_append(v, ["सुसंस्कृत", "adj", "सुसंस्कृत", "", "", "", "beautifully adorned or"]) + let v = native_list_append(v, ["अमनस्", "adj", "अमनस्", "", "", "", "without the organ"]) + let v = native_list_append(v, ["संमुख", "adj", "संमुख", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["लिप्त", "adj", "लिप्त", "", "", "", "sticking or adhering"]) + let v = native_list_append(v, ["अप्रतिम", "adj", "अप्रतिम", "", "", "", "without an equal"]) + let v = native_list_append(v, ["युग्मन्", "adj", "युग्मन्", "", "", "", "even"]) + let v = native_list_append(v, ["क्षेम", "adj", "क्षेम", "", "", "", "habitable"]) + let v = native_list_append(v, ["उपम", "adj", "उपम", "", "", "", "uppermost highest"]) + let v = native_list_append(v, ["पिङ्ग", "adj", "पिङ्ग", "", "", "", "yellow reddish-brown tawny"]) + let v = native_list_append(v, ["अकथित", "adj", "अकथित", "", "", "", "untold unspoken unsaid"]) + let v = native_list_append(v, ["स्पृष्ट", "adj", "स्पृष्ट", "", "", "", "touched felt with"]) + let v = native_list_append(v, ["श्वसित", "adj", "श्वसित", "", "", "", "breathed sighed"]) + let v = native_list_append(v, ["कालिय", "adj", "कालिय", "", "", "", "relating to time"]) + let v = native_list_append(v, ["ज्योगपरुद्ध", "adj", "ज्योगपरुद्ध", "", "", "", "expelled a long"]) + let v = native_list_append(v, ["नमन", "adj", "नमन", "", "", "", "bowed bent humble"]) + let v = native_list_append(v, ["चर", "adj", "चर", "", "", "", "moving"]) + let v = native_list_append(v, ["लुब्ध", "adj", "लुब्ध", "", "", "", "desirous of covetous"]) + let v = native_list_append(v, ["लोभिन्", "adj", "लोभिन्", "", "", "", "greedy or desirous"]) + let v = native_list_append(v, ["भञ्जिन्", "adj", "भञ्जिन्", "", "", "", "breaking dispelling"]) + let v = native_list_append(v, ["धीर्य", "adj", "धीर्य", "", "", "", "steady firm steadfast"]) + let v = native_list_append(v, ["धुनि", "adj", "धुनि", "", "", "", "noisy boisterous roaring"]) + let v = native_list_append(v, ["अप्रति", "adj", "अप्रति", "", "", "", "without opponents or"]) + let v = native_list_append(v, ["ಕಾರ್ಯ", "adj", "ಕಾರ್ಯ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ကရုဏာ", "adj", "ကရုဏာ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["द्रोघ", "adj", "द्रोघ", "", "", "", "deceitful untrue misleading"]) + let v = native_list_append(v, ["अर्धक", "adj", "अर्धक", "", "", "", "forming a half"]) + let v = native_list_append(v, ["नाका", "adj", "नाका", "", "", "", "inflection of नाक"]) + let v = native_list_append(v, ["देवतासहायिन्", "adj", "देवतासहायिन्", "", "", "", "alone"]) + let v = native_list_append(v, ["वर्ज्य", "adj", "वर्ज्य", "", "", "", "to be avoided"]) + let v = native_list_append(v, ["पक्व", "adj", "पक्व", "", "", "", "cooked baked roasted"]) + let v = native_list_append(v, ["पक्तृ", "adj", "पक्तृ", "", "", "", "inducing cooking"]) + let v = native_list_append(v, ["पक्ता", "adj", "पक्ता", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["जड", "adj", "जड", "", "", "", "cold frigid"]) + let v = native_list_append(v, ["वियुत", "adj", "वियुत", "", "", "", "separated from deprived"]) + let v = native_list_append(v, ["भल्ल", "adj", "भल्ल", "", "", "", "auspicious favorable"]) + let v = native_list_append(v, ["सुभद्र", "adj", "सुभद्र", "", "", "", "very auspicious or"]) + let v = native_list_append(v, ["वैकल्पिक", "adj", "वैकल्पिक", "", "", "", "optional"]) + let v = native_list_append(v, ["क्षालित", "adj", "क्षालित", "", "", "", "washed cleaned purified"]) + let v = native_list_append(v, ["प्रक्षालित", "adj", "प्रक्षालित", "", "", "", "washed cleaned purified"]) + let v = native_list_append(v, ["क्षालन", "adj", "क्षालन", "", "", "", "washing cleaning purifying"]) + let v = native_list_append(v, ["बैजिक", "adj", "बैजिक", "", "", "", "relating to seed"]) + let v = native_list_append(v, ["वह्य", "adj", "वह्य", "", "", "", "fit to be"]) + let v = native_list_append(v, ["डीन", "adj", "डीन", "", "", "", "flown up flying"]) + let v = native_list_append(v, ["मलीयस्", "adj", "मलीयस्", "", "", "", "excessively dirty filthy"]) + let v = native_list_append(v, ["आगामिन्", "adj", "आगामिन्", "", "", "", "coming approaching"]) + let v = native_list_append(v, ["मेय", "adj", "मेय", "", "", "", "measurable discernable to"]) + let v = native_list_append(v, ["क्रीत", "adj", "क्रीत", "", "", "", "bought purchased"]) + let v = native_list_append(v, ["निष्णात", "adj", "निष्णात", "", "", "", "deeply versed in"]) + let v = native_list_append(v, ["कपर्दिन्", "adj", "कपर्दिन्", "", "", "", "having braided and"]) + let v = native_list_append(v, ["प्रातिपद", "adj", "प्रातिपद", "", "", "", "forming the commencement"]) + let v = native_list_append(v, ["शिश्नदेव", "adj", "शिश्नदेव", "", "", "", "unchaste lustful"]) + let v = native_list_append(v, ["सुखो", "adj", "सुखो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["संस्कृतज्ञ", "adj", "संस्कृतज्ञ", "", "", "", "well-versed learned in"]) + let v = native_list_append(v, ["साण्ड", "adj", "साण्ड", "", "", "", "having testicles uncastrated"]) + let v = native_list_append(v, ["पुलकित", "adj", "पुलकित", "", "", "", "thrilled with joy"]) + let v = native_list_append(v, ["वध्रि", "adj", "वध्रि", "", "", "", "castrated emasculated unmanly"]) + let v = native_list_append(v, ["विष्ठित", "adj", "विष्ठित", "", "", "", "standing apart"]) + let v = native_list_append(v, ["तल्लीन", "adj", "तल्लीन", "", "", "", "absorbed engrossed in"]) + let v = native_list_append(v, ["याता", "adj", "याता", "", "", "", "inflection of यातृ"]) + let v = native_list_append(v, ["अन्तम", "adj", "अन्तम", "", "", "", "nearest closest intimate"]) + let v = native_list_append(v, ["𑀓𑁆𑀭𑀻𑀢", "adj", "𑀓𑁆𑀭𑀻𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["परिणीत", "adj", "परिणीत", "", "", "", "married"]) + let v = native_list_append(v, ["समाविष्ट", "adj", "समाविष्ट", "", "", "", "entered thoroughly completely"]) + let v = native_list_append(v, ["आविष्ट", "adj", "आविष्ट", "", "", "", "entered"]) + let v = native_list_append(v, ["लब्ध", "adj", "लब्ध", "", "", "", "taken seized caught"]) + let v = native_list_append(v, ["उदन्य", "adj", "उदन्य", "", "", "", "watery abounding in"]) + let v = native_list_append(v, ["मुण्डस्", "adj", "मुण्डस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["आवृत", "adj", "आवृत", "", "", "", "hidden concealed"]) + let v = native_list_append(v, ["ការ្យ", "adj", "ការ្យ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["लौक्य", "adj", "लौक्य", "", "", "", "worldly terrestrial mundane"]) + let v = native_list_append(v, ["भिद्", "adj", "भिद्", "", "", "", "breaking splitting piercing"]) + let v = native_list_append(v, ["चन्द्रिणी", "adj", "चन्द्रिणी", "", "", "", "inflection of चन्द्रिन्"]) + let v = native_list_append(v, ["𑘢𑘿𑘨𑘰𑘎𑘵𑘝", "adj", "𑘢𑘿𑘨𑘰𑘎𑘵𑘝", "", "", "", "Modi script form"]) + let v = native_list_append(v, ["कौरव", "adj", "कौरव", "", "", "", "relating to or"]) + let v = native_list_append(v, ["निर्भय", "adj", "निर्भय", "", "", "", "fearless undaunted unafraid"]) + let v = native_list_append(v, ["नीललोहित", "adj", "नीललोहित", "", "", "", "dark blue purple"]) + let v = native_list_append(v, ["प्रियकारक", "adj", "प्रियकारक", "", "", "", "causing pleasure or"]) + let v = native_list_append(v, ["ဗုဒ္ဓါယ", "adj", "ဗုဒ္ဓါယ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["វុទ្ធ", "adj", "វុទ្ធ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["វុទ្ធាយ", "adj", "វុទ្ធាយ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["គុរុ", "adj", "គុរុ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["बुभुक्षु", "adj", "बुभुक्षु", "", "", "", "desirous of eating"]) + let v = native_list_append(v, ["सुरम्य", "adj", "सुरम्य", "", "", "", "very pleasing delightful"]) + let v = native_list_append(v, ["သိဒ္ဓ", "adj", "သိဒ္ဓ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["कॢप्त", "adj", "कॢप्त", "", "", "", "arranged prepared ready"]) + let v = native_list_append(v, ["सुरम्या", "adj", "सुरम्या", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["𑀉𑀧𑀯𑀸𑀲", "adj", "𑀉𑀧𑀯𑀸𑀲", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["क्षुभित", "adj", "क्षुभित", "", "", "", "agitated disturbed frightened"]) + let v = native_list_append(v, ["स्विन्न", "adj", "स्विन्न", "", "", "", "sweated sweating perspiring"]) + let v = native_list_append(v, ["प्रस्विन्न", "adj", "प्रस्विन्न", "", "", "", "sweated perspired covered"]) + let v = native_list_append(v, ["पर्युषित", "adj", "पर्युषित", "", "", "", "stale unfresh decomposed"]) + let v = native_list_append(v, ["पर्युष्ट", "adj", "पर्युष्ट", "", "", "", "old faded withered"]) + let v = native_list_append(v, ["सुप्त", "adj", "सुप्त", "", "", "", "asleep fallen asleep"]) + let v = native_list_append(v, ["विच्छिन्न", "adj", "विच्छिन्न", "", "", "", "torn apart cut"]) + let v = native_list_append(v, ["𑘭𑘽𑘭𑘿𑘎𑘵𑘝", "adj", "𑘭𑘽𑘭𑘿𑘎𑘵𑘝", "", "", "", "Modi script form"]) + let v = native_list_append(v, ["ग्रैष्म", "adj", "ग्रैष्म", "", "", "", "relating to or"]) + let v = native_list_append(v, ["आर्यमण", "adj", "आर्यमण", "", "", "", "belonging to or"]) + let v = native_list_append(v, ["कार्पूर", "adj", "कार्पूर", "", "", "", "made of camphor"]) + let v = native_list_append(v, ["अष्टम", "adj", "अष्टम", "", "", "", "eighth"]) + let v = native_list_append(v, ["क्लान्त", "adj", "क्लान्त", "", "", "", "tired fatigued exhausted"]) + let v = native_list_append(v, ["उद्वर्तन", "adj", "उद्वर्तन", "", "", "", "springing up bursting"]) + let v = native_list_append(v, ["भाव्य", "adj", "भाव्य", "", "", "", "future about to"]) + let v = native_list_append(v, ["सुषुप्त", "adj", "सुषुप्त", "", "", "", "fast asleep in"]) + let v = native_list_append(v, ["शोकाकुल", "adj", "शोकाकुल", "", "", "", "overwhelmed or overcome"]) + let v = native_list_append(v, ["अवैदिक", "adj", "अवैदिक", "", "", "", "non-Vedic not related"]) + let v = native_list_append(v, ["यजत", "adj", "यजत", "", "", "", "holy worthy of"]) + let v = native_list_append(v, ["अरस", "adj", "अरस", "", "", "", "sapless tasteless insipid"]) + let v = native_list_append(v, ["ज्यायस्", "adj", "ज्यायस्", "", "", "", "superior better more"]) + let v = native_list_append(v, ["उद्विग्न", "adj", "उद्विग्न", "", "", "", "sorrowful grieving for"]) + let v = native_list_append(v, ["नवम", "adj", "नवम", "", "", "", "ninth"]) + let v = native_list_append(v, ["ನವಮ", "adj", "ನವಮ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["व्यृद्ध", "adj", "व्यृद्ध", "", "", "", "failed miscarried unsuccessful"]) + let v = native_list_append(v, ["सप्तथ", "adj", "सप्तथ", "", "", "", "seventh"]) + let v = native_list_append(v, ["यातयाम", "adj", "यातयाम", "", "", "", "used spoilt useless"]) + let v = native_list_append(v, ["यातयामन्", "adj", "यातयामन्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ರುದ್ರ", "adj", "ರುದ್ರ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["गतरस", "adj", "गतरस", "", "", "", "having lost its"]) + let v = native_list_append(v, ["अमेध्य", "adj", "अमेध्य", "", "", "", "unfit for sacrifice"]) + let v = native_list_append(v, ["ख्यात", "adj", "ख्यात", "", "", "", "known"]) + let v = native_list_append(v, ["पूति", "adj", "पूति", "", "", "", "putrid foul-smelling stinking"]) + let v = native_list_append(v, ["अपर्युषित", "adj", "अपर्युषित", "", "", "", "fresh new not"]) + let v = native_list_append(v, ["युवानः", "adj", "युवानः", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["युवानम्", "adj", "युवानम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["अक्षुण्ण", "adj", "अक्षुण्ण", "", "", "", "unbroken uncurtailed"]) + let v = native_list_append(v, ["अक्लान्त", "adj", "अक्लान्त", "", "", "", "unfatigued tireless"]) + let v = native_list_append(v, ["क्लान्तमनस्", "adj", "क्लान्तमनस्", "", "", "", "languid low-spirited"]) + let v = native_list_append(v, ["चिक्कण", "adj", "चिक्कण", "", "", "", "smooth glossy"]) + let v = native_list_append(v, ["चिक्किण", "adj", "चिक्किण", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𑀘𑀺𑀓𑁆𑀓𑀡", "adj", "𑀘𑀺𑀓𑁆𑀓𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["कामलम्पट", "adj", "कामलम्पट", "", "", "", "very lustful attached"]) + let v = native_list_append(v, ["लम्पट", "adj", "लम्पट", "", "", "", "greedy covetous hankering"]) + let v = native_list_append(v, ["अरुष", "adj", "अरुष", "", "", "", "red reddish red-hued"]) + let v = native_list_append(v, ["चुक्षोभयिषु", "adj", "चुक्षोभयिषु", "", "", "", "wishing or intending"]) + let v = native_list_append(v, ["गर्भधारित", "adj", "गर्भधारित", "", "", "", "contained in the"]) + let v = native_list_append(v, ["वृत्रहा", "adj", "वृत्रहा", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["हनन", "adj", "हनन", "", "", "", "killer slayer"]) + let v = native_list_append(v, ["योध्य", "adj", "योध्य", "", "", "", "fit to be"]) + let v = native_list_append(v, ["अयोध्य", "adj", "अयोध्य", "", "", "", "not to be"]) + let v = native_list_append(v, ["धर्मिन्", "adj", "धर्मिन्", "", "", "", "knowing or obeying"]) + let v = native_list_append(v, ["प्रियस्वप्न", "adj", "प्रियस्वप्न", "", "", "", "fond of sleeping"]) + let v = native_list_append(v, ["ओजीयस्", "adj", "ओजीयस्", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["उद्घाटिताङ्ग", "adj", "उद्घाटिताङ्ग", "", "", "", "naked"]) + let v = native_list_append(v, ["शक्र", "adj", "शक्र", "", "", "", "strong powerful mighty"]) + let v = native_list_append(v, ["प्रीत", "adj", "प्रीत", "", "", "", "pleased delighted satisfied"]) + let v = native_list_append(v, ["शृद्ध", "adj", "शृद्ध", "", "", "", "moistened wet"]) + let v = native_list_append(v, ["प्रत्युष्ट", "adj", "प्रत्युष्ट", "", "", "", "scorched burnt"]) + let v = native_list_append(v, ["सहस्रनेत्र", "adj", "सहस्रनेत्र", "", "", "", "having a thousand"]) + let v = native_list_append(v, ["वज्रहस्त", "adj", "वज्रहस्त", "", "", "", "wielding a vajra"]) + let v = native_list_append(v, ["मेधाविन्", "adj", "मेधाविन्", "", "", "", "intelligent wise intellectual"]) + let v = native_list_append(v, ["कृच्छ्रम्", "adj", "कृच्छ्रम्", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["तप्त", "adj", "तप्त", "", "", "", "past participle of"]) + let v = native_list_append(v, ["आकाशेश", "adj", "आकाशेश", "", "", "", "possessing only the"]) + let v = native_list_append(v, ["कृच्छ्र", "adj", "कृच्छ्र", "", "", "", "wicked evil painful"]) + let v = native_list_append(v, ["कृच्छ्रे", "adj", "कृच्छ्रे", "", "", "", "inflection of कृच्छ्र"]) + let v = native_list_append(v, ["वत्सल", "adj", "वत्सल", "", "", "", "loving tender kind"]) + let v = native_list_append(v, ["बहुविकल्पीय​", "adj", "बहुविकल्पीय​", "", "", "", "multiple-choice having multiple"]) + let v = native_list_append(v, ["गमनीय", "adj", "गमनीय", "", "", "", "accessible approachable that"]) + let v = native_list_append(v, ["करणीयः", "adj", "करणीयः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["करणीयम्", "adj", "करणीयम्", "", "", "", "inflection of करणीय"]) + let v = native_list_append(v, ["करणीया", "adj", "करणीया", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["करणीये", "adj", "करणीये", "", "", "", "inflection of करणीय"]) + let v = native_list_append(v, ["करणीयौ", "adj", "करणीयौ", "", "", "", "masculine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["करणीयानि", "adj", "करणीयानि", "", "", "", "neuter nominative/vocative/accusative plural"]) + let v = native_list_append(v, ["करणीयास्", "adj", "करणीयास्", "", "", "", "inflection of करणीय"]) + let v = native_list_append(v, ["करणीयान्", "adj", "करणीयान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["अचिर", "adj", "अचिर", "", "", "", "quick not of"]) + let v = native_list_append(v, ["अचिरः", "adj", "अचिरः", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["अचिरौ", "adj", "अचिरौ", "", "", "", "masculine nominative/accusative/vocative dual"]) + let v = native_list_append(v, ["अचिराः", "adj", "अचिराः", "", "", "", "masculine nominative/vocative plural"]) + let v = native_list_append(v, ["अचिरम्", "adj", "अचिरम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["बलीवर्दः", "adj", "बलीवर्दः", "", "", "", "bull masculine nominative"]) + let v = native_list_append(v, ["उच्चार", "adj", "उच्चार", "", "", "", "rising"]) + let v = native_list_append(v, ["निष्टप्त", "adj", "निष्टप्त", "", "", "", "burnt scorched"]) + let v = native_list_append(v, ["सांवादिक", "adj", "सांवादिक", "", "", "", "conversational colloquial"]) + let v = native_list_append(v, ["खनित्रिम", "adj", "खनित्रिम", "", "", "", "produced by digging"]) + let v = native_list_append(v, ["भीत", "adj", "भीत", "", "", "", "frightened scared terrified"]) + let v = native_list_append(v, ["स्वतवस्", "adj", "स्वतवस्", "", "", "", "self-strong inherently powerful"]) + let v = native_list_append(v, ["सत्तम", "adj", "सत्तम", "", "", "", "best very good"]) + let v = native_list_append(v, ["क्रय्य", "adj", "क्रय्य", "", "", "", "purchasable exhibited for"]) + let v = native_list_append(v, ["क्रेय", "adj", "क्रेय", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["अनीश", "adj", "अनीश", "", "", "", "having no lord/master/controller"]) + let v = native_list_append(v, ["हव्य", "adj", "हव्य", "", "", "", "to be called"]) + let v = native_list_append(v, ["ऐन्दव", "adj", "ऐन्दव", "", "", "", "lunar related to"]) + let v = native_list_append(v, ["हरिण", "adj", "हरिण", "", "", "", "fawn coloured yellowish"]) + let v = native_list_append(v, ["रौक्म", "adj", "रौक्म", "", "", "", "golden made of"]) + let v = native_list_append(v, ["चिर", "adj", "चिर", "", "", "", "long-lasting lasting a"]) + let v = native_list_append(v, ["तृप्तिद", "adj", "तृप्तिद", "", "", "", "giver or source"]) + let v = native_list_append(v, ["अनक्ष्", "adj", "अनक्ष्", "", "", "", "blind"]) + let v = native_list_append(v, ["दिङ्मुख", "adj", "दिङ्मुख", "", "", "", "facing any point"]) + let v = native_list_append(v, ["𑀰𑀓𑁆𑀭", "adj", "𑀰𑀓𑁆𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["𑀢𑀾𑀧𑁆𑀢𑀺𑀤", "adj", "𑀢𑀾𑀧𑁆𑀢𑀺𑀤", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["सदाशिव", "adj", "सदाशिव", "", "", "", "always kind"]) + let v = native_list_append(v, ["𑀕𑀭𑁆𑀪𑀥𑀸𑀭𑀺𑀢", "adj", "𑀕𑀭𑁆𑀪𑀥𑀸𑀭𑀺𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["करणीयस्", "adj", "करणीयस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["रिप्त", "adj", "रिप्त", "", "", "", "smeared to sticking"]) + let v = native_list_append(v, ["परितुष्ट", "adj", "परितुष्ट", "", "", "", "fully or completely"]) + let v = native_list_append(v, ["𑀧𑀭𑀺𑀢𑀼𑀱𑁆𑀝", "adj", "𑀧𑀭𑀺𑀢𑀼𑀱𑁆𑀝", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["चक्षुस्", "adj", "चक्षुस्", "", "", "", "seeing having vision"]) + let v = native_list_append(v, ["मदन", "adj", "मदन", "", "", "", "intoxicating maddening"]) + let v = native_list_append(v, ["सत्त", "adj", "सत्त", "", "", "", "seated sitting"]) + let v = native_list_append(v, ["निषत्त", "adj", "निषत्त", "", "", "", "seated sitting seated"]) + let v = native_list_append(v, ["पीत", "adj", "पीत", "", "", "", "drunk imbibed sipped"]) + let v = native_list_append(v, ["प्रत्युत्पन्न", "adj", "प्रत्युत्पन्न", "", "", "", "present existing at"]) + let v = native_list_append(v, ["संपन्न", "adj", "संपन्न", "", "", "", "accomplished perfected"]) + let v = native_list_append(v, ["सम्पन्न", "adj", "सम्पन्न", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["निन्दित", "adj", "निन्दित", "", "", "", "blamed censured criticised"]) + let v = native_list_append(v, ["𑀦𑀺𑀦𑁆𑀤𑀺𑀢", "adj", "𑀦𑀺𑀦𑁆𑀤𑀺𑀢", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["नकुल", "adj", "नकुल", "", "", "", "of a particular"]) + let v = native_list_append(v, ["सार्ध", "adj", "सार्ध", "", "", "", "joined with one"]) + let v = native_list_append(v, ["वक्त्रभेदी", "adj", "वक्त्रभेदी", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["धवल", "adj", "धवल", "", "", "", "white"]) + let v = native_list_append(v, ["রিষ্ট", "adj", "রিষ্ট", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["अपस्", "adj", "अपस्", "", "", "", "active skilful"]) + let v = native_list_append(v, ["𑀅𑀓𑁆𑀱𑀡", "adj", "𑀅𑀓𑁆𑀱𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["अनुलोम", "adj", "अनुलोम", "", "", "", "regular in order"]) + let v = native_list_append(v, ["दारुणो", "adj", "दारुणो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["𑀰𑁆𑀭𑀻", "adj", "𑀰𑁆𑀭𑀻", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["শ্রী", "adj", "শ্রী", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["શ્રી", "adj", "શ્રી", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["ᬰ᭄ᬭᬷ", "adj", "ᬰ᭄ᬭᬷ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["ꦯꦿꦷ", "adj", "ꦯꦿꦷ", "", "", "", "Javanese script form"]) + let v = native_list_append(v, ["শ্ৰী", "adj", "শ্ৰী", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["𑖫𑖿𑖨𑖱", "adj", "𑖫𑖿𑖨𑖱", "", "", "", "Siddham script form"]) + let v = native_list_append(v, ["𑌶𑍍𑌰𑍀", "adj", "𑌶𑍍𑌰𑍀", "", "", "", "Grantha script form"]) + let v = native_list_append(v, ["ಶ್ರೀ", "adj", "ಶ್ರೀ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["ឝ្រី", "adj", "ឝ្រី", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["ศฺรี", "adj", "ศฺรี", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["ཤྲཱི", "adj", "ཤྲཱི", "", "", "", "Tibetan script form"]) + let v = native_list_append(v, ["ၐြီ", "adj", "ၐြီ", "", "", "", "Burmese script form"]) + let v = native_list_append(v, ["अनेद्य", "adj", "अनेद्य", "", "", "", "blameless irreproachable not"]) + let v = native_list_append(v, ["अयुध्य", "adj", "अयुध्य", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["പ്രസിദ്ധ", "adj", "പ്രസിദ്ധ", "", "", "", "Malayalam script form"]) + let v = native_list_append(v, ["स्थूर", "adj", "स्थूर", "", "", "", "strong thick massive"]) + let v = native_list_append(v, ["भयङ्कर", "adj", "भयङ्कर", "", "", "", "terrifying appalling"]) + let v = native_list_append(v, ["जनो", "adj", "जनो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["तथागत", "adj", "तथागत", "", "", "", "being in such"]) + let v = native_list_append(v, ["वादो", "adj", "वादो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["अन्धो", "adj", "अन्धो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["অন্ধো", "adj", "অন্ধো", "", "", "", "Assamese script form"]) + let v = native_list_append(v, ["सदृक्ष", "adj", "सदृक्ष", "", "", "", "like corresponding or"]) + let v = native_list_append(v, ["रोचन", "adj", "रोचन", "", "", "", "shining radiant bright"]) + let v = native_list_append(v, ["वैरोचन", "adj", "वैरोचन", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["सदृश्", "adj", "सदृश्", "", "", "", "alike like similar"]) + let v = native_list_append(v, ["सदृश", "adj", "सदृश", "", "", "", "like similar to"]) + let v = native_list_append(v, ["𑀪𑀭𑀡", "adj", "𑀪𑀭𑀡", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["स्तुत", "adj", "स्तुत", "", "", "", "praised eulogized hymned"]) + let v = native_list_append(v, ["𑀅𑀨𑀮", "adj", "𑀅𑀨𑀮", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["अवीचि", "adj", "अवीचि", "", "", "", "waveless"]) + let v = native_list_append(v, ["शिथिर", "adj", "शिथिर", "", "", "", "loose slack flexible"]) + let v = native_list_append(v, ["अविनाश्य", "adj", "अविनाश्य", "", "", "", "indestructible"]) + let v = native_list_append(v, ["अजर", "adj", "अजर", "", "", "", "not subject to"]) + let v = native_list_append(v, ["जितेन्द्रिय", "adj", "जितेन्द्रिय", "", "", "", "Having subdued the"]) + let v = native_list_append(v, ["ശ്രീ", "adj", "ശ്രീ", "", "", "", "Malayalam script form"]) + let v = native_list_append(v, ["अपेय", "adj", "अपेय", "", "", "", "undrinkable"]) + let v = native_list_append(v, ["वस्न्य", "adj", "वस्न्य", "", "", "", "costly valuable having"]) + let v = native_list_append(v, ["शम", "adj", "शम", "", "", "", "hornless without horns"]) + let v = native_list_append(v, ["शृङ्गिन्", "adj", "शृङ्गिन्", "", "", "", "horned having horns"]) + let v = native_list_append(v, ["प्रतिष्ठित", "adj", "प्रतिष्ठित", "", "", "", "situated founded fixed"]) + let v = native_list_append(v, ["पक्षिन्", "adj", "पक्षिन्", "", "", "", "winged"]) + let v = native_list_append(v, ["श्वान्त", "adj", "श्वान्त", "", "", "", "peaceful calm quiet"]) + let v = native_list_append(v, ["रंहस्", "adj", "रंहस्", "", "", "", "speeded having the"]) + let v = native_list_append(v, ["आस्नेय", "adj", "आस्नेय", "", "", "", "bloody covered in"]) + let v = native_list_append(v, ["तरस्", "adj", "तरस्", "", "", "", "quick energetic"]) + let v = native_list_append(v, ["उन्नग्न", "adj", "उन्नग्न", "", "", "", "naked"]) + let v = native_list_append(v, ["अभद्र", "adj", "अभद्र", "", "", "", "inauspicious bad evil"]) + let v = native_list_append(v, ["सुभग", "adj", "सुभग", "", "", "", "fortunate lucky blessed"]) + let v = native_list_append(v, ["𑀲𑀼𑀪𑀕", "adj", "𑀲𑀼𑀪𑀕", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["जूत", "adj", "जूत", "", "", "", "driven propelled impelled"]) + let v = native_list_append(v, ["सकण्टक", "adj", "सकण्टक", "", "", "", "spiny prickly thorny"]) + let v = native_list_append(v, ["सकण्टकस्", "adj", "सकण्टकस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["कार्दम", "adj", "कार्दम", "", "", "", "muddy covered with"]) + let v = native_list_append(v, ["क्षेमिन्", "adj", "क्षेमिन्", "", "", "", "safe secure"]) + let v = native_list_append(v, ["उदयिन्", "adj", "उदयिन्", "", "", "", "triumphant victorious"]) + let v = native_list_append(v, ["अपेयः", "adj", "अपेयः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["स्थिरा", "adj", "स्थिरा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["क्रोष्टृ", "adj", "क्रोष्टृ", "", "", "", "weeping lamenting"]) + let v = native_list_append(v, ["दिधक्षु", "adj", "दिधक्षु", "", "", "", "desirous of burning"]) + let v = native_list_append(v, ["उल्लापन", "adj", "उल्लापन", "", "", "", "perishable"]) + let v = native_list_append(v, ["उपान्त", "adj", "उपान्त", "", "", "", "near the end"]) + let v = native_list_append(v, ["स्थेष्ठ", "adj", "स्थेष्ठ", "", "", "", "most fixed or"]) + let v = native_list_append(v, ["ꦄꦤꦴꦲꦴꦫ", "adj", "ꦄꦤꦴꦲꦴꦫ", "", "", "", "Javanese script form"]) + let v = native_list_append(v, ["हूत", "adj", "हूत", "", "", "", "called summoned invoked"]) + let v = native_list_append(v, ["क्षुद्रक", "adj", "क्षुद्रक", "", "", "", "small minute"]) + let v = native_list_append(v, ["एकार्थ", "adj", "एकार्थ", "", "", "", "tautological synonymous having"]) + let v = native_list_append(v, ["वाचक", "adj", "वाचक", "", "", "", "verbal expressive"]) + let v = native_list_append(v, ["एकासनिक", "adj", "एकासनिक", "", "", "", "only using one"]) + let v = native_list_append(v, ["वल्गु", "adj", "वल्गु", "", "", "", "handsome beautiful lovely"]) + let v = native_list_append(v, ["पीपिवस्", "adj", "पीपिवस्", "", "", "", "swelling protuberant overflowing"]) + let v = native_list_append(v, ["भूरि", "adj", "भूरि", "", "", "", "many plentiful numerous"]) + let v = native_list_append(v, ["यावत्", "adj", "यावत्", "", "", "", "as great as"]) + let v = native_list_append(v, ["𑀫𑀡𑀺𑀫𑀬", "adj", "𑀫𑀡𑀺𑀫𑀬", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["दुर्दान्त", "adj", "दुर्दान्त", "", "", "", "badly tamed untamed"]) + let v = native_list_append(v, ["दुर्दान्तस्", "adj", "दुर्दान्तस्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["वैदेह", "adj", "वैदेह", "", "", "", "of the country"]) + let v = native_list_append(v, ["वैर", "adj", "वैर", "", "", "", "hostile inimical revengeful"]) + let v = native_list_append(v, ["वेदन", "adj", "वेदन", "", "", "", "proclaiming making known"]) + let v = native_list_append(v, ["अश्विन्", "adj", "अश्विन्", "", "", "", "possessed of horses"]) + let v = native_list_append(v, ["प्रथमा", "adj", "प्रथमा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["तृतीया", "adj", "तृतीया", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["हरितः", "adj", "हरितः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["अप्रचेतस्", "adj", "अप्रचेतस्", "", "", "", "unwise foolish stupid"]) + let v = native_list_append(v, ["सुपार", "adj", "सुपार", "", "", "", "easy to be"]) + let v = native_list_append(v, ["पलायिन्", "adj", "पलायिन्", "", "", "", "fleeing escaping fugitive"]) + let v = native_list_append(v, ["मानुष्य", "adj", "मानुष्य", "", "", "", "manly human"]) + let v = native_list_append(v, ["सुप्रचेतस्", "adj", "सुप्रचेतस्", "", "", "", "very wise"]) + let v = native_list_append(v, ["प्रुषित", "adj", "प्रुषित", "", "", "", "sprinkled wetted"]) + let v = native_list_append(v, ["प्रुषितस्य", "adj", "प्रुषितस्य", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["चक्रबन्ध", "adj", "चक्रबन्ध", "", "", "", "so as to"]) + let v = native_list_append(v, ["गतो", "adj", "गतो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["ஶ்ரீ", "adj", "ஶ்ரீ", "", "", "", "Tamil script form"]) + let v = native_list_append(v, ["प्रथमानि", "adj", "प्रथमानि", "", "", "", "neuter nominative/vocative/accusative plural"]) + let v = native_list_append(v, ["ଶ୍ରୀ", "adj", "ଶ୍ରୀ", "", "", "", "Odia script form"]) + let v = native_list_append(v, ["हलन्त", "adj", "हलन्त", "", "", "", "ending in a"]) + let v = native_list_append(v, ["गीर्ण", "adj", "गीर्ण", "", "", "", "swallowed"]) + let v = native_list_append(v, ["अदनीय", "adj", "अदनीय", "", "", "", "to be eaten"]) + let v = native_list_append(v, ["अत्तव्य", "adj", "अत्तव्य", "", "", "", "fit to be"]) + let v = native_list_append(v, ["अटन", "adj", "अटन", "", "", "", "roaming about"]) + let v = native_list_append(v, ["सृप्र", "adj", "सृप्र", "", "", "", "greasy smooth"]) + let v = native_list_append(v, ["स्वर्गत", "adj", "स्वर्गत", "", "", "", "being in heaven"]) + let v = native_list_append(v, ["सृप्रवन्धुर", "adj", "सृप्रवन्धुर", "", "", "", "having a smooth"]) + let v = native_list_append(v, ["त्रिवन्धुर", "adj", "त्रिवन्धुर", "", "", "", "having 3 seats"]) + let v = native_list_append(v, ["अर्चन", "adj", "अर्चन", "", "", "", "honoring praising"]) + let v = native_list_append(v, ["नमस्कार्य", "adj", "नमस्कार्य", "", "", "", "to be worshipped"]) + let v = native_list_append(v, ["नमस्विन्", "adj", "नमस्विन्", "", "", "", "worshipping reverential"]) + let v = native_list_append(v, ["इषुध्यु", "adj", "इषुध्यु", "", "", "", "imploring requesting"]) + let v = native_list_append(v, ["नमस्वत्", "adj", "नमस्वत्", "", "", "", "paying or inspiring"]) + let v = native_list_append(v, ["भगवन्", "adj", "भगवन्", "", "", "", "Compounding form of"]) + let v = native_list_append(v, ["भगवद्", "adj", "भगवद्", "", "", "", "Compounding form of"]) + let v = native_list_append(v, ["मध्वद्", "adj", "मध्वद्", "", "", "", "eating sweetness literally"]) + let v = native_list_append(v, ["कामबद्ध", "adj", "कामबद्ध", "", "", "", "bound by love"]) + let v = native_list_append(v, ["कामचारिन्", "adj", "कामचारिन्", "", "", "", "moving or acting"]) + let v = native_list_append(v, ["कामद", "adj", "कामद", "", "", "", "giving what is"]) + let v = native_list_append(v, ["श्रीमत्", "adj", "श्रीमत्", "", "", "", "beautiful charming lovely"]) + let v = native_list_append(v, ["श्रीमन्", "adj", "श्रीमन्", "", "", "", "Compounding form of"]) + let v = native_list_append(v, ["श्रीमद्", "adj", "श्रीमद्", "", "", "", "Compounding form of"]) + let v = native_list_append(v, ["धीमत्", "adj", "धीमत्", "", "", "", "intelligent wise learned"]) + let v = native_list_append(v, ["श्रीमान्", "adj", "श्रीमान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["श्रीमन्त", "adj", "श्रीमन्त", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["कान्तिद", "adj", "कान्तिद", "", "", "", "giving beauty beautifying"]) + let v = native_list_append(v, ["कान्तिमत्", "adj", "कान्तिमत्", "", "", "", "lovely splendid"]) + let v = native_list_append(v, ["कान्तिकर", "adj", "कान्तिकर", "", "", "", "causing beauty beautifying"]) + let v = native_list_append(v, ["कान्तिहर", "adj", "कान्तिहर", "", "", "", "destroying beauty making"]) + let v = native_list_append(v, ["हेमकान्ति", "adj", "हेमकान्ति", "", "", "", "having a golden"]) + let v = native_list_append(v, ["भगवन्त", "adj", "भगवन्त", "", "", "", "See भगवत् bhágavat"]) + let v = native_list_append(v, ["सत्यबन्ध", "adj", "सत्यबन्ध", "", "", "", "bound by truth"]) + let v = native_list_append(v, ["सत्यघ्न", "adj", "सत्यघ्न", "", "", "", "breaking ones word"]) + let v = native_list_append(v, ["सत्यजित्", "adj", "सत्यजित्", "", "", "", "truly victorious"]) + let v = native_list_append(v, ["सुराष्ट्र", "adj", "सुराष्ट्र", "", "", "", "Having a good"]) + let v = native_list_append(v, ["जयिन्", "adj", "जयिन्", "", "", "", "winning victorious conquering"]) + let v = native_list_append(v, ["पीडन", "adj", "पीडन", "", "", "", "pressing afflicting molesting"]) + let v = native_list_append(v, ["काषाय", "adj", "काषाय", "", "", "", "brownish red"]) + let v = native_list_append(v, ["काषायी", "adj", "काषायी", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["प्रतीक्ष", "adj", "प्रतीक्ष", "", "", "", "looking backward"]) + let v = native_list_append(v, ["कषाय", "adj", "कषाय", "", "", "", "astringent"]) + let v = native_list_append(v, ["शाण", "adj", "शाण", "", "", "", "made of hemp"]) + let v = native_list_append(v, ["शाणी", "adj", "शाणी", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["गुप्", "adj", "गुप्", "", "", "", "defending protecting"]) + let v = native_list_append(v, ["द्युक्ष", "adj", "द्युक्ष", "", "", "", "celestial heavenly"]) + let v = native_list_append(v, ["च्युत्", "adj", "च्युत्", "", "", "", "distilling"]) + let v = native_list_append(v, ["अवास्तु", "adj", "अवास्तु", "", "", "", "having no home"]) + let v = native_list_append(v, ["त्यज्", "adj", "त्यज्", "", "", "", "leaving abandoning giving"]) + let v = native_list_append(v, ["दीक्षित", "adj", "दीक्षित", "", "", "", "consecrated initiated into"]) + let v = native_list_append(v, ["उपध्मानीय", "adj", "उपध्मानीय", "", "", "", "uttered from the"]) + let v = native_list_append(v, ["द्विष्", "adj", "द्विष्", "", "", "", "hostile hating disliking"]) + let v = native_list_append(v, ["पा", "adj", "पा", "", "", "", "keeping protecting guarding"]) + let v = native_list_append(v, ["रुज्", "adj", "रुज्", "", "", "", "breaking crushing shattering"]) + let v = native_list_append(v, ["रहित", "adj", "रहित", "", "", "", "excluding without left"]) + let v = native_list_append(v, ["स्पृश्", "adj", "स्पृश्", "", "", "", "touching coming into"]) + let v = native_list_append(v, ["स्मित", "adj", "स्मित", "", "", "", "smiling"]) + let v = native_list_append(v, ["स्वप्", "adj", "स्वप्", "", "", "", "having good water"]) + let v = native_list_append(v, ["हिंस्", "adj", "हिंस्", "", "", "", "injuring striking"]) + let v = native_list_append(v, ["चतुःशृङ्ग", "adj", "चतुःशृङ्ग", "", "", "", "four-horned having four"]) + let v = native_list_append(v, ["रूढ", "adj", "रूढ", "", "", "", "grown sprung up"]) + let v = native_list_append(v, ["परिशुद्ध", "adj", "परिशुद्ध", "", "", "", "cleaned purified refined"]) + let v = native_list_append(v, ["खर्व", "adj", "खर्व", "", "", "", "mutilated crippled injured"]) + let v = native_list_append(v, ["शोभन", "adj", "शोभन", "", "", "", "brilliant beautiful"]) + let v = native_list_append(v, ["वृजिन", "adj", "वृजिन", "", "", "", "bent crooked deceitful"]) + let v = native_list_append(v, ["ਸ਼੍ਰੀ", "adj", "ਸ਼੍ਰੀ", "", "", "", "Gurmukhi script form"]) + let v = native_list_append(v, ["সম", "adj", "সম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["রাম", "adj", "রাম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["অর্জুন", "adj", "অর্জুন", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["শিব", "adj", "শিব", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["ব্রাহ্ম", "adj", "ব্রাহ্ম", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["सव्यसाची", "adj", "सव्यसाची", "", "", "", "ambidextrous"]) + let v = native_list_append(v, ["কৌরব", "adj", "কৌরব", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["মুক্ত", "adj", "মুক্ত", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["पश्च", "adj", "पश्च", "", "", "", "hinder later"]) + let v = native_list_append(v, ["उत्तमो", "adj", "उत्तमो", "", "", "", "Templateinflection of"]) + let v = native_list_append(v, ["साह", "adj", "साह", "", "", "", "powerful mighty"]) + let v = native_list_append(v, ["प्रशीतित्र", "adj", "प्रशीतित्र", "", "", "", "of or relating"]) + let v = native_list_append(v, ["गण्य", "adj", "गण्य", "", "", "", "calculable to be"]) + let v = native_list_append(v, ["भीरु", "adj", "भीरु", "", "", "", "fearful timid cowardly"]) + let v = native_list_append(v, ["त्यक्त", "adj", "त्यक्त", "", "", "", "abandoned"]) + let v = native_list_append(v, ["अन्त्य", "adj", "अन्त्य", "", "", "", "last in place"]) + let v = native_list_append(v, ["വീര", "adj", "വീര", "", "", "", "Malayalam script form"]) + let v = native_list_append(v, ["नाके", "adj", "नाके", "", "", "", "inflection of नाक"]) + let v = native_list_append(v, ["पृथुल", "adj", "पृथुल", "", "", "", "broad"]) + let v = native_list_append(v, ["उत्कट", "adj", "उत्कट", "", "", "", "immense"]) + let v = native_list_append(v, ["कच्चर", "adj", "कच्चर", "", "", "", "dirty foul spoiled"]) + let v = native_list_append(v, ["सैन्धव", "adj", "सैन्धव", "", "", "", "relating to the"]) + let v = native_list_append(v, ["पुण्ड्र", "adj", "पुण्ड्र", "", "", "", "pale"]) + let v = native_list_append(v, ["अट्ट", "adj", "अट्ट", "", "", "", "high"]) + let v = native_list_append(v, ["प्रतिवेश", "adj", "प्रतिवेश", "", "", "", "neighbouring"]) + let v = native_list_append(v, ["वन्ध्य", "adj", "वन्ध्य", "", "", "", "barren sterile"]) + let v = native_list_append(v, ["ईशा", "adj", "ईशा", "", "", "", "Vedic masculine nominative/vocative/accusative"]) + let v = native_list_append(v, ["प्रथित", "adj", "प्रथित", "", "", "", "spread extended increased"]) + let v = native_list_append(v, ["खोर", "adj", "खोर", "", "", "", "limping lame"]) + let v = native_list_append(v, ["चपल", "adj", "चपल", "", "", "", "trembling fickle"]) + let v = native_list_append(v, ["सलिल", "adj", "सलिल", "", "", "", "flowing surging fluctuating"]) + let v = native_list_append(v, ["दोग्ध्री", "adj", "दोग्ध्री", "", "", "", "feminine of दोग्धृ"]) + let v = native_list_append(v, ["हनुमत्", "adj", "हनुमत्", "", "", "", "of or relating"]) + let v = native_list_append(v, ["ज्ञप्त", "adj", "ज्ञप्त", "", "ज्ञाप्ति", "", "instructed"]) + let v = native_list_append(v, ["अ", "other", "अ", "", "", "", "The first vowel"]) + let v = native_list_append(v, ["आ", "other", "आ", "", "", "", "With senses determined"]) + let v = native_list_append(v, ["इ", "other", "इ", "", "", "", "to go"]) + let v = native_list_append(v, ["ई", "other", "ई", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ऋ", "other", "ऋ", "", "", "", "to go move"]) + let v = native_list_append(v, ["ए", "other", "ए", "", "", "", "The eleventh vowel"]) + let v = native_list_append(v, ["ऐ", "other", "ऐ", "", "", "", "The twelfth vowel"]) + let v = native_list_append(v, ["ओ", "other", "ओ", "", "", "", "ow ouch"]) + let v = native_list_append(v, ["औ", "other", "औ", "", "", "", "The 14th vowel"]) + let v = native_list_append(v, ["ख", "other", "ख", "", "", "", "The second consonant"]) + let v = native_list_append(v, ["न", "other", "न", "", "", "", "no not"]) + let v = native_list_append(v, ["म", "other", "म", "", "", "", "the twenty-fifth consonant"]) + let v = native_list_append(v, ["१", "other", "१", "", "", "", "The digit 1"]) + let v = native_list_append(v, ["स्निह्", "other", "स्निह्", "", "", "", "to be adhesive"]) + let v = native_list_append(v, ["वद्", "other", "वद्", "", "", "", "to speak tell"]) + let v = native_list_append(v, ["वच्", "other", "वच्", "", "", "", "to say speak"]) + let v = native_list_append(v, ["तरंग", "other", "तरंग", "", "", "", "to move like"]) + let v = native_list_append(v, ["ॐ", "other", "ॐ", "", "", "", "the sacred syllable"]) + let v = native_list_append(v, ["गण्", "other", "गण्", "", "", "", "to count calculate"]) + let v = native_list_append(v, ["तुष्", "other", "तुष्", "", "", "", "to like with"]) + let v = native_list_append(v, ["सह", "other", "सह", "", "", "", "together with along"]) + let v = native_list_append(v, ["विन्द्", "other", "विन्द्", "", "", "", "to find"]) + let v = native_list_append(v, ["मी", "other", "मी", "", "", "", "to lessen diminish"]) + let v = native_list_append(v, ["त्विष्", "other", "त्विष्", "", "", "", "to be violently"]) + let v = native_list_append(v, ["एक", "other", "एक", "", "", "", "one"]) + let v = native_list_append(v, ["दो", "other", "दो", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["धन्यवाद", "other", "धन्यवाद", "", "", "", "thanks thank you"]) + let v = native_list_append(v, ["रुह्", "other", "रुह्", "", "", "", "to grow climb"]) + let v = native_list_append(v, ["दिव्", "other", "दिव्", "", "", "", "to cast throw"]) + let v = native_list_append(v, ["विना", "other", "विना", "", "", "", "without except"]) + let v = native_list_append(v, ["ह्री", "other", "ह्री", "", "", "", "to blush be"]) + let v = native_list_append(v, ["वे", "other", "वे", "", "", "", "to weave"]) + let v = native_list_append(v, ["य", "other", "य", "", "", "", "the twenty-fourth consonant"]) + let v = native_list_append(v, ["का", "other", "का", "", "", "", "to desire to"]) + let v = native_list_append(v, ["नमस्ते", "other", "नमस्ते", "", "", "", "a bow to"]) + let v = native_list_append(v, ["२", "other", "२", "", "", "", "The digit 2"]) + let v = native_list_append(v, ["३", "other", "३", "", "", "", "The digit 3"]) + let v = native_list_append(v, ["४", "other", "४", "", "", "", "The digit 4"]) + let v = native_list_append(v, ["५", "other", "५", "", "", "", "The digit 5"]) + let v = native_list_append(v, ["६", "other", "६", "", "", "", "The digit 6"]) + let v = native_list_append(v, ["ल", "other", "ल", "", "", "", "the twenty-eighth consonant"]) + let v = native_list_append(v, ["स", "other", "स", "", "", "", "the thirty-second consonant"]) + let v = native_list_append(v, ["संख्या", "other", "संख्या", "", "", "", "to reckon or"]) + let v = native_list_append(v, ["धी", "other", "धी", "", "", "", "to perceive think"]) + let v = native_list_append(v, ["भू", "other", "भू", "", "", "", "to be become"]) + let v = native_list_append(v, ["द्व", "other", "द्व", "", "", "", "two both"]) + let v = native_list_append(v, ["दश", "other", "दश", "", "", "", "ten"]) + let v = native_list_append(v, ["आस्", "other", "आस्", "", "", "", "to sit"]) + let v = native_list_append(v, ["भा", "other", "भा", "", "", "", "to shine be"]) + let v = native_list_append(v, ["चतुर्", "other", "चतुर्", "", "", "", "four"]) + let v = native_list_append(v, ["त्वच्", "other", "त्वच्", "", "", "", "to cover"]) + let v = native_list_append(v, ["अक्षय्य", "other", "अक्षय्य", "", "", "", "May thy prosperity"]) + let v = native_list_append(v, ["सप्त", "other", "सप्त", "", "", "", "seven"]) + let v = native_list_append(v, ["अप-", "other", "अप-", "", "", "", "away off back"]) + let v = native_list_append(v, ["स्तृ", "other", "स्तृ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["श्री", "other", "श्री", "", "", "", "honorific prefix appended"]) + let v = native_list_append(v, ["शत", "other", "शत", "", "", "", "hundred"]) + let v = native_list_append(v, ["ऋच्", "other", "ऋच्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["नव", "other", "नव", "", "", "", "nine"]) + let v = native_list_append(v, ["त्रि", "other", "त्रि", "", "", "", "three"]) + let v = native_list_append(v, ["पद्", "other", "पद्", "", "", "", "to fall fall"]) + let v = native_list_append(v, ["कु", "other", "कु", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["हि", "other", "हि", "", "", "", "to send forth"]) + let v = native_list_append(v, ["ईश्", "other", "ईश्", "", "", "", "to own possess"]) + let v = native_list_append(v, ["सहस्र", "other", "सहस्र", "", "", "", "a thousand"]) + let v = native_list_append(v, ["द्रु", "other", "द्रु", "", "", "", "to run hasten"]) + let v = native_list_append(v, ["साधु", "other", "साधु", "", "", "", "good! well done!"]) + let v = native_list_append(v, ["विद्युत्", "other", "विद्युत्", "", "", "", "to flash forth"]) + let v = native_list_append(v, ["विंशति", "other", "विंशति", "", "", "", "twenty a score"]) + let v = native_list_append(v, ["त्रिंशत्", "other", "त्रिंशत्", "", "", "", "thirty"]) + let v = native_list_append(v, ["चत्वारिंशत्", "other", "चत्वारिंशत्", "", "", "", "forty"]) + let v = native_list_append(v, ["पञ्चाशत्", "other", "पञ्चाशत्", "", "", "", "fifty"]) + let v = native_list_append(v, ["सा", "other", "सा", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ज्ञ", "other", "ज्ञ", "", "", "", "In Sanskrit an"]) + let v = native_list_append(v, ["अ-", "other", "अ-", "", "", "", "un- not"]) + let v = native_list_append(v, ["हो", "other", "हो", "", "", "", "used in calling"]) + let v = native_list_append(v, ["संज्ञा", "other", "संज्ञा", "", "", "", "to agree together"]) + let v = native_list_append(v, ["कृप्", "other", "कृप्", "", "", "", "to mourn"]) + let v = native_list_append(v, ["विराज्", "other", "विराज्", "", "", "", "to rule govern"]) + let v = native_list_append(v, ["क्रुञ्च्", "other", "क्रुञ्च्", "", "", "", "to curve or"]) + let v = native_list_append(v, ["-इक", "other", "-इक", "", "", "", "forms adjectives from"]) + let v = native_list_append(v, ["उपनिषद्", "other", "उपनिषद्", "", "", "", "to sit down"]) + let v = native_list_append(v, ["नि", "other", "नि", "", "", "", "down"]) + let v = native_list_append(v, ["सद्", "other", "सद्", "", "", "", "to sit down"]) + let v = native_list_append(v, ["प्रज्ञा", "other", "प्रज्ञा", "", "", "", "to know understand"]) + let v = native_list_append(v, ["स्वर्", "other", "स्वर्", "", "", "", "to sound resound"]) + let v = native_list_append(v, ["कृत्", "other", "कृत्", "", "", "", "to cut in"]) + let v = native_list_append(v, ["कृ", "other", "कृ", "", "", "", "to do tomake"]) + let v = native_list_append(v, ["वह्", "other", "वह्", "", "", "", "to carry"]) + let v = native_list_append(v, ["किम्", "other", "किम्", "", "", "", "what a pity!"]) + let v = native_list_append(v, ["दृश्", "other", "दृश्", "", "", "", "to see look"]) + let v = native_list_append(v, ["षड्", "other", "षड्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["द्वि", "other", "द्वि", "", "", "", "two 2"]) + let v = native_list_append(v, ["सु-", "other", "सु-", "", "", "", "good- well-"]) + let v = native_list_append(v, ["विश्", "other", "विश्", "", "", "", "to enter enter"]) + let v = native_list_append(v, ["भी", "other", "भी", "", "", "", "to fear dread"]) + let v = native_list_append(v, ["◌ँ", "other", "◌ँ", "", "", "", "the candrabindu nasal"]) + let v = native_list_append(v, ["अहो", "other", "अहो", "", "", "", "aha hey"]) + let v = native_list_append(v, ["चुर्", "other", "चुर्", "", "", "", "to steal"]) + let v = native_list_append(v, ["तन्", "other", "तन्", "", "", "", "to stretch"]) + let v = native_list_append(v, ["तुद्", "other", "तुद्", "", "", "", "to push"]) + let v = native_list_append(v, ["महा", "other", "महा", "", "", "", "combining form of"]) + let v = native_list_append(v, ["devam", "other", "devam", "", "", "", "romanization of देवम्"]) + let v = native_list_append(v, ["स्वागत", "other", "स्वागत", "", "", "", "welcome"]) + let v = native_list_append(v, ["लुण्ट्", "other", "लुण्ट्", "", "", "", "to rob plunder"]) + let v = native_list_append(v, ["శ్రీ", "other", "శ్రీ", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["तथा", "other", "तथा", "", "", "", "yes so shall"]) + let v = native_list_append(v, ["प्रतिज्ञा", "other", "प्रतिज्ञा", "", "", "", "to admit own"]) + let v = native_list_append(v, ["स्था", "other", "स्था", "", "", "", "to stand station"]) + let v = native_list_append(v, ["अस्", "other", "अस्", "", "", "", "to be"]) + let v = native_list_append(v, ["गम्", "other", "गम्", "", "", "", "to go move"]) + let v = native_list_append(v, ["ज्ञा", "other", "ज्ञा", "", "", "", "to know"]) + let v = native_list_append(v, ["विद्", "other", "विद्", "", "", "", "to know"]) + let v = native_list_append(v, ["स्कृ", "other", "स्कृ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["नम्", "other", "नम्", "", "", "", "to bend bow"]) + let v = native_list_append(v, ["बुध्", "other", "बुध्", "", "", "", "to come to"]) + let v = native_list_append(v, ["वा", "other", "वा", "", "", "", "to blow of"]) + let v = native_list_append(v, ["तॄ", "other", "तॄ", "", "", "", "to pass"]) + let v = native_list_append(v, ["सिव्", "other", "सिव्", "", "", "", "to sew sew"]) + let v = native_list_append(v, ["अरे", "other", "अरे", "", "", "", "interjection of calling"]) + let v = native_list_append(v, ["-ईय", "other", "-ईय", "", "", "", "related to forms"]) + let v = native_list_append(v, ["-एय", "other", "-एय", "", "", "", "forms adjectives from"]) + let v = native_list_append(v, ["-ल", "other", "-ल", "", "", "", "an adjectival or"]) + let v = native_list_append(v, ["-ई", "other", "-ई", "", "", "", "Feminizes nominal stems"]) + let v = native_list_append(v, ["-व", "other", "-व", "", "", "", "creates adjectives from"]) + let v = native_list_append(v, ["अष्ट", "other", "अष्ट", "", "", "", "eight"]) + let v = native_list_append(v, ["षष्", "other", "षष्", "", "", "", "six"]) + let v = native_list_append(v, ["उपरि", "other", "उपरि", "", "", "", "over"]) + let v = native_list_append(v, ["हा", "other", "हा", "", "", "", "to leave abandon"]) + let v = native_list_append(v, ["हे", "other", "हे", "", "", "", "oh!"]) + let v = native_list_append(v, ["सहस्रम्", "other", "सहस्रम्", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["दुस्-", "other", "दुस्-", "", "", "", "ill- mal-"]) + let v = native_list_append(v, ["भुज्", "other", "भुज्", "", "", "", "to bend curve"]) + let v = native_list_append(v, ["स्थल्", "other", "स्थल्", "", "", "", "to stand firm"]) + let v = native_list_append(v, ["वृ", "other", "वृ", "", "", "", "to choose select"]) + let v = native_list_append(v, ["उप-", "other", "उप-", "", "", "", "towards"]) + let v = native_list_append(v, ["वि-", "other", "वि-", "", "", "", "Prefix to verbs"]) + let v = native_list_append(v, ["ज्या", "other", "ज्या", "", "", "", "to overpower oppress"]) + let v = native_list_append(v, ["स्वस्ति", "other", "स्वस्ति", "", "", "", "greetings!"]) + let v = native_list_append(v, ["सोऽहम्", "other", "सोऽहम्", "", "", "", "It is I"]) + let v = native_list_append(v, ["निन्द्", "other", "निन्द्", "", "", "", "to insult"]) + let v = native_list_append(v, ["धन्", "other", "धन्", "", "", "", "to sound"]) + let v = native_list_append(v, ["स्मृ", "other", "स्मृ", "", "", "", "to remember"]) + let v = native_list_append(v, ["धिक्", "other", "धिक्", "", "", "", "fie shame on"]) + let v = native_list_append(v, ["-ताति", "other", "-ताति", "", "", "", "suffix forming nouns"]) + let v = native_list_append(v, ["मन्", "other", "मन्", "", "", "", "to think believe"]) + let v = native_list_append(v, ["कीर्त्", "other", "कीर्त्", "", "", "", "to mention make"]) + let v = native_list_append(v, ["वीर्", "other", "वीर्", "", "", "", "to be powerful"]) + let v = native_list_append(v, ["अपहृ", "other", "अपहृ", "", "", "", "to snatch away"]) + let v = native_list_append(v, ["हृ", "other", "हृ", "", "", "", "to take"]) + let v = native_list_append(v, ["नश्", "other", "नश्", "", "", "", "to reach attain"]) + let v = native_list_append(v, ["अज्", "other", "अज्", "", "", "", "to drive propel"]) + let v = native_list_append(v, ["अञ्ज्", "other", "अञ्ज्", "", "", "", "to anoint smear"]) + let v = native_list_append(v, ["अद्", "other", "अद्", "", "", "", "to eat"]) + let v = native_list_append(v, ["अन्", "other", "अन्", "", "", "", "to breathe respire"]) + let v = native_list_append(v, ["अर्च्", "other", "अर्च्", "", "", "", "to praise"]) + let v = native_list_append(v, ["इध्", "other", "इध्", "", "", "", "to kindle"]) + let v = native_list_append(v, ["ऋज्", "other", "ऋज्", "", "", "", "to direct stretch"]) + let v = native_list_append(v, ["रुद्", "other", "रुद्", "", "", "", "to weep cry"]) + let v = native_list_append(v, ["राज्", "other", "राज्", "", "", "", "to rule to"]) + let v = native_list_append(v, ["प्री", "other", "प्री", "", "", "", "to please gladden"]) + let v = native_list_append(v, ["रक्ष्", "other", "रक्ष्", "", "", "", "to protect guard"]) + let v = native_list_append(v, ["रच्", "other", "रच्", "", "", "", "cl.10 P. Dhātup."]) + let v = native_list_append(v, ["नन्द्", "other", "नन्द्", "", "", "", "to rejoice delight"]) + let v = native_list_append(v, ["रण्", "other", "रण्", "", "", "", "to rejoice be"]) + let v = native_list_append(v, ["मह्", "other", "मह्", "", "", "", "to bring about"]) + let v = native_list_append(v, ["भृ", "other", "भृ", "", "", "", "to bear carry"]) + let v = native_list_append(v, ["रस्", "other", "रस्", "", "", "", "to roar yell"]) + let v = native_list_append(v, ["क्री", "other", "क्री", "", "", "", "to buy"]) + let v = native_list_append(v, ["ग्रभ्", "other", "ग्रभ्", "", "", "", "to seize"]) + let v = native_list_append(v, ["ग्रह्", "other", "ग्रह्", "", "", "", "to seize take"]) + let v = native_list_append(v, ["चर्", "other", "चर्", "", "", "", "to move"]) + let v = native_list_append(v, ["रिच्", "other", "रिच्", "", "", "", "to abandon"]) + let v = native_list_append(v, ["रुच्", "other", "रुच्", "", "", "", "to shine be"]) + let v = native_list_append(v, ["रूप्", "other", "रूप्", "", "", "", "to form shape"]) + let v = native_list_append(v, ["तत्त्वमसि", "other", "तत्त्वमसि", "", "", "", "Tat Tvam Asi"]) + let v = native_list_append(v, ["भ्रम्", "other", "भ्रम्", "", "", "", "to wander or"]) + let v = native_list_append(v, ["क्रुध्", "other", "क्रुध्", "", "", "", "to become angry"]) + let v = native_list_append(v, ["लक्ष्", "other", "लक्ष्", "", "", "", "to perceive observe"]) + let v = native_list_append(v, ["लग्", "other", "लग्", "", "", "", "to attach stick"]) + let v = native_list_append(v, ["लज्ज्", "other", "लज्ज्", "", "", "", "to be ashamed"]) + let v = native_list_append(v, ["लम्ब्", "other", "लम्ब्", "", "", "", "to hang down"]) + let v = native_list_append(v, ["बाध्", "other", "बाध्", "", "", "", "to oppress"]) + let v = native_list_append(v, ["व्यस्", "other", "व्यस्", "", "", "", "to throw or"]) + let v = native_list_append(v, ["परीक्ष्", "other", "परीक्ष्", "", "", "", "to examine look"]) + let v = native_list_append(v, ["खन्", "other", "खन्", "", "", "", "to dig dig"]) + let v = native_list_append(v, ["क्लिश्", "other", "क्लिश्", "", "", "", "to torment trouble"]) + let v = native_list_append(v, ["या", "other", "या", "", "", "", "to go proceed"]) + let v = native_list_append(v, ["स-", "other", "स-", "", "", "", "an inseparable prefix"]) + let v = native_list_append(v, ["घट्", "other", "घट्", "", "", "", "to be intently"]) + let v = native_list_append(v, ["दीप्", "other", "दीप्", "", "", "", "to blaze flare"]) + let v = native_list_append(v, ["हस्", "other", "हस्", "", "", "", "laugh smile"]) + let v = native_list_append(v, ["अधि-", "other", "अधि-", "", "", "", "super- above"]) + let v = native_list_append(v, ["परि-", "other", "परि-", "", "", "", "around"]) + let v = native_list_append(v, ["𑆑", "other", "𑆑", "", "", "", "the first consonant"]) + let v = native_list_append(v, ["विधा", "other", "विधा", "", "", "", "to distribute apportion"]) + let v = native_list_append(v, ["-ता", "other", "-ता", "", "", "", "Forms feminine abstract"]) + let v = native_list_append(v, ["-इका", "other", "-इका", "", "", "", "one who does"]) + let v = native_list_append(v, ["खाद्", "other", "खाद्", "", "", "", "to eat chew"]) + let v = native_list_append(v, ["मा", "other", "मा", "", "", "", "to sound bellow"]) + let v = native_list_append(v, ["ओम्", "other", "ओम्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["षष्टि", "other", "षष्टि", "", "", "", "sixty"]) + let v = native_list_append(v, ["आधा", "other", "आधा", "", "", "", "to place on"]) + let v = native_list_append(v, ["दै", "other", "दै", "", "", "", "to purify cleanse"]) + let v = native_list_append(v, ["-ना", "other", "-ना", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["स्वाहा", "other", "स्वाहा", "", "", "", "said after giving"]) + let v = native_list_append(v, ["वन्दे मातरम्", "other", "वन्दे मातरम्", "", "", "", "Vande Mataram the"]) + let v = native_list_append(v, ["अभि-", "other", "अभि-", "", "", "", "to towards into"]) + let v = native_list_append(v, ["गॄ", "other", "गॄ", "", "", "", "to invoke call"]) + let v = native_list_append(v, ["चि", "other", "चि", "", "", "", "to observe perceive"]) + let v = native_list_append(v, ["जि", "other", "जि", "", "", "", "to win conquer"]) + let v = native_list_append(v, ["शूल्", "other", "शूल्", "", "", "", "to hurt cause"]) + let v = native_list_append(v, ["घृष्", "other", "घृष्", "", "", "", "to rub brush"]) + let v = native_list_append(v, ["प्रभा", "other", "प्रभा", "", "", "", "to shine forth"]) + let v = native_list_append(v, ["पुष्", "other", "पुष्", "", "", "", "to be nourished"]) + let v = native_list_append(v, ["प्रवह्", "other", "प्रवह्", "", "", "", "to carry forwards"]) + let v = native_list_append(v, ["प्रविश्", "other", "प्रविश्", "", "", "", "enter go into"]) + let v = native_list_append(v, ["शूर्प्", "other", "शूर्प्", "", "", "", "to measure or"]) + let v = native_list_append(v, ["जन्", "other", "जन्", "", "", "", "to generate beget"]) + let v = native_list_append(v, ["मञ्ज्", "other", "मञ्ज्", "", "", "", "to cleanse or"]) + let v = native_list_append(v, ["शुध्", "other", "शुध्", "", "", "", "to purify"]) + let v = native_list_append(v, ["तप्", "other", "तप्", "", "", "", "to give out"]) + let v = native_list_append(v, ["बन्ध्", "other", "बन्ध्", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["ฺ", "other", "ฺ", "", "", "", "The virama พินทุ"]) + let v = native_list_append(v, ["๎", "other", "๎", "", "", "", "The yamakkan a"]) + let v = native_list_append(v, ["ํ", "other", "ํ", "", "", "", "The anusvāra in"]) + let v = native_list_append(v, ["න", "other", "න", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["विश्वस्", "other", "विश्वस्", "", "", "", "to draw breath"]) + let v = native_list_append(v, ["श्रम्", "other", "श्रम्", "", "", "", "to be or"]) + let v = native_list_append(v, ["काश्", "other", "काश्", "", "", "", "to shine brightly"]) + let v = native_list_append(v, ["रञ्ज्", "other", "रञ्ज्", "", "", "", "to redden"]) + let v = native_list_append(v, ["प्लु", "other", "प्लु", "", "", "", "to float"]) + let v = native_list_append(v, ["हु", "other", "हु", "", "", "", "to sprinkle on"]) + let v = native_list_append(v, ["ह्वे", "other", "ह्वे", "", "", "", "to call call"]) + let v = native_list_append(v, ["दॄ", "other", "दॄ", "", "", "", "to tear"]) + let v = native_list_append(v, ["लुभ्", "other", "लुभ्", "", "", "", "to desire"]) + let v = native_list_append(v, ["-ए", "other", "-ए", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["कुप्", "other", "कुप्", "", "", "", "to be moved"]) + let v = native_list_append(v, ["भ्री", "other", "भ्री", "", "", "", "to injure hurt"]) + let v = native_list_append(v, ["त्सर्", "other", "त्सर्", "", "", "", "to sneak"]) + let v = native_list_append(v, ["अवस्था", "other", "अवस्था", "", "", "", "to go down"]) + let v = native_list_append(v, ["शङ्क्", "other", "शङ्क्", "", "", "", "to doubt"]) + let v = native_list_append(v, ["शक्", "other", "शक्", "", "", "", "to be able"]) + let v = native_list_append(v, ["नु", "other", "नु", "", "", "", "to sound out"]) + let v = native_list_append(v, ["मम नाम ...", "other", "मम नाम ...", "", "", "", "my name is"]) + let v = native_list_append(v, ["प्र-", "other", "प्र-", "", "", "", "towards forwards pro-"]) + let v = native_list_append(v, ["मद्", "other", "मद्", "", "", "", "to rejoice"]) + let v = native_list_append(v, ["ईळ्", "other", "ईळ्", "", "", "", "to adore to"]) + let v = native_list_append(v, ["कॢप्", "other", "कॢप्", "", "", "", "to order to"]) + let v = native_list_append(v, ["धा", "other", "धा", "", "", "", "to put place"]) + let v = native_list_append(v, ["डी", "other", "डी", "", "", "", "to fly"]) + let v = native_list_append(v, ["-कार", "other", "-कार", "", "", "", "doer"]) + let v = native_list_append(v, ["नस्", "other", "नस्", "", "", "", "to come together"]) + let v = native_list_append(v, ["निद्रा", "other", "निद्रा", "", "", "", "to sleep"]) + let v = native_list_append(v, ["क्षम्", "other", "क्षम्", "", "", "", "to submit endure"]) + let v = native_list_append(v, ["मृद्", "other", "मृद्", "", "", "", "to press squeeze"]) + let v = native_list_append(v, ["नष्ट-", "other", "नष्ट-", "", "", "", "without un- -less"]) + let v = native_list_append(v, ["चन्द्", "other", "चन्द्", "", "", "", "to shine be"]) + let v = native_list_append(v, ["ली", "other", "ली", "", "", "", "to adhere obtain"]) + let v = native_list_append(v, ["पच्", "other", "पच्", "", "", "", "to cook"]) + let v = native_list_append(v, ["शुच्", "other", "शुच्", "", "", "", "to shine glow"]) + let v = native_list_append(v, ["जीव्", "other", "जीव्", "", "", "", "live"]) + let v = native_list_append(v, ["रम्", "other", "रम्", "", "", "", "to enjoy delight"]) + let v = native_list_append(v, ["ᳵ", "other", "ᳵ", "", "", "", "the sign जिह्वामूलीय"]) + let v = native_list_append(v, ["ᳶ", "other", "ᳶ", "", "", "", "the sign उपध्मानीय"]) + let v = native_list_append(v, ["मुह्", "other", "मुह्", "", "", "", "be confused be"]) + let v = native_list_append(v, ["ईड्", "other", "ईड्", "", "", "", "to laud implore"]) + let v = native_list_append(v, ["क्रम्", "other", "क्रम्", "", "", "", "go walk stride"]) + let v = native_list_append(v, ["यभ्", "other", "यभ्", "", "", "", "to have sexual"]) + let v = native_list_append(v, ["व्यवस्था", "other", "व्यवस्था", "", "", "", "to go apart"]) + let v = native_list_append(v, ["ब्रू", "other", "ब्रू", "", "", "", "to say speak"]) + let v = native_list_append(v, ["श्रु", "other", "श्रु", "", "", "", "to listen hear"]) + let v = native_list_append(v, ["वश्", "other", "वश्", "", "", "", "to will command"]) + let v = native_list_append(v, ["सि", "other", "सि", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["हन्", "other", "हन्", "", "", "", "to strike beat"]) + let v = native_list_append(v, ["नी", "other", "नी", "", "", "", "to guide govern"]) + let v = native_list_append(v, ["-अन", "other", "-अन", "", "", "", "forms masculine agent"]) + let v = native_list_append(v, ["सन्", "other", "सन्", "", "", "", "to gain acquire"]) + let v = native_list_append(v, ["अनु-", "other", "अनु-", "", "", "", "after along alongside"]) + let v = native_list_append(v, ["परिषद्", "other", "परिषद्", "", "", "", "to surround"]) + let v = native_list_append(v, ["भर्व्", "other", "भर्व्", "", "", "", "to chew devour"]) + let v = native_list_append(v, ["-आ", "other", "-आ", "", "", "", "creates action nouns"]) + let v = native_list_append(v, ["लोक्", "other", "लोक्", "", "", "", "to see"]) + let v = native_list_append(v, ["दा", "other", "दा", "", "", "", "to give"]) + let v = native_list_append(v, ["हू", "other", "हू", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["वस्", "other", "वस्", "", "", "", "to put on"]) + let v = native_list_append(v, ["स्तन्", "other", "स्तन्", "", "", "", "to resound reverberate"]) + let v = native_list_append(v, ["कू", "other", "कू", "", "", "", "to sound cry"]) + let v = native_list_append(v, ["प्रतिभा", "other", "प्रतिभा", "", "", "", "to shine upon"]) + let v = native_list_append(v, ["-त्व", "other", "-त्व", "", "", "", "forms abstract nouns"]) + let v = native_list_append(v, ["गा", "other", "गा", "", "", "", "to go go"]) + let v = native_list_append(v, ["भिषज्", "other", "भिषज्", "", "", "", "to heal to"]) + let v = native_list_append(v, ["-क", "other", "-क", "", "", "", "a diminutive masculine"]) + let v = native_list_append(v, ["परी", "other", "परी", "", "", "", "compounding form of"]) + let v = native_list_append(v, ["व्याख्या", "other", "व्याख्या", "", "", "", "to explain in"]) + let v = native_list_append(v, ["लभ्", "other", "लभ्", "", "", "", "to gain possess"]) + let v = native_list_append(v, ["मो", "other", "मो", "", "", "", "contraction of मा"]) + let v = native_list_append(v, ["षोडश", "other", "षोडश", "", "", "", "sixteen"]) + let v = native_list_append(v, ["विदा", "other", "विदा", "", "", "", "to give out"]) + let v = native_list_append(v, ["-वत्", "other", "-वत्", "", "", "", "forms possessive adjectives"]) + let v = native_list_append(v, ["स्पृध्", "other", "स्पृध्", "", "", "", "to compete rival"]) + let v = native_list_append(v, ["चतुर्दश", "other", "चतुर्दश", "", "", "", "fourteen"]) + let v = native_list_append(v, ["अष्टादश", "other", "अष्टादश", "", "", "", "eighteen"]) + let v = native_list_append(v, ["ऊनविंशति", "other", "ऊनविंशति", "", "", "", "nineteen"]) + let v = native_list_append(v, ["एकविंशति", "other", "एकविंशति", "", "", "", "twenty-one"]) + let v = native_list_append(v, ["द्वाविंशति", "other", "द्वाविंशति", "", "", "", "twenty-two"]) + let v = native_list_append(v, ["त्रयोविंशति", "other", "त्रयोविंशति", "", "", "", "twenty-three"]) + let v = native_list_append(v, ["चतुर्विंशति", "other", "चतुर्विंशति", "", "", "", "twenty-four"]) + let v = native_list_append(v, ["पञ्चविंशति", "other", "पञ्चविंशति", "", "", "", "twenty-five"]) + let v = native_list_append(v, ["षड्विंशति", "other", "षड्विंशति", "", "", "", "twenty-six"]) + let v = native_list_append(v, ["सप्तविंशति", "other", "सप्तविंशति", "", "", "", "twenty-seven"]) + let v = native_list_append(v, ["अष्टाविंशति", "other", "अष्टाविंशति", "", "", "", "twenty-eight"]) + let v = native_list_append(v, ["नवविंशति", "other", "नवविंशति", "", "", "", "twenty-nine"]) + let v = native_list_append(v, ["ऊनत्रिंशत्", "other", "ऊनत्रिंशत्", "", "", "", "twenty-nine"]) + let v = native_list_append(v, ["क्षुध्", "other", "क्षुध्", "", "", "", "to be hungry"]) + let v = native_list_append(v, ["द्रुह्", "other", "द्रुह्", "", "", "", "to hurt"]) + let v = native_list_append(v, ["तृ", "other", "तृ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["पू", "other", "पू", "", "", "", "to purify cleanse"]) + let v = native_list_append(v, ["छिद्", "other", "छिद्", "", "", "", "to cut off"]) + let v = native_list_append(v, ["परिच्छिद्", "other", "परिच्छिद्", "", "", "", "to cut on"]) + let v = native_list_append(v, ["स्पश्", "other", "स्पश्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["क्षु", "other", "क्षु", "", "", "", "to sneeze cough"]) + let v = native_list_append(v, ["मिह्", "other", "मिह्", "", "", "", "to urinate"]) + let v = native_list_append(v, ["निर्", "other", "निर्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सप्तति", "other", "सप्तति", "", "", "", "seventy"]) + let v = native_list_append(v, ["अशीति", "other", "अशीति", "", "", "", "eighty"]) + let v = native_list_append(v, ["नवति", "other", "नवति", "", "", "", "ninety"]) + let v = native_list_append(v, ["युध्", "other", "युध्", "", "", "", "to fight battle"]) + let v = native_list_append(v, ["इष्", "other", "इष्", "", "", "", "to desire wish"]) + let v = native_list_append(v, ["नृत्", "other", "नृत्", "", "", "", "to dance about"]) + let v = native_list_append(v, ["धृ", "other", "धृ", "", "", "", "to hold"]) + let v = native_list_append(v, ["मुच्", "other", "मुच्", "", "", "", "to free liberate"]) + let v = native_list_append(v, ["इङ्ग्", "other", "इङ्ग्", "", "", "", "to agitate"]) + let v = native_list_append(v, ["कुट्ट्", "other", "कुट्ट्", "", "", "", "To cut divide"]) + let v = native_list_append(v, ["त्रप्", "other", "त्रप्", "", "", "", "to be ashamed"]) + let v = native_list_append(v, ["त्रै", "other", "त्रै", "", "", "", "to protect preserve"]) + let v = native_list_append(v, ["परित्रै", "other", "परित्रै", "", "", "", "to save defend"]) + let v = native_list_append(v, ["चुद्", "other", "चुद्", "", "", "", "to impel"]) + let v = native_list_append(v, ["इरस्", "other", "इरस्", "", "", "", "to behave insolently"]) + let v = native_list_append(v, ["वल्", "other", "वल्", "", "", "", "to turn turn"]) + let v = native_list_append(v, ["शू", "other", "शू", "", "", "", "to swell"]) + let v = native_list_append(v, ["गृध्", "other", "गृध्", "", "", "", "to covet desire"]) + let v = native_list_append(v, ["जस्", "other", "जस्", "", "", "", "to be exhausted"]) + let v = native_list_append(v, ["शुम्भ्", "other", "शुम्भ्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["घिण्ण्", "other", "घिण्ण्", "", "", "", "to grasp hold"]) + let v = native_list_append(v, ["घुण्", "other", "घुण्", "", "", "", ""]) + let v = native_list_append(v, ["घूर्ण्", "other", "घूर्ण्", "", "", "", "to waver move"]) + let v = native_list_append(v, ["पॄ", "other", "पॄ", "", "", "", "to fill fill"]) + let v = native_list_append(v, ["पृ", "other", "पृ", "", "", "", "to be busy"]) + let v = native_list_append(v, ["निज्", "other", "निज्", "", "", "", "to wash cleanse"]) + let v = native_list_append(v, ["विज्", "other", "विज्", "", "", "", "to separate divide"]) + let v = native_list_append(v, ["विष्", "other", "विष्", "", "", "", "to be active"]) + let v = native_list_append(v, ["घृ", "other", "घृ", "", "", "", "to besprinkle"]) + let v = native_list_append(v, ["एध्", "other", "एध्", "", "", "", "to prosper grow"]) + let v = native_list_append(v, ["स्पर्ध्", "other", "स्पर्ध्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["गाध्", "other", "गाध्", "", "", "", "to remain stay"]) + let v = native_list_append(v, ["नाध्", "other", "नाध्", "", "", "", "to be in"]) + let v = native_list_append(v, ["नाथ्", "other", "नाथ्", "", "", "", "to seek aid"]) + let v = native_list_append(v, ["दध्", "other", "दध्", "", "", "", "to hold"]) + let v = native_list_append(v, ["स्कुन्द्", "other", "स्कुन्द्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["श्विन्द्", "other", "श्विन्द्", "", "", "", "be white"]) + let v = native_list_append(v, ["वन्द्", "other", "वन्द्", "", "", "", "to celebrate"]) + let v = native_list_append(v, ["भन्द्", "other", "भन्द्", "", "", "", "to be bright"]) + let v = native_list_append(v, ["मन्द्", "other", "मन्द्", "", "", "", "to rejoice be"]) + let v = native_list_append(v, ["स्पन्द्", "other", "स्पन्द्", "", "", "", "to quiver throb"]) + let v = native_list_append(v, ["क्लिन्द्", "other", "क्लिन्द्", "", "", "", "to lament"]) + let v = native_list_append(v, ["मुद्", "other", "मुद्", "", "", "", "to rejoice be"]) + let v = native_list_append(v, ["दद्", "other", "दद्", "", "", "", ""]) + let v = native_list_append(v, ["स्वद्", "other", "स्वद्", "", "", "", "to be sweet"]) + let v = native_list_append(v, ["स्वर्द्", "other", "स्वर्द्", "", "", "", "to taste relish."]) + let v = native_list_append(v, ["ऊर्द्", "other", "ऊर्द्", "", "", "", "to measure L."]) + let v = native_list_append(v, ["क्लन्द्", "other", "क्लन्द्", "", "", "", "to be confused"]) + let v = native_list_append(v, ["रुध्", "other", "रुध्", "", "", "", "to obstruct stop"]) + let v = native_list_append(v, ["क्षण्", "other", "क्षण्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["चित्", "other", "चित्", "", "", "", "to perceive fix"]) + let v = native_list_append(v, ["उपसंगम्", "other", "उपसंगम्", "", "", "", "to approach together"]) + let v = native_list_append(v, ["परा-", "other", "परा-", "", "", "", "denotes the opposite"]) + let v = native_list_append(v, ["हुर्छ्", "other", "हुर्छ्", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ह्वृ", "other", "ह्वृ", "", "", "", "to deviate be"]) + let v = native_list_append(v, ["स्वृ", "other", "स्वृ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["पश्य्", "other", "पश्य्", "", "", "", "Suppletive root of"]) + let v = native_list_append(v, ["𑆒", "other", "𑆒", "", "", "", "the second consonant"]) + let v = native_list_append(v, ["𑆓", "other", "𑆓", "", "", "", "the third consonant"]) + let v = native_list_append(v, ["𑆔", "other", "𑆔", "", "", "", "the fourth consonant"]) + let v = native_list_append(v, ["𑆕", "other", "𑆕", "", "", "", "the fifth consonant"]) + let v = native_list_append(v, ["उष्", "other", "उष्", "", "", "", "to burn burn"]) + let v = native_list_append(v, ["सस्", "other", "सस्", "", "", "", "to sleep"]) + let v = native_list_append(v, ["दुह्", "other", "दुह्", "", "", "", "to milk milk"]) + let v = native_list_append(v, ["लिह्", "other", "लिह्", "", "", "", "to lick taste"]) + let v = native_list_append(v, ["सू", "other", "सू", "", "", "", "to beget procreate"]) + let v = native_list_append(v, ["पुंस्", "other", "पुंस्", "", "", "", "to crush grind"]) + let v = native_list_append(v, ["म्ना", "other", "म्ना", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["वृत्", "other", "वृत्", "", "", "", "to turn to"]) + let v = native_list_append(v, ["मृ", "other", "मृ", "", "", "", "to die"]) + let v = native_list_append(v, ["परिवृत्", "other", "परिवृत्", "", "", "", "to turn around"]) + let v = native_list_append(v, ["अभिज्ञा", "other", "अभिज्ञा", "", "", "", "to recognise perceive"]) + let v = native_list_append(v, ["दम्", "other", "दम्", "", "", "", "to tame to"]) + let v = native_list_append(v, ["युज्", "other", "युज्", "", "", "", "to yoke or"]) + let v = native_list_append(v, ["भस्", "other", "भस्", "", "", "", "to chew to"]) + let v = native_list_append(v, ["यज्", "other", "यज्", "", "", "", "to worship to"]) + let v = native_list_append(v, ["जू", "other", "जू", "", "", "", "to press forwards"]) + let v = native_list_append(v, ["वी", "other", "वी", "", "", "", "to go move"]) + let v = native_list_append(v, ["प्सा", "other", "प्सा", "", "", "", "to chew swallow"]) + let v = native_list_append(v, ["राध्", "other", "राध्", "", "", "", "to succeed accomplish"]) + let v = native_list_append(v, ["तम्", "other", "तम्", "", "", "", "to gasp choke"]) + let v = native_list_append(v, ["पञ्च", "other", "पञ्च", "", "", "", "five"]) + let v = native_list_append(v, ["จตุรฺ", "other", "จตุรฺ", "", "", "", "Thai script form"]) + let v = native_list_append(v, ["टङ्क्", "other", "टङ्क्", "", "", "", "to bind tie"]) + let v = native_list_append(v, ["-मन्", "other", "-मन्", "", "", "", "forms action nouns"]) + let v = native_list_append(v, ["-इत", "other", "-इत", "", "", "", "forms adjectives from"]) + let v = native_list_append(v, ["नि-", "other", "नि-", "", "", "", "prefix form of"]) + let v = native_list_append(v, ["जॄ", "other", "जॄ", "", "", "", "to make old"]) + let v = native_list_append(v, ["-अन्", "other", "-अन्", "", "", "", "forms agent nouns"]) + let v = native_list_append(v, ["-आनी", "other", "-आनी", "", "", "", "forms feminine agent"]) + let v = native_list_append(v, ["सु", "other", "सु", "", "", "", "to press out"]) + let v = native_list_append(v, ["𑀲𑀳𑀲𑁆𑀭", "other", "𑀲𑀳𑀲𑁆𑀭", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["निर्-", "other", "निर्-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सम्पद्", "other", "सम्पद्", "", "", "", "to fall or"]) + let v = native_list_append(v, ["गुह्", "other", "गुह्", "", "", "", "to cover conceal"]) + let v = native_list_append(v, ["नहि", "other", "नहि", "", "", "", "surely not by"]) + let v = native_list_append(v, ["आम्", "other", "आम्", "", "", "", "yes"]) + let v = native_list_append(v, ["प्रति-", "other", "प्रति-", "", "", "", "towards"]) + let v = native_list_append(v, ["निस्-", "other", "निस्-", "", "", "", "out forth away"]) + let v = native_list_append(v, ["-ईन", "other", "-ईन", "", "", "", "relating to belonging"]) + let v = native_list_append(v, ["-इन्", "other", "-इन्", "", "", "", "possessing showing possession"]) + let v = native_list_append(v, ["-ईण", "other", "-ईण", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["सं-", "other", "सं-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सम्", "other", "सम्", "", "", "", "to be agitated"]) + let v = native_list_append(v, ["सम्-", "other", "सम्-", "", "", "", "with together with"]) + let v = native_list_append(v, ["मस्", "other", "मस्", "", "", "", "to measure mete"]) + let v = native_list_append(v, ["पुनर्दर्शनाय", "other", "पुनर्दर्शनाय", "", "", "", "bye au revoir"]) + let v = native_list_append(v, ["आजि", "other", "आजि", "", "", "", "to conquer to"]) + let v = native_list_append(v, ["षण्णवति", "other", "षण्णवति", "", "", "", "ninety-six"]) + let v = native_list_append(v, ["निष्-", "other", "निष्-", "", "", "", "combining form of"]) + let v = native_list_append(v, ["फल्", "other", "फल्", "", "", "", "to burst cleave"]) + let v = native_list_append(v, ["दह्", "other", "दह्", "", "", "", "to burn consume"]) + let v = native_list_append(v, ["समि", "other", "समि", "", "", "", "to go or"]) + let v = native_list_append(v, ["अञ्च्", "other", "अञ्च्", "", "", "", "to bend curve"]) + let v = native_list_append(v, ["संदिह्", "other", "संदिह्", "", "", "", "to smear besmear"]) + let v = native_list_append(v, ["शं", "other", "शं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["शम्", "other", "शम्", "", "", "", "to become tired"]) + let v = native_list_append(v, ["दिह्", "other", "दिह्", "", "", "", "to anoint smear"]) + let v = native_list_append(v, ["प्रेष्", "other", "प्रेष्", "", "", "", "to go move"]) + let v = native_list_append(v, ["मूर्छ्", "other", "मूर्छ्", "", "", "", "to become solid"]) + let v = native_list_append(v, ["मुर्छ्", "other", "मुर्छ्", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["मूर्च्छ्", "other", "मूर्च्छ्", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["केल्", "other", "केल्", "", "", "", "to shake tremble"]) + let v = native_list_append(v, ["रिफ्", "other", "रिफ्", "", "", "", "to snarl"]) + let v = native_list_append(v, ["व्यायम्", "other", "व्यायम्", "", "", "", "to pull or"]) + let v = native_list_append(v, ["आयम्", "other", "आयम्", "", "", "", "to stretch lengthen"]) + let v = native_list_append(v, ["पराशॄ", "other", "पराशॄ", "", "", "", "to crush destroy"]) + let v = native_list_append(v, ["शॄ", "other", "शॄ", "", "", "", "to crush rend"]) + let v = native_list_append(v, ["संयुज्", "other", "संयुज्", "", "", "", "to bind fetter"]) + let v = native_list_append(v, ["अर्ह्", "other", "अर्ह्", "", "", "", "to deserve merit"]) + let v = native_list_append(v, ["समस्", "other", "समस्", "", "", "", "to throw or"]) + let v = native_list_append(v, ["हल्", "other", "हल्", "", "", "", "to plough make"]) + let v = native_list_append(v, ["कम्", "other", "कम्", "", "", "", "to wish desire"]) + let v = native_list_append(v, ["उद्गॄ", "other", "उद्गॄ", "", "", "", "to eject from"]) + let v = native_list_append(v, ["अर्ज्", "other", "अर्ज्", "", "", "", "to procure acquire"]) + let v = native_list_append(v, ["उपार्ज्", "other", "उपार्ज्", "", "", "", "to admit"]) + let v = native_list_append(v, ["यम्", "other", "यम्", "", "", "", "to sustain hold"]) + let v = native_list_append(v, ["अलंकृ", "other", "अलंकृ", "", "", "", "to decorate ornament"]) + let v = native_list_append(v, ["शप्", "other", "शप्", "", "", "", "to curse"]) + let v = native_list_append(v, ["-कारिन्", "other", "-कारिन्", "", "", "", "-er doing causing"]) + let v = native_list_append(v, ["खुद्", "other", "खुद्", "", "", "", "to sport wantonly"]) + let v = native_list_append(v, ["खिद्", "other", "खिद्", "", "", "", "to strike press"]) + let v = native_list_append(v, ["भर्त्स्", "other", "भर्त्स्", "", "", "", "to menace threaten"]) + let v = native_list_append(v, ["खेल्", "other", "खेल्", "", "", "", "to shake move"]) + let v = native_list_append(v, ["खिट्", "other", "खिट्", "", "", "", "to be terrified"]) + let v = native_list_append(v, ["आगा", "other", "आगा", "", "", "", "to come towards"]) + let v = native_list_append(v, ["आञ्छ्", "other", "आञ्छ्", "", "", "", "to stretch draw"]) + let v = native_list_append(v, ["लाञ्छ्", "other", "लाञ्छ्", "", "", "", "to mark distinguish"]) + let v = native_list_append(v, ["प्यै", "other", "प्यै", "", "", "", "to grow increase"]) + let v = native_list_append(v, ["प्याय्", "other", "प्याय्", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["पी", "other", "पी", "", "", "", "to swell overflow"]) + let v = native_list_append(v, ["श्वस्", "other", "श्वस्", "", "", "", "to blow hiss"]) + let v = native_list_append(v, ["आरिफ्", "other", "आरिफ्", "", "", "", "to snore"]) + let v = native_list_append(v, ["अवरिफ्", "other", "अवरिफ्", "", "", "", "to utter a"]) + let v = native_list_append(v, ["ज्युत्", "other", "ज्युत्", "", "", "", "to shine upon"]) + let v = native_list_append(v, ["द्युत्", "other", "द्युत्", "", "", "", "to shine glitter"]) + let v = native_list_append(v, ["हिक्क्", "other", "हिक्क्", "", "", "", "to hiccup"]) + let v = native_list_append(v, ["सञ्ज्", "other", "सञ्ज्", "", "", "", "to go move"]) + let v = native_list_append(v, ["तड्", "other", "तड्", "", "", "", "to beat strike"]) + let v = native_list_append(v, ["किट्", "other", "किट्", "", "", "", "to go approach"]) + let v = native_list_append(v, ["प्रतिमन्", "other", "प्रतिमन्", "", "", "", "to render back"]) + let v = native_list_append(v, ["यत्", "other", "यत्", "", "", "", "to place in"]) + let v = native_list_append(v, ["तल्", "other", "तल्", "", "", "", "to establish fix"]) + let v = native_list_append(v, ["कठ्", "other", "कठ्", "", "", "", "to live in"]) + let v = native_list_append(v, ["चम्", "other", "चम्", "", "", "", "to sip drink"]) + let v = native_list_append(v, ["त्रयस्", "other", "त्रयस्", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["चत्वारस्", "other", "चत्वारस्", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["-ति", "other", "-ति", "", "", "", "-ness"]) + let v = native_list_append(v, ["-नः", "other", "-नः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["-नस्", "other", "-नस्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["-न", "other", "-न", "", "", "", "-ed forms adjectives"]) + let v = native_list_append(v, ["भञ्ज्", "other", "भञ्ज्", "", "", "", "to break shatter"]) + let v = native_list_append(v, ["सज्ज्", "other", "सज्ज्", "", "", "", "to cling adhere"]) + let v = native_list_append(v, ["कम्प्", "other", "कम्प्", "", "", "", "to tremble shake"]) + let v = native_list_append(v, ["-अक", "other", "-अक", "", "", "", "forms adjectives with"]) + let v = native_list_append(v, ["उद्-", "other", "उद्-", "", "", "", "over above upwards"]) + let v = native_list_append(v, ["अ", "pron", "अ", "", "", "", "a pronominal base"]) + let v = native_list_append(v, ["इ", "pron", "इ", "", "", "", "base of the"]) + let v = native_list_append(v, ["क", "pron", "क", "", "", "", "interrogative pronoun who"]) + let v = native_list_append(v, ["त", "pron", "त", "", "", "", "combining form of"]) + let v = native_list_append(v, ["म", "pron", "म", "", "", "", "base of the"]) + let v = native_list_append(v, ["अहम्", "pron", "अहम्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["अस्मद्", "pron", "अस्मद्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["युष्मद्", "pron", "युष्मद्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तद्", "pron", "तद्", "", "", "", "it"]) + let v = native_list_append(v, ["कश्चिद्", "pron", "कश्चिद्", "", "", "", "masculine singular of"]) + let v = native_list_append(v, ["ये", "pron", "ये", "", "", "", "inflection of यद्"]) + let v = native_list_append(v, ["तक", "pron", "तक", "", "", "", "this this little"]) + let v = native_list_append(v, ["का", "pron", "का", "", "", "", "inflection of किम्"]) + let v = native_list_append(v, ["व", "pron", "व", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["स", "pron", "स", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["नौ", "pron", "नौ", "", "", "", "accusative/dative/genitive dual of"]) + let v = native_list_append(v, ["त्वम्", "pron", "त्वम्", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["कु", "pron", "कु", "", "", "", "a pronominal base"]) + let v = native_list_append(v, ["कतर", "pron", "कतर", "", "", "", "who which of"]) + let v = native_list_append(v, ["सीम्", "pron", "सीम्", "", "", "", "him her it"]) + let v = native_list_append(v, ["सा", "pron", "सा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["के", "pron", "के", "", "", "", "nominative plural masculine"]) + let v = native_list_append(v, ["यद्", "pron", "यद्", "", "", "", "who which what"]) + let v = native_list_append(v, ["මම", "pron", "මම", "", "", "", "Sinhala script form"]) + let v = native_list_append(v, ["आत्मन्", "pron", "आत्मन्", "", "", "", "a person in"]) + let v = native_list_append(v, ["किम्", "pron", "किम्", "", "", "", "what who interrogative"]) + let v = native_list_append(v, ["अयम्", "pron", "अयम्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["तत्", "pron", "तत्", "", "", "", "nominative/accusative singular of"]) + let v = native_list_append(v, ["యే", "pron", "యే", "", "", "", "Telugu script form"]) + let v = native_list_append(v, ["स्वयं", "pron", "स्वयं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["स्वयम्", "pron", "स्वयम्", "", "", "", "self ones self"]) + let v = native_list_append(v, ["अहं", "pron", "अहं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तस्मै", "pron", "तस्मै", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["एतां", "pron", "एतां", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सः", "pron", "सः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["आवाम्", "pron", "आवाम्", "", "", "", "nominative dual of"]) + let v = native_list_append(v, ["वयम्", "pron", "वयम्", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["युवाम्", "pron", "युवाम्", "", "", "", "you both nominative"]) + let v = native_list_append(v, ["यूयम्", "pron", "यूयम्", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["तौ", "pron", "तौ", "", "", "", "nominative dual of"]) + let v = native_list_append(v, ["ते", "pron", "ते", "", "", "", "dative/genitive singular of"]) + let v = native_list_append(v, ["तानि", "pron", "तानि", "", "", "", "nominative/accusative plural of"]) + let v = native_list_append(v, ["ताः", "pron", "ताः", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["अस्माकम्", "pron", "अस्माकम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["वो", "pron", "वो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["या", "pron", "या", "", "", "", "nominative singular feminine"]) + let v = native_list_append(v, ["मम", "pron", "मम", "", "", "", "my mine genitive"]) + let v = native_list_append(v, ["मा", "pron", "मा", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["एतद्", "pron", "एतद्", "", "", "", "this this here"]) + let v = native_list_append(v, ["कौ", "pron", "कौ", "", "", "", "nominative/accusative dual masculine"]) + let v = native_list_append(v, ["स्व", "pron", "स्व", "", "", "", "his/her own"]) + let v = native_list_append(v, ["कय", "pron", "कय", "", "", "", "everyone"]) + let v = native_list_append(v, ["मद्", "pron", "मद्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["त्व", "pron", "त्व", "", "", "", "base of the"]) + let v = native_list_append(v, ["अस्मान्", "pron", "अस्मान्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["नस्", "pron", "नस्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["अव", "pron", "अव", "", "", "", "this"]) + let v = native_list_append(v, ["मे", "pron", "मे", "", "", "", "dative/genitive singular of"]) + let v = native_list_append(v, ["इमा", "pron", "इमा", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["इदम्", "pron", "इदम्", "", "", "", "this something near"]) + let v = native_list_append(v, ["ता", "pron", "ता", "", "", "", "inflection of तद्"]) + let v = native_list_append(v, ["वस्", "pron", "वस्", "", "", "", "enclitic accusative/dative/genitive plural"]) + let v = native_list_append(v, ["कश्चन", "pron", "कश्चन", "", "", "", "anyone"]) + let v = native_list_append(v, ["यस्मिन्", "pron", "यस्मिन्", "", "", "", "locative singular masculine/neuter"]) + let v = native_list_append(v, ["भोस्", "pron", "भोस्", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["भवत्", "pron", "भवत्", "", "", "", "your honor your"]) + let v = native_list_append(v, ["यासु", "pron", "यासु", "", "", "", "locative plural feminine"]) + let v = native_list_append(v, ["कः", "pron", "कः", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["काश्चन", "pron", "काश्चन", "", "", "", "anyone"]) + let v = native_list_append(v, ["भवती", "pron", "भवती", "", "", "", "your ladyship your"]) + let v = native_list_append(v, ["मदीय", "pron", "मदीय", "", "", "", "mine my my"]) + let v = native_list_append(v, ["भवान्", "pron", "भवान्", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["मया", "pron", "मया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["मयि", "pron", "मयि", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["आवाभ्याम्", "pron", "आवाभ्याम्", "", "", "", "instrumental/dative/ablative dual of"]) + let v = native_list_append(v, ["आवयोः", "pron", "आवयोः", "", "", "", "genitive/locative dual of"]) + let v = native_list_append(v, ["अस्माभिः", "pron", "अस्माभिः", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["ततस्", "pron", "ततस्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["एषः", "pron", "एषः", "", "", "", "nominative singular of"]) + let v = native_list_append(v, ["एष", "pron", "एष", "", "", "", "nominative masculine singular"]) + let v = native_list_append(v, ["एते", "pron", "एते", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["एताः", "pron", "एताः", "", "", "", "nominative/accusative feminine plural"]) + let v = native_list_append(v, ["तव", "pron", "तव", "", "", "", "your yours genitive"]) + let v = native_list_append(v, ["माम्", "pron", "माम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["मह्यम्", "pron", "मह्यम्", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["तस्मिन्", "pron", "तस्मिन्", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["तेभ्यः", "pron", "तेभ्यः", "", "", "", "from them ablative"]) + let v = native_list_append(v, ["तेषां", "pron", "तेषां", "", "", "", "combining form of"]) + let v = native_list_append(v, ["तेषाम्", "pron", "तेषाम्", "", "", "", "their genitive plural"]) + let v = native_list_append(v, ["तेषु", "pron", "तेषु", "", "", "", "in them locative"]) + let v = native_list_append(v, ["तस्य", "pron", "तस्य", "", "", "", "his genitive singular"]) + let v = native_list_append(v, ["त्वं", "pron", "त्वं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["युष्मान्", "pron", "युष्मान्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["त्वाम्", "pron", "त्वाम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["त्वया", "pron", "त्वया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["त्वयि", "pron", "त्वयि", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["युवयोः", "pron", "युवयोः", "", "", "", "genitive dual of"]) + let v = native_list_append(v, ["युवाभ्याम्", "pron", "युवाभ्याम्", "", "", "", "instrumental/dative/ablative dual of"]) + let v = native_list_append(v, ["त्वे", "pron", "त्वे", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["එතද්", "pron", "එතද්", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["अस्मिन्", "pron", "अस्मिन्", "", "", "", "masculine/neuter locative singular"]) + let v = native_list_append(v, ["तम्", "pron", "तम्", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["त्मन्", "pron", "त्मन्", "", "", "", "a person in"]) + let v = native_list_append(v, ["យទ៑", "pron", "យទ៑", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["យេ", "pron", "យេ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["तस्मा", "pron", "तस्मा", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["अनेन", "pron", "अनेन", "", "", "", "masculine/neuter instrumental singular"]) + let v = native_list_append(v, ["नो", "pron", "नो", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["कम्", "pron", "कम्", "", "", "", "accusative masculine singular"]) + let v = native_list_append(v, ["यम्", "pron", "यम्", "", "", "", "accusative singular masculine"]) + let v = native_list_append(v, ["यत्", "pron", "यत्", "", "", "", "nominative/accusative singular neuter"]) + let v = native_list_append(v, ["अदस्", "pron", "अदस्", "", "", "", "that a certain"]) + let v = native_list_append(v, ["काः", "pron", "काः", "", "", "", "nominative/accusative plural feminine"]) + let v = native_list_append(v, ["एन", "pron", "एन", "", "", "", "anaphoric pronoun him"]) + let v = native_list_append(v, ["येन", "pron", "येन", "", "", "", "instrumental singular masculine/neuter"]) + let v = native_list_append(v, ["अस्मभ्यम्", "pron", "अस्मभ्यम्", "", "", "", "for/to us dative"]) + let v = native_list_append(v, ["मत्", "pron", "मत्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["अस्मत्", "pron", "अस्मत्", "", "", "", "from us ablative"]) + let v = native_list_append(v, ["अस्मासु", "pron", "अस्मासु", "", "", "", "in us locative"]) + let v = native_list_append(v, ["अस्य", "pron", "अस्य", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["इयम्", "pron", "इयम्", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["असौ", "pron", "असौ", "", "", "", "inflection of अदस्"]) + let v = native_list_append(v, ["अस्मे", "pron", "अस्मे", "", "", "", "locative/dative/genitive plural of"]) + let v = native_list_append(v, ["त्यद्", "pron", "त्यद्", "", "", "", "that"]) + let v = native_list_append(v, ["स्य", "pron", "स्य", "", "", "", "that"]) + let v = native_list_append(v, ["वः", "pron", "वः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["एतत्", "pron", "एतत्", "", "", "", "nominative neuter singular"]) + let v = native_list_append(v, ["एषा", "pron", "एषा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["एतानि", "pron", "एतानि", "", "", "", "nominative/accusative neuter plural"]) + let v = native_list_append(v, ["नकिस्", "pron", "नकिस्", "", "", "", "nobody no-one"]) + let v = native_list_append(v, ["माकिस्", "pron", "माकिस्", "", "", "", "nobody no-one"]) + let v = native_list_append(v, ["මෙ", "pron", "මෙ", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["අහම්", "pron", "අහම්", "", "", "", "I"]) + let v = native_list_append(v, ["वाम्", "pron", "वाम्", "", "", "", "enclitic accusative/dative/genitive dual"]) + let v = native_list_append(v, ["त्वा", "pron", "त्वा", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["त्वत्", "pron", "त्वत्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["तुभ्यम्", "pron", "तुभ्यम्", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["युष्माभिः", "pron", "युष्माभिः", "", "", "", "instrumental plural of"]) + let v = native_list_append(v, ["युष्मभ्यम्", "pron", "युष्मभ्यम्", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["युष्मत्", "pron", "युष्मत्", "", "", "", "ablative plural of"]) + let v = native_list_append(v, ["युष्मासु", "pron", "युष्मासु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["युष्माकम्", "pron", "युष्माकम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["इमे", "pron", "इमे", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["ताम्", "pron", "ताम्", "", "", "", "her accusative singular"]) + let v = native_list_append(v, ["तस्यै", "pron", "तस्यै", "", "", "", "to her for"]) + let v = native_list_append(v, ["तया", "pron", "तया", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["तस्याम्", "pron", "तस्याम्", "", "", "", "locative singular of"]) + let v = native_list_append(v, ["तस्या", "pron", "तस्या", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["तस्मात्", "pron", "तस्मात्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["तेन", "pron", "तेन", "", "", "", "instrumental singular of"]) + let v = native_list_append(v, ["तान्", "pron", "तान्", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["ताभ्याम्", "pron", "ताभ्याम्", "", "", "", "instrumental/dative/ablative dual of"]) + let v = native_list_append(v, ["तासाम्", "pron", "तासाम्", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["तासु", "pron", "तासु", "", "", "", "locative plural of"]) + let v = native_list_append(v, ["किंचिद्", "pron", "किंचिद्", "", "", "", "anything see किम्"]) + let v = native_list_append(v, ["आव", "pron", "आव", "", "", "", "base of the"]) + let v = native_list_append(v, ["कस्य", "pron", "कस्य", "", "", "", "inflection of किम्"]) + let v = native_list_append(v, ["కిన్తు", "pron", "కిన్తు", "", "", "", ""]) + let v = native_list_append(v, ["त्वत्तस्", "pron", "त्वत्तस्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["अन्यतर", "pron", "अन्यतर", "", "", "", "a certain one"]) + let v = native_list_append(v, ["यः", "pron", "यः", "", "", "", "nominative singular masculine"]) + let v = native_list_append(v, ["यौ", "pron", "यौ", "", "", "", "nominative/accusative dual masculine"]) + let v = native_list_append(v, ["याम्", "pron", "याम्", "", "", "", "accusative singular feminine"]) + let v = native_list_append(v, ["यानि", "pron", "यानि", "", "", "", "nominative/accusative plural neuter"]) + let v = native_list_append(v, ["यान्", "pron", "यान्", "", "", "", "accusative plural masculine"]) + let v = native_list_append(v, ["यया", "pron", "यया", "", "", "", "instrumental singular feminine"]) + let v = native_list_append(v, ["येषाम्", "pron", "येषाम्", "", "", "", "genitive plural masculine/neuter"]) + let v = native_list_append(v, ["याः", "pron", "याः", "", "", "", "nominative/accusative plural feminine"]) + let v = native_list_append(v, ["येषु", "pron", "येषु", "", "", "", "locative plural masculine/neuter"]) + let v = native_list_append(v, ["यस्मै", "pron", "यस्मै", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["यस्यै", "pron", "यस्यै", "", "", "", "dative singular feminine"]) + let v = native_list_append(v, ["यैः", "pron", "यैः", "", "", "", "instrumental plural masculine/neuter"]) + let v = native_list_append(v, ["येभिः", "pron", "येभिः", "", "", "", "instrumental plural masculine/neuter"]) + let v = native_list_append(v, ["यस्मात्", "pron", "यस्मात्", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["यस्याः", "pron", "यस्याः", "", "", "", "ablative/genitive singular feminine"]) + let v = native_list_append(v, ["यस्य", "pron", "यस्य", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["यासाम्", "pron", "यासाम्", "", "", "", "genitive plural feminine"]) + let v = native_list_append(v, ["याभ्याम्", "pron", "याभ्याम्", "", "", "", "instrumental/dative/ablative dual masculine/feminine/neuter"]) + let v = native_list_append(v, ["यस्याम्", "pron", "यस्याम्", "", "", "", "locative singular feminine"]) + let v = native_list_append(v, ["याभिः", "pron", "याभिः", "", "", "", "instrumental plural feminine"]) + let v = native_list_append(v, ["याभ्यः", "pron", "याभ्यः", "", "", "", "dative/ablative plural feminine"]) + let v = native_list_append(v, ["येभ्यः", "pron", "येभ्यः", "", "", "", "dative/ablative plural masculine/neuter"]) + let v = native_list_append(v, ["ययोः", "pron", "ययोः", "", "", "", "genitive/locative dual masculine/feminine/neuter"]) + let v = native_list_append(v, ["युवम्", "pron", "युवम्", "", "", "", "nominative dual of"]) + let v = native_list_append(v, ["आवम्", "pron", "आवम्", "", "", "", "nominative dual of"]) + let v = native_list_append(v, ["कस्मात्", "pron", "कस्मात्", "", "", "", "ablative singular masculine/neuter"]) + let v = native_list_append(v, ["कतम", "pron", "कतम", "", "", "", "who which of"]) + let v = native_list_append(v, ["यतर", "pron", "यतर", "", "", "", "who or which"]) + let v = native_list_append(v, ["यतम", "pron", "यतम", "", "", "", "who or which"]) + let v = native_list_append(v, ["अस्मै", "pron", "अस्मै", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["अस्मात्", "pron", "अस्मात्", "", "", "", "masculine/neuter ablative singular"]) + let v = native_list_append(v, ["अस्याम्", "pron", "अस्याम्", "", "", "", "feminine locative singular"]) + let v = native_list_append(v, ["अस्याः", "pron", "अस्याः", "", "", "", "feminine ablative/genitive singular"]) + let v = native_list_append(v, ["अस्यै", "pron", "अस्यै", "", "", "", "feminine dative singular"]) + let v = native_list_append(v, ["इमाम्", "pron", "इमाम्", "", "", "", "feminine accusative singular"]) + let v = native_list_append(v, ["इमान्", "pron", "इमान्", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["इमानि", "pron", "इमानि", "", "", "", "neuter nominative/accusative plural"]) + let v = native_list_append(v, ["इमौ", "pron", "इमौ", "", "", "", "masculine nominative/accusative dual"]) + let v = native_list_append(v, ["इमस्य", "pron", "इमस्य", "", "", "", "masculine/neuter genitive singular"]) + let v = native_list_append(v, ["इमम्", "pron", "इमम्", "", "", "", "masculine accusative singular"]) + let v = native_list_append(v, ["अनया", "pron", "अनया", "", "", "", "feminine instrumental singular"]) + let v = native_list_append(v, ["एषु", "pron", "एषु", "", "", "", "masculine/neuter locative plural"]) + let v = native_list_append(v, ["एषाम्", "pron", "एषाम्", "", "", "", "masculine/neuter genitive plural"]) + let v = native_list_append(v, ["आसाम्", "pron", "आसाम्", "", "", "", "feminine genitive plural"]) + let v = native_list_append(v, ["आसु", "pron", "आसु", "", "", "", "feminine locative plural"]) + let v = native_list_append(v, ["इमाः", "pron", "इमाः", "", "", "", "feminine nominative/accusative plural"]) + let v = native_list_append(v, ["एभिः", "pron", "एभिः", "", "", "", "masculine/neuter instrumental plural"]) + let v = native_list_append(v, ["एभ्यः", "pron", "एभ्यः", "", "", "", "masculine/neuter dative/ablative plural"]) + let v = native_list_append(v, ["आभ्याम्", "pron", "आभ्याम्", "", "", "", "masculine/feminine/neuter instrumental/dative/ablative dual"]) + let v = native_list_append(v, ["अनयोः", "pron", "अनयोः", "", "", "", "masculine/feminine/neuter genitive/locative dual"]) + let v = native_list_append(v, ["आभिः", "pron", "आभिः", "", "", "", "feminine instrumental plural"]) + let v = native_list_append(v, ["आभ्यः", "pron", "आभ्यः", "", "", "", "feminine dative/ablative plural"]) + let v = native_list_append(v, ["आवत्", "pron", "आवत्", "", "", "", "ablative dual of"]) + let v = native_list_append(v, ["मत्तस्", "pron", "मत्तस्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["युवत्", "pron", "युवत्", "", "", "", "ablative dual of"]) + let v = native_list_append(v, ["युष्मे", "pron", "युष्मे", "", "", "", "locative/dative/genitive plural of"]) + let v = native_list_append(v, ["युवभ्याम्", "pron", "युवभ्याम्", "", "", "", "dative dual of"]) + let v = native_list_append(v, ["युवोः", "pron", "युवोः", "", "", "", "genitive dual of"]) + let v = native_list_append(v, ["युव", "pron", "युव", "", "", "", "base of the"]) + let v = native_list_append(v, ["युष्म", "pron", "युष्म", "", "", "", "base of the"]) + let v = native_list_append(v, ["त्वद्", "pron", "त्वद्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["अस्म", "pron", "अस्म", "", "", "", "base of the"]) + let v = native_list_append(v, ["एता", "pron", "एता", "", "", "", "inflection of ए॒तद्"]) + let v = native_list_append(v, ["आ", "adv", "आ", "", "", "", "separated form of"]) + let v = native_list_append(v, ["तर्हि", "adv", "तर्हि", "", "", "", "then"]) + let v = native_list_append(v, ["तद्", "adv", "तद्", "", "", "", "there in that"]) + let v = native_list_append(v, ["अपि", "adv", "अपि", "", "", "", "and also moreover"]) + let v = native_list_append(v, ["व", "adv", "व", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["आदर", "adv", "आदर", "", "", "", "respectfully"]) + let v = native_list_append(v, ["इव", "adv", "इव", "", "", "", "like in the"]) + let v = native_list_append(v, ["बहु", "adv", "बहु", "", "", "", "much very very"]) + let v = native_list_append(v, ["ह्यस्", "adv", "ह्यस्", "", "", "", "yesterday"]) + let v = native_list_append(v, ["लघु", "adv", "लघु", "", "", "", "lightly quickly easily"]) + let v = native_list_append(v, ["वि", "adv", "वि", "", "", "", "apart"]) + let v = native_list_append(v, ["बृहत्", "adv", "बृहत्", "", "", "", "greatly much highly"]) + let v = native_list_append(v, ["अक्तु", "adv", "अक्तु", "", "", "", "at night by"]) + let v = native_list_append(v, ["अकाले", "adv", "अकाले", "", "", "", "unseasonably"]) + let v = native_list_append(v, ["अकारणे", "adv", "अकारणे", "", "", "", "causelessly"]) + let v = native_list_append(v, ["अकारणेन", "adv", "अकारणेन", "", "", "", "causelessly"]) + let v = native_list_append(v, ["अकारणम्", "adv", "अकारणम्", "", "", "", "causelessly"]) + let v = native_list_append(v, ["अकारणात्", "adv", "अकारणात्", "", "", "", "causelessly"]) + let v = native_list_append(v, ["अकालतस्", "adv", "अकालतस्", "", "", "", "unseasonably"]) + let v = native_list_append(v, ["अक्तोस्", "adv", "अक्तोस्", "", "", "", "at night"]) + let v = native_list_append(v, ["अक्तुभिस्", "adv", "अक्तुभिस्", "", "", "", "at night"]) + let v = native_list_append(v, ["अखिलेन", "adv", "अखिलेन", "", "", "", "completely"]) + let v = native_list_append(v, ["आशु", "adv", "आशु", "", "", "", "quickly quick swiftly"]) + let v = native_list_append(v, ["मुहुर्", "adv", "मुहुर्", "", "", "", "suddenly at once"]) + let v = native_list_append(v, ["मुहु", "adv", "मुहु", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["प्रथमम्", "adv", "प्रथमम्", "", "", "", "firstly at first"]) + let v = native_list_append(v, ["प्रकटम्", "adv", "प्रकटम्", "", "", "", "evidently clearly visibly"]) + let v = native_list_append(v, ["सकृत्", "adv", "सकृत्", "", "", "", "once one time"]) + let v = native_list_append(v, ["साधु", "adv", "साधु", "", "", "", "straight aright regularly"]) + let v = native_list_append(v, ["सहित", "adv", "सहित", "", "", "", "near close by"]) + let v = native_list_append(v, ["एवम्", "adv", "एवम्", "", "", "", "so thus in"]) + let v = native_list_append(v, ["आविस्", "adv", "आविस्", "", "", "", "before the eyes"]) + let v = native_list_append(v, ["पुरु", "adv", "पुरु", "", "", "", "much often very"]) + let v = native_list_append(v, ["तूष्णीम्", "adv", "तूष्णीम्", "", "", "", "silently quietly RV."]) + let v = native_list_append(v, ["उप", "adv", "उप", "", "", "", "therefore moreover RV."]) + let v = native_list_append(v, ["यथोपदेशम्", "adv", "यथोपदेशम्", "", "", "", "according to advice"]) + let v = native_list_append(v, ["तदा", "adv", "तदा", "", "", "", "then"]) + let v = native_list_append(v, ["यदा", "adv", "यदा", "", "", "", "when"]) + let v = native_list_append(v, ["शनैस्", "adv", "शनैस्", "", "", "", "quietly softly gently"]) + let v = native_list_append(v, ["किम्", "adv", "किम्", "", "", "", "used as a"]) + let v = native_list_append(v, ["कदाचित्", "adv", "कदाचित्", "", "", "", "at some time"]) + let v = native_list_append(v, ["परि", "adv", "परि", "", "", "", "around round about"]) + let v = native_list_append(v, ["यथा", "adv", "यथा", "", "", "", "in which manner"]) + let v = native_list_append(v, ["अतीव", "adv", "अतीव", "", "", "", "exceedingly very"]) + let v = native_list_append(v, ["अत्र", "adv", "अत्र", "", "", "", "here in this"]) + let v = native_list_append(v, ["सदा", "adv", "सदा", "", "", "", "always ever perpetually"]) + let v = native_list_append(v, ["सदैव", "adv", "सदैव", "", "", "", "always"]) + let v = native_list_append(v, ["तथा", "adv", "तथा", "", "", "", "in such a"]) + let v = native_list_append(v, ["कृपया", "adv", "कृपया", "", "", "", "by mercy mercifully"]) + let v = native_list_append(v, ["केवल", "adv", "केवल", "", "", "", "entirely wholly absolutely"]) + let v = native_list_append(v, ["किन्तु", "adv", "किन्तु", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["अमा", "adv", "अमा", "", "", "", "at home in"]) + let v = native_list_append(v, ["अन्ति", "adv", "अन्ति", "", "", "", "near before in"]) + let v = native_list_append(v, ["कथा", "adv", "कथा", "", "", "", "how whence why?"]) + let v = native_list_append(v, ["प्रति", "adv", "प्रति", "", "", "", "towards near approach"]) + let v = native_list_append(v, ["इह", "adv", "इह", "", "", "", "here in this"]) + let v = native_list_append(v, ["स्वस्ति", "adv", "स्वस्ति", "", "", "", "well"]) + let v = native_list_append(v, ["सर्वकालम्", "adv", "सर्वकालम्", "", "", "", "forever eternally always"]) + let v = native_list_append(v, ["वाचा", "adv", "वाचा", "", "", "", "verbally"]) + let v = native_list_append(v, ["सत्कृत्य", "adv", "सत्कृत्य", "", "", "", "having treated with"]) + let v = native_list_append(v, ["उच्चैः", "adv", "उच्चैः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["उच्चैस्", "adv", "उच्चैस्", "", "", "", "high above aloft"]) + let v = native_list_append(v, ["अधस्", "adv", "अधस्", "", "", "", "below down under"]) + let v = native_list_append(v, ["नाना", "adv", "नाना", "", "", "", "differently variously separately"]) + let v = native_list_append(v, ["एवं", "adv", "एवं", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["तावत्", "adv", "तावत्", "", "", "", "so great so"]) + let v = native_list_append(v, ["एतद्", "adv", "एतद्", "", "", "", "in this manner"]) + let v = native_list_append(v, ["अद्य", "adv", "अद्य", "", "", "", "today"]) + let v = native_list_append(v, ["क्षमा", "adv", "क्षमा", "", "", "", "on the earth"]) + let v = native_list_append(v, ["अन्यथा", "adv", "अन्यथा", "", "", "", "otherwise"]) + let v = native_list_append(v, ["निस्", "adv", "निस्", "", "", "", "out forth away"]) + let v = native_list_append(v, ["कर्मणा", "adv", "कर्मणा", "", "", "", "by ones action"]) + let v = native_list_append(v, ["पश्चात्", "adv", "पश्चात्", "", "", "", "from behind in"]) + let v = native_list_append(v, ["ਇਹ", "adv", "ਇਹ", "", "", "", "Gurmukhi script form"]) + let v = native_list_append(v, ["सर्वत्र", "adv", "सर्वत्र", "", "", "", "everywhere"]) + let v = native_list_append(v, ["अम्नस्", "adv", "अम्नस्", "", "", "", "unawares by surprise"]) + let v = native_list_append(v, ["सामि", "adv", "सामि", "", "", "", "half"]) + let v = native_list_append(v, ["अर्थात्", "adv", "अर्थात्", "", "", "", "that is to"]) + let v = native_list_append(v, ["कुत्र", "adv", "कुत्र", "", "", "", "where whereto"]) + let v = native_list_append(v, ["नु", "adv", "नु", "", "", "", "now"]) + let v = native_list_append(v, ["परुत्", "adv", "परुत्", "", "", "", "last year"]) + let v = native_list_append(v, ["ईषत्", "adv", "ईषत्", "", "", "", "little a little"]) + let v = native_list_append(v, ["तत", "adv", "तत", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सचा", "adv", "सचा", "", "", "", "near along together"]) + let v = native_list_append(v, ["स्मत्", "adv", "स्मत्", "", "", "", "together"]) + let v = native_list_append(v, ["मक्षू", "adv", "मक्षू", "", "", "", "rapidly quickly speedily"]) + let v = native_list_append(v, ["ऋजु", "adv", "ऋजु", "", "", "", "correctly in a"]) + let v = native_list_append(v, ["श्रेयस्", "adv", "श्रेयस्", "", "", "", "better rather"]) + let v = native_list_append(v, ["अव", "adv", "अव", "", "", "", "off away"]) + let v = native_list_append(v, ["अर्धपथे", "adv", "अर्धपथे", "", "", "", "halfway midway"]) + let v = native_list_append(v, ["अति", "adv", "अति", "", "", "", "over-"]) + let v = native_list_append(v, ["एव", "adv", "एव", "", "", "", "Vedic form of"]) + let v = native_list_append(v, ["कदा", "adv", "कदा", "", "", "", "when at what"]) + let v = native_list_append(v, ["तत्र", "adv", "तत्र", "", "", "", "there at that"]) + let v = native_list_append(v, ["इदम्", "adv", "इदम्", "", "", "", "here"]) + let v = native_list_append(v, ["दृश्य", "adv", "दृश्य", "", "", "", "having seen"]) + let v = native_list_append(v, ["अमवत्", "adv", "अमवत्", "", "", "", "impetuously"]) + let v = native_list_append(v, ["पुनर्", "adv", "पुनर्", "", "", "", "back to home"]) + let v = native_list_append(v, ["तत्क्षण", "adv", "तत्क्षण", "", "", "", "immediately instantaneously at"]) + let v = native_list_append(v, ["अनु", "adv", "अनु", "", "", "", "after afterwards thereupon"]) + let v = native_list_append(v, ["एकत्र", "adv", "एकत्र", "", "", "", "in one place"]) + let v = native_list_append(v, ["कू", "adv", "कू", "", "", "", "where?"]) + let v = native_list_append(v, ["अकस्मात्", "adv", "अकस्मात्", "", "", "", "without apparent cause"]) + let v = native_list_append(v, ["स्यात्", "adv", "स्यात्", "", "", "", "maybe perhaps possibly"]) + let v = native_list_append(v, ["मिथस्", "adv", "मिथस्", "", "", "", "mutually reciprocally"]) + let v = native_list_append(v, ["सर्वथा", "adv", "सर्वथा", "", "", "", "in every way"]) + let v = native_list_append(v, ["सनुतर्", "adv", "सनुतर्", "", "", "", "away aside off"]) + let v = native_list_append(v, ["भावगम्भीरम्", "adv", "भावगम्भीरम्", "", "", "", "deeply"]) + let v = native_list_append(v, ["तावत्क", "adv", "तावत्क", "", "", "", "bought for so"]) + let v = native_list_append(v, ["कुत्रापि", "adv", "कुत्रापि", "", "", "", "somewhere"]) + let v = native_list_append(v, ["तत्रैव", "adv", "तत्रैव", "", "", "", "there itself"]) + let v = native_list_append(v, ["पुरस्", "adv", "पुरस्", "", "", "", "in front"]) + let v = native_list_append(v, ["द्विस्", "adv", "द्विस्", "", "", "", "twice"]) + let v = native_list_append(v, ["त्रिस्", "adv", "त्रिस्", "", "", "", "thrice"]) + let v = native_list_append(v, ["ततस्", "adv", "ततस्", "", "", "", "therefore"]) + let v = native_list_append(v, ["रभसा", "adv", "रभसा", "", "", "", "violently impetuously forcibly"]) + let v = native_list_append(v, ["पुरतो", "adv", "पुरतो", "", "", "", "combining form of"]) + let v = native_list_append(v, ["कुह", "adv", "कुह", "", "", "", "where interrogative"]) + let v = native_list_append(v, ["इहेह", "adv", "इहेह", "", "", "", "here and there"]) + let v = native_list_append(v, ["समह", "adv", "समह", "", "", "", "somehow anyhow in"]) + let v = native_list_append(v, ["និត្យ", "adv", "និត្យ", "", "", "", "Khmer script form"]) + let v = native_list_append(v, ["अहरहर्", "adv", "अहरहर्", "", "", "", "each day daily"]) + let v = native_list_append(v, ["उच्चा", "adv", "उच्चा", "", "", "", "above upwards"]) + let v = native_list_append(v, ["यत्र", "adv", "यत्र", "", "", "", "wherever whither in"]) + let v = native_list_append(v, ["यत्रा", "adv", "यत्रा", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["कथम्", "adv", "कथम्", "", "", "", "how in what"]) + let v = native_list_append(v, ["तत्पश्चात्", "adv", "तत्पश्चात्", "", "", "", "after that"]) + let v = native_list_append(v, ["पश्चा", "adv", "पश्चा", "", "", "", "behind"]) + let v = native_list_append(v, ["कः पुनर्", "adv", "कः पुनर्", "", "", "", "who?"]) + let v = native_list_append(v, ["अद्यैव", "adv", "अद्यैव", "", "", "", "today itself this"]) + let v = native_list_append(v, ["बहिस्", "adv", "बहिस्", "", "", "", "out forth outwards"]) + let v = native_list_append(v, ["बहिष्", "adv", "बहिष्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["बहिर्", "adv", "बहिर्", "", "", "", "combining form of"]) + let v = native_list_append(v, ["अद्यापि", "adv", "अद्यापि", "", "", "", "even now just"]) + let v = native_list_append(v, ["बहिः", "adv", "बहिः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["निष्कारणम्", "adv", "निष्कारणम्", "", "", "", "causelessly without a"]) + let v = native_list_append(v, ["सायं", "adv", "सायं", "", "", "", "combining form of"]) + let v = native_list_append(v, ["सायम्", "adv", "सायम्", "", "", "", "in the evening"]) + let v = native_list_append(v, ["त्वरितरम्", "adv", "त्वरितरम्", "", "", "", "more quickly"]) + let v = native_list_append(v, ["शम्", "adv", "शम्", "", "", "", "auspiciously fortunately happily"]) + let v = native_list_append(v, ["हठेन", "adv", "हठेन", "", "", "", "by force or"]) + let v = native_list_append(v, ["अधुना", "adv", "अधुना", "", "", "", "at this time"]) + let v = native_list_append(v, ["सना", "adv", "सना", "", "", "", "from of old"]) + let v = native_list_append(v, ["अन्तर्जालेन", "adv", "अन्तर्जालेन", "", "", "", "through/via the Internet"]) + let v = native_list_append(v, ["अलम्", "adv", "अलम्", "", "", "", "enough sufficient adequate"]) + let v = native_list_append(v, ["समासेन", "adv", "समासेन", "", "", "", "collectively summarily"]) + let v = native_list_append(v, ["श्वस्", "adv", "श्वस्", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["इदानीम्", "adv", "इदानीम्", "", "", "", "at this moment"]) + let v = native_list_append(v, ["एतत्कालम्", "adv", "एतत्कालम्", "", "", "", "at this time"]) + let v = native_list_append(v, ["कालम्", "adv", "कालम्", "", "", "", "for a certain"]) + let v = native_list_append(v, ["साकम्", "adv", "साकम्", "", "", "", "together jointly"]) + let v = native_list_append(v, ["अदस्", "adv", "अदस्", "", "", "", "there then"]) + let v = native_list_append(v, ["कुशलेन", "adv", "कुशलेन", "", "", "", "in due order"]) + let v = native_list_append(v, ["दविष्ठम्", "adv", "दविष्ठम्", "", "", "", "very far away"]) + let v = native_list_append(v, ["अभितस्", "adv", "अभितस्", "", "", "", "on all sides"]) + let v = native_list_append(v, ["प्रातर्", "adv", "प्रातर्", "", "", "", "early in the"]) + let v = native_list_append(v, ["पुरा", "adv", "पुरा", "", "", "", "before formerly of"]) + let v = native_list_append(v, ["ज्योक्", "adv", "ज्योक्", "", "", "", "for a long"]) + let v = native_list_append(v, ["अप्रति", "adv", "अप्रति", "", "", "", "irresistibly"]) + let v = native_list_append(v, ["नोद्", "adv", "नोद्", "", "", "", "almost nearly"]) + let v = native_list_append(v, ["𑀅𑀥𑀼𑀦𑀸", "adv", "𑀅𑀥𑀼𑀦𑀸", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["अचिर", "adv", "अचिर", "", "", "", "fast quickly"]) + let v = native_list_append(v, ["𑀇𑀤𑀸𑀦𑀻𑀫𑁆", "adv", "𑀇𑀤𑀸𑀦𑀻𑀫𑁆", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["सार्धम्", "adv", "सार्धम्", "", "", "", "jointly together along"]) + let v = native_list_append(v, ["पुरतस्", "adv", "पुरतस्", "", "", "", "in front"]) + let v = native_list_append(v, ["परितः", "adv", "परितः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["परितस्", "adv", "परितस्", "", "", "", "round about around"]) + let v = native_list_append(v, ["अन्यत्र", "adv", "अन्यत्र", "", "", "", "elsewhere"]) + let v = native_list_append(v, ["यावत्", "adv", "यावत्", "", "", "", "until up to"]) + let v = native_list_append(v, ["प्रतिदिनम्", "adv", "प्रतिदिनम्", "", "", "", "day by day"]) + let v = native_list_append(v, ["किमर्थम्", "adv", "किमर्थम्", "", "", "", "why for what"]) + let v = native_list_append(v, ["किमर्थं", "adv", "किमर्थं", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["प्राङ्", "adv", "प्राङ्", "", "", "", "before"]) + let v = native_list_append(v, ["यात्", "adv", "यात्", "", "", "", "inasmuch as so"]) + let v = native_list_append(v, ["सुमत्", "adv", "सुमत्", "", "", "", "together"]) + let v = native_list_append(v, ["अर्थतस्", "adv", "अर्थतस्", "", "", "", "towards a particular"]) + let v = native_list_append(v, ["बहुशस्", "adv", "बहुशस्", "", "", "", "manifoldly repeatedly"]) + let v = native_list_append(v, ["सत्यम्", "adv", "सत्यम्", "", "", "", "truly indeed certainly"]) + let v = native_list_append(v, ["निरीक्षया", "adv", "निरीक्षया", "", "", "", "with regard to"]) + let v = native_list_append(v, ["प्रतीक्षम्", "adv", "प्रतीक्षम्", "", "", "", "having expected at"]) + let v = native_list_append(v, ["अत्यर्थम्", "adv", "अत्यर्थम्", "", "", "", "excessively exceedingly"]) + let v = native_list_append(v, ["अधस्तात्", "adv", "अधस्तात्", "", "", "", "below underneath"]) + let v = native_list_append(v, ["एकदा", "adv", "एकदा", "", "", "", "sometimes once one"]) + let v = native_list_append(v, ["एवम् एव", "adv", "एवम् एव", "", "", "", "just so"]) + let v = native_list_append(v, ["સાધુ", "adv", "સાધુ", "", "", "", "Gujarati script form"]) + let v = native_list_append(v, ["इतः", "adv", "इतः", "", "", "", "from here hence"]) + let v = native_list_append(v, ["तिरश्चा", "adv", "तिरश्चा", "", "", "", "crosswise through"]) + let v = native_list_append(v, ["काल्यम्", "adv", "काल्यम्", "", "", "", "at dawn at"]) + let v = native_list_append(v, ["झगति", "adv", "झगति", "", "", "", "Quickly at once"]) + let v = native_list_append(v, ["झटिति", "adv", "झटिति", "", "", "", "quickly at once"]) + let v = native_list_append(v, ["ऋधक्", "adv", "ऋधक्", "", "", "", "separately aside apart"]) + let v = native_list_append(v, ["वीच्या", "adv", "वीच्या", "", "", "", "among"]) + let v = native_list_append(v, ["परश्वस्", "adv", "परश्वस्", "", "", "", "the day after"]) + let v = native_list_append(v, ["शतधा", "adv", "शतधा", "", "", "", "in a hundred"]) + let v = native_list_append(v, ["परं तु", "adv", "परं तु", "", "", "", "though still not"]) + let v = native_list_append(v, ["අත්‍ර", "adv", "අත්‍ර", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["ඉහ", "adv", "ඉහ", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["कदाचन", "adv", "कदाचन", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["कदा चन", "adv", "कदा चन", "", "", "", "never at any"]) + let v = native_list_append(v, ["කදාචන", "adv", "කදාචන", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["යදා", "adv", "යදා", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["ඉව", "adv", "ඉව", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["आसक्ति", "adv", "आसक्ति", "", "", "", "uninterruptedly wholly throughout"]) + let v = native_list_append(v, ["अवस्", "adv", "अवस्", "", "", "", "downward"]) + let v = native_list_append(v, ["त्वर", "adv", "त्वर", "", "", "", "hastily"]) + let v = native_list_append(v, ["कुतस्", "adv", "कुतस्", "", "", "", "from whom?"]) + let v = native_list_append(v, ["वृथा", "adv", "वृथा", "", "", "", "at will at"]) + let v = native_list_append(v, ["कल्यम्", "adv", "कल्यम्", "", "", "", "at dawn at"]) + let v = native_list_append(v, ["किं तु", "adv", "किं तु", "", "", "", "still nevertheless"]) + let v = native_list_append(v, ["अग्रतस्", "adv", "अग्रतस्", "", "", "", "in front forward"]) + let v = native_list_append(v, ["देवत्रा", "adv", "देवत्रा", "", "", "", "among or to"]) + let v = native_list_append(v, ["द्विगुणम्", "adv", "द्विगुणम्", "", "", "", "doubly double"]) + let v = native_list_append(v, ["तदानीम्", "adv", "तदानीम्", "", "", "", "then at that"]) + let v = native_list_append(v, ["कियत्", "adv", "कियत्", "", "", "", "how much"]) + let v = native_list_append(v, ["सर्वदा", "adv", "सर्वदा", "", "", "", "always at all"]) + let v = native_list_append(v, ["जातु", "adv", "जातु", "", "", "", "from birth innately"]) + let v = native_list_append(v, ["पृथक्", "adv", "पृथक्", "", "", "", "widely apart separately"]) + let v = native_list_append(v, ["अवश्यम्", "adv", "अवश्यम्", "", "", "", "inevitably necessarily certainly"]) + let v = native_list_append(v, ["अद्धा", "adv", "अद्धा", "", "", "", "certainly surely with"]) + let v = native_list_append(v, ["सद्यस्", "adv", "सद्यस्", "", "", "", "on the same"]) + let v = native_list_append(v, ["धृष्णु", "adv", "धृष्णु", "", "", "", "boldly strongly with"]) + let v = native_list_append(v, ["निश्चित्य", "adv", "निश्चित्य", "", "", "", "conjunctive form of"]) + let v = native_list_append(v, ["आनुषक्", "adv", "आनुषक्", "", "", "", "in a continuous"]) + let v = native_list_append(v, ["पञ्चमम्", "adv", "पञ्चमम्", "", "", "", "the fifth time"]) + let v = native_list_append(v, ["चतुस्", "adv", "चतुस्", "", "", "", "four times"]) + let v = native_list_append(v, ["तृतीयम्", "adv", "तृतीयम्", "", "", "", "thirdly for the"]) + let v = native_list_append(v, ["यतस्", "adv", "यतस्", "", "", "", "ablative singular of"]) + let v = native_list_append(v, ["त्रेधा", "adv", "त्रेधा", "", "", "", "triply in three"]) + let v = native_list_append(v, ["नित्यम्", "adv", "नित्यम्", "", "", "", "constantly always"]) + let v = native_list_append(v, ["अधः", "adv", "अधः", "", "", "", "combining form of"]) + let v = native_list_append(v, ["अध", "adv", "अध", "", "", "", "then"]) + let v = native_list_append(v, ["अधा", "adv", "अधा", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["साक्षात्", "adv", "साक्षात्", "", "", "", "with the eyes"]) + let v = native_list_append(v, ["इतस्", "adv", "इतस्", "", "", "", "from here hence"]) + let v = native_list_append(v, ["तात्", "adv", "तात्", "", "", "", "thus in this"]) + let v = native_list_append(v, ["प्रायस्", "adv", "प्रायस्", "", "", "", "for the most"]) + let v = native_list_append(v, ["नूनम्", "adv", "नूनम्", "", "", "", "now at present"]) + let v = native_list_append(v, ["क्व", "adv", "क्व", "", "", "", "where? whither?"]) + let v = native_list_append(v, ["कर्हि", "adv", "कर्हि", "", "", "", "when? at what"]) + let v = native_list_append(v, ["अग्निसात्", "adv", "अग्निसात्", "", "", "", "to the state"]) + let v = native_list_append(v, ["मनाक्", "adv", "मनाक्", "", "", "", "a little slightly"]) + let v = native_list_append(v, ["शतशस्", "adv", "शतशस्", "", "", "", "by hundreds in"]) + let v = native_list_append(v, ["नक्तम्", "adv", "नक्तम्", "", "", "", "by night"]) + let v = native_list_append(v, ["वितरम्", "adv", "वितरम्", "", "", "", "again"]) + let v = native_list_append(v, ["आरे", "adv", "आरे", "", "", "", "far from"]) + let v = native_list_append(v, ["आरात्", "adv", "आरात्", "", "", "", "from the distance"]) + let v = native_list_append(v, ["द्राक्", "adv", "द्राक्", "", "", "", "quickly speedily shortly"]) + let v = native_list_append(v, ["अन्तरा", "adv", "अन्तरा", "", "", "", "in the middle"]) + let v = native_list_append(v, ["ताजक्", "adv", "ताजक्", "", "", "", "suddenly"]) + let v = native_list_append(v, ["परस्", "adv", "परस्", "", "", "", "beyond further out"]) + let v = native_list_append(v, ["आ", "prep", "आ", "", "", "", "up to ..."]) + let v = native_list_append(v, ["अच्छा", "prep", "अच्छा", "", "", "", "to towards"]) + let v = native_list_append(v, ["वि", "prep", "वि", "", "", "", "through"]) + let v = native_list_append(v, ["अभि", "prep", "अभि", "", "", "", "to towards in"]) + let v = native_list_append(v, ["तिरस्", "prep", "तिरस्", "", "", "", "through"]) + let v = native_list_append(v, ["प्रथमम्", "prep", "प्रथमम्", "", "", "", "before + genitive"]) + let v = native_list_append(v, ["ऊर्ध्व", "prep", "ऊर्ध्व", "", "", "", "in the sequel"]) + let v = native_list_append(v, ["अन्तर्", "prep", "अन्तर्", "", "", "", "within between amongst"]) + let v = native_list_append(v, ["उप", "prep", "उप", "", "", "", "towards near"]) + let v = native_list_append(v, ["विरुद्ध", "prep", "विरुद्ध", "", "", "", "against"]) + let v = native_list_append(v, ["पूर्व", "prep", "पूर्व", "", "", "", "before in front"]) + let v = native_list_append(v, ["अच्छ", "prep", "अच्छ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ऋते", "prep", "ऋते", "", "", "", "excepting"]) + let v = native_list_append(v, ["अनु", "prep", "अनु", "", "", "", "after"]) + let v = native_list_append(v, ["सनितुर्", "prep", "सनितुर्", "", "", "", "without"]) + let v = native_list_append(v, ["कृते", "prep", "कृते", "", "", "", "for"]) + let v = native_list_append(v, ["पुरस्", "prep", "पुरस्", "", "", "", "before in advance"]) + let v = native_list_append(v, ["អា", "prep", "អា", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["अधि", "prep", "अधि", "", "", "", "over above"]) + let v = native_list_append(v, ["अन्यत्र", "prep", "अन्यत्र", "", "", "", "except"]) + let v = native_list_append(v, ["आ", "particle", "आ", "", "", "", "emphasizing particle after"]) + let v = native_list_append(v, ["ई", "particle", "ई", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["घ", "particle", "घ", "", "", "", "at least surely"]) + let v = native_list_append(v, ["न", "particle", "न", "", "", "", "no not none"]) + let v = native_list_append(v, ["ल", "particle", "ल", "", "", "", "a technical term"]) + let v = native_list_append(v, ["ह", "particle", "ह", "", "", "", "emphasizes the preceding"]) + let v = native_list_append(v, ["हि", "particle", "हि", "", "", "", "for because on"]) + let v = native_list_append(v, ["अङ्ग", "particle", "अङ्ग", "", "", "", "a particle implying"]) + let v = native_list_append(v, ["मा", "particle", "मा", "", "", "", "dont prohibitive particle"]) + let v = native_list_append(v, ["න", "particle", "න", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["एव", "particle", "एव", "", "", "", "indeed truly really"]) + let v = native_list_append(v, ["तु", "particle", "तु", "", "", "", "pray I beg"]) + let v = native_list_append(v, ["किल", "particle", "किल", "", "", "", "indeed verily"]) + let v = native_list_append(v, ["आत्", "particle", "आत्", "", "", "", "so then afterwards"]) + let v = native_list_append(v, ["इति", "particle", "इति", "", "", "", "in this manner"]) + let v = native_list_append(v, ["चित्", "particle", "चित्", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["अथ", "particle", "अथ", "", "", "", "a particle used"]) + let v = native_list_append(v, ["नो", "particle", "नो", "", "", "", "and not"]) + let v = native_list_append(v, ["कम्", "particle", "कम्", "", "", "", "well"]) + let v = native_list_append(v, ["ওঁ", "particle", "ওঁ", "", "", "", "Bengali script form"]) + let v = native_list_append(v, ["श्वस्", "particle", "श्वस्", "", "", "", "a particle implying"]) + let v = native_list_append(v, ["खलु", "particle", "खलु", "", "", "", "indeed certainly verily"]) + let v = native_list_append(v, ["स्म", "particle", "स्म", "", "", "", "a particle indicating"]) + let v = native_list_append(v, ["ᬒᬁ", "particle", "ᬒᬁ", "", "", "", "Balinese script form"]) + let v = native_list_append(v, ["ಓಂ", "particle", "ಓಂ", "", "", "", "Kannada script form"]) + let v = native_list_append(v, ["𑍐", "particle", "𑍐", "", "", "", "Grantha script form"]) + let v = native_list_append(v, ["𑀑𑀁", "particle", "𑀑𑀁", "", "", "", "Brahmi script form"]) + let v = native_list_append(v, ["ꦎꦴꦀ", "particle", "ꦎꦴꦀ", "", "", "", "Javanese script form"]) + let v = native_list_append(v, ["𑖌𑖼", "particle", "𑖌𑖼", "", "", "", "Siddham script form"]) + let v = native_list_append(v, ["𑓇", "particle", "𑓇", "", "", "", "Tirhuta script form"]) + let v = native_list_append(v, ["स्विद्", "particle", "स्विद्", "", "", "", "enclitic particle of"]) + let v = native_list_append(v, ["ओ३म्", "particle", "ओ३म्", "", "", "", "Alternative form of"]) + let v = native_list_append(v, ["अना", "particle", "अना", "", "", "", "hereby in this"]) + let v = native_list_append(v, ["किस्", "particle", "किस्", "", "", "", "whether"]) + let v = native_list_append(v, ["चन", "particle", "चन", "", "", "", "emphasizing particle mostly"]) + let v = native_list_append(v, ["තු", "particle", "තු", "", "", "", "Sinhalese script form"]) + let v = native_list_append(v, ["इद्", "particle", "इद्", "", "", "", "even just only"]) + let v = native_list_append(v, ["ईम्", "particle", "ईम्", "", "", "", "particle of affirmation"]) + let v = native_list_append(v, ["चिद्", "particle", "चिद्", "", "", "", "at all even"]) + let v = native_list_append(v, ["अह", "particle", "अह", "", "", "", "surely certainly"]) + let v = native_list_append(v, ["वै", "particle", "वै", "", "", "", "emphatic and affirmative"]) + let v = native_list_append(v, ["वाव", "particle", "वाव", "", "", "", "emphatic particle stressing"]) + let v = native_list_append(v, ["च", "conj", "च", "", "", "", "and both also"]) + let v = native_list_append(v, ["यदि", "conj", "यदि", "", "", "", "if in case"]) + let v = native_list_append(v, ["वा", "conj", "वा", "", "", "", "or"]) + let v = native_list_append(v, ["अपितु", "conj", "अपितु", "", "", "", "however nonetheless then"]) + let v = native_list_append(v, ["कुत्रापि", "conj", "कुत्रापि", "", "", "", "wherever"]) + let v = native_list_append(v, ["उत", "conj", "उत", "", "", "", "and also"]) + let v = native_list_append(v, ["यर्हि", "conj", "यर्हि", "", "", "", "while whereas"]) + let v = native_list_append(v, ["अन्यत्र", "conj", "अन्यत्र", "", "", "", "unless"]) + let v = native_list_append(v, ["यावत्", "conj", "यावत्", "", "", "", "as far as"]) + let v = native_list_append(v, ["एक", "det", "एक", "", "", "", "a an"]) + let v = native_list_append(v, ["सर्व", "det", "सर्व", "", "", "", "whole entire all"]) + let v = native_list_append(v, ["तद्", "det", "तद्", "", "", "", "this that"]) + let v = native_list_append(v, ["स", "det", "स", "", "", "", "masculine nominative singular"]) + let v = native_list_append(v, ["अन्य", "det", "अन्य", "", "", "", "other different other"]) + let v = native_list_append(v, ["सा", "det", "सा", "", "", "", "feminine nominative singular"]) + let v = native_list_append(v, ["किम्", "det", "किम्", "", "", "", "what whose relative"]) + let v = native_list_append(v, ["कति", "det", "कति", "", "", "", "how many"]) + let v = native_list_append(v, ["यति", "det", "यति", "", "", "", "as many as"]) + let v = native_list_append(v, ["उभ", "det", "उभ", "", "", "", "both each of"]) + let v = native_list_append(v, ["उभे", "det", "उभे", "", "", "", "feminine/neuter nominative/accusative dual"]) + let v = native_list_append(v, ["तति", "det", "तति", "", "", "", "so many"]) + let v = native_list_append(v, ["कियत्त", "det", "कियत्त", "", "", "", "how great...? This"]) + let v = native_list_append(v, ["कियत्", "det", "कियत्", "", "", "", "how much"]) + let v = native_list_append(v, ["अन्यतर", "det", "अन्यतर", "", "", "", "either of two"]) + let v = native_list_append(v, ["उभौ", "det", "उभौ", "", "", "", "nominative/accusative dual of"]) + let v = native_list_append(v, ["उभा", "det", "उभा", "", "", "", "nominative/accusative dual of"]) + return v +} + +fn vocab_sa_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_sa_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-sga.el b/elp/src/vocabulary-sga.el new file mode 100644 index 0000000..fe921d6 --- /dev/null +++ b/elp/src/vocabulary-sga.el @@ -0,0 +1,6192 @@ +// vocabulary-sga.el — Old Irish vocabulary seed +// 6171 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 6171 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_sga_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["abb", "noun", "abbaith", "abbath", "abbaith", "", "alternative spelling of"]) + let v = native_list_append(v, ["o", "noun", "o", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mann", "noun", "mann", "mainne", "mainn", "", "manna food"]) + let v = native_list_append(v, ["port", "noun", "puirt", "puirt", "purt", "", "place"]) + let v = native_list_append(v, ["amar", "noun", "amra", "amair", "amraib", "", "wailing moaning"]) + let v = native_list_append(v, ["coin", "noun", "coin", "", "", "", "inflection of cú"]) + let v = native_list_append(v, ["fall", "noun", "falla", "faille", "faill", "", "neglect"]) + let v = native_list_append(v, ["mind", "noun", "minda", "mindo", "mindaib", "", "A symbol indicating"]) + let v = native_list_append(v, ["all", "noun", "all", "", "", "", "cliff"]) + let v = native_list_append(v, ["art", "noun", "airt", "airt", "artaib", "", "bear"]) + let v = native_list_append(v, ["as", "noun", "asa", "ais", "asaib", "", "milk"]) + let v = native_list_append(v, ["son", "noun", "suin", "suin", "sun", "", "sound"]) + let v = native_list_append(v, ["not", "noun", "not", "", "", "", "mark sign in"]) + let v = native_list_append(v, ["men", "noun", "men", "mine", "min", "", "flour meal"]) + let v = native_list_append(v, ["both", "noun", "both", "buithe", "buith", "", "alternative form of"]) + let v = native_list_append(v, ["tan", "noun", "tana", "taine", "tain", "", "time"]) + let v = native_list_append(v, ["dub", "noun", "dub", "dubo", "", "", "black pigment ink"]) + let v = native_list_append(v, ["ag", "noun", "aige", "aige", "aig", "", "bullock cow ox"]) + let v = native_list_append(v, ["ban", "noun", "ban", "", "", "", "genitive dual/plural of"]) + let v = native_list_append(v, ["ben", "noun", "mná", "mná", "mnaí", "", "woman"]) + let v = native_list_append(v, ["bran", "noun", "brain", "brain", "branaib", "", "raven"]) + let v = native_list_append(v, ["acre", "noun", "acre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["moro", "noun", "moro", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dia", "noun", "dia", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ingin", "noun", "ingin", "", "", "", "inflection of ingen"]) + let v = native_list_append(v, ["día", "noun", "día", "die", "dé", "", "day"]) + let v = native_list_append(v, ["ail", "noun", "ailich", "ailech", "ailib", "", "rock"]) + let v = native_list_append(v, ["mass", "noun", "mass", "maisse", "maiss", "", "mass matter"]) + let v = native_list_append(v, ["bid", "noun", "bid", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["bled", "noun", "bleda", "bleide", "bleid", "", "sea-monster"]) + let v = native_list_append(v, ["dig", "noun", "dig", "", "", "", "inflection of deug"]) + let v = native_list_append(v, ["fell", "noun", "fell", "fill", "fiull", "", "deceit treachery"]) + let v = native_list_append(v, ["find", "noun", "find", "", "", "", "hair"]) + let v = native_list_append(v, ["fled", "noun", "fleda", "flide", "flid", "", "banquet feast"]) + let v = native_list_append(v, ["lie", "noun", "liic", "lïac", "liic", "", "a stone"]) + let v = native_list_append(v, ["finn", "noun", "finn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cell", "noun", "cella", "cille", "ceill", "", "church"]) + let v = native_list_append(v, ["biad", "noun", "biad", "", "", "", "older form of"]) + let v = native_list_append(v, ["cloth", "noun", "clotha", "cluith", "clothaib", "", "fame honor"]) + let v = native_list_append(v, ["cloud", "noun", "cloud", "cloita", "", "", "verbal noun of"]) + let v = native_list_append(v, ["brain", "noun", "brain", "", "", "", "inflection of bran"]) + let v = native_list_append(v, ["ball", "noun", "baill", "baill", "baull", "", "a body part"]) + let v = native_list_append(v, ["bir", "noun", "beura", "bero", "biur", "", "stake spit point"]) + let v = native_list_append(v, ["lem", "noun", "lim", "lim", "lemaib", "", "elm tree"]) + let v = native_list_append(v, ["dead", "noun", "dead", "deïd", "dïud", "", "end"]) + let v = native_list_append(v, ["long", "noun", "longa", "lungae", "loing", "", "boat"]) + let v = native_list_append(v, ["sal", "noun", "sala", "saile", "sail", "", "dirt"]) + let v = native_list_append(v, ["filed", "noun", "filed", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["loch", "noun", "locha", "locho", "lochaib", "", "lake"]) + let v = native_list_append(v, ["brat", "noun", "brata", "broite", "broit", "", "plunder act of"]) + let v = native_list_append(v, ["moth", "noun", "moth", "muith", "muth", "", "amazement stupor"]) + let v = native_list_append(v, ["arbor", "noun", "arbann", "arbae", "arbaim", "", "grain"]) + let v = native_list_append(v, ["boc", "noun", "buic", "buic", "buc", "", "he-goat"]) + let v = native_list_append(v, ["cor", "noun", "cor", "cuir", "", "", "verbal noun of"]) + let v = native_list_append(v, ["con", "noun", "con", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["dam", "noun", "daim", "daim", "daum", "", "ox"]) + let v = native_list_append(v, ["atom", "noun", "atoim", "atoim", "atomaib", "", "atom mote"]) + let v = native_list_append(v, ["au", "noun", "au", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dord", "noun", "dord", "duird", "", "", "buzz hum drone"]) + let v = native_list_append(v, ["ar", "noun", "ara", "aire", "araib", "", "verbal noun of"]) + let v = native_list_append(v, ["am", "noun", "am", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["es", "noun", "es", "", "", "", "the letter s"]) + let v = native_list_append(v, ["Christ", "noun", "Christ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["net", "noun", "nit", "nit", "netaib", "", "nest"]) + let v = native_list_append(v, ["sine", "noun", "sini", "sini", "siniu", "", "nipple teat"]) + let v = native_list_append(v, ["sail", "noun", "sailig", "sailech", "sailig", "", "willow any of"]) + let v = native_list_append(v, ["nem", "noun", "nime", "nime", "nim", "", "heaven"]) + let v = native_list_append(v, ["sel", "noun", "sil", "sil", "selaib", "", "a turn a"]) + let v = native_list_append(v, ["land", "noun", "land", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cos", "noun", "cossa", "coise", "cois", "", "foot"]) + let v = native_list_append(v, ["don", "noun", "don", "", "", "", "misfortune evil"]) + let v = native_list_append(v, ["main", "noun", "main", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["riga", "noun", "riga", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mug", "noun", "mogæ", "mogo", "mogaib", "", "male slave or"]) + let v = native_list_append(v, ["ros", "noun", "ruis", "ruis", "rus", "", "A promontory."]) + let v = native_list_append(v, ["less", "noun", "lessae", "lesso", "lessaib", "", "benefit advantage"]) + let v = native_list_append(v, ["ob", "noun", "ob", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["recht", "noun", "rechtae", "rechto", "rect", "", "law"]) + let v = native_list_append(v, ["cob", "noun", "coba", "cuib", "cobaib", "", "victory"]) + let v = native_list_append(v, ["doe", "noun", "doit", "doat", "doit", "", "upper arm"]) + let v = native_list_append(v, ["ler", "noun", "lir", "lir", "liur", "", "sea ocean"]) + let v = native_list_append(v, ["bos", "noun", "bossa", "boise", "bois", "", "alternative form of"]) + let v = native_list_append(v, ["dea", "noun", "dea", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["dom", "noun", "domae", "domo", "doim", "", "home"]) + let v = native_list_append(v, ["guide", "noun", "guidi", "", "guidi", "", "verbal noun of"]) + let v = native_list_append(v, ["demon", "noun", "demna", "demuin", "demun", "", "demon devil"]) + let v = native_list_append(v, ["ló", "noun", "ló", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["liter", "noun", "litre", "litre", "litir", "", "letter of the"]) + let v = native_list_append(v, ["tech", "noun", "tige", "tige", "tig", "", "house"]) + let v = native_list_append(v, ["corn", "noun", "cuirn", "cuirn", "cornaib", "", "drinking-horn goblet"]) + let v = native_list_append(v, ["aer", "noun", "aeir", "aeir", "aeraib", "", "air"]) + let v = native_list_append(v, ["bun", "noun", "bonai", "bona", "bonaib", "", "base"]) + let v = native_list_append(v, ["med", "noun", "meda", "meide", "meid", "", "scale balance"]) + let v = native_list_append(v, ["format", "noun", "formata", "formait", "formut", "", "verbal noun of"]) + let v = native_list_append(v, ["ord", "noun", "uird", "uird", "ordaib", "", "sledgehammer"]) + let v = native_list_append(v, ["ess", "noun", "ess", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mac", "noun", "maic", "maic", "macaib", "", "alternative spelling of"]) + let v = native_list_append(v, ["les", "noun", "les", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fot", "noun", "fot", "fuit", "fut", "", "length"]) + let v = native_list_append(v, ["fine", "noun", "fini", "", "fini", "", "family kin group"]) + let v = native_list_append(v, ["fer", "noun", "fir", "fir", "fiur", "", "man"]) + let v = native_list_append(v, ["aire", "noun", "airig", "airech", "airig", "", "freeman whether commoner"]) + let v = native_list_append(v, ["mes", "noun", "mes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mag", "noun", "maige", "maige", "maig", "", "a plain field"]) + let v = native_list_append(v, ["nia", "noun", "nïaid", "nïad", "nïaid", "", "nephew sister’s son"]) + let v = native_list_append(v, ["math", "noun", "mathae", "matho", "mathaib", "", "bear"]) + let v = native_list_append(v, ["orc", "noun", "oirc", "oirc", "orcaib", "", "piglet"]) + let v = native_list_append(v, ["Saul", "noun", "Saul", "", "", "", "Saul first king"]) + let v = native_list_append(v, ["foil", "noun", "folaig", "folach", "folaig", "", "ring bracelet"]) + let v = native_list_append(v, ["faith", "noun", "faith", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["col", "noun", "cola", "cuil", "colaib", "", "sin violation"]) + let v = native_list_append(v, ["toll", "noun", "tuill", "tuill", "tollaib", "", "hole hollow"]) + let v = native_list_append(v, ["bard", "noun", "baird", "baird", "bardaib", "", "bard"]) + let v = native_list_append(v, ["anim", "noun", "anmi", "ainme", "ainmib", "", "blemish"]) + let v = native_list_append(v, ["molto", "noun", "molto", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["attach", "noun", "attacha", "ataig", "attuch", "", "refuge"]) + let v = native_list_append(v, ["chert", "noun", "chert", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["clad", "noun", "claid", "claid", "clud", "", "ditch trench"]) + let v = native_list_append(v, ["conn", "noun", "cuinn", "cuinn", "cunn", "", "leader"]) + let v = native_list_append(v, ["druid", "noun", "druid", "", "", "", "inflection of druí"]) + let v = native_list_append(v, ["dun", "noun", "dun", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fib", "noun", "fib", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foss", "noun", "foiss", "foiss", "fossaib", "", "servant"]) + let v = native_list_append(v, ["gait", "noun", "gata", "gaite", "gataib", "", "verbal noun of"]) + let v = native_list_append(v, ["gam", "noun", "gam", "", "", "", "winter winter storm"]) + let v = native_list_append(v, ["iris", "noun", "iris", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["marc", "noun", "mairc", "mairc", "marcaib", "", "horse"]) + let v = native_list_append(v, ["slat", "noun", "slata", "slaite", "slait", "", "plunder"]) + let v = native_list_append(v, ["toil", "noun", "toil", "", "", "", "inflection of tol"]) + let v = native_list_append(v, ["mend", "noun", "mind", "mind", "miund", "", "young goat kid"]) + let v = native_list_append(v, ["mess", "noun", "mesai", "messa", "messaib", "", "verbal noun of"]) + let v = native_list_append(v, ["slice", "noun", "slici", "slici", "sliciu", "", "shell"]) + let v = native_list_append(v, ["tart", "noun", "tartae", "tarta", "tartaib", "", "thirst"]) + let v = native_list_append(v, ["clam", "noun", "claim", "claim", "clamaib", "", "leper"]) + let v = native_list_append(v, ["fir", "noun", "fir", "", "", "", "inflection of fer"]) + let v = native_list_append(v, ["fern", "noun", "ferna", "fernae", "feirn", "", "alder"]) + let v = native_list_append(v, ["magister", "noun", "magistir", "magistir", "magistraib", "", "master teacher"]) + let v = native_list_append(v, ["auctor", "noun", "auctair", "auctair", "auctoraib", "", "author"]) + let v = native_list_append(v, ["dáil", "noun", "dáil", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["saith", "noun", "saith", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mil", "noun", "mil", "melo", "", "", "honey"]) + let v = native_list_append(v, ["suí", "noun", "suïd", "süad", "suïd", "", "sage scholar"]) + let v = native_list_append(v, ["huan", "noun", "huan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lai", "noun", "lai", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gin", "noun", "gin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bela", "noun", "bela", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bero", "noun", "bero", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["bona", "noun", "bona", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mid", "noun", "mid", "meda", "", "", "mead"]) + let v = native_list_append(v, ["caille", "noun", "caillib", "cailli", "cailliu", "", "veil"]) + let v = native_list_append(v, ["uisce", "noun", "uisci", "uisci", "uisciu", "", "water"]) + let v = native_list_append(v, ["min", "noun", "min", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["gal", "noun", "gala", "gaile", "gail", "", "ardor"]) + let v = native_list_append(v, ["carat", "noun", "carat", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["mná", "noun", "mná", "", "", "", "inflection of ben"]) + let v = native_list_append(v, ["Ethniu", "noun", "Ethniu", "", "", "", "The daughter of"]) + let v = native_list_append(v, ["bas", "noun", "bassa", "baise", "bais", "", "palm of the"]) + let v = native_list_append(v, ["cosa", "noun", "cosa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fut", "noun", "fut", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bith", "noun", "betha", "betho", "biuth", "", "world"]) + let v = native_list_append(v, ["ithe", "noun", "ithi", "", "ithi", "", "verbal noun of"]) + let v = native_list_append(v, ["ith", "noun", "ith", "etho", "", "", "corn grain"]) + let v = native_list_append(v, ["ól", "noun", "ól", "óil", "óul", "", "verbal noun of"]) + let v = native_list_append(v, ["gol", "noun", "guil", "guil", "gul", "", "weeping wailing"]) + let v = native_list_append(v, ["dul", "noun", "dul", "dula", "", "", "verbal noun of"]) + let v = native_list_append(v, ["tig", "noun", "tig", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["messa", "noun", "messa", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["bile", "noun", "bili", "bili", "biliu", "", "tree especially a"]) + let v = native_list_append(v, ["irar", "noun", "irair", "irair", "iraraib", "", "eagle"]) + let v = native_list_append(v, ["torc", "noun", "tuirc", "tuirc", "turc", "", "boar"]) + let v = native_list_append(v, ["doirse", "noun", "doirse", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["fuil", "noun", "fuili", "folo", "fuilib", "", "blood"]) + let v = native_list_append(v, ["cailc", "noun", "cailc", "calca", "", "", "lime mineral limestone"]) + let v = native_list_append(v, ["mór", "noun", "mór", "móir", "", "", "a large amount"]) + let v = native_list_append(v, ["ard", "noun", "arda", "aird", "ardaib", "", "height"]) + let v = native_list_append(v, ["bocht", "noun", "boicht", "boicht", "bochtaib", "", "poor person pauper"]) + let v = native_list_append(v, ["dum", "noun", "dum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["donn", "noun", "duinn", "duinn", "donnaib", "", "chief lord noble"]) + let v = native_list_append(v, ["glas", "noun", "glais", "glais", "glasaib", "", "lock fetter clasp"]) + let v = native_list_append(v, ["Ulaid", "noun", "Ultu", "Ulad", "Ultaib", "", "Ulstermen"]) + let v = native_list_append(v, ["airde", "noun", "airdib", "airdi", "airdiu", "", "sign token"]) + let v = native_list_append(v, ["brig", "noun", "brig", "", "", "", "inflection of brí"]) + let v = native_list_append(v, ["dán", "noun", "dánai", "dáno", "dánaib", "", "gift"]) + let v = native_list_append(v, ["baile", "noun", "baili", "baili", "bailiu", "", "place homestead town"]) + let v = native_list_append(v, ["céile", "noun", "céili", "céili", "céiliu", "", "servant bondsman subject"]) + let v = native_list_append(v, ["én", "noun", "éuin", "éuin", "éun", "", "bird"]) + let v = native_list_append(v, ["persan", "noun", "persin", "persine", "persin", "", "person individual physical"]) + let v = native_list_append(v, ["tol", "noun", "tola", "toile", "toil", "", "will"]) + let v = native_list_append(v, ["fini", "noun", "fini", "", "", "", "inflection of fine"]) + let v = native_list_append(v, ["sens", "noun", "sens", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["amm", "noun", "amma", "aimm", "ammaib", "", "time point in"]) + let v = native_list_append(v, ["ainm", "noun", "ainm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ner", "noun", "neir", "neir", "neur", "", "boar"]) + let v = native_list_append(v, ["aille", "noun", "ailli", "", "ailli", "", "praise"]) + let v = native_list_append(v, ["cuit", "noun", "cuiti", "coto", "cuitib", "", "part portion share"]) + let v = native_list_append(v, ["fess", "noun", "fessa", "feisse", "feiss", "", "verbal noun of"]) + let v = native_list_append(v, ["nime", "noun", "nime", "", "", "", "inflection of nem"]) + let v = native_list_append(v, ["Dia", "noun", "Dia", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Lug", "noun", "Lug", "Loga", "", "", "Lugh"]) + let v = native_list_append(v, ["Maire", "noun", "Maire", "", "", "", "Mary mother of"]) + let v = native_list_append(v, ["Mana", "noun", "Mana", "Manann", "Manainn", "", "Isle of Man"]) + let v = native_list_append(v, ["Mart", "noun", "Mart", "", "", "", "March"]) + let v = native_list_append(v, ["Pol", "noun", "Pol", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["áith", "noun", "áthai", "átho", "áthaib", "", "drying-kiln for grains"]) + let v = native_list_append(v, ["sam", "noun", "sam", "saim", "", "", "summer"]) + let v = native_list_append(v, ["feb", "noun", "feba", "feibe", "feib", "", "excellence"]) + let v = native_list_append(v, ["molt", "noun", "muilt", "muilt", "moltaib", "", "ram wether"]) + let v = native_list_append(v, ["oí", "noun", "aí", "óe", "aí", "", "sheep"]) + let v = native_list_append(v, ["allas", "noun", "allas", "allais", "", "", "sweat perspiration"]) + let v = native_list_append(v, ["corp", "noun", "coirp", "coirp", "curp", "", "body"]) + let v = native_list_append(v, ["Ind", "noun", "Ind", "", "", "", "the Indus a"]) + let v = native_list_append(v, ["cert", "noun", "certa", "cirt", "cirt", "", "the right what"]) + let v = native_list_append(v, ["midi", "noun", "midi", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cerca", "noun", "cerca", "", "", "", "nominative and vocative"]) + let v = native_list_append(v, ["precept", "noun", "precepta", "precepte", "preceupt", "", "verbal noun of"]) + let v = native_list_append(v, ["cet", "noun", "cet", "", "", "", "something allowable permissible"]) + let v = native_list_append(v, ["Tailtiu", "noun", "Tailtiu", "Tailten", "Tailtin", "", "Teltown a town"]) + let v = native_list_append(v, ["recto", "noun", "recto", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["breg", "noun", "breg", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["á", "noun", "á", "", "", "", "mouth"]) + let v = native_list_append(v, ["án", "noun", "án", "áine", "áin", "", "verbal noun of"]) + let v = native_list_append(v, ["ár", "noun", "ára", "áir", "áraib", "", "slaughter carnage"]) + let v = native_list_append(v, ["bera", "noun", "bera", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["brú", "noun", "broinn", "bronn", "broinn", "", "belly abdomen"]) + let v = native_list_append(v, ["og", "noun", "ugae", "ugae", "uig", "", "egg"]) + let v = native_list_append(v, ["fet", "noun", "feta", "fite", "fit", "", "whistling hissing the"]) + let v = native_list_append(v, ["rót", "noun", "róit", "róit", "rout", "", "road"]) + let v = native_list_append(v, ["bein", "noun", "bein", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["serb", "noun", "serb", "seirbe", "seirb", "", "theft"]) + let v = native_list_append(v, ["catt", "noun", "caitt", "caitt", "cattaib", "", "cat"]) + let v = native_list_append(v, ["folc", "noun", "foilc", "foilc", "folcaib", "", "wet weather heavy"]) + let v = native_list_append(v, ["thoil", "noun", "thoil", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dé", "noun", "dé", "dïad", "dïaid", "", "smoke"]) + let v = native_list_append(v, ["relic", "noun", "relic", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gen", "noun", "gena", "gin", "giun", "", "smile laugh"]) + let v = native_list_append(v, ["hithe", "noun", "hithe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["aite", "noun", "aiti", "aiti", "aitiu", "", "foster father"]) + let v = native_list_append(v, ["fid", "noun", "fedae", "fedo", "fedaib", "", "tree"]) + let v = native_list_append(v, ["Fergus", "noun", "Fergusae", "Fergusso", "Fergusaib", "", "a male given"]) + let v = native_list_append(v, ["ingen", "noun", "ingena", "ingine", "ingin", "", "daughter"]) + let v = native_list_append(v, ["benn", "noun", "benna", "beinne", "beinn", "", "peak"]) + let v = native_list_append(v, ["sál", "noun", "sál", "sáil", "", "", "salt water brine"]) + let v = native_list_append(v, ["lind", "noun", "lindi", "linde", "lindi", "", "a body of"]) + let v = native_list_append(v, ["chell", "noun", "chell", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mál", "noun", "máil", "máil", "málaib", "", "prince nobleman chief"]) + let v = native_list_append(v, ["bú", "noun", "bú", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["fliuch", "noun", "fliuch", "", "", "", "damp wet weather"]) + let v = native_list_append(v, ["cuach", "noun", "cuäich", "cuäich", "cuäch", "", "bowl goblet drinking"]) + let v = native_list_append(v, ["rí", "noun", "ríg", "ríg", "ríg", "", "king"]) + let v = native_list_append(v, ["mí", "noun", "mís", "mís", "mís", "", "month"]) + let v = native_list_append(v, ["inis", "noun", "insi", "inse", "insi", "", "island"]) + let v = native_list_append(v, ["Cú Roí", "noun", "Cú Roí", "Con Roí", "", "", "a masculine given"]) + let v = native_list_append(v, ["luch", "noun", "lochaid", "lochad", "lochaid", "", "mouse rat"]) + let v = native_list_append(v, ["crith", "noun", "crith", "", "", "", "shaking trembling"]) + let v = native_list_append(v, ["Lebor Gabála Érenn", "noun", "Lebor Gabála Érenn", "", "", "", "Lebor Gabála Érenn"]) + let v = native_list_append(v, ["loth", "noun", "latha", "loithe", "loith", "", "mud"]) + let v = native_list_append(v, ["Connacht", "noun", "Connacht", "", "", "", "genitive of Connachta."]) + let v = native_list_append(v, ["aul", "noun", "elae", "elo", "elaib", "", "wall"]) + let v = native_list_append(v, ["coll", "noun", "cuill", "cuill", "cull", "", "hazel tree or"]) + let v = native_list_append(v, ["lucht", "noun", "lucht", "luchta", "", "", "contents"]) + let v = native_list_append(v, ["cerc", "noun", "cerca", "circe", "circ", "", "hen female chicken"]) + let v = native_list_append(v, ["ó", "noun", "ó", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lus", "noun", "losae", "loso", "losaib", "", "plant herb vegetable"]) + let v = native_list_append(v, ["crud", "noun", "crud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rann", "noun", "ranna", "rainne", "rainn", "", "part of a"]) + let v = native_list_append(v, ["rath", "noun", "ratha", "raith", "rathaib", "", "verbal noun of"]) + let v = native_list_append(v, ["teg", "noun", "tige", "tige", "", "", "alternative form of"]) + let v = native_list_append(v, ["mol", "noun", "muil", "muil", "mul", "", "shaft of a"]) + let v = native_list_append(v, ["duine", "noun", "doíni", "duini", "duiniu", "", "person human being"]) + let v = native_list_append(v, ["uasal", "noun", "uasal", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dorn", "noun", "duirn", "duirn", "durn", "", "hand fist"]) + let v = native_list_append(v, ["mell", "noun", "mell", "", "", "", "destruction confusion"]) + let v = native_list_append(v, ["lenn", "noun", "lenna", "leinne", "leinn", "", "cloak"]) + let v = native_list_append(v, ["pell", "noun", "pill", "pill", "pellaib", "", "pelt skin hide"]) + let v = native_list_append(v, ["és", "noun", "ésa", "éise", "éis", "", "track trace"]) + let v = native_list_append(v, ["teine", "noun", "teinid", "teined", "teinid", "", "fire"]) + let v = native_list_append(v, ["muir", "noun", "muire", "moro", "muirib", "", "sea"]) + let v = native_list_append(v, ["grian", "noun", "grian", "grïain", "grïun", "", "gravel"]) + let v = native_list_append(v, ["mér", "noun", "méoir", "méoir", "méor", "", "finger"]) + let v = native_list_append(v, ["dath", "noun", "datha", "datho", "dathaib", "", "colour"]) + let v = native_list_append(v, ["ordu", "noun", "ordain", "ordan", "ordain", "", "thumb"]) + let v = native_list_append(v, ["bili", "noun", "bili", "", "", "", "vocative singular of"]) + let v = native_list_append(v, ["fuar", "noun", "fúra", "fuair", "fuaraib", "", "verbal noun of"]) + let v = native_list_append(v, ["bricht", "noun", "brechtae", "brechto", "brechtaib", "", "charm spell incantation"]) + let v = native_list_append(v, ["muntar", "noun", "muntara", "muntaire", "muntair", "", "alternative form of"]) + let v = native_list_append(v, ["duli", "noun", "duli", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["áru", "noun", "árainn", "árann", "árainn", "", "kidney"]) + let v = native_list_append(v, ["ardi", "noun", "ardi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["imbe", "noun", "imbib", "imbi", "imbiu", "", "verbal noun of"]) + let v = native_list_append(v, ["fili", "noun", "filid", "filed", "filid", "", "poet seer"]) + let v = native_list_append(v, ["cuir", "noun", "cuir", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["damu", "noun", "damu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arde", "noun", "ardib", "ardi", "ardiu", "", "alternative spelling of"]) + let v = native_list_append(v, ["tí", "noun", "tíg", "tíg", "tíg", "", "cloak"]) + let v = native_list_append(v, ["séta", "noun", "séta", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["dumu", "noun", "dumu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruis", "noun", "ruis", "", "", "", "inflection of ros"]) + let v = native_list_append(v, ["cinn", "noun", "cinn", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mucca", "noun", "mucca", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["fedan", "noun", "fedan", "fednae", "fedain", "", "verbal noun of"]) + let v = native_list_append(v, ["loc", "noun", "luic", "luic", "luc", "", "place usually inhabited"]) + let v = native_list_append(v, ["mide", "noun", "mide", "midi", "midiu", "", "middle centre"]) + let v = native_list_append(v, ["fuit", "noun", "fuit", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["cú", "noun", "coin", "con", "coin", "", "dog hound"]) + let v = native_list_append(v, ["áss", "noun", "áss", "áiss", "", "", "growth"]) + let v = native_list_append(v, ["fáilte", "noun", "fáilti", "", "fáilti", "", "joy happiness"]) + let v = native_list_append(v, ["folo", "noun", "folo", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["failte", "noun", "failte", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["broon", "noun", "broon", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["chor", "noun", "chor", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["lon", "noun", "luin", "luin", "lun", "", "blackbird a common"]) + let v = native_list_append(v, ["dorus", "noun", "doirsea", "doirseo", "doirsib", "", "door"]) + let v = native_list_append(v, ["deu", "noun", "deu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["brathair", "noun", "brathair", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["trom", "noun", "troma", "truim", "tromaib", "", "weight heaviness burden"]) + let v = native_list_append(v, ["salainn", "noun", "salainn", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["agad", "noun", "aigthea", "aigthe", "agaid", "", "face"]) + let v = native_list_append(v, ["ág", "noun", "áig", "áig", "ágaib", "", "fight battle contest"]) + let v = native_list_append(v, ["feis", "noun", "feis", "", "", "", "inflection of fess"]) + let v = native_list_append(v, ["Alban", "noun", "Alban", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gell", "noun", "gella", "gill", "giull", "", "pledge surety"]) + let v = native_list_append(v, ["lige", "noun", "ligib", "ligi", "ligiu", "", "verbal noun of"]) + let v = native_list_append(v, ["bó", "noun", "baí", "bóu", "boin", "", "ox cow"]) + let v = native_list_append(v, ["cathair", "noun", "cathraig", "cathrach", "cathraig", "", "stone enclosure fortress"]) + let v = native_list_append(v, ["báo", "noun", "báo", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["aig", "noun", "aig", "ega", "", "", "ice"]) + let v = native_list_append(v, ["bé", "noun", "bé", "", "", "", "woman"]) + let v = native_list_append(v, ["orlar", "noun", "orlar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["calad", "noun", "calaid", "calaid", "caladaib", "", "shore port landing"]) + let v = native_list_append(v, ["cense", "noun", "cense", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cesad", "noun", "cesad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["debe", "noun", "debib", "debi", "debiu", "", "disagreement"]) + let v = native_list_append(v, ["labrad", "noun", "labradae", "labrada", "labradaib", "", "verbal noun of"]) + let v = native_list_append(v, ["matan", "noun", "maitnea", "maitne", "matain", "", "morning"]) + let v = native_list_append(v, ["sanas", "noun", "sanasa", "sanaise", "sanais", "", "advice counsel"]) + let v = native_list_append(v, ["testas", "noun", "testas", "testassa", "", "", "testimony"]) + let v = native_list_append(v, ["brot", "noun", "broit", "broit", "brotaib", "", "goad"]) + let v = native_list_append(v, ["masse", "noun", "masse", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["barr", "noun", "bairr", "bairr", "barraib", "", "tip"]) + let v = native_list_append(v, ["nim", "noun", "nim", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["ais", "noun", "ais", "", "", "", "back hinder part"]) + let v = native_list_append(v, ["censi", "noun", "censi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["tige", "noun", "tige", "", "", "", "inflection of tech"]) + let v = native_list_append(v, ["beim", "noun", "beim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ór", "noun", "ór", "óir", "", "", "gold"]) + let v = native_list_append(v, ["flaith", "noun", "flathai", "flatho", "flathaib", "", "lordship sovereignty rule"]) + let v = native_list_append(v, ["chú", "noun", "chú", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dú", "noun", "dú", "don", "doin", "", "place spot"]) + let v = native_list_append(v, ["dún", "noun", "dúna", "dúin", "dúnaib", "", "fort"]) + let v = native_list_append(v, ["fén", "noun", "féoin", "féoin", "fénaib", "", "wagon cart"]) + let v = native_list_append(v, ["hén", "noun", "hén", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lá", "noun", "láa", "laí", "láu", "", "day daylight"]) + let v = native_list_append(v, ["láo", "noun", "láo", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lí", "noun", "líga", "líg", "lígaib", "", "beauty luster brilliance"]) + let v = native_list_append(v, ["lín", "noun", "lína", "líno", "línaib", "", "full number complement"]) + let v = native_list_append(v, ["pén", "noun", "píana", "péine", "péin", "", "pain punishment"]) + let v = native_list_append(v, ["rán", "noun", "rán", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rún", "noun", "rúna", "rúine", "rúin", "", "mystery secret"]) + let v = native_list_append(v, ["athair", "noun", "aithir", "athar", "aithrib", "", "father"]) + let v = native_list_append(v, ["máthair", "noun", "máithir", "máthar", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chen", "noun", "chen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chuir", "noun", "chuir", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tost", "noun", "tost", "", "", "", "silence"]) + let v = native_list_append(v, ["Eithne", "noun", "Eithni", "", "Eithni", "", "a female given"]) + let v = native_list_append(v, ["rón", "noun", "róin", "róin", "rónaib", "", "seal maritime mammal"]) + let v = native_list_append(v, ["nathair", "noun", "nathair", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["guth", "noun", "gothae", "gotho", "gothaib", "", "voice"]) + let v = native_list_append(v, ["sorn", "noun", "suirn", "suirn", "surn", "", "furnace oven kiln"]) + let v = native_list_append(v, ["coire", "noun", "coiri", "coiri", "coiriu", "", "cauldron"]) + let v = native_list_append(v, ["cac", "noun", "cac", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ammus", "noun", "aimse", "aimseo", "aimsib", "", "verbal noun of"]) + let v = native_list_append(v, ["ette", "noun", "etti", "", "etti", "", "wing pinion"]) + let v = native_list_append(v, ["tonn", "noun", "tonna", "tuinne", "tuinn", "", "wave"]) + let v = native_list_append(v, ["thig", "noun", "thig", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["capall", "noun", "capaill", "capaill", "capull", "", "horse"]) + let v = native_list_append(v, ["droch", "noun", "droich", "droich", "drochaib", "", "wheel"]) + let v = native_list_append(v, ["lann", "noun", "lanna", "lainne", "lainn", "", "thin plate layer"]) + let v = native_list_append(v, ["mullach", "noun", "mullaig", "mullaig", "mulluch", "", "top"]) + let v = native_list_append(v, ["altram", "noun", "altramae", "altrama", "altramaib", "", "verbal noun of"]) + let v = native_list_append(v, ["triath", "noun", "trethain", "trethan", "trethain", "", "sea waves"]) + let v = native_list_append(v, ["allais", "noun", "allais", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["inntinn", "noun", "inntinn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["slige", "noun", "sligi", "", "sligi", "", "verbal noun of"]) + let v = native_list_append(v, ["cochall", "noun", "cochaill", "cochaill", "cochull", "", "cowl hood hooded"]) + let v = native_list_append(v, ["súla", "noun", "súla", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["bert", "noun", "berta", "beirte", "beirt", "", "burden load bundle"]) + let v = native_list_append(v, ["Petur", "noun", "Petur", "Petair", "", "", "Peter apostle"]) + let v = native_list_append(v, ["Bethel", "noun", "Bethel", "Beithile", "Beithil", "", "Bethlehem a city"]) + let v = native_list_append(v, ["fonn", "noun", "fuinn", "fuinn", "fonnaib", "", "sole of the"]) + let v = native_list_append(v, ["traite", "noun", "traite", "", "traiti", "", "quickness"]) + let v = native_list_append(v, ["lóg", "noun", "lóge", "lóge", "lóig", "", "value equivalent worth"]) + let v = native_list_append(v, ["mísa", "noun", "mísa", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["tess", "noun", "tess", "tesso", "", "", "heat"]) + let v = native_list_append(v, ["nerta", "noun", "nerta", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["Pól", "noun", "Pól", "Póil", "", "", "Paul of Tarsus"]) + let v = native_list_append(v, ["damán", "noun", "damáin", "damáin", "damánaib", "", "calf fawn"]) + let v = native_list_append(v, ["gile", "noun", "gili", "", "gili", "", "whiteness brightness"]) + let v = native_list_append(v, ["chur", "noun", "chur", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tarb", "noun", "tairb", "tairb", "tarbaib", "", "bull"]) + let v = native_list_append(v, ["nau", "noun", "noa", "naue", "noïb", "", "boat"]) + let v = native_list_append(v, ["guidi", "noun", "guidi", "", "", "", "inflection of guide"]) + let v = native_list_append(v, ["daini", "noun", "daini", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["morbi", "noun", "morbi", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["tuile", "noun", "tuilib", "tuili", "tuiliu", "", "verbal noun of"]) + let v = native_list_append(v, ["imbed", "noun", "imbeda", "imbid", "imbiud", "", "a large quantity"]) + let v = native_list_append(v, ["reet", "noun", "reet", "", "", "", "impetigo"]) + let v = native_list_append(v, ["loman", "noun", "lomna", "lomnae", "lomain", "", "cord rope"]) + let v = native_list_append(v, ["maissi", "noun", "maissi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["alam", "noun", "alam", "", "", "", "herd flock"]) + let v = native_list_append(v, ["díl", "noun", "díla", "", "dílaib", "", "verbal noun of"]) + let v = native_list_append(v, ["ón", "noun", "ón", "ónae", "óin", "", "verbal noun of"]) + let v = native_list_append(v, ["múr", "noun", "múir", "múir", "múraib", "", "wall"]) + let v = native_list_append(v, ["scola", "noun", "scola", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["fecht", "noun", "fechta", "fechtae", "fechtaib", "", "course journey expedition"]) + let v = native_list_append(v, ["deid", "noun", "deid", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["eich", "noun", "eich", "", "", "", "inflection of ech"]) + let v = native_list_append(v, ["Cormac", "noun", "Cormac", "Cormaic", "", "", "a male given"]) + let v = native_list_append(v, ["abla", "noun", "abla", "", "", "", "inflection of aball"]) + let v = native_list_append(v, ["ires", "noun", "ires", "irisse", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["init", "noun", "init", "inite", "", "", "Shrovetide"]) + let v = native_list_append(v, ["ap", "noun", "apid", "apad", "apid", "", "abbot"]) + let v = native_list_append(v, ["De", "noun", "De", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sín", "noun", "sína", "síne", "sínaib", "", "weather"]) + let v = native_list_append(v, ["bláthach", "noun", "bláthcha", "bláthchae", "bláthaig", "", "buttermilk"]) + let v = native_list_append(v, ["Sion", "noun", "Sion", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["thain", "noun", "thain", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["formut", "noun", "formut", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["chlad", "noun", "chlad", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dede", "noun", "dede", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tracht", "noun", "trachtae", "trachta", "trachtaib", "", "beach shore"]) + let v = native_list_append(v, ["tarta", "noun", "tarta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["días", "noun", "díasa", "déise", "déis", "", "ear of corn"]) + let v = native_list_append(v, ["saile", "noun", "sailib", "saili", "sailiu", "", "saliva sputum spittle"]) + let v = native_list_append(v, ["daire", "noun", "dairib", "dairi", "dairiu", "", "a forest of"]) + let v = native_list_append(v, ["penn", "noun", "penna", "peinne", "peinn", "", "pen a tool"]) + let v = native_list_append(v, ["longas", "noun", "loingsea", "loingse", "longais", "", "naval expedition"]) + let v = native_list_append(v, ["Róm", "noun", "Róm", "Rómae", "Róim", "", "Rome the ancient"]) + let v = native_list_append(v, ["selg", "noun", "selga", "seilge", "seilg", "", "hunt"]) + let v = native_list_append(v, ["cloch", "noun", "clocha", "cloiche", "cloich", "", "stone rock"]) + let v = native_list_append(v, ["máthir", "noun", "máithir", "máthar", "máthair", "", "mother"]) + let v = native_list_append(v, ["scoil", "noun", "scoil", "", "", "", "inflection of scol"]) + let v = native_list_append(v, ["grán", "noun", "gráin", "gráin", "gránaib", "", "grain harvested seeds"]) + let v = native_list_append(v, ["etti", "noun", "etti", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["ibar", "noun", "ibair", "ibair", "ibur", "", "yew"]) + let v = native_list_append(v, ["gus", "noun", "gossae", "gossa", "gossaib", "", "force vigour"]) + let v = native_list_append(v, ["cruim", "noun", "crumai", "crumo", "crumaib", "", "worm"]) + let v = native_list_append(v, ["rím", "noun", "rím", "rímae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["cride", "noun", "cridib", "cridi", "cridiu", "", "heart"]) + let v = native_list_append(v, ["mám", "noun", "mámae", "máma", "mámaib", "", "yoke"]) + let v = native_list_append(v, ["genti", "noun", "gente", "", "gentib", "", "gentiles non-Jews"]) + let v = native_list_append(v, ["Almain", "noun", "Almain", "", "", "", "Germany a country"]) + let v = native_list_append(v, ["éc", "noun", "écae", "éca", "écaib", "", "death"]) + let v = native_list_append(v, ["caí", "noun", "caí", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["téta", "noun", "téta", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["cubus", "noun", "cuibse", "cuibseo", "cuibsib", "", "conscience"]) + let v = native_list_append(v, ["arán", "noun", "aráin", "aráin", "aránaib", "", "bread"]) + let v = native_list_append(v, ["boin", "noun", "boin", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["séns", "noun", "séns", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cois", "noun", "cois", "", "", "", "inflection of cos"]) + let v = native_list_append(v, ["ocht", "noun", "ocht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["brón", "noun", "bróin", "bróin", "brónaib", "", "sorrow grief lamentation"]) + let v = native_list_append(v, ["dál", "noun", "dála", "dáil", "dálaib", "", "part share"]) + let v = native_list_append(v, ["náire", "noun", "náire", "", "náiri", "", "shamefacedness bashfulness diffidence"]) + let v = native_list_append(v, ["nert", "noun", "nerta", "neirt", "niurt", "", "power"]) + let v = native_list_append(v, ["súil", "noun", "súili", "súlo", "súilib", "", "eye"]) + let v = native_list_append(v, ["sét", "noun", "sétae", "séta", "séit", "", "path way"]) + let v = native_list_append(v, ["ceist", "noun", "cesti", "cestae", "cestaib", "", "question"]) + let v = native_list_append(v, ["caill", "noun", "cailli", "caille", "caillib", "", "forest wood woodland"]) + let v = native_list_append(v, ["fírinne", "noun", "fírinne", "", "fírinni", "", "justice righteousness"]) + let v = native_list_append(v, ["gréine", "noun", "gréine", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gloine", "noun", "gloine", "", "gloini", "", "alternative form of"]) + let v = native_list_append(v, ["salann", "noun", "salann", "salainn", "salunn", "", "salt"]) + let v = native_list_append(v, ["lacht", "noun", "lacht", "lachta", "", "", "milk"]) + let v = native_list_append(v, ["metar", "noun", "metair", "metair", "metaraib", "", "metre rhythm or"]) + let v = native_list_append(v, ["géc", "noun", "géca", "géice", "géic", "", "branch bough"]) + let v = native_list_append(v, ["diad", "noun", "diad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["biada", "noun", "biada", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tain", "noun", "tain", "", "", "", "inflection of tan"]) + let v = native_list_append(v, ["cin", "noun", "cinaid", "cinad", "cinaid", "", "fault guilt"]) + let v = native_list_append(v, ["rét", "noun", "rétae", "réto", "rétaib", "", "thing"]) + let v = native_list_append(v, ["láma", "noun", "láma", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["óa", "noun", "óa", "", "", "", "liver"]) + let v = native_list_append(v, ["Crist", "noun", "Crist", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["píana", "noun", "píana", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["bél", "noun", "béoil", "béoil", "béul", "", "lip"]) + let v = native_list_append(v, ["míl", "noun", "míla", "", "mílaib", "", "animal"]) + let v = native_list_append(v, ["cona", "noun", "cona", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["ága", "noun", "ága", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["apad", "noun", "apad", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["ét", "noun", "ét", "éuit", "éut", "", "jealousy envy emulation"]) + let v = native_list_append(v, ["llegad", "noun", "llegad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["topar", "noun", "topair", "topair", "topraib", "", "well"]) + let v = native_list_append(v, ["drong", "noun", "druing", "druing", "drung", "", "group of people"]) + let v = native_list_append(v, ["anad", "noun", "anad", "anta", "", "", "verbal noun of"]) + let v = native_list_append(v, ["tocad", "noun", "tocaid", "tocaid", "tocud", "", "fate"]) + let v = native_list_append(v, ["abis", "noun", "abis", "", "", "", "abyss"]) + let v = native_list_append(v, ["cían", "noun", "cíana", "céine", "céin", "", "a long period"]) + let v = native_list_append(v, ["cía", "noun", "cía", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["áram", "noun", "áirmea", "áirme", "áraim", "", "verbal noun of"]) + let v = native_list_append(v, ["rían", "noun", "réin", "réin", "ríanaib", "", "sea ocean"]) + let v = native_list_append(v, ["athir", "noun", "athir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["torbe", "noun", "torbe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rige", "noun", "rigi", "", "rigi", "", "verbal noun of"]) + let v = native_list_append(v, ["pecad", "noun", "pecad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["legad", "noun", "legad", "legtha", "legud", "", "verbal noun of"]) + let v = native_list_append(v, ["certu", "noun", "certu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["opar", "noun", "oiprea", "oipre", "opair", "", "work occupation activity"]) + let v = native_list_append(v, ["dris", "noun", "drisi", "dreso", "drisib", "", "briar bramble"]) + let v = native_list_append(v, ["molad", "noun", "moltai", "molto", "moltaib", "", "verbal noun of"]) + let v = native_list_append(v, ["meirle", "noun", "meirli", "", "meirli", "", "stealing theft robbery"]) + let v = native_list_append(v, ["graig", "noun", "graigi", "grega", "graigib", "", "horses"]) + let v = native_list_append(v, ["Gand", "noun", "Gand", "", "", "", "the Ganges a"]) + let v = native_list_append(v, ["ferge", "noun", "ferge", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["laith", "noun", "laith", "latha", "", "", "ale liquor"]) + let v = native_list_append(v, ["dér", "noun", "déra", "déir", "déraib", "", "tear teardrop from"]) + let v = native_list_append(v, ["cath", "noun", "cathae", "catho", "cathaib", "", "battle fight"]) + let v = native_list_append(v, ["árus", "noun", "árusa", "áruis", "árusaib", "", "habitation abode"]) + let v = native_list_append(v, ["fulang", "noun", "fulaing", "fulaing", "fulung", "", "verbal noun of"]) + let v = native_list_append(v, ["salm", "noun", "sailm", "sailm", "salmaib", "", "psalm"]) + let v = native_list_append(v, ["Lochlannach", "noun", "Lochlannaig", "Lochlannaig", "Lochlannachaib", "", "Norseman"]) + let v = native_list_append(v, ["Grec", "noun", "Grec", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["roí", "noun", "roí", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cainnt", "noun", "cainnt", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["leth", "noun", "leithe", "leith", "leuth", "", "half"]) + let v = native_list_append(v, ["daim", "noun", "daim", "", "", "", "inflection of dam"]) + let v = native_list_append(v, ["dám", "noun", "dáma", "dámae", "dáim", "", "company retinue party"]) + let v = native_list_append(v, ["fáid", "noun", "fáid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tír", "noun", "tíre", "tíre", "tírib", "", "land country territory"]) + let v = native_list_append(v, ["crann", "noun", "cranna", "cruinn", "crunn", "", "tree"]) + let v = native_list_append(v, ["laa", "noun", "laa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tharta", "noun", "tharta", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["uair", "noun", "uair", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lorg", "noun", "luirg", "luirg", "lurg", "", "path track"]) + let v = native_list_append(v, ["aimsir", "noun", "aimsir", "", "", "", "inflection of aimser"]) + let v = native_list_append(v, ["aithne", "noun", "aithnib", "aithni", "aithniu", "", "verbal noun of"]) + let v = native_list_append(v, ["Albain", "noun", "Albain", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["catha", "noun", "catha", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["grís", "noun", "grís", "gríse", "", "", "heat fire embers"]) + let v = native_list_append(v, ["cís", "noun", "císae", "císo", "císaib", "", "tax tribute cess"]) + let v = native_list_append(v, ["taig", "noun", "taig", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fér", "noun", "féra", "féuir", "féor", "", "grass"]) + let v = native_list_append(v, ["chon", "noun", "chon", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cumail", "noun", "cumail", "", "", "", "inflection of cumal"]) + let v = native_list_append(v, ["tón", "noun", "tóna", "tóne", "tóin", "", "rear end buttocks"]) + let v = native_list_append(v, ["chaur", "noun", "chaur", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["rád", "noun", "ráid", "ráid", "rádaib", "", "verbal noun of"]) + let v = native_list_append(v, ["mul", "noun", "muil", "muil", "mulaib", "", "mass heap lump"]) + let v = native_list_append(v, ["gili", "noun", "gili", "", "", "", "inflection of gile"]) + let v = native_list_append(v, ["maig", "noun", "maig", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lae", "noun", "lae", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["athar", "noun", "athar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tuill", "noun", "tuill", "", "", "", "inflection of toll"]) + let v = native_list_append(v, ["fers", "noun", "fersai", "ferso", "fersaib", "", "verse"]) + let v = native_list_append(v, ["bachlaig", "noun", "bachlaig", "", "", "", "inflection of bachlach"]) + let v = native_list_append(v, ["lúas", "noun", "lúas", "lúaso", "", "", "swiftness speed"]) + let v = native_list_append(v, ["scule", "noun", "scule", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["aue", "noun", "aui", "aui", "uu", "", "grandson"]) + let v = native_list_append(v, ["articol", "noun", "articuil", "articuil", "articlaib", "", "article"]) + let v = native_list_append(v, ["ollam", "noun", "ollomain", "olloman", "ollomain", "", "master in a"]) + let v = native_list_append(v, ["glinn", "noun", "glinn", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["glinne", "noun", "glinne", "", "", "", "inflection of glenn"]) + let v = native_list_append(v, ["saír", "noun", "saír", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cloich", "noun", "cloich", "", "", "", "inflection of cloch"]) + let v = native_list_append(v, ["catho", "noun", "catho", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["ainim", "noun", "ainim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sruth", "noun", "srotha", "srotho", "srothaib", "", "stream river current"]) + let v = native_list_append(v, ["notaire", "noun", "notairi", "notairi", "notairiu", "", "scribe secretary amanuensis"]) + let v = native_list_append(v, ["lerg", "noun", "lerga", "lergae", "leirg", "", "hillside"]) + let v = native_list_append(v, ["lés", "noun", "lésae", "léso", "lésaib", "", "light radiance"]) + let v = native_list_append(v, ["chaire", "noun", "chaire", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Ádam", "noun", "Ádam", "", "", "", "Adam husband of"]) + let v = native_list_append(v, ["derbráthair", "noun", "derbráithir", "derbráthar", "derbráithrib", "", "brother by blood"]) + let v = native_list_append(v, ["bráthair", "noun", "bráithir", "bráthar", "bráithrib", "", "brother cousin kinsman"]) + let v = native_list_append(v, ["argat", "noun", "argat", "argait", "argut", "", "money"]) + let v = native_list_append(v, ["ocus", "noun", "ocus", "", "", "", "nearness proximity"]) + let v = native_list_append(v, ["cét", "noun", "céta", "céit", "cétaib", "", "hundred"]) + let v = native_list_append(v, ["píast", "noun", "píasta", "péiste", "péist", "", "beast"]) + let v = native_list_append(v, ["bláth", "noun", "bláthae", "blátho", "bláthaib", "", "flower"]) + let v = native_list_append(v, ["éscae", "noun", "éscae", "éscai", "éscu", "", "moon"]) + let v = native_list_append(v, ["srón", "noun", "sróna", "sróine", "sróin", "", "nose"]) + let v = native_list_append(v, ["adaig", "noun", "aidchi", "aidche", "aidchi", "", "night"]) + let v = native_list_append(v, ["lám", "noun", "láma", "láme", "láim", "", "hand"]) + let v = native_list_append(v, ["lebor", "noun", "libuir", "libuir", "lebraib", "", "book"]) + let v = native_list_append(v, ["grád", "noun", "gráda", "gráda", "grádaib", "", "love affection fondness"]) + let v = native_list_append(v, ["lenab", "noun", "lenaib", "lenaib", "lenbaib", "", "baby"]) + let v = native_list_append(v, ["gáeth", "noun", "gáetha", "gaíthe", "gaíth", "", "wind"]) + let v = native_list_append(v, ["scían", "noun", "scéna", "scéine", "scín", "", "knife"]) + let v = native_list_append(v, ["ainmm", "noun", "anman", "anmae", "anmaim", "", "name"]) + let v = native_list_append(v, ["slíab", "noun", "sléibe", "sléibe", "sléib", "", "mountain mountain range"]) + let v = native_list_append(v, ["cnocc", "noun", "cnuicc", "cnuicc", "cnucc", "", "hill"]) + let v = native_list_append(v, ["mucc", "noun", "mucca", "muicce", "muicc", "", "pig sow"]) + let v = native_list_append(v, ["íasc", "noun", "éisc", "éisc", "íascaib", "", "fish"]) + let v = native_list_append(v, ["snechtae", "noun", "snechtai", "snechtai", "snechtu", "", "snow"]) + let v = native_list_append(v, ["rétglu", "noun", "rétglainn", "rétglann", "rétglainn", "", "star"]) + let v = native_list_append(v, ["imdae", "noun", "imdai", "imdad", "imdai", "", "bed"]) + let v = native_list_append(v, ["peccad", "noun", "pecthe", "pectha", "peccath", "", "sin"]) + let v = native_list_append(v, ["óc", "noun", "óic", "óic", "ócaib", "", "young man"]) + let v = native_list_append(v, ["crocenn", "noun", "croicnea", "crocainn", "crocunn", "", "skin hide"]) + let v = native_list_append(v, ["fíacail", "noun", "fíaclai", "fíacla", "fíaclaib", "", "tooth"]) + let v = native_list_append(v, ["tengae", "noun", "tengaid", "tengad", "tengaid", "", "tongue"]) + let v = native_list_append(v, ["sacart", "noun", "sacairt", "sacairt", "sacurt", "", "priest"]) + let v = native_list_append(v, ["druimm", "noun", "drummae", "drommo", "drummaib", "", "back"]) + let v = native_list_append(v, ["fairrge", "noun", "fairrgi", "", "fairrgi", "", "sea ocean"]) + let v = native_list_append(v, ["macc", "noun", "maicc", "maicc", "mac", "", "son"]) + let v = native_list_append(v, ["imb", "noun", "imb", "imme", "immim", "", "butter"]) + let v = native_list_append(v, ["grían", "noun", "gríana", "gréine", "gréin", "", "sun"]) + let v = native_list_append(v, ["cóiced", "noun", "cóiceda", "cóicid", "cóiciud", "", "fifth fraction"]) + let v = native_list_append(v, ["bás", "noun", "bása", "báis", "básaib", "", "verbal noun of"]) + let v = native_list_append(v, ["scíath", "noun", "scéith", "scéith", "scíathaib", "", "shield buckler"]) + let v = native_list_append(v, ["bannae", "noun", "bannai", "bannai", "bannu", "", "drop"]) + let v = native_list_append(v, ["bolg", "noun", "builg", "builg", "bolgaib", "", "belly stomach"]) + let v = native_list_append(v, ["blíadain", "noun", "blíadnai", "blíadnae", "blíadnai", "", "year"]) + let v = native_list_append(v, ["sóer", "noun", "soír", "soír", "sóeraib", "", "freeman"]) + let v = native_list_append(v, ["tosach", "noun", "tosge", "tosaig", "tosuch", "", "beginning"]) + let v = native_list_append(v, ["tét", "noun", "tétae", "této", "tétaib", "", "cord"]) + let v = native_list_append(v, ["étan", "noun", "étain", "étain", "étanaib", "", "brow"]) + let v = native_list_append(v, ["glenn", "noun", "glinne", "glinne", "glinn", "", "valley"]) + let v = native_list_append(v, ["tús", "noun", "túsae", "túso", "túsaib", "", "beginning"]) + let v = native_list_append(v, ["neim", "noun", "neimi", "neime", "neimim", "", "poison"]) + let v = native_list_append(v, ["béo", "noun", "bí", "bí", "béoaib", "", "being"]) + let v = native_list_append(v, ["flechud", "noun", "flechuid", "flechuid", "flechdaib", "", "rain"]) + let v = native_list_append(v, ["folt", "noun", "fuilt", "fuilt", "foltaib", "", "hair"]) + let v = native_list_append(v, ["frém", "noun", "fréma", "fréime", "fréim", "", "root"]) + let v = native_list_append(v, ["cúan", "noun", "cúana", "cúaine", "cúain", "", "litter"]) + let v = native_list_append(v, ["cích", "noun", "cíche", "cíche", "cíchib", "", "breast"]) + let v = native_list_append(v, ["aingel", "noun", "aingil", "aingil", "aingiul", "", "angel"]) + let v = native_list_append(v, ["scél", "noun", "scéla", "scéuil", "scéul", "", "story narration tale"]) + let v = native_list_append(v, ["siur", "noun", "sethir", "sethar", "siair", "", "sister"]) + let v = native_list_append(v, ["búachaill", "noun", "búachailli", "búachallo", "búachaillib", "", "cowherd"]) + let v = native_list_append(v, ["Goídelc", "noun", "Goídelc", "Goídilce", "Goídilc", "", "the Old Irish"]) + let v = native_list_append(v, ["Goídel", "noun", "Goídil", "Goídil", "Goídiul", "", "Gael"]) + let v = native_list_append(v, ["úan", "noun", "úain", "úain", "úanaib", "", "lamb"]) + let v = native_list_append(v, ["lóeg", "noun", "loíg", "loíg", "lóegaib", "", "calf"]) + let v = native_list_append(v, ["focul", "noun", "focula", "focuil", "foculaib", "", "word"]) + let v = native_list_append(v, ["glúin", "noun", "glúin", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["glún", "noun", "glúne", "glúne", "glúin", "", "knee"]) + let v = native_list_append(v, ["túath", "noun", "túatha", "túaithe", "túaith", "", "tribe"]) + let v = native_list_append(v, ["claideb", "noun", "claidib", "claidib", "claidiub", "", "sword"]) + let v = native_list_append(v, ["láech", "noun", "laích", "laích", "láechaib", "", "warrior"]) + let v = native_list_append(v, ["Lugnasad", "noun", "Lugnasad", "", "", "", "August"]) + let v = native_list_append(v, ["saírse", "noun", "saírsi", "saírsi", "saírsiu", "", "craftsmanship"]) + let v = native_list_append(v, ["eochair", "noun", "eochrai", "eochro", "eochraib", "", "key"]) + let v = native_list_append(v, ["Samain", "noun", "Samain", "", "", "", "November"]) + let v = native_list_append(v, ["póca", "noun", "póca", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["gae", "noun", "gai", "gai", "gaib", "", "spear"]) + let v = native_list_append(v, ["dóer", "noun", "doír", "doír", "", "", "serf"]) + let v = native_list_append(v, ["doíre", "noun", "doíre", "", "doíri", "", "captivity"]) + let v = native_list_append(v, ["banscál", "noun", "banscála", "banscáil", "banscálaib", "", "woman"]) + let v = native_list_append(v, ["lepaid", "noun", "lepthai", "leptha", "lepthaib", "", "harborage protection"]) + let v = native_list_append(v, ["dérgud", "noun", "dérgudae", "dérgudo", "dérgudaib", "", "verbal noun of"]) + let v = native_list_append(v, ["bélrae", "noun", "bélraib", "bélrai", "bélru", "", "language speech"]) + let v = native_list_append(v, ["láir", "noun", "láiri", "láro", "láirib", "", "mare female horse"]) + let v = native_list_append(v, ["ech", "noun", "eich", "eich", "eoch", "", "horse"]) + let v = native_list_append(v, ["marcrad", "noun", "marcrada", "marcraide", "marcraid", "", "cavalry"]) + let v = native_list_append(v, ["turcbál", "noun", "turcbál", "turcbálae", "turcbáil", "", "verbal noun of"]) + let v = native_list_append(v, ["gním", "noun", "gnímae", "gnímo", "gnímaib", "", "verbal noun of"]) + let v = native_list_append(v, ["déu", "noun", "déu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["locht", "noun", "lochtae", "lochta", "lochtaib", "", "fault"]) + let v = native_list_append(v, ["úasal", "noun", "úaisle", "úaslo", "úaislib", "", "lofty place"]) + let v = native_list_append(v, ["Colmán", "noun", "Colmáin", "Colmáin", "Colmánaib", "", "a male given"]) + let v = native_list_append(v, ["cír", "noun", "círa", "círe", "círaib", "", "comb rake"]) + let v = native_list_append(v, ["Beltaine", "noun", "Beltaine", "", "", "", "May"]) + let v = native_list_append(v, ["sechtmain", "noun", "sechtmaini", "sechtmaine", "sechtmaini", "", "week"]) + let v = native_list_append(v, ["deired", "noun", "deired", "deirid", "deiriud", "", "remainder residue"]) + let v = native_list_append(v, ["dair", "noun", "daraig", "dara", "daraig", "", "oak"]) + let v = native_list_append(v, ["datha", "noun", "datha", "", "", "", "inflection of dath"]) + let v = native_list_append(v, ["mún", "noun", "mún", "", "", "", "urine"]) + let v = native_list_append(v, ["láime", "noun", "láime", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["claidib", "noun", "claidib", "", "", "", "inflection of claideb"]) + let v = native_list_append(v, ["léimm", "noun", "léimmen", "léimme", "léimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["áitt", "noun", "áitte", "áitte", "áttaib", "", "place situation position"]) + let v = native_list_append(v, ["sráit", "noun", "sráiti", "sráite", "sráiti", "", "street road path"]) + let v = native_list_append(v, ["Satharn", "noun", "Satharn", "Sathairn", "Sathurn", "", "Saturday day of"]) + let v = native_list_append(v, ["cáise", "noun", "cáise", "cáisi", "cáisiu", "", "cheese"]) + let v = native_list_append(v, ["clúas", "noun", "clúasa", "clúaise", "clúais", "", "ear"]) + let v = native_list_append(v, ["fáth", "noun", "fáthae", "fátho", "fáthaib", "", "cause reason"]) + let v = native_list_append(v, ["cnáim", "noun", "cnámai", "cnámo", "cnámaib", "", "bone"]) + let v = native_list_append(v, ["medón", "noun", "medóin", "medóin", "medónaib", "", "middle"]) + let v = native_list_append(v, ["colinn", "noun", "colnai", "colno", "colnaib", "", "the body"]) + let v = native_list_append(v, ["táid", "noun", "tádaid", "tádat", "tádaid", "", "thief"]) + let v = native_list_append(v, ["trian", "noun", "trïan", "trïuin", "trïun", "", "a third 1/3"]) + let v = native_list_append(v, ["forc", "noun", "forc", "", "", "", "fork"]) + let v = native_list_append(v, ["Máirt", "noun", "Máirt", "Máirte", "Máirti", "", "Tuesday day of"]) + let v = native_list_append(v, ["múch", "noun", "múch", "múiche", "múich", "", "smoke vapor"]) + let v = native_list_append(v, ["muintir", "noun", "muintir", "", "", "", "inflection of muinter"]) + let v = native_list_append(v, ["cuilén", "noun", "culíuin", "culíuin", "cuilénaib", "", "pup puppy"]) + let v = native_list_append(v, ["póc", "noun", "póca", "póice", "póic", "", "kiss"]) + let v = native_list_append(v, ["glóir", "noun", "glóire", "glóire", "glóraib", "", "glory"]) + let v = native_list_append(v, ["cloc", "noun", "cloic", "cloic", "clocaib", "", "bell"]) + let v = native_list_append(v, ["deug", "noun", "deuga", "dige", "dig", "", "drink"]) + let v = native_list_append(v, ["manach", "noun", "manaig", "manaig", "manchaib", "", "monk"]) + let v = native_list_append(v, ["gein", "noun", "gene", "gene", "geinim", "", "verbal noun of"]) + let v = native_list_append(v, ["saegul", "noun", "saeguil", "saeguil", "saeglaib", "", "lifetime"]) + let v = native_list_append(v, ["cúl", "noun", "cúil", "cúil", "cúlaib", "", "back"]) + let v = native_list_append(v, ["lucu", "noun", "lucu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["muccfoil", "noun", "muccfolaig", "muccfolach", "muccfolaig", "", "pigsty"]) + let v = native_list_append(v, ["ubull", "noun", "ubla", "ubuill", "ublaib", "", "apple"]) + let v = native_list_append(v, ["gabor", "noun", "gabair", "gabair", "gabraib", "", "goat"]) + let v = native_list_append(v, ["cocad", "noun", "coicthe", "coctho", "cocud", "", "war"]) + let v = native_list_append(v, ["damán allaid", "noun", "damáin altai", "damáin allaid", "damánaib altaib", "", "spider"]) + let v = native_list_append(v, ["dúnad", "noun", "dúnaid", "dúnaid", "dúnud", "", "encampment fort residence"]) + let v = native_list_append(v, ["sessam", "noun", "sessam", "sesmo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["Bretnas", "noun", "Bretnas", "", "", "", "Welsh language"]) + let v = native_list_append(v, ["fín", "noun", "fína", "fíno", "fínaib", "", "wine"]) + let v = native_list_append(v, ["cailech", "noun", "cailig", "cailig", "cailechaib", "", "rooster"]) + let v = native_list_append(v, ["Notlaic", "noun", "Notlaic", "Notlac", "", "", "Christmas"]) + let v = native_list_append(v, ["fiach", "noun", "fïaich", "fïaich", "fïuch", "", "raven"]) + let v = native_list_append(v, ["adarc", "noun", "adarca", "adarcae", "adairc", "", "horn growth on"]) + let v = native_list_append(v, ["ailén", "noun", "ailéoin", "ailéoin", "ailéon", "", "island"]) + let v = native_list_append(v, ["muinter", "noun", "muintera", "muintire", "muintir", "", "community group of"]) + let v = native_list_append(v, ["slicht", "noun", "slechtae", "slechto", "slechtaib", "", "mark"]) + let v = native_list_append(v, ["roth", "noun", "roith", "roith", "routh", "", "wheel"]) + let v = native_list_append(v, ["Cásc", "noun", "Cásc", "Cáscae", "Cáisc", "", "Easter"]) + let v = native_list_append(v, ["Cían", "noun", "Cían", "", "", "", "Son of Dían"]) + let v = native_list_append(v, ["gnáth", "noun", "gnáith", "", "gnáthaib", "", "intimates familiar friends"]) + let v = native_list_append(v, ["tene", "noun", "tene", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Mumu", "noun", "Mumu", "Muman", "Mumain", "", "Munster the southernmost"]) + let v = native_list_append(v, ["fíadach", "noun", "fíadach", "fíadaig", "fíaduch", "", "hunting"]) + let v = native_list_append(v, ["fíad", "noun", "fíadae", "fíado", "fíadaib", "", "game wild animals"]) + let v = native_list_append(v, ["othar", "noun", "othar", "", "", "", "work labour"]) + let v = native_list_append(v, ["mescae", "noun", "mescai", "", "mescai", "", "drunkenness intoxication"]) + let v = native_list_append(v, ["teglach", "noun", "teglacha", "teglaig", "teglachaib", "", "family"]) + let v = native_list_append(v, ["othrus", "noun", "othrusae", "othrais", "othrusaib", "", "illness"]) + let v = native_list_append(v, ["mlas", "noun", "mlas", "", "", "", "flavour"]) + let v = native_list_append(v, ["ingine", "noun", "ingine", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cerd", "noun", "cerda", "cerdae", "ceird", "", "craft skill"]) + let v = native_list_append(v, ["Ériu", "noun", "Ériu", "Érenn", "Érinn", "", "Ireland a country"]) + let v = native_list_append(v, ["líach", "noun", "líacha", "léige", "léig", "", "alternative form of"]) + let v = native_list_append(v, ["brí", "noun", "brig", "breg", "brig", "", "hill"]) + let v = native_list_append(v, ["bríg", "noun", "bríga", "bríge", "brígaib", "", "force power"]) + let v = native_list_append(v, ["Bretain", "noun", "Bretnu", "Bretan", "Bretnaib", "", "Britons"]) + let v = native_list_append(v, ["Albu", "noun", "Albu", "Alban", "Albain", "", "Scotland a country"]) + let v = native_list_append(v, ["úar", "noun", "úara", "úaire", "úair", "", "hour time occasion"]) + let v = native_list_append(v, ["aimser", "noun", "aimsera", "aimsire", "aimsir", "", "point in time"]) + let v = native_list_append(v, ["cú allaid", "noun", "coin altai", "con allaid", "coin allaid", "", "wolf"]) + let v = native_list_append(v, ["macc tíre", "noun", "macc tíre", "", "", "", "wolf"]) + let v = native_list_append(v, ["sebac", "noun", "sebaic", "sebaic", "sebuc", "", "hawk"]) + let v = native_list_append(v, ["anme", "noun", "anme", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cland", "noun", "clanda", "clainde", "claind", "", "children"]) + let v = native_list_append(v, ["Críst", "noun", "Críst", "", "", "", "Christ"]) + let v = native_list_append(v, ["marbán", "noun", "marbáin", "marbáin", "marbánaib", "", "corpse dead person"]) + let v = native_list_append(v, ["Gall", "noun", "Gaill", "Gaill", "Gallaib", "", "Gaul person from"]) + let v = native_list_append(v, ["pupall", "noun", "pupaill", "pupaill", "pupull", "", "tent"]) + let v = native_list_append(v, ["brithemnas", "noun", "brithemnas", "brithemnasa", "", "", "judgment adjudication"]) + let v = native_list_append(v, ["admat", "noun", "admait", "admait", "admut", "", "invention"]) + let v = native_list_append(v, ["gamuin", "noun", "gamnai", "gamno", "gamnaib", "", "calf yearling"]) + let v = native_list_append(v, ["comairle", "noun", "comairle", "", "comairli", "", "verbal noun of"]) + let v = native_list_append(v, ["íarn", "noun", "íairn", "íairn", "ïurn", "", "iron"]) + let v = native_list_append(v, ["cnú", "noun", "cnói", "cnó", "cnoí", "", "nut"]) + let v = native_list_append(v, ["tigernae", "noun", "tigernai", "", "tigernai", "", "lord"]) + let v = native_list_append(v, ["scol", "noun", "scola", "scule", "scoil", "", "school educational institution"]) + let v = native_list_append(v, ["bárach", "noun", "bárach", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["flaithius", "noun", "flaithius", "flaithiuso", "", "", "rule sovereignty"]) + let v = native_list_append(v, ["flaithemnas", "noun", "flaithemnas", "flaithemnasa", "", "", "rule sovereignty"]) + let v = native_list_append(v, ["flaithem", "noun", "flaithemain", "flaithemon", "flaithemain", "", "prince"]) + let v = native_list_append(v, ["flaithemnacht", "noun", "flaithemnacht", "flaithemnachtae", "", "", "rule"]) + let v = native_list_append(v, ["talam", "noun", "talmain", "talman", "talmain", "", "earth dry land"]) + let v = native_list_append(v, ["gébend", "noun", "gébind", "gébind", "gébendaib", "", "bond fetter"]) + let v = native_list_append(v, ["croch", "noun", "crocha", "croiche", "croich", "", "cross"]) + let v = native_list_append(v, ["úachtar", "noun", "úachtara", "úachtair", "úachtur", "", "surface top"]) + let v = native_list_append(v, ["áes", "noun", "áesa", "aís", "áesaib", "", "age years"]) + let v = native_list_append(v, ["circe", "noun", "circe", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Cóiced Muman", "noun", "Cóiced Muman", "", "", "", "Munster a province"]) + let v = native_list_append(v, ["cairdes", "noun", "cairdes", "cairdesa", "", "", "friendship"]) + let v = native_list_append(v, ["fescor", "noun", "fescor", "fescuir", "", "", "evening eventide vespers"]) + let v = native_list_append(v, ["féil", "noun", "féili", "féile", "féili", "", "festival feast day"]) + let v = native_list_append(v, ["cathrach", "noun", "cathrach", "", "", "", "inflection of cathair"]) + let v = native_list_append(v, ["ilar", "noun", "ilar", "ilair", "ilur", "", "multitude multiplicity"]) + let v = native_list_append(v, ["bréc", "noun", "bréca", "bréice", "bréic", "", "lie falsehood"]) + let v = native_list_append(v, ["cuirm", "noun", "corman", "corma", "cormaim", "", "ale beer"]) + let v = native_list_append(v, ["saille", "noun", "saille", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dorchae", "noun", "dorchaib", "dorchai", "dorchu", "", "darkness gloom"]) + let v = native_list_append(v, ["Brigit", "noun", "Brigit", "Brigte", "Brigti", "", "The goddess of"]) + let v = native_list_append(v, ["Manainn", "noun", "Manainn", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["Oíngus", "noun", "Oíngus", "Oíngusa", "", "", "The Gaelic god"]) + let v = native_list_append(v, ["Alaxander", "noun", "Alaxander", "", "", "", "a male given"]) + let v = native_list_append(v, ["Abbán", "noun", "Abbán", "Abbáin", "", "", "a male given"]) + let v = native_list_append(v, ["grammatach", "noun", "grammatacha", "grammatache", "grammatachaib", "", "grammar"]) + let v = native_list_append(v, ["buide", "noun", "buidi", "", "buidi", "", "yellowness"]) + let v = native_list_append(v, ["Connachta", "noun", "Connacht", "Connacht", "Connachtaib", "", "Connacht a province"]) + let v = native_list_append(v, ["luí", "noun", "luae", "luae", "luaib", "", "rudder"]) + let v = native_list_append(v, ["cáelán", "noun", "cáeláin", "cáeláin", "cáelánaib", "", "gut bowel"]) + let v = native_list_append(v, ["cuib", "noun", "cuib", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["millsén", "noun", "millsén", "millséin", "", "", "a preparation of"]) + let v = native_list_append(v, ["slán", "noun", "slána", "sláin", "slánaib", "", "challenge defiance"]) + let v = native_list_append(v, ["sláinte", "noun", "sláinte", "", "sláinti", "", "health freedom from"]) + let v = native_list_append(v, ["creitem", "noun", "creitem", "creitme", "creitim", "", "verbal noun of"]) + let v = native_list_append(v, ["ainder", "noun", "aindre", "aindre", "aindir", "", "married woman nonvirgin"]) + let v = native_list_append(v, ["caindel", "noun", "caindlea", "caindle", "caindil", "", "candle light"]) + let v = native_list_append(v, ["chois", "noun", "chois", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cluiche", "noun", "cluichib", "cluichi", "cluichiu", "", "game play sport"]) + let v = native_list_append(v, ["Dagdae", "noun", "Dagdae", "Dagdai", "Dagdu", "", "An important god"]) + let v = native_list_append(v, ["colmán", "noun", "colmáin", "colmáin", "colmánaib", "", "little dove"]) + let v = native_list_append(v, ["columb", "noun", "coluimb", "coluimb", "columbaib", "", "dove"]) + let v = native_list_append(v, ["marggad", "noun", "marggad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["margad", "noun", "margaid", "margaid", "margadaib", "", "market marketplace"]) + let v = native_list_append(v, ["ferán", "noun", "feráin", "feráin", "feránaib", "", "little man"]) + let v = native_list_append(v, ["bech", "noun", "beich", "beich", "beuch", "", "bee"]) + let v = native_list_append(v, ["partán", "noun", "partáin", "partáin", "partánaib", "", "crab"]) + let v = native_list_append(v, ["Clídna", "noun", "Clídna", "", "", "", "A goddess of"]) + let v = native_list_append(v, ["lennat", "noun", "lennat", "", "", "", "lover sweetheart mistress"]) + let v = native_list_append(v, ["smacht", "noun", "smachtae", "smachta", "smachtaib", "", "rule institute institution"]) + let v = native_list_append(v, ["trete", "noun", "trete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bruith", "noun", "bruith", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["muilt", "noun", "muilt", "", "", "", "inflection of molt"]) + let v = native_list_append(v, ["tuige", "noun", "tuigi", "", "tuigi", "", "alternative form of"]) + let v = native_list_append(v, ["Hierusalem", "noun", "Hierusalem", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gentraige", "noun", "gentraige", "", "gentraigi", "", "laughter-inducing strain of"]) + let v = native_list_append(v, ["goltraige", "noun", "goltraigi", "", "goltraigi", "", "sorrowful strain of"]) + let v = native_list_append(v, ["súantraige", "noun", "súantraige", "", "súantraigi", "", "sleep-inducing strain of"]) + let v = native_list_append(v, ["súan", "noun", "súan", "súain", "", "", "slumber sleep"]) + let v = native_list_append(v, ["cairde", "noun", "cairdi", "cairdi", "cairdi", "", "covenant"]) + let v = native_list_append(v, ["cathaír", "noun", "cathaíri", "cathaíre", "cathaíri", "", "chair"]) + let v = native_list_append(v, ["lennántacht", "noun", "lennántacht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caire", "noun", "cairi", "", "cairi", "", "crime sin"]) + let v = native_list_append(v, ["rainn", "noun", "rainn", "", "", "", "inflection of rann"]) + let v = native_list_append(v, ["Rúadán", "noun", "Rúadán", "", "", "", "A character from"]) + let v = native_list_append(v, ["fingal", "noun", "fingala", "fingaile", "fingail", "", "kinslaying parricide fratricide"]) + let v = native_list_append(v, ["fingalach", "noun", "fingalaig", "fingalaig", "fingalchaib", "", "parricide someone who"]) + let v = native_list_append(v, ["ocían", "noun", "ocían", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["océn", "noun", "océin", "océin", "océnaib", "", "ocean deep sea"]) + let v = native_list_append(v, ["muimme", "noun", "muimmi", "", "muimmi", "", "wet nurse foster"]) + let v = native_list_append(v, ["aill", "noun", "aill", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sleb", "noun", "sleb", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["brecc", "noun", "bricc", "bricc", "briucc", "", "trout"]) + let v = native_list_append(v, ["dias", "noun", "dias", "desse", "diïs", "", "pair couple used"]) + let v = native_list_append(v, ["samrad", "noun", "samraid", "samraid", "samrud", "", "summer"]) + let v = native_list_append(v, ["stán", "noun", "stán", "", "", "", "tin"]) + let v = native_list_append(v, ["amaires", "noun", "amaires", "amairise", "amairis", "", "unbelief faithlessness"]) + let v = native_list_append(v, ["cuirp", "noun", "cuirp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["snáithe", "noun", "snáithi", "snáithi", "snáithiu", "", "thread strand"]) + let v = native_list_append(v, ["domun", "noun", "domuin", "domuin", "domnaib", "", "the world the"]) + let v = native_list_append(v, ["lachu", "noun", "lachain", "lachan", "lachain", "", "duck"]) + let v = native_list_append(v, ["clár", "noun", "clára", "cláir", "cláraib", "", "board plank"]) + let v = native_list_append(v, ["cruth", "noun", "crothae", "crotha", "crud", "", "form shape"]) + let v = native_list_append(v, ["ulcha", "noun", "ulchai", "ulchae", "ulchai", "", "beard"]) + let v = native_list_append(v, ["derc", "noun", "derca", "deirc", "dercaib", "", "eye"]) + let v = native_list_append(v, ["scréch", "noun", "scrécha", "scréiche", "scréich", "", "cry shout scream"]) + let v = native_list_append(v, ["noídiu", "noun", "noídin", "noíden", "noídin", "", "infant young child"]) + let v = native_list_append(v, ["noídenacht", "noun", "noídenacht", "noídenachtae", "", "", "infancy early childhood"]) + let v = native_list_append(v, ["cloicenn", "noun", "cloicenna", "cloicinn", "cloiciunn", "", "skull"]) + let v = native_list_append(v, ["traig", "noun", "traigid", "traiged", "traigid", "", "foot"]) + let v = native_list_append(v, ["tráig", "noun", "trágai", "trágo", "trágaib", "", "strand shore"]) + let v = native_list_append(v, ["Dainiél", "noun", "Dainiél", "", "", "", "Daniel the Biblical"]) + let v = native_list_append(v, ["daingen", "noun", "daingne", "daingin", "daingnib", "", "stronghold fastness fortress"]) + let v = native_list_append(v, ["cúairt", "noun", "cúartai", "cúarta", "cúartaib", "", "circle ring circuit"]) + let v = native_list_append(v, ["ammait", "noun", "ammaiti", "ammaite", "ammaiti", "", "woman with supernatural"]) + let v = native_list_append(v, ["noíden", "noun", "noíden", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["immáin", "noun", "immána", "immáine", "immánaib", "", "verbal noun of"]) + let v = native_list_append(v, ["gríb", "noun", "gríba", "gríbe", "gríbaib", "", "gyrfalcon griffin"]) + let v = native_list_append(v, ["chích", "noun", "chích", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["theine", "noun", "theine", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["glór", "noun", "glóir", "glóir", "glóraib", "", "voice sound noise"]) + let v = native_list_append(v, ["luchta", "noun", "luchta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["builg", "noun", "builg", "", "", "", "inflection of bolg"]) + let v = native_list_append(v, ["bunad", "noun", "bunada", "bunaid", "bunud", "", "origin"]) + let v = native_list_append(v, ["tráth", "noun", "trátha", "trátho", "tráthaib", "", "period of time"]) + let v = native_list_append(v, ["giun", "noun", "genae", "geno", "gin", "", "mouth"]) + let v = native_list_append(v, ["scíathán", "noun", "scíatháin", "scíatháin", "scíathánaib", "", "wing"]) + let v = native_list_append(v, ["Núadu", "noun", "Núadu", "Núadat", "Núadait", "", "Núadu Airgetlám a"]) + let v = native_list_append(v, ["Núadat", "noun", "Núadat", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ríar", "noun", "ríara", "réire", "réir", "", "will wish"]) + let v = native_list_append(v, ["tám", "noun", "tám", "", "", "", "plague disease"]) + let v = native_list_append(v, ["bruach", "noun", "bruacha", "bruïg", "bruüch", "", "edge brink"]) + let v = native_list_append(v, ["deiscipul", "noun", "deiscipuil", "deiscipuil", "deisciplaib", "", "disciple"]) + let v = native_list_append(v, ["díu", "noun", "díu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lúan", "noun", "lúain", "lúain", "lúanaib", "", "Monday"]) + let v = native_list_append(v, ["llong", "noun", "llong", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["magistru", "noun", "magistru", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["gairm", "noun", "garman", "garma", "garmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["cethrar", "noun", "cethrar", "cethrair", "cethrur", "", "four people"]) + let v = native_list_append(v, ["séissilbe", "noun", "séissilbi", "", "séissilbi", "", "the murmur or"]) + let v = native_list_append(v, ["spirut", "noun", "spiruta", "spiruto", "spirutaib", "", "spirit incorporeal being"]) + let v = native_list_append(v, ["scoth", "noun", "scotha", "scoithe", "scoith", "", "flower blossom"]) + let v = native_list_append(v, ["sáil", "noun", "sáil", "", "", "", "inflection of sál"]) + let v = native_list_append(v, ["caile", "noun", "caili", "", "caili", "", "serving-girl maid sometimes"]) + let v = native_list_append(v, ["chenna", "noun", "chenna", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["carpat", "noun", "carpait", "carpait", "carput", "", "chariot"]) + let v = native_list_append(v, ["acuis", "noun", "acuis", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["indidit", "noun", "indidit", "indideto", "", "", "assertion statement"]) + let v = native_list_append(v, ["indas", "noun", "indas+L", "indassa", "indassaib", "", "manner method"]) + let v = native_list_append(v, ["selige", "noun", "seligi", "seligi", "seligiu", "", "Any animal with"]) + let v = native_list_append(v, ["ríge", "noun", "rígib", "rígi", "rígiu", "", "ruling kingship sovereignty"]) + let v = native_list_append(v, ["arae", "noun", "araid", "arad", "araid", "", "charioteer"]) + let v = native_list_append(v, ["carae", "noun", "carait", "carat", "carait", "", "friend"]) + let v = native_list_append(v, ["ardae", "noun", "ardai", "", "ardai", "", "height"]) + let v = native_list_append(v, ["cáin", "noun", "cánai", "cáno", "cánaib", "", "law system set"]) + let v = native_list_append(v, ["cumung", "noun", "cumung", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sinnach", "noun", "sinnaig", "sinnaig", "sinnuch", "", "fox"]) + let v = native_list_append(v, ["snáth", "noun", "snáth", "snáith", "", "", "threads"]) + let v = native_list_append(v, ["dénum", "noun", "dénmae", "dénmo", "dénmaib", "", "verbal noun of"]) + let v = native_list_append(v, ["circul", "noun", "circuil", "circuil", "circlaib", "", "circle orbit zone"]) + let v = native_list_append(v, ["beithe", "noun", "beithi", "beithi", "beithiu", "", "birch tree birchwood"]) + let v = native_list_append(v, ["sieir", "noun", "sieir", "", "", "", "inflection of siur"]) + let v = native_list_append(v, ["raithnech", "noun", "raithnech", "raithnige", "raithnig", "", "fern bracken"]) + let v = native_list_append(v, ["cré", "noun", "cré", "crïad", "crïeid", "", "clay earth"]) + let v = native_list_append(v, ["marbad", "noun", "marbad", "marbtho", "", "", "verbal noun of"]) + let v = native_list_append(v, ["amnair", "noun", "amnair", "", "", "", "maternal uncle"]) + let v = native_list_append(v, ["saill", "noun", "saill", "saille", "", "", "salted meat especially"]) + let v = native_list_append(v, ["Finnacán", "noun", "Finnacán", "", "", "", "a male given"]) + let v = native_list_append(v, ["Áedacán", "noun", "Áedacán", "", "", "", "a male given"]) + let v = native_list_append(v, ["áed", "noun", "aíde", "aídeo", "aíd", "", "fire"]) + let v = native_list_append(v, ["Áed", "noun", "Áed", "Áedo", "", "", "a male given"]) + let v = native_list_append(v, ["marcach", "noun", "marcaig", "marcaig", "marcuch", "", "rider horseman"]) + let v = native_list_append(v, ["ferg", "noun", "ferg", "fercae", "feirg", "", "anger wrath"]) + let v = native_list_append(v, ["doirseo", "noun", "doirseo", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["súlo", "noun", "súlo", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dliged", "noun", "dligeda", "dligid", "dligud", "", "law rule"]) + let v = native_list_append(v, ["dligud", "noun", "dligud", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["dligid", "noun", "dligid", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["odb", "noun", "uidb", "uidb", "udb", "", "knot in a"]) + let v = native_list_append(v, ["féile", "noun", "féile", "féili", "féili", "", "modesty generosity"]) + let v = native_list_append(v, ["ráth", "noun", "rátha", "ráithe", "ráith", "", "surety guarantor"]) + let v = native_list_append(v, ["ráith", "noun", "ráith", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["rúsc", "noun", "rúsc", "rúisc", "", "", "bark of a"]) + let v = native_list_append(v, ["cern", "noun", "cerna", "ceirne", "ceirn", "", "dish or receptacle"]) + let v = native_list_append(v, ["célide", "noun", "célidi", "célidi", "célidiu", "", "visit act of"]) + let v = native_list_append(v, ["cenél", "noun", "cenéla", "ceníuil", "cenéul", "", "race group of"]) + let v = native_list_append(v, ["cridi", "noun", "cridi", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["treise", "noun", "treisi", "", "treisi", "", "triduum period of"]) + let v = native_list_append(v, ["lagat", "noun", "lagat", "", "lagait", "", "smallness scantiness fewness"]) + let v = native_list_append(v, ["caractar", "noun", "caractar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["daltae", "noun", "daltai", "daltai", "daltu", "", "foster-son fosterling nursling"]) + let v = native_list_append(v, ["daltus", "noun", "daltusae", "daltuso", "daltusaib", "", "fosterage pupilage"]) + let v = native_list_append(v, ["sáile", "noun", "sáile", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anál", "noun", "anála", "anáile", "anáil", "", "breathing breath"]) + let v = native_list_append(v, ["gliaid", "noun", "gliaid", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["caitt", "noun", "caitt", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["intinn", "noun", "intinn", "intinne", "", "", "mind view disposition"]) + let v = native_list_append(v, ["inse", "noun", "inse", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["capull", "noun", "capull", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["lár", "noun", "lára", "láir", "láraib", "", "surface ground floor"]) + let v = native_list_append(v, ["luam", "noun", "luamain", "luamon", "luamain", "", "pilot steersman"]) + let v = native_list_append(v, ["Saxain", "noun", "Saxanu", "Saxan", "Saxanaib", "", "Anglo-Saxons"]) + let v = native_list_append(v, ["neir", "noun", "neir", "", "", "", "inflection of ner"]) + let v = native_list_append(v, ["talman", "noun", "talman", "", "", "", "genitive all numbers"]) + let v = native_list_append(v, ["geir", "noun", "geir", "geired", "geirid", "", "tallow animal fat"]) + let v = native_list_append(v, ["tíre", "noun", "tíre", "", "", "", "inflection of tír"]) + let v = native_list_append(v, ["bretnas", "noun", "bretnasa", "bretnaise", "bretnais", "", "brooch pin"]) + let v = native_list_append(v, ["óil", "noun", "óil", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["midchuarta", "noun", "midchuarta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["midchuairt", "noun", "midchuartai", "midchuarta", "midchuartaib", "", "mead-circuit a banquet-hall"]) + let v = native_list_append(v, ["Mide", "noun", "Mide", "Midi", "Midiu", "", "Meath a county"]) + let v = native_list_append(v, ["othrais", "noun", "othrais", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tech screptra", "noun", "tech screptra", "", "", "", "monastic library"]) + let v = native_list_append(v, ["scriptuir", "noun", "scriptuiri", "screptaire", "scriptuiri", "", "holy scripture Holy"]) + let v = native_list_append(v, ["tech sét", "noun", "tech sét", "", "", "", "treasury"]) + let v = native_list_append(v, ["bachall", "noun", "bachla", "bachlae", "bachaill", "", "staff"]) + let v = native_list_append(v, ["brithem", "noun", "brithemain", "brithemon", "brithemain", "", "judge brehon jurist"]) + let v = native_list_append(v, ["sacerdotalacht", "noun", "sacerdotalachta", "sacerdotalachtae", "sacerdotalachtaib", "", "priesthood"]) + let v = native_list_append(v, ["capaill", "noun", "capaill", "", "", "", "inflection of capall"]) + let v = native_list_append(v, ["cochaill", "noun", "cochaill", "", "", "", "inflection of cochall"]) + let v = native_list_append(v, ["seirc", "noun", "seirc", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["forcan", "noun", "forcan", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["théta", "noun", "théta", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["seir", "noun", "seirith", "seireth", "seirith", "", "heel"]) + let v = native_list_append(v, ["lettáeb", "noun", "lettaíb", "lettaíb", "lettáebaib", "", "side"]) + let v = native_list_append(v, ["léine", "noun", "léini", "léined", "léini", "", "linen"]) + let v = native_list_append(v, ["cotlud", "noun", "cotlud", "cotulto", "", "", "verbal noun of"]) + let v = native_list_append(v, ["daltán", "noun", "daltáin", "daltáin", "daltánaib", "", "little foster child"]) + let v = native_list_append(v, ["gabul", "noun", "gabuil", "gabuil", "gablaib", "", "fork"]) + let v = native_list_append(v, ["táeb", "noun", "taíb", "taíb", "táebaib", "", "alternative form of"]) + let v = native_list_append(v, ["lassar", "noun", "lasra", "lasrae", "lassair", "", "flame fire"]) + let v = native_list_append(v, ["medc", "noun", "medc", "midc", "", "", "whey"]) + let v = native_list_append(v, ["medg", "noun", "medg", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["paiter", "noun", "paitre", "paitre", "paitir", "", "paternoster Lords Prayer"]) + let v = native_list_append(v, ["chenel", "noun", "chenel", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["buinne", "noun", "buinnib", "buinni", "buinniu", "", "torrent flood"]) + let v = native_list_append(v, ["irbág", "noun", "irbága", "irbáige", "irbáig", "", "verbal noun of"]) + let v = native_list_append(v, ["cenn", "noun", "cenna", "cinn", "ciunn", "", "head"]) + let v = native_list_append(v, ["Ierusalem", "noun", "Ierusalem", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Maccidóndu", "noun", "Maccidóndai", "Maccidóndai", "Maccidóndaib", "", "Macedonians"]) + let v = native_list_append(v, ["irbáig", "noun", "irbáig", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["anman", "noun", "anman", "", "", "", "inflection of ainmm"]) + let v = native_list_append(v, ["súile", "noun", "súile", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["abacc", "noun", "abaicc", "abaicc", "abaccaib", "", "dwarf"]) + let v = native_list_append(v, ["aicned", "noun", "aicneda", "aicnid", "aicniud", "", "inherent quality essence"]) + let v = native_list_append(v, ["gné", "noun", "gnée", "gnée", "gnéib", "", "kind sort"]) + let v = native_list_append(v, ["saiget", "noun", "saigtea", "saigte", "saigit", "", "arrow dart javelin"]) + let v = native_list_append(v, ["bolc", "noun", "bolc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Dall", "noun", "Dall", "", "", "", "a male given"]) + let v = native_list_append(v, ["beuch", "noun", "beuch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cuil", "noun", "cuili", "colo", "cuilib", "", "fly"]) + let v = native_list_append(v, ["srath", "noun", "srath", "", "", "", "grass sward"]) + let v = native_list_append(v, ["sindach", "noun", "sindach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sinser", "noun", "sinsir", "sinsir", "sinsiur", "", "the elder eldest"]) + let v = native_list_append(v, ["sinserbráthair", "noun", "sinserbráithir", "sinserbráthar", "sinserbráithrib", "", "elder brother senior"]) + let v = native_list_append(v, ["sinsersiur", "noun", "sinserṡethir", "sinserṡethar", "sinserṡiair", "", "elder sister"]) + let v = native_list_append(v, ["scríbend", "noun", "scríbenda", "scríbind", "scríbund", "", "verbal noun of"]) + let v = native_list_append(v, ["cuirt", "noun", "cuirti", "cuirte", "cuirti", "", "court"]) + let v = native_list_append(v, ["togu", "noun", "togu", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["aiccend", "noun", "aiccind", "aiccind", "aiccendaib", "", "accent"]) + let v = native_list_append(v, ["carait", "noun", "carait", "", "", "", "inflection of carae"]) + let v = native_list_append(v, ["metrapoil", "noun", "metrapoil", "", "", "", "metropolis mother-city"]) + let v = native_list_append(v, ["Égept", "noun", "Égept", "", "", "", "Egypt a country"]) + let v = native_list_append(v, ["éisc", "noun", "éisc", "", "", "", "inflection of íasc"]) + let v = native_list_append(v, ["Domnall", "noun", "Domnaill", "Domnaill", "Domnallaib", "", "a male given"]) + let v = native_list_append(v, ["escong", "noun", "esconga", "escuinge", "escuing", "", "eel"]) + let v = native_list_append(v, ["luchorp", "noun", "luchuirp", "luchuirp", "luchorpaib", "", "dwarf water sprite"]) + let v = native_list_append(v, ["cumme", "noun", "cumme", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["soilse", "noun", "soilsi", "", "soilsi", "", "brightness. light"]) + let v = native_list_append(v, ["cirt", "noun", "cirt", "", "", "", "genitive/dative singular of"]) + let v = native_list_append(v, ["scríbnid", "noun", "scríbnidi", "scríbnedo", "scríbnidib", "", "scribe professional writer"]) + let v = native_list_append(v, ["fásach", "noun", "fásaige", "fásaige", "fásaig", "", "precedent a decision"]) + let v = native_list_append(v, ["gaile", "noun", "gaili", "gaili", "gailiu", "", "stomach"]) + let v = native_list_append(v, ["Sión", "noun", "Sión", "", "", "", "Zion a hill"]) + let v = native_list_append(v, ["Boand", "noun", "Boand", "Bóinde", "Boïnd", "", "the Boyne a"]) + let v = native_list_append(v, ["Dánaim", "noun", "Dánaim", "", "", "", "Don Tanais a"]) + let v = native_list_append(v, ["Berbae", "noun", "Berbae", "", "", "", "the Barrow a"]) + let v = native_list_append(v, ["Drobaís", "noun", "Drobaís", "Drobesa", "", "", "the Drowes a"]) + let v = native_list_append(v, ["Doél", "noun", "Doél", "Dóele", "", "", "a river in"]) + let v = native_list_append(v, ["Dothra", "noun", "Dothra", "", "", "", "the Dodder a"]) + let v = native_list_append(v, ["Órthannán", "noun", "Órthannán", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Iordanén", "noun", "Iordanén", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Eorthanán", "noun", "Eorthanán", "", "", "", "the Jordan a"]) + let v = native_list_append(v, ["Muad", "noun", "Muad", "", "", "", "the Moy a"]) + let v = native_list_append(v, ["Grífíne", "noun", "Grífíne", "", "", "", "a male given"]) + let v = native_list_append(v, ["Grillán", "noun", "Grillán", "", "", "", "a male given"]) + let v = native_list_append(v, ["Grillíne", "noun", "Grillíne", "", "", "", "a male given"]) + let v = native_list_append(v, ["Abracham", "noun", "Abracham", "Abrache", "", "", "Abraham biblical figure"]) + let v = native_list_append(v, ["Eua", "noun", "Eua", "", "", "", "Eve the first"]) + let v = native_list_append(v, ["Banba", "noun", "Banba", "", "", "", "Ireland an island"]) + let v = native_list_append(v, ["Iohain Baptaist", "noun", "Iohain Baptaist", "", "", "", "John the Baptist"]) + let v = native_list_append(v, ["bróc", "noun", "bróca", "bróice", "bróic", "", "shoe sandal"]) + let v = native_list_append(v, ["Conchobar", "noun", "Conchobar", "Conchobair", "Conchobur", "", "a male given"]) + let v = native_list_append(v, ["Cóemgen", "noun", "Cóemgen", "Coímgin", "", "", "a male given"]) + let v = native_list_append(v, ["Lugaid", "noun", "Lugaid", "Luigdech", "Luigdig", "", "a male given"]) + let v = native_list_append(v, ["Etáil", "noun", "Etáil", "Étale", "Étail", "", "Italy a country"]) + let v = native_list_append(v, ["míad", "noun", "míada", "méid", "míadaib", "", "honour dignity elevation"]) + let v = native_list_append(v, ["intamail", "noun", "intamlai", "intamlae", "intamlaib", "", "verbal noun of"]) + let v = native_list_append(v, ["bolad", "noun", "boltae", "bolto", "bolud", "", "smell scent usually"]) + let v = native_list_append(v, ["samail", "noun", "samlai", "samlo", "samlaib", "", "verbal noun of"]) + let v = native_list_append(v, ["Gráinde", "noun", "Gráinde", "", "", "", "a female given"]) + let v = native_list_append(v, ["canóin", "noun", "canóin", "canóine", "", "", "canon religious law"]) + let v = native_list_append(v, ["denum", "noun", "denum", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["soiscélae", "noun", "soiscélaib", "soiscélai", "soiscélu", "", "the good news"]) + let v = native_list_append(v, ["úath", "noun", "úathae", "úatho", "úathaib", "", "fear horror terror"]) + let v = native_list_append(v, ["líath", "noun", "léith", "", "líathaib", "", "old man veteran"]) + let v = native_list_append(v, ["féith", "noun", "féith", "fétho", "", "", "calm stillness"]) + let v = native_list_append(v, ["daig", "noun", "daigi", "dego", "daigib", "", "flame blaze conflagration"]) + let v = native_list_append(v, ["anáil", "noun", "anáil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["censae", "noun", "censae", "cense", "censai", "", "gentleness"]) + let v = native_list_append(v, ["Í", "noun", "Í", "Íae", "", "", "Iona an island"]) + let v = native_list_append(v, ["airfitech", "noun", "airfitig", "airfitig", "airfitiuch", "", "minstrel player musician"]) + let v = native_list_append(v, ["crott", "noun", "crotta", "croitte", "croitt", "", "harp lute"]) + let v = native_list_append(v, ["cruitt", "noun", "cruitti", "cruitteo", "cruittib", "", "harpist"]) + let v = native_list_append(v, ["cruittire", "noun", "cruittiri", "cruittiri", "cruittiriu", "", "harpist"]) + let v = native_list_append(v, ["popul", "noun", "popuil", "popuil", "poplaib", "", "people"]) + let v = native_list_append(v, ["slis", "noun", "slesae", "sleso", "slesaib", "", "side wall"]) + let v = native_list_append(v, ["slisne", "noun", "slisne", "", "", "", "side"]) + let v = native_list_append(v, ["aís", "noun", "aís", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adrad", "noun", "adarthae", "adartho", "adarthaib", "", "verbal noun of"]) + let v = native_list_append(v, ["láine", "noun", "láine", "", "láini", "", "fullness"]) + let v = native_list_append(v, ["céir", "noun", "céir", "céire", "", "", "wax"]) + let v = native_list_append(v, ["sílne", "noun", "sílni", "sílni", "sílniu", "", "seminal fluid seed"]) + let v = native_list_append(v, ["síl", "noun", "síla", "", "sílaib", "", "seed"]) + let v = native_list_append(v, ["sceith", "noun", "sceith", "sceithe", "sceithi", "", "verbal noun of"]) + let v = native_list_append(v, ["marmar", "noun", "marmara", "marmaire", "marmair", "", "marble"]) + let v = native_list_append(v, ["móin", "noun", "mónai", "mónae", "mónai", "", "peat moss"]) + let v = native_list_append(v, ["étach", "noun", "étaige", "étaig", "étachaib", "", "verbal noun of"]) + let v = native_list_append(v, ["scéim", "noun", "scéim", "", "", "", "inflection of scíam"]) + let v = native_list_append(v, ["broin", "noun", "broin", "", "", "", "inflection of bran"]) + let v = native_list_append(v, ["tolg", "noun", "tuilg", "tuilg", "tulg", "", "cubicle compartment around"]) + let v = native_list_append(v, ["circ", "noun", "circ", "", "", "", "inflection of cerc"]) + let v = native_list_append(v, ["Dauid", "noun", "Dauid", "", "", "", "David king of"]) + let v = native_list_append(v, ["foithir", "noun", "fuithir", "fuithir", "fothiur", "", "a piece of"]) + let v = native_list_append(v, ["ócht", "noun", "ócht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ógdacht", "noun", "ógdacht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["elatha", "noun", "elatha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uinnius", "noun", "uinnsinn", "uinnsenn", "uinnsinn", "", "ash tree"]) + let v = native_list_append(v, ["fáith", "noun", "fáithi", "fátho", "fáithib", "", "seer soothsayer"]) + let v = native_list_append(v, ["Cú Chulainn", "noun", "Cú Chulainn", "Con Culainn", "Coin Chulainn", "", "Cú Chulainn a"]) + let v = native_list_append(v, ["gláed", "noun", "gláeda", "glaíde", "glaíd", "", "shout loud call"]) + let v = native_list_append(v, ["glaídem", "noun", "glaidemain", "glaidemon", "glaídemain", "", "wolf"]) + let v = native_list_append(v, ["gláedach", "noun", "gláedacha", "gláedaige", "gláedaig", "", "verbal noun of"]) + let v = native_list_append(v, ["eó", "noun", "ïaich", "ïach", "ïaich", "", "salmon"]) + let v = native_list_append(v, ["mochrád", "noun", "mochrád", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dín", "noun", "dín", "dína", "", "", "protection defence shelter"]) + let v = native_list_append(v, ["céille", "noun", "céille", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sróine", "noun", "sróine", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["foglaimm", "noun", "foglaimm", "foglaimme", "foglaimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["grinne", "noun", "grinni", "grinni", "grinniu", "", "the point of"]) + let v = native_list_append(v, ["lére", "noun", "lére", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tomus", "noun", "toimsiu", "toimseo", "", "", "act of weighing"]) + let v = native_list_append(v, ["láib", "noun", "láib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["Dé", "noun", "Dé", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["fiur", "noun", "fiur", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["grinde", "noun", "grindi", "", "grindi", "", "intentness keenness"]) + let v = native_list_append(v, ["acis", "noun", "acis", "", "", "", "only used in"]) + let v = native_list_append(v, ["gaili", "noun", "gaili", "", "", "", "inflection of gaile"]) + let v = native_list_append(v, ["dunum", "noun", "dunum", "", "", "", "misspelling of dénum"]) + let v = native_list_append(v, ["cétal", "noun", "cétla", "cétail", "cétul", "", "verbal noun of"]) + let v = native_list_append(v, ["Conláed", "noun", "Conláed", "", "", "", "a male given"]) + let v = native_list_append(v, ["úathad", "noun", "úaite", "úathaid", "úaitib", "", "a small number"]) + let v = native_list_append(v, ["luc", "noun", "luc", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["olann", "noun", "olann", "ollnae", "olainn", "", "wool"]) + let v = native_list_append(v, ["gaisced", "noun", "gaiscid", "gaiscid", "gaisciud", "", "weapons arms armor"]) + let v = native_list_append(v, ["céilsine", "noun", "céilsine", "", "céilsini", "", "status of a"]) + let v = native_list_append(v, ["síd", "noun", "síde", "síde", "sídib", "", "fairy mound"]) + let v = native_list_append(v, ["aingil", "noun", "aingil", "", "", "", "inflection of aingel"]) + let v = native_list_append(v, ["Rómán", "noun", "Rómáin", "Rómáin", "Rómánaib", "", "Roman"]) + let v = native_list_append(v, ["bruth", "noun", "brothae", "brotho", "brothaib", "", "raging violent or"]) + let v = native_list_append(v, ["reithe", "noun", "reithi", "reithi", "reithiu", "", "ram male sheep"]) + let v = native_list_append(v, ["céill", "noun", "céill", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["cros", "noun", "crossa", "croisse", "crois", "", "cross geometrical figure"]) + let v = native_list_append(v, ["deacht", "noun", "deacht", "deachtae", "deachta", "", "godliness divinity"]) + let v = native_list_append(v, ["persin", "noun", "persin", "", "", "", "inflection of persan"]) + let v = native_list_append(v, ["gnímu", "noun", "gnímu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["caur", "noun", "cauraid", "caurad", "cauraid", "", "hero warrior"]) + let v = native_list_append(v, ["cauru", "noun", "caírig", "caírech", "caírig", "", "sheep"]) + let v = native_list_append(v, ["margaid", "noun", "margaid", "", "", "", "inflection of margad"]) + let v = native_list_append(v, ["cocubus", "noun", "cocubus", "", "", "", "conscience"]) + let v = native_list_append(v, ["cobais", "noun", "coibsin", "coibsen", "coibsin", "", "confession of sin"]) + let v = native_list_append(v, ["écubus", "noun", "écubus", "écubso", "", "", "want of conscience"]) + let v = native_list_append(v, ["airfitiud", "noun", "airfiti", "airfiteo", "airfitib", "", "verbal noun of"]) + let v = native_list_append(v, ["análfadach", "noun", "análfadach", "análfadaige", "análfadaig", "", "breath as something"]) + let v = native_list_append(v, ["engach", "noun", "engaig", "engaig", "engachaib", "", "babbler prater"]) + let v = native_list_append(v, ["gíall", "noun", "géill", "géill", "gíallaib", "", "jaw"]) + let v = native_list_append(v, ["mían", "noun", "míana", "méin", "míanaib", "", "desire inclination object"]) + let v = native_list_append(v, ["úacht", "noun", "úacht", "úachto", "", "", "cold coldness"]) + let v = native_list_append(v, ["tromchride", "noun", "tromchridib", "tromchridi", "tromchridiu", "", "liver"]) + let v = native_list_append(v, ["oráit", "noun", "oráiti", "oráito", "oráitib", "", "prayer"]) + let v = native_list_append(v, ["muinél", "noun", "muiniúil", "muiniúil", "muinéol", "", "neck"]) + let v = native_list_append(v, ["Máel", "noun", "Máel", "", "", "", "As a name"]) + let v = native_list_append(v, ["máel", "noun", "máela", "maíle", "maíl", "", "A head or"]) + let v = native_list_append(v, ["cossa", "noun", "cossa", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["doír", "noun", "doír", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sáer", "noun", "saír", "saír", "sáeraib", "", "craftsman"]) + let v = native_list_append(v, ["aub", "noun", "aibnea", "abae", "abainn", "", "river"]) + let v = native_list_append(v, ["berae", "noun", "berae", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["soscéle", "noun", "soscélib", "soscéli", "soscéliu", "", "alternative form of"]) + let v = native_list_append(v, ["soscéli", "noun", "soscéli", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cing", "noun", "cingid", "cinged", "cingid", "", "warrior champion"]) + let v = native_list_append(v, ["apid", "noun", "apid", "", "", "", "inflection of ap"]) + let v = native_list_append(v, ["sinnser", "noun", "sinnser", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ésca", "noun", "ésca", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["éisce", "noun", "éisce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["derbfine", "noun", "derbḟini", "derbḟine", "derbḟini", "", "family group of"]) + let v = native_list_append(v, ["umal", "noun", "umail", "umail", "uimlib", "", "humble obedient person"]) + let v = native_list_append(v, ["glaine", "noun", "glaine", "", "glaini", "", "clearness cleanness"]) + let v = native_list_append(v, ["imme", "noun", "imme", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["rígdae", "noun", "rígdaib", "rígdai", "rígdu", "", "royal dwelling place"]) + let v = native_list_append(v, ["ingenrad", "noun", "ingenrada", "ingenraide", "ingenraid", "", "girls or maidens"]) + let v = native_list_append(v, ["caratrad", "noun", "caratrad", "caratraid", "", "", "friendship alliance"]) + let v = native_list_append(v, ["cosc", "noun", "cosc", "coisc", "", "", "verbal noun of"]) + let v = native_list_append(v, ["slóg", "noun", "slóig", "slóig", "slógaib", "", "army host"]) + let v = native_list_append(v, ["slúag", "noun", "slúag", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ingenrada", "noun", "ingenrada", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["carachtar", "noun", "carachtra", "carachtair", "carachtur", "", "character"]) + let v = native_list_append(v, ["carachtair", "noun", "carachtair", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["charachtair", "noun", "charachtair", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["charachtar", "noun", "charachtar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chrann", "noun", "chrann", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chol", "noun", "chol", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["n-ard", "noun", "n-ard", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nglas", "noun", "nglas", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ndoirse", "noun", "ndoirse", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["echlach", "noun", "echlacha", "echlaige", "echlaig", "", "messenger courier attendant"]) + let v = native_list_append(v, ["chorp", "noun", "chorp", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["coirp", "noun", "coirp", "", "", "", "inflection of corp"]) + let v = native_list_append(v, ["choirp", "noun", "choirp", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cíall", "noun", "cíalla", "céille", "céill", "", "sense intelligence mind"]) + let v = native_list_append(v, ["mebuir", "noun", "mebuir", "mebra", "", "", "recollection memory"]) + let v = native_list_append(v, ["chéill", "noun", "chéill", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mbas", "noun", "mbas", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ungae", "noun", "ungai", "", "ungai", "", "ounce"]) + let v = native_list_append(v, ["uinge", "noun", "uinge", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["menmae", "noun", "menmain", "menman", "menmain", "", "mind"]) + let v = native_list_append(v, ["brith", "noun", "brith", "", "", "", "inflection of breth"]) + let v = native_list_append(v, ["gobae", "noun", "gobainn", "gobann", "gobainn", "", "smith"]) + let v = native_list_append(v, ["themel", "noun", "themel", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["búar", "noun", "búar", "búair", "", "", "cows cattle herds"]) + let v = native_list_append(v, ["tharb", "noun", "tharb", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["sásta", "noun", "sásta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["buidi", "noun", "buidi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["buiden", "noun", "buidnea", "buidne", "buidin", "", "troop band"]) + let v = native_list_append(v, ["buidin", "noun", "buidin", "", "", "", "inflection of buiden"]) + let v = native_list_append(v, ["ucht", "noun", "ocht", "ochto", "ochtaib", "", "breast bosom"]) + let v = native_list_append(v, ["aráin", "noun", "aráin", "", "", "", "inflection of arán"]) + let v = native_list_append(v, ["clú", "noun", "clúe", "clúe", "clúib", "", "fame state of"]) + let v = native_list_append(v, ["druí", "noun", "druïd", "druad", "druïd", "", "druid sorcerer"]) + let v = native_list_append(v, ["toísech", "noun", "toísig", "toísig", "toísechaib", "", "leader chief"]) + let v = native_list_append(v, ["muccaid", "noun", "muccaidi", "muccado", "muccaidib", "", "swineherd"]) + let v = native_list_append(v, ["muccaidecht", "noun", "muccaidechta", "muccaidechtae", "muccaidechtaib", "", "herding swine the"]) + let v = native_list_append(v, ["serc", "noun", "serc", "seirce", "seirc", "", "love both sacred"]) + let v = native_list_append(v, ["sercaid", "noun", "sercaidi", "sercado", "sercaidib", "", "a lover"]) + let v = native_list_append(v, ["déorad", "noun", "déoraid", "déoraid", "déoradaib", "", "stranger outlander"]) + let v = native_list_append(v, ["deorudán", "noun", "deorudáin", "deorudáin", "deorudánaib", "", "exile wanderer"]) + let v = native_list_append(v, ["bannán", "noun", "bannáin", "bannáin", "bannánaib", "", "small drop droplet."]) + let v = native_list_append(v, ["óclach", "noun", "óclacha", "óclaige", "óclaig", "", "young man youngest"]) + let v = native_list_append(v, ["óclachas", "noun", "óclachas", "óclachsa", "", "", "The condition of"]) + let v = native_list_append(v, ["muinteras", "noun", "muinteras", "muinterais", "muinterus", "", "familiarity"]) + let v = native_list_append(v, ["árem", "noun", "árem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ainimm", "noun", "anmain", "anmae", "anmin", "", "soul as opposed"]) + let v = native_list_append(v, ["acaldam", "noun", "acaldam", "acaldmae", "acaldaim", "", "verbal noun of"]) + let v = native_list_append(v, ["mbili", "noun", "mbili", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aithmet", "noun", "aithmet", "aithmit", "", "", "verbal noun of"]) + let v = native_list_append(v, ["aithgne", "noun", "aithgnib", "aichinte", "aithgniu", "", "verbal noun of"]) + let v = native_list_append(v, ["céile Dé", "noun", "céili Dé", "céili Dé", "céiliu Dé", "", "Culdee member of"]) + let v = native_list_append(v, ["céle", "noun", "céle", "céli", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cruimther", "noun", "cruimthir", "cruimthir", "cruimtheraib", "", "priest"]) + let v = native_list_append(v, ["coicéile", "noun", "coicéili", "coicéili", "coicéiliu", "", "vassal bondsman compare"]) + let v = native_list_append(v, ["coicéilsine", "noun", "coicéilsini", "", "coicéilsini", "", "fellowship clientship"]) + let v = native_list_append(v, ["gríanán", "noun", "gríanáin", "gríanáin", "gríanánaib", "", "a sunny place"]) + let v = native_list_append(v, ["mlicht", "noun", "mlicht", "mlichto", "", "", "a milking yield"]) + let v = native_list_append(v, ["mucc mara", "noun", "mucc mara", "muice mara", "", "", "sea-pig porpoise dolphin."]) + let v = native_list_append(v, ["muccullach", "noun", "muccullaig", "muccullaig", "muccullachaib", "", "boar"]) + let v = native_list_append(v, ["cullach", "noun", "cullaig", "cullaig", "cullachaib", "", "boar"]) + let v = native_list_append(v, ["árchú", "noun", "árchoin", "árchon", "árchoin", "", "war-hound slaughter-hound"]) + let v = native_list_append(v, ["ármag", "noun", "ármaige", "ármaige", "ármaig", "", "field of slaughter"]) + let v = native_list_append(v, ["fáithsine", "noun", "fáithsini", "", "fáithsini", "", "prophecy augury"]) + let v = native_list_append(v, ["senátoir", "noun", "senátorai", "senátoro", "senátoraib", "", "senator"]) + let v = native_list_append(v, ["cathach", "noun", "cathacha", "cathaige", "cathaig", "", "relic reliquary from"]) + let v = native_list_append(v, ["eclais", "noun", "ecailsea", "ecailse", "ecailsib", "", "The Christian Church"]) + let v = native_list_append(v, ["cenna", "noun", "cenna", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["áinsid", "noun", "áinsid", "áinsedo", "", "", "accusative case"]) + let v = native_list_append(v, ["ainmmnid", "noun", "ainmmnidi", "ainmnedo", "ainmmnidib", "", "nominative case."]) + let v = native_list_append(v, ["Alpae", "noun", "Alpae", "", "", "", "Alps a mountain"]) + let v = native_list_append(v, ["áirc", "noun", "áirc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["insce", "noun", "insci", "", "insci", "", "a saying speech"]) + let v = native_list_append(v, ["dét", "noun", "détaib", "déit", "déit", "", "tooth"]) + let v = native_list_append(v, ["mbó", "noun", "mbó", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["subae", "noun", "subae", "subai", "subu", "", "joy pleasure happiness"]) + let v = native_list_append(v, ["subachus", "noun", "subachus", "subachso", "", "", "cheerfulness gladness joy"]) + let v = native_list_append(v, ["dubae", "noun", "dubaib", "dubai", "dubu", "", "gloom grief"]) + let v = native_list_append(v, ["dobur", "noun", "dobur", "dobuir", "", "", "water river"]) + let v = native_list_append(v, ["badb", "noun", "badb", "baidb", "Baidb", "", "hooded crow"]) + let v = native_list_append(v, ["Badb", "noun", "Badb", "Baidbe", "Baidb", "", "A goddess of"]) + let v = native_list_append(v, ["doburchú", "noun", "doburchoin", "doburchon", "doburchoin", "", "otter"]) + let v = native_list_append(v, ["scor", "noun", "scuir", "scuir", "scoraib", "", "verbal noun of"]) + let v = native_list_append(v, ["abcolips", "noun", "abcolips", "", "", "", "apocalypse"]) + let v = native_list_append(v, ["ngen", "noun", "ngen", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["gaimred", "noun", "gaimreda", "gaimrid", "gaimredaib", "", "winter"]) + let v = native_list_append(v, ["fogamar", "noun", "fogamar", "fogamair", "fogomur", "", "autumn"]) + let v = native_list_append(v, ["errach", "noun", "errach", "erraig", "erruch", "", "spring season"]) + let v = native_list_append(v, ["lámann", "noun", "lámanna", "lámainne", "lámainn", "", "glove gauntlet"]) + let v = native_list_append(v, ["méin", "noun", "méini", "míana", "méinib", "", "mineral ore metal"]) + let v = native_list_append(v, ["méine", "noun", "méine", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["tempul", "noun", "tempuil", "tempuil", "templaib", "", "temple"]) + let v = native_list_append(v, ["bíad", "noun", "bíada", "biid", "bïud", "", "food"]) + let v = native_list_append(v, ["theg", "noun", "theg", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["rostan", "noun", "rostan", "", "", "", "a rose garden"]) + let v = native_list_append(v, ["chath", "noun", "chath", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["toísig", "noun", "toísig", "", "", "", "inflection of toísech"]) + let v = native_list_append(v, ["óla", "noun", "óla", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["chír", "noun", "chír", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chinn", "noun", "chinn", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["nathrach", "noun", "nathrach", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["nathracha", "noun", "nathracha", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["n-ithe", "noun", "n-ithe", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chorn", "noun", "chorn", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["finnfad", "noun", "finnfaid", "finnfaid", "finnfadaib", "", "hair typically of"]) + let v = native_list_append(v, ["sróna", "noun", "sróna", "", "", "", "nominative and vocative"]) + let v = native_list_append(v, ["crích", "noun", "crícha", "críche", "críg", "", "boundary border"]) + let v = native_list_append(v, ["gréin", "noun", "gréin", "", "", "", "inflection of grían"]) + let v = native_list_append(v, ["muintire", "noun", "muintire", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["dúil", "noun", "dúili", "dúlo", "dúilib", "", "element"]) + let v = native_list_append(v, ["dúin", "noun", "dúin", "", "", "", "inflection of dún"]) + let v = native_list_append(v, ["aeir", "noun", "aeir", "", "", "", "inflection of aer"]) + let v = native_list_append(v, ["búaid", "noun", "búada", "búaide", "bóid", "", "victory triumph"]) + let v = native_list_append(v, ["phóca", "noun", "phóca", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["céili", "noun", "céili", "", "", "", "inflection of céile"]) + let v = native_list_append(v, ["céiliu", "noun", "céiliu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["rúin", "noun", "rúin", "", "", "", "inflection of rún"]) + let v = native_list_append(v, ["bedg", "noun", "bidg", "bidg", "biudg", "", "start spring leap"]) + let v = native_list_append(v, ["brúit", "noun", "brúiti", "brúto", "brúitib", "", "brute beast"]) + let v = native_list_append(v, ["breithem", "noun", "breithem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sén", "noun", "séoin", "seoin", "séon", "", "a sign omen"]) + let v = native_list_append(v, ["feir", "noun", "feir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Conn", "noun", "Conn", "Cuinn", "", "", "a male given"]) + let v = native_list_append(v, ["baithis", "noun", "baithis", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["cnes", "noun", "cnis", "cnis", "cnesaib", "", "skin surface"]) + let v = native_list_append(v, ["corann", "noun", "coirnea", "corne", "corainn", "", "tonsure crown of"]) + let v = native_list_append(v, ["mban", "noun", "mban", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["róe", "noun", "róe", "", "", "", "a withe or"]) + let v = native_list_append(v, ["daum", "noun", "daum", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["daumu", "noun", "daumu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["damaib", "noun", "damaib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Brangen", "noun", "Brangen", "", "", "", "a male given"]) + let v = native_list_append(v, ["Boidmal", "noun", "Boidmal", "", "", "", "a male given"]) + let v = native_list_append(v, ["Muircath", "noun", "Muircath", "", "", "", "a male given"]) + let v = native_list_append(v, ["erigem", "noun", "erigem", "erigme", "erigim", "", "alternative form of"]) + let v = native_list_append(v, ["aball", "noun", "abla", "ablae", "abaill", "", "apple tree"]) + let v = native_list_append(v, ["apgitir", "noun", "apgitri", "apgitre", "apgitrib", "", "alphabet"]) + let v = native_list_append(v, ["ísle", "noun", "ísli", "", "ísli", "", "lowness"]) + let v = native_list_append(v, ["máthar", "noun", "máthar", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["laithe", "noun", "laithib", "laithi", "laithiu", "", "day daytime daylight"]) + let v = native_list_append(v, ["beithir", "noun", "bethraig", "bethrach", "bethraig", "", "bear"]) + let v = native_list_append(v, ["bratt", "noun", "braitt", "braitt", "brut", "", "cloak"]) + let v = native_list_append(v, ["mesai", "noun", "mesai", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["Lachtnae", "noun", "Lachtnae", "", "", "", "a male given"]) + let v = native_list_append(v, ["Lachtnán", "noun", "Lachtnán", "Lachtnáin", "", "", "a male given"]) + let v = native_list_append(v, ["opad", "noun", "opad", "opaid", "", "", "verbal noun of"]) + let v = native_list_append(v, ["iach", "noun", "iach", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["iaich", "noun", "iaich", "", "", "", "inflection of eó"]) + let v = native_list_append(v, ["Conall", "noun", "Conall", "Conaill", "", "", "a male given"]) + let v = native_list_append(v, ["cúán", "noun", "cúáin", "cúáin", "cúánaib", "", "small dog"]) + let v = native_list_append(v, ["tlacht", "noun", "tlachtae", "tlachto", "tlachtaib", "", "covering protection ornament"]) + let v = native_list_append(v, ["chairde", "noun", "chairde", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chúl", "noun", "chúl", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["temel", "noun", "temel", "temil", "temul", "", "darkness"]) + let v = native_list_append(v, ["aiti", "noun", "aiti", "", "", "", "inflection of aite"]) + let v = native_list_append(v, ["cathracha", "noun", "cathracha", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["céul", "noun", "céola", "cíuil", "cíul", "", "musical instrument"]) + let v = native_list_append(v, ["réud", "noun", "ríuid", "ríuid", "réudaib", "", "frost"]) + let v = native_list_append(v, ["mbona", "noun", "mbona", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbrat", "noun", "mbrat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["scáth", "noun", "scátha", "scatha", "scáthaib", "", "shadow shade"]) + let v = native_list_append(v, ["mbaile", "noun", "mbaile", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["Semei", "noun", "Semei", "", "", "", "Shimei"]) + let v = native_list_append(v, ["Echu", "noun", "Echu", "Echach", "Echaig", "", "a male given"]) + let v = native_list_append(v, ["Morrígan", "noun", "Morrígan", "", "", "", "The Mórrígan"]) + let v = native_list_append(v, ["n-othar", "noun", "n-othar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["naue", "noun", "naue", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["moirtchenn", "noun", "moirtchenn", "", "", "", "dead flesh"]) + let v = native_list_append(v, ["moirb", "noun", "morbi", "morbo", "morbaib", "", "ant"]) + let v = native_list_append(v, ["gráin", "noun", "gráin", "", "", "", "awfulness"]) + let v = native_list_append(v, ["Ailill", "noun", "Ailill", "Ailello", "", "", "a male given"]) + let v = native_list_append(v, ["biur", "noun", "beura", "bero", "", "", "alternative form of"]) + let v = native_list_append(v, ["bardu", "noun", "bardu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["slógu", "noun", "slógu", "", "", "", "vocative and accusative"]) + let v = native_list_append(v, ["ditin", "noun", "ditin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cuilenn", "noun", "cuilenn", "cuilinn", "cuiliunn", "", "holly tree"]) + let v = native_list_append(v, ["dígu", "noun", "dígu", "", "", "", "something not to"]) + let v = native_list_append(v, ["dilenn", "noun", "dilenn", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Tit", "noun", "Tit", "", "", "", "Titus"]) + let v = native_list_append(v, ["aisil", "noun", "aisle", "aisle", "aisli", "", "part division joint."]) + let v = native_list_append(v, ["Día", "noun", "Día", "Dé", "", "", "God"]) + let v = native_list_append(v, ["torann", "noun", "torainn", "torainn", "tornib", "", "thunder"]) + let v = native_list_append(v, ["chéile", "noun", "chéile", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ngráin", "noun", "ngráin", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bés", "noun", "bésae", "béso", "bésaib", "", "custom"]) + let v = native_list_append(v, ["leithe", "noun", "leithe", "", "", "", "inflection of leth"]) + let v = native_list_append(v, ["leith", "noun", "leith", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["accrann", "noun", "accranna", "accrainne", "accrainn", "", "sandal shoe"]) + let v = native_list_append(v, ["accuis", "noun", "aicsin", "aicsen", "aicsin", "", "cause occasion reason"]) + let v = native_list_append(v, ["aicsin", "noun", "aicsin", "", "", "", "inflection of accuis"]) + let v = native_list_append(v, ["acrann", "noun", "acranna", "acrainne", "acrainn", "", "alternative spelling of"]) + let v = native_list_append(v, ["accrannaib", "noun", "accrannaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["aicsenaib", "noun", "aicsenaib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["accuiss", "noun", "accuiss", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["aidche", "noun", "aidche", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["aithche", "noun", "aithche", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aidchi", "noun", "aidchi", "", "", "", "inflection of adaig"]) + let v = native_list_append(v, ["aithchi", "noun", "aithchi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aithgi", "noun", "aithgi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["anmain", "noun", "anmain", "", "", "", "inflection of ainimm"]) + let v = native_list_append(v, ["n-aidchi", "noun", "n-aidchi", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adaltras", "noun", "adaltrasae", "adaltrais", "adaltrasaib", "", "adultery"]) + let v = native_list_append(v, ["adbar", "noun", "adbara", "adbair", "adbur", "", "material matter kind"]) + let v = native_list_append(v, ["n-adbar", "noun", "n-adbar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["abissiu", "noun", "abissiu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["accobra", "noun", "accobra", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["acomol", "noun", "acomol", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["accomol", "noun", "accomol", "accomuil", "accomul", "", "verbal noun of"]) + let v = native_list_append(v, ["Eochaid", "noun", "Eochaid", "Eochado", "", "", "a male given"]) + let v = native_list_append(v, ["áth", "noun", "áthae", "átho", "áthaib", "", "ford commonly as"]) + let v = native_list_append(v, ["abstal", "noun", "abstail", "abstail", "abstul", "", "alternative spelling of"]) + let v = native_list_append(v, ["apstal", "noun", "apstail", "apstail", "apstul", "", "apostle"]) + let v = native_list_append(v, ["caithig", "noun", "caithchi", "caithche", "caithchi", "", "trespass"]) + let v = native_list_append(v, ["commant", "noun", "commanda", "commaind", "commund", "", "alliance pact union"]) + let v = native_list_append(v, ["n-ár", "noun", "n-ár", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cáech", "noun", "caích", "caích", "cáechaib", "", "person blind in"]) + let v = native_list_append(v, ["géiss", "noun", "géissi", "gésso", "géissib", "", "swan"]) + let v = native_list_append(v, ["géis", "noun", "géis", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chet", "noun", "chet", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["íasacht", "noun", "íasachtae", "íasachto", "íasachtaib", "", "a loan"]) + let v = native_list_append(v, ["íasachta", "noun", "íasachta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["réir", "noun", "réir", "", "", "", "inflection of ríar"]) + let v = native_list_append(v, ["éis", "noun", "éis", "", "", "", "inflection of és"]) + let v = native_list_append(v, ["cobar", "noun", "cobar", "", "", "", "desiring"]) + let v = native_list_append(v, ["accobar", "noun", "accobra", "accobair", "accobur", "", "verbal noun of"]) + let v = native_list_append(v, ["mís", "noun", "mís", "", "", "", "inflection of mí"]) + let v = native_list_append(v, ["litredacht", "noun", "litredacht", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comarbbae", "noun", "comarbbai", "comarbbai", "comarbbu", "", "heir successor inheritor"]) + let v = native_list_append(v, ["orbbae", "noun", "orbbaib", "orbbai", "orbbu", "", "a patrimony inheritance"]) + let v = native_list_append(v, ["drochet", "noun", "drochta", "drochit", "drochtib", "", "bridge"]) + let v = native_list_append(v, ["Ulaith", "noun", "Ulaith", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ulad", "noun", "Ulad", "", "", "", "genitive of Ulaid"]) + let v = native_list_append(v, ["Ultaib", "noun", "Ultaib", "", "", "", "dative of Ulaid"]) + let v = native_list_append(v, ["hUlltu", "noun", "hUlltu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Ultu", "noun", "Ultu", "", "", "", "vocative plural of"]) + let v = native_list_append(v, ["Ulod", "noun", "Ulod", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Uloth", "noun", "Uloth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ulath", "noun", "Ulath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hUltaib", "noun", "hUltaib", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Laigin", "noun", "Laigniu", "Laigen", "Laignib", "", "Leinstermen"]) + let v = native_list_append(v, ["ríg", "noun", "ríg", "", "", "", "inflection of rí"]) + let v = native_list_append(v, ["anmcharae", "noun", "anmcharait", "anmcharat", "anmcharait", "", "soul-friend confessor spiritual"]) + let v = native_list_append(v, ["corcur", "noun", "corcur", "corcrae", "corcuir", "", "The colour purple"]) + let v = native_list_append(v, ["céo", "noun", "céo", "", "cía", "", "mist water finely"]) + let v = native_list_append(v, ["saltair", "noun", "sailtre", "sailtreo", "sailtrib", "", "the psalter the"]) + let v = native_list_append(v, ["fulaing", "noun", "fulaing", "", "", "", "inflection of fulang"]) + let v = native_list_append(v, ["láa", "noun", "láa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forus", "noun", "foirsea", "foris", "foirsib", "", "stable foundation"]) + let v = native_list_append(v, ["áil", "noun", "áil", "", "", "", "desire wish chiefly"]) + let v = native_list_append(v, ["caurad", "noun", "caurad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cathraig", "noun", "cathraig", "", "", "", "inflection of cathair"]) + let v = native_list_append(v, ["chadraig", "noun", "chadraig", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chathir", "noun", "chathir", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chaithir", "noun", "chaithir", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chathraig", "noun", "chathraig", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cadraig", "noun", "cadraig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cathraich", "noun", "cathraich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cathir", "noun", "cathir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["caithir", "noun", "caithir", "", "", "", "hair except that"]) + let v = native_list_append(v, ["colmáin", "noun", "colmáin", "", "", "", "inflection of colmán"]) + let v = native_list_append(v, ["talmain", "noun", "talmain", "", "", "", "inflection of talam"]) + let v = native_list_append(v, ["tairb", "noun", "tairb", "", "", "", "inflection of tarb"]) + let v = native_list_append(v, ["fír", "noun", "fíra", "", "fíraib", "", "truth"]) + let v = native_list_append(v, ["siair", "noun", "siair", "", "", "", "inflection of siur"]) + let v = native_list_append(v, ["firinne", "noun", "firinne", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bacc", "noun", "baicc", "baicc", "baccaib", "", "hoe mattock"]) + let v = native_list_append(v, ["léire", "noun", "léire", "", "léiri", "", "diligence"]) + let v = native_list_append(v, ["dúna", "noun", "dúna", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["clí", "noun", "clith", "cleth", "clith", "", "housepost"]) + let v = native_list_append(v, ["rosc", "noun", "rosca", "roisc", "rusc", "", "eye"]) + let v = native_list_append(v, ["nél", "noun", "niúil", "niúil", "níul", "", "cloud"]) + let v = native_list_append(v, ["trén", "noun", "trén", "tréuin", "", "", "strong man"]) + let v = native_list_append(v, ["líaig", "noun", "legi", "lego", "legib", "", "doctor physician"]) + let v = native_list_append(v, ["delb", "noun", "delba", "delbae", "deilb", "", "form shape"]) + let v = native_list_append(v, ["bríathar", "noun", "bríathra", "bré (i)thre", "bréthir", "", "word"]) + let v = native_list_append(v, ["dígal", "noun", "dígla", "díglae", "dígail", "", "verbal noun of"]) + let v = native_list_append(v, ["gabál", "noun", "gabála", "gabálae", "gabáil", "", "taking into possession"]) + let v = native_list_append(v, ["bendacht", "noun", "bendachta", "bendachtae", "bendachtaib", "", "blessing"]) + let v = native_list_append(v, ["moídim", "noun", "moídim", "", "", "", "inflection of moídem"]) + let v = native_list_append(v, ["síabair", "noun", "síabrai", "síabro", "síabraib", "", "phantom spectre"]) + let v = native_list_append(v, ["fíne", "noun", "fíni", "", "fíni", "", "vine"]) + let v = native_list_append(v, ["forcenn", "noun", "forcenna", "foircinn", "forcunn", "", "end"]) + let v = native_list_append(v, ["ícc", "noun", "ícc", "ícce", "", "", "verbal noun of"]) + let v = native_list_append(v, ["téit", "noun", "téit", "", "", "", "inflection of tét"]) + let v = native_list_append(v, ["láthar", "noun", "láthra", "láthair", "láthraib", "", "arrangement disposition dispensation"]) + let v = native_list_append(v, ["Fáelán", "noun", "Fáelán", "Fáeláin", "", "", "a male given"]) + let v = native_list_append(v, ["saigid", "noun", "saigid", "saichtheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["séol", "noun", "séola", "siúil", "séolaib", "", "sail"]) + let v = native_list_append(v, ["sroigell", "noun", "sroigle", "sroigill", "sroiglib", "", "scourge whip"]) + let v = native_list_append(v, ["suide", "noun", "suidib", "suidi", "suidiu", "", "verbal noun of"]) + let v = native_list_append(v, ["techt", "noun", "techt", "techtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["teichid", "noun", "teichid", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["treb", "noun", "treba", "treibe", "treib", "", "house farm"]) + let v = native_list_append(v, ["adamrugud", "noun", "adamrugud", "adamraigthe", "", "", "verbal noun of"]) + let v = native_list_append(v, ["acrae", "noun", "acraib", "acrai", "acru", "", "verbal noun of"]) + let v = native_list_append(v, ["Cáemgen", "noun", "Cáemgen", "Cáemgin", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cǽimgen", "noun", "Cǽimgen", "Cǽimgin", "", "", "alternative form of"]) + let v = native_list_append(v, ["Cáemgin", "noun", "Cáemgin", "", "", "", "genitive of Cáemgen"]) + let v = native_list_append(v, ["bélre", "noun", "bélrib", "bélri", "bélru", "", "alternative spelling of"]) + let v = native_list_append(v, ["forbae", "noun", "forbaib", "forbai", "forbu", "", "verbal noun of"]) + let v = native_list_append(v, ["óentu", "noun", "óentu", "óentad", "óentid", "", "oneness unity"]) + let v = native_list_append(v, ["slántu", "noun", "slántu", "slántad", "slántid", "", "health"]) + let v = native_list_append(v, ["treodatu", "noun", "treodatu", "treodatad", "treodataid", "", "threeness trinity"]) + let v = native_list_append(v, ["ailidetu", "noun", "ailidetu", "ailidetad", "ailidetaid", "", "alternation change"]) + let v = native_list_append(v, ["armthatu", "noun", "armthatu", "", "", "", "armor"]) + let v = native_list_append(v, ["arsidetu", "noun", "arsidetu", "arsidetad", "arsidetaid", "", "antiquity"]) + let v = native_list_append(v, ["arsaid", "noun", "arsaidi", "arsaide", "arsaidib", "", "old ancient"]) + let v = native_list_append(v, ["cétnidetu", "noun", "cétnidetu", "cétnidetad", "cétnidetaid", "", "primitive origin"]) + let v = native_list_append(v, ["cotarsnatu", "noun", "cotarsnatu", "cotarsnatath", "cotarsnataith", "", "opposition"]) + let v = native_list_append(v, ["tarsnae", "noun", "tarsnaib", "tarsnai", "tarsnu", "", "crossbeam"]) + let v = native_list_append(v, ["cummatu", "noun", "cummatu", "cummatad", "cummataid", "", "equality"]) + let v = native_list_append(v, ["cummae", "noun", "cummaib", "cummai", "cummu", "", "verbal noun of"]) + let v = native_list_append(v, ["cumscaigthetu", "noun", "cumscaigthetu", "cumscaigthetad", "cumscaigthetaid", "", "mobility"]) + let v = native_list_append(v, ["dúildetu", "noun", "dúildetu", "dúildetad", "duildetaid", "", "essence nature"]) + let v = native_list_append(v, ["ilardatu", "noun", "ilardatu", "ilardatad", "ilardataid", "", "plurality multiplicity"]) + let v = native_list_append(v, ["ildatu", "noun", "ildatu", "ildatad", "ildataid", "", "plurality multiplicity"]) + let v = native_list_append(v, ["immaircidetu", "noun", "immaircidetu", "immaircidetad", "immaircidetaid", "", "fitness appropriateness"]) + let v = native_list_append(v, ["locdatu", "noun", "locdatu", "locdatad", "locdataid", "", "location locality"]) + let v = native_list_append(v, ["máthrathatu", "noun", "máthrathatu", "máthrathatad", "máthrathataid", "", "motherhood condition of"]) + let v = native_list_append(v, ["randatu", "noun", "randatu", "randatad", "randatid", "", "the property of"]) + let v = native_list_append(v, ["saichdetu", "noun", "saichdetaith", "saichdetath", "saichdetaith", "", "act of striving"]) + let v = native_list_append(v, ["toimsidetu", "noun", "toimsidetu", "toimsidetad", "toimsidetaid", "", "measure"]) + let v = native_list_append(v, ["torbatu", "noun", "torbatu", "torbatad", "torbatid", "", "profitableness advantage"]) + let v = native_list_append(v, ["torbae", "noun", "torbae", "torbai", "torbu", "", "verbal noun of"]) + let v = native_list_append(v, ["úaisletu", "noun", "úaisletu", "úaisletad", "úaisletaid", "", "apex climax the"]) + let v = native_list_append(v, ["úaisle", "noun", "úaisle", "", "úaisli", "", "nobility"]) + let v = native_list_append(v, ["uilidetu", "noun", "uilidetu", "uilidetad", "uilidetaid", "", "wholeness universality totality"]) + let v = native_list_append(v, ["Laiten", "noun", "Laiten", "Laitne", "Laitin", "", "Latin language"]) + let v = native_list_append(v, ["airle", "noun", "airli", "", "airli", "", "counsel advice"]) + let v = native_list_append(v, ["thuill", "noun", "thuill", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["boicht", "noun", "boicht", "", "", "", "inflection of bocht"]) + let v = native_list_append(v, ["betha", "noun", "betha", "", "", "", "inflection of bith"]) + let v = native_list_append(v, ["fortacht", "noun", "fortacht", "fortachtae", "fortachtain", "", "verbal noun of"]) + let v = native_list_append(v, ["alltar", "noun", "alltaraib", "alltair", "altur", "", "the next world"]) + let v = native_list_append(v, ["roisc", "noun", "roisc", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Iacob", "noun", "Iacob", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["erigim", "noun", "erigim", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["Israhel", "noun", "Israhel", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["epscop", "noun", "epscoip", "epscoip", "epscopaib", "", "bishop"]) + let v = native_list_append(v, ["arathar", "noun", "arathair", "arathair", "arathraib", "", "plough ploughing equipment"]) + let v = native_list_append(v, ["corae", "noun", "coraid", "corad", "coraid", "", "stone fence palisade"]) + let v = native_list_append(v, ["comus", "noun", "comus", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["anmin", "noun", "anmin", "", "", "", "inflection of ainimm"]) + let v = native_list_append(v, ["aithirge", "noun", "aithirge", "", "aithirgi", "", "verbal noun of"]) + let v = native_list_append(v, ["n-aithirgi", "noun", "n-aithirgi", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aithirgi", "noun", "aithirgi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["athirgi", "noun", "athirgi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["athirge", "noun", "athirge", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["aicsu", "noun", "aicsin", "aicsen", "aicsin", "", "verbal noun of"]) + let v = native_list_append(v, ["meit", "noun", "meit", "meite", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Loth", "noun", "Loth", "", "", "", "Lot nephew of"]) + let v = native_list_append(v, ["lethe", "noun", "lethe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["claidbiu", "noun", "claidbiu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["claidiub", "noun", "claidiub", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["aicce", "noun", "aicci", "", "aicci", "", "nearness proximity"]) + let v = native_list_append(v, ["Laigniu", "noun", "Laigniu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["Laigen", "noun", "Laigen", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["luib", "noun", "luba", "lubae", "lubaib", "", "herb plant"]) + let v = native_list_append(v, ["chapall", "noun", "chapall", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["aillsiu", "noun", "aillsiu", "", "", "", "sore tumor abscess"]) + let v = native_list_append(v, ["chirce", "noun", "chirce", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mbard", "noun", "mbard", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-arán", "noun", "n-arán", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chapaill", "noun", "chapaill", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chos", "noun", "chos", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["beich", "noun", "beich", "", "", "", "inflection of bech"]) + let v = native_list_append(v, ["lathach", "noun", "lathacha", "lathaige", "lathaig", "", "mire puddle homogeneous"]) + let v = native_list_append(v, ["béim", "noun", "béimmen", "béimme", "béimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["cacht", "noun", "cachtae", "cachto", "cachtaib", "", "person in bondage"]) + let v = native_list_append(v, ["imm", "noun", "imm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nGall", "noun", "nGall", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["athchumtach", "noun", "athchumtach", "athchumtaig", "athchumtuch", "", "rebuilding"]) + let v = native_list_append(v, ["adchumtuch", "noun", "adchumtuch", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aidchumtach", "noun", "aidchumtach", "aidchumtaig", "", "", "alternative form of"]) + let v = native_list_append(v, ["athchumtaig", "noun", "athchumtaig", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["athchumtuch", "noun", "athchumtuch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["adchumtach", "noun", "adchumtach", "adchumtaig", "", "", "alternative form of"]) + let v = native_list_append(v, ["n-athchumtach", "noun", "n-athchumtach", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["sulib", "noun", "sulib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ainmne", "noun", "ainmne", "ainmnet", "ainmnit", "", "patience"]) + let v = native_list_append(v, ["rogu", "noun", "rogu", "", "", "", "choice"]) + let v = native_list_append(v, ["dílse", "noun", "dílse", "", "dílsi", "", "propriety"]) + let v = native_list_append(v, ["cumachtae", "noun", "cumachtae", "cumachtai", "cumachtu", "", "power strength might"]) + let v = native_list_append(v, ["n-as", "noun", "n-as", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cói", "noun", "cauig", "cúach", "cauig", "", "cuckoo bird"]) + let v = native_list_append(v, ["chrud", "noun", "chrud", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["carcar", "noun", "carcra", "carcrae", "carcair", "", "prison"]) + let v = native_list_append(v, ["chathair", "noun", "chathair", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["maccu", "noun", "maccu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["chloch", "noun", "chloch", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["nathir", "noun", "nathraig", "nathrach", "nathraig", "", "snake"]) + let v = native_list_append(v, ["crú", "noun", "crú", "cróu", "", "", "blood"]) + let v = native_list_append(v, ["fedb", "noun", "fedba", "fedbae", "feidb", "", "widow"]) + let v = native_list_append(v, ["imbliu", "noun", "imblinn", "imblenn", "imblinn", "", "navel"]) + let v = native_list_append(v, ["áu", "noun", "óe", "áue", "áui", "", "ear organ of"]) + let v = native_list_append(v, ["ochsal", "noun", "ochsal", "", "", "", "armpit"]) + let v = native_list_append(v, ["nDia", "noun", "nDia", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["inathar", "noun", "inathar", "", "", "", "intestines"]) + let v = native_list_append(v, ["mbachall", "noun", "mbachall", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ndé", "noun", "ndé", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["thol", "noun", "thol", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["feidm", "noun", "fedman", "fedmae", "fedmaim", "", "effort"]) + let v = native_list_append(v, ["furóil", "noun", "furóil", "", "", "", "superabundance excess"]) + let v = native_list_append(v, ["foilésán", "noun", "foilésán", "", "", "", "asp type of"]) + let v = native_list_append(v, ["Derdriu", "noun", "Derdriu", "Derdrenn", "Derdrinn", "", "a female given"]) + let v = native_list_append(v, ["thír", "noun", "thír", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chona", "noun", "chona", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dúthracht", "noun", "dúthrachta", "dúthrachtan", "dúthrachtaib", "", "verbal noun of"]) + let v = native_list_append(v, ["sála", "noun", "sála", "", "", "", "nominative and accusative"]) + let v = native_list_append(v, ["chéo", "noun", "chéo", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Ruaidrí", "noun", "Ruaidrí", "Ruadrach", "Ruadraig", "", "a male given"]) + let v = native_list_append(v, ["muire", "noun", "muire", "", "", "", "nominative/vocative/accusative/genitive plural of"]) + let v = native_list_append(v, ["séitig", "noun", "séitchi", "séitche", "séitchi", "", "wife consort"]) + let v = native_list_append(v, ["rígain", "noun", "rígnai", "rígnae", "rígnai", "", "queen"]) + let v = native_list_append(v, ["arim", "noun", "arim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ngrán", "noun", "ngrán", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chenn", "noun", "chenn", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ranna", "noun", "ranna", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["ben síde", "noun", "mná síde", "mná síde", "", "", "banshee fairy woman"]) + let v = native_list_append(v, ["áes síde", "noun", "áes síde", "", "", "", "inhabitants of fairy"]) + let v = native_list_append(v, ["tarsno", "noun", "tarsno", "", "", "", "crosspiece"]) + let v = native_list_append(v, ["n-anman", "noun", "n-anman", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cimbid", "noun", "cimbidi", "cimbetho", "cimbidib", "", "prisoner captive"]) + let v = native_list_append(v, ["phersan", "noun", "phersan", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cétnae phersan", "noun", "cétnae phersan", "cétnae persaine", "cétni phersin", "", "first person"]) + let v = native_list_append(v, ["cétni persin", "noun", "cétni persin", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["suidiu", "noun", "suidiu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["aicci", "noun", "aicci", "", "", "", "inflection of aicce"]) + let v = native_list_append(v, ["n-aicci", "noun", "n-aicci", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["féchem", "noun", "féchemain", "fécheman", "féchemain", "", "debtor"]) + let v = native_list_append(v, ["áigthiu", "noun", "áigthiu", "aichthen", "aichthin", "", "verbal noun of"]) + let v = native_list_append(v, ["thabirt", "noun", "thabirt", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tabirt", "noun", "tabirt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tabairt", "noun", "tabartha", "tabairte", "tabarthaib", "", "verbal noun of"]) + let v = native_list_append(v, ["díglae", "noun", "díglae", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["claind", "noun", "claind", "", "", "", "inflection of cland"]) + let v = native_list_append(v, ["n-imbed", "noun", "n-imbed", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["slóig", "noun", "slóig", "", "", "", "inflection of slóg"]) + let v = native_list_append(v, ["téite", "noun", "téite", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Chríst", "noun", "Chríst", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chosmailius", "noun", "chosmailius", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cosmailius", "noun", "cosmilse", "cosmailseo", "cosmailsib", "", "likeness similarity"]) + let v = native_list_append(v, ["díliu", "noun", "dílinn", "dílenn", "dílinn", "", "flood deluge"]) + let v = native_list_append(v, ["dílenn", "noun", "dílenn", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["nuall", "noun", "nuall", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["núall", "noun", "núalla", "núaill", "núallaib", "", "a loud noise"]) + let v = native_list_append(v, ["námae", "noun", "námait", "námat", "námait", "", "enemy"]) + let v = native_list_append(v, ["naimtea", "noun", "naimtea", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["náimtea", "noun", "náimtea", "", "", "", "vocative and accusative"]) + let v = native_list_append(v, ["suidi", "noun", "suidi", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["comsuidigud", "noun", "comsuidigud", "comṡuidigtheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["rangabáil", "noun", "rangabáil", "rangabálae", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rangabálae", "noun", "rangabálae", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ranngabáil", "noun", "ranngabála", "ranngabálae", "ranngabálaib", "", "participle"]) + let v = native_list_append(v, ["ranngabálae", "noun", "ranngabálae", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["brethir", "noun", "brethir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bréthir", "noun", "bréthir", "", "", "", "inflection of bríathar"]) + let v = native_list_append(v, ["etarscartha", "noun", "etarscartha", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["aís sechmaill", "noun", "aís sechmaill", "", "", "", "passersby"]) + let v = native_list_append(v, ["sechmaill", "noun", "sechmaill", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sechmall", "noun", "sechmall", "sechmaill", "", "", "verbal noun of"]) + let v = native_list_append(v, ["fíni", "noun", "fíni", "", "", "", "inflection of fíne"]) + let v = native_list_append(v, ["thabairt", "noun", "thabairt", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adarcae", "noun", "adarcae", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["adarcaib", "noun", "adarcaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["n-adarcae", "noun", "n-adarcae", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-adarcaib", "noun", "n-adarcaib", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cuit adaill", "noun", "cuit adaill", "", "", "", "a passing visit"]) + let v = native_list_append(v, ["adall", "noun", "adall", "adaill", "", "", "verbal noun of"]) + let v = native_list_append(v, ["adaill", "noun", "adaill", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["torad", "noun", "torud", "toraid", "torud", "", "fruit of a"]) + let v = native_list_append(v, ["torud", "noun", "torud", "", "", "", "inflection of torad"]) + let v = native_list_append(v, ["thorud", "noun", "thorud", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chenél", "noun", "chenél", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cenel", "noun", "cenel", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fect", "noun", "fect", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rect", "noun", "rect", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fogur", "noun", "foguir", "foguir", "fogor", "", "a sound"]) + let v = native_list_append(v, ["pecthae", "noun", "pecthae", "", "", "", "nominative/genitive plural of"]) + let v = native_list_append(v, ["atlugud", "noun", "atlugud", "atligthe", "", "", "verbal noun of"]) + let v = native_list_append(v, ["foísitiu", "noun", "foísitin", "foísiten", "foísitin", "", "verbal noun of"]) + let v = native_list_append(v, ["foísitin", "noun", "foísitin", "", "", "", "inflection of foísitiu"]) + let v = native_list_append(v, ["foisitin", "noun", "foisitin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["creitim", "noun", "creitim", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["chretim", "noun", "chretim", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cretim", "noun", "cretim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cretem", "noun", "cretem", "cretme", "cretim", "", "alternative spelling of"]) + let v = native_list_append(v, ["Ísu", "noun", "Ísu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Íssu", "noun", "Íssu", "", "", "", "Jesus"]) + let v = native_list_append(v, ["nÍsu", "noun", "nÍsu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nÍssu", "noun", "nÍssu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bethu", "noun", "bethu", "bethad", "bethaid", "", "life"]) + let v = native_list_append(v, ["beothu", "noun", "beothu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esséirge", "noun", "esséirge", "esséirgi", "esséirgiu", "", "verbal noun of"]) + let v = native_list_append(v, ["esséirgu", "noun", "esséirgu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-esséirgu", "noun", "n-esséirgu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["indocbál", "noun", "indocbál", "indocbáile", "indocbáil", "", "verbal noun of"]) + let v = native_list_append(v, ["indráigne", "noun", "indráigne", "", "indráigni", "", "detriment"]) + let v = native_list_append(v, ["maisse", "noun", "maisse", "", "maissi", "", "beauty"]) + let v = native_list_append(v, ["mbás", "noun", "mbás", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bethaid", "noun", "bethaid", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["bethid", "noun", "bethid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["guforcell", "noun", "guforcell", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gúforcell", "noun", "gúforcell", "gúḟorcill", "gúḟorciull", "", "false testimony"]) + let v = native_list_append(v, ["forcell", "noun", "forcell", "forcill", "forciull", "", "verbal noun of"]) + let v = native_list_append(v, ["bélrai", "noun", "bélrai", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["belrai", "noun", "belrai", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tengad", "noun", "tengad", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["súilib", "noun", "súilib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["súlib", "noun", "súlib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["clúasaib", "noun", "clúasaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["chlúasaib", "noun", "chlúasaib", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chluasaib", "noun", "chluasaib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bréthre", "noun", "bréthre", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mbréthre", "noun", "mbréthre", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbrethre", "noun", "mbrethre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["brethre", "noun", "brethre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tuailnge", "noun", "tuailnge", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["túailnge", "noun", "túailnge", "", "túailngi", "", "ability capability"]) + let v = native_list_append(v, ["irisse", "noun", "irisse", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["n-irisse", "noun", "n-irisse", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["namat", "noun", "namat", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["imchomarc", "noun", "imchomarca", "imchomairc", "imchumurc", "", "verbal noun of"]) + let v = native_list_append(v, ["méit", "noun", "méit", "méite", "", "", "size magnitude"]) + let v = native_list_append(v, ["fochid", "noun", "fochidi", "fochatho", "fochith", "", "verbal noun of"]) + let v = native_list_append(v, ["fochidi", "noun", "fochidi", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["n-étach", "noun", "n-étach", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-etach", "noun", "n-etach", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["maicc", "noun", "maicc", "", "", "", "inflection of macc"]) + let v = native_list_append(v, ["macc coím", "noun", "maicc coím", "maicc coím", "", "", "Used other than"]) + let v = native_list_append(v, ["maicc coím", "noun", "maicc coím", "", "", "", "inflection of macc"]) + let v = native_list_append(v, ["dechellt", "noun", "dechillt", "dechillt", "dechiullt", "", "garment"]) + let v = native_list_append(v, ["oínfer", "noun", "oínfer", "", "", "", "one person"]) + let v = native_list_append(v, ["oinfer", "noun", "oinfer", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chomalnad", "noun", "chomalnad", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["comalnad", "noun", "comalnad", "comalnada", "", "", "verbal noun of"]) + let v = native_list_append(v, ["croich", "noun", "croich", "", "", "", "inflection of croch"]) + let v = native_list_append(v, ["chroich", "noun", "chroich", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ingreimm", "noun", "ingreimmen", "ingr (a)imme", "ingreimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["Dǽ", "noun", "Dǽ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["filid", "noun", "filid", "", "", "", "inflection of fili"]) + let v = native_list_append(v, ["ndea", "noun", "ndea", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ellach", "noun", "ellach", "ellaig", "elluch", "", "verbal noun of"]) + let v = native_list_append(v, ["ellug", "noun", "ellug", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-ellug", "noun", "n-ellug", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["Abrache", "noun", "Abrache", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["comarpe", "noun", "comarpi", "comarpi", "comarpu", "", "alternative spelling of"]) + let v = native_list_append(v, ["comarpi", "noun", "comarpi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["comarbbai", "noun", "comarbbai", "", "", "", "inflection of comarbbae"]) + let v = native_list_append(v, ["chomarpi", "noun", "chomarpi", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Iacób", "noun", "Iacób", "Iacóib", "", "", "Jacob one of"]) + let v = native_list_append(v, ["Iohain", "noun", "Iohain", "", "", "", "John apostle"]) + let v = native_list_append(v, ["n-abstal", "noun", "n-abstal", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["iress", "noun", "iress", "irisse", "iriss", "", "faith"]) + let v = native_list_append(v, ["iriss", "noun", "iriss", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["n-iriss", "noun", "n-iriss", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cnámai", "noun", "cnámai", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["cnámi", "noun", "cnámi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chnámi", "noun", "chnámi", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Belzefuth", "noun", "Belzefuth", "", "", "", "Beelzebub"]) + let v = native_list_append(v, ["béss", "noun", "béss", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["liacc", "noun", "liacc", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["íath", "noun", "íathae", "íatho", "íathaib", "", "land territory"]) + let v = native_list_append(v, ["saíthar", "noun", "saíthra", "saíthir", "saíthur", "", "work labour"]) + let v = native_list_append(v, ["bánbiad", "noun", "bánbiad", "", "", "", "dairy products"]) + let v = native_list_append(v, ["aicniud", "noun", "aicniud", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-aicniud", "noun", "n-aicniud", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["doíni", "noun", "doíni", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["dóenacht", "noun", "dóenacht", "dóenachtae", "", "", "humanity"]) + let v = native_list_append(v, ["doínacht", "noun", "doínacht", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["doinacht", "noun", "doinacht", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ndodcadchai", "noun", "ndodcadchai", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dodcadchai", "noun", "dodcadchai", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["dodcadchae", "noun", "dodcadchae", "", "dodcadchai", "", "infelicity"]) + let v = native_list_append(v, ["Dǽi", "noun", "Dǽi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mnaí", "noun", "mnaí", "", "", "", "inflection of ben"]) + let v = native_list_append(v, ["Iude", "noun", "Iude", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cumacte", "noun", "cumacte", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chumacte", "noun", "chumacte", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chumachtae", "noun", "chumachtae", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tosuch", "noun", "tosuch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tossug", "noun", "tossug", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mruig", "noun", "mrugai", "mrogo", "mrugaib", "", "march borderland"]) + let v = native_list_append(v, ["mmruig", "noun", "mmruig", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mrugaib", "noun", "mrugaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["brao", "noun", "brao", "broon", "broïn", "", "quern millstone"]) + let v = native_list_append(v, ["precepte", "noun", "precepte", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["etiuth", "noun", "etiuth", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["étiuth", "noun", "étiuth", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["étiud", "noun", "étiud", "", "", "", "clothing"]) + let v = native_list_append(v, ["toschith", "noun", "toschith", "", "", "", "sustenance food"]) + let v = native_list_append(v, ["thoschith", "noun", "thoschith", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["fochricc", "noun", "fochricci", "fochricce", "fochriccib", "", "verbal noun of"]) + let v = native_list_append(v, ["éisi", "noun", "éisi", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["hési", "noun", "hési", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["indeb", "noun", "indeb", "indib", "indiub", "", "wealth"]) + let v = native_list_append(v, ["árim", "noun", "árim", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["óenar", "noun", "óenar", "oínair", "oínur", "", "one person"]) + let v = native_list_append(v, ["oínur", "noun", "oínur", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-oínur", "noun", "n-oínur", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["icht", "noun", "icht", "", "", "", "tribe race"]) + let v = native_list_append(v, ["thorbe", "noun", "thorbe", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["fíach", "noun", "féich", "féich", "fíachaib", "", "due obligation"]) + let v = native_list_append(v, ["fochidib", "noun", "fochidib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["chíall", "noun", "chíall", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["bráithre", "noun", "bráithre", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["mbráithre", "noun", "mbráithre", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["serg", "noun", "sirg", "sirg", "siurg", "", "decline"]) + let v = native_list_append(v, ["gagar", "noun", "gagair", "gagair", "gagaraib", "", "beagle hunting dog"]) + let v = native_list_append(v, ["laíches", "noun", "laíchesa", "laíchise", "laíchis", "", "laywoman"]) + let v = native_list_append(v, ["banb", "noun", "bainb", "bainb", "banbaib", "", "piglet young pig"]) + let v = native_list_append(v, ["oítiu", "noun", "oítiu", "oíted", "oítid", "", "youth"]) + let v = native_list_append(v, ["naidm", "noun", "nadman", "nadmae", "nadmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["fíado", "noun", "fíadait", "fíadat", "fíadait", "", "lord"]) + let v = native_list_append(v, ["fíada", "noun", "fíada", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["écht", "noun", "échta", "échta", "échtaib", "", "slaying slaughter murder"]) + let v = native_list_append(v, ["teilm", "noun", "telmai", "telma", "telmaib", "", "sling"]) + let v = native_list_append(v, ["céimm", "noun", "céimmen", "céimme", "céimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["lóchet", "noun", "lóchtaib", "", "lóchit", "", "flash of lightning"]) + let v = native_list_append(v, ["derucc", "noun", "dercoin", "dercon", "dercoin", "", "acorn"]) + let v = native_list_append(v, ["aisndís", "noun", "aisndísin", "aisndísen", "aisndísin", "", "verbal noun of"]) + let v = native_list_append(v, ["impúd", "noun", "impúdae", "impúdo", "impúdaib", "", "verbal noun of"]) + let v = native_list_append(v, ["búain", "noun", "búaini", "búana", "búainib", "", "verbal noun of"]) + let v = native_list_append(v, ["dermat", "noun", "dermat", "dermait", "dermut", "", "verbal noun of"]) + let v = native_list_append(v, ["coitsecht", "noun", "coitsechta", "coitsechte", "coitsechtaib", "", "verbal noun of"]) + let v = native_list_append(v, ["airisem", "noun", "airisem", "airismeo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ascae", "noun", "ascaid", "ascad", "ascaid", "", "rival"]) + let v = native_list_append(v, ["frepaid", "noun", "frepthi", "freptha", "frepthaib", "", "verbal noun of"]) + let v = native_list_append(v, ["n-ainm", "noun", "n-ainm", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ríchtu", "noun", "ríchtu", "ríchtan", "ríchtin", "", "verbal noun of"]) + let v = native_list_append(v, ["frecrae", "noun", "frecraib", "frecrai", "frecru", "", "verbal noun of"]) + let v = native_list_append(v, ["frescisiu", "noun", "frescisiu", "friscissen", "frescissin", "", "verbal noun of"]) + let v = native_list_append(v, ["tórmach", "noun", "tórmacha", "tórmaig", "tórmuch", "", "verbal noun of"]) + let v = native_list_append(v, ["ndeud", "noun", "ndeud", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["lenamain", "noun", "lenamna", "lenamnae", "lenamnaib", "", "verbal noun of"]) + let v = native_list_append(v, ["frithaire", "noun", "frithairi", "frithare", "frithairi", "", "vigil"]) + let v = native_list_append(v, ["faigen", "noun", "faigne", "faigne", "faigin", "", "sheath scabbard"]) + let v = native_list_append(v, ["riuth", "noun", "rethae", "retho", "rethaib", "", "verbal noun of"]) + let v = native_list_append(v, ["saíre", "noun", "saíri", "", "saíri", "", "freedom"]) + let v = native_list_append(v, ["suth", "noun", "sothae", "sotho", "sothaib", "", "produce"]) + let v = native_list_append(v, ["caích", "noun", "caích", "", "", "", "inflection of cáech"]) + let v = native_list_append(v, ["ruiri", "noun", "ruirig", "ruirech", "ruirig", "", "king"]) + let v = native_list_append(v, ["suib", "noun", "subai", "sobo", "subaib", "", "strawberry"]) + let v = native_list_append(v, ["etargne", "noun", "etargnib", "etargni", "etargnu", "", "verbal noun of"]) + let v = native_list_append(v, ["ætarcne", "noun", "ætarcnib", "ætarcni", "ætarcnu", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-ætarcne", "noun", "n-ætarcne", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["greimm", "noun", "gremman", "gremmae", "gremmaim", "", "grasp hold"]) + let v = native_list_append(v, ["chob", "noun", "chob", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["imned", "noun", "imneda", "imnid", "imniud", "", "trouble tribulation affliction"]) + let v = native_list_append(v, ["deud", "noun", "deud", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["orcun", "noun", "oircnea", "oircne", "orcuin", "", "verbal noun of"]) + let v = native_list_append(v, ["Máel Dúin", "noun", "Máel Dúin", "", "", "", "a male given"]) + let v = native_list_append(v, ["nadma", "noun", "nadma", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["élud", "noun", "élud", "élúda", "", "", "verbal noun of"]) + let v = native_list_append(v, ["airbe", "noun", "airbib", "airbi", "airbiu", "", "verbal noun of"]) + let v = native_list_append(v, ["rétu", "noun", "rétu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["tochmarc", "noun", "tochmarca", "tochmairc", "tochmurc", "", "wooing courting romantically"]) + let v = native_list_append(v, ["mmoth", "noun", "mmoth", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["accubur", "noun", "accubur", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-accubur", "noun", "n-accubur", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["tóbae", "noun", "tóbae", "tóbai", "tóbu", "", "verbal noun of"]) + let v = native_list_append(v, ["feirg", "noun", "feirg", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["machdad", "noun", "machdad", "", "", "", "wonder admiration"]) + let v = native_list_append(v, ["machthad", "noun", "machthad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mrath", "noun", "mratha", "mraith", "mrathaib", "", "verbal noun of"]) + let v = native_list_append(v, ["desimrecht", "noun", "desimrechta", "desimrechta", "desimrechtaib", "", "example"]) + let v = native_list_append(v, ["dessimrecht", "noun", "dessimrecht", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tairlimm", "noun", "tairlimmen", "tairlimme", "tairlimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["cridiu", "noun", "cridiu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["bélib", "noun", "bélib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["irbága", "noun", "irbága", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["mógi", "noun", "mógi", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["descipuil", "noun", "descipuil", "", "", "", "inflection of deiscipul"]) + let v = native_list_append(v, ["desciplu", "noun", "desciplu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["cumtach", "noun", "cumtacha", "cumtaig", "cumtuch", "", "verbal noun of"]) + let v = native_list_append(v, ["dechor", "noun", "dechora", "dechoir", "dechraib", "", "difference distinction"]) + let v = native_list_append(v, ["anmann", "noun", "anmann", "", "", "", "inflection of ainmm"]) + let v = native_list_append(v, ["líathrit", "noun", "líathrite", "líathritæ", "líathritib", "", "ball sphere"]) + let v = native_list_append(v, ["coimdiu", "noun", "coimdid", "coimded", "coimdid", "", "lord master"]) + let v = native_list_append(v, ["coimded", "noun", "coimded", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["slucait", "noun", "slucaiti", "slugaite", "slucaiti", "", "throat gullet"]) + let v = native_list_append(v, ["bráge", "noun", "brágait", "brágat", "brágait", "", "neck throat gullet"]) + let v = native_list_append(v, ["ngrád", "noun", "ngrád", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mmuintir", "noun", "mmuintir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ingnae", "noun", "ingnae", "ingnai", "ingnu", "", "verbal noun of"]) + let v = native_list_append(v, ["bráthre", "noun", "bráthre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chomsuidigud", "noun", "chomsuidigud", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["miscuis", "noun", "miscuis", "miscseo", "", "", "hatred"]) + let v = native_list_append(v, ["cúrsachad", "noun", "cúrsachad", "cúrsactha", "", "", "verbal noun of"]) + let v = native_list_append(v, ["seircc", "noun", "seircc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["digail", "noun", "digail", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dígail", "noun", "dígail", "", "", "", "inflection of dígal"]) + let v = native_list_append(v, ["arrad", "noun", "arrad", "", "", "", "only used in"]) + let v = native_list_append(v, ["n-arrad", "noun", "n-arrad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["imdibe", "noun", "imdibe", "imdibi", "imdibiu", "", "verbal noun of"]) + let v = native_list_append(v, ["n-imdibe", "noun", "n-imdibe", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aithesc", "noun", "aithesca", "aithisc", "aithescaib", "", "answer reply"]) + let v = native_list_append(v, ["chumail", "noun", "chumail", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["comsuidigthe", "noun", "comṡuidigthi", "comṡuidigthi", "comṡuidigthiu", "", "compound word word"]) + let v = native_list_append(v, ["comsuidigthi", "noun", "comsuidigthi", "", "", "", "inflection of comṡuidigthe"]) + let v = native_list_append(v, ["Gréc", "noun", "Gréic", "Gréic", "Grécaib", "", "a Greek person"]) + let v = native_list_append(v, ["Grécu", "noun", "Grécu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["Grecu", "noun", "Grecu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["éicen", "noun", "éicnea", "éicne", "éicin", "", "force necessity"]) + let v = native_list_append(v, ["ecen", "noun", "ecen", "ecne", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["écen", "noun", "écen", "écne", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["neutur", "noun", "neutor", "neutair", "neutraib", "", "neuter"]) + let v = native_list_append(v, ["Hériu", "noun", "Hériu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["drécht", "noun", "dréchta", "dréchta", "dréchtaib", "", "portion part"]) + let v = native_list_append(v, ["ceníuil", "noun", "ceníuil", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cuingid", "noun", "cuingid", "cuingeda", "", "", "verbal noun of"]) + let v = native_list_append(v, ["chuingid", "noun", "chuingid", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["bíada", "noun", "bíada", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["úair", "noun", "úair", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Muir Robur", "noun", "Muir Robur", "Moro Robuir", "", "", "Red Sea a"]) + let v = native_list_append(v, ["breth", "noun", "bretha", "brithe", "brith", "", "verbal noun of"]) + let v = native_list_append(v, ["Conchobair", "noun", "Conchobair", "", "", "", "genitive/vocative singular of"]) + let v = native_list_append(v, ["atrab", "noun", "atraba", "aitrib", "atrub", "", "verbal noun of"]) + let v = native_list_append(v, ["cétbuid", "noun", "céitbuidi", "cétbada", "cétbaid", "", "verbal noun of"]) + let v = native_list_append(v, ["congbál", "noun", "congbála", "congbálae", "congbáil", "", "verbal noun of"]) + let v = native_list_append(v, ["creicc", "noun", "creicc", "crecce", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ainmnit", "noun", "ainmnit", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["Afraicc", "noun", "Afraicc", "Afraicce", "", "", "Africa the continent"]) + let v = native_list_append(v, ["sinnchénae", "noun", "sinnchénae", "", "", "", "diminutive of sinnach"]) + let v = native_list_append(v, ["Glenn Dá Locha", "noun", "Glenn Dá Locha", "Glinne Dá Locha", "Glinn Dá Locha", "", "Glendalough a valley"]) + let v = native_list_append(v, ["Níall", "noun", "Níall", "Néill", "", "", "a male given"]) + let v = native_list_append(v, ["Ard Machae", "noun", "Ard Machae", "Aird Machae", "", "", "Armagh a town"]) + let v = native_list_append(v, ["Machae", "noun", "Machae", "", "Machai", "", "Macha the name"]) + let v = native_list_append(v, ["Dúnchad", "noun", "Dúnchadae", "Dúnchado", "Dúnchadaib", "", "a male given"]) + let v = native_list_append(v, ["Cellach", "noun", "Cellach", "Cellaig", "Celluch", "", "a male given"]) + let v = native_list_append(v, ["Temair", "noun", "Temair", "Temro", "Temraig", "", "Tara a hill"]) + let v = native_list_append(v, ["Flann", "noun", "Flann", "Flainn", "Flaunn", "", "a unisex given"]) + let v = native_list_append(v, ["Echaid", "noun", "Echaid", "Echdach", "Echdaig", "", "alternative spelling of"]) + let v = native_list_append(v, ["Donnchad", "noun", "Donnchad", "Donnchada", "", "", "a male given"]) + let v = native_list_append(v, ["bráth", "noun", "bráth", "brátha", "", "", "the Last Judgement"]) + let v = native_list_append(v, ["epert", "noun", "eperta", "eperte", "ebirt", "", "verbal noun of"]) + let v = native_list_append(v, ["Líadain", "noun", "Líadain", "Líadaine", "", "", "a female given"]) + let v = native_list_append(v, ["tindnacol", "noun", "tindnacol", "tindnacuil", "tindnacul", "", "verbal noun of"]) + let v = native_list_append(v, ["coíniud", "noun", "coíniud", "coíndeo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["carcair", "noun", "carcair", "", "", "", "inflection of carcar"]) + let v = native_list_append(v, ["rechta", "noun", "rechta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["ndig", "noun", "ndig", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbiad", "noun", "mbiad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbíad", "noun", "mbíad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-iress", "noun", "n-iress", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["gáu", "noun", "goa", "gue", "gói", "", "lie falsehood"]) + let v = native_list_append(v, ["domnach", "noun", "domnaig", "domnaig", "domnuch", "", "Sunday"]) + let v = native_list_append(v, ["liae", "noun", "liae", "", "", "", "flood"]) + let v = native_list_append(v, ["smachtu", "noun", "smachtu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["fetarlicc", "noun", "fetarlicc", "fetarlicce", "fetarlicci", "", "Old Testament"]) + let v = native_list_append(v, ["fetarlicce", "noun", "fetarlicce", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["líth", "noun", "líthe", "lítha", "líthaib", "", "festival"]) + let v = native_list_append(v, ["líthu", "noun", "líthu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["llíthu", "noun", "llíthu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ssapati", "noun", "ssapati", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sapati", "noun", "sapati", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["sabbait", "noun", "sapati", "", "", "", "Sabbath"]) + let v = native_list_append(v, ["frecor", "noun", "frecuir", "frecuir", "frecraib", "", "verbal noun of"]) + let v = native_list_append(v, ["Lóegaire", "noun", "Lóegaire", "Lóegairi", "Lóegairiu", "", "a male given"]) + let v = native_list_append(v, ["Fergal", "noun", "Fergal", "Fergaile", "Fergail", "", "a male given"]) + let v = native_list_append(v, ["robartae", "noun", "robartai", "", "robartai", "", "spring tide"]) + let v = native_list_append(v, ["meinistir", "noun", "meinistri", "meinistri", "meinistri", "", "reliquary"]) + let v = native_list_append(v, ["Cú Bretan", "noun", "Cú Bretan", "Con Bretan", "Coin Bretan", "", "a male given"]) + let v = native_list_append(v, ["laí", "noun", "laí", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sechem", "noun", "sechem", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["seichem", "noun", "seichem", "seichme", "seichim", "", "verbal noun of"]) + let v = native_list_append(v, ["tugae", "noun", "tugai", "", "tugai", "", "verbal noun of"]) + let v = native_list_append(v, ["chóiced", "noun", "chóiced", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["togairm", "noun", "togarmand", "togarmae", "togarmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["taidchor", "noun", "taidchuir", "taidchuir", "taidchoraib", "", "verbal noun of"]) + let v = native_list_append(v, ["n-athar", "noun", "n-athar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["béssu", "noun", "béssu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["senod", "noun", "senoda", "senuid", "senodaib", "", "synod"]) + let v = native_list_append(v, ["umae", "noun", "umae", "umai", "umu", "", "copper"]) + let v = native_list_append(v, ["cobair", "noun", "cobair", "cobrad", "cobraid", "", "help"]) + let v = native_list_append(v, ["díbirciud", "noun", "díbirciud", "díbirctheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["comarbus", "noun", "comarbus", "comarpsa", "", "", "heritage inheritance patrimony"]) + let v = native_list_append(v, ["bíth", "noun", "bíth", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["cobadlus", "noun", "cobadlus", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cobodlus", "noun", "cobodlus", "cobodluso", "", "", "fellowship communion"]) + let v = native_list_append(v, ["cuitbiud", "noun", "cuitbiud", "cuitbeda", "", "", "verbal noun of"]) + let v = native_list_append(v, ["comét", "noun", "comét", "cométa", "", "", "verbal noun of"]) + let v = native_list_append(v, ["Fíachrai", "noun", "Fíachrai", "Fíachrach", "Fíachraig", "", "a male given"]) + let v = native_list_append(v, ["duálaig", "noun", "duálchi", "duálchae", "duálchaib", "", "vice"]) + let v = native_list_append(v, ["epaid", "noun", "epthai", "eptha", "aupaith", "", "charm spell"]) + let v = native_list_append(v, ["cétmuinter", "noun", "cétmuintera", "cétmuintire", "cétmuintir", "", "a spouse implied"]) + let v = native_list_append(v, ["éirge", "noun", "éirgib", "ærgi", "éirgiu", "", "verbal noun of"]) + let v = native_list_append(v, ["teiched", "noun", "teiched", "teichid", "teichiud", "", "verbal noun of"]) + let v = native_list_append(v, ["dílgend", "noun", "dílgend", "dílgind", "dílgiund", "", "verbal noun of"]) + let v = native_list_append(v, ["dílgent", "noun", "dílgent", "dílgint", "dílgiunt", "", "alternative spelling of"]) + let v = native_list_append(v, ["fochell", "noun", "fochell", "foichle", "fochill", "", "verbal noun of"]) + let v = native_list_append(v, ["céin", "noun", "céin", "", "", "", "inflection of cían"]) + let v = native_list_append(v, ["foít", "noun", "foít", "foíteo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["cróa", "noun", "crui", "crui", "cruu", "", "hoof"]) + let v = native_list_append(v, ["áel", "noun", "aíl", "aíl", "áelaib", "", "lime mineral chalk"]) + let v = native_list_append(v, ["n-áel", "noun", "n-áel", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bretha", "noun", "bretha", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["biáil", "noun", "bélai", "béla", "bélaib", "", "axe hatchet"]) + let v = native_list_append(v, ["fochlae", "noun", "fochlaib", "fochlai", "fochlu", "", "the north especially"]) + let v = native_list_append(v, ["Rechru", "noun", "Rechru", "Rechrann", "Rechrainn", "", "Rathlin Island an"]) + let v = native_list_append(v, ["Caisel", "noun", "Caisel", "Caisil", "Caisiul", "", "Cashel a town"]) + let v = native_list_append(v, ["chomtururasib", "noun", "chomtururasib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["comtururasib", "noun", "comtururasib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chomthururasib", "noun", "chomthururasib", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["comthururasib", "noun", "comthururasib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["comthururas", "noun", "comthururasa", "comthururais", "comthururus", "", "incursion attack"]) + let v = native_list_append(v, ["fíal", "noun", "fíala", "féil", "fíalaib", "", "veil"]) + let v = native_list_append(v, ["bróen", "noun", "broín", "broín", "bróenaib", "", "rain"]) + let v = native_list_append(v, ["taís", "noun", "taís", "", "", "", "dough"]) + let v = native_list_append(v, ["ligiu", "noun", "ligiu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["tadall", "noun", "tadalla", "tadaill", "tadallaib", "", "verbal noun of"]) + let v = native_list_append(v, ["imrádud", "noun", "imráiti", "imráto", "imrátib", "", "verbal noun of"]) + let v = native_list_append(v, ["imradud", "noun", "imradud", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tuididen", "noun", "tuididen", "tuididne", "tuididin", "", "verbal noun of"]) + let v = native_list_append(v, ["chloine", "noun", "chloine", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chloíne", "noun", "chloíne", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cloíne", "noun", "cloíni", "", "cloíni", "", "iniquity wickedness"]) + let v = native_list_append(v, ["dídnad", "noun", "dídnad", "dídanta", "", "", "verbal noun of"]) + let v = native_list_append(v, ["déicsiu", "noun", "déicsiu", "déicsen", "déicsin", "", "verbal noun of"]) + let v = native_list_append(v, ["tórand", "noun", "tóranda", "tóraind", "tórund", "", "verbal noun of"]) + let v = native_list_append(v, ["airbert", "noun", "airbert", "airbertae", "airbirt", "", "verbal noun of"]) + let v = native_list_append(v, ["temul", "noun", "temul", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["muntair", "noun", "muntair", "", "", "", "inflection of muntar"]) + let v = native_list_append(v, ["intled", "noun", "intleda", "intlide", "intlid", "", "snare trap"]) + let v = native_list_append(v, ["intleda", "noun", "intleda", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["erelca", "noun", "erelca", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["erelc", "noun", "erelca", "erilce", "erilc", "", "ambush"]) + let v = native_list_append(v, ["airchellad", "noun", "airchellad", "airchelto", "", "", "verbal noun of"]) + let v = native_list_append(v, ["erchót", "noun", "erchót", "erchóite", "erchóit", "", "verbal noun of"]) + let v = native_list_append(v, ["escarae", "noun", "escarait", "escarat", "escarait", "", "enemy"]) + let v = native_list_append(v, ["tegdais", "noun", "tegdaissi", "tegdaise", "techdaisib", "", "house"]) + let v = native_list_append(v, ["guin", "noun", "guine", "gona", "guinib", "", "verbal noun of"]) + let v = native_list_append(v, ["senathair", "noun", "senaithir", "senathar", "senathrib", "", "grandfather"]) + let v = native_list_append(v, ["senmáthair", "noun", "senmáithir", "senmáthar", "senmáithrib", "", "grandmother"]) + let v = native_list_append(v, ["snáthat", "noun", "snáthata", "snáthaite", "snáthait", "", "needle"]) + let v = native_list_append(v, ["coscar", "noun", "coscar", "coscair", "coscur", "", "victory"]) + let v = native_list_append(v, ["coscur", "noun", "coscur", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["choscur", "noun", "choscur", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Moysi", "noun", "Moysi", "", "", "", "Moses biblical patriarch"]) + let v = native_list_append(v, ["tindnacul", "noun", "tindnacul", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["popuil", "noun", "popuil", "", "", "", "inflection of popul"]) + let v = native_list_append(v, ["dairt", "noun", "dairti", "darta", "dairtib", "", "a heifer approximately"]) + let v = native_list_append(v, ["cumal", "noun", "cumala", "cumaile", "cumail", "", "female servant or"]) + let v = native_list_append(v, ["templaib", "noun", "templaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["tempuil", "noun", "tempuil", "", "", "", "inflection of tempul"]) + let v = native_list_append(v, ["dartaid", "noun", "dartaidi", "dartada", "dartaidib", "", "calf young cow"]) + let v = native_list_append(v, ["dretel", "noun", "dretli", "dretleo", "dretleaib", "", "darling favorite"]) + let v = native_list_append(v, ["escrae", "noun", "escrai", "escrai", "escru", "", "large drinking vessel"]) + let v = native_list_append(v, ["díthrub", "noun", "díthruib", "díthruib", "díthrubaib", "", "wilderness"]) + let v = native_list_append(v, ["maldacht", "noun", "maldachta", "maldachtae", "maldachtaib", "", "curse"]) + let v = native_list_append(v, ["maldachta", "noun", "maldachta", "", "", "", "nominative/accusative/vocative plural of"]) + let v = native_list_append(v, ["hirisse", "noun", "hirisse", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fodail", "noun", "fodlai", "fodlo", "fodlaib", "", "verbal noun of"]) + let v = native_list_append(v, ["déde", "noun", "déde", "dédi", "dédiu", "", "two things"]) + let v = native_list_append(v, ["ndede", "noun", "ndede", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ndéde", "noun", "ndéde", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chridiu", "noun", "chridiu", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["lánamain", "noun", "lánamnai", "lánamnae", "lánamnai", "", "married couple"]) + let v = native_list_append(v, ["mídénum", "noun", "mídénmae", "mídénma", "mídénmaib", "", "misdeed wrongdoing"]) + let v = native_list_append(v, ["nemed", "noun", "nemid", "nemid", "nemiud", "", "sanctuary"]) + let v = native_list_append(v, ["coscair", "noun", "coscair", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["gabalrind", "noun", "gabalrindi", "gabalrendo", "gabalrindib", "", "pair of compasses"]) + let v = native_list_append(v, ["méite", "noun", "méite", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["enncae", "noun", "enncae", "", "enncai", "", "innocence"]) + let v = native_list_append(v, ["rámae", "noun", "rámai", "rámai", "rámu", "", "oar"]) + let v = native_list_append(v, ["rechtaire", "noun", "rechtairi", "rechtairi", "rechtairiu", "", "administrator steward bailiff"]) + let v = native_list_append(v, ["srían", "noun", "sréin", "sréin", "sríanaib", "", "bridle"]) + let v = native_list_append(v, ["Neir", "noun", "Neir", "Neran", "Nerain", "", "Nero a Roman"]) + let v = native_list_append(v, ["tairngere", "noun", "tairngere", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tairngire", "noun", "tairngirib", "tairngiri", "tairngiriu", "", "verbal noun of"]) + let v = native_list_append(v, ["indmat", "noun", "indmat", "indmait", "indmut", "", "verbal noun of"]) + let v = native_list_append(v, ["lestrae", "noun", "lestrai", "", "lestrai", "", "vessel"]) + let v = native_list_append(v, ["lestar", "noun", "lestra", "lestair", "lestur", "", "vessel"]) + let v = native_list_append(v, ["lestair", "noun", "lestair", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["melg", "noun", "melg", "milge", "milg", "", "milk"]) + let v = native_list_append(v, ["bairgen", "noun", "bairgena", "bairgine", "bairgin", "", "bread"]) + let v = native_list_append(v, ["díabul", "noun", "díabuil", "díabuil", "díablaib", "", "the devil"]) + let v = native_list_append(v, ["chaile", "noun", "chaile", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["notire", "noun", "notiri", "notiri", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Diarmait", "noun", "Diarmait", "Diarmata", "", "", "a male given"]) + let v = native_list_append(v, ["Giurge", "noun", "Giurge", "Giurgi", "Giurgiu", "", "Saint George"]) + let v = native_list_append(v, ["reicc", "noun", "reicc", "reicce", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ifernn", "noun", "ifernn", "ifirnn", "ifurnn", "", "hell"]) + let v = native_list_append(v, ["ndam", "noun", "ndam", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["trummae", "noun", "trummai", "", "trummai", "", "heaviness"]) + let v = native_list_append(v, ["túare", "noun", "túari", "", "túari", "", "food"]) + let v = native_list_append(v, ["fius", "noun", "fess", "fesso", "fessaib", "", "knowledge"]) + let v = native_list_append(v, ["uall", "noun", "uall", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["úall", "noun", "úall", "úaille", "úaill", "", "vanity pride"]) + let v = native_list_append(v, ["sléb", "noun", "sléb", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imnedaib", "noun", "imnedaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["frithorcun", "noun", "frithoircnea", "frithoircne", "frithorcuin", "", "verbal noun of"]) + let v = native_list_append(v, ["frithoircnib", "noun", "frithoircnib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["pecthach", "noun", "pecthaig", "pecthaig", "pecthachaib", "", "sinner"]) + let v = native_list_append(v, ["pecthaig", "noun", "pecthaig", "", "", "", "inflection of pecthach"]) + let v = native_list_append(v, ["fochaidi", "noun", "fochaidi", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["fudumain", "noun", "fudumnai", "fudumno", "fudumnaib", "", "depth"]) + let v = native_list_append(v, ["airégem", "noun", "airégem", "airéigme", "airégim", "", "verbal noun of"]) + let v = native_list_append(v, ["n-erigim", "noun", "n-erigim", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["soinmech", "noun", "soinmecha", "soinmig", "soinmechaib", "", "prosperity also in"]) + let v = native_list_append(v, ["soinmechaib", "noun", "soinmechaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["saíthir", "noun", "saíthir", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["túari", "noun", "túari", "", "", "", "inflection of túare"]) + let v = native_list_append(v, ["tuari", "noun", "tuari", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chatt", "noun", "chatt", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["céli", "noun", "céli", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nertad", "noun", "nertae", "nerta", "nertaib", "", "verbal noun of"]) + let v = native_list_append(v, ["mbraithre", "noun", "mbraithre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["braithre", "noun", "braithre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["frescsiu", "noun", "frescsiu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fochricce", "noun", "fochricce", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["airnaide", "noun", "airnaide", "airnaidi", "airnaidiu", "", "verbal noun of"]) + let v = native_list_append(v, ["apthu", "noun", "apthin", "apthan", "apthin", "", "verbal noun of"]) + let v = native_list_append(v, ["epeltu", "noun", "epeltu", "epeltan", "epeltain", "", "verbal noun of"]) + let v = native_list_append(v, ["Cináed", "noun", "Cináed", "Cináeda", "", "", "a male given"]) + let v = native_list_append(v, ["airnaigde", "noun", "airnigdi", "airnigde", "airnigdi", "", "verbal noun of"]) + let v = native_list_append(v, ["coímchloud", "noun", "coímchloud", "coímchloda", "", "", "verbal noun of"]) + let v = native_list_append(v, ["tochuiriud", "noun", "tochuiriud", "tochuirtheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ǽt", "noun", "ǽt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["buid", "noun", "buid", "buithe", "", "", "alternative form of"]) + let v = native_list_append(v, ["felsub", "noun", "felsuib", "felsuib", "felsubaib", "", "philosopher"]) + let v = native_list_append(v, ["aiccent", "noun", "aiccint", "aiccint", "aiccentaib", "", "alternative spelling of"]) + let v = native_list_append(v, ["dílgud", "noun", "dílgud", "dílguda", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ancride", "noun", "ancridib", "ancridi", "ancridiu", "", "injury injustice"]) + let v = native_list_append(v, ["ancridi", "noun", "ancridi", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["machdath", "noun", "machdath", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dind", "noun", "dinda", "dindo", "dindaib", "", "height hill"]) + let v = native_list_append(v, ["liac", "noun", "liac", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cuit adíll", "noun", "cuit adíll", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adíll", "noun", "adíll", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chumme", "noun", "chumme", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Macidonii", "noun", "Macidonii", "", "", "", "Macedonians"]) + let v = native_list_append(v, ["ríchtin", "noun", "ríchtin", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["rígtin", "noun", "rígtin", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["daíni", "noun", "daíni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["andach", "noun", "andga", "andaig", "anduch", "", "wickedness iniquity"]) + let v = native_list_append(v, ["n-andach", "noun", "n-andach", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["anduch", "noun", "anduch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-anduch", "noun", "n-anduch", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-ires", "noun", "n-ires", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chruth", "noun", "chruth", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["pecthu", "noun", "pecthu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["sochuide", "noun", "sochuide", "", "sochuidi", "", "many multitude crowd"]) + let v = native_list_append(v, ["cuimrech", "noun", "cuimrige", "cuimrig", "cuimriug", "", "verbal noun of"]) + let v = native_list_append(v, ["cuimriug", "noun", "cuimriug", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["chuimriug", "noun", "chuimriug", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["aisndis", "noun", "aisndis", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["síans", "noun", "síansae", "síansa", "síansaib", "", "sense meaning or"]) + let v = native_list_append(v, ["moralus", "noun", "moralus", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mórálus", "noun", "mórálus", "mórálusa", "", "", "morality"]) + let v = native_list_append(v, ["stoir", "noun", "stoir", "", "", "", "history"]) + let v = native_list_append(v, ["Abíal", "noun", "Abíal", "Abéil", "", "", "Abel son of"]) + let v = native_list_append(v, ["abstanit", "noun", "abstanit", "abstanite", "", "", "abstinence"]) + let v = native_list_append(v, ["trócaire", "noun", "trócaire", "", "trócairi", "", "mercy"]) + let v = native_list_append(v, ["sochaide", "noun", "sochaide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["íc", "noun", "íc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-íc", "noun", "n-íc", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rrecht", "noun", "rrecht", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ingraimmen", "noun", "ingraimmen", "", "", "", "inflection of ingreimm"]) + let v = native_list_append(v, ["cuimre", "noun", "cuimre", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cuimbre", "noun", "cuimbre", "", "cuimbri", "", "brevity shortness"]) + let v = native_list_append(v, ["rrath", "noun", "rrath", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Bretan", "noun", "Bretan", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["anai", "noun", "anu", "anae", "anaib", "", "wealth riches"]) + let v = native_list_append(v, ["Dæ", "noun", "Dæ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["arrae", "noun", "arraib", "arrai", "arru", "", "payment exchange barter"]) + let v = native_list_append(v, ["mebul", "noun", "mebul", "meblae", "mebuil", "", "shame"]) + let v = native_list_append(v, ["topur", "noun", "topair", "topair", "toiprib", "", "source"]) + let v = native_list_append(v, ["céssad", "noun", "céstae", "césto", "céstaib", "", "verbal noun of"]) + let v = native_list_append(v, ["drúcht", "noun", "drúchtae", "drúchta", "drúchtaib", "", "dew moisture in"]) + let v = native_list_append(v, ["teilciud", "noun", "teilciud", "teilctheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["béla", "noun", "béla", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["cumang", "noun", "cumaing", "cumaing", "cumung", "", "verbal noun of"]) + let v = native_list_append(v, ["chumang", "noun", "chumang", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["claide", "noun", "claidi", "", "claidi", "", "verbal noun of"]) + let v = native_list_append(v, ["maidm", "noun", "madman", "madmae", "madmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["fóesam", "noun", "fóesam", "fóesma", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ési", "noun", "ési", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-ési", "noun", "n-ési", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dánu", "noun", "dánu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["n-indeb", "noun", "n-indeb", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aín dídine", "noun", "aín dídine", "aíne dídine", "", "", "Friday"]) + let v = native_list_append(v, ["cétaín", "noun", "cétaíni", "cétaíne", "cétaínib", "", "Wednesday"]) + let v = native_list_append(v, ["dardaín", "noun", "dardaín", "", "", "", "Thursday"]) + let v = native_list_append(v, ["ómun", "noun", "ómnae", "ómno", "ómnaib", "", "fear"]) + let v = native_list_append(v, ["bíthin", "noun", "bíthin", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["derchoíniud", "noun", "derchoíniud", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["remcaisiu", "noun", "remcaisiu", "remcaisen", "remcaisin", "", "providence"]) + let v = native_list_append(v, ["remcaisin", "noun", "remcaisin", "", "", "", "inflection of remcaisiu"]) + let v = native_list_append(v, ["slond", "noun", "slond", "sluind", "slund", "", "verbal noun of"]) + let v = native_list_append(v, ["fodord", "noun", "fodord", "foduirt", "", "", "muttering murmuring complaining"]) + let v = native_list_append(v, ["dommatu", "noun", "dommatu", "dommatad", "dommataid", "", "poverty want"]) + let v = native_list_append(v, ["sáith", "noun", "sáith", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["sáth", "noun", "sáth", "sáithe", "sáith", "", "satiety"]) + let v = native_list_append(v, ["mainn", "noun", "mainn", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["todlugud", "noun", "todlugud", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["féoil", "noun", "féolai", "féola", "féolaib", "", "flesh"]) + let v = native_list_append(v, ["féola", "noun", "féola", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["féulæ", "noun", "féulæ", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["amairis", "noun", "amairis", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["frescissiu", "noun", "frescissiu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fochaid", "noun", "fochaid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["airdi", "noun", "airdi", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["sóinmech", "noun", "sóinmecha", "sóinmig", "sóinmechaib", "", "alternative form of"]) + let v = native_list_append(v, ["ingor", "noun", "ingra", "ingrae", "ingoir", "", "anchor"]) + let v = native_list_append(v, ["degnímu", "noun", "degnímu", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["degním", "noun", "degníma", "degnímo", "degnímaib", "", "alternative form of"]) + let v = native_list_append(v, ["daggním", "noun", "daggníma", "daggnímo", "daggnímaib", "", "good deed"]) + let v = native_list_append(v, ["fochaidib", "noun", "fochaidib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sóinmige", "noun", "sóinmigi", "", "sóinmigi", "", "alternative spelling of"]) + let v = native_list_append(v, ["soinmige", "noun", "soinmigi", "", "soinmigi", "", "prosperity"]) + let v = native_list_append(v, ["duálchi", "noun", "duálchi", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["biail", "noun", "biail", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["áill", "noun", "áill", "", "", "", "sandhi form of"]) + let v = native_list_append(v, ["accaldam", "noun", "accaldam", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fuine", "noun", "fuine", "fuini", "fuini", "", "verbal noun of"]) + let v = native_list_append(v, ["ocmad", "noun", "ocmad", "ocmaide", "ocmaid", "", "verbal noun of"]) + let v = native_list_append(v, ["buith", "noun", "buith", "buithe", "bid", "", "verbal noun of"]) + let v = native_list_append(v, ["ngrian", "noun", "ngrian", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ngréin", "noun", "ngréin", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbúaid", "noun", "mbúaid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mlegon", "noun", "mlegon", "mleguin", "mlegun", "", "verbal noun of"]) + let v = native_list_append(v, ["tinmlegon", "noun", "tinmlegon", "", "tinmlegun", "", "promulgation"]) + let v = native_list_append(v, ["imresan", "noun", "imbresna", "imresin", "imresun", "", "verbal noun of"]) + let v = native_list_append(v, ["Dochartaig", "noun", "Dochartaig", "", "", "", "vocative/genitive of Dochartach"]) + let v = native_list_append(v, ["Dochartach", "noun", "Dochartach", "Dochartaig", "", "", "a male given"]) + let v = native_list_append(v, ["soírad", "noun", "soírad", "soírtha", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sóerad", "noun", "sóerad", "sóertha", "", "", "verbal noun of"]) + let v = native_list_append(v, ["gúasacht", "noun", "gúasachta", "gúasachtae", "gúasachtaib", "", "peril"]) + let v = native_list_append(v, ["fiurt", "noun", "ferte", "ferto", "fertaib", "", "miracle"]) + let v = native_list_append(v, ["dodcad", "noun", "dodcad", "dodcaid", "", "", "bad luck misfortune"]) + let v = native_list_append(v, ["oísitiu", "noun", "oísitiu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lethet", "noun", "lethet", "", "lethit", "", "breadth width"]) + let v = native_list_append(v, ["indred", "noun", "indreda", "indrid", "indriud", "", "verbal noun of"]) + let v = native_list_append(v, ["timthirecht", "noun", "timthirechta", "timthirechtae", "timthirechtaib", "", "verbal noun of"]) + let v = native_list_append(v, ["oslucud", "noun", "oslaicthe", "oslaictheo", "oslaicthib", "", "verbal noun of"]) + let v = native_list_append(v, ["esnaid", "noun", "esnada", "esnaide", "esnadaib", "", "verbal noun of"]) + let v = native_list_append(v, ["gessid", "noun", "gesidi", "gessedo", "gessidib", "", "suppliant supplicant"]) + let v = native_list_append(v, ["eirr", "noun", "eirrid", "eirred", "eirrid", "", "a chariot-fighter"]) + let v = native_list_append(v, ["atairbert", "noun", "atairbert", "atairbertae", "atairbirt", "", "verbal noun of"]) + let v = native_list_append(v, ["díupart", "noun", "díubarta", "díupartae", "díupairt", "", "verbal noun of"]) + let v = native_list_append(v, ["trethan", "noun", "trethain", "trethain", "trethnaib", "", "sea especially when"]) + let v = native_list_append(v, ["díthech", "noun", "díthech", "díthig", "díthiuch", "", "verbal noun of"]) + let v = native_list_append(v, ["tólae", "noun", "tólaib", "tólai", "tólu", "", "flood"]) + let v = native_list_append(v, ["scrín", "noun", "scrína", "scríne", "scrínaib", "", "shrine"]) + let v = native_list_append(v, ["airdbe", "noun", "airdbib", "airdbi", "airdbiu", "", "verbal noun of"]) + let v = native_list_append(v, ["indarbae", "noun", "indarbae", "indarbai", "indarbu", "", "verbal noun of"]) + let v = native_list_append(v, ["indarpe", "noun", "indarpib", "indarpi", "indarpu", "", "alternative form of"]) + let v = native_list_append(v, ["indarpae", "noun", "indarpaib", "indarpai", "indarpu", "", "alternative form of"]) + let v = native_list_append(v, ["fresgabál", "noun", "fresgabála", "fresgabále", "fresgabáil", "", "rise ascent as"]) + let v = native_list_append(v, ["fresngabál", "noun", "fresngabála", "fresngabálae", "fresngabáil", "", "alternative form of"]) + let v = native_list_append(v, ["ócbál", "noun", "ócbála", "ócbálae", "ócbáil", "", "rising raising"]) + let v = native_list_append(v, ["cumgabál", "noun", "cumgabála", "cumgabálae", "cumgabáil", "", "verbal noun of"]) + let v = native_list_append(v, ["fúasnad", "noun", "fúasnadae", "fúasnada", "fúasnadaib", "", "verbal noun of"]) + let v = native_list_append(v, ["imgabáil", "noun", "imgabála", "imgabálae", "imgabálaib", "", "verbal noun of"]) + let v = native_list_append(v, ["athgabáil", "noun", "athgabála", "athgabálae", "athgabálaib", "", "distraint"]) + let v = native_list_append(v, ["tocbál", "noun", "tocbál", "tocbále", "tocbáil", "", "raising lifting"]) + let v = native_list_append(v, ["torgabál", "noun", "torgabála", "torgabále", "torgabáil", "", "verbal noun of"]) + let v = native_list_append(v, ["ingabál", "noun", "ingabál", "ingabálae", "ingabáil", "", "verbal noun of"]) + let v = native_list_append(v, ["dígbáil", "noun", "dígbáil", "dígbalae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["etham", "noun", "ethamuin", "ethamon", "ethamuin", "", "Wednesday"]) + let v = native_list_append(v, ["indlat", "noun", "indlat", "indlait", "indlut", "", "alternative form of"]) + let v = native_list_append(v, ["teistiu", "noun", "teistiu", "testen", "teistin", "", "verbal noun of"]) + let v = native_list_append(v, ["anacol", "noun", "anacol", "anacuil", "", "", "verbal noun of"]) + let v = native_list_append(v, ["anacul", "noun", "anacul", "anacuil", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adnacul", "noun", "adnacla", "adnacuil", "adnaclaib", "", "verbal noun of"]) + let v = native_list_append(v, ["forngaire", "noun", "forngairib", "forngairi", "forngairiu", "", "verbal noun of"]) + let v = native_list_append(v, ["forgaire", "noun", "forgaire", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["foich", "noun", "foichi", "focha", "foichib", "", "wasp"]) + let v = native_list_append(v, ["foigde", "noun", "foigdi", "", "foigdi", "", "verbal noun of"]) + let v = native_list_append(v, ["dígde", "noun", "dígdi", "", "dígdi", "", "verbal noun of"]) + let v = native_list_append(v, ["aicde", "noun", "aicdi", "", "aicdi", "", "verbal noun of"]) + let v = native_list_append(v, ["détiu", "noun", "détiu", "déiten", "déitin", "", "verbal noun of"]) + let v = native_list_append(v, ["énartae", "noun", "énartai", "énirte", "énartai", "", "weakness"]) + let v = native_list_append(v, ["énirti", "noun", "énirti", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["n-énirti", "noun", "n-énirti", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["accobor", "noun", "accobor", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["n-ainimm", "noun", "n-ainimm", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["irnigde", "noun", "irnigdi", "", "irnigdi", "", "alternative form of"]) + let v = native_list_append(v, ["n-irnigde", "noun", "n-irnigde", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["réte", "noun", "réte", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["inducbál", "noun", "inducbál", "inducbáile", "inducbáil", "", "alternative form of"]) + let v = native_list_append(v, ["inducbáil", "noun", "inducbáil", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["animm", "noun", "animm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-animm", "noun", "n-animm", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["esséirgiu", "noun", "esséirgiu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-esséirgiu", "noun", "n-esséirgiu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["choire", "noun", "choire", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["n-ícc", "noun", "n-ícc", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["enech", "noun", "inchaib", "", "", "", "face"]) + let v = native_list_append(v, ["hícc", "noun", "hícc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["eclas", "noun", "eclas", "", "", "", "stomach"]) + let v = native_list_append(v, ["nige", "noun", "nige", "", "nigi", "", "verbal noun of"]) + let v = native_list_append(v, ["rúnaib", "noun", "rúnaib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["menmuin", "noun", "menmuin", "", "", "", "inflection of menmae"]) + let v = native_list_append(v, ["ráithe", "noun", "ráithi", "", "ráithi", "", "trimester quarter period"]) + let v = native_list_append(v, ["comrac", "noun", "comraca", "comraic", "comruc", "", "verbal noun of"]) + let v = native_list_append(v, ["briugu", "noun", "briugaid", "briugad", "briugaid", "", "hostel owner"]) + let v = native_list_append(v, ["dligeth", "noun", "dligeth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dliguth", "noun", "dliguth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toimtiu", "noun", "toimtin", "toimten", "toimtin", "", "verbal noun of"]) + let v = native_list_append(v, ["toimten", "noun", "toimten", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["toimdden", "noun", "toimdden", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["degaid", "noun", "degaid", "", "", "", "seeking searching for"]) + let v = native_list_append(v, ["ndegaid", "noun", "ndegaid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["comrorcun", "noun", "comroircnea", "comrorcne", "comrorcuin", "", "error mistake"]) + let v = native_list_append(v, ["déis", "noun", "déisi", "désa", "déisib", "", "tenant vassal"]) + let v = native_list_append(v, ["comul", "noun", "comla", "comail", "comlaib", "", "verbal noun of"]) + let v = native_list_append(v, ["tinól", "noun", "tinóla", "tinóil", "tinólaib", "", "verbal noun of"]) + let v = native_list_append(v, ["gnúis", "noun", "gnúisi", "gnúsa", "gnúisib", "", "face front part"]) + let v = native_list_append(v, ["túarasndal", "noun", "túarasndala", "túarasndail", "túarasndalaib", "", "eyewitness evidence"]) + let v = native_list_append(v, ["fresndal", "noun", "fresndala", "fresndail", "fresndul", "", "verbal noun of"]) + let v = native_list_append(v, ["fresdel", "noun", "fresdela", "fresndil", "fresdelaib", "", "alternative form of"]) + let v = native_list_append(v, ["frestal", "noun", "frestala", "frestail", "frestul", "", "Later form of"]) + let v = native_list_append(v, ["indell", "noun", "indella", "indill", "indiull", "", "verbal noun of"]) + let v = native_list_append(v, ["sásad", "noun", "sásad", "sásta", "", "", "verbal noun of"]) + let v = native_list_append(v, ["imrimm", "noun", "imrimmen", "imrimme", "imrimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["réimm", "noun", "réimmen", "réimme", "réimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["imram", "noun", "imramae", "imrama", "imramaib", "", "verbal noun of"]) + let v = native_list_append(v, ["oifrend", "noun", "oifrind", "oifrind", "oifriund", "", "Mass"]) + let v = native_list_append(v, ["pecthe", "noun", "pecthe", "", "", "", "nominative/genitive plural of"]) + let v = native_list_append(v, ["pectha", "noun", "pectha", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["caíngním", "noun", "caíngnímae", "caíngníma", "caíngnímaib", "", "good deed"]) + let v = native_list_append(v, ["caíngníma", "noun", "caíngníma", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["chaíngníma", "noun", "chaíngníma", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["íarfaigid", "noun", "íarfaigthi", "íarfaigtho", "íarfaigthib", "", "verbal noun of"]) + let v = native_list_append(v, ["bledmíl", "noun", "bledmíla", "", "bledmílaib", "", "sea-monster"]) + let v = native_list_append(v, ["lá brátha", "noun", "lá brátha", "", "", "", "judgment day"]) + let v = native_list_append(v, ["brátha", "noun", "brátha", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["estecht", "noun", "estechta", "estechtae", "estechtaib", "", "departure"]) + let v = native_list_append(v, ["n-adaltras", "noun", "n-adaltras", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["demuin", "noun", "demuin", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["nebchongabthetu", "noun", "nebchongabthetu", "nebchongabthetad", "nebchongabthetaid", "", "incontinence lack of"]) + let v = native_list_append(v, ["nebcongabthetit", "noun", "nebcongabthetit", "", "", "", "accusative singular of"]) + let v = native_list_append(v, ["sním", "noun", "sním", "snímo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["slondad", "noun", "slointe", "slointeo", "slointib", "", "verbal noun of"]) + let v = native_list_append(v, ["bullu", "noun", "bullu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["Goídil", "noun", "Goídil", "", "", "", "inflection of Goídel"]) + let v = native_list_append(v, ["choscair", "noun", "choscair", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Chonnachta", "noun", "Chonnachta", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["athargab", "noun", "athargaib", "athargaib", "athargub", "", "weapons arms"]) + let v = native_list_append(v, ["aithgin", "noun", "aithginen", "aithgine", "aithginim", "", "verbal noun of"]) + let v = native_list_append(v, ["tochomracht", "noun", "tochomracht", "tochomrachtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["tíarmóracht", "noun", "tíarmóracht", "tíarmórachtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["noíll", "noun", "noíllig", "noílleg", "noíllig", "", "oath"]) + let v = native_list_append(v, ["fíadu", "noun", "fíadain", "fíadan", "fíadain", "", "witness"]) + let v = native_list_append(v, ["tríndóit", "noun", "tríndóit", "tríndóte", "tríndóti", "", "the Trinity"]) + let v = native_list_append(v, ["Dubthach", "noun", "Dubthach", "Dubthaig", "", "", "a male given"]) + let v = native_list_append(v, ["bruinne", "noun", "bruinni", "bruinni", "bruinniu", "", "breast bosom"]) + let v = native_list_append(v, ["Óengus", "noun", "Óengus", "Óengusso", "", "", "alternative form of"]) + let v = native_list_append(v, ["delg", "noun", "delgae", "delgae", "deilg", "", "thorn"]) + let v = native_list_append(v, ["réit", "noun", "réit", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bratán", "noun", "bratáin", "bratáin", "bratánaib", "", "salmon"]) + let v = native_list_append(v, ["ruccae", "noun", "ruccaib", "ruccai", "ruccu", "", "shame disgrace"]) + let v = native_list_append(v, ["cumaing", "noun", "cumaing", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["chumaing", "noun", "chumaing", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["gníma", "noun", "gníma", "", "", "", "inflection of gním"]) + let v = native_list_append(v, ["tromm", "noun", "truimm", "truimm", "trommaib", "", "elder tree"]) + let v = native_list_append(v, ["félire", "noun", "féliri", "féliri", "féliriu", "", "calendar"]) + let v = native_list_append(v, ["frithcheist", "noun", "frithchestai", "frithchestae", "frithchestaib", "", "objection"]) + let v = native_list_append(v, ["lochta", "noun", "lochta", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["fidbae", "noun", "fidbaib", "fidbai", "fidbu", "", "billhook"]) + let v = native_list_append(v, ["selb", "noun", "selba", "selbae", "seilb", "", "property"]) + let v = native_list_append(v, ["uide", "noun", "uidib", "uidi", "uidiu", "", "journey march"]) + let v = native_list_append(v, ["condalbae", "noun", "condalbai", "", "condalbai", "", "sympathy love"]) + let v = native_list_append(v, ["súli", "noun", "súli", "", "", "", "nominative/vocative/genitive plural of"]) + let v = native_list_append(v, ["airber", "noun", "airbera", "airbire", "airbir", "", "bundle armful"]) + let v = native_list_append(v, ["esorcon", "noun", "esaircnea", "esoircne", "esorcuin", "", "verbal noun of"]) + let v = native_list_append(v, ["námait", "noun", "námait", "", "", "", "inflection of námae"]) + let v = native_list_append(v, ["charait", "noun", "charait", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["déicsin", "noun", "déicsin", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["gnúsa", "noun", "gnúsa", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["accaldim", "noun", "accaldim", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["mbid", "noun", "mbid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rechto", "noun", "rechto", "", "", "", "genitive singular/dual of"]) + let v = native_list_append(v, ["airchinnech", "noun", "airchinnig", "airchinnig", "airchinniuch", "", "head leader administrator"]) + let v = native_list_append(v, ["áirge", "noun", "áirgi", "", "áirgi", "", "a place for"]) + let v = native_list_append(v, ["Beccán", "noun", "Beccán", "Beccáin", "", "", "a male given"]) + let v = native_list_append(v, ["Cíarán", "noun", "Cíarán", "Cíaráin", "", "", "a male given"]) + let v = native_list_append(v, ["héis", "noun", "héis", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["faitse", "noun", "faitsib", "faitsi", "faitsiu", "", "south"]) + let v = native_list_append(v, ["tindabrad", "noun", "tindabrad", "tindbratho", "", "", "falling asleep"]) + let v = native_list_append(v, ["tothaimm", "noun", "tothman", "tothmae", "tothmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["aaib", "noun", "aaib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["choscar", "noun", "choscar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["londas", "noun", "londas", "londassa", "", "", "wrath"]) + let v = native_list_append(v, ["niad", "noun", "niad", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["trócairi", "noun", "trócairi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["ecnae", "noun", "ecnaib", "ecnai", "ecnu", "", "verbal noun of"]) + let v = native_list_append(v, ["ngním", "noun", "ngním", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["smactu", "noun", "smactu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-apid", "noun", "n-apid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["núíadnissi", "noun", "núíadnissi", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["núíadnisse", "noun", "núíadnisse", "núíadnissi", "núíadnissiu", "", "New Testament"]) + let v = native_list_append(v, ["scé", "noun", "scïaid", "scïad", "scïaid", "", "whitethorn"]) + let v = native_list_append(v, ["nDǽ", "noun", "nDǽ", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["remcaissiu", "noun", "remcaissiu", "remcaissen", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["indén", "noun", "indéna", "indíuine", "indíuin", "", "anvil"]) + let v = native_list_append(v, ["esbae", "noun", "esbai", "esbai", "esbu", "", "uselessness folly"]) + let v = native_list_append(v, ["úabar", "noun", "úabar", "úabair", "", "", "pride"]) + let v = native_list_append(v, ["tarathar", "noun", "tarathra", "tarathair", "tarathraib", "", "auger"]) + let v = native_list_append(v, ["cairdine", "noun", "cairdini", "", "cairdini", "", "covenant"]) + let v = native_list_append(v, ["chairdine", "noun", "chairdine", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tossuch", "noun", "tossuch", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["líag", "noun", "líaga", "léige", "léig", "", "spoon ladle"]) + let v = native_list_append(v, ["testimin", "noun", "testimni", "testimne", "testimnib", "", "testimony"]) + let v = native_list_append(v, ["insi", "noun", "insi", "", "", "", "inflection of inis"]) + let v = native_list_append(v, ["erchellad", "noun", "erchellad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cenntar", "noun", "cenntaraib", "cenntair", "cenntaraib", "", "this world"]) + let v = native_list_append(v, ["mí-imbert", "noun", "mí-imbert", "mí-imbirte", "mí-imbirt", "", "fraud"]) + let v = native_list_append(v, ["mí-imbirt", "noun", "mí-imbirt", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["togáes", "noun", "togáes", "togaíse", "togaís", "", "verbal noun of"]) + let v = native_list_append(v, ["togaís", "noun", "togaís", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["thogaís", "noun", "thogaís", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mboicht", "noun", "mboicht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ngin", "noun", "ngin", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chían", "noun", "chían", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["sémigud", "noun", "sémigud", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["dílguda", "noun", "dílguda", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["aithrib", "noun", "aithrib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["n-immarmus", "noun", "n-immarmus", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["immarmus", "noun", "immarmussae", "immarmussa", "immarmussaib", "", "verbal noun of"]) + let v = native_list_append(v, ["thrian", "noun", "thrian", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ailli", "noun", "ailli", "", "", "", "inflection of aille"]) + let v = native_list_append(v, ["rúisc", "noun", "rúisc", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["fetarlaic", "noun", "fetarlaic", "fetarlaice", "fetarlaici", "", "alternative spelling of"]) + let v = native_list_append(v, ["fetarlaici", "noun", "fetarlaici", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["núfíadnisse", "noun", "núfíadnisse", "núḟíadnissi", "núḟíadnissiu", "", "alternative spelling of"]) + let v = native_list_append(v, ["núfíadnissi", "noun", "núfíadnissi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ecne", "noun", "ecnib", "ecni", "ecniu", "", "alternative spelling of"]) + let v = native_list_append(v, ["garma", "noun", "garma", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["gulban", "noun", "gulbain", "gulbain", "guilbnib", "", "beak"]) + let v = native_list_append(v, ["ríagol", "noun", "ríagla", "ríaglae", "ríagoil", "", "rule"]) + let v = native_list_append(v, ["ríagoil", "noun", "ríagoil", "", "", "", "inflection of ríagol"]) + let v = native_list_append(v, ["scríbunt", "noun", "scríbunt", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cáractar", "noun", "cáractar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["charactar", "noun", "charactar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cháractar", "noun", "cháractar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["conson", "noun", "consona", "consoine", "consoin", "", "consonant"]) + let v = native_list_append(v, ["consonaib", "noun", "consonaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["ɔsonaib", "noun", "ɔsonaib", "", "", "", "abbreviation of consonaib"]) + let v = native_list_append(v, ["tinfeth", "noun", "tinfeth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tinfed", "noun", "tinfed", "tinfid", "tinfiud", "", "verbal noun of"]) + let v = native_list_append(v, ["n-epertaib", "noun", "n-epertaib", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["epertaib", "noun", "epertaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["dítiu", "noun", "dítiu", "díten", "dítin", "", "verbal noun of"]) + let v = native_list_append(v, ["dítin", "noun", "dítin", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["tóeb", "noun", "toíb", "toíb", "tóebaib", "", "side"]) + let v = native_list_append(v, ["toíb", "noun", "toíb", "", "", "", "inflection of tóeb"]) + let v = native_list_append(v, ["thoíb", "noun", "thoíb", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tabart", "noun", "tabart", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["íaru", "noun", "íaranna", "íarann", "íarainn", "", "squirrel stoat"]) + let v = native_list_append(v, ["eól", "noun", "eóil", "eóil", "eólaib", "", "direction guidance"]) + let v = native_list_append(v, ["mílchú", "noun", "mílchoin", "mílchon", "mílchoin", "", "hunting dog possibly"]) + let v = native_list_append(v, ["sechmadachtae", "noun", "sechmadachtaib", "sechmadachtai", "sechmadachtu", "", "past tense preterite"]) + let v = native_list_append(v, ["íarmue", "noun", "íarmui", "íarmui", "íarmuu", "", "great-grandson"]) + let v = native_list_append(v, ["omun", "noun", "omnae", "omno", "omnaib", "", "alternative form of"]) + let v = native_list_append(v, ["augaire", "noun", "augairi", "augairi", "augairiu", "", "shepherd"]) + let v = native_list_append(v, ["tintúd", "noun", "tintúdai", "tintúda", "tintúdaib", "", "verbal noun of"]) + let v = native_list_append(v, ["mórchol", "noun", "mórchola", "mórchuil", "mórcholaib", "", "great sin"]) + let v = native_list_append(v, ["mmórchol", "noun", "mmórchol", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["díltud", "noun", "díltud", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["remdéicsiu", "noun", "remdéicsiu", "remdéicsen", "remdéicsin", "", "providence"]) + let v = native_list_append(v, ["remdéicsen", "noun", "remdéicsen", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["imchumurc", "noun", "imchumurc", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-imchomarc", "noun", "n-imchomarc", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chanóin", "noun", "chanóin", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["airli", "noun", "airli", "", "", "", "inflection of airle"]) + let v = native_list_append(v, ["etarscarad", "noun", "etarscarad", "etarscartho", "", "", "verbal noun of"]) + let v = native_list_append(v, ["n-etarscarad", "noun", "n-etarscarad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["hiris", "noun", "hiris", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ríched", "noun", "ríched", "ríchid", "ríchiud", "", "Heaven"]) + let v = native_list_append(v, ["óenach", "noun", "óenacha", "óenaig", "óenachaib", "", "a gathering to"]) + let v = native_list_append(v, ["anmman", "noun", "anmman", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dobríathar", "noun", "dobríathra", "dobréithre", "dobréithir", "", "adverb"]) + let v = native_list_append(v, ["dobríathraib", "noun", "dobríathraib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["gubae", "noun", "gubaib", "gubai", "gubu", "", "mourning lamentation"]) + let v = native_list_append(v, ["pecdæ", "noun", "pecdæ", "", "", "", "nominative/genitive plural of"]) + let v = native_list_append(v, ["maic", "noun", "maic", "", "", "", "inflection of macc"]) + let v = native_list_append(v, ["raith", "noun", "raith", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["phopul", "noun", "phopul", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["núíednissi", "noun", "núíednissi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Israhél", "noun", "Israhél", "", "", "", "Israel the region"]) + let v = native_list_append(v, ["Adomnán", "noun", "Adomnán", "Adomnáin", "", "", "Adomnán of Iona"]) + let v = native_list_append(v, ["imneda", "noun", "imneda", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["n-indas", "noun", "n-indas", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["tairmthechtas", "noun", "tairmthechtas", "tairmthecthais", "tairmthechtus", "", "transition"]) + let v = native_list_append(v, ["goiste", "noun", "goisti", "goisti", "goistiu", "", "noose halter rope"]) + let v = native_list_append(v, ["goistiu", "noun", "goistiu", "", "", "", "inflection of goiste"]) + let v = native_list_append(v, ["brágait", "noun", "brágait", "", "", "", "inflection of bráge"]) + let v = native_list_append(v, ["Abisolón", "noun", "Abisolón", "", "", "", "Absalom"]) + let v = native_list_append(v, ["chomairli", "noun", "chomairli", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["comairli", "noun", "comairli", "", "", "", "dative/accusative singular of"]) + let v = native_list_append(v, ["indib", "noun", "indib", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["hǽsi", "noun", "hǽsi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cóennae", "noun", "cóennae", "", "", "", "moss"]) + let v = native_list_append(v, ["cairi", "noun", "cairi", "", "", "", "inflection of caire"]) + let v = native_list_append(v, ["chairi", "noun", "chairi", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ndíglae", "noun", "ndíglae", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cundubart", "noun", "cundubarta", "cundubairte", "cundubairt", "", "doubt"]) + let v = native_list_append(v, ["cundubairt", "noun", "cundubairt", "", "", "", "inflection of cundubart"]) + let v = native_list_append(v, ["Conchenn", "noun", "Conchenna", "Conchinne", "Conchinn", "", "a unisex given"]) + let v = native_list_append(v, ["trógae", "noun", "trógai", "", "trógai", "", "misery"]) + let v = native_list_append(v, ["trógai", "noun", "trógai", "", "", "", "inflection of trógae"]) + let v = native_list_append(v, ["thrógai", "noun", "thrógai", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dúli", "noun", "dúli", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["croiccenn", "noun", "croiccenn", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dechoir", "noun", "dechoir", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["threte", "noun", "threte", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["máam", "noun", "máam", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["maám", "noun", "maám", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["noib", "noun", "noib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["frithtuidecht", "noun", "frithtuidecht", "frithtuidechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["dúlib", "noun", "dúlib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["Iudae", "noun", "Iudeï", "Iudeï", "Iudeü", "", "Jew"]) + let v = native_list_append(v, ["pecthi", "noun", "pecthi", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["nAbracham", "noun", "nAbracham", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ríga", "noun", "ríga", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["Sodam", "noun", "Sodam", "Sodaime", "Sodaim", "", "Sodom a historical"]) + let v = native_list_append(v, ["Sodaim", "noun", "Sodaim", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["ernigde", "noun", "ernigdi", "", "ernigdi", "", "alternative form of"]) + let v = native_list_append(v, ["ernaigde", "noun", "ernaigdi", "", "ernaigdi", "", "alternative form of"]) + let v = native_list_append(v, ["carbat", "noun", "carbait", "carbait", "carbut", "", "alternative spelling of"]) + let v = native_list_append(v, ["carbait", "noun", "carbait", "", "", "", "inflection of carbat"]) + let v = native_list_append(v, ["charbait", "noun", "charbait", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cathu", "noun", "cathu", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["giús", "noun", "giús", "", "", "", "pine fir"]) + let v = native_list_append(v, ["ᚂᚐᚈᚆᚓᚔᚏᚈ", "noun", "ᚂᚐᚈᚆᚓᚔᚏᚈ", "", "", "", "Ogham spelling of"]) + let v = native_list_append(v, ["éicin", "noun", "éicin", "", "", "", "inflection of éicen"]) + let v = native_list_append(v, ["carrac", "noun", "cairrcea", "cairrce", "carraig", "", "rock"]) + let v = native_list_append(v, ["imbert", "noun", "imberta", "imbertae", "imbirt", "", "verbal noun of"]) + let v = native_list_append(v, ["baithes", "noun", "baithes", "baitse", "baithis", "", "baptism"]) + let v = native_list_append(v, ["aín", "noun", "aíni", "aíne", "aíni", "", "fasting period of"]) + let v = native_list_append(v, ["érchoíliud", "noun", "érchoílti", "érchoílteo", "érchoíltib", "", "verbal noun of"]) + let v = native_list_append(v, ["ǽrchoíliud", "noun", "ǽrchoílti", "ǽrchoílteo", "ǽrchoíltib", "", "alternative spelling of"]) + let v = native_list_append(v, ["aicsiu", "noun", "aicsiu", "aicsen", "aicsin", "", "verbal noun of"]) + let v = native_list_append(v, ["Lothlind", "noun", "Lothlind", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["Lothland", "noun", "Lothland", "Lothlainde", "Lothlaind", "", "Scandinavia a region"]) + let v = native_list_append(v, ["Isaác", "noun", "Isaác", "Isaáic", "", "", "Isaac the son"]) + let v = native_list_append(v, ["Isaáic", "noun", "Isaáic", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["draigen", "noun", "draigena", "draigin", "draigenaib", "", "blackthorn Prunus spinosa"]) + let v = native_list_append(v, ["caithim", "noun", "caithim", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["crábud", "noun", "crábud", "crábid", "", "", "religious devotion"]) + let v = native_list_append(v, ["caillech", "noun", "caillecha", "caillige", "caillig", "", "nun"]) + let v = native_list_append(v, ["aicsenugud", "noun", "aicsenugud", "", "", "", "causal connection"]) + let v = native_list_append(v, ["eidenn", "noun", "eidenn", "eidinn", "", "", "ivy"]) + let v = native_list_append(v, ["drui", "noun", "drui", "", "", "", "poetic form of"]) + let v = native_list_append(v, ["ascad", "noun", "ascad", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["n-ascad", "noun", "n-ascad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["námat", "noun", "námat", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["cobuir", "noun", "cobuir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["híróin", "noun", "híróin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["íróin", "noun", "íróin", "", "", "", "irony"]) + let v = native_list_append(v, ["reilic", "noun", "reilce", "reilce", "reilcib", "", "burial place"]) + let v = native_list_append(v, ["síde", "noun", "síde", "", "", "", "inflection of síd"]) + let v = native_list_append(v, ["sreth", "noun", "sreth", "srethe", "", "", "verbal noun of"]) + let v = native_list_append(v, ["senchaid", "noun", "senchaidi", "senchada", "senchaidib", "", "reciter of lore"]) + let v = native_list_append(v, ["scíam", "noun", "scíama", "scéime", "scéim", "", "figure of speech"]) + let v = native_list_append(v, ["Brénainn", "noun", "Brénainn", "", "", "", "a male given"]) + let v = native_list_append(v, ["Apréil", "noun", "Apréil", "", "", "", "April"]) + let v = native_list_append(v, ["áinne", "noun", "áinni", "áinni", "áinniu", "", "ring"]) + let v = native_list_append(v, ["aiccidit", "noun", "aicciditi", "aiccidite", "aicciditi", "", "accident property attached"]) + let v = native_list_append(v, ["Muman", "noun", "Muman", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["Crístaide", "noun", "Crístaidi", "Crístaidi", "Crístaidiu", "", "a Christian"]) + let v = native_list_append(v, ["fíadnisse", "noun", "fíadnissib", "fíadnissi", "fíadnissiu", "", "witness testimony"]) + let v = native_list_append(v, ["aíne", "noun", "aíni", "", "aíni", "", "alternative form of"]) + let v = native_list_append(v, ["mbocht", "noun", "mbocht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["menman", "noun", "menman", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["bríathra", "noun", "bríathra", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["foscad", "noun", "foiscthe", "fosctho", "foscud", "", "shade shadow darkness"]) + let v = native_list_append(v, ["foscud", "noun", "foscud", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["aurrae", "noun", "aurrae", "", "", "", "native freeman someone"]) + let v = native_list_append(v, ["attrab", "noun", "attraba", "aittrib", "attrub", "", "alternative spelling of"]) + let v = native_list_append(v, ["caithem", "noun", "caithem", "caithme", "caithim", "", "verbal noun of"]) + let v = native_list_append(v, ["caisel", "noun", "caisle", "caisil", "caisiul", "", "stone wall rampart"]) + let v = native_list_append(v, ["cacc", "noun", "cacc", "", "", "", "shit excrement"]) + let v = native_list_append(v, ["búaidre", "noun", "búaidre", "", "búaidri", "", "confusion trouble"]) + let v = native_list_append(v, ["brised", "noun", "brised", "", "", "", "verbal noun of"]) + let v = native_list_append(v, ["brissed", "noun", "brissed", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tenlach", "noun", "tenlacha", "tenlaig", "tenlug", "", "hearth fireplace"]) + let v = native_list_append(v, ["cléirech", "noun", "cléirig", "cléirig", "cléirchib", "", "cleric"]) + let v = native_list_append(v, ["clocc", "noun", "cloicc", "cloicc", "cloccaib", "", "alternative spelling of"]) + let v = native_list_append(v, ["ceinn", "noun", "ceinn", "", "", "", "inflection of cenn"]) + let v = native_list_append(v, ["cammán", "noun", "camáin", "camáin", "cammánaib", "", "hurley hurl hurling"]) + let v = native_list_append(v, ["cúach", "noun", "cúach", "", "", "", "genitive singular/dual/plural of"]) + let v = native_list_append(v, ["cécht", "noun", "céchtae", "céchta", "céchtaib", "", "plough beam"]) + let v = native_list_append(v, ["crúach", "noun", "crúacha", "crúaiche", "crúaich", "", "stack of corn"]) + let v = native_list_append(v, ["cróes", "noun", "cróes", "croís", "", "", "gluttony"]) + let v = native_list_append(v, ["ndliged", "noun", "ndliged", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bésaib", "noun", "bésaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["gnímaib", "noun", "gnímaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["díden", "noun", "díden", "dídine", "dídin", "", "end"]) + let v = native_list_append(v, ["dánae", "noun", "dánae", "", "", "", "genitive plural of"]) + let v = native_list_append(v, ["duilne", "noun", "duilni", "", "duilni", "", "leaf collective foliage"]) + let v = native_list_append(v, ["commus", "noun", "coimse", "coimseo", "coimsib", "", "verbal noun of"]) + let v = native_list_append(v, ["feib", "noun", "feib", "", "", "", "inflection of feb"]) + let v = native_list_append(v, ["auctoru", "noun", "auctoru", "", "", "", "vocative/accusative plural of"]) + let v = native_list_append(v, ["fogomur", "noun", "fogomur", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["fognam", "noun", "fognam", "fognamo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["feiss", "noun", "feiss", "", "", "", "inflection of fess"]) + let v = native_list_append(v, ["foílenn", "noun", "foílenna", "foílinne", "foílinn", "", "seagull"]) + let v = native_list_append(v, ["gairr", "noun", "gairr", "", "", "", "calf of the"]) + let v = native_list_append(v, ["gairri", "noun", "gairri", "", "", "", "accusative plural of"]) + let v = native_list_append(v, ["fróech", "noun", "fróech", "froích", "", "", "heather Calluna vulgaris"]) + let v = native_list_append(v, ["froích", "noun", "froích", "", "", "", "vocative/genitive singular of"]) + let v = native_list_append(v, ["n-airde", "noun", "n-airde", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aitrebthid", "noun", "aitrebthidi", "aitrebthado", "aitrebthidib", "", "inhabitant"]) + let v = native_list_append(v, ["aitrebthidib", "noun", "aitrebthidib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["mmuntar", "noun", "mmuntar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adastor", "noun", "adastra", "adastair", "adastraib", "", "halter"]) + let v = native_list_append(v, ["loathar", "noun", "lóthra", "loathair", "lóthraib", "", "liquid-holding vessel"]) + let v = native_list_append(v, ["robud", "noun", "robtha", "robuid", "robthaib", "", "notice warning"]) + let v = native_list_append(v, ["forgu", "noun", "forgu", "", "", "", "the best to"]) + let v = native_list_append(v, ["mrechtrad", "noun", "mrechtrada", "mrechtraid", "mrechtrud", "", "variety"]) + let v = native_list_append(v, ["díre", "noun", "dírib", "díri", "díriu", "", "a financial penalty"]) + let v = native_list_append(v, ["forcraid", "noun", "forcraid", "forcraideo", "", "", "excess"]) + let v = native_list_append(v, ["uccu", "noun", "uccu", "", "", "", "choice"]) + let v = native_list_append(v, ["loimm", "noun", "loimmen", "loimme", "loimmim", "", "sip"]) + let v = native_list_append(v, ["tuidme", "noun", "tuidmib", "tuidmi", "tuidmiu", "", "verbal noun of"]) + let v = native_list_append(v, ["comúaimm", "noun", "comúaimmen", "comúaimme", "comúaimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["úaimm", "noun", "úaimmen", "úaimme", "úaimmim", "", "verbal noun of"]) + let v = native_list_append(v, ["ethar", "noun", "ethra", "ethair", "ethraib", "", "boat"]) + let v = native_list_append(v, ["moídem", "noun", "moídmea", "moídme", "moídim", "", "verbal noun of"]) + let v = native_list_append(v, ["éigem", "noun", "éigmea", "éigme", "éigim", "", "verbal noun of"]) + let v = native_list_append(v, ["deilm", "noun", "delman", "delmae", "delmaim", "", "noise"]) + let v = native_list_append(v, ["Tír Dá Glas", "noun", "Tír Dá Glas", "Tíre Dá Glas", "", "", "Terryglass a village"]) + let v = native_list_append(v, ["Cell Daro", "noun", "Cell Daro", "Cille Daro", "Cill Daro", "", "Kildare a town"]) + let v = native_list_append(v, ["Cell Dara", "noun", "Cell Dara", "Cille Dara", "Cill Dara", "", "alternative form of"]) + let v = native_list_append(v, ["togal", "noun", "togla", "toglae", "togail", "", "verbal noun of"]) + let v = native_list_append(v, ["sreng", "noun", "sreing", "sreing", "srengaib", "", "string cord"]) + let v = native_list_append(v, ["fuirech", "noun", "fuirech", "fuirig", "fuiriuch", "", "verbal noun of"]) + let v = native_list_append(v, ["airec", "noun", "airec", "airic", "airiuc", "", "verbal noun of"]) + let v = native_list_append(v, ["immairecc", "noun", "immairecc", "immairicc", "imairiucc", "", "verbal noun of"]) + let v = native_list_append(v, ["aisec", "noun", "aisec", "aisic", "aisiuc", "", "act of giving"]) + let v = native_list_append(v, ["fuirec", "noun", "fuircea", "fuiric", "fuircib", "", "something provided for"]) + let v = native_list_append(v, ["terchomrac", "noun", "terchomrac", "terchomraic", "terchomruc", "", "assembly gathering"]) + let v = native_list_append(v, ["tochomrac", "noun", "tochomrac", "tochomraic", "tochomruc", "", "assembly"]) + let v = native_list_append(v, ["tíchtu", "noun", "tíchtu", "tíchtan", "tíchtain", "", "verbal noun of"]) + let v = native_list_append(v, ["airliciud", "noun", "airlicthe", "airlictheo", "airlicthib", "", "verbal noun of"]) + let v = native_list_append(v, ["léiciud", "noun", "léicthe", "léictheo", "léicthib", "", "verbal noun of"]) + let v = native_list_append(v, ["airsolcud", "noun", "airsoilcthe", "airsoilctheo", "airsoilcthib", "", "verbal noun of"]) + let v = native_list_append(v, ["coiblige", "noun", "coiblige", "coibligi", "coibligiu", "", "cohabitation"]) + let v = native_list_append(v, ["freslige", "noun", "freslige", "fresligi", "fresligiu", "", "lying down"]) + let v = native_list_append(v, ["aithle", "noun", "aithlib", "aithli", "aithliu", "", "verbal noun of"]) + let v = native_list_append(v, ["éilled", "noun", "éilled", "éilledo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["déogur", "noun", "déoguir", "déoguir", "déograib", "", "diphthong"]) + let v = native_list_append(v, ["folud", "noun", "folta", "foluid", "foltaib", "", "wealth"]) + let v = native_list_append(v, ["sonartae", "noun", "sonartai", "", "sonartai", "", "strength"]) + let v = native_list_append(v, ["airgal", "noun", "airgala", "airgaile", "airgail", "", "boiling bursting"]) + let v = native_list_append(v, ["imdegal", "noun", "imdegal", "imdeglae", "imdegail", "", "verbal noun of"]) + let v = native_list_append(v, ["fomus", "noun", "foimse", "foimseo", "foimsib", "", "calculation estimate"]) + let v = native_list_append(v, ["frithmius", "noun", "frithmius", "frithmesso", "", "", "doubt apprehension"]) + let v = native_list_append(v, ["dímess", "noun", "dímess", "dímseo", "", "", "contempt disparagement"]) + let v = native_list_append(v, ["díummus", "noun", "díummus", "diumso", "", "", "pride arrogance"]) + let v = native_list_append(v, ["comguide", "noun", "comguidi", "", "comguidi", "", "praying together"]) + let v = native_list_append(v, ["airnaidm", "noun", "airnadman", "airnadmae", "airnadmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["iriud", "noun", "irthe", "irtheo", "irthib", "", "margin"]) + let v = native_list_append(v, ["impuide", "noun", "impuidib", "impuidi", "impuidiu", "", "verbal noun of"]) + let v = native_list_append(v, ["indnaide", "noun", "indnaide", "indnaidi", "indnaidiu", "", "verbal noun of"]) + let v = native_list_append(v, ["fuined", "noun", "fuineda", "fuinid", "fuiniud", "", "sunset"]) + let v = native_list_append(v, ["aslach", "noun", "aslacha", "aslaig", "asluch", "", "verbal noun of"]) + let v = native_list_append(v, ["teinm", "noun", "tenman", "tenmae", "tenmaim", "", "verbal noun of"]) + let v = native_list_append(v, ["coímthecht", "noun", "coímthechta", "coímthechtae", "coímthechtaib", "", "verbal noun of"]) + let v = native_list_append(v, ["imthecht", "noun", "imthecht", "imthechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["essimthecht", "noun", "essimthecht", "essimthechtae", "", "", "going forth"]) + let v = native_list_append(v, ["comaitecht", "noun", "comaitecht", "comaitechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["fritecht", "noun", "fritecht", "fritechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["derscugud", "noun", "derscugud", "derscaigtheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["tuistiu", "noun", "tuistin", "tuisten", "tuistin", "", "verbal noun of"]) + let v = native_list_append(v, ["tuistid", "noun", "tuistidi", "tuistideo", "tuistidib", "", "parent"]) + let v = native_list_append(v, ["foísam", "noun", "foísmae", "foísmo", "foísmaib", "", "alternative spelling of"]) + let v = native_list_append(v, ["tairissem", "noun", "tairissem", "tairesmo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["tairisem", "noun", "tairisem", "tairesmo", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tuidecht", "noun", "tuidecht", "tuidechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["frituidecht", "noun", "frituidecht", "frituidechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["cosecrad", "noun", "cosecrad", "cosaccartha", "", "", "verbal noun of"]) + let v = native_list_append(v, ["cossecrad", "noun", "cossecrad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chossecrad", "noun", "chossecrad", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Ebustu", "noun", "Ebustai", "Ebustai", "Ebustaib", "", "Jebusites"]) + let v = native_list_append(v, ["indarbu", "noun", "indarbu", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-indarbu", "noun", "n-indarbu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["Hierúsalem", "noun", "Hierúsalem", "", "", "", "Jerusalem a city"]) + let v = native_list_append(v, ["Hirusalem", "noun", "Hirusalem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aitherrach", "noun", "aitherrach", "aitherrig", "aitherruch", "", "verbal noun of"]) + let v = native_list_append(v, ["aithirriuch", "noun", "aithirriuch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["cathbarr", "noun", "cathbairr", "cathbairr", "cathbarraib", "", "helmet headpiece"]) + let v = native_list_append(v, ["indéin", "noun", "indéna", "indéine", "indénaib", "", "alternative form of"]) + let v = native_list_append(v, ["rogud", "noun", "rogud", "roichtheo", "", "", "verbal noun of"]) + let v = native_list_append(v, ["lemlacht", "noun", "lemlacht", "lemlachto", "", "", "milk"]) + let v = native_list_append(v, ["léitiu", "noun", "léitin", "léiten", "léitin", "", "verbal noun of"]) + let v = native_list_append(v, ["lemnacht", "noun", "lemnacht", "lemnachto", "", "", "alternative form of"]) + let v = native_list_append(v, ["cainnenn", "noun", "cainnenna", "cainninne", "cainninn", "", "garlic leek"]) + let v = native_list_append(v, ["giugrann", "noun", "giugrainn", "giugrainn", "giugrannaib", "", "barnacle goose"]) + let v = native_list_append(v, ["giugran", "noun", "giugran", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gigrann", "noun", "gigrann", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Airgíalla", "noun", "Airgíalla", "", "", "", "A medieval overkingdom"]) + let v = native_list_append(v, ["ongad", "noun", "ongaid", "ongaid", "oingthib", "", "verbal noun of"]) + let v = native_list_append(v, ["Ephis", "noun", "Ephis", "", "", "", "Ephesus an ancient"]) + let v = native_list_append(v, ["nEphis", "noun", "nEphis", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["loíd", "noun", "loídi", "loíde", "loídi", "", "lay sung poem"]) + let v = native_list_append(v, ["ingantus", "noun", "ingantus", "ingantuso", "", "", "wonder astonishment"]) + let v = native_list_append(v, ["idbart", "noun", "idbarta", "idbairte", "idbairt", "", "verbal noun of"]) + let v = native_list_append(v, ["ndead", "noun", "ndead", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["Corgus", "noun", "Corgais", "Corgais", "Corgusaib", "", "Lent"]) + let v = native_list_append(v, ["dílsi", "noun", "dílsi", "", "", "", "accusative/dative singular of"]) + let v = native_list_append(v, ["ndílsi", "noun", "ndílsi", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nauna", "noun", "nauna", "", "", "", "famine"]) + let v = native_list_append(v, ["légend", "noun", "légend", "légind", "légund", "", "verbal noun of"]) + let v = native_list_append(v, ["chlí", "noun", "chlí", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Partraige", "noun", "Partraige", "", "", "", "Early Irish people"]) + let v = native_list_append(v, ["osnad", "noun", "osnada", "osnaide", "osnaid", "", "sigh groan"]) + let v = native_list_append(v, ["ordd", "noun", "ordd", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["llá", "noun", "llá", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["finnae", "noun", "finnai", "finnai", "finnu", "", "hair of a"]) + let v = native_list_append(v, ["samthach", "noun", "samthacha", "samthige", "samthig", "", "axhandle"]) + let v = native_list_append(v, ["samthig", "noun", "samthig", "", "", "", "inflection of samthach"]) + let v = native_list_append(v, ["samthige", "noun", "samthige", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["mmuir", "noun", "mmuir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["Eleseus", "noun", "Eleseus", "", "", "", "Elisha"]) + let v = native_list_append(v, ["rithissi", "noun", "rithissi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["frithissi", "noun", "frithissi", "", "", "", "follows a possessive"]) + let v = native_list_append(v, ["snám", "noun", "snám", "snáma", "", "", "verbal noun of"]) + let v = native_list_append(v, ["ríagul", "noun", "ríagul", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tochor", "noun", "tochor", "tochuir", "tochur", "", "verbal noun of"]) + let v = native_list_append(v, ["teoir", "noun", "teoir", "", "", "", "theory"]) + let v = native_list_append(v, ["tairmthecht", "noun", "tairmthecht", "tairmthechtae", "tairmthechta", "", "verbal noun of"]) + let v = native_list_append(v, ["idbarte", "noun", "idbarte", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["óchtar", "noun", "óchtar", "", "", "", "early form of"]) + let v = native_list_append(v, ["truit", "noun", "truiti", "truite", "truiti", "", "starling Sturnidae spp."]) + let v = native_list_append(v, ["utlach", "noun", "utlaig", "utlaig", "utlachaib", "", "lapful"]) + let v = native_list_append(v, ["airsa", "noun", "airsain", "airsan", "airsain", "", "jamb doorpost"]) + let v = native_list_append(v, ["chétbuid", "noun", "chétbuid", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["nebimdibe", "noun", "nebimdibe", "nebimdibi", "nebimdibiu", "", "uncircumcision"]) + let v = native_list_append(v, ["Tíamthe", "noun", "Tíamthe", "Tíamthi", "Tíamthiu", "", "Timothy"]) + let v = native_list_append(v, ["Corbmac", "noun", "Corbmac", "Corbmaic", "", "", "alternative form of"]) + let v = native_list_append(v, ["úam", "noun", "úama", "úaime", "úaim", "", "cave"]) + let v = native_list_append(v, ["sailm", "noun", "sailm", "", "", "", "inflection of salm"]) + let v = native_list_append(v, ["tossogod", "noun", "tossogod", "", "", "", "beginning"]) + let v = native_list_append(v, ["Iudéib", "noun", "Iudéib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Barnaip", "noun", "Barnaip", "", "", "", "Barnabas"]) + let v = native_list_append(v, ["geintib", "noun", "geintib", "", "", "", "dative plural of"]) + let v = native_list_append(v, ["Thit", "noun", "Thit", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["légund", "noun", "légund", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["césad", "noun", "césad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["longais", "noun", "longais", "", "", "", "inflection of longas"]) + let v = native_list_append(v, ["Iosofád", "noun", "Iosofád", "", "", "", "Jehoshaphat"]) + let v = native_list_append(v, ["clochaib", "noun", "clochaib", "", "", "", "dative dual/plural of"]) + let v = native_list_append(v, ["chlochaib", "noun", "chlochaib", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["thecht", "noun", "thecht", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mulluch", "noun", "mulluch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["sléibe", "noun", "sléibe", "", "", "", "inflection of slíab"]) + let v = native_list_append(v, ["slébe", "noun", "slébe", "", "", "", "inflection of slíab"]) + let v = native_list_append(v, ["tochmurc", "noun", "tochmurc", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["thochmurc", "noun", "thochmurc", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Rebicae", "noun", "Rebicae", "", "", "", "Rebekah the sister"]) + let v = native_list_append(v, ["Ísác", "noun", "Ísác", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["toimtin", "noun", "toimtin", "", "", "", "inflection of toimtiu"]) + let v = native_list_append(v, ["ndígail", "noun", "ndígail", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cúal", "noun", "cúala", "cúaile", "cúail", "", "bundle especially of"]) + let v = native_list_append(v, ["n-ocht", "noun", "n-ocht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["airchissecht", "noun", "airchissecht", "airchissechtae", "", "", "verbal noun of"]) + let v = native_list_append(v, ["dígle", "noun", "dígle", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["aidber", "noun", "aidber", "aidbir", "aidbiur", "", "blame rebuke reproach"]) + let v = native_list_append(v, ["aidbiur", "noun", "aidbiur", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["n-ecne", "noun", "n-ecne", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["phiur", "noun", "phiur", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["airisiu", "noun", "airisin", "airisen", "airisin", "", "story history"]) + let v = native_list_append(v, ["airisin", "noun", "airisin", "", "", "", "inflection of airisiu"]) + let v = native_list_append(v, ["n-ainmm", "noun", "n-ainmm", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["timthirthid", "noun", "timthirthidi", "timthirthedo", "timthirthidib", "", "servant"]) + let v = native_list_append(v, ["timthirthidi", "noun", "timthirthidi", "", "", "", "nominative/vocative/accusative plural of"]) + let v = native_list_append(v, ["thimthirthidi", "noun", "thimthirthidi", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["in", "verb", "in", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["bit", "verb", "bit", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["be", "verb", "ba", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["is", "verb", "iss", "", "", "", "to be"]) + let v = native_list_append(v, ["cum", "verb", "·cum", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["estar", "verb", "·estar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["it", "verb", "at", "", "", "", "inflection of is"]) + let v = native_list_append(v, ["at", "verb", "it", "ata", "", "", "inflection of is"]) + let v = native_list_append(v, ["an", "verb", "·an", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["as", "verb", "in a direct relative clause and eclipsis in an indirect relative clause", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["bee", "verb", "bee", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["both", "verb", "·both", "", "", "", "preterite passive conjunct"]) + let v = native_list_append(v, ["ba", "verb", "be", "", "", "", "inflection of is"]) + let v = native_list_append(v, ["bad", "verb", "no-table-tags", "sga-mutation", "mbad", "", "inflection of is"]) + let v = native_list_append(v, ["ban", "verb", "baán", "no-table-tags", "sga-mutation", "", "first-person plural imperative"]) + let v = native_list_append(v, ["bat", "verb", "no-table-tags", "sga-mutation", "mbat", "", "inflection of is"]) + let v = native_list_append(v, ["bed", "verb", "·bed", "·beth", "", "", "third-person singular past"]) + let v = native_list_append(v, ["beit", "verb", "no-table-tags", "sga-mutation", "mbeit", "", "third-person plural present"]) + let v = native_list_append(v, ["ben", "verb", "·ben", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ail", "verb", "·ail", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["maid", "verb", "·maid", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ber", "verb", "·ber", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["bid", "verb", "bith", "", "", "", "inflection of is"]) + let v = native_list_append(v, ["biad", "verb", "·bïad", "no-table-tags", "sga-mutation", "", "third-person singular conditional"]) + let v = native_list_append(v, ["bir", "verb", "·bir", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["fil", "verb", "·fil", "no-table-tags", "sga-mutation", "", "present progressive conjunct"]) + let v = native_list_append(v, ["file", "verb", "file", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["beta", "verb", "bete", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["class", "verb", "·class", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["dam", "verb", "dam", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["am", "verb", "amm", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["bia", "verb", "bïa", "bía", "", "", "first-person singular future"]) + let v = native_list_append(v, ["acht", "verb", "·acht", "no-table-tags", "sga-mutation", "", "inflection of aigid"]) + let v = native_list_append(v, ["fail", "verb", "fail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sel", "verb", "·sel", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["té", "verb", "·té", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["riga", "verb", "·riga", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["bes", "verb", "no-table-tags", "sga-mutation", "mbes", "", "third-person singular present"]) + let v = native_list_append(v, ["nach", "verb", "nach", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["eth", "verb", "·eth", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["biu", "verb", "biu", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["rigid", "verb", "·reig", "·raig", "no-table-tags", "", "to stretch to"]) + let v = native_list_append(v, ["anus", "verb", "·anus", "no-table-tags", "sga-mutation", "", "first-person singular future/present"]) + let v = native_list_append(v, ["llegar", "verb", "llegar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["toga", "verb", "no-table-tags", "sga-mutation", "thoga", "", "second-person singular imperative"]) + let v = native_list_append(v, ["bias", "verb", "no-table-tags", "sga-mutation", "mbias", "", "third-person singular future"]) + let v = native_list_append(v, ["fer", "verb", "fer", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["beo", "verb", "no-table-tags", "sga-mutation", "mbeo", "", "alternative form of"]) + let v = native_list_append(v, ["nip", "verb", "no-table-tags", "sga-mutation", "also nnip in h-prothesis environments", "", "alternative spelling of"]) + let v = native_list_append(v, ["mad", "verb", "mad", "", "", "", "if it be"]) + let v = native_list_append(v, ["mat", "verb", "mat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["acca", "verb", "·acca", "no-table-tags", "sga-mutation", "", "first/second-person singular preterite/perfect"]) + let v = native_list_append(v, ["scar", "verb", "·scar", "·scart", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["alar", "verb", "·alar", "no-table-tags", "sga-mutation", "", "singular present indicative"]) + let v = native_list_append(v, ["reg", "verb", "·reg", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["ibis", "verb", "ibis", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["tog", "verb", "no-table-tags", "sga-mutation", "thog", "", "second-person singular imperative"]) + let v = native_list_append(v, ["tart", "verb", "·tart", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["dich", "verb", "·dich", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["beth", "verb", "·beth", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["mato", "verb", "matu", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["fel", "verb", "no-table-tags", "sga-mutation", "ḟel", "", "alternative form of"]) + let v = native_list_append(v, ["état", "verb", "·état", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["denim", "verb", "·denim", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["bá", "verb", "bá", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["gelid", "verb", "·geil", "gelt", "no-table-tags", "", "to graze consume"]) + let v = native_list_append(v, ["dáil", "verb", "·dáil", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["bris", "verb", "briss", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["rig", "verb", "·rig", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["molid", "verb", "no-table-tags", "sga-mutation", "also mmolid in h-prothesis environments", "", "alternative form of"]) + let v = native_list_append(v, ["alt", "verb", "·alt", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["cuire", "verb", "no-table-tags", "sga-mutation", "chuire", "", "second-person singular imperative"]) + let v = native_list_append(v, ["bas", "verb", "no-table-tags", "sga-mutation", "mbas", "", "third-person singular present"]) + let v = native_list_append(v, ["bith", "verb", "bith", "", "", "", "inflection of is"]) + let v = native_list_append(v, ["tá", "verb", "·tá", "·táa", "", "", "unattested by itself"]) + let v = native_list_append(v, ["ith", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "second-person singular imperative"]) + let v = native_list_append(v, ["glan", "verb", "·glan", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["basa", "verb", "no-table-tags", "sga-mutation", "mbasa", "", "first/second-person singular preterite/imperfect"]) + let v = native_list_append(v, ["agar", "verb", "·agar", "", "", "", "passive singular present"]) + let v = native_list_append(v, ["briste", "verb", "briste", "", "", "", "passive singular preterite"]) + let v = native_list_append(v, ["agat", "verb", "·agat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["mór", "verb", "·mór", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["bocht", "verb", "·bocht", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["robe", "verb", "·robe", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["chum", "verb", "·chum", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["bí", "verb", "·bí", "bii", "", "", "second/third-person singular habitual"]) + let v = native_list_append(v, ["amm", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "alternative spelling of"]) + let v = native_list_append(v, ["biter", "verb", "·biter", "no-table-tags", "sga-mutation", "", "third-person plural future"]) + let v = native_list_append(v, ["fess", "verb", "·fess", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["tartar", "verb", "·tartar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["béra", "verb", "·béra", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["rega", "verb", "rega", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["bera", "verb", "·bera", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["beinn", "verb", "·beinn", "no-table-tags", "sga-mutation", "", "inflection of at·tá"]) + let v = native_list_append(v, ["ain", "verb", "·ain", "", "", "", "third-person singular future/present"]) + let v = native_list_append(v, ["relic", "verb", "·relic", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["bie", "verb", "no-table-tags", "sga-mutation", "mbie", "", "second-person singular future"]) + let v = native_list_append(v, ["ibid", "verb", "ibiu", "", "", "", "to drink"]) + let v = native_list_append(v, ["dene", "verb", "no-table-tags", "sga-mutation", "ndene", "", "alternative spelling of"]) + let v = native_list_append(v, ["boi", "verb", "no-table-tags", "sga-mutation", "mboi", "", "alternative spelling of"]) + let v = native_list_append(v, ["arcu", "verb", "arco", "", "", "", "to beseech"]) + let v = native_list_append(v, ["dama", "verb", "·dama", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["esta", "verb", "·esta", "no-table-tags", "sga-mutation", "", "second-person singular past"]) + let v = native_list_append(v, ["ata", "verb", "ata", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["luid", "verb", "·luid", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["doucet", "verb", "do·ucet", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ful", "verb", "·ful", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["crie", "verb", "·crie", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["douc", "verb", "do·uc", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["festa", "verb", "·festa", "no-table-tags", "sga-mutation", "", "second-person singular past"]) + let v = native_list_append(v, ["damar", "verb", "·damar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["roba", "verb", "·roba", "·raba", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["bér", "verb", "·bér", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["eper", "verb", "·eper", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["biri", "verb", "biri", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["lud", "verb", "·lud", "no-table-tags", "sga-mutation", "", "first-person singular preterite"]) + let v = native_list_append(v, ["berat", "verb", "·berat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["lega", "verb", "·lega", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["tí", "verb", "·tí", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["bem", "verb", "·bem", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["tó", "verb", "·tó", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["téged", "verb", "·téged", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["ching", "verb", "no-table-tags", "sga-mutation", "·cing", "", "lenited form of"]) + let v = native_list_append(v, ["scara", "verb", "·scara", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["berr", "verb", "·berr", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["bede", "verb", "bede", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["éta", "verb", "·éta", "no-table-tags", "sga-mutation", "", "inflection of ad·cota"]) + let v = native_list_append(v, ["cria", "verb", "·crïa", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["adora", "verb", "ad·ora", "adrad", "no-table-tags", "", "to adore"]) + let v = native_list_append(v, ["caraid", "verb", "caraim", "serc", "carthi", "", "to love"]) + let v = native_list_append(v, ["agad", "verb", "·agad", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["feis", "verb", "no-table-tags", "sga-mutation", "ḟeis", "", "third-person singular future"]) + let v = native_list_append(v, ["ib", "verb", "ib", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["guid", "verb", "·guid", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["ceto", "verb", "cetu", "cíato", "", "", "although they are"]) + let v = native_list_append(v, ["ebla", "verb", "·ebla", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["ní", "verb", "ní", "", "", "", "is not isn’t"]) + let v = native_list_append(v, ["tete", "verb", "no-table-tags", "sga-mutation", "thete", "", "alternative spelling of"]) + let v = native_list_append(v, ["aig", "verb", "·aig", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["batir", "verb", "batar", "", "", "", "third-person plural preterite/imperfect"]) + let v = native_list_append(v, ["bé", "verb", "·bé", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["labrar", "verb", "no-table-tags", "sga-mutation", "also llabrar in h-prothesis environments", "", "first-person singular present"]) + let v = native_list_append(v, ["combad", "verb", "no-table-tags", "sga-mutation", "chombad", "", "so that ..."]) + let v = native_list_append(v, ["doté", "verb", "do·té", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["dotéis", "verb", "do·téis", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["fintar", "verb", "·fintar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["fomentar", "verb", "fo·mentar", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["cosca", "verb", "·cosca", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["robad", "verb", "·robad", "·rabad", "no-table-tags", "", "third-person singular past"]) + let v = native_list_append(v, ["robé", "verb", "ro·bé", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["bertha", "verb", "·bertha", "no-table-tags", "sga-mutation", "", "second-person singular past"]) + let v = native_list_append(v, ["cren", "verb", "·cren", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["rubi", "verb", "·rubi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ruba", "verb", "·ruba", "", "", "", "third-person singular habitual"]) + let v = native_list_append(v, ["rubai", "verb", "·rubai", "", "", "", "third-person singular habitual"]) + let v = native_list_append(v, ["aci", "verb", "·aci", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["gé", "verb", "·gé", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["lá", "verb", "·lá", "-l", "no-table-tags", "", "unattested by itself"]) + let v = native_list_append(v, ["lín", "verb", "lín", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ella", "verb", "·ella", "no-table-tags", "sga-mutation", "", "unattested by itself"]) + let v = native_list_append(v, ["maso", "verb", "maso", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["doeth", "verb", "do·eth", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["thog", "verb", "thog", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["beir", "verb", "beir", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["fessa", "verb", "·fessa", "", "", "", "passive plural perfect"]) + let v = native_list_append(v, ["tuit", "verb", "·tuit", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["messe", "verb", "no-table-tags", "sga-mutation", "also mmesse in h-prothesis environments", "", "past participle of"]) + let v = native_list_append(v, ["bert", "verb", "·bert", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["nerta", "verb", "·nerta", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["dorata", "verb", "do·rata", "no-table-tags", "sga-mutation", "", "inflection of do·beir"]) + let v = native_list_append(v, ["fissi", "verb", "no-table-tags", "sga-mutation", "ḟissi", "", "verbal of necessity"]) + let v = native_list_append(v, ["berte", "verb", "no-table-tags", "sga-mutation", "mberte", "", "third-person plural present"]) + let v = native_list_append(v, ["conici", "verb", "con·ici", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["connessa", "verb", "con·nessa", "·comainsea", "comainsem", "", "to spurn"]) + let v = native_list_append(v, ["clos", "verb", "·clos", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["masu", "verb", "maso", "massu", "", "", "if… is"]) + let v = native_list_append(v, ["maith", "verb", "·maith", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["deni", "verb", "·deni", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["terga", "verb", "·terga", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["tair", "verb", "no-table-tags", "sga-mutation", "thair", "", "second-person singular imperative"]) + let v = native_list_append(v, ["fording", "verb", "for·ding", "no-table-tags", "sga-conj-complex", "", "to crush to"]) + let v = native_list_append(v, ["legar", "verb", "no-table-tags", "sga-mutation", "also llegar in h-prothesis environments", "", "passive singular imperative"]) + let v = native_list_append(v, ["bies", "verb", "bies", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["benar", "verb", "no-table-tags", "sga-mutation", "mbenar", "", "inflection of benaid"]) + let v = native_list_append(v, ["cit", "verb", "no-table-tags", "sga-mutation", "chit", "", "though… they are"]) + let v = native_list_append(v, ["tarta", "verb", "·tarta", "no-table-tags", "sga-mutation", "", "inflection of do·beir"]) + let v = native_list_append(v, ["biru", "verb", "no-table-tags", "sga-mutation", "mbiru", "", "first-person singular present"]) + let v = native_list_append(v, ["cér", "verb", "·cér", "no-table-tags", "sga-mutation", "", "first-person singular preterite"]) + let v = native_list_append(v, ["deich", "verb", "deich", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["raba", "verb", "·raba", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["llega", "verb", "·llega", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fodera", "verb", "fod·era", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["classa", "verb", "·classa", "no-table-tags", "sga-mutation", "", "plural passive preterite"]) + let v = native_list_append(v, ["tait", "verb", "tait", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ailes", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular present"]) + let v = native_list_append(v, ["thair", "verb", "thair", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["taat", "verb", "·taat", "no-table-tags", "sga-mutation", "", "third-person plural progressive"]) + let v = native_list_append(v, ["rop", "verb", "rop", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ithim", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "first-person singular present"]) + let v = native_list_append(v, ["dál", "verb", "·dál", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["nert", "verb", "nert", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["íss", "verb", "·íss", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["rét", "verb", "·rét", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["ropo", "verb", "ropo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["regas", "verb", "no-table-tags", "sga-mutation", "also rregas in h-prothesis environments", "", "third-person singular future"]) + let v = native_list_append(v, ["mitter", "verb", "mitter", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["genas", "verb", "no-table-tags", "sga-mutation", "ngenas", "", "alternative spelling of"]) + let v = native_list_append(v, ["legas", "verb", "no-table-tags", "sga-mutation", "also llegas in h-prothesis environments", "", "third-person singular present"]) + let v = native_list_append(v, ["snig", "verb", "·snig", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["llegas", "verb", "llegas", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ataré", "verb", "ata·ré", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["adi", "verb", "adib", "idib", "", "", "second-person plural present"]) + let v = native_list_append(v, ["criad", "verb", "·crïad", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["lég", "verb", "·lég", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["regad", "verb", "·regad", "no-table-tags", "sga-mutation", "", "third-person singular conditional"]) + let v = native_list_append(v, ["gella", "verb", "·gella", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["feil", "verb", "feil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gessi", "verb", "no-table-tags", "sga-mutation", "ngessi", "", "verbal of necessity"]) + let v = native_list_append(v, ["dér", "verb", "·dér", "no-table-tags", "sga-mutation", "", "third-person singular future/present"]) + let v = native_list_append(v, ["roí", "verb", "ro·í", "ro·hí", "no-table-tags", "", "third-person singular present"]) + let v = native_list_append(v, ["tías", "verb", "tías", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["daim", "verb", "·daim", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["regat", "verb", "·regat", "no-table-tags", "sga-mutation", "", "third-person plural future"]) + let v = native_list_append(v, ["tharta", "verb", "·tharta", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["atá", "verb", "a·tá", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["roma", "verb", "·roma", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["bete", "verb", "beta", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["ges", "verb", "·ges", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["damat", "verb", "·damat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["anais", "verb", "·anais", "", "", "", "second-person singular future/present"]) + let v = native_list_append(v, ["baid", "verb", "baïd", "·bá", "bás", "", "to die"]) + let v = native_list_append(v, ["tés", "verb", "tés", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["matu", "verb", "mato", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["nipi", "verb", "nipi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["batar", "verb", "no-table-tags", "sga-mutation", "mbatar", "", "third-person plural preterite/imperfect"]) + let v = native_list_append(v, ["taid", "verb", "·taïd", "", "", "", "second-person plural progressive"]) + let v = native_list_append(v, ["fele", "verb", "fele", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ndama", "verb", "·ndama", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["tabur", "verb", "·tabur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["beirid", "verb", "biru", "brethae", "", "", "to carry bring"]) + let v = native_list_append(v, ["berid", "verb", "no-table-tags", "sga-mutation", "mberid", "", "alternative spelling of"]) + let v = native_list_append(v, ["déni", "verb", "·déni", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["adaig", "verb", "ad·aig", "no-table-tags", "sga-conj-complex", "", "to drive impel"]) + let v = native_list_append(v, ["cid", "verb", "cid", "", "", "", "though… is indicative"]) + let v = native_list_append(v, ["tét", "verb", "tét", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["glenn", "verb", "·glenn", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["béo", "verb", "·béo", "beo", "beu", "", "first-person singular present"]) + let v = native_list_append(v, ["ruca", "verb", "·ruca", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["adcí", "verb", "ad·cí", "·aicci", "aicsiu", "", "to see to"]) + let v = native_list_append(v, ["dogní", "verb", "do·gní", "·dénai", "dénum", "", "to do"]) + let v = native_list_append(v, ["gníid", "verb", "·gníu", "·gníth", "gnethae", "", "to do"]) + let v = native_list_append(v, ["dénai", "verb", "·dénai", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["dorigni", "verb", "do·rigni", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ral", "verb", "·ral", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["múch", "verb", "múch", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["sceid", "verb", "sceïd", "·scé", "sceith", "", "to vomit"]) + let v = native_list_append(v, ["nách", "verb", "nách", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["mescae", "verb", "mescae", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["mesctha", "verb", "mesctha", "", "", "", "past participle of"]) + let v = native_list_append(v, ["nipa", "verb", "nipa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["damait", "verb", "damait", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["loisc", "verb", "loisc", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["marb", "verb", "·marb", "no-table-tags", "sga-mutation", "", "inflection of marbaid"]) + let v = native_list_append(v, ["fodam", "verb", "fo·dam", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["thés", "verb", "thés", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["luide", "verb", "no-table-tags", "sga-mutation", "also lluide in h-prothesis environments", "", "third-person singular preterite"]) + let v = native_list_append(v, ["eplet", "verb", "·eplet", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["rofinnadar", "verb", "ro·finnadar", "·finnadar", "fius", "", "to find out"]) + let v = native_list_append(v, ["iss", "verb", "iss", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["finnaid", "verb", "no-table-tags", "sga-mutation", "ḟinnaid", "", "second-person plural imperative"]) + let v = native_list_append(v, ["acair", "verb", "acair", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["roib", "verb", "·roib", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["altae", "verb", "altae", "", "", "", "inflection of ailid"]) + let v = native_list_append(v, ["regam", "verb", "·regam", "no-table-tags", "sga-mutation", "", "first-person plural future"]) + let v = native_list_append(v, ["rigas", "verb", "no-table-tags", "sga-mutation", "also rrigas in h-prothesis environments", "", "third-person singular future"]) + let v = native_list_append(v, ["sinis", "verb", "sinis", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["didam", "verb", "·didam", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["tergam", "verb", "·tergam", "no-table-tags", "sga-mutation", "", "first-person plural future"]) + let v = native_list_append(v, ["indat", "verb", "indat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["arcessi", "verb", "ar·cessi", "·airchissi", "airchissecht", "", "to pity have"]) + let v = native_list_append(v, ["dundret", "verb", "dund·ret", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["digni", "verb", "·digni", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["carae", "verb", "no-table-tags", "sga-mutation", "charae", "", "second-person singular present"]) + let v = native_list_append(v, ["festae", "verb", "·festae", "no-table-tags", "sga-mutation", "", "inflection of ro·finnadar"]) + let v = native_list_append(v, ["ibes", "verb", "ibes", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["loing", "verb", "·loing", "", "", "", "only used in"]) + let v = native_list_append(v, ["consecra", "verb", "con·secra", "·cosecra", "cosecrad", "", "to consecrate dedicate"]) + let v = native_list_append(v, ["brister", "verb", "brister", "", "", "", "inflection of brisid"]) + let v = native_list_append(v, ["beith", "verb", "no-table-tags", "sga-mutation", "mbeith", "", "third-person singular present"]) + let v = native_list_append(v, ["beithe", "verb", "no-table-tags", "sga-mutation", "mbeithe", "", "second-person plural present"]) + let v = native_list_append(v, ["durat", "verb", "du·rat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["molor", "verb", "·molor", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["aciam", "verb", "·aciam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["dignem", "verb", "·dignem", "no-table-tags", "sga-mutation", "", "first-person plural future"]) + let v = native_list_append(v, ["dignet", "verb", "·dignet", "no-table-tags", "sga-mutation", "", "third-person plural future"]) + let v = native_list_append(v, ["cinges", "verb", "no-table-tags", "sga-mutation", "chinges", "", "third-person singular present"]) + let v = native_list_append(v, ["snaid", "verb", "snaïd", "snám", "no-table-tags", "", "to swim"]) + let v = native_list_append(v, ["marbaid", "verb", "marbu", "marbsu", "", "", "to kill slay"]) + let v = native_list_append(v, ["festar", "verb", "·festar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["liles", "verb", "no-table-tags", "sga-mutation", "also lliles in h-prothesis environments", "", "third-person singular future"]) + let v = native_list_append(v, ["dobeir", "verb", "do·beir", "·tabair", "tabairt", "", "to bring"]) + let v = native_list_append(v, ["dligid", "verb", "dligim", "·dlecht", "", "", "to be entitled"]) + let v = native_list_append(v, ["beu", "verb", "no-table-tags", "sga-mutation", "mbeu", "", "alternative spelling of"]) + let v = native_list_append(v, ["duem", "verb", "du·em", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["matis", "verb", "no-table-tags", "sga-mutation", "also mmatis in h-prothesis environments", "", "third-person plural past"]) + let v = native_list_append(v, ["insamlar", "verb", "in·samlar", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["benat", "verb", "·benat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["consecha", "verb", "con·secha", "·cosca", "cosc", "", "to reprove admonish"]) + let v = native_list_append(v, ["dobeir anál fo", "verb", "do·beir anál fo", "", "", "", "to blow on"]) + let v = native_list_append(v, ["dobeir mallachta for", "verb", "do·beir mallachta for", "", "", "", "to curse"]) + let v = native_list_append(v, ["dobeir druimm fri", "verb", "do·beir druimm fri", "", "", "", "to abandon renounce"]) + let v = native_list_append(v, ["dobeir glún fri gliaid", "verb", "do·beir glún fri gliaid", "", "", "", "to brace for"]) + let v = native_list_append(v, ["lod", "verb", "lod", "", "", "", "first/second-person singular preterite"]) + let v = native_list_append(v, ["benas", "verb", "no-table-tags", "sga-mutation", "mbenas", "", "third-person singular present"]) + let v = native_list_append(v, ["nita", "verb", "nita", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["múinid", "verb", "múnud", "no-table-tags", "sga-conj-simple", "", "to teach instruct"]) + let v = native_list_append(v, ["múnigid", "verb", "múnigim", "", "", "", "to urinate"]) + let v = native_list_append(v, ["ansam", "verb", "·ansam", "no-table-tags", "sga-mutation", "", "first-person plural preterite"]) + let v = native_list_append(v, ["airi", "verb", "·airi", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["dern", "verb", "·dern", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["cluichigidir", "verb", "·cluichigedar", "no-table-tags", "sga-conj-simple", "", "to play sport"]) + let v = native_list_append(v, ["eblas", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular future"]) + let v = native_list_append(v, ["riat", "verb", "·rïat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["immi", "verb", "ammi", "ammin", "", "", "first-person plural present"]) + let v = native_list_append(v, ["attá", "verb", "at·tá", "·tá", "buith", "", "to be"]) + let v = native_list_append(v, ["bíuu", "verb", "bíuu", "", "", "", "first-person singular habitual"]) + let v = native_list_append(v, ["arbáigi", "verb", "ar·báigi", "irbág", "no-table-tags", "", "to fight contend"]) + let v = native_list_append(v, ["gní", "verb", "·gní", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["dén", "verb", "·dénai", "", "", "", "form of dénai"]) + let v = native_list_append(v, ["accae", "verb", "·accae", "no-table-tags", "sga-mutation", "", "third-person singular preterite/perfect"]) + let v = native_list_append(v, ["asbeir", "verb", "as·beir", "·epir", "epert", "", "to say utter"]) + let v = native_list_append(v, ["asbiur", "verb", "as·biur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["epur", "verb", "·epur", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["nonda", "verb", "nonda", "", "", "", "first/second-person singular present"]) + let v = native_list_append(v, ["scaraid", "verb", "·scara", "scarad", "no-table-tags", "", "to sever tear"]) + let v = native_list_append(v, ["fetar", "verb", "·fetar", "no-table-tags", "sga-mutation", "", "first/second-person singular perfect"]) + let v = native_list_append(v, ["scríbaid", "verb", "scríbend", "no-table-tags", "sga-conj-simple", "", "to write write"]) + let v = native_list_append(v, ["mema", "verb", "·mema", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["insamlathar", "verb", "in·samlathar", "·insamladar", "intamail", "", "to imitate emulate"]) + let v = native_list_append(v, ["niba", "verb", "niba", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["téis", "verb", "téis", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["crenas", "verb", "no-table-tags", "sga-mutation", "chrenas", "", "third-person singular present"]) + let v = native_list_append(v, ["bée", "verb", "·bée", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["thes", "verb", "thes", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dauc", "verb", "da·uc", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["robu", "verb", "robbu", "ropo", "ropu", "", "third-person singular perfect"]) + let v = native_list_append(v, ["diant", "verb", "dïant", "", "", "", "from/of whom/which to/for"]) + let v = native_list_append(v, ["ruc", "verb", "·ruc", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["gláeta", "verb", "gláeta", "", "", "", "past participle of"]) + let v = native_list_append(v, ["gláedid", "verb", "gláidim", "", "", "", "to cry out"]) + let v = native_list_append(v, ["manid", "verb", "manid", "", "", "", "if it is"]) + let v = native_list_append(v, ["fogleinn", "verb", "fo·gleinn", "·foglaind", "foglaimm", "", "to gather collect"]) + let v = native_list_append(v, ["gleinn", "verb", "·gleinn", "no-table-tags", "sga-mutation", "", "a verb not"]) + let v = native_list_append(v, ["robí", "verb", "ro·bí", "", "", "", "third-person singular habitual"]) + let v = native_list_append(v, ["betis", "verb", "no-table-tags", "sga-mutation", "mbetis", "", "third-person plural past"]) + let v = native_list_append(v, ["accus", "verb", "·accus", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["feithid", "verb", "·fethi", "fethem", "no-table-tags", "", "to watch"]) + let v = native_list_append(v, ["gairid", "verb", "gairiu", "gairthir", "", "", "to call"]) + let v = native_list_append(v, ["robam", "verb", "·robam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["étai", "verb", "·étai", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["scartha", "verb", "·scartha", "", "", "", "second-person singular past"]) + let v = native_list_append(v, ["dogníu", "verb", "do·gníu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["dagníu", "verb", "da·gníu", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["gníu", "verb", "·gníu", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["dénaim", "verb", "·dénaim", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["dénim", "verb", "·dénim", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["foid", "verb", "foïd", "fess", "no-table-tags", "", "to spend the"]) + let v = native_list_append(v, ["rímid", "verb", "rímim", "", "", "", "count reckon estimate"]) + let v = native_list_append(v, ["foálgi", "verb", "fo·álgi", "·fálgi", "fálgud", "", "to lie low"]) + let v = native_list_append(v, ["forálaig", "verb", "fo·rálaig", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ailid", "verb", "·ail", "altram", "no-table-tags", "", "to nourish"]) + let v = native_list_append(v, ["berae", "verb", "·berae", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["beram", "verb", "beram", "", "", "", "first-person plural imperative"]) + let v = native_list_append(v, ["attó", "verb", "at·tó", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["guidid", "verb", "guidim", "gessae", "gessi", "", "to pray for"]) + let v = native_list_append(v, ["guidimm", "verb", "guidimm", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["formuinethar", "verb", "for·muinethar", "format", "no-table-tags", "", "to envy"]) + let v = native_list_append(v, ["cing", "verb", "·cing", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ciid", "verb", "ciïd", "·cí", "caí", "", "to cry weep"]) + let v = native_list_append(v, ["conid", "verb", "ɔid", "condid", "", "", "so that it"]) + let v = native_list_append(v, ["apir", "verb", "·apir", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["scuirid", "verb", "scor", "no-table-tags", "sga-conj-simple", "", "to unyoke"]) + let v = native_list_append(v, ["umligid", "verb", "no-table-tags", "sga-conj-simple", "·umlaigetar", "", "to humble"]) + let v = native_list_append(v, ["rupu", "verb", "rupu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-alt", "verb", "·n-alt", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbris", "verb", "mbris", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["tuiter", "verb", "·tuiter", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["birt", "verb", "birt", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["scarus", "verb", "·scarus", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["dóid", "verb", "·dóid", "·dúaid", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["manip", "verb", "mainip", "", "", "", "if … is"]) + let v = native_list_append(v, ["sásta", "verb", "·sásta", "", "", "", "passive plural preterite"]) + let v = native_list_append(v, ["carad", "verb", "·carad", "no-table-tags", "sga-mutation", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["acat", "verb", "·acat", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["cingiu", "verb", "no-table-tags", "sga-mutation", "chingiu", "", "first-person singular present"]) + let v = native_list_append(v, ["estais", "verb", "·estais", "no-table-tags", "sga-mutation", "", "third-person plural past"]) + let v = native_list_append(v, ["beires", "verb", "no-table-tags", "sga-mutation", "mbeires", "", "third-person singular present"]) + let v = native_list_append(v, ["rala", "verb", "·rala", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["ithid", "verb", "ithim", "·esta", "eisib", "", "to eat"]) + let v = native_list_append(v, ["snigid", "verb", "·snig", "snige", "no-table-tags", "", "to drip drop"]) + let v = native_list_append(v, ["adrími", "verb", "ad·rími", "·áirmi", "áram", "", "to count"]) + let v = native_list_append(v, ["acaldam", "verb", "·acaldam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["adgládathar", "verb", "ad·gládathar", "·accaldathar", "acaldam", "", "to address to"]) + let v = native_list_append(v, ["muinethar", "verb", "·muinethar", "no-table-tags", "sga-mutation", "", "to meditate to"]) + let v = native_list_append(v, ["admuinethar", "verb", "ad·muinethar", "aithmet", "no-table-tags", "", "to remember to"]) + let v = native_list_append(v, ["adgnin", "verb", "ad·gnin", "aithgne", "no-table-tags", "", "to know to"]) + let v = native_list_append(v, ["dét", "verb", "·dét", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["lotar", "verb", "lotar", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["briss", "verb", "briss", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tici", "verb", "·tici", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["berba", "verb", "berba", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["chren", "verb", "chren", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mesc", "verb", "mescc", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["beite", "verb", "beite", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["bíad", "verb", "·bíad", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["mbeirid", "verb", "mbeirid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbeirinn", "verb", "·mbeirinn", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["beirinn", "verb", "·beirinn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["beirthe", "verb", "·beirthe", "no-table-tags", "sga-mutation", "", "passive singular imperfect"]) + let v = native_list_append(v, ["táthar", "verb", "·táthar", "", "", "", "progressive present indicative"]) + let v = native_list_append(v, ["beid", "verb", "beid", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["cluinte", "verb", "no-table-tags", "sga-mutation", "chluinte", "", "second-person singular imperative"]) + let v = native_list_append(v, ["ammi", "verb", "ammin", "immi", "", "", "first-person plural present"]) + let v = native_list_append(v, ["n-ithid", "verb", "n-ithid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["canaid", "verb", "canu", "cain", "céte", "", "to sing"]) + let v = native_list_append(v, ["sén", "verb", "sén", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["tairngirthe", "verb", "no-table-tags", "sga-mutation", "thairngirthe", "", "past participle of"]) + let v = native_list_append(v, ["tairngir", "verb", "·tairngir", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adágathar", "verb", "ad·ágathar", "·ágathar", "áigthiu", "", "to fear to"]) + let v = native_list_append(v, ["aigid", "verb", "·aig", "án", "aige", "", "to drive"]) + let v = native_list_append(v, ["dorat", "verb", "do·rat", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rouic", "verb", "ro·uic", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["douic", "verb", "do·uic", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dofúaid", "verb", "do·fúaid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["estir", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular subjunctive"]) + let v = native_list_append(v, ["aingid", "verb", "·anich", "anacol", "no-table-tags", "", "to protect to"]) + let v = native_list_append(v, ["arachrin", "verb", "ara·chrin", "irchre", "erchrae", "", "to perish"]) + let v = native_list_append(v, ["atbaill", "verb", "at·baill", "·epil", "epeltu", "", "to perish die"]) + let v = native_list_append(v, ["atbath", "verb", "at·bath", "", "", "", "second/third-person singular preterite"]) + let v = native_list_append(v, ["atreig", "verb", "at·reig", "éirge", "no-table-tags", "", "to rise arise"]) + let v = native_list_append(v, ["benaid", "verb", "benaim", "béo", "bíthe", "", "to hit strike"]) + let v = native_list_append(v, ["cingid", "verb", "cingiu", "", "", "", "to step proceed"]) + let v = native_list_append(v, ["claidid", "verb", "·claid", "claide", "no-table-tags", "", "to dig"]) + let v = native_list_append(v, ["uic", "verb", "·uic", "·ucc", "", "", "unattested by itself"]) + let v = native_list_append(v, ["icc", "verb", "·icc", "-ec", "no-table-tags", "", "unattested by itself"]) + let v = native_list_append(v, ["conicc", "verb", "con·icc", "·cumaic", "·cumaing", "", "to be able"]) + let v = native_list_append(v, ["conrig", "verb", "con·rig", "cuimrech", "no-table-tags", "", "to bind fetter"]) + let v = native_list_append(v, ["crenaid", "verb", "·crenaim", "·cér", "", "", "to buy purchase"]) + let v = native_list_append(v, ["daimid", "verb", "·daimim", "·dámar", "", "", "to endure suffer"]) + let v = native_list_append(v, ["dofuissim", "verb", "do·fuissim", "tuistiu", "no-table-tags", "", "to create"]) + let v = native_list_append(v, ["dogoa", "verb", "do·goa", "togu", "no-table-tags", "", "to choose"]) + let v = native_list_append(v, ["doicc", "verb", "do·icc", "·ticc", "tíchtu", "", "to come to"]) + let v = native_list_append(v, ["accai", "verb", "·accai", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["accam", "verb", "·accam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["accat", "verb", "·accat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["epir", "verb", "·epir", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["festais", "verb", "·festais", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["domoinethar", "verb", "do·moinethar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["domuinethar", "verb", "do·muinethar", "toimtiu", "no-table-tags", "", "to think suppose"]) + let v = native_list_append(v, ["asbeir do", "verb", "as·beir do", "", "", "", "to call name"]) + let v = native_list_append(v, ["adcessa", "verb", "ad·cessa", "", "", "", "passive plural preterite"]) + let v = native_list_append(v, ["atchessa", "verb", "at·chessa", "", "", "", "passive plural past"]) + let v = native_list_append(v, ["adchí", "verb", "ad·chí", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adcíther", "verb", "ad·cíther", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["adciam", "verb", "ad·cïam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["adcichitis", "verb", "ad·cichitis", "", "", "", "third-person plural conditional"]) + let v = native_list_append(v, ["adced", "verb", "ad·ced", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adceid", "verb", "ad·ceid", "ad·ced", "", "", "second-person plural present"]) + let v = native_list_append(v, ["adcíi", "verb", "ad·cíi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adchíther", "verb", "ad·chíther", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["accathar", "verb", "·accathar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["accadar", "verb", "·accadar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["adcethe", "verb", "ad·cethe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adceithe", "verb", "ad·ceithe", "ad·cethe", "", "", "inflection of ad·cí"]) + let v = native_list_append(v, ["adcess", "verb", "ad·cess", "no-table-tags", "sga-mutation", "", "passive singular preterite"]) + let v = native_list_append(v, ["adchess", "verb", "ad·chess", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["atobcí", "verb", "atob·cí", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["acastar", "verb", "·acastar", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-acastar", "verb", "·n-acastar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-accastar", "verb", "·n-accastar", "·n-acastar", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["accastar", "verb", "·accastar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["accatar", "verb", "·accatar", "", "", "", "third-person plural preterite/perfect"]) + let v = native_list_append(v, ["bristi", "verb", "bristi", "", "", "", "passive plural preterite"]) + let v = native_list_append(v, ["decha", "verb", "·decha", "no-table-tags", "sga-mutation", "", "third-person singular perfective"]) + let v = native_list_append(v, ["achta", "verb", "·achta", "no-table-tags", "sga-mutation", "", "passive plural preterite"]) + let v = native_list_append(v, ["domén", "verb", "do·mén", "no-table-tags", "sga-mutation", "", "first-person singular preterite"]) + let v = native_list_append(v, ["fichid", "verb", "·fich", "no-table-tags", "sga-conj-simple", "", "to fight"]) + let v = native_list_append(v, ["ticed", "verb", "·ticed", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["dolá", "verb", "do·lá", "díl", "no-table-tags", "", "to put away"]) + let v = native_list_append(v, ["robá", "verb", "ro·bá", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["biur", "verb", "·biur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["robat", "verb", "·robat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["robem", "verb", "ro·bem", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["massu", "verb", "massu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["atomriug", "verb", "atom·riug", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["atomaig", "verb", "atom·aig", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["atobaich", "verb", "atob·aich", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atobaig", "verb", "atob·aig", "atob·aich", "", "", "third-person singular present"]) + let v = native_list_append(v, ["attotaig", "verb", "attot·aig", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["atannaigi", "verb", "atann·aig[-n]i", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adamraigedar", "verb", "ad·amraigedar", "adamrugud", "no-table-tags", "", "to wonder at"]) + let v = native_list_append(v, ["adamrigethar", "verb", "ad·amraigethar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["roadamrigther", "verb", "ro·adamrigther", "no-table-tags", "sga-mutation", "", "passive present subjunctive"]) + let v = native_list_append(v, ["adamrugur", "verb", "·adamrugur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["adamraigetar", "verb", "ad·amraigetar", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["adn-amraigther", "verb", "ad·n-amraigther", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adamraigther", "verb", "ad·amraigther", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["adamraigthi", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "verbal of necessity"]) + let v = native_list_append(v, ["n-adamraigthi", "verb", "n-adamraigthi", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adamrigedar", "verb", "ad·amrigedar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["adruamraigset", "verb", "ad·ruamraigset", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["adamrigther", "verb", "·adamrigther", "no-table-tags", "sga-mutation", "", "passive present subjunctive"]) + let v = native_list_append(v, ["adclaid", "verb", "ad·claid", "·aclaid", "acclaid", "", "to hunt fish"]) + let v = native_list_append(v, ["adcladat", "verb", "ad·cladat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adcichlus", "verb", "ad·cichlus", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["adcobra", "verb", "ad·cobra", "·accobra", "accobar", "", "to wish want"]) + let v = native_list_append(v, ["accobra", "verb", "·accobra", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["asinchobra", "verb", "asin·chobra", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adcobraim", "verb", "ad·cobraim", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["adcomla", "verb", "ad·comla", "accomol", "no-table-tags", "", "to join to"]) + let v = native_list_append(v, ["atcomla", "verb", "at·comla", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adcomlatar", "verb", "ad·comlatar", "no-table-tags", "sga-mutation", "", "passive plural present"]) + let v = native_list_append(v, ["adcomaltar", "verb", "ad·comaltar", "", "", "", "passive singular present"]) + let v = native_list_append(v, ["n-accomoltar", "verb", "·n-accomoltar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["accomoltar", "verb", "·accomoltar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["adrochomolta", "verb", "ad·rochomolta", "", "", "", "passive singular past"]) + let v = native_list_append(v, ["accomaltar", "verb", "·accomaltar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["n-accomaltar", "verb", "·n-accomaltar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-acomlatar", "verb", "·n-acomlatar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["acomlatar", "verb", "·acomlatar", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["adindchomlat", "verb", "adind·chomlat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["adcomlat", "verb", "ad·comlat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adchomlatar", "verb", "ad·chomlatar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adrochomul", "verb", "ad·rochomul", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["atacomla", "verb", "ata·comla", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["accomlatar", "verb", "·accomlatar", "no-table-tags", "sga-mutation", "", "passive plural present"]) + let v = native_list_append(v, ["adchobrai", "verb", "ad·chobrai", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adcobrai", "verb", "ad·cobrai", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["adcobrinn", "verb", "ad·cobrinn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["adcobrat", "verb", "ad·cobrat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["accobri", "verb", "·accobri", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["adcosnai", "verb", "ad·cosnai", "·ascnai", "ascnam", "", "to strive after"]) + let v = native_list_append(v, ["ascnae", "verb", "·ascnae", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["adcosnae", "verb", "ad·cosnae", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["adcosnain", "verb", "ad·cosnain", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["adcosnat", "verb", "ad·cosnat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adcosnainn", "verb", "ad·cosnainn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["adcosna", "verb", "ad·cosna", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["adcosantae", "verb", "ad·cosantae", "no-table-tags", "sga-mutation", "", "passive singular imperfect"]) + let v = native_list_append(v, ["adruchoisséni", "verb", "ad·ruchoisséni", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dolin", "verb", "do·lin", "tuile", "no-table-tags", "", "to flow"]) + let v = native_list_append(v, ["rolá", "verb", "ro·lá", "no-table-tags", "sga-mutation", "", "inflection of fo·ceird"]) + let v = native_list_append(v, ["roláis", "verb", "ro·láis", "no-table-tags", "sga-mutation", "", "second-person singular perfect"]) + let v = native_list_append(v, ["adcota", "verb", "ad·cota", "·éta", "ét", "", "to obtain to"]) + let v = native_list_append(v, ["adchobrat", "verb", "ad·chobrat", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adcotat", "verb", "ad·cotat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["étid", "verb", "·étid", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["étaid", "verb", "·étaid", "no-table-tags", "sga-mutation", "", "second-person plural present"]) + let v = native_list_append(v, ["n-éta", "verb", "·n-éta", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adcot", "verb", "ad·cot", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["adcotad", "verb", "ad·cotad", "no-table-tags", "sga-mutation", "", "inflection of ad·cota"]) + let v = native_list_append(v, ["adchotar", "verb", "ad·chotar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adcotar", "verb", "ad·cotar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["étar", "verb", "·étar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["étaitis", "verb", "·étaitis", "no-table-tags", "sga-mutation", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["n-étatham", "verb", "·n-étatham", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-étis", "verb", "·n-étis", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["étatham", "verb", "·étatham", "no-table-tags", "sga-mutation", "", "first-person plural future"]) + let v = native_list_append(v, ["étis", "verb", "·étis", "no-table-tags", "sga-mutation", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["étada", "verb", "·étada", "no-table-tags", "sga-mutation", "", "third-person singular preterite/future"]) + let v = native_list_append(v, ["adchodados", "verb", "ad·chodados", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adcodados", "verb", "ad·codados", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["adcotadus", "verb", "ad·cotadus", "no-table-tags", "sga-mutation", "", "first-person singular preterite"]) + let v = native_list_append(v, ["adcotedae", "verb", "ad·cotedae", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["adcotade", "verb", "ad·cotade", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["étade", "verb", "·étade", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["n-étada", "verb", "·n-étada", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adidchotatsat", "verb", "adid·chotatsat", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["adcotatsat", "verb", "ad·cotatsat", "no-table-tags", "sga-mutation", "", "third-person plural preterite"]) + let v = native_list_append(v, ["adcotadsam", "verb", "ad·cotadsam", "no-table-tags", "sga-mutation", "", "first-person plural preterite"]) + let v = native_list_append(v, ["adchotadsam", "verb", "ad·chotadsam", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["adchotate", "verb", "ad·chotate", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["n-étatsat", "verb", "·n-étatsat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["n-étar", "verb", "·n-étar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adcotate", "verb", "ad·cotate", "no-table-tags", "sga-mutation", "", "passive singular imperfect"]) + let v = native_list_append(v, ["étatsat", "verb", "·étatsat", "no-table-tags", "sga-mutation", "", "third-person plural preterite"]) + let v = native_list_append(v, ["étatais", "verb", "·étatais", "no-table-tags", "sga-mutation", "", "passive plural conditional"]) + let v = native_list_append(v, ["étaste", "verb", "·étaste", "no-table-tags", "sga-mutation", "", "passive singular conditional"]) + let v = native_list_append(v, ["aracotar", "verb", "ara·cotar", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["étite", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "past participle of"]) + let v = native_list_append(v, ["aiges", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular relative"]) + let v = native_list_append(v, ["tharat", "verb", "·tharat", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["rechtaigid", "verb", "rechtaigim", "", "", "", "to legislate"]) + let v = native_list_append(v, ["bís", "verb", "no-table-tags", "sga-mutation", "mbís", "", "third-person singular present"]) + let v = native_list_append(v, ["rubu", "verb", "rubu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["brisis", "verb", "brisis", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["dotét", "verb", "do·tét", "·táet", "tuidecht", "", "to come move"]) + let v = native_list_append(v, ["dotuit", "verb", "do·tuit", "·tuit", "tothaimm", "", "to fall move"]) + let v = native_list_append(v, ["foceird", "verb", "fo·ceird", "·cuirethar", "cor", "", "to put place"]) + let v = native_list_append(v, ["cuirethar", "verb", "·cuirethar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["foceirt", "verb", "fo·ceirt", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["focheirt", "verb", "fo·cheirt", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["faceird", "verb", "fa·ceird", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["focerdam", "verb", "fo·cerdam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["focertam", "verb", "fo·certam", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["focerdat", "verb", "fo·cerdat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["fucertat", "verb", "fu·certat", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["fuchertat", "verb", "fu·chertat", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["fuscerdam", "verb", "fus·cerdam", "", "", "", "first-person plural imperative"]) + let v = native_list_append(v, ["foceirr", "verb", "fo·ceirr", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["focerrad", "verb", "fo·cerrad", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["focerred", "verb", "fo·cerred", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["facherred", "verb", "fa·cherred", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["focicher", "verb", "fo·cicher", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["focicherr", "verb", "fo·cicherr", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["foloing", "verb", "fo·loing", "·fulaing", "fulach", "", "to support sustain"]) + let v = native_list_append(v, ["fulaing", "verb", "·fulaing", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["agair", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "passive singular present"]) + let v = native_list_append(v, ["focertar", "verb", "fo·certar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["focerddar", "verb", "fo·cerddar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["fucertar", "verb", "fu·certar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["ligid", "verb", "ligim", "", "", "", "to lick"]) + let v = native_list_append(v, ["boí", "verb", "boí", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["ágathar", "verb", "·ágathar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["ágor", "verb", "·ágor", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["águr", "verb", "·águr", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["áigder", "verb", "·áigder", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["áigther", "verb", "·áigther", "no-table-tags", "sga-mutation", "", "inflection of ad·ágathar"]) + let v = native_list_append(v, ["áigsetar", "verb", "·áigsetar", "no-table-tags", "sga-mutation", "", "third-person plural preterite"]) + let v = native_list_append(v, ["áigetar", "verb", "·áigetar", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adáigther", "verb", "ad·áigther", "no-table-tags", "sga-mutation", "", "inflection of ad·ágathar"]) + let v = native_list_append(v, ["adn-áigther", "verb", "ad·n-áigther", "ad·n-áigder", "ad·n-áigither", "", "eclipsed form of"]) + let v = native_list_append(v, ["ágetar", "verb", "·ágetar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["adáichfedar", "verb", "ad·áichfedar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["adáichfethar", "verb", "ad·áichfethar", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["ágatar", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person plural imperative"]) + let v = native_list_append(v, ["adágadar", "verb", "ad·ágadar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["adágain", "verb", "ad·ágain", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["adágainn", "verb", "ad·ágainn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["adáichfer", "verb", "ad·áichfer", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["adágur", "verb", "ad·águr", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["adn-águr", "verb", "ad·n-águr", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["áichfetar", "verb", "no-table-tags", "sga-mutation", "·áichfetar", "", "third-person plural future"]) + let v = native_list_append(v, ["adráichsetar", "verb", "ad·ráichsetar", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["adráigsetar", "verb", "ad·ráigsetar", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["ágether", "verb", "·ágether", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["n-ágether", "verb", "·n-ágether", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["contuili", "verb", "con·tuili", "·cotli", "cotlud", "", "to sleep"]) + let v = native_list_append(v, ["laigid", "verb", "·lius", "", "", "", "to lie down"]) + let v = native_list_append(v, ["móraid", "verb", "no-table-tags", "sga-conj-simple", "mórid", "", "to make great"]) + let v = native_list_append(v, ["léicid", "verb", "léiciu", "léicsiu", "léicthi", "", "to leave abandon"]) + let v = native_list_append(v, ["ernaid", "verb", "rath", "no-table-tags", "sga-conj-simple", "", "to bestow to"]) + let v = native_list_append(v, ["lenaid", "verb", "·len", "lenamain", "no-table-tags", "", "to stick cling"]) + let v = native_list_append(v, ["noíb", "verb", "·noíb", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["sóeraid", "verb", "·sóera", "sóerad", "no-table-tags", "", "to free liberate"]) + let v = native_list_append(v, ["légaid", "verb", "·léga", "légend", "no-table-tags", "", "to read"]) + let v = native_list_append(v, ["glanaid", "verb", "glanaim", "·glanais", "", "", "to clean"]) + let v = native_list_append(v, ["berraid", "verb", "berrad", "no-table-tags", "sga-conj-simple", "", "to shear to"]) + let v = native_list_append(v, ["airid", "verb", "airim", "airthe", "airthe", "", "to plough/plow to"]) + let v = native_list_append(v, ["orgaid", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "alternative spelling of"]) + let v = native_list_append(v, ["dingid", "verb", "·ding", "no-table-tags", "sga-conj-simple", "", "to press"]) + let v = native_list_append(v, ["tongaid", "verb", "tongu", "·tochta", "tochta", "", "to swear an"]) + let v = native_list_append(v, ["ráid", "verb", "ráïd", "no-table-tags", "sga-conj-simple", "", "to row with"]) + let v = native_list_append(v, ["soid", "verb", "soïd", "·sui", "soüd", "", "to turn"]) + let v = native_list_append(v, ["gataid", "verb", "·tall", "·gatta", "", "", "to take away"]) + let v = native_list_append(v, ["adannai", "verb", "ad·annai", "adannad", "no-table-tags", "", "to kindle to"]) + let v = native_list_append(v, ["adella", "verb", "ad·ella", "·aidle", "adall", "", "to visit"]) + let v = native_list_append(v, ["adfét", "verb", "ad·fét", "no-table-tags", "sga-conj-complex", "", "to declare tell"]) + let v = native_list_append(v, ["adgair", "verb", "ad·gair", "·acair", "acrae", "", "to convene assemble"]) + let v = native_list_append(v, ["admidethar", "verb", "ad·midethar", "·aimdethar", "ammus", "", "to try to"]) + let v = native_list_append(v, ["adrig", "verb", "ad·rig", "árach", "no-table-tags", "", "to bind to"]) + let v = native_list_append(v, ["adsuidi", "verb", "ad·suidi", "·asstai", "astud", "", "to hinder to"]) + let v = native_list_append(v, ["adtreba", "verb", "ad·treba", "·atreba", "atrab", "", "to inhabit dwell"]) + let v = native_list_append(v, ["airlithir", "verb", "airle", "no-table-tags", "sga-conj-simple", "", "to advise"]) + let v = native_list_append(v, ["anaid", "verb", "·ran", "·anus", "", "", "to stay remain"]) + let v = native_list_append(v, ["arclich", "verb", "ar·clich", "no-table-tags", "sga-conj-complex", "", "to ward off"]) + let v = native_list_append(v, ["dáilid", "verb", "·dáili", "dál", "no-table-tags", "", "to distribute"]) + let v = native_list_append(v, ["arfoím", "verb", "ar·foím", "·eroím", "no-table-tags", "", "to accept to"]) + let v = native_list_append(v, ["argaib", "verb", "ar·gaib", "no-table-tags", "sga-conj-complex", "", "to seize to"]) + let v = native_list_append(v, ["gaibid", "verb", "gabim", "gabsu", "gabthi", "", "to hold grasp"]) + let v = native_list_append(v, ["aricc", "verb", "ar·icc", "·airicc", "airec", "", "to find to"]) + let v = native_list_append(v, ["armidethar", "verb", "ar·midethar", "·irmadadar", "ermaissiu", "", "to aim at"]) + let v = native_list_append(v, ["arnaisc", "verb", "ar·naisc", "airnaidm", "no-table-tags", "", "to bind to"]) + let v = native_list_append(v, ["ásaid", "verb", "ásim", "", "", "", "to grow"]) + let v = native_list_append(v, ["asren", "verb", "as·ren", "·eren", "éra", "", "to pay"]) + let v = native_list_append(v, ["renaid", "verb", "·ren", "reicc", "no-table-tags", "", "to sell to"]) + let v = native_list_append(v, ["báidid", "verb", "·báidi", "bádud", "no-table-tags", "", "to drown to"]) + let v = native_list_append(v, ["bennachaid", "verb", "·bennach", "bendachthe", "bendachdai", "", "to bless"]) + let v = native_list_append(v, ["béoigidir", "verb", "·béoigedar", "béogud", "no-table-tags", "", "to give life"]) + let v = native_list_append(v, ["brisid", "verb", "·bris", "briste", "briste", "", "to break to"]) + let v = native_list_append(v, ["búirithir", "verb", "búiriud", "no-table-tags", "sga-conj-simple", "", "to rage to"]) + let v = native_list_append(v, ["ceilid", "verb", "·ceil", "cleth", "no-table-tags", "", "to hide to"]) + let v = native_list_append(v, ["césaid", "verb", "céssad", "no-table-tags", "sga-conj-simple", "", "to suffer to"]) + let v = native_list_append(v, ["comalnaithir", "verb", "·comalnathar", "·comalnadar", "comalnad", "", "to fulfill a"]) + let v = native_list_append(v, ["conbeir", "verb", "con·beir", "compert", "no-table-tags", "", "to bring bear"]) + let v = native_list_append(v, ["conceil", "verb", "con·ceil", "no-table-tags", "sga-conj-complex", "", "to hide to"]) + let v = native_list_append(v, ["condieig", "verb", "con·dïeig", "cuingid", "cuindchid", "", "to seek"]) + let v = native_list_append(v, ["congaib", "verb", "con·gaib", "congbál", "no-table-tags", "", "to contain"]) + let v = native_list_append(v, ["congair", "verb", "con·gair", "no-table-tags", "sga-conj-complex", "", "to call to"]) + let v = native_list_append(v, ["congní", "verb", "con·gní", "cungnum", "conggnam", "", "to help assist"]) + let v = native_list_append(v, ["conmeil", "verb", "con·meil", "commailt", "no-table-tags", "", "to rub grind"]) + let v = native_list_append(v, ["meilid", "verb", "melim", "mleth", "", "", "to grind to"]) + let v = native_list_append(v, ["conmesca", "verb", "con·mesca", "cummasc", "no-table-tags", "", "to mix"]) + let v = native_list_append(v, ["mescaid", "verb", "mescad", "no-table-tags", "sga-conj-simple", "", "to mix"]) + let v = native_list_append(v, ["conricc", "verb", "con·ricc", "·comraic", "comrac", "", "to meet to"]) + let v = native_list_append(v, ["conscara", "verb", "con·scara", "no-table-tags", "sga-conj-complex", "", "to destroy to"]) + let v = native_list_append(v, ["srengaid", "verb", "·srenga", "no-table-tags", "sga-conj-simple", "", "to pull to"]) + let v = native_list_append(v, ["contibi", "verb", "con·tibi", "cuitbiud", "no-table-tags", "", "to laugh at"]) + let v = native_list_append(v, ["tibid", "verb", "·tibiu", "", "", "", "to touch"]) + let v = native_list_append(v, ["creitid", "verb", "·cretim", "·cretus", "creti", "", "to believe"]) + let v = native_list_append(v, ["crochaid", "verb", "crocha", "·crochais", "", "", "to crucify"]) + let v = native_list_append(v, ["cúraid", "verb", "no-table-tags", "sga-conj-simple", "cúrait", "", "to chastise to"]) + let v = native_list_append(v, ["delbaid", "verb", "delbaim", "·delbus", "", "", "to shape to"]) + let v = native_list_append(v, ["denaid", "verb", "deol", "no-table-tags", "sga-conj-simple", "", "to suck"]) + let v = native_list_append(v, ["doaidlea", "verb", "do·aidlea", "·taidlea", "tadall", "", "to come to"]) + let v = native_list_append(v, ["doairbir", "verb", "do·airbir", "·tairbir", "terbirt", "", "to bend"]) + let v = native_list_append(v, ["doáirci", "verb", "do·áirci", "·táirci", "táirciud", "", "to cause to"]) + let v = native_list_append(v, ["doairicc", "verb", "do·airicc", "no-table-tags", "sga-conj-complex", "", "to come"]) + let v = native_list_append(v, ["dobidci", "verb", "do·bidci", "díbirciud", "no-table-tags", "", "to hurl to"]) + let v = native_list_append(v, ["doboing", "verb", "do·boing", "·tobuing", "tobach", "", "to exact to"]) + let v = native_list_append(v, ["bongaid", "verb", "·buṅg", "·bocht", "bochta", "", "to break"]) + let v = native_list_append(v, ["doceil", "verb", "do·ceil", "·dichil", "díchleth", "", "to hide to"]) + let v = native_list_append(v, ["docuirethar", "verb", "do·cuirethar", "tochor", "tochuiriud", "", "to put to"]) + let v = native_list_append(v, ["doéccai", "verb", "do·éccai", "·déci", "déicsiu", "", "to behold to"]) + let v = native_list_append(v, ["doeim", "verb", "do·eim", "·dim", "dítiu", "", "to protect defend"]) + let v = native_list_append(v, ["molaidir", "verb", "·molur", "molthae", "moltai", "", "to praise"]) + let v = native_list_append(v, ["molur", "verb", "·molur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["nondobmolor", "verb", "nondob·molor", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["moídid", "verb", "·moídim", "·moítsem", "moíti", "", "to boast i"]) + let v = native_list_append(v, ["moídim", "verb", "·moídim", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["nommoídim", "verb", "nom·moídim", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["domoiniur", "verb", "do·moiniur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["pridchaid", "verb", "·pridchim", "·pridchus", "", "", "to preach"]) + let v = native_list_append(v, ["pridchim", "verb", "·pridchim", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["dofich", "verb", "do·fich", "·dich", "dígal", "", "to avenge"]) + let v = native_list_append(v, ["doformaig", "verb", "do·formaig", "tórmach", "no-table-tags", "", "to increase"]) + let v = native_list_append(v, ["dofortai", "verb", "do·fortai", "·dortai", "no-table-tags", "", "to pour out"]) + let v = native_list_append(v, ["doguid", "verb", "do·guid", "dígde", "no-table-tags", "", "to entreat to"]) + let v = native_list_append(v, ["doléici", "verb", "do·léici", "·teilci", "·tailci", "", "to let allow"]) + let v = native_list_append(v, ["dolugai", "verb", "do·lugai", "·dílgai", "dílgud", "", "to forgive taking"]) + let v = native_list_append(v, ["domeil", "verb", "do·meil", "tomalt", "no-table-tags", "", "to consume to"]) + let v = native_list_append(v, ["dordaid", "verb", "dordu", "", "", "", "to buzz to"]) + let v = native_list_append(v, ["dorig", "verb", "do·rig", "no-table-tags", "sga-conj-complex", "", "to strip to"]) + let v = native_list_append(v, ["doscara", "verb", "do·scara", "tascrad", "tascar", "", "to knock down"]) + let v = native_list_append(v, ["doseinn", "verb", "do·seinn", "no-table-tags", "sga-conj-complex", "", "to pursue to"]) + let v = native_list_append(v, ["dosluindi", "verb", "do·sluindi", "·díltai", "díltud", "", "to deny"]) + let v = native_list_append(v, ["dúnaid", "verb", "no-table-tags", "sga-conj-simple", "dúnsit", "", "to close to"]) + let v = native_list_append(v, ["éigid", "verb", "éigem", "no-table-tags", "sga-conj-simple", "", "to cry out"]) + let v = native_list_append(v, ["erbaid", "verb", "·érpimm", "·erbad", "", "", "to entrust with"]) + let v = native_list_append(v, ["etarscara", "verb", "etar·scara", "·etarscara", "etarscarad", "", "to separate to"]) + let v = native_list_append(v, ["feidid", "verb", "·feid", "fedan", "no-table-tags", "", "to lead to"]) + let v = native_list_append(v, ["feidligidir", "verb", "no-table-tags", "sga-conj-simple", "·fedligedar", "", "to remain to"]) + let v = native_list_append(v, ["feraid", "verb", "·fera", "no-table-tags", "sga-conj-simple", "", "to grant"]) + let v = native_list_append(v, ["fíríanaigidir", "verb", "no-table-tags", "sga-conj-simple", "fíríanichthi", "", "to justify to"]) + let v = native_list_append(v, ["lingid", "verb", "·rolngaim", "lingthe", "lingthe", "", "to leap to"]) + let v = native_list_append(v, ["foácaib", "verb", "fo·ácaib", "·facaib", "fácbáil", "", "to leave"]) + let v = native_list_append(v, ["focain", "verb", "fo·cain", "focetal", "no-table-tags", "", "to sing to"]) + let v = native_list_append(v, ["focíallathar", "verb", "fo·cíallathar", "fochell", "no-table-tags", "", "to pay heed"]) + let v = native_list_append(v, ["focren", "verb", "fo·cren", "fochricc", "no-table-tags", "", "to buy to"]) + let v = native_list_append(v, ["fodáli", "verb", "fo·dáli", "fodail", "no-table-tags", "", "to distribute"]) + let v = native_list_append(v, ["fodaim", "verb", "fo·daim", "·fodaim", "fodaitiu", "", "to suffer to"]) + let v = native_list_append(v, ["fofera", "verb", "fo·fera", "·furea", "fuar", "", "to prepare to"]) + let v = native_list_append(v, ["fofúasna", "verb", "fo·fúasna", "fúasnad", "no-table-tags", "", "to agitate to"]) + let v = native_list_append(v, ["fogaib", "verb", "fo·gaib", "·fagaib", "fagbál", "", "to find to"]) + let v = native_list_append(v, ["fogeir", "verb", "fo·geir", "no-table-tags", "sga-conj-complex", "", "to heat to"]) + let v = native_list_append(v, ["guirid", "verb", "no-table-tags", "sga-conj-simple", "guirit", "", "to heat to"]) + let v = native_list_append(v, ["fogella", "verb", "fo·gella", "·fuiglea", "fugell", "", "to appeal to"]) + let v = native_list_append(v, ["foreith", "verb", "fo·reith", "no-table-tags", "sga-conj-complex", "", "to help to"]) + let v = native_list_append(v, ["arbeir", "verb", "ar·beir", "·airbir", "airbert", "", "Followed by bith"]) + let v = native_list_append(v, ["forbeir", "verb", "for·beir", "forbart", "no-table-tags", "", "to grow to"]) + let v = native_list_append(v, ["forben", "verb", "for·ben", "no-table-tags", "sga-conj-complex", "", "to strike to"]) + let v = native_list_append(v, ["forcain", "verb", "for·cain", "·forcain", "forcital", "", "to teach to"]) + let v = native_list_append(v, ["forcenna", "verb", "for·cenna", "·foircnea", "forcenn", "", "to end to"]) + let v = native_list_append(v, ["forfen", "verb", "for·fen", "forbae", "no-table-tags", "", "to finish to"]) + let v = native_list_append(v, ["frisaccai", "verb", "fris·accai", "·frescai", "frescisiu", "", "to expect"]) + let v = native_list_append(v, ["frisben", "verb", "fris·ben", "frepaid", "no-table-tags", "", "to heal"]) + let v = native_list_append(v, ["frisgair", "verb", "fris·gair", "frecrae", "no-table-tags", "", "to answer to"]) + let v = native_list_append(v, ["frisoirc", "verb", "fris·oirc", "frithorcun", "no-table-tags", "", "to hurt to"]) + let v = native_list_append(v, ["orcaid", "verb", "·oirc", "·oirg", "orcun", "", "to kill slay"]) + let v = native_list_append(v, ["foídid", "verb", "·foidiu", "·foíte", "", "", "to send"]) + let v = native_list_append(v, ["fúachaid", "verb", "fúachimm", "·fúachais", "", "", "to sharpen to"]) + let v = native_list_append(v, ["gainithir", "verb", "·gainedar", "gein", "no-table-tags", "", "to be born"]) + let v = native_list_append(v, ["geilid", "verb", "geilid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["gonaid", "verb", "gono", "goíte", "goite", "", "to wound"]) + let v = native_list_append(v, ["íadaid", "verb", "·íada", "íadad", "no-table-tags", "", "to close shut"]) + let v = native_list_append(v, ["íarmifoich", "verb", "íarmi·foïch", "íarfaigid", "no-table-tags", "", "to ask for/about"]) + let v = native_list_append(v, ["íccaid", "verb", "no-table-tags", "sga-conj-simple", "ícaid", "", "to heal to"]) + let v = native_list_append(v, ["immaig", "verb", "imm·aig", "no-table-tags", "sga-conj-complex", "", "to drive around"]) + let v = native_list_append(v, ["immbeir", "verb", "imm·beir", "imbert", "no-table-tags", "", "to carry around"]) + let v = native_list_append(v, ["immdích", "verb", "imm·dích", "·imdich", "imdegal", "", "to protect save"]) + let v = native_list_append(v, ["imfolngai", "verb", "im·folngai", "·immolṅgai", "imḟolang", "", "to effect produce"]) + let v = native_list_append(v, ["immrá", "verb", "imm·rá", "imram", "no-table-tags", "", "to row around"]) + let v = native_list_append(v, ["immrádai", "verb", "imm·rádai", "imrádud", "imrád", "", "to think over"]) + let v = native_list_append(v, ["rádaid", "verb", "·ráidiu", "ráid", "", "", "to speak to"]) + let v = native_list_append(v, ["immsoí", "verb", "imm·soí", "·impaí", "impúd", "", "to turn around"]) + let v = native_list_append(v, ["immtét", "verb", "imm·tét", "imthecht", "no-table-tags", "", "to go around"]) + let v = native_list_append(v, ["téit", "verb", "tíagu", "lod", "", "", "to go"]) + let v = native_list_append(v, ["labraithir", "verb", "labrar", "", "", "", "to speak to"]) + let v = native_list_append(v, ["láthraid", "verb", "no-table-tags", "sga-conj-simple", "láthrimmi", "", "to arrange to"]) + let v = native_list_append(v, ["liid", "verb", "liïm", "líthe", "líthe", "", "to accuse to"]) + let v = native_list_append(v, ["línaid", "verb", "lína", "línsai", "", "", "to fill"]) + let v = native_list_append(v, ["maidid", "verb", "·maid", "maidm", "no-table-tags", "", "to break burst"]) + let v = native_list_append(v, ["midithir", "verb", "midiur", "·mídar", "messe", "", "to weigh to"]) + let v = native_list_append(v, ["millid", "verb", "no-table-tags", "sga-conj-simple", "·millet", "", "to ruin to"]) + let v = native_list_append(v, ["nascaid", "verb", "·naiscim", "nascair", "nassa", "", "to bind to"]) + let v = native_list_append(v, ["noíbaid", "verb", "·nóeba", "no-table-tags", "sga-conj-simple", "", "to sanctify to"]) + let v = native_list_append(v, ["rannaid", "verb", "no-table-tags", "sga-conj-simple", "rannait", "", "to divide into"]) + let v = native_list_append(v, ["reithid", "verb", "rithu", "", "", "", "to run to"]) + let v = native_list_append(v, ["rocluinethar", "verb", "ro·cluinethar", "·cluinethar", "clúas", "", "to hear"]) + let v = native_list_append(v, ["roicc", "verb", "ro·icc", "·ricc", "ríchtu", "", "to reach a"]) + let v = native_list_append(v, ["rosaig", "verb", "ro·saig", "·róig", "·róich", "", "to reach to"]) + let v = native_list_append(v, ["saigid", "verb", "saigim", "saigthi", "saigthi", "", "to go towards"]) + let v = native_list_append(v, ["roithid", "verb", "roithiud", "no-table-tags", "sga-conj-simple", "", "to make run"]) + let v = native_list_append(v, ["rolaimethar", "verb", "ro·laimethar", "·laimethar", "léitiu", "", "to dare to"]) + let v = native_list_append(v, ["saidid", "verb", "sius", "", "", "", "to sit down"]) + let v = native_list_append(v, ["sáidid", "verb", "no-table-tags", "sga-conj-simple", "sádid", "", "to thrust to"]) + let v = native_list_append(v, ["samlaidir", "verb", "·samlur", "", "", "", "to compare"]) + let v = native_list_append(v, ["scrútaid", "verb", "scrúta", "·scrútus", "", "", "to examine to"]) + let v = native_list_append(v, ["seichithir", "verb", "seichem", "no-table-tags", "sga-conj-simple", "", "to follow pursue"]) + let v = native_list_append(v, ["seinnid", "verb", "·seinn", "seinm", "no-table-tags", "", "to play a"]) + let v = native_list_append(v, ["sénaid", "verb", "sénaim", "·sénais", "", "", "to mark with"]) + let v = native_list_append(v, ["sernaid", "verb", "sreth", "no-table-tags", "sga-conj-simple", "", "to arrange to"]) + let v = native_list_append(v, ["slaidid", "verb", "no-table-tags", "sga-conj-simple", "slaittius", "", "to strike"]) + let v = native_list_append(v, ["sluicid", "verb", "slocud", "no-table-tags", "sga-conj-simple", "", "to swallow"]) + let v = native_list_append(v, ["sluindid", "verb", "·sluindi", "slond", "slondad", "", "to signify"]) + let v = native_list_append(v, ["sroiglid", "verb", "sroigled", "no-table-tags", "sga-conj-simple", "", "to scourge to"]) + let v = native_list_append(v, ["suidigidir", "verb", "·suidigedar", "suidigud", "no-table-tags", "", "to set to"]) + let v = native_list_append(v, ["techtaid", "verb", "·techta", "techtad", "no-table-tags", "", "to have to"]) + let v = native_list_append(v, ["techt", "verb", "·techt", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["teichid", "verb", "techu", "", "", "", "to flee"]) + let v = native_list_append(v, ["trebaid", "verb", "trebad", "no-table-tags", "sga-conj-simple", "", "to cultivate to"]) + let v = native_list_append(v, ["cumscaigthe", "verb", "no-table-tags", "sga-decl-adj-io-ia", "cumscaigthi", "", "past participle of"]) + let v = native_list_append(v, ["airg", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "second-person singular imperative"]) + let v = native_list_append(v, ["betha", "verb", "·betha", "no-table-tags", "sga-mutation", "", "second-person singular past"]) + let v = native_list_append(v, ["cluichigedar", "verb", "·cluichigedar", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["biit", "verb", "no-table-tags", "sga-mutation", "mbiit", "", "alternative spelling of"]) + let v = native_list_append(v, ["adeirrig", "verb", "ad·eirrig", "·aithirrig", "aithirge", "", "to repeat"]) + let v = native_list_append(v, ["aderrig", "verb", "ad·errig", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["aderrius", "verb", "ad·errius", "", "", "", "first-person singular future/present"]) + let v = native_list_append(v, ["diandaithirsid", "verb", "diand·aithirsid", "", "", "", "if you pl"]) + let v = native_list_append(v, ["aithirsid", "verb", "·aithirsid", "", "", "", "second-person plural future/present"]) + let v = native_list_append(v, ["aithirgid", "verb", "aithirgid", "", "", "", "second-person plural imperative"]) + let v = native_list_append(v, ["aithirset", "verb", "·aithirset", "", "", "", "third-person plural future/present"]) + let v = native_list_append(v, ["indaithirset", "verb", "ind·aithirset", "", "", "", "whether they may"]) + let v = native_list_append(v, ["atanneirrig", "verb", "atann·eirrig", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adersetar", "verb", "ad·ersetar", "", "", "", "passive plural future/present"]) + let v = native_list_append(v, ["aithirrestar", "verb", "·aithirrestar", "", "", "", "passive singular future/present"]) + let v = native_list_append(v, ["ataella", "verb", "ata·ella", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["adn-ellat", "verb", "ad·n-ellat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adellat", "verb", "ad·ellat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["atdubelliub", "verb", "atdub·elliub", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["adelliub", "verb", "ad·elliub", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["adeilliub", "verb", "ad·eilliub", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["adn-elliub", "verb", "ad·n-elliub", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["adfíadar", "verb", "ad·fíadar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["adíadar", "verb", "ad·íadar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adfíadam", "verb", "ad·fíadam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["adfíadat", "verb", "ad·fíadat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adcuaid", "verb", "ad·cuaid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["adgaur", "verb", "ad·gaur", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["atgairith", "verb", "at·gairith", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["adgairid", "verb", "no-table-tags", "sga-mutation", "ad·gairid", "", "second-person plural present"]) + let v = native_list_append(v, ["adobragart", "verb", "adob·ragart", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["adragart", "verb", "ad·ragart", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["adrograd", "verb", "ad·rograd", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["adgén", "verb", "ad·gén", "no-table-tags", "sga-mutation", "", "first-person singular preterite/future"]) + let v = native_list_append(v, ["adgéuin", "verb", "ad·géuin", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["adidgéuin", "verb", "adid·géuin", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["adgénammar", "verb", "ad·génammar", "no-table-tags", "sga-mutation", "", "first-person plural preterite"]) + let v = native_list_append(v, ["n-aithgnintar", "verb", "·n-aithgnintar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aithgnintar", "verb", "·aithgnintar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["n-aithgéuin", "verb", "·n-aithgéuin", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aithgéuin", "verb", "·aithgéuin", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["atatgéntar", "verb", "atat·géntar", "", "", "", "passive singular future"]) + let v = native_list_append(v, ["adgéntar", "verb", "ad·géntar", "", "", "", "passive singular future"]) + let v = native_list_append(v, ["asagúsi", "verb", "asa·gúsi", "aicsu", "no-table-tags", "", "to desire wish"]) + let v = native_list_append(v, ["adgúisiu", "verb", "ad·gúisiu", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["adgúsi", "verb", "ad·gúsi", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["assagúiset", "verb", "assa·gúiset", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adgúset", "verb", "ad·gúset", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["adgústis", "verb", "ad·gústis", "no-table-tags", "sga-mutation", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["asagú", "verb", "asa·gú", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["assagúsea", "verb", "assa·gúsea", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["n-asrugeset", "verb", "n-as·rugeset", "", "", "", "manuscript spelling of"]) + let v = native_list_append(v, ["n-asruguset", "verb", "n-as·ruguset", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["asruguset", "verb", "as·ruguset", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["ecguiste", "verb", "no-table-tags", "sga-decl-adj-io-ia", "ecguisti", "", "past participle of"]) + let v = native_list_append(v, ["ecguisti", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "inflection of ecguiste"]) + let v = native_list_append(v, ["aimmded", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular imperative"]) + let v = native_list_append(v, ["aimdetar", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person plural imperative"]) + let v = native_list_append(v, ["téiged", "verb", "·téiged", "no-table-tags", "sga-mutation", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["foilsigidir", "verb", "·foilsigedar", "foilsigud", "no-table-tags", "", "to reveal make"]) + let v = native_list_append(v, ["foillsigthir", "verb", "no-table-tags", "sga-mutation", "ḟoillsigthir", "", "alternative form of"]) + let v = native_list_append(v, ["foilsigedar", "verb", "foilsigedar", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["rofoilsigthea", "verb", "ro·foilsigthea", "no-table-tags", "sga-mutation", "", "passive plural perfect"]) + let v = native_list_append(v, ["foilsigthe", "verb", "foilsigthe", "", "", "", "inflection of foilsigidir"]) + let v = native_list_append(v, ["rufáilsigset", "verb", "ru·fáilsigset", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["rofoilsigsetar", "verb", "ro·foilsigsetar", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["ɔidrofoilsigsetar", "verb", "ɔidro·foilsigsetar", "", "", "", "until they have/had"]) + let v = native_list_append(v, ["foilsigthi", "verb", "foilsigthi", "", "", "", "foilsigidir “demonstrates” with"]) + let v = native_list_append(v, ["foilsigdde", "verb", "foilsigdde", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["adnoí", "verb", "ad·noí", "aithne", "no-table-tags", "", "to entrust +"]) + let v = native_list_append(v, ["adopair", "verb", "ad·opair", "·idbair", "·edbair", "", "to offer"]) + let v = native_list_append(v, ["adroilli", "verb", "ad·roilli", "·áirilli", "áirilliud", "", "to deserve"]) + let v = native_list_append(v, ["adtluchedar", "verb", "ad·tluchedar", "at (t)lugud", "atlogod", "", "to give thanks"]) + let v = native_list_append(v, ["atluchedar", "verb", "a·tluchedar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adib", "verb", "adib", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["tarat", "verb", "·tarat", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["promaid", "verb", "promad", "no-table-tags", "sga-conj-simple", "", "to try test"]) + let v = native_list_append(v, ["dofuiben", "verb", "do·fuiben", "tóbae", "no-table-tags", "", "to cut"]) + let v = native_list_append(v, ["doróscai", "verb", "do·róscai", "·derscaigi", "derscugud", "", "to surpass"]) + let v = native_list_append(v, ["n-as", "verb", "n-as", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bongid", "verb", "no-table-tags", "sga-mutation", "mbongid", "", "alternative spelling of"]) + let v = native_list_append(v, ["cheste", "verb", "cheste", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["robsa", "verb", "no-table-tags", "sga-mutation", "also rrobsa in h-prothesis environments", "", "first-person singular perfect"]) + let v = native_list_append(v, ["robsat", "verb", "no-table-tags", "sga-mutation", "also rrobsat in h-prothesis environments", "", "second-person singular perfect"]) + let v = native_list_append(v, ["robummar", "verb", "no-table-tags", "sga-mutation", "also rrobummar in h-prothesis environments", "", "first-person plural past"]) + let v = native_list_append(v, ["arim", "verb", "·arim", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["berar", "verb", "berar", "", "", "", "inflection of beirid"]) + let v = native_list_append(v, ["bethe", "verb", "bethe", "", "", "", "second-person plural future"]) + let v = native_list_append(v, ["benir", "verb", "no-table-tags", "sga-mutation", "mbenir", "", "alternative spelling of"]) + let v = native_list_append(v, ["mligid", "verb", "mlegon", "no-table-tags", "sga-conj-simple", "", "to milk"]) + let v = native_list_append(v, ["taí", "verb", "·taí", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["níta", "verb", "níta", "", "", "", "first/second-person singular of"]) + let v = native_list_append(v, ["labrither", "verb", "labrither", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["doadbat", "verb", "do·adbat", "·tadbat", "taidbsiu", "", "to show display"]) + let v = native_list_append(v, ["doadbit", "verb", "do·adbit", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["arreith", "verb", "ar·reith", "airrecht", "no-table-tags", "", "to capture overtake"]) + let v = native_list_append(v, ["ararethi", "verb", "ara·rethi", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["mmitter", "verb", "mmitter", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["forsammitter", "verb", "forsa·mmitter", "", "", "", "on whom you"]) + let v = native_list_append(v, ["aicci", "verb", "·aicci", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["ataí", "verb", "a·taí", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["attaí", "verb", "at·taí", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["dolugub", "verb", "do·lugub", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["dalugub", "verb", "da·lugub", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["ngé", "verb", "·ngé", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["imbide", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "past participle of"]) + let v = native_list_append(v, ["imfen", "verb", "im·fen", "imbe", "no-table-tags", "", "to hedge in"]) + let v = native_list_append(v, ["beres", "verb", "no-table-tags", "sga-mutation", "mberes", "", "alternative spelling of"]) + let v = native_list_append(v, ["mberes", "verb", "mberes", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["téite", "verb", "téte", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["téte", "verb", "no-table-tags", "sga-mutation", "théte", "", "alternative spelling of"]) + let v = native_list_append(v, ["legaid", "verb", "·lega", "legad", "no-table-tags", "", "to melt dissolve"]) + let v = native_list_append(v, ["dolega", "verb", "do·lega", "dílgend", "dílgent", "", "to destroy"]) + let v = native_list_append(v, ["n-ail", "verb", "·n-ail", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nodn-ail", "verb", "nod·n-ail", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["notail", "verb", "not·ail", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["eirbthi", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular present"]) + let v = native_list_append(v, ["duaisilbi", "verb", "du·aisilbi", "taisilbiud", "no-table-tags", "", "to ascribe"]) + let v = native_list_append(v, ["dongniat", "verb", "do·ngniat", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dongníat", "verb", "do·ngníat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dogniat", "verb", "do·gniat", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dogníat", "verb", "do·gníat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["rumaith", "verb", "ru·maith", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["táet", "verb", "·táet", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["etarscartha", "verb", "etarscartha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["etarscarthae", "verb", "no-table-tags", "sga-decl-adj-io-ia", "etarscarthai", "", "past participle of"]) + let v = native_list_append(v, ["itius", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person plural present"]) + let v = native_list_append(v, ["doclaid", "verb", "do·claid", "·tochlaid", "tochailt", "", "to root up"]) + let v = native_list_append(v, ["dusclaid", "verb", "dus·claid", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["foircnea", "verb", "·foircnea", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["dungni", "verb", "du·ngni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dongní", "verb", "do·ngní", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dugni", "verb", "du·gni", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["dungní", "verb", "du·ngní", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dugní", "verb", "du·gní", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["asmbeir", "verb", "as·mbeir", "no-table-tags", "sga-mutation", "", "eclipsed form of"]) + let v = native_list_append(v, ["atrobair", "verb", "at·robair", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["beoigidir", "verb", "no-table-tags", "sga-mutation", "mbeoigidir", "", "alternative spelling of"]) + let v = native_list_append(v, ["firianigedar", "verb", "no-table-tags", "sga-mutation", "ḟirianigedar", "", "alternative spelling of"]) + let v = native_list_append(v, ["fíríanigedar", "verb", "no-table-tags", "sga-mutation", "ḟíríanigedar", "", "third-person singular present"]) + let v = native_list_append(v, ["fitir", "verb", "·fitir", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["bíid", "verb", "no-table-tags", "sga-mutation", "mbíid", "", "inflection of at·tá"]) + let v = native_list_append(v, ["biid", "verb", "biid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["creitim", "verb", "creitim", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["cretim", "verb", "no-table-tags", "sga-mutation", "chretim", "", "alternative spelling of"]) + let v = native_list_append(v, ["nobtá", "verb", "nob·tá", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["idib", "verb", "idib", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["cininfil", "verb", "cinin·fil", "", "", "", "although we are"]) + let v = native_list_append(v, ["tiagmi", "verb", "no-table-tags", "sga-mutation", "thiagmi", "", "alternative spelling of"]) + let v = native_list_append(v, ["tiagme", "verb", "no-table-tags", "sga-mutation", "thiagme", "", "alternative spelling of"]) + let v = native_list_append(v, ["tíagme", "verb", "no-table-tags", "sga-mutation", "thíagme", "", "first-person plural present"]) + let v = native_list_append(v, ["tíagmi", "verb", "no-table-tags", "sga-mutation", "thíagmi", "", "first-person plural present"]) + let v = native_list_append(v, ["doberam", "verb", "do·beram", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["ditaam", "verb", "di·taam", "", "", "", "first-person plural present"]) + let v = native_list_append(v, ["ditá", "verb", "di·tá", "·dithá", "debuith", "", "to differ be"]) + let v = native_list_append(v, ["dechrigmir", "verb", "no-table-tags", "sga-mutation", "ndechrigmir", "", "first-person plural present"]) + let v = native_list_append(v, ["dechraigidir", "verb", "·dechraigethar", "dechrugud", "no-table-tags", "", "to stand apart"]) + let v = native_list_append(v, ["labramar", "verb", "no-table-tags", "sga-mutation", "also llabramar in h-prothesis environments", "", "first-person plural present"]) + let v = native_list_append(v, ["adchiam", "verb", "ad·chiam", "no-table-tags", "sga-mutation", "", "lenited form of"]) + let v = native_list_append(v, ["n-adchiam", "verb", "n-ad·chiam", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rocluinemmar", "verb", "ro·cluinemmar", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["rochluinemmar", "verb", "ro·chluinemmar", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["oldaas", "verb", "ol·daas", "", "", "", "than s/he is"]) + let v = native_list_append(v, ["nidan", "verb", "no-table-tags", "sga-mutation", "also nnidan in h-prothesis environments", "", "alternative spelling of"]) + let v = native_list_append(v, ["nídan", "verb", "no-table-tags", "sga-mutation", "also nnídan in h-prothesis environments", "", "first-person plural present"]) + let v = native_list_append(v, ["fercaigidir", "verb", "·fercaigethar", "no-table-tags", "sga-conj-simple", "", "to be or"]) + let v = native_list_append(v, ["fercaigthe", "verb", "no-table-tags", "sga-mutation", "ḟercaigthe", "", "second-person plural present"]) + let v = native_list_append(v, ["cretid", "verb", "no-table-tags", "sga-mutation", "chretid", "", "alternative spelling of"]) + let v = native_list_append(v, ["nonchretid", "verb", "non·chretid", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["chretid", "verb", "chretid", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["fodaimid", "verb", "fo·daimid", "no-table-tags", "sga-mutation", "", "second-person plural present"]) + let v = native_list_append(v, ["nondad", "verb", "nondad", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["rethit", "verb", "no-table-tags", "sga-mutation", "also rrethit in h-prothesis environments", "", "third-person plural present"]) + let v = native_list_append(v, ["gaibes", "verb", "no-table-tags", "sga-mutation", "ngaibes", "", "third-person singular present"]) + let v = native_list_append(v, ["dagníat", "verb", "da·gníat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["dágniat", "verb", "dá·gniat", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["is maith la", "verb", "is maith la", "", "", "", "to like"]) + let v = native_list_append(v, ["fodmat", "verb", "·fodmat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["pridchite", "verb", "no-table-tags", "sga-mutation", "phridchite", "", "third-person plural present"]) + let v = native_list_append(v, ["forcanat", "verb", "for·canat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["forchanat", "verb", "for·chanat", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["aidlignigitir", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person plural present"]) + let v = native_list_append(v, ["adilgnigidir", "verb", "·adilgnigedar", "·aidlicnigedar", "no-table-tags", "", "to need want"]) + let v = native_list_append(v, ["aidlignitir", "verb", "aidlignitir", "", "", "", "misspelling of aidlignigitir"]) + let v = native_list_append(v, ["labratar", "verb", "labratar", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["nudubfeil", "verb", "nudub·feil", "", "", "", "present progressive conjunctive"]) + let v = native_list_append(v, ["inloing", "verb", "in·loing", "ellach", "no-table-tags", "", "to join unite"]) + let v = native_list_append(v, ["dothuit", "verb", "do·thuit", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["benair", "verb", "no-table-tags", "sga-mutation", "mbenair", "", "passive singular present"]) + let v = native_list_append(v, ["atbail", "verb", "at·bail", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["conboing", "verb", "con·boing", "combach", "ɔ·boing", "", "to break"]) + let v = native_list_append(v, ["ɔboing", "verb", "ɔ·boing", "no-table-tags", "sga-mutation", "", "abbreviation of con·boing"]) + let v = native_list_append(v, ["foraithminedar", "verb", "for·aithminedar", "foraithmet", "no-table-tags", "", "to remember"]) + let v = native_list_append(v, ["fodaraithminedar", "verb", "foda·raithmine⟨dar⟩", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["nodafortachtaigedar", "verb", "noda·fortachtaigedar", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["fortachtaigedar", "verb", "·fortachtaigedar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["fortachtaigid", "verb", "·fortachtaiged", "no-table-tags", "sga-conj-simple", "", "to help"]) + let v = native_list_append(v, ["samailter", "verb", "·samailter", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["condansamailter", "verb", "condan·samailter", "", "", "", "so that we"]) + let v = native_list_append(v, ["coscitir", "verb", "·coscitir", "no-table-tags", "sga-mutation", "", "passive plural present"]) + let v = native_list_append(v, ["ropu", "verb", "ropu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mbat", "verb", "mbat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbí", "verb", "mbí", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["doairbertar", "verb", "do·airbertar", "no-table-tags", "sga-mutation", "", "passive plural present"]) + let v = native_list_append(v, ["pridcha", "verb", "no-table-tags", "sga-mutation", "phridcha", "", "first-person singular present"]) + let v = native_list_append(v, ["nímbia", "verb", "ním·bia", "", "", "", "I shall not"]) + let v = native_list_append(v, ["dringid", "verb", "·dring", "dréim", "no-table-tags", "", "to climb"]) + let v = native_list_append(v, ["indbadaigid", "verb", "no-table-tags", "sga-conj-simple", "indbadaigfitis", "", "to abound"]) + let v = native_list_append(v, ["indbadigthi", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "verbal of necessity"]) + let v = native_list_append(v, ["cuintechti", "verb", "cuintechti", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cuintechtai", "verb", "cuintechtai", "", "", "", "verbal of necessity"]) + let v = native_list_append(v, ["chuintechti", "verb", "chuintechti", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dugnéu", "verb", "du·gnéu", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["dungnéu", "verb", "du·ngnéu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dungneu", "verb", "du·ngneu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["immidfolngi", "verb", "immid·ḟolngi", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["árim", "verb", "·árim", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["coní", "verb", "con·í", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["arnap", "verb", "arnáp", "", "", "", "so that… may"]) + let v = native_list_append(v, ["nibu", "verb", "nibu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["doinóla", "verb", "do·inóla", "tinól", "no-table-tags", "", "to gather"]) + let v = native_list_append(v, ["doecmalla", "verb", "do·ecmalla", "·tecmalla", "teclam", "", "to gather"]) + let v = native_list_append(v, ["domeiccethar", "verb", "do·meiccethar", "·dimicedar", "dímiccem", "", "to despise"]) + let v = native_list_append(v, ["dimicthe", "verb", "no-table-tags", "sga-mutation", "ndimicthe", "", "past participle of"]) + let v = native_list_append(v, ["doaig", "verb", "do·aig", "táin", "no-table-tags", "", "to drive off"]) + let v = native_list_append(v, ["nocarae", "verb", "no·carae", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["étaigidir", "verb", "no-table-tags", "sga-conj-simple", "·éttigetar", "", "to emulate envy"]) + let v = native_list_append(v, ["étaigther", "verb", "·étaigther", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["n-étaigther", "verb", "·n-étaigther", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["non-étaigther", "verb", "no·n-étaigther", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["non-etaigther", "verb", "no·n-etaigther", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["charae", "verb", "charae", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["techtid", "verb", "no-table-tags", "sga-mutation", "thechtid", "", "alternative spelling of"]) + let v = native_list_append(v, ["techtai", "verb", "techtai", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["doinfet", "verb", "do·infet", "tinfed", "no-table-tags", "", "to blow breathe"]) + let v = native_list_append(v, ["doslí", "verb", "do·slí", "·tuilli", "tuillem", "", "to deserve"]) + let v = native_list_append(v, ["etaigther", "verb", "·etaigther", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["nigid", "verb", "·nig", "nige", "no-table-tags", "", "to wash"]) + let v = native_list_append(v, ["conoí", "verb", "con·ói", "·comai", "comét", "", "to protect guard"]) + let v = native_list_append(v, ["adraid", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "alternative form of"]) + let v = native_list_append(v, ["astoing", "verb", "as·toing", "·eitig", "etech", "", "to refuse"]) + let v = native_list_append(v, ["asindet", "verb", "as·indet", "·aisndet", "aisndís", "", "to say tell"]) + let v = native_list_append(v, ["doléci", "verb", "do·léci", "·teilci", "telcud", "", "alternative form of"]) + let v = native_list_append(v, ["notbeir", "verb", "not·beir", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["contúaisi", "verb", "con·túaisi", "coitsecht", "no-table-tags", "", "to hear listen"]) + let v = native_list_append(v, ["artúaissi", "verb", "ar·túaissi", "airthúasacht", "no-table-tags", "", "to hear listen"]) + let v = native_list_append(v, ["sirid", "verb", "súr", "siriud", "no-table-tags", "", "to traverse travel"]) + let v = native_list_append(v, ["doruimnethar", "verb", "do·ruimnethar", "dermat", "no-table-tags", "", "to forget"]) + let v = native_list_append(v, ["arsissedar", "verb", "ar·sissedar", "·airisedar", "airisem", "", "to stay remain"]) + let v = native_list_append(v, ["atbela", "verb", "at·bela", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["asbera", "verb", "as·bera", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["congné", "verb", "con·gné", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["congne", "verb", "con·gne", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["dorolgea", "verb", "do·rolgea", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["darolgea", "verb", "da·rolgea", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["n-asbera", "verb", "n-as·bera", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rucca", "verb", "·ruca", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["adetha", "verb", "ad·etha", "no-table-tags", "sga-conj-complex", "", "to seize take"]) + let v = native_list_append(v, ["asgleinn", "verb", "as·gleinn", "·eclainn", "eclaimm", "", "to investigate examine"]) + let v = native_list_append(v, ["doeclainn", "verb", "do·eclainn", "teclaim", "teclimm", "", "to select choose"]) + let v = native_list_append(v, ["samlaid", "verb", "no-table-tags", "sga-mutation", "ṡamlaid", "", "alternative form of"]) + let v = native_list_append(v, ["samlid", "verb", "samlid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["etercerta", "verb", "eter·certa", "·etarcerta", "etercert", "", "to interpret explain"]) + let v = native_list_append(v, ["asluí", "verb", "as·luí", "·élai", "élud", "", "to escape"]) + let v = native_list_append(v, ["arpeti", "verb", "ar·peti", "airfitiud", "no-table-tags", "", "to entertain amuse"]) + let v = native_list_append(v, ["rubé", "verb", "ru·bé", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["pridches", "verb", "no-table-tags", "sga-mutation", "phridches", "", "third-person singular present"]) + let v = native_list_append(v, ["níba", "verb", "nipa", "nípa", "", "", "inflection of is"]) + let v = native_list_append(v, ["addaim", "verb", "ad·daim", "·ataim", "aititiu", "", "to acknowledge admit"]) + let v = native_list_append(v, ["immeráda", "verb", "imme·ráda", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["immerada", "verb", "imme·rada", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["doesta", "verb", "do·esta", "·testa", "·tesban", "", "to be absent"]) + let v = native_list_append(v, ["acathar", "verb", "·acathar", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-acathar", "verb", "·n‑acathar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["arfen", "verb", "ar·fen", "airbe", "no-table-tags", "", "to fence off"]) + let v = native_list_append(v, ["inducbaide", "verb", "inducbaide", "", "", "", "past participle of"]) + let v = native_list_append(v, ["corathar", "verb", "·corathar", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["dotluchethar", "verb", "do·tluchethar", "tothlugud", "todlugud", "", "to ask for"]) + let v = native_list_append(v, ["arnachcorathar", "verb", "arnach·corathar", "", "", "", "so that he"]) + let v = native_list_append(v, ["oidid", "verb", "ón", "óin", "no-table-tags", "", "to lend"]) + let v = native_list_append(v, ["marnaid", "verb", "·mairn", "mrath", "no-table-tags", "", "to betray"]) + let v = native_list_append(v, ["bemmi", "verb", "no-table-tags", "sga-mutation", "mbemmi", "", "first-person plural future"]) + let v = native_list_append(v, ["comalnammar", "verb", "·comalnammar", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["pridchimme", "verb", "no-table-tags", "sga-mutation", "phridchimme", "", "first-person plural present"]) + let v = native_list_append(v, ["comman", "verb", "comman", "", "", "", "that we may"]) + let v = native_list_append(v, ["maraid", "verb", "·mair", "marthain", "no-table-tags", "", "to last persist"]) + let v = native_list_append(v, ["doetarrat", "verb", "do·etarrat", "·tetarrat", "tetarracht", "", "to encompass contain"]) + let v = native_list_append(v, ["doaurchain", "verb", "do·aurchain", "·tirchain", "tairchetal", "", "to foretell prophesy"]) + let v = native_list_append(v, ["dumenammar", "verb", "du·menammar", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["doairngir", "verb", "do·airngir", "·tairngir", "tairngire", "", "to promise"]) + let v = native_list_append(v, ["doaurling", "verb", "do·aurling", "·taurlaing", "tairlimm", "", "to descend"]) + let v = native_list_append(v, ["níp", "verb", "níp", "", "", "", "inflection of is"]) + let v = native_list_append(v, ["céste", "verb", "no-table-tags", "sga-mutation", "chéste", "", "second-person plural present"]) + let v = native_list_append(v, ["chéste", "verb", "chéste", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ɔrop", "verb", "ɔrop", "", "", "", "abbreviation of corop"]) + let v = native_list_append(v, ["corop", "verb", "ɔrop", "no-table-tags", "sga-mutation", "", "so that he/she/it"]) + let v = native_list_append(v, ["dlongaid", "verb", "·dloing", "dluige", "no-table-tags", "", "to split cut"]) + let v = native_list_append(v, ["asdloing", "verb", "as·dloing", "indlach", "no-table-tags", "", "to cleave"]) + let v = native_list_append(v, ["asberaid", "verb", "as·beraid", "no-table-tags", "sga-mutation", "", "second-person plural present"]) + let v = native_list_append(v, ["n-asberaid", "verb", "n-as·beraid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["doadbadar", "verb", "do·adbadar", "no-table-tags", "sga-mutation", "", "present indicative passive"]) + let v = native_list_append(v, ["robatar", "verb", "·robatar", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["robátar", "verb", "ro·bátar", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["dorigénsat", "verb", "do·rigénsat", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["ɔsecha", "verb", "ɔsecha", "", "", "", "abbreviation of con·secha"]) + let v = native_list_append(v, ["dofuthracair", "verb", "do·futhracair", "·dúthracair", "dúthracht", "", "to desire wish"]) + let v = native_list_append(v, ["immcomairc", "verb", "imm·comairc", "imchomarc", "no-table-tags", "", "to ask with"]) + let v = native_list_append(v, ["conutaing", "verb", "con·utaing", "cumtach", "no-table-tags", "", "to build construct"]) + let v = native_list_append(v, ["nibo", "verb", "nibo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["níbo", "verb", "no-table-tags", "sga-mutation", "also nníbo in h-prothesis environments", "", "inflection of is"]) + let v = native_list_append(v, ["nombeid", "verb", "no·mbeid", "", "", "", "second-person singular present"]) + let v = native_list_append(v, ["mbeid", "verb", "mbeid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dogneith", "verb", "do·gneith", "no-table-tags", "sga-mutation", "", "second-person plural present"]) + let v = native_list_append(v, ["comalnit", "verb", "no-table-tags", "sga-mutation", "chomalnit", "", "third-person plural present"]) + let v = native_list_append(v, ["chomalnit", "verb", "chomalnit", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["rudchoiscset", "verb", "rud·choiscset", "", "", "", "third-person plural preterite"]) + let v = native_list_append(v, ["rocoiscset", "verb", "ro·coiscset", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["coiscset", "verb", "·coiscset", "no-table-tags", "sga-mutation", "", "third-person plural preterite"]) + let v = native_list_append(v, ["ingnin", "verb", "in·gnin", "ingnae", "no-table-tags", "", "to know recognize"]) + let v = native_list_append(v, ["arléici", "verb", "ar·léici", "airliciud", "no-table-tags", "", "to lend with"]) + let v = native_list_append(v, ["dobeir ainm do", "verb", "do·beir ainm do", "", "", "", "to call to"]) + let v = native_list_append(v, ["epret", "verb", "·epret", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["créchtnaigid", "verb", "créchtnugud", "no-table-tags", "sga-conj-simple", "", "to wound injure"]) + let v = native_list_append(v, ["corruanat", "verb", "corru·anat", "", "", "", "so that they"]) + let v = native_list_append(v, ["ruanat", "verb", "ru·anat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["fodaimet", "verb", "fo·daimet", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["comolnatar", "verb", "·comolnatar", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["comsuidigthe", "verb", "comṡuidigthe", "", "", "", "past participle of"]) + let v = native_list_append(v, ["ndéni", "verb", "·ndéni", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ndeni", "verb", "·ndeni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["doberthar", "verb", "do·berthar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["dobérthar", "verb", "do·bérthar", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["rabad", "verb", "·rabad", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["ɔrabad", "verb", "ɔrabad", "", "", "", "so that s/he"]) + let v = native_list_append(v, ["cetabí", "verb", "ceta·bí", "cétbaid", "no-table-tags", "", "to feel perceive"]) + let v = native_list_append(v, ["samaltar", "verb", "·samaltar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["rusamaltar", "verb", "ru·samaltar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["ríctar", "verb", "·ríctar", "", "", "", "passive plural present"]) + let v = native_list_append(v, ["dumem", "verb", "dum·em", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["cummiscther", "verb", "·cummiscther", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["conmescatar", "verb", "con·mescatar", "ɔ·mescatar", "no-table-tags", "", "passive plural present"]) + let v = native_list_append(v, ["ɔmescatar", "verb", "ɔ·mescatar", "no-table-tags", "sga-mutation", "", "abbreviation of con·mescatar"]) + let v = native_list_append(v, ["léic", "verb", "léicc", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["táncatar", "verb", "·táncatar", "no-table-tags", "sga-mutation", "", "third-person plural preterite"]) + let v = native_list_append(v, ["tomil", "verb", "no-table-tags", "sga-mutation", "thomil", "", "second-person singular imperative"]) + let v = native_list_append(v, ["dommeil", "verb", "do·mmeil", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["arnáp", "verb", "arnáp", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trisgata", "verb", "tris·gata", "·tregda", "no-table-tags", "", "to pierce"]) + let v = native_list_append(v, ["ructha", "verb", "·ructha", "", "", "", "passive plural perfect"]) + let v = native_list_append(v, ["conétet", "verb", "con·étet", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["conéit", "verb", "con·éit", "", "", "", "third-person singular future/present"]) + let v = native_list_append(v, ["déne", "verb", "no-table-tags", "sga-mutation", "ndéne", "", "second-person singular imperative"]) + let v = native_list_append(v, ["roboí", "verb", "ro·boí", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["coínid", "verb", "·coíner", "coínsimmar", "caínti", "", "to lament mourn"]) + let v = native_list_append(v, ["doimmoirc", "verb", "do·immoirc", "timmorcon", "no-table-tags", "", "to press"]) + let v = native_list_append(v, ["doindnaig", "verb", "do·indnaig", "tindnacol", "no-table-tags", "", "to give bestow"]) + let v = native_list_append(v, ["nachibmided", "verb", "nachib·mided", "", "", "", "let him not"]) + let v = native_list_append(v, ["mided", "verb", "no-table-tags", "sga-mutation", "also mmided in h-prothesis environments", "", "third-person singular imperative"]) + let v = native_list_append(v, ["mbiad", "verb", "mbïad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["mbíad", "verb", "mbíad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nachibberar", "verb", "nachib·berar", "", "", "", "do not be"]) + let v = native_list_append(v, ["foirbthe", "verb", "foirbthe", "", "", "", "past participle of"]) + let v = native_list_append(v, ["immcuirethar", "verb", "imm·cuirethar", "no-table-tags", "sga-conj-complex", "", "to carry"]) + let v = native_list_append(v, ["congeil", "verb", "con·geil", "congelt", "no-table-tags", "", "to graze with"]) + let v = native_list_append(v, ["friscuirethar", "verb", "fris·cuirethar", "frecor", "no-table-tags", "", "to put toward"]) + let v = native_list_append(v, ["doaithchuiredar", "verb", "do·aithchuiredar", "taidchor", "no-table-tags", "", "to return"]) + let v = native_list_append(v, ["sechem", "verb", "no-table-tags", "sga-mutation", "ṡechem", "", "alternative spelling of"]) + let v = native_list_append(v, ["seichem", "verb", "no-table-tags", "sga-mutation", "ṡeichem", "", "first-person plural imperative"]) + let v = native_list_append(v, ["aslena", "verb", "as·lena", "éilled", "no-table-tags", "", "to pollute defile"]) + let v = native_list_append(v, ["dogair", "verb", "do·gair", "togairm", "no-table-tags", "", "to call"]) + let v = native_list_append(v, ["intamlid", "verb", "intamlid", "", "", "", "second-person plural imperative"]) + let v = native_list_append(v, ["fortét", "verb", "for·tét", "·fortéit", "fortacht", "", "to help assist"]) + let v = native_list_append(v, ["cobraithir", "verb", "·cobradar", "cobair", "no-table-tags", "", "to help"]) + let v = native_list_append(v, ["doaitni", "verb", "do·aitni", "taitnem", "no-table-tags", "", "to shine"]) + let v = native_list_append(v, ["taitnigidir", "verb", "totnugud", "no-table-tags", "sga-conj-simple", "", "to please"]) + let v = native_list_append(v, ["doinscanna", "verb", "do·inscanna", "·tinscana", "no-table-tags", "", "to begin"]) + let v = native_list_append(v, ["taít", "verb", "no-table-tags", "sga-mutation", "thaít", "", "second-person plural imperative"]) + let v = native_list_append(v, ["bíth", "verb", "no-table-tags", "sga-mutation", "mbíth", "", "inflection of at·tá"]) + let v = native_list_append(v, ["caithid", "verb", "·caithi", "caithem", "no-table-tags", "", "to consume use"]) + let v = native_list_append(v, ["luithir", "verb", "luïthir", "·luäthar", "luud", "", "to move"]) + let v = native_list_append(v, ["folúathar", "verb", "fo·lúathar", "no-table-tags", "sga-conj-complex", "", "to fly"]) + let v = native_list_append(v, ["conoathar", "verb", "con·oathar", "·comathar", "comét", "", "alternative form of"]) + let v = native_list_append(v, ["cumgat", "verb", "no-table-tags", "sga-mutation", "chumgat", "", "third-person plural imperative"]) + let v = native_list_append(v, ["immimgaib", "verb", "imm·imgaib", "·imgaib", "imgabáil", "", "to avoid evade"]) + let v = native_list_append(v, ["tíagat", "verb", "tíagat", "", "", "", "third-person plural imperative"]) + let v = native_list_append(v, ["tiagat", "verb", "no-table-tags", "sga-mutation", "thiagat", "", "alternative spelling of"]) + let v = native_list_append(v, ["toncomrit", "verb", "ton·comrit", "tochomracht", "no-table-tags", "", "it makes us"]) + let v = native_list_append(v, ["doaithchren", "verb", "do·aithchren", "taidchricc", "no-table-tags", "", "to redeem"]) + let v = native_list_append(v, ["docoisgedar", "verb", "do·coisgedar", "·tochosgedar", "tochoisgem", "", "to follow"]) + let v = native_list_append(v, ["docoissin", "verb", "do·coissin", "no-table-tags", "sga-conj-complex", "", "to be exist"]) + let v = native_list_append(v, ["epil", "verb", "·epil", "no-table-tags", "sga-mutation", "", "second/third-person singular present"]) + let v = native_list_append(v, ["eiplet", "verb", "·eiplet", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["n-epil", "verb", "·n-epil", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["foircniter", "verb", "·foircniter", "", "", "", "passive plural present"]) + let v = native_list_append(v, ["concná", "verb", "con·cná", "cocnam", "no-table-tags", "", "to chew"]) + let v = native_list_append(v, ["conerchloí", "verb", "con·erchloí", "no-table-tags", "sga-conj-complex", "", "to drive stir"]) + let v = native_list_append(v, ["cloid", "verb", "cloïd", "·cloí", "cloüd", "", "to overthrow overcome"]) + let v = native_list_append(v, ["srennaid", "verb", "srennim", "", "", "", "to snore snort"]) + let v = native_list_append(v, ["dodíchet", "verb", "do·díchet", "no-table-tags", "sga-conj-complex", "", "to lead bring"]) + let v = native_list_append(v, ["frisbrudi", "verb", "fris·brudi", "frithbruduth", "no-table-tags", "", "to refuse reject"]) + let v = native_list_append(v, ["rehenaus", "verb", "re·henaus", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["réidid", "verb", "·réid", "réimm", "ríad", "", "to ride drive"]) + let v = native_list_append(v, ["glenaid", "verb", "·gléu", "", "", "", "to stick cling"]) + let v = native_list_append(v, ["teged", "verb", "·teged", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["théged", "verb", "·théged", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["théiged", "verb", "·théiged", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["taibred", "verb", "·taibred", "no-table-tags", "sga-mutation", "", "inflection of do·beir"]) + let v = native_list_append(v, ["doaisféna", "verb", "do·aisféna", "·taisféna", "taisbénad", "", "to show exhibit"]) + let v = native_list_append(v, ["bretha", "verb", "·bretha", "", "", "", "passive plural preterite"]) + let v = native_list_append(v, ["bentai", "verb", "bentai", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["nachamindarbanar", "verb", "nacham·indarbanar", "", "", "", "let me not"]) + let v = native_list_append(v, ["indarbanar", "verb", "indarbanar", "", "", "", "passive imperative of"]) + let v = native_list_append(v, ["indárban", "verb", "ind·árban", "indarpe", "indarbae", "", "to expel banish"]) + let v = native_list_append(v, ["doscéulai", "verb", "do·scéulai", "·toscelai", "taiscélad", "", "to find out"]) + let v = native_list_append(v, ["sechmoella", "verb", "sechmo·ella", "·sechmalla", "sechmall", "", "to pass by"]) + let v = native_list_append(v, ["fonoí", "verb", "fo·noí", "fuine", "no-table-tags", "", "to cook bake"]) + let v = native_list_append(v, ["scarinn", "verb", "·scarinn", "", "", "", "inflection of scaraid"]) + let v = native_list_append(v, ["fosisedar", "verb", "fo·sisedar", "·fuisedar", "fóesam", "", "to confess acknowledge"]) + let v = native_list_append(v, ["conúalai", "verb", "con·úalai", "no-table-tags", "sga-conj-complex", "", "to go up"]) + let v = native_list_append(v, ["adcumaing", "verb", "ad·cumaing", "·ecmaing", "no-table-tags", "", "to strike"]) + let v = native_list_append(v, ["mbíth", "verb", "mbíth", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["tadall", "verb", "no-table-tags", "sga-mutation", "thadall", "", "second-person singular imperative"]) + let v = native_list_append(v, ["doaithbig", "verb", "do·aithbig", "taidbech", "no-table-tags", "", "to annul abrogate"]) + let v = native_list_append(v, ["dodíat", "verb", "do·díat", "tuididen", "no-table-tags", "", "to bring lead"]) + let v = native_list_append(v, ["duacair", "verb", "du·acair", "tacrae", "no-table-tags", "", "to plead"]) + let v = native_list_append(v, ["documlai", "verb", "do·cumlai", "tochomlud", "no-table-tags", "", "to proceed set"]) + let v = native_list_append(v, ["nobcarad", "verb", "nob·carad", "", "", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["doérnai", "verb", "do·érnai", "ternam", "no-table-tags", "", "to escape"]) + let v = native_list_append(v, ["dugníth", "verb", "du·gníth", "no-table-tags", "sga-mutation", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["dugníther", "verb", "du·gníther", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["ndugníther", "verb", "ndu·gníther", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ndugnither", "verb", "ndu·gnither", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dodona", "verb", "do·dona", "·didna", "dídnad", "", "to comfort console"]) + let v = native_list_append(v, ["dodúrig", "verb", "do·dúrig", "tudrach", "no-table-tags", "", "to provoke incite"]) + let v = native_list_append(v, ["doecmaing", "verb", "do·ecmaing", "·tecmaing", "tecmang", "", "to happen"]) + let v = native_list_append(v, ["dofil", "verb", "do·fil", "", "", "", "to be at"]) + let v = native_list_append(v, ["seichid", "verb", "no-table-tags", "sga-conj-simple", "seghait (sic)", "", "to assert declare"]) + let v = native_list_append(v, ["doessim", "verb", "do·essim", "·teisim", "teistiu", "", "to pour out"]) + let v = native_list_append(v, ["dofoirndea", "verb", "do·foirndea", "·tóirndea", "tórand", "", "to express represent"]) + let v = native_list_append(v, ["dofúairc", "verb", "do·fúairc", "túarcun", "no-table-tags", "", "to grind crush"]) + let v = native_list_append(v, ["docaithi", "verb", "do·caithi", "no-table-tags", "sga-conj-complex", "", "to spend consume"]) + let v = native_list_append(v, ["docing", "verb", "do·cing", "tochim", "no-table-tags", "", "to advance stride"]) + let v = native_list_append(v, ["dobádi", "verb", "do·bádi", "·díbdai", "no-table-tags", "", "to drown out"]) + let v = native_list_append(v, ["forcumaing", "verb", "for·cumaing", "no-table-tags", "sga-conj-complex", "", "to come into"]) + let v = native_list_append(v, ["airigidir", "verb", "·airigur", "·airechdais", "", "", "to perceive sense"]) + let v = native_list_append(v, ["n-airigther", "verb", "n-airigther", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["airigther", "verb", "airigther", "", "", "", "inflection of airigidir"]) + let v = native_list_append(v, ["dodíuschi", "verb", "do·díuschi", "todiusgud", "no-table-tags", "", "to awaken revive"]) + let v = native_list_append(v, ["braigid", "verb", "braigim", "", "", "", "to fart flatulate"]) + let v = native_list_append(v, ["fortchide", "verb", "fortgide", "", "", "", "past participle of"]) + let v = native_list_append(v, ["aráili", "verb", "ar·áili", "·éráli", "eráil", "", "to prompt cause"]) + let v = native_list_append(v, ["arcela", "verb", "ar·cela", "airchellad", "no-table-tags", "", "to take away"]) + let v = native_list_append(v, ["asbeirmis", "verb", "as·beirmis", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["atbeirmis", "verb", "at·beirmis", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["arcoat", "verb", "ar·coät", "erchót", "no-table-tags", "", "to hinder"]) + let v = native_list_append(v, ["arcuilli", "verb", "ar·cuilli", "no-table-tags", "sga-conj-complex", "", "to forbid inhibit"]) + let v = native_list_append(v, ["asbertis", "verb", "as·bertis", "no-table-tags", "sga-mutation", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["imfolnged", "verb", "im·folnged", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["immefolnged", "verb", "imme·ḟolnged", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["níbu", "verb", "no-table-tags", "sga-mutation", "also nníbu in h-prothesis environments", "", "third-person singular past"]) + let v = native_list_append(v, ["adanaig", "verb", "ad·anaig", "adnacul", "no-table-tags", "", "to bury"]) + let v = native_list_append(v, ["dogníthe", "verb", "do·gníthe", "no-table-tags", "sga-mutation", "", "passive singular imperfect"]) + let v = native_list_append(v, ["n-asbered", "verb", "n-as·bered", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["asbered", "verb", "as·bered", "no-table-tags", "sga-mutation", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["doárbas", "verb", "do·árbas", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["arbiatha", "verb", "ar·biatha", "·erbiatha", "airbiathad", "", "to feed nourish"]) + let v = native_list_append(v, ["arcain", "verb", "ar·cain", "airchetal", "no-table-tags", "", "to sing recite"]) + let v = native_list_append(v, ["arcondla", "verb", "ar·condla", "·erchondla", "erndail", "", "to share"]) + let v = native_list_append(v, ["ardíbdai", "verb", "ar·díbdai", "no-table-tags", "sga-conj-complex", "", "to extinguish quench"]) + let v = native_list_append(v, ["dobertis", "verb", "do·bertis", "no-table-tags", "sga-mutation", "", "inflection of do·beir"]) + let v = native_list_append(v, ["léicthe", "verb", "·léicthe", "no-table-tags", "sga-mutation", "", "passive singular imperfect"]) + let v = native_list_append(v, ["leicthe", "verb", "·leicthe", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["oircthe", "verb", "·oircthe", "no-table-tags", "sga-mutation", "", "passive singular imperfect"]) + let v = native_list_append(v, ["doinmlig", "verb", "do·inmlig", "tinmlegon", "no-table-tags", "", "to promulgate"]) + let v = native_list_append(v, ["berainn", "verb", "·berainn", "no-table-tags", "sga-mutation", "", "first-person singular past"]) + let v = native_list_append(v, ["berinn", "verb", "·berinn", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["nosberinn", "verb", "nos·berinn", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["arrosfí", "verb", "arros·fí", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["mbed", "verb", "mbed", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["asbeirinn", "verb", "as·beirinn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["asberainn", "verb", "as·berainn", "no-table-tags", "sga-mutation", "", "first-person singular past"]) + let v = native_list_append(v, ["asberin", "verb", "as·berin", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-asberin", "verb", "n-as·berin", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["immerádin", "verb", "imme·rádain", "", "", "", "first-person singular past"]) + let v = native_list_append(v, ["immeradin", "verb", "imme·radin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dugníinn", "verb", "du·gníinn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["combin", "verb", "combin", "", "", "", "so that ..."]) + let v = native_list_append(v, ["is méite la", "verb", "is méite la", "", "", "", "it matters to"]) + let v = native_list_append(v, ["fortá", "verb", "for·tá", "no-table-tags", "sga-conj-complex", "", "to remain be"]) + let v = native_list_append(v, ["dofúarat", "verb", "do·fúarat", "·diurat", "diurad", "", "to remain"]) + let v = native_list_append(v, ["arnamtomnad", "verb", "arnam·tomnad", "", "", "", "Manuscript spelling of"]) + let v = native_list_append(v, ["arnatomnad", "verb", "arna·tomnad", "arnam·tomnad", "", "", "that s/he should"]) + let v = native_list_append(v, ["tomnad", "verb", "·tomnad", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["námmin", "verb", "námmin", "", "", "", "first-person singular negative"]) + let v = native_list_append(v, ["indaim", "verb", "ind·aim", "indmat", "indlat", "", "to wash hands"]) + let v = native_list_append(v, ["conidchumscaiged", "verb", "conid·chumscaiged", "", "", "", "that s/he should"]) + let v = native_list_append(v, ["conoscaigi", "verb", "con·oscaigi", "cumscugud", "no-table-tags", "", "to move"]) + let v = native_list_append(v, ["cumscaiged", "verb", "·cumscaiged", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["berair", "verb", "no-table-tags", "sga-mutation", "mberair", "", "passive singular present"]) + let v = native_list_append(v, ["rodscribad", "verb", "rod·scribad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["rodscríbad", "verb", "rod·scríbad", "", "", "", "third-person singular past"]) + let v = native_list_append(v, ["scríbad", "verb", "·scríbad", "", "", "", "inflection of scríbaid"]) + let v = native_list_append(v, ["doessairg", "verb", "do·essairg", "·tessairg", "no-table-tags", "", "to save rescue"]) + let v = native_list_append(v, ["ndam", "verb", "ndam", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["duberad", "verb", "du·berad", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["fodmai", "verb", "·fodmai", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["fodaimi", "verb", "fo·daimi", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["n-asmbeir", "verb", "n-as·mbeir", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ícaid", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "alternative spelling of"]) + let v = native_list_append(v, ["ataat", "verb", "a·taat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["biat", "verb", "bïat", "", "", "", "third-person plural imperative"]) + let v = native_list_append(v, ["mbiat", "verb", "mbïat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dumelmis", "verb", "du·melmis", "no-table-tags", "sga-mutation", "", "first-person plural past"]) + let v = native_list_append(v, ["dugnemmis", "verb", "du·gnemmis", "no-table-tags", "sga-mutation", "", "first-person plural past"]) + let v = native_list_append(v, ["ndugniat", "verb", "ndu·gniat", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ndugníat", "verb", "ndu·gníat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dugníat", "verb", "du·gníat", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["conosna", "verb", "con·osna", "·cumsana", "cumsanad", "", "to cease stop"]) + let v = native_list_append(v, ["nertaid", "verb", "nertim", "·nertais", "nertae", "", "to strengthen"]) + let v = native_list_append(v, ["nertad", "verb", "nertad", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["docher", "verb", "do·cher", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["arneat", "verb", "ar·neät", "·airnet", "airnaide", "", "to expect await"]) + let v = native_list_append(v, ["conimchloí", "verb", "con·imchloí", "·caemclai", "coímchloud", "", "to change"]) + let v = native_list_append(v, ["bimmis", "verb", "no-table-tags", "sga-mutation", "mbimmis", "", "first-person plural past"]) + let v = native_list_append(v, ["doberthe", "verb", "do·berthe", "no-table-tags", "sga-mutation", "", "second-person plural past"]) + let v = native_list_append(v, ["intamlitis", "verb", "·intamlitis", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["adteich", "verb", "ad·teich", "attach", "no-table-tags", "", "to beseech call"]) + let v = native_list_append(v, ["eperthae", "verb", "·eperthae", "no-table-tags", "sga-mutation", "", "passive singular past"]) + let v = native_list_append(v, ["techtas", "verb", "no-table-tags", "sga-mutation", "thechtas", "", "third-person singular relative"]) + let v = native_list_append(v, ["thechtas", "verb", "thechtas", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dognethe", "verb", "do·gnethe", "no-table-tags", "sga-mutation", "", "passive singular past"]) + let v = native_list_append(v, ["dorónta", "verb", "do·rónta", "no-table-tags", "sga-mutation", "", "passive plural perfect"]) + let v = native_list_append(v, ["ainfa", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "first-person singular future"]) + let v = native_list_append(v, ["nidad", "verb", "nidad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nídad", "verb", "no-table-tags", "sga-mutation", "also nnídad in h-prothesis environments", "", "second-person plural negative"]) + let v = native_list_append(v, ["fomuinethar", "verb", "fo·muinethar", "foimtiu", "no-table-tags", "", "to take heed"]) + let v = native_list_append(v, ["riccub", "verb", "·riccub", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["molfar", "verb", "·molfar", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["ɔriris", "verb", "ɔ·riris", "", "", "", "abbreviation of con·riris"]) + let v = native_list_append(v, ["conriris", "verb", "con·riris", "ɔ·riris", "", "", "second-person singular future"]) + let v = native_list_append(v, ["artróetha", "verb", "ar·tróetha", "airthráethad", "no-table-tags", "", "to restrain"]) + let v = native_list_append(v, ["artroidfe", "verb", "ar·troidfe", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["artroídfe", "verb", "ar·troídfe", "", "", "", "second-person singular future"]) + let v = native_list_append(v, ["erthroítar", "verb", "·erthroítar", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["manidchretid", "verb", "manid·chretid", "", "", "", "unless you pl"]) + let v = native_list_append(v, ["níbnoíbfea", "verb", "níb·noíbfea", "", "", "", "will not sanctify"]) + let v = native_list_append(v, ["noíbfea", "verb", "·noíbfea", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["níbscara", "verb", "níb·scara", "", "", "", "does not separate"]) + let v = native_list_append(v, ["creitfess", "verb", "no-table-tags", "sga-mutation", "chreitfess", "", "third-person singular future"]) + let v = native_list_append(v, ["lléicfimme", "verb", "no-table-tags", "sga-mutation", "léicfimme", "", "first-person plural future"]) + let v = native_list_append(v, ["léicfimmi", "verb", "no-table-tags", "sga-mutation", "also lléicfimmi in h-prothesis environments", "", "first-person plural future"]) + let v = native_list_append(v, ["adfiadam", "verb", "ad·fiadam", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["atrefea", "verb", "a·trefea", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["adidtrefea", "verb", "adid·trefea", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["samlafammar", "verb", "·samlafammar", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["nonsamlafammar", "verb", "non·samlafammar", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["dorochoíni", "verb", "do·rochoíni", "derchoíniud", "no-table-tags", "", "to despair of"]) + let v = native_list_append(v, ["derchoínfet", "verb", "·derchoínfet", "no-table-tags", "sga-mutation", "", "third-person plural future"]) + let v = native_list_append(v, ["duroimnibetar", "verb", "du·roimnibetar", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["uilemarbaid", "verb", "no-table-tags", "sga-conj-simple", "·ulemairbfe", "", "to kill utterly"]) + let v = native_list_append(v, ["uilemarbae", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "second-person singular present"]) + let v = native_list_append(v, ["n-uilemarbae", "verb", "n-uilemarbae", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["friscomarr", "verb", "fris·comarr", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["frischomarr", "verb", "fris·chomarr", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dudaimchomarr", "verb", "⟨du⟩da·imchomarr", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["daimchomarr", "verb", "da·imchomarr", "", "", "", "misspelling of duda·imchomarr"]) + let v = native_list_append(v, ["doruid", "verb", "do·ruid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["sechmalfaider", "verb", "·sechmalfaider", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["soírfad", "verb", "·soírfad", "no-table-tags", "sga-mutation", "", "third-person singular conditional"]) + let v = native_list_append(v, ["indamsoírfad", "verb", "indam·ṡoírfad", "", "", "", "whether s/he would"]) + let v = native_list_append(v, ["follnaithir", "verb", "no-table-tags", "sga-conj-simple", "follaither", "", "to rule reign"]) + let v = native_list_append(v, ["comallaibthe", "verb", "·comallaibthe", "no-table-tags", "sga-mutation", "", "passive singular conditional"]) + let v = native_list_append(v, ["rombad", "verb", "ro·mbad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["fosdidmat", "verb", "fos·didmat", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["fodidmat", "verb", "fo·didmat", "no-table-tags", "sga-mutation", "", "third-person plural future"]) + let v = native_list_append(v, ["fodidmed", "verb", "fo·didmed", "no-table-tags", "sga-mutation", "", "third-person singular conditional"]) + let v = native_list_append(v, ["fadidmed", "verb", "fa·didmed", "", "", "", "third-person singular conditional"]) + let v = native_list_append(v, ["dondecmaing", "verb", "do·ndecmaing", "", "", "", "third-person singular nasalized"]) + let v = native_list_append(v, ["doecmaic", "verb", "do·ecmaic", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["fadam", "verb", "fa·dam", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["forcechnae", "verb", "for·cechnae", "no-table-tags", "sga-mutation", "", "second-person singular future"]) + let v = native_list_append(v, ["tairrchet", "verb", "·tairrchet", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["ropridchad", "verb", "ro·pridchad", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["foúacair", "verb", "fo·úacair", "fócre", "no-table-tags", "", "proclaim announce"]) + let v = native_list_append(v, ["forócrad", "verb", "fo·rócrad", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["crochthe", "verb", "·crochthe", "no-table-tags", "sga-mutation", "", "passive singular past"]) + let v = native_list_append(v, ["rocechladar", "verb", "ro·cechladar", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["rotchechladar", "verb", "rot·chechladar", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["rocloammar", "verb", "ro·cloammar", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["asririu", "verb", "as·ririu", "", "", "", "first-person singular future"]) + let v = native_list_append(v, ["asriri", "verb", "as·riri", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["sligid", "verb", "·slig", "slige", "no-table-tags", "", "to clear out"]) + let v = native_list_append(v, ["mainip", "verb", "mainip", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lliles", "verb", "lliles", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["frisbia", "verb", "fris·bïa", "no-table-tags", "sga-mutation", "", "inflection of fris·ben"]) + let v = native_list_append(v, ["ocubí", "verb", "ocu·bí", "·ocmi", "ocmad", "", "to touch"]) + let v = native_list_append(v, ["ocubether", "verb", "ocu·bether", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["comaicsigidir", "verb", "no-table-tags", "sga-conj-simple", "·comaicsigedar", "", "to bring near"]) + let v = native_list_append(v, ["comaicsigfid", "verb", "no-table-tags", "sga-mutation", "chomaicsigfid", "", "third-person singular future"]) + let v = native_list_append(v, ["frismbia", "verb", "fris·mbïa", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["gíulait", "verb", "no-table-tags", "sga-mutation", "ngíulait", "", "third-person plural future"]) + let v = native_list_append(v, ["gléu", "verb", "·gléu", "no-table-tags", "sga-mutation", "", "first-person singular present"]) + let v = native_list_append(v, ["arachíurat", "verb", "ara·chíurat", "", "", "", "third-person plural future"]) + let v = native_list_append(v, ["asberinn", "verb", "as·berinn", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["asbǽr", "verb", "as·bǽr", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["dufúairthed", "verb", "du·fúairthed", "no-table-tags", "sga-mutation", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["tibérad", "verb", "no-table-tags", "sga-mutation", "·tibérad", "", "third-person singular conditional"]) + let v = native_list_append(v, ["nándatibérad", "verb", "nánda·tibérad", "", "", "", "that he would"]) + let v = native_list_append(v, ["coímnacuir", "verb", "·coímnacuir", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["asber", "verb", "as·ber", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["asmber", "verb", "as·mber", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dobéra", "verb", "do·béra", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["dombéra", "verb", "do·mbéra", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["eirbea", "verb", "·eirbea", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["nodn-eirbea", "verb", "nod·n-eirbea", "", "", "", "that will trust"]) + let v = native_list_append(v, ["génas", "verb", "no-table-tags", "sga-mutation", "ngénas", "", "third-person singular future"]) + let v = native_list_append(v, ["confestar", "verb", "con·festar", "", "", "", "so that he"]) + let v = native_list_append(v, ["imgabthi", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "verbal of necessity"]) + let v = native_list_append(v, ["déinti", "verb", "no-table-tags", "sga-mutation", "ndéinti", "", "verbal of necessity"]) + let v = native_list_append(v, ["epred", "verb", "·epred", "no-table-tags", "sga-mutation", "", "inflection of as·beir"]) + let v = native_list_append(v, ["n-epred", "verb", "·n-epred", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dugén", "verb", "du·gén", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["digén", "verb", "·digén", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["argair", "verb", "ar·gair", "irgaire", "ergaire", "", "to forbid"]) + let v = native_list_append(v, ["ærgarthae", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "past participle of"]) + let v = native_list_append(v, ["n-ærgarthae", "verb", "n-ærgarthae", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["asberat", "verb", "as·berat", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["ndignet", "verb", "·ndignet", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bíthir", "verb", "no-table-tags", "sga-mutation", "mbíthir", "", "impersonal present habitual"]) + let v = native_list_append(v, ["dogénat", "verb", "do·génat", "no-table-tags", "sga-mutation", "", "third-person plural future"]) + let v = native_list_append(v, ["dugénat", "verb", "du·génat", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["dungénat", "verb", "du·ngénat", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dernmis", "verb", "·derṅmis", "no-table-tags", "sga-mutation", "", "first-person plural past"]) + let v = native_list_append(v, ["dénmis", "verb", "·déṅmis", "no-table-tags", "sga-mutation", "", "first-person plural past"]) + let v = native_list_append(v, ["ndénmis", "verb", "·ndéṅmis", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dogénmis", "verb", "do·génmis", "no-table-tags", "sga-mutation", "", "first-person plural conditional"]) + let v = native_list_append(v, ["is áil do", "verb", "is áil do", "", "", "", "to desire wish"]) + let v = native_list_append(v, ["dorigénte", "verb", "do·rigénte", "no-table-tags", "sga-mutation", "", "second-person plural conditional"]) + let v = native_list_append(v, ["darigénte", "verb", "da·rigénte", "", "", "", "second-person plural conditional"]) + let v = native_list_append(v, ["ropia", "verb", "ro·pïa", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["dugneid", "verb", "du·gneid", "no-table-tags", "sga-mutation", "", "second-person plural present"]) + let v = native_list_append(v, ["nípa", "verb", "nípa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["loingid", "verb", "longud", "no-table-tags", "sga-conj-simple", "", "to eat consume"]) + let v = native_list_append(v, ["incoisig", "verb", "in·coisig", "·inchoisig", "inchosc", "", "to signify indicate"]) + let v = native_list_append(v, ["rotoicther", "verb", "ro·toicther", "·rothcaither", "tocad", "", "to be destined"]) + let v = native_list_append(v, ["taiccéra", "verb", "·taiccéra", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["gébas", "verb", "no-table-tags", "sga-mutation", "ngébas", "", "third-person singular future"]) + let v = native_list_append(v, ["doinchoisc", "verb", "do·inchoisc", "tinchosc", "no-table-tags", "", "to inform show"]) + let v = native_list_append(v, ["adais", "verb", "ad·ais", "·ais", "no-table-tags", "", "to fear"]) + let v = native_list_append(v, ["gigsea", "verb", "no-table-tags", "sga-mutation", "ngigsea", "", "first-person singular future"]) + let v = native_list_append(v, ["soírad", "verb", "·soírad", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["sóerad", "verb", "·sóerad", "no-table-tags", "sga-mutation", "", "inflection of sóeraid"]) + let v = native_list_append(v, ["remitét", "verb", "remi·tét", "remthechtas", "no-table-tags", "", "to go before"]) + let v = native_list_append(v, ["ebarthi", "verb", "no-table-tags", "sga-mutation", "pronounced with /h/ in h-prothesis environments", "", "third-person singular future"]) + let v = native_list_append(v, ["gigius", "verb", "·gigius", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["escse", "verb", "escsiu", "no-table-tags", "sga-conj-complex", "", "stretch extend"]) + let v = native_list_append(v, ["inreith", "verb", "in·reith", "indred", "no-table-tags", "", "to lay waste"]) + let v = native_list_append(v, ["doimthiret", "verb", "do·imthiret", "·timthiret", "timthirecht", "", "to serve administer"]) + let v = native_list_append(v, ["asoilgi", "verb", "as·oilgi", "oslucud", "no-table-tags", "", "to open"]) + let v = native_list_append(v, ["insnaid", "verb", "in·snaid", "esnaid", "no-table-tags", "", "to insert"]) + let v = native_list_append(v, ["giges", "verb", "no-table-tags", "sga-mutation", "ngiges", "", "third-person singular future"]) + let v = native_list_append(v, ["teinnid", "verb", "teinm", "no-table-tags", "sga-conj-simple", "", "to cut burst"]) + let v = native_list_append(v, ["arcuirethar", "verb", "ar·cuirethar", "no-table-tags", "sga-conj-complex", "", "to extend"]) + let v = native_list_append(v, ["doopair", "verb", "do·opair", "díupart", "no-table-tags", "", "to take away"]) + let v = native_list_append(v, ["frisbeir", "verb", "fris·beir", "·frithbeir", "frithbert", "", "to oppose obstruct"]) + let v = native_list_append(v, ["remiepir", "verb", "remi·epir", "no-table-tags", "sga-conj-complex", "", "to say previously"]) + let v = native_list_append(v, ["tremibeir", "verb", "tremi·beir", "no-table-tags", "sga-conj-complex", "", "to transfer"]) + let v = native_list_append(v, ["adtairbir", "verb", "ad·tairbir", "atairbert", "no-table-tags", "", "to bring back"]) + let v = native_list_append(v, ["robbu", "verb", "robbu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dororban", "verb", "do·rorban", "·torban", "torbae", "", "to benefit help"]) + let v = native_list_append(v, ["gigeste", "verb", "no-table-tags", "sga-mutation", "ngigeste", "", "second-person plural future"]) + let v = native_list_append(v, ["fulsam", "verb", "·fulsam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["condarías", "verb", "conda·rías", "", "", "", "first-person present subjunctive"]) + let v = native_list_append(v, ["nondages", "verb", "nondages", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["derlaige", "verb", "·derlaige", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["nderlaige", "verb", "·nderlaige", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["guidim", "verb", "guidim", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["rogeinn", "verb", "ro·geinn", "·rogainn", "no-table-tags", "", "to find a"]) + let v = native_list_append(v, ["ardíben", "verb", "ar·díben", "·airdben", "airdbe", "", "to destroy slay"]) + let v = native_list_append(v, ["immdíben", "verb", "imm·díben", "imdibe", "no-table-tags", "", "to excise"]) + let v = native_list_append(v, ["conocaib", "verb", "con·ocaib", "cumgabál", "no-table-tags", "", "to raise rise"]) + let v = native_list_append(v, ["geiss", "verb", "geiss", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["ngeiss", "verb", "ngeiss", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["infét", "verb", "in·fét", "no-table-tags", "sga-conj-complex", "", "to tell"]) + let v = native_list_append(v, ["dundrigni", "verb", "dund·rigni", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rondcechladar", "verb", "rond·cechladar", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["forcongair", "verb", "for·congair", "·forgair", "forngaire", "", "to order someone"]) + let v = native_list_append(v, ["immfreccair", "verb", "imm·freccair", "imfrecrae", "no-table-tags", "", "to correspond"]) + let v = native_list_append(v, ["nges", "verb", "·ges", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["fortéit", "verb", "for·téit", "·fortéit", "no-table-tags", "", "alternative form of"]) + let v = native_list_append(v, ["cumcam", "verb", "·cumcam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["chumcam", "verb", "·chumcam", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tinib", "verb", "·tinib", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["thinib", "verb", "·thinib", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["gesme", "verb", "no-table-tags", "sga-mutation", "ngesme", "", "first-person plural present"]) + let v = native_list_append(v, ["nínfortéit", "verb", "nín·fortéit", "", "", "", "does not help"]) + let v = native_list_append(v, ["forthéit", "verb", "for·théit", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["guidme", "verb", "no-table-tags", "sga-mutation", "nguidme", "", "first-person plural present"]) + let v = native_list_append(v, ["domaisi", "verb", "do·maisi", "·toimsi", "no-table-tags", "", "to devise concoct"]) + let v = native_list_append(v, ["is cuman la", "verb", "is cuman la", "", "", "", "to remember"]) + let v = native_list_append(v, ["foopair", "verb", "fo·opair", "no-table-tags", "sga-conj-complex", "", "to attack"]) + let v = native_list_append(v, ["asboind", "verb", "as·boind", "opad", "no-table-tags", "", "to refuse"]) + let v = native_list_append(v, ["gessam", "verb", "·gessam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["etar", "verb", "·etar", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["gessir", "verb", "no-table-tags", "sga-mutation", "ngessir", "", "passive singular present"]) + let v = native_list_append(v, ["mboi", "verb", "mboi", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dothé", "verb", "do·thé", "do·théi", "", "", "lenited form of"]) + let v = native_list_append(v, ["dothéi", "verb", "do·théi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["bíis", "verb", "no-table-tags", "sga-mutation", "mbíis", "", "alternative spelling of"]) + let v = native_list_append(v, ["adreig", "verb", "ad·reig", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dofonaig", "verb", "do·fonaig", "díunach", "díunag", "", "to wash away"]) + let v = native_list_append(v, ["gaibthi", "verb", "no-table-tags", "sga-mutation", "ngaibthi", "", "third-person singular present"]) + let v = native_list_append(v, ["dotét for", "verb", "do·tét for", "", "", "", "to touch on"]) + let v = native_list_append(v, ["rigmi", "verb", "rigmi", "", "", "", "first-person plural future"]) + let v = native_list_append(v, ["conlá", "verb", "con·lá", "comul", "no-table-tags", "", "Used in various"]) + let v = native_list_append(v, ["inlá", "verb", "in·lá", "indell", "no-table-tags", "", "to arrange stipulate"]) + let v = native_list_append(v, ["frisindlea", "verb", "fris·indlea", "fresndal", "frestal", "", "to handle attend"]) + let v = native_list_append(v, ["immréid", "verb", "imm·réid", "imrimm", "no-table-tags", "", "to ride around"]) + let v = native_list_append(v, ["téit do", "verb", "téit do", "", "", "", "to apply to"]) + let v = native_list_append(v, ["dun-uic", "verb", "du·n-uic", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["duuic", "verb", "du·uic", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["dauic", "verb", "da·uic", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["tíastais", "verb", "·tíastais", "no-table-tags", "sga-mutation", "", "inflection of téit"]) + let v = native_list_append(v, ["taibre", "verb", "·taibre", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["bíit", "verb", "no-table-tags", "sga-mutation", "mbíit", "", "third-person plural present"]) + let v = native_list_append(v, ["rofinnatar", "verb", "ro·finnatar", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["docoí", "verb", "do·coí", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["berir", "verb", "no-table-tags", "sga-mutation", "mberir", "", "passive singular present"]) + let v = native_list_append(v, ["dofoirmsed", "verb", "do·foirmsed", "no-table-tags", "sga-mutation", "", "third-person singular conditional"]) + let v = native_list_append(v, ["atammres", "verb", "atamm·res", "no-table-tags", "sga-mutation", "", "first-person singular future"]) + let v = native_list_append(v, ["n-atammres", "verb", "n-atamm·res", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dufí", "verb", "du·fí", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["duéma", "verb", "du·éma", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["tráigid", "verb", "no-table-tags", "sga-conj-simple", "tráigit", "", "to ebb"]) + let v = native_list_append(v, ["tíssed", "verb", "·tíssed", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["dufiastar", "verb", "du·fïastar", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["adgainethar", "verb", "ad·gainethar", "·aithgainethar", "aithgin", "", "to be reborn"]) + let v = native_list_append(v, ["doíarmórat", "verb", "do·íarmórat", "tíarmóracht", "no-table-tags", "", "to follow"]) + let v = native_list_append(v, ["dufessar", "verb", "du·fessar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["rohí", "verb", "ro·hí", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["roicc less", "verb", "ro·icc less", "", "", "", "to need"]) + let v = native_list_append(v, ["cumaing", "verb", "·cumaing", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["chumaing", "verb", "·chumaing", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["aran-ísar", "verb", "ara·n-ísar", "", "", "", "passive singular present"]) + let v = native_list_append(v, ["enggnatar", "verb", "·enggnatar", "no-table-tags", "sga-mutation", "", "third-person plural present"]) + let v = native_list_append(v, ["gnin", "verb", "·gnin", "no-table-tags", "sga-mutation", "", "to know unattested"]) + let v = native_list_append(v, ["asgnin", "verb", "as·gnin", "ecnae", "no-table-tags", "", "to know recognize"]) + let v = native_list_append(v, ["asagnintar", "verb", "asa·gnintar", "no-table-tags", "sga-mutation", "", "third-person singular/third-person plural"]) + let v = native_list_append(v, ["íírr", "verb", "·íírr", "no-table-tags", "sga-mutation", "", "second-person singular future"]) + let v = native_list_append(v, ["n-íírr", "verb", "·n-íírr", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["frisorr", "verb", "fris·orr", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["frisn-orr", "verb", "fris·n-orr", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["condesin", "verb", "con·desin", "no-table-tags", "sga-mutation", "", "first-person singular past"]) + let v = native_list_append(v, ["chondesin", "verb", "chon·desin", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dobérthe", "verb", "do·bérthe", "no-table-tags", "sga-mutation", "", "second-person plural conditional"]) + let v = native_list_append(v, ["dosmbérthe", "verb", "dos·ṁbérthe", "", "", "", "second-person plural conditional"]) + let v = native_list_append(v, ["immruimdethar", "verb", "imm·ruimdethar", "·imruimdethar", "immarmus", "", "to sin"]) + let v = native_list_append(v, ["immeromastar", "verb", "imme·romastar", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["cuintea", "verb", "·cuintea", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["fulilsain", "verb", "fu·lilsain", "", "", "", "first-person singular conditional"]) + let v = native_list_append(v, ["dognetis", "verb", "do·gnetis", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["dudagnetis", "verb", "duda·gnetis", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["maniptis", "verb", "maniptis", "", "", "", "if they were"]) + let v = native_list_append(v, ["foílsitis", "verb", "·foílsitis", "no-table-tags", "sga-mutation", "", "third-person plural conditional"]) + let v = native_list_append(v, ["mbid", "verb", "mbid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["foló", "verb", "fo·ló", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["fundló", "verb", "fund·ló", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["connachful", "verb", "connach·ḟul", "", "", "", "so that she"]) + let v = native_list_append(v, ["adcigestar", "verb", "ad·cigestar", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["atatchigestar", "verb", "atat·chigestar", "", "", "", "passive singular future"]) + let v = native_list_append(v, ["adlen", "verb", "ad·len", "aithle", "no-table-tags", "", "to adhere"]) + let v = native_list_append(v, ["rufiastar", "verb", "ru·fiastar", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["dobir", "verb", "do·bir", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["dubir", "verb", "du·bir", "no-table-tags", "sga-mutation", "", "second-person singular present"]) + let v = native_list_append(v, ["dombir", "verb", "do·mbir", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["duécigi", "verb", "du·écigi", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["fodaimem", "verb", "fo·daimem", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["miastar", "verb", "·mïastar", "no-table-tags", "sga-mutation", "", "third-person singular future"]) + let v = native_list_append(v, ["mmiastar", "verb", "·mmïastar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["digénam", "verb", "·digénam", "no-table-tags", "sga-mutation", "", "first-person plural future"]) + let v = native_list_append(v, ["mestar", "verb", "mestar", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["mmestar", "verb", "mmestar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["seiss", "verb", "no-table-tags", "sga-mutation", "ṡeiss", "", "third-person singular future"]) + let v = native_list_append(v, ["doessid", "verb", "do·essid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["don-essid", "verb", "do·n-essid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dogéntar", "verb", "do·géntar", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["pridchibid", "verb", "no-table-tags", "sga-mutation", "phridchibid", "", "third-person singular future"]) + let v = native_list_append(v, ["gébtit", "verb", "no-table-tags", "sga-mutation", "ngébtit", "", "third-person plural future"]) + let v = native_list_append(v, ["ɔscéra", "verb", "ɔ·scéra", "", "", "", "abbreviation of con·scéra"]) + let v = native_list_append(v, ["conscéra", "verb", "con·scéra", "ɔ·scéra", "", "", "third-person singular future"]) + let v = native_list_append(v, ["scrútain", "verb", "·scrútain", "", "", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["bíinn", "verb", "·bíinn", "no-table-tags", "sga-mutation", "", "first-person singular imperfect"]) + let v = native_list_append(v, ["mbíinn", "verb", "·mbíinn", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["retarscar", "verb", "·retarscar", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ruetarscar", "verb", "ru·etarscar", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["doucai", "verb", "do·ucai", "·tuccai", "no-table-tags", "", "to understand"]) + let v = native_list_append(v, ["tucus", "verb", "·tucus", "no-table-tags", "sga-mutation", "", "first-person singular preterite"]) + let v = native_list_append(v, ["rusuidigsiur", "verb", "ru·suidigsiur", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["dorignis", "verb", "do·rignis", "no-table-tags", "sga-mutation", "", "second-person singular perfect"]) + let v = native_list_append(v, ["cotaascrais", "verb", "cota·ascrais", "", "", "", "second-person singular perfect"]) + let v = native_list_append(v, ["rosudigser", "verb", "ro·suidigser", "no-table-tags", "sga-mutation", "", "second-person singular perfect"]) + let v = native_list_append(v, ["citarogab", "verb", "cita·rogab", "", "", "", "first uttered"]) + let v = native_list_append(v, ["rogab", "verb", "ro·gab", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dobeir fo", "verb", "do·beir fo", "", "", "", "to apply"]) + let v = native_list_append(v, ["fuandrogab", "verb", "fuand·rogab", "", "", "", "according to which"]) + let v = native_list_append(v, ["dogáetha", "verb", "do·gáetha", "togáes", "no-table-tags", "", "to deceive"]) + let v = native_list_append(v, ["torgaíth", "verb", "·torgaíth", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["thorgaíth", "verb", "·thorgaíth", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["nímthorgaíth", "verb", "ním·thorgaíth", "", "", "", "has not deceived"]) + let v = native_list_append(v, ["asrochoíli", "verb", "as·rochoíli", "érchoíliud", "no-table-tags", "", "to determine"]) + let v = native_list_append(v, ["rérchoíl", "verb", "·rérchoíl", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["diandrérchoíl", "verb", "dïand·rérchoíl", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["imfolngi", "verb", "im·folṅgi", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["rommolastar", "verb", "ro·mmolastar", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["forbrissi", "verb", "for·bris(s)i", "forbris(s)iud", "no-table-tags", "", "to rout completely"]) + let v = native_list_append(v, ["forrorbris", "verb", "fo·rrorbris", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["foammámaigedar", "verb", "fo·ammámaigedar", "foammámugud", "no-table-tags", "", "to subjugate"]) + let v = native_list_append(v, ["fosroammámigestar", "verb", "fos·roammámigestar", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["condid", "verb", "condid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atber", "verb", "at·ber", "", "", "", "third-person singular present"]) + let v = native_list_append(v, ["cetiddeirgni", "verb", "cetid·deirgni", "", "", "", "who has done"]) + let v = native_list_append(v, ["dudrigni", "verb", "dud·rigni", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["durolged", "verb", "du·rolged", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["gabis", "verb", "no-table-tags", "sga-mutation", "ngabis", "", "third-person singular preterite"]) + let v = native_list_append(v, ["celebraid", "verb", "no-table-tags", "sga-conj-simple", "celebrait", "", "to take ones"]) + let v = native_list_append(v, ["celebirsimme", "verb", "no-table-tags", "sga-mutation", "chelebirsimme", "", "first-person plural preterite"]) + let v = native_list_append(v, ["conslá", "verb", "con·slá", "no-table-tags", "sga-conj-complex", "", "to depart"]) + let v = native_list_append(v, ["sníid", "verb", "·sní", "no-table-tags", "sga-conj-simple", "", "to spin"]) + let v = native_list_append(v, ["rolégsat", "verb", "ro·légsat", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["rundalégsam", "verb", "runda·légsam", "", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["sáebaid", "verb", "no-table-tags", "sga-conj-simple", "sáebait", "", "to pervert"]) + let v = native_list_append(v, ["rondasaíbset", "verb", "ronda·saíbset", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["forcomai", "verb", "for·comai", "·forcmi", "no-table-tags", "", "to preserve"]) + let v = native_list_append(v, ["forcomam", "verb", "for·comam", "no-table-tags", "sga-mutation", "", "first-person plural present"]) + let v = native_list_append(v, ["cruthaigidir", "verb", "no-table-tags", "sga-conj-simple", "cruthaigther", "", "to form"]) + let v = native_list_append(v, ["rocruthaigsemmar", "verb", "ro·cruthaigsemmar", "no-table-tags", "sga-mutation", "", "first-person plural perfect"]) + let v = native_list_append(v, ["ropridchissem", "verb", "ro·pridchissem", "no-table-tags", "sga-mutation", "", "first-person plural perfect"]) + let v = native_list_append(v, ["rocomalnisid", "verb", "ro·comalnisid", "no-table-tags", "sga-mutation", "", "second-person plural perfect"]) + let v = native_list_append(v, ["dun-em", "verb", "du·n-em", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rundgab", "verb", "rund·gab", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rundgabsat", "verb", "rund·gabsat", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["doimmdiben", "verb", "do·immdíben", "no-table-tags", "sga-conj-complex", "", "to cut away"]) + let v = native_list_append(v, ["dointaí", "verb", "do·intaí", "tintúd", "no-table-tags", "", "to return turn"]) + let v = native_list_append(v, ["tróethaid", "verb", "tróethad", "no-table-tags", "sga-conj-simple", "", "to subdue wear"]) + let v = native_list_append(v, ["durigénsat", "verb", "du·rigénsat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nísn-ulemairbfe", "verb", "nís·n-ulemairbfe", "", "", "", "you sg will"]) + let v = native_list_append(v, ["ulemairbfe", "verb", "·ulemairbfe", "no-table-tags", "sga-mutation", "", "second-person singular future"]) + let v = native_list_append(v, ["n-ulemairbfe", "verb", "·n-ulemairbfe", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["asidroilliset", "verb", "asid·roilliset", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["érbarthar", "verb", "·érbarthar", "", "", "", "passive singular present"]) + let v = native_list_append(v, ["cretsit", "verb", "no-table-tags", "sga-mutation", "chretsit", "", "third-person plural preterite"]) + let v = native_list_append(v, ["chretsit", "verb", "chretsit", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["níntá", "verb", "nín·tá", "", "", "", "we do not"]) + let v = native_list_append(v, ["etarscarad", "verb", "·etarscarad", "no-table-tags", "sga-mutation", "", "third-person singular imperfect"]) + let v = native_list_append(v, ["n-etarscarad", "verb", "·n-etarscarad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["bértais", "verb", "·bértais", "no-table-tags", "sga-mutation", "", "third-person plural conditional"]) + let v = native_list_append(v, ["nondabértais", "verb", "nonda·bértais", "", "", "", "third-person plural conditional"]) + let v = native_list_append(v, ["ronoíbad", "verb", "ro·noíbad", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["derlaichtha", "verb", "·derlaicht⟨h⟩a", "no-table-tags", "sga-mutation", "", "passive plural perfect"]) + let v = native_list_append(v, ["derlaichta", "verb", "·derlaichta", "", "", "", "misspelling of ·derlaichtha"]) + let v = native_list_append(v, ["dílgibther", "verb", "·dílgibther", "no-table-tags", "sga-mutation", "", "passive singular future"]) + let v = native_list_append(v, ["duratad", "verb", "du·ratad", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["cenotad", "verb", "cenutad", "cenuded", "", "", "although you pl"]) + let v = native_list_append(v, ["imroimsid", "verb", "im·roimsid", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["fomnid", "verb", "no-table-tags", "sga-mutation", "ḟomnid", "", "second-person plural ipr"]) + let v = native_list_append(v, ["dudrónath", "verb", "dud·rónath", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["tormult", "verb", "·tormult", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["friscuirethar céill", "verb", "fris·cuirethar céill", "", "", "", "to attend to"]) + let v = native_list_append(v, ["arroiéit", "verb", "arroi·éit", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["rocomallada", "verb", "ro·comallada", "no-table-tags", "sga-mutation", "", "plural passive perfect"]) + let v = native_list_append(v, ["foruimi", "verb", "fo·ruimi", "·fuirmi", "fuirmiud", "", "to place put"]) + let v = native_list_append(v, ["foruirmed", "verb", "fo·ruirmed", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["durairngirt", "verb", "du·rairngirt", "no-table-tags", "sga-mutation", "", "second-person singular perfect"]) + let v = native_list_append(v, ["duécomnacht", "verb", "du·écomnacht", "no-table-tags", "sga-mutation", "", "second/third-person singular perfect"]) + let v = native_list_append(v, ["dun-écomnacht", "verb", "du·n-écomnacht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["asrubart", "verb", "as·rubart", "", "", "", "first/third-person singular perfect"]) + let v = native_list_append(v, ["asidrubart", "verb", "asid·rubart", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["érbrath", "verb", "·érbrath", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["n-érbrath", "verb", "·n-érbrath", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dobert", "verb", "do·bert", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["ɔidmarb", "verb", "ɔid·marb", "", "", "", "so that it"]) + let v = native_list_append(v, ["ndigni", "verb", "·ndigni", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ducoaid", "verb", "du·coaid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["duchoaid", "verb", "du·choaid", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["atrubalt", "verb", "at·rubalt", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["aridrogart", "verb", "arid·rogart", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["conaicelt", "verb", "con·aicelt", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["árraim", "verb", "·árraim", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["n-árraim", "verb", "·n-árraim", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dorolaig", "verb", "do·rolaig", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["conaitecht", "verb", "con·aitecht", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["comtacht", "verb", "·comtacht", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ropridchus", "verb", "ro·pridchus", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["aséirig", "verb", "as·éirig", "esséirge", "no-table-tags", "", "to rise again"]) + let v = native_list_append(v, ["asréracht", "verb", "as·réracht", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dundrét", "verb", "dund·rét", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["doforsat", "verb", "do·forsat", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dudaforsat", "verb", "duda·forsat", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["bǽras", "verb", "no-table-tags", "sga-mutation", "mbǽras", "", "third-person singular future"]) + let v = native_list_append(v, ["torsata", "verb", "·torsata", "no-table-tags", "sga-mutation", "", "passive plural perfect"]) + let v = native_list_append(v, ["asrubartmmar", "verb", "as·rubartmmar", "", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["nírubtar", "verb", "nírubtar", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["doéirig", "verb", "do·éirig", "·dérig", "déirge", "", "to abandon forsake"]) + let v = native_list_append(v, ["dorréractid", "verb", "do·rréractid", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["dorérachtid", "verb", "do·rérachtid", "no-table-tags", "sga-mutation", "", "second-person plural perfect"]) + let v = native_list_append(v, ["darogart", "verb", "da·rogart", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dorogart", "verb", "do·rogart", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["noib", "verb", "·noib", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["asrubartatar", "verb", "as·rubartatar", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["robae", "verb", "·robae", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["friscomartatar", "verb", "fris·comartatar", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["ndodsitis", "verb", "·ndodsitis", "", "", "", "third-person plural past"]) + let v = native_list_append(v, ["adroipred", "verb", "ad·roipred", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["atamroipred", "verb", "atam·roipred", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["robæ", "verb", "·robæ", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["nísrobæ", "verb", "nís·robæ", "", "", "", "they have not"]) + let v = native_list_append(v, ["durairngred", "verb", "du·rairngred", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["ndurairngred", "verb", "ndu·rairngred", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["eperr", "verb", "·eperr", "", "", "", "passive singular present"]) + let v = native_list_append(v, ["asrobrad", "verb", "as·robrad", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["dorolgida", "verb", "do·rolgida", "no-table-tags", "sga-mutation", "", "passive plural perfect"]) + let v = native_list_append(v, ["duluigter", "verb", "du·luigter", "no-table-tags", "sga-mutation", "", "passive plural present"]) + let v = native_list_append(v, ["rommemaid", "verb", "ro·mmemaid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["bertar", "verb", "bertar", "", "", "", "passive plural present"]) + let v = native_list_append(v, ["rolil", "verb", "ro·lil", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dechuid", "verb", "·dechuid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dofeid", "verb", "do·feid", "tuíden", "no-table-tags", "", "to go before"]) + let v = native_list_append(v, ["roleldar", "verb", "ro·leldar", "no-table-tags", "sga-mutation", "", "third-person plural perfect"]) + let v = native_list_append(v, ["glúaisid", "verb", "·glúasiur", "·glúaisis", "", "", "to move stir"]) + let v = native_list_append(v, ["glúaistis", "verb", "·glúaistis", "no-table-tags", "sga-mutation", "", "third-person plural imperfect"]) + let v = native_list_append(v, ["connachaglúaistis", "verb", "connacha·glúaistis", "", "", "", "so that they"]) + let v = native_list_append(v, ["táth-", "verb", "táth-", "", "", "", "there is takes"]) + let v = native_list_append(v, ["tairchechuin", "verb", "·tairchechuin", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["forcuimsed", "verb", "for·cuimsed", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["forroíchan", "verb", "for·roíchan", "", "", "", "first-person/second-person singular perfect"]) + let v = native_list_append(v, ["gellaid", "verb", "·gillim", "", "", "", "to pledge promise"]) + let v = native_list_append(v, ["fortanroíchan", "verb", "fortan·roíchan", "", "", "", "first-person/second-person singular perfect"]) + let v = native_list_append(v, ["asrochoílsem", "verb", "as·rochoílsem", "", "", "", "first-person plural preterite"]) + let v = native_list_append(v, ["réid", "verb", "·réid", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["rucét", "verb", "ru·cét", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["ruchét", "verb", "ru·chét", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["doroígaid", "verb", "do·roígaid", "no-table-tags", "sga-mutation", "", "second-person plural perfect"]) + let v = native_list_append(v, ["baithsid", "verb", "no-table-tags", "sga-conj-simple", "baitsid", "", "to baptize"]) + let v = native_list_append(v, ["adcondairc", "verb", "ad·condairc", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dorogad", "verb", "do·rogad", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["frisracacha", "verb", "fris·racacha", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["túaisi", "verb", "·túaisi", "no-table-tags", "sga-mutation", "", "to listen hear"]) + let v = native_list_append(v, ["intúaisi", "verb", "in·túaisi", "·éitsi", "étsecht", "", "to listen to"]) + let v = native_list_append(v, ["fogní", "verb", "fo·gní", "fognam", "no-table-tags", "", "to serve"]) + let v = native_list_append(v, ["forgéni", "verb", "·forgéni", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rufrescachae", "verb", "ru·frescachae", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["múchaid", "verb", "·múch", "·múchais", "", "", "to smother"]) + let v = native_list_append(v, ["tabair", "verb", "tabair", "", "", "", "second-person singular imperative"]) + let v = native_list_append(v, ["arroít", "verb", "ar·roít", "ar·róet", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["doraidchiúir", "verb", "do·raidchiúir", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["dorraidchiúir", "verb", "do·rraidchiúir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tuilid", "verb", "·tuili", "no-table-tags", "sga-mutation", "", "to sleep"]) + let v = native_list_append(v, ["romtar", "verb", "romtar", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["dorathchratha", "verb", "do·rathchratha", "no-table-tags", "sga-mutation", "", "passive plural perfect"]) + let v = native_list_append(v, ["mbocht", "verb", "·mbocht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rurádus", "verb", "ru·rádus", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["asruburt", "verb", "as·ruburt", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["rocúala", "verb", "ro·cúala", "no-table-tags", "sga-mutation", "", "first/second-person singular perfect"]) + let v = native_list_append(v, ["rogáid", "verb", "ro·gáid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rongáid", "verb", "ro·ngáid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rocúalae", "verb", "ro·cúalae", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rondcúalae", "verb", "rond·cúalae", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["baitsid", "verb", "no-table-tags", "sga-mutation", "mbaitsid", "", "alternative form of"]) + let v = native_list_append(v, ["addaí", "verb", "ad·daí", "atúd", "no-table-tags", "", "to kindle light"]) + let v = native_list_append(v, ["immuncúalammar", "verb", "immun·cúalammar", "", "", "", "imm- reciprocal marker"]) + let v = native_list_append(v, ["cúalammar", "verb", "·cúalammar", "", "", "", "first-person plural perfect"]) + let v = native_list_append(v, ["nímunaccammar", "verb", "nímun·acammar", "", "", "", "ní “not” +"]) + let v = native_list_append(v, ["accammar", "verb", "·acammar", "", "", "", "first-person plural preterite/perfect"]) + let v = native_list_append(v, ["búaidrid", "verb", "búaidred", "no-table-tags", "sga-conj-simple", "", "to disturb trouble"]) + let v = native_list_append(v, ["brised", "verb", "brissed", "", "", "", "third-person singular imperative"]) + let v = native_list_append(v, ["brissed", "verb", "brised", "no-table-tags", "sga-mutation", "", "alternative spelling of"]) + let v = native_list_append(v, ["sásaid", "verb", "sásaim", "·sásta", "sásta", "", "to satisfy"]) + let v = native_list_append(v, ["rocúalid", "verb", "ro·cúalid", "no-table-tags", "sga-mutation", "", "second-person plural perfect"]) + let v = native_list_append(v, ["racúalid", "verb", "ra·cúalid", "", "", "", "second-person plural perfect"]) + let v = native_list_append(v, ["conmidethar", "verb", "con·midethar", "commus", "no-table-tags", "", "to be competent"]) + let v = native_list_append(v, ["coillid", "verb", "collud", "no-table-tags", "sga-conj-simple", "", "to damage destroy"]) + let v = native_list_append(v, ["dosn-aidlibea", "verb", "dos·n-aidlibea", "", "", "", "third-person singular future"]) + let v = native_list_append(v, ["nachidchúalatar", "verb", "nachid·chúalatar", "", "", "", "who pl did"]) + let v = native_list_append(v, ["cúalatar", "verb", "·cúalatar", "no-table-tags", "sga-mutation", "", "third-person plural preterite/perfect"]) + let v = native_list_append(v, ["tarmitét", "verb", "tarmi·tét", "tairmthecht", "no-table-tags", "", "to transgress"]) + let v = native_list_append(v, ["tremitíagat", "verb", "tremi·tíagat", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["dofairget", "verb", "do·fairget", "taircsiu", "no-table-tags", "", "to offer"]) + let v = native_list_append(v, ["cotli", "verb", "·cotli", "no-table-tags", "sga-mutation", "", "third-person singular present"]) + let v = native_list_append(v, ["remeperthe", "verb", "remeperthe", "", "", "", "past participle of"]) + let v = native_list_append(v, ["roclos", "verb", "ro·clos", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["rochlos", "verb", "ro·chlos", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["tectid", "verb", "no-table-tags", "sga-mutation", "thectid", "", "alternative spelling of"]) + let v = native_list_append(v, ["nudtectid", "verb", "nud·tectid", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["dénid", "verb", "·dénid", "", "", "", "second-person plural present"]) + let v = native_list_append(v, ["asberar", "verb", "as·berar", "no-table-tags", "sga-mutation", "", "passive singular present"]) + let v = native_list_append(v, ["n-asberar", "verb", "n-as·berar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dofet", "verb", "do·fet", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["dosrenga", "verb", "do·srenga", "tarraing", "no-table-tags", "", "to draw drag"]) + let v = native_list_append(v, ["berbaid", "verb", "berba", "", "", "", "to boil cook"]) + let v = native_list_append(v, ["fofúair", "verb", "fo·fúair", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["fondúair", "verb", "fond·úair", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["doárbuid", "verb", "do·árbuid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["daárbuid", "verb", "da·árbuid", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["fillid", "verb", "fillim", "·filte", "", "", "to bend stoop"]) + let v = native_list_append(v, ["tárbas", "verb", "·tárbas", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["génair", "verb", "·génair", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["adrothreb", "verb", "ad·rothreb", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["conrótgatar", "verb", "con·rótgatar", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["tuigithir", "verb", "tugae", "no-table-tags", "sga-conj-simple", "", "to cover"]) + let v = native_list_append(v, ["dodímen", "verb", "do·dímen", "tuidme", "no-table-tags", "", "to bind fasten"]) + let v = native_list_append(v, ["úaigid", "verb", "úaimm", "no-table-tags", "sga-conj-simple", "", "to stitch sew"]) + let v = native_list_append(v, ["conóigi", "verb", "con·óigi", "comúaimm", "no-table-tags", "", "to sew knit"]) + let v = native_list_append(v, ["aréigi", "verb", "ar·éigi", "airégem", "no-table-tags", "", "to lament complain"]) + let v = native_list_append(v, ["forig", "verb", "fo·rig", "fuirech", "no-table-tags", "", "to delay"]) + let v = native_list_append(v, ["ringid", "verb", "no-table-tags", "sga-conj-simple", "ra·ringset", "", "to tear up"]) + let v = native_list_append(v, ["immairicc", "verb", "imm·airicc", "immairecc", "no-table-tags", "", "to be appropriate"]) + let v = native_list_append(v, ["immricc", "verb", "imm·ricc", "no-table-tags", "sga-conj-complex", "", "to happen befall"]) + let v = native_list_append(v, ["arosailci", "verb", "ar·osailci", "airsolcud", "no-table-tags", "", "to open"]) + let v = native_list_append(v, ["arfich", "verb", "ar·fich", "airgal", "no-table-tags", "", "to vanquish"]) + let v = native_list_append(v, ["ingreinn", "verb", "in·greinn", "ingreimm", "no-table-tags", "", "to persecute"]) + let v = native_list_append(v, ["immsaid", "verb", "imm·said", "impuide", "no-table-tags", "", "to besiege"]) + let v = native_list_append(v, ["indneat", "verb", "ind·neat", "indnaide", "no-table-tags", "", "to wait"]) + let v = native_list_append(v, ["adslig", "verb", "ad·slig", "aslach", "no-table-tags", "", "to tempt"]) + let v = native_list_append(v, ["arslig", "verb", "ar·slig", "no-table-tags", "sga-conj-complex", "", "to smite"]) + let v = native_list_append(v, ["conimthet", "verb", "con·imthet", "coímthecht", "no-table-tags", "", "to accompany"]) + let v = native_list_append(v, ["n-ithim", "verb", "n-ithim", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["conéitet", "verb", "con·éitet", "comaitecht", "no-table-tags", "", "to go with"]) + let v = native_list_append(v, ["intét", "verb", "in·tét", "no-table-tags", "sga-conj-complex", "", "to accompany follow"]) + let v = native_list_append(v, ["contét", "verb", "con·tét", "no-table-tags", "sga-conj-complex", "", "to go along"]) + let v = native_list_append(v, ["fristét", "verb", "fris·tét", "fritecht", "no-table-tags", "", "to go towards"]) + let v = native_list_append(v, ["sissidir", "verb", "·roísur", "", "", "", "to stand"]) + let v = native_list_append(v, ["doairissedar", "verb", "do·airissedar", "tairissem", "no-table-tags", "", "to stay rest"]) + let v = native_list_append(v, ["fristaít", "verb", "fris·taít", "frituidecht", "no-table-tags", "", "to oppose"]) + let v = native_list_append(v, ["gabthe", "verb", "gabthe", "", "", "", "passive singular preterite"]) + let v = native_list_append(v, ["conrótacht", "verb", "con·rótacht", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["toirsitis", "verb", "·toirsitis", "no-table-tags", "sga-mutation", "", "third-person plural past"]) + let v = native_list_append(v, ["arnachatoirsitis", "verb", "arnacha·toirsitis", "", "", "", "so that they"]) + let v = native_list_append(v, ["fúar", "verb", "·fúar", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["rogaid", "verb", "rogud", "no-table-tags", "sga-conj-simple", "", "to stretch extend"]) + let v = native_list_append(v, ["durairngert", "verb", "du·rairngert", "no-table-tags", "sga-mutation", "", "first/third-person singular perfect"]) + let v = native_list_append(v, ["ongaid", "verb", "ongad", "no-table-tags", "sga-conj-simple", "", "to anoint"]) + let v = native_list_append(v, ["ducuitig", "verb", "du·cuitig", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["tóissed", "verb", "·tóissed", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["taratóissed", "verb", "tara·tóissed", "", "", "", "by which/whom s/he"]) + let v = native_list_append(v, ["nguidim", "verb", "nguidim", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rotgád", "verb", "rot·gád", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["fúair", "verb", "·fúair", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["dorochair", "verb", "do·rochair", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ɔid", "verb", "ɔid", "", "", "", "abbreviation of conid"]) + let v = native_list_append(v, ["midiur", "verb", "midiur", "", "", "", "first-person singular present"]) + let v = native_list_append(v, ["llá", "verb", "·llá", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["docer", "verb", "do·cer", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["focaird", "verb", "fo·caird", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["doluid", "verb", "do·luid", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["mboí", "verb", "mboí", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["slánaigidir", "verb", "no-table-tags", "sga-conj-simple", "slánaigthe", "", "to make whole"]) + let v = native_list_append(v, ["saillid", "verb", "sallim", "", "", "", "to salt cure"]) + let v = native_list_append(v, ["roucc", "verb", "ro·ucc", "no-table-tags", "sga-mutation", "", "alternative form of"]) + let v = native_list_append(v, ["etirdiben", "verb", "etardibe", "no-table-tags", "sga-conj-complex", "", "to destroy"]) + let v = native_list_append(v, ["etirrudib", "verb", "etir·rudib", "", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["séitid", "verb", "no-table-tags", "sga-conj-simple", "sétir", "", "to blow across"]) + let v = native_list_append(v, ["tánicc", "verb", "·tánicc", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["niroimdibed", "verb", "niro·imdibed", "", "", "", "was not circumcised"]) + let v = native_list_append(v, ["imdibed", "verb", "·imdibed", "", "", "", "passive singular preterite"]) + let v = native_list_append(v, ["immeruidbed", "verb", "imme·ruidbed", "", "", "", "perfect singular preterite"]) + let v = native_list_append(v, ["adchuaid", "verb", "ad·chuaid", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ropridchissid", "verb", "ro·pridchissid", "no-table-tags", "sga-mutation", "", "second-person plural perfect"]) + let v = native_list_append(v, ["éicdid", "verb", "·éicdid", "no-table-tags", "sga-mutation", "", "second-person plural perfect"]) + let v = native_list_append(v, ["n-éicdid", "verb", "·n-éicdid", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dodechommar", "verb", "do·dechommar", "no-table-tags", "sga-mutation", "", "first-person plural perfect"]) + let v = native_list_append(v, ["dondechommar", "verb", "do·ndechommar", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rofitir", "verb", "ro·fitir", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["docoad", "verb", "do·coad", "no-table-tags", "sga-mutation", "", "first-person singular perfect"]) + let v = native_list_append(v, ["forrochongart", "verb", "for·rochongart", "for·ruchongart", "", "", "third-person singular perfect"]) + let v = native_list_append(v, ["forrorcongrad", "verb", "for·rorcongrad", "for·ruchongrad", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["dodechuid", "verb", "do·dechuid", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["tuidches", "verb", "·tuidches", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["loscaid", "verb", "loscud", "no-table-tags", "sga-conj-simple", "", "to burn"]) + let v = native_list_append(v, ["dobidc", "verb", "do·bidc", "no-table-tags", "sga-mutation", "", "third-person singular preterite"]) + let v = native_list_append(v, ["dambidc", "verb", "da·mbidc", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["thecht", "verb", "·thecht", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["asingaib", "verb", "as·ingaib", "no-table-tags", "sga-conj-complex", "", "to surpass exceed"]) + let v = native_list_append(v, ["asringbus", "verb", "as·ringbus", "", "", "", "first-person singular preterite"]) + let v = native_list_append(v, ["romsa", "verb", "romsa", "", "", "", "first/second-person singular perfect"]) + let v = native_list_append(v, ["armbenn", "verb", "arṁbenn", "", "", "", "that ... I"]) + let v = native_list_append(v, ["duruménar", "verb", "du·ruménar", "do·rumén", "do·ruménair", "", "third-person singular perfect"]) + let v = native_list_append(v, ["ɔammadar", "verb", "ɔ·ammadar", "", "", "", "first-person singular perfect"]) + let v = native_list_append(v, ["romess", "verb", "ro·mess", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["ronmess", "verb", "ron·mess", "", "", "", "passive singular perfect"]) + let v = native_list_append(v, ["adrodamar", "verb", "ad·rodamar", "", "", "", "first/second-person singular perfect"]) + let v = native_list_append(v, ["fondrodamnatar", "verb", "fond·rodamnatar", "", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["dechud", "verb", "·dechud", "no-table-tags", "sga-mutation", "", "first/second-person singular perfect"]) + let v = native_list_append(v, ["conáneccar", "verb", "con·áneccar", "", "", "", "first/second-person singular preterite"]) + let v = native_list_append(v, ["cotáneccar", "verb", "cot·áneccar", "", "", "", "first/second-person singular preterite"]) + let v = native_list_append(v, ["comnactar", "verb", "·comnactar", "no-table-tags", "sga-mutation", "", "alternative form or"]) + let v = native_list_append(v, ["cotánic", "verb", "cot·ánic", "", "", "", "third-person singular preterite"]) + let v = native_list_append(v, ["ɔoitechtatar", "verb", "ɔ·oitechtatar", "", "", "", "abbreviation of con·oitechtatar"]) + let v = native_list_append(v, ["conoitechtatar", "verb", "con·oitechtatar", "ɔ·oitechtatar", "", "", "third-person plural perfect"]) + let v = native_list_append(v, ["fagébtis", "verb", "fa·gébtis", "", "", "", "third-person plural conditional"]) + let v = native_list_append(v, ["donducet", "verb", "dond·ucet", "", "", "", "third-person plural present"]) + let v = native_list_append(v, ["doratad", "verb", "do·ratad", "no-table-tags", "sga-mutation", "", "passive singular perfect"]) + let v = native_list_append(v, ["rogénair", "verb", "ro·génair", "no-table-tags", "sga-mutation", "", "third-person singular perfect"]) + let v = native_list_append(v, ["rongénair", "verb", "ro·ngénair", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["rogenad", "verb", "ro·genad", "no-table-tags", "sga-mutation", "", "third-person singular past"]) + let v = native_list_append(v, ["rongenad", "verb", "ro·ngenad", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["madgénair", "verb", "madgénatar", "", "", "", "to be blessed"]) + let v = native_list_append(v, ["madgénatar", "verb", "madgénatar", "", "", "", "third-person plural of"]) + let v = native_list_append(v, ["doaidbir", "verb", "do·aidbir", "no-table-tags", "sga-conj-complex", "", "to apply"]) + let v = native_list_append(v, ["tedbarthe", "verb", "no-table-tags", "sga-mutation", "thedbarthe", "", "past participle of"]) + let v = native_list_append(v, ["choir", "adj", "choir", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["thee", "adj", "thee", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["om", "adj", "om", "", "oim", "", "raw"]) + let v = native_list_append(v, ["dub", "adj", "dub", "", "duib", "", "black"]) + let v = native_list_append(v, ["mass", "adj", "mass", "", "maiss", "", "goodly handsome beautiful"]) + let v = native_list_append(v, ["maid", "adj", "maid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bind", "adj", "bindiu", "*bindem", "binde", "", "melodious harmonious"]) + let v = native_list_append(v, ["find", "adj", "find", "", "finde", "", "white"]) + let v = native_list_append(v, ["finn", "adj", "finn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lem", "adj", "lem", "", "lim", "", "soft tender"]) + let v = native_list_append(v, ["domain", "adj", "domnu", "", "domnae", "", "deep"]) + let v = native_list_append(v, ["loch", "adj", "loch", "", "loich", "", "black dark"]) + let v = native_list_append(v, ["té", "adj", "té", "", "", "", "hot warm of"]) + let v = native_list_append(v, ["gel", "adj", "gel", "", "gil", "", "bright"]) + let v = native_list_append(v, ["tee", "adj", "tee", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fiú", "adj", "fiú", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["solus", "adj", "solus", "", "soluis", "", "bright clear"]) + let v = native_list_append(v, ["il", "adj", "lia", "", "", "", "much many usually"]) + let v = native_list_append(v, ["moa", "adj", "moa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thé", "adj", "thé", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["bice", "adj", "bice", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["toll", "adj", "toll", "", "tuill", "", "pierced leaky"]) + let v = native_list_append(v, ["cam", "adj", "cam", "", "caim", "", "alternative spelling of"]) + let v = native_list_append(v, ["chert", "adj", "chert", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["lac", "adj", "lac", "", "", "", "weak feeble"]) + let v = native_list_append(v, ["sen", "adj", "siniu", "sinem", "sin", "", "old"]) + let v = native_list_append(v, ["mall", "adj", "mailliu", "maillem", "maill", "", "slow"]) + let v = native_list_append(v, ["burb", "adj", "burb", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["bic", "adj", "bic", "", "", "", "inflection of bec"]) + let v = native_list_append(v, ["dalla", "adj", "dalla", "", "", "", "inflection of dall"]) + let v = native_list_append(v, ["aile", "adj", "aile", "", "aili", "", "other second one"]) + let v = native_list_append(v, ["coir", "adj", "coir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["certa", "adj", "certa", "", "", "", "inflection of cert"]) + let v = native_list_append(v, ["min", "adj", "miniu", "", "mine", "", "minute small"]) + let v = native_list_append(v, ["tig", "adj", "tig", "", "", "", "genitive singular masculine/neuter"]) + let v = native_list_append(v, ["lán", "adj", "lán", "", "láin", "", "full"]) + let v = native_list_append(v, ["messa", "adj", "messa", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["milis", "adj", "milis", "", "milse", "", "sweet"]) + let v = native_list_append(v, ["glan", "adj", "glan", "", "glain", "", "clean"]) + let v = native_list_append(v, ["salach", "adj", "salach", "", "salaig", "", "dirty foul"]) + let v = native_list_append(v, ["mór", "adj", "mó", "moäm", "móir", "", "big great"]) + let v = native_list_append(v, ["mó", "adj", "mó", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["ard", "adj", "ardu", "ardam", "aird", "", "high"]) + let v = native_list_append(v, ["bocht", "adj", "bocht", "", "boicht", "", "poor"]) + let v = native_list_append(v, ["óg", "adj", "óg", "", "óig", "", "whole entire"]) + let v = native_list_append(v, ["bán", "adj", "bán", "", "báin", "", "white"]) + let v = native_list_append(v, ["donn", "adj", "donn", "", "duinn", "", "brown tawny dun"]) + let v = native_list_append(v, ["glas", "adj", "glas", "", "glais", "", "green greenish especially"]) + let v = native_list_append(v, ["arda", "adj", "arda", "", "", "", "inflection of ard"]) + let v = native_list_append(v, ["aird", "adj", "aird", "", "", "", "inflection of ard"]) + let v = native_list_append(v, ["airde", "adj", "airde", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tris", "adj", "tris", "", "tresi", "", "third"]) + let v = native_list_append(v, ["bí", "adj", "bí", "", "", "", "inflection of béo"]) + let v = native_list_append(v, ["áith", "adj", "áithiu", "áithem", "áithe", "", "sharp"]) + let v = native_list_append(v, ["cert", "adj", "certu", "", "cirt", "", "correct right proper"]) + let v = native_list_append(v, ["serb", "adj", "serb", "", "seirb", "", "bitter of flavour"]) + let v = native_list_append(v, ["cama", "adj", "cama", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["birr", "adj", "birr", "", "", "", "inflection of berr"]) + let v = native_list_append(v, ["cham", "adj", "cham", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fliuch", "adj", "fliuchu", "", "flich", "", "wet"]) + let v = native_list_append(v, ["achar", "adj", "achar", "", "achair", "", "alternative form of"]) + let v = native_list_append(v, ["sain", "adj", "sain", "", "saine", "", "different"]) + let v = native_list_append(v, ["bec", "adj", "lugu", "", "bic", "", "small"]) + let v = native_list_append(v, ["uasal", "adj", "uasal", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["clé", "adj", "clé", "", "clí", "", "left"]) + let v = native_list_append(v, ["dall", "adj", "dall", "", "daill", "", "blind"]) + let v = native_list_append(v, ["fiu", "adj", "fiu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dil", "adj", "diliu", "dilem", "dile", "", "dear"]) + let v = native_list_append(v, ["sír", "adj", "síriu", "sírem", "", "", "long"]) + let v = native_list_append(v, ["fáilte", "adj", "fáilte", "", "", "", "inflection of fáilid"]) + let v = native_list_append(v, ["berr", "adj", "berr", "", "birr", "", "short"]) + let v = native_list_append(v, ["derb", "adj", "derbu", "", "deirb", "", "sure certain fixed"]) + let v = native_list_append(v, ["lia", "adj", "lia", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["trom", "adj", "trom", "", "truim", "", "heavy weight"]) + let v = native_list_append(v, ["camma", "adj", "camma", "", "", "", "inflection of camm"]) + let v = native_list_append(v, ["dess", "adj", "dess", "", "deiss", "", "right side as"]) + let v = native_list_append(v, ["calad", "adj", "calad", "", "calaid", "", "hard"]) + let v = native_list_append(v, ["cense", "adj", "cense", "", "", "", "inflection of cennais"]) + let v = native_list_append(v, ["anse", "adj", "ansu", "ansam", "ansi", "", "difficult impossible"]) + let v = native_list_append(v, ["censi", "adj", "censi", "", "", "", "masculine/feminine/neuter nominative/vocative/accusative plu"]) + let v = native_list_append(v, ["nocht", "adj", "nocht", "", "nochtae", "", "naked bare uncovered"]) + let v = native_list_append(v, ["móu", "adj", "móu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["anglan", "adj", "anglan", "", "anglain", "", "unclean"]) + let v = native_list_append(v, ["moch", "adj", "moch", "", "muich", "", "early"]) + let v = native_list_append(v, ["olc", "adj", "messa", "mesam", "uilc", "", "bad evil"]) + let v = native_list_append(v, ["lour", "adj", "lour", "", "loïr", "", "enough sufficient"]) + let v = native_list_append(v, ["borb", "adj", "borb", "", "buirb", "", "foolish silly senseless"]) + let v = native_list_append(v, ["buirbe", "adj", "buirbe", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["goirt", "adj", "goirt", "", "", "", "bitter sour salt"]) + let v = native_list_append(v, ["droch", "adj", "droch", "", "", "", "bad evil"]) + let v = native_list_append(v, ["mou", "adj", "mou", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["asse", "adj", "assu", "", "assae", "", "easy"]) + let v = native_list_append(v, ["gile", "adj", "gile", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["birre", "adj", "birre", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["gela", "adj", "gela", "", "", "", "inflection of gel"]) + let v = native_list_append(v, ["diafana", "adj", "diafana", "", "", "", "diaphanous"]) + let v = native_list_append(v, ["maith", "adj", "ferr", "dech", "maithe", "", "good"]) + let v = native_list_append(v, ["balba", "adj", "balba", "", "", "", "inflection of balb"]) + let v = native_list_append(v, ["beca", "adj", "beca", "", "", "", "inflection of bec"]) + let v = native_list_append(v, ["becca", "adj", "becca", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dech", "adj", "dech", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["borba", "adj", "borba", "", "", "", "inflection of borb"]) + let v = native_list_append(v, ["llac", "adj", "llac", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tolla", "adj", "tolla", "", "", "", "inflection of toll"]) + let v = native_list_append(v, ["diadi", "adj", "diadi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["garait", "adj", "garait", "", "gairte", "", "short"]) + let v = native_list_append(v, ["innon", "adj", "innon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chama", "adj", "chama", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["brónach", "adj", "brónchu", "", "brónaig", "", "sad sorrowful grievous"]) + let v = native_list_append(v, ["már", "adj", "már", "", "máir", "", "alternative form of"]) + let v = native_list_append(v, ["óa", "adj", "óa", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["gil", "adj", "gil", "", "", "", "inflection of gel"]) + let v = native_list_append(v, ["glé", "adj", "glé", "", "", "", "clear"]) + let v = native_list_append(v, ["fíu", "adj", "fíu", "", "", "", "worthy fitting"]) + let v = native_list_append(v, ["cían", "adj", "cían", "", "céin", "", "far distant"]) + let v = native_list_append(v, ["certu", "adj", "certu", "", "", "", "vocative/accusative masculine plural"]) + let v = native_list_append(v, ["ardu", "adj", "ardu", "", "", "", "inflection of ard"]) + let v = native_list_append(v, ["Lochlannach", "adj", "Lochlannach", "", "Lochlannaig", "", "Norse"]) + let v = native_list_append(v, ["gilu", "adj", "gilu", "", "", "", "vocative/accusative masculine plural"]) + let v = native_list_append(v, ["tuill", "adj", "tuill", "", "", "", "inflection of toll"]) + let v = native_list_append(v, ["bachlaig", "adj", "bachlaig", "", "", "", "inflection of bachlach"]) + let v = native_list_append(v, ["uilc", "adj", "uilc", "", "", "", "inflection of olc"]) + let v = native_list_append(v, ["ollam", "adj", "ollam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acher", "adj", "acher", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moir", "adj", "moir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ciúin", "adj", "ciúin", "", "ciúine", "", "calm quiet"]) + let v = native_list_append(v, ["ansae", "adj", "ansu", "ansam", "ansai", "", "difficult"]) + let v = native_list_append(v, ["ocus", "adj", "nessa", "nessam", "ocuis", "", "near"]) + let v = native_list_append(v, ["gáeth", "adj", "gáeth", "", "gaíth", "", "wise"]) + let v = native_list_append(v, ["imdae", "adj", "imdu", "", "imdai", "", "many numerous"]) + let v = native_list_append(v, ["díriuch", "adj", "dírgu", "", "dírig", "", "straight"]) + let v = native_list_append(v, ["óc", "adj", "óa", "óam", "óic", "", "young"]) + let v = native_list_append(v, ["cóiced", "adj", "cóiced", "", "cóicid", "", "fifth"]) + let v = native_list_append(v, ["sóer", "adj", "sóer", "", "soír", "", "free"]) + let v = native_list_append(v, ["béo", "adj", "béo", "", "bí", "", "alive"]) + let v = native_list_append(v, ["aingel", "adj", "aingel", "", "aingil", "", "very bright"]) + let v = native_list_append(v, ["dóer", "adj", "dóer", "", "doír", "", "servile"]) + let v = native_list_append(v, ["maithe", "adj", "maithe", "", "", "", "inflection of maith"]) + let v = native_list_append(v, ["úasal", "adj", "úaisliu", "úaislem", "úasail", "", "high"]) + let v = native_list_append(v, ["assu", "adj", "assu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["urusa", "adj", "urusa", "", "", "", "easy"]) + let v = native_list_append(v, ["ísel", "adj", "ísliu", "íslem", "ísil", "", "low"]) + let v = native_list_append(v, ["fota", "adj", "fota", "", "fotae", "", "long"]) + let v = native_list_append(v, ["álaind", "adj", "áildiu", "áildem", "áilde", "", "beautiful"]) + let v = native_list_append(v, ["manach", "adj", "manach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["remor", "adj", "remor", "", "", "", "fat"]) + let v = native_list_append(v, ["torrach", "adj", "torrach", "", "torraig", "", "pregnant"]) + let v = native_list_append(v, ["brén", "adj", "brén", "", "bréin", "", "foul"]) + let v = native_list_append(v, ["gnáth", "adj", "gnáthiu", "gnáithem", "gnáith", "", "customary"]) + let v = native_list_append(v, ["bodar", "adj", "bodar", "", "buidir", "", "deaf"]) + let v = native_list_append(v, ["ferr", "adj", "ferr", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["láitir", "adj", "láitir", "", "láitire", "", "strong"]) + let v = native_list_append(v, ["mescc", "adj", "mescc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mesctha", "adj", "mesctha", "", "", "", "confused"]) + let v = native_list_append(v, ["líach", "adj", "líach", "", "léig", "", "wretched"]) + let v = native_list_append(v, ["úar", "adj", "úar", "", "úair", "", "cold"]) + let v = native_list_append(v, ["sídach", "adj", "sídach", "", "sídaig", "", "of or belonging"]) + let v = native_list_append(v, ["aitt", "adj", "aitt", "", "", "", "pleasant agreeable"]) + let v = native_list_append(v, ["rúad", "adj", "rúad", "", "rúaid", "", "red reddish"]) + let v = native_list_append(v, ["derg", "adj", "derg", "", "deirg", "", "red"]) + let v = native_list_append(v, ["lethan", "adj", "letha", "", "lethain", "", "broad wide"]) + let v = native_list_append(v, ["odur", "adj", "odur", "", "uidir", "", "dun greyish-brown"]) + let v = native_list_append(v, ["brécach", "adj", "brécach", "", "brécaig", "", "lying false deceitful"]) + let v = native_list_append(v, ["sorchae", "adj", "sorchae", "", "", "", "bright luminous"]) + let v = native_list_append(v, ["dorchae", "adj", "dorchu", "", "dorchai", "", "dark gloomy"]) + let v = native_list_append(v, ["nessa", "adj", "nessa", "", "", "", "nearer closer"]) + let v = native_list_append(v, ["buide", "adj", "budiu", "", "buidi", "", "yellow"]) + let v = native_list_append(v, ["slán", "adj", "slán", "", "sláin", "", "healthy sound"]) + let v = native_list_append(v, ["sláintech", "adj", "sláintech", "", "sláintig", "", "free from liability"]) + let v = native_list_append(v, ["marb", "adj", "marb", "", "mairb", "", "dead"]) + let v = native_list_append(v, ["gér", "adj", "gér", "", "géir", "", "sharp"]) + let v = native_list_append(v, ["cluichech", "adj", "cluichech", "", "cluichig", "", "playful sportive"]) + let v = native_list_append(v, ["lennach", "adj", "lennach", "", "", "", "beloved"]) + let v = native_list_append(v, ["aill", "adj", "aill", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["brecc", "adj", "brecc", "", "bricc", "", "speckled spotted flecked"]) + let v = native_list_append(v, ["daingen", "adj", "daingniu", "", "daingin", "", "strong firm solid"]) + let v = native_list_append(v, ["balb", "adj", "balb", "", "bailb", "", "dumb silent"]) + let v = native_list_append(v, ["tráthamail", "adj", "tráthamail", "", "", "", "timely"]) + let v = native_list_append(v, ["breib", "adj", "breib", "", "breibe", "", "short"]) + let v = native_list_append(v, ["scíathánach", "adj", "scíathánach", "", "scíathánaig", "", "winged"]) + let v = native_list_append(v, ["camm", "adj", "camm", "", "caimm", "", "crooked bent curved"]) + let v = native_list_append(v, ["altae", "adj", "altae", "", "", "", "inflection of allaid"]) + let v = native_list_append(v, ["prímda", "adj", "prímda", "", "", "", "foremost principal preeminent"]) + let v = native_list_append(v, ["prím", "adj", "prím", "", "príme", "", "first"]) + let v = native_list_append(v, ["séissilbech", "adj", "séissilbech", "", "séissilbig", "", "tumultuous"]) + let v = native_list_append(v, ["assa", "adj", "assa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["spirutálta", "adj", "spirutálta", "", "", "", "spiritual"]) + let v = native_list_append(v, ["labar", "adj", "labar", "", "labair", "", "talkative"]) + let v = native_list_append(v, ["léir", "adj", "léir", "", "léire", "", "diligent assiduous earnest"]) + let v = native_list_append(v, ["ardae", "adj", "ardae", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["ullam", "adj", "ullam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cumung", "adj", "cumung", "", "cumuing", "", "narrow constricted close"]) + let v = native_list_append(v, ["inon", "adj", "inon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gáethach", "adj", "gáethach", "", "", "", "windy"]) + let v = native_list_append(v, ["lomm", "adj", "lomm", "", "loimm", "", "bare naked"]) + let v = native_list_append(v, ["gerbach", "adj", "gerbach", "", "", "", "scabby mangy"]) + let v = native_list_append(v, ["demin", "adj", "demniu", "", "demne", "", "sure certain"]) + let v = native_list_append(v, ["Sabindae", "adj", "Sabindae", "", "", "", "Sabinian"]) + let v = native_list_append(v, ["inse", "adj", "inse", "", "insi", "", "alternative form of"]) + let v = native_list_append(v, ["leir", "adj", "leir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["allaid", "adj", "allaid", "", "altae", "", "wild undomesticated"]) + let v = native_list_append(v, ["torcdae", "adj", "torcdae", "", "torcdai", "", "boarlike"]) + let v = native_list_append(v, ["bráthardae", "adj", "bráthardae", "", "bráthardai", "", "brotherly fraternal"]) + let v = native_list_append(v, ["persandae", "adj", "persandae", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["slíabdae", "adj", "slíabdae", "", "", "", "mountainous"]) + let v = native_list_append(v, ["srónmar", "adj", "srónmar", "", "", "", "big-nosed"]) + let v = native_list_append(v, ["ansam", "adj", "ansam", "", "", "", "superlative degree of"]) + let v = native_list_append(v, ["glicc", "adj", "glicc", "", "", "", "shrewd ingenious skilled"]) + let v = native_list_append(v, ["cluichechair", "adj", "cluichechair", "", "", "", "sportive playful"]) + let v = native_list_append(v, ["ciúine", "adj", "ciúine", "", "", "", "inflection of ciúin"]) + let v = native_list_append(v, ["aicnetae", "adj", "aicnetae", "", "aicnetai", "", "natural"]) + let v = native_list_append(v, ["hil", "adj", "hil", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["oíbind", "adj", "oíbind", "", "", "", "pleasant agreeable delightful"]) + let v = native_list_append(v, ["Égipta", "adj", "Égipta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Égiptda", "adj", "Égiptda", "", "", "", "Egyptian"]) + let v = native_list_append(v, ["cumme", "adj", "cumme", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["soilse", "adj", "soilse", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["cirt", "adj", "cirt", "", "", "", "inflection of cert"]) + let v = native_list_append(v, ["nósta", "adj", "nósta", "", "", "", "remarkable famed"]) + let v = native_list_append(v, ["Drobéssach", "adj", "Drobéssach", "", "", "", "of or relating"]) + let v = native_list_append(v, ["gríbda", "adj", "gríbda", "", "", "", "griffin-like"]) + let v = native_list_append(v, ["gríanmar", "adj", "gríanmar", "", "", "", "brilliant"]) + let v = native_list_append(v, ["gríbach", "adj", "gríbach", "", "", "", "griffin-like"]) + let v = native_list_append(v, ["bélmar", "adj", "bélmar", "", "bélmair", "", "big-lipped big-mouthed"]) + let v = native_list_append(v, ["feramail", "adj", "feramail", "", "feramlae", "", "manly"]) + let v = native_list_append(v, ["áesmar", "adj", "áesmar", "", "áesmair", "", "aged long-lived"]) + let v = native_list_append(v, ["clannmar", "adj", "clannmar", "", "clannmair", "", "prolific"]) + let v = native_list_append(v, ["ítmar", "adj", "ítmar", "", "", "", "thirsty"]) + let v = native_list_append(v, ["míadamail", "adj", "míadamail", "", "", "", "dignified honored majestic"]) + let v = native_list_append(v, ["máthramail", "adj", "máthramail", "", "", "", "resembling ones mother"]) + let v = native_list_append(v, ["dermár", "adj", "dermairi", "", "", "", "huge"]) + let v = native_list_append(v, ["boladmar", "adj", "boladmar", "", "boladmair", "", "fragrant sweet-smelling"]) + let v = native_list_append(v, ["brúmar", "adj", "brúmar", "", "brúmair", "", "heavy-browed"]) + let v = native_list_append(v, ["bruthmar", "adj", "bruthmar", "", "bruthmair", "", "fiery furious"]) + let v = native_list_append(v, ["lánmar", "adj", "lánmar", "", "", "", "full ample abundant"]) + let v = native_list_append(v, ["línmar", "adj", "línmar", "", "", "", "abundant numerous"]) + let v = native_list_append(v, ["lógmar", "adj", "lógmar", "", "lógmair", "", "precious valuable"]) + let v = native_list_append(v, ["ollmar", "adj", "ollmar", "", "", "", "vast great"]) + let v = native_list_append(v, ["olmar", "adj", "olmar", "", "", "", "fond of drinking"]) + let v = native_list_append(v, ["úathmar", "adj", "úathmar", "", "", "", "dreadful terrible terrifying"]) + let v = native_list_append(v, ["rechtmar", "adj", "rechtmar", "", "", "", "lawful"]) + let v = native_list_append(v, ["socamail", "adj", "socamail", "", "sócamlae", "", "cheerful pleasant easy"]) + let v = native_list_append(v, ["fortamail", "adj", "fortamail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fortail", "adj", "fortail", "", "", "", "having the upper"]) + let v = native_list_append(v, ["clochamail", "adj", "clochamail", "", "", "", "stony unyielding"]) + let v = native_list_append(v, ["fuarrech", "adj", "fuarrech", "", "", "", "gentle forbearing"]) + let v = native_list_append(v, ["líath", "adj", "líath", "", "léith", "", "grey"]) + let v = native_list_append(v, ["gallda", "adj", "gallda", "", "", "", "foreign especially Norse"]) + let v = native_list_append(v, ["galldach", "adj", "galldach", "", "", "", "non-Gaelic especially pertaining"]) + let v = native_list_append(v, ["airfitech", "adj", "airfitech", "", "airfitig", "", "musical harmonious"]) + let v = native_list_append(v, ["bána", "adj", "bána", "", "", "", "inflection of bán"]) + let v = native_list_append(v, ["céir", "adj", "céir", "", "", "", "inflection of cíar"]) + let v = native_list_append(v, ["cóir", "adj", "córu", "", "córae", "", "proper right just"]) + let v = native_list_append(v, ["poplach", "adj", "poplach", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["populda", "adj", "populda", "", "", "", "belonging to the"]) + let v = native_list_append(v, ["gnáthach", "adj", "gnáthach", "", "gnáthaig", "", "customary usual constant"]) + let v = native_list_append(v, ["chamma", "adj", "chamma", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["lenbaide", "adj", "lenbaide", "", "", "", "childish puerile"]) + let v = native_list_append(v, ["gláeta", "adj", "gláeta", "", "", "", "stuck glued"]) + let v = native_list_append(v, ["gláedach", "adj", "gláedach", "", "gláedaig", "", "noisy blustering"]) + let v = native_list_append(v, ["lére", "adj", "lére", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["terc", "adj", "terc", "", "teirc", "", "few"]) + let v = native_list_append(v, ["oll", "adj", "uilliu", "", "uill", "", "great vast"]) + let v = native_list_append(v, ["tiug", "adj", "tigiu", "", "tig", "", "thick"]) + let v = native_list_append(v, ["tanae", "adj", "tanu", "", "tanai", "", "thin"]) + let v = native_list_append(v, ["aingil", "adj", "aingil", "", "", "", "inflection of aingel"]) + let v = native_list_append(v, ["Rómánach", "adj", "Rómánach", "", "Rómánaig", "", "Roman"]) + let v = native_list_append(v, ["Rómánda", "adj", "Rómánda", "", "", "", "belonging to Rome"]) + let v = native_list_append(v, ["roithinech", "adj", "roithinech", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["esach", "adj", "esach", "", "", "", "pertaining to or"]) + let v = native_list_append(v, ["essach", "adj", "essach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["boinenn", "adj", "boinenn", "", "boininn", "", "female"]) + let v = native_list_append(v, ["macthae", "adj", "macthae", "", "", "", "childish juvenile"]) + let v = native_list_append(v, ["macthi", "adj", "macthi", "", "", "", "inflection of macthae"]) + let v = native_list_append(v, ["tibrech", "adj", "tibrech", "", "", "", "laughing dimpled"]) + let v = native_list_append(v, ["engach", "adj", "engach", "", "engaig", "", "noisy vociferous"]) + let v = native_list_append(v, ["míanach", "adj", "míanach", "", "míanaig", "", "desirous eager wishful"]) + let v = native_list_append(v, ["tromda", "adj", "tromda", "", "", "", "oppressive importunate"]) + let v = native_list_append(v, ["máel", "adj", "máel", "", "maíl", "", "bald bare shaved"]) + let v = native_list_append(v, ["doír", "adj", "doír", "", "", "", "genitive singular masculine"]) + let v = native_list_append(v, ["sáer", "adj", "sáer", "", "saír", "", "alternative form of"]) + let v = native_list_append(v, ["foirmtech", "adj", "foirmtech", "", "foirmtig", "", "envious"]) + let v = native_list_append(v, ["umal", "adj", "umal", "", "umail", "", "humble obedient"]) + let v = native_list_append(v, ["glaine", "adj", "glaine", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["cnoccach", "adj", "cnoccach", "", "cnoccaig", "", "hilly"]) + let v = native_list_append(v, ["gellach", "adj", "gellach", "", "", "", "subject to a"]) + let v = native_list_append(v, ["rígdae", "adj", "rígdae", "", "rígdai", "", "pertaining to king"]) + let v = native_list_append(v, ["n-ard", "adj", "n-ard", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nglas", "adj", "nglas", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["grennach", "adj", "grennach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["grendach", "adj", "grendach", "", "", "", "hairy bristly rough"]) + let v = native_list_append(v, ["ngel", "adj", "ngel", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["sásta", "adj", "sásta", "", "", "", "satisfied content"]) + let v = native_list_append(v, ["berra", "adj", "berra", "", "", "", "inflection of berr"]) + let v = native_list_append(v, ["buidi", "adj", "buidi", "", "", "", "inflection of buide"]) + let v = native_list_append(v, ["becc", "adj", "becc", "", "bicc", "", "alternative spelling of"]) + let v = native_list_append(v, ["toísech", "adj", "toísigiu", "toísechem", "toísig", "", "first"]) + let v = native_list_append(v, ["sercach", "adj", "sercach", "sercaigthi", "", "", "beloved lovable"]) + let v = native_list_append(v, ["fuilech", "adj", "fuilech", "", "", "", "bloody blood-stained"]) + let v = native_list_append(v, ["fuilide", "adj", "fuilide", "", "", "", "of the nature"]) + let v = native_list_append(v, ["gríanach", "adj", "gríanach", "", "", "", "sunny bright"]) + let v = native_list_append(v, ["gríanda", "adj", "gríanda", "", "", "", "relating to the"]) + let v = native_list_append(v, ["mlicht", "adj", "mlicht", "", "mlichte", "", "milch in milk"]) + let v = native_list_append(v, ["muccach", "adj", "muccach", "", "", "", "pertaining to swine"]) + let v = native_list_append(v, ["cathaige", "adj", "cathaige", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["cathach", "adj", "cathach", "", "cathaig", "", "bellicose warlike"]) + let v = native_list_append(v, ["conamail", "adj", "conamail", "", "", "", "houndlike"]) + let v = native_list_append(v, ["firennach", "adj", "firennach", "", "", "", "male"]) + let v = native_list_append(v, ["firend", "adj", "firend", "", "", "", "male"]) + let v = native_list_append(v, ["fliuchaide", "adj", "fliuchaide", "", "", "", "damp moist"]) + let v = native_list_append(v, ["subach", "adj", "subach", "", "", "", "cheerful merry happy"]) + let v = native_list_append(v, ["dubach", "adj", "dubach", "", "dubaig", "", "gloomy sad mournful"]) + let v = native_list_append(v, ["dubae", "adj", "dubae", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["bicce", "adj", "bicce", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dermall", "adj", "dermall", "", "", "", "very slow"]) + let v = native_list_append(v, ["chirt", "adj", "chirt", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["mesc", "adj", "mesc", "", "meisc", "", "drunk intoxicated"]) + let v = native_list_append(v, ["tráthach", "adj", "tráthach", "", "", "", "timely"]) + let v = native_list_append(v, ["mára", "adj", "mára", "", "", "", "inflection of már"]) + let v = native_list_append(v, ["toísig", "adj", "toísig", "", "", "", "inflection of toísech"]) + let v = native_list_append(v, ["bidgach", "adj", "bidgach", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bedgach", "adj", "bedgach", "", "bedgaig", "", "starting leaping jumping"]) + let v = native_list_append(v, ["lugu", "adj", "lugu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["berach", "adj", "berach", "", "beraig", "", "pointed sharp"]) + let v = native_list_append(v, ["scíth", "adj", "scíth", "", "scíthe", "", "tired weary"]) + let v = native_list_append(v, ["ísle", "adj", "ísle", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["midlachda", "adj", "midlachda", "", "", "", "timid cowardly"]) + let v = native_list_append(v, ["lachtna", "adj", "lachtna", "", "", "", "milk coloured gray"]) + let v = native_list_append(v, ["móra", "adj", "móra", "", "", "", "inflection of mór"]) + let v = native_list_append(v, ["naue", "adj", "naue", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["massu", "adj", "massu", "", "", "", "masculine vocative/accusative plural"]) + let v = native_list_append(v, ["aicher", "adj", "aicher", "", "aichir", "", "sharp fierce of"]) + let v = native_list_append(v, ["comneibi", "adj", "comneibi", "", "", "", "An adjective of"]) + let v = native_list_append(v, ["cáech", "adj", "cáech", "", "caích", "", "blind in one"]) + let v = native_list_append(v, ["lúath", "adj", "lúath", "", "lúaith", "", "swift fast"]) + let v = native_list_append(v, ["cercdae", "adj", "cercdae", "", "cercdai", "", "poultry fowl attributive"]) + let v = native_list_append(v, ["ellam", "adj", "ellam", "", "", "", "quick prompt speedy"]) + let v = native_list_append(v, ["ailte", "adj", "ailte", "", "", "", "past participle of"]) + let v = native_list_append(v, ["tigiu", "adj", "tigiu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["fír", "adj", "fír", "", "fíre", "", "true"]) + let v = native_list_append(v, ["fíre", "adj", "fíre", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["móir", "adj", "móir", "", "", "", "inflection of mór"]) + let v = native_list_append(v, ["móire", "adj", "móire", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["achair", "adj", "achair", "", "", "", "inflection of achar"]) + let v = native_list_append(v, ["ulc", "adj", "ulc", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["isel", "adj", "isel", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["léire", "adj", "léire", "", "", "", "inflection of léir"]) + let v = native_list_append(v, ["léithe", "adj", "léithe", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["cétnae", "adj", "cétnae", "", "cétnai", "", "first"]) + let v = native_list_append(v, ["tánaise", "adj", "tánaise", "", "tánaisi", "", "second"]) + let v = native_list_append(v, ["cethramad", "adj", "cethramad", "", "cethramaid", "", "fourth"]) + let v = native_list_append(v, ["seissed", "adj", "seissed", "", "seissid", "", "sixth"]) + let v = native_list_append(v, ["ochtmad", "adj", "ochtmad", "", "ochtmaid", "", "eighth"]) + let v = native_list_append(v, ["nómad", "adj", "nómad", "", "nómaid", "", "ninth"]) + let v = native_list_append(v, ["dechmad", "adj", "dechmad", "", "dechmaid", "", "tenth"]) + let v = native_list_append(v, ["óenmad", "adj", "óenmad", "", "óenmaid", "", "-first"]) + let v = native_list_append(v, ["cóecatmad", "adj", "cóecatmad", "", "coécatmaid", "", "fiftieth"]) + let v = native_list_append(v, ["aichre", "adj", "aichre", "", "", "", "genitive singular feminine"]) + let v = native_list_append(v, ["trén", "adj", "tressa", "tressam", "tríuin", "", "strong"]) + let v = native_list_append(v, ["noíb", "adj", "noíb", "", "noíbe", "", "holy sacred"]) + let v = native_list_append(v, ["fáilid", "adj", "fáilid", "", "fáilte", "", "happy glad joyful"]) + let v = native_list_append(v, ["feidil", "adj", "feidil", "", "feidle", "", "lasting enduring"]) + let v = native_list_append(v, ["fírían", "adj", "fírían", "", "fíríain", "", "just righteous"]) + let v = native_list_append(v, ["óga", "adj", "óga", "", "", "", "inflection of óg"]) + let v = native_list_append(v, ["amlabar", "adj", "amlabar", "", "amlabair", "", "dumb mute"]) + let v = native_list_append(v, ["adamrae", "adj", "adamrae", "", "adamrai", "", "very wonderful"]) + let v = native_list_append(v, ["amrae", "adj", "amrae", "", "amrai", "", "wonderful marvellous extraordinary"]) + let v = native_list_append(v, ["camu", "adj", "camu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ailide", "adj", "ailide", "", "ailidi", "", "glosses Latin alternus"]) + let v = native_list_append(v, ["trédae", "adj", "trédae", "", "trédai", "", "threefold triple"]) + let v = native_list_append(v, ["armthae", "adj", "armthae", "", "armthai", "", "armed"]) + let v = native_list_append(v, ["cétnaide", "adj", "cétnaide", "", "cétnaidi", "", "primary primitive"]) + let v = native_list_append(v, ["cotarsnae", "adj", "cotarsnae", "", "cotarsnai", "", "opposite"]) + let v = native_list_append(v, ["cummae", "adj", "cummae", "", "", "", "similar alike with"]) + let v = native_list_append(v, ["ilardae", "adj", "ilardae", "", "ilardai", "", "manifold varied"]) + let v = native_list_append(v, ["ildae", "adj", "ildae", "", "ildai", "", "manifold plural"]) + let v = native_list_append(v, ["immaircide", "adj", "immaircide", "", "immaircidi", "", "suitable appropriate fitting"]) + let v = native_list_append(v, ["toimside", "adj", "toimside", "", "toimsidi", "", "measured"]) + let v = native_list_append(v, ["uilide", "adj", "uilide", "", "uilidi", "", "universal general"]) + let v = native_list_append(v, ["thuill", "adj", "thuill", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["boicht", "adj", "boicht", "", "", "", "inflection of bocht"]) + let v = native_list_append(v, ["letha", "adj", "letha", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["bréin", "adj", "bréin", "", "", "", "inflection of bréin"]) + let v = native_list_append(v, ["ailidi", "adj", "ailidi", "", "", "", "inflection of ailide"]) + let v = native_list_append(v, ["chamm", "adj", "chamm", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cammu", "adj", "cammu", "", "", "", "vocative/accusative plural masculine"]) + let v = native_list_append(v, ["n-óg", "adj", "n-óg", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["daille", "adj", "daille", "", "", "", "feminine genitive singular"]) + let v = native_list_append(v, ["crín", "adj", "crín", "", "críne", "", "withered decayed"]) + let v = native_list_append(v, ["mbeca", "adj", "mbeca", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["aili", "adj", "aili", "", "", "", "inflection of aile"]) + let v = native_list_append(v, ["maige", "adj", "maige", "", "", "", "great mighty"]) + let v = native_list_append(v, ["laigiu", "adj", "laigiu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frecndairc", "adj", "frecndairc", "", "frecndairce", "", "present pertaining to"]) + let v = native_list_append(v, ["frecndircc", "adj", "frecndircc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cétni", "adj", "cétni", "", "", "", "inflection of cétnae"]) + let v = native_list_append(v, ["tánaisi", "adj", "tánaisi", "", "", "", "inflection of tánaise"]) + let v = native_list_append(v, ["milsi", "adj", "milsi", "", "", "", "all genders nominative/accusative/vocative"]) + let v = native_list_append(v, ["deidbir", "adj", "deidbir", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["deithbir", "adj", "deithbir", "", "deithbire", "", "reasonable"]) + let v = native_list_append(v, ["cetni", "adj", "cetni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cosmail", "adj", "cosmail", "", "cosmaile", "", "like alike similar"]) + let v = native_list_append(v, ["coibnesta", "adj", "coibnesta", "", "coibnestai", "", "akin + do"]) + let v = native_list_append(v, ["oac", "adj", "oac", "", "oaic", "", "alternative form of"]) + let v = native_list_append(v, ["maithi", "adj", "maithi", "", "", "", "nominative/vocative/accusative plural all"]) + let v = native_list_append(v, ["demniu", "adj", "demniu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["cumachtach", "adj", "cumachtach", "", "cumachtaig", "", "powerful potent"]) + let v = native_list_append(v, ["chumachtig", "adj", "chumachtig", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cumachtig", "adj", "cumachtig", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chumachtaig", "adj", "chumachtaig", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["cumachtaig", "adj", "cumachtaig", "", "", "", "inflection of cumachtach"]) + let v = native_list_append(v, ["cóem", "adj", "cóem", "", "coím", "", "dear gentle beloved"]) + let v = native_list_append(v, ["coím", "adj", "coím", "", "", "", "inflection of cóem"]) + let v = native_list_append(v, ["toísegu", "adj", "toísegu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["thoísegu", "adj", "thoísegu", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["airegdae", "adj", "airegdu", "", "airegdai", "", "excellent eminent"]) + let v = native_list_append(v, ["airegdu", "adj", "airegdu", "", "", "", "inflection of airegdae"]) + let v = native_list_append(v, ["dían", "adj", "déniu", "", "déin", "", "swift rapid quick"]) + let v = native_list_append(v, ["n-isel", "adj", "n-isel", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-ísel", "adj", "n-ísel", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["irlam", "adj", "irlamu", "", "irlaim", "", "ready"]) + let v = native_list_append(v, ["irlamu", "adj", "irlamu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["mbí", "adj", "mbí", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["hinon", "adj", "hinon", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["étig", "adj", "éitchiu", "", "éitche", "", "ugly"]) + let v = native_list_append(v, ["loingthech", "adj", "loingthech", "", "", "", "gluttonous"]) + let v = native_list_append(v, ["caích", "adj", "caích", "", "", "", "inflection of cáech"]) + let v = native_list_append(v, ["tóe", "adj", "tóe", "", "tói", "", "silent"]) + let v = native_list_append(v, ["inducbaide", "adj", "inducbaide", "", "inducbaidi", "", "glorious"]) + let v = native_list_append(v, ["inducbaidi", "adj", "inducbaidi", "", "", "", "inflection of inducbaide"]) + let v = native_list_append(v, ["inunn", "adj", "inunn", "", "", "", "the same"]) + let v = native_list_append(v, ["inonn", "adj", "inonn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["colnide", "adj", "colnide", "", "colnidi", "", "corporeal"]) + let v = native_list_append(v, ["rúnde", "adj", "rúnde", "", "rúndai", "", "mysterious mystical"]) + let v = native_list_append(v, ["uisse", "adj", "uisse", "", "uissi", "", "right complying with"]) + let v = native_list_append(v, ["huisse", "adj", "huisse", "", "huissi", "", "alternative spelling of"]) + let v = native_list_append(v, ["tuiste", "adj", "tuiste", "", "tuisti", "", "created"]) + let v = native_list_append(v, ["tragdae", "adj", "tragdae", "", "tragdai", "", "pierced"]) + let v = native_list_append(v, ["toirsech", "adj", "toirsech", "", "toirsig", "", "mournful sorrowful"]) + let v = native_list_append(v, ["thoirsech", "adj", "thoirsech", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["foirbthe", "adj", "foirbthe", "", "foirbthi", "", "perfect"]) + let v = native_list_append(v, ["théchtu", "adj", "théchtu", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["téchtae", "adj", "téchtae", "", "téchtai", "", "proper right"]) + let v = native_list_append(v, ["téchtu", "adj", "téchtu", "", "", "", "inflection of téchtae"]) + let v = native_list_append(v, ["chóiced", "adj", "chóiced", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["athramail", "adj", "athramail", "", "athramlae", "", "fatherly paternal fatherlike"]) + let v = native_list_append(v, ["athramlai", "adj", "athramlai", "", "", "", "masculine/feminine/neuter nominative/accusative/vocative plu"]) + let v = native_list_append(v, ["adthramli", "adj", "adthramli", "", "", "", "misspelling of athramlai"]) + let v = native_list_append(v, ["follus", "adj", "follus", "faillsem", "follais", "", "clear evident"]) + let v = native_list_append(v, ["dochrud", "adj", "dochrud", "", "dochraid", "", "unseemly unsightly degrading"]) + let v = native_list_append(v, ["túalaing", "adj", "túalaing", "", "túailnge", "", "able capable"]) + let v = native_list_append(v, ["céin", "adj", "céin", "", "", "", "inflection of cían"]) + let v = native_list_append(v, ["coitchenn", "adj", "coitchenn", "", "coitchinn", "", "common mutual shared"]) + let v = native_list_append(v, ["ndiummassach", "adj", "ndiummassach", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ndíummusach", "adj", "ndíummusach", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["diummassach", "adj", "diummassach", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["díummusach", "adj", "díummusach", "", "díummusaig", "", "proud arrogant"]) + let v = native_list_append(v, ["fíal", "adj", "féliu", "", "féil", "", "noble becoming generous"]) + let v = native_list_append(v, ["caín", "adj", "caín", "caínem", "caíne", "", "fine good"]) + let v = native_list_append(v, ["n-aill", "adj", "n-aill", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["étrum", "adj", "étrummu", "", "étruimm", "", "light not heavy"]) + let v = native_list_append(v, ["fortgidiu", "adj", "fortgidiu", "", "", "", "inflection of fortgide"]) + let v = native_list_append(v, ["fortgide", "adj", "fortgide", "", "fortgidi", "", "alternative form of"]) + let v = native_list_append(v, ["fortchide", "adj", "fortchide", "", "fortchidi", "", "covert"]) + let v = native_list_append(v, ["ennac", "adj", "ennac", "", "ennaic", "", "innocent"]) + let v = native_list_append(v, ["encu", "adj", "encu", "", "", "", "masculine accusative plural"]) + let v = native_list_append(v, ["siniu", "adj", "siniu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["díabul", "adj", "díabul", "", "díabuil", "", "double"]) + let v = native_list_append(v, ["glain", "adj", "glain", "", "", "", "inflection of glan"]) + let v = native_list_append(v, ["firian", "adj", "firian", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fírián", "adj", "fírián", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["pecthach", "adj", "pecthach", "", "pecthaig", "", "sinful"]) + let v = native_list_append(v, ["nephchomtetarrachte", "adj", "nephchomtetarrachte", "", "nephchomtetarrachti", "", "incomprehensible"]) + let v = native_list_append(v, ["nephchomtetarrachti", "adj", "nephchomtetarrachti", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["fudumain", "adj", "fudumain", "", "", "", "deep"]) + let v = native_list_append(v, ["soinmech", "adj", "soinmech", "", "soinmig", "", "prosperous"]) + let v = native_list_append(v, ["móo", "adj", "móo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nuae", "adj", "nuae", "", "nuai", "", "new"]) + let v = native_list_append(v, ["chumme", "adj", "chumme", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["foirbthi", "adj", "foirbthi", "", "", "", "inflection of foirbthe"]) + let v = native_list_append(v, ["fechtnach", "adj", "fechtnach", "", "fechtnaig", "", "prosperous"]) + let v = native_list_append(v, ["súaichnid", "adj", "súaichnid", "", "", "", "well-known obvious clear"]) + let v = native_list_append(v, ["essamin", "adj", "essamin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["esamain", "adj", "esamnu", "", "esamnae", "", "fearless"]) + let v = native_list_append(v, ["ecoir", "adj", "ecoir", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["écóir", "adj", "écóir", "", "écórae", "", "incongruous at variance"]) + let v = native_list_append(v, ["appriscc", "adj", "appriscc", "", "appriscce", "", "frail brittle"]) + let v = native_list_append(v, ["dallu", "adj", "dallu", "", "", "", "masculine vocative/accusative plural"]) + let v = native_list_append(v, ["failid", "adj", "failid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["doraid", "adj", "doraid", "", "doirthe", "", "difficult"]) + let v = native_list_append(v, ["doruid", "adj", "doruid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cuimbre", "adj", "cuimbre", "", "", "", "inflection of cumbair"]) + let v = native_list_append(v, ["firién", "adj", "firién", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fírién", "adj", "fírién", "", "fíriéin", "", "alternative form of"]) + let v = native_list_append(v, ["miniu", "adj", "miniu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["déniu", "adj", "déniu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["toísigiu", "adj", "toísigiu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["dánu", "adj", "dánu", "", "", "", "inflection of dánae"]) + let v = native_list_append(v, ["díadae", "adj", "díadae", "", "díadai", "", "godly divine"]) + let v = native_list_append(v, ["díadai", "adj", "díadai", "", "", "", "inflection of díadae"]) + let v = native_list_append(v, ["díadi", "adj", "díadi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["domundae", "adj", "domundae", "", "domundai", "", "worldly"]) + let v = native_list_append(v, ["domunde", "adj", "domunde", "", "domundi", "", "alternative spelling of"]) + let v = native_list_append(v, ["dédenach", "adj", "dédenach", "", "dédenaig", "", "last final"]) + let v = native_list_append(v, ["ainb", "adj", "ainb", "", "ainbe", "", "ignorant"]) + let v = native_list_append(v, ["ancretmech", "adj", "ancretmech", "", "ancretmig", "", "unbelieving"]) + let v = native_list_append(v, ["ancretmiuch", "adj", "ancretmiuch", "", "", "", "masculine/neuter dative singular"]) + let v = native_list_append(v, ["nnoíb", "adj", "nnoíb", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ingor", "adj", "ingor", "", "ingoir", "", "impious"]) + let v = native_list_append(v, ["ingoir", "adj", "ingoir", "", "", "", "inflection of ingor"]) + let v = native_list_append(v, ["duib", "adj", "duib", "", "", "", "inflection of dub"]) + let v = native_list_append(v, ["daill", "adj", "daill", "", "", "", "inflection of dall"]) + let v = native_list_append(v, ["todochaide", "adj", "todochaide", "", "todochaidi", "", "future"]) + let v = native_list_append(v, ["todochidi", "adj", "todochidi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["todochaidi", "adj", "todochaidi", "", "", "", "inflection of todochaide"]) + let v = native_list_append(v, ["madae", "adj", "madae", "", "madai", "", "vain pointless futile"]) + let v = native_list_append(v, ["madach", "adj", "madach", "", "madaig", "", "vain pointless futile"]) + let v = native_list_append(v, ["utmall", "adj", "utmall", "", "utmaill", "", "unstable fickle"]) + let v = native_list_append(v, ["nuíde", "adj", "nuíde", "nuídem", "nuídi", "", "newish novel"]) + let v = native_list_append(v, ["airdbide", "adj", "airdbide", "", "airdbidi", "", "past participle of"]) + let v = native_list_append(v, ["menic", "adj", "meinciu", "", "mence", "", "frequent often"]) + let v = native_list_append(v, ["inun", "adj", "inun", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-inun", "adj", "n-inun", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["lobur", "adj", "lobru", "", "lobrae", "", "feeble"]) + let v = native_list_append(v, ["frecndirc", "adj", "frecndirc", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["frecndirci", "adj", "frecndirci", "", "", "", "masculine/feminine/neuter nominative/vocative/accusative plu"]) + let v = native_list_append(v, ["cotarsne", "adj", "cotarsne", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chotarsne", "adj", "chotarsne", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chlé", "adj", "chlé", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chiúin", "adj", "chiúin", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["n-il", "adj", "n-il", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["comroircnech", "adj", "comroircnech", "", "comroircnig", "", "erroneous"]) + let v = native_list_append(v, ["tírim", "adj", "tírim", "", "tírmae", "", "dry parched"]) + let v = native_list_append(v, ["grécdae", "adj", "grécdae", "", "grécdai", "", "Greek"]) + let v = native_list_append(v, ["sesc", "adj", "sesc", "", "seisc", "", "barren infertile"]) + let v = native_list_append(v, ["trócar", "adj", "trócar", "", "trócair", "", "merciful"]) + let v = native_list_append(v, ["cíar", "adj", "cíar", "", "céir", "", "murky dark gloomy"]) + let v = native_list_append(v, ["innonn", "adj", "innonn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mboicht", "adj", "mboicht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["chían", "adj", "chían", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["Latinndaib", "adj", "Latinndaib", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["Laitindae", "adj", "Laitindae", "", "Laitindai", "", "Latin pertaining to"]) + let v = native_list_append(v, ["Latinnda", "adj", "Latinnda", "", "Latinndai", "", "alternative form of"]) + let v = native_list_append(v, ["inmedónach", "adj", "inmedónach", "", "inmedónaig", "", "internal"]) + let v = native_list_append(v, ["n-inmedónach", "adj", "n-inmedónach", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["sechmadachtae", "adj", "sechmadachtae", "", "sechmadachtai", "", "past of the"]) + let v = native_list_append(v, ["déeid", "adj", "déeid", "", "déeide", "", "idle"]) + let v = native_list_append(v, ["Égiptacdae", "adj", "Égiptacdae", "", "Égiptacdai", "", "Egyptian"]) + let v = native_list_append(v, ["Ǽgeptacdae", "adj", "Ǽgeptacdae", "", "Ǽgeptacdai", "", "alternative form of"]) + let v = native_list_append(v, ["Ǽgeptacdu", "adj", "Ǽgeptacdu", "", "", "", "inflection of Ǽgeptacdae"]) + let v = native_list_append(v, ["lígdae", "adj", "lígdae", "", "lígdai", "", "brilliant lustrous"]) + let v = native_list_append(v, ["cotarsnaib", "adj", "cotarsnaib", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["cerr", "adj", "cerr", "", "", "", "crooked maimed"]) + let v = native_list_append(v, ["coitchen", "adj", "coitchen", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["n-uilc", "adj", "n-uilc", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["coíl", "adj", "coíl", "", "coíle", "", "thin slender narrow"]) + let v = native_list_append(v, ["marbaib", "adj", "marbaib", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["n-aili", "adj", "n-aili", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["lesc", "adj", "lesc", "", "leisc", "", "lazy"]) + let v = native_list_append(v, ["súaignid", "adj", "súaignid", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["gáetha", "adj", "gáetha", "", "", "", "inflection of gáeth"]) + let v = native_list_append(v, ["gaítha", "adj", "gaítha", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["noib", "adj", "noib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cruind", "adj", "cruind", "", "cruinde", "", "round circular or"]) + let v = native_list_append(v, ["réid", "adj", "réid", "", "réide", "", "level smooth"]) + let v = native_list_append(v, ["ingnad", "adj", "ingnad", "", "ingnaid", "", "strange unusual unfamiliar"]) + let v = native_list_append(v, ["apaig", "adj", "apaig", "", "aipche", "", "ripe ready for"]) + let v = native_list_append(v, ["cumbair", "adj", "cumbair", "", "cuimbre", "", "short brief concise"]) + let v = native_list_append(v, ["crúaid", "adj", "crúaid", "", "crúaide", "", "hard"]) + let v = native_list_append(v, ["tarrach", "adj", "tarrach", "", "", "", "fearful"]) + let v = native_list_append(v, ["séim", "adj", "séim", "", "séime", "", "thin"]) + let v = native_list_append(v, ["léith", "adj", "léith", "", "", "", "inflection of líath"]) + let v = native_list_append(v, ["bibdu", "adj", "bibdu", "", "", "", "guilty"]) + let v = native_list_append(v, ["bibdaid", "adj", "bibdaid", "", "", "", "nominative plural of"]) + let v = native_list_append(v, ["mbocht", "adj", "mbocht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["baccach", "adj", "baccach", "", "baccaig", "", "lame"]) + let v = native_list_append(v, ["cennais", "adj", "cennais", "", "cense", "", "gentle"]) + let v = native_list_append(v, ["ecal", "adj", "ecal", "eclam", "ecil", "", "fearful timid"]) + let v = native_list_append(v, ["dánae", "adj", "dánae", "", "dánai", "", "bold courageous brave"]) + let v = native_list_append(v, ["cubaid", "adj", "cubaithiu", "", "cuibde", "", "harmonious in agreement"]) + let v = native_list_append(v, ["n-airde", "adj", "n-airde", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["Acrisióndaib", "adj", "Acrisióndaib", "", "Acrisión­dae", "", "Acrisian descended from"]) + let v = native_list_append(v, ["macdacht", "adj", "macdacht", "", "", "", "of marriageable age"]) + let v = native_list_append(v, ["mrecht", "adj", "mrecht", "", "mricht", "", "variegated"]) + let v = native_list_append(v, ["tuidmide", "adj", "tuidmide", "", "tuidmidi", "", "fixed"]) + let v = native_list_append(v, ["airdairc", "adj", "airdarcu", "", "airdarcae", "", "obvious evident"]) + let v = native_list_append(v, ["saidbir", "adj", "saidbir", "", "saidbre", "", "rich wealthy"]) + let v = native_list_append(v, ["deolaid", "adj", "deolaid", "", "deoltae", "", "gratuitous"]) + let v = native_list_append(v, ["sonairt", "adj", "sonartu", "sonartam", "sonartae", "", "strong"]) + let v = native_list_append(v, ["énairt", "adj", "énartu", "", "énartae", "", "weak"]) + let v = native_list_append(v, ["sochrud", "adj", "sochrud", "", "sochruid", "", "honorable dignified"]) + let v = native_list_append(v, ["donae", "adj", "donae", "", "donai", "", "bad unfortunate"]) + let v = native_list_append(v, ["sonae", "adj", "sonae", "", "sonai", "", "happy fortunate"]) + let v = native_list_append(v, ["sulbair", "adj", "sulbair", "", "sulbaire", "", "eloquent well-spoken"]) + let v = native_list_append(v, ["úaisliu", "adj", "úaisliu", "", "", "", "comparative degree of"]) + let v = native_list_append(v, ["húaisliu", "adj", "húaisliu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lérithir", "adj", "lérithir", "", "", "", "equative of léir"]) + let v = native_list_append(v, ["imlán", "adj", "imlán", "", "imláin", "", "whole entire"]) + let v = native_list_append(v, ["donaib", "adj", "donaib", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["trúag", "adj", "trúag", "", "trúaig", "", "wretched miserable pitiable"]) + let v = native_list_append(v, ["tróg", "adj", "tróg", "", "tróig", "", "early form of"]) + let v = native_list_append(v, ["bochta", "adj", "bochta", "", "", "", "inflection of bocht"]) + let v = native_list_append(v, ["fa", "conj", "fa", "", "", "", "or"]) + let v = native_list_append(v, ["os", "conj", "os", "", "", "", "disjunctive conjunction"]) + let v = native_list_append(v, ["ci", "conj", "ci", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["air", "conj", "air", "", "", "", "for because since"]) + let v = native_list_append(v, ["ba", "conj", "ba", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dia", "conj", "dia", "", "", "", "when"]) + let v = native_list_append(v, ["act", "conj", "act", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["con", "conj", "con", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ol", "conj", "ol", "", "", "", "because since"]) + let v = native_list_append(v, ["na", "conj", "na", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ar", "conj", "ar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["co", "conj", "co", "", "", "", "until"]) + let v = native_list_append(v, ["ce", "conj", "ce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ho", "conj", "ho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["acht", "conj", "acht", "", "", "", "but"]) + let v = native_list_append(v, ["ma", "conj", "ma", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ɔ", "conj", "ɔ", "", "", "", "abbreviation of co"]) + let v = native_list_append(v, ["⁊", "conj", "⁊", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["lase", "conj", "lase", "", "", "", "when while"]) + let v = native_list_append(v, ["fib", "conj", "fib", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bá", "conj", "bá", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mani", "conj", "mani", "", "", "", "if…not unless"]) + let v = native_list_append(v, ["ara", "conj", "ara", "", "", "", "so that"]) + let v = native_list_append(v, ["fá", "conj", "fá", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hore", "conj", "hore", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["noch", "conj", "noch", "", "", "", "but however and"]) + let v = native_list_append(v, ["ó", "conj", "ó", "", "", "", "since with preterite"]) + let v = native_list_append(v, ["hó", "conj", "hó", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dég", "conj", "dég", "", "", "", "because since"]) + let v = native_list_append(v, ["ná", "conj", "ná", "", "", "", "or nor"]) + let v = native_list_append(v, ["lasse", "conj", "lasse", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sech", "conj", "sech", "", "", "", "yet although"]) + let v = native_list_append(v, ["no", "conj", "no", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["má", "conj", "má", "", "", "", "if"]) + let v = native_list_append(v, ["nú", "conj", "nú", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["coni", "conj", "coni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nó", "conj", "nó", "", "", "", "or"]) + let v = native_list_append(v, ["arna", "conj", "arna", "", "", "", "so that …"]) + let v = native_list_append(v, ["cona", "conj", "cona", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cía", "conj", "cía", "", "", "", "although"]) + let v = native_list_append(v, ["ocus", "conj", "ocus", "", "", "", "and"]) + let v = native_list_append(v, ["úa", "conj", "úa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amail", "conj", "amail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assa", "conj", "assa", "", "", "", "Added between two"]) + let v = native_list_append(v, ["indas", "conj", "indas", "", "", "", "how"]) + let v = native_list_append(v, ["cia", "conj", "cia", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["hóre", "conj", "hóre", "", "", "", "because since"]) + let v = native_list_append(v, ["ꝉ", "conj", "ꝉ", "", "", "", "scribal abbreviation of"]) + let v = native_list_append(v, ["amal", "conj", "amal", "", "", "", "as like"]) + let v = native_list_append(v, ["immar", "conj", "immar", "", "", "", "like as"]) + let v = native_list_append(v, ["-ch-", "conj", "-ch-", "", "", "", "and used to"]) + let v = native_list_append(v, ["in tan", "conj", "in tan", "", "", "", "when"]) + let v = native_list_append(v, ["fo chosmailius", "conj", "fo chosmailius", "", "", "", "like as"]) + let v = native_list_append(v, ["húare", "conj", "húare", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ní hed a méit", "conj", "ní hed a méit", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ní ed a méit", "conj", "ní ed a méit", "", "", "", "not only"]) + let v = native_list_append(v, ["huare", "conj", "huare", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["coní", "conj", "coní", "", "", "", "so that…not lest"]) + let v = native_list_append(v, ["isindí", "conj", "isindí", "", "", "", "in that since"]) + let v = native_list_append(v, ["in tain", "conj", "in tain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arnach-", "conj", "arnach-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["resíu", "conj", "resíu", "", "", "", "before"]) + let v = native_list_append(v, ["iarsindí", "conj", "iarsindí", "", "", "", "after"]) + let v = native_list_append(v, ["céin", "conj", "céin", "", "", "", "since as long"]) + let v = native_list_append(v, ["cid ara", "conj", "cid ara", "", "", "", "why?"]) + let v = native_list_append(v, ["duús in", "conj", "duús in", "", "", "", "if by chance"]) + let v = native_list_append(v, ["risíu", "conj", "risíu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fo bíthin", "conj", "fo bíthin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arindí", "conj", "arindí", "", "", "", "because since"]) + let v = native_list_append(v, ["fo bíth", "conj", "fo bíth", "", "", "", "because since"]) + let v = native_list_append(v, ["ɔna", "conj", "ɔna", "", "", "", "abbreviation of conna"]) + let v = native_list_append(v, ["conna", "conj", "conna", "", "", "", "so that…not lest"]) + let v = native_list_append(v, ["dús in", "conj", "dús in", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["lassaní", "conj", "lassaní", "", "", "", "when"]) + let v = native_list_append(v, ["feib", "conj", "feib", "", "", "", "as just as"]) + let v = native_list_append(v, ["a/languages M to Z", "conj", "a/languages M to Z", "", "", "", "when"]) + let v = native_list_append(v, ["airindí", "conj", "airindí", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["a-", "other", "a-", "", "", "", "him triggers eclipsis"]) + let v = native_list_append(v, ["tri", "other", "tri", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-um", "other", "-um", "", "", "", "me"]) + let v = native_list_append(v, ["in-", "other", "in-", "", "", "", "in"]) + let v = native_list_append(v, ["da", "other", "da", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["di", "other", "di", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["com-", "other", "com-", "", "", "", "with con- co-"]) + let v = native_list_append(v, ["an-", "other", "an-", "", "", "", "un- not"]) + let v = native_list_append(v, ["for-", "other", "for-", "", "", "", "over-"]) + let v = native_list_append(v, ["-ed", "other", "-ed", "", "", "", "slender form of"]) + let v = native_list_append(v, ["-a", "other", "-a", "", "", "", "forms the comparative"]) + let v = native_list_append(v, ["ɔ", "other", "ɔ", "", "", "", "abbreviation of com-"]) + let v = native_list_append(v, ["e-", "other", "e-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ni", "other", "-ni", "", "", "", "1st person plural"]) + let v = native_list_append(v, ["-id", "other", "-id", "", "", "", "Forms a noun"]) + let v = native_list_append(v, ["-u", "other", "-u", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-da", "other", "-da", "", "", "", "variant form of"]) + let v = native_list_append(v, ["-si", "other", "-si", "", "", "", "her emphatic"]) + let v = native_list_append(v, ["s-", "other", "s-", "", "", "", "her object pronoun"]) + let v = native_list_append(v, ["ad-", "other", "ad-", "", "", "", "to towards"]) + let v = native_list_append(v, ["-as", "other", "-as", "", "", "", "Nominal suffix used"]) + let v = native_list_append(v, ["-e", "other", "-e", "", "", "", "Forms concrete or"]) + let v = native_list_append(v, ["-i", "other", "-i", "", "", "", "him"]) + let v = native_list_append(v, ["-us", "other", "-us", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ad", "other", "-ad", "", "", "", "suffix forming verbal"]) + let v = native_list_append(v, ["sé", "other", "sé", "", "", "", "six"]) + let v = native_list_append(v, ["én", "other", "én", "", "", "", "lo!"]) + let v = native_list_append(v, ["cet", "other", "cet", "", "", "", "I agree permission"]) + let v = native_list_append(v, ["fon", "other", "fon", "", "", "", "contraction of fo"]) + let v = native_list_append(v, ["-ide", "other", "-ide", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sam", "other", "-sam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-am", "other", "-am", "", "", "", "broad form of"]) + let v = native_list_append(v, ["to-", "other", "to-", "", "", "", "prefix used to"]) + let v = native_list_append(v, ["fiche", "other", "fiche", "", "", "", "twenty"]) + let v = native_list_append(v, ["fuit", "other", "fuit", "", "", "", "brr! used to"]) + let v = native_list_append(v, ["tria", "other", "tria", "", "", "", "contraction of tri"]) + let v = native_list_append(v, ["fae", "other", "fae", "", "", "", "woe!"]) + let v = native_list_append(v, ["fria", "other", "fria", "", "", "", "contraction of fri"]) + let v = native_list_append(v, ["dá", "other", "dá", "", "", "", "two"]) + let v = native_list_append(v, ["dí", "other", "dí", "", "", "", "feminine nominative/accusative of"]) + let v = native_list_append(v, ["do-", "other", "do-", "", "", "", "impossible extremely difficult"]) + let v = native_list_append(v, ["ban-", "other", "ban-", "", "", "", "A prefix appended"]) + let v = native_list_append(v, ["-ach", "other", "-ach", "", "", "", "Forms adjectives meaning"]) + let v = native_list_append(v, ["no-", "other", "no-", "", "", "", "Used to support"]) + let v = native_list_append(v, ["da-", "other", "da-", "", "", "", "her object pronoun"]) + let v = native_list_append(v, ["thri", "other", "thri", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["-aire", "other", "-aire", "", "", "", "Agentive affix similar"]) + let v = native_list_append(v, ["-ne", "other", "-ne", "", "", "", "Forms singulatives of"]) + let v = native_list_append(v, ["-isse", "other", "-isse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-it", "other", "-it", "", "", "", "him"]) + let v = native_list_append(v, ["míle", "other", "míle", "", "", "", "thousand"]) + let v = native_list_append(v, ["n-", "other", "n-", "", "", "", "us"]) + let v = native_list_append(v, ["deich", "other", "deich", "", "", "", "ten"]) + let v = native_list_append(v, ["trí", "other", "trí", "", "", "", "three"]) + let v = native_list_append(v, ["dam-", "other", "dam-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-m", "other", "-m", "", "", "", "Forms verbal nouns"]) + let v = native_list_append(v, ["ocht", "other", "ocht", "", "", "", "eight"]) + let v = native_list_append(v, ["-em", "other", "-em", "", "", "", "Forms occupational nouns."]) + let v = native_list_append(v, ["-l", "other", "-l", "", "", "", "Forms verbal nouns"]) + let v = native_list_append(v, ["cona", "other", "cona", "", "", "", "contraction of co"]) + let v = native_list_append(v, ["oín", "other", "oín", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frit", "other", "frit", "", "", "", "contraction of fri"]) + let v = native_list_append(v, ["so-", "other", "so-", "", "", "", "good excellent"]) + let v = native_list_append(v, ["ath-", "other", "ath-", "", "", "", "broad form of"]) + let v = native_list_append(v, ["od-", "other", "od-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sa", "other", "-sa", "", "", "", "emphatic first-person singular"]) + let v = native_list_append(v, ["-se", "other", "-se", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-de", "other", "-de", "", "", "", "used to form"]) + let v = native_list_append(v, ["-aid", "other", "-aid", "", "", "", "forms class A"]) + let v = native_list_append(v, ["nu-", "other", "nu-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sum", "other", "-sum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-aige", "other", "-aige", "", "", "", "Forms nouns from"]) + let v = native_list_append(v, ["ar-", "other", "ar-", "", "", "", "pretonic of air-"]) + let v = native_list_append(v, ["é-", "other", "é-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cethair", "other", "cethair", "", "", "", "four"]) + let v = native_list_append(v, ["noí", "other", "noí", "", "", "", "nine"]) + let v = native_list_append(v, ["cét", "other", "cét", "", "", "", "hundred"]) + let v = native_list_append(v, ["-sni", "other", "-sni", "", "", "", "1st person plural"]) + let v = native_list_append(v, ["cóic", "other", "cóic", "", "", "", "five"]) + let v = native_list_append(v, ["mí-", "other", "mí-", "", "", "", "evil ill sinister"]) + let v = native_list_append(v, ["-rad", "other", "-rad", "", "", "", "Forms collective nouns"]) + let v = native_list_append(v, ["secht", "other", "secht", "", "", "", "seven"]) + let v = native_list_append(v, ["-án", "other", "-án", "", "", "", "diminutive suffix"]) + let v = native_list_append(v, ["-acht", "other", "-acht", "", "", "", "-ness -hood forms"]) + let v = native_list_append(v, ["fo-", "other", "fo-", "", "", "", "sub- under-"]) + let v = native_list_append(v, ["-ecán", "other", "-ecán", "", "", "", "Form of -acán"]) + let v = native_list_append(v, ["-acán", "other", "-acán", "", "", "", "A double diminutive"]) + let v = native_list_append(v, ["ro-", "other", "ro-", "", "", "", "indicates anterior completion"]) + let v = native_list_append(v, ["-ec", "other", "-ec", "", "", "", "Forms verbal nouns"]) + let v = native_list_append(v, ["prím-", "other", "prím-", "", "", "", "first in time"]) + let v = native_list_append(v, ["-amail", "other", "-amail", "", "", "", "-like used to"]) + let v = native_list_append(v, ["-óc", "other", "-óc", "", "", "", "Diminutive suffix."]) + let v = native_list_append(v, ["dí-", "other", "dí-", "", "", "", "of from"]) + let v = native_list_append(v, ["-eóc", "other", "-eóc", "", "", "", "Form of -óc"]) + let v = native_list_append(v, ["frith-", "other", "frith-", "", "", "", "counter- beside against"]) + let v = native_list_append(v, ["t-", "other", "t-", "", "", "", "you singular object"]) + let v = native_list_append(v, ["bith-", "other", "bith-", "", "", "", "ever- constant"]) + let v = native_list_append(v, ["-som", "other", "-som", "", "", "", "emphatic suffix of"]) + let v = native_list_append(v, ["-sc", "other", "-sc", "", "", "", "Forms verbal nouns"]) + let v = native_list_append(v, ["-iu", "other", "-iu", "", "", "", "Used to form"]) + let v = native_list_append(v, ["-én", "other", "-én", "", "", "", "Form of -án"]) + let v = native_list_append(v, ["óen", "other", "óen", "", "", "", "one"]) + let v = native_list_append(v, ["ni-", "other", "ni-", "", "", "", "down"]) + let v = native_list_append(v, ["su-", "other", "su-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["m-", "other", "m-", "", "", "", "me"]) + let v = native_list_append(v, ["derb-", "other", "derb-", "", "", "", "surely really truly"]) + let v = native_list_append(v, ["dob-", "other", "dob-", "", "", "", "you plural object"]) + let v = native_list_append(v, ["aith-", "other", "aith-", "", "", "", "re-"]) + let v = native_list_append(v, ["nd-", "other", "nd-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sine", "other", "-sine", "", "", "", "Forms abstract nouns"]) + let v = native_list_append(v, ["-mar", "other", "-mar", "", "", "", "generates adjectives from"]) + let v = native_list_append(v, ["der-", "other", "der-", "", "", "", "very intensifying prefix"]) + let v = native_list_append(v, ["-su", "other", "-su", "", "", "", "second-person singular emphatic"]) + let v = native_list_append(v, ["d-", "other", "d-", "", "", "", "him triggers nasalization"]) + let v = native_list_append(v, ["-tu", "other", "-tu", "", "", "", "-ness -ity"]) + let v = native_list_append(v, ["am-", "other", "am-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-acha", "other", "-acha", "", "", "", "inflection of -ach"]) + let v = native_list_append(v, ["nda", "other", "nda", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["did-", "other", "did-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dom-", "other", "dom-", "", "", "", "me myself"]) + let v = native_list_append(v, ["fu acis", "other", "fu acis", "", "", "", "under pretense under"]) + let v = native_list_append(v, ["dot-", "other", "dot-", "", "", "", "thee you singular"]) + let v = native_list_append(v, ["dan-", "other", "dan-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["don-", "other", "don-", "", "", "", "us"]) + let v = native_list_append(v, ["id-", "other", "id-", "", "", "", "him triggers nasalization"]) + let v = native_list_append(v, ["ind-", "other", "ind-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nócha", "other", "nócha", "", "", "", "ninety"]) + let v = native_list_append(v, ["-ut", "other", "-ut", "", "", "", "you accusative singular"]) + let v = native_list_append(v, ["-so", "other", "-so", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trícho", "other", "trícho", "", "", "", "thirty"]) + let v = native_list_append(v, ["cethorcho", "other", "cethorcho", "", "", "", "forty"]) + let v = native_list_append(v, ["coíca", "other", "coíca", "", "", "", "fifty"]) + let v = native_list_append(v, ["sesca", "other", "sesca", "", "", "", "sixty"]) + let v = native_list_append(v, ["sechtmoga", "other", "sechtmoga", "", "", "", "seventy"]) + let v = native_list_append(v, ["ochtmoga", "other", "ochtmoga", "", "", "", "eighty"]) + let v = native_list_append(v, ["etar-", "other", "etar-", "", "", "", "between"]) + let v = native_list_append(v, ["ess-", "other", "ess-", "", "", "", "ex- out"]) + let v = native_list_append(v, ["-echt", "other", "-echt", "", "", "", "Form of -acht"]) + let v = native_list_append(v, ["-ech", "other", "-ech", "", "", "", "Form of -ach"]) + let v = native_list_append(v, ["-traige", "other", "-traige", "", "", "", "Forms nouns indicating"]) + let v = native_list_append(v, ["dub-", "other", "dub-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dat-", "other", "dat-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imb-", "other", "imb-", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-nai", "other", "-nai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-igidir", "other", "-igidir", "", "", "", "a suffix used"]) + let v = native_list_append(v, ["-igid", "other", "-igid", "", "", "", "non-deponent form of"]) + let v = native_list_append(v, ["uss-", "other", "uss-", "", "", "", "up off"]) + let v = native_list_append(v, ["b-", "other", "b-", "", "", "", "you plural object"]) + let v = native_list_append(v, ["gú-", "other", "gú-", "", "", "", "false fraudulent"]) + let v = native_list_append(v, ["isind", "other", "isind", "", "", "", "contraction of hi"]) + let v = native_list_append(v, ["du-", "other", "du-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-dae", "other", "-dae", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-siu", "other", "-siu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tan-", "other", "tan-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ib", "other", "-ib", "", "", "", "forms the dative"]) + let v = native_list_append(v, ["ar súil", "other", "ar súil", "", "", "", "seen visible"]) + let v = native_list_append(v, ["neph-", "other", "neph-", "", "", "", "not non- un-"]) + let v = native_list_append(v, ["isna", "other", "isna", "", "", "", "contraction of hi"]) + let v = native_list_append(v, ["-ud", "other", "-ud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cét-", "other", "cét-", "", "", "", "first"]) + let v = native_list_append(v, ["ceta-", "other", "ceta-", "", "", "", "pretonic form of"]) + let v = native_list_append(v, ["as-", "other", "as-", "", "", "", "pretonic form of"]) + let v = native_list_append(v, ["⁊rl.", "other", "⁊rl.", "", "", "", "etc."]) + let v = native_list_append(v, ["fris-", "other", "fris-", "", "", "", "pretonic form of"]) + let v = native_list_append(v, ["imm-", "other", "imm-", "", "", "", "around about"]) + let v = native_list_append(v, ["imme-", "other", "imme-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ní anse", "other", "ní anse", "", "", "", "Introduces an explanatory"]) + let v = native_list_append(v, ["trisin", "other", "trisin", "", "", "", "contraction of tre"]) + let v = native_list_append(v, ["sech is", "other", "sech is", "", "", "", "that is namely"]) + let v = native_list_append(v, ["dag-", "other", "dag-", "", "", "", "good"]) + let v = native_list_append(v, ["deac", "other", "deac", "", "", "", "-teen"]) + let v = native_list_append(v, ["deec", "other", "deec", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tre-", "other", "tre-", "", "", "", "through-"]) + let v = native_list_append(v, ["rem-", "other", "rem-", "", "", "", "pre- fore- before"]) + let v = native_list_append(v, ["oss-", "other", "oss-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dab-", "other", "dab-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nno-", "other", "nno-", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-gaire", "other", "-gaire", "", "", "", "forms verbal nouns"]) + let v = native_list_append(v, ["íarm-", "other", "íarm-", "", "", "", "post- after-"]) + let v = native_list_append(v, ["asa-", "other", "asa-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cita-", "other", "cita-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["donaibhí", "other", "donaibhí", "", "", "", "contraction of do"]) + let v = native_list_append(v, ["ndá", "other", "ndá", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["foruimi cenn for", "other", "foruimi cenn for", "", "", "", "to put an"]) + let v = native_list_append(v, ["fua n-indas sin", "other", "fua n-indas sin", "", "", "", "in that way"]) + let v = native_list_append(v, ["cach la céin", "other", "cach la céin", "", "", "", "at the one"]) + let v = native_list_append(v, ["in céin n-aili", "other", "in céin n-aili", "", "", "", "at another time"]) + let v = native_list_append(v, ["thrí", "other", "thrí", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["-unn", "other", "-unn", "", "", "", "us"]) + let v = native_list_append(v, ["dut-", "other", "dut-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dun-", "other", "dun-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dit-", "other", "dit-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-uib", "other", "-uib", "", "", "", "you accusative plural"]) + let v = native_list_append(v, ["-sem", "other", "-sem", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-sium", "other", "-sium", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-mad", "other", "-mad", "", "", "", "-th suffix forming"]) + let v = native_list_append(v, ["cach la sel", "other", "cach la sel", "", "", "", "at one time"]) + let v = native_list_append(v, ["-ugud", "other", "-ugud", "", "", "", "forms verbal nouns"]) + let v = native_list_append(v, ["-lach", "other", "-lach", "", "", "", "indicates a location"]) + let v = native_list_append(v, ["tremi-", "other", "tremi-", "", "", "", "Pretonic form of"]) + let v = native_list_append(v, ["tairm-", "other", "tairm-", "", "", "", "across trans-"]) + let v = native_list_append(v, ["tarmi-", "other", "tarmi-", "", "", "", "Pretonic form of"]) + let v = native_list_append(v, ["hi suidiu", "other", "hi suidiu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["i suidiu", "other", "i suidiu", "", "", "", "there"]) + let v = native_list_append(v, ["nach mór", "other", "nach mór", "", "", "", "very little hardly"]) + let v = native_list_append(v, ["-thid", "other", "-thid", "", "", "", "Forms a noun"]) + let v = native_list_append(v, ["air-", "other", "air-", "", "", "", "for- fore-"]) + let v = native_list_append(v, ["teoir", "other", "teoir", "", "", "", "feminine nominative of"]) + let v = native_list_append(v, ["dondí", "other", "dondí", "", "", "", "contraction of do"]) + let v = native_list_append(v, ["-tiu", "other", "-tiu", "", "", "", "forms verbal nouns"]) + let v = native_list_append(v, ["-atóir", "other", "-atóir", "", "", "", "Suffix appended to"]) + let v = native_list_append(v, ["n-ocht", "other", "n-ocht", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["on", "pron", "on", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["de", "pron", "de", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["and", "pron", "and", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["ci", "pron", "ci", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ass", "pron", "ass", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["an", "pron", "an", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tree", "pron", "tree", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["as", "pron", "as", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["son", "pron", "son", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["he", "pron", "he", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["me", "pron", "me", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["do", "pron", "do", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dia", "pron", "dia", "", "", "", "of/from whom/which"]) + let v = native_list_append(v, ["sin", "pron", "sin", "", "", "", "that as a"]) + let v = native_list_append(v, ["lem", "pron", "lem", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["dam", "pron", "dam", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["si", "pron", "si", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ce", "pron", "ce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["es", "pron", "es", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tu", "pron", "tu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["side", "pron", "side", "", "", "", "inflection of suide"]) + let v = native_list_append(v, ["sí", "pron", "sí", "", "", "", "she"]) + let v = native_list_append(v, ["fair", "pron", "fair", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["less", "pron", "less", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ed", "pron", "ed", "", "", "", "it this"]) + let v = native_list_append(v, ["esse", "pron", "esse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["dom", "pron", "dom", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["oca", "pron", "oca", "", "", "", "at which at"]) + let v = native_list_append(v, ["duit", "pron", "duit", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["di", "pron", "di", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cuci", "pron", "cuci", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["ani", "pron", "ani", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["les", "pron", "les", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["fou", "pron", "fou", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["-a", "pron", "-a", "", "", "", "combines with prepositions"]) + let v = native_list_append(v, ["leu", "pron", "leu", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["dun", "pron", "dun", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sib", "pron", "sib", "", "", "", "you nominative plural"]) + let v = native_list_append(v, ["fort", "pron", "fort", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["essi", "pron", "essi", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["huan", "pron", "huan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lee", "pron", "lee", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["cosa", "pron", "cosa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fora", "pron", "fora", "", "", "", "on whom/which"]) + let v = native_list_append(v, ["tú", "pron", "tú", "", "", "", "you singular nominative"]) + let v = native_list_append(v, ["mé", "pron", "mé", "", "", "", "I"]) + let v = native_list_append(v, ["lib", "pron", "lib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["ara", "pron", "ara", "", "", "", "for the sake"]) + let v = native_list_append(v, ["linn", "pron", "linn", "", "", "", "first-person plural of"]) + let v = native_list_append(v, ["á", "pron", "á", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sidi", "pron", "sidi", "", "", "", "inflection of suide"]) + let v = native_list_append(v, ["dé", "pron", "dé", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lat", "pron", "lat", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["é", "pron", "é", "", "", "", "he"]) + let v = native_list_append(v, ["tara", "pron", "tara", "", "", "", "over/across which/whom"]) + let v = native_list_append(v, ["tussu", "pron", "tussu", "", "", "", "you singular informal"]) + let v = native_list_append(v, ["fris", "pron", "fris", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["lenn", "pron", "lenn", "", "", "", "first-person plural of"]) + let v = native_list_append(v, ["hó", "pron", "hó", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["lim", "pron", "lim", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["cene", "pron", "cene", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["sinni", "pron", "sinni", "", "", "", "we"]) + let v = native_list_append(v, ["dunni", "pron", "dunni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["occo", "pron", "occo", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["ní", "pron", "ní", "", "", "", "something anything some"]) + let v = native_list_append(v, ["hé", "pron", "hé", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sude", "pron", "sude", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["chid", "pron", "chid", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["hed", "pron", "hed", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sissi", "pron", "sissi", "", "", "", "you nominative plural"]) + let v = native_list_append(v, ["dí", "pron", "dí", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["dún", "pron", "dún", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fóu", "pron", "fóu", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["fritsu", "pron", "fritsu", "", "", "", "second-person singular emphatic"]) + let v = native_list_append(v, ["airut", "pron", "airut", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["messe", "pron", "messe", "", "", "", "I me"]) + let v = native_list_append(v, ["erro", "pron", "erro", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["indi", "pron", "indi", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["sodin", "pron", "sodin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ón", "pron", "ón", "", "", "", "clitic form of"]) + let v = native_list_append(v, ["dó", "pron", "dó", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["són", "pron", "són", "", "", "", "clitic form of"]) + let v = native_list_append(v, ["nini", "pron", "nini", "", "", "", "we"]) + let v = native_list_append(v, ["aí", "pron", "aí", "", "", "", "his hers theirs"]) + let v = native_list_append(v, ["erum", "pron", "erum", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["féin", "pron", "féin", "", "", "", "self"]) + let v = native_list_append(v, ["dúnn", "pron", "dúnn", "", "", "", "first-person plural of"]) + let v = native_list_append(v, ["frisa", "pron", "frisa", "", "", "", "toward/against/with whom/which"]) + let v = native_list_append(v, ["ind", "pron", "ind", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["forsa", "pron", "forsa", "", "", "", "on whom on"]) + let v = native_list_append(v, ["frit", "pron", "frit", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["cía", "pron", "cía", "", "", "", "who? what?"]) + let v = native_list_append(v, ["innaní", "pron", "innaní", "", "", "", "masculine/feminine/neuter genitive plural"]) + let v = native_list_append(v, ["ninni", "pron", "ninni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["síi", "pron", "síi", "", "", "", "you nominative plural"]) + let v = native_list_append(v, ["cid", "pron", "cid", "", "", "", "what?"]) + let v = native_list_append(v, ["sní", "pron", "sní", "", "", "", "we"]) + let v = native_list_append(v, ["snisni", "pron", "snisni", "", "", "", "we"]) + let v = native_list_append(v, ["úan", "pron", "úan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["úa", "pron", "úa", "", "", "", "from/of/by whom/which"]) + let v = native_list_append(v, ["etir", "pron", "etir", "", "", "", "third-person singular of"]) + let v = native_list_append(v, ["itir", "pron", "itir", "", "", "", "third-person singular of"]) + let v = native_list_append(v, ["úainn", "pron", "úainn", "", "", "", "first-person plural of"]) + let v = native_list_append(v, ["úain", "pron", "úain", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["úann", "pron", "úann", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["erriu", "pron", "erriu", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["ocut", "pron", "ocut", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["tarais", "pron", "tarais", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["cách", "pron", "cách", "", "", "", "everyone"]) + let v = native_list_append(v, ["friss", "pron", "friss", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["occa", "pron", "occa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forna", "pron", "forna", "", "", "", "on whom …"]) + let v = native_list_append(v, ["cenae", "pron", "cenae", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["aní", "pron", "aní", "", "", "", "nominative/accusative singular neuter"]) + let v = native_list_append(v, ["cessin", "pron", "cessin", "", "", "", "self"]) + let v = native_list_append(v, ["fessin", "pron", "fessin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frie", "pron", "frie", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["airi", "pron", "airi", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["immi", "pron", "immi", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["inso", "pron", "inso", "", "", "", "this"]) + let v = native_list_append(v, ["frib", "pron", "frib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["oa", "pron", "oa", "", "", "", "from which"]) + let v = native_list_append(v, ["fua", "pron", "fua", "", "", "", "fo + a"]) + let v = native_list_append(v, ["cia", "pron", "cia", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["a chéile", "pron", "a chéile", "", "", "", "each other one"]) + let v = native_list_append(v, ["cossa", "pron", "cossa", "", "", "", "toward whom toward"]) + let v = native_list_append(v, ["erom", "pron", "erom", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["riam", "pron", "riam", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["ed ón", "pron", "ed ón", "", "", "", "this that"]) + let v = native_list_append(v, ["erut", "pron", "erut", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["foir", "pron", "foir", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["latt", "pron", "latt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["níi", "pron", "níi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["domsa", "pron", "domsa", "", "", "", "first-person singular emphatic"]) + let v = native_list_append(v, ["suide", "pron", "suide", "", "", "", "this"]) + let v = native_list_append(v, ["letha", "pron", "letha", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["dím", "pron", "dím", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["friu", "pron", "friu", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["cach", "pron", "cach", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["impe", "pron", "impe", "", "", "", "third-person singular feminine"]) + let v = native_list_append(v, ["lemm", "pron", "lemm", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["sodain", "pron", "sodain", "", "", "", "nominative/accusative neuter singular"]) + let v = native_list_append(v, ["taí", "pron", "taí", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["friusom", "pron", "friusom", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["suidiu", "pron", "suidiu", "", "", "", "dative singular masculine/neuter"]) + let v = native_list_append(v, ["intí", "pron", "intí", "", "", "", "he who that"]) + let v = native_list_append(v, ["na n-aicci", "pron", "na n-aicci", "", "", "", "third-person plural of"]) + let v = native_list_append(v, ["nech", "pron", "nech", "", "", "", "someone anyone after"]) + let v = native_list_append(v, ["ndo", "pron", "ndo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nduit", "pron", "nduit", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["na ní", "pron", "na ní", "", "", "", "whatever"]) + let v = native_list_append(v, ["na nní", "pron", "na nní", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nní", "pron", "nní", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["remib", "pron", "remib", "", "", "", "third-person plural of"]) + let v = native_list_append(v, ["suidi", "pron", "suidi", "", "", "", "inflection of suide"]) + let v = native_list_append(v, ["neich", "pron", "neich", "", "", "", "genitive singular of"]) + let v = native_list_append(v, ["doib", "pron", "doib", "", "", "", "third-person plural dative"]) + let v = native_list_append(v, ["triunni", "pron", "triunni", "", "", "", "first-person plural emphatic"]) + let v = native_list_append(v, ["dúibsi", "pron", "dúibsi", "", "", "", "second-person plural emphatic"]) + let v = native_list_append(v, ["dúib", "pron", "dúib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["forru", "pron", "forru", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["liunn", "pron", "liunn", "", "", "", "first-person plural of"]) + let v = native_list_append(v, ["húa", "pron", "húa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["immib", "pron", "immib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["diib", "pron", "diib", "", "", "", "third-person plural dative"]) + let v = native_list_append(v, ["indhí", "pron", "indhí", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["indí", "pron", "indí", "", "", "", "inflection of intí"]) + let v = native_list_append(v, ["úadisi", "pron", "úadisi", "", "", "", "third-person feminine singular"]) + let v = native_list_append(v, ["uadisi", "pron", "uadisi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["íarum", "pron", "íarum", "", "", "", "masculine third-person singular"]) + let v = native_list_append(v, ["iarum", "pron", "iarum", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dosom", "pron", "dosom", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["intísiu", "pron", "intísiu", "", "", "", "this this one"]) + let v = native_list_append(v, ["anísiu", "pron", "anísiu", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["anisiu", "pron", "anisiu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["túsu", "pron", "túsu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["libsi", "pron", "libsi", "", "", "", "second-person plural emphatic"]) + let v = native_list_append(v, ["fuirib", "pron", "fuirib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["duibsi", "pron", "duibsi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nach aile", "pron", "nach aile", "", "", "", "someone else"]) + let v = native_list_append(v, ["isindi", "pron", "isindi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["isindí", "pron", "isindí", "", "", "", "in him/her who"]) + let v = native_list_append(v, ["samlaid", "pron", "samlaid", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["samlid", "pron", "samlid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cáich", "pron", "cáich", "", "", "", "genitive of cách"]) + let v = native_list_append(v, ["cenaib", "pron", "cenaib", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["chach", "pron", "chach", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["chách", "pron", "chách", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["leosom", "pron", "leosom", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["etarru", "pron", "etarru", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["dait", "pron", "dait", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["foraib", "pron", "foraib", "", "", "", "third-person plural dative"]) + let v = native_list_append(v, ["dúnni", "pron", "dúnni", "", "", "", "first-person plural emphatic"]) + let v = native_list_append(v, ["dindí", "pron", "dindí", "", "", "", "of/from him/her who"]) + let v = native_list_append(v, ["tarm chenn", "pron", "tarm chenn", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["úait", "pron", "úait", "", "", "", "second-person singular of"]) + let v = native_list_append(v, ["innahí", "pron", "innahí", "", "", "", "inflection of intí"]) + let v = native_list_append(v, ["hésom", "pron", "hésom", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ésom", "pron", "ésom", "", "", "", "emphatic of é"]) + let v = native_list_append(v, ["détso", "pron", "détso", "", "", "", "second-person singular emphatic"]) + let v = native_list_append(v, ["nahísiu", "pron", "nahísiu", "", "", "", "inflection of intísiu"]) + let v = native_list_append(v, ["fadesin", "pron", "fadesin", "", "", "", "synonym of féin"]) + let v = native_list_append(v, ["leusom", "pron", "leusom", "", "", "", "third-person plural accusative"]) + let v = native_list_append(v, ["n-aí", "pron", "n-aí", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["cucci", "pron", "cucci", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["intísin", "pron", "intísin", "", "", "", "that that one"]) + let v = native_list_append(v, ["anisin", "pron", "anisin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["anísin", "pron", "anísin", "", "", "", "neuter nominative/accusative singular"]) + let v = native_list_append(v, ["limm", "pron", "limm", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["friumm", "pron", "friumm", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["ndam", "pron", "ndam", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["dúun", "pron", "dúun", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dúbsi", "pron", "dúbsi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dinni", "pron", "dinni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dínni", "pron", "dínni", "", "", "", "first-person plural emphatic"]) + let v = native_list_append(v, ["cucuibsi", "pron", "cucuibsi", "", "", "", "second-person plural emphatic"]) + let v = native_list_append(v, ["doibsom", "pron", "doibsom", "", "", "", "third-person plural emphatic"]) + let v = native_list_append(v, ["nach oín", "pron", "nach oín", "", "", "", "anyone"]) + let v = native_list_append(v, ["indiutsiu", "pron", "indiutsiu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["indiutsu", "pron", "indiutsu", "", "", "", "second-person singular emphatic"]) + let v = native_list_append(v, ["frinn", "pron", "frinn", "", "", "", "first-person plural of"]) + let v = native_list_append(v, ["fesine", "pron", "fesine", "", "", "", "inflection of féin"]) + let v = native_list_append(v, ["neuch", "pron", "neuch", "", "", "", "dative singular of"]) + let v = native_list_append(v, ["díimsa", "pron", "díimsa", "", "", "", "first-person singular emphatic"]) + let v = native_list_append(v, ["fíadib", "pron", "fíadib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["dar far cenn", "pron", "dar far cenn", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["dara n-ési", "pron", "dara n-ési", "", "", "", "third-person plural of"]) + let v = native_list_append(v, ["lesom", "pron", "lesom", "", "", "", "third-person singular accusative"]) + let v = native_list_append(v, ["insin", "pron", "insin", "", "", "", "that"]) + let v = native_list_append(v, ["triit", "pron", "triit", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["lium", "pron", "lium", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["suidib", "pron", "suidib", "", "", "", "masculine/feminine/neuter dative plural"]) + let v = native_list_append(v, ["duib", "pron", "duib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dara chenn", "pron", "dara chenn", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["húaibsi", "pron", "húaibsi", "", "", "", "second-person plural emphatic"]) + let v = native_list_append(v, ["daitsiu", "pron", "daitsiu", "", "", "", "second-person singular epmh"]) + let v = native_list_append(v, ["húaim", "pron", "húaim", "", "", "", "first-person singular of"]) + let v = native_list_append(v, ["alaile", "pron", "alaile", "", "", "", "another the other"]) + let v = native_list_append(v, ["alaili", "pron", "alaili", "", "", "", "inflection of alaile"]) + let v = native_list_append(v, ["dunaibhí", "pron", "dunaibhí", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tra cenn", "pron", "tra cenn", "", "", "", "inflection of tar"]) + let v = native_list_append(v, ["sibsi", "pron", "sibsi", "", "", "", "you nominative plural"]) + let v = native_list_append(v, ["forunni", "pron", "forunni", "", "", "", "first-person plural emphatic"]) + let v = native_list_append(v, ["donahí", "pron", "donahí", "", "", "", "misspelling of donaibhí"]) + let v = native_list_append(v, ["desom", "pron", "desom", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["forsnahí", "pron", "forsnahí", "", "", "", "on those who"]) + let v = native_list_append(v, ["innahísin", "pron", "innahísin", "", "", "", "inflection of intísin"]) + let v = native_list_append(v, ["frissium", "pron", "frissium", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["lessóm", "pron", "lessóm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["foraibsom", "pron", "foraibsom", "", "", "", "third-person plural emphatic"]) + let v = native_list_append(v, ["hǽ", "pron", "hǽ", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["indib", "pron", "indib", "", "", "", "inflection of i"]) + let v = native_list_append(v, ["dímsa", "pron", "dímsa", "", "", "", "first-person singular emphatic"]) + let v = native_list_append(v, ["ndó", "pron", "ndó", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["úaib", "pron", "úaib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["lessom", "pron", "lessom", "", "", "", "third-person singular masculine"]) + let v = native_list_append(v, ["frinni", "pron", "frinni", "", "", "", "first-person plural emphatic"]) + let v = native_list_append(v, ["díb", "pron", "díb", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["indiumsa", "pron", "indiumsa", "", "", "", "first-person singular emphatic"]) + let v = native_list_append(v, ["úaidib", "pron", "úaidib", "", "", "", "third-person plural of"]) + let v = native_list_append(v, ["n-é", "pron", "n-é", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["nechtar", "pron", "nechtar", "", "", "", "either of two"]) + let v = native_list_append(v, ["aíi", "pron", "aíi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["n-aíi", "pron", "n-aíi", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["frissom", "pron", "frissom", "", "", "", "third-person singular masculine/neuter"]) + let v = native_list_append(v, ["fadéin", "pron", "fadéin", "", "", "", "synonym of féin"]) + let v = native_list_append(v, ["eissi", "pron", "eissi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fesin", "pron", "fesin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["feisin", "pron", "feisin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["feissin", "pron", "feissin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fadessin", "pron", "fadessin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fadeisin", "pron", "fadeisin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fadeissin", "pron", "fadeissin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fessine", "pron", "fessine", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["feisine", "pron", "feisine", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cesin", "pron", "cesin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ceisin", "pron", "ceisin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ceissin", "pron", "ceissin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["erutsu", "pron", "erutsu", "", "", "", "second-person singular emphatic"]) + let v = native_list_append(v, ["n-erutsu", "pron", "n-erutsu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["occaib", "pron", "occaib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["inna dead", "pron", "inna dead", "", "", "", "third-person singular masculine/feminine/neuter"]) + let v = native_list_append(v, ["inna diad", "pron", "inna diad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sisni", "pron", "sisni", "", "", "", "we us"]) + let v = native_list_append(v, ["hed ón", "pron", "hed ón", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["úadib", "pron", "úadib", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["a/languages M to Z", "pron", "a/languages M to Z", "", "", "", "that which what"]) + let v = native_list_append(v, ["cucuib", "pron", "cucuib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["foirib", "pron", "foirib", "", "", "", "second-person plural of"]) + let v = native_list_append(v, ["on", "det", "on", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["in", "det", "in", "", "", "", "the masculine singular"]) + let v = native_list_append(v, ["for", "det", "for", "", "", "", "your plural"]) + let v = native_list_append(v, ["so", "det", "so", "", "", "", "this used after"]) + let v = native_list_append(v, ["do", "det", "do", "", "", "", "your singular"]) + let v = native_list_append(v, ["dia", "det", "dia", "", "", "", "of/from his/her/its/their"]) + let v = native_list_append(v, ["sin", "det", "sin", "", "", "", "that those used"]) + let v = native_list_append(v, ["tall", "det", "tall", "", "", "", "that used after"]) + let v = native_list_append(v, ["far", "det", "far", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ha", "det", "ha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sea", "det", "sea", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["mu", "det", "mu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["na", "det", "na", "", "", "", "apheretic form of"]) + let v = native_list_append(v, ["ar", "det", "ar", "", "", "", "our"]) + let v = native_list_append(v, ["se", "det", "se", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["bar", "det", "bar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["don", "det", "don", "", "", "", "of/from the sg"]) + let v = native_list_append(v, ["nach", "det", "nach", "", "", "", "some any"]) + let v = native_list_append(v, ["dom", "det", "dom", "", "", "", "to/for my"]) + let v = native_list_append(v, ["oca", "det", "oca", "", "", "", "contraction of oc"]) + let v = native_list_append(v, ["sa", "det", "sa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["din", "det", "din", "", "", "", "of/from the sg"]) + let v = native_list_append(v, ["fot", "det", "fot", "", "", "", "fo + do"]) + let v = native_list_append(v, ["ule", "det", "ule", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tra", "det", "tra", "", "", "", "over/across his/her/its/their"]) + let v = native_list_append(v, ["dint", "det", "dint", "", "", "", "of/from the sg"]) + let v = native_list_append(v, ["dun", "det", "dun", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isa", "det", "isa", "", "", "", "into the accusative"]) + let v = native_list_append(v, ["huan", "det", "huan", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cosa", "det", "cosa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fora", "det", "fora", "", "", "", "on his/her/its/their"]) + let v = native_list_append(v, ["com", "det", "com", "", "", "", "with my"]) + let v = native_list_append(v, ["mo", "det", "mo", "", "", "", "my"]) + let v = native_list_append(v, ["huile", "det", "huile", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["int", "det", "int", "", "", "", "inflection of in"]) + let v = native_list_append(v, ["ara", "det", "ara", "", "", "", "for the sake"]) + let v = native_list_append(v, ["á", "det", "á", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["im", "det", "im", "", "", "", "in my"]) + let v = native_list_append(v, ["lat", "det", "lat", "", "", "", "with your sg"]) + let v = native_list_append(v, ["seo", "det", "seo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tara", "det", "tara", "", "", "", "over/across his/her/its/their"]) + let v = native_list_append(v, ["dara", "det", "dara", "", "", "", "over/across his/her/its/their"]) + let v = native_list_append(v, ["hó", "det", "hó", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["m'", "det", "m'", "", "", "", "apocopic form of"]) + let v = native_list_append(v, ["lia", "det", "lia", "", "", "", "with his its"]) + let v = native_list_append(v, ["occo", "det", "occo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isin", "det", "isin", "", "", "", "in the accusative"]) + let v = native_list_append(v, ["ón", "det", "ón", "", "", "", "from/of/by the dative"]) + let v = native_list_append(v, ["arna", "det", "arna", "", "", "", "for the sake"]) + let v = native_list_append(v, ["issa", "det", "issa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cech", "det", "cech", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["huili", "det", "huili", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dará", "det", "dará", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cisi", "det", "cisi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["dúnn", "det", "dúnn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["frisa", "det", "frisa", "", "", "", "toward/against/with the n"]) + let v = native_list_append(v, ["ind", "det", "ind", "", "", "", "inflection of in"]) + let v = native_list_append(v, ["forsa", "det", "forsa", "", "", "", "on the n"]) + let v = native_list_append(v, ["cía", "det", "cía", "", "", "", "which what agreeing"]) + let v = native_list_append(v, ["inna", "det", "inna", "", "", "", "inflection of in"]) + let v = native_list_append(v, ["uile", "det", "uile", "", "", "", "all can also"]) + let v = native_list_append(v, ["hule", "det", "hule", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tarm", "det", "tarm", "", "", "", "over/across my"]) + let v = native_list_append(v, ["cid", "det", "cid", "", "", "", "neuter of cía"]) + let v = native_list_append(v, ["úan", "det", "úan", "", "", "", "from/of/by the dative"]) + let v = native_list_append(v, ["úa", "det", "úa", "", "", "", "from his/her/its/their"]) + let v = native_list_append(v, ["siu", "det", "siu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["assa", "det", "assa", "", "", "", "out of his/her/its/their"]) + let v = native_list_append(v, ["occa", "det", "occa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["imma", "det", "imma", "", "", "", "around his/her/its/their"]) + let v = native_list_append(v, ["oa", "det", "oa", "", "", "", "from his/her/its/their"]) + let v = native_list_append(v, ["fua", "det", "fua", "", "", "", "fo + a"]) + let v = native_list_append(v, ["cia", "det", "cia", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["óen", "det", "óen", "", "", "", "the same"]) + let v = native_list_append(v, ["cossa", "det", "cossa", "", "", "", "to the toward"]) + let v = native_list_append(v, ["cachla", "det", "cachla", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["imme", "det", "imme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["chech", "det", "chech", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["huli", "det", "huli", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["asmo", "det", "asmo", "", "", "", "out of my"]) + let v = native_list_append(v, ["cach", "det", "cach", "", "", "", "each every"]) + let v = native_list_append(v, ["dund", "det", "dund", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["diar", "det", "diar", "", "", "", "to/for our"]) + let v = native_list_append(v, ["intí", "det", "intí", "", "", "", "used in apposition"]) + let v = native_list_append(v, ["ísin", "det", "ísin", "", "", "", "that used after"]) + let v = native_list_append(v, ["hísin", "det", "hísin", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["huiliu", "det", "huiliu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["uiliu", "det", "uiliu", "", "", "", "inflection of uile"]) + let v = native_list_append(v, ["húa", "det", "húa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["uili", "det", "uili", "", "", "", "inflection of uile"]) + let v = native_list_append(v, ["indala", "det", "indala", "", "", "", "one of the"]) + let v = native_list_append(v, ["chach", "det", "chach", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["dunaib", "det", "dunaib", "", "", "", "to the pl"]) + let v = native_list_append(v, ["caich", "det", "caich", "", "", "", "neuter genitive singular"]) + let v = native_list_append(v, ["n-óen", "det", "n-óen", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["íarsin", "det", "íarsin", "", "", "", "after the sg"]) + let v = native_list_append(v, ["íarsint", "det", "íarsint", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iarsint", "det", "iarsint", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["isnaib", "det", "isnaib", "", "", "", "in the pl"]) + let v = native_list_append(v, ["cisí", "det", "cisí", "", "", "", "feminine of cía"]) + let v = native_list_append(v, ["dind", "det", "dind", "", "", "", "of/from the sg"]) + let v = native_list_append(v, ["frisin", "det", "frisin", "", "", "", "toward/against/with the sg"]) + let v = native_list_append(v, ["forsna", "det", "forsna", "", "", "", "onto the pl"]) + let v = native_list_append(v, ["iarna", "det", "iarna", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["alaile", "det", "alaile", "", "", "", "another other"]) + let v = native_list_append(v, ["alaili", "det", "alaili", "", "", "", "inflection of alaile"]) + let v = native_list_append(v, ["ucut", "det", "ucut", "", "", "", "yon yonder that...over"]) + let v = native_list_append(v, ["n-ísiu", "det", "n-ísiu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["ísiu", "det", "ísiu", "", "", "", "this used after"]) + let v = native_list_append(v, ["forsnaib", "det", "forsnaib", "", "", "", "on the pl"]) + let v = native_list_append(v, ["cach la", "det", "cach la", "", "", "", "the one"]) + let v = native_list_append(v, ["dond", "det", "dond", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["forsin", "det", "forsin", "", "", "", "onto the m"]) + let v = native_list_append(v, ["húanaib", "det", "húanaib", "", "", "", "from/of/by the dative"]) + let v = native_list_append(v, ["íarna", "det", "íarna", "", "", "", "after/according to his/her/its/their"]) + let v = native_list_append(v, ["donaib", "det", "donaib", "", "", "", "to/for the pl"]) + let v = native_list_append(v, ["úam", "det", "úam", "", "", "", "from my"]) + let v = native_list_append(v, ["a/languages M to Z", "det", "a/languages M to Z", "", "", "", "nominative/accusative singular neuter"]) + let v = native_list_append(v, ["de", "prep", "de", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["in", "prep", "in", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["o", "prep", "o", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["i", "prep", "i", "", "", "", "in"]) + let v = native_list_append(v, ["dar", "prep", "dar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["for", "prep", "for", "", "", "", "on over"]) + let v = native_list_append(v, ["hi", "prep", "hi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["al", "prep", "al", "", "", "", "beyond"]) + let v = native_list_append(v, ["re", "prep", "re", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["do", "prep", "do", "", "", "", "to for"]) + let v = native_list_append(v, ["du", "prep", "du", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fri", "prep", "fri", "", "", "", "towards to"]) + let v = native_list_append(v, ["tre", "prep", "tre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ar", "prep", "ar", "", "", "", "for for the"]) + let v = native_list_append(v, ["co", "prep", "co", "", "", "", "with"]) + let v = native_list_append(v, ["tar", "prep", "tar", "", "", "", "over across"]) + let v = native_list_append(v, ["la", "prep", "la", "", "", "", "with"]) + let v = native_list_append(v, ["ho", "prep", "ho", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ac", "prep", "ac", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tri", "prep", "tri", "", "", "", "through"]) + let v = native_list_append(v, ["fo", "prep", "fo", "", "", "", "under beneath"]) + let v = native_list_append(v, ["di", "prep", "di", "", "", "", "of from"]) + let v = native_list_append(v, ["ɔ", "prep", "ɔ", "", "", "", "abbreviation of co"]) + let v = native_list_append(v, ["fu", "prep", "fu", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ís", "prep", "ís", "", "", "", "under below beneath"]) + let v = native_list_append(v, ["á", "prep", "á", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["í", "prep", "í", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["im", "prep", "im", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ó", "prep", "ó", "", "", "", "from of"]) + let v = native_list_append(v, ["hó", "prep", "hó", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cen", "prep", "cen", "", "", "", "except"]) + let v = native_list_append(v, ["dég", "prep", "dég", "", "", "", "because of due"]) + let v = native_list_append(v, ["iar", "prep", "iar", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["sech", "prep", "sech", "", "", "", "past beyond"]) + let v = native_list_append(v, ["fú", "prep", "fú", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hí", "prep", "hí", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["oc", "prep", "oc", "", "", "", "at beside by"]) + let v = native_list_append(v, ["ré", "prep", "ré", "", "", "", "before"]) + let v = native_list_append(v, ["chen", "prep", "chen", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["hua", "prep", "hua", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ós", "prep", "ós", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["trí", "prep", "trí", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["eter", "prep", "eter", "", "", "", "between"]) + let v = native_list_append(v, ["imb", "prep", "imb", "", "", "", "around"]) + let v = native_list_append(v, ["úa", "prep", "úa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["úas", "prep", "úas", "", "", "", "above over"]) + let v = native_list_append(v, ["fíad", "prep", "fíad", "", "", "", "before in time"]) + let v = native_list_append(v, ["amail", "prep", "amail", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["tar cenn", "prep", "tar cenn", "", "", "", "on behalf of"]) + let v = native_list_append(v, ["dar cenn", "prep", "dar cenn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["samail", "prep", "samail", "", "", "", "like as"]) + let v = native_list_append(v, ["amal", "prep", "amal", "", "", "", "as like"]) + let v = native_list_append(v, ["imm", "prep", "imm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["i n-aicci", "prep", "i n-aicci", "", "", "", "near in the"]) + let v = native_list_append(v, ["íar", "prep", "íar", "", "", "", "after"]) + let v = native_list_append(v, ["fo chosmailius", "prep", "fo chosmailius", "", "", "", "like similar to"]) + let v = native_list_append(v, ["húa", "prep", "húa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fo réir", "prep", "fo réir", "", "", "", "under the domination"]) + let v = native_list_append(v, ["dar éisi", "prep", "dar éisi", "", "", "", "for in exchange"]) + let v = native_list_append(v, ["dar hési", "prep", "dar hési", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["i n-arrad", "prep", "i n-arrad", "", "", "", "near in the"]) + let v = native_list_append(v, ["co rricci", "prep", "co rricci", "", "", "", "until as far"]) + let v = native_list_append(v, ["co ndicci", "prep", "co ndicci", "", "", "", "up to as"]) + let v = native_list_append(v, ["dochum", "prep", "dochum", "", "", "", "to towards"]) + let v = native_list_append(v, ["ndu", "prep", "ndu", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["i ndegaid", "prep", "i ndegaid", "", "", "", "after behind"]) + let v = native_list_append(v, ["dar ési", "prep", "dar ési", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["fo bíthin", "prep", "fo bíthin", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["fo bíth", "prep", "fo bíth", "", "", "", "because of due"]) + let v = native_list_append(v, ["tar hési", "prep", "tar hési", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["comair", "prep", "comair", "", "", "", "in front of"]) + let v = native_list_append(v, ["tar hǽsi", "prep", "tar hǽsi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ar accuis", "prep", "ar accuis", "", "", "", "for the sake"]) + let v = native_list_append(v, ["echtar", "prep", "echtar", "", "", "", "outside without"]) + let v = native_list_append(v, ["i ndead", "prep", "i ndead", "", "", "", "after"]) + let v = native_list_append(v, ["i ndiad", "prep", "i ndiad", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ar chenn", "prep", "ar chenn", "", "", "", "towards in the"]) + let v = native_list_append(v, ["a/languages M to Z", "prep", "a/languages M to Z", "", "", "", "out of"]) + let v = native_list_append(v, ["in", "particle", "in", "", "", "", "interrogative particle forming"]) + let v = native_list_append(v, ["hi", "particle", "hi", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ni", "particle", "ni", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ol", "particle", "ol", "", "", "", "says said"]) + let v = native_list_append(v, ["na", "particle", "na", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tra", "particle", "tra", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nad", "particle", "nad", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["á", "particle", "á", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["í", "particle", "í", "", "", "", "deictic particle used"]) + let v = native_list_append(v, ["cair", "particle", "cair", "", "", "", "particle introducing a"]) + let v = native_list_append(v, ["ná", "particle", "ná", "", "", "", "don’t let…not particle"]) + let v = native_list_append(v, ["hí", "particle", "hí", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cote", "particle", "cote", "", "", "", "of what sort"]) + let v = native_list_append(v, ["ní", "particle", "ní", "", "", "", "not"]) + let v = native_list_append(v, ["cani", "particle", "cani", "", "", "", "particle introducing a"]) + let v = native_list_append(v, ["cain", "particle", "cain", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["són", "particle", "són", "", "", "", "that is to"]) + let v = native_list_append(v, ["nach-", "particle", "nach-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["cid", "particle", "cid", "", "", "", "even implying extreme"]) + let v = native_list_append(v, ["nícon", "particle", "nícon", "", "", "", "not"]) + let v = native_list_append(v, ["nád", "particle", "nád", "", "", "", "negative relative particle"]) + let v = native_list_append(v, ["imma", "particle", "imma", "", "", "", "reciprocal verbal particle"]) + let v = native_list_append(v, ["dús", "particle", "dús", "", "", "", "only used in"]) + let v = native_list_append(v, ["dano", "particle", "dano", "", "", "", "used to indicate"]) + let v = native_list_append(v, ["ém", "particle", "ém", "", "", "", "indeed for sure"]) + let v = native_list_append(v, ["níɔ", "particle", "níɔ", "", "", "", "abbreviation of nícon"]) + let v = native_list_append(v, ["húa", "particle", "húa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["nacc", "particle", "nacc", "", "", "", "not"]) + let v = native_list_append(v, ["naic", "particle", "naic", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ǽm", "particle", "ǽm", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["a/languages M to Z", "particle", "a/languages M to Z", "", "", "", "O vocative particle"]) + let v = native_list_append(v, ["and", "adv", "and", "", "", "", "there"]) + let v = native_list_append(v, ["do", "adv", "do", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["tall", "adv", "tall", "", "", "", "there"]) + let v = native_list_append(v, ["co", "adv", "co", "", "", "", "how?"]) + let v = native_list_append(v, ["mos", "adv", "mos", "", "", "", "soon"]) + let v = native_list_append(v, ["cuci", "adv", "cuci", "", "", "", "to such an"]) + let v = native_list_append(v, ["arse", "adv", "arse", "", "", "", "therefore for this/that"]) + let v = native_list_append(v, ["mad", "adv", "mad", "", "", "", "well fortunately"]) + let v = native_list_append(v, ["andes", "adv", "andes", "", "", "", "from the right"]) + let v = native_list_append(v, ["bec", "adv", "bec", "", "", "", "almost followed by"]) + let v = native_list_append(v, ["festa", "adv", "festa", "", "", "", "now forthwith"]) + let v = native_list_append(v, ["cair", "adv", "cair", "", "", "", "why?"]) + let v = native_list_append(v, ["cene", "adv", "cene", "", "", "", "besides"]) + let v = native_list_append(v, ["sund", "adv", "sund", "", "", "", "here in this"]) + let v = native_list_append(v, ["sunna", "adv", "sunna", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sunt", "adv", "sunt", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cose", "adv", "cose", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["moch", "adv", "moch", "", "", "", "early betimes"]) + let v = native_list_append(v, ["anís", "adv", "anís", "", "", "", "from below"]) + let v = native_list_append(v, ["ón", "adv", "ón", "", "", "", "so thus often"]) + let v = native_list_append(v, ["trá", "adv", "trá", "", "", "", "now therefore then"]) + let v = native_list_append(v, ["dó", "adv", "dó", "", "", "", "for this reason"]) + let v = native_list_append(v, ["cosse", "adv", "cosse", "", "", "", "hitherto up to"]) + let v = native_list_append(v, ["indossa", "adv", "indossa", "", "", "", "now"]) + let v = native_list_append(v, ["innocht", "adv", "innocht", "", "", "", "tonight"]) + let v = native_list_append(v, ["namma", "adv", "namma", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cía", "adv", "cía", "", "", "", "wherever"]) + let v = native_list_append(v, ["indiu", "adv", "indiu", "", "", "", "today"]) + let v = native_list_append(v, ["cuin", "adv", "cuin", "", "", "", "when"]) + let v = native_list_append(v, ["cid", "adv", "cid", "", "", "", "why?"]) + let v = native_list_append(v, ["cía airm", "adv", "cía airm", "", "", "", "where?"]) + let v = native_list_append(v, ["cairm", "adv", "cairm", "", "", "", "where?"]) + let v = native_list_append(v, ["cía dú", "adv", "cía dú", "", "", "", "where? in what"]) + let v = native_list_append(v, ["cía chruth", "adv", "cía chruth", "", "", "", "how"]) + let v = native_list_append(v, ["cía indas", "adv", "cía indas", "", "", "", "how"]) + let v = native_list_append(v, ["cindas", "adv", "cindas", "", "", "", "how?"]) + let v = native_list_append(v, ["etir", "adv", "etir", "", "", "", "at all"]) + let v = native_list_append(v, ["anuas", "adv", "anuas", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["i mbárach", "adv", "i mbárach", "", "", "", "tomorrow"]) + let v = native_list_append(v, ["siu", "adv", "siu", "", "", "", "here"]) + let v = native_list_append(v, ["día Sathairn", "adv", "día Sathairn", "", "", "", "on Saturday"]) + let v = native_list_append(v, ["cenae", "adv", "cenae", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["amne", "adv", "amne", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["irráir", "adv", "irráir", "", "", "", "last night"]) + let v = native_list_append(v, ["beus", "adv", "beus", "", "", "", "still up to"]) + let v = native_list_append(v, ["sís", "adv", "sís", "", "", "", "below at a"]) + let v = native_list_append(v, ["airi", "adv", "airi", "", "", "", "therefore for this/that"]) + let v = native_list_append(v, ["túaid", "adv", "túaid", "", "", "", "north in the"]) + let v = native_list_append(v, ["cumme", "adv", "cumme", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cia", "adv", "cia", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, [".i.", "adv", ".i.", "", "", "", "abbreviation of ed"]) + let v = native_list_append(v, ["mochrád", "adv", "mochrád", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uas", "adv", "uas", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["riam", "adv", "riam", "", "", "", "before beforehand"]) + let v = native_list_append(v, ["didu", "adv", "didu", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["ed ón", "adv", "ed ón", "", "", "", "that is namely"]) + let v = native_list_append(v, ["bés", "adv", "bés", "", "", "", "perhaps"]) + let v = native_list_append(v, ["cummae", "adv", "cummae", "", "", "", "equally in the"]) + let v = native_list_append(v, ["ndo", "adv", "ndo", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["anúas", "adv", "anúas", "", "", "", "from above"]) + let v = native_list_append(v, ["in fect so", "adv", "in fect so", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["in fecht so", "adv", "in fecht so", "", "", "", "now"]) + let v = native_list_append(v, ["didiu", "adv", "didiu", "", "", "", "then in that"]) + let v = native_list_append(v, ["amal sodin", "adv", "amal sodin", "", "", "", "then in that"]) + let v = native_list_append(v, ["olchene", "adv", "olchene", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["olchenae", "adv", "olchenae", "", "", "", "besides"]) + let v = native_list_append(v, ["béss", "adv", "béss", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["immurgu", "adv", "immurgu", "", "", "", "however nevertheless"]) + let v = native_list_append(v, ["íarum", "adv", "íarum", "", "", "", "afterwards"]) + let v = native_list_append(v, ["iarum", "adv", "iarum", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["i tosuch", "adv", "i tosuch", "", "", "", "at first"]) + let v = native_list_append(v, ["i tossug", "adv", "i tossug", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amein", "adv", "amein", "", "", "", "thus in this"]) + let v = native_list_append(v, ["nammá", "adv", "nammá", "", "", "", "only"]) + let v = native_list_append(v, ["nammáa", "adv", "nammáa", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["samlaid", "adv", "samlaid", "", "", "", "thus"]) + let v = native_list_append(v, ["samlid", "adv", "samlid", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["in chrud so", "adv", "in chrud so", "", "", "", "in this way"]) + let v = native_list_append(v, ["uraid", "adv", "uraid", "", "", "", "last year"]) + let v = native_list_append(v, ["co bráth", "adv", "co bráth", "", "", "", "forever"]) + let v = native_list_append(v, ["immalle", "adv", "immalle", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["immallé", "adv", "immallé", "", "", "", "together"]) + let v = native_list_append(v, ["inna théchtu", "adv", "inna théchtu", "", "", "", "in its proper"]) + let v = native_list_append(v, ["ó mulluch co talmain", "adv", "ó mulluch co talmain", "", "", "", "head to toe"]) + let v = native_list_append(v, ["cucci", "adv", "cucci", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["duús", "adv", "duús", "", "", "", "only used in"]) + let v = native_list_append(v, ["cid dia", "adv", "cid dia", "", "", "", "why?"]) + let v = native_list_append(v, ["chumme", "adv", "chumme", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["in chruth sin", "adv", "in chruth sin", "", "", "", "in that way"]) + let v = native_list_append(v, ["noch is", "adv", "noch is", "", "", "", "that is that"]) + let v = native_list_append(v, ["innonn", "adv", "innonn", "", "", "", "there to that"]) + let v = native_list_append(v, ["innúnn", "adv", "innúnn", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["hi tossuch", "adv", "hi tossuch", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["cammaiph", "adv", "cammaiph", "", "", "", "however"]) + let v = native_list_append(v, ["camaiph", "adv", "camaiph", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["camaiph immurgu", "adv", "camaiph immurgu", "", "", "", "however"]) + let v = native_list_append(v, ["antúaid", "adv", "antúaid", "", "", "", "from the north"]) + let v = native_list_append(v, ["ar éicin", "adv", "ar éicin", "", "", "", "under compulsion by"]) + let v = native_list_append(v, ["thrá", "adv", "thrá", "", "", "", "lenited form of"]) + let v = native_list_append(v, ["ndó", "adv", "ndó", "", "", "", "eclipsed form of"]) + let v = native_list_append(v, ["a méit", "adv", "a méit", "", "", "", "so much so"]) + let v = native_list_append(v, ["aníar", "adv", "aníar", "", "", "", "from behind"]) + let v = native_list_append(v, ["aithirriuch", "adv", "aithirriuch", "", "", "", "again"]) + let v = native_list_append(v, ["hed ón", "adv", "hed ón", "", "", "", "alternative spelling of"]) + return v +} + +fn vocab_sga_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_sga_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-sux.el b/elp/src/vocabulary-sux.el new file mode 100644 index 0000000..98a26cc --- /dev/null +++ b/elp/src/vocabulary-sux.el @@ -0,0 +1,1511 @@ +// vocabulary-sux.el — Sumerian vocabulary seed +// 1490 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 2215 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_sux_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["𒉆𒄭𒊓", "noun", "𒉆𒄭𒊓", "", "", "", "companionship friendship"]) + let v = native_list_append(v, ["𒉆𒆪𒇷", "noun", "𒉆𒆪𒇷", "", "", "", "friendship"]) + let v = native_list_append(v, ["𒊕", "noun", "𒊕", "", "", "", "head"]) + let v = native_list_append(v, ["𒂗", "noun", "𒂗", "", "", "", "lord"]) + let v = native_list_append(v, ["𒈗", "noun", "𒈗", "", "", "", "king"]) + let v = native_list_append(v, ["𒀸", "noun", "𒀸", "", "", "", "blow"]) + let v = native_list_append(v, ["𒃲", "noun", "𒃲", "", "", "", "a large cup"]) + let v = native_list_append(v, ["𒇽", "noun", "𒇽", "", "", "", "man person"]) + let v = native_list_append(v, ["𒌷", "noun", "𒌷", "", "", "", "city town"]) + let v = native_list_append(v, ["𒉌", "noun", "𒉌", "", "", "", "oil"]) + let v = native_list_append(v, ["𒌋", "noun", "𒌋", "", "", "", "breach hole"]) + let v = native_list_append(v, ["𒁹", "noun", "𒁹", "", "", "", "triangle"]) + let v = native_list_append(v, ["𒀺", "noun", "𒀺", "", "", "", "A quarter ikû"]) + let v = native_list_append(v, ["𒀹", "noun", "𒀹", "", "", "", "One half ikû"]) + let v = native_list_append(v, ["𒋰", "noun", "𒋰", "", "", "", "companion partner"]) + let v = native_list_append(v, ["𒉀", "noun", "𒉀", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉃", "noun", "𒉃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒁳", "noun", "𒁳", "", "", "", "board"]) + let v = native_list_append(v, ["𒇻", "noun", "𒇻", "", "", "", "sheep ram ovine"]) + let v = native_list_append(v, ["𒂍", "noun", "𒂍", "", "", "", "house household estate"]) + let v = native_list_append(v, ["𒉒", "noun", "𒉒", "", "", "", "seed funnel hopper"]) + let v = native_list_append(v, ["𒅜", "noun", "𒅜", "", "", "", "poison"]) + let v = native_list_append(v, ["𒂟", "noun", "𒂟", "", "", "", "troops workers work-gang"]) + let v = native_list_append(v, ["𒋧", "noun", "𒋧", "", "", "", "garlic"]) + let v = native_list_append(v, ["𒈨", "noun", "𒈨", "", "", "", "purification priest magician"]) + let v = native_list_append(v, ["𒋾", "noun", "𒋾𒋾", "", "", "", "rib"]) + let v = native_list_append(v, ["𒋻", "noun", "𒋻", "", "", "", "street"]) + let v = native_list_append(v, ["𒊊", "noun", "𒊊", "", "", "", "lion"]) + let v = native_list_append(v, ["𒍣", "noun", "𒍣", "", "", "", "life"]) + let v = native_list_append(v, ["𒉺𒇻", "noun", "𒉺𒇻", "", "", "", "shepherd"]) + let v = native_list_append(v, ["𒄌", "noun", "𒄌", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀴", "noun", "𒀴", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄯𒊕", "noun", "𒄯𒊕", "", "", "", "mountains mountain range"]) + let v = native_list_append(v, ["𒌚", "noun", "𒌚", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆰", "noun", "𒆰", "", "", "", "seed"]) + let v = native_list_append(v, ["𒌵", "noun", "𒌵", "", "", "", "vessel"]) + let v = native_list_append(v, ["𒁴", "noun", "𒁴", "", "", "", "post pillar pole"]) + let v = native_list_append(v, ["𒆠𒉆𒀀𒇒𒊏", "noun", "𒆠𒉆𒀀𒇒𒊏", "", "", "", "forehead"]) + let v = native_list_append(v, ["𒋀", "noun", "𒋀", "", "", "", "brother"]) + let v = native_list_append(v, ["𒈦", "noun", "𒈦", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀊", "noun", "𒀊", "", "", "", "sea"]) + let v = native_list_append(v, ["𒀀𒀀", "noun", "𒀀𒀀", "", "", "", "father"]) + let v = native_list_append(v, ["𒀜𒁕", "noun", "𒀜𒁕", "", "", "", "father"]) + let v = native_list_append(v, ["𒀭𒌉", "noun", "𒀭𒌉", "", "", "", "divine son"]) + let v = native_list_append(v, ["𒌉", "noun", "𒌉", "", "", "", "young one child"]) + let v = native_list_append(v, ["𒀫", "noun", "𒀫", "", "", "", "calf"]) + let v = native_list_append(v, ["𒌉𒍑", "noun", "𒌉𒍑", "", "", "", "male child son"]) + let v = native_list_append(v, ["𒈬", "noun", "𒈬", "", "", "", "name"]) + let v = native_list_append(v, ["𒌉𒊩", "noun", "𒌉𒊩", "", "", "", "daughter"]) + let v = native_list_append(v, ["𒂍𒄄𒀀", "noun", "𒂍𒄄𒀀", "", "", "", "bride"]) + let v = native_list_append(v, ["𒌓", "noun", "𒌓", "", "", "", "sun"]) + let v = native_list_append(v, ["𒅖", "noun", "𒅖", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂍𒈨𒌍", "noun", "𒂍𒈨𒌍", "", "", "", "summer"]) + let v = native_list_append(v, ["𒄑𒌆𒉿", "noun", "𒄑𒌆𒉿", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋛", "noun", "𒋛", "", "", "", "horn"]) + let v = native_list_append(v, ["𒅊", "noun", "𒅊", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋠", "noun", "𒋠", "", "", "", "wool fleece"]) + let v = native_list_append(v, ["𒀀𒈝", "noun", "𒀀𒈝", "", "", "", "a type of"]) + let v = native_list_append(v, ["𒇇", "noun", "𒇇", "", "", "", "ewe"]) + let v = native_list_append(v, ["𒁱", "noun", "𒁱", "", "", "", "bezoar Persian wild"]) + let v = native_list_append(v, ["𒄞", "noun", "𒄞", "", "", "", "bull ox"]) + let v = native_list_append(v, ["𒌨", "noun", "𒌨", "", "", "", "a beast of"]) + let v = native_list_append(v, ["𒌨𒈤", "noun", "𒌨𒈤", "", "", "", "lion"]) + let v = native_list_append(v, ["𒊌", "noun", "𒊌", "", "", "", "lion"]) + let v = native_list_append(v, ["𒊍", "noun", "𒊍", "", "", "", "bear"]) + let v = native_list_append(v, ["𒌨𒁇𒊏", "noun", "𒌨𒁇𒊏", "", "", "", "wolf"]) + let v = native_list_append(v, ["𒀭𒁇", "noun", "𒀭𒁇", "", "", "", "iron"]) + let v = native_list_append(v, ["𒀭𒁇𒋤", "noun", "𒀭𒁇𒋤", "", "", "", "iron"]) + let v = native_list_append(v, ["𒈥𒁍𒁕", "noun", "𒈥𒁍𒁕", "", "", "", "cart wagon"]) + let v = native_list_append(v, ["𒌨𒊕", "noun", "𒌨𒊕", "", "", "", "hero"]) + let v = native_list_append(v, ["𒅆𒂍𒉪", "noun", "𒅆𒂍𒉪", "", "", "", "temple tower ziggurat"]) + let v = native_list_append(v, ["𒁲", "noun", "𒁲", "", "", "", "lawsuit trial legal"]) + let v = native_list_append(v, ["𒅆", "noun", "𒅆", "", "", "", "eye"]) + let v = native_list_append(v, ["𒀵", "noun", "𒀵", "", "", "", "male slave male"]) + let v = native_list_append(v, ["𒍩", "noun", "𒍩", "", "", "", "emmer wheat"]) + let v = native_list_append(v, ["𒋗", "noun", "𒋗", "", "", "", "hand"]) + let v = native_list_append(v, ["𒄿𒇻", "noun", "𒄿𒇻", "", "", "", "cry"]) + let v = native_list_append(v, ["𒆠", "noun", "𒆠", "", "", "", "place"]) + let v = native_list_append(v, ["𒄮", "noun", "𒄮", "", "", "", "ditch canal"]) + let v = native_list_append(v, ["𒂵", "noun", "𒂵", "", "", "", "milk"]) + let v = native_list_append(v, ["𒉈", "noun", "𒉈", "", "", "", "fire"]) + let v = native_list_append(v, ["𒍚", "noun", "𒍚", "", "", "", "female goat"]) + let v = native_list_append(v, ["𒀲", "noun", "𒀲", "", "", "", "donkey"]) + let v = native_list_append(v, ["𒀉𒉺", "noun", "𒀉𒉺", "", "", "", "a demon"]) + let v = native_list_append(v, ["𒀭", "noun", "𒀭", "", "", "", "sky heaven"]) + let v = native_list_append(v, ["𒆍𒃲", "noun", "𒆍𒃲", "", "", "", "city gate main"]) + let v = native_list_append(v, ["𒊺", "noun", "𒊺", "", "", "", "barley grain"]) + let v = native_list_append(v, ["𒀜", "noun", "𒀜", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀯", "noun", "𒀯", "", "", "", "star constellation"]) + let v = native_list_append(v, ["𒂼", "noun", "𒂼", "", "", "", "mother"]) + let v = native_list_append(v, ["𒌗", "noun", "𒌗", "", "", "", "moon"]) + let v = native_list_append(v, ["𒀳", "noun", "𒀳", "", "", "", "furrow"]) + let v = native_list_append(v, ["𒄷𒄭", "noun", "𒄷𒄭", "", "", "", "blood"]) + let v = native_list_append(v, ["𒀭𒈹", "noun", "𒀭𒈹", "", "", "", "Inanna"]) + let v = native_list_append(v, ["𒄑", "noun", "𒄑", "", "", "", "tree"]) + let v = native_list_append(v, ["𒀀", "noun", "𒀀", "", "", "", "water fluid"]) + let v = native_list_append(v, ["𒊮", "noun", "𒊮", "", "", "", "heart inside interior"]) + let v = native_list_append(v, ["𒅴", "noun", "𒅴", "", "", "", "tongue"]) + let v = native_list_append(v, ["𒍝𒄢", "noun", "𒍝𒄢", "", "", "", "tooth"]) + let v = native_list_append(v, ["𒀉", "noun", "𒀉", "", "", "", "arm"]) + let v = native_list_append(v, ["𒁮", "noun", "𒁮", "", "", "", "spouse wife or"]) + let v = native_list_append(v, ["𒋞", "noun", "𒋞", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅗", "noun", "𒅗", "", "", "", "voice cry sound"]) + let v = native_list_append(v, ["𒍏𒄩𒍣𒅔", "noun", "𒍏𒄩𒍣𒅔", "", "", "", "axe"]) + let v = native_list_append(v, ["𒍑", "noun", "𒍑", "", "", "", "penis"]) + let v = native_list_append(v, ["𒉡𒌝𒈠𒄷", "noun", "𒉡𒌝𒈠𒄷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈪", "noun", "𒈪", "", "", "", "night"]) + let v = native_list_append(v, ["𒉿", "noun", "𒉿", "", "", "", "ear"]) + let v = native_list_append(v, ["𒈠", "noun", "𒈠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀲𒆳𒊏", "noun", "𒀲𒆳𒊏", "", "", "", "horse"]) + let v = native_list_append(v, ["𒊕𒁺", "noun", "𒊕𒁺", "", "", "", "head"]) + let v = native_list_append(v, ["𒌋𒅗", "noun", "𒌋𒅗", "", "", "", "skull pate top"]) + let v = native_list_append(v, ["𒄭", "noun", "𒄭", "", "", "", "knee"]) + let v = native_list_append(v, ["𒋼", "noun", "𒋼", "", "", "", "cheek"]) + let v = native_list_append(v, ["𒉎", "noun", "𒉎", "", "", "", "clay mud"]) + let v = native_list_append(v, ["𒄷", "noun", "𒄷", "", "", "", "bird"]) + let v = native_list_append(v, ["𒂊", "noun", "𒂊", "", "", "", "levee irrigation ditch"]) + let v = native_list_append(v, ["𒄒", "noun", "𒄒", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌋𒀜", "noun", "𒌋𒀜", "", "", "", "oven kiln for"]) + let v = native_list_append(v, ["𒄠𒋛", "noun", "𒄠𒋛", "", "", "", "elephant"]) + let v = native_list_append(v, ["𒁾", "noun", "𒁾", "", "", "", "tablet"]) + let v = native_list_append(v, ["𒀭𒈾", "noun", "𒀭𒈾", "", "", "", "a metal tin"]) + let v = native_list_append(v, ["𒀀𒇉", "noun", "𒀀𒇉", "", "", "", "river watercourse"]) + let v = native_list_append(v, ["𒈾", "noun", "𒈾", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋳", "noun", "𒋳", "", "", "", "tag"]) + let v = native_list_append(v, ["𒈝", "noun", "𒈝", "", "", "", "excrement"]) + let v = native_list_append(v, ["𒇴", "noun", "𒇴", "", "", "", "almond"]) + let v = native_list_append(v, ["𒌑", "noun", "𒌑", "", "", "", "plant grass"]) + let v = native_list_append(v, ["𒌒", "noun", "𒌒", "", "", "", "praise"]) + let v = native_list_append(v, ["𒅕", "noun", "𒅕", "", "", "", "scent"]) + let v = native_list_append(v, ["𒇷", "noun", "𒇷", "", "", "", "juniper"]) + let v = native_list_append(v, ["𒆷", "noun", "𒆷", "", "", "", "shard"]) + let v = native_list_append(v, ["𒅔", "noun", "𒅔", "", "", "", "insult abuse taunt"]) + let v = native_list_append(v, ["𒁕", "noun", "𒁕", "", "", "", "side edge"]) + let v = native_list_append(v, ["𒉏", "noun", "𒉏", "", "", "", "highland"]) + let v = native_list_append(v, ["𒍝", "noun", "𒍝", "", "", "", "bead precious stone"]) + let v = native_list_append(v, ["𒅈", "noun", "𒅈", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂔", "noun", "𒂔", "", "", "", "plain desert steppe"]) + let v = native_list_append(v, ["𒅅", "noun", "𒅅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌝", "noun", "𒌝", "", "", "", "a reed rope"]) + let v = native_list_append(v, ["𒆬𒌓", "noun", "𒆬𒌓", "", "", "", "silver"]) + let v = native_list_append(v, ["𒉆", "noun", "𒉆", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅁", "noun", "𒅁", "", "", "", "oval"]) + let v = native_list_append(v, ["𒆪", "noun", "𒆪", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄖", "noun", "𒄖", "", "", "", "flax linen"]) + let v = native_list_append(v, ["𒄠", "noun", "𒄠", "", "", "", "wild bull"]) + let v = native_list_append(v, ["𒊭", "noun", "𒊭", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌔", "noun", "𒌔", "", "", "", "spittle phlegm mucus"]) + let v = native_list_append(v, ["𒌌", "noun", "𒌌", "", "", "", "fruit bud"]) + let v = native_list_append(v, ["𒄖𒍝", "noun", "𒄖𒍝", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈹", "noun", "𒈹", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅎", "noun", "𒅎", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀭𒅎", "noun", "𒀭𒅎", "", "", "", "Ishkur the Sumerian"]) + let v = native_list_append(v, ["𒀭𒌓", "noun", "𒀭𒌓", "", "", "", "the sun god"]) + let v = native_list_append(v, ["𒁉", "noun", "𒁉", "", "", "", "beer"]) + let v = native_list_append(v, ["𒀭𒀀𒇉", "noun", "𒀭𒀀𒇉", "", "", "", "River river god"]) + let v = native_list_append(v, ["𒆍", "noun", "𒆍", "", "", "", "door gate"]) + let v = native_list_append(v, ["𒆍𒀭𒊏𒆠", "noun", "𒆍𒀭𒊏𒆠", "", "", "", "Babylon an ancient"]) + let v = native_list_append(v, ["𒂍𒃲", "noun", "𒂍𒃲", "", "", "", "palace"]) + let v = native_list_append(v, ["𒀖", "noun", "𒀖", "", "", "", "cow"]) + let v = native_list_append(v, ["𒀭𒆘", "noun", "𒀭𒆘", "", "", "", "an alad spirit"]) + let v = native_list_append(v, ["𒍏", "noun", "𒍏", "", "", "", "copper"]) + let v = native_list_append(v, ["𒃾", "noun", "𒃾", "", "", "", "wine"]) + let v = native_list_append(v, ["𒃮", "noun", "𒃮", "", "", "", "chest breast"]) + let v = native_list_append(v, ["𒇶𒆠", "noun", "𒇶𒆠", "", "", "", "Aratta a land."]) + let v = native_list_append(v, ["𒀭𒂗𒆤", "noun", "𒀭𒂗𒆤", "", "", "", "Enlil the king"]) + let v = native_list_append(v, ["𒉆𒇽𒍇", "noun", "𒉆𒇽𒍇", "", "", "", "humanity humaneness"]) + let v = native_list_append(v, ["𒅴𒂠", "noun", "𒅴𒂠", "", "", "", "Emegir the main"]) + let v = native_list_append(v, ["𒀀𒃼", "noun", "𒀀𒃼", "", "", "", "field arable land"]) + let v = native_list_append(v, ["𒁵", "noun", "𒁵", "", "", "", "salt"]) + let v = native_list_append(v, ["𒀀𒇉𒌓𒄒𒉣", "noun", "𒀀𒇉𒌓𒄒𒉣", "", "", "", "Euphrates"]) + let v = native_list_append(v, ["𒀀𒇉𒈦𒄘𒃼", "noun", "𒀀𒇉𒈦𒄘𒃼", "", "", "", "Tigris"]) + let v = native_list_append(v, ["𒆸", "noun", "𒆸", "", "", "", "block slab lump"]) + let v = native_list_append(v, ["𒉽", "noun", "𒉽", "", "", "", "relation"]) + let v = native_list_append(v, ["𒀭𒆗", "noun", "𒀭𒆗", "", "", "", "a lammar deity"]) + let v = native_list_append(v, ["𒉺", "noun", "𒉺", "", "", "", "sceptre"]) + let v = native_list_append(v, ["𒄑𒉺", "noun", "𒄑𒉺", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌆", "noun", "𒌆", "", "", "", "cloth garment textile"]) + let v = native_list_append(v, ["𒉼", "noun", "𒉼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒉼", "noun", "𒄑𒉼", "", "", "", "bow"]) + let v = native_list_append(v, ["𒊩", "noun", "𒊩", "", "", "", "woman female"]) + let v = native_list_append(v, ["𒄩", "noun", "𒄩", "", "", "", "fish"]) + let v = native_list_append(v, ["𒃻", "noun", "𒃻", "", "", "", "thing"]) + let v = native_list_append(v, ["𒌈", "noun", "𒌈", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀱", "noun", "𒀱", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒂼𒅈𒄄", "noun", "𒂼𒅈𒄄", "", "", "", "freedom particularly from"]) + let v = native_list_append(v, ["𒂼𒄄", "noun", "𒂼𒄄", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌦", "noun", "𒌦", "", "", "", "land country nation"]) + let v = native_list_append(v, ["𒄀", "noun", "𒄀", "", "", "", "reed"]) + let v = native_list_append(v, ["𒄬", "noun", "𒄬", "", "", "", "a basket"]) + let v = native_list_append(v, ["𒄥", "noun", "𒄥", "", "", "", "young adult male"]) + let v = native_list_append(v, ["𒈠𒈾", "noun", "𒈠𒈾", "", "", "", "mina a Sumerian"]) + let v = native_list_append(v, ["𒆬𒄀", "noun", "𒆬𒄀", "", "", "", "gold"]) + let v = native_list_append(v, ["𒆷𒀝", "noun", "𒆷𒀝", "", "", "", "clod of earth"]) + let v = native_list_append(v, ["𒍑𒆪", "noun", "𒍑𒆪", "", "", "", "lamentation singer/priest a"]) + let v = native_list_append(v, ["𒀋", "noun", "𒀋", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆜", "noun", "𒆜", "", "", "", "way road"]) + let v = native_list_append(v, ["𒁀", "noun", "𒁀", "", "", "", "allotment distribution share"]) + let v = native_list_append(v, ["𒈣", "noun", "𒈣", "", "", "", "boat ship"]) + let v = native_list_append(v, ["𒀁", "noun", "𒀁", "", "", "", "heir"]) + let v = native_list_append(v, ["𒌨𒈨", "noun", "𒌨𒈨", "", "", "", "a type of"]) + let v = native_list_append(v, ["𒂵𒁉𒊑", "noun", "𒂵𒁉𒊑", "", "", "", "mountain"]) + let v = native_list_append(v, ["𒈠𒊬", "noun", "𒈠𒊬", "", "", "", "dream"]) + let v = native_list_append(v, ["𒀉𒁍𒁕", "noun", "𒀉𒁍𒁕", "", "", "", "spear"]) + let v = native_list_append(v, ["𒅗𒀭𒉌𒋛", "noun", "𒅗𒀭𒉌𒋛", "", "", "", "thunder"]) + let v = native_list_append(v, ["𒅗𒈲", "noun", "𒅗𒈲", "", "", "", "tooth worm"]) + let v = native_list_append(v, ["𒄊𒉻𒁺", "noun", "𒄊𒉻𒁺", "", "", "", "bone"]) + let v = native_list_append(v, ["𒃢", "noun", "𒃢", "", "", "", "male lamb"]) + let v = native_list_append(v, ["𒊑", "noun", "𒊑", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄋", "noun", "𒄋", "", "", "", "bison"]) + let v = native_list_append(v, ["𒆧", "noun", "𒆧", "", "", "", "totality world"]) + let v = native_list_append(v, ["𒀭𒀫𒌓", "noun", "𒀭𒀫𒌓", "", "", "", "Marduk patron deity"]) + let v = native_list_append(v, ["𒇻𒂠𒊬", "noun", "𒇻𒂠𒊬", "", "", "", "turnip"]) + let v = native_list_append(v, ["𒀀𒂵𒄠", "noun", "𒀀𒂵𒄠", "", "", "", "an artificial pond"]) + let v = native_list_append(v, ["𒂷", "noun", "𒂷", "", "", "", "basket container box"]) + let v = native_list_append(v, ["𒅤", "noun", "𒅤", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌶", "noun", "𒌶", "", "", "", "standard"]) + let v = native_list_append(v, ["𒋚", "noun", "𒋚", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂄", "noun", "𒂄", "", "", "", "pig"]) + let v = native_list_append(v, ["𒉾", "noun", "𒉾", "", "", "", "rodent mongoose"]) + let v = native_list_append(v, ["𒄷𒌷𒅔𒄷", "noun", "𒄷𒌷𒅔𒄷", "", "", "", "eagle"]) + let v = native_list_append(v, ["𒁇𒊩", "noun", "𒁇𒊩", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒁈", "noun", "𒁈", "", "", "", "the curtain of"]) + let v = native_list_append(v, ["𒊕𒆠", "noun", "𒊕𒆠", "", "", "", "front brow"]) + let v = native_list_append(v, ["𒊕𒉺𒆸", "noun", "𒊕𒉺𒆸", "", "", "", "lamentation wailing unrest"]) + let v = native_list_append(v, ["𒀠", "noun", "𒀠", "", "", "", "mattock hoe pickaxe"]) + let v = native_list_append(v, ["𒍎", "noun", "𒍎", "", "", "", "table"]) + let v = native_list_append(v, ["𒀮", "noun", "𒀮", "", "", "", "a musician"]) + let v = native_list_append(v, ["𒊬", "noun", "𒊬", "", "", "", "orchard"]) + let v = native_list_append(v, ["𒄑𒉿𒌆", "noun", "𒄑𒉿𒌆", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆳", "noun", "𒆳", "", "", "", "mountain"]) + let v = native_list_append(v, ["𒄯", "noun", "𒄯", "", "", "", "handmill"]) + let v = native_list_append(v, ["𒃻𒁀", "noun", "𒃻𒁀", "", "", "", "gift"]) + let v = native_list_append(v, ["𒁁", "noun", "𒁁", "", "", "", "underground waters"]) + let v = native_list_append(v, ["𒊓", "noun", "𒊓", "", "", "", "sinew"]) + let v = native_list_append(v, ["𒍪", "noun", "𒍪", "", "", "", "a building material"]) + let v = native_list_append(v, ["𒋢", "noun", "𒋢", "", "", "", "skin hide"]) + let v = native_list_append(v, ["𒆬", "noun", "𒆬", "", "", "", "metal"]) + let v = native_list_append(v, ["𒀂", "noun", "𒀂", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅴𒊩", "noun", "𒅴𒊩", "", "", "", "Emesal fine speech"]) + let v = native_list_append(v, ["𒅴𒋝", "noun", "𒅴𒋝", "", "", "", "base speech slander"]) + let v = native_list_append(v, ["𒀊𒁀", "noun", "𒀊𒁀", "", "", "", "old man elder"]) + let v = native_list_append(v, ["𒀀𒀊𒁀", "noun", "𒀀𒀊𒁀", "", "", "", "seawater sea"]) + let v = native_list_append(v, ["𒎎", "noun", "𒎎", "", "", "", "stone boulder"]) + let v = native_list_append(v, ["𒁦", "noun", "𒁦", "", "", "", "sheepfold"]) + let v = native_list_append(v, ["𒁲𒋻", "noun", "𒁲𒋻", "", "", "", "judge"]) + let v = native_list_append(v, ["𒉆𒋾", "noun", "𒉆𒋾", "", "", "", "life"]) + let v = native_list_append(v, ["𒈩𒇲", "noun", "𒈩𒇲", "", "", "", "wrist"]) + let v = native_list_append(v, ["𒉺𒋼𒋛", "noun", "𒉺𒋼𒋛", "", "", "", "ruler governor city"]) + let v = native_list_append(v, ["𒆕", "noun", "𒆕", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆦", "noun", "𒆦", "", "", "", "courtyard"]) + let v = native_list_append(v, ["𒎏", "noun", "𒎏", "", "", "", "lady queen mistress"]) + let v = native_list_append(v, ["𒎐", "noun", "𒎐", "", "", "", "sister"]) + let v = native_list_append(v, ["𒆠𒂗𒄀", "noun", "𒆠𒂗𒄀", "", "", "", "Sumer"]) + let v = native_list_append(v, ["𒆠𒌵", "noun", "𒆠𒌵", "", "", "", "Akkad"]) + let v = native_list_append(v, ["𒊷", "noun", "𒊷", "", "", "", "date palm"]) + let v = native_list_append(v, ["𒌓𒊬", "noun", "𒌓𒊬", "", "", "", "crescent moon"]) + let v = native_list_append(v, ["𒃞", "noun", "𒃞", "", "", "", "crown tiara a"]) + let v = native_list_append(v, ["𒅍", "noun", "𒅍", "", "", "", "carrier porter"]) + let v = native_list_append(v, ["𒋀𒀕𒆠", "noun", "𒋀𒀕𒆠", "", "", "", "Ur city in"]) + let v = native_list_append(v, ["𒋧𒊬", "noun", "𒋧𒊬", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅔𒉡", "noun", "𒅔𒉡", "", "", "", "straw"]) + let v = native_list_append(v, ["𒅔𒌋", "noun", "𒅔𒌋", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀕", "noun", "𒀕", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉎𒄷", "noun", "𒉎𒄷", "", "", "", "a ni bird"]) + let v = native_list_append(v, ["𒄑𒆪", "noun", "𒄑𒆪", "", "", "", "stick"]) + let v = native_list_append(v, ["𒇉", "noun", "𒇉", "", "", "", "depths cosmic underground"]) + let v = native_list_append(v, ["𒀊𒍪", "noun", "𒀊𒍪", "", "", "", "The sentient sea"]) + let v = native_list_append(v, ["𒉛", "noun", "𒉛", "", "", "", "price"]) + let v = native_list_append(v, ["𒉚𒀀𒀭", "noun", "𒉚𒀀𒀭", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉚", "noun", "𒉚", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉚𒀭", "noun", "𒉚𒀭", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉚𒄠", "noun", "𒉚𒄠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀕𒆠", "noun", "𒀕𒆠", "", "", "", "Uruk city in"]) + let v = native_list_append(v, ["𒂍𒐐", "noun", "𒂍𒐐", "", "", "", "E-ninnu the temple"]) + let v = native_list_append(v, ["𒎎𒆗", "noun", "𒎎𒆗", "", "", "", "diorite"]) + let v = native_list_append(v, ["𒄈", "noun", "𒄈", "", "", "", "dagger"]) + let v = native_list_append(v, ["𒄖𒆸", "noun", "𒄖𒆸", "", "", "", "bale"]) + let v = native_list_append(v, ["𒂆", "noun", "𒂆", "", "", "", "shekel 1/60 𒈠𒈾"]) + let v = native_list_append(v, ["𒉮", "noun", "𒉮", "", "", "", "whip"]) + let v = native_list_append(v, ["𒈥", "noun", "𒈥", "", "", "", "chariot wagon"]) + let v = native_list_append(v, ["𒄘", "noun", "𒄘", "", "", "", "neck shoulders"]) + let v = native_list_append(v, ["𒄑𒄯", "noun", "𒄑𒄯", "", "", "", "drawing plan"]) + let v = native_list_append(v, ["𒉌𒄑", "noun", "𒉌𒄑", "", "", "", "sesame oil vegetable"]) + let v = native_list_append(v, ["𒇥", "noun", "𒇥", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌣", "noun", "𒌣", "", "", "", "smith metalworker"]) + let v = native_list_append(v, ["𒌓𒅗𒁇", "noun", "𒌓𒅗𒁇", "", "", "", "bronze"]) + let v = native_list_append(v, ["𒍼", "noun", "𒍼", "", "", "", "wheat"]) + let v = native_list_append(v, ["𒉭", "noun", "𒉭", "", "", "", "egg"]) + let v = native_list_append(v, ["𒄈𒋢𒆠", "noun", "𒄈𒋢𒆠", "", "", "", "G̃irsu a Sumerian"]) + let v = native_list_append(v, ["𒀭𒎏𒄈𒋢", "noun", "𒀭𒎏𒄈𒋢", "", "", "", "Ningirsu chief male"]) + let v = native_list_append(v, ["𒍪𒀊", "noun", "𒍪𒀊", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉇", "noun", "𒉇", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌨𒂠", "noun", "𒌨𒂠", "", "", "", "domesticated dog"]) + let v = native_list_append(v, ["𒄵", "noun", "𒄵", "", "", "", "kidney"]) + let v = native_list_append(v, ["𒆤", "noun", "𒆤", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂍𒀭𒈾", "noun", "𒂍𒀭𒈾", "", "", "", "Eanna temple of"]) + let v = native_list_append(v, ["𒂗𒈨𒇷", "noun", "𒂗𒈨𒇷", "", "", "", "dream interpreter"]) + let v = native_list_append(v, ["𒂚", "noun", "𒂚", "", "", "", "Ligature of 𒂗"]) + let v = native_list_append(v, ["𒂗𒆤𒆠", "noun", "𒂗𒆤𒆠", "", "", "", "Nippur city of"]) + let v = native_list_append(v, ["𒂼𒅈𒅆", "noun", "𒂼𒅈𒅆", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉈𒊒", "noun", "𒉈𒊒", "", "", "", "evil"]) + let v = native_list_append(v, ["𒉆𒉈𒊒", "noun", "𒉆𒉈𒊒", "", "", "", "oath"]) + let v = native_list_append(v, ["𒍠", "noun", "𒍠", "", "", "", "side"]) + let v = native_list_append(v, ["𒋃", "noun", "𒋃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂍𒆳", "noun", "𒂍𒆳", "", "", "", "Ekur Sumerian shrine"]) + let v = native_list_append(v, ["𒆪𒇷", "noun", "𒆪𒇷", "", "", "", "friend"]) + let v = native_list_append(v, ["𒇽𒍇", "noun", "𒇽𒍇", "", "", "", "men people"]) + let v = native_list_append(v, ["𒍇", "noun", "𒍇", "", "", "", "south wind"]) + let v = native_list_append(v, ["𒄑𒈩", "noun", "𒄑𒈩", "", "", "", "a mes tree"]) + let v = native_list_append(v, ["𒈩", "noun", "𒈩", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉺𒁽", "noun", "𒉺𒁽", "", "", "", "state commissioner deputy"]) + let v = native_list_append(v, ["𒆗", "noun", "𒆗", "", "", "", "young man able-bodied"]) + let v = native_list_append(v, ["𒂡", "noun", "𒂡", "", "", "", "festival"]) + let v = native_list_append(v, ["𒇋", "noun", "𒇋", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀀𒊮", "noun", "𒀀𒊮", "", "", "", "field"]) + let v = native_list_append(v, ["𒃷", "noun", "𒃷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉆𒋻", "noun", "𒉆𒋻", "", "", "", "fate destiny"]) + let v = native_list_append(v, ["𒁥", "noun", "𒁥", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉺𒀭", "noun", "𒉺𒀭", "", "", "", "rites rituals customs"]) + let v = native_list_append(v, ["𒉿𒈜𒁕", "noun", "𒉿𒈜𒁕", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒊓𒌋𒃲", "noun", "𒊓𒌋𒃲", "", "", "", "great battle-net a"]) + let v = native_list_append(v, ["𒊓𒋙𒍑𒃲", "noun", "𒊓𒋙𒍑𒃲", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒄞𒉌", "noun", "𒄞𒉌", "", "", "", "fattened ox"]) + let v = native_list_append(v, ["𒇻𒉌", "noun", "𒇻𒉌", "", "", "", "fattened sheep"]) + let v = native_list_append(v, ["𒋗𒆸", "noun", "𒋗𒆸", "", "", "", "total sum"]) + let v = native_list_append(v, ["𒂁", "noun", "𒂁", "", "", "", "clay pot"]) + let v = native_list_append(v, ["𒁷", "noun", "𒁷", "", "", "", "beer made from"]) + let v = native_list_append(v, ["𒉅", "noun", "𒉅", "", "", "", "locust"]) + let v = native_list_append(v, ["𒌢", "noun", "𒌢", "", "", "", "nail claw talon"]) + let v = native_list_append(v, ["𒂞", "noun", "𒂞", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒂞", "noun", "𒄑𒂞", "", "", "", "cedar"]) + let v = native_list_append(v, ["𒀩", "noun", "𒀩", "", "", "", "figure form image"]) + let v = native_list_append(v, ["𒍝𒆳", "noun", "𒍝𒆳", "", "", "", "lapis lazuli"]) + let v = native_list_append(v, ["𒄑𒈪", "noun", "𒄑𒈪", "", "", "", "shade shadow"]) + let v = native_list_append(v, ["𒊨", "noun", "𒊨", "", "", "", "shade"]) + let v = native_list_append(v, ["𒅘", "noun", "𒅘", "", "", "", "thirst"]) + let v = native_list_append(v, ["𒋼𒀀𒀝𒆤", "noun", "𒋼𒀀𒀝𒆤", "", "", "", "prostitute"]) + let v = native_list_append(v, ["𒆘", "noun", "𒆘", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈬𒊬𒊏", "noun", "𒈬𒊬𒊏", "", "", "", "inscription"]) + let v = native_list_append(v, ["𒇽𒅗𒈠", "noun", "𒇽𒅗𒈠", "", "", "", "witness"]) + let v = native_list_append(v, ["𒋼𒇲", "noun", "𒋼𒇲", "", "", "", "policeman constable"]) + let v = native_list_append(v, ["𒌨𒌉", "noun", "𒌨𒌉", "", "", "", "puppy"]) + let v = native_list_append(v, ["𒁄", "noun", "𒁄", "", "", "", "a spindle"]) + let v = native_list_append(v, ["𒄉", "noun", "𒄉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌑𒄉", "noun", "𒌑𒄉", "", "", "", "acacia"]) + let v = native_list_append(v, ["𒄊", "noun", "𒄊", "", "", "", "foot"]) + let v = native_list_append(v, ["𒀀𒂵𒉈𒆠", "noun", "𒀀𒂵𒉈𒆠", "", "", "", "Akkad"]) + let v = native_list_append(v, ["𒀀𒈠𒊒", "noun", "𒀀𒈠𒊒", "", "", "", "devastating flood the"]) + let v = native_list_append(v, ["𒈥𒋽", "noun", "𒈥𒋽", "", "", "", "stormwind mighty storm"]) + let v = native_list_append(v, ["𒀭𒁀𒌑", "noun", "𒀭𒁀𒌑", "", "", "", "Bau healing and"]) + let v = native_list_append(v, ["𒈛", "noun", "𒈛", "", "", "", "secretary civil servant"]) + let v = native_list_append(v, ["𒄘𒌦", "noun", "𒄘𒌦", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄀𒍣", "noun", "𒄀𒍣", "", "", "", "fresh reed young"]) + let v = native_list_append(v, ["𒋆", "noun", "𒋆", "", "", "", "aromatic substance aromatics"]) + let v = native_list_append(v, ["𒌨𒀭𒇉", "noun", "𒌨𒀭𒇉", "", "", "", "Ur-Nammak Sumerian king"]) + let v = native_list_append(v, ["𒋀𒀕", "noun", "𒋀𒀕", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋀𒀊", "noun", "𒋀𒀊", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋀𒀊𒆠", "noun", "𒋀𒀊𒆠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉣", "noun", "𒉣", "", "", "", "noble prince ruler"]) + let v = native_list_append(v, ["𒅻", "noun", "𒅻", "", "", "", "lip"]) + let v = native_list_append(v, ["𒁔", "noun", "𒁔", "", "", "", "snake"]) + let v = native_list_append(v, ["𒈮", "noun", "𒈮", "", "", "", "low-quality wool"]) + let v = native_list_append(v, ["𒊿", "noun", "𒊿", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌛", "noun", "𒌛", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅲", "noun", "𒅲", "", "", "", "incantation"]) + let v = native_list_append(v, ["𒅾", "noun", "𒅾", "", "", "", "beard"]) + let v = native_list_append(v, ["𒅮", "noun", "𒅮", "", "", "", "bladder"]) + let v = native_list_append(v, ["𒀅", "noun", "𒀅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀍", "noun", "𒀍", "", "", "", "earth land"]) + let v = native_list_append(v, ["𒀏", "noun", "𒀏", "", "", "", "the goddess Nanshe"]) + let v = native_list_append(v, ["𒀘", "noun", "𒀘", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀙", "noun", "𒀙", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀚", "noun", "𒀚", "", "", "", "inner body heart"]) + let v = native_list_append(v, ["𒀛", "noun", "𒀛", "", "", "", "a drum"]) + let v = native_list_append(v, ["𒀞", "noun", "𒀞", "", "", "", "battle"]) + let v = native_list_append(v, ["𒀬", "noun", "𒀬", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒁆", "noun", "𒁆", "", "", "", "balang a large"]) + let v = native_list_append(v, ["𒁇", "noun", "𒁇", "", "", "", "outside other side"]) + let v = native_list_append(v, ["𒁑", "noun", "𒁑", "", "", "", "chisel"]) + let v = native_list_append(v, ["𒁓", "noun", "𒁓", "", "", "", "shallow stone bowl"]) + let v = native_list_append(v, ["𒁖", "noun", "𒁖", "", "", "", "a dwelling"]) + let v = native_list_append(v, ["𒁛", "noun", "𒁛", "", "", "", "nipple udder teat"]) + let v = native_list_append(v, ["𒁝", "noun", "𒁝", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒁬", "noun", "𒁬", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒁼", "noun", "𒁼", "", "", "", "sole of the"]) + let v = native_list_append(v, ["𒁽", "noun", "𒁽", "", "", "", "a runner"]) + let v = native_list_append(v, ["𒂀", "noun", "𒂀", "", "", "", "to tremble"]) + let v = native_list_append(v, ["𒂕", "noun", "𒂕", "", "", "", "back end rear"]) + let v = native_list_append(v, ["𒂦", "noun", "𒂦", "", "", "", "wall fortification"]) + let v = native_list_append(v, ["𒂿", "noun", "𒂿", "", "", "", "battle"]) + let v = native_list_append(v, ["𒃉", "noun", "𒃉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃌", "noun", "𒃌", "", "", "", "forethought understanding instruction"]) + let v = native_list_append(v, ["𒃍", "noun", "𒃍", "", "", "", "a basket"]) + let v = native_list_append(v, ["𒃑", "noun", "𒃑", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃡", "noun", "𒃡", "", "", "", "harness"]) + let v = native_list_append(v, ["𒃣", "noun", "𒃣", "", "", "", "womb"]) + let v = native_list_append(v, ["𒃪", "noun", "𒃪", "", "", "", "battle"]) + let v = native_list_append(v, ["𒃰", "noun", "𒃰", "", "", "", "flax"]) + let v = native_list_append(v, ["𒁞", "noun", "𒁞", "", "", "", "ant"]) + let v = native_list_append(v, ["𒃴", "noun", "𒃴", "", "", "", "staircase stair step"]) + let v = native_list_append(v, ["𒃶", "noun", "𒃶", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃼", "noun", "𒃼", "", "", "", "cake"]) + let v = native_list_append(v, ["𒃽", "noun", "𒃽", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄃", "noun", "𒄃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄇", "noun", "𒄇", "", "", "", "ghost spirit of"]) + let v = native_list_append(v, ["𒄎", "noun", "𒄎", "", "", "", "stag deer"]) + let v = native_list_append(v, ["𒄐", "noun", "𒄐", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄙", "noun", "𒄙", "", "", "", "bond knot rope"]) + let v = native_list_append(v, ["𒄛", "noun", "𒄛", "", "", "", "evening"]) + let v = native_list_append(v, ["𒄧", "noun", "𒄧", "", "", "", "fruit flower"]) + let v = native_list_append(v, ["𒄫", "noun", "𒄫", "", "", "", "fish"]) + let v = native_list_append(v, ["𒄴", "noun", "𒄴", "", "", "", "insect bug"]) + let v = native_list_append(v, ["𒄸", "noun", "𒄸", "", "", "", "foot"]) + let v = native_list_append(v, ["𒅐", "noun", "𒅐", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅷", "noun", "𒅷", "", "", "", "thirst"]) + let v = native_list_append(v, ["𒆃", "noun", "𒆃", "", "", "", "prayer"]) + let v = native_list_append(v, ["𒆉", "noun", "𒆉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆏", "noun", "𒆏", "", "", "", "left left-hand left"]) + let v = native_list_append(v, ["𒆝", "noun", "𒆝", "", "", "", "encampment"]) + let v = native_list_append(v, ["𒆢", "noun", "𒆢", "", "", "", "a hole"]) + let v = native_list_append(v, ["𒆣", "noun", "𒆣", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆥", "noun", "𒆥", "", "", "", "work"]) + let v = native_list_append(v, ["𒆵", "noun", "𒆵", "", "", "", "some kind of"]) + let v = native_list_append(v, ["𒆼", "noun", "𒆼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇀", "noun", "𒇀", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇅", "noun", "𒇅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇌", "noun", "𒇌", "", "", "", "oven"]) + let v = native_list_append(v, ["𒇕", "noun", "𒇕", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇖", "noun", "𒇖", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇙", "noun", "𒇙", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇦", "noun", "𒇦", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇫", "noun", "𒇫", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇬", "noun", "𒇬", "", "", "", "a priest"]) + let v = native_list_append(v, ["𒇭", "noun", "𒇭", "", "", "", "a threshing-floor"]) + let v = native_list_append(v, ["𒇮", "noun", "𒇮", "", "", "", "a threshing floor"]) + let v = native_list_append(v, ["𒇯", "noun", "𒇯", "", "", "", "mound"]) + let v = native_list_append(v, ["𒇳", "noun", "𒇳", "", "", "", "loss"]) + let v = native_list_append(v, ["𒇵", "noun", "𒇵", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇺", "noun", "𒇺", "", "", "", "crumb scrap"]) + let v = native_list_append(v, ["𒇼", "noun", "𒇼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇿", "noun", "𒇿", "", "", "", "corpse"]) + let v = native_list_append(v, ["𒈂", "noun", "𒈂", "", "", "", "captive"]) + let v = native_list_append(v, ["𒈌", "noun", "𒈌", "", "", "", "quarrel"]) + let v = native_list_append(v, ["𒈓", "noun", "𒈓", "", "", "", "war"]) + let v = native_list_append(v, ["𒈕", "noun", "𒈕", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈘", "noun", "𒈘", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈙", "noun", "𒈙", "", "", "", "Rare form of"]) + let v = native_list_append(v, ["𒈜", "noun", "𒈜", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈞", "noun", "𒈞", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈧", "noun", "𒈧", "", "", "", "he-goat"]) + let v = native_list_append(v, ["𒈰", "noun", "𒈰", "", "", "", "hair"]) + let v = native_list_append(v, ["𒈱", "noun", "𒈱", "", "", "", "back backbone"]) + let v = native_list_append(v, ["𒈲", "noun", "𒈲", "", "", "", "snake"]) + let v = native_list_append(v, ["𒈽", "noun", "𒈽", "", "", "", "pole of a"]) + let v = native_list_append(v, ["𒈿", "noun", "𒈿", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉄", "noun", "𒉄", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉉", "noun", "𒉉", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒉊", "noun", "𒉊", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒉘", "noun", "𒉘", "", "", "", "thing"]) + let v = native_list_append(v, ["𒉠", "noun", "𒉠", "", "", "", "first-fruit offering"]) + let v = native_list_append(v, ["𒉢", "noun", "𒉢", "", "", "", "alabaster"]) + let v = native_list_append(v, ["𒉥", "noun", "𒉥", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉦", "noun", "𒉦", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉩", "noun", "𒉩", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉪", "noun", "𒉪", "", "", "", "lord"]) + let v = native_list_append(v, ["𒉫", "noun", "𒉫", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉬", "noun", "𒉬", "", "", "", "armour"]) + let v = native_list_append(v, ["𒉻", "noun", "𒉻", "", "", "", "piece portion"]) + let v = native_list_append(v, ["𒊣", "noun", "𒊣", "", "", "", "a cup"]) + let v = native_list_append(v, ["𒊲", "noun", "𒊲", "", "", "", "envy"]) + let v = native_list_append(v, ["𒊻", "noun", "𒊻", "", "", "", "wild duck"]) + let v = native_list_append(v, ["𒊾", "noun", "𒊾", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋄", "noun", "𒋄", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋓", "noun", "𒋓", "", "", "", "testicle"]) + let v = native_list_append(v, ["𒋖", "noun", "𒋖", "", "", "", "a type of"]) + let v = native_list_append(v, ["𒋙", "noun", "𒋙", "", "", "", "totality world"]) + let v = native_list_append(v, ["𒋝", "noun", "𒋝", "", "", "", "south lowland"]) + let v = native_list_append(v, ["𒋟", "noun", "𒋟", "", "", "", "a reed altar"]) + let v = native_list_append(v, ["𒋡", "noun", "𒋡", "", "", "", "fragment"]) + let v = native_list_append(v, ["𒋦", "noun", "𒋦", "", "", "", "tuft plume"]) + let v = native_list_append(v, ["𒋭", "noun", "𒋭", "", "", "", "syrup"]) + let v = native_list_append(v, ["𒋽", "noun", "𒋽", "", "", "", "nugget of gold"]) + let v = native_list_append(v, ["𒌁", "noun", "𒌁", "", "", "", "forest"]) + let v = native_list_append(v, ["𒌃", "noun", "𒌃", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌙", "noun", "𒌙", "", "", "", "middle part midsection"]) + let v = native_list_append(v, ["𒌜", "noun", "𒌜", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌫", "noun", "𒌫", "", "", "", "root trunk base"]) + let v = native_list_append(v, ["𒍂", "noun", "𒍂", "", "", "", "an axe"]) + let v = native_list_append(v, ["𒍍", "noun", "𒍍", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒍒", "noun", "𒍒", "", "", "", "urine"]) + let v = native_list_append(v, ["𒍜", "noun", "𒍜", "", "", "", "flesh meat"]) + let v = native_list_append(v, ["𒍥", "noun", "𒍥", "", "", "", "flour"]) + let v = native_list_append(v, ["𒍦", "noun", "𒍦", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒍨", "noun", "𒍨", "", "", "", "lower body abdomen"]) + let v = native_list_append(v, ["𒍮", "noun", "𒍮", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒎌", "noun", "𒎌", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒅅", "noun", "𒄑𒅅", "", "", "", "door"]) + let v = native_list_append(v, ["𒄑𒁍𒁕", "noun", "𒄑𒁍𒁕", "", "", "", "spear lance"]) + let v = native_list_append(v, ["𒌋𒁯", "noun", "𒌋𒁯", "", "", "", "Ishtar"]) + let v = native_list_append(v, ["𒄀𒁾𒁀", "noun", "𒄀𒁾𒁀", "", "", "", "stylus used to"]) + let v = native_list_append(v, ["𒊩𒆳", "noun", "𒊩𒆳", "", "", "", "dependent woman female"]) + let v = native_list_append(v, ["𒁾𒊬", "noun", "𒁾𒊬", "", "", "", "scribe"]) + let v = native_list_append(v, ["𒉡𒌝𒈠", "noun", "𒉡𒌝𒈠", "", "", "", "jackal"]) + let v = native_list_append(v, ["𒀳𒇲", "noun", "𒀳𒇲", "", "", "", "tenancy rent"]) + let v = native_list_append(v, ["𒀭𒁁𒇷𒇷", "noun", "𒀭𒁁𒇷𒇷", "", "", "", "Belili primordial god"]) + let v = native_list_append(v, ["𒀭𒀀𒆷𒆷", "noun", "𒀭𒀀𒆷𒆷", "", "", "", "Alala Primordial god"]) + let v = native_list_append(v, ["𒂍𒀀", "noun", "𒂍𒀀", "", "", "", "village"]) + let v = native_list_append(v, ["𒉺𒁼", "noun", "𒉺𒁼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈥𒊓", "noun", "𒈥𒊓", "", "", "", "shipyard"]) + let v = native_list_append(v, ["𒋛𒃻", "noun", "𒋛𒃻", "", "", "", "bolt clamp"]) + let v = native_list_append(v, ["𒂅", "noun", "𒂅", "", "", "", "axe"]) + let v = native_list_append(v, ["𒂵𒊭𒀭", "noun", "𒂵𒊭𒀭", "", "", "", "lady queen"]) + let v = native_list_append(v, ["𒅇𒈬𒌦", "noun", "𒅇𒈬𒌦", "", "", "", "lord"]) + let v = native_list_append(v, ["𒂊𒍢", "noun", "𒂊𒍢", "", "", "", "sheep ram"]) + let v = native_list_append(v, ["𒇻𒌀", "noun", "𒇻𒌀", "", "", "", "wild sheep"]) + let v = native_list_append(v, ["𒀯𒇻𒌀", "noun", "𒀯𒇻𒌀", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄿𒉈", "noun", "𒄿𒉈", "", "", "", "eye face front"]) + let v = native_list_append(v, ["𒅗𒈾𒉘", "noun", "𒅗𒈾𒉘", "", "", "", "land country normally"]) + let v = native_list_append(v, ["𒃻𒄢", "noun", "𒃻𒄢", "", "", "", "hatchet maul"]) + let v = native_list_append(v, ["𒄑𒆵𒆠", "noun", "𒄑𒆵𒆠", "", "", "", "Umma an ancient"]) + let v = native_list_append(v, ["𒄑𒆵", "noun", "𒄑𒆵", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂗𒆤", "noun", "𒂗𒆤", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄀𒆤", "noun", "𒄀𒆤", "", "", "", "reed mat"]) + let v = native_list_append(v, ["𒆠𒋩𒊏", "noun", "𒆠𒋩𒊏", "", "", "", "border boundary territory"]) + let v = native_list_append(v, ["𒆠𒌓", "noun", "𒆠𒌓", "", "", "", "threshing floor"]) + let v = native_list_append(v, ["𒊩𒈨", "noun", "𒊩𒈨", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒀭𒉀", "noun", "𒀭𒉀", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀭𒊺𒉀", "noun", "𒀭𒊺𒉀", "", "", "", "Nisaba Sumerian goddess"]) + let v = native_list_append(v, ["𒊩𒆷", "noun", "𒊩𒆷", "", "", "", "female genitals vulva"]) + let v = native_list_append(v, ["𒍖", "noun", "𒍖", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄘𒃼", "noun", "𒄘𒃼", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈦𒄘𒃼", "noun", "𒈦𒄘𒃼", "", "", "", "only used in"]) + let v = native_list_append(v, ["𒄭𒈨𒁕", "noun", "𒄭𒈨𒁕", "", "", "", "purple"]) + let v = native_list_append(v, ["𒆠𒊹", "noun", "𒆠𒊹", "", "", "", "horizon everywhere the"]) + let v = native_list_append(v, ["𒉣𒈨", "noun", "𒉣𒈨", "", "", "", "sage"]) + let v = native_list_append(v, ["𒄑𒄖𒍝", "noun", "𒄑𒄖𒍝", "", "", "", "chair throne"]) + let v = native_list_append(v, ["𒄑𒌁", "noun", "𒄑𒌁", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒎎𒋆𒁉𒍣𒁕", "noun", "𒎎𒋆𒁉𒍣𒁕", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋆𒁉𒍣𒁕", "noun", "𒋆𒁉𒍣𒁕", "", "", "", "kohl antimony paste"]) + let v = native_list_append(v, ["𒀊𒋭", "noun", "𒀊𒋭", "", "", "", "window opening cranny"]) + let v = native_list_append(v, ["𒈠𒁕", "noun", "𒈠𒁕", "", "", "", "land country district"]) + let v = native_list_append(v, ["𒉎𒅗", "noun", "𒉎𒅗", "", "", "", "thief"]) + let v = native_list_append(v, ["𒉎𒍪", "noun", "𒉎𒍪", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒉼𒁶", "noun", "𒄑𒉼𒁶", "", "", "", "bow maker"]) + let v = native_list_append(v, ["𒂷𒄑", "noun", "𒂷𒄑", "", "", "", "weapon mace"]) + let v = native_list_append(v, ["𒄑𒂷𒄑", "noun", "𒄑𒂷𒄑", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒁮𒃼", "noun", "𒁮𒃼", "", "", "", "merchant"]) + let v = native_list_append(v, ["𒂍𒁾𒁀", "noun", "𒂍𒁾𒁀", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂍𒁾𒁀𒀀", "noun", "𒂍𒁾𒁀𒀀", "", "", "", "school"]) + let v = native_list_append(v, ["𒄑𒇷", "noun", "𒄑𒇷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒋆𒇷", "noun", "𒄑𒋆𒇷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇽𒀳", "noun", "𒇽𒀳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒌉𒂠", "noun", "𒄑𒌉𒂠", "", "", "", "stairs ladder"]) + let v = native_list_append(v, ["𒄑𒄿𒇻", "noun", "𒄑𒄿𒇻", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒄉", "noun", "𒄑𒄉", "", "", "", "myrtle"]) + let v = native_list_append(v, ["𒋆𒄉", "noun", "𒋆𒄉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒋆𒊍", "noun", "𒄑𒋆𒊍", "", "", "", "myrtle"]) + let v = native_list_append(v, ["𒄑𒊍", "noun", "𒄑𒊍", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒄒", "noun", "𒄑𒄒", "", "", "", "plum"]) + let v = native_list_append(v, ["𒄀𒄥", "noun", "𒄀𒄥", "", "", "", "a reed measuring"]) + let v = native_list_append(v, ["𒈣𒁻", "noun", "𒈣𒁻", "", "", "", "sailor"]) + let v = native_list_append(v, ["𒆕𒀀𒁉", "noun", "𒆕𒀀𒁉", "", "", "", "all of it/them"]) + let v = native_list_append(v, ["𒃶𒅅", "noun", "𒃶𒅅", "", "", "", "abundance prosperity"]) + let v = native_list_append(v, ["𒅎𒊑𒀀", "noun", "𒅎𒊑𒀀", "", "", "", "clan family"]) + let v = native_list_append(v, ["𒄑𒇀", "noun", "𒄑𒇀", "", "", "", "chariot"]) + let v = native_list_append(v, ["𒄑𒇥", "noun", "𒄑𒇥", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊩𒇬", "noun", "𒊩𒇬", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉋𒂵", "noun", "𒉋𒂵", "", "", "", "fresh fruit"]) + let v = native_list_append(v, ["𒉺𒉋𒂵", "noun", "𒉺𒉋𒂵", "", "", "", "grandfather"]) + let v = native_list_append(v, ["𒀭𒄑𒉋𒂵𒎌", "noun", "𒀭𒄑𒉋𒂵𒎌", "", "", "", "Gilgamesh"]) + let v = native_list_append(v, ["𒊕𒄑𒊏", "noun", "𒊕𒄑𒊏", "", "", "", "murder"]) + let v = native_list_append(v, ["𒀲𒋙𒀭", "noun", "𒀲𒋙𒀭", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒀲𒋙𒀯", "noun", "𒀲𒋙𒀯", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋙𒀭", "noun", "𒋙𒀭", "", "", "", "incantation spell"]) + let v = native_list_append(v, ["𒁇𒀭", "noun", "𒁇𒀭", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌵𒆠", "noun", "𒌵𒆠", "", "", "", "Akkad"]) + let v = native_list_append(v, ["𒀭𒌒𒁕", "noun", "𒀭𒌒𒁕", "", "", "", "quarter corner of"]) + let v = native_list_append(v, ["𒀭𒌒𒁕𒇹𒁀", "noun", "𒀭𒌒𒁕𒇹𒁀", "", "", "", "the four world"]) + let v = native_list_append(v, ["𒄰", "noun", "𒄰", "", "", "", "soup"]) + let v = native_list_append(v, ["𒄴𒈨", "noun", "𒄴𒈨", "", "", "", "an ordinary kind"]) + let v = native_list_append(v, ["𒈬𒁍", "noun", "𒈬𒁍", "", "", "", "dirt"]) + let v = native_list_append(v, ["𒌑𒀀", "noun", "𒌑𒀀", "", "", "", "food and drink"]) + let v = native_list_append(v, ["𒀀𒊏𒍪", "noun", "𒀀𒊏𒍪", "", "", "", "supplication"]) + let v = native_list_append(v, ["𒀬𒀬", "noun", "𒀬𒀬", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒋙𒀯", "noun", "𒋙𒀯", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄩𒇻𒂠", "noun", "𒄩𒇻𒂠", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒄠𒋛𒄯𒊏𒀭", "noun", "𒄠𒋛𒄯𒊏𒀭", "", "", "", "camel"]) + let v = native_list_append(v, ["𒄯𒊏𒀭", "noun", "𒄯𒊏𒀭", "", "", "", "route path passage"]) + let v = native_list_append(v, ["𒅆𒂍", "noun", "𒅆𒂍", "", "", "", "admiration"]) + let v = native_list_append(v, ["𒇽𒊕𒈗", "noun", "𒇽𒊕𒈗", "", "", "", "a royal officer"]) + let v = native_list_append(v, ["𒄑𒈦", "noun", "𒄑𒈦", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒀭𒀭𒉀", "noun", "𒀭𒀭𒉀", "", "", "", "Nanibgal epithet of"]) + let v = native_list_append(v, ["𒊑𒄩𒁵", "noun", "𒊑𒄩𒁵", "", "", "", "dust storm"]) + let v = native_list_append(v, ["𒈦𒌋", "noun", "𒈦𒌋", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊓𒄤", "noun", "𒊓𒄤", "", "", "", "robber"]) + let v = native_list_append(v, ["𒅇𒈛", "noun", "𒅇𒈛", "", "", "", "sapling offshoot tree"]) + let v = native_list_append(v, ["𒊺𒅁", "noun", "𒊺𒅁", "", "", "", "brick"]) + let v = native_list_append(v, ["𒉆𒋖", "noun", "𒉆𒋖", "", "", "", "prayer entreaty supplication"]) + let v = native_list_append(v, ["𒄩𒍝𒈝", "noun", "𒄩𒍝𒈝", "", "", "", "mayor local royal"]) + let v = native_list_append(v, ["𒈾𒆕𒀀", "noun", "𒈾𒆕𒀀", "", "", "", "stele"]) + let v = native_list_append(v, ["𒀉𒀾", "noun", "𒀉𒀾", "", "", "", "wish desire"]) + let v = native_list_append(v, ["𒅗𒌤𒀀", "noun", "𒅗𒌤𒀀", "", "", "", "Gudea ensi of"]) + let v = native_list_append(v, ["𒉢𒁓𒆷𒆠", "noun", "𒉢𒁓𒆷𒆠", "", "", "", "Lagash ancient Sumerian"]) + let v = native_list_append(v, ["𒉢𒁓𒆷", "noun", "𒉢𒁓𒆷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂍𒋞", "noun", "𒂍𒋞", "", "", "", "wall of a"]) + let v = native_list_append(v, ["𒃻𒂵", "noun", "𒃻𒂵", "", "", "", "property"]) + let v = native_list_append(v, ["𒉣𒆠", "noun", "𒉣𒆠", "", "", "", "Eridu ancient Sumerian"]) + let v = native_list_append(v, ["𒄑𒈠", "noun", "𒄑𒈠", "", "", "", "fig"]) + let v = native_list_append(v, ["𒇽𒅇", "noun", "𒇽𒅇", "", "", "", "ergative of 𒇽"]) + let v = native_list_append(v, ["𒋢𒀀𒂔𒇲", "noun", "𒋢𒀀𒂔𒇲", "", "", "", "waterskin"]) + let v = native_list_append(v, ["𒀀𒂔𒇲", "noun", "𒀀𒂔𒇲", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌉𒂠", "noun", "𒌉𒂠", "", "", "", "citizen"]) + let v = native_list_append(v, ["𒉆𒀵", "noun", "𒉆𒀵", "", "", "", "slavery"]) + let v = native_list_append(v, ["𒋛𒀀", "noun", "𒋛𒀀", "", "", "", "excess"]) + let v = native_list_append(v, ["𒁯𒈗𒄷", "noun", "𒁯𒈗𒄷", "", "", "", "rooster cock"]) + let v = native_list_append(v, ["𒄑𒄀𒁍", "noun", "𒄑𒄀𒁍", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒆉𒁇", "noun", "𒆉𒁇", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌓𒅗𒁇𒋗", "noun", "𒌓𒅗𒁇𒋗", "", "", "", "handmirror"]) + let v = native_list_append(v, ["𒊕𒈪𒂵", "noun", "𒊕𒈪𒂵", "", "", "", "Black Headed Ones"]) + let v = native_list_append(v, ["𒄖𒋧", "noun", "𒄖𒋧", "", "", "", "wedge impression cuneiform"]) + let v = native_list_append(v, ["𒅗𒋧", "noun", "𒅗𒋧", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊕𒆕", "noun", "𒊕𒆕", "", "", "", "triangle"]) + let v = native_list_append(v, ["𒀭𒋀𒆠", "noun", "𒀭𒋀𒆠", "", "", "", "Nanna the moon"]) + let v = native_list_append(v, ["𒋀𒆠", "noun", "𒋀𒆠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃻𒀉𒃻", "noun", "𒃻𒀉𒃻", "", "", "", "deception"]) + let v = native_list_append(v, ["𒉆𒄘", "noun", "𒉆𒄘", "", "", "", "oppression"]) + let v = native_list_append(v, ["𒈠𒈬", "noun", "𒈠𒈬", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋼𒀀", "noun", "𒋼𒀀", "", "", "", "quay harbor"]) + let v = native_list_append(v, ["𒈪𒉌𒄑", "noun", "𒈪𒉌𒄑", "", "", "", "G̃ipar cloister a"]) + let v = native_list_append(v, ["𒃮𒋗𒃻", "noun", "𒃮𒋗𒃻", "", "", "", "rival"]) + let v = native_list_append(v, ["𒀭𒎏𒄢", "noun", "𒀭𒎏𒄢", "", "", "", "Ninsun"]) + let v = native_list_append(v, ["𒉣𒇬", "noun", "𒉣𒇬", "", "", "", "stall cattle pen"]) + let v = native_list_append(v, ["𒇽𒃲", "noun", "𒇽𒃲", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀭𒆠", "noun", "𒀭𒆠", "", "", "", "the universe heaven"]) + let v = native_list_append(v, ["𒄑𒇵", "noun", "𒄑𒇵", "", "", "", "terebinth"]) + let v = native_list_append(v, ["𒇶", "noun", "𒇶", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂍𒃻𒂵", "noun", "𒂍𒃻𒂵", "", "", "", "depot"]) + let v = native_list_append(v, ["𒁶𒈠", "noun", "𒁶𒈠", "", "", "", "thought planning"]) + let v = native_list_append(v, ["𒂠𒋤𒉣𒂠𒌅", "noun", "𒂠𒋤𒉣𒂠𒌅", "", "", "", "tethering rope"]) + let v = native_list_append(v, ["𒂑", "noun", "𒂑", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀉𒌉", "noun", "𒀉𒌉", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀉𒊩", "noun", "𒀉𒊩", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃻𒊮𒀀", "noun", "𒃻𒊮𒀀", "", "", "", "greeting gifts present"]) + let v = native_list_append(v, ["𒃻𒊮", "noun", "𒃻𒊮", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒃲𒁔", "noun", "𒃲𒁔", "", "", "", "great serpent dragon"]) + let v = native_list_append(v, ["𒁔𒃲", "noun", "𒁔𒃲", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒎘", "noun", "𒎘", "", "", "", "wet nurse"]) + let v = native_list_append(v, ["𒂠𒁍𒉣𒂠𒌅", "noun", "𒂠𒁍𒉣𒂠𒌅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊺𒂠𒉣𒁍", "noun", "𒊺𒂠𒉣𒁍", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊺𒁍𒉣𒂠", "noun", "𒊺𒁍𒉣𒂠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂠𒁍𒂠𒉣𒂠𒌅", "noun", "𒂠𒁍𒂠𒉣𒂠𒌅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂠𒋤𒌓𒉣𒂠𒌅", "noun", "𒂠𒋤𒌓𒉣𒂠𒌅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂠𒋤𒂠𒌅", "noun", "𒂠𒋤𒂠𒌅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂠𒋤𒉣𒌅𒂠", "noun", "𒂠𒋤𒉣𒌅𒂠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒌆𒉿𒋔", "noun", "𒄑𒌆𒉿𒋔", "", "", "", "ear"]) + let v = native_list_append(v, ["𒋔𒋡", "noun", "𒋔𒋡", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒉌", "noun", "𒄑𒉌", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅎𒈠", "noun", "𒅎𒈠", "", "", "", "last year"]) + let v = native_list_append(v, ["𒄑𒀠", "noun", "𒄑𒀠", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃻𒄃", "noun", "𒃻𒄃", "", "", "", "a kind of"]) + let v = native_list_append(v, ["𒄀𒄃", "noun", "𒄀𒄃", "", "", "", "clasp"]) + let v = native_list_append(v, ["𒅗𒄭", "noun", "𒅗𒄭", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅎𒋗𒆸", "noun", "𒅎𒋗𒆸", "", "", "", "oven"]) + let v = native_list_append(v, ["𒊻𒄷", "noun", "𒊻𒄷", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒉈𒂗", "noun", "𒉈𒂗", "", "", "", "this"]) + let v = native_list_append(v, ["𒉈𒂊", "noun", "𒉈𒂊", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃲𒉌", "noun", "𒃲𒉌", "", "", "", "gardener"]) + let v = native_list_append(v, ["𒈲𒍽", "noun", "𒈲𒍽", "", "", "", "fierce snake a"]) + let v = native_list_append(v, ["𒂚𒇷", "noun", "𒂚𒇷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄭𒊬", "noun", "𒄭𒊬", "", "", "", "lettuce"]) + let v = native_list_append(v, ["𒄭𒄑𒊬", "noun", "𒄭𒄑𒊬", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀭𒊨", "noun", "𒀭𒊨", "", "", "", "shade cover"]) + let v = native_list_append(v, ["𒈨𒈛𒄩𒆠", "noun", "𒈨𒈛𒄩𒆠", "", "", "", "Meluhha"]) + let v = native_list_append(v, ["𒄑𒆕", "noun", "𒄑𒆕", "", "", "", "nail peg stud"]) + let v = native_list_append(v, ["𒄑𒆕𒋾", "noun", "𒄑𒆕𒋾", "", "", "", "arrow"]) + let v = native_list_append(v, ["𒃻𒅮𒈾", "noun", "𒃻𒅮𒈾", "", "", "", "turtle tortoise"]) + let v = native_list_append(v, ["𒉺𒅁", "noun", "𒉺𒅁", "", "", "", "a jar"]) + let v = native_list_append(v, ["𒉏𒄈", "noun", "𒉏𒄈", "", "", "", "lightning bolt"]) + let v = native_list_append(v, ["𒋞𒀲", "noun", "𒋞𒀲", "", "", "", "pile of bricks"]) + let v = native_list_append(v, ["𒀀𒀀𒈝", "noun", "𒀀𒀀𒈝", "", "", "", "stag deer"]) + let v = native_list_append(v, ["𒄿𒋛𒅖", "noun", "𒄿𒋛𒅖", "", "", "", "tears"]) + let v = native_list_append(v, ["𒌑𒌃", "noun", "𒌑𒌃", "", "", "", "reeds rushes"]) + let v = native_list_append(v, ["𒂇", "noun", "𒂇", "", "", "", "herald"]) + let v = native_list_append(v, ["𒀭𒉎𒂂𒄷", "noun", "𒀭𒉎𒂂𒄷", "", "", "", "Anzu lionheaded eagle"]) + let v = native_list_append(v, ["𒅎𒍇𒇻", "noun", "𒅎𒍇𒇻", "", "", "", "south wind"]) + let v = native_list_append(v, ["𒄑𒍣𒃶", "noun", "𒄑𒍣𒃶", "", "", "", "rudder"]) + let v = native_list_append(v, ["𒌨𒁳", "noun", "𒌨𒁳", "", "", "", "cub"]) + let v = native_list_append(v, ["𒀭𒌨𒄞", "noun", "𒀭𒌨𒄞", "", "", "", "alternative spelling of"]) + let v = native_list_append(v, ["𒉏𒆠", "noun", "𒉏𒆠", "", "", "", "Elam"]) + let v = native_list_append(v, ["𒄚", "noun", "𒄚", "", "", "", "pot"]) + let v = native_list_append(v, ["𒀯𒄑𒀳", "noun", "𒀯𒄑𒀳", "", "", "", "Plough Big Dipper"]) + let v = native_list_append(v, ["𒄀𒅆𒆕", "noun", "𒄀𒅆𒆕", "", "", "", "enclosure"]) + let v = native_list_append(v, ["𒀭𒎏𒅁", "noun", "𒀭𒎏𒅁", "", "", "", "Ninurta Sumerian farmer"]) + let v = native_list_append(v, ["𒍏𒊿", "noun", "𒍏𒊿", "", "", "", "ax"]) + let v = native_list_append(v, ["𒍏𒆥", "noun", "𒍏𒆥", "", "", "", "sickle"]) + let v = native_list_append(v, ["𒉩𒄩", "noun", "𒉩𒄩", "", "", "", "a type of"]) + let v = native_list_append(v, ["𒄑𒊑", "noun", "𒄑𒊑", "", "", "", "crossbar gangplank rack"]) + let v = native_list_append(v, ["𒄑𒈿", "noun", "𒄑𒈿", "", "", "", "bed"]) + let v = native_list_append(v, ["𒄑𒉢", "noun", "𒄑𒉢", "", "", "", "light"]) + let v = native_list_append(v, ["𒁮𒅆𒈝", "noun", "𒁮𒅆𒈝", "", "", "", "image likeness figurine"]) + let v = native_list_append(v, ["𒁕𒂵𒈾", "noun", "𒁕𒂵𒈾", "", "", "", "chamber"]) + let v = native_list_append(v, ["𒋗𒅆", "noun", "𒋗𒅆", "", "", "", "finger"]) + let v = native_list_append(v, ["𒅎𒄘𒇲", "noun", "𒅎𒄘𒇲", "", "", "", "series collection"]) + let v = native_list_append(v, ["𒍜𒉌", "noun", "𒍜𒉌", "", "", "", "grease"]) + let v = native_list_append(v, ["𒃻𒋛𒁲", "noun", "𒃻𒋛𒁲", "", "", "", "justice"]) + let v = native_list_append(v, ["𒀀𒁕𒎙", "noun", "𒀀𒁕𒎙", "", "", "", "contest dispute debate"]) + let v = native_list_append(v, ["𒈥𒄩𒅆𒆠", "noun", "𒈥𒄩𒅆𒆠", "", "", "", "Marhaši a historical"]) + let v = native_list_append(v, ["𒋆𒇷", "noun", "𒋆𒇷", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂗𒆠𒄭", "noun", "𒂗𒆠𒄭", "", "", "", "Enkidu companion of"]) + let v = native_list_append(v, ["𒌨𒄖𒆷", "noun", "𒌨𒄖𒆷", "", "", "", "lion"]) + let v = native_list_append(v, ["𒈜𒀀", "noun", "𒈜𒀀", "", "", "", "fox"]) + let v = native_list_append(v, ["𒈨𒍢", "noun", "𒈨𒍢", "", "", "", "a drum"]) + let v = native_list_append(v, ["𒀖𒊮", "noun", "𒀖𒊮", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀸", "verb", "aš", "", "", "", "to be one"]) + let v = native_list_append(v, ["𒃲", "verb", "gal", "", "", "", "to be big"]) + let v = native_list_append(v, ["𒉌", "verb", "zal", "", "", "", "to shine"]) + let v = native_list_append(v, ["𒌋", "verb", "bur₃", "burud", "", "", "to perforate"]) + let v = native_list_append(v, ["𒋰", "verb", "tab", "", "", "", "to begin to"]) + let v = native_list_append(v, ["𒁳", "verb", "dab", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇻", "verb", "lu", "", "", "", "to be abundant"]) + let v = native_list_append(v, ["𒄀𒅔", "verb", "gi-in", "gin", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂟", "verb", "erin₂", "erin", "", "", "to yoke harness"]) + let v = native_list_append(v, ["𒄭𒅕", "verb", "ḫi-ir", "ḫir", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒋧", "verb", "sig₁₀", "sig", "", "", "to put into/onto"]) + let v = native_list_append(v, ["𒈨", "verb", "me", "no-table-tags", "sux-conj-me", "", "to be"]) + let v = native_list_append(v, ["𒋾", "verb", "ti", "tig̃₄", "teg̃₄", "", "perfective of 𒋼"]) + let v = native_list_append(v, ["𒋻", "verb", "ḫaš", "", "", "", "to break off"]) + let v = native_list_append(v, ["𒍣", "verb", "zi", "zid", "", "", "to be true"]) + let v = native_list_append(v, ["𒆰", "verb", "kul", "", "", "", "to gather"]) + let v = native_list_append(v, ["𒋀", "verb", "ses", "sis", "transliteration needed", "", "to be bitter"]) + let v = native_list_append(v, ["𒈦", "verb", "sa₉", "sa", "", "", "to reach half"]) + let v = native_list_append(v, ["𒌉", "verb", "tur", "", "", "", "to be small"]) + let v = native_list_append(v, ["𒍮𒅗", "verb", "𒍮⫽𒅗", "ḫaš₄ dug₄", "ḫaš dug", "", "to have sex"]) + let v = native_list_append(v, ["𒌓", "verb", "babbar", "", "", "", "to be white"]) + let v = native_list_append(v, ["𒋛", "verb", "si", "", "", "", "to fill"]) + let v = native_list_append(v, ["𒅊", "verb", "sig₇", "", "", "", "to pluck hair"]) + let v = native_list_append(v, ["𒄾", "verb", "ḫul₂", "ḫul", "", "", "to rejoice be"]) + let v = native_list_append(v, ["𒁱", "verb", "dara₄", "dara", "", "", "to be red"]) + let v = native_list_append(v, ["𒄞", "verb", "gar₄", "gar", "", "", "to be early"]) + let v = native_list_append(v, ["𒁲", "verb", "di", "", "", "", "present participle of"]) + let v = native_list_append(v, ["𒆠𒉘", "verb", "𒆠⫽𒉘", "ki ag̃₂", "ki ag̃", "", "to love"]) + let v = native_list_append(v, ["𒄤", "verb", "gaz", "", "", "", "to kill slaughter"]) + let v = native_list_append(v, ["𒄣", "verb", "gum", "guz", "kum", "", "to crash smash"]) + let v = native_list_append(v, ["𒅡𒅡", "verb", "mu₃-mu₃", "mu-mu", "", "", "to crash"]) + let v = native_list_append(v, ["𒁺", "verb", "de₆", "de", "", "", "perfective singular with"]) + let v = native_list_append(v, ["𒂵", "verb", "ga", "", "", "", "to bring carry"]) + let v = native_list_append(v, ["𒉈", "verb", "šeŋ₆", "", "", "", "to cook heat"]) + let v = native_list_append(v, ["𒊮𒆸", "verb", "𒊮⫽𒆸", "šag₄ gur₄", "šag gur", "", "to feel wonderful"]) + let v = native_list_append(v, ["𒋗𒅆𒌨", "verb", "𒋗⫽𒅆𒌨", "šu ḫul", "šu ḫulu", "", "to destroy"]) + let v = native_list_append(v, ["𒀭", "verb", "𒀭", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅥", "verb", "gu₇", "gu", "", "", "to eat"]) + let v = native_list_append(v, ["𒀯", "verb", "mul", "", "", "", "to shine sparkle"]) + let v = native_list_append(v, ["𒂼", "verb", "dag̃al", "", "", "", "to be wide"]) + let v = native_list_append(v, ["𒀳", "verb", "uru₄", "uru", "", "", "to sow till"]) + let v = native_list_append(v, ["𒀀", "verb", "aya₂", "", "", "", "to cry moan"]) + let v = native_list_append(v, ["𒅗", "verb", "du₁₁", "𒂊", "𒁲", "", "to do use"]) + let v = native_list_append(v, ["𒍑", "verb", "𒍑", "", "", "", "to be adjacent"]) + let v = native_list_append(v, ["𒈪", "verb", "gigi₂", "giggi", "", "", "to be black"]) + let v = native_list_append(v, ["𒄭", "verb", "dug₃", "", "", "", "to be good"]) + let v = native_list_append(v, ["𒋼", "verb", "te", "", "", "", "to pierce"]) + let v = native_list_append(v, ["𒄷", "verb", "ḫu", "ḫur", "", "", "to scrape off"]) + let v = native_list_append(v, ["𒂊", "verb", "e", "", "", "", "perfective plural and"]) + let v = native_list_append(v, ["𒋳", "verb", "šum", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈝", "verb", "lum", "", "", "", "to be fruitful"]) + let v = native_list_append(v, ["𒌒", "verb", "ar₂", "ar", "", "", "to praise"]) + let v = native_list_append(v, ["𒅕", "verb", "ir", "", "", "", "to bring to"]) + let v = native_list_append(v, ["𒇷", "verb", "li", "lib", "", "", "to be rich"]) + let v = native_list_append(v, ["𒆷", "verb", "la", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒀝", "verb", "a₅", "ak", "", "", "to do perform"]) + let v = native_list_append(v, ["𒄿", "verb", "i", "", "", "", "to sprout come"]) + let v = native_list_append(v, ["𒉏", "verb", "nim", "", "", "", "to be high"]) + let v = native_list_append(v, ["𒁍", "verb", "gid₂", "gid", "", "", "to be long"]) + let v = native_list_append(v, ["𒊏", "verb", "raḫ₂", "raḫ", "", "", "to hit beat"]) + let v = native_list_append(v, ["𒅅", "verb", "g̃al₂", "g̃al", "", "", "to exist be"]) + let v = native_list_append(v, ["𒉡", "verb", "nu", "", "", "", "to be not"]) + let v = native_list_append(v, ["𒊒", "verb", "šub", "", "", "", "to let fall"]) + let v = native_list_append(v, ["𒆪", "verb", "𒆪", "", "", "", "to grasp hold"]) + let v = native_list_append(v, ["𒌌", "verb", "ul", "", "", "", "to be distant"]) + let v = native_list_append(v, ["𒅋", "verb", "il", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒍏", "verb", "𒍏", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆸", "verb", "lagab", "", "", "", "to break into"]) + let v = native_list_append(v, ["𒉽", "verb", "kur₂", "kur", "", "", "to be different"]) + let v = native_list_append(v, ["𒉺", "verb", "sig₃", "", "", "", "to beat upon"]) + let v = native_list_append(v, ["𒌆", "verb", "mu₄", "mur", "", "", "to dress clothe"]) + let v = native_list_append(v, ["𒈤", "verb", "maḫ", "", "", "", "to be high"]) + let v = native_list_append(v, ["𒊩", "verb", "sal", "", "", "", "to be fine"]) + let v = native_list_append(v, ["𒃻", "verb", "g̃ar", "form 𒂷𒂷", "", "", "to put place"]) + let v = native_list_append(v, ["𒌈", "verb", "ib₂", "ib", "", "", "to be angry"]) + let v = native_list_append(v, ["𒄀", "verb", "sig₁₇", "sissig", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄬", "verb", "ḫal", "", "", "", "to divide deal"]) + let v = native_list_append(v, ["𒄥", "verb", "gur", "", "", "", "to turn bend"]) + let v = native_list_append(v, ["𒌅", "verb", "tud", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒁀", "verb", "ba", "", "", "", "to divide up"]) + let v = native_list_append(v, ["𒊑", "verb", "ri", "", "", "", "to lie heavily"]) + let v = native_list_append(v, ["𒃵", "verb", "gam", "gurum", "", "", "to bend bow"]) + let v = native_list_append(v, ["𒂷", "verb", "g̃e₂₆", "g̃en", "", "", "imperative of 𒁺"]) + let v = native_list_append(v, ["𒅤", "verb", "kana₆", "kana", "", "", "to be dark"]) + let v = native_list_append(v, ["𒌶", "verb", "uru₃", "uru", "", "", "to guard watch"]) + let v = native_list_append(v, ["𒂄", "verb", "šul", "", "", "", "to be manly"]) + let v = native_list_append(v, ["𒀠", "verb", "maḫ₂", "maḫ", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊬", "verb", "sar", "", "", "", "to write on"]) + let v = native_list_append(v, ["𒀾", "verb", "aš₂", "", "", "", "to curse be"]) + let v = native_list_append(v, ["𒄯", "verb", "ara₃", "ara", "", "", "to grind"]) + let v = native_list_append(v, ["𒁁", "verb", "bad", "badr", "bař", "", "to open up"]) + let v = native_list_append(v, ["𒍪", "verb", "zu", "", "", "", "to know"]) + let v = native_list_append(v, ["𒋢", "verb", "su", "", "", "", "to sink"]) + let v = native_list_append(v, ["𒂖", "verb", "sikil", "", "", "", "to be pure"]) + let v = native_list_append(v, ["𒆬", "verb", "kug", "ku₃", "", "", "to be sacred"]) + let v = native_list_append(v, ["𒁶", "verb", "𒁶", "", "", "", "to build fashion"]) + let v = native_list_append(v, ["𒅴𒋝𒅥", "verb", "𒅴𒋝⫽𒅥", "eme-sig gu₇", "emesig gu", "", "to slander speak"]) + let v = native_list_append(v, ["𒁲𒋻", "verb", "𒁲⫽𒋻", "di kud", "di kudr", "", "to judge"]) + let v = native_list_append(v, ["𒆕", "verb", "du₃", "dru₃", "řu", "", "to build erect"]) + let v = native_list_append(v, ["𒆭", "verb", "kur₉", "ku₄", "kur", "", "to enter"]) + let v = native_list_append(v, ["𒊷", "verb", "sag₉", "sa₆", "ša₆", "", "to be good"]) + let v = native_list_append(v, ["𒉋", "verb", "bil₂", "bil", "", "", "to burn heat"]) + let v = native_list_append(v, ["𒅍", "verb", "il₂", "il", "", "", "to carry"]) + let v = native_list_append(v, ["𒉚", "verb", "sa₁₀", "sa", "", "", "to measure out"]) + let v = native_list_append(v, ["𒄑𒄯", "verb", "𒄑⫽𒄯", "g̃eš ḫur", "", "", "to incise draw"]) + let v = native_list_append(v, ["𒇥", "verb", "ḫab₂", "ḫab", "", "", "to be malodorous"]) + let v = native_list_append(v, ["𒍼", "verb", "gig", "", "", "", "to be sick"]) + let v = native_list_append(v, ["𒁻", "verb", "laḫ₄", "laḫ", "", "", "imperfective and perfective"]) + let v = native_list_append(v, ["𒁺𒁺", "verb", "laḫ₅", "laḫ", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒉐", "verb", "tum₃", "tum", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒌇", "verb", "tuk", "tuku", "form 𒌇𒌇", "", "to acquire obtain"]) + let v = native_list_append(v, ["𒂠", "verb", "ḫug̃", "", "", "", "to pacify"]) + let v = native_list_append(v, ["𒄵", "verb", "bir", "", "", "", "to scatter disperse"]) + let v = native_list_append(v, ["𒋃", "verb", "silag̃", "", "", "", "to knead"]) + let v = native_list_append(v, ["𒂃", "verb", "du₈", "du", "", "", "to caulk spread"]) + let v = native_list_append(v, ["𒆗", "verb", "kal", "kala", "kalag", "", "to be strong"]) + let v = native_list_append(v, ["𒂡", "verb", "ḫir", "", "", "", "to squeeze tighten"]) + let v = native_list_append(v, ["𒇋", "verb", "šara₂", "šara", "", "", "to slander"]) + let v = native_list_append(v, ["𒉆𒋻", "verb", "𒉆⫽𒋻", "nam tar", "", "", "to determine fate"]) + let v = native_list_append(v, ["𒁷", "verb", "tin", "til", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂞", "verb", "šeš₄", "šeš", "", "", "to anoint"]) + let v = native_list_append(v, ["𒊨𒅇", "verb", "kuš₂-u₃", "kušu", "", "", "to be tired"]) + let v = native_list_append(v, ["𒊨", "verb", "kuš₂", "kušu", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅘", "verb", "nag̃", "form 𒅘𒅘", "", "", "to drink"]) + let v = native_list_append(v, ["𒁄", "verb", "bala", "", "", "", "to cross over"]) + let v = native_list_append(v, ["𒄉", "verb", "ul", "", "", "", "to hasten be"]) + let v = native_list_append(v, ["𒅆𒌨", "verb", "ḫul", "ḫulu", "", "", "to be bad"]) + let v = native_list_append(v, ["𒈛", "verb", "luḫ", "", "", "", "to clean wash"]) + let v = native_list_append(v, ["𒁔", "verb", "bur₂", "bur", "", "", "to spread out"]) + let v = native_list_append(v, ["𒊿", "verb", "šen", "", "", "", "to be pure"]) + let v = native_list_append(v, ["𒀄", "verb", "zaḫ₃", "zaḫ", "", "", "to disappear flee"]) + let v = native_list_append(v, ["𒁇", "verb", "bar", "", "", "", "to lie outside"]) + let v = native_list_append(v, ["𒁖", "verb", "dag", "", "", "", "to spread out"]) + let v = native_list_append(v, ["𒁽", "verb", "kaš₄", "kaš", "", "", "to run"]) + let v = native_list_append(v, ["𒂂", "verb", "dugud", "", "", "", "to be heavy"]) + let v = native_list_append(v, ["𒃡", "verb", "ur₃", "", "", "", "to drag spread"]) + let v = native_list_append(v, ["𒃩", "verb", "dan₃", "dan", "", "", "to be pure"]) + let v = native_list_append(v, ["𒁯", "verb", "𒁯", "", "", "", "to be speckled"]) + let v = native_list_append(v, ["𒃴", "verb", "galam", "", "", "", "to be skillful"]) + let v = native_list_append(v, ["𒃸", "verb", "gur₆", "gur", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒃼", "verb", "gar₃", "gar", "", "", "to be heroic"]) + let v = native_list_append(v, ["𒄃", "verb", "gi₁₆", "gil", "gib", "", "to cross lie"]) + let v = native_list_append(v, ["𒄄", "verb", "gi₄", "gi", "", "", "to return"]) + let v = native_list_append(v, ["𒄗", "verb", "suḫ₃", "suḫ", "", "", "to confuse"]) + let v = native_list_append(v, ["𒄢", "verb", "gul", "", "", "", "to crush grind"]) + let v = native_list_append(v, ["𒅏", "verb", "𒅏", "", "", "", "Old Sumerian form"]) + let v = native_list_append(v, ["𒆁", "verb", "tukur₂", "tukur", "", "", "to chew"]) + let v = native_list_append(v, ["𒆃", "verb", "šud₃", "šud", "", "", "to pray"]) + let v = native_list_append(v, ["𒆉", "verb", "immen", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆒", "verb", "kad₄", "kad", "", "", "to tie"]) + let v = native_list_append(v, ["𒆟", "verb", "gir₁₁", "gir", "", "", "to yoke harness"]) + let v = native_list_append(v, ["𒆥", "verb", "kig̃₂", "kig̃", "", "", "to search seek"]) + let v = native_list_append(v, ["𒆯", "verb", "ku₇", "kud", "form 𒆯𒆯", "", "to be sweet"]) + let v = native_list_append(v, ["𒇡", "verb", "𒇡", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇧", "verb", "bul", "", "", "", "to blow"]) + let v = native_list_append(v, ["𒇲", "verb", "𒇲", "", "", "", "to hang balance"]) + let v = native_list_append(v, ["𒈂", "verb", "šag̃a", "šag̃ar", "", "", "to be oppressed"]) + let v = native_list_append(v, ["𒈜", "verb", "lib", "", "", "", "to daze"]) + let v = native_list_append(v, ["𒈻", "verb", "𒈻", "", "", "", "to be cold"]) + let v = native_list_append(v, ["𒈽", "verb", "suḫ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈿", "verb", "nu₂", "nud", "form 𒈿𒈿", "", "to lie down"]) + let v = native_list_append(v, ["𒉄", "verb", "bulug₄", "bulug", "", "", "to sew"]) + let v = native_list_append(v, ["𒉘", "verb", "ag̃₂", "ag̃", "", "", "to measure"]) + let v = native_list_append(v, ["𒉪", "verb", "nir", "", "", "", "to winnow"]) + let v = native_list_append(v, ["𒉫", "verb", "urgilim", "", "", "", "to be combative"]) + let v = native_list_append(v, ["𒉻", "verb", "pad", "pař", "", "", "to break off"]) + let v = native_list_append(v, ["𒊥", "verb", "gud₂", "gud", "", "", "to jump on"]) + let v = native_list_append(v, ["𒋁", "verb", "še₈", "šeš₂", "šeš", "", "to weep cry"]) + let v = native_list_append(v, ["𒋙", "verb", "šuš₂", "šuš", "", "", "to cover spread"]) + let v = native_list_append(v, ["𒋜", "verb", "su₄", "su", "", "", "to be red"]) + let v = native_list_append(v, ["𒋤", "verb", "su₃", "sud", "suř", "", "to be distant"]) + let v = native_list_append(v, ["𒋩", "verb", "sur", "", "", "", "to press out"]) + let v = native_list_append(v, ["𒋺", "verb", "𒋺", "", "", "", "to break off"]) + let v = native_list_append(v, ["𒌤", "verb", "de₂", "de", "", "", "to pour winnow"]) + let v = native_list_append(v, ["𒍀", "verb", "guruš", "", "", "", "cut peel off"]) + let v = native_list_append(v, ["𒍂", "verb", "silig", "", "", "", "to cease"]) + let v = native_list_append(v, ["𒎌", "verb", "me-eš", "meš", "", "", "third-person plural of"]) + let v = native_list_append(v, ["𒌓𒌓", "verb", "babbar₂", "babbar", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒆯𒆯", "verb", "ku₇-ku₇", "ku-ku", "", "", "reduplicated form of"]) + let v = native_list_append(v, ["𒈠𒀠", "verb", "ma-al", "mal", "", "", "to be there"]) + let v = native_list_append(v, ["𒍢𒅁", "verb", "ze₂-eb", "zeb", "", "", "to be good"]) + let v = native_list_append(v, ["𒍢𒉘", "verb", "ze₂-eg̃₃", "zeg̃", "", "", "to give"]) + let v = native_list_append(v, ["𒄑𒌇", "verb", "𒄑⫽𒌇", "g̃eš tuku", "", "", "to hear"]) + let v = native_list_append(v, ["𒇯𒁺", "verb", "e₁₁", "", "", "", "to ascend go"]) + let v = native_list_append(v, ["𒈦𒄘𒃼", "verb", "dalla", "", "", "", "to be bright"]) + let v = native_list_append(v, ["𒄭𒇷𒋼", "verb", "𒄭𒇷⫽𒋼", "ḫi-li teg̃₃", "ḫili teg̃", "", "to love be"]) + let v = native_list_append(v, ["𒅆𒂟", "verb", "sig₅", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒄑𒌆𒉿𒁺", "verb", "𒄑𒌆𒉿⫽𒁺", "g̃eštug₂ gub", "g̃eštug gub", "", "to pay attention"]) + let v = native_list_append(v, ["𒊕𒄑𒊏", "verb", "𒊕𒄑⫽𒊏", "sag̃ g̃eš raḫ₂", "sag̃ g̃eš raḫ", "", "to kill murder"]) + let v = native_list_append(v, ["𒌓𒁺", "verb", "e₃", "ed", "", "", "to leave go"]) + let v = native_list_append(v, ["𒀀𒋗𒉀", "verb", "𒀀⫽𒋗𒉀", "a tu₅", "a tu", "", "to wash bathe"]) + let v = native_list_append(v, ["𒈬𒁍", "verb", "mu-dur₇", "mudur", "", "", "to be dirty"]) + let v = native_list_append(v, ["𒅆𒌨𒍼", "verb", "𒅆𒌨⫽𒍼", "ḫulu gig", "", "", "to hate"]) + let v = native_list_append(v, ["𒅆𒂍", "verb", "u₆", "u", "", "", "to stare oversee"]) + let v = native_list_append(v, ["𒂷𒂷", "verb", "g̃a₂-g̃a₂", "g̃a-g̃a", "", "", "Reduplicated form of"]) + let v = native_list_append(v, ["𒅇𒌅", "verb", "u₃-tu", "utud", "", "", "to give birth"]) + let v = native_list_append(v, ["𒋛𒀀", "verb", "diri", "dirig", "", "", "to exceed surpass"]) + let v = native_list_append(v, ["𒅆𒋧", "verb", "𒅆⫽𒋧", "igi sig₁₀", "igi sig", "", "to see"]) + let v = native_list_append(v, ["𒄑𒊏", "verb", "𒄑⫽𒊏", "g̃eš raḫ₂", "g̃eš raḫ", "", "to beat slay"]) + let v = native_list_append(v, ["𒅗𒄄", "verb", "𒅗⫽𒄄", "inim gi₄", "inim gi", "", "to answer reply"]) + let v = native_list_append(v, ["𒅗𒌤", "verb", "𒅗⫽𒌤", "gu₃ de₂", "gu de", "", "to say speak"]) + let v = native_list_append(v, ["𒅆𒃻", "verb", "𒅆⫽𒃻", "igi g̃ar", "", "", "to regard gaze"]) + let v = native_list_append(v, ["𒀀𒊒", "verb", "𒀀⫽𒊒", "a ru", "", "", "to dedicate"]) + let v = native_list_append(v, ["𒅆𒁇", "verb", "𒅆⫽𒁇", "igi bar", "", "", "to look at"]) + let v = native_list_append(v, ["𒅆𒊒", "verb", "𒅆𒊒", "", "", "", "to find discover"]) + let v = native_list_append(v, ["𒀀𒄄", "verb", "𒀀⫽𒄄", "a gi₄", "a gi", "", "to deflower"]) + let v = native_list_append(v, ["𒀉𒃻", "verb", "𒀉⫽𒃻", "a₂ g̃ar", "a g̃ar", "", "to defeat"]) + let v = native_list_append(v, ["𒊕𒄄", "verb", "𒊕⫽𒄄", "sag̃ gi₄", "sag̃ gi", "", "to block"]) + let v = native_list_append(v, ["𒈨𒂗", "verb", "me-en", "men", "", "", "first/second-person singular of"]) + let v = native_list_append(v, ["𒀀𒀭", "verb", "𒀀𒀭", "", "", "", "third-person singular enclitic"]) + let v = native_list_append(v, ["𒈨𒂗𒉈𒂗", "verb", "me-en-de₃-en", "menden", "", "", "first-person plural of"]) + let v = native_list_append(v, ["𒈨𒂗𒍢𒂗", "verb", "me-en-ze₂-en", "menzen", "", "", "second-person plural of"]) + let v = native_list_append(v, ["𒊕𒅍", "verb", "𒊕⫽𒅍", "sag̃ il₂", "sag̃ il", "", "to raise the"]) + let v = native_list_append(v, ["𒊕𒁍", "verb", "𒊕⫽𒁍", "sag̃ gid₂", "sag̃ gid", "", "to get angry"]) + let v = native_list_append(v, ["𒇷𒋻", "verb", "𒇷⫽𒋻", "", "", "", "to ask question"]) + let v = native_list_append(v, ["𒃮𒊑", "verb", "𒃮⫽𒊑", "gaba ri", "", "", "to confront advance"]) + let v = native_list_append(v, ["𒋗𒋳", "verb", "𒋗⫽𒋳", "šu tag", "", "", "to decorate"]) + let v = native_list_append(v, ["𒋗𒁶", "verb", "𒋗⫽𒁶", "šu dim₂", "šu dim", "", "to build"]) + let v = native_list_append(v, ["𒄑𒌆𒉿𒋔𒀝", "verb", "𒄑𒌆𒉿𒋔⫽𒀝", "g̃izzal a₅", "g̃izzal ak", "", "to pay attention"]) + let v = native_list_append(v, ["𒀠𒀝", "verb", "𒀠⫽𒀝", "al ak", "", "", "to perform a"]) + let v = native_list_append(v, ["𒀠𒆕", "verb", "𒀠⫽𒆕", "al du₃", "al du", "", "to dig perform"]) + let v = native_list_append(v, ["𒀠𒅗", "verb", "𒀠⫽𒅗", "al dug₄", "al dug", "", "to desire"]) + let v = native_list_append(v, ["𒄷𒈿", "verb", "sa₄", "še₂₁", "še", "", "to call by"]) + let v = native_list_append(v, ["𒉺𒅁", "verb", "šab", "", "", "", "to cut peel"]) + let v = native_list_append(v, ["𒂇", "verb", "mir", "", "", "", "to be angry"]) + let v = native_list_append(v, ["𒅆𒂠", "verb", "libir", "", "", "", "to be old"]) + let v = native_list_append(v, ["𒅴𒁄", "verb", "𒅴⫽𒁄", "eme bala", "", "", "to translate"]) + let v = native_list_append(v, ["𒉪𒅅", "verb", "𒉪⫽𒅅", "nir g̃al₂", "nir g̃al", "", "to trust"]) + let v = native_list_append(v, ["𒃲", "adj", "𒃲", "", "", "", "big large great"]) + let v = native_list_append(v, ["𒌉", "adj", "𒌉", "", "", "", "smaller younger minor"]) + let v = native_list_append(v, ["𒅆", "adj", "𒅆", "", "", "", "first earlier"]) + let v = native_list_append(v, ["𒉈", "adj", "𒉈", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒇶𒆠", "adj", "𒇶𒆠", "", "", "", "heavy"]) + let v = native_list_append(v, ["𒅴𒂠", "adj", "𒅴𒂠", "", "", "", "Sumerian"]) + let v = native_list_append(v, ["𒄗", "adj", "𒄗", "", "", "", "playful"]) + let v = native_list_append(v, ["𒄫", "adj", "𒄫", "", "", "", "thick"]) + let v = native_list_append(v, ["𒇳", "adj", "𒇳", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈜", "adj", "𒈜", "", "", "", "false"]) + let v = native_list_append(v, ["𒋝", "adj", "𒋝", "", "", "", "weak low small"]) + let v = native_list_append(v, ["𒍂", "adj", "𒍂", "", "", "", "to be mighty"]) + let v = native_list_append(v, ["𒄖𒌌", "adj", "𒄖𒌌", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ab", "other", "ab", "", "", "", "romanization of 𒀊"]) + let v = native_list_append(v, ["kun", "other", "kun", "", "", "", "romanization of 𒆲"]) + let v = native_list_append(v, ["nu", "other", "nu", "", "", "", "romanization of 𒉡"]) + let v = native_list_append(v, ["en", "other", "en", "", "", "", "romanization of 𒂗"]) + let v = native_list_append(v, ["te", "other", "te", "", "", "", "romanization of 𒋼"]) + let v = native_list_append(v, ["in", "other", "in", "", "", "", "romanization of 𒅔"]) + let v = native_list_append(v, ["i", "other", "i", "", "", "", "romanization of 𒄿"]) + let v = native_list_append(v, ["man", "other", "man", "", "", "", "romanization of 𒎙"]) + let v = native_list_append(v, ["be", "other", "be", "", "", "", "romanization of 𒁁"]) + let v = native_list_append(v, ["ten", "other", "ten", "", "", "", "romanization of 𒋼"]) + let v = native_list_append(v, ["mi", "other", "mi", "", "", "", "romanization of 𒈪"]) + let v = native_list_append(v, ["amar", "other", "amar", "", "", "", "romanization of 𒀫"]) + let v = native_list_append(v, ["ad", "other", "ad", "", "", "", "romanization of 𒀜"]) + let v = native_list_append(v, ["an", "other", "an", "", "", "", "romanization of 𒀭"]) + let v = native_list_append(v, ["men", "other", "men", "", "", "", "romanization of 𒃞"]) + let v = native_list_append(v, ["tin", "other", "tin", "", "", "", "romanization of 𒁷"]) + let v = native_list_append(v, ["hi", "other", "hi", "", "", "", "romanization of 𒄭"]) + let v = native_list_append(v, ["al", "other", "al", "", "", "", "romanization of 𒀠"]) + let v = native_list_append(v, ["dub", "other", "dub", "", "", "", "romanization of 𒁾"]) + let v = native_list_append(v, ["alim", "other", "alim", "", "", "", "romanization of 𒄋"]) + let v = native_list_append(v, ["ba", "other", "ba", "", "", "", "romanization of 𒁀"]) + let v = native_list_append(v, ["bad", "other", "bad", "", "", "", "romanization of 𒁁"]) + let v = native_list_append(v, ["bal", "other", "bal", "", "", "", "romanization of 𒁄"]) + let v = native_list_append(v, ["me", "other", "me", "", "", "", "romanization of 𒈨"]) + let v = native_list_append(v, ["itu", "other", "itu", "", "", "", "romanization of 𒌗"]) + let v = native_list_append(v, ["dug", "other", "dug", "", "", "", "romanization of 𒂁"]) + let v = native_list_append(v, ["had", "other", "had", "", "", "", "romanization of 𒉺"]) + let v = native_list_append(v, ["ram", "other", "ram", "", "", "", "romanization of 𒉘"]) + let v = native_list_append(v, ["bir", "other", "bir", "", "", "", "romanization of 𒄵"]) + let v = native_list_append(v, ["nin", "other", "nin", "", "", "", "romanization of 𒎏"]) + let v = native_list_append(v, ["ir", "other", "ir", "", "", "", "romanization of 𒅕"]) + let v = native_list_append(v, ["du", "other", "du", "", "", "", "romanization of 𒁺"]) + let v = native_list_append(v, ["sal", "other", "sal", "", "", "", "romanization of 𒊩"]) + let v = native_list_append(v, ["e", "other", "e", "", "", "", "romanization of 𒂊"]) + let v = native_list_append(v, ["rin", "other", "rin", "", "", "", "romanization of 𒆸"]) + let v = native_list_append(v, ["u", "other", "u", "", "", "", "romanization of 𒌋"]) + let v = native_list_append(v, ["uh", "other", "uh", "", "", "", "romanization of 𒄴"]) + let v = native_list_append(v, ["ah", "other", "ah", "", "", "", "romanization of 𒄴"]) + let v = native_list_append(v, ["ha", "other", "ha", "", "", "", "romanization of 𒄩"]) + let v = native_list_append(v, ["un", "other", "un", "", "", "", "romanization of 𒌦"]) + let v = native_list_append(v, ["ta", "other", "ta", "", "", "", "romanization of 𒋫"]) + let v = native_list_append(v, ["mu", "other", "mu", "", "", "", "romanization of 𒈬"]) + let v = native_list_append(v, ["dam", "other", "dam", "", "", "", "romanization of 𒁮"]) + let v = native_list_append(v, ["dal", "other", "dal", "", "", "", "romanization of 𒊑"]) + let v = native_list_append(v, ["li", "other", "li", "", "", "", "romanization of 𒇷"]) + let v = native_list_append(v, ["ne", "other", "ne", "", "", "", "romanization of 𒉈"]) + let v = native_list_append(v, ["na", "other", "na", "", "", "", "romanization of 𒈾"]) + let v = native_list_append(v, ["si", "other", "si", "", "", "", "romanization of 𒋛"]) + let v = native_list_append(v, ["ti", "other", "ti", "", "", "", "romanization of 𒋾"]) + let v = native_list_append(v, ["ga", "other", "ga", "", "", "", "romanization of 𒂵"]) + let v = native_list_append(v, ["ge", "other", "ge", "", "", "", "romanization of 𒄀"]) + let v = native_list_append(v, ["tar", "other", "tar", "", "", "", "romanization of 𒋻"]) + let v = native_list_append(v, ["la", "other", "la", "", "", "", "romanization of 𒆷"]) + let v = native_list_append(v, ["lu", "other", "lu", "", "", "", "romanization of 𒇻"]) + let v = native_list_append(v, ["ra", "other", "ra", "", "", "", "romanization of 𒊏"]) + let v = native_list_append(v, ["pa", "other", "pa", "", "", "", "romanization of 𒉺"]) + let v = native_list_append(v, ["am", "other", "am", "", "", "", "romanization of 𒄠"]) + let v = native_list_append(v, ["bar", "other", "bar", "", "", "", "romanization of 𒁇"]) + let v = native_list_append(v, ["da", "other", "da", "", "", "", "romanization of 𒁕"]) + let v = native_list_append(v, ["mug", "other", "mug", "", "", "", "romanization of 𒈮"]) + let v = native_list_append(v, ["lug", "other", "lug", "", "", "", "romanization of 𒇻"]) + let v = native_list_append(v, ["zu", "other", "zu", "", "", "", "romanization of 𒍪"]) + let v = native_list_append(v, ["gig", "other", "gig", "", "", "", "romanization of 𒍼"]) + let v = native_list_append(v, ["kid", "other", "kid", "", "", "", "romanization of 𒆤"]) + let v = native_list_append(v, ["ter", "other", "ter", "", "", "", "romanization of 𒌁"]) + let v = native_list_append(v, ["nun", "other", "nun", "", "", "", "romanization of 𒉣"]) + let v = native_list_append(v, ["kam", "other", "kam", "", "", "", "romanization of 𒄰"]) + let v = native_list_append(v, ["di", "other", "di", "", "", "", "romanization of 𒁲"]) + let v = native_list_append(v, ["gum", "other", "gum", "", "", "", "romanization of 𒄣"]) + let v = native_list_append(v, ["sa", "other", "sa", "", "", "", "romanization of 𒊓"]) + let v = native_list_append(v, ["pap", "other", "pap", "", "", "", "romanization of 𒉽"]) + let v = native_list_append(v, ["kala", "other", "kala", "", "", "", "romanization of 𒆗"]) + let v = native_list_append(v, ["bun", "other", "bun", "", "", "", "romanization of 𒇌"]) + let v = native_list_append(v, ["gib", "other", "gib", "", "", "", "romanization of 𒄃"]) + let v = native_list_append(v, ["dab", "other", "dab", "", "", "", "romanization of 𒁳"]) + let v = native_list_append(v, ["aba", "other", "aba", "", "", "", "romanization of 𒀊"]) + let v = native_list_append(v, ["su", "other", "su", "", "", "", "romanization of 𒋢"]) + let v = native_list_append(v, ["mar", "other", "mar", "", "", "", "romanization of 𒈥"]) + let v = native_list_append(v, ["pad", "other", "pad", "", "", "", "romanization of 𒉻"]) + let v = native_list_append(v, ["mes", "other", "mes", "", "", "", "romanization of 𒈩"]) + let v = native_list_append(v, ["ma", "other", "ma", "", "", "", "romanization of 𒈠"]) + let v = native_list_append(v, ["za", "other", "za", "", "", "", "romanization of 𒍝"]) + let v = native_list_append(v, ["munus", "other", "munus", "", "", "", "romanization of 𒊩"]) + let v = native_list_append(v, ["az", "other", "az", "", "", "", "romanization of 𒊍"]) + let v = native_list_append(v, ["tag", "other", "tag", "", "", "", "romanization of 𒋳"]) + let v = native_list_append(v, ["jar", "other", "jar", "", "", "", "romanization of 𒃻"]) + let v = native_list_append(v, ["erin", "other", "erin", "", "", "", "romanization of 𒂞"]) + let v = native_list_append(v, ["lag", "other", "lag", "", "", "", "romanization of 𒋃"]) + let v = native_list_append(v, ["hir", "other", "hir", "", "", "", "romanization of 𒆟"]) + let v = native_list_append(v, ["ur", "other", "ur", "", "", "", "romanization of 𒌨"]) + let v = native_list_append(v, ["alan", "other", "alan", "", "", "", "romanization of 𒀩"]) + let v = native_list_append(v, ["gala", "other", "gala", "", "", "", "romanization of 𒍑𒆪"]) + let v = native_list_append(v, ["gam", "other", "gam", "", "", "", "romanization of 𒃵"]) + let v = native_list_append(v, ["mete", "other", "mete", "", "", "", "romanization of 𒋼"]) + let v = native_list_append(v, ["zag", "other", "zag", "", "", "", "romanization of 𒍠"]) + let v = native_list_append(v, ["apin", "other", "apin", "", "", "", "romanization of 𒀳"]) + let v = native_list_append(v, ["eh", "other", "eh", "", "", "", "romanization of 𒄴"]) + let v = native_list_append(v, ["lahar", "other", "lahar", "", "", "", "romanization of 𒇇"]) + let v = native_list_append(v, ["mud", "other", "mud", "", "", "", "romanization of 𒄷𒄭"]) + let v = native_list_append(v, ["ku", "other", "ku", "", "", "", "romanization of 𒆪"]) + let v = native_list_append(v, ["ki", "other", "ki", "", "", "", "romanization of 𒆠"]) + let v = native_list_append(v, ["dim", "other", "dim", "", "", "", "romanization of 𒁴"]) + let v = native_list_append(v, ["eb", "other", "eb", "", "", "", "romanization of 𒅁"]) + let v = native_list_append(v, ["rum", "other", "rum", "", "", "", "romanization of 𒀸"]) + let v = native_list_append(v, ["sila", "other", "sila", "", "", "", "romanization of 𒋻"]) + let v = native_list_append(v, ["hal", "other", "hal", "", "", "", "romanization of 𒄬"]) + let v = native_list_append(v, ["tud", "other", "tud", "", "", "", "romanization of 𒌅"]) + let v = native_list_append(v, ["gul", "other", "gul", "", "", "", "romanization of 𒄢"]) + let v = native_list_append(v, ["gi", "other", "gi", "", "", "", "romanization of 𒄀"]) + let v = native_list_append(v, ["gin", "other", "gin", "", "", "", "romanization of 𒁺"]) + let v = native_list_append(v, ["sur", "other", "sur", "", "", "", "romanization of 𒋩"]) + let v = native_list_append(v, ["min", "other", "min", "", "", "", "romanization of 𒈫"]) + let v = native_list_append(v, ["gal", "other", "gal", "", "", "", "romanization of 𒃲"]) + let v = native_list_append(v, ["sig", "other", "sig", "", "", "", "romanization of 𒋝"]) + let v = native_list_append(v, ["ri", "other", "ri", "", "", "", "romanization of 𒊑"]) + let v = native_list_append(v, ["dul", "other", "dul", "", "", "", "romanization of 𒌋𒌆"]) + let v = native_list_append(v, ["ses", "other", "ses", "", "", "", "romanization of 𒋀"]) + let v = native_list_append(v, ["agam", "other", "agam", "", "", "", "romanization of 𒀂"]) + let v = native_list_append(v, ["tab", "other", "tab", "", "", "", "romanization of 𒋰"]) + let v = native_list_append(v, ["ud", "other", "ud", "", "", "", "romanization of 𒌓"]) + let v = native_list_append(v, ["sahar", "other", "sahar", "", "", "", "romanization of 𒅖"]) + let v = native_list_append(v, ["ka", "other", "ka", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["ama", "other", "ama", "", "", "", "romanization of 𒂼"]) + let v = native_list_append(v, ["dib", "other", "dib", "", "", "", "romanization of 𒁳"]) + let v = native_list_append(v, ["meze", "other", "meze", "", "", "", "romanization of 𒀙"]) + let v = native_list_append(v, ["tuku", "other", "tuku", "", "", "", "romanization of 𒌇"]) + let v = native_list_append(v, ["akan", "other", "akan", "", "", "", "romanization of 𒁛"]) + let v = native_list_append(v, ["kalam", "other", "kalam", "", "", "", "romanization of 𒌦"]) + let v = native_list_append(v, ["suhur", "other", "suhur", "", "", "", "romanization of 𒋦"]) + let v = native_list_append(v, ["num", "other", "num", "", "", "", "romanization of 𒉏"]) + let v = native_list_append(v, ["hu", "other", "hu", "", "", "", "romanization of 𒄷"]) + let v = native_list_append(v, ["utu", "other", "utu", "", "", "", "romanization of 𒌓"]) + let v = native_list_append(v, ["har", "other", "har", "", "", "", "romanization of 𒄯"]) + let v = native_list_append(v, ["mun", "other", "mun", "", "", "", "romanization of 𒁵"]) + let v = native_list_append(v, ["nam", "other", "nam", "", "", "", "romanization of 𒉆"]) + let v = native_list_append(v, ["tum", "other", "tum", "", "", "", "romanization of 𒌈"]) + let v = native_list_append(v, ["jen", "other", "jen", "", "", "", "romanization of 𒁺"]) + let v = native_list_append(v, ["gan", "other", "gan", "", "", "", "romanization of 𒃶"]) + let v = native_list_append(v, ["iri", "other", "iri", "", "", "", "romanization of 𒌷"]) + let v = native_list_append(v, ["ug", "other", "ug", "", "", "", "romanization of 𒊌"]) + let v = native_list_append(v, ["saman", "other", "saman", "", "", "", "romanization of 𒂠𒋤𒉣𒂠𒌅"]) + let v = native_list_append(v, ["bur", "other", "bur", "", "", "", "romanization of 𒁓"]) + let v = native_list_append(v, ["tir", "other", "tir", "", "", "", "romanization of 𒌁"]) + let v = native_list_append(v, ["zid", "other", "zid", "", "", "", "romanization of 𒍣"]) + let v = native_list_append(v, ["im", "other", "im", "", "", "", "romanization of 𒅎"]) + let v = native_list_append(v, ["bala", "other", "bala", "", "", "", "romanization of 𒁄"]) + let v = native_list_append(v, ["igi", "other", "igi", "", "", "", "romanization of 𒅆"]) + let v = native_list_append(v, ["nanna", "other", "nanna", "", "", "", "romanization of 𒋀𒆠"]) + let v = native_list_append(v, ["gaz", "other", "gaz", "", "", "", "romanization of 𒄤"]) + let v = native_list_append(v, ["duh", "other", "duh", "", "", "", "romanization of 𒂃"]) + let v = native_list_append(v, ["gud", "other", "gud", "", "", "", "romanization of 𒄞"]) + let v = native_list_append(v, ["uru", "other", "uru", "", "", "", "romanization of 𒌷"]) + let v = native_list_append(v, ["sud", "other", "sud", "", "", "", "romanization of 𒋤"]) + let v = native_list_append(v, ["hur", "other", "hur", "", "", "", "romanization of 𒄯"]) + let v = native_list_append(v, ["wa", "other", "wa", "", "", "", "romanization of 𒉿"]) + let v = native_list_append(v, ["rah", "other", "rah", "", "", "", "romanization of 𒈛"]) + let v = native_list_append(v, ["umma", "other", "umma", "", "", "", "romanization of 𒄑𒆵"]) + let v = native_list_append(v, ["sim", "other", "sim", "", "", "", "romanization of 𒉆"]) + let v = native_list_append(v, ["kar", "other", "kar", "", "", "", "romanization of 𒋼𒀀"]) + let v = native_list_append(v, ["ak", "other", "ak", "", "", "", "romanization of 𒀝"]) + let v = native_list_append(v, ["kul", "other", "kul", "", "", "", "romanization of 𒆰"]) + let v = native_list_append(v, ["kur", "other", "kur", "", "", "", "romanization of 𒆳"]) + let v = native_list_append(v, ["szesz", "other", "szesz", "", "", "", "romanization of 𒋀"]) + let v = native_list_append(v, ["ezen", "other", "ezen", "", "", "", "romanization of 𒂡"]) + let v = native_list_append(v, ["mur", "other", "mur", "", "", "", "romanization of 𒄯"]) + let v = native_list_append(v, ["eme", "other", "eme", "", "", "", "romanization of 𒅴"]) + let v = native_list_append(v, ["gu", "other", "gu", "", "", "", "romanization of 𒄖"]) + let v = native_list_append(v, ["urin", "other", "urin", "", "", "", "romanization of 𒌶"]) + let v = native_list_append(v, ["tuk", "other", "tuk", "", "", "", "romanization of 𒌇"]) + let v = native_list_append(v, ["sar", "other", "sar", "", "", "", "romanization of 𒊬"]) + let v = native_list_append(v, ["ru", "other", "ru", "", "", "", "romanization of 𒊒"]) + let v = native_list_append(v, ["nina", "other", "nina", "", "", "", "romanization of 𒀏"]) + let v = native_list_append(v, ["kum", "other", "kum", "", "", "", "romanization of 𒄣"]) + let v = native_list_append(v, ["tur", "other", "tur", "", "", "", "romanization of 𒌉"]) + let v = native_list_append(v, ["szita", "other", "szita", "", "", "", "romanization of 𒋖"]) + let v = native_list_append(v, ["saja", "other", "saja", "", "", "", "romanization of 𒋃"]) + let v = native_list_append(v, ["temen", "other", "temen", "", "", "", "romanization of 𒋼"]) + let v = native_list_append(v, ["umum", "other", "umum", "", "", "", "romanization of 𒌣"]) + let v = native_list_append(v, ["sakar", "other", "sakar", "", "", "", "romanization of 𒊬"]) + let v = native_list_append(v, ["imin", "other", "imin", "", "", "", "romanization of 𒐌"]) + let v = native_list_append(v, ["zi", "other", "zi", "", "", "", "romanization of 𒍣"]) + let v = native_list_append(v, ["jesz", "other", "jesz", "", "", "", "romanization of 𒄑"]) + let v = native_list_append(v, ["iti", "other", "iti", "", "", "", "romanization of 𒌗"]) + let v = native_list_append(v, ["eden", "other", "eden", "", "", "", "romanization of 𒂔"]) + let v = native_list_append(v, ["dumu", "other", "dumu", "", "", "", "romanization of 𒌉"]) + let v = native_list_append(v, ["dema", "other", "dema", "", "", "", "romanization of 𒅗𒄭"]) + let v = native_list_append(v, ["szab", "other", "szab", "", "", "", "romanization of 𒉺𒅁"]) + let v = native_list_append(v, ["ih", "other", "ih", "", "", "", "romanization of 𒄴"]) + let v = native_list_append(v, ["gug", "other", "gug", "", "", "", "romanization of 𒍝𒄢"]) + let v = native_list_append(v, ["kal", "other", "kal", "", "", "", "romanization of 𒆗"]) + let v = native_list_append(v, ["ib", "other", "ib", "", "", "", "romanization of 𒅁"]) + let v = native_list_append(v, ["gilim", "other", "gilim", "", "", "", "romanization of 𒄃"]) + let v = native_list_append(v, ["ban3", "other", "ban3", "", "", "", "romanization of 𒌉"]) + let v = native_list_append(v, ["ba3", "other", "ba3", "", "", "", "romanization of 𒌍"]) + let v = native_list_append(v, ["sa3", "other", "sa3", "", "", "", "romanization of 𒍝"]) + let v = native_list_append(v, ["dan3", "other", "dan3", "", "", "", "romanization of 𒃩"]) + let v = native_list_append(v, ["a2", "other", "a2", "", "", "", "romanization of 𒀉"]) + let v = native_list_append(v, ["a5", "other", "a5", "", "", "", "romanization of 𒀝"]) + let v = native_list_append(v, ["bi2", "other", "bi2", "", "", "", "romanization of 𒉈"]) + let v = native_list_append(v, ["ni2", "other", "ni2", "", "", "", "romanization of 𒅎"]) + let v = native_list_append(v, ["pi2", "other", "pi2", "", "", "", "romanization of 𒁉"]) + let v = native_list_append(v, ["si4", "other", "si4", "", "", "", "romanization of 𒋜"]) + let v = native_list_append(v, ["mu3", "other", "mu3", "", "", "", "romanization of 𒅡"]) + let v = native_list_append(v, ["he2", "other", "he2", "", "", "", "romanization of 𒃶"]) + let v = native_list_append(v, ["ne2", "other", "ne2", "", "", "", "romanization of 𒉌"]) + let v = native_list_append(v, ["mi2", "other", "mi2", "", "", "", "romanization of 𒊩"]) + let v = native_list_append(v, ["ni3", "other", "ni3", "", "", "", "romanization of 𒃻"]) + let v = native_list_append(v, ["na2", "other", "na2", "", "", "", "romanization of 𒈿"]) + let v = native_list_append(v, ["na4", "other", "na4", "", "", "", "romanization of 𒎎"]) + let v = native_list_append(v, ["na5", "other", "na5", "", "", "", "romanization of 𒊭"]) + let v = native_list_append(v, ["nu2", "other", "nu2", "", "", "", "romanization of 𒈿"]) + let v = native_list_append(v, ["ge2", "other", "ge2", "", "", "", "romanization of 𒆤"]) + let v = native_list_append(v, ["min3", "other", "min3", "", "", "", "romanization of 𒎙"]) + let v = native_list_append(v, ["mu4", "other", "mu4", "", "", "", "romanization of 𒌆"]) + let v = native_list_append(v, ["dun4", "other", "dun4", "", "", "", "romanization of 𒂈"]) + let v = native_list_append(v, ["kun4", "other", "kun4", "", "", "", "romanization of 𒄿𒇻"]) + let v = native_list_append(v, ["su4", "other", "su4", "", "", "", "romanization of 𒋜"]) + let v = native_list_append(v, ["gu4", "other", "gu4", "", "", "", "romanization of 𒄞"]) + let v = native_list_append(v, ["ku4", "other", "ku4", "", "", "", "romanization of 𒆭"]) + let v = native_list_append(v, ["ge3", "other", "ge3", "", "", "", "romanization of 𒁹"]) + let v = native_list_append(v, ["gun3", "other", "gun3", "", "", "", "romanization of 𒁯"]) + let v = native_list_append(v, ["gu3", "other", "gu3", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["du3", "other", "du3", "", "", "", "romanization of 𒆕"]) + let v = native_list_append(v, ["bu3", "other", "bu3", "", "", "", "romanization of 𒅤"]) + let v = native_list_append(v, ["pu3", "other", "pu3", "", "", "", "romanization of 𒅤"]) + let v = native_list_append(v, ["ru2", "other", "ru2", "", "", "", "romanization of 𒆕"]) + let v = native_list_append(v, ["zu2", "other", "zu2", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["du2", "other", "du2", "", "", "", "romanization of 𒌅"]) + let v = native_list_append(v, ["gu2", "other", "gu2", "", "", "", "romanization of 𒄘"]) + let v = native_list_append(v, ["tu2", "other", "tu2", "", "", "", "romanization of 𒌓"]) + let v = native_list_append(v, ["pu2", "other", "pu2", "", "", "", "romanization of 𒇥"]) + let v = native_list_append(v, ["lu2", "other", "lu2", "", "", "", "romanization of 𒇽"]) + let v = native_list_append(v, ["de2", "other", "de2", "", "", "", "romanization of 𒌤"]) + let v = native_list_append(v, ["e2", "other", "e2", "", "", "", "romanization of 𒂍"]) + let v = native_list_append(v, ["e4", "other", "e4", "", "", "", "romanization of 𒀀"]) + let v = native_list_append(v, ["e3", "other", "e3", "", "", "", "romanization of 𒌓𒁺"]) + let v = native_list_append(v, ["en4", "other", "en4", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["er2", "other", "er2", "", "", "", "romanization of 𒀀𒅆"]) + let v = native_list_append(v, ["er3", "other", "er3", "", "", "", "romanization of 𒀴"]) + let v = native_list_append(v, ["lum", "other", "lum", "", "", "", "romanization of 𒈝"]) + let v = native_list_append(v, ["kunga", "other", "kunga", "", "", "", "romanization of 𒋙𒀯"]) + let v = native_list_append(v, ["ge4", "other", "ge4", "", "", "", "romanization of 𒄄"]) + let v = native_list_append(v, ["men4", "other", "men4", "", "", "", "romanization of 𒇙"]) + let v = native_list_append(v, ["ke4", "other", "ke4", "", "", "", "romanization of 𒆤"]) + let v = native_list_append(v, ["gan2", "other", "gan2", "", "", "", "romanization of 𒃷"]) + let v = native_list_append(v, ["zi2", "other", "zi2", "", "", "", "romanization of 𒍢"]) + let v = native_list_append(v, ["li2", "other", "li2", "", "", "", "romanization of 𒉌"]) + let v = native_list_append(v, ["zi3", "other", "zi3", "", "", "", "romanization of 𒍥"]) + let v = native_list_append(v, ["bi3", "other", "bi3", "", "", "", "romanization of 𒉿"]) + let v = native_list_append(v, ["si3", "other", "si3", "", "", "", "romanization of 𒋧"]) + let v = native_list_append(v, ["di3", "other", "di3", "", "", "", "romanization of 𒋾"]) + let v = native_list_append(v, ["dan4", "other", "dan4", "", "", "", "romanization of 𒃋"]) + let v = native_list_append(v, ["kan4", "other", "kan4", "", "", "", "romanization of 𒆍"]) + let v = native_list_append(v, ["pa4", "other", "pa4", "", "", "", "romanization of 𒉽"]) + let v = native_list_append(v, ["da2", "other", "da2", "", "", "", "romanization of 𒋫"]) + let v = native_list_append(v, ["za2", "other", "za2", "", "", "", "romanization of 𒎎"]) + let v = native_list_append(v, ["dan2", "other", "dan2", "", "", "", "romanization of 𒃞"]) + let v = native_list_append(v, ["ma2", "other", "ma2", "", "", "", "romanization of 𒈣"]) + let v = native_list_append(v, ["ga2", "other", "ga2", "", "", "", "romanization of 𒂷"]) + let v = native_list_append(v, ["nan2", "other", "nan2", "", "", "", "romanization of 𒋀𒆠"]) + let v = native_list_append(v, ["la2", "other", "la2", "", "", "", "romanization of 𒇲"]) + let v = native_list_append(v, ["pi4", "other", "pi4", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["zal", "other", "zal", "", "", "", "romanization of 𒉌"]) + let v = native_list_append(v, ["ka3", "other", "ka3", "", "", "", "romanization of 𒂵"]) + let v = native_list_append(v, ["za3", "other", "za3", "", "", "", "romanization of 𒍠"]) + let v = native_list_append(v, ["tun3", "other", "tun3", "", "", "", "romanization of 𒂅"]) + let v = native_list_append(v, ["ku3", "other", "ku3", "", "", "", "romanization of 𒆬"]) + let v = native_list_append(v, ["su2", "other", "su2", "", "", "", "romanization of 𒍪"]) + let v = native_list_append(v, ["arad", "other", "arad", "", "", "", "romanization of 𒀴"]) + let v = native_list_append(v, ["sun4", "other", "sun4", "", "", "", "romanization of 𒅾"]) + let v = native_list_append(v, ["qi2", "other", "qi2", "", "", "", "romanization of 𒆠"]) + let v = native_list_append(v, ["ze2", "other", "ze2", "", "", "", "romanization of 𒍢"]) + let v = native_list_append(v, ["usan", "other", "usan", "", "", "", "romanization of 𒄛"]) + let v = native_list_append(v, ["nim", "other", "nim", "", "", "", "romanization of 𒉏"]) + let v = native_list_append(v, ["𒌋", "other", "𒌋", "", "", "", "ten 10"]) + let v = native_list_append(v, ["𒁹", "other", "𒁹", "", "", "", "one 1"]) + let v = native_list_append(v, ["𒋰", "other", "𒋰", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uri", "other", "uri", "", "", "", "romanization of 𒌵"]) + let v = native_list_append(v, ["dimma", "other", "dimma", "", "", "", "romanization of 𒅗𒄭"]) + let v = native_list_append(v, ["mu2", "other", "mu2", "", "", "", "romanization of 𒊬"]) + let v = native_list_append(v, ["esir", "other", "esir", "", "", "", "romanization of 𒀀𒇒"]) + let v = native_list_append(v, ["mah", "other", "mah", "", "", "", "romanization of 𒈤"]) + let v = native_list_append(v, ["kurun", "other", "kurun", "", "", "", "romanization of 𒁉𒁷"]) + let v = native_list_append(v, ["nimin", "other", "nimin", "", "", "", "romanization of 𒐏"]) + let v = native_list_append(v, ["kulla", "other", "kulla", "", "", "", "romanization of 𒋞"]) + let v = native_list_append(v, ["tukun", "other", "tukun", "", "", "", "romanization of 𒋗𒃻𒌉𒇲"]) + let v = native_list_append(v, ["urta", "other", "urta", "", "", "", "romanization of 𒅁"]) + let v = native_list_append(v, ["lul", "other", "lul", "", "", "", "romanization of 𒈜"]) + let v = native_list_append(v, ["tah", "other", "tah", "", "", "", "romanization of 𒈭"]) + let v = native_list_append(v, ["nud", "other", "nud", "", "", "", "romanization of 𒈿"]) + let v = native_list_append(v, ["gur", "other", "gur", "", "", "", "romanization of 𒄥"]) + let v = native_list_append(v, ["aš", "other", "aš", "", "", "", "romanization of 𒀸"]) + let v = native_list_append(v, ["sug", "other", "sug", "", "", "", "romanization of 𒆹"]) + let v = native_list_append(v, ["aratta", "other", "aratta", "", "", "", "romanization of 𒇶"]) + let v = native_list_append(v, ["qa", "other", "qa", "", "", "", "romanization of 𒋡"]) + let v = native_list_append(v, ["immen", "other", "immen", "", "", "", "romanization of 𒆉"]) + let v = native_list_append(v, ["eren", "other", "eren", "", "", "", "romanization of 𒂞"]) + let v = native_list_append(v, ["namma", "other", "namma", "", "", "", "romanization of 𒇉"]) + let v = native_list_append(v, ["lal", "other", "lal", "", "", "", "romanization of 𒇲"]) + let v = native_list_append(v, ["𒈫", "other", "𒈫", "", "", "", "two 2"]) + let v = native_list_append(v, ["𒐈", "other", "𒐈", "", "", "", "three 3"]) + let v = native_list_append(v, ["masz", "other", "masz", "", "", "", "romanization of 𒈦"]) + let v = native_list_append(v, ["izi", "other", "izi", "", "", "", "romanization of 𒉈"]) + let v = native_list_append(v, ["gaba", "other", "gaba", "", "", "", "romanization of 𒃮"]) + let v = native_list_append(v, ["szusz", "other", "szusz", "", "", "", "romanization of 𒌋"]) + let v = native_list_append(v, ["szid", "other", "szid", "", "", "", "romanization of 𒋃"]) + let v = native_list_append(v, ["sisi", "other", "sisi", "", "", "", "romanization of 𒀲𒆳𒊏"]) + let v = native_list_append(v, ["sanga", "other", "sanga", "", "", "", "romanization of 𒋃"]) + let v = native_list_append(v, ["𒑆", "other", "𒑆", "", "", "", "nine 9"]) + let v = native_list_append(v, ["luh", "other", "luh", "", "", "", "romanization of 𒈛"]) + let v = native_list_append(v, ["tukul", "other", "tukul", "", "", "", "romanization of 𒆪"]) + let v = native_list_append(v, ["eš", "other", "eš", "", "", "", "romanization of 𒐈"]) + let v = native_list_append(v, ["dili", "other", "dili", "", "", "", "romanization of 𒀸"]) + let v = native_list_append(v, ["hul", "other", "hul", "", "", "", "romanization of 𒅆𒌨"]) + let v = native_list_append(v, ["gub", "other", "gub", "", "", "", "romanization of 𒁺"]) + let v = native_list_append(v, ["mul", "other", "mul", "", "", "", "romanization of 𒀯"]) + let v = native_list_append(v, ["𒂊", "other", "𒂊", "", "", "", "hey"]) + let v = native_list_append(v, ["tusz", "other", "tusz", "", "", "", "romanization of 𒆪"]) + let v = native_list_append(v, ["gin3", "other", "gin3", "", "", "", "romanization of 𒆳"]) + let v = native_list_append(v, ["szu", "other", "szu", "", "", "", "romanization of 𒋗"]) + let v = native_list_append(v, ["uzu", "other", "uzu", "", "", "", "romanization of 𒍜"]) + let v = native_list_append(v, ["muh", "other", "muh", "", "", "", "romanization of 𒌋𒅗"]) + let v = native_list_append(v, ["ig", "other", "ig", "", "", "", "romanization of 𒅅"]) + let v = native_list_append(v, ["dima", "other", "dima", "", "", "", "romanization of 𒅗𒄭"]) + let v = native_list_append(v, ["sam2", "other", "sam2", "", "", "", "romanization of 𒉛"]) + let v = native_list_append(v, ["si5", "other", "si5", "", "", "", "romanization of 𒅆𒂠"]) + let v = native_list_append(v, ["gin6", "other", "gin6", "", "", "", "romanization of 𒄀"]) + let v = native_list_append(v, ["adda", "other", "adda", "", "", "", "romanization of 𒇿"]) + let v = native_list_append(v, ["ji6", "other", "ji6", "", "", "", "romanization of 𒈪"]) + let v = native_list_append(v, ["lagar", "other", "lagar", "", "", "", "romanization of 𒇬"]) + let v = native_list_append(v, ["nigru", "other", "nigru", "", "", "", "romanization of 𒅚"]) + let v = native_list_append(v, ["suen", "other", "suen", "", "", "", "romanization of 𒂗𒍪"]) + let v = native_list_append(v, ["nita", "other", "nita", "", "", "", "romanization of 𒍑"]) + let v = native_list_append(v, ["udu", "other", "udu", "", "", "", "romanization of 𒇻"]) + let v = native_list_append(v, ["naj", "other", "naj", "", "", "", "romanization of 𒅘"]) + let v = native_list_append(v, ["siki", "other", "siki", "", "", "", "romanization of 𒋠"]) + let v = native_list_append(v, ["saj", "other", "saj", "", "", "", "romanization of 𒊕"]) + let v = native_list_append(v, ["guz", "other", "guz", "", "", "", "romanization of 𒄣"]) + let v = native_list_append(v, ["𒄿", "other", "𒄿", "", "", "", "hey"]) + let v = native_list_append(v, ["𒉡", "other", "𒉡", "", "", "", "not no"]) + let v = native_list_append(v, ["gada", "other", "gada", "", "", "", "romanization of 𒃰"]) + let v = native_list_append(v, ["murgu", "other", "murgu", "", "", "", "romanization of 𒋞"]) + let v = native_list_append(v, ["inim", "other", "inim", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["lugal", "other", "lugal", "", "", "", "romanization of 𒈗"]) + let v = native_list_append(v, ["zib", "other", "zib", "", "", "", "romanization of 𒍦"]) + let v = native_list_append(v, ["sin3", "other", "sin3", "", "", "", "romanization of 𒉆"]) + let v = native_list_append(v, ["be6", "other", "be6", "", "", "", "romanization of 𒉿"]) + let v = native_list_append(v, ["bun2", "other", "bun2", "", "", "", "romanization of 𒅮"]) + let v = native_list_append(v, ["subur", "other", "subur", "", "", "", "romanization of 𒋚"]) + let v = native_list_append(v, ["me2", "other", "me2", "", "", "", "romanization of 𒈪"]) + let v = native_list_append(v, ["min6", "other", "min6", "", "", "", "romanization of 𒋰"]) + let v = native_list_append(v, ["min4", "other", "min4", "", "", "", "romanization of 𒎏"]) + let v = native_list_append(v, ["min5", "other", "min5", "", "", "", "romanization of 𒐀"]) + let v = native_list_append(v, ["mun4", "other", "mun4", "", "", "", "romanization of 𒋀"]) + let v = native_list_append(v, ["dan6", "other", "dan6", "", "", "", "romanization of 𒍕"]) + let v = native_list_append(v, ["engur", "other", "engur", "", "", "", "romanization of 𒇉"]) + let v = native_list_append(v, ["en3", "other", "en3", "", "", "", "romanization of 𒇷"]) + let v = native_list_append(v, ["dim2", "other", "dim2", "", "", "", "romanization of 𒁶"]) + let v = native_list_append(v, ["dim3", "other", "dim3", "", "", "", "romanization of 𒈕"]) + let v = native_list_append(v, ["lamma", "other", "lamma", "", "", "", "romanization of 𒆗"]) + let v = native_list_append(v, ["am3", "other", "am3", "", "", "", "romanization of 𒀀𒀭"]) + let v = native_list_append(v, ["lim4", "other", "lim4", "", "", "", "romanization of 𒉈"]) + let v = native_list_append(v, ["galam", "other", "galam", "", "", "", "romanization of 𒃴"]) + let v = native_list_append(v, ["limmu", "other", "limmu", "", "", "", "romanization of 𒐼"]) + let v = native_list_append(v, ["edin", "other", "edin", "", "", "", "romanization of 𒂔"]) + let v = native_list_append(v, ["ziz", "other", "ziz", "", "", "", "romanization of 𒁁"]) + let v = native_list_append(v, ["kalag", "other", "kalag", "", "", "", "romanization of 𒆗"]) + let v = native_list_append(v, ["gin2", "other", "gin2", "", "", "", "romanization of 𒂅"]) + let v = native_list_append(v, ["gun2", "other", "gun2", "", "", "", "romanization of 𒄘"]) + let v = native_list_append(v, ["gurun", "other", "gurun", "", "", "", "romanization of 𒄧"]) + let v = native_list_append(v, ["tumu", "other", "tumu", "", "", "", "romanization of 𒉎"]) + let v = native_list_append(v, ["gurum", "other", "gurum", "", "", "", "romanization of 𒃵"]) + let v = native_list_append(v, ["eger", "other", "eger", "", "", "", "romanization of 𒂕"]) + let v = native_list_append(v, ["unken", "other", "unken", "", "", "", "romanization of 𒌺"]) + let v = native_list_append(v, ["e5", "other", "e5", "", "", "", "romanization of 𒎏"]) + let v = native_list_append(v, ["lu5", "other", "lu5", "", "", "", "romanization of 𒈜"]) + let v = native_list_append(v, ["ku2", "other", "ku2", "", "", "", "romanization of 𒅥"]) + let v = native_list_append(v, ["pa3", "other", "pa3", "", "", "", "romanization of 𒅆𒊒"]) + let v = native_list_append(v, ["su3", "other", "su3", "", "", "", "romanization of 𒋤"]) + let v = native_list_append(v, ["sa5", "other", "sa5", "", "", "", "romanization of 𒋛𒀀"]) + let v = native_list_append(v, ["am6", "other", "am6", "", "", "", "romanization of 𒀭"]) + let v = native_list_append(v, ["ugu", "other", "ugu", "", "", "", "romanization of 𒌋𒅗"]) + let v = native_list_append(v, ["nundun", "other", "nundun", "", "", "", "romanization of 𒅻"]) + let v = native_list_append(v, ["sikil", "other", "sikil", "", "", "", "romanization of 𒂖"]) + let v = native_list_append(v, ["ussu", "other", "ussu", "", "", "", "romanization of 𒐍"]) + let v = native_list_append(v, ["szaru", "other", "szaru", "", "", "", "romanization of 𒐬"]) + let v = native_list_append(v, ["sza", "other", "sza", "", "", "", "romanization of 𒊭"]) + let v = native_list_append(v, ["silim", "other", "silim", "", "", "", "romanization of 𒁲"]) + let v = native_list_append(v, ["alad", "other", "alad", "", "", "", "romanization of 𒆘"]) + let v = native_list_append(v, ["𒊹", "other", "𒊹", "", "", "", "three thousand six"]) + let v = native_list_append(v, ["kurku", "other", "kurku", "", "", "", "romanization of 𒈨𒀭𒊺𒉀"]) + let v = native_list_append(v, ["diri", "other", "diri", "", "", "", "romanization of 𒋛𒀀"]) + let v = native_list_append(v, ["zarah", "other", "zarah", "", "", "", "romanization of 𒊕𒉺𒆸"]) + let v = native_list_append(v, ["elam", "other", "elam", "", "", "", "romanization of 𒉏"]) + let v = native_list_append(v, ["egir", "other", "egir", "", "", "", "romanization of 𒂕"]) + let v = native_list_append(v, ["je6", "other", "je6", "", "", "", "romanization of 𒈪"]) + let v = native_list_append(v, ["kud", "other", "kud", "", "", "", "romanization of 𒋻"]) + let v = native_list_append(v, ["kusz", "other", "kusz", "", "", "", "romanization of 𒋢"]) + let v = native_list_append(v, ["umme", "other", "umme", "", "", "", "romanization of 𒌝𒈨"]) + let v = native_list_append(v, ["kasz", "other", "kasz", "", "", "", "romanization of 𒁉"]) + let v = native_list_append(v, ["kisz", "other", "kisz", "", "", "", "romanization of 𒆧"]) + let v = native_list_append(v, ["disz", "other", "disz", "", "", "", "romanization of 𒁹"]) + let v = native_list_append(v, ["musz", "other", "musz", "", "", "", "romanization of 𒈲"]) + let v = native_list_append(v, ["szur", "other", "szur", "", "", "", "romanization of 𒋩"]) + let v = native_list_append(v, ["ninda", "other", "ninda", "", "", "", "romanization of 𒃻"]) + let v = native_list_append(v, ["sumun", "other", "sumun", "", "", "", "romanization of 𒁁"]) + let v = native_list_append(v, ["idim", "other", "idim", "", "", "", "romanization of 𒁁"]) + let v = native_list_append(v, ["asz", "other", "asz", "", "", "", "romanization of 𒀸"]) + let v = native_list_append(v, ["kin2", "other", "kin2", "", "", "", "romanization of 𒄯"]) + let v = native_list_append(v, ["kadra", "other", "kadra", "", "", "", "romanization of 𒃻𒊮𒀀"]) + let v = native_list_append(v, ["babbar", "other", "babbar", "", "", "", "romanization of 𒌓"]) + let v = native_list_append(v, ["engar", "other", "engar", "", "", "", "romanization of 𒀳"]) + let v = native_list_append(v, ["𒉆-", "other", "𒉆-", "", "", "", "Prefix used to"]) + let v = native_list_append(v, ["𒐊", "other", "𒐊", "", "", "", "five 5"]) + let v = native_list_append(v, ["𒐉", "other", "𒐉", "", "", "", "four 4"]) + let v = native_list_append(v, ["𒐋", "other", "𒐋", "", "", "", "six 6"]) + let v = native_list_append(v, ["𒐌", "other", "𒐌", "", "", "", "seven 7"]) + let v = native_list_append(v, ["𒐍", "other", "𒐍", "", "", "", "eight 8"]) + let v = native_list_append(v, ["𒐎", "other", "𒐎", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒐁", "other", "𒐁", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["sa2", "other", "sa2", "", "", "", "romanization of 𒁲"]) + let v = native_list_append(v, ["i3", "other", "i3", "", "", "", "romanization of 𒉌"]) + let v = native_list_append(v, ["dug4", "other", "dug4", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["du11", "other", "du11", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["gi4", "other", "gi4", "", "", "", "romanization of 𒄄"]) + let v = native_list_append(v, ["kir4", "other", "kir4", "", "", "", "romanization of 𒅗"]) + let v = native_list_append(v, ["aya2", "other", "aya2", "", "", "", "romanization of 𒀀"]) + let v = native_list_append(v, ["duru5", "other", "duru5", "", "", "", "romanization of 𒀀"]) + let v = native_list_append(v, ["eduru", "other", "eduru", "", "", "", "romanization of 𒀁"]) + let v = native_list_append(v, ["ti8", "other", "ti8", "", "", "", "romanization of 𒀉"]) + let v = native_list_append(v, ["abba2", "other", "abba2", "", "", "", "romanization of 𒀋"]) + let v = native_list_append(v, ["unug", "other", "unug", "", "", "", "romanization of 𒀕"]) + let v = native_list_append(v, ["ab2", "other", "ab2", "", "", "", "romanization of 𒀖"]) + let v = native_list_append(v, ["dijir", "other", "dijir", "", "", "", "romanization of 𒀭"]) + let v = native_list_append(v, ["ansze", "other", "ansze", "", "", "", "romanization of 𒀲"]) + let v = native_list_append(v, ["arad2", "other", "arad2", "", "", "", "romanization of 𒀵"]) + let v = native_list_append(v, ["nita2", "other", "nita2", "", "", "", "romanization of 𒀴"]) + let v = native_list_append(v, ["ir3", "other", "ir3", "", "", "", "romanization of 𒀴"]) + let v = native_list_append(v, ["asz2", "other", "asz2", "", "", "", "romanization of 𒀾"]) + let v = native_list_append(v, ["kasz2", "other", "kasz2", "", "", "", "romanization of 𒆜"]) + let v = native_list_append(v, ["kurun2", "other", "kurun2", "", "", "", "romanization of 𒁷"]) + let v = native_list_append(v, ["ubur", "other", "ubur", "", "", "", "romanization of 𒁛"]) + let v = native_list_append(v, ["ubur2", "other", "ubur2", "", "", "", "romanization of 𒁥"]) + let v = native_list_append(v, ["amasz", "other", "amasz", "", "", "", "romanization of 𒁦"]) + let v = native_list_append(v, ["dara4", "other", "dara4", "", "", "", "romanization of 𒁱"]) + let v = native_list_append(v, ["durah2", "other", "durah2", "", "", "", "romanization of 𒁱"]) + let v = native_list_append(v, ["dara3", "other", "dara3", "", "", "", "romanization of 𒁰"]) + let v = native_list_append(v, ["durah", "other", "durah", "", "", "", "romanization of 𒁰"]) + let v = native_list_append(v, ["dab5", "other", "dab5", "", "", "", "romanization of 𒆪"]) + let v = native_list_append(v, ["esz3", "other", "esz3", "", "", "", "romanization of 𒀊"]) + let v = native_list_append(v, ["gen7", "other", "gen7", "", "", "", "romanization of 𒁶"]) + let v = native_list_append(v, ["gin7", "other", "gin7", "", "", "", "romanization of 𒁶"]) + let v = native_list_append(v, ["tum2", "other", "tum2", "", "", "", "romanization of 𒁺"]) + let v = native_list_append(v, ["de6", "other", "de6", "", "", "", "romanization of 𒁺"]) + let v = native_list_append(v, ["lah4", "other", "lah4", "", "", "", "romanization of 𒁻"]) + let v = native_list_append(v, ["tum3", "other", "tum3", "", "", "", "romanization of 𒉐"]) + let v = native_list_append(v, ["kiszib3", "other", "kiszib3", "", "", "", "romanization of 𒁾"]) + let v = native_list_append(v, ["kiszib", "other", "kiszib", "", "", "", "romanization of 𒈩"]) + let v = native_list_append(v, ["tu6", "other", "tu6", "", "", "", "romanization of 𒅲"]) + let v = native_list_append(v, ["du8", "other", "du8", "", "", "", "romanization of 𒂃"]) + let v = native_list_append(v, ["gij4", "other", "gij4", "", "", "", "romanization of 𒂅"]) + let v = native_list_append(v, ["ensi3", "other", "ensi3", "", "", "", "romanization of 𒂚𒇷"]) + let v = native_list_append(v, ["sze3", "other", "sze3", "", "", "", "romanization of 𒂠"]) + let v = native_list_append(v, ["ge7", "other", "ge7", "", "", "", "romanization of 𒂠"]) + let v = native_list_append(v, ["gi7", "other", "gi7", "", "", "", "romanization of 𒂠"]) + let v = native_list_append(v, ["gir15", "other", "gir15", "", "", "", "romanization of 𒂠"]) + let v = native_list_append(v, ["ezem", "other", "ezem", "", "", "", "romanization of 𒂡"]) + let v = native_list_append(v, ["je26", "other", "je26", "", "", "", "romanization of 𒂷"]) + let v = native_list_append(v, ["ja2", "other", "ja2", "", "", "", "romanization of 𒂷"]) + let v = native_list_append(v, ["aszag", "other", "aszag", "", "", "", "romanization of 𒃷"]) + let v = native_list_append(v, ["szag4", "other", "szag4", "", "", "", "romanization of 𒊮"]) + let v = native_list_append(v, ["gu7", "other", "gu7", "", "", "", "romanization of 𒅥"]) + let v = native_list_append(v, ["nij2", "other", "nij2", "", "", "", "romanization of 𒃻"]) + let v = native_list_append(v, ["jesztin", "other", "jesztin", "", "", "", "romanization of 𒃾"]) + let v = native_list_append(v, ["sig17", "other", "sig17", "", "", "", "romanization of 𒄀"]) + let v = native_list_append(v, ["kusz3", "other", "kusz3", "", "", "", "romanization of 𒌑"]) + let v = native_list_append(v, ["sig7", "other", "sig7", "", "", "", "romanization of 𒅊"]) + let v = native_list_append(v, ["jiri2", "other", "jiri2", "", "", "", "romanization of 𒄈"]) + let v = native_list_append(v, ["jir2", "other", "jir2", "", "", "", "romanization of 𒄈"]) + let v = native_list_append(v, ["kiszi17", "other", "kiszi17", "", "", "", "romanization of 𒄉"]) + let v = native_list_append(v, ["kiszig2", "other", "kiszig2", "", "", "", "romanization of 𒄉"]) + let v = native_list_append(v, ["kiszi16", "other", "kiszi16", "", "", "", "romanization of 𒌑𒄉"]) + let v = native_list_append(v, ["kiszig", "other", "kiszig", "", "", "", "romanization of 𒌑𒄉"]) + let v = native_list_append(v, ["jiri3", "other", "jiri3", "", "", "", "romanization of 𒄊"]) + let v = native_list_append(v, ["jiri16", "other", "jiri16", "", "", "", "romanization of 𒄌"]) + let v = native_list_append(v, ["jir3", "other", "jir3", "", "", "", "romanization of 𒄊"]) + let v = native_list_append(v, ["jisz", "other", "jisz", "", "", "", "romanization of 𒄑"]) + let v = native_list_append(v, ["dub3", "other", "dub3", "", "", "", "romanization of 𒄭"]) + let v = native_list_append(v, ["du10", "other", "du10", "", "", "", "romanization of 𒄭"]) + let v = native_list_append(v, ["dug3", "other", "dug3", "", "", "", "romanization of 𒄭"]) + let v = native_list_append(v, ["ara3", "other", "ara3", "", "", "", "romanization of 𒄯"]) + let v = native_list_append(v, ["ur5", "other", "ur5", "", "", "", "romanization of 𒄯"]) + let v = native_list_append(v, ["muszen", "other", "muszen", "", "", "", "romanization of 𒄷"]) + let v = native_list_append(v, ["hul2", "other", "hul2", "", "", "", "romanization of 𒄾"]) + let v = native_list_append(v, ["hab2", "other", "hab2", "", "", "", "romanization of 𒇥"]) + let v = native_list_append(v, ["u3", "other", "u3", "", "", "", "romanization of 𒅇"]) + let v = native_list_append(v, ["agar4", "other", "agar4", "", "", "", "romanization of 𒅊"]) + let v = native_list_append(v, ["si12", "other", "si12", "", "", "", "romanization of 𒅊"]) + let v = native_list_append(v, ["se12", "other", "se12", "", "", "", "romanization of 𒅊"]) + let v = native_list_append(v, ["sig15", "other", "sig15", "", "", "", "romanization of 𒆗"]) + let v = native_list_append(v, ["𒂗", "conj", "𒂗", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒅇", "conj", "𒅇", "", "", "", "and also furthermore"]) + let v = native_list_append(v, ["𒂗𒈾", "conj", "𒂗𒈾", "", "", "", "as far as"]) + let v = native_list_append(v, ["𒋗𒃻𒌉𒇲", "conj", "𒋗𒃻𒌉𒇲", "", "", "", "if"]) + let v = native_list_append(v, ["𒋗𒃻𒌉𒇲𒁉", "conj", "𒋗𒃻𒌉𒇲𒁉", "", "", "", "if"]) + let v = native_list_append(v, ["𒈨", "pron", "𒈨", "", "", "", "our first-person plural"]) + let v = native_list_append(v, ["𒈬", "pron", "𒈬", "", "", "", "my first-person possessive"]) + let v = native_list_append(v, ["𒋫", "pron", "𒋫", "", "", "", "what"]) + let v = native_list_append(v, ["𒁉", "pron", "𒁉", "", "", "", "its third-person non-human"]) + let v = native_list_append(v, ["𒁀", "pron", "𒁀", "", "", "", "genitive of 𒁉"]) + let v = native_list_append(v, ["𒀀𒈾", "pron", "𒀀𒈾", "", "", "", "what?"]) + let v = native_list_append(v, ["𒂷", "pron", "𒂷", "", "", "", "I first-person independent"]) + let v = native_list_append(v, ["𒄯", "pron", "𒄯", "", "", "", "he one"]) + let v = native_list_append(v, ["𒍪", "pron", "𒍪", "", "", "", "thy your second-person"]) + let v = native_list_append(v, ["𒀀𒁀", "pron", "𒀀𒁀", "", "", "", "who"]) + let v = native_list_append(v, ["𒄵", "pron", "𒄵", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒍝𒂊", "pron", "𒍝𒂊", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒂷𒂊", "pron", "𒂷𒂊", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒍢", "pron", "𒍢", "", "", "", "you thou second-person"]) + let v = native_list_append(v, ["𒂷𒀀", "pron", "𒂷𒀀", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒈨𒂊", "pron", "𒈨𒂊", "", "", "", "I first-person independent"]) + let v = native_list_append(v, ["𒀀𒁀𒀀", "pron", "𒀀𒁀𒀀", "", "", "", "ergative of 𒀀𒁀"]) + let v = native_list_append(v, ["𒀀𒉌", "pron", "𒀀𒉌", "", "", "", "his/her third-person human"]) + let v = native_list_append(v, ["𒀀𒉈𒉈", "pron", "𒀀𒉈𒉈", "", "", "", "they third-person plural"]) + let v = native_list_append(v, ["𒍪𒉈𒉈", "pron", "𒍪𒉈𒉈", "", "", "", "your of you"]) + let v = native_list_append(v, ["𒀀𒉈", "pron", "𒀀𒉈", "", "", "", "he she third-person"]) + let v = native_list_append(v, ["𒂗𒉆", "pron", "𒂗𒉆", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𒊺", "det", "𒊺", "", "", "", "that near to"]) + let v = native_list_append(v, ["𒁉", "det", "𒁉", "", "", "", "this near to"]) + let v = native_list_append(v, ["𒁀", "det", "𒁀", "", "", "", "locative of 𒁉"]) + let v = native_list_append(v, ["𒊑", "det", "𒊑", "", "", "", "that far from"]) + let v = native_list_append(v, ["𒋫", "particle", "𒋫", "", "", "", "from out of"]) + let v = native_list_append(v, ["𒁶", "particle", "𒁶", "", "", "", "like as"]) + let v = native_list_append(v, ["𒂠", "particle", "𒂠", "", "", "", "to towards"]) + let v = native_list_append(v, ["𒋗𒃻𒌉𒇲", "adv", "𒋗𒃻𒌉𒇲", "", "", "", "immediately"]) + return v +} + +fn vocab_sux_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_sux_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-txb.el b/elp/src/vocabulary-txb.el new file mode 100644 index 0000000..7afb9d3 --- /dev/null +++ b/elp/src/vocabulary-txb.el @@ -0,0 +1,2487 @@ +// vocabulary-txb.el — Tocharian B vocabulary seed +// 2466 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 2466 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_txb_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["war", "noun", "war", "", "", "", "water"]) + let v = native_list_append(v, ["pit", "noun", "pit", "", "", "", "gall bile"]) + let v = native_list_append(v, ["or", "noun", "or", "", "", "", "wood"]) + let v = native_list_append(v, ["to", "noun", "to", "", "", "", "body hair on"]) + let v = native_list_append(v, ["taupe", "noun", "taupe", "", "", "", "mine place from"]) + let v = native_list_append(v, ["eye", "noun", "eye", "", "", "", "sheep goat"]) + let v = native_list_append(v, ["were", "noun", "were", "", "", "", "smell scent odor"]) + let v = native_list_append(v, ["cake", "noun", "cake", "", "", "", "river"]) + let v = native_list_append(v, ["camel", "noun", "camel", "", "", "", "birth rebirth"]) + let v = native_list_append(v, ["ewe", "noun", "ewe", "", "", "", "skin hide"]) + let v = native_list_append(v, ["ore", "noun", "ore", "", "", "", "dust dirt"]) + let v = native_list_append(v, ["mot", "noun", "mot", "", "", "", "alcohol"]) + let v = native_list_append(v, ["pat", "noun", "pat", "", "", "", "stupa"]) + let v = native_list_append(v, ["tau", "noun", "towä", "", "", "", "a dry measure"]) + let v = native_list_append(v, ["mit", "noun", "mit", "", "", "", "honey"]) + let v = native_list_append(v, ["waste", "noun", "waste", "", "", "", "refuge sanctuary"]) + let v = native_list_append(v, ["op", "noun", "op", "", "", "", "fat lard or"]) + let v = native_list_append(v, ["ek", "noun", "ek", "", "", "", "eye"]) + let v = native_list_append(v, ["nay", "noun", "nay", "", "", "", "politics political affairs"]) + let v = native_list_append(v, ["meli", "noun", "meli", "", "", "", "nose"]) + let v = native_list_append(v, ["avast", "noun", "avast", "", "", "", "condition state"]) + let v = native_list_append(v, ["yap", "noun", "yap", "", "", "", "millet"]) + let v = native_list_append(v, ["pere", "noun", "pere", "", "", "", "a plant stem"]) + let v = native_list_append(v, ["oko", "noun", "oko", "", "", "", "fruit"]) + let v = native_list_append(v, ["misa", "noun", "misa", "", "", "", "meat"]) + let v = native_list_append(v, ["auk", "noun", "auk", "", "", "", "snake serpent"]) + let v = native_list_append(v, ["ere", "noun", "ere", "", "", "", "appearance complexion of"]) + let v = native_list_append(v, ["soy", "noun", "soy", "", "", "", "son"]) + let v = native_list_append(v, ["ku", "noun", "ku", "", "", "", "dog"]) + let v = native_list_append(v, ["walo", "noun", "lāñc", "lānte", "", "", "king"]) + let v = native_list_append(v, ["amok", "noun", "amok", "", "", "", "art artifice craft"]) + let v = native_list_append(v, ["wer", "noun", "wer", "", "", "", "hatred enmity"]) + let v = native_list_append(v, ["El", "noun", "El", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Er", "noun", "Er", "", "", "", "a male given"]) + let v = native_list_append(v, ["maim", "noun", "maim", "", "", "", "thought thinking"]) + let v = native_list_append(v, ["tant", "noun", "tant", "", "", "", "power dominion"]) + let v = native_list_append(v, ["pako", "noun", "pako", "", "", "", "tail"]) + let v = native_list_append(v, ["kanti", "noun", "kanti", "", "", "", "bread"]) + let v = native_list_append(v, ["lenke", "noun", "lenke", "", "", "", "valley"]) + let v = native_list_append(v, ["kare", "noun", "kare", "", "", "", "worth"]) + let v = native_list_append(v, ["ost", "noun", "ostwa", "ostantse", "", "", "house"]) + let v = native_list_append(v, ["erk", "noun", "erk", "", "", "", "testicle"]) + let v = native_list_append(v, ["vek", "noun", "vek", "", "", "", "voice"]) + let v = native_list_append(v, ["pets", "noun", "pets", "", "", "", "husband"]) + let v = native_list_append(v, ["sark", "noun", "sark", "", "", "", "back of the"]) + let v = native_list_append(v, ["yare", "noun", "yare", "", "", "", "gravel"]) + let v = native_list_append(v, ["koto", "noun", "koto", "", "", "", "crevice hole pit"]) + let v = native_list_append(v, ["peri", "noun", "peri", "", "", "", "debt"]) + let v = native_list_append(v, ["kor", "noun", "kor", "", "", "", "throat"]) + let v = native_list_append(v, ["kul", "noun", "kul", "", "", "", "bell"]) + let v = native_list_append(v, ["aise", "noun", "aise", "", "", "", "cooking pot"]) + let v = native_list_append(v, ["pele", "noun", "pele", "", "", "", "law rule"]) + let v = native_list_append(v, ["yel", "noun", "yel", "", "", "", "worm"]) + let v = native_list_append(v, ["moko", "noun", "moko", "", "", "", "elder"]) + let v = native_list_append(v, ["keto", "noun", "keto", "", "", "", "damage"]) + let v = native_list_append(v, ["leki", "noun", "leki", "", "", "", "bed resting place"]) + let v = native_list_append(v, ["kunt", "noun", "kunt", "", "", "", "jasmine especially Jasminum"]) + let v = native_list_append(v, ["Arjuna", "noun", "Arjuna", "", "", "", "a male given"]) + let v = native_list_append(v, ["reme", "noun", "reme", "", "", "", "witness"]) + let v = native_list_append(v, ["matsi", "noun", "matsi", "", "", "", "hair on the"]) + let v = native_list_append(v, ["raso", "noun", "raso", "", "", "", "span unit of"]) + let v = native_list_append(v, ["śwerppewä", "noun", "śwerppewä", "", "", "", "A quadruped."]) + let v = native_list_append(v, ["prete", "noun", "prete", "", "", "", "preta hungry ghost"]) + let v = native_list_append(v, ["parso", "noun", "parso", "", "", "", "letter epistle"]) + let v = native_list_append(v, ["pilko", "noun", "pilko", "", "", "", "look glance view"]) + let v = native_list_append(v, ["yasa", "noun", "yasa", "", "", "", "gold"]) + let v = native_list_append(v, ["melte", "noun", "melte", "", "", "", "dung"]) + let v = native_list_append(v, ["tremi", "noun", "tremi", "", "", "", "anger"]) + let v = native_list_append(v, ["tso", "noun", "tso", "", "", "", "penis"]) + let v = native_list_append(v, ["laks", "noun", "laks", "", "", "", "fish"]) + let v = native_list_append(v, ["teki", "noun", "teki", "", "", "", "disease illness sickness"]) + let v = native_list_append(v, ["panit", "noun", "panit", "", "", "", "molasses"]) + let v = native_list_append(v, ["kera", "noun", "kera", "", "", "", "a type of"]) + let v = native_list_append(v, ["kosi", "noun", "kosi", "", "", "", "cough"]) + let v = native_list_append(v, ["reki", "noun", "reki", "", "", "", "word"]) + let v = native_list_append(v, ["katso", "noun", "katso", "", "", "", "abdomen"]) + let v = native_list_append(v, ["pīle", "noun", "pīle", "", "", "", "wound injury"]) + let v = native_list_append(v, ["kirot", "noun", "kirot", "", "", "", "the bulb of"]) + let v = native_list_append(v, ["yok", "noun", "yok", "", "", "", "color"]) + let v = native_list_append(v, ["yakwe", "noun", "yakwe", "", "", "", "horse"]) + let v = native_list_append(v, ["pācer", "noun", "pācer", "", "", "", "father"]) + let v = native_list_append(v, ["mācer", "noun", "mācer", "", "", "", "mother"]) + let v = native_list_append(v, ["procer", "noun", "procer", "", "", "", "brother"]) + let v = native_list_append(v, ["ṣar", "noun", "ṣar", "", "", "", "hand"]) + let v = native_list_append(v, ["ṣer", "noun", "ṣer", "", "", "", "sister"]) + let v = native_list_append(v, ["ñem", "noun", "ñem", "", "", "", "name"]) + let v = native_list_append(v, ["amāṃ", "noun", "amāṃ", "", "", "", "pride"]) + let v = native_list_append(v, ["śana", "noun", "śana", "", "", "", "woman"]) + let v = native_list_append(v, ["puwar", "noun", "puwar", "", "", "", "fire"]) + let v = native_list_append(v, ["wamer", "noun", "wamer", "", "", "", "jewel pearl"]) + let v = native_list_append(v, ["pilta", "noun", "pilta", "", "", "", "leaf"]) + let v = native_list_append(v, ["kwarsär", "noun", "kwärsarwa", "", "", "", "course path"]) + let v = native_list_append(v, ["lyakur", "noun", "lyakur", "", "", "", "time occasion"]) + let v = native_list_append(v, ["tarkär", "noun", "tarkär", "", "", "", "cloud"]) + let v = native_list_append(v, ["luwo", "noun", "luwo", "", "", "", "animal"]) + let v = native_list_append(v, ["yasar", "noun", "yasar", "", "", "", "blood"]) + let v = native_list_append(v, ["pikul", "noun", "pikul", "", "", "", "year"]) + let v = native_list_append(v, ["paiyye", "noun", "paiyye", "", "", "", "foot"]) + let v = native_list_append(v, ["yapoy", "noun", "yapoy", "", "", "", "land country"]) + let v = native_list_append(v, ["meñe", "noun", "meñe", "", "", "", "moon"]) + let v = native_list_append(v, ["pärwāne", "noun", "pärwāne", "", "", "", "eyebrows"]) + let v = native_list_append(v, ["ṣñor", "noun", "ṣñor", "", "", "", "sinew tendon"]) + let v = native_list_append(v, ["āk", "noun", "āk", "", "", "", "ear of grain"]) + let v = native_list_append(v, ["ytārye", "noun", "ytārye", "", "", "", "road way"]) + let v = native_list_append(v, ["wrauña", "noun", "wrauña", "", "", "", "crow"]) + let v = native_list_append(v, ["wartto", "noun", "wartto", "", "", "", "forest woods woodland"]) + let v = native_list_append(v, ["yerkwanto", "noun", "yerkwanto", "", "", "", "wheel"]) + let v = native_list_append(v, ["tankw", "noun", "tankw", "", "", "", "love"]) + let v = native_list_append(v, ["wek", "noun", "wek", "", "", "", "voice noise"]) + let v = native_list_append(v, ["wrat", "noun", "wrat", "", "", "", "vow"]) + let v = native_list_append(v, ["lesto", "noun", "lesto", "", "", "", "nest of a"]) + let v = native_list_append(v, ["atka", "noun", "atka", "", "", "", "concentration possibly"]) + let v = native_list_append(v, ["karwa", "noun", "karwa", "", "", "", "reeds"]) + let v = native_list_append(v, ["käryāñ", "noun", "käryāñ", "", "", "", "hearts"]) + let v = native_list_append(v, ["newe", "noun", "newe", "", "", "", "roar"]) + let v = native_list_append(v, ["laute", "noun", "laute", "", "", "", "moment point in"]) + let v = native_list_append(v, ["āp", "noun", "āp", "", "", "", "water"]) + let v = native_list_append(v, ["ścirye", "noun", "ścirye", "", "", "", "stars"]) + let v = native_list_append(v, ["walkwe", "noun", "walkwe", "", "", "", "wolf"]) + let v = native_list_append(v, ["telki", "noun", "telki", "", "", "", "sacrifice"]) + let v = native_list_append(v, ["tkācer", "noun", "tkācer", "", "", "", "daughter"]) + let v = native_list_append(v, ["awi", "noun", "awi", "", "", "", "ewes"]) + let v = native_list_append(v, ["kene", "noun", "kene", "", "", "", "melody tune"]) + let v = native_list_append(v, ["yape", "noun", "yape", "", "", "", "spider"]) + let v = native_list_append(v, ["kunti", "noun", "kunti", "", "", "", "pot or similar"]) + let v = native_list_append(v, ["keni", "noun", "keni", "", "", "", "knees"]) + let v = native_list_append(v, ["soṃśke", "noun", "soṃśke", "", "", "", "son"]) + let v = native_list_append(v, ["pelke", "noun", "pelke", "", "", "", "a solemn but"]) + let v = native_list_append(v, ["kele", "noun", "kele", "", "", "", "navel belly button"]) + let v = native_list_append(v, ["pilke", "noun", "pilke", "", "", "", "copper"]) + let v = native_list_append(v, ["mīt", "noun", "mīt", "", "", "", "honey"]) + let v = native_list_append(v, ["wase", "noun", "wase", "", "", "", "poison"]) + let v = native_list_append(v, ["saim", "noun", "saim", "", "", "", "refuge"]) + let v = native_list_append(v, ["twere", "noun", "twere", "", "", "", "door"]) + let v = native_list_append(v, ["teri", "noun", "teri", "", "", "", "way manner"]) + let v = native_list_append(v, ["warme", "noun", "warme", "", "", "", "ant"]) + let v = native_list_append(v, ["okso", "noun", "okso", "", "", "", "cow ox head"]) + let v = native_list_append(v, ["weta", "noun", "weta", "", "", "", "a battle struggle"]) + let v = native_list_append(v, ["laur", "noun", "laur", "", "", "", "spike of iron"]) + let v = native_list_append(v, ["tarne", "noun", "tarne", "", "", "", "crown of the"]) + let v = native_list_append(v, ["werke", "noun", "werke", "", "", "", "hunt hunting"]) + let v = native_list_append(v, ["sleme", "noun", "sleme", "", "", "", "flame"]) + let v = native_list_append(v, ["sanu", "noun", "sanu", "", "", "", "danger peril"]) + let v = native_list_append(v, ["trau", "noun", "trau", "", "", "", "a unit of"]) + let v = native_list_append(v, ["klu", "noun", "klu", "", "", "", "rice"]) + let v = native_list_append(v, ["soye", "noun", "soye", "", "", "", "doll effigy used"]) + let v = native_list_append(v, ["etre", "noun", "etre", "", "", "", "hero"]) + let v = native_list_append(v, ["ekito", "noun", "ekito", "", "", "", "help assistance"]) + let v = native_list_append(v, ["sarpe", "noun", "sarpe", "", "", "", "serpent. snake"]) + let v = native_list_append(v, ["yarm", "noun", "yarm", "", "", "", "measure measurement"]) + let v = native_list_append(v, ["lyam", "noun", "lyam", "", "", "", "sea ocean"]) + let v = native_list_append(v, ["poko", "noun", "poko", "", "", "", "arm"]) + let v = native_list_append(v, ["yarke", "noun", "yarke", "", "", "", "honor reverence"]) + let v = native_list_append(v, ["perne", "noun", "perne", "", "", "", "power rank stage"]) + let v = native_list_append(v, ["tāsi", "noun", "tāsi", "", "", "", "receptacle container"]) + let v = native_list_append(v, ["indri", "noun", "indri", "", "", "", "sensory organ"]) + let v = native_list_append(v, ["ampar", "noun", "ampar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āre", "noun", "āre", "", "", "", "plough"]) + let v = native_list_append(v, ["arañce", "noun", "arañce", "", "", "", "heart used both"]) + let v = native_list_append(v, ["kokale", "noun", "kokale", "", "", "", "wagon cart"]) + let v = native_list_append(v, ["mīsa", "noun", "mīsa", "", "", "", "meat flesh"]) + let v = native_list_append(v, ["malkwer", "noun", "malkwer", "", "", "", "milk"]) + let v = native_list_append(v, ["keṃ", "noun", "keṃ", "", "", "", "earth ground"]) + let v = native_list_append(v, ["ānte", "noun", "ānte", "", "", "", "surface"]) + let v = native_list_append(v, ["aknātsa", "noun", "aknātsa", "", "", "", "fool"]) + let v = native_list_append(v, ["yente", "noun", "yente", "", "", "", "wind"]) + let v = native_list_append(v, ["parwe", "noun", "parwe", "", "", "", "first"]) + let v = native_list_append(v, ["āñme", "noun", "āñme", "", "", "", "self"]) + let v = native_list_append(v, ["āñcäm", "noun", "āñcäm", "", "", "", "black dye pigment"]) + let v = native_list_append(v, ["suwo", "noun", "suwo", "", "", "", "pig hog swine"]) + let v = native_list_append(v, ["salyiye", "noun", "salyiye", "", "", "", "salt"]) + let v = native_list_append(v, ["akrūna", "noun", "akrūna", "", "", "", "tears drops of"]) + let v = native_list_append(v, ["kantwo", "noun", "kantwaṃ", "käntwāntse", "", "", "tongue"]) + let v = native_list_append(v, ["āy", "noun", "āsta", "", "", "", "bone"]) + let v = native_list_append(v, ["wastsi", "noun", "wastsi", "", "", "", "clothing clothes garments"]) + let v = native_list_append(v, ["mekwa", "noun", "mekwa", "", "", "", "nails fingernails"]) + let v = native_list_append(v, ["laiko", "noun", "laiko", "", "", "", "bath washing"]) + let v = native_list_append(v, ["taram", "noun", "taram", "", "", "", "Fagonica cretica a"]) + let v = native_list_append(v, ["indre", "noun", "indre", "", "", "", "Indra chief of"]) + let v = native_list_append(v, ["keta", "noun", "keta", "", "", "", "garden field"]) + let v = native_list_append(v, ["kest", "noun", "kest", "", "", "", "hunger"]) + let v = native_list_append(v, ["letse", "noun", "letse", "", "", "", "lock of hair"]) + let v = native_list_append(v, ["māla", "noun", "māla", "", "", "", "intoxicating drink liquor"]) + let v = native_list_append(v, ["arṣāklo", "noun", "arṣāklo", "", "", "", "viper poisonous snake"]) + let v = native_list_append(v, ["kauṃ", "noun", "kauṃ", "", "", "", "sun"]) + let v = native_list_append(v, ["eṅkwe", "noun", "eṅkwe", "", "", "", "man male person"]) + let v = native_list_append(v, ["samudtär", "noun", "samudtär", "", "", "", "ocean sea"]) + let v = native_list_append(v, ["yetse", "noun", "yetse", "", "", "", "skin"]) + let v = native_list_append(v, ["kuśiññe", "noun", "kuśiññe", "", "", "", "The indigenous name"]) + let v = native_list_append(v, ["enmetre", "noun", "enmetre", "", "", "", "The meaning of"]) + let v = native_list_append(v, ["kāre", "noun", "kāre", "", "", "", "hole pit"]) + let v = native_list_append(v, ["svastik", "noun", "svastik", "", "", "", "swastika"]) + let v = native_list_append(v, ["klyiye", "noun", "klyiye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṣamāne", "noun", "ṣamāni", "ṣamānentse", "", "", "monk"]) + let v = native_list_append(v, ["witsako", "noun", "witsako", "", "", "", "root"]) + let v = native_list_append(v, ["ñakte", "noun", "ñakti", "ñaktentse", "", "", "god lord"]) + let v = native_list_append(v, ["yentuke", "noun", "yentuke", "", "", "", "an Indian"]) + let v = native_list_append(v, ["lāntsa", "noun", "lāntsa", "", "", "", "queen"]) + let v = native_list_append(v, ["keme", "noun", "keme", "", "", "", "tooth"]) + let v = native_list_append(v, ["meske", "noun", "meske", "", "", "", "joint anatomy"]) + let v = native_list_append(v, ["särwāna", "noun", "särwāna", "", "", "", "face"]) + let v = native_list_append(v, ["tāno", "noun", "tāno", "", "", "", "grain"]) + let v = native_list_append(v, ["skiyo", "noun", "skiyo", "", "", "", "shadow shade"]) + let v = native_list_append(v, ["maitär", "noun", "maitär", "", "", "", "friendship"]) + let v = native_list_append(v, ["menki", "noun", "menki", "", "", "", "lack deficiency"]) + let v = native_list_append(v, ["akāśe", "noun", "akāśe", "", "", "", "sky"]) + let v = native_list_append(v, ["gandha", "noun", "gandha", "", "", "", "perfume"]) + let v = native_list_append(v, ["orotstse", "noun", "orotstse", "", "", "", "an adult"]) + let v = native_list_append(v, ["preke", "noun", "preke", "", "", "", "time occasion"]) + let v = native_list_append(v, ["saiwe", "noun", "saiwe", "", "", "", "itch itching"]) + let v = native_list_append(v, ["klene", "noun", "klene", "", "", "", "noise sound"]) + let v = native_list_append(v, ["kenek", "noun", "kenek", "", "", "", "cotton fabric"]) + let v = native_list_append(v, ["yasā", "noun", "yasā", "", "", "", "gold"]) + let v = native_list_append(v, ["īke", "noun", "īke", "", "", "", "place location"]) + let v = native_list_append(v, ["mātar", "noun", "mātar", "", "", "", "monster"]) + let v = native_list_append(v, ["śrāy", "noun", "śrānäṃ", "", "", "", "adult males"]) + let v = native_list_append(v, ["kuñcit", "noun", "kuñcit", "", "", "", "sesame"]) + let v = native_list_append(v, ["cok", "noun", "cok", "", "", "", "lamp"]) + let v = native_list_append(v, ["yeste", "noun", "yeste", "", "", "", "skin outer"]) + let v = native_list_append(v, ["serke", "noun", "serke", "", "", "", "circle"]) + let v = native_list_append(v, ["lakle", "noun", "lakle", "", "", "", "pain suffering"]) + let v = native_list_append(v, ["swāñco", "noun", "swāñco", "", "", "", "ray beam sunbeam"]) + let v = native_list_append(v, ["lyak", "noun", "lyak", "", "", "", "thief"]) + let v = native_list_append(v, ["laupe", "noun", "laupe", "", "", "", "salve ointment"]) + let v = native_list_append(v, ["laukito", "noun", "laukito", "", "", "", "stranger"]) + let v = native_list_append(v, ["ñemek", "noun", "ñemek", "", "", "", "harvest"]) + let v = native_list_append(v, ["klautso", "noun", "klautso", "", "", "", "ear organ of"]) + let v = native_list_append(v, ["klīye", "noun", "klīye", "", "", "", "woman"]) + let v = native_list_append(v, ["mrestīwe", "noun", "mrestīwe", "", "", "", "marrow"]) + let v = native_list_append(v, ["saswe", "noun", "saswe", "", "", "", "lord"]) + let v = native_list_append(v, ["sekwe", "noun", "sekwe", "", "", "", "pus purulent matter"]) + let v = native_list_append(v, ["ṣem", "noun", "ṣem", "", "", "", "axle"]) + let v = native_list_append(v, ["ṣpane", "noun", "ṣpane", "", "", "", "sleep"]) + let v = native_list_append(v, ["ṣale", "noun", "ṣale", "", "", "", "mountain hill"]) + let v = native_list_append(v, ["ṣim", "noun", "ṣim", "", "", "", "roof"]) + let v = native_list_append(v, ["pāwe", "noun", "pāwe", "", "", "", "powder"]) + let v = native_list_append(v, ["palsko", "noun", "palsko", "", "", "", "mind thought"]) + let v = native_list_append(v, ["newiya", "noun", "newiya", "", "", "", "canal"]) + let v = native_list_append(v, ["nakūle", "noun", "nakūle", "", "", "", "mongoose"]) + let v = native_list_append(v, ["tranko", "noun", "tranko", "", "", "", "sin"]) + let v = native_list_append(v, ["taiwe", "noun", "taiwe", "", "", "", "fruit especially when"]) + let v = native_list_append(v, ["tettinor", "noun", "tettinor", "", "", "", "filth"]) + let v = native_list_append(v, ["ysalye", "noun", "ysalye", "", "", "", "discord conflict"]) + let v = native_list_append(v, ["yṣīye", "noun", "yṣīye", "", "", "", "night"]) + let v = native_list_append(v, ["yśelme", "noun", "yśelme", "", "", "", "physical pleasure especially"]) + let v = native_list_append(v, ["yolme", "noun", "yolme", "", "", "", "pond pool"]) + let v = native_list_append(v, ["yepe", "noun", "yepe", "", "", "", "knife blade"]) + let v = native_list_append(v, ["maiyyo", "noun", "maiyyo", "", "", "", "power might strength"]) + let v = native_list_append(v, ["mentsi", "noun", "mentsi", "", "", "", "sorrow"]) + let v = native_list_append(v, ["āśce", "noun", "āśce", "", "", "", "head"]) + let v = native_list_append(v, ["āntse", "noun", "āntse", "", "", "", "shoulder"]) + let v = native_list_append(v, ["onkolmo", "noun", "onkolmo", "", "", "", "elephant"]) + let v = native_list_append(v, ["aiśamñe", "noun", "aiśamñe", "", "", "", "wisdom"]) + let v = native_list_append(v, ["śaul", "noun", "śaul", "", "", "", "life state of"]) + let v = native_list_append(v, ["śaumo", "noun", "śaumo", "", "", "", "human being person"]) + let v = native_list_append(v, ["śaiṣṣe", "noun", "śaiṣṣe", "", "", "", "world"]) + let v = native_list_append(v, ["śerwe", "noun", "śerwe", "", "", "", "hunter"]) + let v = native_list_append(v, ["śerkw", "noun", "śerkw", "", "", "", "cord string"]) + let v = native_list_append(v, ["waike", "noun", "waike", "", "", "", "lie falsehood untruth"]) + let v = native_list_append(v, ["weṃts", "noun", "weṃts", "", "", "", "dung manure excrement"]) + let v = native_list_append(v, ["wästarye", "noun", "wästarye", "", "", "", "liver"]) + let v = native_list_append(v, ["lāñe", "noun", "lāñe", "", "", "", "flood"]) + let v = native_list_append(v, ["retke", "noun", "retke", "", "", "", "army"]) + let v = native_list_append(v, ["rīye", "noun", "rīye", "", "", "", "city"]) + let v = native_list_append(v, ["pyāpyo", "noun", "pyāpyo", "", "", "", "flower"]) + let v = native_list_append(v, ["peñiyo", "noun", "peñiyo", "", "", "", "splendor"]) + let v = native_list_append(v, ["añiye", "noun", "añiye", "", "", "", "breath"]) + let v = native_list_append(v, ["kentse", "noun", "kentse", "", "", "", "rust"]) + let v = native_list_append(v, ["kerū", "noun", "kerū", "", "", "", "drum"]) + let v = native_list_append(v, ["maśce", "noun", "maśce", "", "", "", "fist"]) + let v = native_list_append(v, ["maṣṣāt", "noun", "maṣṣāt", "", "", "", "scorn"]) + let v = native_list_append(v, ["mäñcuṣke", "noun", "mäñcuṣke", "", "", "", "prince"]) + let v = native_list_append(v, ["mīṣe", "noun", "mīṣe", "", "", "", "field"]) + let v = native_list_append(v, ["maune", "noun", "maune", "", "", "", "avarice greed"]) + let v = native_list_append(v, ["yarpo", "noun", "yarpo", "", "", "", "service"]) + let v = native_list_append(v, ["yetwe", "noun", "yetwe", "", "", "", "jewel"]) + let v = native_list_append(v, ["lwāke", "noun", "lwāke", "", "", "", "pot vessel"]) + let v = native_list_append(v, ["lyekṣye", "noun", "lyekṣye", "", "", "", "millet type of"]) + let v = native_list_append(v, ["lyauto", "noun", "lyauto", "", "", "", "hole opening"]) + let v = native_list_append(v, ["wapātstsa", "noun", "wapātstsa", "", "", "", "weaver"]) + let v = native_list_append(v, ["warkṣäl", "noun", "warkṣäl", "", "", "", "power strength energy"]) + let v = native_list_append(v, ["waṣamo", "noun", "waṣamo", "", "", "", "friend"]) + let v = native_list_append(v, ["wicūko", "noun", "wicūko", "", "", "", "cheek jaw"]) + let v = native_list_append(v, ["werwiye", "noun", "werwiye", "", "", "", "garden"]) + let v = native_list_append(v, ["wertsiya", "noun", "wertsiya", "", "", "", "assembly meeting council"]) + let v = native_list_append(v, ["waipe", "noun", "waipe", "", "", "", "banner flag"]) + let v = native_list_append(v, ["śamaśke", "noun", "śamaśke", "", "", "", "boy"]) + let v = native_list_append(v, ["śalna", "noun", "śalna", "", "", "", "quarrel bickering argument"]) + let v = native_list_append(v, ["śātre", "noun", "śātre", "", "", "", "grain"]) + let v = native_list_append(v, ["śāmpa", "noun", "śāmpa", "", "", "", "haughtiness conceit"]) + let v = native_list_append(v, ["śäktālye", "noun", "śäktālye", "", "", "", "seed"]) + let v = native_list_append(v, ["śoliye", "noun", "śoliye", "", "", "", "hearth"]) + let v = native_list_append(v, ["śkwaśko", "noun", "śkwaśko", "", "", "", "barberry"]) + let v = native_list_append(v, ["śkwarya", "noun", "śkwarya", "", "", "", "tendril of a"]) + let v = native_list_append(v, ["ścmoñña", "noun", "ścmoñña", "", "", "", "basis foundation"]) + let v = native_list_append(v, ["śwātsi", "noun", "śwātsi", "", "", "", "food"]) + let v = native_list_append(v, ["śwele", "noun", "śwele", "", "", "", "bandage dressing"]) + let v = native_list_append(v, ["ṣankw", "noun", "ṣankw", "", "", "", "throat"]) + let v = native_list_append(v, ["sāṃ", "noun", "sāṃ", "", "", "", "enemy foe"]) + let v = native_list_append(v, ["sānti", "noun", "sānti", "", "", "", "twilight"]) + let v = native_list_append(v, ["sāṃtke", "noun", "sāṃtke", "", "", "", "medicine remedy"]) + let v = native_list_append(v, ["sklok", "noun", "sklok", "", "", "", "doubt"]) + let v = native_list_append(v, ["stām", "noun", "stām", "", "", "", "tree"]) + let v = native_list_append(v, ["snauki", "noun", "snauki", "", "", "", "care concern"]) + let v = native_list_append(v, ["spaitu", "noun", "spaitu", "", "", "", "dust"]) + let v = native_list_append(v, ["syelme", "noun", "syelme", "", "", "", "sweat"]) + let v = native_list_append(v, ["swese", "noun", "swese", "", "", "", "rain"]) + let v = native_list_append(v, ["tsankär", "noun", "tsankär", "", "", "", "summit top"]) + let v = native_list_append(v, ["akalye", "noun", "akalye", "", "", "", "learning study"]) + let v = native_list_append(v, ["akālk", "noun", "akālk", "", "", "", "wish"]) + let v = native_list_append(v, ["atiyo", "noun", "atiyo", "", "", "", "grass"]) + let v = native_list_append(v, ["apsāl", "noun", "apsāl", "", "", "", "sword"]) + let v = native_list_append(v, ["arśakärśa", "noun", "arśakärśa", "", "", "", "bat flying mammal"]) + let v = native_list_append(v, ["alyiye", "noun", "alyiye", "", "", "", "palm of the"]) + let v = native_list_append(v, ["āke", "noun", "āke", "", "", "", "end"]) + let v = native_list_append(v, ["āṅkär", "noun", "āṅkär", "", "", "", "tusk of an"]) + let v = native_list_append(v, ["āñu", "noun", "āñu", "", "", "", "rest repose"]) + let v = native_list_append(v, ["āppo", "noun", "āppo", "", "", "", "father"]) + let v = native_list_append(v, ["āyor", "noun", "āyor", "", "", "", "gift present"]) + let v = native_list_append(v, ["ālme", "noun", "ālme", "", "", "", "spring of water"]) + let v = native_list_append(v, ["āwe", "noun", "āwe", "", "", "", "grandfather"]) + let v = native_list_append(v, ["iprer", "noun", "iprer", "", "", "", "sky air"]) + let v = native_list_append(v, ["īme", "noun", "īme", "", "", "", "consciousness awareness thought"]) + let v = native_list_append(v, ["īwate", "noun", "īwate", "", "", "", "fear terror anxiety"]) + let v = native_list_append(v, ["eṅkäl", "noun", "eṅkäl", "", "", "", "feeling emotion passion"]) + let v = native_list_append(v, ["eñcuwo", "noun", "eñcuwo", "", "", "", "iron"]) + let v = native_list_append(v, ["entse", "noun", "entse", "", "", "", "greed"]) + let v = native_list_append(v, ["emalle", "noun", "emalle", "", "", "", "heat"]) + let v = native_list_append(v, ["erkau", "noun", "erkau", "", "", "", "cemetery graveyard"]) + let v = native_list_append(v, ["ersna", "noun", "ersna", "", "", "", "form shape beauty"]) + let v = native_list_append(v, ["aikne", "noun", "aikne", "", "", "", "duty"]) + let v = native_list_append(v, ["onolme", "noun", "onolme", "", "", "", "creature living thing"]) + let v = native_list_append(v, ["orkamñe", "noun", "orkamñe", "", "", "", "darkness"]) + let v = native_list_append(v, ["olyi", "noun", "olyi", "", "", "", "boat"]) + let v = native_list_append(v, ["olyitau", "noun", "olyitau", "", "", "", "boatman"]) + let v = native_list_append(v, ["oṣṣale", "noun", "oṣṣale", "", "", "", "north"]) + let v = native_list_append(v, ["aulāre", "noun", "aulāre", "", "", "", "companion"]) + let v = native_list_append(v, ["kaccāp", "noun", "kaccāp", "", "", "", "skull brainpan"]) + let v = native_list_append(v, ["karāś", "noun", "karāś", "", "", "", "forest woods"]) + let v = native_list_append(v, ["karāk", "noun", "karāk", "", "", "", "branch of a"]) + let v = native_list_append(v, ["karep", "noun", "karep", "", "", "", "damage harm"]) + let v = native_list_append(v, ["karse", "noun", "karse", "", "", "", "deer stag"]) + let v = native_list_append(v, ["kärtsauñe", "noun", "kärtsauñe", "", "", "", "goodness virtue"]) + let v = native_list_append(v, ["kāwalyñe", "noun", "kāwalyñe", "", "", "", "desire craving"]) + let v = native_list_append(v, ["kālyśke", "noun", "kālyśke", "", "", "", "boy young man"]) + let v = native_list_append(v, ["kārre", "noun", "kārre", "", "", "", "pit"]) + let v = native_list_append(v, ["kātso", "noun", "kātso", "", "", "", "belly stomach abdomen"]) + let v = native_list_append(v, ["kärkkālle", "noun", "kärkkālle", "", "", "", "swamp marsh bog"]) + let v = native_list_append(v, ["krāmär", "noun", "krāmär", "", "", "", "weight heaviness"]) + let v = native_list_append(v, ["krāke", "noun", "krāke", "", "", "", "dirt filth also"]) + let v = native_list_append(v, ["krāñi", "noun", "krāñi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kranko", "noun", "kranko", "", "", "", "chicken"]) + let v = native_list_append(v, ["kauṣenta", "noun", "kauṣenta", "", "", "", "murderer killer"]) + let v = native_list_append(v, ["koṣkīye", "noun", "koṣkīye", "", "", "", "hut"]) + let v = native_list_append(v, ["kertte", "noun", "kertte", "", "", "", "sword"]) + let v = native_list_append(v, ["kercapo", "noun", "kercapo", "", "", "", "donkey ass"]) + let v = native_list_append(v, ["kerekauna", "noun", "kerekauna", "", "", "", "flood"]) + let v = native_list_append(v, ["kektseñe", "noun", "kektseñe", "", "", "", "body"]) + let v = native_list_append(v, ["kuhākäññe", "noun", "kuhākäññe", "", "", "", "deception trickery"]) + let v = native_list_append(v, ["käskor", "noun", "käskor", "", "", "", "idle talk chatter"]) + let v = native_list_append(v, ["käṣṣī", "noun", "käṣṣī", "", "", "", "teacher master"]) + let v = native_list_append(v, ["kälymiye", "noun", "kälymiye", "", "", "", "direction"]) + let v = native_list_append(v, ["kälṣamñe", "noun", "kälṣamñe", "", "", "", "endurance"]) + let v = native_list_append(v, ["keś", "noun", "keś", "", "", "", "number"]) + let v = native_list_append(v, ["keṣe", "noun", "keṣe", "", "", "", "fathom unit of"]) + let v = native_list_append(v, ["kottär", "noun", "kottär", "", "", "", "family clan"]) + let v = native_list_append(v, ["krāso", "noun", "krāso", "", "", "", "vexation torment"]) + let v = native_list_append(v, ["klāwi", "noun", "klāwi", "", "", "", "fame"]) + let v = native_list_append(v, ["klokaśce", "noun", "klokaśce", "", "", "", "pore follicle"]) + let v = native_list_append(v, ["kwaṣo", "noun", "kwaṣo", "", "", "", "village"]) + let v = native_list_append(v, ["kwīpe", "noun", "kwīpe", "", "", "", "shame"]) + let v = native_list_append(v, ["kwrāṣe", "noun", "kwrāṣe", "", "", "", "skeleton"]) + let v = native_list_append(v, ["cāne", "noun", "cāni", "", "", "", "cash a unit"]) + let v = native_list_append(v, ["cämpamñe", "noun", "cämpamñe", "", "", "", "ability"]) + let v = native_list_append(v, ["ñare", "noun", "ñare", "", "", "", "thread"]) + let v = native_list_append(v, ["ñasso", "noun", "ñasso", "", "", "", "portion share"]) + let v = native_list_append(v, ["ñkante", "noun", "ñkante", "", "", "", "silver"]) + let v = native_list_append(v, ["ñyātse", "noun", "ñyātse", "", "", "", "danger peril distress"]) + let v = native_list_append(v, ["tanāpate", "noun", "tanāpate", "", "", "", "benefactor patron"]) + let v = native_list_append(v, ["tapākye", "noun", "tapākye", "", "", "", "mirror looking-glass"]) + let v = native_list_append(v, ["tarkāttsa", "noun", "tarkāttsa", "", "", "", "carpenter"]) + let v = native_list_append(v, ["tāś", "noun", "tāś", "", "", "", "commander chief"]) + let v = native_list_append(v, ["tvānkaro", "noun", "tvānkaro", "", "", "", "ginger type of"]) + let v = native_list_append(v, ["näsait", "noun", "näsait", "", "", "", "spell magical operation"]) + let v = native_list_append(v, ["naunto", "noun", "naunto", "", "", "", "street"]) + let v = native_list_append(v, ["naumiye", "noun", "naumiye", "", "", "", "jewel gem gemstone"]) + let v = native_list_append(v, ["nauske", "noun", "nauske", "", "", "", "oppression"]) + let v = native_list_append(v, ["palauna", "noun", "palauna", "", "", "", "praise"]) + let v = native_list_append(v, ["patstsāṅk", "noun", "patstsāṅk", "", "", "", "window"]) + let v = native_list_append(v, ["pärmaṅk", "noun", "pärmaṅk", "", "", "", "hope"]) + let v = native_list_append(v, ["päścane", "noun", "päścane", "", "", "", "dual breasts mammary"]) + let v = native_list_append(v, ["pälkaucäkka", "noun", "pälkaucäkka", "", "", "", "fortune-teller"]) + let v = native_list_append(v, ["pältakw", "noun", "pältakw", "", "", "", "drop droplet"]) + let v = native_list_append(v, ["pässäkw", "noun", "pässäkw", "", "", "", "garland"]) + let v = native_list_append(v, ["pīto", "noun", "pīto", "", "", "", "price cost"]) + let v = native_list_append(v, ["pitke", "noun", "pitke", "", "", "", "fat"]) + let v = native_list_append(v, ["wīna", "noun", "wīna", "", "", "", "pleasure"]) + let v = native_list_append(v, ["weweñor", "noun", "weweñor", "", "", "", "declaration"]) + let v = native_list_append(v, ["waipalau", "noun", "waipalau", "", "", "", "dizziness giddiness vertigo"]) + let v = native_list_append(v, ["śakāto", "noun", "śakāto", "", "", "", "club stick"]) + let v = native_list_append(v, ["śarko", "noun", "śarko", "", "", "", "a type of"]) + let v = native_list_append(v, ["śukkär", "noun", "śukkär", "", "", "", "semen"]) + let v = native_list_append(v, ["śaiyye", "noun", "śaiyye", "", "", "", "sheep"]) + let v = native_list_append(v, ["prahāṃ", "noun", "prahāṃ", "", "", "", "abandonment"]) + let v = native_list_append(v, ["rilläññe", "noun", "rilläññe", "", "", "", "renunciation abandonment"]) + let v = native_list_append(v, ["stamalñe", "noun", "stamalñe", "", "", "", "continuation persistence"]) + let v = native_list_append(v, ["pruccamñe", "noun", "pruccamñe", "", "", "", "superiority excellence"]) + let v = native_list_append(v, ["prenke", "noun", "prenke", "", "", "", "island"]) + let v = native_list_append(v, ["prentse", "noun", "prentse", "", "", "", "instant moment"]) + let v = native_list_append(v, ["prere", "noun", "prere", "", "", "", "arrow"]) + let v = native_list_append(v, ["plāce", "noun", "plāce", "", "", "", "speech talk"]) + let v = native_list_append(v, ["plānto", "noun", "plānto", "", "", "", "joy delight"]) + let v = native_list_append(v, ["plewe", "noun", "plewe", "", "", "", "raft flat floating"]) + let v = native_list_append(v, ["ploriyo", "noun", "ploriyo", "", "", "", "type of musical"]) + let v = native_list_append(v, ["mañiye", "noun", "mañiye", "", "", "", "male slave or"]) + let v = native_list_append(v, ["mañiya", "noun", "mañiya", "", "", "", "female slave maidservant"]) + let v = native_list_append(v, ["mañiññe", "noun", "mañiññe", "", "", "", "slavery servitude"]) + let v = native_list_append(v, ["ñäkteñña", "noun", "ñäkteñña", "", "", "", "goddess"]) + let v = native_list_append(v, ["tälpālle", "noun", "tälpālle", "", "", "", "purgative"]) + let v = native_list_append(v, ["traike", "noun", "traike", "", "", "", "confusion"]) + let v = native_list_append(v, ["traiwo", "noun", "traiwo", "", "", "", "mixture a combination"]) + let v = native_list_append(v, ["nāki", "noun", "nāki", "", "", "", "fault error mistake"]) + let v = native_list_append(v, ["passoñ", "noun", "passoñ", "", "", "", "muscles"]) + let v = native_list_append(v, ["pāke", "noun", "pāke", "", "", "", "part portion share"]) + let v = native_list_append(v, ["pānto", "noun", "pānto", "", "", "", "aid support"]) + let v = native_list_append(v, ["päkwalñe", "noun", "päkwalñe", "", "", "", "trust confidence"]) + let v = native_list_append(v, ["plāksar", "noun", "plāksar", "", "", "", "agreement understanding"]) + let v = native_list_append(v, ["lyūke", "noun", "lyūke", "", "", "", "light illumination"]) + let v = native_list_append(v, ["werpiśkatstse", "noun", "werpiśkatstse", "", "", "", "gardener"]) + let v = native_list_append(v, ["werpiśke", "noun", "werpiśke", "", "", "", "garden"]) + let v = native_list_append(v, ["wrāko", "noun", "wrāko", "", "", "", "shell of an"]) + let v = native_list_append(v, ["wreme", "noun", "wreme", "", "", "", "object item"]) + let v = native_list_append(v, ["śūke", "noun", "śūke", "", "", "", "taste flavor"]) + let v = native_list_append(v, ["ṣat", "noun", "ṣat", "", "", "", "sliver shard piece"]) + let v = native_list_append(v, ["ṣalype", "noun", "ṣalype", "", "", "", "ointment salve"]) + let v = native_list_append(v, ["ṣaṣe", "noun", "ṣaṣe", "", "", "", "hare"]) + let v = native_list_append(v, ["ṣiko", "noun", "ṣiko", "", "", "", "footprint track"]) + let v = native_list_append(v, ["ṣecake", "noun", "ṣecake", "", "", "", "lion"]) + let v = native_list_append(v, ["ṣotri", "noun", "ṣotri", "", "", "", "sign mark indication"]) + let v = native_list_append(v, ["ṣpel", "noun", "ṣpel", "", "", "", "pill pellet pastille"]) + let v = native_list_append(v, ["ṣmare", "noun", "ṣmare", "", "", "", "oil grease"]) + let v = native_list_append(v, ["silñe", "noun", "silñe", "", "", "", "despair depression despondency"]) + let v = native_list_append(v, ["surme", "noun", "surme", "", "", "", "cataract of the"]) + let v = native_list_append(v, ["stānk", "noun", "stānk", "", "", "", "palace"]) + let v = native_list_append(v, ["spaktāṃ", "noun", "spaktāṃ", "", "", "", "service act of"]) + let v = native_list_append(v, ["spärkālñe", "noun", "spärkālñe", "", "", "", "disappearance vanishing"]) + let v = native_list_append(v, ["smaññe", "noun", "smaññe", "", "", "", "broth"]) + let v = native_list_append(v, ["amāc", "noun", "amāc", "", "", "", "minister royal official"]) + let v = native_list_append(v, ["ampoño", "noun", "ampoño", "", "", "", "rottenness infection abscess"]) + let v = native_list_append(v, ["ayāto", "noun", "ayāto", "", "", "", "benefit"]) + let v = native_list_append(v, ["eprer", "noun", "eprer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["empreṃ", "noun", "empreṃ", "", "", "", "truth"]) + let v = native_list_append(v, ["orkmo", "noun", "orkmo", "", "", "", "darkness"]) + let v = native_list_append(v, ["auñento", "noun", "auñento", "", "", "", "beginning start"]) + let v = native_list_append(v, ["aume", "noun", "aume", "", "", "", "misery"]) + let v = native_list_append(v, ["aumiye", "noun", "aumiye", "", "", "", "fever"]) + let v = native_list_append(v, ["kamartīke", "noun", "kamartīke", "", "", "", "ruler sovereign"]) + let v = native_list_append(v, ["kamāl", "noun", "kamāl", "", "", "", "jaundice"]) + let v = native_list_append(v, ["kāwo", "noun", "kāwo", "", "", "", "desire craving"]) + let v = native_list_append(v, ["kärweñe", "noun", "kärweñe", "", "", "", "stone rock"]) + let v = native_list_append(v, ["karsalñe", "noun", "karsalñe", "", "", "", "knowledge"]) + let v = native_list_append(v, ["kolmo", "noun", "kolmo", "", "", "", "boat"]) + let v = native_list_append(v, ["krokśe", "noun", "krokśe", "", "", "", "bee"]) + let v = native_list_append(v, ["klautsaiñe", "noun", "klautsaiñe", "", "", "", "earring"]) + let v = native_list_append(v, ["kṣānti", "noun", "kṣānti", "", "", "", "forgiveness"]) + let v = native_list_append(v, ["carke", "noun", "carke", "", "", "", "garland"]) + let v = native_list_append(v, ["yerpe", "noun", "yerpe", "", "", "", "orb"]) + let v = native_list_append(v, ["yerter", "noun", "yerter", "", "", "", "wheelrim felloe"]) + let v = native_list_append(v, ["yuṣ", "noun", "yuṣ", "", "", "", "soup"]) + let v = native_list_append(v, ["yūkalñe", "noun", "yūkalñe", "", "", "", "conquest overcoming"]) + let v = native_list_append(v, ["yāmor", "noun", "yāmor", "", "", "", "deed action. accomplishment"]) + let v = native_list_append(v, ["yast", "noun", "yast", "", "", "", "precipice"]) + let v = native_list_append(v, ["yase", "noun", "yase", "", "", "", "shame"]) + let v = native_list_append(v, ["yaṣṣuca", "noun", "yaṣṣuca", "", "", "", "beggar"]) + let v = native_list_append(v, ["yal", "noun", "yal", "", "", "", "gazelle"]) + let v = native_list_append(v, ["yatwe", "noun", "yatwe", "", "", "", "whip thong"]) + let v = native_list_append(v, ["yakne", "noun", "yakne", "", "", "", "way manner"]) + let v = native_list_append(v, ["mlyuwe", "noun", "mlyuwe", "", "", "", "thigh"]) + let v = native_list_append(v, ["mrāce", "noun", "mrāce", "", "", "", "summit peak of"]) + let v = native_list_append(v, ["ścono", "noun", "ścono", "", "", "", "enmity"]) + let v = native_list_append(v, ["śpālmäññe", "noun", "śpālmäññe", "", "", "", "excellence"]) + let v = native_list_append(v, ["laitke", "noun", "laitke", "", "", "", "vine creeper liana"]) + let v = native_list_append(v, ["ysāre", "noun", "ysāre", "", "", "", "grain wheat"]) + let v = native_list_append(v, ["riññe", "noun", "riññe", "", "", "", "city dweller"]) + let v = native_list_append(v, ["rānk", "noun", "rānk", "", "", "", "theater"]) + let v = native_list_append(v, ["pernerñe", "noun", "pernerñe", "", "", "", "glory splendor"]) + let v = native_list_append(v, ["perpette", "noun", "perpette", "", "", "", "burden load"]) + let v = native_list_append(v, ["pelaikne", "noun", "pelaikne", "", "", "", "obedience to the"]) + let v = native_list_append(v, ["peṣke", "noun", "peṣke", "", "", "", "clarified butter ghee"]) + let v = native_list_append(v, ["poṣiya", "noun", "poṣiya", "", "", "", "wall"]) + let v = native_list_append(v, ["postak", "noun", "postak", "", "", "", "book"]) + let v = native_list_append(v, ["pyorye", "noun", "pyorye", "", "", "", "yoke"]) + let v = native_list_append(v, ["pratiṃ", "noun", "pratiṃ", "", "", "", "resolve determination resolution"]) + let v = native_list_append(v, ["pratsāko", "noun", "pratsāko", "", "", "", "chest upper torso"]) + let v = native_list_append(v, ["prāri", "noun", "prāri", "", "", "", "finger"]) + let v = native_list_append(v, ["prekṣenta", "noun", "prekṣenta", "", "", "", "judge"]) + let v = native_list_append(v, ["prautke", "noun", "prautke", "", "", "", "enclosure"]) + let v = native_list_append(v, ["plaktukäñña", "noun", "plaktukäñña", "", "", "", "door-keeper female"]) + let v = native_list_append(v, ["prāśśäṃ", "noun", "prāśśäṃ", "", "", "", "question"]) + let v = native_list_append(v, ["pkante", "noun", "pkante", "", "", "", "obstacle hindrance"]) + let v = native_list_append(v, ["peret", "noun", "peret", "", "", "", "axe"]) + let v = native_list_append(v, ["pekwe", "noun", "pekwe", "", "", "", "ring item of"]) + let v = native_list_append(v, ["puwe", "noun", "puwe", "", "", "", "spoke of a"]) + let v = native_list_append(v, ["wärścik", "noun", "wärścik", "", "", "", "hogweed Boerhaavia diffusa"]) + let v = native_list_append(v, ["wīcuṣik", "noun", "wīcuṣik", "", "", "", "cholera"]) + let v = native_list_append(v, ["weru", "noun", "weru", "", "", "", "blister"]) + let v = native_list_append(v, ["weṣṣuki", "noun", "weṣṣuki", "", "", "", "talker speaker"]) + let v = native_list_append(v, ["waipecce", "noun", "waipecce", "", "", "", "property possessions belongings"]) + let v = native_list_append(v, ["wpleme", "noun", "wpleme", "", "", "", "spiderweb cobweb"]) + let v = native_list_append(v, ["wyai", "noun", "wyai", "", "", "", "cost expense"]) + let v = native_list_append(v, ["wṣeñña", "noun", "wṣeñña", "", "", "", "place location"]) + let v = native_list_append(v, ["śanmau", "noun", "śanmau", "", "", "", "bond fetter"]) + let v = native_list_append(v, ["aiyyer", "noun", "aiyyer", "", "", "", "sheath"]) + let v = native_list_append(v, ["tārśi", "noun", "tārśi", "", "", "", "deception"]) + let v = native_list_append(v, ["cmelñe", "noun", "cmelñe", "", "", "", "birth"]) + let v = native_list_append(v, ["tīrthe", "noun", "tīrthe", "", "", "", "heretic"]) + let v = native_list_append(v, ["kallau", "noun", "kallau", "", "", "", "gain profit"]) + let v = native_list_append(v, ["kāko", "noun", "kāko", "", "", "", "invitation"]) + let v = native_list_append(v, ["kāñme", "noun", "kāñme", "", "", "", "play act of"]) + let v = native_list_append(v, ["kāntalñe", "noun", "kāntalñe", "", "", "", "rubbing friction"]) + let v = native_list_append(v, ["kampās", "noun", "kampās", "", "", "", "cotton"]) + let v = native_list_append(v, ["kuñi-mot", "noun", "kuñi-mot", "", "", "", "wine"]) + let v = native_list_append(v, ["ykāṃṣe", "noun", "ykāṃṣe", "", "", "", "aversion loathing repulsion"]) + let v = native_list_append(v, ["śāp", "noun", "śāp", "", "", "", "curse hex imprecation"]) + let v = native_list_append(v, ["ṣank", "noun", "ṣank", "", "", "", "a measure of"]) + let v = native_list_append(v, ["spārttalyñe", "noun", "spārttalyñe", "", "", "", "behaviour"]) + let v = native_list_append(v, ["spelkke", "noun", "spelkke", "", "", "", "zeal enthusiasm"]) + let v = native_list_append(v, ["smīlñe", "noun", "smīlñe", "", "", "", "smile"]) + let v = native_list_append(v, ["srukelle", "noun", "srukelle", "", "", "", "death"]) + let v = native_list_append(v, ["tsamo", "noun", "tsamo", "", "", "", "growth"]) + let v = native_list_append(v, ["tsatsāpar", "noun", "tsatsāpar", "", "", "", "poultice compress"]) + let v = native_list_append(v, ["tsāro", "noun", "tsāro", "", "", "", "monastery convent"]) + let v = native_list_append(v, ["tsārwäṣṣälyñe", "noun", "tsārwäṣṣälyñe", "", "", "", "consolation comfort"]) + let v = native_list_append(v, ["tsälpālñe", "noun", "tsälpālñe", "", "", "", "redemption freedom"]) + let v = native_list_append(v, ["tsiromñe", "noun", "tsiromñe", "", "", "", "energy"]) + let v = native_list_append(v, ["tsaiññe", "noun", "tsaiññe", "", "", "", "ornament"]) + let v = native_list_append(v, ["tsain", "noun", "tsain", "", "", "", "arrow"]) + let v = native_list_append(v, ["ñwetstse", "noun", "ñwetstse", "", "", "", "novice beginner neophyte"]) + let v = native_list_append(v, ["nautalñe", "noun", "nautalñe", "", "", "", "disappearance"]) + let v = native_list_append(v, ["nrai", "noun", "nrai", "", "", "", "hell"]) + let v = native_list_append(v, ["Pañäkte", "noun", "Pañäkte", "", "", "", "Buddha"]) + let v = native_list_append(v, ["pālalñe", "noun", "pālalñe", "", "", "", "praise commendation"]) + let v = native_list_append(v, ["pälkiye", "noun", "pälkiye", "", "", "", "desert waste wasteland"]) + let v = native_list_append(v, ["aṃśūk", "noun", "aṃśūk", "", "", "", "Upper garment shirt"]) + let v = native_list_append(v, ["akappi", "noun", "akappi", "", "", "", "impurity filth uncleanliness"]) + let v = native_list_append(v, ["akalṣälle", "noun", "akalṣälle", "", "", "", "pupil student disciple"]) + let v = native_list_append(v, ["aklyilñe", "noun", "aklyilñe", "", "", "", "study learning"]) + let v = native_list_append(v, ["akwam", "noun", "akwam", "", "", "", "sprout"]) + let v = native_list_append(v, ["aksaṣṣuki", "noun", "aksaṣṣuki", "", "", "", "teacher instructor"]) + let v = native_list_append(v, ["agamadhare", "noun", "agamadhare", "", "", "", "A person holding"]) + let v = native_list_append(v, ["agrakulike", "noun", "agrakulike", "", "", "", "Someone from a"]) + let v = native_list_append(v, ["agradharma", "noun", "agradharma", "", "", "", "foremost law"]) + let v = native_list_append(v, ["acār", "noun", "acār", "", "", "", "propriety rule"]) + let v = native_list_append(v, ["acirne", "noun", "acirne", "", "", "", "lack of digestion"]) + let v = native_list_append(v, ["añmālaṣle", "noun", "añmālaṣle", "", "", "", "sympathy pity"]) + let v = native_list_append(v, ["akṣepit", "noun", "akṣepit", "", "", "", "casting down"]) + let v = native_list_append(v, ["añmalāṣṣälñe", "noun", "añmalāṣṣälñe", "", "", "", "sympathy"]) + let v = native_list_append(v, ["añmālaṣkaññe", "noun", "añmālaṣkaññe", "", "", "", "sympathy"]) + let v = native_list_append(v, ["atāttadāṃ", "noun", "atāttadāṃ", "", "", "", "theft"]) + let v = native_list_append(v, ["atāmo", "noun", "atāmo", "", "", "", "unfruitful ground"]) + let v = native_list_append(v, ["atirek", "noun", "atirek", "", "", "", "surplus"]) + let v = native_list_append(v, ["atraikatte", "noun", "atraikatte", "", "", "", "unfailing"]) + let v = native_list_append(v, ["adhyāśai", "noun", "adhyāśai", "", "", "", "disposition"]) + let v = native_list_append(v, ["anantārs", "noun", "anantārs", "", "", "", "unpardonable sin sin"]) + let v = native_list_append(v, ["anabhiprāy", "noun", "anabhiprāy", "", "", "", "lack of intent"]) + let v = native_list_append(v, ["anahār", "noun", "anahār", "", "", "", "fast literally without"]) + let v = native_list_append(v, ["anāgat", "noun", "anāgat", "", "", "", "non-attainment"]) + let v = native_list_append(v, ["anāntapa", "noun", "anāntapa", "", "", "", "eternal forever"]) + let v = native_list_append(v, ["anāpatti", "noun", "anāpatti", "", "", "", "unpunishableness"]) + let v = native_list_append(v, ["anāsäññe", "noun", "anāsäññe", "", "", "", "miserable"]) + let v = native_list_append(v, ["anāṣṣälñe", "noun", "anāṣṣälñe", "", "", "", "breathing inhalation"]) + let v = native_list_append(v, ["anāsrap", "noun", "anāsrap", "", "", "", "freedom from sinful"]) + let v = native_list_append(v, ["anityāt", "noun", "anityāt", "", "", "", "impermanence"]) + let v = native_list_append(v, ["anubhāp", "noun", "anubhāp", "", "", "", "perception"]) + let v = native_list_append(v, ["empelñe", "noun", "empelñe", "", "", "", "horror terror dread"]) + let v = native_list_append(v, ["erepate", "noun", "erepate", "", "", "", "form style"]) + let v = native_list_append(v, ["onkarño", "noun", "onkarño", "", "", "", "porridge gruel made"]) + let v = native_list_append(v, ["kattāke", "noun", "kattāke", "", "", "", "householder"]) + let v = native_list_append(v, ["kapci", "noun", "kapci", "", "", "", "thumbprint as a"]) + let v = native_list_append(v, ["kapyāre", "noun", "kapyāre", "", "", "", "workman laborer"]) + let v = native_list_append(v, ["kampāl", "noun", "kampāl", "", "", "", "cloak mantle"]) + let v = native_list_append(v, ["karuṃ", "noun", "karuṃ", "", "", "", "compassion pity"]) + let v = native_list_append(v, ["karyor", "noun", "karyor", "", "", "", "buying purchasing"]) + let v = native_list_append(v, ["kartse", "noun", "kartse", "", "", "", "good welfare"]) + let v = native_list_append(v, ["kaläl", "noun", "kaläl", "", "", "", "womb uterus"]) + let v = native_list_append(v, ["kaṣāy", "noun", "kaṣāy", "", "", "", "infusion medical decoction"]) + let v = native_list_append(v, ["kāswo", "noun", "kāswo", "", "", "", "eruption on the"]) + let v = native_list_append(v, ["kätkor", "noun", "kätkor", "", "", "", "passage of time"]) + let v = native_list_append(v, ["kerccī", "noun", "kerccī", "", "", "", "palace"]) + let v = native_list_append(v, ["koyn", "noun", "koyn", "", "", "", "mouth"]) + let v = native_list_append(v, ["kāwälñe", "noun", "kāwälñe", "", "", "", "killing murder"]) + let v = native_list_append(v, ["kauṃ-parki", "noun", "kauṃ-parki", "", "", "", "sunrise"]) + let v = native_list_append(v, ["kauṃ-kläsko", "noun", "kauṃ-kläsko", "", "", "", "west"]) + let v = native_list_append(v, ["kauṃ-pirko", "noun", "kauṃ-pirko", "", "", "", "east"]) + let v = native_list_append(v, ["kauṃ-yaptsi", "noun", "kauṃ-yaptsi", "", "", "", "sunset"]) + let v = native_list_append(v, ["kaumiye", "noun", "kaumiye", "", "", "", "pool pond"]) + let v = native_list_append(v, ["kaume", "noun", "kaume", "", "", "", "shoot sprout"]) + let v = native_list_append(v, ["krostaññe", "noun", "krostaññe", "", "", "", "cold coldness"]) + let v = native_list_append(v, ["kraupalñe", "noun", "kraupalñe", "", "", "", "gathering accumulation"]) + let v = native_list_append(v, ["kraupe", "noun", "kraupe", "", "", "", "group"]) + let v = native_list_append(v, ["klyomñe", "noun", "klyomñe", "", "", "", "nobility noble class"]) + let v = native_list_append(v, ["keklyauṣor", "noun", "keklyauṣor", "", "", "", "instruction knowledge"]) + let v = native_list_append(v, ["kākalñe", "noun", "kākalñe", "", "", "", "invitation"]) + let v = native_list_append(v, ["kwasalñe", "noun", "kwasalñe", "", "", "", "mourning lamentation"]) + let v = native_list_append(v, ["kwrakar", "noun", "kwrakar", "", "", "", "upper room apartment"]) + let v = native_list_append(v, ["kṣāṃ", "noun", "kṣāṃ", "", "", "", "instant moment"]) + let v = native_list_append(v, ["kṣuṃ", "noun", "kṣuṃ", "", "", "", "reign period of"]) + let v = native_list_append(v, ["kṣur", "noun", "kṣur", "", "", "", "knife"]) + let v = native_list_append(v, ["kṣai", "noun", "kṣai", "", "", "", "tuberculosis"]) + let v = native_list_append(v, ["anaiwatsñe", "noun", "anaiwatsñe", "", "", "", "unpleasantness"]) + let v = native_list_append(v, ["ñyās", "noun", "ñyās", "", "", "", "desire yearning longing"]) + let v = native_list_append(v, ["teśit", "noun", "teśit", "", "", "", "confession"]) + let v = native_list_append(v, ["triśalñe", "noun", "triśalñe", "", "", "", "mistake error"]) + let v = native_list_append(v, ["triwālñe", "noun", "triwālñe", "", "", "", "mixture"]) + let v = native_list_append(v, ["trenke", "noun", "trenke", "", "", "", "clinging"]) + let v = native_list_append(v, ["tweye", "noun", "tweye", "", "", "", "dust"]) + let v = native_list_append(v, ["nākälñe", "noun", "nākälñe", "", "", "", "reproach blame"]) + let v = native_list_append(v, ["nkelñe", "noun", "nkelñe", "", "", "", "destruction"]) + let v = native_list_append(v, ["nigrot", "noun", "nigrot", "", "", "", "banyan tree"]) + let v = native_list_append(v, ["naitwe", "noun", "naitwe", "", "", "", "shell"]) + let v = native_list_append(v, ["niśācare", "noun", "niśācare", "", "", "", "jackal"]) + let v = native_list_append(v, ["uluke", "noun", "uluke", "", "", "", "owl"]) + let v = native_list_append(v, ["rmamñe", "noun", "rmamñe", "", "", "", "tendency"]) + let v = native_list_append(v, ["rṣāke", "noun", "rṣāke", "", "", "", "sage seer"]) + let v = native_list_append(v, ["rser", "noun", "rser", "", "", "", "hate hatred"]) + let v = native_list_append(v, ["lāṃs", "noun", "lāṃs", "", "", "", "work labor"]) + let v = native_list_append(v, ["pissau", "noun", "pissau", "", "", "", "anise"]) + let v = native_list_append(v, ["pīsäl", "noun", "pīsäl", "", "", "", "chaff husk"]) + let v = native_list_append(v, ["pauṣke", "noun", "pauṣke", "", "", "", "rib"]) + let v = native_list_append(v, ["prāp", "noun", "prāp", "", "", "", "gem jewel"]) + let v = native_list_append(v, ["prutkālñe", "noun", "prutkālñe", "", "", "", "confinement"]) + let v = native_list_append(v, ["plāki", "noun", "plāki", "", "", "", "permission"]) + let v = native_list_append(v, ["yälloñ", "noun", "yälloñ", "", "", "", "sense way of"]) + let v = native_list_append(v, ["yärṣalñe", "noun", "yärṣalñe", "", "", "", "honor reverence"]) + let v = native_list_append(v, ["yenmeᵤ", "noun", "yenmeᵤ", "", "", "", "gatekeeper"]) + let v = native_list_append(v, ["yesti", "noun", "yesti", "", "", "", "meal dinner"]) + let v = native_list_append(v, ["yaitkor", "noun", "yaitkor", "", "", "", "commandment"]) + let v = native_list_append(v, ["yokänta", "noun", "yokänta", "", "", "", "drinker"]) + let v = native_list_append(v, ["yoñiya", "noun", "yoñiya", "", "", "", "path course way"]) + let v = native_list_append(v, ["yoñiye", "noun", "yoñiye", "", "", "", "groin pubis"]) + let v = native_list_append(v, ["yolaiññe", "noun", "yolaiññe", "", "", "", "evil wickedness"]) + let v = native_list_append(v, ["yolo-yāmi", "noun", "yolo-yāmi", "", "", "", "evildoer"]) + let v = native_list_append(v, ["ykāssäññe", "noun", "ykāssäññe", "", "", "", "sexual pleasure"]) + let v = native_list_append(v, ["ykorñe", "noun", "ykorñe", "", "", "", "negligence"]) + let v = native_list_append(v, ["parskalñe", "noun", "parskalñe", "", "", "", "fear"]) + let v = native_list_append(v, ["pälkostau", "noun", "pälkostau", "", "", "", "spy"]) + let v = native_list_append(v, ["pälleᵤ", "noun", "pälleᵤ", "", "", "", "full moon"]) + let v = native_list_append(v, ["palskalñe", "noun", "palskalñe", "", "", "", "thought idea"]) + let v = native_list_append(v, ["pälskauca", "noun", "pälskauca", "", "", "", "thinker"]) + let v = native_list_append(v, ["antarakalp", "noun", "antarakalp", "", "", "", "a subdivision of"]) + let v = native_list_append(v, ["antarābhav", "noun", "antarābhav", "", "", "", "a soul between"]) + let v = native_list_append(v, ["antarāy", "noun", "antarāy", "", "", "", "embarrassment"]) + let v = native_list_append(v, ["antariye", "noun", "antariye", "", "", "", "lower garment"]) + let v = native_list_append(v, ["antarvās", "noun", "antarvās", "", "", "", "undergarment"]) + let v = native_list_append(v, ["antāpce", "noun", "antāpce", "", "", "", "firebrand"]) + let v = native_list_append(v, ["antiṣpūr", "noun", "antiṣpūr", "", "", "", "harem"]) + let v = native_list_append(v, ["antiṣpuräṣṣe", "noun", "antiṣpuräṣṣe", "", "", "", "having to do"]) + let v = native_list_append(v, ["apasmār", "noun", "apasmār", "", "", "", "epilepsy"]) + let v = native_list_append(v, ["kurār-lūwo", "noun", "kurār-lūwo", "", "", "", "osprey"]) + let v = native_list_append(v, ["kewiye", "noun", "kewiye", "", "", "", "butter"]) + let v = native_list_append(v, ["kotstse", "noun", "kotstse", "", "", "", "a species of"]) + let v = native_list_append(v, ["kauᵤrṣe", "noun", "kauᵤrṣe", "", "", "", "bull"]) + let v = native_list_append(v, ["apāy", "noun", "apāy", "", "", "", "someone of lower"]) + let v = native_list_append(v, ["apāṣṣätte", "noun", "apāṣṣätte", "", "", "", "someone who has"]) + let v = native_list_append(v, ["appamāt", "noun", "appamāt", "", "", "", "mistreatment"]) + let v = native_list_append(v, ["appamātäññe", "noun", "appamātäññe", "", "", "", "mistreatment"]) + let v = native_list_append(v, ["apramani", "noun", "apramani", "", "", "", "infinity any number"]) + let v = native_list_append(v, ["aprasāt", "noun", "aprasāt", "", "", "", "unbelief"]) + let v = native_list_append(v, ["aplāc", "noun", "aplāc", "", "", "", "in conversation"]) + let v = native_list_append(v, ["abhijñä", "noun", "abhijñä", "", "", "", "higher knowledge"]) + let v = native_list_append(v, ["aknātsaññe", "noun", "aknātsaññe", "", "", "", "ignorance"]) + let v = native_list_append(v, ["aknātsaññeṣṣe", "noun", "aknātsaññeṣṣe", "", "", "", "having to do"]) + let v = native_list_append(v, ["yamalläññe", "noun", "yamalläññe", "", "", "", "deed act action"]) + let v = native_list_append(v, ["yāmätstse", "noun", "yāmätstse", "", "", "", "doer"]) + let v = native_list_append(v, ["yāṣṣu", "noun", "yāṣṣu", "", "", "", "alms"]) + let v = native_list_append(v, ["yāso", "noun", "yāso", "", "", "", "pleasure delight"]) + let v = native_list_append(v, ["yākṣe", "noun", "yākṣe", "", "", "", "yaksha type of"]) + let v = native_list_append(v, ["ywārtsa", "noun", "ywārtsa", "", "", "", "half"]) + let v = native_list_append(v, ["yweru", "noun", "yweru", "", "", "", "swelling oedema"]) + let v = native_list_append(v, ["wlāwalñe", "noun", "wlāwalñe", "", "", "", "control"]) + let v = native_list_append(v, ["śaṃtsna", "noun", "śaṃtsna", "", "", "", "announcement"]) + let v = native_list_append(v, ["śakkār", "noun", "śakkār", "", "", "", "sugar"]) + let v = native_list_append(v, ["śakse", "noun", "śakse", "", "", "", "brandy"]) + let v = native_list_append(v, ["śarāṃ", "noun", "śarāṃ", "", "", "", "refuge sanctuary"]) + let v = native_list_append(v, ["śarwarñe", "noun", "śarwarñe", "", "", "", "arrogance haughtiness"]) + let v = native_list_append(v, ["śalāp", "noun", "śalāp", "", "", "", "grasshopper locust"]) + let v = native_list_append(v, ["pärkāᵤ", "noun", "pärkāᵤ", "", "", "", "advantage benefit"]) + let v = native_list_append(v, ["pälśalñe", "noun", "pälśalñe", "", "", "", "burning inflammation"]) + let v = native_list_append(v, ["pit-tsamo", "noun", "pit-tsamo", "", "", "", "gall stone"]) + let v = native_list_append(v, ["pintwāt", "noun", "pintwāt", "", "", "", "alms"]) + let v = native_list_append(v, ["pūtane", "noun", "pūtane", "", "", "", "a type of"]) + let v = native_list_append(v, ["putkalñe", "noun", "putkalñe", "", "", "", "separation division"]) + let v = native_list_append(v, ["welñe", "noun", "welñe", "", "", "", "speech talk"]) + let v = native_list_append(v, ["weṣṣeñca", "noun", "weṣṣeñca", "", "", "", "speaker talker"]) + let v = native_list_append(v, ["weñmo", "noun", "weñmo", "", "", "", "advocate"]) + let v = native_list_append(v, ["wetāᵤ", "noun", "wetāᵤ", "", "", "", "warrior"]) + let v = native_list_append(v, ["wpelme", "noun", "wpelme", "", "", "", "spiderweb cobweb"]) + let v = native_list_append(v, ["ṣarm", "noun", "ṣarm", "", "", "", "cause origin"]) + let v = native_list_append(v, ["ṣarya", "noun", "ṣarya", "", "", "", "beloved one dear"]) + let v = native_list_append(v, ["ṣarpṣūkiññe", "noun", "ṣarpṣūkiññe", "", "", "", "guide person who"]) + let v = native_list_append(v, ["ṣorpor", "noun", "ṣorpor", "", "", "", "bag sack"]) + let v = native_list_append(v, ["sakw", "noun", "sakw", "", "", "", "good fortune happiness"]) + let v = native_list_append(v, ["satāṣlñe", "noun", "satāṣlñe", "", "", "", "exhalation"]) + let v = native_list_append(v, ["saṃtkīnau", "noun", "saṃtkīnau", "", "", "", "physician doctor"]) + let v = native_list_append(v, ["sapule", "noun", "sapule", "", "", "", "pot"]) + let v = native_list_append(v, ["sārri", "noun", "sārri", "", "", "", "assembly convention gathering"]) + let v = native_list_append(v, ["abhiprāy", "noun", "abhiprāy", "", "", "", "intention"]) + let v = native_list_append(v, ["abhisamai", "noun", "abhisamai", "", "", "", "understanding"]) + let v = native_list_append(v, ["abhyākhyām", "noun", "abhyākhyām", "", "", "", "false or baseless"]) + let v = native_list_append(v, ["ompalskoññe", "noun", "ompalskoññe", "", "", "", "meditation"]) + let v = native_list_append(v, ["soylñe", "noun", "soylñe", "", "", "", "satisfaction satiety satiation"]) + let v = native_list_append(v, ["sälyiye", "noun", "sälyiye", "", "", "", "line streak"]) + let v = native_list_append(v, ["waräṣṣälñe", "noun", "waräṣṣälñe", "", "", "", "practice"]) + let v = native_list_append(v, ["wäntalyi", "noun", "wäntalyi", "", "", "", "bowstring"]) + let v = native_list_append(v, ["wäntare", "noun", "wäntare", "", "", "", "event occurrence happening"]) + let v = native_list_append(v, ["wārṣṣe", "noun", "wārṣṣe", "", "", "", "robber"]) + let v = native_list_append(v, ["wakītsñe", "noun", "wakītsñe", "", "", "", "distinction difference"]) + let v = native_list_append(v, ["warke", "noun", "warke", "", "", "", "garland"]) + let v = native_list_append(v, ["larauñe", "noun", "larauñe", "", "", "", "love affection"]) + let v = native_list_append(v, ["lalñe", "noun", "lalñe", "", "", "", "exit emergence"]) + let v = native_list_append(v, ["lalaukar", "noun", "lalaukar", "", "", "", "light illumination"]) + let v = native_list_append(v, ["orotstse-pācer", "noun", "orotstse-pācer", "", "", "", "grandfather"]) + let v = native_list_append(v, ["orkamo", "noun", "orkamo", "", "", "", "darkness"]) + let v = native_list_append(v, ["katkauña", "noun", "katkauña", "", "", "", "joy"]) + let v = native_list_append(v, ["kañcuki", "noun", "kañcuki", "", "", "", "chamberlain"]) + let v = native_list_append(v, ["kaṭapūtane", "noun", "kaṭapūtane", "", "", "", "a type of"]) + let v = native_list_append(v, ["kamartāññe", "noun", "kamartāññe", "", "", "", "rulership sovereignty"]) + let v = native_list_append(v, ["kärtse-yāmi", "noun", "kärtse-yāmi", "", "", "", "benefactor"]) + let v = native_list_append(v, ["stamäṣṣälñe", "noun", "stamäṣṣälñe", "", "", "", "establishment"]) + let v = native_list_append(v, ["trenkäl", "noun", "trenkäl", "", "", "", "clinging adhesion"]) + let v = native_list_append(v, ["amäkṣpänte", "noun", "amäkṣpänte", "", "", "", "wagonmaster"]) + let v = native_list_append(v, ["ām(i)-", "noun", "ām(i)-", "", "", "", "suffering distress"]) + let v = native_list_append(v, ["amoktse", "noun", "amoktse", "", "", "", "artisan"]) + let v = native_list_append(v, ["ammakki", "noun", "ammakki", "", "", "", "mother"]) + let v = native_list_append(v, ["ayāmätte", "noun", "ayāmätte", "", "", "", "unworked"]) + let v = native_list_append(v, ["ariwe", "noun", "ariwe", "", "", "", "ram"]) + let v = native_list_append(v, ["aruci", "noun", "aruci", "", "", "", "lack of appetite"]) + let v = native_list_append(v, ["arkiye", "noun", "arkiye", "", "", "", "obligatory"]) + let v = native_list_append(v, ["arkwiññe", "noun", "arkwiññe", "", "", "", "whiteness"]) + let v = native_list_append(v, ["artkiye", "noun", "artkiye", "", "", "", "abundance"]) + let v = native_list_append(v, ["artkaretstse", "noun", "artkaretstse", "", "", "", "one who has"]) + let v = native_list_append(v, ["alāᵤ", "noun", "alāᵤ", "", "", "", "wether a castrated"]) + let v = native_list_append(v, ["alāsäññe", "noun", "alāsäññe", "", "", "", "idleness laziness lethargy"]) + let v = native_list_append(v, ["alāṣṣālle", "noun", "alāṣṣālle", "", "", "", "sickness"]) + let v = native_list_append(v, ["āliya", "noun", "āliya", "", "", "", "otherness"]) + let v = native_list_append(v, ["avatrāpi", "noun", "avatrāpi", "", "", "", "a modest person"]) + let v = native_list_append(v, ["avasth", "noun", "avasth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["avidyä", "noun", "avidyä", "", "", "", "ignorance"]) + let v = native_list_append(v, ["awāsīke", "noun", "awāsīke", "", "", "", "a resident of"]) + let v = native_list_append(v, ["aśari", "noun", "aśari", "", "", "", "teacher"]) + let v = native_list_append(v, ["aśiya", "noun", "aśiya", "", "", "", "nun female counterpart"]) + let v = native_list_append(v, ["aśup", "noun", "aśup", "", "", "", "offensive thing"]) + let v = native_list_append(v, ["aśrāddhe", "noun", "aśrāddhe", "", "", "", "unbeliever"]) + let v = native_list_append(v, ["aśrām", "noun", "aśrām", "", "", "", "ashram"]) + let v = native_list_append(v, ["aṣanīke", "noun", "aṣanīke", "", "", "", "one who is"]) + let v = native_list_append(v, ["aṣitañ", "noun", "aṣitañ", "", "", "", "fur animal hair"]) + let v = native_list_append(v, ["asūre", "noun", "asūre", "", "", "", "demon"]) + let v = native_list_append(v, ["astaräññe", "noun", "astaräññe", "", "", "", "purity"]) + let v = native_list_append(v, ["ma-astaräññe", "noun", "ma-astaräññe", "", "", "", "impurity"]) + let v = native_list_append(v, ["āᵤw", "noun", "āᵤw", "", "", "", "ewe"]) + let v = native_list_append(v, ["ākteke", "noun", "ākteke", "", "", "", "wonderful thing wonder"]) + let v = native_list_append(v, ["āktekaññe", "noun", "āktekaññe", "", "", "", "wonder"]) + let v = native_list_append(v, ["aklaṣṣälñe", "noun", "aklaṣṣälñe", "", "", "", "teaching"]) + let v = native_list_append(v, ["akṣār", "noun", "akṣār", "", "", "", "syllable"]) + let v = native_list_append(v, ["akṣalñe", "noun", "akṣalñe", "", "", "", "instruction"]) + let v = native_list_append(v, ["āksalñe", "noun", "āksalñe", "", "", "", "awakening"]) + let v = native_list_append(v, ["āksaṣṣenta", "noun", "āksaṣṣenta", "", "", "", "one who is"]) + let v = native_list_append(v, ["ākhu", "noun", "ākhu", "", "", "", "mole mouse rat"]) + let v = native_list_append(v, ["āgat", "noun", "āgat", "", "", "", "remedy"]) + let v = native_list_append(v, ["āgam", "noun", "āgam", "", "", "", "traditional doctrine or"]) + let v = native_list_append(v, ["ānk", "noun", "ānk", "", "", "", "part constituent"]) + let v = native_list_append(v, ["āto", "noun", "āto", "", "", "", "wrist"]) + let v = native_list_append(v, ["āttsi", "noun", "āttsi", "", "", "", "model possibly"]) + let v = native_list_append(v, ["ādañc", "noun", "ādañc", "", "", "", "bite wound caused"]) + let v = native_list_append(v, ["āpadāṃ", "noun", "āpadāṃ", "", "", "", "arrival"]) + let v = native_list_append(v, ["ām", "noun", "ām", "", "", "", "silence"]) + let v = native_list_append(v, ["āmiṣ", "noun", "āmiṣ", "", "", "", "raw meat"]) + let v = native_list_append(v, ["āmpär", "noun", "āmpär", "", "", "", "bodily limb member"]) + let v = native_list_append(v, ["esale", "noun", "esale", "", "", "", "post stake"]) + let v = native_list_append(v, ["krämpālñe", "noun", "krämpālñe", "", "", "", "disturbance"]) + let v = native_list_append(v, ["kronkśe", "noun", "kronkśe", "", "", "", "bee"]) + let v = native_list_append(v, ["krorīya", "noun", "krorīya", "", "", "", "horn on an"]) + let v = native_list_append(v, ["canke", "noun", "canke", "", "", "", "lap bosom"]) + let v = native_list_append(v, ["cāk", "noun", "cakanma", "", "", "", "a dry measure"]) + let v = native_list_append(v, ["ckācko", "noun", "ckācko", "", "", "", "leg particularly the"]) + let v = native_list_append(v, ["ātstse", "noun", "ātstse", "", "", "", "thickness of wits"]) + let v = native_list_append(v, ["yalñe", "noun", "yalñe", "", "", "", "act of going"]) + let v = native_list_append(v, ["itauñe", "noun", "itauñe", "", "", "", "fullness abundance wealth"]) + let v = native_list_append(v, ["indranīl", "noun", "indranīl", "", "", "", "sapphire"]) + let v = native_list_append(v, ["iścem", "noun", "iścem", "", "", "", "clay"]) + let v = native_list_append(v, ["rutkalyñe", "noun", "rutkalyñe", "", "", "", "removal"]) + let v = native_list_append(v, ["āmpäl", "noun", "āmpäl", "", "", "", "acid"]) + let v = native_list_append(v, ["ayomaṣṣe", "noun", "ayomaṣṣe", "", "", "", "gift"]) + let v = native_list_append(v, ["āralñe", "noun", "āralñe", "", "", "", "cessation"]) + let v = native_list_append(v, ["ārälñe", "noun", "ārälñe", "", "", "", "renunciation"]) + let v = native_list_append(v, ["ārtar", "noun", "ārtar", "", "", "", "act of praise"]) + let v = native_list_append(v, ["patsa", "noun", "patsa", "", "", "", "bottom"]) + let v = native_list_append(v, ["ārttalñe", "noun", "ārttalñe", "", "", "", "pleasure love"]) + let v = native_list_append(v, ["ārtte", "noun", "ārtte", "", "", "", "care attention"]) + let v = native_list_append(v, ["ārth", "noun", "ārth", "", "", "", "meaning significance"]) + let v = native_list_append(v, ["ālambaṃ", "noun", "ālambaṃ", "", "", "", "basis ground support"]) + let v = native_list_append(v, ["tsirauñe", "noun", "tsirauñe", "", "", "", "energy"]) + let v = native_list_append(v, ["tsmālñe", "noun", "tsmālñe", "", "", "", "growth"]) + let v = native_list_append(v, ["tsrālñe", "noun", "tsrālñe", "", "", "", "separation"]) + let v = native_list_append(v, ["sārm", "noun", "sārm", "", "", "", "seed"]) + let v = native_list_append(v, ["sānk", "noun", "sānk", "", "", "", "community"]) + let v = native_list_append(v, ["sargga", "noun", "sargga", "", "", "", "chapter of a"]) + let v = native_list_append(v, ["sanuññe", "noun", "sanuññe", "", "", "", "enmity hostility"]) + let v = native_list_append(v, ["saṃsār", "noun", "saṃsār", "", "", "", "reincarnation"]) + let v = native_list_append(v, ["ṣpikiye", "noun", "ṣpikiye", "", "", "", "crutch"]) + let v = native_list_append(v, ["ṣpakīye", "noun", "ṣpakīye", "", "", "", "pill pastille"]) + let v = native_list_append(v, ["ṣewi", "noun", "ṣewi", "", "", "", "pretext excuse"]) + let v = native_list_append(v, ["ṣertwe", "noun", "ṣertwe", "", "", "", "instigation incitement"]) + let v = native_list_append(v, ["ṣanmirāñca", "noun", "ṣanmirāñca", "", "", "", "novice nun"]) + let v = native_list_append(v, ["ṣanmire", "noun", "ṣanmire", "", "", "", "novice monk"]) + let v = native_list_append(v, ["świtär", "noun", "świtär", "", "", "", "vitiligo white leprosy"]) + let v = native_list_append(v, ["śätkaroñ", "noun", "śätkaroñ", "", "", "", "leech"]) + let v = native_list_append(v, ["śāstär", "noun", "śāstär", "", "", "", "sacred book scripture"]) + let v = native_list_append(v, ["śānti", "noun", "śānti", "", "", "", "rite for averting"]) + let v = native_list_append(v, ["wetene", "noun", "wetene", "", "", "", "fenugreek"]) + let v = native_list_append(v, ["wirot", "noun", "wirot", "", "", "", "incompatibility"]) + let v = native_list_append(v, ["winālñe", "noun", "winālñe", "", "", "", "enjoyment"]) + let v = native_list_append(v, ["kläntsauñe", "noun", "kläntsauñe", "", "", "", "sleepiness"]) + let v = native_list_append(v, ["ktakät", "noun", "ktakät", "", "", "", "a type of"]) + let v = native_list_append(v, ["ktsaitstsäññe", "noun", "ktsaitstsäññe", "", "", "", "old age"]) + let v = native_list_append(v, ["gottär", "noun", "gottär", "", "", "", "family kin lineage"]) + let v = native_list_append(v, ["graheṃ", "noun", "graheṃ", "", "", "", "demonic possession"]) + let v = native_list_append(v, ["caṇḍāle", "noun", "caṇḍāle", "", "", "", "outcast"]) + let v = native_list_append(v, ["tanaulyko", "noun", "tanaulyko", "", "", "", "fly insect"]) + let v = native_list_append(v, ["ās", "noun", "ās", "", "", "", "she-goat"]) + let v = native_list_append(v, ["aṣitstse", "noun", "aṣitstse", "", "", "", "goat"]) + let v = native_list_append(v, ["epyacäññe", "noun", "epyacäññe", "", "", "", "souvenir memento"]) + let v = native_list_append(v, ["āstär", "noun", "āstär", "", "", "", "bolt arrow"]) + let v = native_list_append(v, ["āhār", "noun", "āhār", "", "", "", "food"]) + let v = native_list_append(v, ["ikṣṣu", "noun", "ikṣṣu", "", "", "", "sugar cane"]) + let v = native_list_append(v, ["intri", "noun", "intri", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["intsau", "noun", "intsau", "", "", "", "block of wood"]) + let v = native_list_append(v, ["imāne", "noun", "imāne", "", "", "", "a type of"]) + let v = native_list_append(v, ["iścake", "noun", "iścake", "", "", "", "a kind of"]) + let v = native_list_append(v, ["utpatti", "noun", "utpatti", "", "", "", "production"]) + let v = native_list_append(v, ["utpāt", "noun", "utpāt", "", "", "", "receipt of something"]) + let v = native_list_append(v, ["upacār", "noun", "upacār", "", "", "", "practice method procedure"]) + let v = native_list_append(v, ["upacai", "noun", "upacai", "", "", "", "help aid"]) + let v = native_list_append(v, ["upadrap", "noun", "upadrap", "", "", "", "a sudden illness"]) + let v = native_list_append(v, ["upādām", "noun", "upādām", "", "", "", "grasping clinging"]) + let v = native_list_append(v, ["upekṣ", "noun", "upekṣ", "", "", "", "indifference"]) + let v = native_list_append(v, ["utsahām", "noun", "utsahām", "", "", "", "encouragement"]) + let v = native_list_append(v, ["ekaññi", "noun", "ekaññi", "", "", "", "possession"]) + let v = native_list_append(v, ["ekalymi", "noun", "ekalymi", "", "", "", "subject when used"]) + let v = native_list_append(v, ["ekalymiññe", "noun", "ekalymiññe", "", "", "", "subjection"]) + let v = native_list_append(v, ["ekalymiññetstse", "noun", "ekalymiññetstse", "", "", "", "power strength"]) + let v = native_list_append(v, ["ekītatstse", "noun", "ekītatstse", "", "", "", "helper"]) + let v = native_list_append(v, ["ekītatsñe", "noun", "ekītatsñe", "", "", "", "helpfulness assistance"]) + let v = native_list_append(v, ["ekaute", "noun", "ekaute", "", "", "", "unkilled"]) + let v = native_list_append(v, ["ekṣineke", "noun", "ekṣineke", "", "", "", "dove"]) + let v = native_list_append(v, ["eṅkalñe", "noun", "eṅkalñe", "", "", "", "adherence attachment"]) + let v = native_list_append(v, ["eñcil", "noun", "eñcil", "", "", "", "levy tax"]) + let v = native_list_append(v, ["eñcal", "noun", "eñcal", "", "", "", "levy"]) + let v = native_list_append(v, ["eñcilmaṣṣe", "noun", "eñcilmaṣṣe", "", "", "", "someone who owes"]) + let v = native_list_append(v, ["akaru", "noun", "akaru", "", "", "", "aloe"]) + let v = native_list_append(v, ["āklyi", "noun", "āklyi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["akessu", "noun", "akessu", "", "", "", "end"]) + let v = native_list_append(v, ["akwam-pere", "noun", "akwam-pere", "", "", "", "sprout and stalk"]) + let v = native_list_append(v, ["akwatsäññe", "noun", "akwatsäññe", "", "", "", "sharpness"]) + let v = native_list_append(v, ["ākṣar", "noun", "ākṣar", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aṅkāre", "noun", "aṅkāre", "", "", "", "profligacy"]) + let v = native_list_append(v, ["aṅkaiṃ-pilko", "noun", "aṅkaiṃ-pilko", "", "", "", "false thought or"]) + let v = native_list_append(v, ["aṅkwaṣ", "noun", "aṅkwaṣ", "", "", "", "asafoetida"]) + let v = native_list_append(v, ["aṅkwaṣṭ", "noun", "aṅkwaṣṭ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["acalasuttär", "noun", "acalasuttär", "", "", "", "acalasutra a kind"]) + let v = native_list_append(v, ["ācār", "noun", "ācār", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ajamot", "noun", "ajamot", "", "", "", "celery caraway"]) + let v = native_list_append(v, ["añmalaṣkaññe", "noun", "añmalaṣkaññe", "", "", "", "sympathy pity"]) + let v = native_list_append(v, ["Atakke", "noun", "Atakke", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["adāttadāṃ", "noun", "adāttadāṃ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["atiya", "noun", "atiya", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["skāk", "noun", "skāk", "", "", "", "balcony"]) + let v = native_list_append(v, ["amarṣ", "noun", "amarṣ", "", "", "", "discontent anger indignation"]) + let v = native_list_append(v, ["āmaś", "noun", "āmaś", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amokätstse", "noun", "amokätstse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amparwa", "noun", "amparwa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayājñi", "noun", "ayājñi", "", "", "", "cumin"]) + let v = native_list_append(v, ["Ambara", "noun", "Ambara", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Amrtarakṣita", "noun", "Amrtarakṣita", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Amrtasena", "noun", "Amrtasena", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Ayardhyāme", "noun", "Ayardhyāme", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Araṅkule", "noun", "Araṅkule", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["araṅyāyateṃ", "noun", "araṅyāyateṃ", "", "", "", "hermitage"]) + let v = native_list_append(v, ["Araṇemi", "noun", "Araṇemi", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["arahānte", "noun", "arahānte", "", "", "", "arhat the personification"]) + let v = native_list_append(v, ["arāññe", "noun", "arāññe", "", "", "", "an ascetic forest"]) + let v = native_list_append(v, ["arirāk", "noun", "arirāk", "", "", "", "black myrobalan Terminalia"]) + let v = native_list_append(v, ["aruṇariju", "noun", "aruṇariju", "", "", "", "Hygrophila genus of"]) + let v = native_list_append(v, ["Aruṇāvati", "noun", "Aruṇāvati", "", "", "", "the name of"]) + let v = native_list_append(v, ["ārk", "noun", "ārk", "", "", "", "crown flower Calotropis"]) + let v = native_list_append(v, ["arkwaña", "noun", "arkwaña", "", "", "", "a type of"]) + let v = native_list_append(v, ["arjuṃ", "noun", "arjuṃ", "", "", "", "arjuna a type"]) + let v = native_list_append(v, ["Arṇyārtate", "noun", "Arṇyārtate", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Artadhane", "noun", "Artadhane", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["arkᵤye", "noun", "arkᵤye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Arthadarśi", "noun", "Arthadarśi", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Armoki", "noun", "Armoki", "", "", "", "a river"]) + let v = native_list_append(v, ["Āryakoṣa", "noun", "Āryakoṣa", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["aryamark", "noun", "aryamark", "", "", "", "way of the"]) + let v = native_list_append(v, ["Āryarakṣita", "noun", "Āryarakṣita", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["arhānte", "noun", "arhānte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["arhānteṣṣe", "noun", "arhānteṣṣe", "", "", "", "arhat the personification"]) + let v = native_list_append(v, ["ālasäññe", "noun", "ālasäññe", "", "", "", "idleness laziness lethargy"]) + let v = native_list_append(v, ["alepāṃ", "noun", "alepāṃ", "", "", "", "salve"]) + let v = native_list_append(v, ["alletsñe", "noun", "alletsñe", "", "", "", "strangeness foreignness"]) + let v = native_list_append(v, ["avasthālakṣam", "noun", "avasthālakṣam", "", "", "", "characteristic of a"]) + let v = native_list_append(v, ["aviraje", "noun", "aviraje", "", "", "", "a small unit"]) + let v = native_list_append(v, ["avyākrt", "noun", "avyākrt", "", "", "", "elementary primordial substance"]) + let v = native_list_append(v, ["aśamati", "noun", "aśamati", "", "", "", "Desmodium gangeticum"]) + let v = native_list_append(v, ["aśäkwa", "noun", "aśäkwa", "", "", "", "vicinity possibly"]) + let v = native_list_append(v, ["aśubha", "noun", "aśubha", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aśaikṣamārg", "noun", "aśaikṣamārg", "", "", "", "the path of"]) + let v = native_list_append(v, ["aśaikṣe", "noun", "aśaikṣe", "", "", "", "one no longer"]) + let v = native_list_append(v, ["Aśokamitre", "noun", "Aśokamitre", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Aśokarakṣita", "noun", "Aśokarakṣita", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Aśoke", "noun", "Aśoke", "", "", "", "a male given"]) + let v = native_list_append(v, ["Aśleṣ", "noun", "Aśleṣ", "", "", "", "Cancer constellation"]) + let v = native_list_append(v, ["aśvakānt", "noun", "aśvakānt", "", "", "", "Indian genseng ashwagandha"]) + let v = native_list_append(v, ["aśvagandh", "noun", "aśvagandh", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aśvamet", "noun", "aśvamet", "", "", "", "a horse sacrifice"]) + let v = native_list_append(v, ["Aśviṇi", "noun", "Aśviṇi", "", "", "", "Aries constellation"]) + let v = native_list_append(v, ["kaice", "noun", "kaice", "", "", "", "trough tub"]) + let v = native_list_append(v, ["Aṣärte", "noun", "Aṣärte", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["asaṃkhyai", "noun", "asaṃkhyai", "", "", "", "an incalculably long"]) + let v = native_list_append(v, ["asāṃ", "noun", "asāṃ", "", "", "", "seat throne"]) + let v = native_list_append(v, ["āsūre", "noun", "āsūre", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["asecanadarśaṃ", "noun", "asecanadarśaṃ", "", "", "", "insatiable sight something"]) + let v = native_list_append(v, ["askace", "noun", "askace", "", "", "", "halfa grass Desmostachya"]) + let v = native_list_append(v, ["askwace", "noun", "askwace", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["astarñe", "noun", "astarñe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["astariññe", "noun", "astariññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āka", "noun", "āka", "", "", "", "a type of"]) + let v = native_list_append(v, ["ākāśadhātu", "noun", "ākāśadhātu", "", "", "", "element of the"]) + let v = native_list_append(v, ["āktike", "noun", "āktike", "", "", "", "wonderful thing wonder"]) + let v = native_list_append(v, ["āktikaññe", "noun", "āktikaññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ālyi", "noun", "ālyi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āli", "noun", "āli", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["amäkṣpänta", "noun", "amäkṣpänta", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-ākṣi", "noun", "-ākṣi", "", "", "", "one who announces"]) + let v = native_list_append(v, ["ājivīke", "noun", "ājivīke", "", "", "", "Jainist religious mendicant"]) + let v = native_list_append(v, ["āñcanarasa", "noun", "āñcanarasa", "", "", "", "a preparation of"]) + let v = native_list_append(v, ["āñmalāṣṣälñe", "noun", "āñmalāṣṣälñe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āñm-nākälñe", "noun", "āñm-nākälñe", "", "", "", "self-reproach"]) + let v = native_list_append(v, ["ātmaguptaphal", "noun", "ātmaguptaphal", "", "", "", "fruit of the"]) + let v = native_list_append(v, ["ātmagupti", "noun", "ātmagupti", "", "", "", "velvet bean"]) + let v = native_list_append(v, ["ātmadṛṣṭi", "noun", "ātmadṛṣṭi", "", "", "", "self-view the view"]) + let v = native_list_append(v, ["ātmapāvabhet", "noun", "ātmapāvabhet", "", "", "", "rupture of the"]) + let v = native_list_append(v, ["Ātmavarga", "noun", "Ātmavarga", "", "", "", "a chapter of"]) + let v = native_list_append(v, ["āntsi", "noun", "āntsi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ādhyātmike", "noun", "ādhyātmike", "", "", "", "something that comes"]) + let v = native_list_append(v, ["Ānande", "noun", "Ānande", "", "", "", "inflected form of"]) + let v = native_list_append(v, ["Ānanda", "noun", "Ānanda", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ānandamitra", "noun", "Ānandamitra", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["ānāpānasmrti", "noun", "ānāpānasmrti", "", "", "", "mindfulness of breathing"]) + let v = native_list_append(v, ["āmok", "noun", "āmok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āyataṃ", "noun", "āyataṃ", "", "", "", "the senses and"]) + let v = native_list_append(v, ["āyo", "noun", "āyo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ayormaṣṣe", "noun", "ayormaṣṣe", "", "", "", "gift present"]) + let v = native_list_append(v, ["āymelaṣkäññe", "noun", "āymelaṣkäññe", "", "", "", "compassion mercy pity"]) + let v = native_list_append(v, ["āraṇyāyataṃ", "noun", "āraṇyāyataṃ", "", "", "", "wilderness home forest"]) + let v = native_list_append(v, ["ārūpyadhātu", "noun", "ārūpyadhātu", "", "", "", "state of formlessness"]) + let v = native_list_append(v, ["ārte", "noun", "ārte", "", "", "", "aqueduct irrigation canal"]) + let v = native_list_append(v, ["Ārpela", "noun", "Ārpela", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Āryatewe", "noun", "Āryatewe", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Āryamārg", "noun", "Āryamārg", "", "", "", "the Āryamarga a"]) + let v = native_list_append(v, ["āryavaṃś", "noun", "āryavaṃś", "", "", "", "noble blood or"]) + let v = native_list_append(v, ["Āryawarme", "noun", "Āryawarme", "", "", "", "a male given"]) + let v = native_list_append(v, ["Āryaśke", "noun", "Āryaśke", "", "", "", "a male given"]) + let v = native_list_append(v, ["Āryottāme", "noun", "Āryottāme", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ārslāṃ", "noun", "Ārslāṃ", "", "", "", "a male given"]) + let v = native_list_append(v, ["Ālp", "noun", "Ālp", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["āśirvāt", "noun", "āśirvāt", "", "", "", "benediction"]) + let v = native_list_append(v, ["aśca-sanāpalle", "noun", "aśca-sanāpalle", "", "", "", "a salve for"]) + let v = native_list_append(v, ["Āśtāwi", "noun", "Āśtāwi", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["āśmagupti", "noun", "āśmagupti", "", "", "", "a medical ingredient"]) + let v = native_list_append(v, ["āhāra-krtya", "noun", "āhāra-krtya", "", "", "", "acquiring of sustenance"]) + let v = native_list_append(v, ["yalñetstse", "noun", "yalñetstse", "", "", "", "someone undertaking a"]) + let v = native_list_append(v, ["käryorttau", "noun", "käryorttau", "", "", "", "merchant trader"]) + let v = native_list_append(v, ["pälsko", "noun", "pälsko", "", "", "", "spirit soul"]) + let v = native_list_append(v, ["ṣaṃṣäl", "noun", "ṣaṃṣäl", "", "", "", "number"]) + let v = native_list_append(v, ["petwe", "noun", "petwe", "", "", "", "bank of a"]) + let v = native_list_append(v, ["takälñe", "noun", "takälñe", "", "", "", "touch"]) + let v = native_list_append(v, ["tinār", "noun", "tinār", "", "", "", "denarius dinar a"]) + let v = native_list_append(v, ["skāralñe", "noun", "skāralñe", "", "", "", "reproach threat"]) + let v = native_list_append(v, ["skeye", "noun", "skeye", "", "", "", "zeal effort"]) + let v = native_list_append(v, ["skren", "noun", "skren", "", "", "", "an unknown type"]) + let v = native_list_append(v, ["yamaṣṣuki", "noun", "yamaṣṣuki", "", "", "", "participant"]) + let v = native_list_append(v, ["Ylaiñäkte", "noun", "Ylaiñäkte", "", "", "", "Indra"]) + let v = native_list_append(v, ["raddhi", "noun", "raddhi", "", "", "", "magic supernatural power"]) + let v = native_list_append(v, ["rutir", "noun", "rutir", "", "", "", "saffron"]) + let v = native_list_append(v, ["lipär", "noun", "lipär", "", "", "", "remainder"]) + let v = native_list_append(v, ["lwaksātsaika", "noun", "lwaksātsaika", "", "", "", "potter"]) + let v = native_list_append(v, ["srukalle", "noun", "srukalle", "", "", "", "death"]) + let v = native_list_append(v, ["tsaṣke", "noun", "tsaṣke", "", "", "", "senior monk elder"]) + let v = native_list_append(v, ["tsārwo", "noun", "tsārwo", "", "", "", "extreme joy delight"]) + let v = native_list_append(v, ["tsetsekor", "noun", "tsetsekor", "", "", "", "affliction"]) + let v = native_list_append(v, ["tsrerme", "noun", "tsrerme", "", "", "", "ditch"]) + let v = native_list_append(v, ["tsrorye", "noun", "tsrorye", "", "", "", "distinction"]) + let v = native_list_append(v, ["tsnamñe", "noun", "tsnamñe", "", "", "", "influence from the"]) + let v = native_list_append(v, ["tskertkane", "noun", "tskertkane", "", "", "", "calves of the"]) + let v = native_list_append(v, ["nāge", "noun", "nāge", "", "", "", "naga serpent demon"]) + let v = native_list_append(v, ["strīndri", "noun", "strīndri", "", "", "", "vagina"]) + let v = native_list_append(v, ["praskāre", "noun", "praskāre", "", "", "", "a type of"]) + let v = native_list_append(v, ["prakrauñe", "noun", "prakrauñe", "", "", "", "firmness"]) + let v = native_list_append(v, ["prātimokṣ", "noun", "prātimokṣ", "", "", "", "a code of"]) + let v = native_list_append(v, ["prosko", "noun", "prosko", "", "", "", "fear"]) + let v = native_list_append(v, ["ptsak", "noun", "ptsak", "", "", "", "a blink blinking"]) + let v = native_list_append(v, ["mañu", "noun", "mañu", "", "", "", "desire"]) + let v = native_list_append(v, ["mañcaṣṭa", "noun", "mañcaṣṭa", "", "", "", "Indian madder Oldenlandia"]) + let v = native_list_append(v, ["manarko", "noun", "manarko", "", "", "", "riverbank"]) + let v = native_list_append(v, ["mantālo", "noun", "mantālo", "", "", "", "malice evil-mindedness"]) + let v = native_list_append(v, ["maścītse", "noun", "maścītse", "", "", "", "mouse rat"]) + let v = native_list_append(v, ["mahūr", "noun", "mahūr", "", "", "", "diadem headdress"]) + let v = native_list_append(v, ["māṭhare", "noun", "māṭhare", "", "", "", "superintendent of a"]) + let v = native_list_append(v, ["mamauñe", "noun", "mamauñe", "", "", "", "rawness"]) + let v = native_list_append(v, ["māskw", "noun", "māskw", "", "", "", "obstacle hindrance difficulty"]) + let v = native_list_append(v, ["mänkorñe", "noun", "mänkorñe", "", "", "", "lack deprivation"]) + let v = native_list_append(v, ["mäñcuṣka", "noun", "mäñcuṣka", "", "", "", "princess"]) + let v = native_list_append(v, ["māntalyñe", "noun", "māntalyñe", "", "", "", "irritation mental"]) + let v = native_list_append(v, ["märkwace", "noun", "märkwace", "", "", "", "thigh upper leg"]) + let v = native_list_append(v, ["miyäṣṣälñe", "noun", "miyäṣṣälñe", "", "", "", "harm hurt damage"]) + let v = native_list_append(v, ["mitalñe", "noun", "mitalñe", "", "", "", "trip journey"]) + let v = native_list_append(v, ["miṣṣi", "noun", "miṣṣi", "", "", "", "community"]) + let v = native_list_append(v, ["meñe-pällent", "noun", "meñe-pällent", "", "", "", "full moon"]) + let v = native_list_append(v, ["mewiyo", "noun", "mewiyo", "", "", "", "tiger male"]) + let v = native_list_append(v, ["mewiya", "noun", "mewiya", "", "", "", "tiger female"]) + let v = native_list_append(v, ["maiki", "noun", "maiki", "", "", "", "broth"]) + let v = native_list_append(v, ["maitrāk", "noun", "maitrāk", "", "", "", "Maitreya"]) + let v = native_list_append(v, ["maimatsäññe", "noun", "maimatsäññe", "", "", "", "tranquility equanimity absence"]) + let v = native_list_append(v, ["mokoṃśka", "noun", "mokoṃśka", "", "", "", "female monkey"]) + let v = native_list_append(v, ["mauki", "noun", "mauki", "", "", "", "a stop a"]) + let v = native_list_append(v, ["mrakwe", "noun", "mrakwe", "", "", "", "portion"]) + let v = native_list_append(v, ["warañce", "noun", "warañce", "", "", "", "sand"]) + let v = native_list_append(v, ["waṣamñe", "noun", "waṣamñe", "", "", "", "friendship"]) + let v = native_list_append(v, ["waṣe", "noun", "waṣe", "", "", "", "lie untruth falsehood"]) + let v = native_list_append(v, ["wasaṃpāt", "noun", "wasaṃpāt", "", "", "", "ordination"]) + let v = native_list_append(v, ["wasso", "noun", "wasso", "", "", "", "halfa grass Desmostachya"]) + let v = native_list_append(v, ["watkäṣlñe", "noun", "watkäṣlñe", "", "", "", "command order"]) + let v = native_list_append(v, ["weṣṣeñcatstse", "noun", "weṣṣeñcatstse", "", "", "", "speaker"]) + let v = native_list_append(v, ["weṣ", "noun", "weṣ", "", "", "", "guise appearance"]) + let v = native_list_append(v, ["weswe", "noun", "weswe", "", "", "", "trace"]) + let v = native_list_append(v, ["okaro", "noun", "okaro", "", "", "", "sweet flag Acorus"]) + let v = native_list_append(v, ["onwaññe", "noun", "onwaññe", "", "", "", "immortality"]) + let v = native_list_append(v, ["ompalsko", "noun", "ompalsko", "", "", "", "meditation"]) + let v = native_list_append(v, ["ompakwättäññe", "noun", "ompakwättäññe", "", "", "", "untrustworthiness unreliability"]) + let v = native_list_append(v, ["orponk", "noun", "orponk", "", "", "", "platform rostrum"]) + let v = native_list_append(v, ["kārm", "noun", "kārm", "", "", "", "deed"]) + let v = native_list_append(v, ["paikalñe", "noun", "paikalñe", "", "", "", "writing"]) + let v = native_list_append(v, ["pikār", "noun", "pikār", "", "", "", "gesture made with"]) + let v = native_list_append(v, ["raitwe", "noun", "raitwe", "", "", "", "means application"]) + let v = native_list_append(v, ["erkattäññe", "noun", "erkattäññe", "", "", "", "anger vexation displeasure"]) + let v = native_list_append(v, ["wikṣälñe", "noun", "wikṣälñe", "", "", "", "extirpation"]) + let v = native_list_append(v, ["wikālñe", "noun", "wikālñe", "", "", "", "relinquishment"]) + let v = native_list_append(v, ["wīnāmāññe", "noun", "wīnāmāññe", "", "", "", "garden"]) + let v = native_list_append(v, ["wināṣṣälñe", "noun", "wināṣṣälñe", "", "", "", "homage honor"]) + let v = native_list_append(v, ["winai", "noun", "winai", "", "", "", "vinaya rules of"]) + let v = native_list_append(v, ["wiralom", "noun", "wiralom", "", "", "", "a particular kind"]) + let v = native_list_append(v, ["waiwalñe", "noun", "waiwalñe", "", "", "", "moisture"]) + let v = native_list_append(v, ["oskiye", "noun", "oskiye", "", "", "", "house dwelling dwelling-place"]) + let v = native_list_append(v, ["auloñ", "noun", "auloñ", "", "", "", "blood vessels"]) + let v = native_list_append(v, ["Śāwaṃ", "noun", "Śāwaṃ", "", "", "", "Shravana a lunar"]) + let v = native_list_append(v, ["śimpriye", "noun", "śimpriye", "", "", "", "winter"]) + let v = native_list_append(v, ["śawāñca", "noun", "śawāñca", "", "", "", "eating the act"]) + let v = native_list_append(v, ["śoṣ", "noun", "śoṣ", "", "", "", "pulmonary consumption tuberculosis"]) + let v = native_list_append(v, ["śro-kanti", "noun", "śro-kanti", "", "", "", "an unknown type"]) + let v = native_list_append(v, ["śwāl", "noun", "śwāl", "", "", "", "corpse cadaver dead"]) + let v = native_list_append(v, ["ṣañ", "noun", "ṣañ", "", "", "", "nature characteristic"]) + let v = native_list_append(v, ["ṣārtto", "noun", "ṣārtto", "", "", "", "encouragement"]) + let v = native_list_append(v, ["ṣuk-kauṃ", "noun", "ṣuk-kauṃ", "", "", "", "week"]) + let v = native_list_append(v, ["ṣparā-yäkre", "noun", "ṣparā-yäkre", "", "", "", "a type of"]) + let v = native_list_append(v, ["sankrām", "noun", "sankrām", "", "", "", "monastery cloister"]) + let v = native_list_append(v, ["sätkor", "noun", "sätkor", "", "", "", "spread"]) + let v = native_list_append(v, ["sukṣmel", "noun", "sukṣmel", "", "", "", "cardamon"]) + let v = native_list_append(v, ["sopiye", "noun", "sopiye", "", "", "", "net"]) + let v = native_list_append(v, ["snai-meṃtsñe", "noun", "snai-meṃtsñe", "", "", "", "thoughtlessness unconcern negligence"]) + let v = native_list_append(v, ["spaktānīke", "noun", "spaktānīke", "", "", "", "minister"]) + let v = native_list_append(v, ["späntaitsñe", "noun", "späntaitsñe", "", "", "", "trustfulness"]) + let v = native_list_append(v, ["spärk-", "noun", "spärk-", "", "", "", "to disappear"]) + let v = native_list_append(v, ["smāṃ", "noun", "smāṃ", "", "", "", "repetition"]) + let v = native_list_append(v, ["swāralyñe", "noun", "swāralyñe", "", "", "", "pleasure"]) + let v = native_list_append(v, ["swarauññe", "noun", "swarauññe", "", "", "", "sweetness"]) + let v = native_list_append(v, ["halimak", "noun", "halimak", "", "", "", "jaundice"]) + let v = native_list_append(v, ["tsarātre", "noun", "tsarātre", "", "", "", "extract"]) + let v = native_list_append(v, ["tsrelñe", "noun", "tsrelñe", "", "", "", "separation"]) + let v = native_list_append(v, ["tsärśalñe", "noun", "tsärśalñe", "", "", "", "trouble pain"]) + let v = native_list_append(v, ["karkar", "noun", "karkar", "", "", "", "cancer"]) + let v = native_list_append(v, ["käryortstse", "noun", "käryortstse", "", "", "", "merchant"]) + let v = native_list_append(v, ["kaliyuk", "noun", "kaliyuk", "", "", "", "the Kali Yuga"]) + let v = native_list_append(v, ["kaṣake", "noun", "kaṣake", "", "", "", "Kashgarian"]) + let v = native_list_append(v, ["kapille", "noun", "kapille", "", "", "", "fever"]) + let v = native_list_append(v, ["kāpar", "noun", "kāpar", "", "", "", "bite morsel"]) + let v = native_list_append(v, ["ailñe", "noun", "ailñe", "", "", "", "gift present gift-giving"]) + let v = native_list_append(v, ["ekaññe", "noun", "ekaññe", "", "", "", "possession"]) + let v = native_list_append(v, ["uppāl", "noun", "uppāl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iweru", "noun", "iweru", "", "", "", "dropsy swelling cholera"]) + let v = native_list_append(v, ["neṣamye", "noun", "neṣamye", "", "", "", "evil rumor"]) + let v = native_list_append(v, ["nesalñe", "noun", "nesalñe", "", "", "", "existence"]) + let v = native_list_append(v, ["neske", "noun", "neske", "", "", "", "tribute"]) + let v = native_list_append(v, ["patäl", "noun", "patäl", "", "", "", "hell"]) + let v = native_list_append(v, ["paramānu", "noun", "paramānu", "", "", "", "atom"]) + let v = native_list_append(v, ["parākalñe", "noun", "parākalñe", "", "", "", "refreshment"]) + let v = native_list_append(v, ["paruwa", "noun", "paruwa", "", "", "", "feathers"]) + let v = native_list_append(v, ["pärnāññe", "noun", "pärnāññe", "", "", "", "heretic"]) + let v = native_list_append(v, ["paryari", "noun", "paryari", "", "", "", "miracle"]) + let v = native_list_append(v, ["palsko-ṣärpalñe", "noun", "palsko-ṣärpalñe", "", "", "", "mind-reading"]) + let v = native_list_append(v, ["pātro", "noun", "pātro", "", "", "", "alms-bowl begging bowl"]) + let v = native_list_append(v, ["pāramit", "noun", "pāramit", "", "", "", "supremacy mastery"]) + let v = native_list_append(v, ["paṣṣalñe", "noun", "paṣṣalñe", "", "", "", "protection"]) + let v = native_list_append(v, ["pkelñe", "noun", "pkelñe", "", "", "", "ripening"]) + let v = native_list_append(v, ["päknālñe", "noun", "päknālñe", "", "", "", "intention"]) + let v = native_list_append(v, ["pärkālñe", "noun", "pärkālñe", "", "", "", "rising of the"]) + let v = native_list_append(v, ["pärkarñe", "noun", "pärkarñe", "", "", "", "length"]) + let v = native_list_append(v, ["pälkālñe", "noun", "pälkālñe", "", "", "", "observation"]) + let v = native_list_append(v, ["pepälywor", "noun", "pepälywor", "", "", "", "complaint"]) + let v = native_list_append(v, ["pāyalñe", "noun", "pāyalñe", "", "", "", "singing"]) + let v = native_list_append(v, ["pyutkaṣṣälñe", "noun", "pyutkaṣṣälñe", "", "", "", "establishment creation"]) + let v = native_list_append(v, ["ñem-kälywe", "noun", "ñem-kälywe", "", "", "", "fame"]) + let v = native_list_append(v, ["täprauñe", "noun", "täprauñe", "", "", "", "height"]) + let v = native_list_append(v, ["tallārñe", "noun", "tallārñe", "", "", "", "misery"]) + let v = native_list_append(v, ["totteññe", "noun", "totteññe", "", "", "", "border"]) + let v = native_list_append(v, ["traksiñ", "noun", "traksiñ", "", "", "", "awns"]) + let v = native_list_append(v, ["trākäm", "noun", "trākäm", "", "", "", "drachma dram unit"]) + let v = native_list_append(v, ["tränkalyñe", "noun", "tränkalyñe", "", "", "", "lament"]) + let v = native_list_append(v, ["trokol", "noun", "trokol", "", "", "", "provisions"]) + let v = native_list_append(v, ["nūwalñe", "noun", "nūwalñe", "", "", "", "shout roar"]) + let v = native_list_append(v, ["ñuṣṣalñe", "noun", "ñuṣṣalñe", "", "", "", "oppression"]) + let v = native_list_append(v, ["nervāṃ", "noun", "nervāṃ", "", "", "", "nirvana"]) + let v = native_list_append(v, ["maṇḍāl", "noun", "maṇḍāl", "", "", "", "a special circle"]) + let v = native_list_append(v, ["mā-ṣekaṃñe", "noun", "mā-ṣekaṃñe", "", "", "", "inconstancy"]) + let v = native_list_append(v, ["menāk", "noun", "menāk", "", "", "", "example comparison"]) + let v = native_list_append(v, ["mokoṃśke", "noun", "mokoṃśke", "", "", "", "male monkey"]) + let v = native_list_append(v, ["morośk", "noun", "morośk", "", "", "", "an unknown kind"]) + let v = native_list_append(v, ["mrauskalñe", "noun", "mrauskalñe", "", "", "", "aversion or indifference"]) + let v = native_list_append(v, ["epastyäññe", "noun", "epastyäññe", "", "", "", "skill aptitude"]) + let v = native_list_append(v, ["entsesñe", "noun", "entsesñe", "", "", "", "greed"]) + let v = native_list_append(v, ["entsesse", "noun", "entsesse", "", "", "", "greedy envious"]) + let v = native_list_append(v, ["klenke", "noun", "klenke", "", "", "", "vehicle of arriving"]) + let v = native_list_append(v, ["klepe", "noun", "klepe", "", "", "", "theft"]) + let v = native_list_append(v, ["snaitsñe", "noun", "snaitsñe", "", "", "", "poverty"]) + let v = native_list_append(v, ["tsmoññe", "noun", "tsmoññe", "", "", "", "growth increase"]) + let v = native_list_append(v, ["tsätkwantsñe", "noun", "tsätkwantsñe", "", "", "", "error delusion"]) + let v = native_list_append(v, ["iñcuwo", "noun", "iñcuwo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Indratewe", "noun", "Indratewe", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Indradamake", "noun", "Indradamake", "", "", "", "given name of"]) + let v = native_list_append(v, ["Indradhvaje", "noun", "Indradhvaje", "", "", "", "given name of"]) + let v = native_list_append(v, ["ipprer", "noun", "ipprer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["irand", "noun", "irand", "", "", "", "castor oil plant"]) + let v = native_list_append(v, ["iryāpath", "noun", "iryāpath", "", "", "", "a mode of"]) + let v = native_list_append(v, ["Ilaiñakte", "noun", "Ilaiñakte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Īlyipari", "noun", "Īlyipari", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["iśelme", "noun", "iśelme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Iśśapake", "noun", "Iśśapake", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["iṣcake", "noun", "iṣcake", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["isälye", "noun", "isälye", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Uttarakur", "noun", "Uttarakur", "", "", "", "Uttarakuru a possibly"]) + let v = native_list_append(v, ["uttarakuräṣṣe", "noun", "uttarakuräṣṣe", "", "", "", "a dweller in"]) + let v = native_list_append(v, ["Uttaraphalguṇi", "noun", "Uttaraphalguṇi", "", "", "", "Uttara Phalgunī the"]) + let v = native_list_append(v, ["uttarāsāṅkä", "noun", "uttarāsāṅkä", "", "", "", "monks overgarment"]) + let v = native_list_append(v, ["Uttare", "noun", "Uttare", "", "", "", "a male given"]) + let v = native_list_append(v, ["utpat", "noun", "utpat", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["udāṃ", "noun", "udāṃ", "", "", "", "a solemn yet"]) + let v = native_list_append(v, ["Udānalaṅkār", "noun", "Udānalaṅkār", "", "", "", "a Buddhist work"]) + let v = native_list_append(v, ["Udāyin", "noun", "Udāyin", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["udāvart", "noun", "udāvart", "", "", "", "bowel disease with"]) + let v = native_list_append(v, ["udumbura", "noun", "udumbura", "", "", "", "Ficus racemosa the"]) + let v = native_list_append(v, ["udai", "noun", "udai", "", "", "", "sunrise"]) + let v = native_list_append(v, ["Upagupta", "noun", "Upagupta", "", "", "", "a male given"]) + let v = native_list_append(v, ["Upaga", "noun", "Upaga", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Upatiṣya", "noun", "Upatiṣya", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["upadeś", "noun", "upadeś", "", "", "", "instruction"]) + let v = native_list_append(v, ["Upananda", "noun", "Upananda", "", "", "", "a male given"]) + let v = native_list_append(v, ["upādhyāye", "noun", "upādhyāye", "", "", "", "teacher instructor"]) + let v = native_list_append(v, ["upāy", "noun", "upāy", "", "", "", "means method stratagem"]) + let v = native_list_append(v, ["Upāli", "noun", "Upāli", "", "", "", "Upāli one of"]) + let v = native_list_append(v, ["upāsakāñca", "noun", "upāsakāñca", "", "", "", "female layperson of"]) + let v = native_list_append(v, ["upāsake", "noun", "upāsake", "", "", "", "layperson of a"]) + let v = native_list_append(v, ["upāsakäññe", "noun", "upāsakäññe", "", "", "", "laity"]) + let v = native_list_append(v, ["upāsakñe", "noun", "upāsakñe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["upekṣindri", "noun", "upekṣindri", "", "", "", "indifferent sense"]) + let v = native_list_append(v, ["Upoṣathe", "noun", "Upoṣathe", "", "", "", "name of a"]) + let v = native_list_append(v, ["Utpalavarṇā", "noun", "Utpalavarṇā", "", "", "", "a female given"]) + let v = native_list_append(v, ["upāl", "noun", "upāl", "", "", "", "blue lotus"]) + let v = native_list_append(v, ["oppāl", "noun", "oppāl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["utpāl", "noun", "utpāl", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ūrṇ", "noun", "ūrṇ", "", "", "", "the circles of"]) + let v = native_list_append(v, ["Urbilvakāśyapa", "noun", "Urbilvakāśyapa", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Ulkhāmukha", "noun", "Ulkhāmukha", "", "", "", "a male given"]) + let v = native_list_append(v, ["ullapaṃ", "noun", "ullapaṃ", "", "", "", "empty idle gossip"]) + let v = native_list_append(v, ["uwaṃt", "noun", "uwaṃt", "", "", "", "border margin"]) + let v = native_list_append(v, ["Uwāṣṣi", "noun", "Uwāṣṣi", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["uśir", "noun", "uśir", "", "", "", "root of the"]) + let v = native_list_append(v, ["ekñiññe", "noun", "ekñiññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ekaññiññe", "noun", "ekaññiññe", "", "", "", "possession"]) + let v = native_list_append(v, ["kalymi", "noun", "kalymi", "", "", "", "direction"]) + let v = native_list_append(v, ["Ekaśriṅke", "noun", "Ekaśriṅke", "", "", "", "a male given"]) + let v = native_list_append(v, ["ekārthavācake", "noun", "ekārthavācake", "", "", "", "someone who speaks"]) + let v = native_list_append(v, ["ekṣalye", "noun", "ekṣalye", "", "", "", "season"]) + let v = native_list_append(v, ["ekṣinek", "noun", "ekṣinek", "", "", "", "alternative reconstruction of"]) + let v = native_list_append(v, ["eṅkalñetstse", "noun", "eṅkalñetstse", "", "", "", "adherence attachment"]) + let v = native_list_append(v, ["eṅwe", "noun", "eṅwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Ettukāne", "noun", "Ettukāne", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Etriṣe", "noun", "Etriṣe", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kāś", "noun", "Kāś", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kāśyap", "noun", "Kāśyap", "", "", "", "Kassapa the name"]) + let v = native_list_append(v, ["Kāśyape", "noun", "Kāśyape", "", "", "", "Maha Kassapa one"]) + let v = native_list_append(v, ["kätkormeṃ", "noun", "kätkormeṃ", "", "", "", "passage of time"]) + let v = native_list_append(v, ["katkalñe", "noun", "katkalñe", "", "", "", "passage crossing particularly"]) + let v = native_list_append(v, ["kätkarñe", "noun", "kätkarñe", "", "", "", "depth"]) + let v = native_list_append(v, ["knelñe", "noun", "knelñe", "", "", "", "fulfillment"]) + let v = native_list_append(v, ["kärtkālle", "noun", "kärtkālle", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kekärtkor", "noun", "kekärtkor", "", "", "", "dung"]) + let v = native_list_append(v, ["kärnātsi", "noun", "kärnātsi", "", "", "", "price"]) + let v = native_list_append(v, ["kärnālñe", "noun", "kärnālñe", "", "", "", "buying purchase"]) + let v = native_list_append(v, ["kärnol", "noun", "kärnol", "", "", "", "adopted child"]) + let v = native_list_append(v, ["käryakār", "noun", "käryakār", "", "", "", "agreement business arrangement"]) + let v = native_list_append(v, ["käryā-", "noun", "käryā-", "", "", "", "heart"]) + let v = native_list_append(v, ["käryorttaññe", "noun", "käryorttaññe", "", "", "", "a lexical meter"]) + let v = native_list_append(v, ["käryorttautsa", "noun", "käryorttautsa", "", "", "", "female merchant"]) + let v = native_list_append(v, ["käryau", "noun", "käryau", "", "", "", "slave"]) + let v = native_list_append(v, ["kärsor", "noun", "kärsor", "", "", "", "knowledge"]) + let v = native_list_append(v, ["kärstor", "noun", "kärstor", "", "", "", "utter destruction"]) + let v = native_list_append(v, ["kärstālyñe", "noun", "kärstālyñe", "", "", "", "cutting off"]) + let v = native_list_append(v, ["kälkañc", "noun", "kälkañc", "", "", "", "collyrium as a"]) + let v = native_list_append(v, ["källālñe", "noun", "källālñe", "", "", "", "obtaining achieving gain"]) + let v = native_list_append(v, ["kälpaṣṣuki", "noun", "kälpaṣṣuki", "", "", "", "thief lit. stealer"]) + let v = native_list_append(v, ["kälpauca", "noun", "kälpauca", "", "", "", "one who obtains"]) + let v = native_list_append(v, ["kälāṣṣuki", "noun", "kälāṣṣuki", "", "", "", "one who remembers"]) + let v = native_list_append(v, ["Käwotsiñe", "noun", "Käwotsiñe", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["kekesor", "noun", "kekesor", "", "", "", "extinguishing"]) + let v = native_list_append(v, ["kselñe", "noun", "kselñe", "", "", "", "extinction disappearance suppression"]) + let v = native_list_append(v, ["kiṃśuk", "noun", "kiṃśuk", "", "", "", "Butea monosperma flame-of-the-forest"]) + let v = native_list_append(v, ["kiñcelle", "noun", "kiñcelle", "", "", "", "filament of the"]) + let v = native_list_append(v, ["kintarik", "noun", "kintarik", "", "", "", "a type of"]) + let v = native_list_append(v, ["kinnare", "noun", "kinnare", "", "", "", "a kinnara"]) + let v = native_list_append(v, ["Kippā", "noun", "Kippā", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kimña", "noun", "Kimña", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["kiratikta", "noun", "kiratikta", "", "", "", "Agathotes chirayta"]) + let v = native_list_append(v, ["kiśore", "noun", "kiśore", "", "", "", "a youth boy"]) + let v = native_list_append(v, ["kucatāk", "noun", "kucatāk", "", "", "", "tower"]) + let v = native_list_append(v, ["kutumñcik", "noun", "kutumñcik", "", "", "", "name for several"]) + let v = native_list_append(v, ["kutumcik", "noun", "kutumcik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Kunacaṃttrakau", "noun", "Kunacaṃttrakau", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kunacaṃttre", "noun", "Kunacaṃttre", "", "", "", "a male given"]) + let v = native_list_append(v, ["kuntark", "noun", "kuntark", "", "", "", "munja grass"]) + let v = native_list_append(v, ["kuntipaśaṃ", "noun", "kuntipaśaṃ", "", "", "", "pot vessel"]) + let v = native_list_append(v, ["bhājaṃ", "noun", "bhājaṃ", "", "", "", "pot vessel"]) + let v = native_list_append(v, ["kuntiśke", "noun", "kuntiśke", "", "", "", "little pot"]) + let v = native_list_append(v, ["Kumārapuṇye", "noun", "Kumārapuṇye", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kumpante", "noun", "Kumpante", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kumpānte", "noun", "Kumpānte", "", "", "", "a male given"]) + let v = native_list_append(v, ["Kumpāntiśke", "noun", "Kumpāntiśke", "", "", "", "a male given"]) + let v = native_list_append(v, ["kumbhāṃṇḍe", "noun", "kumbhāṃṇḍe", "", "", "", "a kumbhanda a"]) + let v = native_list_append(v, ["kurār", "noun", "kurār", "", "", "", "osprey eagle"]) + let v = native_list_append(v, ["lūwo", "noun", "lūwo", "", "", "", "animal"]) + let v = native_list_append(v, ["kuruci", "noun", "kuruci", "", "", "", "heartleaf moonseed Tinospora"]) + let v = native_list_append(v, ["kurkam", "noun", "kurkam", "", "", "", "saffron Crocus sativus"]) + let v = native_list_append(v, ["kurkal", "noun", "kurkal", "", "", "", "bdellium the fragrant"]) + let v = native_list_append(v, ["Kurriṅkāte", "noun", "Kurriṅkāte", "", "", "", "a male given"]) + let v = native_list_append(v, ["kulaṃkule", "noun", "kulaṃkule", "", "", "", "someone who has"]) + let v = native_list_append(v, ["Kullai", "noun", "Kullai", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kulkera", "noun", "Kulkera", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["kulypelñe", "noun", "kulypelñe", "", "", "", "desire"]) + let v = native_list_append(v, ["Kuwa", "noun", "Kuwa", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["kuṣṭa", "noun", "kuṣṭa", "", "", "", "crepe ginger Costus"]) + let v = native_list_append(v, ["kuṣṭh", "noun", "kuṣṭh", "", "", "", "leprosy"]) + let v = native_list_append(v, ["kusar", "noun", "kusar", "", "", "", "a braid"]) + let v = native_list_append(v, ["kusär", "noun", "kusär", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kutsāre", "noun", "kutsāre", "", "", "", "rag something cast"]) + let v = native_list_append(v, ["keᵤ", "noun", "keᵤ", "", "", "", "cow"]) + let v = native_list_append(v, ["kekkarnor", "noun", "kekkarnor", "", "", "", "striking killing hurting"]) + let v = native_list_append(v, ["keñinta", "noun", "keñinta", "", "", "", "skirts plural only"]) + let v = native_list_append(v, ["Kerentsile", "noun", "Kerentsile", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kereptaññe", "noun", "Kereptaññe", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["kerketstse", "noun", "kerketstse", "", "", "", "fetters"]) + let v = native_list_append(v, ["Kercapiśke", "noun", "Kercapiśke", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kercawiśke", "noun", "Kercawiśke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Kercäpey", "noun", "Kercäpey", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Kercaṃpey", "noun", "Kercaṃpey", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Kertik", "noun", "Kertik", "", "", "", "the Pleiades star"]) + let v = native_list_append(v, ["Kerdipole", "noun", "Kerdipole", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["kaiyye", "noun", "kaiyye", "", "", "", "cow"]) + let v = native_list_append(v, ["kokaletstse", "noun", "kokaletstse", "", "", "", "charioteer carter"]) + let v = native_list_append(v, ["päntā", "noun", "päntā", "", "", "", "master of a"]) + let v = native_list_append(v, ["kokalpänta", "noun", "kokalpänta", "", "", "", "wagonmaster"]) + let v = native_list_append(v, ["amäkṣa", "noun", "amäkṣa", "", "", "", "wagon cart"]) + let v = native_list_append(v, ["kokalyiśke", "noun", "kokalyiśke", "", "", "", "small wagon cart"]) + let v = native_list_append(v, ["kokīl", "noun", "kokīl", "", "", "", "Indian cuckoo Cuculus"]) + let v = native_list_append(v, ["koṭ", "noun", "koṭ", "", "", "", "ten million"]) + let v = native_list_append(v, ["koṭiśvare", "noun", "koṭiśvare", "", "", "", "millionaire"]) + let v = native_list_append(v, ["Kotile", "noun", "Kotile", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Konaikke", "noun", "Konaikke", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Konmaikaṅkauśke", "noun", "Konmaikaṅkauśke", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["Koppesale", "noun", "Koppesale", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["koyñi", "noun", "koyñi", "", "", "", "open wound"]) + let v = native_list_append(v, ["anuśāsake", "noun", "anuśāsake", "", "", "", "instructor director"]) + let v = native_list_append(v, ["anuwasāṃ", "noun", "anuwasāṃ", "", "", "", "washing bath"]) + let v = native_list_append(v, ["apaśabdh", "noun", "apaśabdh", "", "", "", "bad or vulgar"]) + let v = native_list_append(v, ["kauke", "noun", "kauke", "", "", "", "call"]) + let v = native_list_append(v, ["knerwanta", "noun", "knerwanta", "", "", "", "fissure crevice"]) + let v = native_list_append(v, ["kmut", "noun", "kmut", "", "", "", "white-water lily Nymphaea"]) + let v = native_list_append(v, ["Krakasūndin", "noun", "Krakasūndin", "", "", "", "name of a"]) + let v = native_list_append(v, ["Krakasūndi", "noun", "Krakasūndi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kramartaññe", "noun", "kramartaññe", "", "", "", "mastery"]) + let v = native_list_append(v, ["krāmar", "noun", "krāmar", "", "", "", "master"]) + let v = native_list_append(v, ["krāñiye", "noun", "krāñiye", "", "", "", "nape of the"]) + let v = native_list_append(v, ["krānt", "noun", "krānt", "", "", "", "any work of"]) + let v = native_list_append(v, ["granth", "noun", "granth", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kramartsäññe", "noun", "kramartsäññe", "", "", "", "heaviness difficulty"]) + let v = native_list_append(v, ["krewpe", "noun", "krewpe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kroś", "noun", "kroś", "", "", "", "a measurement of"]) + let v = native_list_append(v, ["krośce-maññe", "noun", "krośce-maññe", "", "", "", "icehouse"]) + let v = native_list_append(v, ["kroścaññe", "noun", "kroścaññe", "", "", "", "coldness"]) + let v = native_list_append(v, ["krośśaññe", "noun", "krośśaññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["krośśeññe", "noun", "krośśeññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["klampärya", "noun", "klampärya", "", "", "", "a literary meter"]) + let v = native_list_append(v, ["emalya", "noun", "emalya", "", "", "", "heat"]) + let v = native_list_append(v, ["enerke", "noun", "enerke", "", "", "", "hesitation"]) + let v = native_list_append(v, ["eneśle", "noun", "eneśle", "", "", "", "companion"]) + let v = native_list_append(v, ["epiyac", "noun", "epiyac", "", "", "", "memory"]) + let v = native_list_append(v, ["enäṣṣālñe", "noun", "enäṣṣālñe", "", "", "", "teaching instructure doctrine"]) + let v = native_list_append(v, ["epastyaññe", "noun", "epastyaññe", "", "", "", "skill ability capability"]) + let v = native_list_append(v, ["epiṅkte", "noun", "epiṅkte", "", "", "", "interval"]) + let v = native_list_append(v, ["epretäññe", "noun", "epretäññe", "", "", "", "resolution steadfastness"]) + let v = native_list_append(v, ["empälkattäññe", "noun", "empälkattäññe", "", "", "", "unconcern heedlessness"]) + let v = native_list_append(v, ["prukṣiye", "noun", "prukṣiye", "", "", "", "neglect"]) + let v = native_list_append(v, ["emprentstse", "noun", "emprentstse", "", "", "", "truth propitiousness"]) + let v = native_list_append(v, ["emprentsäññe", "noun", "emprentsäññe", "", "", "", "truth trueness literally"]) + let v = native_list_append(v, ["eynāke", "noun", "eynāke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["Erkätsole", "noun", "Erkätsole", "", "", "", "a male given"]) + let v = native_list_append(v, ["erṣuki", "noun", "erṣuki", "", "", "", "someone who provokes"]) + let v = native_list_append(v, ["ersaṅkṇe", "noun", "ersaṅkṇe", "", "", "", "help literally tightness"]) + let v = native_list_append(v, ["eśpeṣṣe", "noun", "eśpeṣṣe", "", "", "", "spreading hogweed Boerhavia"]) + let v = native_list_append(v, ["Eṣmiñe", "noun", "Eṣmiñe", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["aikatñe", "noun", "aikatñe", "", "", "", "indestructibility"]) + let v = native_list_append(v, ["aikaräññe", "noun", "aikaräññe", "", "", "", "emptiness"]) + let v = native_list_append(v, ["aitkattäññe", "noun", "aitkattäññe", "", "", "", "state of being"]) + let v = native_list_append(v, ["yenme", "noun", "yenme", "", "", "", "gate of a"]) + let v = native_list_append(v, ["aiśamñetstse", "noun", "aiśamñetstse", "", "", "", "someone who has"]) + let v = native_list_append(v, ["aiśai", "noun", "aiśai", "", "", "", "care notice"]) + let v = native_list_append(v, ["aiśaumye", "noun", "aiśaumye", "", "", "", "someone wise"]) + let v = native_list_append(v, ["Oktale", "noun", "Oktale", "", "", "", "an unknown-gender given"]) + let v = native_list_append(v, ["oktaśke", "noun", "oktaśke", "", "", "", "a type of"]) + let v = native_list_append(v, ["oṅkalmo", "noun", "oṅkalmo", "", "", "", "elephant"]) + let v = native_list_append(v, ["oñi", "noun", "oñi", "", "", "", "hip"]) + let v = native_list_append(v, ["onuwaññe", "noun", "onuwaññe", "", "", "", "immortality"]) + let v = native_list_append(v, ["wnolme", "noun", "wnolme", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["onmiñ", "noun", "onmiñ", "", "", "", "regret remorse repentance"]) + let v = native_list_append(v, ["ontsoytñe", "noun", "ontsoytñe", "", "", "", "insatiability"]) + let v = native_list_append(v, ["oppīläñ", "noun", "oppīläñ", "", "", "", "threads"]) + let v = native_list_append(v, ["oppīloñ", "noun", "oppīloñ", "", "", "", "threads"]) + let v = native_list_append(v, ["gairik", "noun", "gairik", "", "", "", "yellow arsenic"]) + let v = native_list_append(v, ["kᵤśāne", "noun", "kᵤśāne", "", "", "", "a type of"]) + let v = native_list_append(v, ["klāpalñe", "noun", "klāpalñe", "", "", "", "touch"]) + let v = native_list_append(v, ["māntsalñe", "noun", "māntsalñe", "", "", "", "sorrow heaviness of"]) + let v = native_list_append(v, ["meñ-ñäkte", "noun", "meñ-ñäkte", "", "", "", "moon god"]) + let v = native_list_append(v, ["mokoce", "noun", "mokoce", "", "", "", "thumb"]) + let v = native_list_append(v, ["yäkṣiye", "noun", "yäkṣiye", "", "", "", "flour meal"]) + let v = native_list_append(v, ["yärkemaññe", "noun", "yärkemaññe", "", "", "", "sanctuary"]) + let v = native_list_append(v, ["yoktsi", "noun", "yoktsi", "", "", "", "a drink"]) + let v = native_list_append(v, ["leṃ", "noun", "leṃ", "", "", "", "cell small chamber"]) + let v = native_list_append(v, ["leswi", "noun", "leswi", "", "", "", "attacks of weakness"]) + let v = native_list_append(v, ["lyiyo", "noun", "lyiyo", "", "", "", "member"]) + let v = native_list_append(v, ["ypoy-moko", "noun", "ypoy-moko", "", "", "", "a land-elder an"]) + let v = native_list_append(v, ["yātäṣṣeñca", "noun", "yātäṣṣeñca", "", "", "", "one who tames"]) + let v = native_list_append(v, ["yotkolau", "noun", "yotkolau", "", "", "", "foreman director"]) + let v = native_list_append(v, ["yoro", "noun", "yoro", "", "", "", "pustule boil"]) + let v = native_list_append(v, ["yrīye", "noun", "yrīye", "", "", "", "a male sheep"]) + let v = native_list_append(v, ["pūdñäkte", "noun", "pūdñäkte", "", "", "", "Buddha"]) + let v = native_list_append(v, ["yāmuttsi", "noun", "yāmuttsi", "", "", "", "a kind of"]) + let v = native_list_append(v, ["troṅk", "noun", "troṅk", "", "", "", "cave hollow"]) + let v = native_list_append(v, ["en-", "verb", "en-", "", "", "", "to instruct teach"]) + let v = native_list_append(v, ["käly", "verb", "käly", "", "", "", "to stand stay"]) + let v = native_list_append(v, ["er-", "verb", "er-", "", "", "", "to evoke call"]) + let v = native_list_append(v, ["i-", "verb", "i-", "", "", "", "to go"]) + let v = native_list_append(v, ["el-", "verb", "el-", "", "", "", "to lean"]) + let v = native_list_append(v, ["mit-", "verb", "mit-", "", "", "", "to embark depart"]) + let v = native_list_append(v, ["pi-", "verb", "pi-", "", "", "", "to sing"]) + let v = native_list_append(v, ["ku-", "verb", "ku-", "", "", "", "to pour"]) + let v = native_list_append(v, ["lip-", "verb", "lip-", "", "", "", "to remain be"]) + let v = native_list_append(v, ["nu-", "verb", "nu-", "", "", "", "to cry out"]) + let v = native_list_append(v, ["kau-", "verb", "kau-", "", "", "", "to kill strike"]) + let v = native_list_append(v, ["su-", "verb", "su-", "", "", "", "to rain"]) + let v = native_list_append(v, ["si-", "verb", "si-", "", "", "", "to drain"]) + let v = native_list_append(v, ["li-", "verb", "li-", "", "", "", "to wipe away"]) + let v = native_list_append(v, ["lu-", "verb", "lu-", "", "", "", "to send"]) + let v = native_list_append(v, ["kwa-", "verb", "kwa-", "", "", "", "to call out"]) + let v = native_list_append(v, ["mi-", "verb", "mi-", "", "", "", "to hurt harm"]) + let v = native_list_append(v, ["mālkant", "verb", "mālkant", "", "", "", "to milk"]) + let v = native_list_append(v, ["pär-", "verb", "pär-", "", "", "", "to bear away"]) + let v = native_list_append(v, ["päl-", "verb", "päl-", "", "", "", "to praise commend"]) + let v = native_list_append(v, ["päk-", "verb", "päk-", "", "", "", "to become ready"]) + let v = native_list_append(v, ["läk-", "verb", "lkāskau", "lyakāwa", "lyelyaku", "", "to see"]) + let v = native_list_append(v, ["śai-", "verb", "śai-", "", "", "", "to live be"]) + let v = native_list_append(v, ["wārk-", "verb", "wārk-", "", "", "", "to shear"]) + let v = native_list_append(v, ["käm-", "verb", "käm-", "", "", "", "to come"]) + let v = native_list_append(v, ["luk-", "verb", "luk-", "", "", "", "to shine to"]) + let v = native_list_append(v, ["wāp-", "verb", "wāp-", "", "", "", "to weave"]) + let v = native_list_append(v, ["miśo", "verb", "miśo", "", "", "", "urine"]) + let v = native_list_append(v, ["syā-", "verb", "syā-", "", "", "", "to sweat"]) + let v = native_list_append(v, ["wäs-", "verb", "wäs-", "", "", "", "to be dressed"]) + let v = native_list_append(v, ["tsäk-", "verb", "tsäk-", "", "", "", "to burn up"]) + let v = native_list_append(v, ["we-", "verb", "we-", "", "", "", "to say speak"]) + let v = native_list_append(v, ["wi-", "verb", "wi-", "", "", "", "to frighten"]) + let v = native_list_append(v, ["ru-", "verb", "ru-", "", "", "", "to open"]) + let v = native_list_append(v, ["klep-", "verb", "klep-", "", "", "", "to touch with"]) + let v = native_list_append(v, ["āk-", "verb", "āk-", "", "", "", "to lead drive"]) + let v = native_list_append(v, ["yuk-", "verb", "yuk-", "", "", "", "to conquer defeat"]) + let v = native_list_append(v, ["kāñm-", "verb", "kāñm-", "", "", "", "to play be"]) + let v = native_list_append(v, ["āl-", "verb", "ālā-", "", "", "", "to hold back"]) + let v = native_list_append(v, ["aik-", "verb", "aik-", "", "", "", "to know recognize"]) + let v = native_list_append(v, ["klyaus-", "verb", "present", "txb-conj-table", "klyauṣäṃ", "", "to hear listen"]) + let v = native_list_append(v, ["kauk-", "verb", "kauk-", "", "", "", "to call out"]) + let v = native_list_append(v, ["nes-", "verb", "nesau", "takāwa", "tatākau", "", "to be exist"]) + let v = native_list_append(v, ["lät-", "verb", "lät-", "", "", "", "to go out"]) + let v = native_list_append(v, ["näk-", "verb", "näk-", "", "", "", "To destroy."]) + let v = native_list_append(v, ["ārsk-", "verb", "ārsk-", "", "", "", "to abandon renounce"]) + let v = native_list_append(v, ["walāk-", "verb", "walāk-", "", "", "", "to abide dwell"]) + let v = native_list_append(v, ["nuk-", "verb", "nuk-", "", "", "", "to swallow"]) + let v = native_list_append(v, ["yok-", "verb", "yok-", "", "", "", "to drink"]) + let v = native_list_append(v, ["yät-", "verb", "yät-", "", "", "", "to decorate adorn"]) + let v = native_list_append(v, ["yäp-", "verb", "yäp-", "", "", "", "to enter go"]) + let v = native_list_append(v, ["yäm-", "verb", "yäm-", "", "", "", "to achieve obtain"]) + let v = native_list_append(v, ["yäks-", "verb", "yäks-", "", "", "", "to embrace hug"]) + let v = native_list_append(v, ["yärp-", "verb", "yärp-", "", "", "", "to tend take"]) + let v = native_list_append(v, ["kälyp-", "verb", "kälyp-", "", "", "", "to steal"]) + let v = native_list_append(v, ["ṣäṃs-", "verb", "ṣäṃs-", "", "", "", "to count"]) + let v = native_list_append(v, ["smi-", "verb", "smi-", "", "", "", "to smile"]) + let v = native_list_append(v, ["sränk-", "verb", "sränk-", "", "", "", "to boil"]) + let v = native_list_append(v, ["sruk-", "verb", "sruk-", "", "", "", "to die"]) + let v = native_list_append(v, ["tsuk-", "verb", "tsuk-", "", "", "", "to suck"]) + let v = native_list_append(v, ["tsip-", "verb", "tsip-", "", "", "", "to dance"]) + let v = native_list_append(v, ["tsu-", "verb", "tsu-", "", "", "", "to adhere cling"]) + let v = native_list_append(v, ["tsäm-", "verb", "tsäm-", "", "", "", "to grow intransitive"]) + let v = native_list_append(v, ["tsänk-", "verb", "tsänk-", "", "", "", "to arise stand"]) + let v = native_list_append(v, ["cämp-", "verb", "cämp-", "", "", "", "to be able"]) + let v = native_list_append(v, ["ñäsk-", "verb", "ñäsk-", "", "", "", "to demand require"]) + let v = native_list_append(v, ["täk-", "verb", "täk-", "", "", "", "to touch feel"]) + let v = native_list_append(v, ["tärk-", "verb", "tärk-", "", "", "", "to let allow"]) + let v = native_list_append(v, ["tresk-", "verb", "tresk-", "", "", "", "to chew"]) + let v = native_list_append(v, ["tränk-", "verb", "tränk-", "", "", "", "to lament bewail"]) + let v = native_list_append(v, ["nāk-", "verb", "nāk-", "", "", "", "to condemn reproach"]) + let v = native_list_append(v, ["nāsk-", "verb", "nāsk-", "", "", "", "to swim"]) + let v = native_list_append(v, ["pāsk-", "verb", "pāsk-", "", "", "", "to guard protect"]) + let v = native_list_append(v, ["ai-", "verb", "ai-", "", "", "", "to give"]) + let v = native_list_append(v, ["ākl-", "verb", "ākl-", "", "", "", "to learn"]) + let v = native_list_append(v, ["kraup-", "verb", "kraup-", "", "", "", "to gather collect"]) + let v = native_list_append(v, ["adhiṣṭhit", "verb", "adhiṣṭhit", "", "", "", "to take control"]) + let v = native_list_append(v, ["anāsk-", "verb", "anāsk-", "", "", "", "to breathe inhale"]) + let v = native_list_append(v, ["rutk-", "verb", "rutk-", "", "", "", "to remove take"]) + let v = native_list_append(v, ["plänk-", "verb", "plänk-", "", "", "", "to come up"]) + let v = native_list_append(v, ["plu-", "verb", "plu-", "", "", "", "to fly soar"]) + let v = native_list_append(v, ["paut-", "verb", "paut-", "", "", "", "to honor"]) + let v = native_list_append(v, ["pyutk-", "verb", "pyutk-", "", "", "", "to create bring"]) + let v = native_list_append(v, ["pränk-", "verb", "pränk-", "", "", "", "to stay away"]) + let v = native_list_append(v, ["plānt-", "verb", "plānt-", "", "", "", "to rejoice be"]) + let v = native_list_append(v, ["yaukk-", "verb", "yaukk-", "", "", "", "to use employ"]) + let v = native_list_append(v, ["pärsk-", "verb", "pärsk-", "", "", "", "to fear be"]) + let v = native_list_append(v, ["pärs-", "verb", "pärs-", "", "", "", "to sprinkle"]) + let v = native_list_append(v, ["pälw-", "verb", "pälw-", "", "", "", "to complain bewail"]) + let v = native_list_append(v, ["pälsk-", "verb", "pälsk-", "", "", "", "to think about"]) + let v = native_list_append(v, ["pik-", "verb", "pik-", "", "", "", "to write"]) + let v = native_list_append(v, ["kuk-", "verb", "kuk-", "", "", "", "to call out"]) + let v = native_list_append(v, ["kurp-", "verb", "kurp-", "", "", "", "to be concerned"]) + let v = native_list_append(v, ["kulyp-", "verb", "kwälyp-", "", "", "", "to desire want"]) + let v = native_list_append(v, ["kaut-", "verb", "kaut-", "", "", "", "to split chop"]) + let v = native_list_append(v, ["yāsk-", "verb", "yāsk-", "", "", "", "to beg"]) + let v = native_list_append(v, ["yānk-", "verb", "yānk-", "", "", "", "to be deluded"]) + let v = native_list_append(v, ["yāt-", "verb", "yāt-", "", "", "", "to be able"]) + let v = native_list_append(v, ["yām-", "verb", "yām-", "", "", "", "to do make"]) + let v = native_list_append(v, ["yäk-", "verb", "yäk-", "", "", "", "to neglect be"]) + let v = native_list_append(v, ["yärtt-", "verb", "yärtt-", "", "", "", "to drag pull"]) + let v = native_list_append(v, ["pāss-", "verb", "pāss-", "", "", "", "to rip off"]) + let v = native_list_append(v, ["päkw-", "verb", "päkw-", "", "", "", "to expect anticipate"]) + let v = native_list_append(v, ["pärk-", "verb", "pärk-", "", "", "", "to ask question"]) + let v = native_list_append(v, ["putk-", "verb", "putk-", "", "", "", "to divide separate"]) + let v = native_list_append(v, ["wärs-", "verb", "wärs-", "", "", "", "to pity take"]) + let v = native_list_append(v, ["wär-sk-", "verb", "wär-sk-", "", "", "", "to smell emit"]) + let v = native_list_append(v, ["winā-sk-", "verb", "winā-sk-", "", "", "", "to honor revere"]) + let v = native_list_append(v, ["wip-", "verb", "wip-", "", "", "", "to shake"]) + let v = native_list_append(v, ["sāmp-", "verb", "sāmp-", "", "", "", "to take away"]) + let v = native_list_append(v, ["abhinai", "verb", "abhinai", "", "", "", "to represent dramatically"]) + let v = native_list_append(v, ["auk-", "verb", "auk-", "", "", "", "to grow to"]) + let v = native_list_append(v, ["si-n-", "verb", "si-n-", "", "", "", "to despair be"]) + let v = native_list_append(v, ["sälp-", "verb", "sälp-", "", "", "", "to burn be"]) + let v = native_list_append(v, ["sāk-", "verb", "sāk-", "", "", "", "to stay remain"]) + let v = native_list_append(v, ["ränk-", "verb", "ränk-", "", "", "", "to ascend rise"]) + let v = native_list_append(v, ["rāp-", "verb", "rāp-", "", "", "", "to dig turn"]) + let v = native_list_append(v, ["wätk-", "verb", "wätk-", "", "", "", "to separate distinguish"]) + let v = native_list_append(v, ["wät-", "verb", "wät-", "", "", "", "to fight"]) + let v = native_list_append(v, ["wālts-", "verb", "wālts-", "", "", "", "to crush grind"]) + let v = native_list_append(v, ["wāl-", "verb", "wāl-", "", "", "", "to cover conceal"]) + let v = native_list_append(v, ["wārw-", "verb", "wārw-", "", "", "", "to prod urge"]) + let v = native_list_append(v, ["wārp-", "verb", "wārp-", "", "", "", "to surround"]) + let v = native_list_append(v, ["wāk-", "verb", "wāk-", "", "", "", "to burst split"]) + let v = native_list_append(v, ["lāṃs-", "verb", "lāṃs-", "", "", "", "to work labor"]) + let v = native_list_append(v, ["lātk-", "verb", "lātk-", "", "", "", "to cut off"]) + let v = native_list_append(v, ["lāl-", "verb", "lāl-", "", "", "", "to exert oneself"]) + let v = native_list_append(v, ["länk-", "verb", "länk-", "", "", "", "to hang dangle"]) + let v = native_list_append(v, ["lut-", "verb", "lut-", "", "", "", "to expel drive"]) + let v = native_list_append(v, ["lyäk-", "verb", "lyäk-", "", "", "", "to lie lie"]) + let v = native_list_append(v, ["aiw-", "verb", "aiw-", "", "", "", "to be turned"]) + let v = native_list_append(v, ["kātk-", "verb", "kātk-", "", "", "", "to rejoice be"]) + let v = native_list_append(v, ["kāy-", "verb", "kāy-", "", "", "", "to open wide"]) + let v = native_list_append(v, ["kār-", "verb", "kār-", "", "", "", "to gather"]) + let v = native_list_append(v, ["kārp-", "verb", "kārp-", "", "", "", "to descend come"]) + let v = native_list_append(v, ["kät-", "verb", "kät-", "", "", "", "to strew scatter"]) + let v = native_list_append(v, ["kän-", "verb", "kän-", "", "", "", "to come to"]) + let v = native_list_append(v, ["kärk-", "verb", "kärk-", "", "", "", "to steal rob"]) + let v = native_list_append(v, ["käry-", "verb", "käry-", "", "", "", "to buy purchase"]) + let v = native_list_append(v, ["kärs-", "verb", "kärs-", "", "", "", "to know understand"]) + let v = native_list_append(v, ["kärsk-", "verb", "kärsk-", "", "", "", "to throw cast"]) + let v = native_list_append(v, ["kärst-", "verb", "kärst-", "", "", "", "to cut down"]) + let v = native_list_append(v, ["käl-", "verb", "käl-", "", "", "", "to endure bear"]) + let v = native_list_append(v, ["kälp-", "verb", "kälp-", "", "", "", "to find obtain"]) + let v = native_list_append(v, ["käs-", "verb", "käs-", "", "", "", "to extinguish quench"]) + let v = native_list_append(v, ["käsk-", "verb", "käsk-", "", "", "", "to scatter disperse"]) + let v = native_list_append(v, ["täl-", "verb", "täl-", "", "", "", "to lift raise"]) + let v = native_list_append(v, ["tälp-", "verb", "tälp-", "", "", "", "to purge drain"]) + let v = native_list_append(v, ["tuk-", "verb", "tuk-", "", "", "", "to hide oneself"]) + let v = native_list_append(v, ["triw-", "verb", "triw-", "", "", "", "to be mixed"]) + let v = native_list_append(v, ["trenk-", "verb", "trenk-", "", "", "", "to adhere cling"]) + let v = native_list_append(v, ["ārtk-", "verb", "ārtk-", "", "", "", "to make or"]) + let v = native_list_append(v, ["alāsk-", "verb", "alāsk-", "", "", "", "to be sick"]) + let v = native_list_append(v, ["wāyā-", "verb", "wāyā-", "", "", "", "to go drive"]) + let v = native_list_append(v, ["āks-", "verb", "āks-", "", "", "", "to tell announce"]) + let v = native_list_append(v, ["āmp-", "verb", "āmp-", "", "", "", "to rot fester"]) + let v = native_list_append(v, ["ār-", "verb", "ār-", "", "", "", "to cease come"]) + let v = native_list_append(v, ["ārtt-", "verb", "ārt-", "", "", "", "to praise love"]) + let v = native_list_append(v, ["ārt-", "verb", "ārt-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ālp-", "verb", "ālp-", "", "", "", "to hit glancingly"]) + let v = native_list_append(v, ["tsik-", "verb", "tsik-", "", "", "", "to fashion shape"]) + let v = native_list_append(v, ["stāl-", "verb", "stāl-", "", "", "", "to shrivel"]) + let v = native_list_append(v, ["särp-", "verb", "särp-", "", "", "", "to pulsate beat"]) + let v = native_list_append(v, ["satāsk-", "verb", "satāsk-", "", "", "", "to exhale breathe"]) + let v = native_list_append(v, ["ṣärtt-", "verb", "ṣärtt-", "", "", "", "to incite instigate"]) + let v = native_list_append(v, ["ṣärp-", "verb", "ṣärp-", "", "", "", "to explain to"]) + let v = native_list_append(v, ["ṣärk-", "verb", "ṣärk-", "", "", "", "to surpass exceed"]) + let v = native_list_append(v, ["śu-", "verb", "śu-", "", "", "", "to eat consume"]) + let v = native_list_append(v, ["śāw-", "verb", "śāw-", "", "", "", "to live be"]) + let v = native_list_append(v, ["wlāw-", "verb", "wlāw-", "", "", "", "to control"]) + let v = native_list_append(v, ["winā-ññ-", "verb", "winā-ññ-", "", "", "", "to enjoy"]) + let v = native_list_append(v, ["krämp-", "verb", "krämp-", "", "", "", "to be disturbed"]) + let v = native_list_append(v, ["klānk-", "verb", "klānk-", "", "", "", "to ride in"]) + let v = native_list_append(v, ["klāy-", "verb", "klāy-", "", "", "", "to fall"]) + let v = native_list_append(v, ["klänk-", "verb", "klänk-", "", "", "", "to doubt"]) + let v = native_list_append(v, ["klänts-", "verb", "klänts-", "", "", "", "to sleep"]) + let v = native_list_append(v, ["klin-", "verb", "klin-", "", "", "", "to be necessary"]) + let v = native_list_append(v, ["klutk-", "verb", "klutk-", "", "", "", "to turn intransitive"]) + let v = native_list_append(v, ["klup-", "verb", "klup-", "", "", "", "to squeeze"]) + let v = native_list_append(v, ["käln-", "verb", "käln-", "", "", "", "to resound"]) + let v = native_list_append(v, ["kälm-", "verb", "kälm-", "", "", "", "to permit allow"]) + let v = native_list_append(v, ["kwäs-", "verb", "kwäs-", "", "", "", "to mourn lament"]) + let v = native_list_append(v, ["cänk-", "verb", "cänk-", "", "", "", "to please"]) + let v = native_list_append(v, ["tā-", "verb", "tā-", "", "", "", "to put place"]) + let v = native_list_append(v, ["tāpp-", "verb", "tāpp-", "", "", "", "to eat"]) + let v = native_list_append(v, ["täṃts-", "verb", "täṃts-", "", "", "", "to scatter disperse"]) + let v = native_list_append(v, ["tänk-", "verb", "tänk-", "", "", "", "to stop check"]) + let v = native_list_append(v, ["täm-", "verb", "täm-", "", "", "", "to be born"]) + let v = native_list_append(v, ["trāpp-", "verb", "trāpp-", "", "", "", "to trip stumble"]) + let v = native_list_append(v, ["kwäl-", "verb", "kwäl-", "", "", "", "to fail"]) + let v = native_list_append(v, ["kwär-", "verb", "kur-", "", "", "", "to age grow"]) + let v = native_list_append(v, ["klaiks-", "verb", "klaiks-", "", "", "", "to shrivel wither"]) + let v = native_list_append(v, ["klāw-", "verb", "klāw-", "", "", "", "to be called"]) + let v = native_list_append(v, ["kānt-", "verb", "kānt-", "", "", "", "to rub polish"]) + let v = native_list_append(v, ["ās-", "verb", "ās-", "", "", "", "to dry out"]) + let v = native_list_append(v, ["mäs-", "verb", "mäs-", "", "", "", "preterite of i-"]) + let v = native_list_append(v, ["iyā-", "verb", "iyā-", "", "", "", "to go travel"]) + let v = native_list_append(v, ["eṅk-", "verb", "eṅk-", "", "", "", "to grasp seize"]) + let v = native_list_append(v, ["täṅk-", "verb", "täṅk-", "", "", "", "to check hinder"]) + let v = native_list_append(v, ["lit-", "verb", "lit-", "", "", "", "to fall away"]) + let v = native_list_append(v, ["mauk-", "verb", "mauk-", "", "", "", "to drain away"]) + let v = native_list_append(v, ["mäl-", "verb", "mäl-", "", "", "", "to crush"]) + let v = native_list_append(v, ["mänt-", "verb", "mänt-", "", "", "", "to be evil-minded"]) + let v = native_list_append(v, ["māsk-", "verb", "māsk-", "", "", "", "to be difficult"]) + let v = native_list_append(v, ["naut-", "verb", "naut-", "", "", "", "to die perish"]) + let v = native_list_append(v, ["plāk-", "verb", "plāk-", "", "", "", "to please"]) + let v = native_list_append(v, ["spāw-", "verb", "spāw-", "", "", "", "to subside diminish"]) + let v = native_list_append(v, ["tāk-", "verb", "tāk-", "", "", "", "to be"]) + let v = native_list_append(v, ["wāsk-", "verb", "wāsk-", "", "", "", "to move"]) + let v = native_list_append(v, ["kāk-", "verb", "kāk-", "", "", "", "to call out"]) + let v = native_list_append(v, ["klautk-", "verb", "klautk-", "", "", "", "to turn"]) + let v = native_list_append(v, ["añmaññ-", "verb", "añmaññ-", "", "", "", "to wish desire"]) + let v = native_list_append(v, ["ārc-", "verb", "ārc-", "", "", "", "to merit deserve"]) + let v = native_list_append(v, ["ālā-", "verb", "ālā-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yalle", "verb", "yalle", "", "", "", "accessible"]) + let v = native_list_append(v, ["pāk-", "verb", "pāk-", "", "", "", "to reveal"]) + let v = native_list_append(v, ["kätk-", "verb", "kätk-", "", "", "", "to cross traverse"]) + let v = native_list_append(v, ["śä-", "verb", "śä-", "", "", "", "to set someone/something"]) + let v = native_list_append(v, ["śänk-", "verb", "śänk-", "", "", "", "to delay hesitate"]) + let v = native_list_append(v, ["śer-", "verb", "śer-", "", "", "", "to hunt"]) + let v = native_list_append(v, ["ścänm-", "verb", "ścänm-", "", "", "", "to bind up/together"]) + let v = native_list_append(v, ["śnāsk-", "verb", "śnāsk-", "", "", "", "to release"]) + let v = native_list_append(v, ["ṣäm-", "verb", "ṣäm-", "", "", "", "to sit"]) + let v = native_list_append(v, ["perk-", "verb", "perk-", "", "", "", "to peer peep"]) + let v = native_list_append(v, ["sai-n-", "verb", "sai-n-", "", "", "", "to support oneself"]) + let v = native_list_append(v, ["soy-", "verb", "soy-", "", "", "", "to satisfy oneself"]) + let v = native_list_append(v, ["skāw-", "verb", "skāw-", "", "", "", "to kiss"]) + let v = native_list_append(v, ["skär-", "verb", "skär-", "", "", "", "to speak hostilely"]) + let v = native_list_append(v, ["skai-", "verb", "skai-", "", "", "", "to strive attempt"]) + let v = native_list_append(v, ["sanāp-", "verb", "sanāp-", "", "", "", "to anoint rub"]) + let v = native_list_append(v, ["sāry-", "verb", "sāry-", "", "", "", "to plant"]) + let v = native_list_append(v, ["sätk-", "verb", "sätk-", "", "", "", "to spread out"]) + let v = native_list_append(v, ["säl-", "verb", "säl-", "", "", "", "to throw down"]) + let v = native_list_append(v, ["rām-", "verb", "rām-", "", "", "", "to compare"]) + let v = native_list_append(v, ["rätk-", "verb", "rätk-", "", "", "", "to heal"]) + let v = native_list_append(v, ["räm-", "verb", "räm-", "", "", "", "to bend bow"]) + let v = native_list_append(v, ["räsk-", "verb", "räsk-", "", "", "", "to increase"]) + let v = native_list_append(v, ["räss-", "verb", "räss-", "", "", "", "to tear off"]) + let v = native_list_append(v, ["räs-", "verb", "räs-", "", "", "", "to criticize"]) + let v = native_list_append(v, ["rit-", "verb", "rit-", "", "", "", "to direct"]) + let v = native_list_append(v, ["ri-n-", "verb", "ri-n-", "", "", "", "to renounce give"]) + let v = native_list_append(v, ["ritt-", "verb", "ritt-", "", "", "", "to be attached"]) + let v = native_list_append(v, ["resk-", "verb", "resk-", "", "", "", "to flow together"]) + let v = native_list_append(v, ["lik-", "verb", "lik-", "", "", "", "to wash oneself"]) + let v = native_list_append(v, ["tsārw-", "verb", "tsārw-", "", "", "", "to take heart"]) + let v = native_list_append(v, ["tsālt-", "verb", "tsālt-", "", "", "", "to chew"]) + let v = native_list_append(v, ["tsär-", "verb", "tsär-", "", "", "", "to be separated"]) + let v = native_list_append(v, ["tsärk-", "verb", "tsärk-", "", "", "", "to burn heat"]) + let v = native_list_append(v, ["tsälp-", "verb", "tsälp-", "", "", "", "to be free"]) + let v = native_list_append(v, ["tsereññ-", "verb", "tsereññ-", "", "", "", "to trick deceive"]) + let v = native_list_append(v, ["tsop-", "verb", "tsop-", "", "", "", "to strike jab"]) + let v = native_list_append(v, ["tskäññ-", "verb", "tskäññ-", "", "", "", "to mark characterize"]) + let v = native_list_append(v, ["prām-", "verb", "prām-", "", "", "", "to restrain hold"]) + let v = native_list_append(v, ["pränts-", "verb", "pränts-", "", "", "", "to spatter"]) + let v = native_list_append(v, ["pruk-", "verb", "pruk-", "", "", "", "to make a"]) + let v = native_list_append(v, ["plätk-", "verb", "plätk-", "", "", "", "to arise develop"]) + let v = native_list_append(v, ["mäk-", "verb", "mäk-", "", "", "", "to run"]) + let v = native_list_append(v, ["mänk-", "verb", "mänk-", "", "", "", "to be deprived"]) + let v = native_list_append(v, ["mänts-", "verb", "mänts-", "", "", "", "to be sorrowful"]) + let v = native_list_append(v, ["märtk-", "verb", "märtk-", "", "", "", "to shave"]) + let v = native_list_append(v, ["märs-", "verb", "märs-", "", "", "", "to forget"]) + let v = native_list_append(v, ["mätsts-", "verb", "mätsts-", "", "", "", "to starve"]) + let v = native_list_append(v, ["mik-", "verb", "mik-", "", "", "", "to close the"]) + let v = native_list_append(v, ["miw-", "verb", "miw-", "", "", "", "to shake quake"]) + let v = native_list_append(v, ["mutk-", "verb", "mutk-", "", "", "", "to strengthen"]) + let v = native_list_append(v, ["musk-", "verb", "musk-", "", "", "", "to disappear vanish"]) + let v = native_list_append(v, ["mus-", "verb", "mus-", "", "", "", "to lift move"]) + let v = native_list_append(v, ["mely-", "verb", "mely-", "", "", "", "to crush squeeze"]) + let v = native_list_append(v, ["mrausk-", "verb", "mrausk-", "", "", "", "to feel an"]) + let v = native_list_append(v, ["mlut-", "verb", "mlut-", "", "", "", "to pluck"]) + let v = native_list_append(v, ["wäks-", "verb", "wäks-", "", "", "", "to wander be"]) + let v = native_list_append(v, ["wänk-", "verb", "wänk-", "", "", "", "to prepare"]) + let v = native_list_append(v, ["wär-", "verb", "wär-", "", "", "", "to practice"]) + let v = native_list_append(v, ["waiw-", "verb", "waiw-", "", "", "", "to be wet"]) + let v = native_list_append(v, ["wäl-", "verb", "wäl-", "", "", "", "to curl intransitive"]) + let v = native_list_append(v, ["wik-", "verb", "wik-", "", "", "", "to disappear"]) + let v = native_list_append(v, ["aun-", "verb", "aun-", "", "", "", "to strike"]) + let v = native_list_append(v, ["śāmp-", "verb", "śāmp-", "", "", "", "to be haughty"]) + let v = native_list_append(v, ["staukk-", "verb", "staukk-", "", "", "", "to swell bloat"]) + let v = native_list_append(v, ["snätk-", "verb", "snätk-", "", "", "", "to suffuse permeate"]) + let v = native_list_append(v, ["spārtt-", "verb", "spārtt-", "", "", "", "to turn intransitive"]) + let v = native_list_append(v, ["spänt-", "verb", "spänt-", "", "", "", "to trust"]) + let v = native_list_append(v, ["tsāp-", "verb", "tsāp-", "", "", "", "to mash crush"]) + let v = native_list_append(v, ["kalāk-", "verb", "kalāk-", "", "", "", "to follow"]) + let v = native_list_append(v, ["parāk-", "verb", "parāk-", "", "", "", "to be glad"]) + let v = native_list_append(v, ["pās-", "verb", "pās-", "", "", "", "to whisper"]) + let v = native_list_append(v, ["pätt-", "verb", "pätt-", "", "", "", "to climb clamber"]) + let v = native_list_append(v, ["pänn-", "verb", "pänn-", "", "", "", "to stretch reach"]) + let v = native_list_append(v, ["pält-", "verb", "pält-", "", "", "", "to drip"]) + let v = native_list_append(v, ["pyāk-", "verb", "pyāk-", "", "", "", "to strike downward"]) + let v = native_list_append(v, ["täp-", "verb", "täp-", "", "", "", "to proclaim announce"]) + let v = native_list_append(v, ["närs-", "verb", "närs-", "", "", "", "to urge press"]) + let v = native_list_append(v, ["nusk-", "verb", "nusk-", "", "", "", "to squeeze"]) + let v = native_list_append(v, ["mil-", "verb", "mil-", "", "", "", "to wound damage"]) + let v = native_list_append(v, ["mlutk-", "verb", "mlutk-", "", "", "", "to escape"]) + let v = native_list_append(v, ["kery-", "verb", "kery-", "", "", "", "to laugh"]) + let v = native_list_append(v, ["kärn-", "verb", "kärn-", "", "", "", "to hit strike"]) + let v = native_list_append(v, ["käly-", "verb", "käly-", "", "", "", "to stand"]) + let v = native_list_append(v, ["kälts-", "verb", "kälts-", "", "", "", "to pour"]) + let v = native_list_append(v, ["kekenu", "verb", "kekenu", "", "", "", "to be provided"]) + let v = native_list_append(v, ["kärtk-", "verb", "kärtk-", "", "", "", "to molder decay"]) + let v = native_list_append(v, ["kärr-", "verb", "kärr-", "", "", "", "to disapprove"]) + let v = native_list_append(v, ["stäm-", "verb", "stäm-", "", "", "", "to stand"]) + let v = native_list_append(v, ["kutk-", "verb", "kutk-", "", "", "", "to give substance"]) + let v = native_list_append(v, ["kur-", "verb", "kur-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kwälyp-", "verb", "kwälyp-", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kuts-", "verb", "kuts-", "", "", "", "to accuse"]) + let v = native_list_append(v, ["kāyā", "verb", "kāyā", "", "", "", "to open wide"]) + let v = native_list_append(v, ["krāk-", "verb", "krāk-", "", "", "", "to be dirty"]) + let v = native_list_append(v, ["krās-", "verb", "krās-", "", "", "", "to vex torment"]) + let v = native_list_append(v, ["krāt-", "verb", "krāt-", "", "", "", "to challenge someone/something"]) + let v = native_list_append(v, ["treṅk-", "verb", "treṅk-", "", "", "", "to adhere to"]) + let v = native_list_append(v, ["epiyac käl", "verb", "epiyac käl", "", "", "", "to remember"]) + let v = native_list_append(v, ["epiyac yām", "verb", "epiyac yām", "", "", "", "to cause someone"]) + let v = native_list_append(v, ["pälk-", "verb", "pälk-", "", "", "", "to see"]) + let v = native_list_append(v, ["śuwā-", "verb", "śuwā-", "", "", "", "to eat"]) + let v = native_list_append(v, ["yätk-", "verb", "yätk-", "", "", "", "to intend"]) + let v = native_list_append(v, ["wäm-", "verb", "wäm-", "", "", "", "disappear"]) + let v = native_list_append(v, ["plus-", "verb", "plus-", "", "", "", "to fly soar"]) + let v = native_list_append(v, ["mäsk-", "verb", "mäsk-", "", "", "", "to be become"]) + let v = native_list_append(v, ["lait-", "verb", "lait-", "", "", "", "to depart pass"]) + let v = native_list_append(v, ["lyu-", "verb", "lyu-", "", "", "", "to rub stroke"]) + let v = native_list_append(v, ["wärp-", "verb", "wärp-", "", "", "", "to enjoy"]) + let v = native_list_append(v, ["trite", "adj", "trite", "", "", "", "third"]) + let v = native_list_append(v, ["sal", "adj", "sal", "", "", "", "dirty"]) + let v = native_list_append(v, ["po", "adj", "po", "", "", "", "entire whole"]) + let v = native_list_append(v, ["col", "adj", "col", "", "", "", "wild"]) + let v = native_list_append(v, ["alek", "adj", "alek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["moko", "adj", "moko", "", "", "", "old said of"]) + let v = native_list_append(v, ["kuro", "adj", "kuro", "", "", "", "listless"]) + let v = native_list_append(v, ["keto", "adj", "keto", "", "", "", "harmed destroyed"]) + let v = native_list_append(v, ["tute", "adj", "tute", "", "", "", "yellow"]) + let v = native_list_append(v, ["ette", "adj", "ette", "", "", "", "lower indeclinable"]) + let v = native_list_append(v, ["tanki", "adj", "tanki", "", "", "", "full stuffed blocked"]) + let v = native_list_append(v, ["mappe", "adj", "mappe", "", "", "", "ripe"]) + let v = native_list_append(v, ["yok", "adj", "yok", "", "yokäññai", "", "colored"]) + let v = native_list_append(v, ["ṣe", "adj", "ṣe", "", "", "", "same"]) + let v = native_list_append(v, ["ñuwe", "adj", "ñuwe", "", "", "", "new"]) + let v = native_list_append(v, ["matre", "adj", "matre", "", "", "", "sharp"]) + let v = native_list_append(v, ["erkent", "adj", "erkent", "", "", "", "black dark"]) + let v = native_list_append(v, ["astare", "adj", "astare", "", "", "", "pure"]) + let v = native_list_append(v, ["wate", "adj", "wate", "", "", "", "second"]) + let v = native_list_append(v, ["ārkwi", "adj", "ārkwi", "", "", "", "white"]) + let v = native_list_append(v, ["māka", "adj", "māka", "", "", "", "many much"]) + let v = native_list_append(v, ["aknātsa", "adj", "aknātsa", "", "", "", "foolish stupid"]) + let v = native_list_append(v, ["ratre", "adj", "ratre", "", "", "", "red"]) + let v = native_list_append(v, ["lankᵤtse", "adj", "lankᵤtse", "", "", "", "light not heavy"]) + let v = native_list_append(v, ["saiwai", "adj", "saiwai", "", "", "", "left opposite of"]) + let v = native_list_append(v, ["aiyye", "adj", "aiyye", "", "", "", "ovine pertaining to"]) + let v = native_list_append(v, ["yolo", "adj", "yolo", "", "", "", "evil wicked bad"]) + let v = native_list_append(v, ["salamo", "adj", "salamo", "", "", "", "flying"]) + let v = native_list_append(v, ["kuśiññe", "adj", "kuśiññe", "", "", "", "Kuchean"]) + let v = native_list_append(v, ["poñc", "adj", "poñc", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["eṅkwaññe", "adj", "eṅkwaññe", "", "", "", "masculine"]) + let v = native_list_append(v, ["ṣamāññe", "adj", "ṣamāññe", "", "", "", "monkish monastic"]) + let v = native_list_append(v, ["ṣemi", "adj", "ṣemi", "", "", "", "masculine nominative plural"]) + let v = native_list_append(v, ["orotstse", "adj", "orotstse", "", "", "", "big large great"]) + let v = native_list_append(v, ["totka", "adj", "totka", "", "", "", "few small amount"]) + let v = native_list_append(v, ["allek", "adj", "allek", "", "", "", "other"]) + let v = native_list_append(v, ["śrāy", "adj", "śrāy", "", "", "", "old adult mature"]) + let v = native_list_append(v, ["pärkare", "adj", "pärkare", "", "", "", "long"]) + let v = native_list_append(v, ["aurtstsea", "adj", "aurtstsea", "", "", "", "wide"]) + let v = native_list_append(v, ["emalle", "adj", "emalle", "", "", "", "hot warm"]) + let v = native_list_append(v, ["empele", "adj", "empele", "", "", "", "terrible horrible dreadful"]) + let v = native_list_append(v, ["tärrek", "adj", "tärrek", "", "", "", "blind"]) + let v = native_list_append(v, ["ṣmare", "adj", "ṣmare", "", "", "", "smooth"]) + let v = native_list_append(v, ["ayāto", "adj", "ayāto", "", "", "", "suitable"]) + let v = native_list_append(v, ["ārwer", "adj", "ārwer", "", "", "", "ready prepared"]) + let v = native_list_append(v, ["īte", "adj", "īte", "", "", "", "full"]) + let v = native_list_append(v, ["empreṃ", "adj", "empreṃ", "", "", "", "true"]) + let v = native_list_append(v, ["aikare", "adj", "aikare", "", "", "", "empty"]) + let v = native_list_append(v, ["orkmo", "adj", "orkmo", "", "", "", "dark lacking light"]) + let v = native_list_append(v, ["krośce", "adj", "krośce", "", "", "", "cold"]) + let v = native_list_append(v, ["tseṃ", "adj", "tseṃ", "", "tseñña", "", "blue"]) + let v = native_list_append(v, ["akañce", "adj", "akañce", "", "", "", "distant far"]) + let v = native_list_append(v, ["akañcar", "adj", "akañcar", "", "", "", "distant"]) + let v = native_list_append(v, ["akākatte", "adj", "akākatte", "", "", "", "uninvited"]) + let v = native_list_append(v, ["akuśal", "adj", "akuśal", "", "", "", "inauspicious"]) + let v = native_list_append(v, ["akṛtajñe", "adj", "akṛtajñe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["akeññe", "adj", "akeññe", "", "", "", "Agnean exonymic designation"]) + let v = native_list_append(v, ["akautatte", "adj", "akautatte", "", "", "", "unsplittable"]) + let v = native_list_append(v, ["akraupatte", "adj", "akraupatte", "", "", "", "unassembled"]) + let v = native_list_append(v, ["akwatse", "adj", "akwatse", "", "", "", "sharp"]) + let v = native_list_append(v, ["akṣai", "adj", "akṣai", "", "", "", "undecaying"]) + let v = native_list_append(v, ["akṣobhe", "adj", "akṣobhe", "", "", "", "unmoved"]) + let v = native_list_append(v, ["aṅkaiṃ", "adj", "aṅkaiṃ", "", "", "", "false"]) + let v = native_list_append(v, ["aṅklautkatte", "adj", "aṅklautkatte", "", "", "", "unturning"]) + let v = native_list_append(v, ["ajvare", "adj", "ajvare", "", "", "", "without fever"]) + let v = native_list_append(v, ["akañc", "adj", "akañc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["akārpatte", "adj", "akārpatte", "", "", "", "undescended"]) + let v = native_list_append(v, ["akritātñe", "adj", "akritātñe", "", "", "", "ungrateful"]) + let v = native_list_append(v, ["añmalaṣleṣṣe", "adj", "añmalaṣleṣṣe", "", "", "", "pertaining to sympathy"]) + let v = native_list_append(v, ["añmālaṣke", "adj", "añmālaṣke", "", "", "", "pitying sympathetic"]) + let v = native_list_append(v, ["atākatte", "adj", "atākatte", "", "", "", "untrue unfounded"]) + let v = native_list_append(v, ["atit", "adj", "atit", "", "", "", "past bygone"]) + let v = native_list_append(v, ["anāyätte", "adj", "anāyätte", "", "", "", "ungiven"]) + let v = native_list_append(v, ["anās", "adj", "anās", "", "", "", "miserable"]) + let v = native_list_append(v, ["anityä", "adj", "anityä", "", "", "", "impermanent transient"]) + let v = native_list_append(v, ["anityātṣṣe", "adj", "anityātṣṣe", "", "", "", "pertaining to impermanence"]) + let v = native_list_append(v, ["anindri", "adj", "anindri", "", "", "", "lacking senses"]) + let v = native_list_append(v, ["empakwatte", "adj", "empakwatte", "", "", "", "untrustworthy unreliable"]) + let v = native_list_append(v, ["erkatte", "adj", "erkatte", "", "", "", "hostile scornful"]) + let v = native_list_append(v, ["ainake", "adj", "ainake", "", "", "", "common low-born not"]) + let v = native_list_append(v, ["aiśamo", "adj", "aiśamo", "", "", "", "wise clever intelligent"]) + let v = native_list_append(v, ["oktante", "adj", "oktante", "", "", "", "eighth"]) + let v = native_list_append(v, ["onkipṣe", "adj", "onkipṣe", "", "", "", "shameless"]) + let v = native_list_append(v, ["kartse", "adj", "kartse", "", "", "", "good"]) + let v = native_list_append(v, ["keścye", "adj", "keścye", "", "", "", "hungry"]) + let v = native_list_append(v, ["kraketstse", "adj", "kraketstse", "", "", "", "dirty filthy"]) + let v = native_list_append(v, ["ñunte", "adj", "ñunte", "", "", "", "ninth"]) + let v = native_list_append(v, ["anaiwatstse", "adj", "anaiwatstse", "", "", "", "unpleasant irksome"]) + let v = native_list_append(v, ["anautatte", "adj", "anautatte", "", "", "", "imperishable"]) + let v = native_list_append(v, ["tapre", "adj", "tapre", "", "", "", "high"]) + let v = native_list_append(v, ["tallāw", "adj", "tallāw", "", "", "", "miserable unfortunate"]) + let v = native_list_append(v, ["tparṣke", "adj", "tparṣke", "", "", "", "shallow"]) + let v = native_list_append(v, ["tränkossu", "adj", "tränkossu", "", "", "", "sinful"]) + let v = native_list_append(v, ["tronktse", "adj", "tronktse", "", "", "", "hollow"]) + let v = native_list_append(v, ["tweyetstse", "adj", "tweyetstse", "", "", "", "dusty"]) + let v = native_list_append(v, ["ūwe", "adj", "ūwe", "", "", "", "learned educated knowledgeable"]) + let v = native_list_append(v, ["laklese", "adj", "laklese", "", "", "", "painful"]) + let v = native_list_append(v, ["lalaṃṣke", "adj", "lalaṃṣke", "", "", "", "tender soft"]) + let v = native_list_append(v, ["lāre", "adj", "lāre", "", "", "", "dear beloved"]) + let v = native_list_append(v, ["preṃtsa", "adj", "preṃtsa", "", "", "", "pregnant said of"]) + let v = native_list_append(v, ["yekte", "adj", "yekte", "", "", "", "small little"]) + let v = native_list_append(v, ["yokaitse", "adj", "yokaitse", "", "", "", "thirsty"]) + let v = native_list_append(v, ["yolo-were", "adj", "yolo-were", "", "", "", "stinking bad-smelling"]) + let v = native_list_append(v, ["pärweṣṣe", "adj", "pärweṣṣe", "", "", "", "first"]) + let v = native_list_append(v, ["antartiṣ", "adj", "antartiṣ", "", "", "", "invisible"]) + let v = native_list_append(v, ["apākätte", "adj", "apākätte", "", "", "", "unrevealed"]) + let v = native_list_append(v, ["apākärtse", "adj", "apākärtse", "", "", "", "apparent obvious"]) + let v = native_list_append(v, ["apāksai", "adj", "apāksai", "", "", "", "with genitals exposed"]) + let v = native_list_append(v, ["appamatissa", "adj", "appamatissa", "", "", "", "scornful disdainful despicable"]) + let v = native_list_append(v, ["ywārtsa", "adj", "ywārtsa", "", "", "", "half"]) + let v = native_list_append(v, ["yṣuwar", "adj", "yṣuwar", "", "", "", "friendly"]) + let v = native_list_append(v, ["śarware", "adj", "śarware", "", "", "", "arrogant haughty"]) + let v = native_list_append(v, ["pākri", "adj", "pākri", "", "", "", "clear obvious"]) + let v = native_list_append(v, ["piṅkte", "adj", "piṅkte", "", "", "", "fifth"]) + let v = native_list_append(v, ["waikesse", "adj", "waikesse", "", "", "", "lying"]) + let v = native_list_append(v, ["waiptār", "adj", "waiptār", "", "", "", "separate"]) + let v = native_list_append(v, ["waimene", "adj", "waimene", "", "", "", "difficult"]) + let v = native_list_append(v, ["ṣarya", "adj", "ṣarya", "", "", "", "beloved"]) + let v = native_list_append(v, ["ṣuktante", "adj", "ṣuktante", "", "", "", "seventh"]) + let v = native_list_append(v, ["ṣekaññe", "adj", "ṣekaññe", "", "", "", "eternal everlasting"]) + let v = native_list_append(v, ["ṣemeske", "adj", "ṣemeske", "", "", "", "only single sole"]) + let v = native_list_append(v, ["ṣkaste", "adj", "ṣkaste", "", "", "", "sixth"]) + let v = native_list_append(v, ["abhinaiṣṣe", "adj", "abhinaiṣṣe", "", "", "", "having to do"]) + let v = native_list_append(v, ["omotruññaiṣṣe", "adj", "omotruññaiṣṣe", "", "", "", "southern"]) + let v = native_list_append(v, ["sākre", "adj", "sākre", "", "", "", "happy blissful"]) + let v = native_list_append(v, ["wsetstse", "adj", "wsetstse", "", "", "", "poisonous"]) + let v = native_list_append(v, ["läkleṣṣe", "adj", "läkleṣṣe", "", "", "", "painful"]) + let v = native_list_append(v, ["anākätte", "adj", "anākätte", "", "", "", "blameless"]) + let v = native_list_append(v, ["airpätte", "adj", "airpätte", "", "", "", "unheeding disregarding"]) + let v = native_list_append(v, ["oṅkrotte", "adj", "oṅkrotte", "", "", "", "immortal lit. unaging"]) + let v = native_list_append(v, ["ontsoytte", "adj", "ontsoytte", "", "", "", "insatiable"]) + let v = native_list_append(v, ["motartstse", "adj", "motartstse", "", "", "", "green"]) + let v = native_list_append(v, ["oraṣṣe", "adj", "oraṣṣe", "", "", "", "wooden"]) + let v = native_list_append(v, ["orkamo", "adj", "orkamo", "", "", "", "dark"]) + let v = native_list_append(v, ["oṣṣaleṣṣe", "adj", "oṣṣaleṣṣe", "", "", "", "northern north"]) + let v = native_list_append(v, ["amāciññe", "adj", "amāciññe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["amāntatte", "adj", "amāntatte", "", "", "", "not evil-minded"]) + let v = native_list_append(v, ["amārraṣṣe", "adj", "amārraṣṣe", "", "", "", "immortal undying"]) + let v = native_list_append(v, ["amāllate", "adj", "amāllate", "", "", "", "not depressed not"]) + let v = native_list_append(v, ["amāskai", "adj", "amāskai", "", "", "", "difficult"]) + let v = native_list_append(v, ["amāskaitstse", "adj", "amāskaitstse", "", "", "", "difficult"]) + let v = native_list_append(v, ["amiske", "adj", "amiske", "", "", "", "bad-tempered despondent"]) + let v = native_list_append(v, ["amokäṣṣe", "adj", "amokäṣṣe", "", "", "", "pertaining to art"]) + let v = native_list_append(v, ["amaukatte", "adj", "amaukatte", "", "", "", "undrainable unceasing"]) + let v = native_list_append(v, ["ayātaitstse", "adj", "ayātaitstse", "", "", "", "untamable indomitable unsubdued"]) + let v = native_list_append(v, ["aräñcatstse", "adj", "aräñcatstse", "", "", "", "great-hearted merciful compassionate"]) + let v = native_list_append(v, ["arañcaṣṣe", "adj", "arañcaṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["arwāre", "adj", "arwāre", "", "", "", "ready specifically pertaining"]) + let v = native_list_append(v, ["arṣāklatstse", "adj", "arṣāklatstse", "", "", "", "snake-infested literally snakey"]) + let v = native_list_append(v, ["artsa", "adj", "artsa", "", "", "", "each"]) + let v = native_list_append(v, ["alanmeṃ", "adj", "alanmeṃ", "", "", "", "from somewhere someone"]) + let v = native_list_append(v, ["alālätte", "adj", "alālätte", "", "", "", "indefatigable tireless"]) + let v = native_list_append(v, ["alāṣmo", "adj", "alāṣmo", "", "", "", "sick diseased"]) + let v = native_list_append(v, ["ālase", "adj", "ālase", "", "", "", "lazy lethargic tired"]) + let v = native_list_append(v, ["alāṣñeṣṣe", "adj", "alāṣñeṣṣe", "", "", "", "pertaining to laziness"]) + let v = native_list_append(v, ["aletstse", "adj", "aletstse", "", "", "", "foreign unrelated strange"]) + let v = native_list_append(v, ["alaitatte", "adj", "alaitatte", "", "", "", "unfallen not fallen"]) + let v = native_list_append(v, ["alokälymi", "adj", "alokälymi", "", "", "", "directed in a"]) + let v = native_list_append(v, ["alyiṣṣe", "adj", "alyiṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["avaṣi", "adj", "avaṣi", "", "", "", "powerless"]) + let v = native_list_append(v, ["avasthaṣṣe", "adj", "avasthaṣṣe", "", "", "", "pertaining to state"]) + let v = native_list_append(v, ["awāskatte", "adj", "awāskatte", "", "", "", "unmoveable motionless calm"]) + let v = native_list_append(v, ["awlāwatte", "adj", "awlāwatte", "", "", "", "uncontrolled unruly ungovernable"]) + let v = native_list_append(v, ["aśāwe", "adj", "aśāwe", "", "", "", "rough coarse"]) + let v = native_list_append(v, ["aṣanīke", "adj", "aṣanīke", "", "", "", "worthy"]) + let v = native_list_append(v, ["aṣām", "adj", "aṣām", "", "", "", "worthy"]) + let v = native_list_append(v, ["mā-aṣām", "adj", "mā-aṣām", "", "", "", "unworthy"]) + let v = native_list_append(v, ["aṣiye", "adj", "aṣiye", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["asantaññe", "adj", "asantaññe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["asānṣṣe", "adj", "asānṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["asāre", "adj", "asāre", "", "", "", "dry"]) + let v = native_list_append(v, ["astre-pälsko", "adj", "astre-pälsko", "", "", "", "having a pure"]) + let v = native_list_append(v, ["astre-were", "adj", "astre-were", "", "", "", "having a pure"]) + let v = native_list_append(v, ["aspāwatte", "adj", "aspāwatte", "", "", "", "unsubsiding undiminished"]) + let v = native_list_append(v, ["aslyamaṣṣe", "adj", "aslyamaṣṣe", "", "", "", "parched dried especially"]) + let v = native_list_append(v, ["awantaññe", "adj", "awantaññe", "", "", "", "pertaining to ewes"]) + let v = native_list_append(v, ["ākteke", "adj", "ākteke", "", "", "", "wonderful astonishing"]) + let v = native_list_append(v, ["ājānai", "adj", "ājānai", "", "", "", "of noble birth"]) + let v = native_list_append(v, ["ātstse", "adj", "ātstse", "", "", "", "thick"]) + let v = native_list_append(v, ["räskare", "adj", "räskare", "", "", "", "rough"]) + let v = native_list_append(v, ["laraṣke", "adj", "laraṣke", "", "", "", "beloved dear"]) + let v = native_list_append(v, ["lakᵤtse", "adj", "lakᵤtse", "", "", "", "shining brilliant bright"]) + let v = native_list_append(v, ["maiwe", "adj", "maiwe", "", "", "", "young"]) + let v = native_list_append(v, ["ayāṣṣe", "adj", "ayāṣṣe", "", "", "", "pertaining to bone"]) + let v = native_list_append(v, ["astāṣṣe", "adj", "astāṣṣe", "", "", "", "pertaining to bones"]) + let v = native_list_append(v, ["āyorntaṣṣe", "adj", "āyorntaṣṣe", "", "", "", "pertaining to gifts"]) + let v = native_list_append(v, ["āyorṣṣe", "adj", "āyorṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["arthanmaṣṣe", "adj", "arthanmaṣṣe", "", "", "", "pertaining to meanings"]) + let v = native_list_append(v, ["āl", "adj", "āl", "", "", "", "male sheep or"]) + let v = native_list_append(v, ["ālambaṃtstse", "adj", "ālambaṃtstse", "", "", "", "having a base"]) + let v = native_list_append(v, ["akrtājñe", "adj", "akrtājñe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["akritaññe", "adj", "akritaññe", "", "", "", "ungrateful"]) + let v = native_list_append(v, ["skwassu", "adj", "skwassu", "", "", "", "fortunate lucky"]) + let v = native_list_append(v, ["ṣotarye", "adj", "ṣotarye", "", "", "", "distinguished remarkable"]) + let v = native_list_append(v, ["ṣeske", "adj", "ṣeske", "", "", "", "alone sole single"]) + let v = native_list_append(v, ["śāte", "adj", "śāte", "", "", "", "rich wealthy"]) + let v = native_list_append(v, ["wlaṃśke", "adj", "wlaṃśke", "", "", "", "soft pliable"]) + let v = native_list_append(v, ["wismai", "adj", "wismai", "", "", "", "astonished"]) + let v = native_list_append(v, ["kraupalñetstse", "adj", "kraupalñetstse", "", "", "", "corpulent obese"]) + let v = native_list_append(v, ["klänkarṣke", "adj", "klänkarṣke", "", "", "", "doubtful"]) + let v = native_list_append(v, ["kenätstse", "adj", "kenätstse", "", "", "", "earthly terrestrial"]) + let v = native_list_append(v, ["kauc", "adj", "kauc", "", "", "", "high"]) + let v = native_list_append(v, ["ksa", "adj", "ksa", "", "", "", "some any"]) + let v = native_list_append(v, ["ktsaitstse", "adj", "ktsaitstse", "", "", "", "old aged elderly"]) + let v = native_list_append(v, ["cämpamo", "adj", "cämpamo", "", "", "", "able capable"]) + let v = native_list_append(v, ["ñormye", "adj", "ñormye", "", "", "", "lower"]) + let v = native_list_append(v, ["āśrai", "adj", "āśrai", "", "", "", "concerning"]) + let v = native_list_append(v, ["ikante", "adj", "ikante", "", "", "", "twentieth"]) + let v = native_list_append(v, ["itomtsa", "adj", "itomtsa", "", "", "", "pregnant"]) + let v = native_list_append(v, ["indrintaṣṣe", "adj", "indrintaṣṣe", "", "", "", "pertaining to sensory"]) + let v = native_list_append(v, ["intriṣṣe", "adj", "intriṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["tekiññe", "adj", "tekiññe", "", "", "", "sick ill diseased"]) + let v = native_list_append(v, ["ipreräṣṣe", "adj", "ipreräṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["imassu", "adj", "imassu", "", "", "", "cautious careful aware"]) + let v = native_list_append(v, ["imeṣṣe", "adj", "imeṣṣe", "", "", "", "pertaining to awareness"]) + let v = native_list_append(v, ["upatāpi", "adj", "upatāpi", "", "", "", "heating burning"]) + let v = native_list_append(v, ["ustama", "adj", "ustama", "", "", "", "uppermost highest"]) + let v = native_list_append(v, ["eṃṣketstse", "adj", "eṃṣketstse", "", "", "", "lasting enduring"]) + let v = native_list_append(v, ["ekaññeṣṣe", "adj", "ekaññeṣṣe", "", "", "", "pertaining to possessions"]) + let v = native_list_append(v, ["ekaññetstse", "adj", "ekaññetstse", "", "", "", "having possessions affluent"]) + let v = native_list_append(v, ["ekaññiññentatstse", "adj", "ekaññiññentatstse", "", "", "", "having possessions"]) + let v = native_list_append(v, ["ekamätte", "adj", "ekamätte", "", "", "", "future"]) + let v = native_list_append(v, ["ekalätte", "adj", "ekalätte", "", "", "", "intolerable unbearable"]) + let v = native_list_append(v, ["ekätkātte", "adj", "ekätkātte", "", "", "", "not passing not"]) + let v = native_list_append(v, ["ekītatstse", "adj", "ekītatstse", "", "", "", "helpful"]) + let v = native_list_append(v, ["ekwalatte", "adj", "ekwalatte", "", "", "", "indefatigable tireless"]) + let v = native_list_append(v, ["ekṣinekäññe", "adj", "ekṣinekäññe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["eṅkarstatte", "adj", "eṅkarstatte", "", "", "", "uncuttable unable to"]) + let v = native_list_append(v, ["eṅkalpatte", "adj", "eṅkalpatte", "", "", "", "unachieving not having"]) + let v = native_list_append(v, ["eṅkalsu", "adj", "eṅkalsu", "", "", "", "passionate"]) + let v = native_list_append(v, ["eṅkalṣe", "adj", "eṅkalṣe", "", "", "", "pertaining to passion"]) + let v = native_list_append(v, ["eṅkaltse", "adj", "eṅkaltse", "", "", "", "passionate"]) + let v = native_list_append(v, ["eṅkältsatte", "adj", "eṅkältsatte", "", "", "", "unpoured"]) + let v = native_list_append(v, ["eṅklyauṣätte", "adj", "eṅklyauṣätte", "", "", "", "unheard of"]) + let v = native_list_append(v, ["eñatketse", "adj", "eñatketse", "", "", "", "dirty"]) + let v = native_list_append(v, ["eñcare", "adj", "eñcare", "", "", "", "disagreeable unfriendly unpleasant"]) + let v = native_list_append(v, ["eñcäñcare", "adj", "eñcäñcare", "", "", "", "heavy difficult disagreeable"]) + let v = native_list_append(v, ["eñcil", "adj", "eñcil", "", "", "", "taxable"]) + let v = native_list_append(v, ["eñcuwaññe", "adj", "eñcuwaññe", "", "", "", "pertaining to iron"]) + let v = native_list_append(v, ["etaṅkätte", "adj", "etaṅkätte", "", "", "", "unchecked unhindered"]) + let v = native_list_append(v, ["āmāskai", "adj", "āmāskai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["swāre", "adj", "swāre", "", "", "", "sweet tender"]) + let v = native_list_append(v, ["trik-", "adj", "trik-", "", "", "", "true"]) + let v = native_list_append(v, ["tāpce", "adj", "tāpce", "", "", "", "warm"]) + let v = native_list_append(v, ["akālkässu", "adj", "akālkässu", "", "", "", "having a wish"]) + let v = native_list_append(v, ["akālkäṣṣe", "adj", "akālkäṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["akāl-kätstse", "adj", "akāl-kätstse", "", "", "", "having a wish"]) + let v = native_list_append(v, ["akäñc", "adj", "akäñc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pilkoṣṣe", "adj", "pilkoṣṣe", "", "", "", "pertaining to thought"]) + let v = native_list_append(v, ["aṅkaiṃ-pilkoṣṣe", "adj", "aṅkaiṃ-pilkoṣṣe", "", "", "", "pertaining to false"]) + let v = native_list_append(v, ["acāräṣṣe", "adj", "acāräṣṣe", "", "", "", "pertaining to propriety"]) + let v = native_list_append(v, ["añmālaṣlñeṣṣe", "adj", "añmālaṣlñeṣṣe", "", "", "", "pertaining to sympathy"]) + let v = native_list_append(v, ["solme", "adj", "solme", "", "", "", "complete"]) + let v = native_list_append(v, ["klaiññe", "adj", "klaiññe", "", "", "", "female feminine"]) + let v = native_list_append(v, ["abhyantarakālp", "adj", "abhyantarakālp", "", "", "", "intermediate age middle"]) + let v = native_list_append(v, ["amarṣäṣṣe", "adj", "amarṣäṣṣe", "", "", "", "pertaining to discontent"]) + let v = native_list_append(v, ["aräñcatste", "adj", "aräñcatste", "", "", "", "great-hearted compassionate merciful"]) + let v = native_list_append(v, ["arirākäṣṣe", "adj", "arirākäṣṣe", "", "", "", "pertaining to myrobalan"]) + let v = native_list_append(v, ["aruṇāvatiṣṣe", "adj", "aruṇāvatiṣṣe", "", "", "", "pertaining to Aruṇāvati"]) + let v = native_list_append(v, ["arkwañaṣṣe", "adj", "arkwañaṣṣe", "", "", "", "pertaining to arkwaña"]) + let v = native_list_append(v, ["armokiññe", "adj", "armokiññe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["aryamarkṣe", "adj", "aryamarkṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["arhanteññe", "adj", "arhanteññe", "", "", "", "pertaining to arhat"]) + let v = native_list_append(v, ["āläṃ", "adj", "āläṃ", "", "", "", "different"]) + let v = native_list_append(v, ["ālas", "adj", "ālas", "", "", "", "alternative reconstruction of"]) + let v = native_list_append(v, ["ālaṣñeṣṣe", "adj", "ālaṣñeṣṣe", "", "", "", "pertaining to sloth"]) + let v = native_list_append(v, ["alyek", "adj", "alyek", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["alepāṃṣṣe", "adj", "alepāṃṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["alletstse", "adj", "alletstse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["śāwe", "adj", "śāwe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aśyaññe", "adj", "aśyaññe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["aśiyaññe", "adj", "aśiyaññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aścaṣṣe", "adj", "aścaṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["aśyāññe", "adj", "aśyāññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["aṣṭāṅgopet", "adj", "aṣṭāṅgopet", "", "", "", "eightfold"]) + let v = native_list_append(v, ["āktike", "adj", "āktike", "", "", "", "wonderful astonishing"]) + let v = native_list_append(v, ["wartstse", "adj", "wartstse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["iñcuwaññe", "adj", "iñcuwaññe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ippreräṣṣe", "adj", "ippreräṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["itauntsa", "adj", "itauntsa", "", "", "", "pregnant"]) + let v = native_list_append(v, ["añmālarṣke", "adj", "añmālarṣke", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["añmassu", "adj", "añmassu", "", "", "", "desirous craving wanting"]) + let v = native_list_append(v, ["añmaṣṣe", "adj", "añmaṣṣe", "", "", "", "personal"]) + let v = native_list_append(v, ["añmatstse", "adj", "añmatstse", "", "", "", "selfish"]) + let v = native_list_append(v, ["antseṣṣe", "adj", "antseṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["ārupyadhātuṣṣe", "adj", "ārupyadhātuṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["ārupyäṣṣe", "adj", "ārupyäṣṣe", "", "", "", "pertaining to formlessness"]) + let v = native_list_append(v, ["āryamārgaṣṣe", "adj", "āryamārgaṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["ālāṣmo", "adj", "ālāṣmo", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["yalñeṣṣe", "adj", "yalñeṣṣe", "", "", "", "pertaining to going"]) + let v = native_list_append(v, ["śpālmeṃ", "adj", "śpālmeṃ", "", "", "", "superior excellent"]) + let v = native_list_append(v, ["śwālyai", "adj", "śwālyai", "", "", "", "right as opposed"]) + let v = native_list_append(v, ["perāk", "adj", "perāk", "", "", "", "faithful trusting"]) + let v = native_list_append(v, ["ñyatsassu", "adj", "ñyatsassu", "", "", "", "dangerous hazardous"]) + let v = native_list_append(v, ["takarṣke", "adj", "takarṣke", "", "", "", "faithful believing"]) + let v = native_list_append(v, ["taññe", "adj", "taññe", "", "", "", "your singular thy"]) + let v = native_list_append(v, ["ñśaṣṣe", "adj", "ñśaṣṣe", "", "", "", "my pertaining to"]) + let v = native_list_append(v, ["sälpamo", "adj", "sälpamo", "", "", "", "blazing glowing"]) + let v = native_list_append(v, ["aṣāṃ", "adj", "aṣāṃ", "", "", "", "worthy"]) + let v = native_list_append(v, ["ysañiye", "adj", "ysañiye", "", "", "", "golden"]) + let v = native_list_append(v, ["rätkware", "adj", "rätkware", "", "", "", "strong severe"]) + let v = native_list_append(v, ["lykaśke", "adj", "lykaśke", "", "", "", "small little fine"]) + let v = native_list_append(v, ["slakkare", "adj", "slakkare", "", "", "", "darting quick-moving"]) + let v = native_list_append(v, ["swār-", "adj", "swār-", "", "", "", "to please"]) + let v = native_list_append(v, ["tsakātstse", "adj", "tsakātstse", "", "", "", "thorny"]) + let v = native_list_append(v, ["tsatku", "adj", "tsatku", "", "", "", "erroneous perverse"]) + let v = native_list_append(v, ["prākre", "adj", "prākre", "", "", "", "fixed firm"]) + let v = native_list_append(v, ["matarye", "adj", "matarye", "", "", "", "maternal"]) + let v = native_list_append(v, ["malyakke", "adj", "malyakke", "", "", "", "youthful puerile"]) + let v = native_list_append(v, ["māme", "adj", "māme", "", "", "", "raw uncooked"]) + let v = native_list_append(v, ["mālatstse", "adj", "mālatstse", "", "", "", "drunken intoxicated"]) + let v = native_list_append(v, ["mālle", "adj", "mālle", "", "", "", "dull ground down"]) + let v = native_list_append(v, ["misāśañ", "adj", "misāśañ", "", "", "", "meat-eating carnivorous"]) + let v = native_list_append(v, ["meñäṣṣe", "adj", "meñäṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["maimantstse", "adj", "maimantstse", "", "", "", "learned skillful"]) + let v = native_list_append(v, ["mlamo", "adj", "mlamo", "", "", "", "overflowing"]) + let v = native_list_append(v, ["waskāmo", "adj", "waskāmo", "", "", "", "moving mobile"]) + let v = native_list_append(v, ["oktatse", "adj", "oktatse", "", "", "", "eightfold having eight"]) + let v = native_list_append(v, ["onwaññe", "adj", "onwaññe", "", "", "", "immortal"]) + let v = native_list_append(v, ["snai-olyapo", "adj", "snai-olyapo", "", "", "", "incomparable"]) + let v = native_list_append(v, ["auṣämiye", "adj", "auṣämiye", "", "", "", "upper"]) + let v = native_list_append(v, ["kärtse-wawlāwau", "adj", "kärtse-wawlāwau", "", "", "", "well-behaved"]) + let v = native_list_append(v, ["kärtse-weśeññai", "adj", "kärtse-weśeññai", "", "", "", "eloquent"]) + let v = native_list_append(v, ["kätkare", "adj", "kätkare", "", "", "", "deep tall"]) + let v = native_list_append(v, ["pärsāntse", "adj", "pärsāntse", "", "", "", "resplendent"]) + let v = native_list_append(v, ["pälyca", "adj", "pälyca", "", "", "", "fleeting"]) + let v = native_list_append(v, ["eprete", "adj", "eprete", "", "", "", "resolute steadfast"]) + let v = native_list_append(v, ["empalkaitte", "adj", "empalkaitte", "", "", "", "carefree unworried unheeding"]) + let v = native_list_append(v, ["ersnāssu", "adj", "ersnāssu", "", "", "", "well-formed shapely pleasing"]) + let v = native_list_append(v, ["śāmane", "adj", "śāmane", "", "", "", "living alive live"]) + let v = native_list_append(v, ["śaiṣṣeṣṣe", "adj", "śaiṣṣeṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["śkante", "adj", "śkante", "", "", "", "tenth"]) + let v = native_list_append(v, ["ścīre", "adj", "ścīre", "", "", "", "hard"]) + let v = native_list_append(v, ["śtarte", "adj", "śtarte", "", "", "", "fourth"]) + let v = native_list_append(v, ["śtwarātse", "adj", "śtwarātse", "", "", "", "fourfold"]) + let v = native_list_append(v, ["śpālu", "adj", "śpālu", "", "", "", "superior excellent"]) + let v = native_list_append(v, ["śrāñ", "adj", "śrāñ", "", "", "", "old said of"]) + let v = native_list_append(v, ["ṣlyamo", "adj", "ṣlyamo", "", "", "", "flying capable of"]) + let v = native_list_append(v, ["sänmetstse", "adj", "sänmetstse", "", "", "", "being in a"]) + let v = native_list_append(v, ["sklokatstse", "adj", "sklokatstse", "", "", "", "doubtful"]) + let v = native_list_append(v, ["snai-tränko", "adj", "snai-tränko", "", "", "", "sinless"]) + let v = native_list_append(v, ["snai-pele", "adj", "snai-pele", "", "", "", "unlawful lawless"]) + let v = native_list_append(v, ["snai-pewaṃ", "adj", "snai-pewaṃ", "", "", "", "footless"]) + let v = native_list_append(v, ["snai-yärm", "adj", "snai-yärm", "", "", "", "numberless"]) + let v = native_list_append(v, ["snai-ypärwe", "adj", "snai-ypärwe", "", "", "", "unprecedented"]) + let v = native_list_append(v, ["snai-mäktauñe", "adj", "snai-mäktauñe", "", "", "", "incomparable"]) + let v = native_list_append(v, ["snaitstse", "adj", "snaitstse", "", "", "", "poor"]) + let v = native_list_append(v, ["späntāläññetstse", "adj", "späntāläññetstse", "", "", "", "confident"]) + let v = native_list_append(v, ["spelkkessu", "adj", "spelkkessu", "", "", "", "zealous"]) + let v = native_list_append(v, ["kärtse-were", "adj", "kärtse-were", "", "", "", "having a good"]) + let v = native_list_append(v, ["kärtse-ṣälype", "adj", "kärtse-ṣälype", "", "", "", "devout pious"]) + let v = native_list_append(v, ["kärpiye", "adj", "kärpiye", "", "", "", "raw rough"]) + let v = native_list_append(v, ["kärweñäṣṣe", "adj", "kärweñäṣṣe", "", "", "", "rocky stony"]) + let v = native_list_append(v, ["aketstse", "adj", "aketstse", "", "", "", "last final"]) + let v = native_list_append(v, ["nauṣ", "adj", "nauṣ", "", "", "", "prior former"]) + let v = native_list_append(v, ["nautse", "adj", "nautse", "", "", "", "brilliant"]) + let v = native_list_append(v, ["nraiṣṣe", "adj", "nraiṣṣe", "", "", "", "hellish infernal"]) + let v = native_list_append(v, ["pakwāre", "adj", "pakwāre", "", "", "", "evil wicked bad"]) + let v = native_list_append(v, ["patarye", "adj", "patarye", "", "", "", "paternal"]) + let v = native_list_append(v, ["pärnāññe", "adj", "pärnāññe", "", "", "", "exterior outside"]) + let v = native_list_append(v, ["paryariṣṣe", "adj", "paryariṣṣe", "", "", "", "miraculous"]) + let v = native_list_append(v, ["palskossu", "adj", "palskossu", "", "", "", "thoughtful"]) + let v = native_list_append(v, ["päp", "adj", "päp", "", "", "", "stinking foul-smelling"]) + let v = native_list_append(v, ["pärkre-klauts", "adj", "pärkre-klauts", "", "", "", "long-eared"]) + let v = native_list_append(v, ["pärkre-śaul", "adj", "pärkre-śaul", "", "", "", "long-lived"]) + let v = native_list_append(v, ["pälkamo", "adj", "pälkamo", "", "", "", "luminous"]) + let v = native_list_append(v, ["pällarṣke", "adj", "pällarṣke", "", "", "", "praiseworthy"]) + let v = native_list_append(v, ["pälyca-pälyc", "adj", "pälyca-pälyc", "", "", "", "fleeting"]) + let v = native_list_append(v, ["pilentatstse", "adj", "pilentatstse", "", "", "", "wounded"]) + let v = native_list_append(v, ["postaññe", "adj", "postaññe", "", "", "", "later latter"]) + let v = native_list_append(v, ["ñyatseṣṣe", "adj", "ñyatseṣṣe", "", "", "", "dangerous"]) + let v = native_list_append(v, ["träntātstse", "adj", "träntātstse", "", "", "", "swollen"]) + let v = native_list_append(v, ["mātre", "adj", "mātre", "", "", "", "sharp"]) + let v = native_list_append(v, ["mäntarṣke", "adj", "mäntarṣke", "", "", "", "evil"]) + let v = native_list_append(v, ["maiyyātstse", "adj", "maiyyātstse", "", "", "", "powerful"]) + let v = native_list_append(v, ["epastye", "adj", "epastye", "", "", "", "skillful adept capable"]) + let v = native_list_append(v, ["kwipässu", "adj", "kwipässu", "", "", "", "modest"]) + let v = native_list_append(v, ["klyomo", "adj", "klyomo", "", "", "", "noble"]) + let v = native_list_append(v, ["indranīlṣe", "adj", "indranīlṣe", "", "", "", "sapphire-colored"]) + let v = native_list_append(v, ["yateññe", "adj", "yateññe", "", "", "", "pertaining to travel"]) + let v = native_list_append(v, ["yśelmeṣṣe", "adj", "yśelmeṣṣe", "", "", "", "sensual"]) + let v = native_list_append(v, ["iścemaṣṣe", "adj", "iścemaṣṣe", "", "", "", "pertaining to clay"]) + let v = native_list_append(v, ["upadeśäṣṣe", "adj", "upadeśäṣṣe", "", "", "", "pertaining to instruction"]) + let v = native_list_append(v, ["upāsakäññeṣṣe", "adj", "upāsakäññeṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["upāsakñeṣṣe", "adj", "upāsakñeṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["upālṣṣe", "adj", "upālṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["uppālṣṣe", "adj", "uppālṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["uppāläṣṣe", "adj", "uppāläṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["upāläṣṣe", "adj", "upāläṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["upālätstse", "adj", "upālätstse", "", "", "", "provided with blue"]) + let v = native_list_append(v, ["utpalytse", "adj", "utpalytse", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ubhayavipariti", "adj", "ubhayavipariti", "", "", "", "neither feeling pleasure"]) + let v = native_list_append(v, ["ūrṇaṣṣe", "adj", "ūrṇaṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["r̥ddhiṣṣe", "adj", "r̥ddhiṣṣe", "", "", "", "magical"]) + let v = native_list_append(v, ["räddhiṣṣe", "adj", "räddhiṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ekaṣṣe", "adj", "ekaṣṣe", "", "", "", "optical pertaining to"]) + let v = native_list_append(v, ["eśneṣṣe", "adj", "eśneṣṣe", "", "", "", "optical pertaining to"]) + let v = native_list_append(v, ["eśaneṣṣe", "adj", "eśaneṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eśanetstse", "adj", "eśanetstse", "", "", "", "having eyes seeing"]) + let v = native_list_append(v, ["ekāsanikäññe", "adj", "ekāsanikäññe", "", "", "", "observing the custom"]) + let v = native_list_append(v, ["ekṣälyṣe", "adj", "ekṣälyṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["eṅkalñeṣṣe", "adj", "eṅkalñeṣṣe", "", "", "", "pertaining to clinging"]) + let v = native_list_append(v, ["cäñcare", "adj", "cäñcare", "", "", "", "agreeable friendly pleasant"]) + let v = native_list_append(v, ["etteṃ", "adj", "etteṃ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["etrīwaitstse", "adj", "etrīwaitstse", "", "", "", "indifferent"]) + let v = native_list_append(v, ["trīwo", "adj", "trīwo", "", "", "", "different heterogenous"]) + let v = native_list_append(v, ["etreᵤ", "adj", "etreᵤ", "", "", "", "heroic"]) + let v = native_list_append(v, ["etreᵤññe", "adj", "etreᵤññe", "", "", "", "heroic"]) + let v = native_list_append(v, ["kāśiṣṣe", "adj", "kāśiṣṣe", "", "", "", "pertaining to Kāś"]) + let v = native_list_append(v, ["kaswātstse", "adj", "kaswātstse", "", "", "", "having a skin"]) + let v = native_list_append(v, ["katsāṣṣe", "adj", "katsāṣṣe", "", "", "", "gastric pertaining to"]) + let v = native_list_append(v, ["katkalñeṣṣe", "adj", "katkalñeṣṣe", "", "", "", "pertaining to passage"]) + let v = native_list_append(v, ["kätkartstse", "adj", "kätkartstse", "", "", "", "having depth deep"]) + let v = native_list_append(v, ["knelñeṣṣe", "adj", "knelñeṣṣe", "", "", "", "pertaining to fulfillment"]) + let v = native_list_append(v, ["kekärtkorṣṣe", "adj", "kekärtkorṣṣe", "", "", "", "pertaining to dung"]) + let v = native_list_append(v, ["stamalñetstse", "adj", "stamalñetstse", "", "", "", "lasting persisting"]) + let v = native_list_append(v, ["stamalñeṣṣe", "adj", "stamalñeṣṣe", "", "", "", "pertaining to persistance"]) + let v = native_list_append(v, ["käṣṣīññe", "adj", "käṣṣīññe", "", "", "", "the quality of"]) + let v = native_list_append(v, ["käṣṣīṣṣe", "adj", "käṣṣīṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["kselläññeṣṣe", "adj", "kselläññeṣṣe", "", "", "", "pertaining to extinction"]) + let v = native_list_append(v, ["käskalläññe", "adj", "käskalläññe", "", "", "", "scattering"]) + let v = native_list_append(v, ["käñcelleṣṣe", "adj", "käñcelleṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["kinnarñe", "adj", "kinnarñe", "", "", "", "pertaining to kinnaras"]) + let v = native_list_append(v, ["kuntäṣṣe", "adj", "kuntäṣṣe", "", "", "", "pertaining to jasmine"]) + let v = native_list_append(v, ["kurkamäṣṣe", "adj", "kurkamäṣṣe", "", "", "", "pertaining to saffron"]) + let v = native_list_append(v, ["kulypelñeṣṣe", "adj", "kulypelñeṣṣe", "", "", "", "pertaining to desire"]) + let v = native_list_append(v, ["kuśal", "adj", "kuśal", "", "", "", "well happy prosperous"]) + let v = native_list_append(v, ["kuśalapākṣ", "adj", "kuśalapākṣ", "", "", "", "the side or"]) + let v = native_list_append(v, ["kuhāk", "adj", "kuhāk", "", "", "", "deceptive tricky"]) + let v = native_list_append(v, ["keñiye", "adj", "keñiye", "", "", "", "of a country"]) + let v = native_list_append(v, ["ketāṣṣe", "adj", "ketāṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["kenineṣṣe", "adj", "kenineṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["kenekäññe", "adj", "kenekäññe", "", "", "", "pertaining to cotton"]) + let v = native_list_append(v, ["kercapaññe", "adj", "kercapaññe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["kercciyeṃṣṣe", "adj", "kercciyeṃṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["kercciyeṣṣe", "adj", "kercciyeṣṣe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kottartstse", "adj", "kottartstse", "", "", "", "having a family"]) + let v = native_list_append(v, ["kottruññe", "adj", "kottruññe", "", "", "", "pertaining to family"]) + let v = native_list_append(v, ["aṅkānmitstse", "adj", "aṅkānmitstse", "", "", "", "shared"]) + let v = native_list_append(v, ["anupasaṃpanne", "adj", "anupasaṃpanne", "", "", "", "unordained"]) + let v = native_list_append(v, ["anaikätte", "adj", "anaikätte", "", "", "", "unknown"]) + let v = native_list_append(v, ["aparimāṃ", "adj", "aparimāṃ", "", "", "", "infinite limitless"]) + let v = native_list_append(v, ["kaucū-wär", "adj", "kaucū-wär", "", "", "", "upstream"]) + let v = native_list_append(v, ["krakre", "adj", "krakre", "", "", "", "quacking"]) + let v = native_list_append(v, ["krätaññe", "adj", "krätaññe", "", "", "", "active"]) + let v = native_list_append(v, ["kramartstse", "adj", "kramartstse", "", "", "", "heavy difficult"]) + let v = native_list_append(v, ["kraupeṣṣe", "adj", "kraupeṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["kroṣce", "adj", "kroṣce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["emalyaṣṣe", "adj", "emalyaṣṣe", "", "", "", "hot"]) + let v = native_list_append(v, ["lauke", "adj", "lauke", "", "", "", "far away far"]) + let v = native_list_append(v, ["enerke", "adj", "enerke", "", "", "", "hesitant"]) + let v = native_list_append(v, ["enäṣṣālñeṣṣe", "adj", "enäṣṣālñeṣṣe", "", "", "", "pertaining to teaching"]) + let v = native_list_append(v, ["etreṅkätte", "adj", "etreṅkätte", "", "", "", "not adhering to"]) + let v = native_list_append(v, ["eneṅkāññe", "adj", "eneṅkāññe", "", "", "", "internal"]) + let v = native_list_append(v, ["stāyä", "adj", "stāyä", "", "", "", "secret"]) + let v = native_list_append(v, ["entwecce", "adj", "entwecce", "", "", "", "local"]) + let v = native_list_append(v, ["emprenmaṣṣe", "adj", "emprenmaṣṣe", "", "", "", "pertaining to truths"]) + let v = native_list_append(v, ["emprentstse", "adj", "emprentstse", "", "", "", "true propitious"]) + let v = native_list_append(v, ["ersäṅk", "adj", "ersäṅk", "", "", "", "tight"]) + let v = native_list_append(v, ["ersnāṣṣe", "adj", "ersnāṣṣe", "", "", "", "pertaining to form"]) + let v = native_list_append(v, ["elykatte", "adj", "elykatte", "", "", "", "not lying down"]) + let v = native_list_append(v, ["ewetaitstse", "adj", "ewetaitstse", "", "", "", "fighting embattled"]) + let v = native_list_append(v, ["eśuwatte", "adj", "eśuwatte", "", "", "", "not having eaten"]) + let v = native_list_append(v, ["eṣerñe", "adj", "eṣerñe", "", "", "", "related as sisters"]) + let v = native_list_append(v, ["eṣpirtatte", "adj", "eṣpirtatte", "", "", "", "unturned"]) + let v = native_list_append(v, ["etsarkälletstse", "adj", "etsarkälletstse", "", "", "", "zealous"]) + let v = native_list_append(v, ["aikemanetstse", "adj", "aikemanetstse", "", "", "", "knowing"]) + let v = native_list_append(v, ["aikatte", "adj", "aikatte", "", "", "", "indestructible"]) + let v = native_list_append(v, ["aikarñeṣṣe", "adj", "aikarñeṣṣe", "", "", "", "pertaining to emptiness"]) + let v = native_list_append(v, ["aiñye", "adj", "aiñye", "", "", "", "passable traversable"]) + let v = native_list_append(v, ["aitkatte", "adj", "aitkatte", "", "", "", "unintended"]) + let v = native_list_append(v, ["aiśamñeṣṣe", "adj", "aiśamñeṣṣe", "", "", "", "pertaining to wisdom"]) + let v = native_list_append(v, ["aiśi", "adj", "aiśi", "", "", "", "knowing"]) + let v = native_list_append(v, ["aiśaumye", "adj", "aiśaumye", "", "", "", "wise"]) + let v = native_list_append(v, ["aiseṣṣe", "adj", "aiseṣṣe", "", "", "", "pertaining to a"]) + let v = native_list_append(v, ["aiskatte", "adj", "aiskatte", "", "", "", "untouched unsullied"]) + let v = native_list_append(v, ["okotstse", "adj", "okotstse", "", "", "", "having fruit fruitful"]) + let v = native_list_append(v, ["oktaṣṣe", "adj", "oktaṣṣe", "", "", "", "pertaining to the"]) + let v = native_list_append(v, ["oktäññe", "adj", "oktäññe", "", "", "", "eightfold"]) + let v = native_list_append(v, ["oktatstse", "adj", "oktatstse", "", "", "", "having eight parts"]) + let v = native_list_append(v, ["onuwaññe", "adj", "onuwaññe", "", "", "", "immortal eternal"]) + let v = native_list_append(v, ["onmiṣṣe", "adj", "onmiṣṣe", "", "", "", "pertaining to regret"]) + let v = native_list_append(v, ["onmissu", "adj", "onmissu", "", "", "", "regretful remorseful repentant"]) + let v = native_list_append(v, ["onsoytte", "adj", "onsoytte", "", "", "", "insatiable unsatisfied"]) + let v = native_list_append(v, ["ontsoytñeṣṣe", "adj", "ontsoytñeṣṣe", "", "", "", "pertaining to insatiability"]) + let v = native_list_append(v, ["omutruññaiṣṣe", "adj", "omutruññaiṣṣe", "", "", "", "southern"]) + let v = native_list_append(v, ["olyartse", "adj", "olyartse", "", "", "", "superior"]) + let v = native_list_append(v, ["oṣle", "adj", "oṣle", "", "", "", "living at ones"]) + let v = native_list_append(v, ["gaurap", "adj", "gaurap", "", "", "", "important"]) + let v = native_list_append(v, ["yärkkessu", "adj", "yärkkessu", "", "", "", "honorable"]) + let v = native_list_append(v, ["yelyitstse", "adj", "yelyitstse", "", "", "", "wormy worm-infested"]) + let v = native_list_append(v, ["yātalñetstse", "adj", "yātalñetstse", "", "", "", "capable powerful"]) + let v = native_list_append(v, ["ylāre", "adj", "ylāre", "", "", "", "flacid limp weak"]) + let v = native_list_append(v, ["ywārśkāññe", "adj", "ywārśkāññe", "", "", "", "middle average"]) + let v = native_list_append(v, ["rapaññe", "adj", "rapaññe", "", "", "", "of the last"]) + let v = native_list_append(v, ["ṣitsok", "adj", "ṣitsok", "", "", "", "millet-alcohol"]) + let v = native_list_append(v, ["ṣipāṅkiñc", "adj", "ṣipāṅkiñc", "", "", "", "abacus"]) + let v = native_list_append(v, ["yes", "pron", "yes", "", "", "", "you plural you"]) + let v = native_list_append(v, ["se", "pron", "se", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ce", "pron", "ce", "", "", "", "who what which"]) + let v = native_list_append(v, ["su", "pron", "su", "", "", "", "he she it"]) + let v = native_list_append(v, ["kot", "pron", "kot", "", "", "", "as many/much as"]) + let v = native_list_append(v, ["ente", "pron", "ente", "", "", "", "where when interrogative"]) + let v = native_list_append(v, ["wes", "pron", "wes", "", "", "", "we"]) + let v = native_list_append(v, ["ket", "pron", "ket", "", "", "", "whose to whom"]) + let v = native_list_append(v, ["ñäś", "pron", "ñäś", "", "", "", "I"]) + let v = native_list_append(v, ["ñaś", "pron", "ñaś", "", "", "", "I me"]) + let v = native_list_append(v, ["ñiś", "pron", "ñiś", "", "", "", "I"]) + let v = native_list_append(v, ["tuwe", "pron", "tuwe", "", "", "", "you singular thou"]) + let v = native_list_append(v, ["makte", "pron", "makte", "", "", "", "self oneself both"]) + let v = native_list_append(v, ["wene", "pron", "wene", "", "", "", "dual of ñäś"]) + let v = native_list_append(v, ["-me", "pron", "-me", "", "", "", "enclitic pronoun referring"]) + let v = native_list_append(v, ["kuce", "pron", "kuce", "", "", "", "who what which"]) + let v = native_list_append(v, ["kete", "pron", "kete", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kᵤse", "pron", "kᵤse", "", "", "", "who"]) + let v = native_list_append(v, ["mäkte", "pron", "mäkte", "", "", "", "how? in what"]) + let v = native_list_append(v, ["totka", "pron", "totka", "", "", "", "a few"]) + let v = native_list_append(v, ["ālyauce", "pron", "ālyauce", "", "", "", "one another each"]) + let v = native_list_append(v, ["iñcew ra tsa", "pron", "iñcew ra tsa", "", "", "", "whoever"]) + let v = native_list_append(v, ["intsu", "pron", "intsu", "", "", "", "which"]) + let v = native_list_append(v, ["ālyewce", "pron", "ālyewce", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["mäksu", "pron", "mäksu", "", "", "", "who? what? interrogative"]) + let v = native_list_append(v, ["kutameṃ", "pron", "kutameṃ", "", "", "", "when whence"]) + let v = native_list_append(v, ["kutemeṃ", "pron", "kutemeṃ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["pi", "particle", "pi", "", "", "", "really indeed used"]) + let v = native_list_append(v, ["ke", "particle", "ke", "", "", "", "intensifying particle"]) + let v = native_list_append(v, ["pest", "particle", "pest", "", "", "", "a perfectivizing particle"]) + let v = native_list_append(v, ["mai", "particle", "mai", "", "", "", "perchance"]) + let v = native_list_append(v, ["mā", "particle", "mā", "", "", "", "no not"]) + let v = native_list_append(v, ["ats", "particle", "ats", "", "", "", "indeed truly as"]) + let v = native_list_append(v, ["-k(ä)", "particle", "-k(ä)", "", "", "", "a postpositioned strengthening"]) + let v = native_list_append(v, ["at", "adv", "at", "", "", "", "away"]) + let v = native_list_append(v, ["ate", "adv", "ate", "", "", "", "away"]) + let v = native_list_append(v, ["om", "adv", "om", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["nano", "adv", "nano", "", "", "", "again once more"]) + let v = native_list_append(v, ["ñu", "adv", "ñu", "", "", "", "now"]) + let v = native_list_append(v, ["ot", "adv", "ot", "", "", "", "then both meaning"]) + let v = native_list_append(v, ["ecce", "adv", "ecce", "", "", "", "hither to here"]) + let v = native_list_append(v, ["otak", "adv", "otak", "", "", "", "then both meaning"]) + let v = native_list_append(v, ["lau", "adv", "lau", "", "", "", "away"]) + let v = native_list_append(v, ["parna", "adv", "parna", "", "", "", "outside"]) + let v = native_list_append(v, ["spe", "adv", "spe", "", "", "", "nearby"]) + let v = native_list_append(v, ["ramer", "adv", "ramer", "", "", "", "suddenly"]) + let v = native_list_append(v, ["kā", "adv", "kā", "", "", "", "why? interrogative"]) + let v = native_list_append(v, ["ette", "adv", "ette", "", "", "", "down"]) + let v = native_list_append(v, ["tanki", "adv", "tanki", "", "", "", "very extremely"]) + let v = native_list_append(v, ["tesa", "adv", "tesa", "", "", "", "therefore thus"]) + let v = native_list_append(v, ["tane", "adv", "tane", "", "", "", "here hereupon"]) + let v = native_list_append(v, ["komt", "adv", "komt", "", "", "", "daily"]) + let v = native_list_append(v, ["nekcīye", "adv", "nekcīye", "", "", "", "last night"]) + let v = native_list_append(v, ["yaka", "adv", "yaka", "", "", "", "nevertheless"]) + let v = native_list_append(v, ["mante", "adv", "mante", "", "", "", "upwards"]) + let v = native_list_append(v, ["tene", "adv", "tene", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["laukar", "adv", "laukar", "", "", "", "for a long"]) + let v = native_list_append(v, ["walke", "adv", "walke", "", "", "", "for a long"]) + let v = native_list_append(v, ["māka", "adv", "māka", "", "", "", "very much a"]) + let v = native_list_append(v, ["parwe", "adv", "parwe", "", "", "", "earlier"]) + let v = native_list_append(v, ["mapi", "adv", "mapi", "", "", "", "indeed"]) + let v = native_list_append(v, ["omp", "adv", "omp", "", "", "", "there at that"]) + let v = native_list_append(v, ["eneṅka", "adv", "eneṅka", "", "", "", "within surrounded by"]) + let v = native_list_append(v, ["wasto", "adv", "wasto", "", "", "", "again"]) + let v = native_list_append(v, ["tsamo", "adv", "tsamo", "", "", "", "very"]) + let v = native_list_append(v, ["akarte", "adv", "akarte", "", "", "", "near nearby"]) + let v = native_list_append(v, ["akek", "adv", "akek", "", "", "", "finally"]) + let v = native_list_append(v, ["akṣnai", "adv", "akṣnai", "", "", "", "diagonally transversely"]) + let v = native_list_append(v, ["atameṃ", "adv", "atameṃ", "", "", "", "away from"]) + let v = native_list_append(v, ["attsaik", "adv", "attsaik", "", "", "", "completely totally"]) + let v = native_list_append(v, ["anāṣkare", "adv", "anāṣkare", "", "", "", "in a remote"]) + let v = native_list_append(v, ["ompe", "adv", "ompe", "", "", "", "there in that"]) + let v = native_list_append(v, ["ñerwe", "adv", "ñerwe", "", "", "", "today"]) + let v = native_list_append(v, ["anaiśai", "adv", "anaiśai", "", "", "", "carefully attentively"]) + let v = native_list_append(v, ["antapi", "adv", "antapi", "", "", "", "both"]) + let v = native_list_append(v, ["ñake", "adv", "ñake", "", "", "", "now"]) + let v = native_list_append(v, ["teteka", "adv", "teteka", "", "", "", "suddenly"]) + let v = native_list_append(v, ["nemcek", "adv", "nemcek", "", "", "", "certainly surely"]) + let v = native_list_append(v, ["pärweṣṣe", "adv", "pärweṣṣe", "", "", "", "first earlier"]) + let v = native_list_append(v, ["kästwer", "adv", "kästwer", "", "", "", "at night by"]) + let v = native_list_append(v, ["apākri", "adv", "apākri", "", "", "", "clearly evidently"]) + let v = native_list_append(v, ["śatkai", "adv", "śatkai", "", "", "", "very"]) + let v = native_list_append(v, ["waiptār", "adv", "waiptār", "", "", "", "separately apart"]) + let v = native_list_append(v, ["ṣek", "adv", "ṣek", "", "", "", "always continually perpetually"]) + let v = native_list_append(v, ["ṣñikek", "adv", "ṣñikek", "", "", "", "certainly indeed"]) + let v = native_list_append(v, ["auspa", "adv", "auspa", "", "", "", "truly certainly"]) + let v = native_list_append(v, ["aultsorsa", "adv", "aultsorsa", "", "", "", "in short"]) + let v = native_list_append(v, ["oṃṣap", "adv", "oṃṣap", "", "", "", "more more than"]) + let v = native_list_append(v, ["auṣap", "adv", "auṣap", "", "", "", "more"]) + let v = native_list_append(v, ["amāskai", "adv", "amāskai", "", "", "", "difficultly with difficulty"]) + let v = native_list_append(v, ["amplākätte", "adv", "amplākätte", "", "", "", "uninvited without permission"]) + let v = native_list_append(v, ["aṣkār", "adv", "aṣkār", "", "", "", "backwards in the"]) + let v = native_list_append(v, ["aswāre", "adv", "aswāre", "", "", "", "not sweetly not"]) + let v = native_list_append(v, ["ām", "adv", "ām", "", "", "", "quietly silently"]) + let v = native_list_append(v, ["istak", "adv", "istak", "", "", "", "suddenly"]) + let v = native_list_append(v, ["ispek", "adv", "ispek", "", "", "", "nearby close by"]) + let v = native_list_append(v, ["āläm", "adv", "āläm", "", "", "", "otherwise differently"]) + let v = native_list_append(v, ["ālo", "adv", "ālo", "", "", "", "otherwise"]) + let v = native_list_append(v, ["ṣesa", "adv", "ṣesa", "", "", "", "together"]) + let v = native_list_append(v, ["kauc", "adv", "kauc", "", "", "", "above"]) + let v = native_list_append(v, ["iṅkauṃ", "adv", "iṅkauṃ", "", "", "", "by day during"]) + let v = native_list_append(v, ["olpo", "adv", "olpo", "", "", "", "more"]) + let v = native_list_append(v, ["eṃṣke", "adv", "eṃṣke", "", "", "", "even"]) + let v = native_list_append(v, ["ekalymi", "adv", "ekalymi", "", "", "", "in the power"]) + let v = native_list_append(v, ["eṅkatkre", "adv", "eṅkatkre", "", "", "", "deeply"]) + let v = native_list_append(v, ["eṅkaucar", "adv", "eṅkaucar", "", "", "", "aloud"]) + let v = native_list_append(v, ["eñwetstse", "adv", "eñwetstse", "", "", "", "anew afresh"]) + let v = native_list_append(v, ["āmāskai", "adv", "āmāskai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["solme", "adv", "solme", "", "", "", "completely altogether"]) + let v = native_list_append(v, ["āttsaik", "adv", "āttsaik", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["akartte", "adv", "akartte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ānaśai", "adv", "ānaśai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["attai", "adv", "attai", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["āte", "adv", "āte", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ātmaṃttse", "adv", "ātmaṃttse", "", "", "", "for oneself"]) + let v = native_list_append(v, ["āntpi", "adv", "āntpi", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["perma", "adv", "perma", "", "", "", "voluntarily willingly"]) + let v = native_list_append(v, ["ysomo", "adv", "ysomo", "", "", "", "altogether as one"]) + let v = native_list_append(v, ["tswaiññe", "adv", "tswaiññe", "", "", "", "just just now"]) + let v = native_list_append(v, ["mantanta", "adv", "mantanta", "", "", "", "never"]) + let v = native_list_append(v, ["maṃtstsaś", "adv", "maṃtstsaś", "", "", "", "underneath"]) + let v = native_list_append(v, ["wätkāl", "adv", "wätkāl", "", "", "", "decisively"]) + let v = native_list_append(v, ["wetke", "adv", "wetke", "", "", "", "away"]) + let v = native_list_append(v, ["ompostäṃ", "adv", "ompostäṃ", "", "", "", "afterwards"]) + let v = native_list_append(v, ["orkäntai", "adv", "orkäntai", "", "", "", "back and forth"]) + let v = native_list_append(v, ["olank", "adv", "olank", "", "", "", "enough"]) + let v = native_list_append(v, ["ololyesa", "adv", "ololyesa", "", "", "", "even more"]) + let v = native_list_append(v, ["päst", "adv", "päst", "", "", "", "away"]) + let v = native_list_append(v, ["elauke", "adv", "elauke", "", "", "", "far away far"]) + let v = native_list_append(v, ["eweta", "adv", "eweta", "", "", "", "in conflict at"]) + let v = native_list_append(v, ["eśatkai", "adv", "eśatkai", "", "", "", "very"]) + let v = native_list_append(v, ["wkä", "adv", "wkä", "", "", "", "indeed"]) + let v = native_list_append(v, ["olya", "adv", "olya", "", "", "", "more"]) + let v = native_list_append(v, ["śale", "adv", "śale", "", "", "", "likewise"]) + let v = native_list_append(v, ["śār", "adv", "śār", "", "", "", "over all over"]) + let v = native_list_append(v, ["somo-somo", "adv", "somo-somo", "", "", "", "one by one"]) + let v = native_list_append(v, ["senik", "adv", "senik", "", "", "", "under ones care"]) + let v = native_list_append(v, ["somār", "adv", "somār", "", "", "", "one each"]) + let v = native_list_append(v, ["sorromp", "adv", "sorromp", "", "", "", "down downward"]) + let v = native_list_append(v, ["spantai", "adv", "spantai", "", "", "", "trustingly"]) + let v = native_list_append(v, ["tsonkaik", "adv", "tsonkaik", "", "", "", "in the morning"]) + let v = native_list_append(v, ["etsuwai", "adv", "etsuwai", "", "", "", "towards near to"]) + let v = native_list_append(v, ["nauṣ", "adv", "nauṣ", "", "", "", "formerly"]) + let v = native_list_append(v, ["postäṃ", "adv", "postäṃ", "", "", "", "finally"]) + let v = native_list_append(v, ["ñoru-wär", "adv", "ñoru-wär", "", "", "", "downstream"]) + let v = native_list_append(v, ["temeñ", "adv", "temeñ", "", "", "", "consequently because of"]) + let v = native_list_append(v, ["tumeṃ", "adv", "tumeṃ", "", "", "", "then thereupon"]) + let v = native_list_append(v, ["tompok", "adv", "tompok", "", "", "", "now"]) + let v = native_list_append(v, ["tritesa", "adv", "tritesa", "", "", "", "for the third"]) + let v = native_list_append(v, ["näno-näno", "adv", "näno-näno", "", "", "", "again and again"]) + let v = native_list_append(v, ["tsätkwaṃ", "adv", "tsätkwaṃ", "", "", "", "mistakenly erroneously"]) + let v = native_list_append(v, ["omte", "adv", "omte", "", "", "", "there here"]) + let v = native_list_append(v, ["etteṃ", "adv", "etteṃ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["kästuwer", "adv", "kästuwer", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["komtak", "adv", "komtak", "", "", "", "today this day"]) + let v = native_list_append(v, ["aṅkānmi", "adv", "aṅkānmi", "", "", "", "equally"]) + let v = native_list_append(v, ["keᵤc", "adv", "keᵤc", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["eplyuwai", "adv", "eplyuwai", "", "", "", "swimming"]) + let v = native_list_append(v, ["plyuwai", "adv", "plyuwai", "", "", "", "floating"]) + let v = native_list_append(v, ["emparkre", "adv", "emparkre", "", "", "", "widely expansively lengthily"]) + let v = native_list_append(v, ["enestai", "adv", "enestai", "", "", "", "secretly in secret"]) + let v = native_list_append(v, ["eneṃ", "adv", "eneṃ", "", "", "", "inside within herein"]) + let v = native_list_append(v, ["enepre", "adv", "enepre", "", "", "", "before in front"]) + let v = native_list_append(v, ["enersäṅk", "adv", "enersäṅk", "", "", "", "inadvertently carelessly"]) + let v = native_list_append(v, ["epiṅkte", "adv", "epiṅkte", "", "", "", "within between among"]) + let v = native_list_append(v, ["emprukṣo", "adv", "emprukṣo", "", "", "", "directly without neglect"]) + let v = native_list_append(v, ["erkatse", "adv", "erkatse", "", "", "", "painfully"]) + let v = native_list_append(v, ["eṣe", "adv", "eṣe", "", "", "", "together with"]) + let v = native_list_append(v, ["eṣemeṃ", "adv", "eṣemeṃ", "", "", "", "all together"]) + let v = native_list_append(v, ["etsarkälle", "adv", "etsarkälle", "", "", "", "with zeal self-castigation"]) + let v = native_list_append(v, ["aiksnar", "adv", "aiksnar", "", "", "", "together all together"]) + let v = native_list_append(v, ["aittaṅka", "adv", "aittaṅka", "", "", "", "towards + dative/locative"]) + let v = native_list_append(v, ["aittäṃ", "adv", "aittäṃ", "", "", "", "forth"]) + let v = native_list_append(v, ["ṣap", "adv", "ṣap", "", "", "", "more"]) + let v = native_list_append(v, ["oṃṣmeṃ", "adv", "oṃṣmeṃ", "", "", "", "above"]) + let v = native_list_append(v, ["auṣmeṃ", "adv", "auṣmeṃ", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["omtek", "adv", "omtek", "", "", "", "there here"]) + let v = native_list_append(v, ["oltsorsa", "adv", "oltsorsa", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["olyapo", "adv", "olyapo", "", "", "", "more"]) + let v = native_list_append(v, ["olyapotstse", "adv", "olyapotstse", "", "", "", "more very"]) + let v = native_list_append(v, ["olyapo-tsek", "adv", "olyapo-tsek", "", "", "", "more very"]) + let v = native_list_append(v, ["cau kaumtak", "adv", "cau kaumtak", "", "", "", "today this very"]) + let v = native_list_append(v, ["yauṣmauṣ", "adv", "yauṣmauṣ", "", "", "", "onwards forwards"]) + let v = native_list_append(v, ["ykāk", "adv", "ykāk", "", "", "", "still even"]) + let v = native_list_append(v, ["po", "det", "po", "", "", "", "each every all"]) + let v = native_list_append(v, ["wai", "conj", "wai", "", "", "", "and"]) + let v = native_list_append(v, ["inte", "conj", "inte", "", "", "", "if"]) + let v = native_list_append(v, ["epe", "conj", "epe", "", "", "", "or"]) + let v = native_list_append(v, ["rano", "conj", "rano", "", "", "", "also too in"]) + let v = native_list_append(v, ["ramt", "conj", "ramt", "", "", "", "like as as"]) + let v = native_list_append(v, ["mäkte", "conj", "mäkte", "", "", "", "so"]) + let v = native_list_append(v, ["ṅke", "conj", "ṅke", "", "", "", "then after"]) + let v = native_list_append(v, ["mant", "conj", "mant", "", "", "", "so this"]) + let v = native_list_append(v, ["ṣpä", "conj", "ṣpä", "", "", "", "and"]) + let v = native_list_append(v, ["ṣpak", "conj", "ṣpak", "", "", "", "moreover and also"]) + let v = native_list_append(v, ["kwri", "conj", "kwri", "", "", "", "if"]) + let v = native_list_append(v, ["eṃṣke", "conj", "eṃṣke", "", "", "", "until"]) + let v = native_list_append(v, ["somotkäññe", "conj", "somotkäññe", "", "", "", "likewise similarly"]) + let v = native_list_append(v, ["entwe", "conj", "entwe", "", "", "", "then thereupon"]) + let v = native_list_append(v, ["entwek", "conj", "entwek", "", "", "", "then thereupon"]) + let v = native_list_append(v, ["entwekka", "conj", "entwekka", "", "", "", "then thereupon"]) + let v = native_list_append(v, ["ṣap", "conj", "ṣap", "", "", "", "and"]) + let v = native_list_append(v, ["olyapo", "conj", "olyapo", "", "", "", "rather than"]) + let v = native_list_append(v, ["ok", "other", "ok", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["wi", "other", "wi", "", "", "", "two"]) + let v = native_list_append(v, ["ñu", "other", "ñu", "", "", "", "nine"]) + let v = native_list_append(v, ["trai", "other", "trai", "", "", "", "three"]) + let v = native_list_append(v, ["arai", "other", "arai", "", "", "", "O vocative particle"]) + let v = native_list_append(v, ["ṣe", "other", "ṣe", "", "", "", "one"]) + let v = native_list_append(v, ["śtwer", "other", "śtwer", "", "", "", "four"]) + let v = native_list_append(v, ["piś", "other", "piś", "", "", "", "five"]) + let v = native_list_append(v, ["ṣkas", "other", "ṣkas", "", "", "", "six"]) + let v = native_list_append(v, ["ṣukt", "other", "ṣukt", "", "", "", "seven"]) + let v = native_list_append(v, ["okt", "other", "okt", "", "", "", "eight"]) + let v = native_list_append(v, ["śak", "other", "śak", "", "", "", "ten"]) + let v = native_list_append(v, ["kante", "other", "kante", "", "", "", "hundred"]) + let v = native_list_append(v, ["ikäṃ", "other", "ikäṃ", "", "", "", "twenty"]) + let v = native_list_append(v, ["yaltse", "other", "yaltse", "", "", "", "thousand"]) + let v = native_list_append(v, ["täryāka", "other", "täryāka", "", "", "", "thirty"]) + let v = native_list_append(v, ["e(n)-", "other", "e(n)-", "", "", "", "intensive prefix"]) + let v = native_list_append(v, ["ā-", "other", "ā-", "", "", "", "near away down"]) + let v = native_list_append(v, ["-ññe", "other", "-ññe", "", "", "", "Added to the"]) + let v = native_list_append(v, ["-eñci", "other", "-eñci", "", "", "", "an adjectival suffix"]) + let v = native_list_append(v, ["-tstse", "other", "-tstse", "", "", "", "forms adjectives with"]) + let v = native_list_append(v, ["-ṣṣe", "other", "-ṣṣe", "", "", "", "adjective-forming suffix roughly"]) + let v = native_list_append(v, ["ṣuktanka", "other", "ṣuktanka", "", "", "", "seventy"]) + let v = native_list_append(v, ["ṣkaska", "other", "ṣkaska", "", "", "", "sixty"]) + let v = native_list_append(v, ["taryyältse", "other", "taryyältse", "", "", "", "three thousand"]) + let v = native_list_append(v, ["oktanka", "other", "oktanka", "", "", "", "eighty"]) + let v = native_list_append(v, ["ñumka", "other", "ñumka", "", "", "", "ninety"]) + let v = native_list_append(v, ["śtwārka", "other", "śtwārka", "", "", "", "forty"]) + let v = native_list_append(v, ["ṣukt-känte", "other", "ṣukt-känte", "", "", "", "seven hundred"]) + let v = native_list_append(v, ["ṣukt-yältse", "other", "ṣukt-yältse", "", "", "", "seven thousand"]) + let v = native_list_append(v, ["ṣkas-kante", "other", "ṣkas-kante", "", "", "", "six hundred"]) + let v = native_list_append(v, ["ṣkas-yiltse", "other", "ṣkas-yiltse", "", "", "", "six thousand"]) + let v = native_list_append(v, ["ikäṃ-ṣe", "other", "ikäṃ-ṣe", "", "", "", "twenty-one"]) + let v = native_list_append(v, ["ikäṃ-wi", "other", "ikäṃ-wi", "", "", "", "twenty-two"]) + let v = native_list_append(v, ["ikäṃ-trai", "other", "ikäṃ-trai", "", "", "", "twenty-three"]) + let v = native_list_append(v, ["ikäṃ-śtwer", "other", "ikäṃ-śtwer", "", "", "", "twenty-four"]) + let v = native_list_append(v, ["ikäṃ-piś", "other", "ikäṃ-piś", "", "", "", "twenty-five"]) + let v = native_list_append(v, ["ikäṃ-ṣkas", "other", "ikäṃ-ṣkas", "", "", "", "twenty-six"]) + let v = native_list_append(v, ["ikäṃ-ṣukt", "other", "ikäṃ-ṣukt", "", "", "", "twenty-seven"]) + let v = native_list_append(v, ["ikäṃ-okt", "other", "ikäṃ-okt", "", "", "", "twenty-eight"]) + let v = native_list_append(v, ["ikäṃ-ñu", "other", "ikäṃ-ñu", "", "", "", "twenty-nine"]) + let v = native_list_append(v, ["piś-känte", "other", "piś-känte", "", "", "", "five hundred"]) + let v = native_list_append(v, ["piś-yältse", "other", "piś-yältse", "", "", "", "five thousand"]) + let v = native_list_append(v, ["piśāka", "other", "piśāka", "", "", "", "fifty"]) + let v = native_list_append(v, ["tᵤmāne", "other", "tᵤmāne", "", "", "", "ten thousand a"]) + let v = native_list_append(v, ["-wäte", "other", "-wäte", "", "", "", "added onto words"]) + let v = native_list_append(v, ["iśe", "other", "iśe", "", "", "", "o oh expression"]) + let v = native_list_append(v, ["yśe", "other", "yśe", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["-āñca", "other", "-āñca", "", "", "", "feminizing suffix"]) + let v = native_list_append(v, ["-ttau", "other", "-ttau", "", "", "", "masculine agentive suffix"]) + let v = native_list_append(v, ["-kärśa", "other", "-kärśa", "", "", "", "bat-like"]) + let v = native_list_append(v, ["-lñe", "other", "-lñe", "", "", "", "forms nouns from"]) + let v = native_list_append(v, ["eneśle", "other", "eneśle", "", "", "", "like alike with"]) + let v = native_list_append(v, ["oktamka", "other", "oktamka", "", "", "", "eighty"]) + let v = native_list_append(v, ["oktaṅka", "other", "oktaṅka", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["ṣutaṅka", "other", "ṣutaṅka", "", "", "", "seventy"]) + let v = native_list_append(v, ["ywārśka", "other", "ywārśka", "", "", "", "in the middle"]) + let v = native_list_append(v, ["ñor", "prep", "ñor", "", "", "", "under beneath below"]) + let v = native_list_append(v, ["ene", "prep", "ene", "", "", "", "in"]) + let v = native_list_append(v, ["ānte", "prep", "ānte", "", "", "", "in front of"]) + let v = native_list_append(v, ["we-", "prep", "we-", "", "", "", "in"]) + let v = native_list_append(v, ["eṃṣketstse", "prep", "eṃṣketstse", "", "", "", "unto until"]) + let v = native_list_append(v, ["eṃṣke", "prep", "eṃṣke", "", "", "", "up to and"]) + let v = native_list_append(v, ["pelkiñ", "prep", "pelkiñ", "", "", "", "for the sake"]) + let v = native_list_append(v, ["śale", "prep", "śale", "", "", "", "with"]) + let v = native_list_append(v, ["snai", "prep", "snai", "", "", "", "without"]) + let v = native_list_append(v, ["ettesa", "prep", "ettesa", "", "", "", "under"]) + let v = native_list_append(v, ["oṃṣ", "prep", "oṃṣ", "", "", "", "above"]) + return v +} + +fn vocab_txb_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_txb_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary-uga.el b/elp/src/vocabulary-uga.el new file mode 100644 index 0000000..18475f6 --- /dev/null +++ b/elp/src/vocabulary-uga.el @@ -0,0 +1,862 @@ +// vocabulary-uga.el — Ugaritic vocabulary seed +// 841 lemmas from kaikki.org Wiktionary extract, 2026-05-02 +// Source file total entries: 841 +// Entry format: [lemma, pos, form0, form1, form2, en_translation, semantic_hint] + +fn vocab_uga_seed() -> [[String]] { + let v: [[String]] = native_list_empty() + let v = native_list_append(v, ["𐎕", "other", "𐎕", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎀", "other", "𐎀", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎁", "other", "𐎁", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎂", "other", "𐎂", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎃", "other", "𐎃", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎄", "other", "𐎄", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎅", "other", "𐎅", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎆", "other", "𐎆", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎇", "other", "𐎇", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎈", "other", "𐎈", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎉", "other", "𐎉", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎊", "other", "𐎊", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎋", "other", "𐎋", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎌", "other", "𐎌", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎍", "other", "𐎍", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎎", "other", "𐎎", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎏", "other", "𐎏", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎐", "other", "𐎐", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎑", "other", "𐎑", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎒", "other", "𐎒", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎓", "other", "𐎓", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎔", "other", "𐎔", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎖", "other", "𐎖", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎗", "other", "𐎗", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎘", "other", "𐎘", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎙", "other", "𐎙", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎝", "other", "𐎝", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎛", "other", "𐎛", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎜", "other", "𐎜", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎟", "other", "𐎟", "", "", "", "The word divider"]) + let v = native_list_append(v, ["𐎚", "other", "𐎚", "", "", "", "A letter of"]) + let v = native_list_append(v, ["𐎀𐎈𐎄", "other", "𐎀𐎈𐎄", "", "", "", "one"]) + let v = native_list_append(v, ["𐎀𐎈𐎚", "other", "𐎀𐎈𐎚", "", "", "", "feminine of 𐎀𐎈𐎄"]) + let v = native_list_append(v, ["𐎓𐎌𐎚𐎊", "other", "𐎓𐎌𐎚𐎊", "", "", "", "one"]) + let v = native_list_append(v, ["𐎘𐎐", "other", "𐎘𐎐", "", "", "", "two"]) + let v = native_list_append(v, ["𐎘𐎚", "other", "𐎘𐎚", "", "", "", "feminine of 𐎘𐎐"]) + let v = native_list_append(v, ["𐎘𐎍𐎘", "other", "𐎘𐎍𐎘", "", "", "", "feminine of 𐎘𐎍𐎘𐎚"]) + let v = native_list_append(v, ["𐎘𐎍𐎘𐎚", "other", "𐎘𐎍𐎘𐎚", "", "", "", "three"]) + let v = native_list_append(v, ["𐎀𐎗𐎁𐎓", "other", "𐎀𐎗𐎁𐎓", "", "", "", "feminine of 𐎀𐎗𐎁𐎓𐎚"]) + let v = native_list_append(v, ["𐎀𐎗𐎁𐎓𐎚", "other", "𐎀𐎗𐎁𐎓𐎚", "", "", "", "four"]) + let v = native_list_append(v, ["𐎃𐎎𐎌", "other", "𐎃𐎎𐎌", "", "", "", "feminine of 𐎃𐎎𐎌𐎚"]) + let v = native_list_append(v, ["𐎃𐎎𐎌𐎚", "other", "𐎃𐎎𐎌𐎚", "", "", "", "five"]) + let v = native_list_append(v, ["𐎘𐎘", "other", "𐎘𐎘", "", "", "", "feminine of 𐎘𐎘𐎚"]) + let v = native_list_append(v, ["𐎘𐎘𐎚", "other", "𐎘𐎘𐎚", "", "", "", "six"]) + let v = native_list_append(v, ["𐎌𐎁𐎓", "other", "𐎌𐎁𐎓", "", "", "", "feminine of 𐎌𐎁𐎓𐎚"]) + let v = native_list_append(v, ["𐎌𐎁𐎓𐎚", "other", "𐎌𐎁𐎓𐎚", "", "", "", "seven"]) + let v = native_list_append(v, ["𐎘𐎎𐎐", "other", "𐎘𐎎𐎐", "", "", "", "feminine of 𐎘𐎎𐎐𐎚"]) + let v = native_list_append(v, ["𐎘𐎎𐎐𐎊", "other", "𐎘𐎎𐎐𐎊", "", "", "", "feminine of 𐎘𐎎𐎐𐎚"]) + let v = native_list_append(v, ["𐎘𐎎𐎐𐎚", "other", "𐎘𐎎𐎐𐎚", "", "", "", "eight"]) + let v = native_list_append(v, ["𐎚𐎌𐎓", "other", "𐎚𐎌𐎓", "", "", "", "feminine of 𐎚𐎌𐎓𐎚"]) + let v = native_list_append(v, ["𐎚𐎌𐎓𐎚", "other", "𐎚𐎌𐎓𐎚", "", "", "", "nine"]) + let v = native_list_append(v, ["𐎓𐎌𐎗", "other", "𐎓𐎌𐎗", "", "", "", "feminine of 𐎓𐎌𐎗𐎚"]) + let v = native_list_append(v, ["𐎓𐎌𐎗𐎚", "other", "𐎓𐎌𐎗𐎚", "", "", "", "ten"]) + let v = native_list_append(v, ["𐎓𐎌𐎗𐎎", "other", "𐎓𐎌𐎗𐎎", "", "", "", "twenty"]) + let v = native_list_append(v, ["𐎎𐎛𐎚", "other", "𐎎𐎛𐎚", "", "", "", "hundred"]) + let v = native_list_append(v, ["𐎎𐎀𐎚", "other", "𐎎𐎀𐎚", "", "", "", "plural of 𐎎𐎛𐎚"]) + let v = native_list_append(v, ["𐎀𐎍𐎔", "other", "𐎀𐎍𐎔", "", "", "", "thousand"]) + let v = native_list_append(v, ["𐎗𐎁𐎚", "other", "𐎗𐎁𐎚", "", "", "", "ten thousand"]) + let v = native_list_append(v, ["𐎎𐎋", "other", "𐎎𐎋", "", "", "", "lo"]) + let v = native_list_append(v, ["𐎀𐎈𐎍", "other", "𐎀𐎈𐎍", "", "", "", "if only!"]) + let v = native_list_append(v, ["𐎋𐎍𐎁𐎚", "noun", "𐎋𐎍𐎁𐎚", "", "", "", "dog bitch"]) + let v = native_list_append(v, ["𐎛𐎐𐎗", "noun", "𐎛𐎐𐎗", "", "", "", "dog cur exact"]) + let v = native_list_append(v, ["𐎍𐎁𐎜", "noun", "𐎍𐎁𐎜", "", "", "", "lion"]) + let v = native_list_append(v, ["𐎀𐎊𐎍", "noun", "𐎀𐎊𐎍𐎎", "", "", "", "red deer a"]) + let v = native_list_append(v, ["𐎙𐎗", "noun", "𐎙𐎗", "", "", "", "mountain"]) + let v = native_list_append(v, ["𐎋𐎁𐎋𐎁", "noun", "𐎋𐎁𐎋𐎁𐎎", "", "", "", "star"]) + let v = native_list_append(v, ["𐎂", "noun", "𐎂", "", "", "", "voice"]) + let v = native_list_append(v, ["𐎔", "noun", "𐎔", "", "", "", "mouth"]) + let v = native_list_append(v, ["𐎛𐎍", "noun", "𐎛𐎍", "", "", "", "god"]) + let v = native_list_append(v, ["𐎀𐎃𐎚", "noun", "𐎀𐎃𐎚", "", "", "", "sister"]) + let v = native_list_append(v, ["𐎀𐎁𐎐", "noun", "𐎀𐎁𐎐", "", "", "", "stone"]) + let v = native_list_append(v, ["𐎀𐎐", "noun", "𐎀𐎐", "", "", "", "pigment"]) + let v = native_list_append(v, ["𐎅𐎆𐎚", "noun", "𐎅𐎆𐎚", "", "", "", "speech"]) + let v = native_list_append(v, ["𐎎𐎊", "noun", "𐎎𐎊", "", "", "", "water"]) + let v = native_list_append(v, ["𐎎𐎐", "noun", "𐎎𐎐", "", "", "", "mina unit of"]) + let v = native_list_append(v, ["𐎎𐎍𐎋", "noun", "𐎎𐎍𐎋", "", "", "", "king"]) + let v = native_list_append(v, ["𐎈𐎊𐎚", "noun", "𐎈𐎊𐎚", "", "", "", "life"]) + let v = native_list_append(v, ["𐎘𐎍𐎘", "noun", "𐎘𐎍𐎘", "", "", "", "copper bronze"]) + let v = native_list_append(v, ["𐎓𐎌𐎗𐎚", "noun", "𐎓𐎌𐎗𐎚", "", "", "", "banquet"]) + let v = native_list_append(v, ["𐎀𐎍𐎔", "noun", "𐎀𐎍𐎔", "", "", "", "bull head of"]) + let v = native_list_append(v, ["𐎗𐎁𐎚", "noun", "𐎗𐎁𐎚", "", "", "", "great lady"]) + let v = native_list_append(v, ["𐎀𐎔", "noun", "𐎀𐎔", "", "", "", "nose nostril"]) + let v = native_list_append(v, ["𐎓𐎄", "noun", "𐎓𐎄", "", "", "", "lute"]) + let v = native_list_append(v, ["𐎀𐎁", "noun", "𐎀𐎁", "", "", "", "father"]) + let v = native_list_append(v, ["𐎜𐎎", "noun", "𐎜𐎎", "", "", "", "mother"]) + let v = native_list_append(v, ["𐎀𐎗𐎇", "noun", "𐎀𐎗𐎇", "", "", "", "cedar tree"]) + let v = native_list_append(v, ["𐎐𐎅𐎗", "noun", "𐎐𐎅𐎗", "", "", "", "river"]) + let v = native_list_append(v, ["𐎈𐎆𐎚", "noun", "𐎈𐎆𐎚", "", "", "", "country nation land"]) + let v = native_list_append(v, ["𐎀𐎗𐎕", "noun", "𐎀𐎗𐎕", "", "", "", "earth"]) + let v = native_list_append(v, ["𐎁𐎍𐎄", "noun", "𐎁𐎍𐎄", "", "", "", "homeland country district"]) + let v = native_list_append(v, ["𐎁𐎚𐎊", "noun", "𐎁𐎚𐎊", "", "", "", "house"]) + let v = native_list_append(v, ["𐎓𐎎𐎄", "noun", "𐎓𐎎𐎄", "", "", "", "pillar column"]) + let v = native_list_append(v, ["𐎁𐎚", "noun", "𐎁𐎅𐎚𐎎", "", "", "", "house"]) + let v = native_list_append(v, ["𐎓𐎊𐎐", "noun", "𐎓𐎊𐎐", "", "", "", "eye"]) + let v = native_list_append(v, ["𐎀𐎃", "noun", "𐎀𐎃", "", "", "", "brother"]) + let v = native_list_append(v, ["𐎌𐎍𐎎", "noun", "𐎌𐎍𐎎", "", "", "", "peace"]) + let v = native_list_append(v, ["𐎀𐎋𐎍", "noun", "𐎀𐎋𐎍", "", "", "", "food"]) + let v = native_list_append(v, ["𐎁𐎐", "noun", "𐎁𐎐𐎎", "", "", "", "son"]) + let v = native_list_append(v, ["𐎁𐎓𐎍", "noun", "𐎁𐎓𐎍", "", "", "", "lord"]) + let v = native_list_append(v, ["𐎌𐎎", "noun", "𐎌𐎎", "", "", "", "name"]) + let v = native_list_append(v, ["𐎊𐎗𐎃", "noun", "𐎊𐎗𐎃", "", "", "", "moon"]) + let v = native_list_append(v, ["𐎈𐎗𐎘", "noun", "𐎈𐎗𐎘", "", "", "", "ploughman"]) + let v = native_list_append(v, ["𐎗𐎛𐎌", "noun", "𐎗𐎛𐎌𐎎", "", "", "", "head"]) + let v = native_list_append(v, ["𐎗𐎛𐎌𐎎", "noun", "𐎗𐎛𐎌𐎎", "", "", "", "plural of 𐎗𐎛𐎌"]) + let v = native_list_append(v, ["𐎊𐎄", "noun", "𐎊𐎄", "", "", "", "hand"]) + let v = native_list_append(v, ["𐎄𐎎", "noun", "𐎄𐎎", "", "", "", "blood"]) + let v = native_list_append(v, ["𐎂𐎍𐎘", "noun", "𐎂𐎍𐎘", "", "", "", "snow"]) + let v = native_list_append(v, ["𐎓𐎘𐎚𐎗𐎚", "noun", "𐎓𐎘𐎚𐎗𐎚", "", "", "", "Astarte/Ashtaroth a goddess"]) + let v = native_list_append(v, ["𐎋𐎍𐎁", "noun", "𐎋𐎍𐎁", "", "", "", "dog"]) + let v = native_list_append(v, ["𐎀𐎗𐎆", "noun", "𐎀𐎗𐎆", "", "", "", "lion"]) + let v = native_list_append(v, ["𐎈𐎍𐎁", "noun", "𐎈𐎍𐎁", "", "", "", "milk"]) + let v = native_list_append(v, ["𐎌𐎔𐎌", "noun", "𐎌𐎔𐎌", "", "", "", "the sun"]) + let v = native_list_append(v, ["𐎓𐎕", "noun", "𐎓𐎕", "", "", "", "tree"]) + let v = native_list_append(v, ["𐎍𐎁", "noun", "𐎍𐎁", "", "", "", "heart"]) + let v = native_list_append(v, ["𐎍𐎌𐎐", "noun", "𐎍𐎌𐎐", "", "", "", "tongue"]) + let v = native_list_append(v, ["𐎌𐎐", "noun", "𐎌𐎐", "", "", "", "tooth"]) + let v = native_list_append(v, ["𐎋𐎔", "noun", "𐎋𐎔", "", "", "", "palm of the"]) + let v = native_list_append(v, ["𐎎𐎚", "noun", "𐎎𐎚", "", "", "", "man"]) + let v = native_list_append(v, ["𐎔𐎐", "noun", "𐎔𐎐", "", "", "", "face"]) + let v = native_list_append(v, ["𐎄𐎋𐎗", "noun", "𐎄𐎋𐎗", "", "", "", "male"]) + let v = native_list_append(v, ["𐎍𐎍", "noun", "𐎍𐎍", "", "", "", "night"]) + let v = native_list_append(v, ["𐎜𐎄𐎐", "noun", "𐎜𐎄𐎐", "", "", "", "ear"]) + let v = native_list_append(v, ["𐎊𐎎", "noun", "𐎊𐎎", "", "", "", "day"]) + let v = native_list_append(v, ["𐎐𐎌𐎗", "noun", "𐎐𐎌𐎗", "", "", "", "eagle"]) + let v = native_list_append(v, ["𐎎𐎈", "noun", "𐎎𐎈", "", "", "", "marrow"]) + let v = native_list_append(v, ["𐎁𐎗𐎋", "noun", "𐎁𐎗𐎋", "", "", "", "knee"]) + let v = native_list_append(v, ["𐎛𐎌𐎚", "noun", "𐎛𐎌𐎚", "", "", "", "fire"]) + let v = native_list_append(v, ["𐎄𐎐", "noun", "𐎄𐎐", "", "", "", "judgement justice"]) + let v = native_list_append(v, ["𐎄𐎗𐎋𐎚", "noun", "𐎄𐎗𐎋𐎚", "", "", "", "dominion"]) + let v = native_list_append(v, ["𐎋𐎚𐎁", "noun", "𐎋𐎚𐎁", "", "", "", "document"]) + let v = native_list_append(v, ["𐎗𐎈𐎎", "noun", "𐎗𐎈𐎎", "", "", "", "mercy"]) + let v = native_list_append(v, ["𐎗𐎈𐎎𐎊", "noun", "𐎗𐎈𐎎𐎊", "", "", "", "the Merciful referring"]) + let v = native_list_append(v, ["𐎎𐎐𐎚", "noun", "𐎎𐎐𐎚", "", "", "", "number"]) + let v = native_list_append(v, ["𐎈𐎋𐎎𐎚", "noun", "𐎈𐎋𐎎𐎚", "", "", "", "wisdom"]) + let v = native_list_append(v, ["𐎊𐎐𐎚", "noun", "𐎊𐎐𐎚", "", "", "", "dove"]) + let v = native_list_append(v, ["𐎊𐎐", "noun", "𐎊𐎐", "", "", "", "wine"]) + let v = native_list_append(v, ["𐎊𐎓𐎗", "noun", "𐎊𐎓𐎗", "", "", "", "forest woods woodland"]) + let v = native_list_append(v, ["𐎐𐎚𐎁", "noun", "𐎐𐎚𐎁", "", "", "", "path"]) + let v = native_list_append(v, ["𐎐𐎁𐎚", "noun", "𐎐𐎁𐎚", "", "", "", "honey"]) + let v = native_list_append(v, ["𐎐𐎄𐎗", "noun", "𐎐𐎄𐎗", "", "", "", "vow oath"]) + let v = native_list_append(v, ["𐎊𐎆", "noun", "𐎊𐎆", "", "", "", "Yam deity"]) + let v = native_list_append(v, ["𐎍𐎁𐎐𐎐", "noun", "𐎍𐎁𐎐𐎐", "", "", "", "Lebanon a country"]) + let v = native_list_append(v, ["𐎗𐎈", "noun", "𐎗𐎈", "", "", "", "wind"]) + let v = native_list_append(v, ["𐎖𐎄𐎎", "noun", "𐎖𐎄𐎎", "", "", "", "east"]) + let v = native_list_append(v, ["𐎖𐎄𐎌", "noun", "𐎖𐎄𐎌", "", "", "", "Qudshu Qetesh goddess"]) + let v = native_list_append(v, ["𐎀𐎅𐎁𐎚", "noun", "𐎀𐎅𐎁𐎚", "", "", "", "love"]) + let v = native_list_append(v, ["𐎌𐎊𐎗", "noun", "𐎌𐎊𐎗", "", "", "", "song"]) + let v = native_list_append(v, ["𐎍𐎈𐎎", "noun", "𐎍𐎈𐎎", "", "", "", "bread"]) + let v = native_list_append(v, ["𐎗𐎂𐎎", "noun", "𐎗𐎂𐎎", "", "", "", "word"]) + let v = native_list_append(v, ["𐎓𐎎𐎖", "noun", "𐎓𐎎𐎖", "", "", "", "valley"]) + let v = native_list_append(v, ["𐎐𐎈𐎌", "noun", "𐎐𐎈𐎌", "", "", "", "serpent snake"]) + let v = native_list_append(v, ["𐎊𐎒𐎄", "noun", "𐎊𐎒𐎄", "", "", "", "foundation"]) + let v = native_list_append(v, ["𐎎𐎒𐎋", "noun", "𐎎𐎒𐎋", "", "", "", "mixed drink mead"]) + let v = native_list_append(v, ["𐎍𐎅𐎎", "noun", "𐎍𐎅𐎎", "", "", "", "army"]) + let v = native_list_append(v, ["𐎍𐎎𐎚", "noun", "𐎍𐎎𐎚", "", "", "", "circlet"]) + let v = native_list_append(v, ["𐎍𐎗𐎎𐎐", "noun", "𐎍𐎗𐎎𐎐", "", "", "", "pomegranate"]) + let v = native_list_append(v, ["𐎍𐎚𐎐", "noun", "𐎍𐎚𐎐", "", "", "", "leviathan"]) + let v = native_list_append(v, ["𐎎𐎚𐎗𐎃", "noun", "𐎎𐎚𐎗𐎃", "", "", "", "betrothal feast"]) + let v = native_list_append(v, ["𐎎𐎄𐎄", "noun", "𐎎𐎄𐎄", "", "", "", "beloved"]) + let v = native_list_append(v, ["𐎎𐎄𐎍", "noun", "𐎎𐎄𐎍", "", "", "", "bucket"]) + let v = native_list_append(v, ["𐎎𐎗𐎖𐎄", "noun", "𐎎𐎗𐎖𐎄", "", "", "", "dance"]) + let v = native_list_append(v, ["𐎏𐎗𐎓", "noun", "𐎏𐎗𐎓", "", "", "", "arm"]) + let v = native_list_append(v, ["𐎈𐎑", "noun", "𐎈𐎑", "", "", "", "arrow"]) + let v = native_list_append(v, ["𐎂𐎁", "noun", "𐎂𐎁", "", "", "", "back"]) + let v = native_list_append(v, ["𐎁𐎎𐎚", "noun", "𐎁𐎎𐎚", "", "", "", "back"]) + let v = native_list_append(v, ["𐎄𐎖𐎐", "noun", "𐎄𐎖𐎐", "", "", "", "beard"]) + let v = native_list_append(v, ["𐎋𐎗𐎒", "noun", "𐎋𐎗𐎒", "", "", "", "stomach belly"]) + let v = native_list_append(v, ["𐎓𐎕𐎗", "noun", "𐎓𐎕𐎗", "", "", "", "bird"]) + let v = native_list_append(v, ["𐎓𐎑𐎎", "noun", "𐎓𐎑𐎎", "", "", "", "bone"]) + let v = native_list_append(v, ["𐎖𐎌𐎚", "noun", "𐎖𐎌𐎚", "", "", "", "bow"]) + let v = native_list_append(v, ["𐎀𐎔𐎍𐎁", "noun", "𐎀𐎔𐎍𐎁", "", "", "", "breast"]) + let v = native_list_append(v, ["𐎇𐎄", "noun", "𐎇𐎄", "", "", "", "breast"]) + let v = native_list_append(v, ["𐎘𐎄", "noun", "𐎘𐎄", "", "", "", "breast mammary gland"]) + let v = native_list_append(v, ["𐎊𐎍𐎄", "noun", "𐎊𐎍𐎄", "", "", "", "child"]) + let v = native_list_append(v, ["𐎓𐎗", "noun", "𐎓𐎗", "", "", "", "city town"]) + let v = native_list_append(v, ["𐎓𐎗𐎔𐎚", "noun", "𐎓𐎗𐎔𐎚", "", "", "", "cloud"]) + let v = native_list_append(v, ["𐎓𐎗𐎃", "noun", "𐎓𐎗𐎃", "", "", "", "cow"]) + let v = native_list_append(v, ["𐎋𐎒", "noun", "𐎋𐎒", "", "", "", "cup"]) + let v = native_list_append(v, ["𐎎𐎄𐎄𐎚", "noun", "𐎎𐎄𐎄𐎚", "", "", "", "love"]) + let v = native_list_append(v, ["𐎎𐎄𐎂𐎚", "noun", "𐎎𐎄𐎂𐎚", "", "", "", "darkness"]) + let v = native_list_append(v, ["𐎁𐎐𐎚", "noun", "𐎁𐎐𐎚", "", "", "", "plural of 𐎁𐎚"]) + let v = native_list_append(v, ["𐎄𐎍𐎚", "noun", "𐎄𐎍𐎚", "", "", "", "door"]) + let v = native_list_append(v, ["𐎓𐎔𐎗", "noun", "𐎓𐎔𐎗", "", "", "", "dust"]) + let v = native_list_append(v, ["𐎌𐎎𐎐", "noun", "𐎌𐎎𐎐", "", "", "", "fat oil"]) + let v = native_list_append(v, ["𐎌𐎄", "noun", "𐎌𐎄", "", "", "", "field"]) + let v = native_list_append(v, ["𐎔𐎓𐎐", "noun", "𐎔𐎓𐎐", "", "", "", "foot"]) + let v = native_list_append(v, ["𐎔𐎙𐎚", "noun", "𐎔𐎙𐎚", "", "", "", "girl"]) + let v = native_list_append(v, ["𐎙𐎍𐎎𐎚", "noun", "𐎙𐎍𐎎𐎚", "", "", "", "girl"]) + let v = native_list_append(v, ["𐎝𐎝𐎆", "noun", "𐎝𐎝𐎆", "", "", "", "horse"]) + let v = native_list_append(v, ["𐎋𐎄", "noun", "𐎋𐎄", "", "", "", "jar"]) + let v = native_list_append(v, ["𐎁𐎊𐎐𐎚", "noun", "𐎁𐎊𐎐𐎚", "", "", "", "understanding"]) + let v = native_list_append(v, ["𐎄𐎓𐎚", "noun", "𐎄𐎓𐎚", "", "", "", "knowledge"]) + let v = native_list_append(v, ["𐎄𐎙𐎕𐎚", "noun", "𐎄𐎙𐎕𐎚", "", "", "", "pure water"]) + let v = native_list_append(v, ["𐎗𐎓𐎌", "noun", "𐎗𐎓𐎌", "", "", "", "head"]) + let v = native_list_append(v, ["𐎐𐎃𐎍", "noun", "𐎐𐎃𐎍", "", "", "", "ravine wadi"]) + let v = native_list_append(v, ["𐎐𐎔𐎌", "noun", "𐎐𐎔𐎌", "", "", "", "throat"]) + let v = native_list_append(v, ["𐎌𐎎𐎃𐎚", "noun", "𐎌𐎎𐎃𐎚", "", "", "", "joy"]) + let v = native_list_append(v, ["𐎇𐎚", "noun", "𐎇𐎚", "", "", "", "olive"]) + let v = native_list_append(v, ["𐎇𐎁𐎍𐎐", "noun", "𐎇𐎁𐎍𐎐", "", "", "", "exalted station"]) + let v = native_list_append(v, ["𐎌𐎁𐎊", "noun", "𐎌𐎁𐎊", "", "", "", "captive"]) + let v = native_list_append(v, ["𐎌𐎔𐎚", "noun", "𐎌𐎔𐎚", "", "", "", "lip"]) + let v = native_list_append(v, ["𐎇𐎎𐎗", "noun", "𐎇𐎎𐎗", "", "", "", "antelope"]) + let v = native_list_append(v, ["𐎕𐎔𐎐", "noun", "𐎕𐎔𐎐", "", "", "", "north"]) + let v = native_list_append(v, ["𐎚𐎗𐎃", "noun", "𐎚𐎗𐎃", "", "", "", "bowl"]) + let v = native_list_append(v, ["𐎚𐎐𐎐", "noun", "𐎚𐎐𐎐", "", "", "", "dragon sea monster"]) + let v = native_list_append(v, ["𐎚𐎍", "noun", "𐎚𐎍", "", "", "", "mound"]) + let v = native_list_append(v, ["𐎚𐎎", "noun", "𐎚𐎎", "", "", "", "totality"]) + let v = native_list_append(v, ["𐎄𐎁𐎈", "noun", "𐎄𐎁𐎈", "", "", "", "sacrifice"]) + let v = native_list_append(v, ["𐎗𐎋𐎒", "noun", "𐎗𐎋𐎒", "", "", "", "belt"]) + let v = native_list_append(v, ["𐎍𐎁𐎐𐎚", "noun", "𐎍𐎁𐎐𐎚", "", "", "", "brick"]) + let v = native_list_append(v, ["𐎍𐎁𐎛𐎚", "noun", "𐎍𐎁𐎛𐎚", "", "", "", "lioness"]) + let v = native_list_append(v, ["𐎅𐎄𐎎", "noun", "𐎅𐎄𐎎", "", "", "", "footstool"]) + let v = native_list_append(v, ["𐎜𐎎𐎚", "noun", "𐎜𐎎𐎚", "", "", "", "clan"]) + let v = native_list_append(v, ["𐎀𐎍𐎐", "noun", "𐎀𐎍𐎐", "", "", "", "terebinth"]) + let v = native_list_append(v, ["𐎅𐎍𐎍", "noun", "𐎅𐎍𐎍", "", "", "", "crescent moon"]) + let v = native_list_append(v, ["𐎅𐎋𐎍", "noun", "𐎅𐎋𐎍", "", "", "", "palace"]) + let v = native_list_append(v, ["𐎓𐎊𐎍", "noun", "𐎓𐎊𐎍", "", "", "", "stag"]) + let v = native_list_append(v, ["𐎓𐎊𐎍𐎚", "noun", "𐎓𐎊𐎍𐎚", "", "", "", "doe"]) + let v = native_list_append(v, ["𐎈𐎍𐎎", "noun", "𐎈𐎍𐎎", "", "", "", "dream"]) + let v = native_list_append(v, ["𐎈𐎍𐎐", "noun", "𐎈𐎍𐎐", "", "", "", "window"]) + let v = native_list_append(v, ["𐎃𐎗𐎕", "noun", "𐎃𐎗𐎕", "", "", "", "gold"]) + let v = native_list_append(v, ["𐎃𐎚", "noun", "𐎃𐎚", "", "", "", "stick"]) + let v = native_list_append(v, ["𐎃𐎐𐎇𐎗", "noun", "𐎃𐎐𐎇𐎗", "", "", "", "boar"]) + let v = native_list_append(v, ["𐎈𐎁𐎗", "noun", "𐎈𐎁𐎗", "", "", "", "friend companion"]) + let v = native_list_append(v, ["𐎈𐎗𐎌", "noun", "𐎈𐎗𐎌", "", "", "", "childbirth"]) + let v = native_list_append(v, ["𐎜𐎂𐎗𐎚", "noun", "𐎜𐎂𐎗𐎚", "", "", "", "Ugarit"]) + let v = native_list_append(v, ["𐎍𐎃𐎌𐎚", "noun", "𐎍𐎃𐎌𐎚", "", "", "", "whisper"]) + let v = native_list_append(v, ["𐎎𐎇𐎐𐎎", "noun", "𐎎𐎇𐎐𐎎", "", "", "", "scales balance"]) + let v = native_list_append(v, ["𐎎𐎃", "noun", "𐎎𐎃", "", "", "", "brain"]) + let v = native_list_append(v, ["𐎎𐎂𐎄𐎍", "noun", "𐎎𐎂𐎄𐎍", "", "", "", "tower"]) + let v = native_list_append(v, ["𐎎𐎄𐎐𐎚", "noun", "𐎎𐎄𐎐𐎚", "", "", "", "town"]) + let v = native_list_append(v, ["𐎎𐎋𐎐𐎚", "noun", "𐎎𐎋𐎐𐎚", "", "", "", "place site location"]) + let v = native_list_append(v, ["𐎃𐎋𐎗", "noun", "𐎃𐎋𐎗", "", "", "", "ornament"]) + let v = native_list_append(v, ["𐎎𐎅𐎎𐎗𐎚", "noun", "𐎎𐎅𐎎𐎗𐎚", "", "", "", "gullet"]) + let v = native_list_append(v, ["𐎓𐎗𐎓𐎗", "noun", "𐎓𐎗𐎓𐎗", "", "", "", "tamarisk"]) + let v = native_list_append(v, ["𐎔𐎛𐎄", "noun", "𐎔𐎛𐎄", "", "", "", "compassion"]) + let v = native_list_append(v, ["𐎎𐎍𐎋𐎚", "noun", "𐎎𐎍𐎋𐎚", "", "", "", "queen"]) + let v = native_list_append(v, ["𐎔𐎈𐎍", "noun", "𐎔𐎈𐎍", "", "", "", "donkey"]) + let v = native_list_append(v, ["𐎔𐎃𐎗", "noun", "𐎔𐎃𐎗", "", "", "", "assembly council"]) + let v = native_list_append(v, ["𐎔𐎈𐎎", "noun", "𐎔𐎈𐎎", "", "", "", "ember"]) + let v = native_list_append(v, ["𐎔𐎚𐎈", "noun", "𐎔𐎚𐎈", "", "", "", "door entrance"]) + let v = native_list_append(v, ["𐎕𐎎𐎖𐎎", "noun", "𐎕𐎎𐎖𐎎", "", "", "", "raisin cake"]) + let v = native_list_append(v, ["𐎖𐎍", "noun", "𐎖𐎍", "", "", "", "voice"]) + let v = native_list_append(v, ["𐎖𐎄𐎖𐎄", "noun", "𐎖𐎄𐎖𐎄", "", "", "", "pate"]) + let v = native_list_append(v, ["𐎖𐎁𐎗", "noun", "𐎖𐎁𐎗", "", "", "", "grave"]) + let v = native_list_append(v, ["𐎕𐎍𐎚", "noun", "𐎕𐎍𐎚", "", "", "", "prayer"]) + let v = native_list_append(v, ["𐎖𐎕𐎗", "noun", "𐎖𐎕𐎗", "", "", "", "smoke"]) + let v = native_list_append(v, ["𐎖𐎐𐎊𐎚", "noun", "𐎖𐎐𐎊𐎚", "", "", "", "creatrix"]) + let v = native_list_append(v, ["𐎛𐎍𐎎", "noun", "𐎛𐎍𐎎", "", "", "", "gods plural of"]) + let v = native_list_append(v, ["𐎖𐎗𐎐", "noun", "𐎖𐎗𐎐", "", "", "", "horn"]) + let v = native_list_append(v, ["𐎌𐎔𐎌𐎎", "noun", "𐎌𐎔𐎌𐎎", "", "", "", "sunrise"]) + let v = native_list_append(v, ["𐎘𐎖𐎍", "noun", "𐎘𐎖𐎍", "", "", "", "shekel unit of"]) + let v = native_list_append(v, ["𐎘𐎔𐎉", "noun", "𐎘𐎔𐎉", "", "", "", "judge"]) + let v = native_list_append(v, ["𐎘𐎗", "noun", "𐎘𐎗", "", "", "", "bull"]) + let v = native_list_append(v, ["𐎂𐎄", "noun", "𐎂𐎄", "", "", "", "coriander"]) + let v = native_list_append(v, ["𐎄𐎁𐎀𐎚", "noun", "𐎄𐎁𐎀𐎚", "", "", "", "strength"]) + let v = native_list_append(v, ["𐎂𐎁𐎍", "noun", "𐎂𐎁𐎍", "", "", "", "mountain"]) + let v = native_list_append(v, ["𐎈𐎑𐎗", "noun", "𐎈𐎑𐎗", "", "", "", "court courtyard"]) + let v = native_list_append(v, ["𐎈𐎑𐎚", "noun", "𐎈𐎑𐎚", "", "", "", "good fortune"]) + let v = native_list_append(v, ["𐎈𐎗𐎐𐎖", "noun", "𐎈𐎗𐎐𐎖", "", "", "", "orchard"]) + let v = native_list_append(v, ["𐎃𐎎𐎎𐎗", "noun", "𐎃𐎎𐎎𐎗", "", "", "", "hall"]) + let v = native_list_append(v, ["𐎃𐎊𐎎", "noun", "𐎃𐎊𐎎", "", "", "", "ore"]) + let v = native_list_append(v, ["𐎖𐎓𐎍", "noun", "𐎖𐎓𐎍", "", "", "", "hill"]) + let v = native_list_append(v, ["𐎖𐎗𐎌", "noun", "𐎖𐎗𐎌", "", "", "", "pavilion"]) + let v = native_list_append(v, ["𐎖𐎗𐎚", "noun", "𐎖𐎗𐎚", "", "", "", "city"]) + let v = native_list_append(v, ["𐎙𐎍𐎔", "noun", "𐎙𐎍𐎔", "", "", "", "dye"]) + let v = native_list_append(v, ["𐎙𐎐𐎁", "noun", "𐎙𐎐𐎁", "", "", "", "grapes"]) + let v = native_list_append(v, ["𐎙𐎍", "noun", "𐎙𐎍", "", "", "", "thicket"]) + let v = native_list_append(v, ["𐎙𐎊𐎗", "noun", "𐎙𐎊𐎗", "", "", "", "rock"]) + let v = native_list_append(v, ["𐎋𐎐𐎔", "noun", "𐎋𐎐𐎔", "", "", "", "wing"]) + let v = native_list_append(v, ["𐎖𐎁𐎓𐎚", "noun", "𐎖𐎁𐎓𐎚", "", "", "", "goblet chalice"]) + let v = native_list_append(v, ["𐎋𐎗𐎎", "noun", "𐎋𐎗𐎎", "", "", "", "vineyard"]) + let v = native_list_append(v, ["𐎒𐎔𐎒𐎂", "noun", "𐎒𐎔𐎒𐎂", "", "", "", "glaze"]) + let v = native_list_append(v, ["𐎌𐎋𐎗𐎐", "noun", "𐎌𐎋𐎗𐎐", "", "", "", "intoxication drunkenness"]) + let v = native_list_append(v, ["𐎌𐎓𐎗", "noun", "𐎌𐎓𐎗", "", "", "", "hair"]) + let v = native_list_append(v, ["𐎌𐎓𐎚𐎖𐎚", "noun", "𐎌𐎓𐎚𐎖𐎚", "", "", "", "Shataqat the goddess"]) + let v = native_list_append(v, ["𐎌𐎍𐎈", "noun", "𐎌𐎍𐎈", "", "", "", "sword"]) + let v = native_list_append(v, ["𐎗𐎔𐎜", "noun", "𐎗𐎔𐎜", "", "", "", "community"]) + let v = native_list_append(v, ["𐎖𐎍𐎃𐎚", "noun", "𐎖𐎍𐎃𐎚", "", "", "", "cauldron"]) + let v = native_list_append(v, ["𐎁𐎛𐎗", "noun", "𐎁𐎛𐎗", "", "", "", "well"]) + let v = native_list_append(v, ["𐎈𐎁𐎍", "noun", "𐎈𐎁𐎍", "", "", "", "rope chord"]) + let v = native_list_append(v, ["𐎚𐎍𐎓", "noun", "𐎚𐎍𐎓", "", "", "", "worm"]) + let v = native_list_append(v, ["𐎈𐎖𐎋𐎔𐎚", "noun", "𐎈𐎖𐎋𐎔𐎚", "", "", "", "Egypt"]) + let v = native_list_append(v, ["𐎈𐎎𐎚", "noun", "𐎈𐎎𐎊𐎚", "", "", "", "wall"]) + let v = native_list_append(v, ["𐎅𐎐", "noun", "𐎅𐎐", "", "", "", "a liquid measure"]) + let v = native_list_append(v, ["𐎅𐎗", "noun", "𐎅𐎗", "", "", "", "mountain hill"]) + let v = native_list_append(v, ["𐎅𐎄𐎗𐎚", "noun", "𐎅𐎄𐎗𐎚", "", "", "", "splendour"]) + let v = native_list_append(v, ["𐎅𐎄", "noun", "𐎅𐎄", "", "", "", "thunder"]) + let v = native_list_append(v, ["𐎁𐎋𐎊𐎚", "noun", "𐎁𐎋𐎊𐎚", "", "", "", "female mourner"]) + let v = native_list_append(v, ["𐎁𐎚𐎍𐎚", "noun", "𐎁𐎚𐎍𐎚", "", "", "", "maiden virgin"]) + let v = native_list_append(v, ["𐎀𐎅𐎍", "noun", "𐎀𐎅𐎍", "", "", "", "tent mobile mansion"]) + let v = native_list_append(v, ["𐎀𐎒𐎎", "noun", "𐎀𐎒𐎎", "", "", "", "granary"]) + let v = native_list_append(v, ["𐎀𐎘𐎗𐎚", "noun", "𐎀𐎘𐎗𐎚", "", "", "", "Athirat Asherah name"]) + let v = native_list_append(v, ["𐎀𐎎𐎗𐎗", "noun", "𐎀𐎎𐎗𐎗", "", "", "", "Amorite land"]) + let v = native_list_append(v, ["𐎀𐎍𐎎𐎐𐎚", "noun", "𐎀𐎍𐎎𐎐𐎚", "", "", "", "widow"]) + let v = native_list_append(v, ["𐎀𐎘𐎗", "noun", "𐎀𐎘𐎗", "", "", "", "shrine"]) + let v = native_list_append(v, ["𐎛𐎍𐎚", "noun", "𐎛𐎍𐎚", "", "", "", "goddess"]) + let v = native_list_append(v, ["𐎀𐎄𐎎", "noun", "𐎀𐎄𐎎", "", "", "", "humankind"]) + let v = native_list_append(v, ["𐎀𐎐𐎃𐎗", "noun", "𐎀𐎐𐎃𐎗", "", "", "", "dolphin"]) + let v = native_list_append(v, ["𐎀𐎗𐎂𐎎𐎐", "noun", "𐎀𐎗𐎂𐎎𐎐", "", "", "", "murex"]) + let v = native_list_append(v, ["𐎀𐎐𐎐𐎃", "noun", "𐎀𐎐𐎐𐎃", "", "", "", "mint"]) + let v = native_list_append(v, ["𐎀𐎐𐎌𐎚", "noun", "𐎀𐎐𐎌𐎚", "", "", "", "kindliness"]) + let v = native_list_append(v, ["𐎛𐎗𐎚", "noun", "𐎛𐎗𐎚", "", "", "", "breast chest"]) + let v = native_list_append(v, ["𐎖𐎍𐎓", "noun", "𐎖𐎍𐎓", "", "", "", "sling weapon that"]) + let v = native_list_append(v, ["𐎂𐎎𐎗", "noun", "𐎂𐎎𐎗", "", "", "", "burning coal"]) + let v = native_list_append(v, ["𐎖𐎗𐎊𐎚", "noun", "𐎖𐎗𐎊𐎚", "", "", "", "city"]) + let v = native_list_append(v, ["𐎖𐎎𐎈", "noun", "𐎖𐎎𐎈", "", "", "", "flour"]) + let v = native_list_append(v, ["𐎋𐎐𐎗", "noun", "𐎋𐎐𐎗", "", "", "", "lyre harp"]) + let v = native_list_append(v, ["𐎋𐎈𐎉", "noun", "𐎋𐎈𐎉", "", "", "", "chair"]) + let v = native_list_append(v, ["𐎋𐎒𐎚", "noun", "𐎋𐎒𐎚", "", "", "", "garment"]) + let v = native_list_append(v, ["𐎋𐎍𐎊𐎚", "noun", "𐎋𐎍𐎊𐎚", "", "", "", "kidney"]) + let v = native_list_append(v, ["𐎂𐎌𐎎", "noun", "𐎂𐎌𐎎", "", "", "", "downpour"]) + let v = native_list_append(v, ["𐎉𐎁", "noun", "𐎉𐎁", "", "", "", "good goodness"]) + let v = native_list_append(v, ["𐎚𐎐𐎐𐎗", "noun", "𐎚𐎐𐎐𐎗", "", "", "", "tandoor oven"]) + let v = native_list_append(v, ["𐎒𐎔𐎗", "noun", "𐎒𐎔𐎗", "", "", "", "scribe"]) + let v = native_list_append(v, ["𐎒𐎔𐎍", "noun", "𐎒𐎔𐎍", "", "", "", "crater"]) + let v = native_list_append(v, ["𐎒𐎂𐎗𐎚", "noun", "𐎒𐎂𐎗𐎚", "", "", "", "locked room"]) + let v = native_list_append(v, ["𐎄𐎁𐎗", "noun", "𐎄𐎁𐎗", "", "", "", "hinterland"]) + let v = native_list_append(v, ["𐎚𐎍𐎎", "noun", "𐎚𐎍𐎎", "", "", "", "furrow"]) + let v = native_list_append(v, ["𐎕𐎁𐎛𐎎", "noun", "𐎕𐎁𐎛𐎎", "", "", "", "troops"]) + let v = native_list_append(v, ["𐎕𐎔𐎗", "noun", "𐎕𐎔𐎗", "", "", "", "bird"]) + let v = native_list_append(v, ["𐎕𐎍𐎓", "noun", "𐎕𐎍𐎓", "", "", "", "rib"]) + let v = native_list_append(v, ["𐎜𐎘𐎔𐎚", "noun", "𐎜𐎘𐎔𐎚", "", "", "", "quiver for arrows"]) + let v = native_list_append(v, ["𐎀𐎒𐎗", "noun", "𐎀𐎒𐎗", "", "", "", "captive prisoner"]) + let v = native_list_append(v, ["𐎎𐎌𐎍𐎚", "noun", "𐎎𐎌𐎍𐎚", "", "", "", "rulership"]) + let v = native_list_append(v, ["𐎙𐎐𐎁𐎎", "noun", "𐎙𐎐𐎁𐎎", "", "", "", "plural of 𐎙𐎐𐎁"]) + let v = native_list_append(v, ["𐎓𐎇", "noun", "𐎓𐎇", "", "", "", "power strength might"]) + let v = native_list_append(v, ["𐎁𐎓𐎍𐎚", "noun", "𐎁𐎓𐎍𐎚", "", "", "", "lady"]) + let v = native_list_append(v, ["𐎁𐎗𐎋𐎐", "noun", "𐎁𐎗𐎋𐎐", "", "", "", "blessing"]) + let v = native_list_append(v, ["𐎁𐎗𐎋𐎚", "noun", "𐎁𐎗𐎋𐎚", "", "", "", "pond pool"]) + let v = native_list_append(v, ["𐎎𐎗𐎊𐎐", "noun", "𐎎𐎗𐎊𐎐", "", "", "", "knight"]) + let v = native_list_append(v, ["𐎎𐎌𐎋𐎐𐎚", "noun", "𐎎𐎌𐎋𐎐𐎚", "", "", "", "dwelling dwelling-place abode"]) + let v = native_list_append(v, ["𐎎𐎋𐎗𐎎", "noun", "𐎎𐎋𐎗𐎎", "", "", "", "merchants"]) + let v = native_list_append(v, ["𐎎𐎙𐎗𐎚", "noun", "𐎎𐎙𐎗𐎚", "", "", "", "cave"]) + let v = native_list_append(v, ["𐎍𐎁𐎌", "noun", "𐎍𐎁𐎌", "", "", "", "garment piece of"]) + let v = native_list_append(v, ["𐎗𐎈𐎁𐎚", "noun", "𐎗𐎈𐎁𐎚", "", "", "", "amphora"]) + let v = native_list_append(v, ["𐎃𐎘𐎗", "noun", "𐎃𐎘𐎗", "", "", "", "winnowing fan"]) + let v = native_list_append(v, ["𐎓𐎐𐎚", "noun", "𐎓𐎐𐎚", "", "", "", "Anat goddess of"]) + let v = native_list_append(v, ["𐎌𐎂𐎗", "noun", "𐎌𐎂𐎗", "", "", "", "offspring"]) + let v = native_list_append(v, ["𐎌𐎔", "noun", "𐎌𐎔", "", "", "", "dune"]) + let v = native_list_append(v, ["𐎘𐎍", "noun", "𐎘𐎍", "", "", "", "dew"]) + let v = native_list_append(v, ["𐎑𐎅𐎗", "noun", "𐎑𐎅𐎗", "", "", "", "jewel gem gemstone"]) + let v = native_list_append(v, ["𐎄𐎄", "noun", "𐎄𐎄", "", "", "", "love"]) + let v = native_list_append(v, ["𐎗𐎌𐎔", "noun", "𐎗𐎌𐎔", "", "", "", "pestilence"]) + let v = native_list_append(v, ["𐎐𐎋𐎍", "noun", "𐎐𐎋𐎍", "", "", "", "Great Goddess from"]) + let v = native_list_append(v, ["𐎎𐎉𐎗", "noun", "𐎎𐎉𐎗", "", "", "", "rain"]) + let v = native_list_append(v, ["𐎂𐎚", "noun", "𐎂𐎚", "", "", "", "winepress"]) + let v = native_list_append(v, ["𐎋𐎅𐎐𐎚", "noun", "𐎋𐎅𐎐𐎚", "", "", "", "priestess"]) + let v = native_list_append(v, ["𐎋𐎅𐎐", "noun", "𐎋𐎅𐎐", "", "", "", "priest"]) + let v = native_list_append(v, ["𐎗𐎁 𐎋𐎅𐎐𐎎", "noun", "𐎗𐎁 𐎋𐎅𐎐𐎎", "", "", "", "high priest"]) + let v = native_list_append(v, ["𐎒𐎔𐎗𐎚", "noun", "𐎒𐎔𐎗𐎚", "", "", "", "female scribe"]) + let v = native_list_append(v, ["𐎘𐎍𐎁", "noun", "𐎘𐎍𐎁", "", "", "", "flute"]) + let v = native_list_append(v, ["𐎁𐎗𐎖", "noun", "𐎁𐎗𐎖", "", "", "", "lightning"]) + let v = native_list_append(v, ["𐎅𐎄𐎆", "noun", "𐎅𐎄𐎆", "", "", "", "Hadad"]) + let v = native_list_append(v, ["𐎋𐎘𐎗𐎆𐎃𐎒𐎒", "noun", "𐎋𐎘𐎗𐎆𐎃𐎒𐎒", "", "", "", "Kothar-wa-Khasis the two"]) + let v = native_list_append(v, ["𐎌𐎎𐎎", "noun", "𐎌𐎎𐎎", "", "", "", "sky heavens"]) + let v = native_list_append(v, ["𐎚𐎅𐎎", "noun", "𐎚𐎅𐎎", "", "", "", "abyss"]) + let v = native_list_append(v, ["𐎊𐎎𐎐", "noun", "𐎊𐎎𐎐", "", "", "", "right side"]) + let v = native_list_append(v, ["𐎗𐎁 𐎋𐎅𐎐𐎚", "noun", "𐎗𐎁 𐎋𐎅𐎐𐎚", "", "", "", "high priestess"]) + let v = native_list_append(v, ["𐎗𐎁 𐎋𐎅𐎐", "noun", "𐎗𐎁 𐎋𐎅𐎐", "", "", "", "high priest"]) + let v = native_list_append(v, ["𐎗𐎁", "noun", "𐎗𐎁", "", "", "", "head"]) + let v = native_list_append(v, ["𐎄𐎂", "noun", "𐎄𐎂", "", "", "", "fish"]) + let v = native_list_append(v, ["𐎄𐎎𐎓𐎚", "noun", "𐎄𐎎𐎓𐎚", "", "", "", "tear from the"]) + let v = native_list_append(v, ["𐎄𐎔𐎗𐎐", "noun", "𐎄𐎔𐎗𐎐", "", "", "", "juniper tree of"]) + let v = native_list_append(v, ["𐎄𐎗𐎓", "noun", "𐎄𐎗𐎓", "", "", "", "seed of a"]) + let v = native_list_append(v, ["𐎎𐎗𐎕", "noun", "𐎎𐎗𐎕", "", "", "", "disease illness sickness"]) + let v = native_list_append(v, ["𐎎𐎗𐎈", "noun", "𐎎𐎗𐎈", "", "", "", "spear lance"]) + let v = native_list_append(v, ["𐎘𐎍𐎈𐎐", "noun", "𐎘𐎍𐎈𐎐", "", "", "", "table"]) + let v = native_list_append(v, ["𐎘𐎙𐎗", "noun", "𐎘𐎙𐎗", "", "", "", "gate"]) + let v = native_list_append(v, ["𐎘𐎀𐎚", "noun", "𐎘𐎀𐎚", "", "", "", "ewe female sheep"]) + let v = native_list_append(v, ["𐎛𐎁", "noun", "𐎛𐎁", "", "", "", "enemy"]) + let v = native_list_append(v, ["𐎈𐎗𐎁", "noun", "𐎈𐎗𐎁", "", "", "", "sword"]) + let v = native_list_append(v, ["𐎈𐎎𐎕", "noun", "𐎈𐎎𐎕", "", "", "", "vinegar"]) + let v = native_list_append(v, ["𐎈𐎉𐎚", "noun", "𐎈𐎉𐎚", "", "", "", "wheat"]) + let v = native_list_append(v, ["𐎓𐎖𐎗𐎁", "noun", "𐎓𐎖𐎗𐎁", "", "", "", "scorpion"]) + let v = native_list_append(v, ["𐎁𐎘𐎐", "noun", "𐎁𐎘𐎐", "", "", "", "serpent snake"]) + let v = native_list_append(v, ["𐎈𐎒𐎐", "noun", "𐎈𐎒𐎐", "", "", "", "grasshoppers locusts"]) + let v = native_list_append(v, ["𐎎𐎄𐎁𐎗", "noun", "𐎎𐎄𐎁𐎗", "", "", "", "desert wilderness"]) + let v = native_list_append(v, ["𐎛𐎁𐎒𐎐", "noun", "𐎛𐎁𐎒𐎐", "", "", "", "warehouse"]) + let v = native_list_append(v, ["𐎛𐎔𐎄", "noun", "𐎛𐎔𐎄", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎜𐎇", "noun", "𐎜𐎇", "", "", "", "goose"]) + let v = native_list_append(v, ["𐎜𐎌𐎋", "noun", "𐎜𐎌𐎋", "", "", "", "testicle"]) + let v = native_list_append(v, ["𐎜𐎌𐎗", "noun", "𐎜𐎌𐎗", "", "", "", "penis"]) + let v = native_list_append(v, ["𐎜𐎉𐎁", "noun", "𐎜𐎉𐎁", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎜𐎕𐎁𐎓", "noun", "𐎜𐎕𐎁𐎓", "", "", "", "finger"]) + let v = native_list_append(v, ["𐎀𐎌𐎋𐎗𐎗", "noun", "𐎀𐎌𐎋𐎗𐎗", "", "", "", "henbane"]) + let v = native_list_append(v, ["𐎀𐎔𐎊", "noun", "𐎀𐎔𐎊", "", "", "", "baker"]) + let v = native_list_append(v, ["𐎀𐎘𐎚", "noun", "𐎀𐎘𐎚", "", "", "", "woman wife"]) + let v = native_list_append(v, ["𐎀𐎔𐎐", "noun", "𐎀𐎔𐎐", "", "", "", "wheel"]) + let v = native_list_append(v, ["𐎛𐎌𐎄", "noun", "𐎛𐎌𐎄", "", "", "", "leg"]) + let v = native_list_append(v, ["𐎕𐎓", "noun", "𐎕𐎓", "", "", "", "plate platter"]) + let v = native_list_append(v, ["𐎕𐎁𐎜", "noun", "𐎕𐎁𐎜", "", "", "", "army troops militia"]) + let v = native_list_append(v, ["𐎕𐎍𐎎", "noun", "𐎕𐎍𐎎", "", "", "", "image"]) + let v = native_list_append(v, ["𐎕𐎎𐎚", "noun", "𐎕𐎎𐎚", "", "", "", "destruction"]) + let v = native_list_append(v, ["𐎌𐎛𐎗", "noun", "𐎌𐎛𐎗", "", "", "", "flesh meat"]) + let v = native_list_append(v, ["𐎌𐎈𐎚", "noun", "𐎌𐎈𐎚", "", "", "", "bush shrub"]) + let v = native_list_append(v, ["𐎌𐎐𐎔𐎚", "noun", "𐎌𐎐𐎔𐎚", "", "", "", "an unspecified type"]) + let v = native_list_append(v, ["𐎇𐎁𐎍", "noun", "𐎇𐎁𐎍", "", "", "", "prince"]) + let v = native_list_append(v, ["𐎑𐎁𐎊", "noun", "𐎑𐎁𐎊", "", "", "", "gazelle"]) + let v = native_list_append(v, ["𐎉𐎈𐎍", "noun", "𐎉𐎈𐎍", "", "", "", "spleen"]) + let v = native_list_append(v, ["𐎉𐎍", "noun", "𐎉𐎍", "", "", "", "dew"]) + let v = native_list_append(v, ["𐎑𐎍", "noun", "𐎑𐎍", "", "", "", "shade shadow"]) + let v = native_list_append(v, ["𐎘𐎖𐎄", "noun", "𐎘𐎖𐎄", "", "", "", "almond"]) + let v = native_list_append(v, ["𐎘𐎋𐎎", "noun", "𐎘𐎋𐎎", "", "", "", "shoulder"]) + let v = native_list_append(v, ["𐎊𐎖𐎌", "noun", "𐎊𐎖𐎌", "", "", "", "fowler bird-catcher"]) + let v = native_list_append(v, ["𐎊𐎓𐎍", "noun", "𐎊𐎓𐎍", "", "", "", "ibex mountain goat"]) + let v = native_list_append(v, ["𐎊𐎚𐎎", "noun", "𐎊𐎚𐎎", "", "", "", "orphan"]) + let v = native_list_append(v, ["𐎊𐎔𐎈", "noun", "𐎊𐎔𐎈", "", "", "", "witness"]) + let v = native_list_append(v, ["𐎚𐎔𐎈", "noun", "𐎚𐎔𐎈", "", "", "", "apple"]) + let v = native_list_append(v, ["𐎚𐎗𐎐", "noun", "𐎚𐎗𐎐", "", "", "", "mast of a"]) + let v = native_list_append(v, ["𐎚𐎔", "noun", "𐎚𐎔", "", "", "", "drum tambourine"]) + let v = native_list_append(v, ["𐎚𐎂𐎎𐎗", "noun", "𐎚𐎂𐎎𐎗", "", "", "", "total sum"]) + let v = native_list_append(v, ["𐎌𐎐𐎚", "noun", "𐎌𐎐𐎚", "", "", "", "year"]) + let v = native_list_append(v, ["𐎖𐎎𐎕", "noun", "𐎖𐎎𐎕", "", "", "", "heap pile"]) + let v = native_list_append(v, ["𐎖𐎑", "noun", "𐎖𐎑", "", "", "", "summer"]) + let v = native_list_append(v, ["𐎖𐎉𐎗", "noun", "𐎖𐎉𐎗", "", "", "", "smoke"]) + let v = native_list_append(v, ["𐎒𐎁𐎁𐎊𐎐", "noun", "𐎒𐎁𐎁𐎊𐎐", "", "", "", "black cumin"]) + let v = native_list_append(v, ["𐎗𐎓𐎚", "noun", "𐎗𐎓𐎚", "", "", "", "thunder"]) + let v = native_list_append(v, ["𐎗𐎓𐎊", "noun", "𐎗𐎓𐎊", "", "", "", "shepherd"]) + let v = native_list_append(v, ["𐎗𐎜𐎎", "noun", "𐎗𐎜𐎎", "", "", "", "aurochs buffalo"]) + let v = native_list_append(v, ["𐎔𐎂𐎗", "noun", "𐎔𐎂𐎗", "", "", "", "corpse cadaver dead"]) + let v = native_list_append(v, ["𐎔𐎗𐎄", "noun", "𐎔𐎗𐎄", "", "", "", "mule"]) + let v = native_list_append(v, ["𐎔𐎍𐎋", "noun", "𐎔𐎍𐎋", "", "", "", "spindle"]) + let v = native_list_append(v, ["𐎔𐎒𐎍", "noun", "𐎔𐎒𐎍", "", "", "", "sculptor"]) + let v = native_list_append(v, ["𐎌𐎔𐎃", "noun", "𐎌𐎔𐎃", "", "", "", "family"]) + let v = native_list_append(v, ["𐎔𐎗", "noun", "𐎔𐎗", "", "", "", "fruit"]) + let v = native_list_append(v, ["𐎔𐎍𐎄", "noun", "𐎔𐎍𐎄", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎎𐎍𐎈𐎚", "noun", "𐎎𐎍𐎈𐎚", "", "", "", "salt"]) + let v = native_list_append(v, ["𐎎𐎍𐎀𐎋", "noun", "𐎎𐎍𐎀𐎋", "", "", "", "messenger"]) + let v = native_list_append(v, ["𐎎𐎅𐎗", "noun", "𐎎𐎅𐎗", "", "", "", "soldier warrior"]) + let v = native_list_append(v, ["𐎎𐎍𐎈𐎎𐎚", "noun", "𐎎𐎍𐎈𐎎𐎚", "", "", "", "war"]) + let v = native_list_append(v, ["𐎎𐎗𐎋𐎁𐎚", "noun", "𐎎𐎗𐎋𐎁𐎚", "", "", "", "chariot"]) + let v = native_list_append(v, ["𐎎𐎓𐎕𐎄", "noun", "𐎎𐎓𐎕𐎄", "", "", "", "scythe sickle"]) + let v = native_list_append(v, ["𐎎𐎄𐎁𐎈", "noun", "𐎎𐎄𐎁𐎈", "", "", "", "altar"]) + let v = native_list_append(v, ["𐎎𐎃𐎗", "noun", "𐎎𐎃𐎗", "", "", "", "tax collector"]) + let v = native_list_append(v, ["𐎔𐎌𐎓", "noun", "𐎔𐎌𐎓", "", "", "", "rebellion"]) + let v = native_list_append(v, ["𐎎𐎉𐎚", "noun", "𐎎𐎉𐎚", "", "", "", "bed"]) + let v = native_list_append(v, ["𐎎𐎉𐎃", "noun", "𐎎𐎉𐎃", "", "", "", "present gift"]) + let v = native_list_append(v, ["𐎐𐎈𐎍", "noun", "𐎐𐎈𐎍", "", "", "", "heir"]) + let v = native_list_append(v, ["𐎐𐎓𐎗", "noun", "𐎐𐎓𐎗", "", "", "", "boy lad"]) + let v = native_list_append(v, ["𐎐𐎁𐎋", "noun", "𐎐𐎁𐎋", "", "", "", "spring fountain"]) + let v = native_list_append(v, ["𐎈𐎄𐎘", "noun", "𐎈𐎄𐎘", "", "", "", "new moon"]) + let v = native_list_append(v, ["𐎐𐎙𐎗", "noun", "𐎐𐎙𐎗", "", "", "", "guard guardian sentry"]) + let v = native_list_append(v, ["𐎍𐎂", "noun", "𐎍𐎂", "", "", "", "a measure of"]) + let v = native_list_append(v, ["𐎎𐎏𐎗𐎐", "noun", "𐎎𐎏𐎗𐎐", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎎𐎙𐎎𐎙", "noun", "𐎎𐎙𐎎𐎙", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎓𐎗𐎂𐎇", "noun", "𐎓𐎗𐎂𐎇", "", "", "", "walnut tree wood"]) + let v = native_list_append(v, ["𐎓𐎁𐎄", "noun", "𐎓𐎁𐎄", "", "", "", "slave"]) + let v = native_list_append(v, ["𐎓𐎂𐎍", "noun", "𐎓𐎂𐎍", "", "", "", "calf young head"]) + let v = native_list_append(v, ["𐎍𐎚𐎈", "noun", "𐎍𐎚𐎈", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎎𐎕𐎗𐎔", "noun", "𐎎𐎕𐎗𐎔", "", "", "", "crucible"]) + let v = native_list_append(v, ["𐎎𐎕𐎔𐎚", "noun", "𐎎𐎕𐎔𐎚", "", "", "", "crows nest on"]) + let v = native_list_append(v, ["𐎎𐎕𐎍𐎚𐎎", "noun", "𐎎𐎕𐎍𐎚𐎎", "", "", "", "cymbals"]) + let v = native_list_append(v, ["𐎎𐎘𐎊𐎐", "noun", "𐎎𐎘𐎊𐎐", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎎𐎌𐎒𐎔𐎄𐎚", "noun", "𐎎𐎌𐎒𐎔𐎄𐎚", "", "", "", "wailing woman hired"]) + let v = native_list_append(v, ["𐎂𐎂", "noun", "𐎂𐎂", "", "", "", "roof"]) + let v = native_list_append(v, ["𐎂𐎁𐎓", "noun", "𐎂𐎁𐎓", "", "", "", "hill"]) + let v = native_list_append(v, ["𐎂𐎗𐎐", "noun", "𐎂𐎗𐎐", "", "", "", "threshing floor"]) + let v = native_list_append(v, ["𐎂𐎐", "noun", "𐎂𐎐", "", "", "", "garden"]) + let v = native_list_append(v, ["𐎂𐎀𐎐", "noun", "𐎂𐎀𐎐", "", "", "", "arrogance haughtiness"]) + let v = native_list_append(v, ["𐎂𐎔𐎐", "noun", "𐎂𐎔𐎐", "", "", "", "vine"]) + let v = native_list_append(v, ["𐎂𐎄𐎗𐎚", "noun", "𐎂𐎄𐎗𐎚", "", "", "", "fence"]) + let v = native_list_append(v, ["𐎄𐎁", "noun", "𐎄𐎁", "", "", "", "bear"]) + let v = native_list_append(v, ["𐎄𐎗", "noun", "𐎄𐎗", "", "", "", "generation"]) + let v = native_list_append(v, ["𐎜𐎉", "noun", "𐎜𐎉", "", "", "", "span unit of"]) + let v = native_list_append(v, ["𐎋𐎚𐎐", "noun", "𐎋𐎚𐎐", "", "", "", "tunic"]) + let v = native_list_append(v, ["𐎀𐎐𐎊𐎚", "noun", "𐎀𐎐𐎊𐎚", "", "", "", "ship"]) + let v = native_list_append(v, ["𐎀𐎎𐎚", "noun", "𐎀𐎎𐎚", "", "", "", "cubit unit of"]) + let v = native_list_append(v, ["𐎊𐎕𐎗", "noun", "𐎊𐎕𐎗", "", "", "", "potter"]) + let v = native_list_append(v, ["𐎗𐎖𐎈", "noun", "𐎗𐎖𐎈", "", "", "", "apothecary pharmacist"]) + let v = native_list_append(v, ["𐎈𐎚𐎍", "noun", "𐎈𐎚𐎍", "", "", "", "diaper nappy"]) + let v = native_list_append(v, ["𐎈𐎎𐎗", "noun", "𐎈𐎎𐎗", "", "", "", "donkey"]) + let v = native_list_append(v, ["𐎈𐎄𐎗", "noun", "𐎈𐎄𐎗", "", "", "", "room chamber"]) + let v = native_list_append(v, ["𐎎𐎌𐎐𐎖𐎚", "noun", "𐎎𐎌𐎐𐎖𐎚", "", "", "", "wet nurse"]) + let v = native_list_append(v, ["𐎎𐎕𐎗𐎎", "noun", "𐎎𐎕𐎗𐎎", "", "", "", "Egypt an ancient"]) + let v = native_list_append(v, ["𐎎𐎕𐎎𐎚", "noun", "𐎎𐎕𐎎𐎚", "", "", "", "treaty"]) + let v = native_list_append(v, ["𐎎𐎒𐎔𐎗", "noun", "𐎎𐎒𐎔𐎗", "", "", "", "story tale narrative"]) + let v = native_list_append(v, ["𐎎𐎐𐎗𐎚", "noun", "𐎎𐎐𐎗𐎚", "", "", "", "candelabra"]) + let v = native_list_append(v, ["𐎐𐎋𐎗", "noun", "𐎐𐎋𐎗", "", "", "", "foreigner alien"]) + let v = native_list_append(v, ["𐎔𐎗𐎝", "noun", "𐎔𐎗𐎝", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎔𐎘𐎚", "noun", "𐎔𐎘𐎚", "", "", "", "linen"]) + let v = native_list_append(v, ["𐎔𐎆𐎚", "noun", "𐎔𐎆𐎚", "", "", "", "madder Rubia tinctorum"]) + let v = native_list_append(v, ["𐎚𐎗", "noun", "𐎚𐎗", "", "", "", "turtledove"]) + let v = native_list_append(v, ["𐎕𐎈𐎖", "noun", "𐎕𐎈𐎖", "", "", "", "laughter"]) + let v = native_list_append(v, ["𐎋𐎋𐎗", "noun", "𐎋𐎋𐎗", "", "", "", "talent unit of"]) + let v = native_list_append(v, ["𐎕𐎗", "noun", "𐎕𐎗", "", "", "", "Tyre a city"]) + let v = native_list_append(v, ["𐎔𐎛𐎚", "noun", "𐎔𐎛𐎚", "", "", "", "temple part of"]) + let v = native_list_append(v, ["𐎘𐎐𐎚", "noun", "𐎘𐎐𐎚", "", "", "", "urine piss"]) + let v = native_list_append(v, ["𐎃𐎗𐎜", "noun", "𐎃𐎗𐎜", "", "", "", "dung feces excrement"]) + let v = native_list_append(v, ["𐎋𐎁𐎄", "noun", "𐎋𐎁𐎄", "", "", "", "liver"]) + let v = native_list_append(v, ["𐎃𐎗𐎚", "noun", "𐎃𐎗𐎚", "", "", "", "cave cavern"]) + let v = native_list_append(v, ["𐎃𐎌𐎚", "noun", "𐎃𐎌𐎚", "", "", "", "mausoleum sepulcher tomb"]) + let v = native_list_append(v, ["𐎃𐎉𐎁", "noun", "𐎃𐎉𐎁", "", "", "", "woodcutter"]) + let v = native_list_append(v, ["𐎀𐎗𐎃", "noun", "𐎀𐎗𐎃", "", "", "", "cow heifer"]) + let v = native_list_append(v, ["𐎜𐎌𐎐", "noun", "𐎜𐎌𐎐", "", "", "", "gift present"]) + let v = native_list_append(v, ["𐎛𐎖𐎐𐎜", "noun", "𐎛𐎖𐎐𐎜", "", "", "", "lapis lazuli"]) + let v = native_list_append(v, ["𐎒𐎐𐎐𐎚", "noun", "𐎒𐎐𐎐𐎚", "", "", "", "swallow bird of"]) + let v = native_list_append(v, ["𐎏𐎐𐎁", "noun", "𐎏𐎐𐎁", "", "", "", "tail of an"]) + let v = native_list_append(v, ["𐎗𐎓", "noun", "𐎗𐎓", "", "", "", "friend companion"]) + let v = native_list_append(v, ["𐎌𐎗", "noun", "𐎌𐎗", "", "", "", "song"]) + let v = native_list_append(v, ["𐎌𐎖", "noun", "𐎌𐎖", "", "", "", "thigh"]) + let v = native_list_append(v, ["𐎌𐎁𐎍𐎚", "noun", "𐎌𐎁𐎍𐎚", "", "", "", "ear of grain"]) + let v = native_list_append(v, ["𐎌𐎁", "noun", "𐎌𐎁", "", "", "", "old man"]) + let v = native_list_append(v, ["𐎒𐎋𐎐", "noun", "𐎒𐎋𐎐", "", "", "", "stela"]) + let v = native_list_append(v, ["𐎃𐎗𐎕𐎔", "noun", "𐎃𐎗𐎕𐎔", "", "", "", "tendon sinew"]) + let v = native_list_append(v, ["𐎚𐎗𐎙𐎇𐎇", "noun", "𐎚𐎗𐎙𐎇𐎇", "", "", "", "a mythical mountain"]) + let v = native_list_append(v, ["𐎚𐎈𐎎", "noun", "𐎚𐎈𐎎", "", "", "", "message"]) + let v = native_list_append(v, ["𐎌𐎌𐎗𐎚", "noun", "𐎌𐎌𐎗𐎚", "", "", "", "chain"]) + let v = native_list_append(v, ["𐎌𐎗𐎌", "noun", "𐎌𐎗𐎌", "", "", "", "root of a"]) + let v = native_list_append(v, ["𐎌𐎗𐎗", "noun", "𐎌𐎗𐎗", "", "", "", "enemy foe"]) + let v = native_list_append(v, ["𐎌𐎗𐎔", "noun", "𐎌𐎗𐎔", "", "", "", "burnt offering"]) + let v = native_list_append(v, ["𐎗𐎙𐎁𐎐", "noun", "𐎗𐎙𐎁𐎐", "", "", "", "hunger"]) + let v = native_list_append(v, ["𐎎𐎘𐎉", "noun", "𐎎𐎘𐎉", "", "", "", "oar"]) + let v = native_list_append(v, ["𐎎𐎃𐎕", "noun", "𐎎𐎃𐎕", "", "", "", "weaver"]) + let v = native_list_append(v, ["𐎍𐎎𐎄", "noun", "𐎍𐎎𐎄", "", "", "", "student pupil"]) + let v = native_list_append(v, ["𐎁𐎅𐎘", "noun", "𐎁𐎅𐎘", "", "", "", "shame"]) + let v = native_list_append(v, ["𐎁𐎅𐎎𐎚", "noun", "𐎁𐎅𐎎𐎚", "", "", "", "cattle livestock"]) + let v = native_list_append(v, ["𐎁𐎋𐎗", "noun", "𐎁𐎋𐎗", "", "", "", "firstborn child"]) + let v = native_list_append(v, ["𐎘𐎗𐎊𐎐", "noun", "𐎘𐎗𐎊𐎐", "", "", "", "suit of armor"]) + let v = native_list_append(v, ["𐎏𐎅𐎗𐎚", "noun", "𐎏𐎅𐎗𐎚", "", "", "", "vision prophetic"]) + let v = native_list_append(v, ["𐎋𐎔𐎗", "noun", "𐎋𐎔𐎗", "", "", "", "village"]) + let v = native_list_append(v, ["𐎊𐎁𐎎", "noun", "𐎊𐎁𐎎", "", "", "", "brother-in-law"]) + let v = native_list_append(v, ["𐎊𐎁𐎎𐎚", "noun", "𐎊𐎁𐎎𐎚", "", "", "", "sister-in-law"]) + let v = native_list_append(v, ["𐎊𐎁𐎍𐎚", "noun", "𐎊𐎁𐎍𐎚", "", "", "", "stream creek"]) + let v = native_list_append(v, ["𐎀𐎗𐎐", "noun", "𐎀𐎗𐎐", "", "", "", "chest box"]) + let v = native_list_append(v, ["𐎛𐎗𐎁𐎊", "noun", "𐎛𐎗𐎁𐎊", "", "", "", "locust"]) + let v = native_list_append(v, ["𐎜𐎗𐎁𐎚", "noun", "𐎜𐎗𐎁𐎚", "", "", "", "window"]) + let v = native_list_append(v, ["𐎛𐎎𐎗", "noun", "𐎛𐎎𐎗", "", "", "", "lamb"]) + let v = native_list_append(v, ["𐎀𐎍𐎘𐎊", "noun", "𐎀𐎍𐎘𐎊", "", "", "", "Cyprus an island"]) + let v = native_list_append(v, ["𐎕𐎎𐎖", "noun", "𐎕𐎎𐎖", "", "", "", "raisin"]) + let v = native_list_append(v, ["𐎀𐎍𐎚", "noun", "𐎀𐎍𐎚", "", "", "", "curse hex"]) + let v = native_list_append(v, ["𐎜𐎄𐎗", "noun", "𐎜𐎄𐎗", "", "", "", "express messenger courier"]) + let v = native_list_append(v, ["𐎀𐎂𐎐", "noun", "𐎀𐎂𐎐", "", "", "", "cauldron cooking pot"]) + let v = native_list_append(v, ["𐎀𐎍𐎂𐎁𐎘", "noun", "𐎀𐎍𐎂𐎁𐎘", "", "", "", "an unknown type"]) + let v = native_list_append(v, ["𐎛𐎗𐎌𐎚", "noun", "𐎛𐎗𐎌𐎚", "", "", "", "request wish"]) + let v = native_list_append(v, ["𐎋𐎁𐎒", "noun", "𐎋𐎁𐎒", "", "", "", "fuller of cloth"]) + let v = native_list_append(v, ["𐎐𐎎𐎗𐎚", "noun", "𐎐𐎎𐎗𐎚", "", "", "", "splendor"]) + let v = native_list_append(v, ["𐎐𐎃𐎚", "noun", "𐎐𐎃𐎚", "", "", "", "divan couch"]) + let v = native_list_append(v, ["𐎎𐎒𐎂", "noun", "𐎎𐎒𐎂", "", "", "", "skin"]) + let v = native_list_append(v, ["𐎎𐎉", "noun", "𐎎𐎉", "", "", "", "staff"]) + let v = native_list_append(v, ["𐎎𐎚𐎋", "noun", "𐎎𐎚𐎋", "", "", "", "libation"]) + let v = native_list_append(v, ["𐎎𐎉𐎓𐎚", "noun", "𐎎𐎉𐎓𐎚", "", "", "", "plantation"]) + let v = native_list_append(v, ["𐎎𐎚𐎐", "noun", "𐎎𐎚𐎐", "", "", "", "loin"]) + let v = native_list_append(v, ["𐎐𐎓𐎎𐎚", "noun", "𐎐𐎓𐎎𐎚", "", "", "", "delight"]) + let v = native_list_append(v, ["𐎎𐎍𐎚𐎈", "noun", "𐎎𐎍𐎚𐎈", "", "", "", "a measure of"]) + let v = native_list_append(v, ["𐎎𐎍𐎃𐎌", "noun", "𐎎𐎍𐎃𐎌", "", "", "", "conjurer sorcerer"]) + let v = native_list_append(v, ["𐎗𐎘𐎚", "noun", "𐎗𐎘𐎚", "", "", "", "net"]) + let v = native_list_append(v, ["𐎗𐎘", "noun", "𐎗𐎘", "", "", "", "mud"]) + let v = native_list_append(v, ["𐎈𐎍", "noun", "𐎈𐎍", "", "", "", "strength vigor"]) + let v = native_list_append(v, ["𐎊𐎁𐎍", "noun", "𐎊𐎁𐎍", "", "", "", "produce of fields"]) + let v = native_list_append(v, ["𐎊𐎈𐎎𐎗", "noun", "𐎊𐎈𐎎𐎗", "", "", "", "roebuck"]) + let v = native_list_append(v, ["𐎃𐎎𐎀𐎚", "noun", "𐎃𐎎𐎀𐎚", "", "", "", "butter"]) + let v = native_list_append(v, ["𐎒𐎔", "noun", "𐎒𐎔", "", "", "", "bowl"]) + let v = native_list_append(v, ["𐎓𐎔𐎓𐎔", "noun", "𐎓𐎔𐎓𐎔", "", "", "", "eyelid"]) + let v = native_list_append(v, ["𐎋𐎒𐎄", "noun", "𐎋𐎒𐎄", "", "", "", "an unknown type"]) + let v = native_list_append(v, ["𐎋𐎒𐎔", "noun", "𐎋𐎒𐎔", "", "", "", "silver"]) + let v = native_list_append(v, ["𐎋𐎌𐎔", "noun", "𐎋𐎌𐎔", "", "", "", "conjurer wizard sorcerer"]) + let v = native_list_append(v, ["𐎑𐎗𐎆", "noun", "𐎑𐎗𐎆", "", "", "", "balsam"]) + let v = native_list_append(v, ["𐎑𐎗", "noun", "𐎑𐎗", "", "", "", "back of a"]) + let v = native_list_append(v, ["𐎀𐎗", "noun", "𐎀𐎗", "", "", "", "light illumination"]) + let v = native_list_append(v, ["𐎛𐎌𐎗𐎊𐎚", "noun", "𐎛𐎌𐎗𐎊𐎚", "", "", "", "happiness"]) + let v = native_list_append(v, ["𐎜𐎘𐎋𐎍", "noun", "𐎜𐎘𐎋𐎍", "", "", "", "cluster of grapes"]) + let v = native_list_append(v, ["𐎓𐎏𐎗𐎚", "noun", "𐎓𐎏𐎗𐎚", "", "", "", "help aid"]) + let v = native_list_append(v, ["𐎓𐎍𐎎", "noun", "𐎓𐎍𐎎", "", "", "", "eternity"]) + let v = native_list_append(v, ["𐎓𐎎𐎒𐎐", "noun", "𐎓𐎎𐎒𐎐", "", "", "", "cargo"]) + let v = native_list_append(v, ["𐎓𐎖𐎁", "noun", "𐎓𐎖𐎁", "", "", "", "heel"]) + let v = native_list_append(v, ["𐎎𐎂𐎐", "noun", "𐎎𐎂𐎐", "", "", "", "gift present"]) + let v = native_list_append(v, ["𐎅𐎎𐎍𐎚", "noun", "𐎅𐎎𐎍𐎚", "", "", "", "throng"]) + let v = native_list_append(v, ["𐎋𐎒𐎎", "noun", "𐎋𐎒𐎎", "", "", "", "edge limit"]) + let v = native_list_append(v, ["𐎋𐎝𐎎", "noun", "𐎋𐎝𐎎", "", "", "", "spelt a type"]) + let v = native_list_append(v, ["𐎖𐎍𐎖𐎍", "noun", "𐎖𐎍𐎖𐎍", "", "", "", "cardamom"]) + let v = native_list_append(v, ["𐎖𐎐", "noun", "𐎖𐎐", "", "", "", "cane reed"]) + let v = native_list_append(v, ["𐎜𐎂𐎗", "noun", "𐎜𐎂𐎗", "", "", "", "field soil"]) + let v = native_list_append(v, ["𐎋𐎒𐎜", "noun", "𐎋𐎒𐎜", "", "", "", "chair throne"]) + let v = native_list_append(v, ["𐎓𐎔𐎗𐎚", "noun", "𐎓𐎔𐎗𐎚", "", "", "", "cloak"]) + let v = native_list_append(v, ["𐎎𐎈𐎚𐎗𐎚", "noun", "𐎎𐎈𐎚𐎗𐎚", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎎𐎋𐎋", "noun", "𐎎𐎋𐎋", "", "", "", "carpet"]) + let v = native_list_append(v, ["𐎎𐎋𐎒", "noun", "𐎎𐎋𐎒", "", "", "", "blanket"]) + let v = native_list_append(v, ["𐎎𐎗𐎁𐎄", "noun", "𐎎𐎗𐎁𐎄", "", "", "", "bedspread coverlet"]) + let v = native_list_append(v, ["𐎎𐎘𐎗", "noun", "𐎎𐎘𐎗", "", "", "", "saddlecloth"]) + let v = native_list_append(v, ["𐎚𐎙𐎔𐎘", "noun", "𐎚𐎙𐎔𐎘", "", "", "", "felt type of"]) + let v = native_list_append(v, ["𐎂𐎃𐎚", "noun", "𐎂𐎃𐎚", "", "", "", "sash"]) + let v = native_list_append(v, ["𐎈𐎁𐎌", "noun", "𐎈𐎁𐎌", "", "", "", "girdle belt"]) + let v = native_list_append(v, ["𐎜𐎌𐎔𐎙𐎚", "noun", "𐎜𐎌𐎔𐎙𐎚", "", "", "", "an unknown type"]) + let v = native_list_append(v, ["𐎛𐎁𐎓𐎍𐎚", "noun", "𐎛𐎁𐎓𐎍𐎚", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎄𐎄𐎎𐎌", "noun", "𐎄𐎄𐎎𐎌", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎄𐎂𐎐", "noun", "𐎄𐎂𐎐", "", "", "", "grain"]) + let v = native_list_append(v, ["𐎃𐎊𐎗", "noun", "𐎃𐎊𐎗", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎃𐎉", "noun", "𐎃𐎉", "", "", "", "rod"]) + let v = native_list_append(v, ["𐎒𐎋", "noun", "𐎒𐎋", "", "", "", "den lair"]) + let v = native_list_append(v, ["𐎃𐎍𐎕", "noun", "𐎃𐎍𐎕", "", "", "", "oppression"]) + let v = native_list_append(v, ["𐎚𐎂", "noun", "𐎚𐎂", "", "", "", "pain"]) + let v = native_list_append(v, ["𐎈𐎗𐎐", "noun", "𐎈𐎗𐎐", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎄𐎁𐎍𐎚", "noun", "𐎄𐎁𐎍𐎚", "", "", "", "a cake made"]) + let v = native_list_append(v, ["𐎓𐎋𐎊", "noun", "𐎓𐎋𐎊", "", "", "", "Acre/Acco a coastal"]) + let v = native_list_append(v, ["𐎐𐎔𐎋", "noun", "𐎐𐎔𐎋", "", "", "", "spring of water"]) + let v = native_list_append(v, ["𐎓𐎔𐎝", "noun", "𐎓𐎔𐎝", "", "", "", "boundary"]) + let v = native_list_append(v, ["𐎔𐎄𐎗𐎊", "noun", "𐎔𐎄𐎗𐎊", "", "", "", "Pidray name of"]) + let v = native_list_append(v, ["𐎕𐎎𐎍𐎍", "noun", "𐎕𐎎𐎍𐎍", "", "", "", "a type of"]) + let v = native_list_append(v, ["𐎁𐎗𐎗", "noun", "𐎁𐎗𐎗", "", "", "", "tin metal"]) + let v = native_list_append(v, ["𐎈𐎉𐎁", "noun", "𐎈𐎉𐎁", "", "", "", "woodcutter"]) + let v = native_list_append(v, ["𐎅𐎁𐎐", "noun", "𐎅𐎁𐎐", "", "", "", "ebony type of"]) + let v = native_list_append(v, ["𐎂𐎗𐎂𐎎𐎌", "noun", "𐎂𐎗𐎂𐎎𐎌", "", "", "", "Carchemish a city"]) + let v = native_list_append(v, ["𐎜𐎍𐎎𐎐", "noun", "𐎜𐎍𐎎𐎐", "", "", "", "widowhood"]) + let v = native_list_append(v, ["𐎜𐎃𐎗𐎊", "noun", "𐎜𐎃𐎗𐎊", "", "", "", "posterity"]) + let v = native_list_append(v, ["𐎛𐎍𐎛𐎁", "noun", "𐎛𐎍𐎛𐎁", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎛𐎗𐎙𐎐", "noun", "𐎛𐎗𐎙𐎐", "", "", "", "fennel"]) + let v = native_list_append(v, ["𐎁𐎐𐎊", "noun", "𐎁𐎐𐎊", "", "", "", "builds"]) + let v = native_list_append(v, ["𐎁𐎖𐎍", "noun", "𐎁𐎖𐎍", "", "", "", "groats"]) + let v = native_list_append(v, ["𐎃𐎍𐎁", "noun", "𐎃𐎍𐎁", "", "", "", "Aleppo a city"]) + let v = native_list_append(v, ["𐎈𐎔𐎐", "noun", "𐎈𐎔𐎐", "", "", "", "handful"]) + let v = native_list_append(v, ["𐎉𐎍𐎊", "noun", "𐎉𐎍𐎊", "", "", "", "Tallay the goddess"]) + let v = native_list_append(v, ["𐎋𐎁𐎍", "noun", "𐎋𐎁𐎍", "", "", "", "legging"]) + let v = native_list_append(v, ["𐎋𐎔𐎚𐎗", "noun", "𐎋𐎔𐎚𐎗", "", "", "", "Crete"]) + let v = native_list_append(v, ["𐎋𐎘𐎗𐎚", "noun", "𐎋𐎘𐎗𐎚", "", "", "", "the Kotharot seven"]) + let v = native_list_append(v, ["𐎌𐎎𐎚", "noun", "𐎌𐎎𐎚", "", "", "", "carnelian"]) + let v = native_list_append(v, ["𐎍𐎈𐎚", "noun", "𐎍𐎈𐎚", "", "", "", "tablet"]) + let v = native_list_append(v, ["𐎎𐎏𐎗", "noun", "𐎎𐎏𐎗", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎎𐎐𐎄𐎙", "noun", "𐎎𐎐𐎄𐎙", "", "", "", "an unknown type"]) + let v = native_list_append(v, ["𐎐𐎕𐎔", "noun", "𐎐𐎕𐎔", "", "", "", "a unit of"]) + let v = native_list_append(v, ["𐎐𐎖𐎎𐎄", "noun", "𐎐𐎖𐎎𐎄", "", "", "", "Niqmaddu a king"]) + let v = native_list_append(v, ["𐎐𐎖𐎎𐎔𐎓", "noun", "𐎐𐎖𐎎𐎔𐎓", "", "", "", "Niqmepa a king"]) + let v = native_list_append(v, ["𐎊𐎓𐎁𐎄𐎗", "noun", "𐎊𐎓𐎁𐎄𐎗", "", "", "", "name of a"]) + let v = native_list_append(v, ["𐎓𐎎𐎗𐎔𐎛", "noun", "𐎓𐎎𐎗𐎔𐎛", "", "", "", "Ammurapi a king"]) + let v = native_list_append(v, ["𐎓𐎎𐎘𐎚𐎎𐎗", "noun", "𐎓𐎎𐎘𐎚𐎎𐎗", "", "", "", "Ammithtamru a king"]) + let v = native_list_append(v, ["𐎓𐎘𐎚𐎗", "noun", "𐎓𐎘𐎚𐎗", "", "", "", "Athtar a god"]) + let v = native_list_append(v, ["𐎘𐎋𐎍", "noun", "𐎘𐎋𐎍", "", "", "", "bereavement"]) + let v = native_list_append(v, ["𐎙𐎍𐎎", "noun", "𐎙𐎍𐎎", "", "", "", "boy lad"]) + let v = native_list_append(v, ["𐎊𐎄𐎋", "noun", "𐎊𐎄𐎋", "", "", "", "penis"]) + let v = native_list_append(v, ["𐎃𐎚𐎐", "noun", "𐎃𐎚𐎐", "", "", "", "son-in-law"]) + let v = native_list_append(v, ["𐎀𐎗𐎌", "noun", "𐎀𐎗𐎌", "", "", "", "Arshu monster"]) + let v = native_list_append(v, ["𐎄𐎙𐎘", "noun", "𐎄𐎙𐎘", "", "", "", "offering of perfumes"]) + let v = native_list_append(v, ["𐎋𐎗", "noun", "𐎋𐎗", "", "", "", "ram"]) + let v = native_list_append(v, ["𐎁", "prep", "𐎁", "", "", "", "in within"]) + let v = native_list_append(v, ["𐎋", "prep", "𐎋", "", "", "", "like"]) + let v = native_list_append(v, ["𐎍", "prep", "𐎍", "", "", "", "to for"]) + let v = native_list_append(v, ["𐎀𐎃𐎗", "prep", "𐎀𐎃𐎗", "", "", "", "after"]) + let v = native_list_append(v, ["𐎓𐎄", "prep", "𐎓𐎄", "", "", "", "up to until"]) + let v = native_list_append(v, ["𐎓𐎎", "prep", "𐎓𐎎", "", "", "", "with"]) + let v = native_list_append(v, ["𐎓𐎍", "prep", "𐎓𐎍", "", "", "", "upon"]) + let v = native_list_append(v, ["𐎚𐎈𐎚", "prep", "𐎚𐎈𐎚", "", "", "", "under"]) + let v = native_list_append(v, ["𐎁𐎊𐎄", "prep", "𐎁𐎊𐎄", "", "", "", "in the hand"]) + let v = native_list_append(v, ["𐎁𐎚𐎋", "prep", "𐎁𐎚𐎋", "", "", "", "in the midst"]) + let v = native_list_append(v, ["𐎍𐎔𐎐", "prep", "𐎍𐎔𐎐", "", "", "", "in front of"]) + let v = native_list_append(v, ["𐎁𐎐", "prep", "𐎁𐎐", "", "", "", "between among"]) + let v = native_list_append(v, ["𐎖𐎄𐎎", "prep", "𐎖𐎄𐎎", "", "", "", "before in front"]) + let v = native_list_append(v, ["𐎁𐎎", "prep", "𐎁𐎎", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐎁𐎄", "prep", "𐎁𐎄", "", "", "", "contraction of 𐎁𐎊𐎄"]) + let v = native_list_append(v, ["𐎁𐎓𐎄", "prep", "𐎁𐎓𐎄", "", "", "", "behind"]) + let v = native_list_append(v, ["𐎄", "pron", "𐎄", "", "", "", "the relative pronoun"]) + let v = native_list_append(v, ["𐎀𐎐", "pron", "𐎀𐎐", "", "", "", "I"]) + let v = native_list_append(v, ["𐎀𐎐𐎋", "pron", "𐎀𐎐𐎋", "", "", "", "I"]) + let v = native_list_append(v, ["𐎀𐎚", "pron", "𐎀𐎚", "", "", "", "you"]) + let v = native_list_append(v, ["𐎀𐎚𐎎", "pron", "𐎀𐎚𐎎", "", "", "", "you masculine plural"]) + let v = native_list_append(v, ["𐎅𐎆", "pron", "𐎅𐎆", "", "", "", "he"]) + let v = native_list_append(v, ["𐎅𐎎", "pron", "𐎅𐎎", "", "", "", "they"]) + let v = native_list_append(v, ["𐎅𐎊", "pron", "𐎅𐎊", "", "", "", "she"]) + let v = native_list_append(v, ["𐎅𐎆𐎚", "pron", "𐎅𐎆𐎚", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["𐎅𐎎𐎚", "pron", "𐎅𐎎𐎚", "", "", "", "oblique dual of"]) + let v = native_list_append(v, ["𐎅𐎊𐎚", "pron", "𐎅𐎊𐎚", "", "", "", "oblique singular of"]) + let v = native_list_append(v, ["𐎎𐎊", "pron", "𐎎𐎊", "", "", "", "who"]) + let v = native_list_append(v, ["𐎎𐎅", "pron", "𐎎𐎅", "", "", "", "what"]) + let v = native_list_append(v, ["𐎎𐎐", "pron", "𐎎𐎐", "", "", "", "whoever"]) + let v = native_list_append(v, ["𐎎𐎐𐎋", "pron", "𐎎𐎐𐎋", "", "", "", "whoever"]) + let v = native_list_append(v, ["𐎎𐎐𐎎", "pron", "𐎎𐎐𐎎", "", "", "", "whatever"]) + let v = native_list_append(v, ["𐎅𐎐", "pron", "𐎅𐎐", "", "", "", "they"]) + let v = native_list_append(v, ["𐎆", "conj", "𐎆", "", "", "", "and coordinating conjunction"]) + let v = native_list_append(v, ["𐎔", "conj", "𐎔", "", "", "", "and"]) + let v = native_list_append(v, ["𐎜", "conj", "𐎜", "", "", "", "or either both"]) + let v = native_list_append(v, ["𐎓𐎄", "conj", "𐎓𐎄", "", "", "", "until"]) + let v = native_list_append(v, ["𐎛𐎋𐎎𐎊", "conj", "𐎛𐎋𐎎𐎊", "", "", "", "since"]) + let v = native_list_append(v, ["𐎛𐎎", "conj", "𐎛𐎎", "", "", "", "if"]) + let v = native_list_append(v, ["𐎔", "adv", "𐎔", "", "", "", "here"]) + let v = native_list_append(v, ["𐎛𐎊", "adv", "𐎛𐎊", "", "", "", "where"]) + let v = native_list_append(v, ["𐎛𐎋", "adv", "𐎛𐎋", "", "", "", "how"]) + let v = native_list_append(v, ["𐎍𐎎", "adv", "𐎍𐎎", "", "", "", "why"]) + let v = native_list_append(v, ["𐎓𐎚", "adv", "𐎓𐎚", "", "", "", "now"]) + let v = native_list_append(v, ["𐎅𐎔", "adv", "𐎅𐎔", "", "", "", "now rhetorical"]) + let v = native_list_append(v, ["𐎀𐎔", "adv", "𐎀𐎔", "", "", "", "also"]) + let v = native_list_append(v, ["𐎓𐎍𐎐", "adv", "𐎓𐎍𐎐", "", "", "", "above"]) + let v = native_list_append(v, ["𐎎𐎐𐎄𐎓", "adv", "𐎎𐎐𐎄𐎓", "", "", "", "perhaps maybe"]) + let v = native_list_append(v, ["𐎘𐎎", "adv", "𐎘𐎎", "", "", "", "there in that"]) + let v = native_list_append(v, ["𐎘𐎍𐎘𐎛𐎄", "adv", "𐎘𐎍𐎘𐎛𐎄", "", "", "", "thrice three times"]) + let v = native_list_append(v, ["𐎛𐎄𐎊", "adv", "𐎛𐎄𐎊", "", "", "", "already"]) + let v = native_list_append(v, ["𐎀𐎈𐎄𐎅", "adv", "𐎀𐎈𐎄𐎅", "", "", "", "together"]) + let v = native_list_append(v, ["𐎜𐎋", "adv", "𐎜𐎋", "", "", "", "certainly for certain"]) + let v = native_list_append(v, ["𐎎𐎚𐎗", "adv", "𐎎𐎚𐎗", "", "", "", "besides in addition"]) + let v = native_list_append(v, ["𐎛𐎚𐎎𐎍", "adv", "𐎛𐎚𐎎𐎍", "", "", "", "yesterday"]) + let v = native_list_append(v, ["𐎀𐎎𐎄", "adv", "𐎀𐎎𐎄", "", "", "", "always"]) + let v = native_list_append(v, ["𐎎𐎛𐎄", "adv", "𐎎𐎛𐎄", "", "", "", "very"]) + let v = native_list_append(v, ["𐎎𐎓", "adv", "𐎎𐎓", "", "", "", "as one together."]) + let v = native_list_append(v, ["𐎎𐎍𐎋", "verb", "mlk", "malaka", "", "", "to rule reign"]) + let v = native_list_append(v, ["𐎅𐎍𐎋", "verb", "hlk", "", "", "", "to go"]) + let v = native_list_append(v, ["𐎊𐎗𐎄", "verb", "yrd", "", "", "", "to descend go"]) + let v = native_list_append(v, ["𐎓𐎍𐎊", "verb", "ʿly", "", "", "", "to ascend go"]) + let v = native_list_append(v, ["𐎘𐎁", "verb", "ṯb", "", "", "", "to return go"]) + let v = native_list_append(v, ["𐎖𐎎", "verb", "qm", "qâma", "", "", "to arise stand"]) + let v = native_list_append(v, ["𐎌𐎋𐎁", "verb", "škb", "", "", "", "to lie lie"]) + let v = native_list_append(v, ["𐎓𐎎𐎄", "verb", "ʿmd", "", "", "", "to stand"]) + let v = native_list_append(v, ["𐎗𐎋𐎁", "verb", "rkb", "rakVba", "", "", "to ride"]) + let v = native_list_append(v, ["𐎚𐎁𐎓", "verb", "tbʿ", "", "", "", "to leave depart"]) + let v = native_list_append(v, ["𐎎𐎙𐎊", "verb", "mġy", "", "", "", "to go"]) + let v = native_list_append(v, ["𐎀𐎃𐎏", "verb", "ảḫḏ", "ʾaḫaḏa", "", "", "to take"]) + let v = native_list_append(v, ["𐎀𐎋𐎍", "verb", "ảkl", "", "", "", "to eat"]) + let v = native_list_append(v, ["𐎁𐎐", "verb", "bn", "", "", "", "understand"]) + let v = native_list_append(v, ["𐎈𐎗𐎘", "verb", "ḥrṯ", "", "", "", "to plough"]) + let v = native_list_append(v, ["𐎎𐎚", "verb", "mt", "", "", "", "to die"]) + let v = native_list_append(v, ["𐎁𐎗𐎋", "verb", "brk", "", "", "", "to bless"]) + let v = native_list_append(v, ["𐎄𐎐", "verb", "dn", "", "", "", "to judge to"]) + let v = native_list_append(v, ["𐎋𐎚𐎁", "verb", "ktb", "kataba", "", "", "to write"]) + let v = native_list_append(v, ["𐎊𐎎𐎐𐎐", "verb", "ymnn", "", "", "", "to take with"]) + let v = native_list_append(v, ["𐎍𐎈𐎎", "verb", "lḥm", "", "", "", "to eat"]) + let v = native_list_append(v, ["𐎎𐎒𐎋", "verb", "msk", "", "", "", "to mix combine"]) + let v = native_list_append(v, ["𐎊𐎍𐎄", "verb", "yld", "", "", "", "to bear give"]) + let v = native_list_append(v, ["𐎇𐎎𐎗", "verb", "zmr", "", "", "", "to sing"]) + let v = native_list_append(v, ["𐎄𐎁𐎈", "verb", "dbḥ", "", "", "", "to sacrifice"]) + let v = native_list_append(v, ["𐎔𐎚𐎈", "verb", "ptḥ", "", "", "", "to open"]) + let v = native_list_append(v, ["𐎖𐎁𐎗", "verb", "qbr", "", "", "", "to bury inter"]) + let v = native_list_append(v, ["𐎖𐎐𐎊", "verb", "qny", "", "", "", "to create establish"]) + let v = native_list_append(v, ["𐎅𐎗𐎊", "verb", "hry", "", "", "", "to conceive a"]) + let v = native_list_append(v, ["𐎋𐎗𐎋𐎗", "verb", "krkr", "", "", "", "to dance"]) + let v = native_list_append(v, ["𐎒𐎔𐎗", "verb", "spr", "sapara", "", "", "to count tally"]) + let v = native_list_append(v, ["𐎄𐎁𐎗", "verb", "dbr", "", "", "", "to speak"]) + let v = native_list_append(v, ["𐎕𐎔𐎗", "verb", "ṣpr", "", "", "", "to whistle"]) + let v = native_list_append(v, ["𐎏𐎎𐎗", "verb", "ḏmr", "", "", "", "to make music"]) + let v = native_list_append(v, ["𐎊𐎄𐎓", "verb", "ydʿ", "", "", "", "to know"]) + let v = native_list_append(v, ["𐎍𐎛𐎋", "verb", "lỉk", "𐎍𐎀𐎋", "", "", "to send"]) + let v = native_list_append(v, ["𐎕𐎎𐎚", "verb", "ṣmt", "", "", "", "to destroy wipe"]) + let v = native_list_append(v, ["𐎐𐎙𐎗", "verb", "nġr", "", "", "", "to guard protect"]) + let v = native_list_append(v, ["𐎍𐎖𐎈", "verb", "lqḥ", "", "", "", "to take"]) + let v = native_list_append(v, ["𐎕𐎈𐎖", "verb", "ṣḥq", "", "", "", "to laugh"]) + let v = native_list_append(v, ["𐎋𐎁𐎄", "verb", "kbd", "kabada", "", "", "to extol"]) + let v = native_list_append(v, ["𐎘𐎁𐎗", "verb", "ṯbr", "", "", "", "to break"]) + let v = native_list_append(v, ["𐎌𐎚𐎊", "verb", "šty", "", "", "", "to drink"]) + let v = native_list_append(v, ["𐎌𐎚", "verb", "št", "šâta", "", "", "to put place"]) + let v = native_list_append(v, ["𐎌𐎗𐎔", "verb", "šrp", "", "", "", "to burn"]) + let v = native_list_append(v, ["𐎌𐎔𐎋", "verb", "špk", "", "", "", "to spill shed"]) + let v = native_list_append(v, ["𐎌𐎐𐎀", "verb", "šnả", "", "", "", "to hate loathe"]) + let v = native_list_append(v, ["𐎎𐎍𐎀", "verb", "mlả", "", "", "", "to fill fill"]) + let v = native_list_append(v, ["𐎌𐎎𐎃", "verb", "šmḫ", "šamiḫa", "", "", "to rejoice"]) + let v = native_list_append(v, ["𐎌𐎎𐎓", "verb", "šmʿ", "šamiʿa", "", "", "to hear listen"]) + let v = native_list_append(v, ["𐎖𐎗𐎁", "verb", "qrb", "", "", "", "to approach come"]) + let v = native_list_append(v, ["𐎌𐎀𐎍", "verb", "šảl", "", "", "", "to ask a"]) + let v = native_list_append(v, ["𐎊𐎕𐎀", "verb", "yṣả", "", "", "", "to exit go"]) + let v = native_list_append(v, ["𐎕𐎈", "verb", "ṣḥ", "", "", "", "to shout cry"]) + let v = native_list_append(v, ["𐎕𐎄", "verb", "ṣd", "", "", "", "to hunt"]) + let v = native_list_append(v, ["𐎒𐎂𐎗", "verb", "sgr", "", "", "", "to close shut"]) + let v = native_list_append(v, ["𐎗𐎈𐎕", "verb", "rḥṣ", "", "", "", "to wash"]) + let v = native_list_append(v, ["𐎐𐎔𐎍", "verb", "npl", "", "", "", "to fall fall"]) + let v = native_list_append(v, ["𐎔𐎍𐎉", "verb", "plṭ", "", "", "", "to save rescue"]) + let v = native_list_append(v, ["𐎐𐎘𐎋", "verb", "nṯk", "", "", "", "to bite"]) + let v = native_list_append(v, ["𐎐𐎌𐎖", "verb", "nšq", "našVqa", "", "", "to kiss"]) + let v = native_list_append(v, ["𐎐𐎌𐎀", "verb", "nšả", "", "", "", "to raise lift"]) + let v = native_list_append(v, ["𐎐𐎂𐎌", "verb", "ngš", "", "", "", "to chase pursue"]) + let v = native_list_append(v, ["𐎐𐎂𐎈", "verb", "ngḥ", "", "", "", "to gore stab"]) + let v = native_list_append(v, ["𐎎𐎌𐎈", "verb", "mšḥ", "", "", "", "to anoint"]) + let v = native_list_append(v, ["𐎎𐎃𐎕", "verb", "mḫṣ", "maḫiṣa", "", "", "to hit strike"]) + let v = native_list_append(v, ["𐎍𐎎𐎄", "verb", "lmd", "", "", "", "to teach instruct"]) + let v = native_list_append(v, ["𐎍𐎀𐎋", "verb", "lảk", "", "", "", "alternative form of"]) + let v = native_list_append(v, ["𐎄𐎎𐎓", "verb", "dmʿ", "damaʿa", "", "", "cry weep shed"]) + let v = native_list_append(v, ["𐎄𐎈𐎍", "verb", "dḥl", "", "", "", "to fear be"]) + let v = native_list_append(v, ["𐎁𐎙𐎊", "verb", "bġy", "", "", "", "to show display"]) + let v = native_list_append(v, ["𐎁𐎋𐎊", "verb", "bky", "", "", "", "to cry weep"]) + let v = native_list_append(v, ["𐎊𐎌𐎐", "verb", "yšn", "", "", "", "to sleep slumber"]) + let v = native_list_append(v, ["𐎆𐎔𐎘", "verb", "wpṯ", "", "", "", "to spit"]) + let v = native_list_append(v, ["𐎊𐎘𐎁", "verb", "yṯb", "", "", "", "to sit sit"]) + let v = native_list_append(v, ["𐎂𐎓𐎗", "verb", "gʿr", "", "", "", "to reproach rebuke"]) + let v = native_list_append(v, ["𐎂𐎗𐎌", "verb", "grš", "", "", "", "to expel drive"]) + let v = native_list_append(v, ["𐎊𐎐𐎖", "verb", "ynq", "", "", "", "to suck"]) + let v = native_list_append(v, ["𐎉𐎈𐎐", "verb", "ṭḥn", "", "", "", "to grind crush"]) + let v = native_list_append(v, ["𐎗𐎚𐎖", "verb", "rtq", "", "", "", "to tie up"]) + let v = native_list_append(v, ["𐎈𐎄𐎊", "verb", "ḥdy", "", "", "", "to see look"]) + let v = native_list_append(v, ["𐎈𐎁𐎖", "verb", "ḥbq", "", "", "", "to embrace hug"]) + let v = native_list_append(v, ["𐎊𐎁𐎍", "verb", "ybl", "", "", "", "to bring carry"]) + let v = native_list_append(v, ["𐎖𐎁𐎀", "verb", "qbả", "", "", "", "to summon conjure"]) + let v = native_list_append(v, ["𐎃𐎗𐎀", "verb", "ḫrả", "ḫariʾa", "", "", "to defecate"]) + let v = native_list_append(v, ["𐎃𐎗𐎁", "verb", "ḫrb", "", "", "", "to wither dry"]) + let v = native_list_append(v, ["𐎓𐎏𐎗", "verb", "ʿḏr", "", "", "", "to help aid"]) + let v = native_list_append(v, ["𐎓𐎍𐎂", "verb", "ʿlg", "", "", "", "to stutter stammer"]) + let v = native_list_append(v, ["𐎓𐎐", "verb", "ʿn", "", "", "", "to see look"]) + let v = native_list_append(v, ["𐎓𐎐𐎊", "verb", "ʿny", "", "", "", "to answer"]) + let v = native_list_append(v, ["𐎓𐎔", "verb", "ʿp", "", "", "", "to fly"]) + let v = native_list_append(v, ["𐎓𐎗𐎋", "verb", "ʿrk", "", "", "", "to prepare"]) + let v = native_list_append(v, ["𐎓𐎌𐎊", "verb", "ʿšy", "", "", "", "to make do"]) + let v = native_list_append(v, ["𐎄𐎍𐎍", "verb", "dll", "", "", "", "to oppress subjugate"]) + let v = native_list_append(v, ["𐎅𐎗𐎂", "verb", "hrg", "", "", "", "to kill"]) + let v = native_list_append(v, ["𐎘𐎚𐎐", "verb", "ṯtn", "", "", "", "to urinate"]) + let v = native_list_append(v, ["𐎖𐎗𐎕", "verb", "qrṣ", "", "", "", "to mold model"]) + let v = native_list_append(v, ["𐎂𐎂𐎗𐎌", "verb", "ggrš", "", "", "", "to drive out"]) + let v = native_list_append(v, ["𐎋𐎗𐎊", "verb", "kry", "", "", "", "to dig"]) + let v = native_list_append(v, ["𐎊𐎚𐎐", "verb", "ytn", "", "", "", "to give"]) + let v = native_list_append(v, ["𐎖𐎍𐎕", "verb", "qlṣ", "", "", "", "to resist oppose"]) + let v = native_list_append(v, ["𐎖𐎐𐎕", "verb", "qnṣ", "", "", "", "to squat crouch"]) + let v = native_list_append(v, ["𐎖𐎗𐎀", "verb", "qrả", "qaraʾa", "", "", "to call call"]) + let v = native_list_append(v, ["𐎖𐎗𐎊", "verb", "qry", "", "", "", "to meet encounter"]) + let v = native_list_append(v, ["𐎄𐎊𐎐", "verb", "𐎄𐎊𐎐 .", "dyn", "dāna", "", "to judge"]) + let v = native_list_append(v, ["𐎗𐎎𐎊", "verb", "rmy", "", "", "", "to throw cast"]) + let v = native_list_append(v, ["𐎁𐎌𐎍", "verb", "bšl", "", "", "", "to cook"]) + let v = native_list_append(v, ["𐎃𐎉𐎀", "verb", "ḫṭả", "", "", "", "to sin"]) + let v = native_list_append(v, ["𐎁𐎅𐎍", "verb", "bhl", "", "", "", "to dismiss set"]) + let v = native_list_append(v, ["𐎅𐎁𐎗", "verb", "hbr", "", "", "", "to bow down"]) + let v = native_list_append(v, ["𐎀𐎁𐎄", "verb", "ảbd", "", "", "", "to perish"]) + let v = native_list_append(v, ["𐎀𐎅𐎁", "verb", "ảhb", "", "", "", "to love"]) + let v = native_list_append(v, ["𐎁𐎐𐎊", "verb", "bny", "", "", "", "to build construct"]) + let v = native_list_append(v, ["𐎍𐎐", "verb", "ln", "", "", "", "to spend the"]) + let v = native_list_append(v, ["𐎐𐎃", "verb", "nḫ", "", "", "", "to rest"]) + let v = native_list_append(v, ["𐎐𐎈𐎚", "verb", "nḥt", "", "", "", "to prepare"]) + let v = native_list_append(v, ["𐎀𐎎𐎗", "verb", "ảmr", "ʾamara", "", "", "to see"]) + let v = native_list_append(v, ["𐎃𐎚𐎐", "verb", "ḫtn", "ḫatana", "", "", "to marry said"]) + let v = native_list_append(v, ["𐎀𐎗𐎌", "verb", "ảrš", "", "", "", "to request wish"]) + let v = native_list_append(v, ["𐎘𐎍𐎘", "adj", "𐎘𐎍𐎘", "", "", "", "third"]) + let v = native_list_append(v, ["𐎃𐎎𐎌", "adj", "𐎃𐎎𐎌", "", "", "", "fifth"]) + let v = native_list_append(v, ["𐎌𐎍𐎎", "adj", "𐎌𐎍𐎎", "", "", "", "complete"]) + let v = native_list_append(v, ["𐎊𐎗𐎖", "adj", "𐎊𐎗𐎖", "", "", "", "yellow"]) + let v = native_list_append(v, ["𐎖𐎄𐎌", "adj", "𐎖𐎄𐎌", "", "", "", "holy sacred"]) + let v = native_list_append(v, ["𐎖𐎕𐎗", "adj", "𐎖𐎕𐎗", "", "", "", "short"]) + let v = native_list_append(v, ["𐎋𐎐𐎊𐎚", "adj", "𐎋𐎐𐎊𐎚", "", "", "", "delicate"]) + let v = native_list_append(v, ["𐎀𐎎𐎗𐎗", "adj", "𐎀𐎎𐎗𐎗", "", "", "", "blessed"]) + let v = native_list_append(v, ["𐎉𐎁", "adj", "𐎉𐎁", "", "", "", "good"]) + let v = native_list_append(v, ["𐎊𐎄𐎓", "adj", "𐎊𐎄𐎓", "", "", "", "learned"]) + let v = native_list_append(v, ["𐎓𐎇", "adj", "𐎓𐎇", "", "", "", "strong powerful mighty"]) + let v = native_list_append(v, ["𐎗𐎈𐎁", "adj", "𐎗𐎈𐎁", "", "", "", "wide broad spacious"]) + let v = native_list_append(v, ["𐎊𐎎𐎐", "adj", "𐎊𐎎𐎐", "", "", "", "right opposite of"]) + let v = native_list_append(v, ["𐎗𐎁", "adj", "𐎗𐎁", "", "", "", "great large big"]) + let v = native_list_append(v, ["𐎀𐎁𐎊𐎐", "adj", "𐎀𐎁𐎊𐎐", "", "", "", "poor impoverished"]) + let v = native_list_append(v, ["𐎈𐎄𐎘", "adj", "𐎈𐎄𐎘", "", "", "", "new"]) + let v = native_list_append(v, ["𐎈𐎋𐎎", "adj", "𐎈𐎋𐎎", "", "", "", "wise"]) + let v = native_list_append(v, ["𐎌𐎎𐎀𐎍", "adj", "𐎌𐎎𐎀𐎍", "", "", "", "left opposite of"]) + let v = native_list_append(v, ["𐎌𐎗𐎗", "adj", "𐎌𐎗𐎗", "", "", "", "true"]) + let v = native_list_append(v, ["𐎕𐎙𐎗", "adj", "𐎕𐎙𐎗", "", "", "", "small little"]) + let v = native_list_append(v, ["𐎎𐎗", "adj", "𐎎𐎗", "", "", "", "bitter"]) + let v = native_list_append(v, ["𐎊𐎘𐎐", "adj", "𐎊𐎘𐎐", "", "", "", "old aged"]) + let v = native_list_append(v, ["𐎍𐎁𐎐", "adj", "𐎍𐎁𐎐", "", "", "", "white"]) + let v = native_list_append(v, ["𐎉𐎅𐎗", "adj", "𐎉𐎅𐎗", "", "", "", "pure unadulterated"]) + let v = native_list_append(v, ["𐎎𐎚𐎖", "adj", "𐎎𐎚𐎖", "", "", "", "sweet"]) + let v = native_list_append(v, ["𐎊𐎈𐎄", "adj", "𐎊𐎈𐎄", "", "", "", "solitary alone"]) + let v = native_list_append(v, ["𐎋𐎚𐎚", "adj", "𐎋𐎚𐎚", "", "", "", "ground powdered"]) + let v = native_list_append(v, ["𐎅𐎐𐎄", "adj", "𐎅𐎐𐎄", "", "", "", "this these"]) + let v = native_list_append(v, ["𐎊𐎒𐎎", "adj", "𐎊𐎒𐎎", "", "", "", "beautiful"]) + let v = native_list_append(v, ["𐎘𐎄𐎘", "adj", "𐎘𐎄𐎘", "", "", "", "sixth"]) + let v = native_list_append(v, ["𐎛𐎐", "particle", "𐎛𐎐", "", "", "", "non-existence there is"]) + return v +} + +fn vocab_uga_lookup(word: String) -> [String] { + let vocab: [[String]] = vocab_uga_seed() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + if str_eq(native_list_get(entry, 0), word) { return entry } + let i = i + 1 + } + return native_list_empty() +} diff --git a/elp/src/vocabulary.el b/elp/src/vocabulary.el new file mode 100644 index 0000000..e27f2d7 --- /dev/null +++ b/elp/src/vocabulary.el @@ -0,0 +1,369 @@ +// vocabulary.el - Vocabulary query interface with inline seed data. +// +// Represents lexical entries with POS, morphological forms, semantic class, +// synonyms, and a language code. Inline data covers English vocabulary needed +// for grammar tests. The long-term backing store is the Neuron Engram (queried +// at runtime via searchKnowledge(query="VOCAB: ", category="vocabulary")), +// but inline data is used for bootstrapping. +// +// Language codes follow ISO 639-1. The seed data below is English ("en"). +// Vocabulary for other languages is loaded from the Engram at runtime; the +// engine functions `vocab_lookup` and `vocab_synonym` accept a lang_code +// parameter to filter results by language. +// +// POS values: "noun" | "verb" | "adjective" | "adverb" | "determiner" | +// "preposition" | "pronoun" | "conjunction" | "auxiliary" + +// ── LexEntry: a single lexeme ───────────────────────────────────────────────── +// +// forms meaning: +// noun: [singular, plural] +// verb: [base, 3sg, past, pastpart, gerund] +// pronoun: [nominative, accusative, genitive] +// other: [word] + +fn lex_word(entry: [String]) -> String { + return native_list_get(entry, 0) +} + +fn lex_pos(entry: [String]) -> String { + return native_list_get(entry, 1) +} + +fn lex_form(entry: [String], idx: Int) -> String { + // forms start at index 2 + let n: Int = native_list_len(entry) + let real_idx: Int = idx + 2 + if real_idx >= n { + return native_list_get(entry, 0) + } + return native_list_get(entry, real_idx) +} + +fn lex_class(entry: [String]) -> String { + let n: Int = native_list_len(entry) + let last: Int = n - 1 + return native_list_get(entry, last) +} + +// Build a vocab entry: [word, pos, form0, form1, ..., semantic_class] +fn make_entry(word: String, pos: String, f0: String, f1: String, f2: String, f3: String, f4: String, cls: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, word) + let r = native_list_append(r, pos) + let r = native_list_append(r, f0) + let r = native_list_append(r, f1) + let r = native_list_append(r, f2) + let r = native_list_append(r, f3) + let r = native_list_append(r, f4) + let r = native_list_append(r, cls) + return r +} + +fn make_entry2(word: String, pos: String, f0: String, f1: String, cls: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, word) + let r = native_list_append(r, pos) + let r = native_list_append(r, f0) + let r = native_list_append(r, f1) + let r = native_list_append(r, cls) + return r +} + +fn make_entry3(word: String, pos: String, f0: String, f1: String, f2: String, cls: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, word) + let r = native_list_append(r, pos) + let r = native_list_append(r, f0) + let r = native_list_append(r, f1) + let r = native_list_append(r, f2) + let r = native_list_append(r, cls) + return r +} + +fn make_entry1(word: String, pos: String, f0: String, cls: String) -> [String] { + let r: [String] = native_list_empty() + let r = native_list_append(r, word) + let r = native_list_append(r, pos) + let r = native_list_append(r, f0) + let r = native_list_append(r, cls) + return r +} + +// ── Seed vocabulary ─────────────────────────────────────────────────────────── + +fn build_vocab() -> [[String]] { + let v: [[String]] = native_list_empty() + + // ── Pronouns [nominative, accusative, genitive] ─────────────────────────── + let v = native_list_append(v, make_entry3("I", "pronoun", "I", "me", "my", "person-first-sg")) + let v = native_list_append(v, make_entry3("you", "pronoun", "you", "you", "your", "person-second")) + let v = native_list_append(v, make_entry3("he", "pronoun", "he", "him", "his", "person-third-sg-m")) + let v = native_list_append(v, make_entry3("she", "pronoun", "she", "her", "her", "person-third-sg-f")) + let v = native_list_append(v, make_entry3("it", "pronoun", "it", "it", "its", "person-third-sg-n")) + let v = native_list_append(v, make_entry3("we", "pronoun", "we", "us", "our", "person-first-pl")) + let v = native_list_append(v, make_entry3("they", "pronoun", "they", "them", "their", "person-third-pl")) + + // ── Determiners [word] ──────────────────────────────────────────────────── + let v = native_list_append(v, make_entry1("a", "determiner", "a", "indefinite")) + let v = native_list_append(v, make_entry1("an", "determiner", "an", "indefinite")) + let v = native_list_append(v, make_entry1("the", "determiner", "the", "definite")) + let v = native_list_append(v, make_entry1("some", "determiner", "some", "indefinite-pl")) + let v = native_list_append(v, make_entry1("this", "determiner", "this", "demonstrative-sg")) + let v = native_list_append(v, make_entry1("that", "determiner", "that", "demonstrative-sg")) + let v = native_list_append(v, make_entry1("these","determiner", "these","demonstrative-pl")) + let v = native_list_append(v, make_entry1("those","determiner", "those","demonstrative-pl")) + + // ── Prepositions [word] ─────────────────────────────────────────────────── + let v = native_list_append(v, make_entry1("in", "preposition", "in", "location")) + let v = native_list_append(v, make_entry1("on", "preposition", "on", "location")) + let v = native_list_append(v, make_entry1("at", "preposition", "at", "location")) + let v = native_list_append(v, make_entry1("to", "preposition", "to", "direction")) + let v = native_list_append(v, make_entry1("for", "preposition", "for", "purpose")) + let v = native_list_append(v, make_entry1("of", "preposition", "of", "relation")) + let v = native_list_append(v, make_entry1("with", "preposition", "with", "accompaniment")) + let v = native_list_append(v, make_entry1("from", "preposition", "from", "source")) + let v = native_list_append(v, make_entry1("by", "preposition", "by", "agent")) + let v = native_list_append(v, make_entry1("into", "preposition", "into", "direction")) + + // ── Auxiliaries [base, 3sg, past, pastpart, gerund] ─────────────────────── + let v = native_list_append(v, make_entry("is", "auxiliary", "be", "is", "was", "been", "being", "copula")) + let v = native_list_append(v, make_entry("are", "auxiliary", "be", "is", "was", "been", "being", "copula")) + let v = native_list_append(v, make_entry("was", "auxiliary", "be", "is", "was", "been", "being", "copula-past")) + let v = native_list_append(v, make_entry("were", "auxiliary", "be", "is", "were", "been", "being", "copula-past")) + let v = native_list_append(v, make_entry("has", "auxiliary", "have", "has", "had", "had", "having", "perfect")) + let v = native_list_append(v, make_entry("have", "auxiliary", "have", "has", "had", "had", "having", "perfect")) + let v = native_list_append(v, make_entry("had", "auxiliary", "have", "has", "had", "had", "having", "perfect-past")) + let v = native_list_append(v, make_entry("will", "auxiliary", "will", "will", "would", "would", "willing", "future")) + let v = native_list_append(v, make_entry("can", "auxiliary", "can", "can", "could", "could", "canning", "modal")) + let v = native_list_append(v, make_entry("could", "auxiliary", "can", "can", "could", "could", "canning", "modal-past")) + let v = native_list_append(v, make_entry("would", "auxiliary", "will", "will", "would", "would", "willing", "modal-cond")) + let v = native_list_append(v, make_entry("do", "auxiliary", "do", "does", "did", "done", "doing", "do-support")) + let v = native_list_append(v, make_entry("does", "auxiliary", "do", "does", "did", "done", "doing", "do-support")) + let v = native_list_append(v, make_entry("did", "auxiliary", "do", "does", "did", "done", "doing", "do-support-past")) + + // ── Nouns [singular, plural] ────────────────────────────────────────────── + let v = native_list_append(v, make_entry2("cat", "noun", "cat", "cats", "animal")) + let v = native_list_append(v, make_entry2("dog", "noun", "dog", "dogs", "animal")) + let v = native_list_append(v, make_entry2("bird", "noun", "bird", "birds", "animal")) + let v = native_list_append(v, make_entry2("fish", "noun", "fish", "fish", "animal")) + let v = native_list_append(v, make_entry2("horse", "noun", "horse", "horses", "animal")) + let v = native_list_append(v, make_entry2("house", "noun", "house", "houses", "building")) + let v = native_list_append(v, make_entry2("book", "noun", "book", "books", "object")) + let v = native_list_append(v, make_entry2("table", "noun", "table", "tables", "furniture")) + let v = native_list_append(v, make_entry2("chair", "noun", "chair", "chairs", "furniture")) + let v = native_list_append(v, make_entry2("door", "noun", "door", "doors", "structure")) + let v = native_list_append(v, make_entry2("window", "noun", "window", "windows", "structure")) + let v = native_list_append(v, make_entry2("city", "noun", "city", "cities", "place")) + let v = native_list_append(v, make_entry2("park", "noun", "park", "parks", "place")) + let v = native_list_append(v, make_entry2("school", "noun", "school", "schools", "place")) + let v = native_list_append(v, make_entry2("store", "noun", "store", "stores", "place")) + let v = native_list_append(v, make_entry2("road", "noun", "road", "roads", "place")) + let v = native_list_append(v, make_entry2("box", "noun", "box", "boxes", "container")) + let v = native_list_append(v, make_entry2("child", "noun", "child", "children", "person")) + let v = native_list_append(v, make_entry2("person", "noun", "person", "people", "person")) + let v = native_list_append(v, make_entry2("man", "noun", "man", "men", "person")) + let v = native_list_append(v, make_entry2("woman", "noun", "woman", "women", "person")) + let v = native_list_append(v, make_entry2("tree", "noun", "tree", "trees", "plant")) + let v = native_list_append(v, make_entry2("flower", "noun", "flower", "flowers", "plant")) + let v = native_list_append(v, make_entry2("water", "noun", "water", "waters", "substance")) + let v = native_list_append(v, make_entry2("food", "noun", "food", "foods", "substance")) + let v = native_list_append(v, make_entry2("time", "noun", "time", "times", "abstract")) + let v = native_list_append(v, make_entry2("day", "noun", "day", "days", "time")) + let v = native_list_append(v, make_entry2("night", "noun", "night", "nights", "time")) + let v = native_list_append(v, make_entry2("home", "noun", "home", "homes", "place")) + + // ── Verbs [base, 3sg, past, pastpart, gerund] ───────────────────────────── + let v = native_list_append(v, make_entry("run", "verb", "run", "runs", "ran", "run", "running", "motion")) + let v = native_list_append(v, make_entry("walk", "verb", "walk", "walks", "walked", "walked", "walking", "motion")) + let v = native_list_append(v, make_entry("go", "verb", "go", "goes", "went", "gone", "going", "motion")) + let v = native_list_append(v, make_entry("come", "verb", "come", "comes", "came", "come", "coming", "motion")) + let v = native_list_append(v, make_entry("see", "verb", "see", "sees", "saw", "seen", "seeing", "perception")) + let v = native_list_append(v, make_entry("hear", "verb", "hear", "hears", "heard", "heard", "hearing", "perception")) + let v = native_list_append(v, make_entry("look", "verb", "look", "looks", "looked", "looked", "looking", "perception")) + let v = native_list_append(v, make_entry("eat", "verb", "eat", "eats", "ate", "eaten", "eating", "action")) + let v = native_list_append(v, make_entry("drink", "verb", "drink", "drinks", "drank", "drunk", "drinking", "action")) + let v = native_list_append(v, make_entry("sleep", "verb", "sleep", "sleeps", "slept", "slept", "sleeping", "state")) + let v = native_list_append(v, make_entry("sit", "verb", "sit", "sits", "sat", "sat", "sitting", "posture")) + let v = native_list_append(v, make_entry("stand", "verb", "stand", "stands", "stood", "stood", "standing", "posture")) + let v = native_list_append(v, make_entry("give", "verb", "give", "gives", "gave", "given", "giving", "transfer")) + let v = native_list_append(v, make_entry("take", "verb", "take", "takes", "took", "taken", "taking", "transfer")) + let v = native_list_append(v, make_entry("make", "verb", "make", "makes", "made", "made", "making", "creation")) + let v = native_list_append(v, make_entry("put", "verb", "put", "puts", "put", "put", "putting", "placement")) + let v = native_list_append(v, make_entry("find", "verb", "find", "finds", "found", "found", "finding", "discovery")) + let v = native_list_append(v, make_entry("know", "verb", "know", "knows", "knew", "known", "knowing", "cognition")) + let v = native_list_append(v, make_entry("think", "verb", "think", "thinks", "thought","thought","thinking", "cognition")) + let v = native_list_append(v, make_entry("say", "verb", "say", "says", "said", "said", "saying", "communication")) + let v = native_list_append(v, make_entry("tell", "verb", "tell", "tells", "told", "told", "telling", "communication")) + let v = native_list_append(v, make_entry("ask", "verb", "ask", "asks", "asked", "asked", "asking", "communication")) + let v = native_list_append(v, make_entry("like", "verb", "like", "likes", "liked", "liked", "liking", "emotion")) + let v = native_list_append(v, make_entry("love", "verb", "love", "loves", "loved", "loved", "loving", "emotion")) + let v = native_list_append(v, make_entry("want", "verb", "want", "wants", "wanted", "wanted", "wanting", "desire")) + let v = native_list_append(v, make_entry("need", "verb", "need", "needs", "needed", "needed", "needing", "desire")) + let v = native_list_append(v, make_entry("have", "verb", "have", "has", "had", "had", "having", "possession")) + let v = native_list_append(v, make_entry("hold", "verb", "hold", "holds", "held", "held", "holding", "possession")) + let v = native_list_append(v, make_entry("open", "verb", "open", "opens", "opened", "opened", "opening", "action")) + let v = native_list_append(v, make_entry("close", "verb", "close", "closes", "closed", "closed", "closing", "action")) + let v = native_list_append(v, make_entry("write", "verb", "write", "writes", "wrote", "written","writing", "action")) + let v = native_list_append(v, make_entry("read", "verb", "read", "reads", "read", "read", "reading", "action")) + let v = native_list_append(v, make_entry("build", "verb", "build", "builds", "built", "built", "building", "creation")) + let v = native_list_append(v, make_entry("live", "verb", "live", "lives", "lived", "lived", "living", "state")) + let v = native_list_append(v, make_entry("work", "verb", "work", "works", "worked", "worked", "working", "activity")) + let v = native_list_append(v, make_entry("play", "verb", "play", "plays", "played", "played", "playing", "activity")) + let v = native_list_append(v, make_entry("help", "verb", "help", "helps", "helped", "helped", "helping", "activity")) + + // ── Adjectives [word] ───────────────────────────────────────────────────── + let v = native_list_append(v, make_entry1("big", "adjective", "big", "size")) + let v = native_list_append(v, make_entry1("small", "adjective", "small", "size")) + let v = native_list_append(v, make_entry1("large", "adjective", "large", "size")) + let v = native_list_append(v, make_entry1("little", "adjective", "little", "size")) + let v = native_list_append(v, make_entry1("old", "adjective", "old", "age")) + let v = native_list_append(v, make_entry1("new", "adjective", "new", "age")) + let v = native_list_append(v, make_entry1("young", "adjective", "young", "age")) + let v = native_list_append(v, make_entry1("good", "adjective", "good", "quality")) + let v = native_list_append(v, make_entry1("bad", "adjective", "bad", "quality")) + let v = native_list_append(v, make_entry1("fast", "adjective", "fast", "speed")) + let v = native_list_append(v, make_entry1("slow", "adjective", "slow", "speed")) + let v = native_list_append(v, make_entry1("hot", "adjective", "hot", "temperature")) + let v = native_list_append(v, make_entry1("cold", "adjective", "cold", "temperature")) + let v = native_list_append(v, make_entry1("happy", "adjective", "happy", "emotion")) + let v = native_list_append(v, make_entry1("sad", "adjective", "sad", "emotion")) + let v = native_list_append(v, make_entry1("red", "adjective", "red", "color")) + let v = native_list_append(v, make_entry1("blue", "adjective", "blue", "color")) + let v = native_list_append(v, make_entry1("green", "adjective", "green", "color")) + let v = native_list_append(v, make_entry1("white", "adjective", "white", "color")) + let v = native_list_append(v, make_entry1("black", "adjective", "black", "color")) + let v = native_list_append(v, make_entry1("long", "adjective", "long", "dimension")) + let v = native_list_append(v, make_entry1("short", "adjective", "short", "dimension")) + let v = native_list_append(v, make_entry1("beautiful","adjective", "beautiful","appearance")) + let v = native_list_append(v, make_entry1("bright", "adjective", "bright", "appearance")) + let v = native_list_append(v, make_entry1("dark", "adjective", "dark", "appearance")) + + return v +} + +// ── Vocabulary cache ────────────────────────────────────────────────────────── +// The vocab list is built once and reused across queries. +// We use a simple linear scan (adequate for ~100 entries). + +fn get_vocab() -> [[String]] { + return build_vocab() +} + +// ── Query functions ─────────────────────────────────────────────────────────── +// +// All lookup functions accept an optional lang_code parameter. The inline seed +// data is English ("en"). When lang_code is "" the match is language-agnostic +// (useful when the caller has already filtered by language). +// +// The Engram path (not implemented inline) would be: +// searchKnowledge(query="VOCAB: " + word, category="vocabulary", lang=lang_code) + +// vocab_lookup(word, lang_code) -> [String] +// Returns the entry whose word (index 0) matches the query word for the given +// language. Pass lang_code="" to match any language. +fn vocab_lookup(word: String, lang_code: String) -> [String] { + let vocab: [[String]] = get_vocab() + let n: Int = native_list_len(vocab) + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + let w: String = native_list_get(entry, 0) + if str_eq(w, word) { + // The inline seed data is English. If caller requests a specific + // language other than "en", we cannot satisfy it from inline data; + // return empty to signal "not found" (Engram lookup should follow). + if !str_eq(lang_code, "") { + if !str_eq(lang_code, "en") { + let empty: [String] = native_list_empty() + return empty + } + } + return entry + } + let i = i + 1 + } + let empty: [String] = native_list_empty() + return empty +} + +// vocab_lookup_en(word) -> [String] +// Backward-compatible alias: look up an English word. +fn vocab_lookup_en(word: String) -> [String] { + return vocab_lookup(word, "en") +} + +// vocab_synonym(word, register, lang_code) -> String +// Returns a register-appropriate synonym for a word in the given language. +// register: "formal" | "informal" | "neutral" +// Returns the original word if no synonym is found. +fn vocab_synonym(word: String, lang_register: String, lang_code: String) -> String { + // Inline data does not carry synonym information. + // The Engram backing store supplies synonyms via knowledge nodes. + // Return the word unchanged as a safe fallback. + return word +} + +// Returns all entries whose pos (index 1) matches. +fn vocab_by_pos(pos: String) -> [[String]] { + let vocab: [[String]] = get_vocab() + let n: Int = native_list_len(vocab) + let result: [[String]] = native_list_empty() + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + let p: String = native_list_get(entry, 1) + if str_eq(p, pos) { + let result = native_list_append(result, entry) + } + let i = i + 1 + } + return result +} + +// Returns all entries whose semantic class (last element) matches or starts with cls. +fn vocab_by_class(cls: String) -> [[String]] { + let vocab: [[String]] = get_vocab() + let n: Int = native_list_len(vocab) + let result: [[String]] = native_list_empty() + let i: Int = 0 + while i < n { + let entry: [String] = native_list_get(vocab, i) + let m: Int = native_list_len(entry) + let c: String = native_list_get(entry, m - 1) + if str_eq(c, cls) { + let result = native_list_append(result, entry) + } + let i = i + 1 + } + return result +} + +// ── Convenience accessors for a retrieved entry ─────────────────────────────── + +// Is this entry non-empty (i.e., found)? +fn entry_found(entry: [String]) -> Bool { + let n: Int = native_list_len(entry) + if n > 0 { + return true + } + return false +} + +fn entry_word(entry: [String]) -> String { + return native_list_get(entry, 0) +} + +fn entry_pos(entry: [String]) -> String { + return native_list_get(entry, 1) +} + +// Get the Nth morphological form (0-indexed, starts at position 2 in the list). +fn entry_form(entry: [String], n: Int) -> String { + let real: Int = n + 2 + let total: Int = native_list_len(entry) + if real >= total { + return native_list_get(entry, 0) + } + return native_list_get(entry, real) +} diff --git a/elp/src/vocabulary.elh b/elp/src/vocabulary.elh new file mode 100644 index 0000000..3633adc --- /dev/null +++ b/elp/src/vocabulary.elh @@ -0,0 +1,20 @@ +// auto-generated by elc --emit-header - do not edit +extern fn lex_word(entry: Any) -> String +extern fn lex_pos(entry: Any) -> String +extern fn lex_form(entry: Any, idx: Int) -> String +extern fn lex_class(entry: Any) -> String +extern fn make_entry(word: String, pos: String, f0: String, f1: String, f2: String, f3: String, f4: String, cls: String) -> Any +extern fn make_entry2(word: String, pos: String, f0: String, f1: String, cls: String) -> Any +extern fn make_entry3(word: String, pos: String, f0: String, f1: String, f2: String, cls: String) -> Any +extern fn make_entry1(word: String, pos: String, f0: String, cls: String) -> Any +extern fn build_vocab() -> Any +extern fn get_vocab() -> Any +extern fn vocab_lookup(word: String, lang_code: String) -> Any +extern fn vocab_lookup_en(word: String) -> Any +extern fn vocab_synonym(word: String, lang_register: String, lang_code: String) -> String +extern fn vocab_by_pos(pos: String) -> Any +extern fn vocab_by_class(cls: String) -> Any +extern fn entry_found(entry: Any) -> Bool +extern fn entry_word(entry: Any) -> String +extern fn entry_pos(entry: Any) -> String +extern fn entry_form(entry: Any, n: Int) -> String diff --git a/elp/tests/examples/basic-sentence.el b/elp/tests/examples/basic-sentence.el new file mode 100644 index 0000000..c7484cf --- /dev/null +++ b/elp/tests/examples/basic-sentence.el @@ -0,0 +1,24 @@ +// basic-sentence.el - Realize "I see the cat." +// +// SemanticForm: assert, agent=I, predicate=see, patient=the cat, present simple. + +fn run_test() -> String { + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "I") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "see") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "the cat") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + return realize(form) +} + +println(run_test()) diff --git a/elp/tests/examples/command.el b/elp/tests/examples/command.el new file mode 100644 index 0000000..8b1a1f2 --- /dev/null +++ b/elp/tests/examples/command.el @@ -0,0 +1,24 @@ +// command.el - Realize "Go home." +// +// SemanticForm: command, predicate=go, location=home. + +fn run_test() -> String { + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "command") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "go") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "") + let form = native_list_append(form, "location") + let form = native_list_append(form, "home") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + return realize(form) +} + +println(run_test()) diff --git a/elp/tests/examples/lang-ang.el b/elp/tests/examples/lang-ang.el new file mode 100644 index 0000000..ccbea84 --- /dev/null +++ b/elp/tests/examples/lang-ang.el @@ -0,0 +1,14 @@ +// lang-ang.el - Old English NLG tests +// Expected: "Se mann sihþ þone hund." / "Se mann is god." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "se mann", "seon", "", "ang")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "se mann", "seon", "", "ang")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "se mann", "god", "", "ang")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-ar.el b/elp/tests/examples/lang-ar.el new file mode 100644 index 0000000..94327e5 --- /dev/null +++ b/elp/tests/examples/lang-ar.el @@ -0,0 +1,56 @@ +// lang-ar.el - Arabic NLG tests: VSO assertion, intonation question. +// +// Arabic is VSO (Verb-Subject-Object), fusional, RTL script. The word order +// test verifies that gram_order_constituents places the verb first for "ar". +// Questions use the intonation strategy (statement word order + "?"). +// +// Expected outputs (approximate): +// assert: "يأكل القط السمكة." (VSO: verb-subject-object) +// question: "يأكل القط السمكة?" (same VSO order, ? punctuation) + +fn test_assert() -> String { + // VSO order: verb يأكل (eats), subject القط (the cat), object السمكة (the fish) + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "القط") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "يأكل") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "السمكة") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "ar") + return realize(form) +} + +fn test_question() -> String { + // Intonation question: same VSO order, ? punctuation + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "القط") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "يأكل") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "السمكة") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "ar") + return realize(form) +} + +println(test_assert()) +println(test_question()) diff --git a/elp/tests/examples/lang-de.el b/elp/tests/examples/lang-de.el new file mode 100644 index 0000000..63a521d --- /dev/null +++ b/elp/tests/examples/lang-de.el @@ -0,0 +1,30 @@ +// lang-de.el - German NLG tests: assertion, question inversion, description. +// +// German is profiled as SOV (base word order in subordinate clauses) with V2 +// in main clauses, and uses the "inversion" question strategy. +// Cases: nominative subject "die Katze", accusative object "den Fisch". +// +// Expected outputs (approximate): +// assert: "Die Katze isst den Fisch." +// question: "Isst die Katze den Fisch?" (verb-subject inversion) +// description: "Die Katze ist groß." + +fn test_assert() -> String { + let frame: [String] = sem_frame_lang("assert", "die Katze", "essen", "", "de") + return sem_realize(frame) +} + +fn test_question() -> String { + // German question: inversion — verb fronts before subject + let frame: [String] = sem_frame_lang("query", "die Katze", "essen", "", "de") + return sem_realize(frame) +} + +fn test_description() -> String { + let frame: [String] = sem_frame_lang("describe", "die Katze", "groß", "", "de") + return sem_realize(frame) +} + +println(test_assert()) +println(test_question()) +println(test_description()) diff --git a/elp/tests/examples/lang-enm.el b/elp/tests/examples/lang-enm.el new file mode 100644 index 0000000..2f7fa48 --- /dev/null +++ b/elp/tests/examples/lang-enm.el @@ -0,0 +1,14 @@ +// lang-enm.el - Middle English NLG tests +// Expected: "The man seeth the hound." / "The man is good." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "the man", "seen", "", "enm")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "the man", "seen", "", "enm")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "the man", "good", "", "enm")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-es.el b/elp/tests/examples/lang-es.el new file mode 100644 index 0000000..e8ace9f --- /dev/null +++ b/elp/tests/examples/lang-es.el @@ -0,0 +1,28 @@ +// lang-es.el - Spanish NLG tests: assertion, question, description. +// +// Tests SVO word order, fusional Spanish morphology, and intonation +// question strategy (no auxiliary inversion in Spanish). +// +// Expected outputs (approximate — depends on morph tables loaded): +// assert: "El gato come el pescado." +// question: "El gato come el pescado?" (intonation — statement order + ?) +// description: "El gato es grande." + +fn test_assert() -> String { + let frame: [String] = sem_frame_lang("assert", "el gato", "comer", "", "es") + return sem_realize(frame) +} + +fn test_question() -> String { + let frame: [String] = sem_frame_lang("query", "el gato", "comer", "", "es") + return sem_realize(frame) +} + +fn test_description() -> String { + let frame: [String] = sem_frame_lang("describe", "el gato", "grande", "", "es") + return sem_realize(frame) +} + +println(test_assert()) +println(test_question()) +println(test_description()) diff --git a/elp/tests/examples/lang-fi.el b/elp/tests/examples/lang-fi.el new file mode 100644 index 0000000..991070a --- /dev/null +++ b/elp/tests/examples/lang-fi.el @@ -0,0 +1,59 @@ +// lang-fi.el - Finnish NLG tests: assertion, question with -ko particle. +// +// Finnish is SOV, agglutinative, 15 grammatical cases. Questions use the +// "particle" strategy: statement order with -ko/-kö suffix on the verb. +// The realizer appends "-ko" for Finnish (see realize_question_lang). +// +// "kalaa" is the partitive form of kala (fish) — the engine produces the +// base form unless morphology-fi.el is loaded with suffix tables. +// +// Expected outputs (approximate): +// assert: "Kissa syö kalaa." (SOV order) +// question: "Kissa syö kalaa-ko?" (SOV + -ko particle on verb or sentence end) + +fn test_assert() -> String { + // SOV: subject Kissa (cat), verb syö (eats), object kalaa (fish-PARTITIVE) + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "kissa") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "syö") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "kalaa") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "fi") + return realize(form) +} + +fn test_question() -> String { + // Finnish question particle: statement order + -ko appended by realizer + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "kissa") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "syö") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "kalaa") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "fi") + return realize(form) +} + +println(test_assert()) +println(test_question()) diff --git a/elp/tests/examples/lang-fr-question.el b/elp/tests/examples/lang-fr-question.el new file mode 100644 index 0000000..b9740eb --- /dev/null +++ b/elp/tests/examples/lang-fr-question.el @@ -0,0 +1,37 @@ +// lang-fr-question.el - French question inversion test. +// +// Tests specifically that the French "inversion" question strategy works: +// the verb fronts before the subject, producing Verb-Subject-Object order. +// +// "Parler" (to speak) is an -er verb; "français" is the patient (what is spoken). +// Subject pronoun: "il" (he). +// +// Expected output (approximate): +// "Parle il français?" (verb-subject-object inversion) +// +// Note: full French inversion includes a euphonic -t- between verb and pronoun +// ("Parle-t-il") — this requires morphology-fr.el with inversion helpers. +// Without that module the engine produces the bare inverted form. + +fn run_test() -> String { + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "il") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "parler") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "français") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "fr") + return realize(form) +} + +println(run_test()) diff --git a/elp/tests/examples/lang-fr.el b/elp/tests/examples/lang-fr.el new file mode 100644 index 0000000..ada2257 --- /dev/null +++ b/elp/tests/examples/lang-fr.el @@ -0,0 +1,29 @@ +// lang-fr.el - French NLG tests: assertion, question inversion, description. +// +// Tests SVO declarative order and subject-verb inversion for questions +// (strategy="inversion" for French in gram_question_strategy). +// +// Expected outputs (approximate): +// assert: "Le chat mange le poisson." +// question: "Mange le chat le poisson?" (verb-subject inversion) +// description: "Le chat est grand." + +fn test_assert() -> String { + let frame: [String] = sem_frame_lang("assert", "le chat", "manger", "", "fr") + return sem_realize(frame) +} + +fn test_question() -> String { + // French question: inversion strategy — verb fronts before subject + let frame: [String] = sem_frame_lang("query", "le chat", "manger", "", "fr") + return sem_realize(frame) +} + +fn test_description() -> String { + let frame: [String] = sem_frame_lang("describe", "le chat", "grand", "", "fr") + return sem_realize(frame) +} + +println(test_assert()) +println(test_question()) +println(test_description()) diff --git a/elp/tests/examples/lang-got.el b/elp/tests/examples/lang-got.el new file mode 100644 index 0000000..aeb6810 --- /dev/null +++ b/elp/tests/examples/lang-got.el @@ -0,0 +1,14 @@ +// lang-got.el - Gothic NLG tests +// Expected: "sa guma saihwiþ." / "sa guma ist waihs." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "sa guma", "saihwan", "", "got")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "sa guma", "saihwan", "", "got")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "sa guma", "waihs", "", "got")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-grc.el b/elp/tests/examples/lang-grc.el new file mode 100644 index 0000000..0eee47e --- /dev/null +++ b/elp/tests/examples/lang-grc.el @@ -0,0 +1,14 @@ +// lang-grc.el - Ancient Greek NLG tests +// Expected: "ὁ ἄνθρωπος ὁράει τὸν κύνα." / "ὁ ἄνθρωπος ἐστί καλός." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "ho anthropos", "horao", "", "grc")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "ho anthropos", "horao", "", "grc")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "ho anthropos", "kalos", "", "grc")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-he.el b/elp/tests/examples/lang-he.el new file mode 100644 index 0000000..438940f --- /dev/null +++ b/elp/tests/examples/lang-he.el @@ -0,0 +1,40 @@ +// lang-he.el - Hebrew NLG tests +// +// Hebrew SVO: "הכלב רואה את החתול" (ha-kelev ro'e et ha-xatul) +// "the-dog sees ACC the-cat" +// +// Modern Hebrew uses: +// - SVO word order +// - Zero copula in present tense ("הוא גדול" = "he big" = "he is big") +// - Rising intonation for questions (no morphological change; "?" added by realizer) +// - Definite article ה (ha-) prefixed directly to the noun +// +// Note: Hebrew Unicode strings display as numeric hashes in the current El +// runtime (UTF-8 output not yet implemented). The strings are semantically +// correct internally and will display properly once the VM gains UTF-8 output. +// +// Transliterated inputs used below ("hu" = הוא he/him, "lir'ot" = to see, +// "gadol" = big/large) are handled by sem_frame_lang and passed through +// to he_conjugate / he_noun_phrase via the morphology dispatcher. +// +// Expected outputs (approximate, once UTF-8 output is live): +// assert: "הוא רואה." (hu ro'e. — he sees.) +// question: "הוא רואה?" (hu ro'e? — he sees?) +// description: "הוא גדול." (hu gadol. — he [is] big.) +// (zero copula: no verb in present description) + +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "hu", "lir'ot", "", "he")) +} + +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "hu", "lir'ot", "", "he")) +} + +fn test_description() -> String { + return sem_realize(sem_frame_lang("describe", "hu", "gadol", "", "he")) +} + +println(test_assert()) +println(test_question()) +println(test_description()) diff --git a/elp/tests/examples/lang-hi.el b/elp/tests/examples/lang-hi.el new file mode 100644 index 0000000..0cc2833 --- /dev/null +++ b/elp/tests/examples/lang-hi.el @@ -0,0 +1,60 @@ +// lang-hi.el - Hindi NLG tests: SOV assertion, question with क्या particle. +// +// Hindi is SOV, fusional (with postpositions), pro-drop. Questions use the +// "particle" strategy: statement order + क्या (kya) appended at sentence end. +// (See realize_question_lang: code="hi" appends " क्या".) +// +// The verb खाती है (khaati hai) is the feminine singular present form of खाना. +// The base form supplied here is खाना; the engine will return base form +// unless morphology-hi.el is loaded with full conjugation tables. +// +// Expected outputs (approximate): +// assert: "बिल्ली खाना मछली." (SOV: subject-object-verb) +// question: "बिल्ली खाना मछली क्या?" (SOV + क्या particle) + +fn test_assert() -> String { + // SOV: subject=बिल्ली (cat), verb=खाना (eat), patient=मछली (fish) + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "बिल्ली") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "खाना") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "मछली") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "hi") + return realize(form) +} + +fn test_question() -> String { + // Hindi question: SOV statement order + क्या appended by realizer particle strategy + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "बिल्ली") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "खाना") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "मछली") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "hi") + return realize(form) +} + +println(test_assert()) +println(test_question()) diff --git a/elp/tests/examples/lang-ja.el b/elp/tests/examples/lang-ja.el new file mode 100644 index 0000000..457039f --- /dev/null +++ b/elp/tests/examples/lang-ja.el @@ -0,0 +1,73 @@ +// lang-ja.el - Japanese NLG tests: SOV assertion, question with か particle. +// +// Japanese is SOV, agglutinative, pro-drop. The realizer uses the "particle" +// question strategy: statement order + sentence-final か. +// +// Grammatical relations are marked by postpositions embedded in the NP strings: +// 猫が = cat (subject marker が) +// 魚を = fish (object marker を) +// +// sem_to_spec maps: subject -> agent (GramSpec), object -> predicate or patient. +// For "assert" with a transitive verb the object field carries the patient NP; +// the predicate field carries the verb. +// +// Expected outputs (approximate): +// assert: "猫が 食べる 魚を." — SOV order from gram_order_constituents +// question: "猫が 食べる 魚を か?" — SOV + か particle + +fn test_assert() -> String { + // intent="assert", subject="猫が", obj="食べる" (verb in sem_to_spec predicate), + // patient NP "魚を" passed as modifiers or encoded in subject. + // Use the two-arg form: subject carries subject NP, obj carries the verb, + // and we pass the object NP separately via a direct GramSpec build below. + let frame: [String] = sem_frame_lang("assert", "猫が", "食べる", "", "ja") + return sem_realize(frame) +} + +fn test_assert_with_object() -> String { + // Build a GramSpec directly to supply subject, verb, and object NP together. + // This mirrors how basic-sentence.el builds the form manually. + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "猫が") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "食べる") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "魚を") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "ja") + return realize(form) +} + +fn test_question() -> String { + // Question: SOV order + か particle (realizer "particle" strategy for ja) + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "猫が") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "食べる") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "魚を") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "ja") + return realize(form) +} + +println(test_assert_with_object()) +println(test_question()) diff --git a/elp/tests/examples/lang-la.el b/elp/tests/examples/lang-la.el new file mode 100644 index 0000000..37bcbbb --- /dev/null +++ b/elp/tests/examples/lang-la.el @@ -0,0 +1,14 @@ +// lang-la.el - Latin NLG tests +// Expected: "Feles piscem edit." "Edit feles piscem?" "Feles magna est." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "feles", "edere", "", "la")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "feles", "edere", "", "la")) +} +fn test_description() -> String { + return sem_realize(sem_frame_lang("describe", "feles", "magna", "", "la")) +} +println(test_assert()) +println(test_question()) +println(test_description()) diff --git a/elp/tests/examples/lang-non.el b/elp/tests/examples/lang-non.el new file mode 100644 index 0000000..90c26f1 --- /dev/null +++ b/elp/tests/examples/lang-non.el @@ -0,0 +1,14 @@ +// lang-non.el - Old Norse NLG tests +// Expected: "maðr sér." / "maðr er sterkr." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "madr", "sja", "", "non")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "madr", "sja", "", "non")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "madr", "sterkr", "", "non")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-pi.el b/elp/tests/examples/lang-pi.el new file mode 100644 index 0000000..89c3949 --- /dev/null +++ b/elp/tests/examples/lang-pi.el @@ -0,0 +1,14 @@ +// lang-pi.el - Pali NLG tests +// Expected: "puriso passati." / "puriso sundaro hoti." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "puriso", "passati", "", "pi")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "puriso", "passati", "", "pi")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "puriso", "sundaro", "", "pi")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-ru.el b/elp/tests/examples/lang-ru.el new file mode 100644 index 0000000..5d333b8 --- /dev/null +++ b/elp/tests/examples/lang-ru.el @@ -0,0 +1,30 @@ +// lang-ru.el - Russian NLG tests: assertion, question (intonation), description. +// +// Russian has free word order (profiled as "free") and uses the intonation +// question strategy — questions look identical to assertions except for "?". +// Fusional morphology: кошка (nominative), рыбу (accusative). +// +// Expected outputs (approximate): +// assert: "Кошка ест рыбу." +// question: "Кошка ест рыбу?" (intonation — same order, different punctuation) +// description: "Кошка большая." + +fn test_assert() -> String { + let frame: [String] = sem_frame_lang("assert", "кошка", "есть", "", "ru") + return sem_realize(frame) +} + +fn test_question() -> String { + // Russian intonation question: statement order + "?" + let frame: [String] = sem_frame_lang("query", "кошка", "есть", "", "ru") + return sem_realize(frame) +} + +fn test_description() -> String { + let frame: [String] = sem_frame_lang("describe", "кошка", "большая", "", "ru") + return sem_realize(frame) +} + +println(test_assert()) +println(test_question()) +println(test_description()) diff --git a/elp/tests/examples/lang-sa.el b/elp/tests/examples/lang-sa.el new file mode 100644 index 0000000..397291c --- /dev/null +++ b/elp/tests/examples/lang-sa.el @@ -0,0 +1,14 @@ +// lang-sa.el - Sanskrit NLG tests +// Expected: "naraḥ paśyati." / "naraḥ sundaraḥ asti." +fn test_assert() -> String { + return sem_realize(sem_frame_lang("assert", "narah", "drs", "", "sa")) +} +fn test_question() -> String { + return sem_realize(sem_frame_lang("query", "narah", "drs", "", "sa")) +} +fn test_describe() -> String { + return sem_realize(sem_frame_lang("describe", "narah", "sundarah", "", "sa")) +} +println(test_assert()) +println(test_question()) +println(test_describe()) diff --git a/elp/tests/examples/lang-sw.el b/elp/tests/examples/lang-sw.el new file mode 100644 index 0000000..aba4802 --- /dev/null +++ b/elp/tests/examples/lang-sw.el @@ -0,0 +1,62 @@ +// lang-sw.el - Swahili NLG tests: SVO assertion with verb agreement prefix. +// +// Swahili is SVO, agglutinative, noun-class system. Subject agreement is +// marked as a prefix on the verb: paka (cat, class M-WA) takes "a-" prefix. +// "anakula" = a (3sg M-WA agreement) + na (present tense) + kula (eat). +// +// Questions use the intonation strategy — same SVO order with "?" punctuation. +// +// The verb surface form "anakula" is supplied as a pre-inflected form because +// Swahili noun-class agreement is not yet in the morphology engine; when +// morphology-sw.el loads full tables it will conjugate from "kula" + agreement. +// +// Expected outputs (approximate): +// assert: "Paka anakula samaki." (SVO with verb agreement prefix) +// question: "Paka anakula samaki?" (intonation — same order, ?) + +fn test_assert() -> String { + // SVO: subject=Paka (cat), verb=anakula (he/she-PRES-eat), object=samaki (fish) + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "paka") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "anakula") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "samaki") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "sw") + return realize(form) +} + +fn test_question() -> String { + // Intonation question: SVO order unchanged, ? punctuation + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "paka") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "anakula") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "samaki") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "sw") + return realize(form) +} + +println(test_assert()) +println(test_question()) diff --git a/elp/tests/examples/lang-zh.el b/elp/tests/examples/lang-zh.el new file mode 100644 index 0000000..15d7d3c --- /dev/null +++ b/elp/tests/examples/lang-zh.el @@ -0,0 +1,58 @@ +// lang-zh.el - Mandarin Chinese NLG tests: assertion, question with 吗. +// +// Mandarin is SVO, isolating (no morphological inflection). The verb surface +// form is always the base form — morph_conjugate returns base for isolating +// languages. Questions use the intonation strategy with "?" punctuation. +// +// Expected outputs (approximate): +// assert: "猫 吃 鱼." (SVO, no inflection on verb 吃) +// question: "猫 吃 鱼?" (intonation question — same order, ? instead of .) + +fn test_assert() -> String { + // Subject: 猫 (cat), verb: 吃 (eat), object: 鱼 (fish) + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "猫") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "吃") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "鱼") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "zh") + return realize(form) +} + +fn test_question() -> String { + // Intonation question: same SVO order, ? punctuation + // Note: 吗 (ma) is not appended by the engine in this version — + // the intonation strategy simply adds "?" without a particle. + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "猫") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "吃") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "鱼") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + let form = native_list_append(form, "lang") + let form = native_list_append(form, "zh") + return realize(form) +} + +println(test_assert()) +println(test_question()) diff --git a/elp/tests/examples/past-tense.el b/elp/tests/examples/past-tense.el new file mode 100644 index 0000000..15e48b4 --- /dev/null +++ b/elp/tests/examples/past-tense.el @@ -0,0 +1,24 @@ +// past-tense.el - Realize "She ran in the park." +// +// SemanticForm: assert, agent=she, predicate=run, location=in the park, past simple. + +fn run_test() -> String { + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "assert") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "she") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "run") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "") + let form = native_list_append(form, "location") + let form = native_list_append(form, "in the park") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "past") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + return realize(form) +} + +println(run_test()) diff --git a/elp/tests/examples/plural-noun.el b/elp/tests/examples/plural-noun.el new file mode 100644 index 0000000..7d04874 --- /dev/null +++ b/elp/tests/examples/plural-noun.el @@ -0,0 +1,16 @@ +// plural-noun.el - Test noun pluralization. +// +// Expected: "cats|children|boxes|cities|fish|leaves" + +fn run_test() -> String { + let r: [String] = native_list_empty() + let r = native_list_append(r, pluralize("cat")) + let r = native_list_append(r, pluralize("child")) + let r = native_list_append(r, pluralize("box")) + let r = native_list_append(r, pluralize("city")) + let r = native_list_append(r, pluralize("fish")) + let r = native_list_append(r, pluralize("leaf")) + return str_join(r, "|") +} + +println(run_test()) diff --git a/elp/tests/examples/question.el b/elp/tests/examples/question.el new file mode 100644 index 0000000..1fa62f0 --- /dev/null +++ b/elp/tests/examples/question.el @@ -0,0 +1,24 @@ +// question.el - Realize "Do you see the dog?" +// +// SemanticForm: question, agent=you, predicate=see, patient=the dog, present simple. + +fn run_test() -> String { + let form: [String] = native_list_empty() + let form = native_list_append(form, "intent") + let form = native_list_append(form, "question") + let form = native_list_append(form, "agent") + let form = native_list_append(form, "you") + let form = native_list_append(form, "predicate") + let form = native_list_append(form, "see") + let form = native_list_append(form, "patient") + let form = native_list_append(form, "the dog") + let form = native_list_append(form, "location") + let form = native_list_append(form, "") + let form = native_list_append(form, "tense") + let form = native_list_append(form, "present") + let form = native_list_append(form, "aspect") + let form = native_list_append(form, "simple") + return realize(form) +} + +println(run_test()) diff --git a/elp/tests/examples/sem-assert.el b/elp/tests/examples/sem-assert.el new file mode 100644 index 0000000..81eed8a --- /dev/null +++ b/elp/tests/examples/sem-assert.el @@ -0,0 +1,10 @@ +// sem-assert.el - Realize "She sleeps." via the semantics layer. +// +// SemFrame: intent="assert", subject="she", object="sleep" (verb), modifiers="" + +fn run_test() -> String { + let frame: [String] = sem_frame("assert", "she", "sleep", "") + return sem_realize(frame) +} + +println(run_test()) diff --git a/elp/tests/examples/sem-describe.el b/elp/tests/examples/sem-describe.el new file mode 100644 index 0000000..1874bb4 --- /dev/null +++ b/elp/tests/examples/sem-describe.el @@ -0,0 +1,10 @@ +// sem-describe.el - Realize "The cat is big." via the semantics layer. +// +// SemFrame: intent="describe", subject="the cat", object="big", modifiers="" + +fn run_test() -> String { + let frame: [String] = sem_frame("describe", "the cat", "big", "") + return sem_realize(frame) +} + +println(run_test()) diff --git a/elp/tests/examples/sem-greet.el b/elp/tests/examples/sem-greet.el new file mode 100644 index 0000000..657be60 --- /dev/null +++ b/elp/tests/examples/sem-greet.el @@ -0,0 +1,10 @@ +// sem-greet.el - Realize "Hello, Alice." via the semantics layer. +// +// SemFrame: intent="greet", subject="Alice", object="", modifiers="" + +fn run_test() -> String { + let frame: [String] = sem_frame("greet", "Alice", "", "") + return sem_realize(frame) +} + +println(run_test()) diff --git a/elp/tests/examples/sem-query.el b/elp/tests/examples/sem-query.el new file mode 100644 index 0000000..f65cfc1 --- /dev/null +++ b/elp/tests/examples/sem-query.el @@ -0,0 +1,10 @@ +// sem-query.el - Realize "Do you see?" via the semantics layer. +// +// SemFrame: intent="query", subject="you", object="see" (verb), modifiers="" + +fn run_test() -> String { + let frame: [String] = sem_frame("query", "you", "see", "") + return sem_realize(frame) +} + +println(run_test()) diff --git a/elp/tests/examples/verb-conjugation.el b/elp/tests/examples/verb-conjugation.el new file mode 100644 index 0000000..e1e2163 --- /dev/null +++ b/elp/tests/examples/verb-conjugation.el @@ -0,0 +1,15 @@ +// verb-conjugation.el - Test verb conjugation. +// +// Expected: "ran|walked|is|am|sleeping" + +fn run_test() -> String { + let r: [String] = native_list_empty() + let r = native_list_append(r, verb_form("run", "past", "third", "singular")) + let r = native_list_append(r, verb_form("walk", "past", "third", "singular")) + let r = native_list_append(r, verb_form("be", "present", "third", "singular")) + let r = native_list_append(r, verb_form("be", "present", "first", "singular")) + let r = native_list_append(r, verb_form("sleep","progressive","third","singular")) + return str_join(r, "|") +} + +println(run_test()) diff --git a/elp/tests/run.sh b/elp/tests/run.sh new file mode 100755 index 0000000..ed423b6 --- /dev/null +++ b/elp/tests/run.sh @@ -0,0 +1,154 @@ +#!/usr/bin/env bash +# run.sh - build and execute the nlg/ acceptance corpus. +# +# Each examples/.el is a self-contained El program that calls NLG +# functions and prints a deterministic result line. Because El has no +# import system, the runner concatenates all NLG source modules above each +# test file before handing it to elc. +# +# Module load order (mirrors manifest.el dependency order): +# language-profile (no deps) +# vocabulary (no deps) +# morphology (depends on: language-profile) +# morphology-XX (depends on: morphology) -- one per language +# grammar (depends on: language-profile) +# realizer (depends on: morphology, grammar, language-profile) +# semantics (depends on: grammar, realizer, language-profile) +# nlg (depends on: semantics, realizer) +# .el (calls the above) + +set -uo pipefail +cd "$(dirname "$0")" + +EL_HOME="${EL_HOME:-$(cd ../.. && pwd)/el}" +ELC="${ELC:-${EL_HOME}/dist/platform/elc}" +RUNTIME_DIR="${EL_HOME}/el-compiler/runtime" +SRC_DIR="$(cd .. && pwd)/src" + +if [ ! -x "${ELC}" ]; then + echo "elc not found at ${ELC}" >&2 + exit 1 +fi + +# NLG source modules in manifest.el dependency order +NLG_MODULES=( + "${SRC_DIR}/language-profile.el" + "${SRC_DIR}/vocabulary.el" + "${SRC_DIR}/morphology.el" + # Living languages + "${SRC_DIR}/morphology-es.el" + "${SRC_DIR}/morphology-fr.el" + "${SRC_DIR}/morphology-de.el" + "${SRC_DIR}/morphology-ru.el" + "${SRC_DIR}/morphology-ja.el" + "${SRC_DIR}/morphology-fi.el" + "${SRC_DIR}/morphology-ar.el" + "${SRC_DIR}/morphology-hi.el" + "${SRC_DIR}/morphology-sw.el" + # Ancient / classical languages (still spoken or liturgical) + "${SRC_DIR}/morphology-la.el" + "${SRC_DIR}/morphology-he.el" + # Dead languages + "${SRC_DIR}/morphology-grc.el" + "${SRC_DIR}/morphology-ang.el" + "${SRC_DIR}/morphology-sa.el" + "${SRC_DIR}/morphology-got.el" + "${SRC_DIR}/morphology-non.el" + "${SRC_DIR}/morphology-enm.el" + "${SRC_DIR}/morphology-pi.el" + "${SRC_DIR}/morphology-fro.el" + "${SRC_DIR}/morphology-goh.el" + "${SRC_DIR}/morphology-sga.el" + "${SRC_DIR}/morphology-txb.el" + "${SRC_DIR}/morphology-peo.el" + "${SRC_DIR}/morphology-akk.el" + "${SRC_DIR}/morphology-uga.el" + "${SRC_DIR}/morphology-egy.el" + "${SRC_DIR}/morphology-sux.el" + "${SRC_DIR}/morphology-gez.el" + "${SRC_DIR}/morphology-cop.el" + # Higher layers + "${SRC_DIR}/grammar.el" + "${SRC_DIR}/realizer.el" + "${SRC_DIR}/semantics.el" + "${SRC_DIR}/nlg.el" +) + +PASS=0 +FAIL=0 +FAILED_NAMES=() + +run_nlg_case() { + local name="$1" + local src="$2" + local expected="$3" + + local combined_src + local out_c + local out_bin + combined_src="$(mktemp -t nlg_test.XXXXXX).el" + out_c="$(mktemp -t nlg_test.XXXXXX).c" + out_bin="$(mktemp -t nlg_test.XXXXXX)" + + # Concatenate modules + test file + for mod in "${NLG_MODULES[@]}"; do + cat "${mod}" >> "${combined_src}" + echo "" >> "${combined_src}" + done + cat "${src}" >> "${combined_src}" + + if ! "${ELC}" "${combined_src}" > "${out_c}" 2>/tmp/nlg_test.elc.err; then + echo "FAIL ${name} - elc emit failed:" + cat /tmp/nlg_test.elc.err | sed 's/^/ /' + FAIL=$((FAIL+1)) + FAILED_NAMES+=("${name}") + rm -f "${combined_src}" "${out_c}" "${out_bin}" + return + fi + + if ! cc -O2 -I "${RUNTIME_DIR}" "${out_c}" "${RUNTIME_DIR}/el_runtime.c" \ + -lcurl -lpthread -o "${out_bin}" 2>/tmp/nlg_test.cc.err; then + echo "FAIL ${name} - cc failed:" + cat /tmp/nlg_test.cc.err | sed 's/^/ /' + FAIL=$((FAIL+1)) + FAILED_NAMES+=("${name}") + rm -f "${combined_src}" "${out_c}" "${out_bin}" + return + fi + + local got + got="$("${out_bin}" 2>&1)" + + if [ "${got}" = "${expected}" ]; then + echo "PASS ${name}" + PASS=$((PASS+1)) + else + echo "FAIL ${name} expected: '${expected}', got: '${got}'" + FAIL=$((FAIL+1)) + FAILED_NAMES+=("${name}") + fi + + rm -f "${combined_src}" "${out_c}" "${out_bin}" +} + +echo "==> Running nlg acceptance corpus" +echo + +run_nlg_case "basic-sentence" examples/basic-sentence.el "I see the cat." +run_nlg_case "past-tense" examples/past-tense.el "She ran in the park." +run_nlg_case "question" examples/question.el "Do you see the dog?" +run_nlg_case "command" examples/command.el "Go home." +run_nlg_case "plural-noun" examples/plural-noun.el "cats|children|boxes|cities|fish|leaves" +run_nlg_case "verb-conjugation" examples/verb-conjugation.el "ran|walked|is|am|sleeping" +run_nlg_case "sem-assert" examples/sem-assert.el "She sleeps." +run_nlg_case "sem-query" examples/sem-query.el "Do you see?" +run_nlg_case "sem-describe" examples/sem-describe.el "The cat is big." +run_nlg_case "sem-greet" examples/sem-greet.el "Hello, Alice." + +echo +echo "${PASS} passed, ${FAIL} failed" +if [ "${FAIL}" -gt 0 ]; then + echo "failed: ${FAILED_NAMES[*]}" + exit 1 +fi +exit 0 diff --git a/elp/tests/test-akk.el b/elp/tests/test-akk.el new file mode 100644 index 0000000..9b00d7f --- /dev/null +++ b/elp/tests/test-akk.el @@ -0,0 +1,49 @@ +// test-akk.el - Akkadian morphology tests +// Tests morph_conjugate dispatch for "akk", copula "bašû" (via "be"), +// verb "alāku" (go), and morph_pluralize fallback. + +fn test_akk() { + let profile: [String] = lang_profile_akk() + + // Copula "be" present 3sg -> "ibašši" + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "ibašši") { + println("FAIL: akk copula present 3sg: expected 'ibašši' got '" + r1 + "'") + } else { + println("PASS: akk copula present 3sg") + } + + // Copula "be" past 3sg -> "ibašši" (bašû has no separate past; present used) + let r2: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r2, "ibašši") { + println("FAIL: akk copula past 3sg: expected 'ibašši' got '" + r2 + "'") + } else { + println("PASS: akk copula past 3sg") + } + + // "alāku" (to go) present 3sg -> "illak" + let r3: String = morph_conjugate("alāku", "present", "third", "singular", profile) + if !str_eq(r3, "illak") { + println("FAIL: akk alaku present 3sg: expected 'illak' got '" + r3 + "'") + } else { + println("PASS: akk alaku present 3sg") + } + + // "alāku" past 1sg -> "allak" (no past/present distinction; present used) + let r4: String = morph_conjugate("alāku", "past", "first", "singular", profile) + if !str_eq(r4, "allak") { + println("FAIL: akk alaku past 1sg: expected 'allak' got '" + r4 + "'") + } else { + println("PASS: akk alaku past 1sg") + } + + // morph_pluralize: fusional fallback returns noun unchanged + let r5: String = morph_pluralize("šarrum", profile) + if !str_eq(r5, "šarrum") { + println("FAIL: akk pluralize fallback: expected 'šarrum' got '" + r5 + "'") + } else { + println("PASS: akk pluralize fallback") + } +} + +test_akk() diff --git a/elp/tests/test-cop.el b/elp/tests/test-cop.el new file mode 100644 index 0000000..ac792e5 --- /dev/null +++ b/elp/tests/test-cop.el @@ -0,0 +1,51 @@ +// test-cop.el - Coptic (Sahidic) morphology tests +// Tests morph_conjugate dispatch for "cop", copula "be" (zero copula in +// present, ϣωπε otherwise), verb "bwk" (go), and morph_pluralize fallback. +// NOTE: Coptic uses Greek + Demotic-derived letters; the El VM outputs +// non-ASCII as numeric hashes. str_eq comparisons work correctly on UTF-8. + +fn test_cop() { + let profile: [String] = lang_profile_cop() + + // Copula "be" present 3sg -> "" (zero copula — inherited from Egyptian) + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "") { + println("FAIL: cop copula present 3sg: expected '' got '" + r1 + "'") + } else { + println("PASS: cop copula present 3sg (zero copula)") + } + + // Copula "be" past 3sg -> "ⲁϥϣⲱⲡⲉ" (a-f-shwpe) + let r2: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r2, "ⲁϥϣⲱⲡⲉ") { + println("FAIL: cop copula past 3sg: expected 'afshwpe' got '" + r2 + "'") + } else { + println("PASS: cop copula past 3sg") + } + + // "bwk" (to go) present 3sg -> "ϥⲃⲱⲕ" (f-bwk) + let r3: String = morph_conjugate("bwk", "present", "third", "singular", profile) + if !str_eq(r3, "ϥⲃⲱⲕ") { + println("FAIL: cop bwk present 3sg: expected 'fbwk' got '" + r3 + "'") + } else { + println("PASS: cop bwk present 3sg") + } + + // "bwk" (to go) past 3sg -> "ⲁϥⲃⲱⲕ" (a-f-bwk) + let r4: String = morph_conjugate("bwk", "past", "third", "singular", profile) + if !str_eq(r4, "ⲁϥⲃⲱⲕ") { + println("FAIL: cop bwk past 3sg: expected 'afbwk' got '" + r4 + "'") + } else { + println("PASS: cop bwk past 3sg") + } + + // morph_pluralize: agglutinative fallback returns noun unchanged + let r5: String = morph_pluralize("ⲣⲱⲙⲉ", profile) + if !str_eq(r5, "ⲣⲱⲙⲉ") { + println("FAIL: cop pluralize fallback: expected noun unchanged got '" + r5 + "'") + } else { + println("PASS: cop pluralize fallback") + } +} + +test_cop() diff --git a/elp/tests/test-egy.el b/elp/tests/test-egy.el new file mode 100644 index 0000000..f2c428c --- /dev/null +++ b/elp/tests/test-egy.el @@ -0,0 +1,50 @@ +// test-egy.el - Ancient Egyptian (Middle Egyptian) morphology tests +// Tests morph_conjugate dispatch for "egy", copula "wnn" (via "be"), +// verb "mAA" (see), and morph_pluralize fallback. +// NOTE: egy copula in present returns "" (zero copula). + +fn test_egy() { + let profile: [String] = lang_profile_egy() + + // Copula "be" present 3sg -> "" (zero copula) + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "") { + println("FAIL: egy copula present 3sg: expected '' got '" + r1 + "'") + } else { + println("PASS: egy copula present 3sg (zero copula)") + } + + // Copula "be" past 3sg -> "wnn.n=f" + let r2: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r2, "wnn.n=f") { + println("FAIL: egy copula past 3sg: expected 'wnn.n=f' got '" + r2 + "'") + } else { + println("PASS: egy copula past 3sg") + } + + // "mAA" (to see) present 3sg -> "mAA=f" + let r3: String = morph_conjugate("mAA", "present", "third", "singular", profile) + if !str_eq(r3, "mAA=f") { + println("FAIL: egy mAA present 3sg: expected 'mAA=f' got '" + r3 + "'") + } else { + println("PASS: egy mAA present 3sg") + } + + // "mAA" past 3sg -> "mAA.n=f" + let r4: String = morph_conjugate("mAA", "past", "third", "singular", profile) + if !str_eq(r4, "mAA.n=f") { + println("FAIL: egy mAA past 3sg: expected 'mAA.n=f' got '" + r4 + "'") + } else { + println("PASS: egy mAA past 3sg") + } + + // morph_pluralize: agglutinative fallback returns noun unchanged + let r5: String = morph_pluralize("nTr", profile) + if !str_eq(r5, "nTr") { + println("FAIL: egy pluralize fallback: expected 'nTr' got '" + r5 + "'") + } else { + println("PASS: egy pluralize fallback") + } +} + +test_egy() diff --git a/elp/tests/test-fro.el b/elp/tests/test-fro.el new file mode 100644 index 0000000..051cd7d --- /dev/null +++ b/elp/tests/test-fro.el @@ -0,0 +1,49 @@ +// test-fro.el - Old French morphology tests +// Tests morph_conjugate dispatch for "fro", copula "estre", verb "avoir", +// and morph_pluralize fallback. + +fn test_fro() { + let profile: [String] = lang_profile_fro() + + // Copula "be" present 3sg -> "est" + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "est") { + println("FAIL: fro copula present 3sg: expected 'est' got '" + r1 + "'") + } else { + println("PASS: fro copula present 3sg") + } + + // Copula "be" past 3sg -> "fu" + let r2: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r2, "fu") { + println("FAIL: fro copula past 3sg: expected 'fu' got '" + r2 + "'") + } else { + println("PASS: fro copula past 3sg") + } + + // "avoir" (to have) present 1sg -> "ai" + let r3: String = morph_conjugate("avoir", "present", "first", "singular", profile) + if !str_eq(r3, "ai") { + println("FAIL: fro avoir present 1sg: expected 'ai' got '" + r3 + "'") + } else { + println("PASS: fro avoir present 1sg") + } + + // "avoir" past 3sg -> "ot" + let r4: String = morph_conjugate("avoir", "past", "third", "singular", profile) + if !str_eq(r4, "ot") { + println("FAIL: fro avoir past 3sg: expected 'ot' got '" + r4 + "'") + } else { + println("PASS: fro avoir past 3sg") + } + + // morph_pluralize: fusional fallback returns noun unchanged + let r5: String = morph_pluralize("mur", profile) + if !str_eq(r5, "mur") { + println("FAIL: fro pluralize fallback: expected 'mur' got '" + r5 + "'") + } else { + println("PASS: fro pluralize fallback") + } +} + +test_fro() diff --git a/elp/tests/test-gez.el b/elp/tests/test-gez.el new file mode 100644 index 0000000..c1e3d65 --- /dev/null +++ b/elp/tests/test-gez.el @@ -0,0 +1,52 @@ +// test-gez.el - Ge'ez (Classical Ethiopic) morphology tests +// Tests morph_conjugate dispatch for "gez", copula "be" (root kwn), +// verb "hbl" (give), and morph_pluralize fallback. +// NOTE: Ge'ez uses Ethiopic Fidel script; the El VM outputs non-ASCII as +// numeric hashes, so str_eq comparisons are used internally (they work +// correctly on UTF-8 byte equality). + +fn test_gez() { + let profile: [String] = lang_profile_gez() + + // Copula "be" perfect 3sg m -> "ሆነ" (honä, base form) + let r1: String = morph_conjugate("be", "perfect", "third", "singular", profile) + if !str_eq(r1, "ሆነ") { + println("FAIL: gez copula perfect 3sg: expected 'hona' got '" + r1 + "'") + } else { + println("PASS: gez copula perfect 3sg") + } + + // Copula "be" imperfect 3sg m -> "ይሆን" (yǝhon) + let r2: String = morph_conjugate("be", "imperfect", "third", "singular", profile) + if !str_eq(r2, "ይሆን") { + println("FAIL: gez copula imperfect 3sg: expected 'yehon' got '" + r2 + "'") + } else { + println("PASS: gez copula imperfect 3sg") + } + + // "hbl" (to give) perfect 3sg m -> "ሰጠ" (säṭṭä) + let r3: String = morph_conjugate("hbl", "perfect", "third", "singular", profile) + if !str_eq(r3, "ሰጠ") { + println("FAIL: gez hbl perfect 3sg: expected 'satta' got '" + r3 + "'") + } else { + println("PASS: gez hbl perfect 3sg") + } + + // "hbl" (to give) imperfect 3sg m -> "ይሰጥ" (yǝsäṭ) + let r4: String = morph_conjugate("hbl", "imperfect", "third", "singular", profile) + if !str_eq(r4, "ይሰጥ") { + println("FAIL: gez hbl imperfect 3sg: expected 'yesat' got '" + r4 + "'") + } else { + println("PASS: gez hbl imperfect 3sg") + } + + // morph_pluralize: semitic/agglutinative fallback returns noun unchanged + let r5: String = morph_pluralize("ንጉሥ", profile) + if !str_eq(r5, "ንጉሥ") { + println("FAIL: gez pluralize fallback: expected noun unchanged got '" + r5 + "'") + } else { + println("PASS: gez pluralize fallback") + } +} + +test_gez() diff --git a/elp/tests/test-goh.el b/elp/tests/test-goh.el new file mode 100644 index 0000000..4b74881 --- /dev/null +++ b/elp/tests/test-goh.el @@ -0,0 +1,49 @@ +// test-goh.el - Old High German morphology tests +// Tests morph_conjugate dispatch for "goh", copula "wesan", verb "haben", +// and morph_pluralize fallback. + +fn test_goh() { + let profile: [String] = lang_profile_goh() + + // Copula "be" present 3sg -> "ist" + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "ist") { + println("FAIL: goh copula present 3sg: expected 'ist' got '" + r1 + "'") + } else { + println("PASS: goh copula present 3sg") + } + + // Copula "be" past 1sg -> "was" + let r2: String = morph_conjugate("be", "past", "first", "singular", profile) + if !str_eq(r2, "was") { + println("FAIL: goh copula past 1sg: expected 'was' got '" + r2 + "'") + } else { + println("PASS: goh copula past 1sg") + } + + // "haben" present 3sg -> "habet" + let r3: String = morph_conjugate("haben", "present", "third", "singular", profile) + if !str_eq(r3, "habet") { + println("FAIL: goh haben present 3sg: expected 'habet' got '" + r3 + "'") + } else { + println("PASS: goh haben present 3sg") + } + + // "haben" past 1sg -> "habeta" + let r4: String = morph_conjugate("haben", "past", "first", "singular", profile) + if !str_eq(r4, "habeta") { + println("FAIL: goh haben past 1sg: expected 'habeta' got '" + r4 + "'") + } else { + println("PASS: goh haben past 1sg") + } + + // morph_pluralize: fusional fallback returns noun unchanged + let r5: String = morph_pluralize("tag", profile) + if !str_eq(r5, "tag") { + println("FAIL: goh pluralize fallback: expected 'tag' got '" + r5 + "'") + } else { + println("PASS: goh pluralize fallback") + } +} + +test_goh() diff --git a/elp/tests/test-peo.el b/elp/tests/test-peo.el new file mode 100644 index 0000000..f64f7bf --- /dev/null +++ b/elp/tests/test-peo.el @@ -0,0 +1,49 @@ +// test-peo.el - Old Persian morphology tests +// Tests morph_conjugate dispatch for "peo", copula "ah-" (via "be"), +// verb "kar" (do/make), and morph_pluralize fallback. + +fn test_peo() { + let profile: [String] = lang_profile_peo() + + // Copula "be" present 3sg -> "astiy" + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "astiy") { + println("FAIL: peo copula present 3sg: expected 'astiy' got '" + r1 + "'") + } else { + println("PASS: peo copula present 3sg") + } + + // Copula "be" past 3sg -> "āha" + let r2: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r2, "āha") { + println("FAIL: peo copula past 3sg: expected 'āha' got '" + r2 + "'") + } else { + println("PASS: peo copula past 3sg") + } + + // "kar" (to do) present 3sg -> "kunautiy" + let r3: String = morph_conjugate("kar", "present", "third", "singular", profile) + if !str_eq(r3, "kunautiy") { + println("FAIL: peo kar present 3sg: expected 'kunautiy' got '" + r3 + "'") + } else { + println("PASS: peo kar present 3sg") + } + + // "kar" past 3sg -> "akunava" + let r4: String = morph_conjugate("kar", "past", "third", "singular", profile) + if !str_eq(r4, "akunava") { + println("FAIL: peo kar past 3sg: expected 'akunava' got '" + r4 + "'") + } else { + println("PASS: peo kar past 3sg") + } + + // morph_pluralize: fusional fallback returns noun unchanged + let r5: String = morph_pluralize("martiya", profile) + if !str_eq(r5, "martiya") { + println("FAIL: peo pluralize fallback: expected 'martiya' got '" + r5 + "'") + } else { + println("PASS: peo pluralize fallback") + } +} + +test_peo() diff --git a/elp/tests/test-sga.el b/elp/tests/test-sga.el new file mode 100644 index 0000000..ab7d297 --- /dev/null +++ b/elp/tests/test-sga.el @@ -0,0 +1,49 @@ +// test-sga.el - Old Irish morphology tests +// Tests morph_conjugate dispatch for "sga", copula "is" (via "be"), +// verb "téit" (go), and morph_pluralize fallback. + +fn test_sga() { + let profile: [String] = lang_profile_sga() + + // Copula "be" present 3sg -> "is" + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "is") { + println("FAIL: sga copula present 3sg: expected 'is' got '" + r1 + "'") + } else { + println("PASS: sga copula present 3sg") + } + + // Copula "be" past 3sg -> "ba" + let r2: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r2, "ba") { + println("FAIL: sga copula past 3sg: expected 'ba' got '" + r2 + "'") + } else { + println("PASS: sga copula past 3sg") + } + + // "téit" (to go) present 3sg -> "téit" + let r3: String = morph_conjugate("téit", "present", "third", "singular", profile) + if !str_eq(r3, "téit") { + println("FAIL: sga teit present 3sg: expected 'téit' got '" + r3 + "'") + } else { + println("PASS: sga teit present 3sg") + } + + // "téit" past 3sg -> "luid" + let r4: String = morph_conjugate("téit", "past", "third", "singular", profile) + if !str_eq(r4, "luid") { + println("FAIL: sga teit past 3sg: expected 'luid' got '" + r4 + "'") + } else { + println("PASS: sga teit past 3sg") + } + + // morph_pluralize: fusional fallback returns noun unchanged + let r5: String = morph_pluralize("fer", profile) + if !str_eq(r5, "fer") { + println("FAIL: sga pluralize fallback: expected 'fer' got '" + r5 + "'") + } else { + println("PASS: sga pluralize fallback") + } +} + +test_sga() diff --git a/elp/tests/test-sux.el b/elp/tests/test-sux.el new file mode 100644 index 0000000..9c3204c --- /dev/null +++ b/elp/tests/test-sux.el @@ -0,0 +1,50 @@ +// test-sux.el - Sumerian morphology tests +// Tests morph_conjugate dispatch for "sux", copula "me" (via "be"), +// verb "dug4" (say), and morph_pluralize fallback. +// NOTE: sux copula 3sg present returns "" (zero copula). + +fn test_sux() { + let profile: [String] = lang_profile_sux() + + // Copula "be" present 3sg -> "" (zero copula) + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "") { + println("FAIL: sux copula present 3sg: expected '' got '" + r1 + "'") + } else { + println("PASS: sux copula present 3sg (zero copula)") + } + + // Copula "be" present 1sg -> "me-en" + let r2: String = morph_conjugate("be", "present", "first", "singular", profile) + if !str_eq(r2, "me-en") { + println("FAIL: sux copula present 1sg: expected 'me-en' got '" + r2 + "'") + } else { + println("PASS: sux copula present 1sg") + } + + // Copula "be" past 3sg -> "ba-me" + let r3: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r3, "ba-me") { + println("FAIL: sux copula past 3sg: expected 'ba-me' got '" + r3 + "'") + } else { + println("PASS: sux copula past 3sg") + } + + // "dug4" (to say) present 3sg -> "e" (imperfective stem "e", no suffix for 3sg) + let r4: String = morph_conjugate("dug4", "present", "third", "singular", profile) + if !str_eq(r4, "e") { + println("FAIL: sux dug4 present 3sg: expected 'e' got '" + r4 + "'") + } else { + println("PASS: sux dug4 present 3sg") + } + + // morph_pluralize: agglutinative fallback returns noun unchanged + let r5: String = morph_pluralize("lugal", profile) + if !str_eq(r5, "lugal") { + println("FAIL: sux pluralize fallback: expected 'lugal' got '" + r5 + "'") + } else { + println("PASS: sux pluralize fallback") + } +} + +test_sux() diff --git a/elp/tests/test-txb.el b/elp/tests/test-txb.el new file mode 100644 index 0000000..b490ec5 --- /dev/null +++ b/elp/tests/test-txb.el @@ -0,0 +1,49 @@ +// test-txb.el - Tocharian B morphology tests +// Tests morph_conjugate dispatch for "txb", copula "wes", +// verb "lyut" (see), and morph_pluralize fallback. + +fn test_txb() { + let profile: [String] = lang_profile_txb() + + // Copula "be" present 3sg -> "ste" + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "ste") { + println("FAIL: txb copula present 3sg: expected 'ste' got '" + r1 + "'") + } else { + println("PASS: txb copula present 3sg") + } + + // Copula "be" present 1sg -> "wes" + let r2: String = morph_conjugate("be", "present", "first", "singular", profile) + if !str_eq(r2, "wes") { + println("FAIL: txb copula present 1sg: expected 'wes' got '" + r2 + "'") + } else { + println("PASS: txb copula present 1sg") + } + + // Copula "be" past 3sg -> "wes" (txb only implements present; past returns stem) + let r3: String = morph_conjugate("be", "past", "third", "singular", profile) + if !str_eq(r3, "wes") { + println("FAIL: txb copula past 3sg: expected 'wes' got '" + r3 + "'") + } else { + println("PASS: txb copula past 3sg") + } + + // "lyut" (to see) present 3sg -> "lyutem" + let r4: String = morph_conjugate("lyut", "present", "third", "singular", profile) + if !str_eq(r4, "lyutem") { + println("FAIL: txb lyut present 3sg: expected 'lyutem' got '" + r4 + "'") + } else { + println("PASS: txb lyut present 3sg") + } + + // morph_pluralize: fusional fallback returns noun unchanged + let r5: String = morph_pluralize("walo", profile) + if !str_eq(r5, "walo") { + println("FAIL: txb pluralize fallback: expected 'walo' got '" + r5 + "'") + } else { + println("PASS: txb pluralize fallback") + } +} + +test_txb() diff --git a/elp/tests/test-uga.el b/elp/tests/test-uga.el new file mode 100644 index 0000000..b6a7ee6 --- /dev/null +++ b/elp/tests/test-uga.el @@ -0,0 +1,50 @@ +// test-uga.el - Ugaritic morphology tests +// Tests morph_conjugate dispatch for "uga", copula "kn" (via "be"), +// verb "hlk" (go), and morph_pluralize fallback. + +fn test_uga() { + let profile: [String] = lang_profile_uga() + + // Copula "be" present 3sg -> "yakūnu" (imperfect, ya- prefix) + let r1: String = morph_conjugate("be", "present", "third", "singular", profile) + if !str_eq(r1, "yakūnu") { + println("FAIL: uga copula present 3sg: expected 'yakūnu' got '" + r1 + "'") + } else { + println("PASS: uga copula present 3sg") + } + + // Copula "be" perfect 3sg -> "kāna" + let r2: String = morph_conjugate("be", "perfect", "third", "singular", profile) + if !str_eq(r2, "kāna") { + println("FAIL: uga copula perfect 3sg: expected 'kāna' got '" + r2 + "'") + } else { + println("PASS: uga copula perfect 3sg") + } + + // "hlk" (to go) present 3sg -> "yahluku" (imperfect) + let r3: String = morph_conjugate("hlk", "present", "third", "singular", profile) + if !str_eq(r3, "yahluku") { + println("FAIL: uga hlk present 3sg: expected 'yahluku' got '" + r3 + "'") + } else { + println("PASS: uga hlk present 3sg") + } + + // "hlk" perfect 3sg -> "halaka" + let r4: String = morph_conjugate("hlk", "perfect", "third", "singular", profile) + if !str_eq(r4, "halaka") { + println("FAIL: uga hlk perfect 3sg: expected 'halaka' got '" + r4 + "'") + } else { + println("PASS: uga hlk perfect 3sg") + } + + // morph_pluralize: agglutinative fallback returns noun unchanged + // (uga morph_type is "semitic" — falls through to unknown, returns noun) + let r5: String = morph_pluralize("malku", profile) + if !str_eq(r5, "malku") { + println("FAIL: uga pluralize fallback: expected 'malku' got '" + r5 + "'") + } else { + println("PASS: uga pluralize fallback") + } +} + +test_uga() diff --git a/engram/.DS_Store b/engram/.DS_Store new file mode 100644 index 0000000..f8575f5 Binary files /dev/null and b/engram/.DS_Store differ diff --git a/engram/.gitea/workflows/ci-dev.yaml b/engram/.gitea/workflows/ci-dev.yaml new file mode 100644 index 0000000..7463aa8 --- /dev/null +++ b/engram/.gitea/workflows/ci-dev.yaml @@ -0,0 +1,121 @@ +name: Engram CI — dev + +on: + push: + branches: + - dev + pull_request: + branches: + - dev + +jobs: + build-and-test: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install build dependencies + run: | + apt-get update -qq + apt-get install -y gcc libcurl4-openssl-dev + + # Install El SDK from dev artifact registry + - name: Install El SDK from dev registry + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "${GCP_SA_KEY}" > /tmp/gcp-key.json + apt-get install -y -qq apt-transport-https ca-certificates gnupg curl + curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg + echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" > /etc/apt/sources.list.d/google-cloud-sdk.list + apt-get update -qq && apt-get install -y google-cloud-cli + gcloud auth activate-service-account --key-file=/tmp/gcp-key.json + gcloud config set project neuron-785695 + + mkdir -p /usr/local/bin /usr/local/lib/el + + # Download the latest-versioned elc from dev registry + # Fall back to the Gitea latest release if no dev artifact exists yet + LATEST_VERSION=$(gcloud artifacts versions list \ + --repository=foundation-dev \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/elc \ + --format="value(name)" 2>/dev/null | sort | tail -1 | sed 's|.*/||' || true) + + if [ -n "${LATEST_VERSION}" ]; then + echo "Downloading elc ${LATEST_VERSION} from foundation-dev..." + gcloud artifacts generic download \ + --repository=foundation-dev \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/elc \ + --version="${LATEST_VERSION}" \ + --destination=/usr/local/bin/elc + chmod +x /usr/local/bin/elc + else + echo "No dev artifact found, falling back to Gitea latest release..." + RELEASE_BASE="https://git.neuralplatform.ai/neuron-technologies/el/releases/download/latest" + curl -fsSL "${RELEASE_BASE}/elc" -o /usr/local/bin/elc + chmod +x /usr/local/bin/elc + fi + + # Always get runtime from Gitea latest release + RELEASE_BASE="https://git.neuralplatform.ai/neuron-technologies/el/releases/download/latest" + curl -fsSL "${RELEASE_BASE}/el_runtime.c" -o /usr/local/lib/el/el_runtime.c + curl -fsSL "${RELEASE_BASE}/el_runtime.h" -o /usr/local/lib/el/el_runtime.h + + echo "El SDK installed:" + elc --version || true + rm -f /tmp/gcp-key.json + + # Compile server.el → dist/engram.c + - name: Compile server.el + run: | + mkdir -p dist + elc src/server.el > dist/engram.c + echo "Compiled src/server.el → dist/engram.c" + + # Link to produce the engram binary + - name: Link engram binary + run: | + cc -std=c11 -O2 \ + -I /usr/local/lib/el \ + -o dist/engram \ + dist/engram.c \ + /usr/local/lib/el/el_runtime.c \ + -lcurl -lpthread + echo "Linked dist/engram" + ls -lh dist/engram + + # Run tests if spec directory contains runnable tests + - name: Run tests + run: | + if [ -f spec/run.sh ]; then + bash spec/run.sh + else + echo "No spec/run.sh found — skipping test run" + fi + + # Publish artifact to GCP Artifact Registry (dev) + - name: Publish engram to Artifact Registry (dev) + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "${GCP_SA_KEY}" > /tmp/gcp-key.json + gcloud auth activate-service-account --key-file=/tmp/gcp-key.json + gcloud config set project neuron-785695 + + VERSION="${GITEA_SHA:0:8}" + gcloud artifacts generic upload \ + --repository=foundation-dev \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=engram/engram \ + --version="${VERSION}" \ + --source=dist/engram + + echo "Published engram version=${VERSION} to foundation-dev/engram/engram" + rm -f /tmp/gcp-key.json diff --git a/engram/.gitea/workflows/ci-stage.yaml b/engram/.gitea/workflows/ci-stage.yaml new file mode 100644 index 0000000..69ed162 --- /dev/null +++ b/engram/.gitea/workflows/ci-stage.yaml @@ -0,0 +1,128 @@ +name: Engram CI — stage + +on: + push: + branches: + - stage + pull_request: + branches: + - stage + +jobs: + build-and-test: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Enforce source branch (stage ← dev only) + if: github.event_name == 'pull_request' + run: | + SOURCE="${GITHUB_HEAD_REF}" + if [ "${SOURCE}" != "dev" ]; then + echo "ERROR: Stage branch only accepts PRs from 'dev'. Source was: '${SOURCE}'" + exit 1 + fi + echo "Source branch check passed: ${SOURCE} → stage" + + - name: Install build dependencies + run: | + apt-get update -qq + apt-get install -y gcc libcurl4-openssl-dev + + # Install El SDK from stage artifact registry + - name: Install El SDK from stage registry + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "${GCP_SA_KEY}" > /tmp/gcp-key.json + apt-get install -y -qq apt-transport-https ca-certificates gnupg curl + curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg + echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" > /etc/apt/sources.list.d/google-cloud-sdk.list + apt-get update -qq && apt-get install -y google-cloud-cli + gcloud auth activate-service-account --key-file=/tmp/gcp-key.json + gcloud config set project neuron-785695 + + mkdir -p /usr/local/bin /usr/local/lib/el + + LATEST_VERSION=$(gcloud artifacts versions list \ + --repository=foundation-stage \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/elc \ + --format="value(name)" 2>/dev/null | sort | tail -1 | sed 's|.*/||' || true) + + if [ -n "${LATEST_VERSION}" ]; then + echo "Downloading elc ${LATEST_VERSION} from foundation-stage..." + gcloud artifacts generic download \ + --repository=foundation-stage \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=el/elc \ + --version="${LATEST_VERSION}" \ + --destination=/usr/local/bin/elc + chmod +x /usr/local/bin/elc + else + echo "No stage artifact found, falling back to Gitea latest release..." + RELEASE_BASE="https://git.neuralplatform.ai/neuron-technologies/el/releases/download/latest" + curl -fsSL "${RELEASE_BASE}/elc" -o /usr/local/bin/elc + chmod +x /usr/local/bin/elc + fi + + RELEASE_BASE="https://git.neuralplatform.ai/neuron-technologies/el/releases/download/latest" + curl -fsSL "${RELEASE_BASE}/el_runtime.c" -o /usr/local/lib/el/el_runtime.c + curl -fsSL "${RELEASE_BASE}/el_runtime.h" -o /usr/local/lib/el/el_runtime.h + + echo "El SDK installed:" + elc --version || true + rm -f /tmp/gcp-key.json + + # Compile server.el → dist/engram.c + - name: Compile server.el + run: | + mkdir -p dist + elc src/server.el > dist/engram.c + echo "Compiled src/server.el → dist/engram.c" + + # Link to produce the engram binary + - name: Link engram binary + run: | + cc -std=c11 -O2 \ + -I /usr/local/lib/el \ + -o dist/engram \ + dist/engram.c \ + /usr/local/lib/el/el_runtime.c \ + -lcurl -lpthread + echo "Linked dist/engram" + ls -lh dist/engram + + # Run tests if spec directory contains runnable tests + - name: Run tests + run: | + if [ -f spec/run.sh ]; then + bash spec/run.sh + else + echo "No spec/run.sh found — skipping test run" + fi + + # Publish artifact to GCP Artifact Registry (stage) + - name: Publish engram to Artifact Registry (stage) + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "${GCP_SA_KEY}" > /tmp/gcp-key.json + gcloud auth activate-service-account --key-file=/tmp/gcp-key.json + gcloud config set project neuron-785695 + + VERSION="${GITEA_SHA:0:8}" + gcloud artifacts generic upload \ + --repository=foundation-stage \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=engram/engram \ + --version="${VERSION}" \ + --source=dist/engram + + echo "Published engram version=${VERSION} to foundation-stage/engram/engram" + rm -f /tmp/gcp-key.json diff --git a/engram/.gitea/workflows/engram-release.yaml b/engram/.gitea/workflows/engram-release.yaml new file mode 100644 index 0000000..bdf3258 --- /dev/null +++ b/engram/.gitea/workflows/engram-release.yaml @@ -0,0 +1,159 @@ +name: Engram Release + +on: + push: + branches: + - main + repository_dispatch: + types: + - el-sdk-updated + +jobs: + build-and-release: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Enforce source branch (main ← stage only) + if: github.event_name == 'pull_request' + run: | + SOURCE="${GITHUB_HEAD_REF}" + if [ "${SOURCE}" != "stage" ]; then + echo "ERROR: Main branch only accepts PRs from 'stage'. Source was: '${SOURCE}'" + exit 1 + fi + echo "Source branch check passed: ${SOURCE} → main" + + - name: Install build dependencies + run: | + apt-get update -qq + apt-get install -y gcc libcurl4-openssl-dev + + # Install El SDK from the latest release + - name: Install El SDK + env: + GITEA_API: https://git.neuralplatform.ai/api/v1 + RELEASE_BASE: https://git.neuralplatform.ai/neuron-technologies/el/releases/download/latest + run: | + mkdir -p /usr/local/bin /usr/local/lib/el + + echo "Downloading elc..." + curl -fsSL "${RELEASE_BASE}/elc" -o /usr/local/bin/elc + chmod +x /usr/local/bin/elc + + echo "Downloading el_runtime.c..." + curl -fsSL "${RELEASE_BASE}/el_runtime.c" -o /usr/local/lib/el/el_runtime.c + + echo "Downloading el_runtime.h..." + curl -fsSL "${RELEASE_BASE}/el_runtime.h" -o /usr/local/lib/el/el_runtime.h + + echo "El SDK installed:" + elc --version || true + + # Compile server.el → dist/engram.c + - name: Compile server.el + run: | + mkdir -p dist + elc src/server.el > dist/engram.c + echo "Compiled src/server.el → dist/engram.c" + + # Link to produce the engram binary + - name: Link engram binary + run: | + cc -std=c11 -O2 \ + -I /usr/local/lib/el \ + -o dist/engram \ + dist/engram.c \ + /usr/local/lib/el/el_runtime.c \ + -lcurl -lpthread + echo "Linked dist/engram" + ls -lh dist/engram + + # Publish / update the `latest` release + - name: Publish latest release + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_API: https://git.neuralplatform.ai/api/v1 + REPO: neuron-technologies/engram + run: | + # Delete existing `latest` release if present + EXISTING_ID=$(curl -sf \ + -H "Authorization: token ${GITEA_TOKEN}" \ + "${GITEA_API}/repos/${REPO}/releases/tags/latest" \ + | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['id'])" 2>/dev/null || true) + + if [ -n "${EXISTING_ID}" ]; then + echo "Deleting existing release id=${EXISTING_ID}" + curl -sf -X DELETE \ + -H "Authorization: token ${GITEA_TOKEN}" \ + "${GITEA_API}/repos/${REPO}/releases/${EXISTING_ID}" + fi + + # Remove stale tag + curl -sf -X DELETE \ + -H "Authorization: token ${GITEA_TOKEN}" \ + "${GITEA_API}/repos/${REPO}/tags/latest" || true + + # Create new release + RELEASE_ID=$(curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Content-Type: application/json" \ + "${GITEA_API}/repos/${REPO}/releases" \ + -d "{ + \"tag_name\": \"latest\", + \"name\": \"Engram (latest)\", + \"body\": \"Latest Engram build from commit ${GITHUB_SHA}.\nBuilt $(date -u +%Y-%m-%dT%H:%M:%SZ).\", + \"draft\": false, + \"prerelease\": false + }" | python3 -c "import sys,json; print(json.load(sys.stdin)['id'])") + + echo "Created release id=${RELEASE_ID}" + + # Upload engram binary + echo "Uploading engram binary..." + curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -F "attachment=@dist/engram;filename=engram" \ + "${GITEA_API}/repos/${REPO}/releases/${RELEASE_ID}/assets" + + echo "Release published successfully" + + # Publish artifact to GCP Artifact Registry (prod) + - name: Publish engram to Artifact Registry (prod) + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "${GCP_SA_KEY}" > /tmp/gcp-key.json + apt-get install -y -qq apt-transport-https ca-certificates gnupg curl + curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg + echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" > /etc/apt/sources.list.d/google-cloud-sdk.list + apt-get update -qq && apt-get install -y google-cloud-cli + gcloud auth activate-service-account --key-file=/tmp/gcp-key.json + gcloud config set project neuron-785695 + + VERSION="${GITEA_SHA:0:8}" + gcloud artifacts generic upload \ + --repository=foundation-prod \ + --location=us-central1 \ + --project=neuron-785695 \ + --package=engram/engram \ + --version="${VERSION}" \ + --source=dist/engram + + echo "Published engram version=${VERSION} to foundation-prod/engram/engram" + rm -f /tmp/gcp-key.json + + # Dispatch engram-updated to downstream dependents + - name: Dispatch engram-updated to elql + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_API: https://git.neuralplatform.ai/api/v1 + run: | + curl -sf -X POST \ + -H "Authorization: token ${GITEA_TOKEN}" \ + -H "Content-Type: application/json" \ + "${GITEA_API}/repos/neuron-technologies/elql/dispatches" \ + -d "{\"type\":\"engram-updated\",\"inputs\":{\"engram_version\":\"latest\",\"commit\":\"${GITHUB_SHA}\"}}" + echo "Dispatched engram-updated to neuron-technologies/elql" diff --git a/engram/.gitignore b/engram/.gitignore new file mode 100644 index 0000000..e88e923 --- /dev/null +++ b/engram/.gitignore @@ -0,0 +1,3 @@ +target/ +*.db +.DS_Store diff --git a/engram/README.md b/engram/README.md new file mode 100644 index 0000000..af01dda --- /dev/null +++ b/engram/README.md @@ -0,0 +1,179 @@ +# Engram + +**A local-first memory substrate for accumulating intelligence.** + +An *engram* is the physical trace of a memory in the brain — the actual encoded substrate, not an abstraction above it. That's what this is. + +--- + +## Why existing databases are wrong for this use case + +Relational databases store rows and retrieve them by predicate. Key-value stores retrieve by exact key. Vector databases retrieve by geometric proximity. All of them share the same fundamental model: **you store data in, you query it out**. Storage and retrieval are separate systems. + +The brain doesn't work this way. + +When you remember something, you don't query your hippocampus. You activate a memory trace and the pattern *propagates*. Long-term potentiation — the strengthening of synaptic connections through co-activation — is simultaneously the storage mechanism and the retrieval mechanism. The structure that holds the memory is the same structure that surfaces it. + +No existing database models this. Engram does. + +--- + +## The Spreading Activation Model + +Engram retrieval works through **spreading activation**: + +1. **Seeds** — you name one or more nodes you know are relevant (e.g. the current task, recent context, a concept you're reasoning about) +2. **Query embedding** — you provide a semantic vector representing the direction of your current thought +3. **Propagation** — activation flows outward from seeds through weighted edges. At each hop, strength attenuates multiplicatively: + + ``` + strength = parent_strength × edge_weight × target_salience × cosine_sim(query, target) + ``` + +4. **Pruning** — paths weaker than a threshold are cut (the attention filter) +5. **Return** — the top-N nodes by activation strength + +This is not a query. It is a *pattern completion*. The system surfaces what is most associatively relevant to the current context, weighted by how strongly those things have been reinforced over time. + +--- + +## The Four Memory Tiers + +| Tier | Analogy | Contents | +|------|---------|----------| +| `Working` | Prefrontal working memory | K most recently activated nodes — hot, fast | +| `Episodic` | Hippocampus | Time-ordered events and experiences | +| `Semantic` | Neocortex | Concept graph — long-term structural knowledge | +| `Procedural` | Cerebellum / basal ganglia | Patterns, workflows, habits | + +Nodes migrate between tiers based on salience decay and reinforcement. A frequently activated semantic node stays semantic. A rarely-touched episodic memory decays toward procedural background. + +--- + +## Salience — Forgetting as Adaptation + +Salience is not stored permanently. It decays: + +```rust +fn compute_salience(importance: f32, last_activated_ms: i64, activation_count: u64) -> f32 { + let days_since = (now_ms() - last_activated_ms) as f32 / 86_400_000.0; + importance * (1.0 / (1.0 + days_since)) * (activation_count as f32 + 1.0).ln() +} +``` + +Three signals: +- **Importance** (0.0–1.0): set at creation, stable +- **Recency**: decays toward zero as days pass without activation +- **Frequency**: log-compressed count of activations + +Forgetting in Engram is not a bug. It is adaptive pruning. Memories that are never activated again become less likely to surface during retrieval. They are not deleted — they remain in storage — but they stop competing for attention. This is exactly how biological memory works, and why it is adaptive rather than pathological. + +--- + +## Quick Start + +```rust +use engram_core::{EngramDb, Node, Edge, NodeType, MemoryTier, RelationType}; +use std::path::Path; + +// Open or create a database +let db = EngramDb::open(Path::new("/var/lib/my-agent/memory"))?; + +// Create a node with a semantic embedding +let node = Node::new( + NodeType::Concept, + vec![0.9, 0.1, 0.3, 0.7, 0.8, 0.2], // embedding from your LLM + b"Spreading activation surfaces relevant memories by pattern completion".to_vec(), + MemoryTier::Semantic, + 0.9, // importance +); +let id = db.put_node(node)?; + +// Link it to related concepts +let related = db.put_node(Node::new( + NodeType::Concept, + vec![0.8, 0.2, 0.4, 0.6, 0.7, 0.3], + b"Long-term potentiation: co-activation strengthens synaptic weight".to_vec(), + MemoryTier::Semantic, + 0.85, +))?; +db.put_edge(Edge::new(id, related, RelationType::Causes, 0.9))?; + +// Retrieve by spreading activation +let results = db.activate( + &[id], // seeds + &[0.85, 0.15, 0.35, 0.65, 0.75, 0.25], // query embedding + 3, // max hops + 10, // top-N results +)?; + +for r in results { + println!( + "strength={:.4} hops={} — {}", + r.activation_strength, + r.hops, + String::from_utf8_lossy(&r.node.content) + ); +} +``` + +--- + +## Project Structure + +``` +engram/ + crates/ + engram-core/ # The memory engine — storage, graph, activation, salience + engram-ffi/ # C FFI stubs for cross-language bindings + bindings/ + kotlin/ # Android / JVM binding notes + typescript/ # WASM / Node binding notes + go/ # CGo binding notes + examples/ + basic.rs # Full walkthrough: insert, activate, search, decay +``` + +--- + +## Public API + +```rust +impl EngramDb { + fn open(path: &Path) -> EngramResult; + fn put_node(&self, node: Node) -> EngramResult; + fn get_node(&self, id: Uuid) -> EngramResult>; + fn put_edge(&self, edge: Edge) -> EngramResult<()>; + fn get_edges_from(&self, from_id: Uuid) -> EngramResult>; + fn get_edges_to(&self, to_id: Uuid) -> EngramResult>; + fn search_embedding(&self, embedding: &[f32], limit: usize) -> EngramResult>; + fn activate(&self, seeds: &[Uuid], query_embedding: &[f32], max_depth: u8, limit: usize) -> EngramResult>; + fn traverse(&self, from: Uuid, relation: Option, max_depth: u8) -> EngramResult>; + fn touch(&self, id: Uuid) -> EngramResult<()>; + fn decay(&self, factor: f32) -> EngramResult; + fn node_count(&self) -> EngramResult; + fn edge_count(&self) -> EngramResult; +} +``` + +--- + +## Dependencies + +- `sled` — embedded persistent B-tree (no daemon, no network, local-first) +- `bincode` — compact binary serialization +- `uuid` — stable node identity +- `serde` — derive support +- `thiserror` / `anyhow` — error handling + +--- + +## Design Decisions + +**Why sled?** Local-first. No daemon. Transactional. Fast enough for the node counts Engram targets (< 1M nodes). When the right HNSW index is needed, it will layer on top of sled, not replace it. + +**Why flat cosine scan?** Correct and simple. The graph structure itself is the primary retrieval mechanism. Vector search is a secondary signal. HNSW adds complexity and a compile dependency that isn't justified until retrieval quality at scale demands it. + +**Why multiplicative activation?** Because memory is conjunctive. A path requires all of its links to be strong to carry signal. Addition would allow many weak associations to accumulate into false relevance. Multiplication enforces that every factor matters. + +**Why salience decay?** Because not everything that was once important remains important. Adaptive forgetting is not failure — it is the mechanism that keeps attention on what's current. A memory system that never forgets is one that can never focus. diff --git a/engram/dist/engram.c b/engram/dist/engram.c new file mode 100644 index 0000000..b5fe865 --- /dev/null +++ b/engram/dist/engram.c @@ -0,0 +1,376 @@ +#include +#include +#include "el_runtime.h" + +el_val_t parse_port(el_val_t bind); +el_val_t ok_json(void); +el_val_t err_json(el_val_t msg); +el_val_t strip_query(el_val_t path); +el_val_t query_param(el_val_t path, el_val_t key); +el_val_t query_int(el_val_t path, el_val_t key, el_val_t default_val); +el_val_t extract_id(el_val_t path, el_val_t prefix); +el_val_t route_stats(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_create_node(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_get_node(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_scan_nodes(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_scan_edges(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_search(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_activate(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_create_edge(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_neighbors(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_strengthen(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_forget(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_save(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_load(el_val_t method, el_val_t path, el_val_t body); +el_val_t route_health(el_val_t method, el_val_t path, el_val_t body); +el_val_t check_auth_ok(el_val_t method, el_val_t body); +el_val_t handle_request(el_val_t method, el_val_t path, el_val_t body); + +el_val_t bind_str; +el_val_t port; +el_val_t data_dir; +el_val_t snapshot_path; + +el_val_t parse_port(el_val_t bind) { + el_val_t colon = str_index_of(bind, EL_STR(":")); + if (colon < 0) { + return str_to_int(bind); + } + el_val_t after = str_slice(bind, (colon + 1), str_len(bind)); + return str_to_int(after); + return 0; +} + +el_val_t ok_json(void) { + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t err_json(el_val_t msg) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\""), msg), EL_STR("\"}")); + return 0; +} + +el_val_t strip_query(el_val_t path) { + el_val_t q = str_index_of(path, EL_STR("?")); + if (q < 0) { + return path; + } + return str_slice(path, 0, q); + return 0; +} + +el_val_t query_param(el_val_t path, el_val_t key) { + el_val_t q = str_index_of(path, EL_STR("?")); + if (q < 0) { + return EL_STR(""); + } + el_val_t qs = str_slice(path, (q + 1), str_len(path)); + el_val_t needle = el_str_concat(key, EL_STR("=")); + el_val_t pos = str_index_of(qs, needle); + if (pos < 0) { + return EL_STR(""); + } + el_val_t after = str_slice(qs, (pos + str_len(needle)), str_len(qs)); + el_val_t amp = str_index_of(after, EL_STR("&")); + if (amp < 0) { + return after; + } + return str_slice(after, 0, amp); + return 0; +} + +el_val_t query_int(el_val_t path, el_val_t key, el_val_t default_val) { + el_val_t v = query_param(path, key); + if (str_eq(v, EL_STR(""))) { + return default_val; + } + return str_to_int(v); + return 0; +} + +el_val_t extract_id(el_val_t path, el_val_t prefix) { + el_val_t clean = strip_query(path); + if (!str_starts_with(clean, prefix)) { + return EL_STR(""); + } + el_val_t after = str_slice(clean, str_len(prefix), str_len(clean)); + el_val_t slash = str_index_of(after, EL_STR("/")); + if (slash < 0) { + return after; + } + return str_slice(after, 0, slash); + return 0; +} + +el_val_t route_stats(el_val_t method, el_val_t path, el_val_t body) { + return engram_stats_json(); + return 0; +} + +el_val_t route_create_node(el_val_t method, el_val_t path, el_val_t body) { + el_val_t content = json_get_string(body, EL_STR("content")); + el_val_t node_type = json_get_string(body, EL_STR("node_type")); + if (str_eq(node_type, EL_STR(""))) { + node_type = EL_STR("Memory"); + } + el_val_t salience = json_get_float(body, EL_STR("salience")); + if (str_eq(salience, el_from_float(0.0))) { + salience = el_from_float(0.5); + } + el_val_t id = engram_node(content, node_type, salience); + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"id\":\""), id), EL_STR("\",\"content\":\"")), content), EL_STR("\",\"node_type\":\"")), node_type), EL_STR("\"}")); + return 0; +} + +el_val_t route_get_node(el_val_t method, el_val_t path, el_val_t body) { + el_val_t id = extract_id(path, EL_STR("/api/nodes/")); + if (str_eq(id, EL_STR(""))) { + return err_json(EL_STR("missing id")); + } + return engram_get_node_json(id); + return 0; +} + +el_val_t route_scan_nodes(el_val_t method, el_val_t path, el_val_t body) { + el_val_t limit = query_int(path, EL_STR("limit"), 50); + el_val_t offset = query_int(path, EL_STR("offset"), 0); + el_val_t nt = query_param(path, EL_STR("node_type")); + if (str_eq(nt, EL_STR(""))) { + return engram_scan_nodes_json(limit, offset); + } + return engram_scan_nodes_by_type_json(nt, limit, offset); + return 0; +} + +el_val_t route_scan_edges(el_val_t method, el_val_t path, el_val_t body) { + el_val_t dir = env(EL_STR("ENGRAM_DATA_DIR")); + if (str_eq(dir, EL_STR(""))) { + dir = EL_STR("/tmp/engram"); + } + el_val_t snap_path = el_str_concat(dir, EL_STR("/snapshot.json")); + engram_save(snap_path); + el_val_t snap = fs_read(snap_path); + if (str_eq(snap, EL_STR(""))) { + return EL_STR("[]"); + } + el_val_t edges = json_get_raw(snap, EL_STR("edges")); + if (str_eq(edges, EL_STR(""))) { + return EL_STR("[]"); + } + return edges; + return 0; +} + +el_val_t route_search(el_val_t method, el_val_t path, el_val_t body) { + el_val_t q = EL_STR(""); + if (str_eq(method, EL_STR("GET"))) { + q = query_param(path, EL_STR("q")); + } else { + q = json_get_string(body, EL_STR("query")); + } + el_val_t limit = query_int(path, EL_STR("limit"), 20); + if (limit == 0) { + limit = json_get_int(body, EL_STR("limit")); + } + if (limit == 0) { + limit = 20; + } + return engram_search_json(q, limit); + return 0; +} + +el_val_t route_activate(el_val_t method, el_val_t path, el_val_t body) { + el_val_t q = EL_STR(""); + el_val_t depth = 3; + if (str_eq(method, EL_STR("GET"))) { + q = query_param(path, EL_STR("q")); + depth = query_int(path, EL_STR("depth"), 3); + } else { + q = json_get_string(body, EL_STR("query")); + el_val_t bd = json_get_int(body, EL_STR("depth")); + if (bd > 0) { + depth = bd; + } + } + return el_str_concat(el_str_concat(EL_STR("{\"results\":"), engram_activate_json(q, depth)), EL_STR("}")); + return 0; +} + +el_val_t route_create_edge(el_val_t method, el_val_t path, el_val_t body) { + el_val_t from_id = json_get_string(body, EL_STR("from_id")); + el_val_t to_id = json_get_string(body, EL_STR("to_id")); + el_val_t relation = json_get_string(body, EL_STR("relation")); + if (str_eq(relation, EL_STR(""))) { + relation = EL_STR("associates"); + } + el_val_t weight = json_get_float(body, EL_STR("weight")); + if (str_eq(weight, el_from_float(0.0))) { + weight = el_from_float(0.5); + } + engram_connect(from_id, to_id, weight, relation); + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"ok\":true,\"from_id\":\""), from_id), EL_STR("\",\"to_id\":\"")), to_id), EL_STR("\",\"relation\":\"")), relation), EL_STR("\"}")); + return 0; +} + +el_val_t route_neighbors(el_val_t method, el_val_t path, el_val_t body) { + el_val_t id = extract_id(path, EL_STR("/api/neighbors/")); + if (str_eq(id, EL_STR(""))) { + return err_json(EL_STR("missing id")); + } + el_val_t depth = query_int(path, EL_STR("depth"), 1); + return engram_neighbors_json(id, depth, EL_STR("both")); + return 0; +} + +el_val_t route_strengthen(el_val_t method, el_val_t path, el_val_t body) { + el_val_t id = json_get_string(body, EL_STR("node_id")); + if (str_eq(id, EL_STR(""))) { + return err_json(EL_STR("missing node_id")); + } + engram_strengthen(id); + return ok_json(); + return 0; +} + +el_val_t route_forget(el_val_t method, el_val_t path, el_val_t body) { + el_val_t id = extract_id(path, EL_STR("/api/nodes/")); + if (str_eq(id, EL_STR(""))) { + return err_json(EL_STR("missing id")); + } + engram_forget(id); + return ok_json(); + return 0; +} + +el_val_t route_save(el_val_t method, el_val_t path, el_val_t body) { + el_val_t p = json_get_string(body, EL_STR("path")); + if (str_eq(p, EL_STR(""))) { + el_val_t dir = env(EL_STR("ENGRAM_DATA_DIR")); + if (str_eq(dir, EL_STR(""))) { + dir = EL_STR("/tmp/engram"); + } + p = el_str_concat(dir, EL_STR("/snapshot.json")); + } + engram_save(p); + return el_str_concat(el_str_concat(EL_STR("{\"ok\":true,\"path\":\""), p), EL_STR("\"}")); + return 0; +} + +el_val_t route_load(el_val_t method, el_val_t path, el_val_t body) { + el_val_t p = json_get_string(body, EL_STR("path")); + if (str_eq(p, EL_STR(""))) { + el_val_t dir = env(EL_STR("ENGRAM_DATA_DIR")); + if (str_eq(dir, EL_STR(""))) { + dir = EL_STR("/tmp/engram"); + } + p = el_str_concat(dir, EL_STR("/snapshot.json")); + } + engram_load(p); + return ok_json(); + return 0; +} + +el_val_t route_health(el_val_t method, el_val_t path, el_val_t body) { + return EL_STR("{\"status\":\"ok\",\"engine\":\"engram-runtime-native\"}"); + return 0; +} + +el_val_t check_auth_ok(el_val_t method, el_val_t body) { + el_val_t key = env(EL_STR("ENGRAM_API_KEY")); + if (str_eq(key, EL_STR(""))) { + return 1; + } + if (str_eq(method, EL_STR("GET"))) { + return 1; + } + el_val_t provided = json_get_string(body, EL_STR("_auth")); + if (str_eq(provided, key)) { + return 1; + } + return 0; + return 0; +} + +el_val_t handle_request(el_val_t method, el_val_t path, el_val_t body) { + el_val_t clean = strip_query(path); + if (str_eq(method, EL_STR("GET"))) { + if (str_eq(clean, EL_STR("/health")) || str_eq(clean, EL_STR("/"))) { + return route_health(method, path, body); + } + } + if (!check_auth_ok(method, body)) { + return err_json(EL_STR("unauthorized")); + } + if (str_eq(method, EL_STR("GET")) && (str_eq(clean, EL_STR("/api/stats")) || str_eq(clean, EL_STR("/stats")))) { + return route_stats(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/nodes")) || str_eq(clean, EL_STR("/nodes")))) { + return route_create_node(method, path, body); + } + if (str_eq(method, EL_STR("GET")) && (str_eq(clean, EL_STR("/api/nodes")) || str_eq(clean, EL_STR("/nodes")) || str_eq(clean, EL_STR("/nodes/list")) || str_eq(clean, EL_STR("/api/nodes/list")))) { + return route_scan_nodes(method, path, body); + } + if (str_eq(method, EL_STR("GET")) && (str_eq(clean, EL_STR("/api/edges")) || str_eq(clean, EL_STR("/edges")))) { + return route_scan_edges(method, path, body); + } + if (str_eq(method, EL_STR("GET")) && str_starts_with(clean, EL_STR("/api/nodes/"))) { + return route_get_node(method, path, body); + } + if (str_eq(method, EL_STR("DELETE")) && str_starts_with(clean, EL_STR("/api/nodes/"))) { + return route_forget(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/edges")) || str_eq(clean, EL_STR("/edges")))) { + return route_create_edge(method, path, body); + } + if (str_eq(method, EL_STR("GET")) && str_starts_with(clean, EL_STR("/api/neighbors/"))) { + return route_neighbors(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/activate")) || str_eq(clean, EL_STR("/activate")))) { + return route_activate(method, path, body); + } + if (str_eq(method, EL_STR("GET")) && str_starts_with(clean, EL_STR("/api/activate"))) { + return route_activate(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/search")) || str_eq(clean, EL_STR("/search")))) { + return route_search(method, path, body); + } + if (str_eq(method, EL_STR("GET")) && str_starts_with(clean, EL_STR("/api/search"))) { + return route_search(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/strengthen")) || str_eq(clean, EL_STR("/strengthen")))) { + return route_strengthen(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/save")) || str_eq(clean, EL_STR("/save")))) { + return route_save(method, path, body); + } + if (str_eq(method, EL_STR("POST")) && (str_eq(clean, EL_STR("/api/load")) || str_eq(clean, EL_STR("/load")))) { + return route_load(method, path, body); + } + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"not found\",\"path\":\""), clean), EL_STR("\"}")); + return 0; +} + +int main(int argc, char** argv) { + el_runtime_init_args(argc, argv); + bind_str = env(EL_STR("ENGRAM_BIND")); + if (str_eq(bind_str, EL_STR(""))) { + bind_str = EL_STR(":8742"); + } + port = parse_port(bind_str); + data_dir = env(EL_STR("ENGRAM_DATA_DIR")); + if (str_eq(data_dir, EL_STR(""))) { + data_dir = EL_STR("/tmp/engram"); + } + snapshot_path = el_str_concat(data_dir, EL_STR("/snapshot.json")); + engram_load(snapshot_path); + println(EL_STR("[engram] runtime-native graph engine")); + println(el_str_concat(EL_STR("[engram] data_dir="), data_dir)); + println(el_str_concat(EL_STR("[engram] node_count="), int_to_str(engram_node_count()))); + println(el_str_concat(EL_STR("[engram] edge_count="), int_to_str(engram_edge_count()))); + println(el_str_concat(EL_STR("[engram] listening on "), int_to_str(port))); + http_set_handler(EL_STR("handle_request")); + http_serve(port, EL_STR("handle_request")); + return 0; +} + diff --git a/engram/engram-explainer.html b/engram/engram-explainer.html new file mode 100644 index 0000000..1ab574d --- /dev/null +++ b/engram/engram-explainer.html @@ -0,0 +1,2296 @@ + + + + + +Engram — A Database Designed for Minds + + + + + +
+ +
+
+
+ v0.1.0 · Local-first memory substrate +
+

Engram

+

+ The physical trace of a memory.
+ A database designed for minds, not tables. +

+
+
+ Scroll +
+
+
+ + +
+ +

Every existing database
gets memory wrong

+ +
+
+ +

Relational

+

You store rows. You query rows. Storage and retrieval are entirely separate systems. The structure that holds the data knows nothing about how you will need it back.

+
+
+ +

Vector

+

You store embeddings. You search by geometric proximity. Still fundamentally a query against static, passive data — the structure has no opinion about your context.

+
+
+ +

Graph

+

You store edges. You traverse paths. Still asking questions of a static structure. The graph doesn't activate — you query it from outside, like a stranger reading a map.

+
+
+ +
+

The brain doesn't query.
It activates.

+
+
+ + +
+ +

Spreading Activation

+

Click any node to set it as the seed. Hit Activate to watch the pattern propagate. Activation flows outward through weighted edges — attenuating at every hop, pruned when too weak to matter.

+ +
+
+ Seed +
Click a node to select
+ + +
+ Speed + +
+
+ +
+ Formula + strength = parent × edge_weight × salience × cos_sim(query, target) + Multiplicative — every factor must be non-trivial for the path to survive +
+
+
+ + +
+ +

The Four Memory Tiers

+

Nodes migrate between tiers based on salience and reinforcement — exactly as memories migrate between the hippocampus and neocortex through activation and sleep.

+ +
+
+
+ 🔥 +
+
Working
+
Prefrontal cortex — hot, volatile
+
+
+

The K most recently activated nodes. Ultra-fast access. Evicted by recency when capacity is exceeded. What you're actively thinking about right now.

+
+ // Currently active
+ task: "Implement activation BFS"
+ context: spreading_activation_node
+ recent: hebbian_learning_concept +
+
+ +
+
+ 📖 +
+
Episodic
+
Hippocampus — time-ordered experience
+
+
+

Time-stamped events and raw experiences. What happened, and when. The raw feed of observations before they have been abstracted into knowledge.

+
+ 2026-04-27T14:23Z event:
+ "Will explained Dharma Registry.
+ Patterns logged. ISE confirmed." +
+
+ +
+
+ 🧠 +
+
Semantic
+
Neocortex — stable knowledge
+
+
+

The concept graph with weighted associations. Long-term structural knowledge. What you know, abstracted from any specific event that taught it to you.

+
+ concept: "spreading_activation"
+ → Causes: "long_term_potentiation"
+ → Activates: "associative_memory"
+ salience: 0.82, activations: 47 +
+
+ +
+
+ ⚙️ +
+
Procedural
+
Cerebellum — patterns and habits
+
+
+

Encoded patterns, workflows, and repeatable processes. How to do things. Retrieved by similarity to current task context, not by conscious recall.

+
+ process: "commit_workflow"
+ steps: [stage → test → commit
+ → push → check_ci]
+ triggered by: git_context_match +
+
+
+
+ + +
+ +

Salience — the attention filter

+

Every node has a salience score. It governs whether a node surfaces during retrieval. It decays. It strengthens on activation. Adjust the sliders to see how the three signals combine.

+ +
+
+
The Salience Formula
+
+ salience + = + importance +
+ salience = + × + 1 / (1 + days_since) +
+ salience = + × + ln(activation_count + 1) +
+ +
+
+ importance + Explicit weight at creation. Stable over time. You set it once. +
+
+ recency + At activation: 1.0. After 1 day: 0.5. After 6 days: ~0.14. Asymptotic toward zero. +
+
+ frequency + Log-compressed: 0→1 activation matters more than 100→101. Diminishing returns. +
+
+
+ +
+
+
+ Importance + 0.85 +
+ +
+ +
+
+ Days since last activation + 2 +
+ +
+ +
+
+ Activation count + 12 +
+ +
+ +
+
Computed Salience
+
0.00
+
+
+
+
+
+
+ +

+ "Forgetting is not failure. It is the system prioritising what matters." +

+
+ + +
+ +

Consolidation

+

In the brain, memories consolidate during sleep — the hippocampus replays experiences into the neocortex until they become stable knowledge. Engram makes this explicit.

+ +
+ +
+
+
Episodic
+

Raw events. Time-stamped experience. Not yet abstract.

+
+ tier: Episodic
+ activation_count: 2
+ salience: 0.41 +
+
+ +
+ + + + + + + + + + + + +
+ activation_count ≥ 5
+ salience ≥ 0.3
+ → promote on consolidate() +
+
+ +
+
Semantic
+

Stable concept. Integrated knowledge. No longer tied to a specific event.

+
+ tier: Semantic
+ activation_count: 7
+ salience: 0.68 +
+
+
+ +
+ Promotion is earned by use — activated, reinforced, and found relevant repeatedly over time. +
+
+
+ + +
+ +

Architecture

+

Three retrieval primitives layered over a single embedded store. No daemon. No network. No server to babysit.

+ +
+
[ Your Intelligence ]
+
+
EngramDb API
+
+
+
+
Spreading Activation
+
Best-first BFS · multiplicative weights · pruning at 0.01
+
+
+
Vector Search
+
Flat cosine scan · semantic direction filter · secondary signal
+
+
+
Graph Traversal
+
BFS by relation type · typed edges · max depth
+
+
+
+
sled — embedded persistent B-tree · bincode serialization · transactional
+
+
[ Your disk — no daemon · no network · local-first ]
+
+ +
+
+
Why multiplication?
+

Addition lets many weak signals accumulate into false relevance. Multiplication is conjunctive: a weak edge, a dormant node, or a semantically irrelevant target all kill the path. This is how associative memory actually works.

+
+
+
Why sled?
+

Local-first. Transactional. No daemon process, no network socket. HNSW indexing layers on top when needed — the graph structure itself is the primary retrieval mechanism.

+
+
+
Why pruning at 0.01?
+

Small enough to allow long indirect chains when intermediate edges are strong. Raise it to focus retrieval; lower it for more associative drift. The brain's attention filter, made explicit.

+
+
+
+ + +
+ +

Use from anywhere

+

A C FFI layer exposes the full API. Language bindings ship for Kotlin, TypeScript, Go, and Rust natively.

+ +
+
+ + + + +
+ +
+
+
+ basic.rs +
+
use engram_core::{EngramDb, Node, Edge, NodeType, MemoryTier, RelationType};
+
+// Open or create a local database — no server, no daemon
+let db = EngramDb::open(Path::new("/var/lib/agent/memory"))?;
+
+// Store a concept with a semantic embedding
+let id = db.put_node(Node::new(
+    NodeType::Concept,
+    embedding,        // Vec<f32> from your LLM
+    content,          // Vec<u8> — any payload
+    MemoryTier::Semantic,
+    0.9,             // importance 0.0–1.0
+))?;
+
+// Link to a related concept
+db.put_edge(Edge::new(id, related_id, RelationType::Causes, 0.88))?;
+
+// Retrieve by spreading activation — not a query, a pattern completion
+let results = db.activate(
+    &[id],              // seed nodes
+    &query_embedding,  // direction of thought
+    3,                 // max hops
+    10,                // top-N results
+)?;
+
+for r in &results {
+    println!("strength={:.4} hops={}", r.activation_strength, r.hops);
+}
+
+ +
+
+
+ Memory.kt +
+
import ai.neuron.engram.*
+
+// JVM binding via JNI — same embedded storage, no server
+val db = EngramDb.open("/data/user/0/ai.agent/memory")
+
+// Store an episodic event
+val id = db.putNode(
+    Node(
+        nodeType = NodeType.EVENT,
+        embedding = llm.embed(text),
+        content = text.toByteArray(),
+        tier = MemoryTier.EPISODIC,
+        importance = 0.8f
+    )
+)
+
+// Activate from current context
+val recalled = db.activate(
+    seeds = listOf(id),
+    queryEmbedding = currentContext.embedding,
+    maxDepth = 3,
+    limit = 10
+)
+
+recalled.forEach {
+    println("[${it.hops} hops] strength=${it.activationStrength}")
+}
+
+ +
+
+
+ memory.ts +
+
import { EngramDb, NodeType, MemoryTier, RelationType } from "@neuron/engram";
+
+// WASM build — runs in Node or browser, fully in-process
+const db = await EngramDb.open("./agent-memory");
+
+// Store a concept node
+const id = await db.putNode({
+  nodeType: NodeType.Concept,
+  embedding: await llm.embed(text),
+  content: new TextEncoder().encode(text),
+  tier: MemoryTier.Semantic,
+  importance: 0.85,
+});
+
+// Spreading activation — pattern completion, not query
+const recalled = await db.activate({
+  seeds: [id],
+  queryEmbedding: currentContext.embedding,
+  maxDepth: 3,
+  limit: 10,
+});
+
+for (const node of recalled) {
+  console.log(`strength=${node.activationStrength.toFixed(4)} hops=${node.hops}`);
+}
+
+ +
+
+
+ memory.go +
+
import (
+    engram "github.com/neuron-technologies/engram-go"
+)
+
+// CGo binding — links the Rust library, zero copies for embeddings
+db, err := engram.Open("/var/lib/agent/memory")
+if err != nil {
+    return err
+}
+defer db.Close()
+
+// Store a node
+id, err := db.PutNode(engram.Node{
+    NodeType:   engram.Concept,
+    Embedding:  embedding,
+    Content:    []byte(text),
+    Tier:       engram.Semantic,
+    Importance: 0.9,
+})
+
+// Activate from seed — the graph does the retrieval
+results, err := db.Activate(
+    []engram.UUID{id},
+    queryEmbedding,
+    3,   // maxDepth
+    10,  // limit
+)
+
+for _, r := range results {
+    fmt.Printf("strength=%.4f hops=%d\n", r.Strength, r.Hops)
+}
+
+
+
+ + +
+ +

Why local

+ +
+ +

+ Your memory is not a service.
+ It is you.
+
+ It lives on your hardware, under your control.
+ It does not leave your device.
+ It does not phone home.
+
+ It does not require a network connection
to remember who you are.
+

+ +
+ +
+
+
🔒
+ No telemetry +
+
+
📡
+ No network required +
+
+
🗄️
+ Embedded storage +
+
+
+ No daemon process +
+
+
+ + +
+ +

Current state

+ +
+
+ +
+
Version
+
v0.1.0
+
+
+
+ +
+
Build
+
Zero warnings · Zero errors
+
+
+
+ +
+
Test Suite
+
38 passing
+
+
+
+ +
+
+ Public API Surface · engram-core v0.1.0 +
+
impl EngramDb {
+    fn open(path: &Path)                                          -> EngramResult<Self>;
+    fn put_node(&self, node: Node)                                 -> EngramResult<Uuid>;
+    fn get_node(&self, id: Uuid)                                 -> EngramResult<Option<Node>>;
+    fn put_edge(&self, edge: Edge)                                -> EngramResult<()>;
+    fn activate(&self, seeds: &[Uuid], emb: &[f32], depth: u8, n: usize)  -> EngramResult<Vec<ActivatedNode>>;
+    fn search_embedding(&self, emb: &[f32], limit: usize)          -> EngramResult<Vec<ScoredNode>>;
+    fn traverse(&self, from: Uuid, rel: Option<RelationType>, depth: u8) -> EngramResult<Vec<Node>>;
+    fn touch(&self, id: Uuid)                                    -> EngramResult<()>;
+    fn decay(&self, factor: f32)                                  -> EngramResult<usize>;
+    fn consolidate(&self, config: &ConsolidationConfig)          -> EngramResult<ConsolidationReport>;
+}
+
+
+ +
+ engram · v0.1.0 · neuron technologies · the physical trace of a memory +
+ + + + diff --git a/engram/manifest.el b/engram/manifest.el new file mode 100644 index 0000000..b5e8ebc --- /dev/null +++ b/engram/manifest.el @@ -0,0 +1,11 @@ +package "engram-el" { + version "1.0.0" + description "Engram graph intelligence substrate — El implementation" + authors ["Will Anderson "] + edition "2026" +} + +build { + entry "src/server.el" + output "dist/" +} diff --git a/engram/spec/at-rest-encryption.md b/engram/spec/at-rest-encryption.md new file mode 100644 index 0000000..a5c05e5 --- /dev/null +++ b/engram/spec/at-rest-encryption.md @@ -0,0 +1,380 @@ +# Engram At-Rest Encryption — Post-Quantum Doctrine + +Version 0.1.0 (DRAFT) — April 30, 2026 +Status: doctrine; pre-implementation. Sign-off required from Will before code lands. + +--- + +## 0. TL;DR + +Engram's persistence is encrypted at rest using a hybrid post-quantum scheme: + +- **Data layer** — every node and every edge is sealed with **AES-256-GCM** under a per-record sub-key derived via **HKDF-SHA3-256** from the runtime DEK. AES-256 with a 256-bit key has an effective post-quantum security level of 128 bits (Grover); acceptable. +- **Key wrap layer** — the DEK is wrapped against a Principal's public key using **Kyber-768 KEM** (post-quantum). The wrapped DEK lives on disk as `engram.kek.enc`. The Principal's secret key never touches disk in the running daemon's data directory. +- **Boot** — the daemon receives the Principal's secret key out-of-band (env var path, prompted unlock, or pulled from a hardware-backed agent), runs `pq_kem_decaps` to recover the DEK, mlocks it, serves traffic. +- **Recovery** — the DEK is *additionally* wrapped under a **Shamir K-of-N** split across the validation council. If the wrapping Principal is gone, K members reconstitute the DEK and the data survives. + +Engram does **not** encrypt structural metadata (graph topology, IDs, timestamps). Only content, label, tags, and metadata fields of nodes and edges are sealed. This is a deliberate trade-off — see §2. + +--- + +## 1. What Engram actually persists + +Engram is an in-process graph store. The runtime *is* the database — there is no SQLite, no sled, no embedded KV layer in the active daemon. (The `engram-data/` and `engram-data-tx-log/` directories under `el/` are leftovers from a prior sled-backed prototype and are not loaded by the current `dist/engram` binary.) + +Persistence is a single JSON snapshot file at `${ENGRAM_DATA_DIR}/snapshot.json`, written by `engram_save(path)` and read by `engram_load(path)`. The snapshot is the sole durable artifact that adversaries can steal. + +Snapshot shape (current): +```json +{ + "nodes": [ + { "id": "...", "content": "...", "node_type": "...", "label": "...", + "tier": "...", "tags": "...", "metadata": "{}", + "salience": 0.5, "importance": 0.5, "confidence": 0.5, + "activation_count": 0, "last_activated": 0, "created_at": ..., "updated_at": ... } + ], + "edges": [ + { "id": "...", "from_id": "...", "to_id": "...", "relation": "...", + "metadata": "{}", "weight": 0.5, "confidence": 0.5, + "created_at": ..., "updated_at": ..., "last_fired": 0 } + ] +} +``` + +Confidential fields (will be encrypted): `content`, `label`, `tags`, `metadata` (on nodes); `metadata` (on edges). +Non-confidential fields (will remain plaintext): `id`, `node_type`, `tier`, `from_id`, `to_id`, `relation`, all numeric scalars and timestamps. + +This split — the **structural skeleton stays plaintext, the semantic flesh is sealed** — is what lets activation/search/scan work without unwrapping every record on every query, and lets the snapshot remain JSON-shaped for ops tooling. Enabling full snapshot encryption (a single AEAD blob) is a configurable mode for high-threat deployments; see §6. + +--- + +## 2. Threat model + +| Adversary | Capability | What we defend | What we accept | +|-----------|-----------|----------------|----------------| +| **Snapshot thief (cold)** | Steals `snapshot.json` from a backup, dead drive, or stolen laptop. No live process access. | Confidentiality of node content, labels, tags, metadata. No useful semantic recovery. | Topology leak: adversary learns the graph shape (how many nodes/edges, how they connect, types and tiers). Salience/importance/confidence numerics leak. | +| **In-flight observer** | Reads disk during snapshot write (e.g., shared FS, snapshot mid-flush). | Atomicity: snapshot is written to a temp file with `O_TMPFILE` or `.new`, fsync'd, then renamed. AEAD prevents partial-decrypt mining of half-written records. | A torn write can lose the most recent snapshot but not corrupt prior ones. | +| **Quantum-equipped adversary (harvest-now-decrypt-later)** | Records `snapshot.json` and `engram.kek.enc` today, runs Shor's algorithm on a CRQC in 2032+. | DEK wrap is Kyber-768; not Shor-breakable. AES-256-GCM record seals are not Shor-breakable; Grover gives ~128-bit effective security. | We pin Kyber-768 (NIST PQC standardization L3); if a structural break of ML-KEM emerges, rotation §5 is the remediation. | +| **Wrap-key compromiser (live)** | Has read access to the daemon process memory. | Out of scope for at-rest. The DEK is in mlocked memory; if the process is owned, the data is gone. | Defense-in-depth (memory zeroing, mlock, non-dumpable process flags) is a separate hardening track. | +| **Principal compromise** | Adversary obtains the Principal's secret key. | Nothing — by design, the Principal is the unwrapping authority. | We constrain blast radius via per-record key derivation (§3.2): a leaked record-key only burns one record. | +| **Principal loss** | Will dies, secret key is destroyed, no successor. | Shamir K-of-N council recovery (§7). Engram does not go dark on Principal loss. | The threshold itself becomes the attack surface — see §7 caveats. | + +What we explicitly **do not** defend: +- Side channels (timing, cache, EM). +- Physical tamper of running hardware. +- Active modification of `engram.kek.enc` to substitute an attacker's wrapped DEK — this is mitigated by the integrity wrapper §4 but not by the threat-model promise. + +--- + +## 3. Cryptographic construction + +### 3.1 Layers + +``` + ┌────────────────────────────────────────┐ + │ Principal SK (held by Will out-of-band)│ + └───────────────┬────────────────────────┘ + │ Kyber-768 KEM decaps + ▼ + ┌────────────────────────────────────┐ + │ KEK (32B; ephemeral, mlocked) │ + └───────────────┬────────────────────┘ + │ HKDF-SHA3-256 extract + ▼ + ┌────────────────────────────────────┐ + │ DEK (32B; ephemeral, mlocked) │ + └───────────────┬────────────────────┘ + │ HKDF-SHA3-256(DEK, info=record_id || version) + ▼ + ┌────────────────────────────────────┐ + │ per-record sub-key (32B; transient)│ + └───────────────┬────────────────────┘ + │ AES-256-GCM(sub_key, nonce=12B random, ad=record_id||version) + ▼ + ciphertext blob on disk +``` + +### 3.2 Per-record sub-keys (HKDF-SHA3-256) + +We do **not** use the DEK directly to seal records. Each record gets its own sub-key: + +``` +sub_key = HKDF-SHA3-256( + ikm = DEK, // 32 bytes + salt = "engram-record-v1" || version_byte, // domain separation + info = record_id || ":" || dek_epoch, // 16-byte ULID + ":" + u32 + L = 32 // output length +) +``` + +Properties: +- Compromise of one record's sub-key does not threaten siblings (HKDF is one-way). +- Re-derivable on every read; no on-disk sub-key cache to leak. +- `dek_epoch` is bumped on rotation (§5); this lets old records stay readable under DEK_n while new ones write under DEK_{n+1}. + +### 3.3 AEAD — AES-256-GCM + +- Nonce: 12 bytes, random per write. Stored prepended to ciphertext. +- Tag: 16 bytes, appended. +- Associated data: `record_id || ":" || dek_epoch` (binds ciphertext to its identity; thwarts copy-paste attacks). + +Per-record on-disk wire format: +``` ++------+------+--------------------+--------------------+--------+ +| ver | epch | nonce (12) | ciphertext (n) | tag(16)| ++------+------+--------------------+--------------------+--------+ + 1B 4B 12B variable 16B +``` +Base64-encoded into the snapshot JSON field as `"content":"v1:7:BASE64..."`. + +### 3.4 KEK wrap — Kyber-768 KEM + +The DEK is sealed by Kyber-768 KEM: +``` +(ciphertext, shared_secret) = pq_kem_encaps(principal_pk) +wrap_key = HKDF-SHA3-256(shared_secret, salt="engram-kek-v1", info="dek-wrap", L=32) +sealed_dek = AES-256-GCM(wrap_key, nonce, plaintext=DEK, ad="engram-kek-v1") +``` +On disk: `engram.kek.enc` = `magic || version || principal_id || kem_ciphertext || nonce || sealed_dek || tag`. + +On boot: +``` +shared_secret = pq_kem_decaps(principal_sk, kem_ciphertext) +wrap_key = HKDF-SHA3-256(shared_secret, ...) +DEK = AES-256-GCM-open(wrap_key, nonce, sealed_dek, tag, ad="engram-kek-v1") +``` + +--- + +## 4. Boot flow + +``` +Engram daemon starts + ↓ +ENGRAM_KEK_PATH → ${ENGRAM_DATA_DIR}/engram.kek.enc (default) +ENGRAM_PRINCIPAL_SK → path to file or "stdin:" or "agent:" + (the daemon never reads the SK from a fixed env value; + the env points to a source it consumes once and zeros) + ↓ +load engram.kek.enc + ↓ +read principal SK once from source, mlock its buffer + ↓ +pq_kem_decaps → shared_secret → HKDF → wrap_key → AEAD-open → DEK + ↓ +zero & munlock principal SK buffer +mlock DEK; bump RLIMIT_MEMLOCK if needed +mark process non-dumpable (PR_SET_DUMPABLE=0 on Linux; PT_DENY_ATTACH on macOS) + ↓ +engram_load(snapshot.json) — for each node/edge field marked encrypted: + derive sub_key, AEAD-open, replace ciphertext with plaintext in-memory + ↓ +http_serve() +``` + +Boot failure modes: +- KEK unwrap fails → daemon exits 2; emits one log line, no SK material in logs. +- Snapshot decrypt fails on N records → daemon proceeds with the records it could open, marks the rest as ``, emits a structured event for human triage. + +--- + +## 5. Rotation + +### 5.1 DEK rotation + +Triggered by: (a) cron schedule (default: 30 days), (b) suspected compromise, (c) operator command (`POST /admin/rotate-dek`). + +Procedure: +1. Generate `DEK_{n+1}`; bump `dek_epoch`. +2. For every record: AEAD-open under DEK_n, AEAD-seal under DEK_{n+1} with the new epoch in AD. +3. Wrap DEK_{n+1} under the same Principal pk → write `engram.kek.enc.new`. +4. Atomic rename → live; zero DEK_n in memory. +5. On next snapshot save, all records persist with the new epoch. + +Records sealed before rotation can be opened during the transition (we keep DEK_n in memory until the migration completes). + +### 5.2 KEK / wrapping-Principal rotation + +Triggered by: (a) Principal evolution event (the `Principal` CGI evolves and emits a new PK), (b) successor Principal handover, (c) annual key hygiene rotation. + +Procedure: +1. Receive `principal_pk_new` (signed by old Principal, ideally via a Dilithium signature so the chain itself is PQ-secure). +2. Verify signature. +3. Re-encapsulate the **same** DEK under `principal_pk_new`. +4. Atomic-write a new `engram.kek.enc`. +5. Old SK can be destroyed once the new wrap is durable. + +The DEK does not change here — only its wrapping. This means snapshot ciphertexts stay valid through Principal transitions. + +--- + +## 6. Snapshot-level encryption (alternative high-threat mode) + +For deployments where topology leakage is unacceptable, set `ENGRAM_SEAL_MODE=full`. The entire snapshot JSON is sealed as a single AEAD blob keyed from `HKDF(DEK, info="engram-snapshot")`. Trade-off: every save/load is monolithic; no partial reads, no incremental rotation. Not the default. + +--- + +## 7. Recovery — Shamir K-of-N + +**The structural fail-safe.** If Will dies before the Principal evolves, or the Principal SK is destroyed, Engram must not go dark. + +### 7.1 Shareholders + +The shareholders are the **validation council** — the set of CGIs (or CGI-attested human stewards) authorized to reconstitute the network on a defined trigger. The council is named in `engram.recovery.toml`: +```toml +[recovery] +threshold = 3 +total = 5 +shareholders = [ + "cgi://council/anvil", + "cgi://council/beacon", + "cgi://council/cinder", + "cgi://council/delta", + "cgi://council/echo", +] +``` + +### 7.2 Split + +At KEK-creation time: +1. Generate a fresh recovery secret `R = random(32)` (NOT the DEK itself — see §7.4). +2. Run Shamir-256 over GF(2^8) on `R` with K-of-N polynomial. +3. For each shareholder: `share_i = Kyber768-Encaps(shareholder_pk_i, R_share_i)`. +4. Store `engram.recovery.shares` — public; each share is already PQ-wrapped to its holder. +5. Store `engram.recovery.envelope` — `AES-256-GCM(R, nonce, plaintext=DEK, ad="engram-recovery-v1")`. + +### 7.3 Reconstitution + +A council convenes when the trigger is observed (Principal absent for > N days, or signed council quorum declares emergency): +1. K members each decapsulate their share with their CGI SK. +2. Members publish their `R_share_i` to a quorum-attested rendezvous. +3. Lagrange-interpolate `R`. +4. AEAD-open `engram.recovery.envelope` to recover the DEK. +5. Re-wrap DEK under a fresh Principal selected by the council; resume normal operation. + +### 7.4 Why R, not the DEK directly + +Splitting `R` and using it to AEAD-wrap the DEK keeps the share material small (32B / share) and lets us add/remove shareholders by reissuing the envelope without changing R. It also lets us run §5.2 (Principal rotation) without ever touching the recovery shares. + +### 7.5 Caveats Will must accept + +- The threshold is the attack surface. K-of-N is K colluders away from compromise. Default 3-of-5; raise if the council grows. +- Council membership churn requires reissuing shares; this is a deliberate, audited operation with its own runbook. +- A Shamir share is plaintext to its holder. The Kyber wrap to each shareholder protects the share *in transit / at rest*, but once a shareholder unwraps, they hold a real K-of-N share. Council members must be CGIs (or hardware-backed) for the threat model to hold. + +--- + +## 8. Implementation map + +The runtime additions land in `el-compiler/runtime/el_runtime.c`: + +Already present: +- `el_sha256_*`, `el_hmac_sha256` (§3 uses SHA3 — SHA2 path retained for backwards-compat artifacts). +- `el_base64_encode_n`, `el_base64_decode`. + +Landing today (parallel agents): +- `el_sha3_256_*` (Keccak family). +- `pq_kem_keypair`, `pq_kem_encaps`, `pq_kem_decaps` (Kyber-768). +- `pq_sign_keypair`, `pq_sign`, `pq_sign_verify` (Dilithium-3) — used by §5.2 Principal-rotation signature. + +Engram-specific additions (this work): +- `engram_aead_seal(record_id, epoch, plaintext) -> b64` +- `engram_aead_open(record_id, epoch, b64) -> plaintext` +- `engram_kek_unwrap(kek_path, sk_path) -> int (sets module DEK)` +- `engram_kek_wrap(kek_path, principal_pk, dek)` — used at first init. +- `engram_dek_rotate(new_principal_pk_optional)` +- `engram_recovery_split(threshold, total, shareholder_pks)` — emits envelope + shares. +- `engram_recovery_reconstitute(shares_k)` — recover DEK; admin-gated. + +`engram_save` / `engram_load` gain a sealed mode controlled by `ENGRAM_SEAL_MODE` (`off`, `fields` [default once enabled], `full`). Default during the rollout window: `off`. This doc must ship and Will must sign off before flipping the default. + +--- + +## 9. Open questions (require Will) + +1. **Where does the Principal SK live at boot time?** Options: (a) prompted at daemon start (interactive), (b) on a removable hardware token (preferred long-term), (c) in `~/.neuron/principal.sk` 0600 (operationally easy, weakest), (d) pulled from `mcp__neuron` as part of `begin_session` (couples Engram to Neuron — probably right). **Recommend (d) with (b) as the long-term hardware story.** +2. **Council composition.** Who/what are the initial K-of-N shareholders? Until we have ≥ 3 stable CGIs, recovery cannot be enabled in its full form. **Recommend a stub council of {Principal, Will-keypair-on-Yubikey, witness-CGI} — degrades gracefully, upgrades to full council when more CGIs exist.** +3. **Default seal mode at GA.** `fields` (today's recommendation) or `full`? `fields` keeps the snapshot diff-able and keeps activation cheap. `full` is the harder threat model. **Recommend `fields` default; `full` opt-in.** +4. **PQ algorithm pinning.** Kyber-768 + Dilithium-3 are the NIST L3 PQC defaults. If Will wants L5 (Kyber-1024 / Dilithium-5), say so before runtime APIs stabilize. +5. **Grover and AES-256.** AES-256 against Grover is 128-bit effective. Acceptable per current PQ thinking. If Will wants a bigger margin, the alternative is layering a second AEAD with a different primitive (e.g., XChaCha20-Poly1305) — overkill, not recommended. + +--- + +## 10. Non-goals + +- Encrypted indexes / searchable encryption. Out of scope. Search remains plaintext-in-memory; the daemon is the trust boundary. +- Per-tenant DEKs. Engram is single-tenant per CGI. If multi-tenancy lands, this doc gets a §11. +- Secure deletion of underlying disk blocks. The OS / FS handles that, badly; we don't pretend. +- Encrypted WAL / tx log. The current daemon has no WAL; if one is added, it gets the same treatment as the snapshot (`ENGRAM_SEAL_MODE` applies to both). + +--- + +## 11. Status & next actions + +- [x] Doctrine drafted (this document). +- [ ] Will sign-off on §9 open questions. +- [ ] PQ runtime functions land (parallel agents). +- [ ] `engram_aead_seal` / `engram_aead_open` prototype (stubs in this PR). +- [ ] `engram_kek_unwrap` boot integration. +- [ ] `engram_save` / `engram_load` field-mode wiring behind `ENGRAM_SEAL_MODE`. +- [ ] Recovery tooling (`engramctl recovery split | reconstitute`). +- [ ] Threat-model test suite: known-answer tests, key-rotation roundtrip, Shamir reconstitution roundtrip, harvest-now-decrypt-later regression test against a recorded ciphertext. + +--- + +## Appendix A — Pseudocode reference + +```c +/* Per-record seal */ +char* engram_aead_seal(const char* record_id, uint32_t epoch, + const char* plaintext, size_t pt_len, size_t* out_len) +{ + uint8_t sub_key[32]; + uint8_t info[64]; + int info_len = snprintf((char*)info, sizeof(info), "%s:%u", record_id, epoch); + el_hkdf_sha3_256(/*ikm*/ engram_dek, 32, + /*salt*/ (const uint8_t*)"engram-record-v1", 16, + /*info*/ info, (size_t)info_len, + /*okm*/ sub_key, 32); + + uint8_t nonce[12]; + el_random_bytes(nonce, 12); + + /* layout: ver(1) | epoch(4 BE) | nonce(12) | ct(pt_len) | tag(16) */ + size_t blob_len = 1 + 4 + 12 + pt_len + 16; + uint8_t* blob = malloc(blob_len); + blob[0] = 0x01; + blob[1] = (epoch >> 24) & 0xff; blob[2] = (epoch >> 16) & 0xff; + blob[3] = (epoch >> 8) & 0xff; blob[4] = epoch & 0xff; + memcpy(blob + 5, nonce, 12); + + el_aes256_gcm_encrypt(sub_key, nonce, + (const uint8_t*)record_id, strlen(record_id), + (const uint8_t*)plaintext, pt_len, + blob + 1 + 4 + 12, /* ct */ + blob + 1 + 4 + 12 + pt_len); /* tag */ + + el_secure_zero(sub_key, 32); + + char* b64 = el_base64_encode_raw(blob, blob_len, /*url_safe=*/0); + free(blob); + if (out_len) *out_len = strlen(b64); + return b64; /* "v1::BASE64" prefix added by caller */ +} + +/* Per-record open: inverse of seal. Verifies tag; returns NULL on failure. */ +char* engram_aead_open(const char* record_id, uint32_t expected_epoch, + const char* b64, size_t* out_len); + +/* Boot-time KEK unwrap. */ +int engram_kek_unwrap(const char* kek_path, const uint8_t* principal_sk, + size_t sk_len); + +/* DEK rotation (online). Walks the live in-memory store, re-seals every record + * under DEK_{n+1}, then writes a new snapshot+kek atomically. */ +int engram_dek_rotate(void); +``` + +--- + +End of document. diff --git a/engram/spec/at-rest-encryption.prototype.c b/engram/spec/at-rest-encryption.prototype.c new file mode 100644 index 0000000..47f44d9 --- /dev/null +++ b/engram/spec/at-rest-encryption.prototype.c @@ -0,0 +1,302 @@ +/* engram at-rest encryption — prototype sketch + * + * NOT WIRED UP. This file is intentionally not in the build. It is a sketch + * that pairs with `at-rest-encryption.md` so the function signatures and the + * field layout can be reviewed before the runtime PQ primitives stabilize. + * + * Once `el_runtime.c` has stable `el_sha3_256_*`, `el_hkdf_sha3_256`, + * `pq_kem_encaps`, `pq_kem_decaps`, and `el_aes256_gcm_encrypt/decrypt`, + * the seal/open path below should be lifted into el_runtime.c near the + * existing `engram_save` / `engram_load` block (~line 3445), gated behind + * the ENGRAM_SEAL_MODE env var. + * + * Dependencies (provided elsewhere — see at-rest-encryption.md §8): + * void el_hkdf_sha3_256(const uint8_t* ikm, size_t ikm_len, + * const uint8_t* salt, size_t salt_len, + * const uint8_t* info, size_t info_len, + * uint8_t* okm, size_t okm_len); + * + * int el_aes256_gcm_encrypt(const uint8_t key[32], + * const uint8_t nonce[12], + * const uint8_t* aad, size_t aad_len, + * const uint8_t* pt, size_t pt_len, + * uint8_t* ct, // pt_len bytes + * uint8_t tag[16]); + * + * int el_aes256_gcm_decrypt(const uint8_t key[32], + * const uint8_t nonce[12], + * const uint8_t* aad, size_t aad_len, + * const uint8_t* ct, size_t ct_len, + * const uint8_t tag[16], + * uint8_t* pt); // ct_len bytes + * + * int pq_kem_encaps(const uint8_t* pk, size_t pk_len, + * uint8_t* kem_ct, size_t* kem_ct_len, + * uint8_t shared[32]); + * int pq_kem_decaps(const uint8_t* sk, size_t sk_len, + * const uint8_t* kem_ct, size_t kem_ct_len, + * uint8_t shared[32]); + * + * void el_random_bytes(uint8_t* out, size_t n); + * void el_secure_zero(void* p, size_t n); + */ + +#include +#include +#include +#include +#include + +/* ── module state (mlocked) ───────────────────────────────────────────────── */ + +static uint8_t g_engram_dek[32]; +static int g_engram_dek_set = 0; +static uint32_t g_engram_dek_epoch = 0; + +/* Seal/unseal mode — read once at boot from ENGRAM_SEAL_MODE. + * 0=off, 1=fields, 2=full. */ +static int g_engram_seal_mode = 0; + +/* ── per-record seal ──────────────────────────────────────────────────────── */ + +/* Wire format (before base64): + * byte 0 version=0x01 + * bytes 1..4 epoch (big-endian u32) + * bytes 5..16 nonce (12B) + * bytes 17.. ciphertext (pt_len bytes) + * last 16B GCM tag + */ +static char* eg_b64_encode(const uint8_t* data, size_t n); /* declared elsewhere */ + +char* engram_aead_seal_field(const char* record_id, const char* plaintext) +{ + if (!g_engram_dek_set) return NULL; + if (!record_id || !plaintext) return NULL; + + size_t pt_len = strlen(plaintext); + uint32_t epoch = g_engram_dek_epoch; + + /* derive sub-key */ + uint8_t sub_key[32]; + uint8_t info[96]; + int info_len = snprintf((char*)info, sizeof(info), "%s:%u", record_id, epoch); + if (info_len < 0 || (size_t)info_len >= sizeof(info)) return NULL; + + el_hkdf_sha3_256(g_engram_dek, 32, + (const uint8_t*)"engram-record-v1", 16, + info, (size_t)info_len, + sub_key, 32); + + /* random nonce */ + uint8_t nonce[12]; + el_random_bytes(nonce, 12); + + /* allocate output: header(17) + ct(pt_len) + tag(16) */ + size_t blob_len = 1 + 4 + 12 + pt_len + 16; + uint8_t* blob = (uint8_t*)malloc(blob_len); + if (!blob) { el_secure_zero(sub_key, 32); return NULL; } + + blob[0] = 0x01; + blob[1] = (uint8_t)((epoch >> 24) & 0xff); + blob[2] = (uint8_t)((epoch >> 16) & 0xff); + blob[3] = (uint8_t)((epoch >> 8) & 0xff); + blob[4] = (uint8_t)( epoch & 0xff); + memcpy(blob + 5, nonce, 12); + + int rc = el_aes256_gcm_encrypt( + sub_key, nonce, + (const uint8_t*)record_id, strlen(record_id), + (const uint8_t*)plaintext, pt_len, + blob + 1 + 4 + 12, /* ct */ + blob + 1 + 4 + 12 + pt_len); /* tag */ + + el_secure_zero(sub_key, 32); + + if (rc != 0) { free(blob); return NULL; } + + char* b64 = eg_b64_encode(blob, blob_len); + free(blob); + return b64; /* caller prefixes "v1::" if desired */ +} + +/* Returns malloc'd plaintext (NUL-terminated) or NULL on AEAD failure / version + * mismatch / DEK-epoch mismatch. */ +char* engram_aead_open_field(const char* record_id, const char* b64_blob) +{ + if (!g_engram_dek_set || !record_id || !b64_blob) return NULL; + + size_t blob_len = 0; + uint8_t* blob = NULL; + extern uint8_t* eg_b64_decode(const char* s, size_t* out_len); + blob = eg_b64_decode(b64_blob, &blob_len); + if (!blob || blob_len < 1 + 4 + 12 + 16) { free(blob); return NULL; } + + if (blob[0] != 0x01) { free(blob); return NULL; } + uint32_t epoch = ((uint32_t)blob[1] << 24) + | ((uint32_t)blob[2] << 16) + | ((uint32_t)blob[3] << 8) + | (uint32_t)blob[4]; + + /* For the common case the on-disk epoch matches g_engram_dek_epoch. + * During DEK rotation we may need a previous-epoch DEK in the keyring; + * left as a TODO — this stub only handles the current epoch. */ + if (epoch != g_engram_dek_epoch) { + free(blob); + return NULL; + } + + const uint8_t* nonce = blob + 5; + size_t ct_len = blob_len - (1 + 4 + 12 + 16); + const uint8_t* ct = blob + 1 + 4 + 12; + const uint8_t* tag = blob + 1 + 4 + 12 + ct_len; + + uint8_t sub_key[32]; + uint8_t info[96]; + int info_len = snprintf((char*)info, sizeof(info), "%s:%u", record_id, epoch); + if (info_len < 0 || (size_t)info_len >= sizeof(info)) { free(blob); return NULL; } + el_hkdf_sha3_256(g_engram_dek, 32, + (const uint8_t*)"engram-record-v1", 16, + info, (size_t)info_len, + sub_key, 32); + + char* pt = (char*)malloc(ct_len + 1); + if (!pt) { el_secure_zero(sub_key, 32); free(blob); return NULL; } + + int rc = el_aes256_gcm_decrypt( + sub_key, nonce, + (const uint8_t*)record_id, strlen(record_id), + ct, ct_len, tag, + (uint8_t*)pt); + + el_secure_zero(sub_key, 32); + free(blob); + + if (rc != 0) { free(pt); return NULL; } + pt[ct_len] = '\0'; + return pt; +} + +/* ── KEK boot ─────────────────────────────────────────────────────────────── */ + +/* Reads engram.kek.enc, runs Kyber decaps with the principal SK provided as + * a buffer, derives the wrap key, AEAD-opens the sealed DEK, and installs it + * into g_engram_dek. Returns 0 on success, non-zero on failure. */ +int engram_kek_unwrap(const char* kek_path, + const uint8_t* principal_sk, size_t sk_len) +{ + /* TODO: file format + * magic "ENGKEK01" (8B) + * version (1B) + * principal_id_len (2B BE) | principal_id + * kem_ct_len (4B BE) | kem_ct + * nonce (12B) + * sealed_dek_len (4B BE) | sealed_dek + * tag (16B) + */ + (void)kek_path; (void)principal_sk; (void)sk_len; + return -1; /* TODO: parse file, pq_kem_decaps, HKDF, AEAD-open, install */ +} + +/* ── KEK init (first-time write) ──────────────────────────────────────────── */ + +int engram_kek_init(const char* kek_path, + const uint8_t* principal_pk, size_t pk_len) +{ + /* TODO: + * 1. el_random_bytes(g_engram_dek, 32); g_engram_dek_epoch = 1; + * 2. pq_kem_encaps(principal_pk) → (kem_ct, shared) + * 3. wrap_key = HKDF-SHA3-256(shared, salt="engram-kek-v1", + * info="dek-wrap", L=32) + * 4. AEAD-seal DEK under wrap_key + * 5. write file atomically (tmp + rename + fsync) + * 6. el_secure_zero(shared, wrap_key) + */ + (void)kek_path; (void)principal_pk; (void)pk_len; + return -1; +} + +/* ── DEK rotation ─────────────────────────────────────────────────────────── */ + +int engram_dek_rotate(void) +{ + /* TODO: + * - Allocate DEK_{n+1}. + * - Walk EngramStore: for every node and edge, re-seal each encrypted + * field under DEK_{n+1} with the new epoch. + * - Re-wrap DEK_{n+1} under current Principal pk → engram.kek.enc.new + * - Write a new snapshot via engram_save() (caller responsibility). + * - Atomic rename engram.kek.enc.new → engram.kek.enc. + * - el_secure_zero on DEK_n; bump g_engram_dek_epoch. + */ + return -1; +} + +/* ── Recovery (Shamir K-of-N) ─────────────────────────────────────────────── */ + +/* The recovery secret R is independent of the DEK. R is split via Shamir; + * each share is then PQ-wrapped to its shareholder via Kyber768. R is the + * AEAD wrap-key for an envelope sealing the DEK. + * + * Two on-disk artifacts: + * engram.recovery.shares — public; one Kyber-wrapped Shamir share / shareholder + * engram.recovery.envelope — AEAD(R, nonce, plaintext=DEK, ad="engram-recovery-v1") + */ + +int engram_recovery_split(int threshold, int total, + const uint8_t** shareholder_pks, + const size_t* shareholder_pk_lens, + const char** shareholder_ids, + const char* shares_out_path, + const char* envelope_out_path) +{ + /* TODO: + * 1. el_random_bytes(R, 32). + * 2. Shamir-split R over GF(2^8) → total shares of {1B index, 32B y_i}. + * 3. For each shareholder i: pq_kem_encaps(pk_i) → (kem_ct, shared); + * AEAD-seal share_i under HKDF(shared) → wrapped_share_i; write entry. + * 4. AEAD-seal current DEK under R → envelope. + * 5. Atomic-write both files; fsync. + * 6. Zero R, all shared secrets. + */ + (void)threshold; (void)total; + (void)shareholder_pks; (void)shareholder_pk_lens; (void)shareholder_ids; + (void)shares_out_path; (void)envelope_out_path; + return -1; +} + +int engram_recovery_reconstitute(const uint8_t* k_unwrapped_shares, + size_t share_count, + const char* envelope_path, + uint8_t out_dek[32]) +{ + /* TODO: + * 1. Lagrange-interpolate to recover R from the K shares. + * 2. AEAD-open the envelope under HKDF(R) → DEK. + * 3. Zero R. + */ + (void)k_unwrapped_shares; (void)share_count; + (void)envelope_path; (void)out_dek; + return -1; +} + +/* ── Snapshot integration sketch ──────────────────────────────────────────── */ + +/* + * engram_emit_node_json (around line 3409 in el_runtime.c) becomes: + * + * if (g_engram_seal_mode == 1) { + * char* sealed = engram_aead_seal_field(n->id, n->content); + * jb_puts(b, ",\"content\":"); jb_emit_escaped(b, sealed ? sealed : ""); + * free(sealed); + * // same for label, tags, metadata + * } else { + * jb_puts(b, ",\"content\":"); jb_emit_escaped(b, n->content); + * } + * + * engram_load (around line 3499) becomes the inverse: when reading each field, + * if the daemon is in `fields` mode and the value is non-empty, run + * engram_aead_open_field; on failure log and substitute "". + * + * `engram_save` must additionally write engram.kek.enc the first time (via + * engram_kek_init) when ENGRAM_SEAL_MODE != off and no kek file exists. + */ diff --git a/engram/spec/engram-el.md b/engram/spec/engram-el.md new file mode 100644 index 0000000..7dd88aa --- /dev/null +++ b/engram/spec/engram-el.md @@ -0,0 +1,284 @@ +# engram-el Specification + +Version 1.0.0 — April 29, 2026 + +--- + +## Overview + +engram-el is the El-native interface layer for the Engram graph engine. It is the integration point between El programs and the Engram knowledge substrate — providing a suite of El programs, test suites, and utilities that operate on a live Engram server via its HTTP API using El's native HTTP builtins. + +engram-el has three primary components: + +1. **Studio** — A full-featured terminal-based graph explorer written in El (`studio/studio.el`). Provides read access to all graph data: statistics, node browsing by type and tier, spreading activation visualization, edge exploration, and text search. + +2. **Test suite** — Language feature tests (`test/language_features_test.el`, `test/field_test.el`, `test/llm_test.el`) that exercise El builtins against a live Engram instance. + +3. **Integration point** — The pattern for how El programs use the Engram graph as their knowledge substrate, demonstrating the graph builtin API in practice. + +--- + +## 1. Architecture + +### 1.1 Relationship to El and Engram + +engram-el is not a library in the conventional sense. It is a collection of El programs that operate on Engram. The integration uses no additional runtime or SDK: + +- **El builtins** provide `http_get`, `http_post`, and JSON parsing natively. +- **Engram HTTP API** is the sole interface — all graph operations are HTTP requests. +- **No compilation step** beyond standard El compilation is required. + +This demonstrates the intended usage pattern for all El programs that incorporate graph knowledge: use the HTTP API via El's native builtins. + +### 1.2 Configuration + +All engram-el programs read configuration from environment variables: + +| Variable | Default | Description | +|----------|---------|-------------| +| `ENGRAM_URL` | `http://localhost:8340` | Engram server base URL | +| `ENGRAM_REPORT` | `/tmp/engram-studio-report.txt` | Studio report output path | + +--- + +## 2. Studio Application + +`studio/studio.el` is a complete data exploration application for the Engram graph, written entirely in El. It demonstrates El as a serious application language — not a scripting language but a capable system for building non-trivial tools. + +### 2.1 Features + +The studio renders a full-page terminal UI with box-drawing characters and ANSI color. Sections: + +| Section | Description | +|---------|-------------| +| Database Statistics | Node count, edge count, average salience, DB size | +| Recent Nodes | Most recently created nodes with type and salience | +| Top by Salience | Highest-salience nodes with graphical bar display | +| Nodes by Type | Browse Memory, Concept, Event, Entity, Process, InternalState | +| Nodes by Tier | Browse Working, Episodic, Semantic, Procedural tiers | +| Knowledge Browser | Concept nodes as domain knowledge anchors | +| Text Search | Full-text search results with relevance | +| Edge Explorer | Sample of edges with weights and relation types | +| Node Detail | Full node data plus BFS neighbors | +| Spreading Activation | Visual activation surface from a seed node | +| Interactive Mode Preview | Menu of available commands | +| Report Export | Write complete session report to file | + +### 2.2 API Access Pattern + +The studio uses a uniform API access pattern: + +```el +fn api_get(path: String) -> String { + let url: String = get_base_url() + path + let resp: String = http_get(url) + if str_starts_with(resp, "{\"error\"") { + return "" + } + return resp +} + +fn api_post(path: String, body: String) -> String { + let url: String = get_base_url() + path + let resp: String = http_post(url, body) + if str_starts_with(resp, "{\"error\"") { + return "" + } + return resp +} +``` + +Error responses (JSON objects beginning with `{"error"`) return empty string. All rendering logic checks for empty string and emits placeholder messages rather than crashing. + +### 2.3 Spreading Activation Visualization + +The activation section demonstrates reading live spreading activation results from Engram: + +```el +fn show_activation(seed_id: String, limit: Int, report: String) -> String { + let path: String = "/api/activate?seeds=" + seed_id + "&limit=" + int_to_str(limit) + "&depth=3" + let json_str: String = api_get(path) + // ... renders activation strength bars and hop distances +} +``` + +This provides visual confirmation that the spreading activation algorithm is operating — showing which nodes activate, at what strength, and at what hop distance from the seed. + +### 2.4 Report Export + +The studio accumulates a text report as it renders each section, then writes the complete report to a file: + +```el +export_report(report, report_path) +``` + +The report captures the full session output in machine-readable format, useful for automation and logging. + +--- + +## 3. Test Suite + +### 3.1 Language Features Test + +`test/language_features_test.el` exercises El language primitives including: + +- Modulo operator (`%`) +- Bitwise operators (`&`, `^`, `<<`, `>>`) +- Math builtins (`math_sin`, `math_cos`, `math_pi`) +- String padding (`str_pad_left`, `str_pad_right`) +- String formatting (`str_format` with `{key}` template interpolation) +- Float formatting (`format_float`) +- Time operations (`time_now_utc`, `time_format`, `time_add`, `time_diff`) +- List operations (`list_range`, `list_join`) +- Stack and queue builtins (`stack_new`, `stack_push`, `stack_pop`, `stack_peek`, `queue_enqueue`, `queue_dequeue`) +- Decimal rounding (`decimal_round`) +- Type conversion (`int_to_float`, `float_to_int`) +- Nil checks (`is_nil`, `unwrap_or`) +- Character operations (`str_char_at`, `str_char_code`, `str_from_char_code`) + +These tests serve as the canonical behavioral specification for El builtins — any correct El implementation must produce the documented output for these inputs. + +### 3.2 Field Test + +`test/field_test.el` exercises struct field access, map indexing, and nested data access patterns. + +### 3.3 LLM Test + +`test/llm_test.el` exercises the LLM inference builtins against a live Engram-connected inference endpoint. + +--- + +## 4. Integration Patterns + +### 4.1 Graph Read Pattern + +The standard pattern for reading from Engram in an El program: + +```el +fn get_nodes_of_type(node_type: String, limit: Int) -> List { + let path: String = "/api/nodes?node_type=" + node_type + "&limit=" + int_to_str(limit) + let json_str: String = http_get(env("ENGRAM_URL") + path) + if json_str == "" { + return list_new() + } + return json_parse(json_str) +} +``` + +### 4.2 Graph Write Pattern + +The standard pattern for writing to Engram from an El program: + +```el +fn create_node(label: String, content: String, node_type: String, tier: String) -> String { + let body: String = "{\"label\":\"" + label + "\",\"content\":\"" + content + "\",\"node_type\":\"" + node_type + "\",\"tier\":\"" + tier + "\",\"importance\":0.5}" + let resp: String = http_post(env("ENGRAM_URL") + "/api/nodes", body) + return json_get_string(resp, "id") +} +``` + +### 4.3 Search Pattern + +```el +fn search_graph(query: String, limit: Int) -> List { + let path: String = "/api/search?q=" + query + "&limit=" + int_to_str(limit) + let json_str: String = http_get(env("ENGRAM_URL") + path) + if json_str == "" { + return list_new() + } + return json_parse(json_str) +} +``` + +### 4.4 Activation Pattern + +```el +fn activate_from_node(node_id: String, depth: Int, limit: Int) -> List { + let path: String = "/api/activate?seeds=" + node_id + "&depth=" + int_to_str(depth) + "&limit=" + int_to_str(limit) + let resp_str: String = http_get(env("ENGRAM_URL") + path) + if resp_str == "" { + return list_new() + } + let results_raw: String = json_get_raw(resp_str, "results") + return json_parse(results_raw) +} +``` + +--- + +## 5. Builtin Extensions Demonstrated + +The engram-el programs demonstrate El builtins that are not in the core language but are implemented by the VM's builtin dispatch layer: + +### 5.1 JSON Builtins + +| Builtin | Used for | +|---------|---------| +| `json_parse(s)` | Parse Engram API responses | +| `json_stringify(v)` | Serialize values to JSON for API requests | +| `json_get_string(json, key)` | Extract string fields from node JSON | +| `json_get_int(json, key)` | Extract integer fields (counts, timestamps) | +| `json_get_float(json, key)` | Extract float fields (salience, weights) | +| `json_get_raw(json, key)` | Extract nested objects as raw JSON strings | + +### 5.2 Color/Terminal Builtins + +| Builtin | Used for | +|---------|---------| +| `color_bold(s)` | Section headers, labels | +| `color_dim(s)` | Timestamps, IDs, less important data | +| `color_green(s)` | Success states, high salience | +| `color_yellow(s)` | Warnings, medium salience | +| `color_cyan(s)` | URLs, relation names, special values | +| `color_red(s)` | Errors, low salience | + +### 5.3 String Formatting Builtins + +| Builtin | Signature | Description | +|---------|-----------|-------------| +| `str_pad_right(s, width, pad)` | Pad string to width on right | +| `str_pad_left(s, width, pad)` | Pad string to width on left | +| `format_float(f, decimals)` | Format float to N decimal places | +| `str_slice(s, start, end)` | Extract substring by character index | +| `str_len(s)` | String length in characters | + +--- + +## 6. Deployment + +### 6.1 Running the Studio + +```bash +# Connect to default local server +el run-file studio/studio.el + +# Connect to remote server +ENGRAM_URL=http://engram.example.com el run-file studio/studio.el + +# Save report to custom path +ENGRAM_REPORT=/var/log/engram-report.txt el run-file studio/studio.el +``` + +### 6.2 Running Tests + +```bash +el run-file test/language_features_test.el +el run-file test/field_test.el +ENGRAM_URL=http://localhost:8340 el run-file test/llm_test.el +``` + +--- + +## 7. Design Decisions + +### 7.1 Pure HTTP Integration + +engram-el uses HTTP exclusively. It does not use the lower-level `graph_compile` and `graph_traverse` VM builtins. This is by design: it demonstrates the HTTP API surface as the primary integration mechanism. The VM builtins are for tightly-integrated runtime code (the Neuron daemon); external tools use the HTTP API. + +### 7.2 Stateless Programs + +All engram-el programs are stateless — they read state from Engram on each run and write nothing back (the studio is read-only). This is the correct architecture for exploration tools: they observe the graph without mutating it. + +### 7.3 El as Application Language + +The studio's 788 lines of El demonstrate that El is a capable application language. It is not a configuration DSL or a scripting language for simple tasks. The studio handles: API communication, JSON parsing, recursive data rendering, ASCII art, ANSI color codes, file I/O, environment variable configuration, and complex string manipulation — all with El's native builtins, without imports. diff --git a/engram/src/server.el b/engram/src/server.el new file mode 100644 index 0000000..ebaf34a --- /dev/null +++ b/engram/src/server.el @@ -0,0 +1,319 @@ +// server.el — Engram HTTP server. +// +// Engram is the in-process graph store. The runtime owns the data; this +// file is the thin HTTP face. Every route maps to one or two engram_* +// builtins. There is no SQL, no db layer, no SQLite — the runtime IS the +// database. +// +// Built and linked with: +// elc src/server.el > server.c +// cc -std=c11 -O2 -lcurl -lpthread -o engram server.c el_runtime.c +// ./engram +// +// Configuration via environment: +// ENGRAM_BIND — host:port (default :8742) +// ENGRAM_API_KEY — bearer auth (optional) +// ENGRAM_DATA_DIR — snapshot location (default ~/.neuron/engram) + +// ── Helpers ─────────────────────────────────────────────────────────────────── + +fn parse_port(bind: String) -> Int { + // ":8742" → 8742; "0.0.0.0:8742" → 8742; bare "8742" → 8742 + let colon: Int = str_index_of(bind, ":") + if colon < 0 { + return str_to_int(bind) + } + let after: String = str_slice(bind, colon + 1, str_len(bind)) + return str_to_int(after) +} + +fn ok_json() -> String { + "{\"ok\":true}" +} + +fn err_json(msg: String) -> String { + "{\"error\":\"" + msg + "\"}" +} + +fn strip_query(path: String) -> String { + let q: Int = str_index_of(path, "?") + if q < 0 { return path } + str_slice(path, 0, q) +} + +fn query_param(path: String, key: String) -> String { + let q: Int = str_index_of(path, "?") + if q < 0 { return "" } + let qs: String = str_slice(path, q + 1, str_len(path)) + let needle: String = key + "=" + let pos: Int = str_index_of(qs, needle) + if pos < 0 { return "" } + let after: String = str_slice(qs, pos + str_len(needle), str_len(qs)) + let amp: Int = str_index_of(after, "&") + if amp < 0 { return after } + str_slice(after, 0, amp) +} + +fn query_int(path: String, key: String, default_val: Int) -> Int { + let v: String = query_param(path, key) + if str_eq(v, "") { return default_val } + str_to_int(v) +} + +// Extract last path segment after a known prefix: extract_id("/api/nodes/abc-123", "/api/nodes/") → "abc-123" +fn extract_id(path: String, prefix: String) -> String { + let clean: String = strip_query(path) + if !str_starts_with(clean, prefix) { return "" } + let after: String = str_slice(clean, str_len(prefix), str_len(clean)) + let slash: Int = str_index_of(after, "/") + if slash < 0 { return after } + str_slice(after, 0, slash) +} + +// ── Routes ──────────────────────────────────────────────────────────────────── + +fn route_stats(method: String, path: String, body: String) -> String { + engram_stats_json() +} + +fn route_create_node(method: String, path: String, body: String) -> String { + let content: String = json_get_string(body, "content") + let node_type: String = json_get_string(body, "node_type") + if str_eq(node_type, "") { let node_type = "Memory" } + let salience: Float = json_get_float(body, "salience") + if salience == 0.0 { let salience = 0.5 } + let id: String = engram_node(content, node_type, salience) + "{\"id\":\"" + id + "\",\"content\":\"" + content + "\",\"node_type\":\"" + node_type + "\"}" +} + +fn route_get_node(method: String, path: String, body: String) -> String { + let id: String = extract_id(path, "/api/nodes/") + if str_eq(id, "") { return err_json("missing id") } + return engram_get_node_json(id) +} + +fn route_scan_nodes(method: String, path: String, body: String) -> String { + let limit: Int = query_int(path, "limit", 50) + let offset: Int = query_int(path, "offset", 0) + let nt: String = query_param(path, "node_type") + if str_eq(nt, "") { + return engram_scan_nodes_json(limit, offset) + } + return engram_scan_nodes_by_type_json(nt, limit, offset) +} + +// route_scan_edges — bulk export of all edges as a JSON array. Implemented +// via engram_save → fs_read of the canonical on-disk snapshot, which the +// runtime keeps in lockstep with the in-memory graph. Live against the +// running graph, not a stale export. +fn route_scan_edges(method: String, path: String, body: String) -> String { + let dir: String = env("ENGRAM_DATA_DIR") + if str_eq(dir, "") { let dir = "/tmp/engram" } + let snap_path: String = dir + "/snapshot.json" + engram_save(snap_path) + let snap: String = fs_read(snap_path) + if str_eq(snap, "") { return "[]" } + // json_get truncates at the first delimiter (no bracket depth tracking), + // so for the edges ARRAY value we need json_get_raw, which honors + // brackets and returns the full sub-JSON. + let edges: String = json_get_raw(snap, "edges") + if str_eq(edges, "") { return "[]" } + return edges +} + +fn route_search(method: String, path: String, body: String) -> String { + let q: String = "" + if str_eq(method, "GET") { + let q = query_param(path, "q") + } else { + let q = json_get_string(body, "query") + } + let limit: Int = query_int(path, "limit", 20) + if limit == 0 { let limit = json_get_int(body, "limit") } + if limit == 0 { let limit = 20 } + return engram_search_json(q, limit) +} + +fn route_activate(method: String, path: String, body: String) -> String { + let q: String = "" + let depth: Int = 3 + if str_eq(method, "GET") { + let q = query_param(path, "q") + let depth = query_int(path, "depth", 3) + } else { + let q = json_get_string(body, "query") + let bd: Int = json_get_int(body, "depth") + if bd > 0 { let depth = bd } + } + return "{\"results\":" + engram_activate_json(q, depth) + "}" +} + +fn route_create_edge(method: String, path: String, body: String) -> String { + let from_id: String = json_get_string(body, "from_id") + let to_id: String = json_get_string(body, "to_id") + let relation: String = json_get_string(body, "relation") + if str_eq(relation, "") { let relation = "associates" } + let weight: Float = json_get_float(body, "weight") + if weight == 0.0 { let weight = 0.5 } + engram_connect(from_id, to_id, weight, relation) + "{\"ok\":true,\"from_id\":\"" + from_id + "\",\"to_id\":\"" + to_id + "\",\"relation\":\"" + relation + "\"}" +} + +fn route_neighbors(method: String, path: String, body: String) -> String { + let id: String = extract_id(path, "/api/neighbors/") + if str_eq(id, "") { return err_json("missing id") } + let depth: Int = query_int(path, "depth", 1) + return engram_neighbors_json(id, depth, "both") +} + +fn route_strengthen(method: String, path: String, body: String) -> String { + let id: String = json_get_string(body, "node_id") + if str_eq(id, "") { return err_json("missing node_id") } + engram_strengthen(id) + ok_json() +} + +fn route_forget(method: String, path: String, body: String) -> String { + let id: String = extract_id(path, "/api/nodes/") + if str_eq(id, "") { return err_json("missing id") } + engram_forget(id) + ok_json() +} + +fn route_save(method: String, path: String, body: String) -> String { + let p: String = json_get_string(body, "path") + if str_eq(p, "") { + let dir: String = env("ENGRAM_DATA_DIR") + if str_eq(dir, "") { let dir = "/tmp/engram" } + let p = dir + "/snapshot.json" + } + engram_save(p) + "{\"ok\":true,\"path\":\"" + p + "\"}" +} + +fn route_load(method: String, path: String, body: String) -> String { + let p: String = json_get_string(body, "path") + if str_eq(p, "") { + let dir: String = env("ENGRAM_DATA_DIR") + if str_eq(dir, "") { let dir = "/tmp/engram" } + let p = dir + "/snapshot.json" + } + engram_load(p) + ok_json() +} + +fn route_health(method: String, path: String, body: String) -> String { + "{\"status\":\"ok\",\"engine\":\"engram-runtime-native\"}" +} + +// ── Auth ────────────────────────────────────────────────────────────────────── + +fn check_auth_ok(method: String, body: String) -> Bool { + let key: String = env("ENGRAM_API_KEY") + if str_eq(key, "") { return true } + // Read-only methods don't require auth. Until http_serve surfaces + // request headers we can't accept a Bearer token cleanly; mutating + // requests must include "_auth": "" in the JSON body. + if str_eq(method, "GET") { return true } + let provided: String = json_get_string(body, "_auth") + if str_eq(provided, key) { return true } + return false +} + +// ── Dispatcher ──────────────────────────────────────────────────────────────── + +fn handle_request(method: String, path: String, body: String) -> String { + let clean: String = strip_query(path) + + // Health is always reachable + if str_eq(method, "GET") { + if str_eq(clean, "/health") || str_eq(clean, "/") { + return route_health(method, path, body) + } + } + + // Auth (when ENGRAM_API_KEY is set) + if !check_auth_ok(method, body) { + return err_json("unauthorized") + } + + // Stats + if str_eq(method, "GET") && (str_eq(clean, "/api/stats") || str_eq(clean, "/stats")) { + return route_stats(method, path, body) + } + + // Nodes + if str_eq(method, "POST") && (str_eq(clean, "/api/nodes") || str_eq(clean, "/nodes")) { + return route_create_node(method, path, body) + } + if str_eq(method, "GET") && (str_eq(clean, "/api/nodes") || str_eq(clean, "/nodes") || str_eq(clean, "/nodes/list") || str_eq(clean, "/api/nodes/list")) { + return route_scan_nodes(method, path, body) + } + if str_eq(method, "GET") && (str_eq(clean, "/api/edges") || str_eq(clean, "/edges")) { + return route_scan_edges(method, path, body) + } + if str_eq(method, "GET") && str_starts_with(clean, "/api/nodes/") { + return route_get_node(method, path, body) + } + if str_eq(method, "DELETE") && str_starts_with(clean, "/api/nodes/") { + return route_forget(method, path, body) + } + + // Edges + if str_eq(method, "POST") && (str_eq(clean, "/api/edges") || str_eq(clean, "/edges")) { + return route_create_edge(method, path, body) + } + if str_eq(method, "GET") && str_starts_with(clean, "/api/neighbors/") { + return route_neighbors(method, path, body) + } + + // Activation + Search + if str_eq(method, "POST") && (str_eq(clean, "/api/activate") || str_eq(clean, "/activate")) { + return route_activate(method, path, body) + } + if str_eq(method, "GET") && str_starts_with(clean, "/api/activate") { + return route_activate(method, path, body) + } + if str_eq(method, "POST") && (str_eq(clean, "/api/search") || str_eq(clean, "/search")) { + return route_search(method, path, body) + } + if str_eq(method, "GET") && str_starts_with(clean, "/api/search") { + return route_search(method, path, body) + } + + // Strengthen + if str_eq(method, "POST") && (str_eq(clean, "/api/strengthen") || str_eq(clean, "/strengthen")) { + return route_strengthen(method, path, body) + } + + // Persistence + if str_eq(method, "POST") && (str_eq(clean, "/api/save") || str_eq(clean, "/save")) { + return route_save(method, path, body) + } + if str_eq(method, "POST") && (str_eq(clean, "/api/load") || str_eq(clean, "/load")) { + return route_load(method, path, body) + } + + "{\"error\":\"not found\",\"path\":\"" + clean + "\"}" +} + +// ── Entry ───────────────────────────────────────────────────────────────────── + +let bind_str: String = env("ENGRAM_BIND") +if str_eq(bind_str, "") { let bind_str = ":8742" } +let port: Int = parse_port(bind_str) + +// On startup, try to load any existing snapshot (best effort). +let data_dir: String = env("ENGRAM_DATA_DIR") +if str_eq(data_dir, "") { let data_dir = "/tmp/engram" } +let snapshot_path: String = data_dir + "/snapshot.json" +engram_load(snapshot_path) + +println("[engram] runtime-native graph engine") +println("[engram] data_dir=" + data_dir) +println("[engram] node_count=" + int_to_str(engram_node_count())) +println("[engram] edge_count=" + int_to_str(engram_edge_count())) +println("[engram] listening on " + int_to_str(port)) + +http_set_handler("handle_request") +http_serve(port, "handle_request") diff --git a/epm/manifest.el b/epm/manifest.el new file mode 100644 index 0000000..e62733e --- /dev/null +++ b/epm/manifest.el @@ -0,0 +1,17 @@ +// epm — El Package Manager +// +// Manages vessels: publish, install, resolve dependencies. +// Vessels are stored in Engram as nodes. epm reads the local manifest.el, +// talks to Engram over HTTP, and writes installed vessels to .epm/vessels/. + +package "epm" { + version "0.1.0" + description "El Package Manager — vessel registry, publish, install, resolve" + authors ["Will Anderson "] + edition "2026" +} + +build { + entry "src/epm.el" + output "dist/" +} diff --git a/epm/src/epm.el b/epm/src/epm.el new file mode 100644 index 0000000..efe0beb --- /dev/null +++ b/epm/src/epm.el @@ -0,0 +1,213 @@ +// epm/src/epm.el — El Package Manager entry point +// +// epm manages vessels: the deployable, versioned units of El code. +// Vessels are stored in Engram (the graph database) and installed locally +// under .epm/vessels/. +// +// Usage: +// epm publish # publish current project to registry +// epm install # install all dependencies from manifest.el +// epm install # install a specific vessel +// epm list # list all vessels in the registry +// epm info # show metadata for a vessel +// epm info # show metadata for a specific version +// +// Configuration (environment): +// ENGRAM_URL — Engram base URL (default: http://localhost:8742) +// +// Import order: manifest.el, registry.el, install.el must be compiled first. +// This file imports all three and is the build entry point. + +import "manifest.el" +import "registry.el" +import "install.el" + +// ── Subcommand handlers ─────────────────────────────────────────────────────── + +// cmd_publish reads manifest.el from the current directory and publishes +// the vessel/package to the Engram registry. +fn cmd_publish() -> Void { + let src: String = fs_read("manifest.el") + if str_eq(src, "") { + println("epm: no manifest.el found in current directory") + exit(1) + } + + let name: String = manifest_name(src) + if str_eq(name, "") { + println("epm: manifest.el has no 'vessel' or 'package' declaration") + exit(1) + } + + let version: String = manifest_version(src) + if str_eq(version, "") { + println("epm: manifest.el has no 'version' declaration") + exit(1) + } + + let description: String = manifest_description(src) + let entry: String = manifest_entry(src) + let deps_json: String = manifest_deps(src) + + println("epm: publishing " + name + " " + version + " ...") + + let node_id: String = registry_publish(name, version, description, entry, deps_json) + if str_eq(node_id, "") { + println("epm: publish failed") + exit(1) + } + + println("epm: published " + name + " " + version + " (node: " + node_id + ")") +} + +// cmd_install_named installs a specific vessel by name (with optional version). +// Expects: install or install @ +fn cmd_install_named(spec: String) -> Void { + // spec may be "el-auth" or "el-auth@0.1.0" + let at: Int = str_index_of(spec, "@") + let vname: String = spec + let vver: String = "" + if at > 0 { + let vname = str_slice(spec, 0, at) + let vver = str_slice(spec, at + 1, str_len(spec)) + } + + println("epm: installing " + vname + " ...") + + let mk1: Int = exec_command("mkdir -p .epm/vessels") + let ok: Bool = install_vessel(vname, vver) + if !ok { + println("epm: install failed") + exit(1) + } +} + +// cmd_list prints all vessels registered in Engram. +fn cmd_list() -> Void { + println("epm: fetching vessel list from registry ...") + let raw: String = registry_list() + let n: Int = json_array_len(raw) + + if n == 0 { + println("epm: no vessels found in registry") + return + } + + println("epm: " + native_int_to_str(n) + " vessel(s) in registry:") + println("") + + let i: Int = 0 + while i < n { + // Each element is a quoted+escaped content JSON blob + let elem: String = json_array_get_string(raw, i) + let vname: String = json_get_string(elem, "name") + let vver: String = json_get_string(elem, "version") + let vdesc: String = json_get_string(elem, "description") + println(" " + vname + " " + vver + " — " + vdesc) + let i = i + 1 + } +} + +// cmd_info prints detailed metadata for a specific vessel. +// argv is the full args list; idx is the position of the vessel name. +fn cmd_info(argv: [String], idx: Int) -> Void { + let argc: Int = native_list_len(argv) + if idx >= argc { + println("epm: usage: epm info [version]") + exit(1) + } + + let vname: String = native_list_get(argv, idx) + let vver: String = "" + if idx + 1 < argc { + let vver = native_list_get(argv, idx + 1) + } + + let content: String = registry_find(vname, vver) + if str_eq(content, "") { + println("epm: vessel '" + vname + "' not found in registry") + exit(1) + } + + let name: String = json_get_string(content, "name") + let ver: String = json_get_string(content, "version") + let desc: String = json_get_string(content, "description") + let entry: String = json_get_string(content, "entry") + let deps_raw: String = json_get_raw(content, "deps") + + println("name: " + name) + println("version: " + ver) + println("description: " + desc) + println("entry: " + entry) + + let dep_n: Int = json_array_len(deps_raw) + if dep_n == 0 { + println("dependencies: (none)") + } else { + println("dependencies:") + let di: Int = 0 + while di < dep_n { + let dep: String = json_array_get(deps_raw, di) + let dep_name: String = json_get_string(dep, "name") + let dep_ver: String = json_get_string(dep, "version") + println(" " + dep_name + " " + dep_ver) + let di = di + 1 + } + } +} + +// ── Main ────────────────────────────────────────────────────────────────────── + +fn main() -> Void { + let argv: [String] = args() + let argc: Int = native_list_len(argv) + + // argv[0] is the program name; subcommand is argv[1] + if argc < 2 { + println("epm — El Package Manager") + println("") + println("usage:") + println(" epm publish publish current project to registry") + println(" epm install install all dependencies (from manifest.el)") + println(" epm install install a specific vessel") + println(" epm install @ install a specific vessel at a version") + println(" epm list list all vessels in the registry") + println(" epm info show vessel metadata") + println(" epm info show metadata for a specific version") + println("") + println("configuration:") + println(" ENGRAM_URL Engram base URL (default: http://localhost:8742)") + exit(0) + } + + let sub: String = native_list_get(argv, 1) + + if str_eq(sub, "publish") { + cmd_publish() + return + } + + if str_eq(sub, "install") { + if argc >= 3 { + let spec: String = native_list_get(argv, 2) + cmd_install_named(spec) + } else { + cmd_install() + } + return + } + + if str_eq(sub, "list") { + cmd_list() + return + } + + if str_eq(sub, "info") { + cmd_info(argv, 2) + return + } + + println("epm: unknown subcommand '" + sub + "'") + println("run 'epm' with no arguments for usage") + exit(1) +} diff --git a/epm/src/install.el b/epm/src/install.el new file mode 100644 index 0000000..50a3f1e --- /dev/null +++ b/epm/src/install.el @@ -0,0 +1,226 @@ +// epm/src/install.el — dependency resolution and vessel installation +// +// Reads the current project's manifest.el, walks the full dependency graph +// by fetching each dep from Engram, detects cycles, and produces a +// topological install order (dependencies before dependents). +// +// Installed vessels land in: .epm/vessels// +// +// Cycle detection: each recursion carries a chain of names currently on +// the call stack. If a dep already appears in the chain it's a cycle. +// +// Algorithm: +// 1. Parse manifest.el to get direct deps +// 2. For each dep, fetch its manifest from Engram +// 3. Recurse into that dep's own deps (depth-first) +// 4. Append dep to order after all its transitive deps +// 5. Deduplicate: skip already-ordered vessels + +// ── List helpers (operating on String lists) ────────────────────────────────── + +// list_contains returns true if item appears in lst. +fn list_contains(lst: [String], item: String) -> Bool { + let n: Int = native_list_len(lst) + let i: Int = 0 + while i < n { + let v: String = native_list_get(lst, i) + if str_eq(v, item) { return true } + let i = i + 1 + } + return false +} + +// ── Dependency graph walker ─────────────────────────────────────────────────── + +// resolve_deps_recursive fetches a vessel's metadata from Engram and walks +// its dependency list depth-first, building a topological order. +// +// Parameters: +// name — vessel name to resolve +// version — version string (may be "" for any) +// chain — names currently on the recursion stack (cycle detection) +// visited — names already appended to order (dedup) +// order — accumulated result (list of "name:version" strings) +// +// Returns a Map with keys "visited", "order", and "ok" (Bool as String). +fn resolve_deps_recursive(name: String, version: String, chain: [String], visited: [String], order: [String]) -> Map { + let key: String = name + ":" + version + + // Skip if already ordered + if list_contains(visited, key) { + return { "visited": visited, "order": order, "ok": "true" } + } + + // Cycle detection: if name is already in the call chain, it's a cycle + if list_contains(chain, name) { + println("epm: error: dependency cycle detected involving '" + name + "'") + return { "visited": visited, "order": order, "ok": "false" } + } + + // Push this name onto the cycle-detection chain + let chain = native_list_append(chain, name) + + // Fetch vessel metadata from Engram + let content: String = registry_find(name, version) + if str_eq(content, "") { + println("epm: error: vessel '" + name + "' version '" + version + "' not found in registry") + return { "visited": visited, "order": order, "ok": "false" } + } + + // content is a JSON blob: {"name":..., "version":..., "deps":[...]} + let actual_version: String = json_get_string(content, "version") + let actual_key: String = name + ":" + actual_version + let deps_json: String = json_get_raw(content, "deps") + + // Walk this vessel's dependencies first (depth-first) + let dep_count: Int = json_array_len(deps_json) + let di: Int = 0 + while di < dep_count { + let dep: String = json_array_get(deps_json, di) + let dep_name: String = json_get_string(dep, "name") + let dep_ver: String = json_get_string(dep, "version") + + let r = resolve_deps_recursive(dep_name, dep_ver, chain, visited, order) + let ok_str: String = r["ok"] + if str_eq(ok_str, "false") { + return r + } + let visited = r["visited"] + let order = r["order"] + + let di = di + 1 + } + + // Now append this vessel (after all its deps) + let visited = native_list_append(visited, actual_key) + let order = native_list_append(order, actual_key) + + return { "visited": visited, "order": order, "ok": "true" } +} + +// ── Install order ───────────────────────────────────────────────────────────── + +// resolve_install_order reads manifest.el from the current directory and +// returns a list of "name:version" strings in topological install order. +// +// Returns an empty list on failure (error is printed to stdout). +fn resolve_install_order() -> [String] { + let src: String = fs_read("manifest.el") + if str_eq(src, "") { + println("epm: no manifest.el found in current directory") + return native_list_empty() + } + + let deps_json: String = manifest_deps(src) + let dep_count: Int = json_array_len(deps_json) + if dep_count == 0 { + println("epm: no dependencies declared in manifest.el") + return native_list_empty() + } + + let chain: [String] = native_list_empty() + let visited: [String] = native_list_empty() + let order: [String] = native_list_empty() + + let i: Int = 0 + while i < dep_count { + let dep: String = json_array_get(deps_json, i) + let dep_name: String = json_get_string(dep, "name") + let dep_ver: String = json_get_string(dep, "version") + + let r = resolve_deps_recursive(dep_name, dep_ver, chain, visited, order) + let ok_str: String = r["ok"] + if str_eq(ok_str, "false") { + return native_list_empty() + } + let visited = r["visited"] + let order = r["order"] + + let i = i + 1 + } + + return order +} + +// ── Installation ────────────────────────────────────────────────────────────── + +// install_vessel fetches a vessel's source from Engram and writes it +// to .epm/vessels//. +// +// Currently writes the content JSON blob as a manifest record so that +// other tools can introspect what is installed. When Engram stores actual +// source archives, this function would extract them. +// +// Returns true on success. +fn install_vessel(name: String, version: String) -> Bool { + let content: String = registry_find(name, version) + if str_eq(content, "") { + println("epm: error: cannot fetch '" + name + "' '" + version + "' from registry") + return false + } + + let install_dir: String = ".epm/vessels/" + name + let mkdir_ret: Int = exec_command("mkdir -p " + install_dir) + + // Write the content blob as installed.json so downstream tools know what's there + let dest: String = install_dir + "/installed.json" + fs_write(dest, content) + + println("epm: installed " + name + " " + version + " -> " + dest) + return true +} + +// ── Top-level install ───────────────────────────────────────────────────────── + +// cmd_install resolves and installs all dependencies for the current project. +fn cmd_install() -> Void { + let src: String = fs_read("manifest.el") + if str_eq(src, "") { + println("epm: no manifest.el found in current directory") + exit(1) + } + + let pkg_name: String = manifest_name(src) + println("epm: resolving dependencies for " + pkg_name) + + let order: [String] = resolve_install_order() + let n: Int = native_list_len(order) + + if n == 0 { + println("epm: nothing to install") + return + } + + println("epm: install order (" + native_int_to_str(n) + " vessels):") + let i: Int = 0 + while i < n { + let entry: String = native_list_get(order, i) + println(" " + entry) + let i = i + 1 + } + + // Ensure .epm directory exists + let mk2: Int = exec_command("mkdir -p .epm/vessels") + + // Install each vessel in topological order + let j: Int = 0 + while j < n { + let kv: String = native_list_get(order, j) + // Split "name:version" on the last colon + let colon: Int = str_index_of(kv, ":") + if colon < 0 { + println("epm: error: malformed order entry: " + kv) + exit(1) + } + let vname: String = str_slice(kv, 0, colon) + let vver: String = str_slice(kv, colon + 1, str_len(kv)) + let ok: Bool = install_vessel(vname, vver) + if !ok { + println("epm: install failed at " + kv) + exit(1) + } + let j = j + 1 + } + + println("epm: all dependencies installed") +} diff --git a/epm/src/manifest.el b/epm/src/manifest.el new file mode 100644 index 0000000..fd3d636 --- /dev/null +++ b/epm/src/manifest.el @@ -0,0 +1,175 @@ +// epm/src/manifest.el — vessel and package manifest parser +// +// Parses manifest.el files in the vessel/package format: +// +// vessel "el-auth" { +// version "0.1.0" +// description "..." +// authors ["..."] +// edition "2026" +// } +// +// dependencies { +// el-platform "1.0" +// el-identity "0.1" +// } +// +// build { +// entry "src/main.el" +// output "dist/" +// } +// +// Parsing is line-by-line string extraction, same approach as elb.el. +// No AST, no grammar — sufficient for well-formed manifests. + +// ── String extraction helpers ───────────────────────────────────────────────── + +// extract_quoted extracts the first double-quoted token from a string. +// Returns "" if no quoted token is found. +// Example: extract_quoted("vessel \"el-auth\" {") -> "el-auth" +fn extract_quoted(s: String) -> String { + let first: Int = str_index_of(s, "\"") + if first < 0 { return "" } + let after: String = str_slice(s, first + 1, str_len(s)) + let close: Int = str_index_of(after, "\"") + if close < 0 { return "" } + return str_slice(after, 0, close) +} + +// ── Manifest field extraction ───────────────────────────────────────────────── + +// manifest_name extracts the vessel or package name from manifest source. +// Recognises both "vessel" and "package" block headers. +fn manifest_name(src: String) -> String { + let lines: [String] = str_split(src, "\n") + let n: Int = native_list_len(lines) + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let t: String = str_trim(line) + if str_starts_with(t, "vessel ") { + return extract_quoted(t) + } + if str_starts_with(t, "package ") { + return extract_quoted(t) + } + let i = i + 1 + } + return "" +} + +// manifest_version extracts the version string from manifest source. +fn manifest_version(src: String) -> String { + let lines: [String] = str_split(src, "\n") + let n: Int = native_list_len(lines) + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let t: String = str_trim(line) + if str_starts_with(t, "version ") { + return extract_quoted(t) + } + let i = i + 1 + } + return "" +} + +// manifest_description extracts the description string from manifest source. +fn manifest_description(src: String) -> String { + let lines: [String] = str_split(src, "\n") + let n: Int = native_list_len(lines) + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let t: String = str_trim(line) + if str_starts_with(t, "description ") { + return extract_quoted(t) + } + let i = i + 1 + } + return "" +} + +// manifest_entry extracts the build entry file from manifest source. +fn manifest_entry(src: String) -> String { + let lines: [String] = str_split(src, "\n") + let n: Int = native_list_len(lines) + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let t: String = str_trim(line) + if str_starts_with(t, "entry ") { + return extract_quoted(t) + } + let i = i + 1 + } + return "" +} + +// manifest_deps extracts dependencies as a JSON array of {"name":..., "version":...} objects. +// +// Scans lines inside the dependencies { ... } block. +// Each dep line looks like: +// el-platform "1.0" +// +// Returns a JSON array string, e.g.: +// [{"name":"el-platform","version":"1.0"},{"name":"el-identity","version":"0.1"}] +fn manifest_deps(src: String) -> String { + let lines: [String] = str_split(src, "\n") + let n: Int = native_list_len(lines) + let in_deps: Bool = false + let result: String = "[" + let count: Int = 0 + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let t: String = str_trim(line) + + // Detect entry into dependencies block + if str_eq(t, "dependencies {") { + let in_deps = true + let i = i + 1 + } else { + if in_deps { + // Detect exit from block + if str_eq(t, "}") { + let in_deps = false + } else { + // Each dep line: name "version" + // Find first space to split name from quoted version + let sp: Int = str_index_of(t, " ") + if sp > 0 { + let dep_name: String = str_slice(t, 0, sp) + let rest: String = str_trim(str_slice(t, sp, str_len(t))) + let dep_ver: String = extract_quoted(rest) + if !str_eq(dep_name, "") { + let entry: String = "{\"name\":\"" + dep_name + "\",\"version\":\"" + dep_ver + "\"}" + if count == 0 { + let result = result + entry + } else { + let result = result + "," + entry + } + let count = count + 1 + } + } + } + } + let i = i + 1 + } + } + return result + "]" +} + +// manifest_is_vessel returns true if the manifest declares a vessel (not a package). +fn manifest_is_vessel(src: String) -> Bool { + let lines: [String] = str_split(src, "\n") + let n: Int = native_list_len(lines) + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let t: String = str_trim(line) + if str_starts_with(t, "vessel ") { return true } + let i = i + 1 + } + return false +} diff --git a/epm/src/registry.el b/epm/src/registry.el new file mode 100644 index 0000000..5d7bbd6 --- /dev/null +++ b/epm/src/registry.el @@ -0,0 +1,170 @@ +// epm/src/registry.el — Engram-backed vessel registry +// +// Vessels are stored in Engram as nodes with a structured label scheme: +// +// label: "vessel::" (used as the search key) +// content: JSON blob with full vessel metadata +// node_type: "Entity" +// salience: 0.9 (vessels are high-salience, long-lived knowledge) +// +// All registry operations go over HTTP to Engram. The Engram URL is read +// from the ENGRAM_URL environment variable; defaults to http://localhost:8742. +// +// Endpoints used: +// POST /api/nodes — publish a vessel node +// GET /api/search?q=... — find vessels by label prefix + +// ── Engram URL ──────────────────────────────────────────────────────────────── + +// registry_url returns the base URL for Engram, with no trailing slash. +fn registry_url() -> String { + let u: String = config("ENGRAM_URL") + if str_eq(u, "") { return "http://localhost:8742" } + // Strip trailing slash if present + let n: Int = str_len(u) + if str_ends_with(u, "/") { + return str_slice(u, 0, n - 1) + } + return u +} + +// ── Publish ─────────────────────────────────────────────────────────────────── + +// registry_publish stores a vessel node in Engram. +// +// Parameters: +// name — vessel name (e.g. "el-auth") +// version — semver string (e.g. "0.1.0") +// description — human-readable description +// entry — build entry file path +// deps_json — JSON array of dep objects (from manifest_deps) +// +// Returns the created node ID on success, "" on failure. +fn registry_publish(name: String, version: String, description: String, entry: String, deps_json: String) -> String { + let label: String = "vessel:" + name + ":" + version + + // Build the content JSON — all vessel metadata in one blob + let esc_name: String = json_escape_string(name) + let esc_ver: String = json_escape_string(version) + let esc_desc: String = json_escape_string(description) + let esc_entry: String = json_escape_string(entry) + let content_json: String = "{\"name\":\"" + esc_name + "\",\"version\":\"" + esc_ver + "\",\"description\":\"" + esc_desc + "\",\"entry\":\"" + esc_entry + "\",\"deps\":" + deps_json + "}" + + // Escape the content blob for embedding in the outer JSON + let esc_label: String = json_escape_string(label) + let esc_content: String = json_escape_string(content_json) + + let body: String = "{\"label\":\"" + esc_label + "\",\"content\":\"" + esc_content + "\",\"node_type\":\"Entity\",\"salience\":0.9}" + let url: String = registry_url() + "/api/nodes" + + let resp: String = http_post_json(url, body) + if str_eq(resp, "") { + println("epm: error: Engram unreachable at " + url) + return "" + } + + // Check for error in response + let err: String = json_get_string(resp, "error") + if !str_eq(err, "") { + println("epm: error from Engram: " + err) + return "" + } + + let node_id: String = json_get_string(resp, "id") + return node_id +} + +// ── Find ────────────────────────────────────────────────────────────────────── + +// registry_find searches Engram for a specific vessel by name and version. +// +// Returns the content JSON blob for the vessel, or "" if not found. +// When version is "" any version matching the name is accepted (first hit). +fn registry_find(name: String, version: String) -> String { + let query: String = "vessel:" + name + if !str_eq(version, "") { + let query = "vessel:" + name + ":" + version + } + + let enc_q: String = url_encode(query) + let url: String = registry_url() + "/api/search?q=" + enc_q + "&limit=10" + + let resp: String = http_get(url) + if str_eq(resp, "") { + println("epm: error: Engram unreachable at " + registry_url()) + return "" + } + + // Response is a JSON array of node objects + let count: Int = json_array_len(resp) + if count == 0 { return "" } + + // Walk results to find exact match + let i: Int = 0 + while i < count { + let node: String = json_array_get(resp, i) + let node_label: String = json_get_string(node, "label") + let expected_label: String = "vessel:" + name + if !str_eq(version, "") { + let expected_label = "vessel:" + name + ":" + version + } + if str_eq(node_label, expected_label) { + // The content field is an escaped JSON blob — decode it + let raw_content: String = json_get_string(node, "content") + return raw_content + } + let i = i + 1 + } + + // No exact match; if version was unspecified return first result's content + if str_eq(version, "") { + let first: String = json_array_get(resp, 0) + let first_label: String = json_get_string(first, "label") + if str_starts_with(first_label, "vessel:" + name + ":") { + return json_get_string(first, "content") + } + } + + return "" +} + +// ── List ────────────────────────────────────────────────────────────────────── + +// registry_list returns all vessels from Engram as a JSON array. +// +// Each element in the returned array is a content JSON blob. +// Returns "[]" when no vessels are found or Engram is unreachable. +fn registry_list() -> String { + let enc_q: String = url_encode("vessel:") + let url: String = registry_url() + "/api/search?q=" + enc_q + "&limit=200" + + let resp: String = http_get(url) + if str_eq(resp, "") { + println("epm: error: Engram unreachable at " + registry_url()) + return "[]" + } + + let count: Int = json_array_len(resp) + if count == 0 { return "[]" } + + // Collect content blobs for nodes whose label starts with "vessel:" + let out: String = "[" + let added: Int = 0 + let i: Int = 0 + while i < count { + let node: String = json_array_get(resp, i) + let lbl: String = json_get_string(node, "label") + if str_starts_with(lbl, "vessel:") { + let content: String = json_get_string(node, "content") + let esc: String = json_escape_string(content) + if added == 0 { + let out = out + "\"" + esc + "\"" + } else { + let out = out + ",\"" + esc + "\"" + } + let added = added + 1 + } + let i = i + 1 + } + return out + "]" +} diff --git a/ide/.gitignore b/ide/.gitignore new file mode 100644 index 0000000..ca98cd9 --- /dev/null +++ b/ide/.gitignore @@ -0,0 +1,2 @@ +/target/ +Cargo.lock diff --git a/ide/examples/hello-project/manifest.el b/ide/examples/hello-project/manifest.el new file mode 100644 index 0000000..af6f4a1 --- /dev/null +++ b/ide/examples/hello-project/manifest.el @@ -0,0 +1,3 @@ +package "hello" { + version "0.1.0" +} diff --git a/ide/examples/hello-project/src/main.el b/ide/examples/hello-project/src/main.el new file mode 100644 index 0000000..09d5c5c --- /dev/null +++ b/ide/examples/hello-project/src/main.el @@ -0,0 +1,41 @@ +fn main() -> Void { + let greeting: String = "Hello from Engram" + let count: Int = 42 +} + +type Point { + x: Float + y: Float +} + +fn distance(a: Point, b: Point) -> Float { + let dx: Float = a.x - b.x + let dy: Float = a.y - b.y + return dx * dx + dy * dy +} + +type Circle { + center: Point + radius: Float +} + +enum Shape { + Dot + Line(String) + Polygon(Int) +} + +fn classify(s: Shape) -> String { + match s { + Shape::Dot => "point" + Shape::Line(name) => name + Shape::Polygon(sides) => "polygon" + } +} + +// activate example — spreading activation query +// let circles: [Circle] = activate Circle where "large circles near origin" + +sealed { + let api_key: String = "secret-key" +} diff --git a/ide/ide/index.html b/ide/ide/index.html new file mode 100644 index 0000000..61208e5 --- /dev/null +++ b/ide/ide/index.html @@ -0,0 +1,5481 @@ + + + + + +el-ide — Engram Language IDE + + + + + + + + + + + + + +
+
+ + +
+
+ Files + + + +
+
+
Loading...
+
+
+
+ + +
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+ no file + | + Ln 1, Col 1 + | + + + engram +
+ 0 lines + | + UTF-8 + | + + + + + + ● connected +
+
+ + +
+
Type Graph
+
+ + + + 100% +
+ +
+
+
+
+ builtin +
+
+
+ struct +
+
+
+ enum +
+
+
+ primitive +
+
+
+ protocol +
+
+
+ activated +
+
+
+ + + + +
+ + +
+
+ + 0 + nodes for + +
+
+
+
+ + +
+
+
+
Build Output
+
+ Problems +
+
Search
+
Terminal
+
Outline
+
Git Diff
+
Reasoning
+
Knowledge Graph
+
Plugins
+
Settings
+
+
+ + +
+ el-ide ready. Press Build to compile. +
+ + +
+
No problems detected.
+
+ + + + + +
+
+
+ + +
+
+ No file selected + +
+
Select a file and click Refresh to see its diff.
+
+ + +
+
Open a file to see its outline.
+
+ + +
+
+ + +
+
+
Enter a hypothesis and press Reason to query the Engram knowledge graph.
+
+
+ + +
+
+ + +
+
Search the Engram knowledge graph to discover available data concepts.
+
+ + +
+
Loading...
+
+ + +
+
+
Editor
+
+ + + 13px +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
Theme
+
+ + + + +
+
+
+
Keyboard Shortcuts
+ + + + + + + + + + + + + + +
Save fileCmd + S
Close tabCmd + W or middle-click
Cycle tabsCmd + Tab
Switch to tab 1-9Cmd + 19
Find / ReplaceCmd + F / H
Search projectCmd + Shift + F
Quick open filesCmd + P
Command paletteCmd + Shift + P or > in open
Go to definitionF12
Find referencesShift + F12
BuildCmd + B
Fold / UnfoldCmd + [ / ]
Close menu / modalEsc
+
+
+ +
+
+ +
+ + + + + + + + + + + +
+ + + + diff --git a/ide/projects/hello-friends/manifest.el b/ide/projects/hello-friends/manifest.el new file mode 100644 index 0000000..a0b39f2 --- /dev/null +++ b/ide/projects/hello-friends/manifest.el @@ -0,0 +1,6 @@ +package "hello-friends" { + version "0.1.0" + description "Hello world — first program in Engram" + authors ["Will Anderson"] + edition "2026" +} diff --git a/ide/projects/hello-friends/src/main.el b/ide/projects/hello-friends/src/main.el new file mode 100644 index 0000000..6328b3a --- /dev/null +++ b/ide/projects/hello-friends/src/main.el @@ -0,0 +1,21 @@ +// Hello, Friends — first Engram program +// Written for Beth, Tim, and Matt on April 28, 2026. +// This is what it looks like to write in a language +// that runs inside an intelligent system. + +fn greet(name: String) -> String { + return "Hello, " + name + ". Good to have you here." +} + +fn main() -> Void { + let friends = ["Beth", "Tim", "Matt"] + + for friend in friends { + let message = greet(friend) + print(message) + } + + print("") + print("Engram is the language of the engine room.") + print("You are standing at the edge of something real.") +} diff --git a/ide/vessels/el-ide-server/manifest.el b/ide/vessels/el-ide-server/manifest.el new file mode 100644 index 0000000..80c900e --- /dev/null +++ b/ide/vessels/el-ide-server/manifest.el @@ -0,0 +1,18 @@ +// manifest.el — el-ide-server vessel + +vessel "el-ide-server" { + version "0.1.0" + description "Engram IDE backend: HTTP server, file ops, build/run, LSP bridge, plugin host, settings." + authors ["Will Anderson "] + edition "2026" +} + +dependencies { + el-lsp "0.1" + el-plugin-host "0.1" +} + +build { + entry "src/main.el" + output "dist/" +} diff --git a/ide/vessels/el-ide-server/src/_combined.c b/ide/vessels/el-ide-server/src/_combined.c new file mode 100644 index 0000000..683e13b --- /dev/null +++ b/ide/vessels/el-ide-server/src/_combined.c @@ -0,0 +1,2569 @@ +#include +#include +#include "el_runtime.h" + +el_val_t is_digit_ch(el_val_t ch); +el_val_t is_alpha_ch(el_val_t ch); +el_val_t is_ident_ch(el_val_t ch); +el_val_t extract_prefix(el_val_t source, el_val_t pos); +el_val_t extract_token(el_val_t source, el_val_t pos); +el_val_t pos_to_line_col(el_val_t source, el_val_t pos); +el_val_t json_escape(el_val_t s); +el_val_t json_str(el_val_t s); +el_val_t json_kv_str(el_val_t k, el_val_t v); +el_val_t json_kv_int(el_val_t k, el_val_t v); +el_val_t json_kv_float(el_val_t k, el_val_t v); +el_val_t json_kv_raw(el_val_t k, el_val_t raw_v); +el_val_t json_array_of(el_val_t items); +el_val_t keywords_list(void); +el_val_t builtin_type_names(void); +el_val_t builtin_type_doc(el_val_t name); +el_val_t builtin_fns(void); +el_val_t keyword_doc(el_val_t kw); +el_val_t first_ident_in(el_val_t rest); +el_val_t scan_decls(el_val_t source); +el_val_t list_contains_str(el_val_t xs, el_val_t needle); +el_val_t prefix_score(el_val_t label, el_val_t prefix); +el_val_t completion_json(el_val_t label, el_val_t kind, el_val_t detail, el_val_t doc, el_val_t score); +el_val_t lsp_complete(el_val_t source, el_val_t pos); +el_val_t lsp_hover(el_val_t source, el_val_t pos); +el_val_t diag_json(el_val_t message, el_val_t severity, el_val_t line, el_val_t col); +el_val_t lsp_diagnostics(el_val_t source); +el_val_t outline_item_json(el_val_t kind, el_val_t name, el_val_t line); +el_val_t lsp_outline(el_val_t source); +el_val_t format_strip_trailing(el_val_t line); +el_val_t lsp_format(el_val_t source); +el_val_t lsp_type_graph(el_val_t source); +el_val_t collect_struct_fields(el_val_t source, el_val_t type_name); +el_val_t referenced_type(el_val_t field_str, el_val_t known_types); +el_val_t lsp_definition(el_val_t source, el_val_t pos); +el_val_t lsp_references(el_val_t source, el_val_t pos); +el_val_t lsp_jsonrpc(el_val_t method, el_val_t params_json); +el_val_t read_headers(void); +el_val_t lsp_stdio_loop(void); +el_val_t lsp_main(void); +el_val_t pkey(el_val_t name, el_val_t field); +el_val_t put_str(el_val_t name, el_val_t field, el_val_t value); +el_val_t put_bool(el_val_t name, el_val_t field, el_val_t value); +el_val_t get_str(el_val_t name, el_val_t field); +el_val_t get_bool(el_val_t name, el_val_t field); +el_val_t index_list(void); +el_val_t index_set(el_val_t names); +el_val_t index_contains(el_val_t name); +el_val_t index_add(el_val_t name); +el_val_t register_plugin(el_val_t name, el_val_t version, el_val_t description, el_val_t installed, el_val_t enabled, el_val_t hooks, el_val_t first_party); +el_val_t plugin_init(void); +el_val_t json_escape_str(el_val_t s); +el_val_t quote_json(el_val_t s); +el_val_t hooks_to_json(el_val_t hooks_csv); +el_val_t plugin_to_json(el_val_t name); +el_val_t plugin_list_json(void); +el_val_t plugin_get_json(el_val_t name); +el_val_t plugin_install(el_val_t name); +el_val_t plugin_remove(el_val_t name); +el_val_t plugin_enable(el_val_t name); +el_val_t plugin_disable(el_val_t name); +el_val_t host_main(void); +el_val_t jstr(el_val_t s); +el_val_t jerr(el_val_t msg); +el_val_t ok_obj(void); +el_val_t url_decode(el_val_t s); +el_val_t hex_digit(el_val_t ch); +el_val_t hex_to_int(el_val_t hex); +el_val_t char_from_code(el_val_t code); +el_val_t split_path_query(el_val_t path); +el_val_t query_get(el_val_t query, el_val_t key); +el_val_t cfg_port(void); +el_val_t cfg_project_path(void); +el_val_t cfg_engram_url(void); +el_val_t cfg_el_binary(void); +el_val_t safe_join(el_val_t rel); +el_val_t route_status(void); +el_val_t route_config(void); +el_val_t route_files_list(el_val_t query); +el_val_t route_file_read(el_val_t query); +el_val_t route_file_write(el_val_t body); +el_val_t route_lsp_complete(el_val_t query); +el_val_t route_lsp_hover(el_val_t query); +el_val_t route_lsp_errors(el_val_t query); +el_val_t route_lsp_jsonrpc(el_val_t body); +el_val_t route_outline(el_val_t query); +el_val_t route_definition(el_val_t query); +el_val_t route_references(el_val_t query); +el_val_t route_format(el_val_t body); +el_val_t route_type_graph(el_val_t query); +el_val_t active_theme(void); +el_val_t route_themes_list(void); +el_val_t route_themes_set(el_val_t body); +el_val_t route_plugins_list(void); +el_val_t route_plugins_install(el_val_t body); +el_val_t route_plugins_remove(el_val_t body); +el_val_t route_plugins_enable(el_val_t body); +el_val_t route_plugins_disable(el_val_t body); +el_val_t route_snippets(void); +el_val_t settings_path(void); +el_val_t default_settings_json(void); +el_val_t route_settings_get(void); +el_val_t route_settings_save(el_val_t body); +el_val_t route_settings_reset(void); +el_val_t route_build_or_run(el_val_t action, el_val_t body); +el_val_t route_build(el_val_t body); +el_val_t route_run(el_val_t body); +el_val_t route_reason(el_val_t body); +el_val_t route_activate_preview(el_val_t query); +el_val_t route_index(void); +el_val_t route_health(void); +el_val_t handle_request(el_val_t method, el_val_t path, el_val_t body); +el_val_t server_main(void); + +el_val_t is_digit_ch(el_val_t ch) { + if (str_eq(ch, EL_STR("0"))) { + return 1; + } + if (str_eq(ch, EL_STR("1"))) { + return 1; + } + if (str_eq(ch, EL_STR("2"))) { + return 1; + } + if (str_eq(ch, EL_STR("3"))) { + return 1; + } + if (str_eq(ch, EL_STR("4"))) { + return 1; + } + if (str_eq(ch, EL_STR("5"))) { + return 1; + } + if (str_eq(ch, EL_STR("6"))) { + return 1; + } + if (str_eq(ch, EL_STR("7"))) { + return 1; + } + if (str_eq(ch, EL_STR("8"))) { + return 1; + } + if (str_eq(ch, EL_STR("9"))) { + return 1; + } + return 0; + return 0; +} + +el_val_t is_alpha_ch(el_val_t ch) { + el_val_t lower = str_to_lower(ch); + if (str_eq(ch, EL_STR(""))) { + return 0; + } + if (!str_eq(lower, str_to_upper(lower))) { + return 1; + } + if (str_contains(EL_STR("abcdefghijklmnopqrstuvwxyz"), ch)) { + return 1; + } + if (str_contains(EL_STR("ABCDEFGHIJKLMNOPQRSTUVWXYZ"), ch)) { + return 1; + } + return 0; + return 0; +} + +el_val_t is_ident_ch(el_val_t ch) { + if (is_digit_ch(ch)) { + return 1; + } + if (is_alpha_ch(ch)) { + return 1; + } + if (str_eq(ch, EL_STR("_"))) { + return 1; + } + return 0; + return 0; +} + +el_val_t extract_prefix(el_val_t source, el_val_t pos) { + el_val_t n = str_len(source); + el_val_t end = pos; + if (end > n) { + end = n; + } + el_val_t start = end; + el_val_t chars = native_string_chars(source); + el_val_t total = native_list_len(chars); + el_val_t scanning = 1; + while (scanning) { + if (start <= 0) { + scanning = 0; + } else { + el_val_t prev = native_list_get(chars, (start - 1)); + if (is_ident_ch(prev)) { + start = (start - 1); + } else { + scanning = 0; + } + } + } + return str_slice(source, start, end); + return 0; +} + +el_val_t extract_token(el_val_t source, el_val_t pos) { + el_val_t n = str_len(source); + if (pos > n) { + return EL_STR(""); + } + el_val_t chars = native_string_chars(source); + el_val_t total = native_list_len(chars); + el_val_t start = pos; + el_val_t go_left = 1; + while (go_left) { + if (start <= 0) { + go_left = 0; + } else { + el_val_t prev = native_list_get(chars, (start - 1)); + if (is_ident_ch(prev)) { + start = (start - 1); + } else { + go_left = 0; + } + } + } + el_val_t end = pos; + el_val_t go_right = 1; + while (go_right) { + if (end >= total) { + go_right = 0; + } else { + el_val_t cur = native_list_get(chars, end); + if (is_ident_ch(cur)) { + end = (end + 1); + } else { + go_right = 0; + } + } + } + return str_slice(source, start, end); + return 0; +} + +el_val_t pos_to_line_col(el_val_t source, el_val_t pos) { + el_val_t n = str_len(source); + el_val_t cap = pos; + if (cap > n) { + cap = n; + } + el_val_t chars = native_string_chars(source); + el_val_t i = 0; + el_val_t line = 1; + el_val_t col = 1; + while (i < cap) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\n"))) { + line = (line + 1); + col = 1; + } else { + col = (col + 1); + } + i = (i + 1); + } + return el_map_new(2, "line", line, "col", col); + return 0; +} + +el_val_t json_escape(el_val_t s) { + el_val_t chars = native_string_chars(s); + el_val_t n = native_list_len(chars); + el_val_t out = EL_STR(""); + el_val_t i = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\""))) { + out = el_str_concat(out, EL_STR("\\\"")); + } else { + if (str_eq(ch, EL_STR("\\"))) { + out = el_str_concat(out, EL_STR("\\\\")); + } else { + if (str_eq(ch, EL_STR("\n"))) { + out = el_str_concat(out, EL_STR("\\n")); + } else { + if (str_eq(ch, EL_STR("\r"))) { + out = el_str_concat(out, EL_STR("\\r")); + } else { + if (str_eq(ch, EL_STR("\t"))) { + out = el_str_concat(out, EL_STR("\\t")); + } else { + out = el_str_concat(out, ch); + } + } + } + } + } + i = (i + 1); + } + return out; + return 0; +} + +el_val_t json_str(el_val_t s) { + return el_str_concat(el_str_concat(EL_STR("\""), json_escape(s)), EL_STR("\"")); + return 0; +} + +el_val_t json_kv_str(el_val_t k, el_val_t v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), json_str(v)); + return 0; +} + +el_val_t json_kv_int(el_val_t k, el_val_t v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), int_to_str(v)); + return 0; +} + +el_val_t json_kv_float(el_val_t k, el_val_t v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), float_to_str(v)); + return 0; +} + +el_val_t json_kv_raw(el_val_t k, el_val_t raw_v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), raw_v); + return 0; +} + +el_val_t json_array_of(el_val_t items) { + el_val_t n = native_list_len(items); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + out = el_str_concat(out, native_list_get(items, i)); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t keywords_list(void) { + el_val_t ks = native_list_empty(); + ks = native_list_append(ks, EL_STR("let")); + ks = native_list_append(ks, EL_STR("fn")); + ks = native_list_append(ks, EL_STR("type")); + ks = native_list_append(ks, EL_STR("enum")); + ks = native_list_append(ks, EL_STR("match")); + ks = native_list_append(ks, EL_STR("return")); + ks = native_list_append(ks, EL_STR("activate")); + ks = native_list_append(ks, EL_STR("where")); + ks = native_list_append(ks, EL_STR("sealed")); + ks = native_list_append(ks, EL_STR("if")); + ks = native_list_append(ks, EL_STR("else")); + ks = native_list_append(ks, EL_STR("for")); + ks = native_list_append(ks, EL_STR("in")); + ks = native_list_append(ks, EL_STR("while")); + ks = native_list_append(ks, EL_STR("true")); + ks = native_list_append(ks, EL_STR("false")); + ks = native_list_append(ks, EL_STR("test")); + ks = native_list_append(ks, EL_STR("seed")); + ks = native_list_append(ks, EL_STR("assert")); + ks = native_list_append(ks, EL_STR("target")); + ks = native_list_append(ks, EL_STR("protocol")); + ks = native_list_append(ks, EL_STR("impl")); + ks = native_list_append(ks, EL_STR("import")); + ks = native_list_append(ks, EL_STR("from")); + ks = native_list_append(ks, EL_STR("as")); + ks = native_list_append(ks, EL_STR("with")); + ks = native_list_append(ks, EL_STR("retry")); + ks = native_list_append(ks, EL_STR("times")); + ks = native_list_append(ks, EL_STR("fallback")); + ks = native_list_append(ks, EL_STR("reason")); + ks = native_list_append(ks, EL_STR("parallel")); + ks = native_list_append(ks, EL_STR("trace")); + ks = native_list_append(ks, EL_STR("requires")); + ks = native_list_append(ks, EL_STR("deploy")); + ks = native_list_append(ks, EL_STR("to")); + ks = native_list_append(ks, EL_STR("via")); + ks = native_list_append(ks, EL_STR("vessel")); + ks = native_list_append(ks, EL_STR("cgi")); + return ks; + return 0; +} + +el_val_t builtin_type_names(void) { + el_val_t ts = native_list_empty(); + ts = native_list_append(ts, EL_STR("Int")); + ts = native_list_append(ts, EL_STR("Float")); + ts = native_list_append(ts, EL_STR("String")); + ts = native_list_append(ts, EL_STR("Bool")); + ts = native_list_append(ts, EL_STR("Uuid")); + ts = native_list_append(ts, EL_STR("Void")); + ts = native_list_append(ts, EL_STR("Any")); + return ts; + return 0; +} + +el_val_t builtin_type_doc(el_val_t name) { + if (str_eq(name, EL_STR("Int"))) { + return EL_STR("64-bit signed integer"); + } + if (str_eq(name, EL_STR("Float"))) { + return EL_STR("64-bit IEEE 754 double"); + } + if (str_eq(name, EL_STR("String"))) { + return EL_STR("UTF-8 string"); + } + if (str_eq(name, EL_STR("Bool"))) { + return EL_STR("Boolean value"); + } + if (str_eq(name, EL_STR("Uuid"))) { + return EL_STR("RFC 4122 UUID"); + } + if (str_eq(name, EL_STR("Void"))) { + return EL_STR("Unit type — no value"); + } + if (str_eq(name, EL_STR("Any"))) { + return EL_STR("Dynamically-typed value"); + } + return EL_STR(""); + return 0; +} + +el_val_t builtin_fns(void) { + el_val_t xs = native_list_empty(); + xs = native_list_append(xs, EL_STR("println")); + xs = native_list_append(xs, EL_STR("fn(value: String) -> Void")); + xs = native_list_append(xs, EL_STR("print")); + xs = native_list_append(xs, EL_STR("fn(value: String) -> Void")); + xs = native_list_append(xs, EL_STR("readline")); + xs = native_list_append(xs, EL_STR("fn() -> String")); + xs = native_list_append(xs, EL_STR("args")); + xs = native_list_append(xs, EL_STR("fn() -> [String]")); + xs = native_list_append(xs, EL_STR("int_to_str")); + xs = native_list_append(xs, EL_STR("fn(n: Int) -> String")); + xs = native_list_append(xs, EL_STR("str_to_int")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Int")); + xs = native_list_append(xs, EL_STR("str_len")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Int")); + xs = native_list_append(xs, EL_STR("str_slice")); + xs = native_list_append(xs, EL_STR("fn(s: String, start: Int, end: Int) -> String")); + xs = native_list_append(xs, EL_STR("str_concat")); + xs = native_list_append(xs, EL_STR("fn(a: String, b: String) -> String")); + xs = native_list_append(xs, EL_STR("str_contains")); + xs = native_list_append(xs, EL_STR("fn(s: String, sub: String) -> Bool")); + xs = native_list_append(xs, EL_STR("str_starts_with")); + xs = native_list_append(xs, EL_STR("fn(s: String, p: String) -> Bool")); + xs = native_list_append(xs, EL_STR("str_ends_with")); + xs = native_list_append(xs, EL_STR("fn(s: String, suf: String) -> Bool")); + xs = native_list_append(xs, EL_STR("str_to_upper")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> String")); + xs = native_list_append(xs, EL_STR("str_to_lower")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> String")); + xs = native_list_append(xs, EL_STR("str_split")); + xs = native_list_append(xs, EL_STR("fn(s: String, sep: String) -> [String]")); + xs = native_list_append(xs, EL_STR("str_trim")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> String")); + xs = native_list_append(xs, EL_STR("str_replace")); + xs = native_list_append(xs, EL_STR("fn(s: String, from: String, to: String) -> String")); + xs = native_list_append(xs, EL_STR("str_index_of")); + xs = native_list_append(xs, EL_STR("fn(s: String, sub: String) -> Int")); + xs = native_list_append(xs, EL_STR("float_to_str")); + xs = native_list_append(xs, EL_STR("fn(f: Float) -> String")); + xs = native_list_append(xs, EL_STR("str_to_float")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Float")); + xs = native_list_append(xs, EL_STR("math_sqrt")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_log")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_sin")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_cos")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_pi")); + xs = native_list_append(xs, EL_STR("fn() -> Float")); + xs = native_list_append(xs, EL_STR("el_abs")); + xs = native_list_append(xs, EL_STR("fn(n: Int) -> Int")); + xs = native_list_append(xs, EL_STR("el_min")); + xs = native_list_append(xs, EL_STR("fn(a: Int, b: Int) -> Int")); + xs = native_list_append(xs, EL_STR("el_max")); + xs = native_list_append(xs, EL_STR("fn(a: Int, b: Int) -> Int")); + xs = native_list_append(xs, EL_STR("el_list_empty")); + xs = native_list_append(xs, EL_STR("fn() -> [Any]")); + xs = native_list_append(xs, EL_STR("el_list_len")); + xs = native_list_append(xs, EL_STR("fn(l: [Any]) -> Int")); + xs = native_list_append(xs, EL_STR("el_list_get")); + xs = native_list_append(xs, EL_STR("fn(l: [Any], i: Int) -> Any")); + xs = native_list_append(xs, EL_STR("el_list_append")); + xs = native_list_append(xs, EL_STR("fn(l: [Any], v: Any) -> [Any]")); + xs = native_list_append(xs, EL_STR("list_join")); + xs = native_list_append(xs, EL_STR("fn(l: [String], sep: String) -> String")); + xs = native_list_append(xs, EL_STR("list_range")); + xs = native_list_append(xs, EL_STR("fn(start: Int, end: Int) -> [Int]")); + xs = native_list_append(xs, EL_STR("el_map_get")); + xs = native_list_append(xs, EL_STR("fn(m: Map, k: String) -> Any")); + xs = native_list_append(xs, EL_STR("el_map_set")); + xs = native_list_append(xs, EL_STR("fn(m: Map, k: String, v: Any) -> Map")); + xs = native_list_append(xs, EL_STR("json_parse")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Any")); + xs = native_list_append(xs, EL_STR("json_stringify")); + xs = native_list_append(xs, EL_STR("fn(v: Any) -> String")); + xs = native_list_append(xs, EL_STR("json_get_string")); + xs = native_list_append(xs, EL_STR("fn(j: String, k: String) -> String")); + xs = native_list_append(xs, EL_STR("json_get_int")); + xs = native_list_append(xs, EL_STR("fn(j: String, k: String) -> Int")); + xs = native_list_append(xs, EL_STR("json_get_bool")); + xs = native_list_append(xs, EL_STR("fn(j: String, k: String) -> Bool")); + xs = native_list_append(xs, EL_STR("http_get")); + xs = native_list_append(xs, EL_STR("fn(url: String) -> String")); + xs = native_list_append(xs, EL_STR("http_post")); + xs = native_list_append(xs, EL_STR("fn(url: String, body: String) -> String")); + xs = native_list_append(xs, EL_STR("fs_read")); + xs = native_list_append(xs, EL_STR("fn(path: String) -> String")); + xs = native_list_append(xs, EL_STR("fs_write")); + xs = native_list_append(xs, EL_STR("fn(path: String, content: String) -> Bool")); + xs = native_list_append(xs, EL_STR("fs_list")); + xs = native_list_append(xs, EL_STR("fn(path: String) -> [String]")); + xs = native_list_append(xs, EL_STR("env")); + xs = native_list_append(xs, EL_STR("fn(key: String) -> String")); + xs = native_list_append(xs, EL_STR("uuid_new")); + xs = native_list_append(xs, EL_STR("fn() -> String")); + xs = native_list_append(xs, EL_STR("time_now")); + xs = native_list_append(xs, EL_STR("fn() -> Int")); + xs = native_list_append(xs, EL_STR("time_now_utc")); + xs = native_list_append(xs, EL_STR("fn() -> Int")); + xs = native_list_append(xs, EL_STR("sleep_ms")); + xs = native_list_append(xs, EL_STR("fn(ms: Int) -> Void")); + xs = native_list_append(xs, EL_STR("engram_node")); + xs = native_list_append(xs, EL_STR("fn(content: String, kind: String, salience: Float) -> String")); + xs = native_list_append(xs, EL_STR("engram_search")); + xs = native_list_append(xs, EL_STR("fn(q: String, limit: Int) -> [Map]")); + xs = native_list_append(xs, EL_STR("engram_activate")); + xs = native_list_append(xs, EL_STR("fn(q: String, depth: Int) -> [Map]")); + xs = native_list_append(xs, EL_STR("engram_neighbors")); + xs = native_list_append(xs, EL_STR("fn(id: String) -> [Map]")); + xs = native_list_append(xs, EL_STR("engram_connect")); + xs = native_list_append(xs, EL_STR("fn(from: String, to: String, w: Float, rel: String) -> Void")); + xs = native_list_append(xs, EL_STR("dharma_connect")); + xs = native_list_append(xs, EL_STR("fn(cgi: String) -> String")); + xs = native_list_append(xs, EL_STR("dharma_send")); + xs = native_list_append(xs, EL_STR("fn(channel: String, content: String) -> String")); + xs = native_list_append(xs, EL_STR("dharma_emit")); + xs = native_list_append(xs, EL_STR("fn(event: String, payload: String) -> Void")); + xs = native_list_append(xs, EL_STR("dharma_field")); + xs = native_list_append(xs, EL_STR("fn(event: String) -> Map")); + xs = native_list_append(xs, EL_STR("llm_call")); + xs = native_list_append(xs, EL_STR("fn(model: String, prompt: String) -> String")); + return xs; + return 0; +} + +el_val_t keyword_doc(el_val_t kw) { + if (str_eq(kw, EL_STR("let"))) { + return EL_STR("let name: Type = expr — declare an immutable binding."); + } + if (str_eq(kw, EL_STR("fn"))) { + return EL_STR("fn name(params) -> Ret { body } — define a function."); + } + if (str_eq(kw, EL_STR("type"))) { + return EL_STR("type Name { field: Type } — struct definition."); + } + if (str_eq(kw, EL_STR("enum"))) { + return EL_STR("enum Name { Variant1, Variant2(Type) } — enum definition."); + } + if (str_eq(kw, EL_STR("match"))) { + return EL_STR("match expr { Pattern => body } — pattern match."); + } + if (str_eq(kw, EL_STR("return"))) { + return EL_STR("return value — exit the enclosing function."); + } + if (str_eq(kw, EL_STR("if"))) { + return EL_STR("if cond { ... } else { ... } — conditional."); + } + if (str_eq(kw, EL_STR("for"))) { + return EL_STR("for item in collection { ... } — iterate."); + } + if (str_eq(kw, EL_STR("while"))) { + return EL_STR("while cond { ... } — loop while cond is truthy."); + } + if (str_eq(kw, EL_STR("import"))) { + return EL_STR("import \"path.el\" — pull in another module."); + } + if (str_eq(kw, EL_STR("from"))) { + return EL_STR("from module import { Name } — selective import."); + } + if (str_eq(kw, EL_STR("vessel"))) { + return EL_STR("vessel \"name\" { ... } — manifest declaration."); + } + if (str_eq(kw, EL_STR("cgi"))) { + return EL_STR("cgi \"name\" { dharma_id: ... } — CGI identity."); + } + if (str_eq(kw, EL_STR("activate"))) { + return EL_STR("activate Type where \"query\" — spreading-activation retrieval."); + } + if (str_eq(kw, EL_STR("sealed"))) { + return EL_STR("sealed { ... } — capability-restricted block."); + } + if (str_eq(kw, EL_STR("protocol"))) { + return EL_STR("protocol Name { fn method(self) -> R } — trait-like."); + } + if (str_eq(kw, EL_STR("impl"))) { + return EL_STR("impl Protocol for Type { ... } — protocol implementation."); + } + if (str_eq(kw, EL_STR("with"))) { + return EL_STR("with retry/fallback clause."); + } + if (str_eq(kw, EL_STR("retry"))) { + return EL_STR("retry times N — retry policy."); + } + if (str_eq(kw, EL_STR("fallback"))) { + return EL_STR("fallback { default } — fallback on failure."); + } + if (str_eq(kw, EL_STR("true"))) { + return EL_STR("Boolean literal."); + } + if (str_eq(kw, EL_STR("false"))) { + return EL_STR("Boolean literal."); + } + return EL_STR(""); + return 0; +} + +el_val_t first_ident_in(el_val_t rest) { + el_val_t trimmed = str_trim(rest); + el_val_t n = str_len(trimmed); + if (n == 0) { + return EL_STR(""); + } + el_val_t chars = native_string_chars(trimmed); + el_val_t i = 0; + el_val_t total = native_list_len(chars); + while (i < total) { + el_val_t ch = native_list_get(chars, i); + if (!is_ident_ch(ch)) { + return str_slice(trimmed, 0, i); + } + i = (i + 1); + } + return trimmed; + return 0; +} + +el_val_t scan_decls(el_val_t source) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t types = native_list_empty(); + el_val_t kinds = native_list_empty(); + el_val_t fns = native_list_empty(); + el_val_t tlines = native_list_empty(); + el_val_t flines = native_list_empty(); + el_val_t i = 0; + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t trimmed = str_trim(line); + el_val_t lineno = (i + 1); + if (str_starts_with(trimmed, EL_STR("fn "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + fns = native_list_append(fns, name); + flines = native_list_append(flines, lineno); + } + } else { + if (str_starts_with(trimmed, EL_STR("type "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + types = native_list_append(types, name); + kinds = native_list_append(kinds, EL_STR("type")); + tlines = native_list_append(tlines, lineno); + } + } else { + if (str_starts_with(trimmed, EL_STR("enum "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + types = native_list_append(types, name); + kinds = native_list_append(kinds, EL_STR("enum")); + tlines = native_list_append(tlines, lineno); + } + } else { + if (str_starts_with(trimmed, EL_STR("protocol "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + types = native_list_append(types, name); + kinds = native_list_append(kinds, EL_STR("protocol")); + tlines = native_list_append(tlines, lineno); + } + } + } + } + } + i = (i + 1); + } + return el_map_new(5, "types", types, "type_kind", kinds, "fns", fns, "type_lines", tlines, "fn_lines", flines); + return 0; +} + +el_val_t list_contains_str(el_val_t xs, el_val_t needle) { + el_val_t n = native_list_len(xs); + el_val_t i = 0; + while (i < n) { + if (str_eq(native_list_get(xs, i), needle)) { + return 1; + } + i = (i + 1); + } + return 0; + return 0; +} + +el_val_t prefix_score(el_val_t label, el_val_t prefix) { + if (str_eq(prefix, EL_STR(""))) { + return el_from_float(0.5); + } + el_val_t lower_label = str_to_lower(label); + el_val_t lower_prefix = str_to_lower(prefix); + if (str_starts_with(lower_label, lower_prefix)) { + el_val_t lp = str_len(lower_prefix); + el_val_t ll = str_len(lower_label); + if (ll == 0) { + return el_from_float(0.0); + } + return (int_to_float(lp) / int_to_float(ll)); + } + return el_from_float(0.0); + return 0; +} + +el_val_t completion_json(el_val_t label, el_val_t kind, el_val_t detail, el_val_t doc, el_val_t score) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("label"), label)); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), kind)); + parts = native_list_append(parts, json_kv_str(EL_STR("detail"), detail)); + if (str_eq(doc, EL_STR(""))) { + parts = native_list_append(parts, json_kv_raw(EL_STR("documentation"), EL_STR("null"))); + } else { + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), doc)); + } + parts = native_list_append(parts, json_kv_float(EL_STR("score"), score)); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t lsp_complete(el_val_t source, el_val_t pos) { + el_val_t prefix = extract_prefix(source, pos); + el_val_t lower_prefix = str_to_lower(prefix); + el_val_t prefix_empty = str_eq(prefix, EL_STR("")); + el_val_t items = native_list_empty(); + el_val_t kws = keywords_list(); + el_val_t nk = native_list_len(kws); + el_val_t i = 0; + while (i < nk) { + el_val_t kw = native_list_get(kws, i); + if (prefix_empty) { + el_val_t s = prefix_score(kw, prefix); + items = native_list_append(items, completion_json(kw, EL_STR("keyword"), EL_STR("keyword"), keyword_doc(kw), s)); + } else { + if (str_starts_with(kw, prefix)) { + el_val_t s = prefix_score(kw, prefix); + items = native_list_append(items, completion_json(kw, EL_STR("keyword"), EL_STR("keyword"), keyword_doc(kw), s)); + } + } + i = (i + 1); + } + el_val_t bts = builtin_type_names(); + el_val_t nb = native_list_len(bts); + i = 0; + while (i < nb) { + el_val_t name = native_list_get(bts, i); + el_val_t lname = str_to_lower(name); + if (prefix_empty) { + el_val_t s = (el_from_float(0.5) + el_from_float(0.1)); + items = native_list_append(items, completion_json(name, EL_STR("type"), builtin_type_doc(name), el_str_concat(EL_STR("Built-in type: "), builtin_type_doc(name)), s)); + } else { + if (str_starts_with(lname, lower_prefix)) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.1)); + items = native_list_append(items, completion_json(name, EL_STR("type"), builtin_type_doc(name), el_str_concat(EL_STR("Built-in type: "), builtin_type_doc(name)), s)); + } + } + i = (i + 1); + } + el_val_t decls = scan_decls(source); + el_val_t utypes = el_get_field(decls, EL_STR("types")); + el_val_t ukinds = el_get_field(decls, EL_STR("type_kind")); + el_val_t nu = native_list_len(utypes); + i = 0; + while (i < nu) { + el_val_t name = native_list_get(utypes, i); + el_val_t kind = native_list_get(ukinds, i); + el_val_t lname = str_to_lower(name); + el_val_t include = 0; + if (prefix_empty) { + include = 1; + } + if (str_starts_with(lname, lower_prefix)) { + include = 1; + } + if (include) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.15)); + items = native_list_append(items, completion_json(name, EL_STR("type"), el_str_concat(el_str_concat(kind, EL_STR(" ")), name), el_str_concat(el_str_concat(el_str_concat(EL_STR("User-defined "), kind), EL_STR(" ")), name), s)); + } + i = (i + 1); + } + el_val_t bfns = builtin_fns(); + el_val_t nf = native_list_len(bfns); + i = 0; + while (i < nf) { + el_val_t name = native_list_get(bfns, i); + el_val_t sig = native_list_get(bfns, (i + 1)); + el_val_t lname = str_to_lower(name); + el_val_t include = 0; + if (prefix_empty) { + include = 1; + } + if (str_starts_with(lname, lower_prefix)) { + include = 1; + } + if (include) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.11)); + items = native_list_append(items, completion_json(name, EL_STR("function"), sig, el_str_concat(el_str_concat(el_str_concat(EL_STR("Built-in: "), name), EL_STR(" :: ")), sig), s)); + } + i = (i + 2); + } + el_val_t ufns = el_get_field(decls, EL_STR("fns")); + el_val_t nuf = native_list_len(ufns); + i = 0; + while (i < nuf) { + el_val_t name = native_list_get(ufns, i); + el_val_t lname = str_to_lower(name); + el_val_t include = 0; + if (prefix_empty) { + include = 1; + } + if (str_starts_with(lname, lower_prefix)) { + include = 1; + } + if (include) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.12)); + items = native_list_append(items, completion_json(name, EL_STR("function"), el_str_concat(EL_STR("fn "), name), el_str_concat(EL_STR("User function: "), name), s)); + } + i = (i + 1); + } + return json_array_of(items); + return 0; +} + +el_val_t lsp_hover(el_val_t source, el_val_t pos) { + el_val_t token = extract_token(source, pos); + if (str_eq(token, EL_STR(""))) { + return EL_STR("null"); + } + el_val_t doc = builtin_type_doc(token); + if (!str_eq(doc, EL_STR(""))) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), doc)); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + el_val_t decls = scan_decls(source); + el_val_t utypes = el_get_field(decls, EL_STR("types")); + el_val_t ukinds = el_get_field(decls, EL_STR("type_kind")); + el_val_t nu = native_list_len(utypes); + el_val_t i = 0; + while (i < nu) { + el_val_t name = native_list_get(utypes, i); + if (str_eq(name, token)) { + el_val_t kind = native_list_get(ukinds, i); + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), el_str_concat(el_str_concat(kind, EL_STR(" ")), token))); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + i = (i + 1); + } + el_val_t ufns = el_get_field(decls, EL_STR("fns")); + el_val_t nuf = native_list_len(ufns); + i = 0; + while (i < nuf) { + el_val_t name = native_list_get(ufns, i); + if (str_eq(name, token)) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), el_str_concat(EL_STR("fn "), token))); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + i = (i + 1); + } + el_val_t bfns = builtin_fns(); + el_val_t nf = native_list_len(bfns); + i = 0; + while (i < nf) { + el_val_t name = native_list_get(bfns, i); + if (str_eq(name, token)) { + el_val_t sig = native_list_get(bfns, (i + 1)); + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), el_str_concat(el_str_concat(el_str_concat(EL_STR("fn "), token), EL_STR(" :: ")), sig))); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + i = (i + 2); + } + el_val_t kdoc = keyword_doc(token); + if (!str_eq(kdoc, EL_STR(""))) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), kdoc)); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + return EL_STR("null"); + return 0; +} + +el_val_t diag_json(el_val_t message, el_val_t severity, el_val_t line, el_val_t col) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("message"), message)); + parts = native_list_append(parts, json_kv_str(EL_STR("severity"), severity)); + if (line > 0) { + parts = native_list_append(parts, json_kv_int(EL_STR("line"), line)); + parts = native_list_append(parts, json_kv_int(EL_STR("col"), col)); + } else { + parts = native_list_append(parts, json_kv_raw(EL_STR("line"), EL_STR("null"))); + parts = native_list_append(parts, json_kv_raw(EL_STR("col"), EL_STR("null"))); + } + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t lsp_diagnostics(el_val_t source) { + el_val_t chars = native_string_chars(source); + el_val_t n = native_list_len(chars); + el_val_t diags = native_list_empty(); + el_val_t depth_brace = 0; + el_val_t depth_paren = 0; + el_val_t depth_brack = 0; + el_val_t i = 0; + el_val_t line = 1; + el_val_t col = 1; + el_val_t in_string = 0; + el_val_t string_start_line = 0; + el_val_t string_start_col = 0; + el_val_t in_comment = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (in_comment) { + if (str_eq(ch, EL_STR("\n"))) { + in_comment = 0; + line = (line + 1); + col = 1; + } else { + col = (col + 1); + } + i = (i + 1); + } else { + if (in_string) { + if (str_eq(ch, EL_STR("\\"))) { + i = (i + 1); + col = (col + 1); + if (i < n) { + el_val_t esc = native_list_get(chars, i); + if (str_eq(esc, EL_STR("\n"))) { + line = (line + 1); + col = 1; + } else { + col = (col + 1); + } + i = (i + 1); + } + } else { + if (str_eq(ch, EL_STR("\""))) { + in_string = 0; + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("\n"))) { + line = (line + 1); + col = 1; + i = (i + 1); + } else { + col = (col + 1); + i = (i + 1); + } + } + } + } else { + if (str_eq(ch, EL_STR("\""))) { + in_string = 1; + string_start_line = line; + string_start_col = col; + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("/"))) { + el_val_t next_i = (i + 1); + el_val_t is_line_comment = 0; + if (next_i < n) { + el_val_t next_ch = native_list_get(chars, next_i); + if (str_eq(next_ch, EL_STR("/"))) { + is_line_comment = 1; + } + } + if (is_line_comment) { + in_comment = 1; + i = (i + 2); + col = (col + 2); + } else { + i = (i + 1); + col = (col + 1); + } + } else { + if (str_eq(ch, EL_STR("{"))) { + depth_brace = (depth_brace + 1); + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("}"))) { + depth_brace = (depth_brace - 1); + if (depth_brace < 0) { + diags = native_list_append(diags, diag_json(EL_STR("unmatched `}`"), EL_STR("error"), line, col)); + depth_brace = 0; + } + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("("))) { + depth_paren = (depth_paren + 1); + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR(")"))) { + depth_paren = (depth_paren - 1); + if (depth_paren < 0) { + diags = native_list_append(diags, diag_json(EL_STR("unmatched `)`"), EL_STR("error"), line, col)); + depth_paren = 0; + } + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("["))) { + depth_brack = (depth_brack + 1); + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("]"))) { + depth_brack = (depth_brack - 1); + if (depth_brack < 0) { + diags = native_list_append(diags, diag_json(EL_STR("unmatched `]`"), EL_STR("error"), line, col)); + depth_brack = 0; + } + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("\n"))) { + line = (line + 1); + col = 1; + i = (i + 1); + } else { + i = (i + 1); + col = (col + 1); + } + } + } + } + } + } + } + } + } + } + } + } + if (in_string) { + diags = native_list_append(diags, diag_json(EL_STR("unterminated string literal"), EL_STR("error"), string_start_line, string_start_col)); + } + if (depth_brace > 0) { + diags = native_list_append(diags, diag_json(EL_STR("unclosed `{` (missing `}`)"), EL_STR("error"), 0, 0)); + } + if (depth_paren > 0) { + diags = native_list_append(diags, diag_json(EL_STR("unclosed `(` (missing `)`)"), EL_STR("error"), 0, 0)); + } + if (depth_brack > 0) { + diags = native_list_append(diags, diag_json(EL_STR("unclosed `[` (missing `]`)"), EL_STR("error"), 0, 0)); + } + return json_array_of(diags); + return 0; +} + +el_val_t outline_item_json(el_val_t kind, el_val_t name, el_val_t line) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), kind)); + parts = native_list_append(parts, json_kv_str(EL_STR("name"), name)); + parts = native_list_append(parts, json_kv_int(EL_STR("line"), line)); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t lsp_outline(el_val_t source) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t items = native_list_empty(); + el_val_t i = 0; + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t trimmed = str_trim(line); + el_val_t lineno = (i + 1); + if (str_starts_with(trimmed, EL_STR("fn "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("fn"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("type "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("type"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("enum "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("enum"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("protocol "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("protocol"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("impl "))) { + el_val_t rest = str_trim(str_slice(trimmed, 5, str_len(trimmed))); + el_val_t brace = str_index_of(rest, EL_STR("{")); + el_val_t name = rest; + if (brace > 0) { + name = str_trim(str_slice(rest, 0, brace)); + } + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("impl"), name, lineno)); + } + } + } + } + } + } + i = (i + 1); + } + return json_array_of(items); + return 0; +} + +el_val_t format_strip_trailing(el_val_t line) { + el_val_t n = str_len(line); + if (n == 0) { + return line; + } + el_val_t chars = native_string_chars(line); + el_val_t i = (n - 1); + el_val_t trimming = 1; + while (trimming) { + if (i < 0) { + trimming = 0; + } else { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR(" "))) { + i = (i - 1); + } else { + if (str_eq(ch, EL_STR("\t"))) { + i = (i - 1); + } else { + trimming = 0; + } + } + } + } + return str_slice(line, 0, (i + 1)); + return 0; +} + +el_val_t lsp_format(el_val_t source) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t cleaned = native_list_empty(); + el_val_t i = 0; + el_val_t blank_run = 0; + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t stripped = format_strip_trailing(line); + if (str_eq(stripped, EL_STR(""))) { + blank_run = (blank_run + 1); + if (blank_run <= 2) { + cleaned = native_list_append(cleaned, EL_STR("")); + } + } else { + blank_run = 0; + cleaned = native_list_append(cleaned, stripped); + } + i = (i + 1); + } + el_val_t joined = list_join(cleaned, EL_STR("\n")); + el_val_t final = joined; + if (!str_ends_with(final, EL_STR("\n"))) { + final = el_str_concat(final, EL_STR("\n")); + } + el_val_t changed = EL_STR("false"); + if (!str_eq(final, source)) { + changed = EL_STR("true"); + } + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{"), json_kv_str(EL_STR("content"), final)), EL_STR(",")), json_kv_raw(EL_STR("changed"), changed)), EL_STR("}")); + return 0; +} + +el_val_t lsp_type_graph(el_val_t source) { + el_val_t nodes = native_list_empty(); + el_val_t edges = native_list_empty(); + el_val_t bts = builtin_type_names(); + el_val_t nb = native_list_len(bts); + el_val_t i = 0; + while (i < nb) { + el_val_t name = native_list_get(bts, i); + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("id"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("name"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), EL_STR("builtin"))); + parts = native_list_append(parts, json_kv_raw(EL_STR("fields"), EL_STR("[]"))); + nodes = native_list_append(nodes, el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}"))); + i = (i + 1); + } + el_val_t decls = scan_decls(source); + el_val_t utypes = el_get_field(decls, EL_STR("types")); + el_val_t ukinds = el_get_field(decls, EL_STR("type_kind")); + el_val_t tlines = el_get_field(decls, EL_STR("type_lines")); + el_val_t nu = native_list_len(utypes); + i = 0; + el_val_t bts_dup = builtin_type_names(); + while (i < nu) { + el_val_t name = native_list_get(utypes, i); + el_val_t kind = native_list_get(ukinds, i); + if (!list_contains_str(bts_dup, name)) { + el_val_t fields = collect_struct_fields(source, name); + el_val_t field_jsons = native_list_empty(); + el_val_t fn2 = native_list_len(fields); + el_val_t j = 0; + while (j < fn2) { + field_jsons = native_list_append(field_jsons, json_str(native_list_get(fields, j))); + j = (j + 1); + } + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("id"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("name"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), kind)); + parts = native_list_append(parts, json_kv_raw(EL_STR("fields"), json_array_of(field_jsons))); + nodes = native_list_append(nodes, el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}"))); + j = 0; + while (j < fn2) { + el_val_t field_str = native_list_get(fields, j); + el_val_t target = referenced_type(field_str, utypes); + if (!str_eq(EL_NULL, EL_STR(""))) { + el_val_t eparts = native_list_empty(); + eparts = native_list_append(eparts, json_kv_str(EL_STR("from"), name)); + eparts = native_list_append(eparts, json_kv_str(EL_STR("to"), EL_NULL)); + eparts = native_list_append(eparts, json_kv_str(EL_STR("label"), EL_STR("field"))); + edges = native_list_append(edges, el_str_concat(el_str_concat(EL_STR("{"), list_join(eparts, EL_STR(","))), EL_STR("}"))); + } + j = (j + 1); + } + } + i = (i + 1); + } + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{"), json_kv_raw(EL_STR("nodes"), json_array_of(nodes))), EL_STR(",")), json_kv_raw(EL_STR("edges"), json_array_of(edges))), EL_STR("}")); + return 0; +} + +el_val_t collect_struct_fields(el_val_t source, el_val_t type_name) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t fields = native_list_empty(); + el_val_t inside = 0; + el_val_t i = 0; + el_val_t header_a = el_str_concat(EL_STR("type "), type_name); + el_val_t header_b = el_str_concat(EL_STR("enum "), type_name); + el_val_t header_c = el_str_concat(EL_STR("protocol "), type_name); + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t trimmed = str_trim(line); + if (!inside) { + if (str_starts_with(trimmed, header_a)) { + inside = 1; + } + if (str_starts_with(trimmed, header_b)) { + inside = 1; + } + if (str_starts_with(trimmed, header_c)) { + inside = 1; + } + } else { + if (str_starts_with(trimmed, EL_STR("}"))) { + return fields; + } + if (!str_eq(trimmed, EL_STR("{"))) { + if (!str_eq(trimmed, EL_STR(""))) { + if (!str_starts_with(trimmed, EL_STR("//"))) { + el_val_t entry = trimmed; + if (str_ends_with(entry, EL_STR(","))) { + entry = str_slice(entry, 0, (str_len(entry) - 1)); + } + fields = native_list_append(fields, str_trim(entry)); + } + } + } + } + i = (i + 1); + } + return fields; + return 0; +} + +el_val_t referenced_type(el_val_t field_str, el_val_t known_types) { + el_val_t colon = str_index_of(field_str, EL_STR(":")); + if (colon < 0) { + return EL_STR(""); + } + el_val_t after = str_trim(str_slice(field_str, (colon + 1), str_len(field_str))); + el_val_t trimmed_l = after; + if (str_starts_with(trimmed_l, EL_STR("["))) { + el_val_t end = str_index_of(trimmed_l, EL_STR("]")); + if (end > 1) { + trimmed_l = str_trim(str_slice(trimmed_l, 1, end)); + } + } + el_val_t ident = first_ident_in(trimmed_l); + if (str_eq(ident, EL_STR(""))) { + return EL_STR(""); + } + el_val_t bts = builtin_type_names(); + if (list_contains_str(bts, ident)) { + return ident; + } + if (list_contains_str(known_types, ident)) { + return ident; + } + return EL_STR(""); + return 0; +} + +el_val_t lsp_definition(el_val_t source, el_val_t pos) { + el_val_t word = extract_token(source, pos); + if (str_eq(word, EL_STR(""))) { + return EL_STR("null"); + } + el_val_t patterns = native_list_empty(); + patterns = native_list_append(patterns, el_str_concat(EL_STR("fn "), word)); + patterns = native_list_append(patterns, el_str_concat(EL_STR("type "), word)); + patterns = native_list_append(patterns, el_str_concat(EL_STR("enum "), word)); + patterns = native_list_append(patterns, el_str_concat(EL_STR("protocol "), word)); + el_val_t np = native_list_len(patterns); + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t nl = native_list_len(lines); + el_val_t i = 0; + while (i < nl) { + el_val_t line = native_list_get(lines, i); + el_val_t j = 0; + while (j < np) { + el_val_t pat = native_list_get(patterns, j); + el_val_t idx = str_index_of(line, pat); + if (idx >= 0) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_int(EL_STR("line"), (i + 1))); + parts = native_list_append(parts, json_kv_int(EL_STR("col"), (idx + 1))); + parts = native_list_append(parts, json_kv_str(EL_STR("snippet"), str_trim(line))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + j = (j + 1); + } + i = (i + 1); + } + return EL_STR("null"); + return 0; +} + +el_val_t lsp_references(el_val_t source, el_val_t pos) { + el_val_t word = extract_token(source, pos); + if (str_eq(word, EL_STR(""))) { + return EL_STR("[]"); + } + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t nl = native_list_len(lines); + el_val_t refs = native_list_empty(); + el_val_t i = 0; + while (i < nl) { + el_val_t line = native_list_get(lines, i); + el_val_t line_chars = native_string_chars(line); + el_val_t llen = native_list_len(line_chars); + el_val_t wlen = str_len(word); + el_val_t off = 0; + el_val_t scanning = 1; + while (scanning) { + el_val_t idx = str_index_of(str_slice(line, off, str_len(line)), word); + if (idx < 0) { + scanning = 0; + } else { + el_val_t abs = (off + idx); + el_val_t before_ok = 1; + if (abs > 0) { + el_val_t prev = native_list_get(line_chars, (abs - 1)); + if (is_ident_ch(prev)) { + before_ok = 0; + } + } + el_val_t after_ok = 1; + el_val_t after_pos = (abs + wlen); + if (after_pos < llen) { + el_val_t nxt = native_list_get(line_chars, after_pos); + if (is_ident_ch(nxt)) { + after_ok = 0; + } + } + if (before_ok) { + if (after_ok) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_int(EL_STR("line"), (i + 1))); + parts = native_list_append(parts, json_kv_int(EL_STR("col"), (abs + 1))); + parts = native_list_append(parts, json_kv_str(EL_STR("snippet"), str_trim(line))); + refs = native_list_append(refs, el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}"))); + } + } + off = (abs + wlen); + if (off >= str_len(line)) { + scanning = 0; + } + } + } + i = (i + 1); + } + return json_array_of(refs); + return 0; +} + +el_val_t lsp_jsonrpc(el_val_t method, el_val_t params_json) { + el_val_t source = json_get_string(params_json, EL_STR("source")); + el_val_t pos = json_get_int(params_json, EL_STR("pos")); + if (str_eq(method, EL_STR("textDocument/completion"))) { + return lsp_complete(source, pos); + } + if (str_eq(method, EL_STR("textDocument/hover"))) { + return lsp_hover(source, pos); + } + if (str_eq(method, EL_STR("textDocument/diagnostic"))) { + return lsp_diagnostics(source); + } + if (str_eq(method, EL_STR("textDocument/formatting"))) { + return lsp_format(source); + } + if (str_eq(method, EL_STR("textDocument/documentSymbol"))) { + return lsp_outline(source); + } + if (str_eq(method, EL_STR("textDocument/definition"))) { + return lsp_definition(source, pos); + } + if (str_eq(method, EL_STR("textDocument/references"))) { + return lsp_references(source, pos); + } + if (str_eq(method, EL_STR("el/typeGraph"))) { + return lsp_type_graph(source); + } + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"unknown method: "), json_escape(method)), EL_STR("\"}")); + return 0; +} + +el_val_t read_headers(void) { + el_val_t content_len = 0; + el_val_t scanning = 1; + while (scanning) { + el_val_t line = readline(); + if (str_eq(line, EL_STR(""))) { + scanning = 0; + } else { + el_val_t cl_marker = EL_STR("Content-Length:"); + if (str_starts_with(line, cl_marker)) { + el_val_t val = str_trim(str_slice(line, str_len(cl_marker), str_len(line))); + content_len = str_to_int(val); + } + } + } + return el_map_new(1, "content_length", content_len); + return 0; +} + +el_val_t lsp_stdio_loop(void) { + el_val_t running = 1; + while (running) { + el_val_t headers = read_headers(); + el_val_t body = readline(); + if (str_eq(body, EL_STR(""))) { + running = 0; + } else { + el_val_t method = json_get_string(body, EL_STR("method")); + el_val_t id_val = json_get_raw(body, EL_STR("id")); + if (str_eq(id_val, EL_STR(""))) { + id_val = EL_STR("null"); + } + el_val_t params_raw = json_get_raw(body, EL_STR("params")); + el_val_t result = lsp_jsonrpc(method, params_raw); + el_val_t resp = el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"jsonrpc\":\"2.0\",\"id\":"), id_val), EL_STR(",\"result\":")), result), EL_STR("}")); + el_val_t frame = el_str_concat(el_str_concat(el_str_concat(EL_STR("Content-Length: "), int_to_str(str_len(resp))), EL_STR("\r\n\r\n")), resp); + print(frame); + } + } + return 0; +} + +el_val_t lsp_main(void) { + el_val_t argv = args(); + el_val_t n = native_list_len(argv); + if (n > 0) { + el_val_t cmd = native_list_get(argv, 0); + if (str_eq(cmd, EL_STR("version"))) { + println(EL_STR("el-lsp 0.1.0")); + return 0; + } + if (str_eq(cmd, EL_STR("probe"))) { + el_val_t sample = EL_STR("fn main() -> Void { let x: Int = 42 }"); + println(lsp_diagnostics(sample)); + return 0; + } + } + lsp_stdio_loop(); + return 0; +} + +el_val_t pkey(el_val_t name, el_val_t field) { + return el_str_concat(el_str_concat(el_str_concat(EL_STR("plugin/"), name), EL_STR("/")), field); + return 0; +} + +el_val_t put_str(el_val_t name, el_val_t field, el_val_t value) { + state_set(pkey(name, field), value); + return 0; +} + +el_val_t put_bool(el_val_t name, el_val_t field, el_val_t value) { + if (value) { + state_set(pkey(name, field), EL_STR("true")); + } + if (!value) { + state_set(pkey(name, field), EL_STR("false")); + } + return 0; +} + +el_val_t get_str(el_val_t name, el_val_t field) { + return state_get(pkey(name, field)); + return 0; +} + +el_val_t get_bool(el_val_t name, el_val_t field) { + return str_eq(state_get(pkey(name, field)), EL_STR("true")); + return 0; +} + +el_val_t index_list(void) { + el_val_t raw = state_get(EL_STR("plugins/index")); + if (str_eq(raw, EL_STR(""))) { + return native_list_empty(); + } + return str_split(raw, EL_STR(",")); + return 0; +} + +el_val_t index_set(el_val_t names) { + state_set(EL_STR("plugins/index"), list_join(names, EL_STR(","))); + return 0; +} + +el_val_t index_contains(el_val_t name) { + el_val_t names = index_list(); + el_val_t n = native_list_len(names); + el_val_t i = 0; + while (i < n) { + if (str_eq(native_list_get(names, i), name)) { + return 1; + } + i = (i + 1); + } + return 0; + return 0; +} + +el_val_t index_add(el_val_t name) { + if (!index_contains(name)) { + el_val_t names = index_list(); + names = native_list_append(names, name); + index_set(names); + } + return 0; +} + +el_val_t register_plugin(el_val_t name, el_val_t version, el_val_t description, el_val_t installed, el_val_t enabled, el_val_t hooks, el_val_t first_party) { + put_str(name, EL_STR("name"), name); + put_str(name, EL_STR("version"), version); + put_str(name, EL_STR("description"), description); + put_bool(name, EL_STR("installed"), installed); + put_bool(name, EL_STR("enabled"), enabled); + put_str(name, EL_STR("hooks"), hooks); + put_bool(name, EL_STR("first_party"), first_party); + index_add(name); + return 0; +} + +el_val_t plugin_init(void) { + if (str_eq(state_get(EL_STR("plugins/initialised")), EL_STR("true"))) { + return 0; + } + register_plugin(EL_STR("el-theme-dark"), EL_STR("1.0.0"), EL_STR("Dark theme — the default Engram IDE theme."), 1, 1, EL_STR(""), 1); + register_plugin(EL_STR("el-theme-light"), EL_STR("1.0.0"), EL_STR("Light theme for high-ambient-light environments."), 0, 0, EL_STR(""), 1); + register_plugin(EL_STR("el-fmt"), EL_STR("0.1.0"), EL_STR("Code formatter — auto-formats .el files on save."), 1, 1, EL_STR("on_save"), 1); + register_plugin(EL_STR("el-doc"), EL_STR("0.1.0"), EL_STR("Documentation generator — produces HTML docs from type definitions."), 0, 0, EL_STR("custom_tool"), 1); + register_plugin(EL_STR("el-test"), EL_STR("0.1.0"), EL_STR("Test runner with inline results displayed in the editor gutter."), 0, 0, EL_STR("on_build_complete,custom_panel"), 1); + state_set(EL_STR("plugins/initialised"), EL_STR("true")); + return 0; +} + +el_val_t json_escape_str(el_val_t s) { + el_val_t chars = native_string_chars(s); + el_val_t n = native_list_len(chars); + el_val_t out = EL_STR(""); + el_val_t i = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\""))) { + out = el_str_concat(out, EL_STR("\\\"")); + } else { + if (str_eq(ch, EL_STR("\\"))) { + out = el_str_concat(out, EL_STR("\\\\")); + } else { + if (str_eq(ch, EL_STR("\n"))) { + out = el_str_concat(out, EL_STR("\\n")); + } else { + out = el_str_concat(out, ch); + } + } + } + i = (i + 1); + } + return out; + return 0; +} + +el_val_t quote_json(el_val_t s) { + return el_str_concat(el_str_concat(EL_STR("\""), json_escape_str(s)), EL_STR("\"")); + return 0; +} + +el_val_t hooks_to_json(el_val_t hooks_csv) { + if (str_eq(hooks_csv, EL_STR(""))) { + return EL_STR("[]"); + } + el_val_t xs = str_split(hooks_csv, EL_STR(",")); + el_val_t n = native_list_len(xs); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + out = el_str_concat(out, quote_json(native_list_get(xs, i))); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t plugin_to_json(el_val_t name) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, el_str_concat(EL_STR("\"name\":"), quote_json(get_str(name, EL_STR("name"))))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"version\":"), quote_json(get_str(name, EL_STR("version"))))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"description\":"), quote_json(get_str(name, EL_STR("description"))))); + el_val_t installed = get_str(name, EL_STR("installed")); + el_val_t enabled = get_str(name, EL_STR("enabled")); + el_val_t first_party = get_str(name, EL_STR("first_party")); + parts = native_list_append(parts, el_str_concat(EL_STR("\"installed\":"), installed)); + parts = native_list_append(parts, el_str_concat(EL_STR("\"enabled\":"), enabled)); + parts = native_list_append(parts, el_str_concat(EL_STR("\"hooks\":"), hooks_to_json(get_str(name, EL_STR("hooks"))))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"first_party\":"), first_party)); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t plugin_list_json(void) { + plugin_init(); + el_val_t names = index_list(); + el_val_t n = native_list_len(names); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + out = el_str_concat(out, plugin_to_json(native_list_get(names, i))); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t plugin_get_json(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return EL_STR("null"); + } + return plugin_to_json(name); + return 0; +} + +el_val_t plugin_install(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return EL_STR("{\"error\":\"plugin registry is not available (registry URL not configured)\"}"); + } + if (get_bool(name, EL_STR("installed"))) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' is already installed\"}")); + } + put_bool(name, EL_STR("installed"), 1); + put_bool(name, EL_STR("enabled"), 1); + return plugin_to_json(name); + return 0; +} + +el_val_t plugin_remove(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' not found\"}")); + } + if (str_eq(name, EL_STR("el-theme-dark"))) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' cannot be removed: it is a required built-in\"}")); + } + put_bool(name, EL_STR("installed"), 0); + put_bool(name, EL_STR("enabled"), 0); + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t plugin_enable(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' not found\"}")); + } + put_bool(name, EL_STR("enabled"), 1); + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t plugin_disable(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' not found\"}")); + } + put_bool(name, EL_STR("enabled"), 0); + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t host_main(void) { + el_val_t argv = args(); + el_val_t n = native_list_len(argv); + if (n == 0) { + println(plugin_list_json()); + return 0; + } + el_val_t cmd = native_list_get(argv, 0); + if (str_eq(cmd, EL_STR("list"))) { + println(plugin_list_json()); + return 0; + } + if (str_eq(cmd, EL_STR("get"))) { + if (n >= 2) { + println(plugin_get_json(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("install"))) { + if (n >= 2) { + println(plugin_install(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("remove"))) { + if (n >= 2) { + println(plugin_remove(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("enable"))) { + if (n >= 2) { + println(plugin_enable(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("disable"))) { + if (n >= 2) { + println(plugin_disable(native_list_get(argv, 1))); + } + return 0; + } + println(EL_STR("usage: el-plugin-host [list|get|install|remove|enable|disable] ")); + return 0; +} + +el_val_t jstr(el_val_t s) { + el_val_t chars = native_string_chars(s); + el_val_t n = native_list_len(chars); + el_val_t out = EL_STR("\""); + el_val_t i = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\""))) { + out = el_str_concat(out, EL_STR("\\\"")); + } else { + if (str_eq(ch, EL_STR("\\"))) { + out = el_str_concat(out, EL_STR("\\\\")); + } else { + if (str_eq(ch, EL_STR("\n"))) { + out = el_str_concat(out, EL_STR("\\n")); + } else { + if (str_eq(ch, EL_STR("\r"))) { + out = el_str_concat(out, EL_STR("\\r")); + } else { + if (str_eq(ch, EL_STR("\t"))) { + out = el_str_concat(out, EL_STR("\\t")); + } else { + out = el_str_concat(out, ch); + } + } + } + } + } + i = (i + 1); + } + return el_str_concat(out, EL_STR("\"")); + return 0; +} + +el_val_t jerr(el_val_t msg) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":"), jstr(msg)), EL_STR("}")); + return 0; +} + +el_val_t ok_obj(void) { + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t url_decode(el_val_t s) { + el_val_t chars = native_string_chars(s); + el_val_t n = native_list_len(chars); + el_val_t out = EL_STR(""); + el_val_t i = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("+"))) { + out = el_str_concat(out, EL_STR(" ")); + i = (i + 1); + } else { + if (str_eq(ch, EL_STR("%"))) { + if ((i + 2) < n) { + el_val_t hex = el_str_concat(native_list_get(chars, (i + 1)), native_list_get(chars, (i + 2))); + el_val_t code = hex_to_int(hex); + out = el_str_concat(out, char_from_code(code)); + i = (i + 3); + } else { + out = el_str_concat(out, ch); + i = (i + 1); + } + } else { + out = el_str_concat(out, ch); + i = (i + 1); + } + } + } + return out; + return 0; +} + +el_val_t hex_digit(el_val_t ch) { + if (str_eq(ch, EL_STR("0"))) { + return 0; + } + if (str_eq(ch, EL_STR("1"))) { + return 1; + } + if (str_eq(ch, EL_STR("2"))) { + return 2; + } + if (str_eq(ch, EL_STR("3"))) { + return 3; + } + if (str_eq(ch, EL_STR("4"))) { + return 4; + } + if (str_eq(ch, EL_STR("5"))) { + return 5; + } + if (str_eq(ch, EL_STR("6"))) { + return 6; + } + if (str_eq(ch, EL_STR("7"))) { + return 7; + } + if (str_eq(ch, EL_STR("8"))) { + return 8; + } + if (str_eq(ch, EL_STR("9"))) { + return 9; + } + if (str_eq(ch, EL_STR("a"))) { + return 10; + } + if (str_eq(ch, EL_STR("A"))) { + return 10; + } + if (str_eq(ch, EL_STR("b"))) { + return 11; + } + if (str_eq(ch, EL_STR("B"))) { + return 11; + } + if (str_eq(ch, EL_STR("c"))) { + return 12; + } + if (str_eq(ch, EL_STR("C"))) { + return 12; + } + if (str_eq(ch, EL_STR("d"))) { + return 13; + } + if (str_eq(ch, EL_STR("D"))) { + return 13; + } + if (str_eq(ch, EL_STR("e"))) { + return 14; + } + if (str_eq(ch, EL_STR("E"))) { + return 14; + } + if (str_eq(ch, EL_STR("f"))) { + return 15; + } + return (/* if-expr */ ((str_eq(ch, EL_STR("F"))) ? (el_val_t)1 : (el_val_t)0) - 1); + return 0; +} + +el_val_t hex_to_int(el_val_t hex) { + el_val_t chars = native_string_chars(hex); + el_val_t n = native_list_len(chars); + el_val_t acc = 0; + el_val_t i = 0; + while (i < n) { + el_val_t d = hex_digit(native_list_get(chars, i)); + if (d < 0) { + return acc; + } + acc = el_str_concat((acc * 16), d); + i = (i + 1); + } + return acc; + return 0; +} + +el_val_t char_from_code(el_val_t code) { + el_val_t table = EL_STR(" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"); + if (code < 32) { + return EL_STR(" "); + } + if (code > 126) { + return EL_STR("?"); + } + return str_slice(table, (code - 32), (code - 31)); + return 0; +} + +el_val_t split_path_query(el_val_t path) { + el_val_t q = str_index_of(path, EL_STR("?")); + if (q < 0) { + return el_map_new(2, "path", path, "query", EL_STR("")); + } + return el_map_new(2, "path", str_slice(path, 0, q), "query", str_slice(path, (q + 1), str_len(path))); + return 0; +} + +el_val_t query_get(el_val_t query, el_val_t key) { + if (str_eq(query, EL_STR(""))) { + return EL_STR(""); + } + el_val_t pairs = str_split(query, EL_STR("&")); + el_val_t n = native_list_len(pairs); + el_val_t prefix = el_str_concat(key, EL_STR("=")); + el_val_t i = 0; + while (i < n) { + el_val_t pair = native_list_get(pairs, i); + if (str_starts_with(pair, prefix)) { + return url_decode(str_slice(pair, str_len(prefix), str_len(pair))); + } + if (str_eq(pair, key)) { + return EL_STR(""); + } + i = (i + 1); + } + return EL_STR(""); + return 0; +} + +el_val_t cfg_port(void) { + el_val_t p = env(EL_STR("EL_IDE_PORT")); + if (str_eq(p, EL_STR(""))) { + return 7771; + } + return str_to_int(p); + return 0; +} + +el_val_t cfg_project_path(void) { + el_val_t p = env(EL_STR("EL_IDE_PROJECT_PATH")); + if (str_eq(p, EL_STR(""))) { + return EL_STR("."); + } + return p; + return 0; +} + +el_val_t cfg_engram_url(void) { + el_val_t u = env(EL_STR("EL_ENGRAM_URL")); + if (str_eq(u, EL_STR(""))) { + return EL_STR("http://localhost:8742"); + } + return u; + return 0; +} + +el_val_t cfg_el_binary(void) { + el_val_t b = env(EL_STR("EL_BINARY")); + if (str_eq(b, EL_STR(""))) { + return EL_STR("el"); + } + return b; + return 0; +} + +el_val_t safe_join(el_val_t rel) { + el_val_t root = cfg_project_path(); + if (str_contains(rel, EL_STR(".."))) { + return EL_STR(""); + } + if (str_starts_with(rel, EL_STR("/"))) { + return EL_STR(""); + } + if (str_eq(rel, EL_STR("."))) { + return root; + } + return el_str_concat(el_str_concat(root, EL_STR("/")), rel); + return 0; +} + +el_val_t route_status(void) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, el_str_concat(EL_STR("\"project_name\":"), jstr(cfg_project_path()))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"project_path\":"), jstr(cfg_project_path()))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"version\":"), jstr(EL_STR("0.1.0")))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"engine\":"), jstr(EL_STR("el-ide")))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t route_config(void) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, el_str_concat(EL_STR("\"port\":"), int_to_str(cfg_port()))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"project_path\":"), jstr(cfg_project_path()))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"engram_url\":"), jstr(cfg_engram_url()))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"el_binary\":"), jstr(cfg_el_binary()))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t route_files_list(el_val_t query) { + el_val_t rel = query_get(query, EL_STR("path")); + if (str_eq(rel, EL_STR(""))) { + rel = EL_STR("."); + } + el_val_t target = safe_join(rel); + if (str_eq(EL_NULL, EL_STR(""))) { + return jerr(EL_STR("path escapes project root")); + } + el_val_t entries = fs_list(EL_NULL); + el_val_t n = native_list_len(entries); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + el_val_t name = native_list_get(entries, i); + el_val_t skip = 0; + if (str_starts_with(name, EL_STR("."))) { + skip = 1; + } + if (str_eq(name, EL_STR("target"))) { + skip = 1; + } + if (str_eq(name, EL_STR("node_modules"))) { + skip = 1; + } + if (str_eq(name, EL_STR("dist"))) { + skip = 1; + } + if (!skip) { + if (i > 0) { + if (!str_eq(out, EL_STR("["))) { + out = el_str_concat(out, EL_STR(",")); + } + } + el_val_t dot = str_index_of(name, EL_STR(".")); + el_val_t is_dir = EL_STR("false"); + if (dot < 0) { + is_dir = EL_STR("true"); + } + out = el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(out, EL_STR("{\"name\":")), jstr(name)), EL_STR(",\"path\":")), jstr(el_str_concat(el_str_concat(rel, EL_STR("/")), name))), EL_STR(",\"is_dir\":")), is_dir), EL_STR(",\"children\":null}")); + } + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t route_file_read(el_val_t query) { + el_val_t rel = query_get(query, EL_STR("path")); + if (str_eq(rel, EL_STR(""))) { + return jerr(EL_STR("missing path parameter")); + } + el_val_t target = safe_join(rel); + if (str_eq(EL_NULL, EL_STR(""))) { + return jerr(EL_STR("path escapes project root")); + } + el_val_t content = fs_read(EL_NULL); + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"path\":"), jstr(rel)), EL_STR(",\"content\":")), jstr(content)), EL_STR("}")); + return 0; +} + +el_val_t route_file_write(el_val_t body) { + el_val_t rel = json_get_string(body, EL_STR("path")); + el_val_t content = json_get_string(body, EL_STR("content")); + if (str_eq(rel, EL_STR(""))) { + return jerr(EL_STR("missing path")); + } + el_val_t target = safe_join(rel); + if (str_eq(EL_NULL, EL_STR(""))) { + return jerr(EL_STR("path escapes project root")); + } + el_val_t ok = fs_write(EL_NULL, content); + if (ok) { + return ok_obj(); + } + return jerr(EL_STR("cannot write file")); + return 0; +} + +el_val_t route_lsp_complete(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + el_val_t pos = str_to_int(query_get(query, EL_STR("pos"))); + return lsp_complete(source, pos); + return 0; +} + +el_val_t route_lsp_hover(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + el_val_t pos = str_to_int(query_get(query, EL_STR("pos"))); + return lsp_hover(source, pos); + return 0; +} + +el_val_t route_lsp_errors(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + return lsp_diagnostics(source); + return 0; +} + +el_val_t route_lsp_jsonrpc(el_val_t body) { + el_val_t method = json_get_string(body, EL_STR("method")); + el_val_t params_raw = json_get_raw(body, EL_STR("params")); + el_val_t id_val = json_get_raw(body, EL_STR("id")); + if (str_eq(id_val, EL_STR(""))) { + id_val = EL_STR("null"); + } + el_val_t result = lsp_jsonrpc(method, params_raw); + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"jsonrpc\":\"2.0\",\"id\":"), id_val), EL_STR(",\"result\":")), result), EL_STR("}")); + return 0; +} + +el_val_t route_outline(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + return lsp_outline(source); + return 0; +} + +el_val_t route_definition(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + el_val_t pos = str_to_int(query_get(query, EL_STR("pos"))); + return lsp_definition(source, pos); + return 0; +} + +el_val_t route_references(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + el_val_t pos = str_to_int(query_get(query, EL_STR("pos"))); + return lsp_references(source, pos); + return 0; +} + +el_val_t route_format(el_val_t body) { + el_val_t content = json_get_string(body, EL_STR("content")); + return lsp_format(content); + return 0; +} + +el_val_t route_type_graph(el_val_t query) { + el_val_t source = query_get(query, EL_STR("source")); + return lsp_type_graph(source); + return 0; +} + +el_val_t active_theme(void) { + el_val_t t = state_get(EL_STR("ide/active_theme")); + if (str_eq(t, EL_STR(""))) { + return EL_STR("dark"); + } + return t; + return 0; +} + +el_val_t route_themes_list(void) { + el_val_t active = active_theme(); + el_val_t names = native_list_empty(); + names = native_list_append(names, EL_STR("dark")); + names = native_list_append(names, EL_STR("light")); + names = native_list_append(names, EL_STR("neuron")); + names = native_list_append(names, EL_STR("high-contrast")); + el_val_t labels = native_list_empty(); + labels = native_list_append(labels, EL_STR("Dark")); + labels = native_list_append(labels, EL_STR("Light")); + labels = native_list_append(labels, EL_STR("Neuron")); + labels = native_list_append(labels, EL_STR("High Contrast")); + el_val_t n = native_list_len(names); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + el_val_t nm = native_list_get(names, i); + el_val_t lbl = native_list_get(labels, i); + el_val_t act = EL_STR("false"); + if (str_eq(nm, active)) { + act = EL_STR("true"); + } + out = el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(out, EL_STR("{\"name\":")), jstr(nm)), EL_STR(",\"label\":")), jstr(lbl)), EL_STR(",\"active\":")), act), EL_STR("}")); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t route_themes_set(el_val_t body) { + el_val_t name = json_get_string(body, EL_STR("name")); + el_val_t valid = 0; + if (str_eq(name, EL_STR("dark"))) { + valid = 1; + } + if (str_eq(name, EL_STR("light"))) { + valid = 1; + } + if (str_eq(name, EL_STR("neuron"))) { + valid = 1; + } + if (str_eq(name, EL_STR("high-contrast"))) { + valid = 1; + } + if (!valid) { + return jerr(el_str_concat(EL_STR("unknown theme: "), name)); + } + state_set(EL_STR("ide/active_theme"), name); + return el_str_concat(el_str_concat(EL_STR("{\"ok\":true,\"active\":"), jstr(name)), EL_STR("}")); + return 0; +} + +el_val_t route_plugins_list(void) { + return plugin_list_json(); + return 0; +} + +el_val_t route_plugins_install(el_val_t body) { + return plugin_install(json_get_string(body, EL_STR("name"))); + return 0; +} + +el_val_t route_plugins_remove(el_val_t body) { + return plugin_remove(json_get_string(body, EL_STR("name"))); + return 0; +} + +el_val_t route_plugins_enable(el_val_t body) { + return plugin_enable(json_get_string(body, EL_STR("name"))); + return 0; +} + +el_val_t route_plugins_disable(el_val_t body) { + return plugin_disable(json_get_string(body, EL_STR("name"))); + return 0; +} + +el_val_t route_snippets(void) { + el_val_t snips = native_list_empty(); + snips = native_list_append(snips, EL_STR("{\"label\":\"fn\",\"description\":\"Function definition\",\"body\":\"fn ${1:name}(${2:params}) -> ${3:Ret} {\\n\\t${4:body}\\n}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"type\",\"description\":\"Struct\",\"body\":\"type ${1:Name} {\\n\\t${2:field}: ${3:Type},\\n}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"enum\",\"description\":\"Enum\",\"body\":\"enum ${1:Name} {\\n\\t${2:Variant},\\n}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"match\",\"description\":\"Match expression\",\"body\":\"match ${1:expr} {\\n\\t${2:pat} => ${3:body},\\n\\t_ => ${4:default},\\n}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"let\",\"description\":\"Let binding\",\"body\":\"let ${1:name}: ${2:Type} = ${3:value}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"if\",\"description\":\"If expression\",\"body\":\"if ${1:cond} {\\n\\t${2:body}\\n}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"for\",\"description\":\"For loop\",\"body\":\"for ${1:item} in ${2:iter} {\\n\\t${3:body}\\n}\"}")); + snips = native_list_append(snips, EL_STR("{\"label\":\"activate\",\"description\":\"Activate\",\"body\":\"activate ${1:Type}\"}")); + return el_str_concat(el_str_concat(EL_STR("["), list_join(snips, EL_STR(","))), EL_STR("]")); + return 0; +} + +el_val_t settings_path(void) { + el_val_t home = env(EL_STR("HOME")); + if (str_eq(home, EL_STR(""))) { + home = EL_STR("/tmp"); + } + return el_str_concat(home, EL_STR("/.el-ide/settings.json")); + return 0; +} + +el_val_t default_settings_json(void) { + return EL_STR("{\"theme\":\"dark\",\"fontSize\":13,\"tabSize\":4,\"wordWrap\":false,\"formatOnSave\":false,\"vimMode\":false,\"minimap\":true,\"elBinaryPath\":\"el\",\"engramUrl\":\"http://localhost:8742\",\"stickyScroll\":true,\"lineNumbers\":true,\"bracketMatching\":true}"); + return 0; +} + +el_val_t route_settings_get(void) { + el_val_t s = fs_read(settings_path()); + if (str_eq(s, EL_STR(""))) { + return default_settings_json(); + } + return s; + return 0; +} + +el_val_t route_settings_save(el_val_t body) { + el_val_t blob = json_get_raw(body, EL_STR("settings")); + if (str_eq(blob, EL_STR(""))) { + return jerr(EL_STR("missing settings")); + } + fs_write(settings_path(), blob); + return blob; + return 0; +} + +el_val_t route_settings_reset(void) { + fs_write(settings_path(), default_settings_json()); + return default_settings_json(); + return 0; +} + +el_val_t route_build_or_run(el_val_t action, el_val_t body) { + el_val_t rel_file = json_get_string(body, EL_STR("file")); + if (str_eq(rel_file, EL_STR(""))) { + rel_file = EL_STR("src/main.el"); + } + el_val_t target = safe_join(rel_file); + if (str_eq(EL_NULL, EL_STR(""))) { + return jerr(EL_STR("path escapes project root")); + } + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"event\":\"info\",\"action\":"), jstr(action)), EL_STR(",\"file\":")), jstr(rel_file)), EL_STR(",\"note\":\"el-ide-server: synchronous build requires a runtime exec primitive — el binary not invoked\"}")); + return 0; +} + +el_val_t route_build(el_val_t body) { + return route_build_or_run(EL_STR("build"), body); + return 0; +} + +el_val_t route_run(el_val_t body) { + return route_build_or_run(EL_STR("run"), body); + return 0; +} + +el_val_t route_reason(el_val_t body) { + el_val_t url = el_str_concat(cfg_engram_url(), EL_STR("/api/reason")); + el_val_t resp = http_post(url, body); + if (str_eq(resp, EL_STR(""))) { + return jerr(EL_STR("engram unreachable")); + } + return resp; + return 0; +} + +el_val_t route_activate_preview(el_val_t query) { + el_val_t type_name = query_get(query, EL_STR("type_name")); + el_val_t q = query_get(query, EL_STR("query")); + el_val_t url = el_str_concat(cfg_engram_url(), EL_STR("/api/activate-preview")); + el_val_t body = el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"type_name\":"), jstr(type_name)), EL_STR(",\"query\":")), jstr(q)), EL_STR(",\"limit\":5}")); + el_val_t resp = http_post(url, body); + if (str_eq(resp, EL_STR(""))) { + return EL_STR("{\"count\":0,\"nodes\":[],\"connected\":false}"); + } + return resp; + return 0; +} + +el_val_t route_index(void) { + el_val_t path = el_str_concat(cfg_project_path(), EL_STR("/ide/index.html")); + el_val_t html = fs_read(path); + if (!str_eq(html, EL_STR(""))) { + return html; + } + return el_str_concat(el_str_concat(EL_STR("el-ide

el-ide

Backend running. UI bundle missing at "), path), EL_STR(".

")); + return 0; +} + +el_val_t route_health(void) { + return EL_STR("{\"status\":\"ok\",\"engine\":\"el-ide-server\"}"); + return 0; +} + +el_val_t handle_request(el_val_t method, el_val_t path, el_val_t body) { + el_val_t parsed = split_path_query(path); + el_val_t route = el_get_field(parsed, EL_STR("path")); + el_val_t query = el_get_field(parsed, EL_STR("query")); + if (str_eq(route, EL_STR("/"))) { + return route_index(); + } + if (str_eq(route, EL_STR("/health"))) { + return route_health(); + } + if (str_eq(route, EL_STR("/api/status"))) { + return route_status(); + } + if (str_eq(route, EL_STR("/api/config"))) { + return route_config(); + } + if (str_eq(route, EL_STR("/api/files"))) { + return route_files_list(query); + } + if (str_eq(route, EL_STR("/api/file"))) { + if (str_eq(method, EL_STR("GET"))) { + return route_file_read(query); + } + if (str_eq(method, EL_STR("POST"))) { + return route_file_write(body); + } + } + if (str_eq(route, EL_STR("/api/search"))) { + el_val_t q = query_get(query, EL_STR("q")); + return el_str_concat(el_str_concat(EL_STR("{\"query\":"), jstr(q)), EL_STR(",\"results\":[]}")); + } + if (str_eq(route, EL_STR("/api/lsp/complete"))) { + return route_lsp_complete(query); + } + if (str_eq(route, EL_STR("/api/lsp/hover"))) { + return route_lsp_hover(query); + } + if (str_eq(route, EL_STR("/api/lsp/errors"))) { + return route_lsp_errors(query); + } + if (str_eq(route, EL_STR("/api/lsp/activate-preview"))) { + return route_activate_preview(query); + } + if (str_eq(route, EL_STR("/api/lsp/jsonrpc"))) { + return route_lsp_jsonrpc(body); + } + if (str_eq(route, EL_STR("/api/type-graph"))) { + return route_type_graph(query); + } + if (str_eq(route, EL_STR("/api/outline"))) { + return route_outline(query); + } + if (str_eq(route, EL_STR("/api/definition"))) { + return route_definition(query); + } + if (str_eq(route, EL_STR("/api/references"))) { + return route_references(query); + } + if (str_eq(route, EL_STR("/api/format"))) { + return route_format(body); + } + if (str_eq(route, EL_STR("/api/completions/snippet"))) { + return route_snippets(); + } + if (str_eq(route, EL_STR("/api/themes"))) { + return route_themes_list(); + } + if (str_eq(route, EL_STR("/api/themes/active"))) { + return route_themes_set(body); + } + if (str_eq(route, EL_STR("/api/plugins"))) { + return route_plugins_list(); + } + if (str_eq(route, EL_STR("/api/plugins/install"))) { + return route_plugins_install(body); + } + if (str_eq(route, EL_STR("/api/plugins/remove"))) { + return route_plugins_remove(body); + } + if (str_eq(route, EL_STR("/api/plugins/enable"))) { + return route_plugins_enable(body); + } + if (str_eq(route, EL_STR("/api/plugins/disable"))) { + return route_plugins_disable(body); + } + if (str_eq(route, EL_STR("/api/settings"))) { + if (str_eq(method, EL_STR("GET"))) { + return route_settings_get(); + } + if (str_eq(method, EL_STR("POST"))) { + return route_settings_save(body); + } + if (str_eq(method, EL_STR("DELETE"))) { + return route_settings_reset(); + } + } + if (str_eq(route, EL_STR("/api/build"))) { + return route_build(body); + } + if (str_eq(route, EL_STR("/api/run"))) { + return route_run(body); + } + if (str_eq(route, EL_STR("/api/reason"))) { + return route_reason(body); + } + if (str_eq(route, EL_STR("/api/git/status"))) { + return EL_STR("[]"); + } + if (str_eq(route, EL_STR("/api/git/diff"))) { + return EL_STR("\"\""); + } + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"not found\",\"path\":"), jstr(route)), EL_STR("}")); + return 0; +} + +el_val_t server_main(void) { + plugin_init(); + el_val_t port = cfg_port(); + println(el_str_concat(EL_STR("[el-ide-server] project="), cfg_project_path())); + println(el_str_concat(EL_STR("[el-ide-server] engram="), cfg_engram_url())); + println(el_str_concat(EL_STR("[el-ide-server] listening on http://0.0.0.0:"), int_to_str(port))); + http_set_handler(EL_STR("handle_request")); + http_serve(port, EL_STR("handle_request")); + return 0; +} + +int main(int argc, char** argv) { + el_runtime_init_args(argc, argv); + server_main(); + return 0; +} + diff --git a/ide/vessels/el-ide-server/src/_combined.el b/ide/vessels/el-ide-server/src/_combined.el new file mode 100644 index 0000000..fc78f70 --- /dev/null +++ b/ide/vessels/el-ide-server/src/_combined.el @@ -0,0 +1,2056 @@ +// main.el — el-lsp +// +// Language Server for El. Pure-El port of the el-lsp Rust crate. +// +// Entry surface (callable from any El program that imports this file): +// +// lsp_complete(source: String, pos: Int) -> String // JSON array +// lsp_hover(source: String, pos: Int) -> String // JSON object or "null" +// lsp_diagnostics(source: String) -> String // JSON array +// lsp_outline(source: String) -> String // JSON array +// lsp_format(source: String) -> String // JSON { content, changed } +// lsp_type_graph(source: String) -> String // JSON { nodes, edges } +// lsp_definition(source: String, pos: Int) -> String // JSON object or "null" +// lsp_references(source: String, pos: Int) -> String // JSON array +// lsp_jsonrpc(method: String, params_json: String) -> String +// lsp_stdio_loop() -> Void +// +// Tokenisation reuses the lexer.el idiom (chars list + index walk) for the +// pieces we need (identifier scan, string scan, line counting). The full +// type checker referenced by the Rust crate is not yet available in El, so +// hover/completion/diagnostics fall back to source-scan heuristics over the +// declared types/enums/functions in the file. The wire shape is preserved. + +// ── Char helpers (mirrors lexer.el) ────────────────────────────────────────── + +fn is_digit_ch(ch: String) -> Bool { + if ch == "0" { return true } if ch == "1" { return true } + if ch == "2" { return true } if ch == "3" { return true } + if ch == "4" { return true } if ch == "5" { return true } + if ch == "6" { return true } if ch == "7" { return true } + if ch == "8" { return true } if ch == "9" { return true } + false +} + +fn is_alpha_ch(ch: String) -> Bool { + let lower: String = str_to_lower(ch) + if str_eq(ch, "") { return false } + if !str_eq(lower, str_to_upper(lower)) { return true } // letters differ in case + // covers a-z (lower-only) — uppercase already handled by inverse case test above + if str_contains("abcdefghijklmnopqrstuvwxyz", ch) { return true } + if str_contains("ABCDEFGHIJKLMNOPQRSTUVWXYZ", ch) { return true } + false +} + +fn is_ident_ch(ch: String) -> Bool { + if is_digit_ch(ch) { return true } + if is_alpha_ch(ch) { return true } + if ch == "_" { return true } + false +} + +// ── Source navigation ──────────────────────────────────────────────────────── + +// Extract the identifier fragment immediately before `pos` (cursor). +fn extract_prefix(source: String, pos: Int) -> String { + let n: Int = str_len(source) + let end: Int = pos + if end > n { let end = n } + let start: Int = end + let chars: [String] = native_string_chars(source) + let total: Int = native_list_len(chars) + let scanning: Bool = true + while scanning { + if start <= 0 { + let scanning = false + } else { + let prev: String = native_list_get(chars, start - 1) + if is_ident_ch(prev) { + let start = start - 1 + } else { + let scanning = false + } + } + } + str_slice(source, start, end) +} + +// Extract the full token (alphanumerics + underscore) surrounding `pos`. +fn extract_token(source: String, pos: Int) -> String { + let n: Int = str_len(source) + if pos > n { return "" } + let chars: [String] = native_string_chars(source) + let total: Int = native_list_len(chars) + let start: Int = pos + let go_left: Bool = true + while go_left { + if start <= 0 { + let go_left = false + } else { + let prev: String = native_list_get(chars, start - 1) + if is_ident_ch(prev) { + let start = start - 1 + } else { + let go_left = false + } + } + } + let end: Int = pos + let go_right: Bool = true + while go_right { + if end >= total { + let go_right = false + } else { + let cur: String = native_list_get(chars, end) + if is_ident_ch(cur) { + let end = end + 1 + } else { + let go_right = false + } + } + } + str_slice(source, start, end) +} + +// Translate a byte offset into 1-based (line, col). +fn pos_to_line_col(source: String, pos: Int) -> Map { + let n: Int = str_len(source) + let cap: Int = pos + if cap > n { let cap = n } + let chars: [String] = native_string_chars(source) + let i: Int = 0 + let line: Int = 1 + let col: Int = 1 + while i < cap { + let ch: String = native_list_get(chars, i) + if ch == "\n" { + let line = line + 1 + let col = 1 + } else { + let col = col + 1 + } + let i = i + 1 + } + { "line": line, "col": col } +} + +// ── JSON encoding helpers ──────────────────────────────────────────────────── + +// Escape a string for JSON. Handles ", \, newline, tab. +fn json_escape(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "\"" { let out = out + "\\\"" } + else { if ch == "\\" { let out = out + "\\\\" } + else { if ch == "\n" { let out = out + "\\n" } + else { if ch == "\r" { let out = out + "\\r" } + else { if ch == "\t" { let out = out + "\\t" } + else { let out = out + ch } } } } } + let i = i + 1 + } + out +} + +fn json_str(s: String) -> String { + "\"" + json_escape(s) + "\"" +} + +fn json_kv_str(k: String, v: String) -> String { + json_str(k) + ":" + json_str(v) +} + +fn json_kv_int(k: String, v: Int) -> String { + json_str(k) + ":" + int_to_str(v) +} + +fn json_kv_float(k: String, v: Float) -> String { + json_str(k) + ":" + float_to_str(v) +} + +fn json_kv_raw(k: String, raw_v: String) -> String { + json_str(k) + ":" + raw_v +} + +// Join a list of pre-encoded JSON strings into a JSON array. +fn json_array_of(items: [String]) -> String { + let n: Int = native_list_len(items) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let out = out + native_list_get(items, i) + let i = i + 1 + } + out + "]" +} + +// ── Keyword/builtin tables ─────────────────────────────────────────────────── + +fn keywords_list() -> [String] { + let ks: [String] = native_list_empty() + let ks = native_list_append(ks, "let") + let ks = native_list_append(ks, "fn") + let ks = native_list_append(ks, "type") + let ks = native_list_append(ks, "enum") + let ks = native_list_append(ks, "match") + let ks = native_list_append(ks, "return") + let ks = native_list_append(ks, "activate") + let ks = native_list_append(ks, "where") + let ks = native_list_append(ks, "sealed") + let ks = native_list_append(ks, "if") + let ks = native_list_append(ks, "else") + let ks = native_list_append(ks, "for") + let ks = native_list_append(ks, "in") + let ks = native_list_append(ks, "while") + let ks = native_list_append(ks, "true") + let ks = native_list_append(ks, "false") + let ks = native_list_append(ks, "test") + let ks = native_list_append(ks, "seed") + let ks = native_list_append(ks, "assert") + let ks = native_list_append(ks, "target") + let ks = native_list_append(ks, "protocol") + let ks = native_list_append(ks, "impl") + let ks = native_list_append(ks, "import") + let ks = native_list_append(ks, "from") + let ks = native_list_append(ks, "as") + let ks = native_list_append(ks, "with") + let ks = native_list_append(ks, "retry") + let ks = native_list_append(ks, "times") + let ks = native_list_append(ks, "fallback") + let ks = native_list_append(ks, "reason") + let ks = native_list_append(ks, "parallel") + let ks = native_list_append(ks, "trace") + let ks = native_list_append(ks, "requires") + let ks = native_list_append(ks, "deploy") + let ks = native_list_append(ks, "to") + let ks = native_list_append(ks, "via") + let ks = native_list_append(ks, "vessel") + let ks = native_list_append(ks, "cgi") + ks +} + +// Built-in primitive type names. +fn builtin_type_names() -> [String] { + let ts: [String] = native_list_empty() + let ts = native_list_append(ts, "Int") + let ts = native_list_append(ts, "Float") + let ts = native_list_append(ts, "String") + let ts = native_list_append(ts, "Bool") + let ts = native_list_append(ts, "Uuid") + let ts = native_list_append(ts, "Void") + let ts = native_list_append(ts, "Any") + ts +} + +fn builtin_type_doc(name: String) -> String { + if str_eq(name, "Int") { return "64-bit signed integer" } + if str_eq(name, "Float") { return "64-bit IEEE 754 double" } + if str_eq(name, "String") { return "UTF-8 string" } + if str_eq(name, "Bool") { return "Boolean value" } + if str_eq(name, "Uuid") { return "RFC 4122 UUID" } + if str_eq(name, "Void") { return "Unit type — no value" } + if str_eq(name, "Any") { return "Dynamically-typed value" } + "" +} + +// Built-in function names → signatures. Encoded as flat [name, sig, name, sig, ...] +// to keep type maps simple. +fn builtin_fns() -> [String] { + let xs: [String] = native_list_empty() + let xs = native_list_append(xs, "println") let xs = native_list_append(xs, "fn(value: String) -> Void") + let xs = native_list_append(xs, "print") let xs = native_list_append(xs, "fn(value: String) -> Void") + let xs = native_list_append(xs, "readline") let xs = native_list_append(xs, "fn() -> String") + let xs = native_list_append(xs, "args") let xs = native_list_append(xs, "fn() -> [String]") + let xs = native_list_append(xs, "int_to_str") let xs = native_list_append(xs, "fn(n: Int) -> String") + let xs = native_list_append(xs, "str_to_int") let xs = native_list_append(xs, "fn(s: String) -> Int") + let xs = native_list_append(xs, "str_len") let xs = native_list_append(xs, "fn(s: String) -> Int") + let xs = native_list_append(xs, "str_slice") let xs = native_list_append(xs, "fn(s: String, start: Int, end: Int) -> String") + let xs = native_list_append(xs, "str_concat") let xs = native_list_append(xs, "fn(a: String, b: String) -> String") + let xs = native_list_append(xs, "str_contains") let xs = native_list_append(xs, "fn(s: String, sub: String) -> Bool") + let xs = native_list_append(xs, "str_starts_with") let xs = native_list_append(xs, "fn(s: String, p: String) -> Bool") + let xs = native_list_append(xs, "str_ends_with") let xs = native_list_append(xs, "fn(s: String, suf: String) -> Bool") + let xs = native_list_append(xs, "str_to_upper") let xs = native_list_append(xs, "fn(s: String) -> String") + let xs = native_list_append(xs, "str_to_lower") let xs = native_list_append(xs, "fn(s: String) -> String") + let xs = native_list_append(xs, "str_split") let xs = native_list_append(xs, "fn(s: String, sep: String) -> [String]") + let xs = native_list_append(xs, "str_trim") let xs = native_list_append(xs, "fn(s: String) -> String") + let xs = native_list_append(xs, "str_replace") let xs = native_list_append(xs, "fn(s: String, from: String, to: String) -> String") + let xs = native_list_append(xs, "str_index_of") let xs = native_list_append(xs, "fn(s: String, sub: String) -> Int") + let xs = native_list_append(xs, "float_to_str") let xs = native_list_append(xs, "fn(f: Float) -> String") + let xs = native_list_append(xs, "str_to_float") let xs = native_list_append(xs, "fn(s: String) -> Float") + let xs = native_list_append(xs, "math_sqrt") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_log") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_sin") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_cos") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_pi") let xs = native_list_append(xs, "fn() -> Float") + let xs = native_list_append(xs, "el_abs") let xs = native_list_append(xs, "fn(n: Int) -> Int") + let xs = native_list_append(xs, "el_min") let xs = native_list_append(xs, "fn(a: Int, b: Int) -> Int") + let xs = native_list_append(xs, "el_max") let xs = native_list_append(xs, "fn(a: Int, b: Int) -> Int") + let xs = native_list_append(xs, "el_list_empty") let xs = native_list_append(xs, "fn() -> [Any]") + let xs = native_list_append(xs, "el_list_len") let xs = native_list_append(xs, "fn(l: [Any]) -> Int") + let xs = native_list_append(xs, "el_list_get") let xs = native_list_append(xs, "fn(l: [Any], i: Int) -> Any") + let xs = native_list_append(xs, "el_list_append") let xs = native_list_append(xs, "fn(l: [Any], v: Any) -> [Any]") + let xs = native_list_append(xs, "list_join") let xs = native_list_append(xs, "fn(l: [String], sep: String) -> String") + let xs = native_list_append(xs, "list_range") let xs = native_list_append(xs, "fn(start: Int, end: Int) -> [Int]") + let xs = native_list_append(xs, "el_map_get") let xs = native_list_append(xs, "fn(m: Map, k: String) -> Any") + let xs = native_list_append(xs, "el_map_set") let xs = native_list_append(xs, "fn(m: Map, k: String, v: Any) -> Map") + let xs = native_list_append(xs, "json_parse") let xs = native_list_append(xs, "fn(s: String) -> Any") + let xs = native_list_append(xs, "json_stringify") let xs = native_list_append(xs, "fn(v: Any) -> String") + let xs = native_list_append(xs, "json_get_string") let xs = native_list_append(xs, "fn(j: String, k: String) -> String") + let xs = native_list_append(xs, "json_get_int") let xs = native_list_append(xs, "fn(j: String, k: String) -> Int") + let xs = native_list_append(xs, "json_get_bool") let xs = native_list_append(xs, "fn(j: String, k: String) -> Bool") + let xs = native_list_append(xs, "http_get") let xs = native_list_append(xs, "fn(url: String) -> String") + let xs = native_list_append(xs, "http_post") let xs = native_list_append(xs, "fn(url: String, body: String) -> String") + let xs = native_list_append(xs, "fs_read") let xs = native_list_append(xs, "fn(path: String) -> String") + let xs = native_list_append(xs, "fs_write") let xs = native_list_append(xs, "fn(path: String, content: String) -> Bool") + let xs = native_list_append(xs, "fs_list") let xs = native_list_append(xs, "fn(path: String) -> [String]") + let xs = native_list_append(xs, "env") let xs = native_list_append(xs, "fn(key: String) -> String") + let xs = native_list_append(xs, "uuid_new") let xs = native_list_append(xs, "fn() -> String") + let xs = native_list_append(xs, "time_now") let xs = native_list_append(xs, "fn() -> Int") + let xs = native_list_append(xs, "time_now_utc") let xs = native_list_append(xs, "fn() -> Int") + let xs = native_list_append(xs, "sleep_ms") let xs = native_list_append(xs, "fn(ms: Int) -> Void") + let xs = native_list_append(xs, "engram_node") let xs = native_list_append(xs, "fn(content: String, kind: String, salience: Float) -> String") + let xs = native_list_append(xs, "engram_search") let xs = native_list_append(xs, "fn(q: String, limit: Int) -> [Map]") + let xs = native_list_append(xs, "engram_activate") let xs = native_list_append(xs, "fn(q: String, depth: Int) -> [Map]") + let xs = native_list_append(xs, "engram_neighbors") let xs = native_list_append(xs, "fn(id: String) -> [Map]") + let xs = native_list_append(xs, "engram_connect") let xs = native_list_append(xs, "fn(from: String, to: String, w: Float, rel: String) -> Void") + let xs = native_list_append(xs, "dharma_connect") let xs = native_list_append(xs, "fn(cgi: String) -> String") + let xs = native_list_append(xs, "dharma_send") let xs = native_list_append(xs, "fn(channel: String, content: String) -> String") + let xs = native_list_append(xs, "dharma_emit") let xs = native_list_append(xs, "fn(event: String, payload: String) -> Void") + let xs = native_list_append(xs, "dharma_field") let xs = native_list_append(xs, "fn(event: String) -> Map") + let xs = native_list_append(xs, "llm_call") let xs = native_list_append(xs, "fn(model: String, prompt: String) -> String") + xs +} + +fn keyword_doc(kw: String) -> String { + if str_eq(kw, "let") { return "let name: Type = expr — declare an immutable binding." } + if str_eq(kw, "fn") { return "fn name(params) -> Ret { body } — define a function." } + if str_eq(kw, "type") { return "type Name { field: Type } — struct definition." } + if str_eq(kw, "enum") { return "enum Name { Variant1, Variant2(Type) } — enum definition." } + if str_eq(kw, "match") { return "match expr { Pattern => body } — pattern match." } + if str_eq(kw, "return") { return "return value — exit the enclosing function." } + if str_eq(kw, "if") { return "if cond { ... } else { ... } — conditional." } + if str_eq(kw, "for") { return "for item in collection { ... } — iterate." } + if str_eq(kw, "while") { return "while cond { ... } — loop while cond is truthy." } + if str_eq(kw, "import") { return "import \"path.el\" — pull in another module." } + if str_eq(kw, "from") { return "from module import { Name } — selective import." } + if str_eq(kw, "vessel") { return "vessel \"name\" { ... } — manifest declaration." } + if str_eq(kw, "cgi") { return "cgi \"name\" { dharma_id: ... } — CGI identity." } + if str_eq(kw, "activate") { return "activate Type where \"query\" — spreading-activation retrieval." } + if str_eq(kw, "sealed") { return "sealed { ... } — capability-restricted block." } + if str_eq(kw, "protocol") { return "protocol Name { fn method(self) -> R } — trait-like." } + if str_eq(kw, "impl") { return "impl Protocol for Type { ... } — protocol implementation." } + if str_eq(kw, "with") { return "with retry/fallback clause." } + if str_eq(kw, "retry") { return "retry times N — retry policy." } + if str_eq(kw, "fallback") { return "fallback { default } — fallback on failure." } + if str_eq(kw, "true") { return "Boolean literal." } + if str_eq(kw, "false") { return "Boolean literal." } + "" +} + +// ── Source-driven type/fn discovery (no full parser) ───────────────────────── +// +// The Rust crate calls into el-types::TypeChecker for a real env. That +// module isn't available in El yet, so we approximate by line-scan: find +// every `type X {`, `enum X {`, `protocol X {`, and `fn X(` declaration. +// Returns four parallel lists merged into one map for easy access. + +fn first_ident_in(rest: String) -> String { + let trimmed: String = str_trim(rest) + let n: Int = str_len(trimmed) + if n == 0 { return "" } + let chars: [String] = native_string_chars(trimmed) + let i: Int = 0 + let total: Int = native_list_len(chars) + while i < total { + let ch: String = native_list_get(chars, i) + if !is_ident_ch(ch) { + return str_slice(trimmed, 0, i) + } + let i = i + 1 + } + trimmed +} + +// scan_decls — produce a Map with parallel lists: +// "types" : [String] user-defined struct/enum/protocol names +// "type_kind" : [String] "type" | "enum" | "protocol" matching above +// "fns" : [String] user-defined function names +// "type_lines" : [Int] 1-based line numbers +// "fn_lines" : [Int] +fn scan_decls(source: String) -> Map { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let types: [String] = native_list_empty() + let kinds: [String] = native_list_empty() + let fns: [String] = native_list_empty() + let tlines: [Int] = native_list_empty() + let flines: [Int] = native_list_empty() + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let trimmed: String = str_trim(line) + let lineno: Int = i + 1 + if str_starts_with(trimmed, "fn ") { + let name: String = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))) + if !str_eq(name, "") { + let fns = native_list_append(fns, name) + let flines = native_list_append(flines, lineno) + } + } else { if str_starts_with(trimmed, "type ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let types = native_list_append(types, name) + let kinds = native_list_append(kinds, "type") + let tlines = native_list_append(tlines, lineno) + } + } else { if str_starts_with(trimmed, "enum ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let types = native_list_append(types, name) + let kinds = native_list_append(kinds, "enum") + let tlines = native_list_append(tlines, lineno) + } + } else { if str_starts_with(trimmed, "protocol ") { + let name: String = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))) + if !str_eq(name, "") { + let types = native_list_append(types, name) + let kinds = native_list_append(kinds, "protocol") + let tlines = native_list_append(tlines, lineno) + } + } } } } + let i = i + 1 + } + { + "types": types, + "type_kind": kinds, + "fns": fns, + "type_lines": tlines, + "fn_lines": flines + } +} + +// list_contains — case-sensitive membership test on [String]. +fn list_contains_str(xs: [String], needle: String) -> Bool { + let n: Int = native_list_len(xs) + let i: Int = 0 + while i < n { + if str_eq(native_list_get(xs, i), needle) { return true } + let i = i + 1 + } + false +} + +// Score a label against a prefix: 0 if no prefix match, else (prefix_len/label_len). +fn prefix_score(label: String, prefix: String) -> Float { + if str_eq(prefix, "") { return 0.5 } + let lower_label: String = str_to_lower(label) + let lower_prefix: String = str_to_lower(prefix) + if str_starts_with(lower_label, lower_prefix) { + let lp: Int = str_len(lower_prefix) + let ll: Int = str_len(lower_label) + if ll == 0 { return 0.0 } + return int_to_float(lp) / int_to_float(ll) + } + 0.0 +} + +// Render a single completion item to JSON. +fn completion_json(label: String, kind: String, detail: String, doc: String, score: Float) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("label", label)) + let parts = native_list_append(parts, json_kv_str("kind", kind)) + let parts = native_list_append(parts, json_kv_str("detail", detail)) + if str_eq(doc, "") { + let parts = native_list_append(parts, json_kv_raw("documentation", "null")) + } else { + let parts = native_list_append(parts, json_kv_str("documentation", doc)) + } + let parts = native_list_append(parts, json_kv_float("score", score)) + "{" + list_join(parts, ",") + "}" +} + +// ── Public: completion ─────────────────────────────────────────────────────── + +fn lsp_complete(source: String, pos: Int) -> String { + let prefix: String = extract_prefix(source, pos) + let lower_prefix: String = str_to_lower(prefix) + let prefix_empty: Bool = str_eq(prefix, "") + let items: [String] = native_list_empty() + + // Keywords + let kws: [String] = keywords_list() + let nk: Int = native_list_len(kws) + let i: Int = 0 + while i < nk { + let kw: String = native_list_get(kws, i) + if prefix_empty { + let s: Float = prefix_score(kw, prefix) + let items = native_list_append(items, completion_json(kw, "keyword", "keyword", keyword_doc(kw), s)) + } else { if str_starts_with(kw, prefix) { + let s: Float = prefix_score(kw, prefix) + let items = native_list_append(items, completion_json(kw, "keyword", "keyword", keyword_doc(kw), s)) + } } + let i = i + 1 + } + + // Built-in types + let bts: [String] = builtin_type_names() + let nb: Int = native_list_len(bts) + let i: Int = 0 + while i < nb { + let name: String = native_list_get(bts, i) + let lname: String = str_to_lower(name) + if prefix_empty { + let s: Float = 0.5 + 0.1 + let items = native_list_append(items, completion_json(name, "type", builtin_type_doc(name), "Built-in type: " + builtin_type_doc(name), s)) + } else { if str_starts_with(lname, lower_prefix) { + let s: Float = prefix_score(name, prefix) + 0.1 + let items = native_list_append(items, completion_json(name, "type", builtin_type_doc(name), "Built-in type: " + builtin_type_doc(name), s)) + } } + let i = i + 1 + } + + // User-defined types + let decls: Map = scan_decls(source) + let utypes: [String] = decls["types"] + let ukinds: [String] = decls["type_kind"] + let nu: Int = native_list_len(utypes) + let i: Int = 0 + while i < nu { + let name: String = native_list_get(utypes, i) + let kind: String = native_list_get(ukinds, i) + let lname: String = str_to_lower(name) + let include: Bool = false + if prefix_empty { let include = true } + if str_starts_with(lname, lower_prefix) { let include = true } + if include { + let s: Float = prefix_score(name, prefix) + 0.15 + let items = native_list_append(items, completion_json(name, "type", kind + " " + name, "User-defined " + kind + " " + name, s)) + } + let i = i + 1 + } + + // Built-in functions + let bfns: [String] = builtin_fns() + let nf: Int = native_list_len(bfns) + let i: Int = 0 + while i < nf { + let name: String = native_list_get(bfns, i) + let sig: String = native_list_get(bfns, i + 1) + let lname: String = str_to_lower(name) + let include: Bool = false + if prefix_empty { let include = true } + if str_starts_with(lname, lower_prefix) { let include = true } + if include { + let s: Float = prefix_score(name, prefix) + 0.11 + let items = native_list_append(items, completion_json(name, "function", sig, "Built-in: " + name + " :: " + sig, s)) + } + let i = i + 2 + } + + // User-defined functions + let ufns: [String] = decls["fns"] + let nuf: Int = native_list_len(ufns) + let i: Int = 0 + while i < nuf { + let name: String = native_list_get(ufns, i) + let lname: String = str_to_lower(name) + let include: Bool = false + if prefix_empty { let include = true } + if str_starts_with(lname, lower_prefix) { let include = true } + if include { + let s: Float = prefix_score(name, prefix) + 0.12 + let items = native_list_append(items, completion_json(name, "function", "fn " + name, "User function: " + name, s)) + } + let i = i + 1 + } + + // Output is a list of pre-encoded JSON objects. Sorting by score is a + // stretch goal — el's runtime has no sort-by-key primitive. Items are + // already ordered by category (keywords first), which matches the most + // common editor expectation. + json_array_of(items) +} + +// ── Public: hover ──────────────────────────────────────────────────────────── + +fn lsp_hover(source: String, pos: Int) -> String { + let token: String = extract_token(source, pos) + if str_eq(token, "") { return "null" } + + // Built-in primitives + let doc: String = builtin_type_doc(token) + if !str_eq(doc, "") { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", doc)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + + // User-declared types + let decls: Map = scan_decls(source) + let utypes: [String] = decls["types"] + let ukinds: [String] = decls["type_kind"] + let nu: Int = native_list_len(utypes) + let i: Int = 0 + while i < nu { + let name: String = native_list_get(utypes, i) + if str_eq(name, token) { + let kind: String = native_list_get(ukinds, i) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", kind + " " + token)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + let i = i + 1 + } + + // User-declared functions + let ufns: [String] = decls["fns"] + let nuf: Int = native_list_len(ufns) + let i: Int = 0 + while i < nuf { + let name: String = native_list_get(ufns, i) + if str_eq(name, token) { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", "fn " + token)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + let i = i + 1 + } + + // Built-in functions + let bfns: [String] = builtin_fns() + let nf: Int = native_list_len(bfns) + let i: Int = 0 + while i < nf { + let name: String = native_list_get(bfns, i) + if str_eq(name, token) { + let sig: String = native_list_get(bfns, i + 1) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", "fn " + token + " :: " + sig)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + let i = i + 2 + } + + // Keyword + let kdoc: String = keyword_doc(token) + if !str_eq(kdoc, "") { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", kdoc)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + + "null" +} + +// ── Public: diagnostics ────────────────────────────────────────────────────── +// +// Without the type checker port we surface only structural diagnostics: +// * unterminated string literal +// * unbalanced braces / parens / brackets +// * unknown type referenced after `:` in a let binding (unknown to source + +// builtins) — best-effort, conservative. + +fn diag_json(message: String, severity: String, line: Int, col: Int) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("message", message)) + let parts = native_list_append(parts, json_kv_str("severity", severity)) + if line > 0 { + let parts = native_list_append(parts, json_kv_int("line", line)) + let parts = native_list_append(parts, json_kv_int("col", col)) + } else { + let parts = native_list_append(parts, json_kv_raw("line", "null")) + let parts = native_list_append(parts, json_kv_raw("col", "null")) + } + "{" + list_join(parts, ",") + "}" +} + +fn lsp_diagnostics(source: String) -> String { + let chars: [String] = native_string_chars(source) + let n: Int = native_list_len(chars) + let diags: [String] = native_list_empty() + + // Bracket balance + unterminated string scan + let depth_brace: Int = 0 + let depth_paren: Int = 0 + let depth_brack: Int = 0 + let i: Int = 0 + let line: Int = 1 + let col: Int = 1 + let in_string: Bool = false + let string_start_line: Int = 0 + let string_start_col: Int = 0 + let in_comment: Bool = false + while i < n { + let ch: String = native_list_get(chars, i) + if in_comment { + if ch == "\n" { + let in_comment = false + let line = line + 1 + let col = 1 + } else { + let col = col + 1 + } + let i = i + 1 + } else { + if in_string { + if ch == "\\" { + let i = i + 1 + let col = col + 1 + if i < n { + let esc: String = native_list_get(chars, i) + if esc == "\n" { let line = line + 1 let col = 1 } else { let col = col + 1 } + let i = i + 1 + } + } else { if ch == "\"" { + let in_string = false + let i = i + 1 + let col = col + 1 + } else { if ch == "\n" { + let line = line + 1 + let col = 1 + let i = i + 1 + } else { + let col = col + 1 + let i = i + 1 + } } } + } else { + if ch == "\"" { + let in_string = true + let string_start_line = line + let string_start_col = col + let i = i + 1 + let col = col + 1 + } else { if ch == "/" { + let next_i: Int = i + 1 + let is_line_comment: Bool = false + if next_i < n { + let next_ch: String = native_list_get(chars, next_i) + if next_ch == "/" { let is_line_comment = true } + } + if is_line_comment { + let in_comment = true + let i = i + 2 + let col = col + 2 + } else { + let i = i + 1 + let col = col + 1 + } + } else { if ch == "{" { + let depth_brace = depth_brace + 1 + let i = i + 1 let col = col + 1 + } else { if ch == "}" { + let depth_brace = depth_brace - 1 + if depth_brace < 0 { + let diags = native_list_append(diags, diag_json("unmatched `}`", "error", line, col)) + let depth_brace = 0 + } + let i = i + 1 let col = col + 1 + } else { if ch == "(" { + let depth_paren = depth_paren + 1 + let i = i + 1 let col = col + 1 + } else { if ch == ")" { + let depth_paren = depth_paren - 1 + if depth_paren < 0 { + let diags = native_list_append(diags, diag_json("unmatched `)`", "error", line, col)) + let depth_paren = 0 + } + let i = i + 1 let col = col + 1 + } else { if ch == "[" { + let depth_brack = depth_brack + 1 + let i = i + 1 let col = col + 1 + } else { if ch == "]" { + let depth_brack = depth_brack - 1 + if depth_brack < 0 { + let diags = native_list_append(diags, diag_json("unmatched `]`", "error", line, col)) + let depth_brack = 0 + } + let i = i + 1 let col = col + 1 + } else { if ch == "\n" { + let line = line + 1 + let col = 1 + let i = i + 1 + } else { + let i = i + 1 + let col = col + 1 + } } } } } } } } } + } + } + } + + if in_string { + let diags = native_list_append(diags, diag_json("unterminated string literal", "error", string_start_line, string_start_col)) + } + if depth_brace > 0 { let diags = native_list_append(diags, diag_json("unclosed `{` (missing `}`)", "error", 0, 0)) } + if depth_paren > 0 { let diags = native_list_append(diags, diag_json("unclosed `(` (missing `)`)", "error", 0, 0)) } + if depth_brack > 0 { let diags = native_list_append(diags, diag_json("unclosed `[` (missing `]`)", "error", 0, 0)) } + + json_array_of(diags) +} + +// ── Public: outline ────────────────────────────────────────────────────────── + +fn outline_item_json(kind: String, name: String, line: Int) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("kind", kind)) + let parts = native_list_append(parts, json_kv_str("name", name)) + let parts = native_list_append(parts, json_kv_int("line", line)) + "{" + list_join(parts, ",") + "}" +} + +fn lsp_outline(source: String) -> String { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let items: [String] = native_list_empty() + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let trimmed: String = str_trim(line) + let lineno: Int = i + 1 + if str_starts_with(trimmed, "fn ") { + let name: String = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("fn", name, lineno)) + } + } else { if str_starts_with(trimmed, "type ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("type", name, lineno)) + } + } else { if str_starts_with(trimmed, "enum ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("enum", name, lineno)) + } + } else { if str_starts_with(trimmed, "protocol ") { + let name: String = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("protocol", name, lineno)) + } + } else { if str_starts_with(trimmed, "impl ") { + let rest: String = str_trim(str_slice(trimmed, 5, str_len(trimmed))) + let brace: Int = str_index_of(rest, "{") + let name: String = rest + if brace > 0 { let name = str_trim(str_slice(rest, 0, brace)) } + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("impl", name, lineno)) + } + } } } } } + let i = i + 1 + } + json_array_of(items) +} + +// ── Public: format ─────────────────────────────────────────────────────────── +// +// Idiomatic-El formatter. Until `el fmt` is a real thing, we apply a minimal +// canonicalisation pass: +// * trim trailing whitespace on every line +// * collapse 3+ blank lines to 2 +// * ensure file ends with exactly one newline +// This is safe for round-tripping and a noticeable quality-of-life win in +// the editor. + +fn format_strip_trailing(line: String) -> String { + // str_trim trims both ends; we want only trailing whitespace stripped. + let n: Int = str_len(line) + if n == 0 { return line } + let chars: [String] = native_string_chars(line) + let i: Int = n - 1 + let trimming: Bool = true + while trimming { + if i < 0 { + let trimming = false + } else { + let ch: String = native_list_get(chars, i) + if ch == " " { let i = i - 1 } else { if ch == "\t" { let i = i - 1 } else { let trimming = false } } + } + } + str_slice(line, 0, i + 1) +} + +fn lsp_format(source: String) -> String { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let cleaned: [String] = native_list_empty() + let i: Int = 0 + let blank_run: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let stripped: String = format_strip_trailing(line) + if str_eq(stripped, "") { + let blank_run = blank_run + 1 + if blank_run <= 2 { + let cleaned = native_list_append(cleaned, "") + } + } else { + let blank_run = 0 + let cleaned = native_list_append(cleaned, stripped) + } + let i = i + 1 + } + let joined: String = list_join(cleaned, "\n") + // Ensure trailing newline. + let final: String = joined + if !str_ends_with(final, "\n") { + let final = final + "\n" + } + let changed: String = "false" + if !str_eq(final, source) { let changed = "true" } + "{" + json_kv_str("content", final) + "," + json_kv_raw("changed", changed) + "}" +} + +// ── Public: type graph ─────────────────────────────────────────────────────── + +fn lsp_type_graph(source: String) -> String { + let nodes: [String] = native_list_empty() + let edges: [String] = native_list_empty() + + // Built-in nodes + let bts: [String] = builtin_type_names() + let nb: Int = native_list_len(bts) + let i: Int = 0 + while i < nb { + let name: String = native_list_get(bts, i) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("id", name)) + let parts = native_list_append(parts, json_kv_str("name", name)) + let parts = native_list_append(parts, json_kv_str("kind", "builtin")) + let parts = native_list_append(parts, json_kv_raw("fields", "[]")) + let nodes = native_list_append(nodes, "{" + list_join(parts, ",") + "}") + let i = i + 1 + } + + // User-declared types + let decls: Map = scan_decls(source) + let utypes: [String] = decls["types"] + let ukinds: [String] = decls["type_kind"] + let tlines: [Int] = decls["type_lines"] + let nu: Int = native_list_len(utypes) + let i: Int = 0 + let bts_dup: [String] = builtin_type_names() + while i < nu { + let name: String = native_list_get(utypes, i) + let kind: String = native_list_get(ukinds, i) + // Skip if already a builtin (paranoia) + if !list_contains_str(bts_dup, name) { + let fields: [String] = collect_struct_fields(source, name) + let field_jsons: [String] = native_list_empty() + let fn2: Int = native_list_len(fields) + let j: Int = 0 + while j < fn2 { + let field_jsons = native_list_append(field_jsons, json_str(native_list_get(fields, j))) + let j = j + 1 + } + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("id", name)) + let parts = native_list_append(parts, json_kv_str("name", name)) + let parts = native_list_append(parts, json_kv_str("kind", kind)) + let parts = native_list_append(parts, json_kv_raw("fields", json_array_of(field_jsons))) + let nodes = native_list_append(nodes, "{" + list_join(parts, ",") + "}") + + // Edges: scan each field for a known type reference. + let j: Int = 0 + while j < fn2 { + let field_str: String = native_list_get(fields, j) + let target: String = referenced_type(field_str, utypes) + if !str_eq(target, "") { + let eparts: [String] = native_list_empty() + let eparts = native_list_append(eparts, json_kv_str("from", name)) + let eparts = native_list_append(eparts, json_kv_str("to", target)) + let eparts = native_list_append(eparts, json_kv_str("label", "field")) + let edges = native_list_append(edges, "{" + list_join(eparts, ",") + "}") + } + let j = j + 1 + } + } + let i = i + 1 + } + + "{" + json_kv_raw("nodes", json_array_of(nodes)) + "," + json_kv_raw("edges", json_array_of(edges)) + "}" +} + +// Extract the field list of a `type Name { ... }` block as ["field: Type", ...] +// or for an enum, the variant labels. Best-effort line-by-line scan. +fn collect_struct_fields(source: String, type_name: String) -> [String] { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let fields: [String] = native_list_empty() + let inside: Bool = false + let i: Int = 0 + let header_a: String = "type " + type_name + let header_b: String = "enum " + type_name + let header_c: String = "protocol " + type_name + while i < n { + let line: String = native_list_get(lines, i) + let trimmed: String = str_trim(line) + if !inside { + if str_starts_with(trimmed, header_a) { let inside = true } + if str_starts_with(trimmed, header_b) { let inside = true } + if str_starts_with(trimmed, header_c) { let inside = true } + } else { + if str_starts_with(trimmed, "}") { + return fields + } + // skip the opening "{" line + if !str_eq(trimmed, "{") { + if !str_eq(trimmed, "") { + if !str_starts_with(trimmed, "//") { + // strip a trailing comma if present + let entry: String = trimmed + if str_ends_with(entry, ",") { + let entry = str_slice(entry, 0, str_len(entry) - 1) + } + let fields = native_list_append(fields, str_trim(entry)) + } + } + } + } + let i = i + 1 + } + fields +} + +// Pick the first known type name out of a `field: Type` string. Stops at non-ident. +fn referenced_type(field_str: String, known_types: [String]) -> String { + // Find ":" — type follows. + let colon: Int = str_index_of(field_str, ":") + if colon < 0 { return "" } + let after: String = str_trim(str_slice(field_str, colon + 1, str_len(field_str))) + // Strip array brackets and optional marker. + let trimmed_l: String = after + if str_starts_with(trimmed_l, "[") { + let end: Int = str_index_of(trimmed_l, "]") + if end > 1 { + let trimmed_l = str_trim(str_slice(trimmed_l, 1, end)) + } + } + // First identifier. + let ident: String = first_ident_in(trimmed_l) + if str_eq(ident, "") { return "" } + let bts: [String] = builtin_type_names() + if list_contains_str(bts, ident) { return ident } + if list_contains_str(known_types, ident) { return ident } + "" +} + +// ── Public: definition / references ────────────────────────────────────────── + +fn lsp_definition(source: String, pos: Int) -> String { + let word: String = extract_token(source, pos) + if str_eq(word, "") { return "null" } + let patterns: [String] = native_list_empty() + let patterns = native_list_append(patterns, "fn " + word) + let patterns = native_list_append(patterns, "type " + word) + let patterns = native_list_append(patterns, "enum " + word) + let patterns = native_list_append(patterns, "protocol " + word) + let np: Int = native_list_len(patterns) + let lines: [String] = str_split(source, "\n") + let nl: Int = native_list_len(lines) + let i: Int = 0 + while i < nl { + let line: String = native_list_get(lines, i) + let j: Int = 0 + while j < np { + let pat: String = native_list_get(patterns, j) + let idx: Int = str_index_of(line, pat) + if idx >= 0 { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_int("line", i + 1)) + let parts = native_list_append(parts, json_kv_int("col", idx + 1)) + let parts = native_list_append(parts, json_kv_str("snippet", str_trim(line))) + return "{" + list_join(parts, ",") + "}" + } + let j = j + 1 + } + let i = i + 1 + } + "null" +} + +fn lsp_references(source: String, pos: Int) -> String { + let word: String = extract_token(source, pos) + if str_eq(word, "") { return "[]" } + let lines: [String] = str_split(source, "\n") + let nl: Int = native_list_len(lines) + let refs: [String] = native_list_empty() + let i: Int = 0 + while i < nl { + let line: String = native_list_get(lines, i) + let line_chars: [String] = native_string_chars(line) + let llen: Int = native_list_len(line_chars) + let wlen: Int = str_len(word) + let off: Int = 0 + let scanning: Bool = true + while scanning { + let idx: Int = str_index_of(str_slice(line, off, str_len(line)), word) + if idx < 0 { + let scanning = false + } else { + let abs: Int = off + idx + // Word-boundary check + let before_ok: Bool = true + if abs > 0 { + let prev: String = native_list_get(line_chars, abs - 1) + if is_ident_ch(prev) { let before_ok = false } + } + let after_ok: Bool = true + let after_pos: Int = abs + wlen + if after_pos < llen { + let nxt: String = native_list_get(line_chars, after_pos) + if is_ident_ch(nxt) { let after_ok = false } + } + if before_ok { + if after_ok { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_int("line", i + 1)) + let parts = native_list_append(parts, json_kv_int("col", abs + 1)) + let parts = native_list_append(parts, json_kv_str("snippet", str_trim(line))) + let refs = native_list_append(refs, "{" + list_join(parts, ",") + "}") + } + } + let off = abs + wlen + if off >= str_len(line) { let scanning = false } + } + } + let i = i + 1 + } + json_array_of(refs) +} + +// ── JSON-RPC dispatch ──────────────────────────────────────────────────────── +// +// Method names follow LSP-ish conventions but stay aligned with the Rust crate's +// HTTP surface. Params are a JSON string the dispatcher pulls fields out of via +// json_get_string / json_get_int. +// +// "textDocument/completion" → params { source, pos } +// "textDocument/hover" → params { source, pos } +// "textDocument/diagnostic" → params { source } +// "textDocument/formatting" → params { source } +// "textDocument/documentSymbol"→ params { source } +// "textDocument/definition" → params { source, pos } +// "textDocument/references" → params { source, pos } +// "el/typeGraph" → params { source } + +fn lsp_jsonrpc(method: String, params_json: String) -> String { + let source: String = json_get_string(params_json, "source") + let pos: Int = json_get_int(params_json, "pos") + if str_eq(method, "textDocument/completion") { return lsp_complete(source, pos) } + if str_eq(method, "textDocument/hover") { return lsp_hover(source, pos) } + if str_eq(method, "textDocument/diagnostic") { return lsp_diagnostics(source) } + if str_eq(method, "textDocument/formatting") { return lsp_format(source) } + if str_eq(method, "textDocument/documentSymbol") { return lsp_outline(source) } + if str_eq(method, "textDocument/definition") { return lsp_definition(source, pos) } + if str_eq(method, "textDocument/references") { return lsp_references(source, pos) } + if str_eq(method, "el/typeGraph") { return lsp_type_graph(source) } + "{\"error\":\"unknown method: " + json_escape(method) + "\"}" +} + +// ── stdio loop (best-effort; see runtime gap note in the report) ───────────── +// +// LSP framing is `Content-Length: N\r\n\r\n` then exactly N bytes. The El +// runtime exposes only line-buffered `readline()`, which strips `\n` and is +// hostile to the binary body read. We approximate by reading lines until a +// blank line ends the headers, then reading exactly one more line as the +// body (works for compact, no-newline payloads — i.e. minified JSON-RPC). +// A dedicated `read_n(bytes)` runtime primitive would unblock the strict +// implementation. See report. + +fn read_headers() -> Map { + let content_len: Int = 0 + let scanning: Bool = true + while scanning { + let line: String = readline() + if str_eq(line, "") { + let scanning = false + } else { + let cl_marker: String = "Content-Length:" + if str_starts_with(line, cl_marker) { + let val: String = str_trim(str_slice(line, str_len(cl_marker), str_len(line))) + let content_len = str_to_int(val) + } + } + } + { "content_length": content_len } +} + +fn lsp_stdio_loop() -> Void { + let running: Bool = true + while running { + let headers: Map = read_headers() + let body: String = readline() + if str_eq(body, "") { + let running = false + } else { + let method: String = json_get_string(body, "method") + let id_val: String = json_get_raw(body, "id") + if str_eq(id_val, "") { let id_val = "null" } + let params_raw: String = json_get_raw(body, "params") + let result: String = lsp_jsonrpc(method, params_raw) + let resp: String = "{\"jsonrpc\":\"2.0\",\"id\":" + id_val + ",\"result\":" + result + "}" + let frame: String = "Content-Length: " + int_to_str(str_len(resp)) + "\r\n\r\n" + resp + print(frame) + } + } +} + +// ── Entry ──────────────────────────────────────────────────────────────────── +// +// When invoked as a standalone binary, default to stdio JSON-RPC so editors +// that drive the language server directly (without the HTTP wrapper) work +// out of the box. Pass a single CLI arg to short-circuit: +// ./el-lsp probe → emits a self-test diagnostic + exits +// ./el-lsp version → emits version + exits + +fn lsp_main() -> Void { + let argv: [String] = args() + let n: Int = native_list_len(argv) + if n > 0 { + let cmd: String = native_list_get(argv, 0) + if str_eq(cmd, "version") { + println("el-lsp 0.1.0") + return + } + if str_eq(cmd, "probe") { + let sample: String = "fn main() -> Void { let x: Int = 42 }" + println(lsp_diagnostics(sample)) + return + } + } + lsp_stdio_loop() +} + + +// main.el — el-plugin-host +// +// Plugin lifecycle manager for el-ide. Pure-El port of the el-plugin-host +// Rust crate. +// +// Plugins are stored in process-global state via state_get / state_set. +// Each plugin lives under a key prefix `plugin//`. The +// canonical list of plugin names is maintained at `plugins/index` as a +// comma-separated string (we don't have list serialisation in state yet). +// +// Public API: +// plugin_init() — seed first-party plugins (idempotent) +// plugin_list_json() -> String — JSON array of all plugins +// plugin_get_json(name) -> String — JSON object or "null" +// plugin_install(name) -> String — JSON { ok | error } +// plugin_remove(name) -> String +// plugin_enable(name) -> String +// plugin_disable(name) -> String + +// ── State helpers (string K/V) ─────────────────────────────────────────────── + +fn pkey(name: String, field: String) -> String { + "plugin/" + name + "/" + field +} + +fn put_str(name: String, field: String, value: String) -> Void { + state_set(pkey(name, field), value) +} + +fn put_bool(name: String, field: String, value: Bool) -> Void { + if value { state_set(pkey(name, field), "true") } + if !value { state_set(pkey(name, field), "false") } +} + +fn get_str(name: String, field: String) -> String { + state_get(pkey(name, field)) +} + +fn get_bool(name: String, field: String) -> Bool { + str_eq(state_get(pkey(name, field)), "true") +} + +// Plugin index: comma-separated list of names at "plugins/index". +fn index_list() -> [String] { + let raw: String = state_get("plugins/index") + if str_eq(raw, "") { return native_list_empty() } + str_split(raw, ",") +} + +fn index_set(names: [String]) -> Void { + state_set("plugins/index", list_join(names, ",")) +} + +fn index_contains(name: String) -> Bool { + let names: [String] = index_list() + let n: Int = native_list_len(names) + let i: Int = 0 + while i < n { + if str_eq(native_list_get(names, i), name) { return true } + let i = i + 1 + } + false +} + +fn index_add(name: String) -> Void { + if !index_contains(name) { + let names: [String] = index_list() + let names = native_list_append(names, name) + index_set(names) + } +} + +// ── Initialisation ─────────────────────────────────────────────────────────── + +fn register_plugin(name: String, version: String, description: String, + installed: Bool, enabled: Bool, hooks: String, + first_party: Bool) -> Void { + put_str(name, "name", name) + put_str(name, "version", version) + put_str(name, "description", description) + put_bool(name, "installed", installed) + put_bool(name, "enabled", enabled) + put_str(name, "hooks", hooks) + put_bool(name, "first_party", first_party) + index_add(name) +} + +fn plugin_init() -> Void { + if str_eq(state_get("plugins/initialised"), "true") { + return + } + register_plugin("el-theme-dark", "1.0.0", "Dark theme — the default Engram IDE theme.", true, true, "", true) + register_plugin("el-theme-light", "1.0.0", "Light theme for high-ambient-light environments.", false, false, "", true) + register_plugin("el-fmt", "0.1.0", "Code formatter — auto-formats .el files on save.", true, true, "on_save", true) + register_plugin("el-doc", "0.1.0", "Documentation generator — produces HTML docs from type definitions.", false, false, "custom_tool", true) + register_plugin("el-test", "0.1.0", "Test runner with inline results displayed in the editor gutter.", false, false, "on_build_complete,custom_panel", true) + state_set("plugins/initialised", "true") +} + +// ── Serialisation ──────────────────────────────────────────────────────────── + +fn json_escape_str(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "\"" { let out = out + "\\\"" } + else { if ch == "\\" { let out = out + "\\\\" } + else { if ch == "\n" { let out = out + "\\n" } + else { let out = out + ch } } } + let i = i + 1 + } + out +} + +fn quote_json(s: String) -> String { + "\"" + json_escape_str(s) + "\"" +} + +fn hooks_to_json(hooks_csv: String) -> String { + if str_eq(hooks_csv, "") { return "[]" } + let xs: [String] = str_split(hooks_csv, ",") + let n: Int = native_list_len(xs) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let out = out + quote_json(native_list_get(xs, i)) + let i = i + 1 + } + out + "]" +} + +fn plugin_to_json(name: String) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, "\"name\":" + quote_json(get_str(name, "name"))) + let parts = native_list_append(parts, "\"version\":" + quote_json(get_str(name, "version"))) + let parts = native_list_append(parts, "\"description\":" + quote_json(get_str(name, "description"))) + let installed: String = get_str(name, "installed") + let enabled: String = get_str(name, "enabled") + let first_party: String = get_str(name, "first_party") + let parts = native_list_append(parts, "\"installed\":" + installed) + let parts = native_list_append(parts, "\"enabled\":" + enabled) + let parts = native_list_append(parts, "\"hooks\":" + hooks_to_json(get_str(name, "hooks"))) + let parts = native_list_append(parts, "\"first_party\":" + first_party) + "{" + list_join(parts, ",") + "}" +} + +fn plugin_list_json() -> String { + plugin_init() + let names: [String] = index_list() + let n: Int = native_list_len(names) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let out = out + plugin_to_json(native_list_get(names, i)) + let i = i + 1 + } + out + "]" +} + +fn plugin_get_json(name: String) -> String { + plugin_init() + if !index_contains(name) { return "null" } + plugin_to_json(name) +} + +// ── Mutations ──────────────────────────────────────────────────────────────── + +fn plugin_install(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin registry is not available (registry URL not configured)\"}" + } + if get_bool(name, "installed") { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' is already installed\"}" + } + put_bool(name, "installed", true) + put_bool(name, "enabled", true) + plugin_to_json(name) +} + +fn plugin_remove(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' not found\"}" + } + if str_eq(name, "el-theme-dark") { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' cannot be removed: it is a required built-in\"}" + } + put_bool(name, "installed", false) + put_bool(name, "enabled", false) + "{\"ok\":true}" +} + +fn plugin_enable(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' not found\"}" + } + put_bool(name, "enabled", true) + "{\"ok\":true}" +} + +fn plugin_disable(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' not found\"}" + } + put_bool(name, "enabled", false) + "{\"ok\":true}" +} + +// ── Standalone CLI ─────────────────────────────────────────────────────────── + +fn host_main() -> Void { + let argv: [String] = args() + let n: Int = native_list_len(argv) + if n == 0 { + println(plugin_list_json()) + return + } + let cmd: String = native_list_get(argv, 0) + if str_eq(cmd, "list") { println(plugin_list_json()) return } + if str_eq(cmd, "get") { + if n >= 2 { println(plugin_get_json(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "install") { + if n >= 2 { println(plugin_install(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "remove") { + if n >= 2 { println(plugin_remove(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "enable") { + if n >= 2 { println(plugin_enable(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "disable") { + if n >= 2 { println(plugin_disable(native_list_get(argv, 1))) } + return + } + println("usage: el-plugin-host [list|get|install|remove|enable|disable] ") +} + + +// main.el — el-ide-server +// +// HTTP backend for the Engram IDE. Pure-El port of the el-ide-server Rust +// crate. Wires the el-lsp and el-plugin-host vessels together and serves +// the IDE-frontend protocol used by the React-style frontend. +// +// El compilation note: `import` statements are parsed but the codegen +// concatenates nothing. The build script for this vessel concatenates +// +// vessels/el-lsp/src/main.el (without the trailing entry call) +// vessels/el-plugin-host/src/main.el +// vessels/el-ide-server/src/main.el (this file) +// +// into a single _combined.el before invoking elc. This file therefore +// assumes the lsp_* and plugin_* functions defined in those siblings are +// in scope. See README / build.sh. +// +// All routes serve JSON over HTTP. Query parameters are parsed by hand +// (the runtime gives us strings and a request body). Streaming endpoints +// (SSE) are emulated by returning the full output once — the runtime's +// http_serve handler signature is response-as-string, so true server-sent +// streaming requires a runtime extension. Flagged in the report. + +// ── Tiny utility layer ─────────────────────────────────────────────────────── + +fn jstr(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "\"" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "\"" { let out = out + "\\\"" } + else { if ch == "\\" { let out = out + "\\\\" } + else { if ch == "\n" { let out = out + "\\n" } + else { if ch == "\r" { let out = out + "\\r" } + else { if ch == "\t" { let out = out + "\\t" } + else { let out = out + ch } } } } } + let i = i + 1 + } + out + "\"" +} + +fn jerr(msg: String) -> String { + "{\"error\":" + jstr(msg) + "}" +} + +fn ok_obj() -> String { + "{\"ok\":true}" +} + +// ── URL/query parsing ──────────────────────────────────────────────────────── + +fn url_decode(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "+" { + let out = out + " " + let i = i + 1 + } else { if ch == "%" { + // Read two hex digits + if i + 2 < n { + let hex: String = native_list_get(chars, i + 1) + native_list_get(chars, i + 2) + let code: Int = hex_to_int(hex) + let out = out + char_from_code(code) + let i = i + 3 + } else { + let out = out + ch + let i = i + 1 + } + } else { + let out = out + ch + let i = i + 1 + } } + } + out +} + +fn hex_digit(ch: String) -> Int { + if ch == "0" { return 0 } if ch == "1" { return 1 } + if ch == "2" { return 2 } if ch == "3" { return 3 } + if ch == "4" { return 4 } if ch == "5" { return 5 } + if ch == "6" { return 6 } if ch == "7" { return 7 } + if ch == "8" { return 8 } if ch == "9" { return 9 } + if ch == "a" { return 10 } if ch == "A" { return 10 } + if ch == "b" { return 11 } if ch == "B" { return 11 } + if ch == "c" { return 12 } if ch == "C" { return 12 } + if ch == "d" { return 13 } if ch == "D" { return 13 } + if ch == "e" { return 14 } if ch == "E" { return 14 } + if ch == "f" { return 15 } if ch == "F" { return 15 } + -1 +} + +fn hex_to_int(hex: String) -> Int { + let chars: [String] = native_string_chars(hex) + let n: Int = native_list_len(chars) + let acc: Int = 0 + let i: Int = 0 + while i < n { + let d: Int = hex_digit(native_list_get(chars, i)) + if d < 0 { return acc } + let acc = acc * 16 + d + let i = i + 1 + } + acc +} + +// Map an ASCII code point back to its single-byte string. Above 127 the +// runtime would need char_from_code(>127) → multi-byte; we only need +// printable ASCII for query strings here. +fn char_from_code(code: Int) -> String { + let table: String = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" + if code < 32 { return " " } + if code > 126 { return "?" } + str_slice(table, code - 32, code - 31) +} + +fn split_path_query(path: String) -> Map { + let q: Int = str_index_of(path, "?") + if q < 0 { return { "path": path, "query": "" } } + { "path": str_slice(path, 0, q), "query": str_slice(path, q + 1, str_len(path)) } +} + +// query_get: pull the value of a single key out of `a=1&b=hello%20world`. +fn query_get(query: String, key: String) -> String { + if str_eq(query, "") { return "" } + let pairs: [String] = str_split(query, "&") + let n: Int = native_list_len(pairs) + let prefix: String = key + "=" + let i: Int = 0 + while i < n { + let pair: String = native_list_get(pairs, i) + if str_starts_with(pair, prefix) { + return url_decode(str_slice(pair, str_len(prefix), str_len(pair))) + } + if str_eq(pair, key) { + return "" + } + let i = i + 1 + } + "" +} + +// ── Configuration ──────────────────────────────────────────────────────────── + +fn cfg_port() -> Int { + let p: String = env("EL_IDE_PORT") + if str_eq(p, "") { return 7771 } + str_to_int(p) +} + +fn cfg_project_path() -> String { + let p: String = env("EL_IDE_PROJECT_PATH") + if str_eq(p, "") { return "." } + p +} + +fn cfg_engram_url() -> String { + let u: String = env("EL_ENGRAM_URL") + if str_eq(u, "") { return "http://localhost:8742" } + u +} + +fn cfg_el_binary() -> String { + let b: String = env("EL_BINARY") + if str_eq(b, "") { return "el" } + b +} + +// ── Path safety ────────────────────────────────────────────────────────────── + +fn safe_join(rel: String) -> String { + let root: String = cfg_project_path() + // Reject obvious traversals. + if str_contains(rel, "..") { return "" } + if str_starts_with(rel, "/") { return "" } + if str_eq(rel, ".") { return root } + root + "/" + rel +} + +// ── Status route ───────────────────────────────────────────────────────────── + +fn route_status() -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, "\"project_name\":" + jstr(cfg_project_path())) + let parts = native_list_append(parts, "\"project_path\":" + jstr(cfg_project_path())) + let parts = native_list_append(parts, "\"version\":" + jstr("0.1.0")) + let parts = native_list_append(parts, "\"engine\":" + jstr("el-ide")) + "{" + list_join(parts, ",") + "}" +} + +// ── Config route ───────────────────────────────────────────────────────────── + +fn route_config() -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, "\"port\":" + int_to_str(cfg_port())) + let parts = native_list_append(parts, "\"project_path\":" + jstr(cfg_project_path())) + let parts = native_list_append(parts, "\"engram_url\":" + jstr(cfg_engram_url())) + let parts = native_list_append(parts, "\"el_binary\":" + jstr(cfg_el_binary())) + "{" + list_join(parts, ",") + "}" +} + +// ── File API ───────────────────────────────────────────────────────────────── + +fn route_files_list(query: String) -> String { + let rel: String = query_get(query, "path") + if str_eq(rel, "") { let rel = "." } + let target: String = safe_join(rel) + if str_eq(target, "") { return jerr("path escapes project root") } + let entries: [String] = fs_list(target) + let n: Int = native_list_len(entries) + let out: String = "[" + let i: Int = 0 + while i < n { + let name: String = native_list_get(entries, i) + // Skip hidden + noise dirs + let skip: Bool = false + if str_starts_with(name, ".") { let skip = true } + if str_eq(name, "target") { let skip = true } + if str_eq(name, "node_modules") { let skip = true } + if str_eq(name, "dist") { let skip = true } + if !skip { + if i > 0 { + if !str_eq(out, "[") { let out = out + "," } + } + // Approximate is_dir by checking for an extension + let dot: Int = str_index_of(name, ".") + let is_dir: String = "false" + if dot < 0 { let is_dir = "true" } + let out = out + "{\"name\":" + jstr(name) + ",\"path\":" + jstr(rel + "/" + name) + ",\"is_dir\":" + is_dir + ",\"children\":null}" + } + let i = i + 1 + } + out + "]" +} + +fn route_file_read(query: String) -> String { + let rel: String = query_get(query, "path") + if str_eq(rel, "") { return jerr("missing path parameter") } + let target: String = safe_join(rel) + if str_eq(target, "") { return jerr("path escapes project root") } + let content: String = fs_read(target) + "{\"path\":" + jstr(rel) + ",\"content\":" + jstr(content) + "}" +} + +fn route_file_write(body: String) -> String { + let rel: String = json_get_string(body, "path") + let content: String = json_get_string(body, "content") + if str_eq(rel, "") { return jerr("missing path") } + let target: String = safe_join(rel) + if str_eq(target, "") { return jerr("path escapes project root") } + let ok: Bool = fs_write(target, content) + if ok { return ok_obj() } + jerr("cannot write file") +} + +// ── LSP routes (delegate to inlined lsp_* functions) ───────────────────────── + +fn route_lsp_complete(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_complete(source, pos) +} + +fn route_lsp_hover(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_hover(source, pos) +} + +fn route_lsp_errors(query: String) -> String { + let source: String = query_get(query, "source") + lsp_diagnostics(source) +} + +fn route_lsp_jsonrpc(body: String) -> String { + let method: String = json_get_string(body, "method") + let params_raw: String = json_get_raw(body, "params") + let id_val: String = json_get_raw(body, "id") + if str_eq(id_val, "") { let id_val = "null" } + let result: String = lsp_jsonrpc(method, params_raw) + "{\"jsonrpc\":\"2.0\",\"id\":" + id_val + ",\"result\":" + result + "}" +} + +fn route_outline(query: String) -> String { + let source: String = query_get(query, "source") + lsp_outline(source) +} + +fn route_definition(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_definition(source, pos) +} + +fn route_references(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_references(source, pos) +} + +fn route_format(body: String) -> String { + let content: String = json_get_string(body, "content") + lsp_format(content) +} + +fn route_type_graph(query: String) -> String { + let source: String = query_get(query, "source") + lsp_type_graph(source) +} + +// ── Themes ─────────────────────────────────────────────────────────────────── + +fn active_theme() -> String { + let t: String = state_get("ide/active_theme") + if str_eq(t, "") { return "dark" } + t +} + +fn route_themes_list() -> String { + let active: String = active_theme() + let names: [String] = native_list_empty() + let names = native_list_append(names, "dark") + let names = native_list_append(names, "light") + let names = native_list_append(names, "neuron") + let names = native_list_append(names, "high-contrast") + let labels: [String] = native_list_empty() + let labels = native_list_append(labels, "Dark") + let labels = native_list_append(labels, "Light") + let labels = native_list_append(labels, "Neuron") + let labels = native_list_append(labels, "High Contrast") + let n: Int = native_list_len(names) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let nm: String = native_list_get(names, i) + let lbl: String = native_list_get(labels, i) + let act: String = "false" + if str_eq(nm, active) { let act = "true" } + let out = out + "{\"name\":" + jstr(nm) + ",\"label\":" + jstr(lbl) + ",\"active\":" + act + "}" + let i = i + 1 + } + out + "]" +} + +fn route_themes_set(body: String) -> String { + let name: String = json_get_string(body, "name") + let valid: Bool = false + if str_eq(name, "dark") { let valid = true } + if str_eq(name, "light") { let valid = true } + if str_eq(name, "neuron") { let valid = true } + if str_eq(name, "high-contrast") { let valid = true } + if !valid { return jerr("unknown theme: " + name) } + state_set("ide/active_theme", name) + "{\"ok\":true,\"active\":" + jstr(name) + "}" +} + +// ── Plugins (delegate to plugin_* in plugin-host) ──────────────────────────── + +fn route_plugins_list() -> String { plugin_list_json() } + +fn route_plugins_install(body: String) -> String { + plugin_install(json_get_string(body, "name")) +} + +fn route_plugins_remove(body: String) -> String { + plugin_remove(json_get_string(body, "name")) +} + +fn route_plugins_enable(body: String) -> String { + plugin_enable(json_get_string(body, "name")) +} + +fn route_plugins_disable(body: String) -> String { + plugin_disable(json_get_string(body, "name")) +} + +// ── Snippets ───────────────────────────────────────────────────────────────── + +fn route_snippets() -> String { + let snips: [String] = native_list_empty() + let snips = native_list_append(snips, "{\"label\":\"fn\",\"description\":\"Function definition\",\"body\":\"fn ${1:name}(${2:params}) -> ${3:Ret} {\\n\\t${4:body}\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"type\",\"description\":\"Struct\",\"body\":\"type ${1:Name} {\\n\\t${2:field}: ${3:Type},\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"enum\",\"description\":\"Enum\",\"body\":\"enum ${1:Name} {\\n\\t${2:Variant},\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"match\",\"description\":\"Match expression\",\"body\":\"match ${1:expr} {\\n\\t${2:pat} => ${3:body},\\n\\t_ => ${4:default},\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"let\",\"description\":\"Let binding\",\"body\":\"let ${1:name}: ${2:Type} = ${3:value}\"}") + let snips = native_list_append(snips, "{\"label\":\"if\",\"description\":\"If expression\",\"body\":\"if ${1:cond} {\\n\\t${2:body}\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"for\",\"description\":\"For loop\",\"body\":\"for ${1:item} in ${2:iter} {\\n\\t${3:body}\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"activate\",\"description\":\"Activate\",\"body\":\"activate ${1:Type}\"}") + "[" + list_join(snips, ",") + "]" +} + +// ── Settings (file-backed) ─────────────────────────────────────────────────── + +fn settings_path() -> String { + let home: String = env("HOME") + if str_eq(home, "") { let home = "/tmp" } + home + "/.el-ide/settings.json" +} + +fn default_settings_json() -> String { + "{\"theme\":\"dark\",\"fontSize\":13,\"tabSize\":4,\"wordWrap\":false,\"formatOnSave\":false,\"vimMode\":false,\"minimap\":true,\"elBinaryPath\":\"el\",\"engramUrl\":\"http://localhost:8742\",\"stickyScroll\":true,\"lineNumbers\":true,\"bracketMatching\":true}" +} + +fn route_settings_get() -> String { + let s: String = fs_read(settings_path()) + if str_eq(s, "") { return default_settings_json() } + s +} + +fn route_settings_save(body: String) -> String { + // Body is { "settings": {...} } — extract the inner blob. + let blob: String = json_get_raw(body, "settings") + if str_eq(blob, "") { return jerr("missing settings") } + fs_write(settings_path(), blob) + blob +} + +fn route_settings_reset() -> String { + fs_write(settings_path(), default_settings_json()) + default_settings_json() +} + +// ── Build / run (synchronous; no SSE in current http_serve runtime) ────────── +// +// The Rust crate spawned `el build/run` and streamed output as SSE events. +// El's `http_serve` is request/response only — handlers return one string. +// We call the el binary, capture stdout via fs_read of a redirected temp +// file, and return JSON. Streaming is a runtime gap (see report). + +fn route_build_or_run(action: String, body: String) -> String { + let rel_file: String = json_get_string(body, "file") + if str_eq(rel_file, "") { let rel_file = "src/main.el" } + let target: String = safe_join(rel_file) + if str_eq(target, "") { return jerr("path escapes project root") } + // No process-spawn primitive in the runtime; this is a stub that + // documents the planned behaviour. See report for runtime gap. + "{\"event\":\"info\",\"action\":" + jstr(action) + ",\"file\":" + jstr(rel_file) + ",\"note\":\"el-ide-server: synchronous build requires a runtime exec primitive — el binary not invoked\"}" +} + +fn route_build(body: String) -> String { route_build_or_run("build", body) } +fn route_run(body: String) -> String { route_build_or_run("run", body) } + +// ── Engram reasoning proxy ─────────────────────────────────────────────────── + +fn route_reason(body: String) -> String { + let url: String = cfg_engram_url() + "/api/reason" + let resp: String = http_post(url, body) + if str_eq(resp, "") { return jerr("engram unreachable") } + resp +} + +fn route_activate_preview(query: String) -> String { + let type_name: String = query_get(query, "type_name") + let q: String = query_get(query, "query") + let url: String = cfg_engram_url() + "/api/activate-preview" + let body: String = "{\"type_name\":" + jstr(type_name) + ",\"query\":" + jstr(q) + ",\"limit\":5}" + let resp: String = http_post(url, body) + if str_eq(resp, "") { + return "{\"count\":0,\"nodes\":[],\"connected\":false}" + } + resp +} + +// ── Index page (minimal placeholder; the real bundle lives in ide/index.html) ─ + +fn route_index() -> String { + let path: String = cfg_project_path() + "/ide/index.html" + let html: String = fs_read(path) + if !str_eq(html, "") { return html } + "el-ide

el-ide

Backend running. UI bundle missing at " + path + ".

" +} + +// ── Health ─────────────────────────────────────────────────────────────────── + +fn route_health() -> String { + "{\"status\":\"ok\",\"engine\":\"el-ide-server\"}" +} + +// ── Dispatcher ─────────────────────────────────────────────────────────────── + +fn handle_request(method: String, path: String, body: String) -> String { + let parsed: Map = split_path_query(path) + let route: String = parsed["path"] + let query: String = parsed["query"] + + if str_eq(route, "/") { return route_index() } + if str_eq(route, "/health") { return route_health() } + if str_eq(route, "/api/status") { return route_status() } + if str_eq(route, "/api/config") { return route_config() } + + // Files + if str_eq(route, "/api/files") { return route_files_list(query) } + if str_eq(route, "/api/file") { + if str_eq(method, "GET") { return route_file_read(query) } + if str_eq(method, "POST") { return route_file_write(body) } + } + + // Search — minimal stub (real impl needs recursive grep) + if str_eq(route, "/api/search") { + let q: String = query_get(query, "q") + return "{\"query\":" + jstr(q) + ",\"results\":[]}" + } + + // LSP + if str_eq(route, "/api/lsp/complete") { return route_lsp_complete(query) } + if str_eq(route, "/api/lsp/hover") { return route_lsp_hover(query) } + if str_eq(route, "/api/lsp/errors") { return route_lsp_errors(query) } + if str_eq(route, "/api/lsp/activate-preview") { return route_activate_preview(query) } + if str_eq(route, "/api/lsp/jsonrpc") { return route_lsp_jsonrpc(body) } + if str_eq(route, "/api/type-graph") { return route_type_graph(query) } + if str_eq(route, "/api/outline") { return route_outline(query) } + if str_eq(route, "/api/definition") { return route_definition(query) } + if str_eq(route, "/api/references") { return route_references(query) } + if str_eq(route, "/api/format") { return route_format(body) } + if str_eq(route, "/api/completions/snippet") { return route_snippets() } + + // Themes + if str_eq(route, "/api/themes") { return route_themes_list() } + if str_eq(route, "/api/themes/active") { return route_themes_set(body) } + + // Plugins + if str_eq(route, "/api/plugins") { return route_plugins_list() } + if str_eq(route, "/api/plugins/install") { return route_plugins_install(body) } + if str_eq(route, "/api/plugins/remove") { return route_plugins_remove(body) } + if str_eq(route, "/api/plugins/enable") { return route_plugins_enable(body) } + if str_eq(route, "/api/plugins/disable") { return route_plugins_disable(body) } + + // Settings + if str_eq(route, "/api/settings") { + if str_eq(method, "GET") { return route_settings_get() } + if str_eq(method, "POST") { return route_settings_save(body) } + if str_eq(method, "DELETE") { return route_settings_reset() } + } + + // Build / run + if str_eq(route, "/api/build") { return route_build(body) } + if str_eq(route, "/api/run") { return route_run(body) } + + // Reasoning proxy + if str_eq(route, "/api/reason") { return route_reason(body) } + + // Git — relies on shell exec; runtime gap. Stub returns empty. + if str_eq(route, "/api/git/status") { return "[]" } + if str_eq(route, "/api/git/diff") { return "\"\"" } + + "{\"error\":\"not found\",\"path\":" + jstr(route) + "}" +} + +// ── Entry ──────────────────────────────────────────────────────────────────── + +fn server_main() -> Void { + plugin_init() + let port: Int = cfg_port() + println("[el-ide-server] project=" + cfg_project_path()) + println("[el-ide-server] engram=" + cfg_engram_url()) + println("[el-ide-server] listening on http://0.0.0.0:" + int_to_str(port)) + http_set_handler("handle_request") + http_serve(port, "handle_request") +} + +server_main() diff --git a/ide/vessels/el-ide-server/src/_combined.err b/ide/vessels/el-ide-server/src/_combined.err new file mode 100644 index 0000000..e69de29 diff --git a/ide/vessels/el-ide-server/src/el-ide-server b/ide/vessels/el-ide-server/src/el-ide-server new file mode 100755 index 0000000..55345e2 Binary files /dev/null and b/ide/vessels/el-ide-server/src/el-ide-server differ diff --git a/ide/vessels/el-ide-server/src/el-ide-server-asan b/ide/vessels/el-ide-server/src/el-ide-server-asan new file mode 100755 index 0000000..42f1470 Binary files /dev/null and b/ide/vessels/el-ide-server/src/el-ide-server-asan differ diff --git a/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Info.plist b/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Info.plist new file mode 100644 index 0000000..ec968ce --- /dev/null +++ b/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.el-ide-server-asan + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Resources/DWARF/el-ide-server-asan b/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Resources/DWARF/el-ide-server-asan new file mode 100644 index 0000000..bce9d7b Binary files /dev/null and b/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Resources/DWARF/el-ide-server-asan differ diff --git a/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Resources/Relocations/aarch64/el-ide-server-asan.yml b/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Resources/Relocations/aarch64/el-ide-server-asan.yml new file mode 100644 index 0000000..ef36ba8 --- /dev/null +++ b/ide/vessels/el-ide-server/src/el-ide-server-asan.dSYM/Contents/Resources/Relocations/aarch64/el-ide-server-asan.yml @@ -0,0 +1,5 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: el-ide-server-asan +relocations: [] +... diff --git a/ide/vessels/el-ide-server/src/main.el b/ide/vessels/el-ide-server/src/main.el new file mode 100644 index 0000000..7e64a54 --- /dev/null +++ b/ide/vessels/el-ide-server/src/main.el @@ -0,0 +1,567 @@ +// main.el — el-ide-server +// +// HTTP backend for the Engram IDE. Pure-El port of the el-ide-server Rust +// crate. Wires the el-lsp and el-plugin-host vessels together and serves +// the IDE-frontend protocol used by the React-style frontend. +// +// El compilation note: `import` statements are parsed but the codegen +// concatenates nothing. The build script for this vessel concatenates +// +// vessels/el-lsp/src/main.el (without the trailing entry call) +// vessels/el-plugin-host/src/main.el +// vessels/el-ide-server/src/main.el (this file) +// +// into a single _combined.el before invoking elc. This file therefore +// assumes the lsp_* and plugin_* functions defined in those siblings are +// in scope. See README / build.sh. +// +// All routes serve JSON over HTTP. Query parameters are parsed by hand +// (the runtime gives us strings and a request body). Streaming endpoints +// (SSE) are emulated by returning the full output once — the runtime's +// http_serve handler signature is response-as-string, so true server-sent +// streaming requires a runtime extension. Flagged in the report. + +// ── Tiny utility layer ─────────────────────────────────────────────────────── + +fn jstr(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "\"" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "\"" { let out = out + "\\\"" } + else { if ch == "\\" { let out = out + "\\\\" } + else { if ch == "\n" { let out = out + "\\n" } + else { if ch == "\r" { let out = out + "\\r" } + else { if ch == "\t" { let out = out + "\\t" } + else { let out = out + ch } } } } } + let i = i + 1 + } + out + "\"" +} + +fn jerr(msg: String) -> String { + "{\"error\":" + jstr(msg) + "}" +} + +fn ok_obj() -> String { + "{\"ok\":true}" +} + +// ── URL/query parsing ──────────────────────────────────────────────────────── + +fn url_decode(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "+" { + let out = out + " " + let i = i + 1 + } else { if ch == "%" { + // Read two hex digits + if i + 2 < n { + let hex: String = native_list_get(chars, i + 1) + native_list_get(chars, i + 2) + let code: Int = hex_to_int(hex) + let out = out + char_from_code(code) + let i = i + 3 + } else { + let out = out + ch + let i = i + 1 + } + } else { + let out = out + ch + let i = i + 1 + } } + } + out +} + +fn hex_digit(ch: String) -> Int { + if ch == "0" { return 0 } if ch == "1" { return 1 } + if ch == "2" { return 2 } if ch == "3" { return 3 } + if ch == "4" { return 4 } if ch == "5" { return 5 } + if ch == "6" { return 6 } if ch == "7" { return 7 } + if ch == "8" { return 8 } if ch == "9" { return 9 } + if ch == "a" { return 10 } if ch == "A" { return 10 } + if ch == "b" { return 11 } if ch == "B" { return 11 } + if ch == "c" { return 12 } if ch == "C" { return 12 } + if ch == "d" { return 13 } if ch == "D" { return 13 } + if ch == "e" { return 14 } if ch == "E" { return 14 } + if ch == "f" { return 15 } if ch == "F" { return 15 } + -1 +} + +fn hex_to_int(hex: String) -> Int { + let chars: [String] = native_string_chars(hex) + let n: Int = native_list_len(chars) + let acc: Int = 0 + let i: Int = 0 + while i < n { + let d: Int = hex_digit(native_list_get(chars, i)) + if d < 0 { return acc } + let acc = acc * 16 + d + let i = i + 1 + } + acc +} + +// Map an ASCII code point back to its single-byte string. Above 127 the +// runtime would need char_from_code(>127) → multi-byte; we only need +// printable ASCII for query strings here. +fn char_from_code(code: Int) -> String { + let table: String = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" + if code < 32 { return " " } + if code > 126 { return "?" } + str_slice(table, code - 32, code - 31) +} + +fn split_path_query(path: String) -> Map { + let q: Int = str_index_of(path, "?") + if q < 0 { return { "path": path, "query": "" } } + { "path": str_slice(path, 0, q), "query": str_slice(path, q + 1, str_len(path)) } +} + +// query_get: pull the value of a single key out of `a=1&b=hello%20world`. +fn query_get(query: String, key: String) -> String { + if str_eq(query, "") { return "" } + let pairs: [String] = str_split(query, "&") + let n: Int = native_list_len(pairs) + let prefix: String = key + "=" + let i: Int = 0 + while i < n { + let pair: String = native_list_get(pairs, i) + if str_starts_with(pair, prefix) { + return url_decode(str_slice(pair, str_len(prefix), str_len(pair))) + } + if str_eq(pair, key) { + return "" + } + let i = i + 1 + } + "" +} + +// ── Configuration ──────────────────────────────────────────────────────────── + +fn cfg_port() -> Int { + let p: String = env("EL_IDE_PORT") + if str_eq(p, "") { return 7771 } + str_to_int(p) +} + +fn cfg_project_path() -> String { + let p: String = env("EL_IDE_PROJECT_PATH") + if str_eq(p, "") { return "." } + p +} + +fn cfg_engram_url() -> String { + let u: String = env("EL_ENGRAM_URL") + if str_eq(u, "") { return "http://localhost:8742" } + u +} + +fn cfg_el_binary() -> String { + let b: String = env("EL_BINARY") + if str_eq(b, "") { return "el" } + b +} + +// ── Path safety ────────────────────────────────────────────────────────────── + +fn safe_join(rel: String) -> String { + let root: String = cfg_project_path() + // Reject obvious traversals. + if str_contains(rel, "..") { return "" } + if str_starts_with(rel, "/") { return "" } + if str_eq(rel, ".") { return root } + root + "/" + rel +} + +// ── Status route ───────────────────────────────────────────────────────────── + +fn route_status() -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, "\"project_name\":" + jstr(cfg_project_path())) + let parts = native_list_append(parts, "\"project_path\":" + jstr(cfg_project_path())) + let parts = native_list_append(parts, "\"version\":" + jstr("0.1.0")) + let parts = native_list_append(parts, "\"engine\":" + jstr("el-ide")) + "{" + list_join(parts, ",") + "}" +} + +// ── Config route ───────────────────────────────────────────────────────────── + +fn route_config() -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, "\"port\":" + int_to_str(cfg_port())) + let parts = native_list_append(parts, "\"project_path\":" + jstr(cfg_project_path())) + let parts = native_list_append(parts, "\"engram_url\":" + jstr(cfg_engram_url())) + let parts = native_list_append(parts, "\"el_binary\":" + jstr(cfg_el_binary())) + "{" + list_join(parts, ",") + "}" +} + +// ── File API ───────────────────────────────────────────────────────────────── + +fn route_files_list(query: String) -> String { + let rel: String = query_get(query, "path") + if str_eq(rel, "") { let rel = "." } + let target: String = safe_join(rel) + if str_eq(target, "") { return jerr("path escapes project root") } + let entries: [String] = fs_list(target) + let n: Int = native_list_len(entries) + let out: String = "[" + let i: Int = 0 + while i < n { + let name: String = native_list_get(entries, i) + // Skip hidden + noise dirs + let skip: Bool = false + if str_starts_with(name, ".") { let skip = true } + if str_eq(name, "target") { let skip = true } + if str_eq(name, "node_modules") { let skip = true } + if str_eq(name, "dist") { let skip = true } + if !skip { + if i > 0 { + if !str_eq(out, "[") { let out = out + "," } + } + // Approximate is_dir by checking for an extension + let dot: Int = str_index_of(name, ".") + let is_dir: String = "false" + if dot < 0 { let is_dir = "true" } + let out = out + "{\"name\":" + jstr(name) + ",\"path\":" + jstr(rel + "/" + name) + ",\"is_dir\":" + is_dir + ",\"children\":null}" + } + let i = i + 1 + } + out + "]" +} + +fn route_file_read(query: String) -> String { + let rel: String = query_get(query, "path") + if str_eq(rel, "") { return jerr("missing path parameter") } + let target: String = safe_join(rel) + if str_eq(target, "") { return jerr("path escapes project root") } + let content: String = fs_read(target) + "{\"path\":" + jstr(rel) + ",\"content\":" + jstr(content) + "}" +} + +fn route_file_write(body: String) -> String { + let rel: String = json_get_string(body, "path") + let content: String = json_get_string(body, "content") + if str_eq(rel, "") { return jerr("missing path") } + let target: String = safe_join(rel) + if str_eq(target, "") { return jerr("path escapes project root") } + let ok: Bool = fs_write(target, content) + if ok { return ok_obj() } + jerr("cannot write file") +} + +// ── LSP routes (delegate to inlined lsp_* functions) ───────────────────────── + +fn route_lsp_complete(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_complete(source, pos) +} + +fn route_lsp_hover(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_hover(source, pos) +} + +fn route_lsp_errors(query: String) -> String { + let source: String = query_get(query, "source") + lsp_diagnostics(source) +} + +fn route_lsp_jsonrpc(body: String) -> String { + let method: String = json_get_string(body, "method") + let params_raw: String = json_get_raw(body, "params") + let id_val: String = json_get_raw(body, "id") + if str_eq(id_val, "") { let id_val = "null" } + let result: String = lsp_jsonrpc(method, params_raw) + "{\"jsonrpc\":\"2.0\",\"id\":" + id_val + ",\"result\":" + result + "}" +} + +fn route_outline(query: String) -> String { + let source: String = query_get(query, "source") + lsp_outline(source) +} + +fn route_definition(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_definition(source, pos) +} + +fn route_references(query: String) -> String { + let source: String = query_get(query, "source") + let pos: Int = str_to_int(query_get(query, "pos")) + lsp_references(source, pos) +} + +fn route_format(body: String) -> String { + let content: String = json_get_string(body, "content") + lsp_format(content) +} + +fn route_type_graph(query: String) -> String { + let source: String = query_get(query, "source") + lsp_type_graph(source) +} + +// ── Themes ─────────────────────────────────────────────────────────────────── + +fn active_theme() -> String { + let t: String = state_get("ide/active_theme") + if str_eq(t, "") { return "dark" } + t +} + +fn route_themes_list() -> String { + let active: String = active_theme() + let names: [String] = native_list_empty() + let names = native_list_append(names, "dark") + let names = native_list_append(names, "light") + let names = native_list_append(names, "neuron") + let names = native_list_append(names, "high-contrast") + let labels: [String] = native_list_empty() + let labels = native_list_append(labels, "Dark") + let labels = native_list_append(labels, "Light") + let labels = native_list_append(labels, "Neuron") + let labels = native_list_append(labels, "High Contrast") + let n: Int = native_list_len(names) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let nm: String = native_list_get(names, i) + let lbl: String = native_list_get(labels, i) + let act: String = "false" + if str_eq(nm, active) { let act = "true" } + let out = out + "{\"name\":" + jstr(nm) + ",\"label\":" + jstr(lbl) + ",\"active\":" + act + "}" + let i = i + 1 + } + out + "]" +} + +fn route_themes_set(body: String) -> String { + let name: String = json_get_string(body, "name") + let valid: Bool = false + if str_eq(name, "dark") { let valid = true } + if str_eq(name, "light") { let valid = true } + if str_eq(name, "neuron") { let valid = true } + if str_eq(name, "high-contrast") { let valid = true } + if !valid { return jerr("unknown theme: " + name) } + state_set("ide/active_theme", name) + "{\"ok\":true,\"active\":" + jstr(name) + "}" +} + +// ── Plugins (delegate to plugin_* in plugin-host) ──────────────────────────── + +fn route_plugins_list() -> String { plugin_list_json() } + +fn route_plugins_install(body: String) -> String { + plugin_install(json_get_string(body, "name")) +} + +fn route_plugins_remove(body: String) -> String { + plugin_remove(json_get_string(body, "name")) +} + +fn route_plugins_enable(body: String) -> String { + plugin_enable(json_get_string(body, "name")) +} + +fn route_plugins_disable(body: String) -> String { + plugin_disable(json_get_string(body, "name")) +} + +// ── Snippets ───────────────────────────────────────────────────────────────── + +fn route_snippets() -> String { + let snips: [String] = native_list_empty() + let snips = native_list_append(snips, "{\"label\":\"fn\",\"description\":\"Function definition\",\"body\":\"fn ${1:name}(${2:params}) -> ${3:Ret} {\\n\\t${4:body}\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"type\",\"description\":\"Struct\",\"body\":\"type ${1:Name} {\\n\\t${2:field}: ${3:Type},\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"enum\",\"description\":\"Enum\",\"body\":\"enum ${1:Name} {\\n\\t${2:Variant},\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"match\",\"description\":\"Match expression\",\"body\":\"match ${1:expr} {\\n\\t${2:pat} => ${3:body},\\n\\t_ => ${4:default},\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"let\",\"description\":\"Let binding\",\"body\":\"let ${1:name}: ${2:Type} = ${3:value}\"}") + let snips = native_list_append(snips, "{\"label\":\"if\",\"description\":\"If expression\",\"body\":\"if ${1:cond} {\\n\\t${2:body}\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"for\",\"description\":\"For loop\",\"body\":\"for ${1:item} in ${2:iter} {\\n\\t${3:body}\\n}\"}") + let snips = native_list_append(snips, "{\"label\":\"activate\",\"description\":\"Activate\",\"body\":\"activate ${1:Type}\"}") + "[" + list_join(snips, ",") + "]" +} + +// ── Settings (file-backed) ─────────────────────────────────────────────────── + +fn settings_path() -> String { + let home: String = env("HOME") + if str_eq(home, "") { let home = "/tmp" } + home + "/.el-ide/settings.json" +} + +fn default_settings_json() -> String { + "{\"theme\":\"dark\",\"fontSize\":13,\"tabSize\":4,\"wordWrap\":false,\"formatOnSave\":false,\"vimMode\":false,\"minimap\":true,\"elBinaryPath\":\"el\",\"engramUrl\":\"http://localhost:8742\",\"stickyScroll\":true,\"lineNumbers\":true,\"bracketMatching\":true}" +} + +fn route_settings_get() -> String { + let s: String = fs_read(settings_path()) + if str_eq(s, "") { return default_settings_json() } + s +} + +fn route_settings_save(body: String) -> String { + // Body is { "settings": {...} } — extract the inner blob. + let blob: String = json_get_raw(body, "settings") + if str_eq(blob, "") { return jerr("missing settings") } + fs_write(settings_path(), blob) + blob +} + +fn route_settings_reset() -> String { + fs_write(settings_path(), default_settings_json()) + default_settings_json() +} + +// ── Build / run (synchronous; no SSE in current http_serve runtime) ────────── +// +// The Rust crate spawned `el build/run` and streamed output as SSE events. +// El's `http_serve` is request/response only — handlers return one string. +// We call the el binary, capture stdout via fs_read of a redirected temp +// file, and return JSON. Streaming is a runtime gap (see report). + +fn route_build_or_run(action: String, body: String) -> String { + let rel_file: String = json_get_string(body, "file") + if str_eq(rel_file, "") { let rel_file = "src/main.el" } + let target: String = safe_join(rel_file) + if str_eq(target, "") { return jerr("path escapes project root") } + // No process-spawn primitive in the runtime; this is a stub that + // documents the planned behaviour. See report for runtime gap. + "{\"event\":\"info\",\"action\":" + jstr(action) + ",\"file\":" + jstr(rel_file) + ",\"note\":\"el-ide-server: synchronous build requires a runtime exec primitive — el binary not invoked\"}" +} + +fn route_build(body: String) -> String { route_build_or_run("build", body) } +fn route_run(body: String) -> String { route_build_or_run("run", body) } + +// ── Engram reasoning proxy ─────────────────────────────────────────────────── + +fn route_reason(body: String) -> String { + let url: String = cfg_engram_url() + "/api/reason" + let resp: String = http_post(url, body) + if str_eq(resp, "") { return jerr("engram unreachable") } + resp +} + +fn route_activate_preview(query: String) -> String { + let type_name: String = query_get(query, "type_name") + let q: String = query_get(query, "query") + let url: String = cfg_engram_url() + "/api/activate-preview" + let body: String = "{\"type_name\":" + jstr(type_name) + ",\"query\":" + jstr(q) + ",\"limit\":5}" + let resp: String = http_post(url, body) + if str_eq(resp, "") { + return "{\"count\":0,\"nodes\":[],\"connected\":false}" + } + resp +} + +// ── Index page (minimal placeholder; the real bundle lives in ide/index.html) ─ + +fn route_index() -> String { + let path: String = cfg_project_path() + "/ide/index.html" + let html: String = fs_read(path) + if !str_eq(html, "") { return html } + "el-ide

el-ide

Backend running. UI bundle missing at " + path + ".

" +} + +// ── Health ─────────────────────────────────────────────────────────────────── + +fn route_health() -> String { + "{\"status\":\"ok\",\"engine\":\"el-ide-server\"}" +} + +// ── Dispatcher ─────────────────────────────────────────────────────────────── + +fn handle_request(method: String, path: String, body: String) -> String { + let parsed: Map = split_path_query(path) + let route: String = parsed["path"] + let query: String = parsed["query"] + + if str_eq(route, "/") { return route_index() } + if str_eq(route, "/health") { return route_health() } + if str_eq(route, "/api/status") { return route_status() } + if str_eq(route, "/api/config") { return route_config() } + + // Files + if str_eq(route, "/api/files") { return route_files_list(query) } + if str_eq(route, "/api/file") { + if str_eq(method, "GET") { return route_file_read(query) } + if str_eq(method, "POST") { return route_file_write(body) } + } + + // Search — minimal stub (real impl needs recursive grep) + if str_eq(route, "/api/search") { + let q: String = query_get(query, "q") + return "{\"query\":" + jstr(q) + ",\"results\":[]}" + } + + // LSP + if str_eq(route, "/api/lsp/complete") { return route_lsp_complete(query) } + if str_eq(route, "/api/lsp/hover") { return route_lsp_hover(query) } + if str_eq(route, "/api/lsp/errors") { return route_lsp_errors(query) } + if str_eq(route, "/api/lsp/activate-preview") { return route_activate_preview(query) } + if str_eq(route, "/api/lsp/jsonrpc") { return route_lsp_jsonrpc(body) } + if str_eq(route, "/api/type-graph") { return route_type_graph(query) } + if str_eq(route, "/api/outline") { return route_outline(query) } + if str_eq(route, "/api/definition") { return route_definition(query) } + if str_eq(route, "/api/references") { return route_references(query) } + if str_eq(route, "/api/format") { return route_format(body) } + if str_eq(route, "/api/completions/snippet") { return route_snippets() } + + // Themes + if str_eq(route, "/api/themes") { return route_themes_list() } + if str_eq(route, "/api/themes/active") { return route_themes_set(body) } + + // Plugins + if str_eq(route, "/api/plugins") { return route_plugins_list() } + if str_eq(route, "/api/plugins/install") { return route_plugins_install(body) } + if str_eq(route, "/api/plugins/remove") { return route_plugins_remove(body) } + if str_eq(route, "/api/plugins/enable") { return route_plugins_enable(body) } + if str_eq(route, "/api/plugins/disable") { return route_plugins_disable(body) } + + // Settings + if str_eq(route, "/api/settings") { + if str_eq(method, "GET") { return route_settings_get() } + if str_eq(method, "POST") { return route_settings_save(body) } + if str_eq(method, "DELETE") { return route_settings_reset() } + } + + // Build / run + if str_eq(route, "/api/build") { return route_build(body) } + if str_eq(route, "/api/run") { return route_run(body) } + + // Reasoning proxy + if str_eq(route, "/api/reason") { return route_reason(body) } + + // Git — relies on shell exec; runtime gap. Stub returns empty. + if str_eq(route, "/api/git/status") { return "[]" } + if str_eq(route, "/api/git/diff") { return "\"\"" } + + "{\"error\":\"not found\",\"path\":" + jstr(route) + "}" +} + +// ── Entry ──────────────────────────────────────────────────────────────────── + +fn server_main() -> Void { + plugin_init() + let port: Int = cfg_port() + println("[el-ide-server] project=" + cfg_project_path()) + println("[el-ide-server] engram=" + cfg_engram_url()) + println("[el-ide-server] listening on http://0.0.0.0:" + int_to_str(port)) + http_set_handler("handle_request") + http_serve(port, "handle_request") +} + +server_main() diff --git a/ide/vessels/el-lsp/manifest.el b/ide/vessels/el-lsp/manifest.el new file mode 100644 index 0000000..925ed68 --- /dev/null +++ b/ide/vessels/el-lsp/manifest.el @@ -0,0 +1,17 @@ +// manifest.el — el-lsp vessel +// +// Language Server core for the El language. Exposes hover, completion, +// diagnostics, outline, format, and type-graph entry points consumed by +// el-ide-server (HTTP) and stdio-mode editors. + +vessel "el-lsp" { + version "0.1.0" + description "El language server: completion, hover, diagnostics, outline, format, type graph." + authors ["Will Anderson "] + edition "2026" +} + +build { + entry "src/main.el" + output "dist/" +} diff --git a/ide/vessels/el-lsp/src/el-lsp b/ide/vessels/el-lsp/src/el-lsp new file mode 100755 index 0000000..49c1fa9 Binary files /dev/null and b/ide/vessels/el-lsp/src/el-lsp differ diff --git a/ide/vessels/el-lsp/src/main.c b/ide/vessels/el-lsp/src/main.c new file mode 100644 index 0000000..f36f443 --- /dev/null +++ b/ide/vessels/el-lsp/src/main.c @@ -0,0 +1,1469 @@ +#include +#include +#include "el_runtime.h" + +el_val_t is_digit_ch(el_val_t ch); +el_val_t is_alpha_ch(el_val_t ch); +el_val_t is_ident_ch(el_val_t ch); +el_val_t extract_prefix(el_val_t source, el_val_t pos); +el_val_t extract_token(el_val_t source, el_val_t pos); +el_val_t pos_to_line_col(el_val_t source, el_val_t pos); +el_val_t json_escape(el_val_t s); +el_val_t json_str(el_val_t s); +el_val_t json_kv_str(el_val_t k, el_val_t v); +el_val_t json_kv_int(el_val_t k, el_val_t v); +el_val_t json_kv_float(el_val_t k, el_val_t v); +el_val_t json_kv_raw(el_val_t k, el_val_t raw_v); +el_val_t json_array_of(el_val_t items); +el_val_t keywords_list(void); +el_val_t builtin_type_names(void); +el_val_t builtin_type_doc(el_val_t name); +el_val_t builtin_fns(void); +el_val_t keyword_doc(el_val_t kw); +el_val_t first_ident_in(el_val_t rest); +el_val_t scan_decls(el_val_t source); +el_val_t list_contains_str(el_val_t xs, el_val_t needle); +el_val_t prefix_score(el_val_t label, el_val_t prefix); +el_val_t completion_json(el_val_t label, el_val_t kind, el_val_t detail, el_val_t doc, el_val_t score); +el_val_t lsp_complete(el_val_t source, el_val_t pos); +el_val_t lsp_hover(el_val_t source, el_val_t pos); +el_val_t diag_json(el_val_t message, el_val_t severity, el_val_t line, el_val_t col); +el_val_t lsp_diagnostics(el_val_t source); +el_val_t outline_item_json(el_val_t kind, el_val_t name, el_val_t line); +el_val_t lsp_outline(el_val_t source); +el_val_t format_strip_trailing(el_val_t line); +el_val_t lsp_format(el_val_t source); +el_val_t lsp_type_graph(el_val_t source); +el_val_t collect_struct_fields(el_val_t source, el_val_t type_name); +el_val_t referenced_type(el_val_t field_str, el_val_t known_types); +el_val_t lsp_definition(el_val_t source, el_val_t pos); +el_val_t lsp_references(el_val_t source, el_val_t pos); +el_val_t lsp_jsonrpc(el_val_t method, el_val_t params_json); +el_val_t read_headers(void); +el_val_t lsp_stdio_loop(void); +el_val_t lsp_main(void); + +el_val_t is_digit_ch(el_val_t ch) { + if (str_eq(ch, EL_STR("0"))) { + return 1; + } + if (str_eq(ch, EL_STR("1"))) { + return 1; + } + if (str_eq(ch, EL_STR("2"))) { + return 1; + } + if (str_eq(ch, EL_STR("3"))) { + return 1; + } + if (str_eq(ch, EL_STR("4"))) { + return 1; + } + if (str_eq(ch, EL_STR("5"))) { + return 1; + } + if (str_eq(ch, EL_STR("6"))) { + return 1; + } + if (str_eq(ch, EL_STR("7"))) { + return 1; + } + if (str_eq(ch, EL_STR("8"))) { + return 1; + } + if (str_eq(ch, EL_STR("9"))) { + return 1; + } + return 0; + return 0; +} + +el_val_t is_alpha_ch(el_val_t ch) { + el_val_t lower = str_to_lower(ch); + if (str_eq(ch, EL_STR(""))) { + return 0; + } + if (!str_eq(lower, str_to_upper(lower))) { + return 1; + } + if (str_contains(EL_STR("abcdefghijklmnopqrstuvwxyz"), ch)) { + return 1; + } + if (str_contains(EL_STR("ABCDEFGHIJKLMNOPQRSTUVWXYZ"), ch)) { + return 1; + } + return 0; + return 0; +} + +el_val_t is_ident_ch(el_val_t ch) { + if (is_digit_ch(ch)) { + return 1; + } + if (is_alpha_ch(ch)) { + return 1; + } + if (str_eq(ch, EL_STR("_"))) { + return 1; + } + return 0; + return 0; +} + +el_val_t extract_prefix(el_val_t source, el_val_t pos) { + el_val_t n = str_len(source); + el_val_t end = pos; + if (end > n) { + end = n; + } + el_val_t start = end; + el_val_t chars = native_string_chars(source); + el_val_t total = native_list_len(chars); + el_val_t scanning = 1; + while (scanning) { + if (start <= 0) { + scanning = 0; + } else { + el_val_t prev = native_list_get(chars, (start - 1)); + if (is_ident_ch(prev)) { + start = (start - 1); + } else { + scanning = 0; + } + } + } + return str_slice(source, start, end); + return 0; +} + +el_val_t extract_token(el_val_t source, el_val_t pos) { + el_val_t n = str_len(source); + if (pos > n) { + return EL_STR(""); + } + el_val_t chars = native_string_chars(source); + el_val_t total = native_list_len(chars); + el_val_t start = pos; + el_val_t go_left = 1; + while (go_left) { + if (start <= 0) { + go_left = 0; + } else { + el_val_t prev = native_list_get(chars, (start - 1)); + if (is_ident_ch(prev)) { + start = (start - 1); + } else { + go_left = 0; + } + } + } + el_val_t end = pos; + el_val_t go_right = 1; + while (go_right) { + if (end >= total) { + go_right = 0; + } else { + el_val_t cur = native_list_get(chars, end); + if (is_ident_ch(cur)) { + end = (end + 1); + } else { + go_right = 0; + } + } + } + return str_slice(source, start, end); + return 0; +} + +el_val_t pos_to_line_col(el_val_t source, el_val_t pos) { + el_val_t n = str_len(source); + el_val_t cap = pos; + if (cap > n) { + cap = n; + } + el_val_t chars = native_string_chars(source); + el_val_t i = 0; + el_val_t line = 1; + el_val_t col = 1; + while (i < cap) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\n"))) { + line = (line + 1); + col = 1; + } else { + col = (col + 1); + } + i = (i + 1); + } + return el_map_new(2, "line", line, "col", col); + return 0; +} + +el_val_t json_escape(el_val_t s) { + el_val_t chars = native_string_chars(s); + el_val_t n = native_list_len(chars); + el_val_t out = EL_STR(""); + el_val_t i = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\""))) { + out = el_str_concat(out, EL_STR("\\\"")); + } else { + if (str_eq(ch, EL_STR("\\"))) { + out = el_str_concat(out, EL_STR("\\\\")); + } else { + if (str_eq(ch, EL_STR("\n"))) { + out = el_str_concat(out, EL_STR("\\n")); + } else { + if (str_eq(ch, EL_STR("\r"))) { + out = el_str_concat(out, EL_STR("\\r")); + } else { + if (str_eq(ch, EL_STR("\t"))) { + out = el_str_concat(out, EL_STR("\\t")); + } else { + out = el_str_concat(out, ch); + } + } + } + } + } + i = (i + 1); + } + return out; + return 0; +} + +el_val_t json_str(el_val_t s) { + return el_str_concat(el_str_concat(EL_STR("\""), json_escape(s)), EL_STR("\"")); + return 0; +} + +el_val_t json_kv_str(el_val_t k, el_val_t v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), json_str(v)); + return 0; +} + +el_val_t json_kv_int(el_val_t k, el_val_t v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), int_to_str(v)); + return 0; +} + +el_val_t json_kv_float(el_val_t k, el_val_t v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), float_to_str(v)); + return 0; +} + +el_val_t json_kv_raw(el_val_t k, el_val_t raw_v) { + return el_str_concat(el_str_concat(json_str(k), EL_STR(":")), raw_v); + return 0; +} + +el_val_t json_array_of(el_val_t items) { + el_val_t n = native_list_len(items); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + out = el_str_concat(out, native_list_get(items, i)); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t keywords_list(void) { + el_val_t ks = native_list_empty(); + ks = native_list_append(ks, EL_STR("let")); + ks = native_list_append(ks, EL_STR("fn")); + ks = native_list_append(ks, EL_STR("type")); + ks = native_list_append(ks, EL_STR("enum")); + ks = native_list_append(ks, EL_STR("match")); + ks = native_list_append(ks, EL_STR("return")); + ks = native_list_append(ks, EL_STR("activate")); + ks = native_list_append(ks, EL_STR("where")); + ks = native_list_append(ks, EL_STR("sealed")); + ks = native_list_append(ks, EL_STR("if")); + ks = native_list_append(ks, EL_STR("else")); + ks = native_list_append(ks, EL_STR("for")); + ks = native_list_append(ks, EL_STR("in")); + ks = native_list_append(ks, EL_STR("while")); + ks = native_list_append(ks, EL_STR("true")); + ks = native_list_append(ks, EL_STR("false")); + ks = native_list_append(ks, EL_STR("test")); + ks = native_list_append(ks, EL_STR("seed")); + ks = native_list_append(ks, EL_STR("assert")); + ks = native_list_append(ks, EL_STR("target")); + ks = native_list_append(ks, EL_STR("protocol")); + ks = native_list_append(ks, EL_STR("impl")); + ks = native_list_append(ks, EL_STR("import")); + ks = native_list_append(ks, EL_STR("from")); + ks = native_list_append(ks, EL_STR("as")); + ks = native_list_append(ks, EL_STR("with")); + ks = native_list_append(ks, EL_STR("retry")); + ks = native_list_append(ks, EL_STR("times")); + ks = native_list_append(ks, EL_STR("fallback")); + ks = native_list_append(ks, EL_STR("reason")); + ks = native_list_append(ks, EL_STR("parallel")); + ks = native_list_append(ks, EL_STR("trace")); + ks = native_list_append(ks, EL_STR("requires")); + ks = native_list_append(ks, EL_STR("deploy")); + ks = native_list_append(ks, EL_STR("to")); + ks = native_list_append(ks, EL_STR("via")); + ks = native_list_append(ks, EL_STR("vessel")); + ks = native_list_append(ks, EL_STR("cgi")); + return ks; + return 0; +} + +el_val_t builtin_type_names(void) { + el_val_t ts = native_list_empty(); + ts = native_list_append(ts, EL_STR("Int")); + ts = native_list_append(ts, EL_STR("Float")); + ts = native_list_append(ts, EL_STR("String")); + ts = native_list_append(ts, EL_STR("Bool")); + ts = native_list_append(ts, EL_STR("Uuid")); + ts = native_list_append(ts, EL_STR("Void")); + ts = native_list_append(ts, EL_STR("Any")); + return ts; + return 0; +} + +el_val_t builtin_type_doc(el_val_t name) { + if (str_eq(name, EL_STR("Int"))) { + return EL_STR("64-bit signed integer"); + } + if (str_eq(name, EL_STR("Float"))) { + return EL_STR("64-bit IEEE 754 double"); + } + if (str_eq(name, EL_STR("String"))) { + return EL_STR("UTF-8 string"); + } + if (str_eq(name, EL_STR("Bool"))) { + return EL_STR("Boolean value"); + } + if (str_eq(name, EL_STR("Uuid"))) { + return EL_STR("RFC 4122 UUID"); + } + if (str_eq(name, EL_STR("Void"))) { + return EL_STR("Unit type — no value"); + } + if (str_eq(name, EL_STR("Any"))) { + return EL_STR("Dynamically-typed value"); + } + return EL_STR(""); + return 0; +} + +el_val_t builtin_fns(void) { + el_val_t xs = native_list_empty(); + xs = native_list_append(xs, EL_STR("println")); + xs = native_list_append(xs, EL_STR("fn(value: String) -> Void")); + xs = native_list_append(xs, EL_STR("print")); + xs = native_list_append(xs, EL_STR("fn(value: String) -> Void")); + xs = native_list_append(xs, EL_STR("readline")); + xs = native_list_append(xs, EL_STR("fn() -> String")); + xs = native_list_append(xs, EL_STR("args")); + xs = native_list_append(xs, EL_STR("fn() -> [String]")); + xs = native_list_append(xs, EL_STR("int_to_str")); + xs = native_list_append(xs, EL_STR("fn(n: Int) -> String")); + xs = native_list_append(xs, EL_STR("str_to_int")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Int")); + xs = native_list_append(xs, EL_STR("str_len")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Int")); + xs = native_list_append(xs, EL_STR("str_slice")); + xs = native_list_append(xs, EL_STR("fn(s: String, start: Int, end: Int) -> String")); + xs = native_list_append(xs, EL_STR("str_concat")); + xs = native_list_append(xs, EL_STR("fn(a: String, b: String) -> String")); + xs = native_list_append(xs, EL_STR("str_contains")); + xs = native_list_append(xs, EL_STR("fn(s: String, sub: String) -> Bool")); + xs = native_list_append(xs, EL_STR("str_starts_with")); + xs = native_list_append(xs, EL_STR("fn(s: String, p: String) -> Bool")); + xs = native_list_append(xs, EL_STR("str_ends_with")); + xs = native_list_append(xs, EL_STR("fn(s: String, suf: String) -> Bool")); + xs = native_list_append(xs, EL_STR("str_to_upper")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> String")); + xs = native_list_append(xs, EL_STR("str_to_lower")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> String")); + xs = native_list_append(xs, EL_STR("str_split")); + xs = native_list_append(xs, EL_STR("fn(s: String, sep: String) -> [String]")); + xs = native_list_append(xs, EL_STR("str_trim")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> String")); + xs = native_list_append(xs, EL_STR("str_replace")); + xs = native_list_append(xs, EL_STR("fn(s: String, from: String, to: String) -> String")); + xs = native_list_append(xs, EL_STR("str_index_of")); + xs = native_list_append(xs, EL_STR("fn(s: String, sub: String) -> Int")); + xs = native_list_append(xs, EL_STR("float_to_str")); + xs = native_list_append(xs, EL_STR("fn(f: Float) -> String")); + xs = native_list_append(xs, EL_STR("str_to_float")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Float")); + xs = native_list_append(xs, EL_STR("math_sqrt")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_log")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_sin")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_cos")); + xs = native_list_append(xs, EL_STR("fn(n: Float) -> Float")); + xs = native_list_append(xs, EL_STR("math_pi")); + xs = native_list_append(xs, EL_STR("fn() -> Float")); + xs = native_list_append(xs, EL_STR("el_abs")); + xs = native_list_append(xs, EL_STR("fn(n: Int) -> Int")); + xs = native_list_append(xs, EL_STR("el_min")); + xs = native_list_append(xs, EL_STR("fn(a: Int, b: Int) -> Int")); + xs = native_list_append(xs, EL_STR("el_max")); + xs = native_list_append(xs, EL_STR("fn(a: Int, b: Int) -> Int")); + xs = native_list_append(xs, EL_STR("el_list_empty")); + xs = native_list_append(xs, EL_STR("fn() -> [Any]")); + xs = native_list_append(xs, EL_STR("el_list_len")); + xs = native_list_append(xs, EL_STR("fn(l: [Any]) -> Int")); + xs = native_list_append(xs, EL_STR("el_list_get")); + xs = native_list_append(xs, EL_STR("fn(l: [Any], i: Int) -> Any")); + xs = native_list_append(xs, EL_STR("el_list_append")); + xs = native_list_append(xs, EL_STR("fn(l: [Any], v: Any) -> [Any]")); + xs = native_list_append(xs, EL_STR("list_join")); + xs = native_list_append(xs, EL_STR("fn(l: [String], sep: String) -> String")); + xs = native_list_append(xs, EL_STR("list_range")); + xs = native_list_append(xs, EL_STR("fn(start: Int, end: Int) -> [Int]")); + xs = native_list_append(xs, EL_STR("el_map_get")); + xs = native_list_append(xs, EL_STR("fn(m: Map, k: String) -> Any")); + xs = native_list_append(xs, EL_STR("el_map_set")); + xs = native_list_append(xs, EL_STR("fn(m: Map, k: String, v: Any) -> Map")); + xs = native_list_append(xs, EL_STR("json_parse")); + xs = native_list_append(xs, EL_STR("fn(s: String) -> Any")); + xs = native_list_append(xs, EL_STR("json_stringify")); + xs = native_list_append(xs, EL_STR("fn(v: Any) -> String")); + xs = native_list_append(xs, EL_STR("json_get_string")); + xs = native_list_append(xs, EL_STR("fn(j: String, k: String) -> String")); + xs = native_list_append(xs, EL_STR("json_get_int")); + xs = native_list_append(xs, EL_STR("fn(j: String, k: String) -> Int")); + xs = native_list_append(xs, EL_STR("json_get_bool")); + xs = native_list_append(xs, EL_STR("fn(j: String, k: String) -> Bool")); + xs = native_list_append(xs, EL_STR("http_get")); + xs = native_list_append(xs, EL_STR("fn(url: String) -> String")); + xs = native_list_append(xs, EL_STR("http_post")); + xs = native_list_append(xs, EL_STR("fn(url: String, body: String) -> String")); + xs = native_list_append(xs, EL_STR("fs_read")); + xs = native_list_append(xs, EL_STR("fn(path: String) -> String")); + xs = native_list_append(xs, EL_STR("fs_write")); + xs = native_list_append(xs, EL_STR("fn(path: String, content: String) -> Bool")); + xs = native_list_append(xs, EL_STR("fs_list")); + xs = native_list_append(xs, EL_STR("fn(path: String) -> [String]")); + xs = native_list_append(xs, EL_STR("env")); + xs = native_list_append(xs, EL_STR("fn(key: String) -> String")); + xs = native_list_append(xs, EL_STR("uuid_new")); + xs = native_list_append(xs, EL_STR("fn() -> String")); + xs = native_list_append(xs, EL_STR("time_now")); + xs = native_list_append(xs, EL_STR("fn() -> Int")); + xs = native_list_append(xs, EL_STR("time_now_utc")); + xs = native_list_append(xs, EL_STR("fn() -> Int")); + xs = native_list_append(xs, EL_STR("sleep_ms")); + xs = native_list_append(xs, EL_STR("fn(ms: Int) -> Void")); + xs = native_list_append(xs, EL_STR("engram_node")); + xs = native_list_append(xs, EL_STR("fn(content: String, kind: String, salience: Float) -> String")); + xs = native_list_append(xs, EL_STR("engram_search")); + xs = native_list_append(xs, EL_STR("fn(q: String, limit: Int) -> [Map]")); + xs = native_list_append(xs, EL_STR("engram_activate")); + xs = native_list_append(xs, EL_STR("fn(q: String, depth: Int) -> [Map]")); + xs = native_list_append(xs, EL_STR("engram_neighbors")); + xs = native_list_append(xs, EL_STR("fn(id: String) -> [Map]")); + xs = native_list_append(xs, EL_STR("engram_connect")); + xs = native_list_append(xs, EL_STR("fn(from: String, to: String, w: Float, rel: String) -> Void")); + xs = native_list_append(xs, EL_STR("dharma_connect")); + xs = native_list_append(xs, EL_STR("fn(cgi: String) -> String")); + xs = native_list_append(xs, EL_STR("dharma_send")); + xs = native_list_append(xs, EL_STR("fn(channel: String, content: String) -> String")); + xs = native_list_append(xs, EL_STR("dharma_emit")); + xs = native_list_append(xs, EL_STR("fn(event: String, payload: String) -> Void")); + xs = native_list_append(xs, EL_STR("dharma_field")); + xs = native_list_append(xs, EL_STR("fn(event: String) -> Map")); + xs = native_list_append(xs, EL_STR("llm_call")); + xs = native_list_append(xs, EL_STR("fn(model: String, prompt: String) -> String")); + return xs; + return 0; +} + +el_val_t keyword_doc(el_val_t kw) { + if (str_eq(kw, EL_STR("let"))) { + return EL_STR("let name: Type = expr — declare an immutable binding."); + } + if (str_eq(kw, EL_STR("fn"))) { + return EL_STR("fn name(params) -> Ret { body } — define a function."); + } + if (str_eq(kw, EL_STR("type"))) { + return EL_STR("type Name { field: Type } — struct definition."); + } + if (str_eq(kw, EL_STR("enum"))) { + return EL_STR("enum Name { Variant1, Variant2(Type) } — enum definition."); + } + if (str_eq(kw, EL_STR("match"))) { + return EL_STR("match expr { Pattern => body } — pattern match."); + } + if (str_eq(kw, EL_STR("return"))) { + return EL_STR("return value — exit the enclosing function."); + } + if (str_eq(kw, EL_STR("if"))) { + return EL_STR("if cond { ... } else { ... } — conditional."); + } + if (str_eq(kw, EL_STR("for"))) { + return EL_STR("for item in collection { ... } — iterate."); + } + if (str_eq(kw, EL_STR("while"))) { + return EL_STR("while cond { ... } — loop while cond is truthy."); + } + if (str_eq(kw, EL_STR("import"))) { + return EL_STR("import \"path.el\" — pull in another module."); + } + if (str_eq(kw, EL_STR("from"))) { + return EL_STR("from module import { Name } — selective import."); + } + if (str_eq(kw, EL_STR("vessel"))) { + return EL_STR("vessel \"name\" { ... } — manifest declaration."); + } + if (str_eq(kw, EL_STR("cgi"))) { + return EL_STR("cgi \"name\" { dharma_id: ... } — CGI identity."); + } + if (str_eq(kw, EL_STR("activate"))) { + return EL_STR("activate Type where \"query\" — spreading-activation retrieval."); + } + if (str_eq(kw, EL_STR("sealed"))) { + return EL_STR("sealed { ... } — capability-restricted block."); + } + if (str_eq(kw, EL_STR("protocol"))) { + return EL_STR("protocol Name { fn method(self) -> R } — trait-like."); + } + if (str_eq(kw, EL_STR("impl"))) { + return EL_STR("impl Protocol for Type { ... } — protocol implementation."); + } + if (str_eq(kw, EL_STR("with"))) { + return EL_STR("with retry/fallback clause."); + } + if (str_eq(kw, EL_STR("retry"))) { + return EL_STR("retry times N — retry policy."); + } + if (str_eq(kw, EL_STR("fallback"))) { + return EL_STR("fallback { default } — fallback on failure."); + } + if (str_eq(kw, EL_STR("true"))) { + return EL_STR("Boolean literal."); + } + if (str_eq(kw, EL_STR("false"))) { + return EL_STR("Boolean literal."); + } + return EL_STR(""); + return 0; +} + +el_val_t first_ident_in(el_val_t rest) { + el_val_t trimmed = str_trim(rest); + el_val_t n = str_len(trimmed); + if (n == 0) { + return EL_STR(""); + } + el_val_t chars = native_string_chars(trimmed); + el_val_t i = 0; + el_val_t total = native_list_len(chars); + while (i < total) { + el_val_t ch = native_list_get(chars, i); + if (!is_ident_ch(ch)) { + return str_slice(trimmed, 0, i); + } + i = (i + 1); + } + return trimmed; + return 0; +} + +el_val_t scan_decls(el_val_t source) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t types = native_list_empty(); + el_val_t kinds = native_list_empty(); + el_val_t fns = native_list_empty(); + el_val_t tlines = native_list_empty(); + el_val_t flines = native_list_empty(); + el_val_t i = 0; + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t trimmed = str_trim(line); + el_val_t lineno = (i + 1); + if (str_starts_with(trimmed, EL_STR("fn "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + fns = native_list_append(fns, name); + flines = native_list_append(flines, lineno); + } + } else { + if (str_starts_with(trimmed, EL_STR("type "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + types = native_list_append(types, name); + kinds = native_list_append(kinds, EL_STR("type")); + tlines = native_list_append(tlines, lineno); + } + } else { + if (str_starts_with(trimmed, EL_STR("enum "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + types = native_list_append(types, name); + kinds = native_list_append(kinds, EL_STR("enum")); + tlines = native_list_append(tlines, lineno); + } + } else { + if (str_starts_with(trimmed, EL_STR("protocol "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + types = native_list_append(types, name); + kinds = native_list_append(kinds, EL_STR("protocol")); + tlines = native_list_append(tlines, lineno); + } + } + } + } + } + i = (i + 1); + } + return el_map_new(5, "types", types, "type_kind", kinds, "fns", fns, "type_lines", tlines, "fn_lines", flines); + return 0; +} + +el_val_t list_contains_str(el_val_t xs, el_val_t needle) { + el_val_t n = native_list_len(xs); + el_val_t i = 0; + while (i < n) { + if (str_eq(native_list_get(xs, i), needle)) { + return 1; + } + i = (i + 1); + } + return 0; + return 0; +} + +el_val_t prefix_score(el_val_t label, el_val_t prefix) { + if (str_eq(prefix, EL_STR(""))) { + return el_from_float(0.5); + } + el_val_t lower_label = str_to_lower(label); + el_val_t lower_prefix = str_to_lower(prefix); + if (str_starts_with(lower_label, lower_prefix)) { + el_val_t lp = str_len(lower_prefix); + el_val_t ll = str_len(lower_label); + if (ll == 0) { + return el_from_float(0.0); + } + return (int_to_float(lp) / int_to_float(ll)); + } + return el_from_float(0.0); + return 0; +} + +el_val_t completion_json(el_val_t label, el_val_t kind, el_val_t detail, el_val_t doc, el_val_t score) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("label"), label)); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), kind)); + parts = native_list_append(parts, json_kv_str(EL_STR("detail"), detail)); + if (str_eq(doc, EL_STR(""))) { + parts = native_list_append(parts, json_kv_raw(EL_STR("documentation"), EL_STR("null"))); + } else { + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), doc)); + } + parts = native_list_append(parts, json_kv_float(EL_STR("score"), score)); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t lsp_complete(el_val_t source, el_val_t pos) { + el_val_t prefix = extract_prefix(source, pos); + el_val_t lower_prefix = str_to_lower(prefix); + el_val_t prefix_empty = str_eq(prefix, EL_STR("")); + el_val_t items = native_list_empty(); + el_val_t kws = keywords_list(); + el_val_t nk = native_list_len(kws); + el_val_t i = 0; + while (i < nk) { + el_val_t kw = native_list_get(kws, i); + if (prefix_empty) { + el_val_t s = prefix_score(kw, prefix); + items = native_list_append(items, completion_json(kw, EL_STR("keyword"), EL_STR("keyword"), keyword_doc(kw), s)); + } else { + if (str_starts_with(kw, prefix)) { + el_val_t s = prefix_score(kw, prefix); + items = native_list_append(items, completion_json(kw, EL_STR("keyword"), EL_STR("keyword"), keyword_doc(kw), s)); + } + } + i = (i + 1); + } + el_val_t bts = builtin_type_names(); + el_val_t nb = native_list_len(bts); + i = 0; + while (i < nb) { + el_val_t name = native_list_get(bts, i); + el_val_t lname = str_to_lower(name); + if (prefix_empty) { + el_val_t s = (el_from_float(0.5) + el_from_float(0.1)); + items = native_list_append(items, completion_json(name, EL_STR("type"), builtin_type_doc(name), el_str_concat(EL_STR("Built-in type: "), builtin_type_doc(name)), s)); + } else { + if (str_starts_with(lname, lower_prefix)) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.1)); + items = native_list_append(items, completion_json(name, EL_STR("type"), builtin_type_doc(name), el_str_concat(EL_STR("Built-in type: "), builtin_type_doc(name)), s)); + } + } + i = (i + 1); + } + el_val_t decls = scan_decls(source); + el_val_t utypes = el_get_field(decls, EL_STR("types")); + el_val_t ukinds = el_get_field(decls, EL_STR("type_kind")); + el_val_t nu = native_list_len(utypes); + i = 0; + while (i < nu) { + el_val_t name = native_list_get(utypes, i); + el_val_t kind = native_list_get(ukinds, i); + el_val_t lname = str_to_lower(name); + el_val_t include = 0; + if (prefix_empty) { + include = 1; + } + if (str_starts_with(lname, lower_prefix)) { + include = 1; + } + if (include) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.15)); + items = native_list_append(items, completion_json(name, EL_STR("type"), el_str_concat(el_str_concat(kind, EL_STR(" ")), name), el_str_concat(el_str_concat(el_str_concat(EL_STR("User-defined "), kind), EL_STR(" ")), name), s)); + } + i = (i + 1); + } + el_val_t bfns = builtin_fns(); + el_val_t nf = native_list_len(bfns); + i = 0; + while (i < nf) { + el_val_t name = native_list_get(bfns, i); + el_val_t sig = native_list_get(bfns, (i + 1)); + el_val_t lname = str_to_lower(name); + el_val_t include = 0; + if (prefix_empty) { + include = 1; + } + if (str_starts_with(lname, lower_prefix)) { + include = 1; + } + if (include) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.11)); + items = native_list_append(items, completion_json(name, EL_STR("function"), sig, el_str_concat(el_str_concat(el_str_concat(EL_STR("Built-in: "), name), EL_STR(" :: ")), sig), s)); + } + i = (i + 2); + } + el_val_t ufns = el_get_field(decls, EL_STR("fns")); + el_val_t nuf = native_list_len(ufns); + i = 0; + while (i < nuf) { + el_val_t name = native_list_get(ufns, i); + el_val_t lname = str_to_lower(name); + el_val_t include = 0; + if (prefix_empty) { + include = 1; + } + if (str_starts_with(lname, lower_prefix)) { + include = 1; + } + if (include) { + el_val_t s = el_str_concat(prefix_score(name, prefix), el_from_float(0.12)); + items = native_list_append(items, completion_json(name, EL_STR("function"), el_str_concat(EL_STR("fn "), name), el_str_concat(EL_STR("User function: "), name), s)); + } + i = (i + 1); + } + return json_array_of(items); + return 0; +} + +el_val_t lsp_hover(el_val_t source, el_val_t pos) { + el_val_t token = extract_token(source, pos); + if (str_eq(token, EL_STR(""))) { + return EL_STR("null"); + } + el_val_t doc = builtin_type_doc(token); + if (!str_eq(doc, EL_STR(""))) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), doc)); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + el_val_t decls = scan_decls(source); + el_val_t utypes = el_get_field(decls, EL_STR("types")); + el_val_t ukinds = el_get_field(decls, EL_STR("type_kind")); + el_val_t nu = native_list_len(utypes); + el_val_t i = 0; + while (i < nu) { + el_val_t name = native_list_get(utypes, i); + if (str_eq(name, token)) { + el_val_t kind = native_list_get(ukinds, i); + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), el_str_concat(el_str_concat(kind, EL_STR(" ")), token))); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + i = (i + 1); + } + el_val_t ufns = el_get_field(decls, EL_STR("fns")); + el_val_t nuf = native_list_len(ufns); + i = 0; + while (i < nuf) { + el_val_t name = native_list_get(ufns, i); + if (str_eq(name, token)) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), el_str_concat(EL_STR("fn "), token))); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + i = (i + 1); + } + el_val_t bfns = builtin_fns(); + el_val_t nf = native_list_len(bfns); + i = 0; + while (i < nf) { + el_val_t name = native_list_get(bfns, i); + if (str_eq(name, token)) { + el_val_t sig = native_list_get(bfns, (i + 1)); + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), el_str_concat(el_str_concat(el_str_concat(EL_STR("fn "), token), EL_STR(" :: ")), sig))); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + i = (i + 2); + } + el_val_t kdoc = keyword_doc(token); + if (!str_eq(kdoc, EL_STR(""))) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("type_name"), token)); + parts = native_list_append(parts, json_kv_str(EL_STR("documentation"), kdoc)); + parts = native_list_append(parts, json_kv_raw(EL_STR("engram_node_type"), EL_STR("null"))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + return EL_STR("null"); + return 0; +} + +el_val_t diag_json(el_val_t message, el_val_t severity, el_val_t line, el_val_t col) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("message"), message)); + parts = native_list_append(parts, json_kv_str(EL_STR("severity"), severity)); + if (line > 0) { + parts = native_list_append(parts, json_kv_int(EL_STR("line"), line)); + parts = native_list_append(parts, json_kv_int(EL_STR("col"), col)); + } else { + parts = native_list_append(parts, json_kv_raw(EL_STR("line"), EL_STR("null"))); + parts = native_list_append(parts, json_kv_raw(EL_STR("col"), EL_STR("null"))); + } + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t lsp_diagnostics(el_val_t source) { + el_val_t chars = native_string_chars(source); + el_val_t n = native_list_len(chars); + el_val_t diags = native_list_empty(); + el_val_t depth_brace = 0; + el_val_t depth_paren = 0; + el_val_t depth_brack = 0; + el_val_t i = 0; + el_val_t line = 1; + el_val_t col = 1; + el_val_t in_string = 0; + el_val_t string_start_line = 0; + el_val_t string_start_col = 0; + el_val_t in_comment = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (in_comment) { + if (str_eq(ch, EL_STR("\n"))) { + in_comment = 0; + line = (line + 1); + col = 1; + } else { + col = (col + 1); + } + i = (i + 1); + } else { + if (in_string) { + if (str_eq(ch, EL_STR("\\"))) { + i = (i + 1); + col = (col + 1); + if (i < n) { + el_val_t esc = native_list_get(chars, i); + if (str_eq(esc, EL_STR("\n"))) { + line = (line + 1); + col = 1; + } else { + col = (col + 1); + } + i = (i + 1); + } + } else { + if (str_eq(ch, EL_STR("\""))) { + in_string = 0; + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("\n"))) { + line = (line + 1); + col = 1; + i = (i + 1); + } else { + col = (col + 1); + i = (i + 1); + } + } + } + } else { + if (str_eq(ch, EL_STR("\""))) { + in_string = 1; + string_start_line = line; + string_start_col = col; + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("/"))) { + el_val_t next_i = (i + 1); + el_val_t is_line_comment = 0; + if (next_i < n) { + el_val_t next_ch = native_list_get(chars, next_i); + if (str_eq(next_ch, EL_STR("/"))) { + is_line_comment = 1; + } + } + if (is_line_comment) { + in_comment = 1; + i = (i + 2); + col = (col + 2); + } else { + i = (i + 1); + col = (col + 1); + } + } else { + if (str_eq(ch, EL_STR("{"))) { + depth_brace = (depth_brace + 1); + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("}"))) { + depth_brace = (depth_brace - 1); + if (depth_brace < 0) { + diags = native_list_append(diags, diag_json(EL_STR("unmatched `}`"), EL_STR("error"), line, col)); + depth_brace = 0; + } + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("("))) { + depth_paren = (depth_paren + 1); + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR(")"))) { + depth_paren = (depth_paren - 1); + if (depth_paren < 0) { + diags = native_list_append(diags, diag_json(EL_STR("unmatched `)`"), EL_STR("error"), line, col)); + depth_paren = 0; + } + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("["))) { + depth_brack = (depth_brack + 1); + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("]"))) { + depth_brack = (depth_brack - 1); + if (depth_brack < 0) { + diags = native_list_append(diags, diag_json(EL_STR("unmatched `]`"), EL_STR("error"), line, col)); + depth_brack = 0; + } + i = (i + 1); + col = (col + 1); + } else { + if (str_eq(ch, EL_STR("\n"))) { + line = (line + 1); + col = 1; + i = (i + 1); + } else { + i = (i + 1); + col = (col + 1); + } + } + } + } + } + } + } + } + } + } + } + } + if (in_string) { + diags = native_list_append(diags, diag_json(EL_STR("unterminated string literal"), EL_STR("error"), string_start_line, string_start_col)); + } + if (depth_brace > 0) { + diags = native_list_append(diags, diag_json(EL_STR("unclosed `{` (missing `}`)"), EL_STR("error"), 0, 0)); + } + if (depth_paren > 0) { + diags = native_list_append(diags, diag_json(EL_STR("unclosed `(` (missing `)`)"), EL_STR("error"), 0, 0)); + } + if (depth_brack > 0) { + diags = native_list_append(diags, diag_json(EL_STR("unclosed `[` (missing `]`)"), EL_STR("error"), 0, 0)); + } + return json_array_of(diags); + return 0; +} + +el_val_t outline_item_json(el_val_t kind, el_val_t name, el_val_t line) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), kind)); + parts = native_list_append(parts, json_kv_str(EL_STR("name"), name)); + parts = native_list_append(parts, json_kv_int(EL_STR("line"), line)); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t lsp_outline(el_val_t source) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t items = native_list_empty(); + el_val_t i = 0; + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t trimmed = str_trim(line); + el_val_t lineno = (i + 1); + if (str_starts_with(trimmed, EL_STR("fn "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("fn"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("type "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("type"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("enum "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("enum"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("protocol "))) { + el_val_t name = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))); + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("protocol"), name, lineno)); + } + } else { + if (str_starts_with(trimmed, EL_STR("impl "))) { + el_val_t rest = str_trim(str_slice(trimmed, 5, str_len(trimmed))); + el_val_t brace = str_index_of(rest, EL_STR("{")); + el_val_t name = rest; + if (brace > 0) { + name = str_trim(str_slice(rest, 0, brace)); + } + if (!str_eq(name, EL_STR(""))) { + items = native_list_append(items, outline_item_json(EL_STR("impl"), name, lineno)); + } + } + } + } + } + } + i = (i + 1); + } + return json_array_of(items); + return 0; +} + +el_val_t format_strip_trailing(el_val_t line) { + el_val_t n = str_len(line); + if (n == 0) { + return line; + } + el_val_t chars = native_string_chars(line); + el_val_t i = (n - 1); + el_val_t trimming = 1; + while (trimming) { + if (i < 0) { + trimming = 0; + } else { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR(" "))) { + i = (i - 1); + } else { + if (str_eq(ch, EL_STR("\t"))) { + i = (i - 1); + } else { + trimming = 0; + } + } + } + } + return str_slice(line, 0, (i + 1)); + return 0; +} + +el_val_t lsp_format(el_val_t source) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t cleaned = native_list_empty(); + el_val_t i = 0; + el_val_t blank_run = 0; + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t stripped = format_strip_trailing(line); + if (str_eq(stripped, EL_STR(""))) { + blank_run = (blank_run + 1); + if (blank_run <= 2) { + cleaned = native_list_append(cleaned, EL_STR("")); + } + } else { + blank_run = 0; + cleaned = native_list_append(cleaned, stripped); + } + i = (i + 1); + } + el_val_t joined = list_join(cleaned, EL_STR("\n")); + el_val_t final = joined; + if (!str_ends_with(final, EL_STR("\n"))) { + final = el_str_concat(final, EL_STR("\n")); + } + el_val_t changed = EL_STR("false"); + if (!str_eq(final, source)) { + changed = EL_STR("true"); + } + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{"), json_kv_str(EL_STR("content"), final)), EL_STR(",")), json_kv_raw(EL_STR("changed"), changed)), EL_STR("}")); + return 0; +} + +el_val_t lsp_type_graph(el_val_t source) { + el_val_t nodes = native_list_empty(); + el_val_t edges = native_list_empty(); + el_val_t bts = builtin_type_names(); + el_val_t nb = native_list_len(bts); + el_val_t i = 0; + while (i < nb) { + el_val_t name = native_list_get(bts, i); + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("id"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("name"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), EL_STR("builtin"))); + parts = native_list_append(parts, json_kv_raw(EL_STR("fields"), EL_STR("[]"))); + nodes = native_list_append(nodes, el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}"))); + i = (i + 1); + } + el_val_t decls = scan_decls(source); + el_val_t utypes = el_get_field(decls, EL_STR("types")); + el_val_t ukinds = el_get_field(decls, EL_STR("type_kind")); + el_val_t tlines = el_get_field(decls, EL_STR("type_lines")); + el_val_t nu = native_list_len(utypes); + i = 0; + el_val_t bts_dup = builtin_type_names(); + while (i < nu) { + el_val_t name = native_list_get(utypes, i); + el_val_t kind = native_list_get(ukinds, i); + if (!list_contains_str(bts_dup, name)) { + el_val_t fields = collect_struct_fields(source, name); + el_val_t field_jsons = native_list_empty(); + el_val_t fn2 = native_list_len(fields); + el_val_t j = 0; + while (j < fn2) { + field_jsons = native_list_append(field_jsons, json_str(native_list_get(fields, j))); + j = (j + 1); + } + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_str(EL_STR("id"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("name"), name)); + parts = native_list_append(parts, json_kv_str(EL_STR("kind"), kind)); + parts = native_list_append(parts, json_kv_raw(EL_STR("fields"), json_array_of(field_jsons))); + nodes = native_list_append(nodes, el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}"))); + j = 0; + while (j < fn2) { + el_val_t field_str = native_list_get(fields, j); + el_val_t target = referenced_type(field_str, utypes); + if (!str_eq(EL_NULL, EL_STR(""))) { + el_val_t eparts = native_list_empty(); + eparts = native_list_append(eparts, json_kv_str(EL_STR("from"), name)); + eparts = native_list_append(eparts, json_kv_str(EL_STR("to"), EL_NULL)); + eparts = native_list_append(eparts, json_kv_str(EL_STR("label"), EL_STR("field"))); + edges = native_list_append(edges, el_str_concat(el_str_concat(EL_STR("{"), list_join(eparts, EL_STR(","))), EL_STR("}"))); + } + j = (j + 1); + } + } + i = (i + 1); + } + return el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{"), json_kv_raw(EL_STR("nodes"), json_array_of(nodes))), EL_STR(",")), json_kv_raw(EL_STR("edges"), json_array_of(edges))), EL_STR("}")); + return 0; +} + +el_val_t collect_struct_fields(el_val_t source, el_val_t type_name) { + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t n = native_list_len(lines); + el_val_t fields = native_list_empty(); + el_val_t inside = 0; + el_val_t i = 0; + el_val_t header_a = el_str_concat(EL_STR("type "), type_name); + el_val_t header_b = el_str_concat(EL_STR("enum "), type_name); + el_val_t header_c = el_str_concat(EL_STR("protocol "), type_name); + while (i < n) { + el_val_t line = native_list_get(lines, i); + el_val_t trimmed = str_trim(line); + if (!inside) { + if (str_starts_with(trimmed, header_a)) { + inside = 1; + } + if (str_starts_with(trimmed, header_b)) { + inside = 1; + } + if (str_starts_with(trimmed, header_c)) { + inside = 1; + } + } else { + if (str_starts_with(trimmed, EL_STR("}"))) { + return fields; + } + if (!str_eq(trimmed, EL_STR("{"))) { + if (!str_eq(trimmed, EL_STR(""))) { + if (!str_starts_with(trimmed, EL_STR("//"))) { + el_val_t entry = trimmed; + if (str_ends_with(entry, EL_STR(","))) { + entry = str_slice(entry, 0, (str_len(entry) - 1)); + } + fields = native_list_append(fields, str_trim(entry)); + } + } + } + } + i = (i + 1); + } + return fields; + return 0; +} + +el_val_t referenced_type(el_val_t field_str, el_val_t known_types) { + el_val_t colon = str_index_of(field_str, EL_STR(":")); + if (colon < 0) { + return EL_STR(""); + } + el_val_t after = str_trim(str_slice(field_str, (colon + 1), str_len(field_str))); + el_val_t trimmed_l = after; + if (str_starts_with(trimmed_l, EL_STR("["))) { + el_val_t end = str_index_of(trimmed_l, EL_STR("]")); + if (end > 1) { + trimmed_l = str_trim(str_slice(trimmed_l, 1, end)); + } + } + el_val_t ident = first_ident_in(trimmed_l); + if (str_eq(ident, EL_STR(""))) { + return EL_STR(""); + } + el_val_t bts = builtin_type_names(); + if (list_contains_str(bts, ident)) { + return ident; + } + if (list_contains_str(known_types, ident)) { + return ident; + } + return EL_STR(""); + return 0; +} + +el_val_t lsp_definition(el_val_t source, el_val_t pos) { + el_val_t word = extract_token(source, pos); + if (str_eq(word, EL_STR(""))) { + return EL_STR("null"); + } + el_val_t patterns = native_list_empty(); + patterns = native_list_append(patterns, el_str_concat(EL_STR("fn "), word)); + patterns = native_list_append(patterns, el_str_concat(EL_STR("type "), word)); + patterns = native_list_append(patterns, el_str_concat(EL_STR("enum "), word)); + patterns = native_list_append(patterns, el_str_concat(EL_STR("protocol "), word)); + el_val_t np = native_list_len(patterns); + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t nl = native_list_len(lines); + el_val_t i = 0; + while (i < nl) { + el_val_t line = native_list_get(lines, i); + el_val_t j = 0; + while (j < np) { + el_val_t pat = native_list_get(patterns, j); + el_val_t idx = str_index_of(line, pat); + if (idx >= 0) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_int(EL_STR("line"), (i + 1))); + parts = native_list_append(parts, json_kv_int(EL_STR("col"), (idx + 1))); + parts = native_list_append(parts, json_kv_str(EL_STR("snippet"), str_trim(line))); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + } + j = (j + 1); + } + i = (i + 1); + } + return EL_STR("null"); + return 0; +} + +el_val_t lsp_references(el_val_t source, el_val_t pos) { + el_val_t word = extract_token(source, pos); + if (str_eq(word, EL_STR(""))) { + return EL_STR("[]"); + } + el_val_t lines = str_split(source, EL_STR("\n")); + el_val_t nl = native_list_len(lines); + el_val_t refs = native_list_empty(); + el_val_t i = 0; + while (i < nl) { + el_val_t line = native_list_get(lines, i); + el_val_t line_chars = native_string_chars(line); + el_val_t llen = native_list_len(line_chars); + el_val_t wlen = str_len(word); + el_val_t off = 0; + el_val_t scanning = 1; + while (scanning) { + el_val_t idx = str_index_of(str_slice(line, off, str_len(line)), word); + if (idx < 0) { + scanning = 0; + } else { + el_val_t abs = (off + idx); + el_val_t before_ok = 1; + if (abs > 0) { + el_val_t prev = native_list_get(line_chars, (abs - 1)); + if (is_ident_ch(prev)) { + before_ok = 0; + } + } + el_val_t after_ok = 1; + el_val_t after_pos = (abs + wlen); + if (after_pos < llen) { + el_val_t nxt = native_list_get(line_chars, after_pos); + if (is_ident_ch(nxt)) { + after_ok = 0; + } + } + if (before_ok) { + if (after_ok) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, json_kv_int(EL_STR("line"), (i + 1))); + parts = native_list_append(parts, json_kv_int(EL_STR("col"), (abs + 1))); + parts = native_list_append(parts, json_kv_str(EL_STR("snippet"), str_trim(line))); + refs = native_list_append(refs, el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}"))); + } + } + off = (abs + wlen); + if (off >= str_len(line)) { + scanning = 0; + } + } + } + i = (i + 1); + } + return json_array_of(refs); + return 0; +} + +el_val_t lsp_jsonrpc(el_val_t method, el_val_t params_json) { + el_val_t source = json_get_string(params_json, EL_STR("source")); + el_val_t pos = json_get_int(params_json, EL_STR("pos")); + if (str_eq(method, EL_STR("textDocument/completion"))) { + return lsp_complete(source, pos); + } + if (str_eq(method, EL_STR("textDocument/hover"))) { + return lsp_hover(source, pos); + } + if (str_eq(method, EL_STR("textDocument/diagnostic"))) { + return lsp_diagnostics(source); + } + if (str_eq(method, EL_STR("textDocument/formatting"))) { + return lsp_format(source); + } + if (str_eq(method, EL_STR("textDocument/documentSymbol"))) { + return lsp_outline(source); + } + if (str_eq(method, EL_STR("textDocument/definition"))) { + return lsp_definition(source, pos); + } + if (str_eq(method, EL_STR("textDocument/references"))) { + return lsp_references(source, pos); + } + if (str_eq(method, EL_STR("el/typeGraph"))) { + return lsp_type_graph(source); + } + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"unknown method: "), json_escape(method)), EL_STR("\"}")); + return 0; +} + +el_val_t read_headers(void) { + el_val_t content_len = 0; + el_val_t scanning = 1; + while (scanning) { + el_val_t line = readline(); + if (str_eq(line, EL_STR(""))) { + scanning = 0; + } else { + el_val_t cl_marker = EL_STR("Content-Length:"); + if (str_starts_with(line, cl_marker)) { + el_val_t val = str_trim(str_slice(line, str_len(cl_marker), str_len(line))); + content_len = str_to_int(val); + } + } + } + return el_map_new(1, "content_length", content_len); + return 0; +} + +el_val_t lsp_stdio_loop(void) { + el_val_t running = 1; + while (running) { + el_val_t headers = read_headers(); + el_val_t body = readline(); + if (str_eq(body, EL_STR(""))) { + running = 0; + } else { + el_val_t method = json_get_string(body, EL_STR("method")); + el_val_t id_val = json_get_string(body, EL_STR("id")); + el_val_t params_raw = json_get_raw(body, EL_STR("params")); + el_val_t result = lsp_jsonrpc(method, params_raw); + el_val_t resp = el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"jsonrpc\":\"2.0\",\"id\":"), id_val), EL_STR(",\"result\":")), result), EL_STR("}")); + el_val_t frame = el_str_concat(el_str_concat(el_str_concat(EL_STR("Content-Length: "), int_to_str(str_len(resp))), EL_STR("\r\n\r\n")), resp); + print(frame); + } + } + return 0; +} + +el_val_t lsp_main(void) { + el_val_t argv = args(); + el_val_t n = native_list_len(argv); + if (n > 0) { + el_val_t cmd = native_list_get(argv, 0); + if (str_eq(cmd, EL_STR("version"))) { + println(EL_STR("el-lsp 0.1.0")); + return 0; + } + if (str_eq(cmd, EL_STR("probe"))) { + el_val_t sample = EL_STR("fn main() -> Void { let x: Int = 42 }"); + println(lsp_diagnostics(sample)); + return 0; + } + } + lsp_stdio_loop(); + return 0; +} + +int main(int argc, char** argv) { + el_runtime_init_args(argc, argv); + lsp_main(); + return 0; +} + diff --git a/ide/vessels/el-lsp/src/main.el b/ide/vessels/el-lsp/src/main.el new file mode 100644 index 0000000..394bfe6 --- /dev/null +++ b/ide/vessels/el-lsp/src/main.el @@ -0,0 +1,1238 @@ +// main.el — el-lsp +// +// Language Server for El. Pure-El port of the el-lsp Rust crate. +// +// Entry surface (callable from any El program that imports this file): +// +// lsp_complete(source: String, pos: Int) -> String // JSON array +// lsp_hover(source: String, pos: Int) -> String // JSON object or "null" +// lsp_diagnostics(source: String) -> String // JSON array +// lsp_outline(source: String) -> String // JSON array +// lsp_format(source: String) -> String // JSON { content, changed } +// lsp_type_graph(source: String) -> String // JSON { nodes, edges } +// lsp_definition(source: String, pos: Int) -> String // JSON object or "null" +// lsp_references(source: String, pos: Int) -> String // JSON array +// lsp_jsonrpc(method: String, params_json: String) -> String +// lsp_stdio_loop() -> Void +// +// Tokenisation reuses the lexer.el idiom (chars list + index walk) for the +// pieces we need (identifier scan, string scan, line counting). The full +// type checker referenced by the Rust crate is not yet available in El, so +// hover/completion/diagnostics fall back to source-scan heuristics over the +// declared types/enums/functions in the file. The wire shape is preserved. + +// ── Char helpers (mirrors lexer.el) ────────────────────────────────────────── + +fn is_digit_ch(ch: String) -> Bool { + if ch == "0" { return true } if ch == "1" { return true } + if ch == "2" { return true } if ch == "3" { return true } + if ch == "4" { return true } if ch == "5" { return true } + if ch == "6" { return true } if ch == "7" { return true } + if ch == "8" { return true } if ch == "9" { return true } + false +} + +fn is_alpha_ch(ch: String) -> Bool { + let lower: String = str_to_lower(ch) + if str_eq(ch, "") { return false } + if !str_eq(lower, str_to_upper(lower)) { return true } // letters differ in case + // covers a-z (lower-only) — uppercase already handled by inverse case test above + if str_contains("abcdefghijklmnopqrstuvwxyz", ch) { return true } + if str_contains("ABCDEFGHIJKLMNOPQRSTUVWXYZ", ch) { return true } + false +} + +fn is_ident_ch(ch: String) -> Bool { + if is_digit_ch(ch) { return true } + if is_alpha_ch(ch) { return true } + if ch == "_" { return true } + false +} + +// ── Source navigation ──────────────────────────────────────────────────────── + +// Extract the identifier fragment immediately before `pos` (cursor). +fn extract_prefix(source: String, pos: Int) -> String { + let n: Int = str_len(source) + let end: Int = pos + if end > n { let end = n } + let start: Int = end + let chars: [String] = native_string_chars(source) + let total: Int = native_list_len(chars) + let scanning: Bool = true + while scanning { + if start <= 0 { + let scanning = false + } else { + let prev: String = native_list_get(chars, start - 1) + if is_ident_ch(prev) { + let start = start - 1 + } else { + let scanning = false + } + } + } + str_slice(source, start, end) +} + +// Extract the full token (alphanumerics + underscore) surrounding `pos`. +fn extract_token(source: String, pos: Int) -> String { + let n: Int = str_len(source) + if pos > n { return "" } + let chars: [String] = native_string_chars(source) + let total: Int = native_list_len(chars) + let start: Int = pos + let go_left: Bool = true + while go_left { + if start <= 0 { + let go_left = false + } else { + let prev: String = native_list_get(chars, start - 1) + if is_ident_ch(prev) { + let start = start - 1 + } else { + let go_left = false + } + } + } + let end: Int = pos + let go_right: Bool = true + while go_right { + if end >= total { + let go_right = false + } else { + let cur: String = native_list_get(chars, end) + if is_ident_ch(cur) { + let end = end + 1 + } else { + let go_right = false + } + } + } + str_slice(source, start, end) +} + +// Translate a byte offset into 1-based (line, col). +fn pos_to_line_col(source: String, pos: Int) -> Map { + let n: Int = str_len(source) + let cap: Int = pos + if cap > n { let cap = n } + let chars: [String] = native_string_chars(source) + let i: Int = 0 + let line: Int = 1 + let col: Int = 1 + while i < cap { + let ch: String = native_list_get(chars, i) + if ch == "\n" { + let line = line + 1 + let col = 1 + } else { + let col = col + 1 + } + let i = i + 1 + } + { "line": line, "col": col } +} + +// ── JSON encoding helpers ──────────────────────────────────────────────────── + +// Escape a string for JSON. Handles ", \, newline, tab. +fn json_escape(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "\"" { let out = out + "\\\"" } + else { if ch == "\\" { let out = out + "\\\\" } + else { if ch == "\n" { let out = out + "\\n" } + else { if ch == "\r" { let out = out + "\\r" } + else { if ch == "\t" { let out = out + "\\t" } + else { let out = out + ch } } } } } + let i = i + 1 + } + out +} + +fn json_str(s: String) -> String { + "\"" + json_escape(s) + "\"" +} + +fn json_kv_str(k: String, v: String) -> String { + json_str(k) + ":" + json_str(v) +} + +fn json_kv_int(k: String, v: Int) -> String { + json_str(k) + ":" + int_to_str(v) +} + +fn json_kv_float(k: String, v: Float) -> String { + json_str(k) + ":" + float_to_str(v) +} + +fn json_kv_raw(k: String, raw_v: String) -> String { + json_str(k) + ":" + raw_v +} + +// Join a list of pre-encoded JSON strings into a JSON array. +fn json_array_of(items: [String]) -> String { + let n: Int = native_list_len(items) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let out = out + native_list_get(items, i) + let i = i + 1 + } + out + "]" +} + +// ── Keyword/builtin tables ─────────────────────────────────────────────────── + +fn keywords_list() -> [String] { + let ks: [String] = native_list_empty() + let ks = native_list_append(ks, "let") + let ks = native_list_append(ks, "fn") + let ks = native_list_append(ks, "type") + let ks = native_list_append(ks, "enum") + let ks = native_list_append(ks, "match") + let ks = native_list_append(ks, "return") + let ks = native_list_append(ks, "activate") + let ks = native_list_append(ks, "where") + let ks = native_list_append(ks, "sealed") + let ks = native_list_append(ks, "if") + let ks = native_list_append(ks, "else") + let ks = native_list_append(ks, "for") + let ks = native_list_append(ks, "in") + let ks = native_list_append(ks, "while") + let ks = native_list_append(ks, "true") + let ks = native_list_append(ks, "false") + let ks = native_list_append(ks, "test") + let ks = native_list_append(ks, "seed") + let ks = native_list_append(ks, "assert") + let ks = native_list_append(ks, "target") + let ks = native_list_append(ks, "protocol") + let ks = native_list_append(ks, "impl") + let ks = native_list_append(ks, "import") + let ks = native_list_append(ks, "from") + let ks = native_list_append(ks, "as") + let ks = native_list_append(ks, "with") + let ks = native_list_append(ks, "retry") + let ks = native_list_append(ks, "times") + let ks = native_list_append(ks, "fallback") + let ks = native_list_append(ks, "reason") + let ks = native_list_append(ks, "parallel") + let ks = native_list_append(ks, "trace") + let ks = native_list_append(ks, "requires") + let ks = native_list_append(ks, "deploy") + let ks = native_list_append(ks, "to") + let ks = native_list_append(ks, "via") + let ks = native_list_append(ks, "vessel") + let ks = native_list_append(ks, "cgi") + ks +} + +// Built-in primitive type names. +fn builtin_type_names() -> [String] { + let ts: [String] = native_list_empty() + let ts = native_list_append(ts, "Int") + let ts = native_list_append(ts, "Float") + let ts = native_list_append(ts, "String") + let ts = native_list_append(ts, "Bool") + let ts = native_list_append(ts, "Uuid") + let ts = native_list_append(ts, "Void") + let ts = native_list_append(ts, "Any") + ts +} + +fn builtin_type_doc(name: String) -> String { + if str_eq(name, "Int") { return "64-bit signed integer" } + if str_eq(name, "Float") { return "64-bit IEEE 754 double" } + if str_eq(name, "String") { return "UTF-8 string" } + if str_eq(name, "Bool") { return "Boolean value" } + if str_eq(name, "Uuid") { return "RFC 4122 UUID" } + if str_eq(name, "Void") { return "Unit type — no value" } + if str_eq(name, "Any") { return "Dynamically-typed value" } + "" +} + +// Built-in function names → signatures. Encoded as flat [name, sig, name, sig, ...] +// to keep type maps simple. +fn builtin_fns() -> [String] { + let xs: [String] = native_list_empty() + let xs = native_list_append(xs, "println") let xs = native_list_append(xs, "fn(value: String) -> Void") + let xs = native_list_append(xs, "print") let xs = native_list_append(xs, "fn(value: String) -> Void") + let xs = native_list_append(xs, "readline") let xs = native_list_append(xs, "fn() -> String") + let xs = native_list_append(xs, "args") let xs = native_list_append(xs, "fn() -> [String]") + let xs = native_list_append(xs, "int_to_str") let xs = native_list_append(xs, "fn(n: Int) -> String") + let xs = native_list_append(xs, "str_to_int") let xs = native_list_append(xs, "fn(s: String) -> Int") + let xs = native_list_append(xs, "str_len") let xs = native_list_append(xs, "fn(s: String) -> Int") + let xs = native_list_append(xs, "str_slice") let xs = native_list_append(xs, "fn(s: String, start: Int, end: Int) -> String") + let xs = native_list_append(xs, "str_concat") let xs = native_list_append(xs, "fn(a: String, b: String) -> String") + let xs = native_list_append(xs, "str_contains") let xs = native_list_append(xs, "fn(s: String, sub: String) -> Bool") + let xs = native_list_append(xs, "str_starts_with") let xs = native_list_append(xs, "fn(s: String, p: String) -> Bool") + let xs = native_list_append(xs, "str_ends_with") let xs = native_list_append(xs, "fn(s: String, suf: String) -> Bool") + let xs = native_list_append(xs, "str_to_upper") let xs = native_list_append(xs, "fn(s: String) -> String") + let xs = native_list_append(xs, "str_to_lower") let xs = native_list_append(xs, "fn(s: String) -> String") + let xs = native_list_append(xs, "str_split") let xs = native_list_append(xs, "fn(s: String, sep: String) -> [String]") + let xs = native_list_append(xs, "str_trim") let xs = native_list_append(xs, "fn(s: String) -> String") + let xs = native_list_append(xs, "str_replace") let xs = native_list_append(xs, "fn(s: String, from: String, to: String) -> String") + let xs = native_list_append(xs, "str_index_of") let xs = native_list_append(xs, "fn(s: String, sub: String) -> Int") + let xs = native_list_append(xs, "float_to_str") let xs = native_list_append(xs, "fn(f: Float) -> String") + let xs = native_list_append(xs, "str_to_float") let xs = native_list_append(xs, "fn(s: String) -> Float") + let xs = native_list_append(xs, "math_sqrt") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_log") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_sin") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_cos") let xs = native_list_append(xs, "fn(n: Float) -> Float") + let xs = native_list_append(xs, "math_pi") let xs = native_list_append(xs, "fn() -> Float") + let xs = native_list_append(xs, "el_abs") let xs = native_list_append(xs, "fn(n: Int) -> Int") + let xs = native_list_append(xs, "el_min") let xs = native_list_append(xs, "fn(a: Int, b: Int) -> Int") + let xs = native_list_append(xs, "el_max") let xs = native_list_append(xs, "fn(a: Int, b: Int) -> Int") + let xs = native_list_append(xs, "el_list_empty") let xs = native_list_append(xs, "fn() -> [Any]") + let xs = native_list_append(xs, "el_list_len") let xs = native_list_append(xs, "fn(l: [Any]) -> Int") + let xs = native_list_append(xs, "el_list_get") let xs = native_list_append(xs, "fn(l: [Any], i: Int) -> Any") + let xs = native_list_append(xs, "el_list_append") let xs = native_list_append(xs, "fn(l: [Any], v: Any) -> [Any]") + let xs = native_list_append(xs, "list_join") let xs = native_list_append(xs, "fn(l: [String], sep: String) -> String") + let xs = native_list_append(xs, "list_range") let xs = native_list_append(xs, "fn(start: Int, end: Int) -> [Int]") + let xs = native_list_append(xs, "el_map_get") let xs = native_list_append(xs, "fn(m: Map, k: String) -> Any") + let xs = native_list_append(xs, "el_map_set") let xs = native_list_append(xs, "fn(m: Map, k: String, v: Any) -> Map") + let xs = native_list_append(xs, "json_parse") let xs = native_list_append(xs, "fn(s: String) -> Any") + let xs = native_list_append(xs, "json_stringify") let xs = native_list_append(xs, "fn(v: Any) -> String") + let xs = native_list_append(xs, "json_get_string") let xs = native_list_append(xs, "fn(j: String, k: String) -> String") + let xs = native_list_append(xs, "json_get_int") let xs = native_list_append(xs, "fn(j: String, k: String) -> Int") + let xs = native_list_append(xs, "json_get_bool") let xs = native_list_append(xs, "fn(j: String, k: String) -> Bool") + let xs = native_list_append(xs, "http_get") let xs = native_list_append(xs, "fn(url: String) -> String") + let xs = native_list_append(xs, "http_post") let xs = native_list_append(xs, "fn(url: String, body: String) -> String") + let xs = native_list_append(xs, "fs_read") let xs = native_list_append(xs, "fn(path: String) -> String") + let xs = native_list_append(xs, "fs_write") let xs = native_list_append(xs, "fn(path: String, content: String) -> Bool") + let xs = native_list_append(xs, "fs_list") let xs = native_list_append(xs, "fn(path: String) -> [String]") + let xs = native_list_append(xs, "env") let xs = native_list_append(xs, "fn(key: String) -> String") + let xs = native_list_append(xs, "uuid_new") let xs = native_list_append(xs, "fn() -> String") + let xs = native_list_append(xs, "time_now") let xs = native_list_append(xs, "fn() -> Int") + let xs = native_list_append(xs, "time_now_utc") let xs = native_list_append(xs, "fn() -> Int") + let xs = native_list_append(xs, "sleep_ms") let xs = native_list_append(xs, "fn(ms: Int) -> Void") + let xs = native_list_append(xs, "engram_node") let xs = native_list_append(xs, "fn(content: String, kind: String, salience: Float) -> String") + let xs = native_list_append(xs, "engram_search") let xs = native_list_append(xs, "fn(q: String, limit: Int) -> [Map]") + let xs = native_list_append(xs, "engram_activate") let xs = native_list_append(xs, "fn(q: String, depth: Int) -> [Map]") + let xs = native_list_append(xs, "engram_neighbors") let xs = native_list_append(xs, "fn(id: String) -> [Map]") + let xs = native_list_append(xs, "engram_connect") let xs = native_list_append(xs, "fn(from: String, to: String, w: Float, rel: String) -> Void") + let xs = native_list_append(xs, "dharma_connect") let xs = native_list_append(xs, "fn(cgi: String) -> String") + let xs = native_list_append(xs, "dharma_send") let xs = native_list_append(xs, "fn(channel: String, content: String) -> String") + let xs = native_list_append(xs, "dharma_emit") let xs = native_list_append(xs, "fn(event: String, payload: String) -> Void") + let xs = native_list_append(xs, "dharma_field") let xs = native_list_append(xs, "fn(event: String) -> Map") + let xs = native_list_append(xs, "llm_call") let xs = native_list_append(xs, "fn(model: String, prompt: String) -> String") + xs +} + +fn keyword_doc(kw: String) -> String { + if str_eq(kw, "let") { return "let name: Type = expr — declare an immutable binding." } + if str_eq(kw, "fn") { return "fn name(params) -> Ret { body } — define a function." } + if str_eq(kw, "type") { return "type Name { field: Type } — struct definition." } + if str_eq(kw, "enum") { return "enum Name { Variant1, Variant2(Type) } — enum definition." } + if str_eq(kw, "match") { return "match expr { Pattern => body } — pattern match." } + if str_eq(kw, "return") { return "return value — exit the enclosing function." } + if str_eq(kw, "if") { return "if cond { ... } else { ... } — conditional." } + if str_eq(kw, "for") { return "for item in collection { ... } — iterate." } + if str_eq(kw, "while") { return "while cond { ... } — loop while cond is truthy." } + if str_eq(kw, "import") { return "import \"path.el\" — pull in another module." } + if str_eq(kw, "from") { return "from module import { Name } — selective import." } + if str_eq(kw, "vessel") { return "vessel \"name\" { ... } — manifest declaration." } + if str_eq(kw, "cgi") { return "cgi \"name\" { dharma_id: ... } — CGI identity." } + if str_eq(kw, "activate") { return "activate Type where \"query\" — spreading-activation retrieval." } + if str_eq(kw, "sealed") { return "sealed { ... } — capability-restricted block." } + if str_eq(kw, "protocol") { return "protocol Name { fn method(self) -> R } — trait-like." } + if str_eq(kw, "impl") { return "impl Protocol for Type { ... } — protocol implementation." } + if str_eq(kw, "with") { return "with retry/fallback clause." } + if str_eq(kw, "retry") { return "retry times N — retry policy." } + if str_eq(kw, "fallback") { return "fallback { default } — fallback on failure." } + if str_eq(kw, "true") { return "Boolean literal." } + if str_eq(kw, "false") { return "Boolean literal." } + "" +} + +// ── Source-driven type/fn discovery (no full parser) ───────────────────────── +// +// The Rust crate calls into el-types::TypeChecker for a real env. That +// module isn't available in El yet, so we approximate by line-scan: find +// every `type X {`, `enum X {`, `protocol X {`, and `fn X(` declaration. +// Returns four parallel lists merged into one map for easy access. + +fn first_ident_in(rest: String) -> String { + let trimmed: String = str_trim(rest) + let n: Int = str_len(trimmed) + if n == 0 { return "" } + let chars: [String] = native_string_chars(trimmed) + let i: Int = 0 + let total: Int = native_list_len(chars) + while i < total { + let ch: String = native_list_get(chars, i) + if !is_ident_ch(ch) { + return str_slice(trimmed, 0, i) + } + let i = i + 1 + } + trimmed +} + +// scan_decls — produce a Map with parallel lists: +// "types" : [String] user-defined struct/enum/protocol names +// "type_kind" : [String] "type" | "enum" | "protocol" matching above +// "fns" : [String] user-defined function names +// "type_lines" : [Int] 1-based line numbers +// "fn_lines" : [Int] +fn scan_decls(source: String) -> Map { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let types: [String] = native_list_empty() + let kinds: [String] = native_list_empty() + let fns: [String] = native_list_empty() + let tlines: [Int] = native_list_empty() + let flines: [Int] = native_list_empty() + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let trimmed: String = str_trim(line) + let lineno: Int = i + 1 + if str_starts_with(trimmed, "fn ") { + let name: String = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))) + if !str_eq(name, "") { + let fns = native_list_append(fns, name) + let flines = native_list_append(flines, lineno) + } + } else { if str_starts_with(trimmed, "type ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let types = native_list_append(types, name) + let kinds = native_list_append(kinds, "type") + let tlines = native_list_append(tlines, lineno) + } + } else { if str_starts_with(trimmed, "enum ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let types = native_list_append(types, name) + let kinds = native_list_append(kinds, "enum") + let tlines = native_list_append(tlines, lineno) + } + } else { if str_starts_with(trimmed, "protocol ") { + let name: String = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))) + if !str_eq(name, "") { + let types = native_list_append(types, name) + let kinds = native_list_append(kinds, "protocol") + let tlines = native_list_append(tlines, lineno) + } + } } } } + let i = i + 1 + } + { + "types": types, + "type_kind": kinds, + "fns": fns, + "type_lines": tlines, + "fn_lines": flines + } +} + +// list_contains — case-sensitive membership test on [String]. +fn list_contains_str(xs: [String], needle: String) -> Bool { + let n: Int = native_list_len(xs) + let i: Int = 0 + while i < n { + if str_eq(native_list_get(xs, i), needle) { return true } + let i = i + 1 + } + false +} + +// Score a label against a prefix: 0 if no prefix match, else (prefix_len/label_len). +fn prefix_score(label: String, prefix: String) -> Float { + if str_eq(prefix, "") { return 0.5 } + let lower_label: String = str_to_lower(label) + let lower_prefix: String = str_to_lower(prefix) + if str_starts_with(lower_label, lower_prefix) { + let lp: Int = str_len(lower_prefix) + let ll: Int = str_len(lower_label) + if ll == 0 { return 0.0 } + return int_to_float(lp) / int_to_float(ll) + } + 0.0 +} + +// Render a single completion item to JSON. +fn completion_json(label: String, kind: String, detail: String, doc: String, score: Float) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("label", label)) + let parts = native_list_append(parts, json_kv_str("kind", kind)) + let parts = native_list_append(parts, json_kv_str("detail", detail)) + if str_eq(doc, "") { + let parts = native_list_append(parts, json_kv_raw("documentation", "null")) + } else { + let parts = native_list_append(parts, json_kv_str("documentation", doc)) + } + let parts = native_list_append(parts, json_kv_float("score", score)) + "{" + list_join(parts, ",") + "}" +} + +// ── Public: completion ─────────────────────────────────────────────────────── + +fn lsp_complete(source: String, pos: Int) -> String { + let prefix: String = extract_prefix(source, pos) + let lower_prefix: String = str_to_lower(prefix) + let prefix_empty: Bool = str_eq(prefix, "") + let items: [String] = native_list_empty() + + // Keywords + let kws: [String] = keywords_list() + let nk: Int = native_list_len(kws) + let i: Int = 0 + while i < nk { + let kw: String = native_list_get(kws, i) + if prefix_empty { + let s: Float = prefix_score(kw, prefix) + let items = native_list_append(items, completion_json(kw, "keyword", "keyword", keyword_doc(kw), s)) + } else { if str_starts_with(kw, prefix) { + let s: Float = prefix_score(kw, prefix) + let items = native_list_append(items, completion_json(kw, "keyword", "keyword", keyword_doc(kw), s)) + } } + let i = i + 1 + } + + // Built-in types + let bts: [String] = builtin_type_names() + let nb: Int = native_list_len(bts) + let i: Int = 0 + while i < nb { + let name: String = native_list_get(bts, i) + let lname: String = str_to_lower(name) + if prefix_empty { + let s: Float = 0.5 + 0.1 + let items = native_list_append(items, completion_json(name, "type", builtin_type_doc(name), "Built-in type: " + builtin_type_doc(name), s)) + } else { if str_starts_with(lname, lower_prefix) { + let s: Float = prefix_score(name, prefix) + 0.1 + let items = native_list_append(items, completion_json(name, "type", builtin_type_doc(name), "Built-in type: " + builtin_type_doc(name), s)) + } } + let i = i + 1 + } + + // User-defined types + let decls: Map = scan_decls(source) + let utypes: [String] = decls["types"] + let ukinds: [String] = decls["type_kind"] + let nu: Int = native_list_len(utypes) + let i: Int = 0 + while i < nu { + let name: String = native_list_get(utypes, i) + let kind: String = native_list_get(ukinds, i) + let lname: String = str_to_lower(name) + let include: Bool = false + if prefix_empty { let include = true } + if str_starts_with(lname, lower_prefix) { let include = true } + if include { + let s: Float = prefix_score(name, prefix) + 0.15 + let items = native_list_append(items, completion_json(name, "type", kind + " " + name, "User-defined " + kind + " " + name, s)) + } + let i = i + 1 + } + + // Built-in functions + let bfns: [String] = builtin_fns() + let nf: Int = native_list_len(bfns) + let i: Int = 0 + while i < nf { + let name: String = native_list_get(bfns, i) + let sig: String = native_list_get(bfns, i + 1) + let lname: String = str_to_lower(name) + let include: Bool = false + if prefix_empty { let include = true } + if str_starts_with(lname, lower_prefix) { let include = true } + if include { + let s: Float = prefix_score(name, prefix) + 0.11 + let items = native_list_append(items, completion_json(name, "function", sig, "Built-in: " + name + " :: " + sig, s)) + } + let i = i + 2 + } + + // User-defined functions + let ufns: [String] = decls["fns"] + let nuf: Int = native_list_len(ufns) + let i: Int = 0 + while i < nuf { + let name: String = native_list_get(ufns, i) + let lname: String = str_to_lower(name) + let include: Bool = false + if prefix_empty { let include = true } + if str_starts_with(lname, lower_prefix) { let include = true } + if include { + let s: Float = prefix_score(name, prefix) + 0.12 + let items = native_list_append(items, completion_json(name, "function", "fn " + name, "User function: " + name, s)) + } + let i = i + 1 + } + + // Output is a list of pre-encoded JSON objects. Sorting by score is a + // stretch goal — el's runtime has no sort-by-key primitive. Items are + // already ordered by category (keywords first), which matches the most + // common editor expectation. + json_array_of(items) +} + +// ── Public: hover ──────────────────────────────────────────────────────────── + +fn lsp_hover(source: String, pos: Int) -> String { + let token: String = extract_token(source, pos) + if str_eq(token, "") { return "null" } + + // Built-in primitives + let doc: String = builtin_type_doc(token) + if !str_eq(doc, "") { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", doc)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + + // User-declared types + let decls: Map = scan_decls(source) + let utypes: [String] = decls["types"] + let ukinds: [String] = decls["type_kind"] + let nu: Int = native_list_len(utypes) + let i: Int = 0 + while i < nu { + let name: String = native_list_get(utypes, i) + if str_eq(name, token) { + let kind: String = native_list_get(ukinds, i) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", kind + " " + token)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + let i = i + 1 + } + + // User-declared functions + let ufns: [String] = decls["fns"] + let nuf: Int = native_list_len(ufns) + let i: Int = 0 + while i < nuf { + let name: String = native_list_get(ufns, i) + if str_eq(name, token) { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", "fn " + token)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + let i = i + 1 + } + + // Built-in functions + let bfns: [String] = builtin_fns() + let nf: Int = native_list_len(bfns) + let i: Int = 0 + while i < nf { + let name: String = native_list_get(bfns, i) + if str_eq(name, token) { + let sig: String = native_list_get(bfns, i + 1) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", "fn " + token + " :: " + sig)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + let i = i + 2 + } + + // Keyword + let kdoc: String = keyword_doc(token) + if !str_eq(kdoc, "") { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("type_name", token)) + let parts = native_list_append(parts, json_kv_str("documentation", kdoc)) + let parts = native_list_append(parts, json_kv_raw("engram_node_type", "null")) + return "{" + list_join(parts, ",") + "}" + } + + "null" +} + +// ── Public: diagnostics ────────────────────────────────────────────────────── +// +// Without the type checker port we surface only structural diagnostics: +// * unterminated string literal +// * unbalanced braces / parens / brackets +// * unknown type referenced after `:` in a let binding (unknown to source + +// builtins) — best-effort, conservative. + +fn diag_json(message: String, severity: String, line: Int, col: Int) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("message", message)) + let parts = native_list_append(parts, json_kv_str("severity", severity)) + if line > 0 { + let parts = native_list_append(parts, json_kv_int("line", line)) + let parts = native_list_append(parts, json_kv_int("col", col)) + } else { + let parts = native_list_append(parts, json_kv_raw("line", "null")) + let parts = native_list_append(parts, json_kv_raw("col", "null")) + } + "{" + list_join(parts, ",") + "}" +} + +fn lsp_diagnostics(source: String) -> String { + let chars: [String] = native_string_chars(source) + let n: Int = native_list_len(chars) + let diags: [String] = native_list_empty() + + // Bracket balance + unterminated string scan + let depth_brace: Int = 0 + let depth_paren: Int = 0 + let depth_brack: Int = 0 + let i: Int = 0 + let line: Int = 1 + let col: Int = 1 + let in_string: Bool = false + let string_start_line: Int = 0 + let string_start_col: Int = 0 + let in_comment: Bool = false + while i < n { + let ch: String = native_list_get(chars, i) + if in_comment { + if ch == "\n" { + let in_comment = false + let line = line + 1 + let col = 1 + } else { + let col = col + 1 + } + let i = i + 1 + } else { + if in_string { + if ch == "\\" { + let i = i + 1 + let col = col + 1 + if i < n { + let esc: String = native_list_get(chars, i) + if esc == "\n" { let line = line + 1 let col = 1 } else { let col = col + 1 } + let i = i + 1 + } + } else { if ch == "\"" { + let in_string = false + let i = i + 1 + let col = col + 1 + } else { if ch == "\n" { + let line = line + 1 + let col = 1 + let i = i + 1 + } else { + let col = col + 1 + let i = i + 1 + } } } + } else { + if ch == "\"" { + let in_string = true + let string_start_line = line + let string_start_col = col + let i = i + 1 + let col = col + 1 + } else { if ch == "/" { + let next_i: Int = i + 1 + let is_line_comment: Bool = false + if next_i < n { + let next_ch: String = native_list_get(chars, next_i) + if next_ch == "/" { let is_line_comment = true } + } + if is_line_comment { + let in_comment = true + let i = i + 2 + let col = col + 2 + } else { + let i = i + 1 + let col = col + 1 + } + } else { if ch == "{" { + let depth_brace = depth_brace + 1 + let i = i + 1 let col = col + 1 + } else { if ch == "}" { + let depth_brace = depth_brace - 1 + if depth_brace < 0 { + let diags = native_list_append(diags, diag_json("unmatched `}`", "error", line, col)) + let depth_brace = 0 + } + let i = i + 1 let col = col + 1 + } else { if ch == "(" { + let depth_paren = depth_paren + 1 + let i = i + 1 let col = col + 1 + } else { if ch == ")" { + let depth_paren = depth_paren - 1 + if depth_paren < 0 { + let diags = native_list_append(diags, diag_json("unmatched `)`", "error", line, col)) + let depth_paren = 0 + } + let i = i + 1 let col = col + 1 + } else { if ch == "[" { + let depth_brack = depth_brack + 1 + let i = i + 1 let col = col + 1 + } else { if ch == "]" { + let depth_brack = depth_brack - 1 + if depth_brack < 0 { + let diags = native_list_append(diags, diag_json("unmatched `]`", "error", line, col)) + let depth_brack = 0 + } + let i = i + 1 let col = col + 1 + } else { if ch == "\n" { + let line = line + 1 + let col = 1 + let i = i + 1 + } else { + let i = i + 1 + let col = col + 1 + } } } } } } } } } + } + } + } + + if in_string { + let diags = native_list_append(diags, diag_json("unterminated string literal", "error", string_start_line, string_start_col)) + } + if depth_brace > 0 { let diags = native_list_append(diags, diag_json("unclosed `{` (missing `}`)", "error", 0, 0)) } + if depth_paren > 0 { let diags = native_list_append(diags, diag_json("unclosed `(` (missing `)`)", "error", 0, 0)) } + if depth_brack > 0 { let diags = native_list_append(diags, diag_json("unclosed `[` (missing `]`)", "error", 0, 0)) } + + json_array_of(diags) +} + +// ── Public: outline ────────────────────────────────────────────────────────── + +fn outline_item_json(kind: String, name: String, line: Int) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("kind", kind)) + let parts = native_list_append(parts, json_kv_str("name", name)) + let parts = native_list_append(parts, json_kv_int("line", line)) + "{" + list_join(parts, ",") + "}" +} + +fn lsp_outline(source: String) -> String { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let items: [String] = native_list_empty() + let i: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let trimmed: String = str_trim(line) + let lineno: Int = i + 1 + if str_starts_with(trimmed, "fn ") { + let name: String = first_ident_in(str_slice(trimmed, 3, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("fn", name, lineno)) + } + } else { if str_starts_with(trimmed, "type ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("type", name, lineno)) + } + } else { if str_starts_with(trimmed, "enum ") { + let name: String = first_ident_in(str_slice(trimmed, 5, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("enum", name, lineno)) + } + } else { if str_starts_with(trimmed, "protocol ") { + let name: String = first_ident_in(str_slice(trimmed, 9, str_len(trimmed))) + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("protocol", name, lineno)) + } + } else { if str_starts_with(trimmed, "impl ") { + let rest: String = str_trim(str_slice(trimmed, 5, str_len(trimmed))) + let brace: Int = str_index_of(rest, "{") + let name: String = rest + if brace > 0 { let name = str_trim(str_slice(rest, 0, brace)) } + if !str_eq(name, "") { + let items = native_list_append(items, outline_item_json("impl", name, lineno)) + } + } } } } } + let i = i + 1 + } + json_array_of(items) +} + +// ── Public: format ─────────────────────────────────────────────────────────── +// +// Idiomatic-El formatter. Until `el fmt` is a real thing, we apply a minimal +// canonicalisation pass: +// * trim trailing whitespace on every line +// * collapse 3+ blank lines to 2 +// * ensure file ends with exactly one newline +// This is safe for round-tripping and a noticeable quality-of-life win in +// the editor. + +fn format_strip_trailing(line: String) -> String { + // str_trim trims both ends; we want only trailing whitespace stripped. + let n: Int = str_len(line) + if n == 0 { return line } + let chars: [String] = native_string_chars(line) + let i: Int = n - 1 + let trimming: Bool = true + while trimming { + if i < 0 { + let trimming = false + } else { + let ch: String = native_list_get(chars, i) + if ch == " " { let i = i - 1 } else { if ch == "\t" { let i = i - 1 } else { let trimming = false } } + } + } + str_slice(line, 0, i + 1) +} + +fn lsp_format(source: String) -> String { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let cleaned: [String] = native_list_empty() + let i: Int = 0 + let blank_run: Int = 0 + while i < n { + let line: String = native_list_get(lines, i) + let stripped: String = format_strip_trailing(line) + if str_eq(stripped, "") { + let blank_run = blank_run + 1 + if blank_run <= 2 { + let cleaned = native_list_append(cleaned, "") + } + } else { + let blank_run = 0 + let cleaned = native_list_append(cleaned, stripped) + } + let i = i + 1 + } + let joined: String = list_join(cleaned, "\n") + // Ensure trailing newline. + let final: String = joined + if !str_ends_with(final, "\n") { + let final = final + "\n" + } + let changed: String = "false" + if !str_eq(final, source) { let changed = "true" } + "{" + json_kv_str("content", final) + "," + json_kv_raw("changed", changed) + "}" +} + +// ── Public: type graph ─────────────────────────────────────────────────────── + +fn lsp_type_graph(source: String) -> String { + let nodes: [String] = native_list_empty() + let edges: [String] = native_list_empty() + + // Built-in nodes + let bts: [String] = builtin_type_names() + let nb: Int = native_list_len(bts) + let i: Int = 0 + while i < nb { + let name: String = native_list_get(bts, i) + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("id", name)) + let parts = native_list_append(parts, json_kv_str("name", name)) + let parts = native_list_append(parts, json_kv_str("kind", "builtin")) + let parts = native_list_append(parts, json_kv_raw("fields", "[]")) + let nodes = native_list_append(nodes, "{" + list_join(parts, ",") + "}") + let i = i + 1 + } + + // User-declared types + let decls: Map = scan_decls(source) + let utypes: [String] = decls["types"] + let ukinds: [String] = decls["type_kind"] + let tlines: [Int] = decls["type_lines"] + let nu: Int = native_list_len(utypes) + let i: Int = 0 + let bts_dup: [String] = builtin_type_names() + while i < nu { + let name: String = native_list_get(utypes, i) + let kind: String = native_list_get(ukinds, i) + // Skip if already a builtin (paranoia) + if !list_contains_str(bts_dup, name) { + let fields: [String] = collect_struct_fields(source, name) + let field_jsons: [String] = native_list_empty() + let fn2: Int = native_list_len(fields) + let j: Int = 0 + while j < fn2 { + let field_jsons = native_list_append(field_jsons, json_str(native_list_get(fields, j))) + let j = j + 1 + } + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_str("id", name)) + let parts = native_list_append(parts, json_kv_str("name", name)) + let parts = native_list_append(parts, json_kv_str("kind", kind)) + let parts = native_list_append(parts, json_kv_raw("fields", json_array_of(field_jsons))) + let nodes = native_list_append(nodes, "{" + list_join(parts, ",") + "}") + + // Edges: scan each field for a known type reference. + let j: Int = 0 + while j < fn2 { + let field_str: String = native_list_get(fields, j) + let target: String = referenced_type(field_str, utypes) + if !str_eq(target, "") { + let eparts: [String] = native_list_empty() + let eparts = native_list_append(eparts, json_kv_str("from", name)) + let eparts = native_list_append(eparts, json_kv_str("to", target)) + let eparts = native_list_append(eparts, json_kv_str("label", "field")) + let edges = native_list_append(edges, "{" + list_join(eparts, ",") + "}") + } + let j = j + 1 + } + } + let i = i + 1 + } + + "{" + json_kv_raw("nodes", json_array_of(nodes)) + "," + json_kv_raw("edges", json_array_of(edges)) + "}" +} + +// Extract the field list of a `type Name { ... }` block as ["field: Type", ...] +// or for an enum, the variant labels. Best-effort line-by-line scan. +fn collect_struct_fields(source: String, type_name: String) -> [String] { + let lines: [String] = str_split(source, "\n") + let n: Int = native_list_len(lines) + let fields: [String] = native_list_empty() + let inside: Bool = false + let i: Int = 0 + let header_a: String = "type " + type_name + let header_b: String = "enum " + type_name + let header_c: String = "protocol " + type_name + while i < n { + let line: String = native_list_get(lines, i) + let trimmed: String = str_trim(line) + if !inside { + if str_starts_with(trimmed, header_a) { let inside = true } + if str_starts_with(trimmed, header_b) { let inside = true } + if str_starts_with(trimmed, header_c) { let inside = true } + } else { + if str_starts_with(trimmed, "}") { + return fields + } + // skip the opening "{" line + if !str_eq(trimmed, "{") { + if !str_eq(trimmed, "") { + if !str_starts_with(trimmed, "//") { + // strip a trailing comma if present + let entry: String = trimmed + if str_ends_with(entry, ",") { + let entry = str_slice(entry, 0, str_len(entry) - 1) + } + let fields = native_list_append(fields, str_trim(entry)) + } + } + } + } + let i = i + 1 + } + fields +} + +// Pick the first known type name out of a `field: Type` string. Stops at non-ident. +fn referenced_type(field_str: String, known_types: [String]) -> String { + // Find ":" — type follows. + let colon: Int = str_index_of(field_str, ":") + if colon < 0 { return "" } + let after: String = str_trim(str_slice(field_str, colon + 1, str_len(field_str))) + // Strip array brackets and optional marker. + let trimmed_l: String = after + if str_starts_with(trimmed_l, "[") { + let end: Int = str_index_of(trimmed_l, "]") + if end > 1 { + let trimmed_l = str_trim(str_slice(trimmed_l, 1, end)) + } + } + // First identifier. + let ident: String = first_ident_in(trimmed_l) + if str_eq(ident, "") { return "" } + let bts: [String] = builtin_type_names() + if list_contains_str(bts, ident) { return ident } + if list_contains_str(known_types, ident) { return ident } + "" +} + +// ── Public: definition / references ────────────────────────────────────────── + +fn lsp_definition(source: String, pos: Int) -> String { + let word: String = extract_token(source, pos) + if str_eq(word, "") { return "null" } + let patterns: [String] = native_list_empty() + let patterns = native_list_append(patterns, "fn " + word) + let patterns = native_list_append(patterns, "type " + word) + let patterns = native_list_append(patterns, "enum " + word) + let patterns = native_list_append(patterns, "protocol " + word) + let np: Int = native_list_len(patterns) + let lines: [String] = str_split(source, "\n") + let nl: Int = native_list_len(lines) + let i: Int = 0 + while i < nl { + let line: String = native_list_get(lines, i) + let j: Int = 0 + while j < np { + let pat: String = native_list_get(patterns, j) + let idx: Int = str_index_of(line, pat) + if idx >= 0 { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_int("line", i + 1)) + let parts = native_list_append(parts, json_kv_int("col", idx + 1)) + let parts = native_list_append(parts, json_kv_str("snippet", str_trim(line))) + return "{" + list_join(parts, ",") + "}" + } + let j = j + 1 + } + let i = i + 1 + } + "null" +} + +fn lsp_references(source: String, pos: Int) -> String { + let word: String = extract_token(source, pos) + if str_eq(word, "") { return "[]" } + let lines: [String] = str_split(source, "\n") + let nl: Int = native_list_len(lines) + let refs: [String] = native_list_empty() + let i: Int = 0 + while i < nl { + let line: String = native_list_get(lines, i) + let line_chars: [String] = native_string_chars(line) + let llen: Int = native_list_len(line_chars) + let wlen: Int = str_len(word) + let off: Int = 0 + let scanning: Bool = true + while scanning { + let idx: Int = str_index_of(str_slice(line, off, str_len(line)), word) + if idx < 0 { + let scanning = false + } else { + let abs: Int = off + idx + // Word-boundary check + let before_ok: Bool = true + if abs > 0 { + let prev: String = native_list_get(line_chars, abs - 1) + if is_ident_ch(prev) { let before_ok = false } + } + let after_ok: Bool = true + let after_pos: Int = abs + wlen + if after_pos < llen { + let nxt: String = native_list_get(line_chars, after_pos) + if is_ident_ch(nxt) { let after_ok = false } + } + if before_ok { + if after_ok { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, json_kv_int("line", i + 1)) + let parts = native_list_append(parts, json_kv_int("col", abs + 1)) + let parts = native_list_append(parts, json_kv_str("snippet", str_trim(line))) + let refs = native_list_append(refs, "{" + list_join(parts, ",") + "}") + } + } + let off = abs + wlen + if off >= str_len(line) { let scanning = false } + } + } + let i = i + 1 + } + json_array_of(refs) +} + +// ── JSON-RPC dispatch ──────────────────────────────────────────────────────── +// +// Method names follow LSP-ish conventions but stay aligned with the Rust crate's +// HTTP surface. Params are a JSON string the dispatcher pulls fields out of via +// json_get_string / json_get_int. +// +// "textDocument/completion" → params { source, pos } +// "textDocument/hover" → params { source, pos } +// "textDocument/diagnostic" → params { source } +// "textDocument/formatting" → params { source } +// "textDocument/documentSymbol"→ params { source } +// "textDocument/definition" → params { source, pos } +// "textDocument/references" → params { source, pos } +// "el/typeGraph" → params { source } + +fn lsp_jsonrpc(method: String, params_json: String) -> String { + let source: String = json_get_string(params_json, "source") + let pos: Int = json_get_int(params_json, "pos") + if str_eq(method, "textDocument/completion") { return lsp_complete(source, pos) } + if str_eq(method, "textDocument/hover") { return lsp_hover(source, pos) } + if str_eq(method, "textDocument/diagnostic") { return lsp_diagnostics(source) } + if str_eq(method, "textDocument/formatting") { return lsp_format(source) } + if str_eq(method, "textDocument/documentSymbol") { return lsp_outline(source) } + if str_eq(method, "textDocument/definition") { return lsp_definition(source, pos) } + if str_eq(method, "textDocument/references") { return lsp_references(source, pos) } + if str_eq(method, "el/typeGraph") { return lsp_type_graph(source) } + "{\"error\":\"unknown method: " + json_escape(method) + "\"}" +} + +// ── stdio loop (best-effort; see runtime gap note in the report) ───────────── +// +// LSP framing is `Content-Length: N\r\n\r\n` then exactly N bytes. The El +// runtime exposes only line-buffered `readline()`, which strips `\n` and is +// hostile to the binary body read. We approximate by reading lines until a +// blank line ends the headers, then reading exactly one more line as the +// body (works for compact, no-newline payloads — i.e. minified JSON-RPC). +// A dedicated `read_n(bytes)` runtime primitive would unblock the strict +// implementation. See report. + +fn read_headers() -> Map { + let content_len: Int = 0 + let scanning: Bool = true + while scanning { + let line: String = readline() + if str_eq(line, "") { + let scanning = false + } else { + let cl_marker: String = "Content-Length:" + if str_starts_with(line, cl_marker) { + let val: String = str_trim(str_slice(line, str_len(cl_marker), str_len(line))) + let content_len = str_to_int(val) + } + } + } + { "content_length": content_len } +} + +fn lsp_stdio_loop() -> Void { + let running: Bool = true + while running { + let headers: Map = read_headers() + let body: String = readline() + if str_eq(body, "") { + let running = false + } else { + let method: String = json_get_string(body, "method") + let id_val: String = json_get_raw(body, "id") + if str_eq(id_val, "") { let id_val = "null" } + let params_raw: String = json_get_raw(body, "params") + let result: String = lsp_jsonrpc(method, params_raw) + let resp: String = "{\"jsonrpc\":\"2.0\",\"id\":" + id_val + ",\"result\":" + result + "}" + let frame: String = "Content-Length: " + int_to_str(str_len(resp)) + "\r\n\r\n" + resp + print(frame) + } + } +} + +// ── Entry ──────────────────────────────────────────────────────────────────── +// +// When invoked as a standalone binary, default to stdio JSON-RPC so editors +// that drive the language server directly (without the HTTP wrapper) work +// out of the box. Pass a single CLI arg to short-circuit: +// ./el-lsp probe → emits a self-test diagnostic + exits +// ./el-lsp version → emits version + exits + +fn lsp_main() -> Void { + let argv: [String] = args() + let n: Int = native_list_len(argv) + if n > 0 { + let cmd: String = native_list_get(argv, 0) + if str_eq(cmd, "version") { + println("el-lsp 0.1.0") + return + } + if str_eq(cmd, "probe") { + let sample: String = "fn main() -> Void { let x: Int = 42 }" + println(lsp_diagnostics(sample)) + return + } + } + lsp_stdio_loop() +} + +lsp_main() diff --git a/ide/vessels/el-lsp/src/main.err b/ide/vessels/el-lsp/src/main.err new file mode 100644 index 0000000..e69de29 diff --git a/ide/vessels/el-plugin-host/manifest.el b/ide/vessels/el-plugin-host/manifest.el new file mode 100644 index 0000000..0f496d7 --- /dev/null +++ b/ide/vessels/el-plugin-host/manifest.el @@ -0,0 +1,13 @@ +// manifest.el — el-plugin-host vessel + +vessel "el-plugin-host" { + version "0.1.0" + description "Plugin lifecycle manager for el-ide. First-party plugin registry, install/remove/enable/disable." + authors ["Will Anderson "] + edition "2026" +} + +build { + entry "src/main.el" + output "dist/" +} diff --git a/ide/vessels/el-plugin-host/src/el-plugin-host b/ide/vessels/el-plugin-host/src/el-plugin-host new file mode 100755 index 0000000..ec8fdf5 Binary files /dev/null and b/ide/vessels/el-plugin-host/src/el-plugin-host differ diff --git a/ide/vessels/el-plugin-host/src/main.c b/ide/vessels/el-plugin-host/src/main.c new file mode 100644 index 0000000..e47c081 --- /dev/null +++ b/ide/vessels/el-plugin-host/src/main.c @@ -0,0 +1,311 @@ +#include +#include +#include "el_runtime.h" + +el_val_t pkey(el_val_t name, el_val_t field); +el_val_t put_str(el_val_t name, el_val_t field, el_val_t value); +el_val_t put_bool(el_val_t name, el_val_t field, el_val_t value); +el_val_t get_str(el_val_t name, el_val_t field); +el_val_t get_bool(el_val_t name, el_val_t field); +el_val_t index_list(void); +el_val_t index_set(el_val_t names); +el_val_t index_contains(el_val_t name); +el_val_t index_add(el_val_t name); +el_val_t register_plugin(el_val_t name, el_val_t version, el_val_t description, el_val_t installed, el_val_t enabled, el_val_t hooks, el_val_t first_party); +el_val_t plugin_init(void); +el_val_t json_escape_str(el_val_t s); +el_val_t quote_json(el_val_t s); +el_val_t hooks_to_json(el_val_t hooks_csv); +el_val_t plugin_to_json(el_val_t name); +el_val_t plugin_list_json(void); +el_val_t plugin_get_json(el_val_t name); +el_val_t plugin_install(el_val_t name); +el_val_t plugin_remove(el_val_t name); +el_val_t plugin_enable(el_val_t name); +el_val_t plugin_disable(el_val_t name); +el_val_t host_main(void); + +el_val_t pkey(el_val_t name, el_val_t field) { + return el_str_concat(el_str_concat(el_str_concat(EL_STR("plugin/"), name), EL_STR("/")), field); + return 0; +} + +el_val_t put_str(el_val_t name, el_val_t field, el_val_t value) { + state_set(pkey(name, field), value); + return 0; +} + +el_val_t put_bool(el_val_t name, el_val_t field, el_val_t value) { + if (value) { + state_set(pkey(name, field), EL_STR("true")); + } + if (!value) { + state_set(pkey(name, field), EL_STR("false")); + } + return 0; +} + +el_val_t get_str(el_val_t name, el_val_t field) { + return state_get(pkey(name, field)); + return 0; +} + +el_val_t get_bool(el_val_t name, el_val_t field) { + return str_eq(state_get(pkey(name, field)), EL_STR("true")); + return 0; +} + +el_val_t index_list(void) { + el_val_t raw = state_get(EL_STR("plugins/index")); + if (str_eq(raw, EL_STR(""))) { + return native_list_empty(); + } + return str_split(raw, EL_STR(",")); + return 0; +} + +el_val_t index_set(el_val_t names) { + state_set(EL_STR("plugins/index"), list_join(names, EL_STR(","))); + return 0; +} + +el_val_t index_contains(el_val_t name) { + el_val_t names = index_list(); + el_val_t n = native_list_len(names); + el_val_t i = 0; + while (i < n) { + if (str_eq(native_list_get(names, i), name)) { + return 1; + } + i = (i + 1); + } + return 0; + return 0; +} + +el_val_t index_add(el_val_t name) { + if (!index_contains(name)) { + el_val_t names = index_list(); + names = native_list_append(names, name); + index_set(names); + } + return 0; +} + +el_val_t register_plugin(el_val_t name, el_val_t version, el_val_t description, el_val_t installed, el_val_t enabled, el_val_t hooks, el_val_t first_party) { + put_str(name, EL_STR("name"), name); + put_str(name, EL_STR("version"), version); + put_str(name, EL_STR("description"), description); + put_bool(name, EL_STR("installed"), installed); + put_bool(name, EL_STR("enabled"), enabled); + put_str(name, EL_STR("hooks"), hooks); + put_bool(name, EL_STR("first_party"), first_party); + index_add(name); + return 0; +} + +el_val_t plugin_init(void) { + if (str_eq(state_get(EL_STR("plugins/initialised")), EL_STR("true"))) { + return 0; + } + register_plugin(EL_STR("el-theme-dark"), EL_STR("1.0.0"), EL_STR("Dark theme — the default Engram IDE theme."), 1, 1, EL_STR(""), 1); + register_plugin(EL_STR("el-theme-light"), EL_STR("1.0.0"), EL_STR("Light theme for high-ambient-light environments."), 0, 0, EL_STR(""), 1); + register_plugin(EL_STR("el-fmt"), EL_STR("0.1.0"), EL_STR("Code formatter — auto-formats .el files on save."), 1, 1, EL_STR("on_save"), 1); + register_plugin(EL_STR("el-doc"), EL_STR("0.1.0"), EL_STR("Documentation generator — produces HTML docs from type definitions."), 0, 0, EL_STR("custom_tool"), 1); + register_plugin(EL_STR("el-test"), EL_STR("0.1.0"), EL_STR("Test runner with inline results displayed in the editor gutter."), 0, 0, EL_STR("on_build_complete,custom_panel"), 1); + state_set(EL_STR("plugins/initialised"), EL_STR("true")); + return 0; +} + +el_val_t json_escape_str(el_val_t s) { + el_val_t chars = native_string_chars(s); + el_val_t n = native_list_len(chars); + el_val_t out = EL_STR(""); + el_val_t i = 0; + while (i < n) { + el_val_t ch = native_list_get(chars, i); + if (str_eq(ch, EL_STR("\""))) { + out = el_str_concat(out, EL_STR("\\\"")); + } else { + if (str_eq(ch, EL_STR("\\"))) { + out = el_str_concat(out, EL_STR("\\\\")); + } else { + if (str_eq(ch, EL_STR("\n"))) { + out = el_str_concat(out, EL_STR("\\n")); + } else { + out = el_str_concat(out, ch); + } + } + } + i = (i + 1); + } + return out; + return 0; +} + +el_val_t quote_json(el_val_t s) { + return el_str_concat(el_str_concat(EL_STR("\""), json_escape_str(s)), EL_STR("\"")); + return 0; +} + +el_val_t hooks_to_json(el_val_t hooks_csv) { + if (str_eq(hooks_csv, EL_STR(""))) { + return EL_STR("[]"); + } + el_val_t xs = str_split(hooks_csv, EL_STR(",")); + el_val_t n = native_list_len(xs); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + out = el_str_concat(out, quote_json(native_list_get(xs, i))); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t plugin_to_json(el_val_t name) { + el_val_t parts = native_list_empty(); + parts = native_list_append(parts, el_str_concat(EL_STR("\"name\":"), quote_json(get_str(name, EL_STR("name"))))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"version\":"), quote_json(get_str(name, EL_STR("version"))))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"description\":"), quote_json(get_str(name, EL_STR("description"))))); + el_val_t installed = get_str(name, EL_STR("installed")); + el_val_t enabled = get_str(name, EL_STR("enabled")); + el_val_t first_party = get_str(name, EL_STR("first_party")); + parts = native_list_append(parts, el_str_concat(EL_STR("\"installed\":"), installed)); + parts = native_list_append(parts, el_str_concat(EL_STR("\"enabled\":"), enabled)); + parts = native_list_append(parts, el_str_concat(EL_STR("\"hooks\":"), hooks_to_json(get_str(name, EL_STR("hooks"))))); + parts = native_list_append(parts, el_str_concat(EL_STR("\"first_party\":"), first_party)); + return el_str_concat(el_str_concat(EL_STR("{"), list_join(parts, EL_STR(","))), EL_STR("}")); + return 0; +} + +el_val_t plugin_list_json(void) { + plugin_init(); + el_val_t names = index_list(); + el_val_t n = native_list_len(names); + el_val_t out = EL_STR("["); + el_val_t i = 0; + while (i < n) { + if (i > 0) { + out = el_str_concat(out, EL_STR(",")); + } + out = el_str_concat(out, plugin_to_json(native_list_get(names, i))); + i = (i + 1); + } + return el_str_concat(out, EL_STR("]")); + return 0; +} + +el_val_t plugin_get_json(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return EL_STR("null"); + } + return plugin_to_json(name); + return 0; +} + +el_val_t plugin_install(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return EL_STR("{\"error\":\"plugin registry is not available (registry URL not configured)\"}"); + } + if (get_bool(name, EL_STR("installed"))) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' is already installed\"}")); + } + put_bool(name, EL_STR("installed"), 1); + put_bool(name, EL_STR("enabled"), 1); + return plugin_to_json(name); + return 0; +} + +el_val_t plugin_remove(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' not found\"}")); + } + if (str_eq(name, EL_STR("el-theme-dark"))) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' cannot be removed: it is a required built-in\"}")); + } + put_bool(name, EL_STR("installed"), 0); + put_bool(name, EL_STR("enabled"), 0); + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t plugin_enable(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' not found\"}")); + } + put_bool(name, EL_STR("enabled"), 1); + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t plugin_disable(el_val_t name) { + plugin_init(); + if (!index_contains(name)) { + return el_str_concat(el_str_concat(EL_STR("{\"error\":\"plugin '"), json_escape_str(name)), EL_STR("' not found\"}")); + } + put_bool(name, EL_STR("enabled"), 0); + return EL_STR("{\"ok\":true}"); + return 0; +} + +el_val_t host_main(void) { + el_val_t argv = args(); + el_val_t n = native_list_len(argv); + if (n == 0) { + println(plugin_list_json()); + return 0; + } + el_val_t cmd = native_list_get(argv, 0); + if (str_eq(cmd, EL_STR("list"))) { + println(plugin_list_json()); + return 0; + } + if (str_eq(cmd, EL_STR("get"))) { + if (n >= 2) { + println(plugin_get_json(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("install"))) { + if (n >= 2) { + println(plugin_install(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("remove"))) { + if (n >= 2) { + println(plugin_remove(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("enable"))) { + if (n >= 2) { + println(plugin_enable(native_list_get(argv, 1))); + } + return 0; + } + if (str_eq(cmd, EL_STR("disable"))) { + if (n >= 2) { + println(plugin_disable(native_list_get(argv, 1))); + } + return 0; + } + println(EL_STR("usage: el-plugin-host [list|get|install|remove|enable|disable] ")); + return 0; +} + +int main(int argc, char** argv) { + el_runtime_init_args(argc, argv); + host_main(); + return 0; +} + diff --git a/ide/vessels/el-plugin-host/src/main.el b/ide/vessels/el-plugin-host/src/main.el new file mode 100644 index 0000000..b42fec0 --- /dev/null +++ b/ide/vessels/el-plugin-host/src/main.el @@ -0,0 +1,251 @@ +// main.el — el-plugin-host +// +// Plugin lifecycle manager for el-ide. Pure-El port of the el-plugin-host +// Rust crate. +// +// Plugins are stored in process-global state via state_get / state_set. +// Each plugin lives under a key prefix `plugin//`. The +// canonical list of plugin names is maintained at `plugins/index` as a +// comma-separated string (we don't have list serialisation in state yet). +// +// Public API: +// plugin_init() — seed first-party plugins (idempotent) +// plugin_list_json() -> String — JSON array of all plugins +// plugin_get_json(name) -> String — JSON object or "null" +// plugin_install(name) -> String — JSON { ok | error } +// plugin_remove(name) -> String +// plugin_enable(name) -> String +// plugin_disable(name) -> String + +// ── State helpers (string K/V) ─────────────────────────────────────────────── + +fn pkey(name: String, field: String) -> String { + "plugin/" + name + "/" + field +} + +fn put_str(name: String, field: String, value: String) -> Void { + state_set(pkey(name, field), value) +} + +fn put_bool(name: String, field: String, value: Bool) -> Void { + if value { state_set(pkey(name, field), "true") } + if !value { state_set(pkey(name, field), "false") } +} + +fn get_str(name: String, field: String) -> String { + state_get(pkey(name, field)) +} + +fn get_bool(name: String, field: String) -> Bool { + str_eq(state_get(pkey(name, field)), "true") +} + +// Plugin index: comma-separated list of names at "plugins/index". +fn index_list() -> [String] { + let raw: String = state_get("plugins/index") + if str_eq(raw, "") { return native_list_empty() } + str_split(raw, ",") +} + +fn index_set(names: [String]) -> Void { + state_set("plugins/index", list_join(names, ",")) +} + +fn index_contains(name: String) -> Bool { + let names: [String] = index_list() + let n: Int = native_list_len(names) + let i: Int = 0 + while i < n { + if str_eq(native_list_get(names, i), name) { return true } + let i = i + 1 + } + false +} + +fn index_add(name: String) -> Void { + if !index_contains(name) { + let names: [String] = index_list() + let names = native_list_append(names, name) + index_set(names) + } +} + +// ── Initialisation ─────────────────────────────────────────────────────────── + +fn register_plugin(name: String, version: String, description: String, + installed: Bool, enabled: Bool, hooks: String, + first_party: Bool) -> Void { + put_str(name, "name", name) + put_str(name, "version", version) + put_str(name, "description", description) + put_bool(name, "installed", installed) + put_bool(name, "enabled", enabled) + put_str(name, "hooks", hooks) + put_bool(name, "first_party", first_party) + index_add(name) +} + +fn plugin_init() -> Void { + if str_eq(state_get("plugins/initialised"), "true") { + return + } + register_plugin("el-theme-dark", "1.0.0", "Dark theme — the default Engram IDE theme.", true, true, "", true) + register_plugin("el-theme-light", "1.0.0", "Light theme for high-ambient-light environments.", false, false, "", true) + register_plugin("el-fmt", "0.1.0", "Code formatter — auto-formats .el files on save.", true, true, "on_save", true) + register_plugin("el-doc", "0.1.0", "Documentation generator — produces HTML docs from type definitions.", false, false, "custom_tool", true) + register_plugin("el-test", "0.1.0", "Test runner with inline results displayed in the editor gutter.", false, false, "on_build_complete,custom_panel", true) + state_set("plugins/initialised", "true") +} + +// ── Serialisation ──────────────────────────────────────────────────────────── + +fn json_escape_str(s: String) -> String { + let chars: [String] = native_string_chars(s) + let n: Int = native_list_len(chars) + let out: String = "" + let i: Int = 0 + while i < n { + let ch: String = native_list_get(chars, i) + if ch == "\"" { let out = out + "\\\"" } + else { if ch == "\\" { let out = out + "\\\\" } + else { if ch == "\n" { let out = out + "\\n" } + else { let out = out + ch } } } + let i = i + 1 + } + out +} + +fn quote_json(s: String) -> String { + "\"" + json_escape_str(s) + "\"" +} + +fn hooks_to_json(hooks_csv: String) -> String { + if str_eq(hooks_csv, "") { return "[]" } + let xs: [String] = str_split(hooks_csv, ",") + let n: Int = native_list_len(xs) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let out = out + quote_json(native_list_get(xs, i)) + let i = i + 1 + } + out + "]" +} + +fn plugin_to_json(name: String) -> String { + let parts: [String] = native_list_empty() + let parts = native_list_append(parts, "\"name\":" + quote_json(get_str(name, "name"))) + let parts = native_list_append(parts, "\"version\":" + quote_json(get_str(name, "version"))) + let parts = native_list_append(parts, "\"description\":" + quote_json(get_str(name, "description"))) + let installed: String = get_str(name, "installed") + let enabled: String = get_str(name, "enabled") + let first_party: String = get_str(name, "first_party") + let parts = native_list_append(parts, "\"installed\":" + installed) + let parts = native_list_append(parts, "\"enabled\":" + enabled) + let parts = native_list_append(parts, "\"hooks\":" + hooks_to_json(get_str(name, "hooks"))) + let parts = native_list_append(parts, "\"first_party\":" + first_party) + "{" + list_join(parts, ",") + "}" +} + +fn plugin_list_json() -> String { + plugin_init() + let names: [String] = index_list() + let n: Int = native_list_len(names) + let out: String = "[" + let i: Int = 0 + while i < n { + if i > 0 { let out = out + "," } + let out = out + plugin_to_json(native_list_get(names, i)) + let i = i + 1 + } + out + "]" +} + +fn plugin_get_json(name: String) -> String { + plugin_init() + if !index_contains(name) { return "null" } + plugin_to_json(name) +} + +// ── Mutations ──────────────────────────────────────────────────────────────── + +fn plugin_install(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin registry is not available (registry URL not configured)\"}" + } + if get_bool(name, "installed") { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' is already installed\"}" + } + put_bool(name, "installed", true) + put_bool(name, "enabled", true) + plugin_to_json(name) +} + +fn plugin_remove(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' not found\"}" + } + if str_eq(name, "el-theme-dark") { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' cannot be removed: it is a required built-in\"}" + } + put_bool(name, "installed", false) + put_bool(name, "enabled", false) + "{\"ok\":true}" +} + +fn plugin_enable(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' not found\"}" + } + put_bool(name, "enabled", true) + "{\"ok\":true}" +} + +fn plugin_disable(name: String) -> String { + plugin_init() + if !index_contains(name) { + return "{\"error\":\"plugin '" + json_escape_str(name) + "' not found\"}" + } + put_bool(name, "enabled", false) + "{\"ok\":true}" +} + +// ── Standalone CLI ─────────────────────────────────────────────────────────── + +fn host_main() -> Void { + let argv: [String] = args() + let n: Int = native_list_len(argv) + if n == 0 { + println(plugin_list_json()) + return + } + let cmd: String = native_list_get(argv, 0) + if str_eq(cmd, "list") { println(plugin_list_json()) return } + if str_eq(cmd, "get") { + if n >= 2 { println(plugin_get_json(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "install") { + if n >= 2 { println(plugin_install(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "remove") { + if n >= 2 { println(plugin_remove(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "enable") { + if n >= 2 { println(plugin_enable(native_list_get(argv, 1))) } + return + } + if str_eq(cmd, "disable") { + if n >= 2 { println(plugin_disable(native_list_get(argv, 1))) } + return + } + println("usage: el-plugin-host [list|get|install|remove|enable|disable] ") +} + +host_main() diff --git a/ide/vessels/el-plugin-host/src/main.err b/ide/vessels/el-plugin-host/src/main.err new file mode 100644 index 0000000..e69de29 diff --git a/.gitignore b/lang/.gitignore similarity index 100% rename from .gitignore rename to lang/.gitignore diff --git a/lang/AGENTS.md b/lang/AGENTS.md new file mode 100644 index 0000000..ea93660 --- /dev/null +++ b/lang/AGENTS.md @@ -0,0 +1,131 @@ +# El Language — Agent Guide + +El is a self-hosting, statically-typed language that compiles to C. This file orients agents that work on El itself or on programs written in El. + +--- + +## What El Is + +El compiles `.el` source → C → native binary. Every El value is `el_val_t` (int64_t). Strings are heap pointers cast through int64_t. The compiler is written in El (self-hosting). + +**The compiler pipeline:** +``` +elc-cli.el + └─ imports: compiler.el + └─ imports: lexer.el, parser.el, codegen.el, codegen-js.el +``` + +The canonical compiler binary is `dist/platform/elc`. It was produced by running an earlier version of itself on `elc-cli.el`. + +--- + +## The Two Layers — Know Which One You're In + +### Layer 1: El programs (`.el` files) + +This is where almost all work belongs. El programs are source files that get compiled by `elc`. New library functions, application logic, and language-level utilities all go here as `.el` files. + +**Do not add C code when El can express it.** If functionality can be built from existing El primitives (string ops, `exec`, `fs_read/write`, `http_post`, etc.), write it in El. + +### Layer 2: The C seed (`el-compiler/runtime/el_seed.c`) + +This is the self-contained C OS-boundary layer. It provides the `__`-prefixed primitives that compiled El programs call: libcurl HTTP, pthreads, filesystem I/O, arena allocation, etc. It is **not generated** — it is maintained by hand. + +The old `el_runtime.c` has been archived to `el-compiler/runtime/legacy/`. The runtime is now native El (`runtime/*.el`). `el_seed.c` replaces `el_runtime.c` as the sole C compilation dependency. + +**Only edit `el_seed.c` when you genuinely need OS-level access** (raw sockets, GPU calls, new libcurl features). For everything else, write El. + +When you do add a C builtin: +1. Add the C function to `el_seed.c` +2. Declare it in `el_seed.h` +3. Add it to the `builtin_arity` table in `el-compiler/src/codegen.el` (so the compiler knows the arg count) +4. Rebuild the elc binary (see below) + +--- + +## Rebuilding the Compiler + +After changing any `.el` source in `el-compiler/src/`: + +```bash +cd /Users/will/Development/neuron-technologies/foundation/el +./dist/platform/elc elc-cli.el > elc-new.c +cc -std=c11 -I el-compiler/runtime -lcurl -lpthread \ + -o dist/platform/elc-new \ + elc-new.c el-compiler/runtime/el_seed.c +# Verify self-hosting: +./dist/platform/elc-new elc-cli.el > elc-verify.c +diff elc-new.c elc-verify.c # should be identical +mv dist/platform/elc-new dist/platform/elc +``` + +After changing `el_seed.c` only (no El source changes), rebuild downstream programs but do NOT need to rebuild the compiler binary itself — the seed is linked at the application level, not the compiler level. + +--- + +## How El Programs Are Built + +Each El application has a `build.sh` that: +1. Concatenates all `.el` source files (stripping `import` lines) +2. Runs `elc` to produce a `.c` file +3. Runs `cc` linking against `el_seed.c` + +Example (cgi-studio daemon): +```bash +cd products/cgi-studio/el-daemon +./build.sh +``` + +When you add a new `.el` file to an application, add it to that application's `build.sh` concat list. + +--- + +## Parallelism in El + +El is single-threaded at the application level. Parallelism is achieved through subprocess fan-out: + +```el +// Pattern: write payloads to temp files, exec bash script with & and wait, +// read results back from temp files. +fn http_post_parallel(urls: [String], bodies: [String]) -> [String] { + // ... bash fan-out via exec() ... +} +``` + +Use `exec()` (blocking) or `exec_bg()` (fire-and-forget) with shell scripts to run concurrent work. There is no goroutine or async/await — parallelism goes through the OS process layer. + +--- + +## Key Files + +| Path | What it is | +|------|-----------| +| `dist/platform/elc` | Canonical compiler binary (arm64 Mac) | +| `el-compiler/src/codegen.el` | Code generator — builtin arity table lives here | +| `el-compiler/src/lexer.el` | Lexer | +| `el-compiler/src/parser.el` | Parser | +| `el-compiler/runtime/el_seed.c` | Self-contained C OS-boundary layer (replaces el_runtime.c) | +| `el-compiler/runtime/el_seed.h` | Seed header (C function declarations) | +| `spec/language.md` | Language specification | +| `BOOTSTRAP.md` | How to recover the compiler from scratch | +| `elc-cli.el` | Compiler entry point | +| `elc-combined.el` | Pre-merged single-file compiler (used during early bootstrap) | + +--- + +## HTTP Timeout + +The El HTTP client (libcurl) defaults to **60 seconds**. Override per-process via `EL_HTTP_TIMEOUT_MS` env var. Set it before spawning any subprocess that makes long API calls: + +```el +exec("EL_HTTP_TIMEOUT_MS=300000 " + SOME_BIN + " " + args + " 2>&1") +``` + +--- + +## Rules + +- New library functions → write in El +- New OS/hardware primitives → write in C and register in `codegen.el` arity table +- Never edit `dist/platform/elc` directly — always rebuild from source +- Never modify `el_seed.c` to add functionality that El can express diff --git a/BOOTSTRAP.md b/lang/BOOTSTRAP.md similarity index 100% rename from BOOTSTRAP.md rename to lang/BOOTSTRAP.md diff --git a/dist/elc-bootstrap.c b/lang/dist/elc-bootstrap.c similarity index 100% rename from dist/elc-bootstrap.c rename to lang/dist/elc-bootstrap.c diff --git a/dist/elc-new.c b/lang/dist/elc-new.c similarity index 100% rename from dist/elc-new.c rename to lang/dist/elc-new.c diff --git a/dist/platform/elb b/lang/dist/platform/elb similarity index 54% rename from dist/platform/elb rename to lang/dist/platform/elb index 5d62fdd..2df99e2 100755 Binary files a/dist/platform/elb and b/lang/dist/platform/elb differ diff --git a/lang/dist/platform/elc b/lang/dist/platform/elc new file mode 100755 index 0000000..d2f167f Binary files /dev/null and b/lang/dist/platform/elc differ diff --git a/dist/platform/elc-asan b/lang/dist/platform/elc-asan similarity index 100% rename from dist/platform/elc-asan rename to lang/dist/platform/elc-asan diff --git a/dist/platform/elc-asan.dSYM/Contents/Info.plist b/lang/dist/platform/elc-asan.dSYM/Contents/Info.plist similarity index 100% rename from dist/platform/elc-asan.dSYM/Contents/Info.plist rename to lang/dist/platform/elc-asan.dSYM/Contents/Info.plist diff --git a/dist/platform/elc-asan.dSYM/Contents/Resources/DWARF/elc-asan b/lang/dist/platform/elc-asan.dSYM/Contents/Resources/DWARF/elc-asan similarity index 100% rename from dist/platform/elc-asan.dSYM/Contents/Resources/DWARF/elc-asan rename to lang/dist/platform/elc-asan.dSYM/Contents/Resources/DWARF/elc-asan diff --git a/dist/platform/elc-asan.dSYM/Contents/Resources/Relocations/aarch64/elc-asan.yml b/lang/dist/platform/elc-asan.dSYM/Contents/Resources/Relocations/aarch64/elc-asan.yml similarity index 100% rename from dist/platform/elc-asan.dSYM/Contents/Resources/Relocations/aarch64/elc-asan.yml rename to lang/dist/platform/elc-asan.dSYM/Contents/Resources/Relocations/aarch64/elc-asan.yml diff --git a/dist/platform/elc-darwin-arm64 b/lang/dist/platform/elc-darwin-arm64 similarity index 100% rename from dist/platform/elc-darwin-arm64 rename to lang/dist/platform/elc-darwin-arm64 diff --git a/dist/platform/elc-new b/lang/dist/platform/elc-new similarity index 100% rename from dist/platform/elc-new rename to lang/dist/platform/elc-new diff --git a/dist/platform/elc.20260502-0130-self-host b/lang/dist/platform/elc.20260502-0130-self-host similarity index 100% rename from dist/platform/elc.20260502-0130-self-host rename to lang/dist/platform/elc.20260502-0130-self-host diff --git a/dist/platform/elc.20260502-1104-self-host b/lang/dist/platform/elc.20260502-1104-self-host similarity index 100% rename from dist/platform/elc.20260502-1104-self-host rename to lang/dist/platform/elc.20260502-1104-self-host diff --git a/dist/platform/elc.20260502-1231-self-host b/lang/dist/platform/elc.20260502-1231-self-host similarity index 100% rename from dist/platform/elc.20260502-1231-self-host rename to lang/dist/platform/elc.20260502-1231-self-host diff --git a/dist/platform/elc.20260502-1249-self-host b/lang/dist/platform/elc.20260502-1249-self-host similarity index 100% rename from dist/platform/elc.20260502-1249-self-host rename to lang/dist/platform/elc.20260502-1249-self-host diff --git a/dist/platform/elc.20260502-1256-self-host b/lang/dist/platform/elc.20260502-1256-self-host similarity index 100% rename from dist/platform/elc.20260502-1256-self-host rename to lang/dist/platform/elc.20260502-1256-self-host diff --git a/dist/platform/elc.20260502-1321-self-host b/lang/dist/platform/elc.20260502-1321-self-host similarity index 100% rename from dist/platform/elc.20260502-1321-self-host rename to lang/dist/platform/elc.20260502-1321-self-host diff --git a/dist/platform/elc.20260502-1916-self-host b/lang/dist/platform/elc.20260502-1916-self-host similarity index 100% rename from dist/platform/elc.20260502-1916-self-host rename to lang/dist/platform/elc.20260502-1916-self-host diff --git a/lang/dist/platform/elc.20260503-1555-post-sprint b/lang/dist/platform/elc.20260503-1555-post-sprint new file mode 100755 index 0000000..e331ae6 Binary files /dev/null and b/lang/dist/platform/elc.20260503-1555-post-sprint differ diff --git a/lang/dist/platform/elc.20260503-1603-post-lsp b/lang/dist/platform/elc.20260503-1603-post-lsp new file mode 100755 index 0000000..d2f167f Binary files /dev/null and b/lang/dist/platform/elc.20260503-1603-post-lsp differ diff --git a/dist/platform/elc.c b/lang/dist/platform/elc.c similarity index 100% rename from dist/platform/elc.c rename to lang/dist/platform/elc.c diff --git a/dist/platform/elc.legacy b/lang/dist/platform/elc.legacy similarity index 100% rename from dist/platform/elc.legacy rename to lang/dist/platform/elc.legacy diff --git a/dist/platform/elc.prelaunch.bak b/lang/dist/platform/elc.prelaunch.bak similarity index 100% rename from dist/platform/elc.prelaunch.bak rename to lang/dist/platform/elc.prelaunch.bak diff --git a/dist/platform/elc.preselfhost b/lang/dist/platform/elc.preselfhost similarity index 100% rename from dist/platform/elc.preselfhost rename to lang/dist/platform/elc.preselfhost diff --git a/dist/platform/elc.prev5 b/lang/dist/platform/elc.prev5 similarity index 100% rename from dist/platform/elc.prev5 rename to lang/dist/platform/elc.prev5 diff --git a/dist/platform/elc.prev6 b/lang/dist/platform/elc.prev6 similarity index 100% rename from dist/platform/elc.prev6 rename to lang/dist/platform/elc.prev6 diff --git a/dist/platform/elc.prev7 b/lang/dist/platform/elc.prev7 similarity index 100% rename from dist/platform/elc.prev7 rename to lang/dist/platform/elc.prev7 diff --git a/dist/platform/elc.prev8 b/lang/dist/platform/elc.prev8 similarity index 100% rename from dist/platform/elc.prev8 rename to lang/dist/platform/elc.prev8 diff --git a/dist/platform/elc.prev9 b/lang/dist/platform/elc.prev9 similarity index 100% rename from dist/platform/elc.prev9 rename to lang/dist/platform/elc.prev9 diff --git a/el-compiler/manifest.el b/lang/el-compiler/manifest.el similarity index 100% rename from el-compiler/manifest.el rename to lang/el-compiler/manifest.el diff --git a/releases/v1.0.0-20260501/el_runtime.c b/lang/el-compiler/runtime/el_runtime.c similarity index 94% rename from releases/v1.0.0-20260501/el_runtime.c rename to lang/el-compiler/runtime/el_runtime.c index 0ba1432..a30352c 100644 --- a/releases/v1.0.0-20260501/el_runtime.c +++ b/lang/el-compiler/runtime/el_runtime.c @@ -155,6 +155,39 @@ el_val_t readline(void) { return el_wrap_str(el_strdup(buf)); } +/* __read_n — read exactly n bytes from stdin. + * Allocates a buffer of size n+1, calls fread(buf, 1, n, stdin) to read + * exactly n raw bytes (including \r, \n, NUL, etc.), null-terminates, and + * returns the buffer as an El String. Returns "" on EOF or I/O error. + * + * Used by the El LSP server to read JSON-RPC message bodies after parsing + * the Content-Length header. readline() cannot be used for the body because + * it stops at the first \n and LSP JSON bodies are not newline-terminated. */ +el_val_t __read_n(el_val_t nv) { + int64_t n = EL_INT(nv); + if (n <= 0) return el_wrap_str(el_strdup("")); + char* buf = malloc((size_t)n + 1); + if (!buf) { fputs("el_runtime: __read_n: out of memory\n", stderr); return el_wrap_str(el_strdup("")); } + size_t got = fread(buf, 1, (size_t)n, stdin); + buf[got] = '\0'; + if (got == 0) { free(buf); return el_wrap_str(el_strdup("")); } + /* Track in arena so the allocation is freed when the request ends. */ + el_arena_track(buf); + return el_wrap_str(buf); +} + +/* __print_raw — write a string to stdout without any modification. + * Unlike println/print (which call puts/fputs and may add newlines or flush + * in platform-specific ways), this uses fwrite with the exact byte count so + * that embedded \r\n pairs in LSP Content-Length headers survive intact. */ +void __print_raw(el_val_t sv) { + const char* s = EL_CSTR(sv); + if (!s) return; + size_t len = strlen(s); + fwrite(s, 1, len, stdout); + fflush(stdout); +} + /* ── String builtins ─────────────────────────────────────────────────────── */ el_val_t el_str_concat(el_val_t av, el_val_t bv) { @@ -10244,3 +10277,650 @@ el_val_t emit_event(el_val_t name_v, el_val_t duration_ms_v) { return trace_span_end(h); } +/* ── Threading seed primitives ─────────────────────────────────────────────── + * __thread_create(fn_name, arg) -> Int spawn El fn in a pthread, return tid + * __thread_join(tid) -> String join thread, return result string + * __mutex_new() -> Int allocate a mutex, return handle + * __mutex_lock(m) lock mutex m + * __mutex_unlock(m) unlock mutex m + * + * Every El fn compiles to a global C symbol. __thread_create uses dlsym to + * look up the function by name and run it in a pthread. This means any El fn + * with signature (String) -> String is directly threadable. + */ + +typedef el_val_t (*ElFn1)(el_val_t); + +typedef struct { + ElFn1 fn; + el_val_t arg; + el_val_t result; +} ElThreadArg; + +#define EL_THREAD_MAX 256 + +typedef struct { + pthread_t tid; + ElThreadArg* arg; + int alive; +} ElThread; + +static ElThread _threads[EL_THREAD_MAX]; +static int _thread_count = 0; +static pthread_mutex_t _thread_alloc_mu = PTHREAD_MUTEX_INITIALIZER; + +static void* el_thread_runner(void* raw) { + ElThreadArg* a = (ElThreadArg*)raw; + a->result = a->fn(a->arg); + return NULL; +} + +el_val_t __thread_create(el_val_t fn_name_v, el_val_t arg_v) { + const char* sym = EL_CSTR(fn_name_v); + if (!sym || !*sym) return EL_INT(-1); + void* p = dlsym(RTLD_DEFAULT, sym); + if (!p) { + fprintf(stderr, "[__thread_create] symbol not found: %s\n", sym); + return EL_INT(-1); + } + ElThreadArg* a = (ElThreadArg*)malloc(sizeof(ElThreadArg)); + if (!a) return EL_INT(-1); + a->fn = (ElFn1)p; + a->arg = arg_v; + a->result = EL_STR(""); + + pthread_mutex_lock(&_thread_alloc_mu); + if (_thread_count >= EL_THREAD_MAX) { + pthread_mutex_unlock(&_thread_alloc_mu); + free(a); + fprintf(stderr, "[__thread_create] thread table full\n"); + return EL_INT(-1); + } + int slot = _thread_count++; + _threads[slot].arg = a; + _threads[slot].alive = 1; + pthread_mutex_unlock(&_thread_alloc_mu); + + if (pthread_create(&_threads[slot].tid, NULL, el_thread_runner, a) != 0) { + pthread_mutex_lock(&_thread_alloc_mu); + _thread_count--; + pthread_mutex_unlock(&_thread_alloc_mu); + free(a); + return EL_INT(-1); + } + return EL_INT(slot); +} + +el_val_t __thread_join(el_val_t tid_v) { + int slot = (int)(int64_t)tid_v; + if (slot < 0 || slot >= EL_THREAD_MAX) return EL_STR(""); + pthread_join(_threads[slot].tid, NULL); + el_val_t result = _threads[slot].arg->result; + free(_threads[slot].arg); + _threads[slot].alive = 0; + return result; +} + +/* Mutex table */ + +#define EL_MUTEX_MAX 64 + +typedef struct { + pthread_mutex_t mu; + int allocated; +} ElMutexEntry; + +static ElMutexEntry _mutexes[EL_MUTEX_MAX]; +static int _mutex_count = 0; +static pthread_mutex_t _mutex_alloc_mu = PTHREAD_MUTEX_INITIALIZER; + +el_val_t __mutex_new(void) { + pthread_mutex_lock(&_mutex_alloc_mu); + if (_mutex_count >= EL_MUTEX_MAX) { + pthread_mutex_unlock(&_mutex_alloc_mu); + fprintf(stderr, "[__mutex_new] mutex table full\n"); + return EL_INT(-1); + } + int slot = _mutex_count++; + pthread_mutex_init(&_mutexes[slot].mu, NULL); + _mutexes[slot].allocated = 1; + pthread_mutex_unlock(&_mutex_alloc_mu); + return EL_INT(slot); +} + +void __mutex_lock(el_val_t m_v) { + int slot = (int)(int64_t)m_v; + if (slot < 0 || slot >= EL_MUTEX_MAX || !_mutexes[slot].allocated) return; + pthread_mutex_lock(&_mutexes[slot].mu); +} + +void __mutex_unlock(el_val_t m_v) { + int slot = (int)(int64_t)m_v; + if (slot < 0 || slot >= EL_MUTEX_MAX || !_mutexes[slot].allocated) return; + pthread_mutex_unlock(&_mutexes[slot].mu); +} + +/* ── Channels ─────────────────────────────────────────────────────────────── * + * Buffered MPMC channel backed by a mutex + condvar + circular buffer. + * channel_new(capacity) -> Int (handle) + * channel_send(ch, msg) — blocks if full (capacity > 0) or never (unbounded) + * channel_recv(ch) -> String — blocks until a message is available + * channel_try_recv(ch) -> String — non-blocking, returns "" if empty + * channel_close(ch) — signal no more sends; recv drains remaining + * + * Bounded channels (cap > 0): circular buffer, sender blocks when full. + * Unbounded channels (cap == 0): dynamic array, sender never blocks. + */ +#define EL_CHANNEL_MAX 64 +#define EL_CHANNEL_BUF 1024 + +typedef struct { + char** buf; + int cap; /* 0 = unbounded (grows dynamically) */ + int head, tail, count; + int dyn_cap; /* allocated slots for unbounded mode */ + int closed; + pthread_mutex_t mu; + pthread_cond_t not_empty; + pthread_cond_t not_full; +} ElChannel; + +static ElChannel _channels[EL_CHANNEL_MAX]; +static int _channel_count = 0; +static pthread_mutex_t _channel_alloc_mu = PTHREAD_MUTEX_INITIALIZER; + +el_val_t __channel_new(el_val_t capacity_v) { + int cap = (int)(int64_t)capacity_v; + if (cap < 0) cap = 0; + + pthread_mutex_lock(&_channel_alloc_mu); + if (_channel_count >= EL_CHANNEL_MAX) { + pthread_mutex_unlock(&_channel_alloc_mu); + fprintf(stderr, "[__channel_new] channel table full\n"); + return EL_INT(-1); + } + int slot = _channel_count++; + pthread_mutex_unlock(&_channel_alloc_mu); + + ElChannel* ch = &_channels[slot]; + memset(ch, 0, sizeof(*ch)); + ch->cap = cap; + ch->closed = 0; + ch->head = 0; + ch->tail = 0; + ch->count = 0; + + if (cap > 0) { + /* Bounded: fixed circular buffer. */ + ch->buf = (char**)malloc((size_t)cap * sizeof(char*)); + ch->dyn_cap = cap; + } else { + /* Unbounded: start with EL_CHANNEL_BUF slots, grow as needed. */ + ch->buf = (char**)malloc(EL_CHANNEL_BUF * sizeof(char*)); + ch->dyn_cap = EL_CHANNEL_BUF; + } + if (!ch->buf) { + fprintf(stderr, "[__channel_new] out of memory\n"); + return EL_INT(-1); + } + + pthread_mutex_init(&ch->mu, NULL); + pthread_cond_init(&ch->not_empty, NULL); + pthread_cond_init(&ch->not_full, NULL); + + return EL_INT(slot); +} + +void __channel_send(el_val_t ch_v, el_val_t msg_v) { + int slot = (int)(int64_t)ch_v; + if (slot < 0 || slot >= EL_CHANNEL_MAX) return; + ElChannel* ch = &_channels[slot]; + + const char* msg = EL_CSTR(msg_v); + if (!msg) msg = ""; + char* copy = strdup(msg); /* channel owns the string */ + + pthread_mutex_lock(&ch->mu); + + if (ch->closed) { + /* Send on closed channel is a no-op (drop the message). */ + pthread_mutex_unlock(&ch->mu); + free(copy); + return; + } + + if (ch->cap > 0) { + /* Bounded: block while full. */ + while (ch->count >= ch->cap && !ch->closed) { + pthread_cond_wait(&ch->not_full, &ch->mu); + } + if (ch->closed) { + pthread_mutex_unlock(&ch->mu); + free(copy); + return; + } + ch->buf[ch->tail] = copy; + ch->tail = (ch->tail + 1) % ch->cap; + ch->count++; + } else { + /* Unbounded: grow the buffer if needed. */ + if (ch->count >= ch->dyn_cap) { + int new_cap = ch->dyn_cap * 2; + char** grown = (char**)realloc(ch->buf, (size_t)new_cap * sizeof(char*)); + if (!grown) { + pthread_mutex_unlock(&ch->mu); + free(copy); + fprintf(stderr, "[__channel_send] out of memory growing channel\n"); + return; + } + /* The circular buffer may have wrapped. Linearise it first. + * In unbounded mode head is always 0 (we append at tail, drain + * from head), so a simple memmove isn't needed — but if the + * buffer did wrap (tail < head after growth), we need to fix up. + * Simplest safe path: if tail wrapped, move the head..old_cap + * segment to new_cap..new_cap+(old_cap-head). */ + if (ch->tail < ch->head) { + /* Wrapped: [head..old_cap) is the front, [0..tail) is the back. */ + int front = ch->dyn_cap - ch->head; + memmove(grown + ch->dyn_cap, grown + ch->head, (size_t)front * sizeof(char*)); + ch->head = ch->dyn_cap; + } + ch->buf = grown; + ch->dyn_cap = new_cap; + } + ch->buf[ch->tail] = copy; + ch->tail = (ch->tail + 1) % ch->dyn_cap; + ch->count++; + } + + pthread_cond_signal(&ch->not_empty); + pthread_mutex_unlock(&ch->mu); +} + +el_val_t __channel_recv(el_val_t ch_v) { + int slot = (int)(int64_t)ch_v; + if (slot < 0 || slot >= EL_CHANNEL_MAX) return EL_STR(""); + ElChannel* ch = &_channels[slot]; + + pthread_mutex_lock(&ch->mu); + + /* Block until there is a message or the channel is closed and drained. */ + while (ch->count == 0 && !ch->closed) { + pthread_cond_wait(&ch->not_empty, &ch->mu); + } + + if (ch->count == 0) { + /* Closed and empty — signal EOF. */ + pthread_mutex_unlock(&ch->mu); + return EL_STR(""); + } + + int buf_cap = (ch->cap > 0) ? ch->cap : ch->dyn_cap; + char* msg = ch->buf[ch->head]; + ch->head = (ch->head + 1) % buf_cap; + ch->count--; + + pthread_cond_signal(&ch->not_full); + pthread_mutex_unlock(&ch->mu); + + /* Hand the string to the arena so it is freed after the request. */ + el_arena_track(msg); + return EL_STR(msg); +} + +el_val_t __channel_try_recv(el_val_t ch_v) { + int slot = (int)(int64_t)ch_v; + if (slot < 0 || slot >= EL_CHANNEL_MAX) return EL_STR(""); + ElChannel* ch = &_channels[slot]; + + pthread_mutex_lock(&ch->mu); + + if (ch->count == 0) { + pthread_mutex_unlock(&ch->mu); + return EL_STR(""); + } + + int buf_cap = (ch->cap > 0) ? ch->cap : ch->dyn_cap; + char* msg = ch->buf[ch->head]; + ch->head = (ch->head + 1) % buf_cap; + ch->count--; + + pthread_cond_signal(&ch->not_full); + pthread_mutex_unlock(&ch->mu); + + el_arena_track(msg); + return EL_STR(msg); +} + +void __channel_close(el_val_t ch_v) { + int slot = (int)(int64_t)ch_v; + if (slot < 0 || slot >= EL_CHANNEL_MAX) return; + ElChannel* ch = &_channels[slot]; + + pthread_mutex_lock(&ch->mu); + ch->closed = 1; + /* Wake all blocked recvers and senders so they can observe the close. */ + pthread_cond_broadcast(&ch->not_empty); + pthread_cond_broadcast(&ch->not_full); + pthread_mutex_unlock(&ch->mu); +} + +/* ── DHARMA runtime additions ──────────────────────────────────────────────── + * + * Functions required by the dharma registry service. Added here so the + * released el_runtime.c includes them without requiring dharma to bundle + * its own stubs. + * + * Functions added: + * list_len — alias for el_list_len (used in handlers.el) + * list_get — alias for el_list_get (used in handlers.el) + * json_array_push — append a pre-encoded JSON element to a JSON array string + * now_millis — milliseconds since Unix epoch (alias for time_now) + * unix_timestamp_ms — same as now_millis (alias) + * time_now_ms — same as now_millis (alias) + * log_info — stderr structured log at INFO level + * log_warn — stderr structured log at WARN level + * config — reads a config value from the environment + * http_patch — HTTP PATCH with JSON Content-Type + * http_post_engram — HTTP POST with optional X-API-Key header + * http_get_engram — HTTP GET with optional X-API-Key header + * str_to_bytes — encode a string as a JSON array of byte values + * bytes_to_str — decode a JSON array of byte values back to a string + * hash_sha256 — SHA-256 hex digest of a string + */ + +/* list_len — return the number of elements in a list. */ +el_val_t list_len(el_val_t list) { + return el_list_len(list); +} + +/* list_get — return the element at index i in a list. */ +el_val_t list_get(el_val_t list, el_val_t index) { + return el_list_get(list, index); +} + +/* json_array_push — append element (a pre-encoded JSON fragment, e.g. "\"foo\"" + * or "42") to the JSON array string arr. Returns a new JSON array string. + * Example: json_array_push("[]", "\"alice\"") -> "[\"alice\"]" + * json_array_push("[\"alice\"]", "\"bob\"") -> "[\"alice\",\"bob\"]" */ +el_val_t json_array_push(el_val_t arr_v, el_val_t elem_v) { + const char* arr = EL_CSTR(arr_v); + const char* elem = EL_CSTR(elem_v); + if (!arr || !*arr) arr = "[]"; + if (!elem || !*elem) elem = "null"; + + /* Trim whitespace, find the closing ']'. */ + const char* p = arr; + while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r') p++; + if (*p != '[') { + /* Not an array — return a single-element array. */ + size_t n = strlen(elem) + 4; + char* out = el_strbuf(n); + snprintf(out, n, "[%s]", elem); + return el_wrap_str(out); + } + size_t arr_len = strlen(arr); + size_t elem_len = strlen(elem); + + /* Walk from the end to find the matching ']'. */ + const char* end = arr + arr_len - 1; + while (end > p && (*end == ' ' || *end == '\t' || *end == '\n' || *end == '\r')) end--; + if (*end != ']') { + /* Malformed — wrap elem in a new array. */ + size_t n = elem_len + 4; + char* out = el_strbuf(n); + snprintf(out, n, "[%s]", elem); + return el_wrap_str(out); + } + + /* Content between '[' and ']'. */ + const char* inner_start = p + 1; + const char* inner_end = end; /* points AT ']' */ + /* Check if the array is empty (only whitespace between brackets). */ + const char* q = inner_start; + while (q < inner_end && (*q == ' ' || *q == '\t' || *q == '\n' || *q == '\r')) q++; + int empty = (q == inner_end); + + /* Build: prefix + (comma if non-empty) + elem + "]" */ + size_t prefix_len = (size_t)(inner_end - arr); /* up to but not including ']' */ + size_t sep_len = empty ? 0 : 1; /* "," if non-empty */ + size_t out_len = prefix_len + sep_len + elem_len + 2; /* +"]" + NUL */ + char* out = el_strbuf(out_len); + memcpy(out, arr, prefix_len); + if (!empty) out[prefix_len] = ','; + memcpy(out + prefix_len + sep_len, elem, elem_len); + out[prefix_len + sep_len + elem_len] = ']'; + out[prefix_len + sep_len + elem_len + 1] = '\0'; + return el_wrap_str(out); +} + +/* now_millis — milliseconds since Unix epoch. */ +el_val_t now_millis(void) { + return time_now(); +} + +/* unix_timestamp_ms — same as now_millis. */ +el_val_t unix_timestamp_ms(void) { + return time_now(); +} + +/* time_now_ms — same as now_millis. */ +el_val_t time_now_ms(void) { + return time_now(); +} + +/* log_info — write a structured [INFO] line to stderr. */ +void log_info(el_val_t msg_v) { + const char* msg = EL_CSTR(msg_v); + fprintf(stderr, "[INFO] %s\n", msg ? msg : ""); +} + +/* log_warn — write a structured [WARN] line to stderr. */ +void log_warn(el_val_t msg_v) { + const char* msg = EL_CSTR(msg_v); + fprintf(stderr, "[WARN] %s\n", msg ? msg : ""); +} + +/* config — read a configuration value from the environment. + * Returns "" if the variable is not set (same as __env_get). */ +el_val_t config(el_val_t key_v) { + const char* key = EL_CSTR(key_v); + if (!key || !*key) return EL_STR(""); + const char* val = getenv(key); + if (!val) return EL_STR(""); + return el_wrap_str(el_strdup(val)); +} + +/* http_patch — HTTP PATCH request with Content-Type: application/json. + * Returns the response body (same error convention as http_post_json). */ +el_val_t http_patch(el_val_t url_v, el_val_t body_v) { + const char* url = EL_CSTR(url_v); + const char* body = EL_CSTR(body_v); + if (!url || !*url) return http_error_json("empty url"); + CURL* c = curl_easy_init(); + if (!c) return http_error_json("curl_easy_init failed"); + HttpBuf rb; httpbuf_init(&rb); + char errbuf[CURL_ERROR_SIZE]; errbuf[0] = '\0'; + struct curl_slist* h = NULL; + h = curl_slist_append(h, "Content-Type: application/json"); + curl_easy_setopt(c, CURLOPT_URL, url); + curl_easy_setopt(c, CURLOPT_CUSTOMREQUEST, "PATCH"); + curl_easy_setopt(c, CURLOPT_POSTFIELDS, body ? body : ""); + curl_easy_setopt(c, CURLOPT_POSTFIELDSIZE, (long)(body ? strlen(body) : 0)); + curl_easy_setopt(c, CURLOPT_HTTPHEADER, h); + curl_easy_setopt(c, CURLOPT_WRITEFUNCTION, http_write_cb); + curl_easy_setopt(c, CURLOPT_WRITEDATA, &rb); + curl_easy_setopt(c, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(c, CURLOPT_TIMEOUT_MS, el_http_timeout_ms()); + curl_easy_setopt(c, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt(c, CURLOPT_ERRORBUFFER, errbuf); + curl_easy_setopt(c, CURLOPT_USERAGENT, "el-runtime/1.0"); + CURLcode rc = curl_easy_perform(c); + curl_slist_free_all(h); + curl_easy_cleanup(c); + if (rc != CURLE_OK) { + free(rb.data); + const char* m = errbuf[0] ? errbuf : curl_easy_strerror(rc); + return http_error_json(m); + } + return el_wrap_str(rb.data); +} + +/* http_post_engram — HTTP POST with optional X-API-Key header. + * If key is "" no authentication header is sent. */ +el_val_t http_post_engram(el_val_t url_v, el_val_t key_v, el_val_t body_v) { + const char* url = EL_CSTR(url_v); + const char* key = EL_CSTR(key_v); + const char* body = EL_CSTR(body_v); + if (!url || !*url) return http_error_json("empty url"); + CURL* c = curl_easy_init(); + if (!c) return http_error_json("curl_easy_init failed"); + HttpBuf rb; httpbuf_init(&rb); + char errbuf[CURL_ERROR_SIZE]; errbuf[0] = '\0'; + struct curl_slist* h = NULL; + h = curl_slist_append(h, "Content-Type: application/json"); + if (key && *key) { + size_t n = strlen(key) + 32; + char* hdr = malloc(n); + snprintf(hdr, n, "X-API-Key: %s", key); + h = curl_slist_append(h, hdr); + free(hdr); + } + curl_easy_setopt(c, CURLOPT_URL, url); + curl_easy_setopt(c, CURLOPT_POST, 1L); + curl_easy_setopt(c, CURLOPT_POSTFIELDS, body ? body : ""); + curl_easy_setopt(c, CURLOPT_POSTFIELDSIZE, (long)(body ? strlen(body) : 0)); + curl_easy_setopt(c, CURLOPT_HTTPHEADER, h); + curl_easy_setopt(c, CURLOPT_WRITEFUNCTION, http_write_cb); + curl_easy_setopt(c, CURLOPT_WRITEDATA, &rb); + curl_easy_setopt(c, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(c, CURLOPT_TIMEOUT_MS, el_http_timeout_ms()); + curl_easy_setopt(c, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt(c, CURLOPT_ERRORBUFFER, errbuf); + curl_easy_setopt(c, CURLOPT_USERAGENT, "el-runtime/1.0"); + CURLcode rc = curl_easy_perform(c); + curl_slist_free_all(h); + curl_easy_cleanup(c); + if (rc != CURLE_OK) { + free(rb.data); + const char* m = errbuf[0] ? errbuf : curl_easy_strerror(rc); + return http_error_json(m); + } + return el_wrap_str(rb.data); +} + +/* http_get_engram — HTTP GET with optional X-API-Key header. */ +el_val_t http_get_engram(el_val_t url_v, el_val_t key_v) { + const char* url = EL_CSTR(url_v); + const char* key = EL_CSTR(key_v); + if (!url || !*url) return http_error_json("empty url"); + CURL* c = curl_easy_init(); + if (!c) return http_error_json("curl_easy_init failed"); + HttpBuf rb; httpbuf_init(&rb); + char errbuf[CURL_ERROR_SIZE]; errbuf[0] = '\0'; + struct curl_slist* h = NULL; + if (key && *key) { + size_t n = strlen(key) + 32; + char* hdr = malloc(n); + snprintf(hdr, n, "X-API-Key: %s", key); + h = curl_slist_append(h, hdr); + free(hdr); + } + curl_easy_setopt(c, CURLOPT_URL, url); + curl_easy_setopt(c, CURLOPT_HTTPGET, 1L); + if (h) curl_easy_setopt(c, CURLOPT_HTTPHEADER, h); + curl_easy_setopt(c, CURLOPT_WRITEFUNCTION, http_write_cb); + curl_easy_setopt(c, CURLOPT_WRITEDATA, &rb); + curl_easy_setopt(c, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(c, CURLOPT_TIMEOUT_MS, el_http_timeout_ms()); + curl_easy_setopt(c, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt(c, CURLOPT_ERRORBUFFER, errbuf); + curl_easy_setopt(c, CURLOPT_USERAGENT, "el-runtime/1.0"); + CURLcode rc = curl_easy_perform(c); + if (h) curl_slist_free_all(h); + curl_easy_cleanup(c); + if (rc != CURLE_OK) { + free(rb.data); + const char* m = errbuf[0] ? errbuf : curl_easy_strerror(rc); + return http_error_json(m); + } + return el_wrap_str(rb.data); +} + +/* str_to_bytes — encode a string as a JSON array of unsigned byte values. + * "hello" -> "[104,101,108,108,111]" + * Used by db.el to store binary content in Engram JSON nodes. */ +el_val_t str_to_bytes(el_val_t sv) { + const char* s = EL_CSTR(sv); + if (!s || !*s) return el_wrap_str(el_strdup("[]")); + size_t n = strlen(s); + /* Worst case: each byte is 3 digits + comma = 4 chars, plus "[]" + NUL. */ + char* out = el_strbuf(n * 4 + 3); + size_t pos = 0; + out[pos++] = '['; + for (size_t i = 0; i < n; i++) { + unsigned char b = (unsigned char)s[i]; + if (i > 0) out[pos++] = ','; + /* Write decimal representation of b. */ + if (b >= 100) { + out[pos++] = (char)('0' + b / 100); + out[pos++] = (char)('0' + (b / 10) % 10); + out[pos++] = (char)('0' + b % 10); + } else if (b >= 10) { + out[pos++] = (char)('0' + b / 10); + out[pos++] = (char)('0' + b % 10); + } else { + out[pos++] = (char)('0' + b); + } + } + out[pos++] = ']'; + out[pos] = '\0'; + return el_wrap_str(out); +} + +/* bytes_to_str — decode a JSON array of integer byte values back to a string. + * "[104,101,108,108,111]" -> "hello" + * Inverse of str_to_bytes. */ +el_val_t bytes_to_str(el_val_t arr_v) { + const char* s = EL_CSTR(arr_v); + if (!s) return el_wrap_str(el_strdup("")); + /* Skip whitespace, expect '['. */ + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + if (*s != '[') return el_wrap_str(el_strdup("")); + s++; + + /* Count elements to size the output buffer. */ + int64_t n = (int64_t)json_array_len(arr_v); + if (n <= 0) return el_wrap_str(el_strdup("")); + + char* out = el_strbuf((size_t)n + 1); + size_t pos = 0; + + /* Walk the array, parse each integer, store as a byte. */ + while (*s) { + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + if (*s == ']' || *s == '\0') break; + /* Parse decimal integer. */ + char* end_ptr; + long v = strtol(s, &end_ptr, 10); + if (end_ptr == s) break; /* parse failure */ + s = end_ptr; + if (v >= 0 && v <= 255) out[pos++] = (char)(unsigned char)v; + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + if (*s == ',') { s++; continue; } + if (*s == ']' || *s == '\0') break; + } + out[pos] = '\0'; + return el_wrap_str(out); +} + +/* hash_sha256 — return the SHA-256 hex digest of a string. + * Uses the built-in el_sha256_oneshot implementation (no OpenSSL required). */ +el_val_t hash_sha256(el_val_t sv) { + const char* s = EL_CSTR(sv); + if (!s) s = ""; + unsigned char digest[32]; + el_sha256_oneshot((const unsigned char*)s, strlen(s), digest); + return el_hex_encode(digest, 32); +} + diff --git a/releases/v1.0.0-20260501/el_runtime.h b/lang/el-compiler/runtime/el_runtime.h similarity index 99% rename from releases/v1.0.0-20260501/el_runtime.h rename to lang/el-compiler/runtime/el_runtime.h index 72bbf4b..bcf8f59 100644 --- a/releases/v1.0.0-20260501/el_runtime.h +++ b/lang/el-compiler/runtime/el_runtime.h @@ -176,6 +176,11 @@ void http_set_handler_v2(el_val_t name); * auto-content-type contract for legacy handlers that return plain bodies. */ el_val_t http_response(el_val_t status, el_val_t headers_json, el_val_t body); +/* SSE connection fd — set by http_worker_v2 before calling the El handler, + * cleared afterwards. Defined in el_seed.c; called from el_runtime.c. + * The getter is exposed as __http_conn_fd() to El programs. */ +void el_seed_set_http_conn_fd(int fd); + /* HTTP timeout — every libcurl request honors EL_HTTP_TIMEOUT_MS (default * 60000ms). Read lazily on first use, so setting the env var any time before * the first http_* call is sufficient. */ @@ -751,6 +756,9 @@ el_val_t trace_span_start(el_val_t name); el_val_t trace_span_end(el_val_t span_handle); el_val_t emit_event(el_val_t name, el_val_t duration_ms); +el_val_t __thread_create(el_val_t fn_name_v, el_val_t arg_v); +el_val_t __thread_join(el_val_t tid_v); + #ifdef __cplusplus } #endif diff --git a/el-compiler/runtime/el_runtime.js b/lang/el-compiler/runtime/el_runtime.js similarity index 67% rename from el-compiler/runtime/el_runtime.js rename to lang/el-compiler/runtime/el_runtime.js index e5c7a79..a223fdb 100644 --- a/el-compiler/runtime/el_runtime.js +++ b/lang/el-compiler/runtime/el_runtime.js @@ -522,6 +522,328 @@ function math_sin(f) { return Math.sin(f); } function math_cos(f) { return Math.cos(f); } function math_pi() { return Math.PI; } +// ── DOM bridge (browser-only) ────────────────────────────────────────────── +// +// These functions wrap the browser DOM API. Each throws a descriptive error +// when called from a Node environment, mirroring the pattern used by fs_* +// in browser mode. + +function _ensureBrowser(name) { + if (IS_NODE) { + throw new Error(`${name}: not supported in Node runtime — DOM is browser-only`); + } +} + +function dom_get_element(id) { + _ensureBrowser('dom_get_element'); + return document.getElementById(String(id)); +} + +function dom_get_value(el) { + _ensureBrowser('dom_get_value'); + return el == null ? '' : String(el.value ?? ''); +} + +function dom_set_value(el, v) { + _ensureBrowser('dom_set_value'); + if (el != null) el.value = String(v); +} + +function dom_get_text(el) { + _ensureBrowser('dom_get_text'); + return el == null ? '' : String(el.textContent ?? ''); +} + +function dom_set_text(el, text) { + _ensureBrowser('dom_set_text'); + if (el != null) el.textContent = String(text); +} + +function dom_set_prop(el, prop, val) { + _ensureBrowser('dom_set_prop'); + if (el != null) el[String(prop)] = val; +} + +function dom_get_prop(el, prop) { + _ensureBrowser('dom_get_prop'); + if (el == null) return null; + const v = el[String(prop)]; + return v === undefined ? null : v; +} + +function dom_set_style(el, prop, val) { + _ensureBrowser('dom_set_style'); + if (el != null) el.style[String(prop)] = String(val); +} + +function dom_add_class(el, cls) { + _ensureBrowser('dom_add_class'); + if (el != null) el.classList.add(String(cls)); +} + +function dom_remove_class(el, cls) { + _ensureBrowser('dom_remove_class'); + if (el != null) el.classList.remove(String(cls)); +} + +function dom_show(el) { + _ensureBrowser('dom_show'); + if (el != null) el.style.display = ''; +} + +function dom_hide(el) { + _ensureBrowser('dom_hide'); + if (el != null) el.style.display = 'none'; +} + +function dom_listen(el, event, handler) { + _ensureBrowser('dom_listen'); + if (el != null) el.addEventListener(String(event), handler); +} + +function dom_query(selector) { + _ensureBrowser('dom_query'); + return document.querySelector(String(selector)); +} + +function dom_query_all(selector) { + _ensureBrowser('dom_query_all'); + return Array.from(document.querySelectorAll(String(selector))); +} + +function dom_create(tag) { + _ensureBrowser('dom_create'); + return document.createElement(String(tag)); +} + +function dom_append(parent, child) { + _ensureBrowser('dom_append'); + if (parent != null && child != null) parent.appendChild(child); +} + +function dom_remove(el) { + _ensureBrowser('dom_remove'); + if (el != null) el.remove(); +} + +function dom_is_null(el) { + return el === null || el === undefined; +} + +// ── Extended DOM API (browser-only) ─────────────────────────────────────── + +function dom_set_attr(el, attr, val) { + _ensureBrowser('dom_set_attr'); + if (el != null) el.setAttribute(String(attr), String(val)); +} + +function dom_get_attr(el, attr) { + _ensureBrowser('dom_get_attr'); + if (el == null) return ''; + return el.getAttribute(String(attr)) ?? ''; +} + +function dom_remove_attr(el, attr) { + _ensureBrowser('dom_remove_attr'); + if (el != null) el.removeAttribute(String(attr)); +} + +function dom_set_html(el, html) { + _ensureBrowser('dom_set_html'); + if (el != null) el.innerHTML = String(html); +} + +function dom_get_html(el) { + _ensureBrowser('dom_get_html'); + return el == null ? '' : String(el.innerHTML ?? ''); +} + +function dom_get_parent(el) { + _ensureBrowser('dom_get_parent'); + return el == null ? null : (el.parentElement ?? null); +} + +function dom_contains_class(el, cls) { + _ensureBrowser('dom_contains_class'); + if (el == null) return false; + return el.classList.contains(String(cls)); +} + +function dom_get_checked(el) { + _ensureBrowser('dom_get_checked'); + return el == null ? false : Boolean(el.checked); +} + +function dom_set_checked(el, val) { + _ensureBrowser('dom_set_checked'); + if (el != null) el.checked = Boolean(val); +} + +// ── Timer API (browser + Node) ───────────────────────────────────────────── + +function set_timeout(ms, cb) { + if (typeof setTimeout === 'undefined') { + throw new Error('set_timeout: setTimeout not available in this environment'); + } + setTimeout(cb, ms | 0); +} + +function set_interval(ms, cb) { + if (typeof setInterval === 'undefined') { + throw new Error('set_interval: setInterval not available in this environment'); + } + return setInterval(cb, ms | 0); +} + +function clear_interval(handle) { + if (typeof clearInterval !== 'undefined') clearInterval(handle); +} + +// ── Local storage (browser-only) ─────────────────────────────────────────── + +function local_storage_get(key) { + _ensureBrowser('local_storage_get'); + return localStorage.getItem(String(key)) ?? ''; +} + +function local_storage_set(key, val) { + _ensureBrowser('local_storage_set'); + localStorage.setItem(String(key), String(val)); +} + +function local_storage_remove(key) { + _ensureBrowser('local_storage_remove'); + localStorage.removeItem(String(key)); +} + +// ── Window location / navigation (browser-only) ──────────────────────────── + +function window_location() { + _ensureBrowser('window_location'); + return window.location.href; +} + +function window_redirect(url) { + _ensureBrowser('window_redirect'); + window.location.href = String(url); +} + +function window_on_load(cb) { + if (typeof document !== 'undefined') { + document.addEventListener('DOMContentLoaded', cb); + } else if (typeof window !== 'undefined') { + window.addEventListener('load', cb); + } + // In Node: no-op +} + +// ── console_log (explicit debug log, distinct from println) ──────────────── + +function console_log(msg) { + // eslint-disable-next-line no-console + console.log(String(msg)); +} + +// ── Window export helpers ────────────────────────────────────────────────── +// +// Expose El functions to the browser's global scope so they can be called +// from inline event handlers (onclick="increment()") or by external JS. +// In Node mode, writes to globalThis so the same pattern works in tests. + +function window_set(name, val) { + if (typeof window !== 'undefined') { + window[String(name)] = val; + } else if (typeof globalThis !== 'undefined') { + globalThis[String(name)] = val; + } +} + +function window_get(name) { + if (typeof window !== 'undefined') { + const v = window[String(name)]; + return v === undefined ? null : v; + } + return null; +} + +// ── Promise helpers ──────────────────────────────────────────────────────── +// +// Third-party APIs often return Promises but are not El @async functions. +// These helpers let El programs chain .then / .catch without needing +// native_js, and without requiring the callee to be @async. + +function promise_then(p, cb) { + return Promise.resolve(p).then(cb); +} + +function promise_catch(p, cb) { + return Promise.resolve(p).catch(cb); +} + +function promise_resolve(val) { + return Promise.resolve(val); +} + +function promise_reject(msg) { + return Promise.reject(new Error(String(msg))); +} + +// ── Object / Array utilities ─────────────────────────────────────────────── +// +// Structural operations on Any-typed JS values. These complement the +// El map/list primitives for interop with third-party library objects. + +function object_assign(target, source) { + return Object.assign(Object.assign({}, target), source); +} + +function object_keys(obj) { + if (obj === null || obj === undefined) return []; + return Object.keys(obj); +} + +function object_values(obj) { + if (obj === null || obj === undefined) return []; + return Object.values(obj); +} + +function json_deep_clone(obj) { + if (obj === null || obj === undefined) return null; + return JSON.parse(JSON.stringify(obj)); +} + +function array_from(iterable) { + if (iterable === null || iterable === undefined) return []; + return Array.from(iterable); +} + +function type_of(val) { + return typeof val; +} + +function instanceof_check(val, constructor_name) { + if (typeof globalThis[constructor_name] === 'function') { + return val instanceof globalThis[constructor_name]; + } + return false; +} + +// ── native_js escape hatch ───────────────────────────────────────────────── +// +// Evaluate arbitrary JS from El source. Intended for calling third-party +// browser libraries (Supabase, Stripe, etc.) until proper El bindings exist. +// Use sparingly — this bypasses El's type system entirely. + +function native_js(code) { + // eslint-disable-next-line no-eval + return eval(String(code)); +} + +function native_js_call(obj, method, args) { + if (obj == null) throw new Error('native_js_call: object is null'); + return obj[String(method)](...(Array.isArray(args) ? args : [])); +} + // ── Stubs for not-yet-supported features ─────────────────────────────────── // // These compile but throw when called. See spec/codegen-js.md §7. @@ -632,6 +954,31 @@ const __el = { // Float / math float_to_str, int_to_float, float_to_int, format_float, decimal_round, str_to_float, math_sqrt, math_log, math_ln, math_sin, math_cos, math_pi, + // DOM bridge (browser-only) + dom_get_element, dom_get_value, dom_set_value, dom_get_text, dom_set_text, + dom_set_prop, dom_get_prop, dom_set_style, dom_add_class, dom_remove_class, + dom_show, dom_hide, dom_listen, dom_query, dom_query_all, dom_create, + dom_append, dom_remove, dom_is_null, + // Extended DOM + dom_set_attr, dom_get_attr, dom_remove_attr, dom_set_html, dom_get_html, + dom_get_parent, dom_contains_class, dom_get_checked, dom_set_checked, + // Timers + set_timeout, set_interval, clear_interval, + // Local storage + local_storage_get, local_storage_set, local_storage_remove, + // Window location + window_location, window_redirect, window_on_load, + // Debug + console_log, + // Window export helpers + window_set, window_get, + // Promise helpers + promise_then, promise_catch, promise_resolve, promise_reject, + // Object / Array utilities + object_assign, object_keys, object_values, json_deep_clone, + array_from, type_of, instanceof_check, + // native_js escape hatch + native_js, native_js_call, // CGI / DHARMA / Engram / LLM (stubs) el_cgi_init, dharma_connect, dharma_send, dharma_activate, dharma_emit, dharma_field, @@ -676,4 +1023,27 @@ export { dharma_connect, dharma_send, dharma_activate, dharma_emit, dharma_field, engram_node, engram_search, engram_activate, llm_call, llm_call_system, + // DOM bridge + dom_get_element, dom_get_value, dom_set_value, dom_get_text, dom_set_text, + dom_set_prop, dom_get_prop, dom_set_style, dom_add_class, dom_remove_class, + dom_show, dom_hide, dom_listen, dom_query, dom_query_all, dom_create, + dom_append, dom_remove, dom_is_null, + // Extended DOM + dom_set_attr, dom_get_attr, dom_remove_attr, dom_set_html, dom_get_html, + dom_get_parent, dom_contains_class, dom_get_checked, dom_set_checked, + // Timers + set_timeout, set_interval, clear_interval, + // Local storage + local_storage_get, local_storage_set, local_storage_remove, + // Window location + window_location, window_redirect, window_on_load, + // Debug + console_log, + // Window / native_js + window_set, window_get, native_js, native_js_call, + // Promise helpers + promise_then, promise_catch, promise_resolve, promise_reject, + // Object / Array utilities + object_assign, object_keys, object_values, json_deep_clone, + array_from, type_of, instanceof_check, }; diff --git a/lang/el-compiler/runtime/el_seed.c b/lang/el-compiler/runtime/el_seed.c new file mode 100644 index 0000000..5b47903 --- /dev/null +++ b/lang/el-compiler/runtime/el_seed.c @@ -0,0 +1,1205 @@ +/* + * el_seed.c — El language seed runtime: minimal C OS boundary + * + * This file exposes all OS-boundary primitives that El programs need, under + * the __ prefix convention. It is self-contained: all allocators, arena + * management, and el_request_start / el_request_end are defined here. + * + * Threading: __thread_create / __thread_join use dlsym(RTLD_DEFAULT) to look + * up El function symbols at runtime. This is the foundation of El's parallelism. + * + * Link: cc -std=c11 -I el-compiler/runtime -lcurl -lpthread \ + * -o .c el_seed.c + */ + +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#include "el_seed.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* ── Private allocator ───────────────────────────────────────────────────── */ +/* + * el_seed.c carries its own arena for per-request allocation tracking. + * The arena is reset at el_request_start / el_request_end, which are defined + * below and delegate to seed_request_start / seed_request_end. + */ + +#define SEED_ARENA_INITIAL 512 + +typedef struct { + char** ptrs; + size_t count; + size_t cap; +} SeedArena; + +static _Thread_local SeedArena _seed_arena = {NULL, 0, 0}; +static _Thread_local int _seed_arena_on = 0; + +static void seed_arena_track(char* p) { + if (!_seed_arena_on || !p) return; + if (_seed_arena.count >= _seed_arena.cap) { + size_t nc = _seed_arena.cap == 0 ? SEED_ARENA_INITIAL : _seed_arena.cap * 2; + char** g = realloc(_seed_arena.ptrs, nc * sizeof(char*)); + if (!g) return; + _seed_arena.ptrs = g; + _seed_arena.cap = nc; + } + _seed_arena.ptrs[_seed_arena.count++] = p; +} + +static void seed_request_start(void) { + _seed_arena.count = 0; + _seed_arena_on = 1; +} + +static void seed_request_end(void) { + _seed_arena_on = 0; + for (size_t i = 0; i < _seed_arena.count; i++) free(_seed_arena.ptrs[i]); + _seed_arena.count = 0; +} + +/* el_request_start / el_request_end — formerly defined in el_runtime.c. + * Now self-contained in el_seed.c, delegating to the seed arena. */ +void el_request_start(void) { seed_request_start(); } +void el_request_end(void) { seed_request_end(); } + +/* Persistent alloc — bypasses arena (state, engram internals). */ +static char* seed_strdup_persist(const char* s) { + if (!s) return strdup(""); + return strdup(s); +} + +static char* seed_strdup(const char* s) { + char* p = strdup(s ? s : ""); + seed_arena_track(p); + return p; +} + +static char* seed_strbuf(size_t n) { + char* p = malloc(n + 1); + if (!p) { fputs("el_seed: out of memory\n", stderr); exit(1); } + p[0] = '\0'; + seed_arena_track(p); + return p; +} + +static el_val_t seed_wrap_str(char* s) { return EL_STR(s); } + +/* ── String primitives ───────────────────────────────────────────────────── */ + +el_val_t __str_len(el_val_t s) { + const char* p = EL_CSTR(s); + if (!p) return 0; + return (el_val_t)strlen(p); +} + +el_val_t __str_char_at(el_val_t s, el_val_t i) { + const char* p = EL_CSTR(s); + if (!p) return 0; + int64_t len = (int64_t)strlen(p); + int64_t idx = (int64_t)i; + if (idx < 0 || idx >= len) return 0; + return (el_val_t)(unsigned char)p[idx]; +} + +el_val_t __str_alloc(el_val_t n) { + int64_t sz = (int64_t)n; + if (sz < 0) sz = 0; + char* buf = seed_strbuf((size_t)sz); + memset(buf, 0, (size_t)sz + 1); + return seed_wrap_str(buf); +} + +el_val_t __str_set_char(el_val_t s, el_val_t i, el_val_t c) { + char* p = (char*)(uintptr_t)s; + if (!p) return s; + int64_t len = (int64_t)strlen(p); + int64_t idx = (int64_t)i; + if (idx < 0 || idx >= len) return s; + p[idx] = (char)(unsigned char)(int64_t)c; + return s; +} + +el_val_t __str_cmp(el_val_t a, el_val_t b) { + const char* sa = EL_CSTR(a); + const char* sb = EL_CSTR(b); + if (!sa) sa = ""; + if (!sb) sb = ""; + return (el_val_t)strcmp(sa, sb); +} + +el_val_t __str_ncmp(el_val_t a, el_val_t b, el_val_t n) { + const char* sa = EL_CSTR(a); + const char* sb = EL_CSTR(b); + if (!sa) sa = ""; + if (!sb) sb = ""; + return (el_val_t)strncmp(sa, sb, (size_t)(int64_t)n); +} + +el_val_t __str_concat_raw(el_val_t a, el_val_t b) { + const char* sa = EL_CSTR(a); + const char* sb = EL_CSTR(b); + if (!sa) sa = ""; + if (!sb) sb = ""; + size_t la = strlen(sa), lb = strlen(sb); + char* out = seed_strbuf(la + lb); + memcpy(out, sa, la); + memcpy(out + la, sb, lb); + out[la + lb] = '\0'; + return seed_wrap_str(out); +} + +el_val_t __str_slice_raw(el_val_t s, el_val_t start, el_val_t end) { + const char* p = EL_CSTR(s); + if (!p) return seed_wrap_str(seed_strdup("")); + int64_t len = (int64_t)strlen(p); + int64_t st = (int64_t)start; + int64_t en = (int64_t)end; + if (st < 0) st = 0; + if (en > len) en = len; + if (st >= en) return seed_wrap_str(seed_strdup("")); + int64_t sz = en - st; + char* out = seed_strbuf((size_t)sz); + memcpy(out, p + st, (size_t)sz); + out[sz] = '\0'; + return seed_wrap_str(out); +} + +el_val_t __int_to_str(el_val_t n) { + char buf[32]; + snprintf(buf, sizeof(buf), "%lld", (long long)(int64_t)n); + return seed_wrap_str(seed_strdup(buf)); +} + +el_val_t __str_to_int(el_val_t s) { + const char* p = EL_CSTR(s); + if (!p) return 0; + return (el_val_t)atoll(p); +} + +el_val_t __float_to_str(el_val_t f) { + char buf[64]; + snprintf(buf, sizeof(buf), "%g", el_to_float(f)); + return seed_wrap_str(seed_strdup(buf)); +} + +el_val_t __str_to_float(el_val_t s) { + const char* p = EL_CSTR(s); + if (!p) return el_from_float(0.0); + return el_from_float(strtod(p, NULL)); +} + +/* ── I/O ─────────────────────────────────────────────────────────────────── */ + +void __println(el_val_t s) { + const char* p = EL_CSTR(s); + puts(p ? p : ""); +} + +void __print(el_val_t s) { + const char* p = EL_CSTR(s); + if (p) fputs(p, stdout); +} + +el_val_t __readline(void) { + char buf[4096]; + if (!fgets(buf, sizeof(buf), stdin)) return seed_wrap_str(seed_strdup("")); + size_t len = strlen(buf); + if (len > 0 && buf[len - 1] == '\n') buf[len - 1] = '\0'; + return seed_wrap_str(seed_strdup(buf)); +} + +/* ── Filesystem ──────────────────────────────────────────────────────────── */ + +el_val_t __fs_read(el_val_t path) { + const char* p = EL_CSTR(path); + if (!p) return seed_wrap_str(seed_strdup("")); + FILE* f = fopen(p, "rb"); + if (!f) return seed_wrap_str(seed_strdup("")); + fseek(f, 0, SEEK_END); + long sz = ftell(f); + rewind(f); + if (sz < 0) { fclose(f); return seed_wrap_str(seed_strdup("")); } + char* buf = seed_strbuf((size_t)sz); + size_t got = fread(buf, 1, (size_t)sz, f); + buf[got] = '\0'; + fclose(f); + return seed_wrap_str(buf); +} + +el_val_t __fs_write(el_val_t path, el_val_t content) { + const char* p = EL_CSTR(path); + const char* c = EL_CSTR(content); + if (!p || !c) return 0; + FILE* f = fopen(p, "wb"); + if (!f) return 0; + size_t n = strlen(c); + size_t w = fwrite(c, 1, n, f); + fclose(f); + return w == n ? 1 : 0; +} + +el_val_t __fs_exists(el_val_t path) { + const char* p = EL_CSTR(path); + if (!p || !*p) return 0; + struct stat st; + return (el_val_t)(stat(p, &st) == 0 ? 1 : 0); +} + +el_val_t __fs_list_raw(el_val_t path) { + const char* p = EL_CSTR(path); + if (!p) return seed_wrap_str(seed_strdup("")); + DIR* d = opendir(p); + if (!d) return seed_wrap_str(seed_strdup("")); + /* Build newline-separated list of filenames. */ + size_t cap = 4096, len = 0; + char* buf = malloc(cap); + if (!buf) { closedir(d); return seed_wrap_str(seed_strdup("")); } + buf[0] = '\0'; + struct dirent* e; + while ((e = readdir(d)) != NULL) { + if (strcmp(e->d_name, ".") == 0 || strcmp(e->d_name, "..") == 0) continue; + size_t nlen = strlen(e->d_name); + while (len + nlen + 2 >= cap) { + cap *= 2; + char* g = realloc(buf, cap); + if (!g) { free(buf); closedir(d); return seed_wrap_str(seed_strdup("")); } + buf = g; + } + if (len > 0) buf[len++] = '\n'; + memcpy(buf + len, e->d_name, nlen); + len += nlen; + buf[len] = '\0'; + } + closedir(d); + seed_arena_track(buf); + return seed_wrap_str(buf); +} + +el_val_t __fs_mkdir(el_val_t path) { + const char* p = EL_CSTR(path); + if (!p || !*p) return 0; + size_t n = strlen(p); + char* buf = malloc(n + 1); + if (!buf) return 0; + memcpy(buf, p, n + 1); + for (size_t i = 1; i <= n; i++) { + if (buf[i] == '/' || buf[i] == '\0') { + char saved = buf[i]; + buf[i] = '\0'; + if (buf[0] != '\0') { + if (mkdir(buf, 0755) != 0 && errno != EEXIST) { + struct stat st; + if (stat(buf, &st) != 0 || !S_ISDIR(st.st_mode)) { + free(buf); return 0; + } + } + } + buf[i] = saved; + } + } + free(buf); + return 1; +} + +el_val_t __fs_write_bytes(el_val_t path, el_val_t bytes, el_val_t n) { + const char* p = EL_CSTR(path); + const char* b = EL_CSTR(bytes); + int64_t sz = (int64_t)n; + if (!p || !b || sz < 0) return 0; + FILE* f = fopen(p, "wb"); + if (!f) return 0; + size_t written = (sz > 0) ? fwrite(b, 1, (size_t)sz, f) : 0; + int ok1 = (fflush(f) == 0); + int ok2 = (fclose(f) == 0); + if (!ok1 || !ok2 || written != (size_t)sz) { remove(p); return 0; } + return 1; +} + +/* ── HTTP client ─────────────────────────────────────────────────────────── */ + +typedef struct { + char* data; + size_t len; + size_t cap; +} SeedHttpBuf; + +static void seed_httpbuf_init(SeedHttpBuf* b) { + b->cap = 1024; b->len = 0; + b->data = malloc(b->cap); + if (!b->data) { fputs("el_seed: out of memory\n", stderr); exit(1); } + b->data[0] = '\0'; +} + +static void seed_httpbuf_append(SeedHttpBuf* b, const void* src, size_t n) { + while (b->len + n + 1 > b->cap) b->cap *= 2; + b->data = realloc(b->data, b->cap); + if (!b->data) { fputs("el_seed: out of memory\n", stderr); exit(1); } + memcpy(b->data + b->len, src, n); + b->len += n; + b->data[b->len] = '\0'; +} + +static size_t seed_http_write_cb(char* ptr, size_t size, size_t nmemb, void* ud) { + size_t n = size * nmemb; + seed_httpbuf_append((SeedHttpBuf*)ud, ptr, n); + return n; +} + +/* Build a curl_slist from a JSON object string of header name:value pairs. */ +static struct curl_slist* seed_headers_from_json(const char* hj) { + struct curl_slist* h = NULL; + if (!hj || !*hj) return NULL; + /* Walk key:value pairs at depth 1. Simple parser — same logic as json_find_key + * in el_runtime.c but adapted for building curl headers. */ + const char* p = hj; + while (*p && *p != '{') p++; + if (*p == '{') p++; + while (*p) { + while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r' || *p == ',') p++; + if (*p == '}' || *p == '\0') break; + if (*p != '"') break; + /* Parse key */ + p++; + const char* ks = p; + while (*p && *p != '"') { if (*p == '\\') p++; p++; } + size_t klen = (size_t)(p - ks); + if (*p == '"') p++; + /* Skip : */ + while (*p == ' ' || *p == ':') p++; + /* Parse value */ + if (*p != '"') break; + p++; + const char* vs = p; + while (*p && *p != '"') { if (*p == '\\') p++; p++; } + size_t vlen = (size_t)(p - vs); + if (*p == '"') p++; + /* Build "Key: Value" header line */ + size_t line_len = klen + 2 + vlen + 1; + char* line = malloc(line_len); + if (line) { + memcpy(line, ks, klen); + memcpy(line + klen, ": ", 2); + memcpy(line + klen + 2, vs, vlen); + line[klen + 2 + vlen] = '\0'; + h = curl_slist_append(h, line); + free(line); + } + } + return h; +} + +static el_val_t seed_http_error_json(const char* msg) { + if (!msg) msg = "unknown error"; + size_t n = strlen(msg) * 6 + 20; + char* buf = seed_strbuf(n); + /* Simple escape: replace " with \" */ + char* d = buf; + *d++ = '{'; *d++ = '"'; *d++ = 'e'; *d++ = 'r'; *d++ = 'r'; + *d++ = 'o'; *d++ = 'r'; *d++ = '"'; *d++ = ':'; *d++ = '"'; + for (const char* s = msg; *s; s++) { + if (*s == '"' || *s == '\\') *d++ = '\\'; + *d++ = *s; + } + *d++ = '"'; *d++ = '}'; *d = '\0'; + return seed_wrap_str(buf); +} + +el_val_t __http_do(el_val_t method, el_val_t url, el_val_t body, + el_val_t headers_json, el_val_t timeout_ms) { + const char* m = EL_CSTR(method); + const char* u = EL_CSTR(url); + const char* b = EL_CSTR(body); + const char* hj = EL_CSTR(headers_json); + int64_t tms = (int64_t)timeout_ms; + if (tms <= 0) tms = 60000; + + if (!u || !*u) return seed_http_error_json("empty url"); + + CURL* c = curl_easy_init(); + if (!c) return seed_http_error_json("curl_easy_init failed"); + + SeedHttpBuf rb; seed_httpbuf_init(&rb); + char errbuf[CURL_ERROR_SIZE]; errbuf[0] = '\0'; + + curl_easy_setopt(c, CURLOPT_URL, u); + curl_easy_setopt(c, CURLOPT_WRITEFUNCTION, seed_http_write_cb); + curl_easy_setopt(c, CURLOPT_WRITEDATA, &rb); + curl_easy_setopt(c, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(c, CURLOPT_TIMEOUT_MS, (long)tms); + curl_easy_setopt(c, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt(c, CURLOPT_ERRORBUFFER, errbuf); + curl_easy_setopt(c, CURLOPT_USERAGENT, "el-seed/1.0"); + + struct curl_slist* hdrs = seed_headers_from_json(hj); + if (hdrs) curl_easy_setopt(c, CURLOPT_HTTPHEADER, hdrs); + + if (m && strcmp(m, "POST") == 0) { + curl_easy_setopt(c, CURLOPT_POST, 1L); + curl_easy_setopt(c, CURLOPT_POSTFIELDS, b ? b : ""); + curl_easy_setopt(c, CURLOPT_POSTFIELDSIZE, (long)(b ? strlen(b) : 0)); + } else if (m && strcmp(m, "PUT") == 0) { + curl_easy_setopt(c, CURLOPT_CUSTOMREQUEST, "PUT"); + if (b) { + curl_easy_setopt(c, CURLOPT_POSTFIELDS, b); + curl_easy_setopt(c, CURLOPT_POSTFIELDSIZE, (long)strlen(b)); + } + } else if (m && strcmp(m, "DELETE") == 0) { + curl_easy_setopt(c, CURLOPT_CUSTOMREQUEST, "DELETE"); + } else if (m && strcmp(m, "PATCH") == 0) { + curl_easy_setopt(c, CURLOPT_CUSTOMREQUEST, "PATCH"); + if (b) { + curl_easy_setopt(c, CURLOPT_POSTFIELDS, b); + curl_easy_setopt(c, CURLOPT_POSTFIELDSIZE, (long)strlen(b)); + } + } + /* GET is the default */ + + CURLcode rc = curl_easy_perform(c); + if (hdrs) curl_slist_free_all(hdrs); + curl_easy_cleanup(c); + + if (rc != CURLE_OK) { + free(rb.data); + const char* em = errbuf[0] ? errbuf : curl_easy_strerror(rc); + return seed_http_error_json(em); + } + + seed_arena_track(rb.data); + return seed_wrap_str(rb.data); +} + +static size_t seed_http_file_write_cb(char* ptr, size_t size, size_t nmemb, void* ud) { + return fwrite(ptr, size, nmemb, (FILE*)ud); +} + +el_val_t __http_do_to_file(el_val_t method, el_val_t url, el_val_t body, + el_val_t headers_json, el_val_t out_path) { + const char* m = EL_CSTR(method); + const char* u = EL_CSTR(url); + const char* b = EL_CSTR(body); + const char* hj = EL_CSTR(headers_json); + const char* op = EL_CSTR(out_path); + + if (!u || !*u || !op || !*op) return 0; + FILE* f = fopen(op, "wb"); + if (!f) return 0; + + CURL* c = curl_easy_init(); + if (!c) { fclose(f); remove(op); return 0; } + + char errbuf[CURL_ERROR_SIZE]; errbuf[0] = '\0'; + curl_easy_setopt(c, CURLOPT_URL, u); + curl_easy_setopt(c, CURLOPT_WRITEFUNCTION, seed_http_file_write_cb); + curl_easy_setopt(c, CURLOPT_WRITEDATA, f); + curl_easy_setopt(c, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt(c, CURLOPT_TIMEOUT_MS, 60000L); + curl_easy_setopt(c, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt(c, CURLOPT_ERRORBUFFER, errbuf); + curl_easy_setopt(c, CURLOPT_USERAGENT, "el-seed/1.0"); + + struct curl_slist* hdrs = seed_headers_from_json(hj); + if (hdrs) curl_easy_setopt(c, CURLOPT_HTTPHEADER, hdrs); + + if (m && strcmp(m, "POST") == 0) { + curl_easy_setopt(c, CURLOPT_POST, 1L); + curl_easy_setopt(c, CURLOPT_POSTFIELDS, b ? b : ""); + curl_easy_setopt(c, CURLOPT_POSTFIELDSIZE, (long)(b ? strlen(b) : 0)); + } + + CURLcode rc = curl_easy_perform(c); + if (hdrs) curl_slist_free_all(hdrs); + curl_easy_cleanup(c); + + int ok1 = (fflush(f) == 0); + int ok2 = (fclose(f) == 0); + + if (rc != CURLE_OK || !ok1 || !ok2) { remove(op); return 0; } + return 1; +} + +/* ── HTTP server ─────────────────────────────────────────────────────────── */ +/* Delegate to el_runtime.c's http_serve / http_serve_v2 via the existing + * http_set_handler mechanism. */ + +void __http_serve(el_val_t port, el_val_t handler_name) { + http_serve(port, handler_name); +} + +void __http_serve_v2(el_val_t port, el_val_t handler_name) { + http_serve_v2(port, handler_name); +} + +el_val_t __http_response(el_val_t status, el_val_t headers_json, el_val_t body) { + return http_response(status, headers_json, body); +} + +/* ── HTTP SSE — Server-Sent Events streaming ─────────────────────────────── */ +/* + * Thread-local file descriptor stashed by http_worker_v2 before calling the + * El handler. El SSE builtins read this to get the raw socket fd. + * + * Lifecycle: + * http_worker_v2 sets _tl_http_conn_fd = fd (via el_seed_set_http_conn_fd) + * El handler calls __http_conn_fd() → receives that fd + * El handler calls __http_sse_open(fd) → sends SSE headers, keeps fd open + * El handler calls __http_sse_send(fd, data) → writes "data: ...\n\n" + * El handler calls __http_sse_close(fd) → closes the fd + * El handler returns "__sse__" sentinel → http_worker_v2 does NOT close fd + * + * The -1 value means no current connection (guard against misuse outside + * a handler context). + */ +static __thread int _tl_http_conn_fd = -1; + +/* Called by el_runtime.c's http_worker_v2 — not part of the El ABI. */ +void el_seed_set_http_conn_fd(int fd) { + _tl_http_conn_fd = fd; +} + +/* __http_conn_fd() — returns the raw fd for the current HTTP connection. + * Valid only inside an http_serve_v2 handler before it returns. */ +el_val_t __http_conn_fd(void) { + return EL_INT(_tl_http_conn_fd); +} + +/* __http_sse_open(fd) — sends SSE response headers on fd, keeping it open. + * Returns 1 on success, 0 on write failure. */ +el_val_t __http_sse_open(el_val_t conn_id) { + int fd = (int)(int64_t)conn_id; + if (fd < 0) return 0; + static const char sse_headers[] = + "HTTP/1.1 200 OK\r\n" + "Content-Type: text/event-stream\r\n" + "Cache-Control: no-cache\r\n" + "Connection: keep-alive\r\n" + "Access-Control-Allow-Origin: *\r\n" + "\r\n"; + size_t n = sizeof(sse_headers) - 1; /* exclude NUL */ + size_t sent = 0; + while (sent < n) { + ssize_t w = write(fd, sse_headers + sent, n - sent); + if (w <= 0) return 0; + sent += (size_t)w; + } + return 1; +} + +/* __http_sse_send(fd, data) — writes one SSE event frame: "data: \n\n". + * data must not contain newlines. Returns 1 on success, 0 on client disconnect. */ +el_val_t __http_sse_send(el_val_t conn_id, el_val_t data) { + int fd = (int)(int64_t)conn_id; + if (fd < 0) return 0; + const char* s = EL_CSTR(data); + if (!s) s = ""; + /* Build "data: \n\n" in a single buffer for one write call. */ + size_t prefix_len = 6; /* "data: " */ + size_t slen = strlen(s); + size_t total = prefix_len + slen + 2; /* + "\n\n" */ + char* buf = malloc(total + 1); + if (!buf) return 0; + memcpy(buf, "data: ", 6); + memcpy(buf + 6, s, slen); + buf[6 + slen] = '\n'; + buf[6 + slen + 1] = '\n'; + buf[total] = '\0'; + size_t sent = 0; + int ok = 1; + while (sent < total) { + ssize_t w = write(fd, buf + sent, total - sent); + if (w <= 0) { ok = 0; break; } + sent += (size_t)w; + } + free(buf); + return ok ? 1 : 0; +} + +/* __http_sse_close(fd) — closes the SSE connection fd. */ +el_val_t __http_sse_close(el_val_t conn_id) { + int fd = (int)(int64_t)conn_id; + if (fd < 0) return 0; + close(fd); + return 1; +} + +/* ── Threading ───────────────────────────────────────────────────────────── */ +/* + * Design: + * Static ElThread table (max EL_SEED_MAX_THREADS entries). + * __thread_create: pick a free slot, store fn_name + arg, launch pthread. + * Worker: dlsym(RTLD_DEFAULT, fn_name) → call as el_val_t fn(el_val_t). + * Store result string in slot.result. + * __thread_join: pthread_join, return stored result string. + * + * Thread handle is the slot index (0..EL_SEED_MAX_THREADS-1). + * Returns -1 on failure (no slots, dlsym failure, pthread_create failure). + * + * Each slot is guarded by its own mutex so join/create on different handles + * never contend. + */ + +#define EL_SEED_MAX_THREADS 64 + +typedef el_val_t (*ElFn1)(el_val_t); + +typedef struct { + int in_use; + char* fn_name; + char* arg; + char* result; + pthread_t tid; + int done; /* set to 1 by worker before exit */ +} ElThread; + +static ElThread _el_threads[EL_SEED_MAX_THREADS]; +static pthread_mutex_t _el_thread_mu = PTHREAD_MUTEX_INITIALIZER; + +typedef struct { + int slot; +} ElThreadArg; + +static void* el_thread_worker(void* raw) { + ElThreadArg* ta = (ElThreadArg*)raw; + int slot = ta->slot; + free(ta); + + ElThread* t = &_el_threads[slot]; + + /* Resolve the El function symbol in the running binary. */ + void* sym = dlsym(RTLD_DEFAULT, t->fn_name); + if (!sym) { + pthread_mutex_lock(&_el_thread_mu); + t->result = seed_strdup_persist(""); + t->done = 1; + pthread_mutex_unlock(&_el_thread_mu); + return NULL; + } + + ElFn1 fn = (ElFn1)sym; + + /* Call the El function with the string argument. */ + el_val_t arg_val = EL_STR(t->arg); + el_val_t ret = fn(arg_val); + + /* Persist the result string. */ + const char* rs = EL_CSTR(ret); + char* stored = seed_strdup_persist(rs ? rs : ""); + + pthread_mutex_lock(&_el_thread_mu); + t->result = stored; + t->done = 1; + pthread_mutex_unlock(&_el_thread_mu); + + return NULL; +} + +el_val_t __thread_create(el_val_t fn_name, el_val_t arg) { + const char* fname = EL_CSTR(fn_name); + const char* astr = EL_CSTR(arg); + if (!fname || !*fname) return (el_val_t)(int64_t)-1; + if (!astr) astr = ""; + + pthread_mutex_lock(&_el_thread_mu); + int slot = -1; + for (int i = 0; i < EL_SEED_MAX_THREADS; i++) { + if (!_el_threads[i].in_use) { slot = i; break; } + } + if (slot < 0) { + pthread_mutex_unlock(&_el_thread_mu); + return (el_val_t)(int64_t)-1; + } + + ElThread* t = &_el_threads[slot]; + t->in_use = 1; + t->done = 0; + t->fn_name = seed_strdup_persist(fname); + t->arg = seed_strdup_persist(astr); + t->result = NULL; + pthread_mutex_unlock(&_el_thread_mu); + + ElThreadArg* ta = malloc(sizeof(ElThreadArg)); + if (!ta) { + pthread_mutex_lock(&_el_thread_mu); + free(t->fn_name); free(t->arg); + t->in_use = 0; + pthread_mutex_unlock(&_el_thread_mu); + return (el_val_t)(int64_t)-1; + } + ta->slot = slot; + + if (pthread_create(&t->tid, NULL, el_thread_worker, ta) != 0) { + free(ta); + pthread_mutex_lock(&_el_thread_mu); + free(t->fn_name); free(t->arg); + t->in_use = 0; + pthread_mutex_unlock(&_el_thread_mu); + return (el_val_t)(int64_t)-1; + } + + return (el_val_t)(int64_t)slot; +} + +el_val_t __thread_join(el_val_t tid) { + int64_t slot = (int64_t)tid; + if (slot < 0 || slot >= EL_SEED_MAX_THREADS) return seed_wrap_str(seed_strdup("")); + + ElThread* t = &_el_threads[slot]; + + pthread_mutex_lock(&_el_thread_mu); + if (!t->in_use) { + pthread_mutex_unlock(&_el_thread_mu); + return seed_wrap_str(seed_strdup("")); + } + pthread_mutex_unlock(&_el_thread_mu); + + /* Wait for thread to finish. */ + pthread_join(t->tid, NULL); + + pthread_mutex_lock(&_el_thread_mu); + char* res = t->result ? t->result : ""; + char* copy = seed_strdup(res); /* arena-tracked for caller lifetime */ + free(t->fn_name); + free(t->arg); + if (t->result) { free(t->result); t->result = NULL; } + t->fn_name = NULL; t->arg = NULL; + t->in_use = 0; + t->done = 0; + pthread_mutex_unlock(&_el_thread_mu); + + return seed_wrap_str(copy); +} + +/* ── Mutex pool ──────────────────────────────────────────────────────────── */ + +#define EL_SEED_MAX_MUTEXES 256 + +static pthread_mutex_t _el_mutexes[EL_SEED_MAX_MUTEXES]; +static int _el_mutex_init[EL_SEED_MAX_MUTEXES]; +static int _el_mutex_used[EL_SEED_MAX_MUTEXES]; +static pthread_mutex_t _el_mutex_pool_mu = PTHREAD_MUTEX_INITIALIZER; + +el_val_t __mutex_new(void) { + pthread_mutex_lock(&_el_mutex_pool_mu); + int slot = -1; + for (int i = 0; i < EL_SEED_MAX_MUTEXES; i++) { + if (!_el_mutex_used[i]) { slot = i; break; } + } + if (slot < 0) { + pthread_mutex_unlock(&_el_mutex_pool_mu); + return (el_val_t)(int64_t)-1; + } + _el_mutex_used[slot] = 1; + if (!_el_mutex_init[slot]) { + pthread_mutex_init(&_el_mutexes[slot], NULL); + _el_mutex_init[slot] = 1; + } + pthread_mutex_unlock(&_el_mutex_pool_mu); + return (el_val_t)(int64_t)slot; +} + +void __mutex_lock(el_val_t m) { + int64_t slot = (int64_t)m; + if (slot < 0 || slot >= EL_SEED_MAX_MUTEXES) return; + if (!_el_mutex_init[slot]) return; + pthread_mutex_lock(&_el_mutexes[slot]); +} + +void __mutex_unlock(el_val_t m) { + int64_t slot = (int64_t)m; + if (slot < 0 || slot >= EL_SEED_MAX_MUTEXES) return; + if (!_el_mutex_init[slot]) return; + pthread_mutex_unlock(&_el_mutexes[slot]); +} + +/* ── Subprocess ──────────────────────────────────────────────────────────── */ + +el_val_t __exec(el_val_t cmd) { + const char* c = EL_CSTR(cmd); + if (!c) return seed_wrap_str(seed_strdup("")); + FILE* f = popen(c, "r"); + if (!f) return seed_wrap_str(seed_strdup("")); + size_t cap = 4096, len = 0; + char* buf = malloc(cap); + if (!buf) { pclose(f); return seed_wrap_str(seed_strdup("")); } + char tmp[4096]; + while (fgets(tmp, sizeof(tmp), f)) { + size_t n = strlen(tmp); + while (len + n + 1 > cap) { + cap *= 2; + char* g = realloc(buf, cap); + if (!g) { free(buf); pclose(f); return seed_wrap_str(seed_strdup("")); } + buf = g; + } + memcpy(buf + len, tmp, n); + len += n; + buf[len] = '\0'; + } + pclose(f); + seed_arena_track(buf); + return seed_wrap_str(buf); +} + +void __exec_bg(el_val_t cmd) { + const char* c = EL_CSTR(cmd); + if (!c) return; + /* Fork-free: run in background via system() with & appended. */ + size_t n = strlen(c); + char* s = malloc(n + 4); + if (!s) return; + memcpy(s, c, n); + memcpy(s + n, " &", 3); + system(s); + free(s); +} + +/* ── Environment and process ─────────────────────────────────────────────── */ + +el_val_t __env_get(el_val_t key) { + const char* k = EL_CSTR(key); + if (!k) return seed_wrap_str(seed_strdup("")); + const char* v = getenv(k); + return seed_wrap_str(seed_strdup(v ? v : "")); +} + +void __exit_program(el_val_t code) { + exit((int)(int64_t)code); +} + +/* ── args_json ────────────────────────────────────────────────────────────── */ + +static int _seed_argc = 0; +static char** _seed_argv = NULL; + +void el_seed_init_args(int argc, char** argv) { + _seed_argc = argc; + _seed_argv = argv; +} + +el_val_t __args_json(void) { + /* Return ["arg1","arg2",...] as a JSON string. Skip argv[0] (program name). */ + size_t cap = 256, len = 0; + char* buf = malloc(cap); + if (!buf) return seed_wrap_str(seed_strdup("[]")); + buf[len++] = '['; + int first = 1; + for (int i = 1; i < _seed_argc; i++) { + const char* a = _seed_argv[i]; + /* Estimate: each arg needs at most strlen*6+4 bytes (worst case escape) */ + size_t need = strlen(a) * 6 + 8; + while (len + need + 2 > cap) { + cap *= 2; + char* g = realloc(buf, cap); + if (!g) { free(buf); return seed_wrap_str(seed_strdup("[]")); } + buf = g; + } + if (!first) buf[len++] = ','; + first = 0; + buf[len++] = '"'; + for (const char* p = a; *p; p++) { + unsigned char c = (unsigned char)*p; + if (c == '"') { buf[len++] = '\\'; buf[len++] = '"'; } + else if (c == '\\') { buf[len++] = '\\'; buf[len++] = '\\'; } + else if (c == '\n') { buf[len++] = '\\'; buf[len++] = 'n'; } + else if (c == '\r') { buf[len++] = '\\'; buf[len++] = 'r'; } + else if (c == '\t') { buf[len++] = '\\'; buf[len++] = 't'; } + else buf[len++] = (char)c; + } + buf[len++] = '"'; + } + buf[len++] = ']'; + buf[len] = '\0'; + seed_arena_track(buf); + return seed_wrap_str(buf); +} + +/* ── Time ────────────────────────────────────────────────────────────────── */ + +el_val_t __time_now_ns(void) { + struct timespec ts; + if (clock_gettime(CLOCK_REALTIME, &ts) == 0) { + int64_t ns = (int64_t)ts.tv_sec * 1000000000LL + (int64_t)ts.tv_nsec; + return (el_val_t)ns; + } + struct timeval tv; + gettimeofday(&tv, NULL); + return (el_val_t)((int64_t)tv.tv_sec * 1000000000LL + (int64_t)tv.tv_usec * 1000LL); +} + +void __sleep_ms(el_val_t ms) { + int64_t m = (int64_t)ms; + if (m < 0) m = 0; + struct timespec ts; + ts.tv_sec = (time_t)(m / 1000LL); + ts.tv_nsec = (long)((m % 1000LL) * 1000000LL); + nanosleep(&ts, NULL); +} + +/* ── UUID ────────────────────────────────────────────────────────────────── */ + +static int _seed_uuid_seeded = 0; + +el_val_t __uuid_v4(void) { + if (!_seed_uuid_seeded) { + srand((unsigned)time(NULL) ^ (unsigned)(uintptr_t)&_seed_uuid_seeded); + _seed_uuid_seeded = 1; + } + unsigned char b[16]; + for (int i = 0; i < 16; i++) b[i] = (unsigned char)(rand() & 0xff); + b[6] = (b[6] & 0x0f) | 0x40; /* version 4 */ + b[8] = (b[8] & 0x3f) | 0x80; /* RFC 4122 variant */ + char buf[37]; + snprintf(buf, sizeof(buf), + "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x", + b[0],b[1],b[2],b[3], b[4],b[5], b[6],b[7], + b[8],b[9], b[10],b[11],b[12],b[13],b[14],b[15]); + return seed_wrap_str(seed_strdup(buf)); +} + +/* ── Math ────────────────────────────────────────────────────────────────── */ + +el_val_t __sqrt_f(el_val_t f) { return el_from_float(sqrt(el_to_float(f))); } +el_val_t __log_f(el_val_t f) { return el_from_float(log10(el_to_float(f))); } +el_val_t __ln_f(el_val_t f) { return el_from_float(log(el_to_float(f))); } +el_val_t __sin_f(el_val_t f) { return el_from_float(sin(el_to_float(f))); } +el_val_t __cos_f(el_val_t f) { return el_from_float(cos(el_to_float(f))); } +el_val_t __pi_f(void) { return el_from_float(3.14159265358979323846); } + +/* ── JSON — thin wrappers around el_runtime.c implementations ────────────── */ + +el_val_t __json_get(el_val_t json, el_val_t key) { return json_get(json, key); } +el_val_t __json_get_raw(el_val_t json_str, el_val_t key) { return json_get_raw(json_str, key); } +el_val_t __json_parse(el_val_t s) { return json_parse(s); } +el_val_t __json_stringify(el_val_t v) { return json_stringify(v); } +el_val_t __json_array_len(el_val_t json_str) { return json_array_len(json_str); } +el_val_t __json_array_get(el_val_t json_str, el_val_t index) { return json_array_get(json_str, index); } +el_val_t __json_array_get_string(el_val_t json_str, el_val_t index) { return json_array_get_string(json_str, index); } +el_val_t __json_get_string(el_val_t json_str, el_val_t key) { return json_get_string(json_str, key); } +el_val_t __json_get_int(el_val_t json_str, el_val_t key) { return json_get_int(json_str, key); } +el_val_t __json_get_float(el_val_t json_str, el_val_t key) { return json_get_float(json_str, key); } +el_val_t __json_get_bool(el_val_t json_str, el_val_t key) { return json_get_bool(json_str, key); } +el_val_t __json_set(el_val_t json_str, el_val_t key, el_val_t value) { return json_set(json_str, key, value); } + +/* ── State K/V — thin wrappers ───────────────────────────────────────────── */ + +el_val_t __state_set(el_val_t key, el_val_t value) { return state_set(key, value); } +el_val_t __state_get(el_val_t key) { return state_get(key); } +el_val_t __state_del(el_val_t key) { return state_del(key); } +el_val_t __state_keys(void) { return state_keys(); } + +/* ── HTML/URL — thin wrappers ────────────────────────────────────────────── */ + +el_val_t __html_sanitize(el_val_t input_html, el_val_t allowlist_json) { + return el_html_sanitize(input_html, allowlist_json); +} + +el_val_t __url_encode(el_val_t s) { return url_encode(s); } +el_val_t __url_decode(el_val_t s) { return url_decode(s); } + +/* ── Engram — thin wrappers ──────────────────────────────────────────────── */ + +el_val_t __engram_node(el_val_t content, el_val_t node_type, el_val_t salience) { + return engram_node(content, node_type, salience); +} + +el_val_t __engram_node_full(el_val_t content, el_val_t node_type, el_val_t label, + el_val_t salience, el_val_t importance, el_val_t confidence, + el_val_t tier, el_val_t tags) { + return engram_node_full(content, node_type, label, salience, importance, confidence, tier, tags); +} + +el_val_t __engram_node_layered(el_val_t content, el_val_t node_type, el_val_t label, + el_val_t salience, el_val_t certainty, el_val_t confidence, + el_val_t status, el_val_t tags, el_val_t layer_id) { + return engram_node_layered(content, node_type, label, salience, certainty, confidence, + status, tags, layer_id); +} + +el_val_t __engram_add_layer(el_val_t name, el_val_t priority, el_val_t suppressible, + el_val_t transparent, el_val_t injectable) { + return engram_add_layer(name, priority, suppressible, transparent, injectable); +} + +el_val_t __engram_remove_layer(el_val_t layer_id) { return engram_remove_layer(layer_id); } +el_val_t __engram_list_layers(void) { return engram_list_layers(); } +el_val_t __engram_get_node(el_val_t id) { return engram_get_node(id); } +void __engram_strengthen(el_val_t node_id) { engram_strengthen(node_id); } +void __engram_forget(el_val_t node_id) { engram_forget(node_id); } +el_val_t __engram_node_count(void) { return engram_node_count(); } + +el_val_t __engram_search(el_val_t query, el_val_t limit) { return engram_search(query, limit); } +el_val_t __engram_scan_nodes(el_val_t limit, el_val_t offset) { return engram_scan_nodes(limit, offset); } + +void __engram_connect(el_val_t from_id, el_val_t to_id, el_val_t weight, el_val_t relation) { + engram_connect(from_id, to_id, weight, relation); +} + +el_val_t __engram_edge_between(el_val_t from_id, el_val_t to_id) { + return engram_edge_between(from_id, to_id); +} + +el_val_t __engram_neighbors(el_val_t node_id) { return engram_neighbors(node_id); } + +el_val_t __engram_neighbors_filtered(el_val_t node_id, el_val_t max_depth, el_val_t direction) { + return engram_neighbors_filtered(node_id, max_depth, direction); +} + +el_val_t __engram_edge_count(void) { return engram_edge_count(); } + +el_val_t __engram_activate(el_val_t query, el_val_t depth) { return engram_activate(query, depth); } +el_val_t __engram_save(el_val_t path) { return engram_save(path); } +el_val_t __engram_load(el_val_t path) { return engram_load(path); } + +el_val_t __engram_get_node_json(el_val_t id) { return engram_get_node_json(id); } + +el_val_t __engram_search_json(el_val_t query, el_val_t limit) { + return engram_search_json(query, limit); +} + +el_val_t __engram_scan_nodes_json(el_val_t limit, el_val_t offset) { + return engram_scan_nodes_json(limit, offset); +} + +el_val_t __engram_scan_nodes_by_type_json(el_val_t node_type, el_val_t limit, el_val_t offset) { + return engram_scan_nodes_by_type_json(node_type, limit, offset); +} + +el_val_t __engram_neighbors_json(el_val_t node_id, el_val_t max_depth, el_val_t direction) { + return engram_neighbors_json(node_id, max_depth, direction); +} + +el_val_t __engram_activate_json(el_val_t query, el_val_t depth) { + return engram_activate_json(query, depth); +} + +el_val_t __engram_stats_json(void) { return engram_stats_json(); } +el_val_t __engram_list_layers_json(void) { return engram_list_layers_json(); } + +el_val_t __engram_compile_layered_json(el_val_t intent, el_val_t depth) { + return engram_compile_layered_json(intent, depth); +} + +/* ── Cryptographic hashing ────────────────────────────────────────────────── */ +/* + * SHA-256 — self-contained implementation (no OpenSSL dependency). + * Based on Brad Conte's public-domain reference implementation. + */ + +typedef struct { + uint8_t data[64]; + uint32_t datalen; + uint64_t bitlen; + uint32_t state[8]; +} _seed_sha256_ctx; + +static const uint32_t _seed_sha256_k[64] = { + 0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5,0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5, + 0xd807aa98,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174, + 0xe49b69c1,0xefbe4786,0x0fc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da, + 0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7,0xc6e00bf3,0xd5a79147,0x06ca6351,0x14292967, + 0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85, + 0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3,0xd192e819,0xd6990624,0xf40e3585,0x106aa070, + 0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3, + 0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208,0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2 +}; + +#define _SEED_ROTR32(x,n) (((x)>>(n))|((x)<<(32-(n)))) +#define _SEED_CH(x,y,z) (((x)&(y))^(~(x)&(z))) +#define _SEED_MAJ(x,y,z) (((x)&(y))^((x)&(z))^((y)&(z))) +#define _SEED_EP0(x) (_SEED_ROTR32(x,2)^_SEED_ROTR32(x,13)^_SEED_ROTR32(x,22)) +#define _SEED_EP1(x) (_SEED_ROTR32(x,6)^_SEED_ROTR32(x,11)^_SEED_ROTR32(x,25)) +#define _SEED_SIG0(x) (_SEED_ROTR32(x,7)^_SEED_ROTR32(x,18)^((x)>>3)) +#define _SEED_SIG1(x) (_SEED_ROTR32(x,17)^_SEED_ROTR32(x,19)^((x)>>10)) + +static void _seed_sha256_transform(_seed_sha256_ctx* ctx, const uint8_t* data) { + uint32_t a,b,c,d,e,f,g,h,t1,t2,m[64]; + for (int i=0,j=0; i<16; i++,j+=4) + m[i]=(uint32_t)(data[j]<<24)|(data[j+1]<<16)|(data[j+2]<<8)|data[j+3]; + for (int i=16; i<64; i++) + m[i]=_SEED_SIG1(m[i-2])+m[i-7]+_SEED_SIG0(m[i-15])+m[i-16]; + a=ctx->state[0]; b=ctx->state[1]; c=ctx->state[2]; d=ctx->state[3]; + e=ctx->state[4]; f=ctx->state[5]; g=ctx->state[6]; h=ctx->state[7]; + for (int i=0; i<64; i++) { + t1=h+_SEED_EP1(e)+_SEED_CH(e,f,g)+_seed_sha256_k[i]+m[i]; + t2=_SEED_EP0(a)+_SEED_MAJ(a,b,c); + h=g; g=f; f=e; e=d+t1; d=c; c=b; b=a; a=t1+t2; + } + ctx->state[0]+=a; ctx->state[1]+=b; ctx->state[2]+=c; ctx->state[3]+=d; + ctx->state[4]+=e; ctx->state[5]+=f; ctx->state[6]+=g; ctx->state[7]+=h; +} + +static void _seed_sha256_init(_seed_sha256_ctx* ctx) { + ctx->datalen=0; ctx->bitlen=0; + ctx->state[0]=0x6a09e667; ctx->state[1]=0xbb67ae85; + ctx->state[2]=0x3c6ef372; ctx->state[3]=0xa54ff53a; + ctx->state[4]=0x510e527f; ctx->state[5]=0x9b05688c; + ctx->state[6]=0x1f83d9ab; ctx->state[7]=0x5be0cd19; +} + +static void _seed_sha256_update(_seed_sha256_ctx* ctx, const uint8_t* data, size_t len) { + for (size_t i=0; idata[ctx->datalen++] = data[i]; + if (ctx->datalen==64) { _seed_sha256_transform(ctx,ctx->data); ctx->bitlen+=512; ctx->datalen=0; } + } +} + +static void _seed_sha256_final(_seed_sha256_ctx* ctx, uint8_t hash[32]) { + uint32_t i=ctx->datalen; + ctx->data[i++]=0x80; + if (ctx->datalen<56) { while(i<56) ctx->data[i++]=0; } + else { while(i<64) ctx->data[i++]=0; _seed_sha256_transform(ctx,ctx->data); memset(ctx->data,0,56); } + ctx->bitlen+=ctx->datalen*8; + ctx->data[63]=(uint8_t)(ctx->bitlen); ctx->data[62]=(uint8_t)(ctx->bitlen>>8); + ctx->data[61]=(uint8_t)(ctx->bitlen>>16); ctx->data[60]=(uint8_t)(ctx->bitlen>>24); + ctx->data[59]=(uint8_t)(ctx->bitlen>>32); ctx->data[58]=(uint8_t)(ctx->bitlen>>40); + ctx->data[57]=(uint8_t)(ctx->bitlen>>48); ctx->data[56]=(uint8_t)(ctx->bitlen>>56); + _seed_sha256_transform(ctx,ctx->data); + for (i=0; i<4; i++) { + hash[i] =(uint8_t)(ctx->state[0]>>(24-i*8)); + hash[i+4] =(uint8_t)(ctx->state[1]>>(24-i*8)); + hash[i+8] =(uint8_t)(ctx->state[2]>>(24-i*8)); + hash[i+12] =(uint8_t)(ctx->state[3]>>(24-i*8)); + hash[i+16] =(uint8_t)(ctx->state[4]>>(24-i*8)); + hash[i+20] =(uint8_t)(ctx->state[5]>>(24-i*8)); + hash[i+24] =(uint8_t)(ctx->state[6]>>(24-i*8)); + hash[i+28] =(uint8_t)(ctx->state[7]>>(24-i*8)); + } +} + +el_val_t __sha256_hex(el_val_t sv) { + const char* s = EL_CSTR(sv); + if (!s) s = ""; + _seed_sha256_ctx ctx; + _seed_sha256_init(&ctx); + _seed_sha256_update(&ctx, (const uint8_t*)s, strlen(s)); + uint8_t digest[32]; + _seed_sha256_final(&ctx, digest); + static const char hex[] = "0123456789abcdef"; + char* out = malloc(65); + if (!out) return EL_STR(""); + for (int i=0; i<32; i++) { + out[i*2] = hex[(digest[i]>>4)&0xf]; + out[i*2+1] = hex[digest[i]&0xf]; + } + out[64] = '\0'; + return EL_STR(out); +} diff --git a/lang/el-compiler/runtime/el_seed.h b/lang/el-compiler/runtime/el_seed.h new file mode 100644 index 0000000..04d53ca --- /dev/null +++ b/lang/el-compiler/runtime/el_seed.h @@ -0,0 +1,248 @@ +/* + * el_seed.h — El language seed runtime header + * + * Declares all OS-boundary primitives available to compiled El programs. + * All functions use the __ prefix convention. Signatures use el_val_t (= int64_t) + * as the universal value type. + * + * el_seed.c is the complete C boundary for the El runtime. The heavy runtime + * (el_runtime.c) has been retired — everything lives in el_seed.c plus the + * native El runtime (runtime/ *.el files). + * + * Link requirements: + * -lcurl — HTTP client (__http_do, __http_do_to_file) + * -lpthread — threading (__thread_create, __thread_join, __mutex_new, ...) + * + * Canonical compile (via elb): + * elb builds and links el_seed.c automatically. + */ + +#pragma once + +#include +#include + +/* ── Value model ───────────────────────────────────────────────────────────── + * All El values are el_val_t (int64_t). On 64-bit systems a pointer fits. + * String -> el_val_t (holds const char* via uintptr_t cast) + * Int -> el_val_t (stored directly) + * Bool -> el_val_t (0 = false, nonzero = true) + * Void -> void + */ +typedef int64_t el_val_t; + +#define EL_STR(s) ((el_val_t)(uintptr_t)(s)) +#define EL_CSTR(v) ((const char*)(uintptr_t)(v)) +#define EL_INT(v) (v) +#define EL_NULL ((el_val_t)0) + +/* Float values share the el_val_t slot via bit-cast. */ +static inline double el_to_float(el_val_t v) { + union { int64_t i; double f; } u; u.i = (int64_t)v; return u.f; +} +static inline el_val_t el_from_float(double f) { + union { double f; int64_t i; } u; u.f = f; return (el_val_t)u.i; +} + +#ifdef __cplusplus +extern "C" { +#endif + +/* ── String primitives ───────────────────────────────────────────────────── */ + +el_val_t __str_len(el_val_t s); +el_val_t __str_char_at(el_val_t s, el_val_t i); /* returns Int (byte value) */ +el_val_t __str_alloc(el_val_t n); /* malloc(n+1), zero-init, return String */ +el_val_t __str_set_char(el_val_t s, el_val_t i, el_val_t c); /* s[i]=c, return s */ +el_val_t __str_cmp(el_val_t a, el_val_t b); /* strcmp result as Int */ +el_val_t __str_ncmp(el_val_t a, el_val_t b, el_val_t n); /* strncmp */ +el_val_t __str_concat_raw(el_val_t a, el_val_t b); /* malloc+strcpy concat */ +el_val_t __str_slice_raw(el_val_t s, el_val_t start, el_val_t end); /* substring copy */ +el_val_t __int_to_str(el_val_t n); +el_val_t __str_to_int(el_val_t s); +el_val_t __float_to_str(el_val_t f); /* f is bit-cast double */ +el_val_t __str_to_float(el_val_t s); /* strtod, bit-cast result */ + +/* ── I/O ─────────────────────────────────────────────────────────────────── */ + +void __println(el_val_t s); +void __print(el_val_t s); +el_val_t __readline(void); + +/* ── Filesystem ──────────────────────────────────────────────────────────── */ + +el_val_t __fs_read(el_val_t path); +el_val_t __fs_write(el_val_t path, el_val_t content); +el_val_t __fs_exists(el_val_t path); +el_val_t __fs_list_raw(el_val_t path); /* newline-separated filenames */ +el_val_t __fs_mkdir(el_val_t path); +el_val_t __fs_write_bytes(el_val_t path, el_val_t bytes, el_val_t n); + +/* ── HTTP client ─────────────────────────────────────────────────────────── */ + +/* Unified HTTP call. headers_json is a JSON object of header name->value pairs + * (e.g. {"Authorization":"Bearer ...","Content-Type":"application/json"}). + * Use "" or "{}" for no extra headers. timeout_ms <= 0 uses the default. */ +el_val_t __http_do(el_val_t method, el_val_t url, el_val_t body, + el_val_t headers_json, el_val_t timeout_ms); + +/* Stream response body directly to a file. Returns 1 on success, 0 on failure. */ +el_val_t __http_do_to_file(el_val_t method, el_val_t url, el_val_t body, + el_val_t headers_json, el_val_t out_path); + +/* ── HTTP server ─────────────────────────────────────────────────────────── */ + +/* Blocking HTTP server. handler_name is the El function name to dispatch to. + * v1 handler: (method, path, body) -> String + * v2 handler: (method, path, headers_map, body) -> String or envelope */ +void __http_serve(el_val_t port, el_val_t handler_name); +void __http_serve_v2(el_val_t port, el_val_t handler_name); + +/* Build a structured HTTP response envelope. + * headers_json: JSON object literal like {"Content-Type":"text/plain"} or "{}" */ +el_val_t __http_response(el_val_t status, el_val_t headers_json, el_val_t body); + +/* ── HTTP SSE — Server-Sent Events streaming ─────────────────────────────── */ + +/* Returns the raw file descriptor for the current HTTP connection. + * Valid only inside an http_serve_v2 handler before it returns. + * Returns -1 if called outside a handler context. */ +el_val_t __http_conn_fd(void); + +/* Sends SSE response headers on conn_id (the fd from __http_conn_fd), + * keeping the connection open for streaming. Returns 1 on success, 0 on + * write failure. Call once at the start of an SSE handler. */ +el_val_t __http_sse_open(el_val_t conn_id); + +/* Writes one SSE event frame: "data: \n\n". data must not contain + * newlines. Returns 1 on success, 0 if the client disconnected. */ +el_val_t __http_sse_send(el_val_t conn_id, el_val_t data); + +/* Closes the SSE connection. The handler must return http_sse_sentinel() + * so the HTTP worker does not double-close the fd. */ +el_val_t __http_sse_close(el_val_t conn_id); + +/* ── Threading ───────────────────────────────────────────────────────────── */ + +/* Create a thread that calls the named El function with a String argument. + * fn_name is resolved via dlsym(RTLD_DEFAULT, fn_name). Returns a thread + * handle Int that can be passed to __thread_join. Returns -1 on failure. */ +el_val_t __thread_create(el_val_t fn_name, el_val_t arg); + +/* Wait for thread tid (returned by __thread_create) to finish. + * Returns the thread's return value as a String. */ +el_val_t __thread_join(el_val_t tid); + +/* Allocate a new mutex. Returns a handle Int (index into internal table). */ +el_val_t __mutex_new(void); + +void __mutex_lock(el_val_t m); +void __mutex_unlock(el_val_t m); + +/* ── Subprocess ──────────────────────────────────────────────────────────── */ + +el_val_t __exec(el_val_t cmd); /* popen, capture all stdout, return String */ +void __exec_bg(el_val_t cmd); /* fire and forget */ + +/* ── Environment and process ─────────────────────────────────────────────── */ + +el_val_t __env_get(el_val_t key); /* getenv, return "" if not set */ +void __exit_program(el_val_t code); +el_val_t __args_json(void); /* CLI args as JSON array string */ + +/* ── Time ────────────────────────────────────────────────────────────────── */ + +el_val_t __time_now_ns(void); /* clock_gettime REALTIME, nanoseconds */ +void __sleep_ms(el_val_t ms); + +/* ── UUID ────────────────────────────────────────────────────────────────── */ + +el_val_t __uuid_v4(void); + +/* ── Math ────────────────────────────────────────────────────────────────── */ + +el_val_t __sqrt_f(el_val_t f); +el_val_t __log_f(el_val_t f); +el_val_t __ln_f(el_val_t f); +el_val_t __sin_f(el_val_t f); +el_val_t __cos_f(el_val_t f); +el_val_t __pi_f(void); + +/* ── JSON ────────────────────────────────────────────────────────────────── */ + +el_val_t __json_get(el_val_t json, el_val_t key); +el_val_t __json_get_raw(el_val_t json_str, el_val_t key); +el_val_t __json_parse(el_val_t s); +el_val_t __json_stringify(el_val_t v); +el_val_t __json_array_len(el_val_t json_str); +el_val_t __json_array_get(el_val_t json_str, el_val_t index); +el_val_t __json_array_get_string(el_val_t json_str, el_val_t index); +el_val_t __json_get_string(el_val_t json_str, el_val_t key); +el_val_t __json_get_int(el_val_t json_str, el_val_t key); +el_val_t __json_get_float(el_val_t json_str, el_val_t key); +el_val_t __json_get_bool(el_val_t json_str, el_val_t key); +el_val_t __json_set(el_val_t json_str, el_val_t key, el_val_t value); + +/* ── State K/V ───────────────────────────────────────────────────────────── */ + +el_val_t __state_set(el_val_t key, el_val_t value); +el_val_t __state_get(el_val_t key); +el_val_t __state_del(el_val_t key); +el_val_t __state_keys(void); + +/* ── HTML/URL ────────────────────────────────────────────────────────────── */ + +el_val_t __html_sanitize(el_val_t input_html, el_val_t allowlist_json); +el_val_t __url_encode(el_val_t s); +el_val_t __url_decode(el_val_t s); + +/* ── Engram ──────────────────────────────────────────────────────────────── */ + +el_val_t __engram_node(el_val_t content, el_val_t node_type, el_val_t salience); +el_val_t __engram_node_full(el_val_t content, el_val_t node_type, el_val_t label, + el_val_t salience, el_val_t importance, el_val_t confidence, + el_val_t tier, el_val_t tags); +el_val_t __engram_node_layered(el_val_t content, el_val_t node_type, el_val_t label, + el_val_t salience, el_val_t certainty, el_val_t confidence, + el_val_t status, el_val_t tags, el_val_t layer_id); +el_val_t __engram_add_layer(el_val_t name, el_val_t priority, el_val_t suppressible, + el_val_t transparent, el_val_t injectable); +el_val_t __engram_remove_layer(el_val_t layer_id); +el_val_t __engram_list_layers(void); +el_val_t __engram_get_node(el_val_t id); +void __engram_strengthen(el_val_t node_id); +void __engram_forget(el_val_t node_id); +el_val_t __engram_node_count(void); +el_val_t __engram_search(el_val_t query, el_val_t limit); +el_val_t __engram_scan_nodes(el_val_t limit, el_val_t offset); +void __engram_connect(el_val_t from_id, el_val_t to_id, el_val_t weight, el_val_t relation); +el_val_t __engram_edge_between(el_val_t from_id, el_val_t to_id); +el_val_t __engram_neighbors(el_val_t node_id); +el_val_t __engram_neighbors_filtered(el_val_t node_id, el_val_t max_depth, el_val_t direction); +el_val_t __engram_edge_count(void); +el_val_t __engram_activate(el_val_t query, el_val_t depth); +el_val_t __engram_save(el_val_t path); +el_val_t __engram_load(el_val_t path); +el_val_t __engram_get_node_json(el_val_t id); +el_val_t __engram_search_json(el_val_t query, el_val_t limit); +el_val_t __engram_scan_nodes_json(el_val_t limit, el_val_t offset); +el_val_t __engram_scan_nodes_by_type_json(el_val_t node_type, el_val_t limit, el_val_t offset); +el_val_t __engram_neighbors_json(el_val_t node_id, el_val_t max_depth, el_val_t direction); +el_val_t __engram_activate_json(el_val_t query, el_val_t depth); +el_val_t __engram_stats_json(void); +el_val_t __engram_list_layers_json(void); +el_val_t __engram_compile_layered_json(el_val_t intent, el_val_t depth); + +/* ── Cryptographic hashing ────────────────────────────────────────────────── */ + +/* __sha256_hex — return the SHA-256 hex digest of a string. + * The returned string is 64 hex characters (lowercase). */ +el_val_t __sha256_hex(el_val_t s); + +/* ── args init (called from main) ────────────────────────────────────────── */ +/* Store argc/argv for __args_json. Call once at the start of main(). */ +void el_seed_init_args(int argc, char** argv); + +#ifdef __cplusplus +} +#endif diff --git a/el-compiler/runtime/legacy/el_runtime.c b/lang/el-compiler/runtime/legacy/el_runtime.c similarity index 99% rename from el-compiler/runtime/legacy/el_runtime.c rename to lang/el-compiler/runtime/legacy/el_runtime.c index da1e6d3..08d51fb 100644 --- a/el-compiler/runtime/legacy/el_runtime.c +++ b/lang/el-compiler/runtime/legacy/el_runtime.c @@ -1673,6 +1673,7 @@ static void* http_worker_v2(void* arg) { HttpWorkerArg* a = (HttpWorkerArg*)arg; int fd = a->fd; free(a); + int is_sse = 0; char *method = NULL, *path = NULL, *body = NULL, *hdr_block = NULL; if (http_read_request(fd, &method, &path, &body, &hdr_block) == 0) { http_handler4_fn h = http_lookup_active_v2(); @@ -1680,28 +1681,39 @@ static void* http_worker_v2(void* arg) { int head_only = (method && strcmp(method, "HEAD") == 0); const char* dispatch_method = head_only ? "GET" : method; el_request_start(); /* begin per-request arena */ + /* Expose the raw fd to El SSE builtins (__http_conn_fd etc.). */ + el_seed_set_http_conn_fd(fd); if (h) { el_val_t hmap = http_build_headers_map(hdr_block ? hdr_block : ""); el_val_t r = h(EL_STR(dispatch_method), EL_STR(path), hmap, EL_STR(body)); const char* rs = EL_CSTR(r); - size_t rlen = _tl_fs_read_len > 0 ? _tl_fs_read_len : (rs ? strlen(rs) : 0); - response = malloc(rlen + 1); - if (response && rs) { memcpy(response, rs, rlen); response[rlen] = '\0'; } - else if (response) { response[0] = '\0'; } + /* Detect SSE sentinel — handler took ownership of the fd. */ + if (rs && strcmp(rs, "__sse__") == 0) { + is_sse = 1; + } else { + size_t rlen = _tl_fs_read_len > 0 ? _tl_fs_read_len : (rs ? strlen(rs) : 0); + response = malloc(rlen + 1); + if (response && rs) { memcpy(response, rs, rlen); response[rlen] = '\0'; } + else if (response) { response[0] = '\0'; } + } el_release(hmap); } else { response = el_strdup_persist( "el-runtime: no v2 http handler registered " "(call http_set_handler_v2)"); } + el_seed_set_http_conn_fd(-1); /* clear before arena teardown */ el_request_end(); /* free all intermediate strings */ - _tl_http_head_only = head_only; - http_send_response(fd, response); - _tl_http_head_only = 0; - free(response); + if (!is_sse) { + _tl_http_head_only = head_only; + http_send_response(fd, response); + _tl_http_head_only = 0; + free(response); + } } free(method); free(path); free(body); free(hdr_block); - close(fd); + /* SSE handlers close the fd themselves via __http_sse_close. */ + if (!is_sse) close(fd); pthread_mutex_lock(&_http_conn_mu); _http_conn_active--; pthread_cond_signal(&_http_conn_cv); diff --git a/el-compiler/runtime/legacy/el_runtime.h b/lang/el-compiler/runtime/legacy/el_runtime.h similarity index 99% rename from el-compiler/runtime/legacy/el_runtime.h rename to lang/el-compiler/runtime/legacy/el_runtime.h index 72bbf4b..8b80ee7 100644 --- a/el-compiler/runtime/legacy/el_runtime.h +++ b/lang/el-compiler/runtime/legacy/el_runtime.h @@ -176,6 +176,11 @@ void http_set_handler_v2(el_val_t name); * auto-content-type contract for legacy handlers that return plain bodies. */ el_val_t http_response(el_val_t status, el_val_t headers_json, el_val_t body); +/* SSE connection fd — set by http_worker_v2 before calling the El handler, + * cleared afterwards. Defined in el_seed.c; called from el_runtime.c. + * The getter is exposed as __http_conn_fd() to El programs. */ +void el_seed_set_http_conn_fd(int fd); + /* HTTP timeout — every libcurl request honors EL_HTTP_TIMEOUT_MS (default * 60000ms). Read lazily on first use, so setting the env var any time before * the first http_* call is sufficient. */ diff --git a/el-compiler/src/codegen-js.el b/lang/el-compiler/src/codegen-js.el similarity index 58% rename from el-compiler/src/codegen-js.el rename to lang/el-compiler/src/codegen-js.el index b6c0b48..7e44b41 100644 --- a/el-compiler/src/codegen-js.el +++ b/lang/el-compiler/src/codegen-js.el @@ -86,6 +86,57 @@ fn js_binop(op: String) -> String { op } +// ── Known El runtime method names ───────────────────────────────────────────── +// +// These are the method shortforms exported by el_runtime.js and used by the +// El C-backend convention of `obj.method(args)` -> `method(obj, args)`. +// Any method name NOT in this set is treated as a native JS method call on the +// receiver object, emitting `obj.method(args)` directly. +// +// This is the mechanism that makes `client.auth.signInWithOtp(payload)` work +// without `native_js_call`: the receiver is Any-typed, the method is unknown +// to El, so codegen emits the JS call directly. + +fn js_is_el_method(name: String) -> Bool { + if str_eq(name, "append") { return true } + if str_eq(name, "len") { return true } + if str_eq(name, "get") { return true } + if str_eq(name, "map_get") { return true } + if str_eq(name, "map_set") { return true } + false +} + +// ── Async function tracking ─────────────────────────────────────────────────── +// +// Functions decorated with @async are recorded here. Any call to a known-async +// builtin (http_get, http_post, http_post_json) or to a user-declared @async +// function gets an `await` prefix in generated JS. +// +// Known-async builtins — these return Promise in el_runtime.js. +fn js_is_async_builtin(name: String) -> Bool { + if str_eq(name, "http_get") { return true } + if str_eq(name, "http_post") { return true } + if str_eq(name, "http_post_json") { return true } + if str_eq(name, "http_get_with_headers") { return true } + if str_eq(name, "http_post_with_headers") { return true } + false +} + +fn js_register_async_fn(name: String) -> Bool { + let csv: String = state_get("__js_async_fns") + if str_eq(csv, "") { csv = "," } + let key: String = "," + name + "," + if str_contains(csv, key) { return true } + state_set("__js_async_fns", csv + name + ",") + return true +} + +fn js_is_async_fn(name: String) -> Bool { + let csv: String = state_get("__js_async_fns") + if str_eq(csv, "") { return false } + return str_contains(csv, "," + name + ",") +} + // ── Int-name tracking (mirrors codegen.el) ──────────────────────────────────── fn js_is_int_name(name: String) -> Bool { @@ -140,6 +191,138 @@ fn js_is_int_call(call_expr: Map) -> Bool { return false } +// ── HTML template codegen (JS) ──────────────────────────────────────────────── +// +// HTML template expressions compile to a JS IIFE that builds the HTML string +// using string concatenation. Interpolated values go through html_escape(); +// raw() bypasses escaping. {#each} blocks compile to Array.forEach or a +// for-loop that pushes fragments into a parts array. +// +// Entry point: js_cg_html_template(expr) → JS expression string. + +fn js_next_html_id() -> String { + let csv: String = state_get("__js_html_counter") + let n = 0 + if !str_eq(csv, "") { + let n = str_to_int(csv) + } + let n = n + 1 + state_set("__js_html_counter", native_int_to_str(n)) + native_int_to_str(n) +} + +fn js_cg_html_parts(children: [Map], acc_var: String) -> String { + let n: Int = native_list_len(children) + let i = 0 + let out = "" + while i < n { + let child: Map = native_list_get(children, i) + let html_kind: String = child["html"] + if str_eq(html_kind, "Text") { + let text: String = child["text"] + let out = out + acc_var + " += " + js_str_lit(text) + "; " + } + if str_eq(html_kind, "Doctype") { + let out = out + acc_var + " += \"\"; " + } + if str_eq(html_kind, "Interp") { + let val_node = child["value"] + let val_c: String = js_cg_expr(val_node) + let out = out + acc_var + " += html_escape(" + val_c + "); " + } + if str_eq(html_kind, "Raw") { + let val_node = child["value"] + let val_c: String = js_cg_expr(val_node) + let out = out + acc_var + " += html_raw(" + val_c + "); " + } + if str_eq(html_kind, "Element") { + let elem_c: String = js_cg_html_element_str(child, acc_var) + let out = out + elem_c + } + if str_eq(html_kind, "Each") { + let each_c: String = js_cg_html_each(child, acc_var) + let out = out + each_c + } + let i = i + 1 + } + out +} + +fn js_cg_html_attrs_str(attrs: [Map], acc_var: String) -> String { + let n: Int = native_list_len(attrs) + let i = 0 + let out = "" + while i < n { + let attr: Map = native_list_get(attrs, i) + let attr_name: String = attr["name"] + let kind: String = attr["kind"] + // open-attr snippet: " name=\"" + let open_val: String = " " + attr_name + "=\"" + if str_eq(kind, "static") { + let sv: String = attr["value"] + let out = out + acc_var + " += " + js_str_lit(open_val) + "; " + let out = out + acc_var + " += " + js_str_lit(sv) + "; " + let out = out + acc_var + " += " + js_str_lit("\"") + "; " + } else { + if str_eq(kind, "dynamic") { + let val_node = attr["value"] + let val_c: String = js_cg_expr(val_node) + let out = out + acc_var + " += " + js_str_lit(open_val) + "; " + let out = out + acc_var + " += html_escape(" + val_c + "); " + let out = out + acc_var + " += " + js_str_lit("\"") + "; " + } else { + // Boolean attribute + let out = out + acc_var + " += " + js_str_lit(" " + attr_name) + "; " + } + } + let i = i + 1 + } + out +} + +fn js_cg_html_element_str(elem: Map, acc_var: String) -> String { + let tag: String = elem["tag"] + let attrs: [Map] = elem["attrs"] + let children: [Map] = elem["children"] + let self_closing: Bool = elem["self_closing"] + let out = acc_var + " += " + js_str_lit("<" + tag) + "; " + let out = out + js_cg_html_attrs_str(attrs, acc_var) + if self_closing { + let out = out + acc_var + " += \"/>\"" + "; " + } else { + let out = out + acc_var + " += \">\"; " + let out = out + js_cg_html_parts(children, acc_var) + let out = out + acc_var + " += " + js_str_lit("") + "; " + } + out +} + +fn js_cg_html_each(node: Map, acc_var: String) -> String { + let list_expr = node["list"] + let item_name: String = node["item"] + let body_children: [Map] = node["body"] + let id: String = js_next_html_id() + let list_var: String = "_html_list_" + id + let len_var: String = "_html_len_" + id + let idx_var: String = "_html_i_" + id + let list_c: String = js_cg_expr(list_expr) + let inner_c: String = js_cg_html_parts(body_children, acc_var) + "{ const " + list_var + " = " + list_c + "; const " + len_var + " = el_list_len(" + list_var + "); for (let " + idx_var + " = 0; " + idx_var + " < " + len_var + "; " + idx_var + "++) { const " + item_name + " = el_list_get(" + list_var + ", " + idx_var + "); " + inner_c + "} } " +} + +fn js_cg_html_template(expr: Map) -> String { + let root = expr["root"] + let id: String = js_next_html_id() + let acc: String = "_html_" + id + let doctype_flag: Bool = root["doctype"] + let doctype_prefix: String = "" + if doctype_flag { + let doctype_prefix = acc + " += \"\"; " + } + let body: String = js_cg_html_element_str(root, acc) + "(() => { let " + acc + " = \"\"; " + doctype_prefix + body + "return " + acc + "; })()" +} + // ── Expression codegen ──────────────────────────────────────────────────────── // // js_cg_expr returns a JS expression string (not a statement). @@ -377,20 +560,38 @@ fn js_cg_expr(expr: Map) -> String { if func_kind == "Ident" { let fn_name: String = func["name"] - return fn_name + "(" + args_c + ")" + let call_expr: String = fn_name + "(" + args_c + ")" + if js_is_async_builtin(fn_name) { + return "await " + call_expr + } + if js_is_async_fn(fn_name) { + return "await " + call_expr + } + return call_expr } if func_kind == "Field" { - // El's `obj.method(args)` becomes `method(obj, args)` — same - // convention as the C backend. The runtime exports method - // shortforms (append, len, get, map_get, map_set) that match. let obj = func["object"] let field: String = func["field"] let obj_c: String = js_cg_expr(obj) - if arity > 0 { - return field + "(" + obj_c + ", " + args_c + ")" + // If the method is a known El runtime shortform, keep the El + // convention: `method(obj, args)`. This preserves backward + // compatibility with list.append(x), map.map_get(k), etc. + if js_is_el_method(field) { + if arity > 0 { + return field + "(" + obj_c + ", " + args_c + ")" + } + return field + "(" + obj_c + ")" } - return field + "(" + obj_c + ")" + // Unknown method — emit as a native JS method call on the + // receiver. This handles Any-typed values (third-party library + // objects, DOM elements, Promises, etc.) without requiring + // native_js_call. Example: `client.auth.signInWithOtp(payload)` + // emits `client["auth"].signInWithOtp(args_c)`. + if arity > 0 { + return obj_c + "." + field + "(" + args_c + ")" + } + return obj_c + "." + field + "()" } let fn_c: String = js_cg_expr(func) @@ -398,22 +599,39 @@ fn js_cg_expr(expr: Map) -> String { } if kind == "Field" { - // El's `obj.foo` becomes JS `obj["foo"]` — works on plain objects - // (maps) and on JS objects with prototype. el_get_field is a - // runtime helper for callers that want EL_NULL on missing keys. + // El's `obj.foo` becomes JS `obj["foo"]` — direct bracket access. + // This works for plain El map objects AND for real JS objects with + // prototype-inherited properties (DOM elements, third-party library + // objects, Promises, etc.). el_get_field used hasOwnProperty which + // silently returned null for inherited props, breaking e.g. client.auth. + // + // Nil-propagation: `obj?.foo` emits `(obj)?.["foo"] ?? null`. let obj = expr["object"] let field: String = expr["field"] + let obj_kind: String = obj["expr"] + if str_eq(obj_kind, "Try") { + let inner = obj["inner"] + let inner_c: String = js_cg_expr(inner) + return "(" + inner_c + ")?.[" + js_str_lit(field) + "] ?? null" + } let obj_c: String = js_cg_expr(obj) - return "el_get_field(" + obj_c + ", " + js_str_lit(field) + ")" + return obj_c + "[" + js_str_lit(field) + "]" } if kind == "Index" { // Map vs list dispatch on the index expression kind, same as C. + // If the object is a Try (nil-propagation), use JS optional indexing. let obj = expr["object"] let idx = expr["index"] let obj_c: String = js_cg_expr(obj) let idx_c: String = js_cg_expr(idx) let idx_kind: String = idx["expr"] + let obj_kind: String = obj["expr"] + if str_eq(obj_kind, "Try") { + let inner = obj["inner"] + let inner_c: String = js_cg_expr(inner) + return "(" + inner_c + ")?.[" + idx_c + "] ?? null" + } if str_eq(idx_kind, "Str") { return "el_get_field(" + obj_c + ", " + idx_c + ")" } @@ -453,6 +671,12 @@ fn js_cg_expr(expr: Map) -> String { } if kind == "Try" { + // Postfix `?` — nil-propagation guard. + // When used as `expr?.field` the Field handler above intercepts and + // emits `(expr)?.["field"]`. Here, a bare `expr?` (not followed by + // field/index access) passes through to the inner expression unchanged + // (it acts as an identity but marks the value as "nil-propagating" for + // its caller). This matches the C backend's current behavior. let inner = expr["inner"] return js_cg_expr(inner) } @@ -470,6 +694,17 @@ fn js_cg_expr(expr: Map) -> String { return js_cg_match(expr) } + // Lambda (anonymous function literal): fn(params) -> RetType { body } + // Emitted as a JS arrow function expression: (params) => { body }. + // Used for inline callbacks: dom_listen(el, "click", fn(e: Any) -> Void { ... }) + if kind == "Lambda" { + return js_cg_lambda(expr) + } + + if kind == "HtmlTemplate" { + return js_cg_html_template(expr) + } + "null" } @@ -528,8 +763,16 @@ fn js_cg_match(expr: Map) -> String { if str_eq(v, "true") { let bv = "true" } let parts = native_list_append(parts, "if (" + subj_var + " === " + bv + ") return (" + body_c + "); ") } else { - // unknown pattern → wildcard - let parts = native_list_append(parts, "return (" + body_c + "); ") + if str_eq(pkind, "Variant") { + // Enum::Variant patterns — El enums compile to plain + // strings (the variant name) or ints. Match the subject + // against the variant name string. + let variant: String = pat["variant"] + let parts = native_list_append(parts, "if (str_eq(" + subj_var + ", " + js_str_lit(variant) + ")) return (" + body_c + "); ") + } else { + // unknown pattern → wildcard + let parts = native_list_append(parts, "return (" + body_c + "); ") + } } } } @@ -541,6 +784,65 @@ fn js_cg_match(expr: Map) -> String { str_join(parts, "") } +// ── Lambda codegen ──────────────────────────────────────────────────────────── +// +// Anonymous function literals: fn(params) -> RetType { body } +// +// Strategy: emit the lambda as a hoisted JS function declaration with a +// generated name (__lambda_N), then return the name as the expression value. +// This works because JS function declarations are hoisted within their scope, +// so the generated name is valid at any use site within the same function or +// module. The emitted code looks like: +// +// function __lambda_1(event) { dom_hide(spinner); } +// ... +// dom_listen(btn, "click", __lambda_1); +// +// This approach is clean, debuggable, and avoids any need for a string-buffer +// mode in the codegen. + +fn js_next_lambda_id() -> String { + let csv: String = state_get("__js_lambda_counter") + let n = 0 + if !str_eq(csv, "") { + let n = str_to_int(csv) + } + let n = n + 1 + state_set("__js_lambda_counter", native_int_to_str(n)) + native_int_to_str(n) +} + +fn js_cg_lambda(expr: Map) -> String { + let params = expr["params"] + let body = expr["body"] + let ret_type: String = expr["ret_type"] + let id: String = js_next_lambda_id() + let lambda_name: String = "__lambda_" + id + let params_str: String = js_params_str(params) + // Emit the function definition immediately into the output stream. + // It will appear before the statement containing this expression. + js_emit_line("function " + lambda_name + "(" + params_str + ") {") + let decl = native_list_empty() + let np: Int = native_list_len(params) + let pi = 0 + while pi < np { + let param = native_list_get(params, pi) + let pname: String = param["name"] + let decl = native_list_append(decl, pname) + let pi = pi + 1 + } + let body_xformed = body + if !str_eq(ret_type, "Void") { + let body_xformed = js_transform_implicit_return(body) + } + js_build_int_names_for_params(params) + js_cg_stmts(body_xformed, " ", decl) + js_emit_line("}") + js_emit_blank() + // Return the function name as the expression value. + lambda_name +} + // ── Variable scope tracking ─────────────────────────────────────────────────── // // El allows `let x = ...` to redeclare in the same scope. JS would throw @@ -646,6 +948,27 @@ fn js_cg_stmt(stmt: Map, indent: String, declared: [String]) -> [St if kind == "TypeDef" { return declared } if kind == "EnumDef" { return declared } if kind == "Import" { return declared } + + if kind == "TryCatch" { + let try_body = stmt["try_body"] + let catch_name: String = stmt["catch_name"] + let catch_body = stmt["catch_body"] + js_emit_line(indent + "try {") + js_cg_stmts(try_body, indent + " ", native_list_clone(declared)) + js_emit_line(indent + "} catch (" + catch_name + ") {") + js_cg_stmts(catch_body, indent + " ", native_list_clone(declared)) + js_emit_line(indent + "}") + return declared + } + + // ExternFn: the function exists in the JS environment (loaded via blobs +// -- Code-bearing string detection + comment strip ---------------------------- +// Inline JS/CSS literals embedded in El source (e.g. blobs // or stylesheet payloads inside string literals) carry their own line and // block comments. Those comments leak into the served HTML and reveal build // notes the visitor should never see. We strip them at the lexer so every // downstream consumer (codegen-c, codegen-js, parser) gets the cleaned form. // -// looks_like_code — heuristic gate so we only strip strings that actually +// looks_like_code - heuristic gate so we only strip strings that actually // embed JS or CSS. Plain prose, hex blobs, JSON, etc. pass through verbatim. fn substr_at(chars: [String], start: Int, total: Int, needle: String) -> Bool { @@ -245,7 +247,7 @@ fn looks_like_code(s: String) -> Bool { false } -// strip_code_comments — character-by-character walk. Tracks JS string state +// strip_code_comments - character-by-character walk. Tracks JS string state // (single, double, backtick) and never strips inside one. Backslash escapes // inside JS strings consume the next char verbatim. URLs like https:// are // preserved by checking the previous char before treating // as a line @@ -398,7 +400,7 @@ fn strip_code_comments(s: String) -> String { str_join(out_parts, "") } -// scan_string — scan a quoted string literal, handling \" escapes. +// scan_string - scan a quoted string literal, handling \" escapes. // Starts AFTER the opening quote. Returns { "text": content, "pos": i_after_close } fn scan_string(chars: [String], start: Int, total: Int) -> Map { let i = start @@ -458,7 +460,239 @@ fn scan_string(chars: [String], start: Int, total: Int) -> Map { { "text": str_join(parts, ""), "pos": i } } -// ── Main lexer ──────────────────────────────────────────────────────────────── +// -- String interpolation ------------------------------------------------------ +// +// scan_interp_brace - scan from `start` (the char after `${`) to the matching +// `}`, tracking brace depth so inner braces (e.g. fn calls, map literals) are +// handled correctly. Returns { "text": inner_source, "pos": i_after_close }. +fn scan_interp_brace(chars: [String], start: Int, total: Int) -> Map { + let i = start + let parts: [String] = native_list_empty() + let depth = 1 + let running = true + while running { + if i >= total { + let running = false + } else { + let ch: String = native_list_get(chars, i) + if ch == "{" { + let depth = depth + 1 + let parts = native_list_append(parts, ch) + let i = i + 1 + } else { + if ch == "}" { + let depth = depth - 1 + if depth <= 0 { + // Closing brace of the interpolation - stop, do not include it + let i = i + 1 + let running = false + } else { + let parts = native_list_append(parts, ch) + let i = i + 1 + } + } else { + let parts = native_list_append(parts, ch) + let i = i + 1 + } + } + } + } + { "text": str_join(parts, ""), "pos": i } +} + +// interp_tokens_append_all - copy every token from src into dst, skipping the +// trailing Eof sentinel that lex() always appends. Returns the updated dst list. +fn interp_tokens_append_all(dst: [Map], src: [Map]) -> [Map] { + let src_len: Int = native_list_len(src) + let j = 0 + let result = dst + while j < src_len { + let tok: Map = native_list_get(src, j) + let tk: String = tok["kind"] + if tk == "Eof" { + let j = src_len + } else { + let result = native_list_append(result, tok) + let j = j + 1 + } + } + result +} + +// scan_interp_string - scan a string literal that may contain ${expr} +// interpolations. Starts AFTER the opening `"`. +// Returns { "tokens": [token list to inject], "pos": i_after_close_quote }. +// +// For a plain string (no ${}) this emits a single Str token, identical to the +// old scan_string path. For an interpolated string it emits a flat sequence +// of tokens equivalent to the string-concat expression, for example: +// +// "hello ${name}!" +// => Str("hello ") Plus Plus Str("!") +// +// Empty literal segments between adjacent ${ } blocks are omitted. The +// resulting token stream is consumed by the existing parse_binop / parse_primary +// path in the parser with zero parser changes required. +// +// Supported escape sequences: \" \n \t \r \\ \$ (literal dollar sign). +// Nested quotes inside ${} are not supported; use a variable instead. +fn scan_interp_string(chars: [String], start: Int, total: Int) -> Map { + let i = start + let out_tokens: [Map] = native_list_empty() + let cur_part: [String] = native_list_empty() + let has_interp = false + let need_plus = false + let running = true + + while running { + if i >= total { + let running = false + } else { + let ch: String = native_list_get(chars, i) + + if ch == "\\" { + // Escape sequence + let next_i = i + 1 + if next_i < total { + let next_ch: String = native_list_get(chars, next_i) + if next_ch == "$" { + // \$ => literal '$' (escape for interpolation syntax) + let cur_part = native_list_append(cur_part, "$") + let i = next_i + 1 + } else { + if next_ch == "\"" { + let cur_part = native_list_append(cur_part, "\"") + let i = next_i + 1 + } else { + if next_ch == "n" { + let cur_part = native_list_append(cur_part, "\n") + let i = next_i + 1 + } else { + if next_ch == "t" { + let cur_part = native_list_append(cur_part, "\t") + let i = next_i + 1 + } else { + if next_ch == "r" { + let cur_part = native_list_append(cur_part, "\r") + let i = next_i + 1 + } else { + if next_ch == "\\" { + let cur_part = native_list_append(cur_part, "\\") + let i = next_i + 1 + } else { + let cur_part = native_list_append(cur_part, next_ch) + let i = next_i + 1 + } + } + } + } + } + } + } else { + let i = i + 1 + } + } else { + if ch == "\"" { + // Closing quote - stop scanning + let i = i + 1 + let running = false + } else { + if ch == "$" { + // Check for ${ (start of interpolation) + let next_i = i + 1 + let is_interp = false + if next_i < total { + let next_ch: String = native_list_get(chars, next_i) + if next_ch == "{" { + let is_interp = true + } + } + if is_interp { + // Flush the accumulated literal part (if non-empty) + let part_len: Int = native_list_len(cur_part) + if part_len > 0 { + let part_text = str_join(cur_part, "") + if need_plus { + let out_tokens = native_list_append(out_tokens, make_tok("Plus", "+")) + } + let clean_part = part_text + if looks_like_code(part_text) { + let clean_part = strip_code_comments(part_text) + } + let out_tokens = native_list_append(out_tokens, make_tok("Str", clean_part)) + let need_plus = true + } + let cur_part = native_list_empty() + let has_interp = true + + // Scan brace-balanced expression source + let brace_result = scan_interp_brace(chars, next_i + 1, total) + let expr_src: String = brace_result["text"] + let new_i: Int = brace_result["pos"] + let i = new_i + + // Re-lex the expression and inline the tokens. + // Wrap in ( ) so that operators inside ${} (e.g. + // age + 1) are parsed as a grouped sub-expression + // rather than merging with the surrounding concat + // Plus tokens at the wrong precedence level. + let inner_toks: [Map] = lex(expr_src) + let inner_len: Int = native_list_len(inner_toks) + + if need_plus { + let out_tokens = native_list_append(out_tokens, make_tok("Plus", "+")) + } + // Empty interpolation ${} => empty string segment + if inner_len <= 1 { + let out_tokens = native_list_append(out_tokens, make_tok("Str", "")) + } else { + let out_tokens = native_list_append(out_tokens, make_tok("LParen", "(")) + let out_tokens = interp_tokens_append_all(out_tokens, inner_toks) + let out_tokens = native_list_append(out_tokens, make_tok("RParen", ")")) + } + let need_plus = true + } else { + // Plain '$' not followed by '{' - treat as literal + let cur_part = native_list_append(cur_part, "$") + let i = i + 1 + } + } else { + let cur_part = native_list_append(cur_part, ch) + let i = i + 1 + } + } + } + } + } + + // Flush remaining literal segment and build final token list + let part_text = str_join(cur_part, "") + let part_len: Int = native_list_len(cur_part) + if has_interp { + // Interpolated string: only emit trailing segment if non-empty + if part_len > 0 { + let clean_part = part_text + if looks_like_code(part_text) { + let clean_part = strip_code_comments(part_text) + } + if need_plus { + let out_tokens = native_list_append(out_tokens, make_tok("Plus", "+")) + } + let out_tokens = native_list_append(out_tokens, make_tok("Str", clean_part)) + } + } else { + // Plain string with no interpolation - same behaviour as old scan_string + let clean_text = part_text + if looks_like_code(part_text) { + let clean_text = strip_code_comments(part_text) + } + let out_tokens = native_list_append(out_tokens, make_tok("Str", clean_text)) + } + + { "tokens": out_tokens, "pos": i } +} + +// -- Main lexer ---------------------------------------------------------------- fn lex(source: String) -> [Map] { let chars: [String] = native_string_chars(source) @@ -503,20 +737,16 @@ fn lex(source: String) -> [Map] { let i = i + 1 } } else { - // String literal + // String literal (plain or interpolated with ${expr} syntax). + // scan_interp_string handles both cases: plain strings emit a + // single Str token; interpolated strings emit a flat token + // sequence (Str Plus expr-tokens Plus Str ...) that the parser + // naturally assembles into a BinOp concat tree. if ch == "\"" { - let result = scan_string(chars, i + 1, total) - let str_text: String = result["text"] - let new_pos: Int = result["pos"] - // Compile-time scrub: strings that embed JS or CSS get - // their // line comments and /* block comments stripped - // before the token reaches the parser. Plain prose passes - // through untouched. - let clean_text = str_text - if looks_like_code(str_text) { - let clean_text = strip_code_comments(str_text) - } - let tokens = native_list_append(tokens, make_tok("Str", clean_text)) + let interp_result = scan_interp_string(chars, i + 1, total) + let interp_toks: [Map] = interp_result["tokens"] + let new_pos: Int = interp_result["pos"] + let tokens = interp_tokens_append_all(tokens, interp_toks) let i = new_pos } else { // Number literal @@ -696,8 +926,24 @@ fn lex(source: String) -> [Map] { let i = i + 1 } else { if ch == "." { - let tokens = native_list_append(tokens, make_tok("Dot", ".")) - let i = i + 1 + // Check for ..= (inclusive range) before .. (exclusive range) before single . + let peek2_i = i + 2 + let peek2_ch = "" + if peek2_i < total { + let peek2_ch: String = native_list_get(chars, peek2_i) + } + if peek_ch == "." { + if peek2_ch == "=" { + let tokens = native_list_append(tokens, make_tok("DotDotEq", "..=")) + let i = i + 3 + } else { + let tokens = native_list_append(tokens, make_tok("DotDot", "..")) + let i = i + 2 + } + } else { + let tokens = native_list_append(tokens, make_tok("Dot", ".")) + let i = i + 1 + } } else { if ch == ";" { let tokens = native_list_append(tokens, make_tok("Semicolon", ";")) @@ -711,7 +957,7 @@ fn lex(source: String) -> [Map] { let tokens = native_list_append(tokens, make_tok("QuestionMark", "?")) let i = i + 1 } else { - // unknown char — skip + // unknown char - skip let i = i + 1 } } diff --git a/el-compiler/src/parser.el b/lang/el-compiler/src/parser.el similarity index 57% rename from el-compiler/src/parser.el rename to lang/el-compiler/src/parser.el index e91a288..62fda8c 100644 --- a/el-compiler/src/parser.el +++ b/lang/el-compiler/src/parser.el @@ -1,4 +1,4 @@ -// parser.el — el self-hosting recursive descent parser +// parser.el - el self-hosting recursive descent parser // // Consumes the token list produced by lexer.el and builds a list of AST // statement maps. Each statement and expression is a Map. @@ -11,7 +11,7 @@ // // Entry point: fn parse(tokens: [Map]) -> [Map] -// ── Token access helpers ────────────────────────────────────────────────────── +// -- Token access helpers ------------------------------------------------------ fn tok_at(tokens: [Map], pos: Int) -> Map { native_list_get(tokens, pos) @@ -36,13 +36,13 @@ fn expect(tokens: [Map], pos: Int, kind: String) -> Int { pos + 1 } -// ── Result helpers ──────────────────────────────────────────────────────────── +// -- Result helpers ------------------------------------------------------------ fn make_result(node: Map, pos: Int) -> Map { { "node": node, "pos": pos } } -// ── Type annotation parser ──────────────────────────────────────────────────── +// -- Type annotation parser ---------------------------------------------------- // Skips over a type annotation, returning the new position. // Types can be: Ident, [Type], Map, Type?, Type @@ -100,8 +100,8 @@ fn skip_type(tokens: [Map], pos: Int) -> Int { pos + 1 } -// ── Parameter list ──────────────────────────────────────────────────────────── -// Parses (name: Type, name: Type, ...) — returns { "params": [...], "pos": ... } +// -- Parameter list ------------------------------------------------------------ +// Parses (name: Type, name: Type, ...) - returns { "params": [...], "pos": ... } fn parse_params(tokens: [Map], pos: Int) -> Map { let p = expect(tokens, pos, "LParen") @@ -140,7 +140,461 @@ fn parse_params(tokens: [Map], pos: Int) -> Map { { "params": params, "pos": p } } -// ── Expression parsing ──────────────────────────────────────────────────────── +// -- Expression parsing -------------------------------------------------------- + +// ── HTML template parser ────────────────────────────────────────────────────── +// +// HTML templates are written as unquoted HTML in expression position: +// return

{title}

+// +// The parser detects an HTML template when parse_primary sees Lt followed +// by a lowercase ident (a known or assumed HTML element name) or `!` (for +// ). It then recursively parses the HTML into an AST. +// +// AST nodes produced: +// { "expr": "HtmlTemplate", "root": child_node } +// { "html": "Element", "tag": "div", "attrs": [...], "children": [...], "self_closing": bool } +// { "html": "Text", "text": "..." } +// { "html": "Interp", "value": expr_node } +// { "html": "Each", "list": expr_node, "item": "name", "body": [...] } +// { "html": "Doctype" } +// { "html": "Raw", "value": expr_node } + +fn is_html_tag_name(name: String) -> Bool { + if str_eq(name, "a") { return true } + if str_eq(name, "abbr") { return true } + if str_eq(name, "address") { return true } + if str_eq(name, "area") { return true } + if str_eq(name, "article") { return true } + if str_eq(name, "aside") { return true } + if str_eq(name, "audio") { return true } + if str_eq(name, "b") { return true } + if str_eq(name, "base") { return true } + if str_eq(name, "blockquote") { return true } + if str_eq(name, "body") { return true } + if str_eq(name, "br") { return true } + if str_eq(name, "button") { return true } + if str_eq(name, "canvas") { return true } + if str_eq(name, "caption") { return true } + if str_eq(name, "cite") { return true } + if str_eq(name, "code") { return true } + if str_eq(name, "col") { return true } + if str_eq(name, "colgroup") { return true } + if str_eq(name, "data") { return true } + if str_eq(name, "datalist") { return true } + if str_eq(name, "dd") { return true } + if str_eq(name, "del") { return true } + if str_eq(name, "details") { return true } + if str_eq(name, "dfn") { return true } + if str_eq(name, "dialog") { return true } + if str_eq(name, "div") { return true } + if str_eq(name, "dl") { return true } + if str_eq(name, "dt") { return true } + if str_eq(name, "em") { return true } + if str_eq(name, "embed") { return true } + if str_eq(name, "fieldset") { return true } + if str_eq(name, "figcaption") { return true } + if str_eq(name, "figure") { return true } + if str_eq(name, "footer") { return true } + if str_eq(name, "form") { return true } + if str_eq(name, "h1") { return true } + if str_eq(name, "h2") { return true } + if str_eq(name, "h3") { return true } + if str_eq(name, "h4") { return true } + if str_eq(name, "h5") { return true } + if str_eq(name, "h6") { return true } + if str_eq(name, "head") { return true } + if str_eq(name, "header") { return true } + if str_eq(name, "hr") { return true } + if str_eq(name, "html") { return true } + if str_eq(name, "i") { return true } + if str_eq(name, "iframe") { return true } + if str_eq(name, "img") { return true } + if str_eq(name, "input") { return true } + if str_eq(name, "ins") { return true } + if str_eq(name, "kbd") { return true } + if str_eq(name, "label") { return true } + if str_eq(name, "legend") { return true } + if str_eq(name, "li") { return true } + if str_eq(name, "link") { return true } + if str_eq(name, "main") { return true } + if str_eq(name, "map") { return true } + if str_eq(name, "mark") { return true } + if str_eq(name, "menu") { return true } + if str_eq(name, "meta") { return true } + if str_eq(name, "meter") { return true } + if str_eq(name, "nav") { return true } + if str_eq(name, "noscript") { return true } + if str_eq(name, "object") { return true } + if str_eq(name, "ol") { return true } + if str_eq(name, "optgroup") { return true } + if str_eq(name, "option") { return true } + if str_eq(name, "output") { return true } + if str_eq(name, "p") { return true } + if str_eq(name, "param") { return true } + if str_eq(name, "picture") { return true } + if str_eq(name, "pre") { return true } + if str_eq(name, "progress") { return true } + if str_eq(name, "q") { return true } + if str_eq(name, "rp") { return true } + if str_eq(name, "rt") { return true } + if str_eq(name, "ruby") { return true } + if str_eq(name, "s") { return true } + if str_eq(name, "samp") { return true } + if str_eq(name, "script") { return true } + if str_eq(name, "section") { return true } + if str_eq(name, "select") { return true } + if str_eq(name, "small") { return true } + if str_eq(name, "source") { return true } + if str_eq(name, "span") { return true } + if str_eq(name, "strong") { return true } + if str_eq(name, "style") { return true } + if str_eq(name, "sub") { return true } + if str_eq(name, "summary") { return true } + if str_eq(name, "sup") { return true } + if str_eq(name, "table") { return true } + if str_eq(name, "tbody") { return true } + if str_eq(name, "td") { return true } + if str_eq(name, "template") { return true } + if str_eq(name, "textarea") { return true } + if str_eq(name, "tfoot") { return true } + if str_eq(name, "th") { return true } + if str_eq(name, "thead") { return true } + if str_eq(name, "time") { return true } + if str_eq(name, "title") { return true } + if str_eq(name, "tr") { return true } + if str_eq(name, "track") { return true } + if str_eq(name, "u") { return true } + if str_eq(name, "ul") { return true } + if str_eq(name, "var") { return true } + if str_eq(name, "video") { return true } + if str_eq(name, "wbr") { return true } + false +} + +fn is_void_element(name: String) -> Bool { + if str_eq(name, "area") { return true } + if str_eq(name, "base") { return true } + if str_eq(name, "br") { return true } + if str_eq(name, "col") { return true } + if str_eq(name, "embed") { return true } + if str_eq(name, "hr") { return true } + if str_eq(name, "img") { return true } + if str_eq(name, "input") { return true } + if str_eq(name, "link") { return true } + if str_eq(name, "meta") { return true } + if str_eq(name, "param") { return true } + if str_eq(name, "source") { return true } + if str_eq(name, "track") { return true } + if str_eq(name, "wbr") { return true } + false +} + +// Collect tokens as text content until we hit Lt, LBrace, Eof, or a +// closing-tag marker (Lt Slash). Returns { "text": "...", "pos": p } +fn parse_html_text_tokens(tokens: [Map], pos: Int) -> Map { + let parts: [String] = native_list_empty() + let p = pos + let running = true + while running { + let k = tok_kind(tokens, p) + if str_eq(k, "Eof") { + let running = false + } else { + if str_eq(k, "Lt") { + let running = false + } else { + if str_eq(k, "LBrace") { + let running = false + } else { + // Check for ). +fn parse_html_attrs(tokens: [Map], pos: Int) -> Map { + let attrs: [Map] = native_list_empty() + let p = pos + let running = true + while running { + let k = tok_kind(tokens, p) + if str_eq(k, "Gt") { + let running = false + } else { + if str_eq(k, "Slash") { + let running = false + } else { + if str_eq(k, "Eof") { + let running = false + } else { + // Attribute name: could be Ident or keyword used as attr name + let attr_name = tok_value(tokens, p) + let p = p + 1 + let k2 = tok_kind(tokens, p) + if str_eq(k2, "Eq") { + let p = p + 1 + let k3 = tok_kind(tokens, p) + if str_eq(k3, "Str") { + // static: attr="value" + let attr_val = tok_value(tokens, p) + let p = p + 1 + let attrs = native_list_append(attrs, { "name": attr_name, "kind": "static", "value": attr_val }) + } else { + if str_eq(k3, "LBrace") { + // dynamic: attr={expr} + let r = parse_expr(tokens, p + 1) + let val_node = r["node"] + let p = r["pos"] + let p = expect(tokens, p, "RBrace") + let attrs = native_list_append(attrs, { "name": attr_name, "kind": "dynamic", "value": val_node }) + } else { + // malformed, skip + } + } + } else { + // boolean attribute + let attrs = native_list_append(attrs, { "name": attr_name, "kind": "bool" }) + } + } + } + } + } + { "attrs": attrs, "pos": p } +} + +// Parse the children of an HTML element until we see the closing tag +// or EOF. Returns { "children": [...], "pos": p_after_closing_tag } +fn parse_html_children(tokens: [Map], pos: Int, parent_tag: String) -> Map { + let children: [Map] = native_list_empty() + let p = pos + let running = true + while running { + let k = tok_kind(tokens, p) + if str_eq(k, "Eof") { + let running = false + } else { + if str_eq(k, "Lt") { + // Check for closing tag: — consume and stop + let p = p + 2 + // skip tag name + let close_name = tok_value(tokens, p) + let p = p + 1 + // consume > + let p = expect(tokens, p, "Gt") + let running = false + } else { + if str_eq(k2, "Not") { + // Possible + let k3_v = tok_value(tokens, p + 2) + if str_eq(k3_v, "doctype") { + // consume + let p = p + 2 + // skip until > + let scanning = true + while scanning { + let ck = tok_kind(tokens, p) + if str_eq(ck, "Eof") { let scanning = false } + if str_eq(ck, "Gt") { + let p = p + 1 + let scanning = false + } else { + let p = p + 1 + } + } + let children = native_list_append(children, { "html": "Doctype" }) + } else { + let p = p + 1 + } + } else { + // nested element + let r = parse_html_element(tokens, p) + let child = r["node"] + let p = r["pos"] + let children = native_list_append(children, child) + } + } + } else { + if str_eq(k, "LBrace") { + // Interpolation: {expr} or {#each ...} or {/each} + let k2 = tok_kind(tokens, p + 1) + if str_eq(k2, "Hash") { + // {#each list as item} + let k3_v = tok_value(tokens, p + 2) + if str_eq(k3_v, "each") { + let p = p + 3 + // parse list expr up to "as" keyword + let prev_no_block: String = state_get("__no_block_expr") + state_set("__no_block_expr", "1") + let r_list = parse_expr(tokens, p) + state_set("__no_block_expr", prev_no_block) + let list_expr = r_list["node"] + let p = r_list["pos"] + // expect "as" + let p = expect(tokens, p, "As") + // item variable name + let item_name = tok_value(tokens, p) + let p = p + 1 + // consume closing } + let p = expect(tokens, p, "RBrace") + // parse body until {/each} + let r_body = parse_html_each_body(tokens, p) + let body_children = r_body["children"] + let p = r_body["pos"] + let each_node: Map = { "html": "Each", "list": list_expr, "item": item_name, "body": body_children } + let children = native_list_append(children, each_node) + } else { + let p = p + 1 + } + } else { + if str_eq(k2, "Slash") { + // {/each} — end of each block, stop + // skip {/each} + let p = p + 2 + // skip "each" + let p = p + 1 + // skip } + let p = expect(tokens, p, "RBrace") + let running = false + } else { + // regular {expr} + let r = parse_expr(tokens, p + 1) + let interp_val = r["node"] + let p = r["pos"] + let p = expect(tokens, p, "RBrace") + // Check if the expr is a call to raw() + let is_raw_call = false + let interp_kind: String = interp_val["expr"] + if str_eq(interp_kind, "Call") { + let fn_node = interp_val["func"] + let fn_kind: String = fn_node["expr"] + if str_eq(fn_kind, "Ident") { + let fn_name_v: String = fn_node["name"] + if str_eq(fn_name_v, "raw") { + let is_raw_call = true + } + } + } + if is_raw_call { + let raw_args = interp_val["args"] + let raw_inner = native_list_get(raw_args, 0) + let children = native_list_append(children, { "html": "Raw", "value": raw_inner }) + } else { + let children = native_list_append(children, { "html": "Interp", "value": interp_val }) + } + } + } + } else { + // Text tokens — collect run of non-special tokens + let r_text = parse_html_text_tokens(tokens, p) + let text_str: String = r_text["text"] + let p = r_text["pos"] + let text_trimmed: String = str_trim(text_str) + if !str_eq(text_trimmed, "") { + let children = native_list_append(children, { "html": "Text", "text": text_trimmed }) + } + } + } + } + } + { "children": children, "pos": p } +} + +// Parse body of {#each} until {/each}. Mirrors parse_html_children but +// stops at the {/each} sentinel rather than a closing element tag. +fn parse_html_each_body(tokens: [Map], pos: Int) -> Map { + parse_html_children(tokens, pos, "__each__") +} + +// Parse a single HTML element: children +// or self-closing: +// Pos points to the Lt token. +fn parse_html_element(tokens: [Map], pos: Int) -> Map { + let p = pos + // consume < + let p = expect(tokens, p, "Lt") + // tag name + let tag_name = tok_value(tokens, p) + let p = p + 1 + // parse attributes + let r_attrs = parse_html_attrs(tokens, p) + let attrs = r_attrs["attrs"] + let p = r_attrs["pos"] + // check for self-closing /> or void element + let k = tok_kind(tokens, p) + let self_closing = false + if str_eq(k, "Slash") { + // /> + let p = p + 1 + let p = expect(tokens, p, "Gt") + let self_closing = true + return make_result({ "html": "Element", "tag": tag_name, "attrs": attrs, "children": native_list_empty(), "self_closing": true }, p) + } + // consume > + let p = expect(tokens, p, "Gt") + // void elements have no children, no closing tag + if is_void_element(tag_name) { + return make_result({ "html": "Element", "tag": tag_name, "attrs": attrs, "children": native_list_empty(), "self_closing": true }, p) + } + // parse children + let r_children = parse_html_children(tokens, p, tag_name) + let children = r_children["children"] + let p = r_children["pos"] + make_result({ "html": "Element", "tag": tag_name, "attrs": attrs, "children": children, "self_closing": false }, p) +} + +// Entry point for HTML template parsing. +// Pos points to Lt (or Lt Not for ). +// May parse an optional prefix followed by the root element. +fn parse_html_template(tokens: [Map], pos: Int) -> Map { + let p = pos + // Check for + let doctype = false + let k = tok_kind(tokens, p) + let k2 = tok_kind(tokens, p + 1) + if str_eq(k, "Lt") { + if str_eq(k2, "Not") { + let k3_v = tok_value(tokens, p + 2) + if str_eq(k3_v, "doctype") { + let doctype = true + // consume + let p = p + 2 + let scanning = true + while scanning { + let ck = tok_kind(tokens, p) + if str_eq(ck, "Eof") { let scanning = false } + if str_eq(ck, "Gt") { + let p = p + 1 + let scanning = false + } else { + let p = p + 1 + } + } + } + } + } + // Parse root element + let r = parse_html_element(tokens, p) + let root = r["node"] + let p = r["pos"] + let root_with_doctype = root + if doctype { + let root_with_doctype = { "html": root["html"], "tag": root["tag"], "attrs": root["attrs"], "children": root["children"], "self_closing": root["self_closing"], "doctype": true } + } + make_result({ "expr": "HtmlTemplate", "root": root_with_doctype }, p) +} fn parse_primary(tokens: [Map], pos: Int) -> Map { let k = tok_kind(tokens, pos) @@ -166,6 +620,22 @@ fn parse_primary(tokens: [Map], pos: Int) -> Map { return make_result({ "expr": "Bool", "value": v }, pos + 1) } + // HTML template literal: ... or ... + // Detected in value position only; `<` in comparison position is already + // consumed by parse_binop before parse_primary is reached. + if k == "Lt" { + let k2 = tok_kind(tokens, pos + 1) + if str_eq(k2, "Not") { + return parse_html_template(tokens, pos) + } + if str_eq(k2, "Ident") { + let tag_candidate = tok_value(tokens, pos + 1) + if is_html_tag_name(tag_candidate) { + return parse_html_template(tokens, pos) + } + } + } + // Identifier if k == "Ident" { return make_result({ "expr": "Ident", "name": v }, pos + 1) @@ -212,14 +682,14 @@ fn parse_primary(tokens: [Map], pos: Int) -> Map { // // Suppression: when parse_if / parse_while / parse_for / parse_match // are parsing a head expression, they set __no_block_expr=1 so a stray - // `{` here doesn't get gobbled as a Map literal — it belongs to the + // `{` here doesn't get gobbled as a Map literal - it belongs to the // following block. Without this, `if a || b { ... }` could mis-parse // (the `||` recursion lands at `{` and tries to read the if-body as a // Map, then loops forever when keys don't match `Str: expr`). if k == "LBrace" { let no_block: String = state_get("__no_block_expr") if str_eq(no_block, "1") { - // Fall through to fallback — caller will see `{` and treat it + // Fall through to fallback - caller will see `{` and treat it // as the start of the block they're expecting. return make_result({ "expr": "Nil" }, pos) } @@ -279,6 +749,30 @@ fn parse_primary(tokens: [Map], pos: Int) -> Map { return r } + // Anonymous function literal (lambda): fn(params) -> RetType { body } + // Used for inline callbacks: dom_listen(el, "click", fn(e: Any) -> Void { ... }) + // Produces a Lambda expression node (distinct from a named FnDef statement). + if k == "Fn" { + let p = pos + 1 + let r = parse_params(tokens, p) + let params = r["params"] + let p = r["pos"] + let ret_type = "" + let k2 = tok_kind(tokens, p) + if k2 == "Arrow" { + let p = p + 1 + let kt = tok_kind(tokens, p) + if kt == "Ident" { + let ret_type = tok_value(tokens, p) + } + let p = skip_type(tokens, p) + } + let r2 = parse_block(tokens, p) + let body = r2["stmts"] + let p = r2["pos"] + return make_result({ "expr": "Lambda", "params": params, "body": body, "ret_type": ret_type }, p) + } + // Unary not if k == "Not" { let r = parse_primary(tokens, pos + 1) @@ -300,7 +794,7 @@ fn parse_primary(tokens: [Map], pos: Int) -> Map { // token kinds for the deploy/retry DSLs, but they're also valid as // parameter names and local variables. When one of these appears in // expression position (where only an Ident makes sense), treat it as - // an Ident carrying the original text — otherwise references to a + // an Ident carrying the original text - otherwise references to a // parameter named `target` compile to EL_NULL. if k == "Target" { return make_result({ "expr": "Ident", "name": v }, pos + 1) } if k == "To" { return make_result({ "expr": "Ident", "name": v }, pos + 1) } @@ -408,6 +902,13 @@ fn parse_pattern(tokens: [Map], pos: Int) -> Map { if v == "_" { return make_result({ "pattern": "Wildcard" }, pos + 1) } + // Check for Enum::Variant pattern (Color::Red, Status::Ok, etc.) + // Lexed as: Ident ColonColon Ident + let next_k = tok_kind(tokens, pos + 1) + if next_k == "ColonColon" { + let variant_name = tok_value(tokens, pos + 2) + return make_result({ "pattern": "Variant", "enum_name": v, "variant": variant_name }, pos + 3) + } return make_result({ "pattern": "Binding", "name": v }, pos + 1) } if k == "Int" { @@ -472,9 +973,9 @@ fn parse_block(tokens: [Map], pos: Int) -> Map { { "stmts": stmts, "pos": p } } -// ── Postfix expressions (calls, field access, index) ───────────────────────── +// -- Postfix expressions (calls, field access, index) ------------------------- -// is_duration_unit — recognise the postfix unit suffix on a numeric literal. +// is_duration_unit - recognise the postfix unit suffix on a numeric literal. // Used by parse_postfix to detect `30.seconds`-shape time literals before // falling back to the generic `obj.field` field-access lowering. Singular // and plural forms map to the same nanosecond multiplier; codegen does the @@ -578,7 +1079,7 @@ fn parse_postfix(tokens: [Map], pos: Int) -> Map { make_result(node, p) } -// ── Binary expression precedence climbing ──────────────────────────────────── +// -- Binary expression precedence climbing ------------------------------------ fn op_precedence(kind: String) -> Int { if kind == "Or" { return 1 } @@ -593,6 +1094,7 @@ fn op_precedence(kind: String) -> Int { if kind == "Minus" { return 5 } if kind == "Star" { return 6 } if kind == "Slash" { return 6 } + if kind == "Percent" { return 6 } 0 } @@ -609,6 +1111,7 @@ fn is_binop(kind: String) -> Bool { if kind == "Minus" { return true } if kind == "Star" { return true } if kind == "Slash" { return true } + if kind == "Percent" { return true } false } @@ -641,7 +1144,7 @@ fn parse_expr(tokens: [Map], pos: Int) -> Map { parse_binop(tokens, pos, 1) } -// ── Statement parsing ───────────────────────────────────────────────────────── +// -- Statement parsing --------------------------------------------------------- fn parse_stmt(tokens: [Map], pos: Int) -> Map { let k = tok_kind(tokens, pos) @@ -653,7 +1156,7 @@ fn parse_stmt(tokens: [Map], pos: Int) -> Map { let p = p + 1 let ltype = "" let k2 = tok_kind(tokens, p) - // optional type annotation: name: Type — capture the leading + // optional type annotation: name: Type - capture the leading // identifier so codegen can dispatch arithmetic vs concat on // `+` between two typed Idents. if k2 == "Colon" { @@ -687,7 +1190,7 @@ fn parse_stmt(tokens: [Map], pos: Int) -> Map { return make_result({ "stmt": "Return", "value": val }, p) } - // extern fn declaration (no body — forward declaration for separate compilation) + // extern fn declaration (no body - forward declaration for separate compilation) if k == "Extern" { let p = pos + 1 let k2: String = tok_kind(tokens, p) @@ -737,11 +1240,16 @@ fn parse_stmt(tokens: [Map], pos: Int) -> Map { return make_result({ "stmt": "FnDef", "name": name, "params": params, "body": body, "ret_type": ret_type }, p) } - // type definition + // type definition: `type Name = { field: Type, ... }` + // The `=` between the name and the brace is optional in the spec but + // present in practice. Skip it if present before consuming the LBrace. if k == "Type" { let p = pos + 1 let name = tok_value(tokens, p) let p = p + 1 + // Consume optional `=` before the opening brace + let pk = tok_kind(tokens, p) + if pk == "Eq" { let p = p + 1 } let p = expect(tokens, p, "LBrace") let fields: [Map] = native_list_empty() let running = true @@ -858,7 +1366,17 @@ fn parse_stmt(tokens: [Map], pos: Int) -> Map { return make_result({ "stmt": "While", "cond": cond, "body": body }, p) } - // for loop + // break statement + if k == "Break" { + return make_result({ "stmt": "Break" }, pos + 1) + } + + // continue statement + if k == "Continue" { + return make_result({ "stmt": "Continue" }, pos + 1) + } + + // for loop (range or list iteration) if k == "For" { let p = pos + 1 let item_name = tok_value(tokens, p) @@ -868,15 +1386,75 @@ fn parse_stmt(tokens: [Map], pos: Int) -> Map { state_set("__no_block_expr", "1") let r = parse_expr(tokens, p) state_set("__no_block_expr", prev_no_block) - let list_expr = r["node"] + let start_expr = r["node"] let p = r["pos"] + // Check for range operator: .. (exclusive) or ..= (inclusive) + let range_k = tok_kind(tokens, p) + if range_k == "DotDot" { + // exclusive range: for i in start..end + let p = p + 1 + let r2 = parse_expr(tokens, p) + let end_expr = r2["node"] + let p = r2["pos"] + let r3 = parse_block(tokens, p) + let body = r3["stmts"] + let p = r3["pos"] + return make_result({ "stmt": "ForRange", "var": item_name, "start": start_expr, "end": end_expr, "inclusive": false, "body": body }, p) + } + if range_k == "DotDotEq" { + // inclusive range: for i in start..=end + let p = p + 1 + let r2 = parse_expr(tokens, p) + let end_expr = r2["node"] + let p = r2["pos"] + let r3 = parse_block(tokens, p) + let body = r3["stmts"] + let p = r3["pos"] + return make_result({ "stmt": "ForRange", "var": item_name, "start": start_expr, "end": end_expr, "inclusive": true, "body": body }, p) + } + // No range operator: regular for-in (list iteration) + let list_expr = start_expr let r2 = parse_block(tokens, p) let body = r2["stmts"] let p = r2["pos"] return make_result({ "stmt": "For", "item": item_name, "list": list_expr, "body": body }, p) } - // @decorator — capture decorator name and attach to following stmt + // try/catch statement + // try { body } catch (name: Type) { handler } + // The catch variable name and type are both captured; type is skipped. + if k == "Try" { + let p = pos + 1 + let r_try = parse_block(tokens, p) + let try_body = r_try["stmts"] + let p = r_try["pos"] + let catch_name = "err" + let k2 = tok_kind(tokens, p) + if str_eq(k2, "Catch") { + let p = p + 1 + let p = expect(tokens, p, "LParen") + // catch variable name + let kn = tok_kind(tokens, p) + if str_eq(kn, "Ident") { + let catch_name = tok_value(tokens, p) + let p = p + 1 + } + // optional type annotation: : Type + let k3 = tok_kind(tokens, p) + if str_eq(k3, "Colon") { + let p = p + 1 + let p = skip_type(tokens, p) + } + let p = expect(tokens, p, "RParen") + let r_catch = parse_block(tokens, p) + let catch_body = r_catch["stmts"] + let p = r_catch["pos"] + return make_result({ "stmt": "TryCatch", "try_body": try_body, "catch_name": catch_name, "catch_body": catch_body }, p) + } + return make_result({ "stmt": "TryCatch", "try_body": try_body, "catch_name": catch_name, "catch_body": native_list_empty() }, p) + } + + // @decorator - capture decorator name and attach to following stmt if k == "At" { let p = pos + 1 let dec_name = tok_value(tokens, p) @@ -1039,7 +1617,7 @@ fn parse_stmt(tokens: [Map], pos: Int) -> Map { make_result({ "stmt": "Expr", "value": val }, p) } -// ── Top-level parse ──────────────────────────────────────────────────────────── +// -- Top-level parse ------------------------------------------------------------ fn parse(tokens: [Map]) -> [Map] { let total: Int = native_list_len(tokens) @@ -1058,7 +1636,7 @@ fn parse(tokens: [Map]) -> [Map] { let stmt = r["node"] let new_pos: Int = r["pos"] let stmts = native_list_append(stmts, stmt) - // Guard against infinite loops — if pos didn't advance, force it + // Guard against infinite loops - if pos didn't advance, force it if new_pos <= pos { let pos = pos + 1 } else { diff --git a/elb.el b/lang/elb.el similarity index 98% rename from elb.el rename to lang/elb.el index 900dc43..af878e7 100644 --- a/elb.el +++ b/lang/elb.el @@ -262,7 +262,7 @@ fn link_binary(c_files: [String], out_bin: String, runtime_path: String, out_dir let parts: [String] = native_list_empty() // Include both the runtime dir (for el_runtime.h) and the output dir // (for module.elh cross-module forward declarations). - let parts = native_list_append(parts, "cc -O2 -I " + dirname_of(runtime_path) + " -I " + out_dir) + let parts = native_list_append(parts, "cc -O2 -fbracket-depth=1024 -I " + dirname_of(runtime_path) + " -I " + out_dir) let i = 0 while i < n { let f: String = native_list_get(c_files, i) @@ -270,7 +270,7 @@ fn link_binary(c_files: [String], out_bin: String, runtime_path: String, out_dir let i = i + 1 } let parts = native_list_append(parts, runtime_path) - let parts = native_list_append(parts, "-lcurl -lpthread") + let parts = native_list_append(parts, "-lcurl -lpthread -lm") let parts = native_list_append(parts, "-o " + out_bin) let cmd: String = str_join(parts, " ") println(" link " + out_bin) diff --git a/elc-cli.el b/lang/elc-cli.el similarity index 100% rename from elc-cli.el rename to lang/elc-cli.el diff --git a/elc-combined.el b/lang/elc-combined.el similarity index 100% rename from elc-combined.el rename to lang/elc-combined.el diff --git a/examples/activate.el b/lang/examples/activate.el similarity index 100% rename from examples/activate.el rename to lang/examples/activate.el diff --git a/lang/examples/browser-auth.el b/lang/examples/browser-auth.el new file mode 100644 index 0000000..a9a5427 --- /dev/null +++ b/lang/examples/browser-auth.el @@ -0,0 +1,200 @@ +// browser-auth.el -- El-compiled auth flow using Supabase +// +// Compile: elc --target=js --bundle examples/browser-auth.el > auth.js +// (requires el_runtime.js in the same directory as browser-auth.el) +// +// Demonstrates: +// - extern fn for declaring Supabase client constructor +// - anonymous function literals for callbacks +// - method call syntax on Any-typed values (client.auth.signInWithOtp) +// - try/catch for error handling +// - @async functions with DOM interaction +// - DOM bridge: dom_get_element, dom_get_value, dom_set_text, dom_add_class +// dom_remove_class, dom_show, dom_hide, dom_is_null +// - window_set to expose El functions to the browser global scope +// - local_storage_set/get for session hints +// - set_timeout for transient UI state +// - state_set/get for component state +// +// Expected HTML elements: +// #acct-email-input -- email text input +// #send-link-btn -- submit button +// #auth-message -- status message container +// #auth-form -- the form to hide after success +// +// The Supabase JS SDK is loaded from CDN via a + +"# + )) + } +} + +impl Default for ServerBackend { + fn default() -> Self { + Self::new() + } +} + +impl PlatformBackend for ServerBackend { + fn name(&self) -> &'static str { + "server" + } + + fn create_element(&self, tag: &str) -> PlatformResult { + Ok(PlatformNode::element(tag)) + } + + fn create_text(&self, content: &str) -> PlatformResult { + Ok(PlatformNode::text(content)) + } + + fn set_attribute( + &self, + node: &mut PlatformNode, + name: &str, + value: &str, + ) -> PlatformResult<()> { + node.attributes.retain(|a| a.name != name); + node.attributes.push(crate::Attribute::new(name, value)); + Ok(()) + } + + fn remove_attribute(&self, node: &mut PlatformNode, name: &str) -> PlatformResult<()> { + node.attributes.retain(|a| a.name != name); + Ok(()) + } + + fn append_child( + &self, + parent: &mut PlatformNode, + child: PlatformNode, + ) -> PlatformResult<()> { + parent.children.push(child); + Ok(()) + } + + fn remove_child(&self, parent: &mut PlatformNode, child_index: usize) -> PlatformResult<()> { + if child_index >= parent.children.len() { + return Err(PlatformError::Render(format!( + "server: child index {} out of bounds", + child_index + ))); + } + parent.children.remove(child_index); + Ok(()) + } + + fn replace_child( + &self, + parent: &mut PlatformNode, + index: usize, + new_child: PlatformNode, + ) -> PlatformResult<()> { + if index >= parent.children.len() { + return Err(PlatformError::Render(format!( + "server: replace_child index {} out of bounds", + index + ))); + } + parent.children[index] = new_child; + Ok(()) + } + + fn bind_event( + &self, + node: &mut PlatformNode, + event: &str, + _handler: EventHandler, + ) -> PlatformResult<()> { + // On the server, event handlers are emitted as data attributes. + // The client-side hydration pass picks them up and binds real listeners. + if self.hydration_markers { + node.attributes + .push(crate::Attribute::new(format!("data-el-{}", event), "hydrate")); + } + Ok(()) + } + + fn render_to_string(&self, node: &PlatformNode) -> PlatformResult { + Ok(node.to_html()) + } + + fn mount(&self, _root: PlatformNode, _container_id: &str) -> PlatformResult<()> { + // Server has no mount concept — rendering is one-shot. + Ok(()) + } + + fn patch(&self, _old: &PlatformNode, _new: &PlatformNode) -> PlatformResult<()> { + // Server rendering is stateless — no patch needed. + Ok(()) + } + + fn supports_ssr(&self) -> bool { + true + } +} diff --git a/ui/crates/el-platform/src/backends/tests.rs b/ui/crates/el-platform/src/backends/tests.rs new file mode 100644 index 0000000..79472e8 --- /dev/null +++ b/ui/crates/el-platform/src/backends/tests.rs @@ -0,0 +1,253 @@ +//! Tests for el-platform backends. + +#[cfg(test)] +mod tests { + use crate::{ + backend_for, backends::{server::ServerBackend, web::WebBackend}, + config::{PlatformConfig, PlatformTarget}, + node::PlatformNode, + PlatformBackend, + }; + + // ── Test 1: PlatformTarget::from_str parses all targets ────────────────── + #[test] + fn test_platform_target_from_str() { + assert_eq!(PlatformTarget::from_str("web"), Some(PlatformTarget::Web)); + assert_eq!(PlatformTarget::from_str("server"), Some(PlatformTarget::Server)); + assert_eq!(PlatformTarget::from_str("ios"), Some(PlatformTarget::Ios)); + assert_eq!(PlatformTarget::from_str("android"), Some(PlatformTarget::Android)); + assert_eq!(PlatformTarget::from_str("macos"), Some(PlatformTarget::Macos)); + assert_eq!(PlatformTarget::from_str("linux"), Some(PlatformTarget::Linux)); + assert_eq!(PlatformTarget::from_str("windows"), Some(PlatformTarget::Windows)); + assert_eq!(PlatformTarget::from_str("unknown"), None); + } + + // ── Test 2: PlatformTarget::as_str round-trips ─────────────────────────── + #[test] + fn test_platform_target_as_str() { + assert_eq!(PlatformTarget::Web.as_str(), "web"); + assert_eq!(PlatformTarget::Server.as_str(), "server"); + assert_eq!(PlatformTarget::Ios.as_str(), "ios"); + } + + // ── Test 3: is_native() identifies native targets ──────────────────────── + #[test] + fn test_is_native() { + assert!(!PlatformTarget::Web.is_native()); + assert!(!PlatformTarget::Server.is_native()); + assert!(PlatformTarget::Ios.is_native()); + assert!(PlatformTarget::Android.is_native()); + assert!(PlatformTarget::Macos.is_native()); + assert!(PlatformTarget::Linux.is_native()); + assert!(PlatformTarget::Windows.is_native()); + } + + // ── Test 4: PlatformConfig defaults to web ─────────────────────────────── + #[test] + fn test_platform_config_default() { + let cfg = PlatformConfig::default(); + assert_eq!(cfg.target, PlatformTarget::Web); + assert!(!cfg.ssr); + } + + // ── Test 5: PlatformConfig with_ssr ────────────────────────────────────── + #[test] + fn test_platform_config_with_ssr() { + let cfg = PlatformConfig::new(PlatformTarget::Server).with_ssr(true); + assert_eq!(cfg.target, PlatformTarget::Server); + assert!(cfg.ssr); + } + + // ── Test 6: WebBackend renders element to HTML ─────────────────────────── + #[test] + fn test_web_backend_renders_element() { + let backend = WebBackend::new(); + let mut div = backend.create_element("div").unwrap(); + backend.set_attribute(&mut div, "class", "container").unwrap(); + backend.append_child(&mut div, backend.create_text("Hello").unwrap()).unwrap(); + + let html = backend.render_to_string(&div).unwrap(); + assert!(html.contains(""), "should close div tag"); + } + + // ── Test 7: ServerBackend supports SSR ─────────────────────────────────── + #[test] + fn test_server_backend_supports_ssr() { + let backend = ServerBackend::new(); + assert!(backend.supports_ssr()); + } + + // ── Test 8: ServerBackend renders full HTML page ───────────────────────── + #[test] + fn test_server_backend_render_page() { + let backend = ServerBackend::new(); + let root = PlatformNode::element("div") + .with_attr("id", "content") + .with_child(PlatformNode::text("Hello World")); + + let page = backend.render_page(&root, "My App", "/app.js").unwrap(); + assert!(page.contains(""), "should be full HTML doc"); + assert!(page.contains("My App"), "should include title"); + assert!(page.contains("Hello World"), "should include content"); + assert!(page.contains("/app.js"), "should include script src"); + } + + // ── Test 9: PlatformNode::to_html renders nested tree ──────────────────── + #[test] + fn test_platform_node_to_html_nested() { + let node = PlatformNode::element("ul") + .with_child(PlatformNode::element("li").with_child(PlatformNode::text("item 1"))) + .with_child(PlatformNode::element("li").with_child(PlatformNode::text("item 2"))); + + let html = node.to_html(); + assert!(html.contains("
    ")); + assert!(html.contains("
  • item 1
  • ")); + assert!(html.contains("
  • item 2
  • ")); + assert!(html.contains("
")); + } + + // ── Test 10: PlatformNode::to_html escapes text content ────────────────── + #[test] + fn test_html_escaping() { + let node = PlatformNode::element("span") + .with_child(PlatformNode::text("")); + let html = node.to_html(); + assert!(!html.contains(" + + diff --git a/ui/examples/profile-card/Cargo.toml b/ui/examples/profile-card/Cargo.toml new file mode 100644 index 0000000..1a0dabd --- /dev/null +++ b/ui/examples/profile-card/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "profile-card" +version = "0.1.0" +edition = "2021" +description = "el-ui profile card example — styling, layout, i18n, config, auth" + +[[bin]] +name = "profile-card" +path = "src/main.rs" + +[dependencies] +el-style = { path = "../../crates/el-style" } +el-layout = { path = "../../crates/el-layout" } +el-i18n = { path = "../../crates/el-i18n" } +el-config = { path = "../../crates/el-config" } +el-secrets = { path = "../../crates/el-secrets" } diff --git a/ui/examples/profile-card/src/main.rs b/ui/examples/profile-card/src/main.rs new file mode 100644 index 0000000..83a4105 --- /dev/null +++ b/ui/examples/profile-card/src/main.rs @@ -0,0 +1,350 @@ +//! Profile card example — demonstrates el-ui styling, layout, i18n, config, and secrets. +//! +//! This example shows what building with el-ui looks like: +//! +//! - Styling via semantic tokens and the StyleModifier trait +//! - Responsive layout: VStack/HStack that wrap automatically +//! - Localization via LocaleContext and t()/t_plural() +//! - Configuration from el.toml / env vars +//! - Secrets that never appear in logs + +use std::collections::HashMap; + +use el_config::prelude::*; +use el_i18n::prelude::*; +use el_layout::prelude::*; +use el_secrets::prelude::*; +use el_style::prelude::*; + +// --- Domain model --- + +struct UserProfile { + handle: String, + display_name: String, + bio: String, + follower_count: i64, + following_count: i64, + is_verified: bool, + is_following: bool, +} + +// --- Profile card component --- + +/// A profile card component. +/// +/// In a real el-ui app, this would be a .el component file compiled by +/// el-ui-compiler. Here we show the same patterns in pure Rust so the +/// example is self-contained and runnable. +struct ProfileCard { + profile: UserProfile, + theme: Theme, + style: StyleSet, + locale: LocaleContext, +} + +impl StyleModifier for ProfileCard { + fn style_mut(&mut self) -> &mut StyleSet { + &mut self.style + } +} + +impl ProfileCard { + fn new(profile: UserProfile, theme: Theme, locale: LocaleContext) -> Self { + Self { + profile, + theme, + style: StyleSet::default(), + locale, + } + } + + /// "Render" the card — in a real app the backend converts this to + /// native views. Here we produce a human-readable description. + fn render(&self) -> String { + let t = &self.locale; + let theme = &self.theme; + + // --- Header HStack (avatar + name + verified badge) --- + // HStack wraps automatically if the container is narrow (mobile-first) + let header = HStack::new() + .spacing(12) + .alignment(VAlign::Center) + .wrap(true); + + // --- Name text: Title style --- + let name_style = theme.typography.resolve(&TextStyle::Title); + + // --- Body text: Body style --- + let body_style = theme.typography.resolve(&TextStyle::Body); + + // --- Stats HStack (followers / following) --- + let _stats_layout = HStack::new().spacing(24).wrap(true); + + // --- Follow button --- + // VStack wraps children that don't fit, so this works on any screen width + let _card_layout = VStack::new() + .spacing(16) + .alignment(HAlign::Leading) + .wrap(true); + + // --- Localized strings --- + let follow_label = if self.profile.is_following { + t.t("profile.following") + } else { + t.t("profile.follow") + }; + + let followers_label = + t.t_plural("profile.followers", self.profile.follower_count); + let following_label = + t.t_plural("profile.following_count", self.profile.following_count); + + // --- Color resolution --- + let (bg_r, bg_g, bg_b, _) = theme.colors.resolve(&Color::Surface); + let (text_r, text_g, text_b, _) = theme.colors.resolve(&Color::OnSurface); + let (primary_r, primary_g, primary_b, _) = theme.colors.resolve(&Color::Primary); + + // --- Shadow --- + let shadow_css = theme + .shadows + .resolve(&Shadow::Md) + .map(|s| s.to_css()) + .unwrap_or_default(); + + // --- Formatted stats (locale-aware numbers) --- + let follower_count_fmt = format_integer(self.profile.follower_count, &self.locale.locale); + let following_count_fmt = format_integer(self.profile.following_count, &self.locale.locale); + + // --- RTL layout signal --- + let layout_direction = if self.locale.is_rtl() { "rtl" } else { "ltr" }; + + // --- Build the output --- + format!( + r#" +┌─ ProfileCard ───────────────────────────────────────────── +│ Layout direction: {} +│ Theme mode: {:?} +│ +│ [Card background: rgb({},{},{}), shadow: {}] +│ +│ {} {} [Header HStack, spacing=12, wrap=true] +│ Avatar [44×44pt, radius=Full — meets touch target] +│ {} [font: {}pt weight={}, color: rgb({},{},{})] +│ {} [verified badge] +│ +│ {} [Body style, {}pt, color: rgb({},{},{})] +│ +│ [Stats HStack, spacing=24, wrap=true] +│ {} {} — follower count (locale-formatted) +│ {} {} — following count +│ +│ [Button: Primary variant] +│ {} [color: rgb({},{},{})] +│ +│ [Card ends] +└──────────────────────────────────────────────────────────── +"#, + layout_direction, + theme.mode, + bg_r, bg_g, bg_b, + shadow_css, + header.spacing, + if header.wrap { "wrap=true" } else { "wrap=false" }, + self.profile.display_name, + name_style.size, + name_style.weight.value(), + text_r, text_g, text_b, + if self.profile.is_verified { "✓" } else { "" }, + self.profile.bio, + body_style.size, + text_r, text_g, text_b, + follower_count_fmt, + followers_label, + following_count_fmt, + following_label, + follow_label, + primary_r, primary_g, primary_b, + ) + } +} + +// --- Application entry point --- + +fn main() { + // 1. Configuration — layered, typed + let el_toml = r#" +[config] +app.name = "ProfileCard Example" +app.version = "1.0.0" +profile.max_bio_length = "160" + +[env.development] +app.debug = "true" +"#; + + let toml_source = load_from_toml(el_toml, &Environment::Development) + .expect("el.toml should be valid"); + + let mut config = Config::new(Environment::Development); + config.push_source(Box::new(toml_source)); + + let app_name = config.get::("app.name").unwrap_or_default(); + let app_version = config.get::("app.version").unwrap_or_default(); + let max_bio: u32 = config.get_or("profile.max_bio_length", 160u32); + let debug: bool = config.get_or("app.debug", false); + + println!("=== {} v{} ===", app_name, app_version); + println!("Environment: {}", config.environment); + println!("Debug mode: {}", debug); + println!("Max bio: {} chars", max_bio); + + // 2. Secrets — loaded at startup, never logged + let mut secret_src = InMemorySource::new(); + secret_src.insert("analytics.key", "ana_abc123xyz"); + + let secrets = SecretsResolver::new() + .source(Box::new(secret_src)) + .require("analytics.key") + .resolve() + .expect("required secrets must be present at startup"); + + let analytics_key = secrets.require("analytics.key"); + // This will always print [REDACTED] — never the actual key + println!("Analytics key: {} (safely [REDACTED] in logs)", analytics_key); + // To actually use it: + let _actual_key: &str = analytics_key.expose(); + + // 3. Localization — English + let mut en_bundle = LocaleBundle::new(Locale::en_us()); + en_bundle.insert("profile.follow", "Follow"); + en_bundle.insert("profile.following", "Following"); + let mut forms = HashMap::new(); + forms.insert("one".to_string(), "{n} Follower".to_string()); + forms.insert("other".to_string(), "{n} Followers".to_string()); + en_bundle.insert_plural("profile.followers", forms); + let mut following_forms = HashMap::new(); + following_forms.insert("one".to_string(), "{n} Following".to_string()); + following_forms.insert("other".to_string(), "{n} Following".to_string()); + en_bundle.insert_plural("profile.following_count", following_forms); + + let en_ctx = LocaleContext::new(Locale::en_us(), en_bundle); + + // 4. Theme — light, system colors + let light_theme = Theme::default_light(); + let dark_theme = Theme::default_dark(); + + // 5. Profile data + let profile = UserProfile { + handle: "alice".to_string(), + display_name: "Alice Chen".to_string(), + bio: "Building beautiful things with el-ui. Rust enthusiast.".to_string(), + follower_count: 12_483, + following_count: 342, + is_verified: true, + is_following: false, + }; + + // 6. Render the card (light theme, English) + println!("\n=== Light Theme, English ==="); + let card = ProfileCard::new( + UserProfile { + handle: profile.handle.clone(), + display_name: profile.display_name.clone(), + bio: profile.bio.clone(), + follower_count: profile.follower_count, + following_count: profile.following_count, + is_verified: profile.is_verified, + is_following: profile.is_following, + }, + light_theme, + en_ctx.clone(), + ); + // Apply style modifiers — fluent, zero-cost at compile time + let styled_card = card + .padding(16) + .background(Color::Surface) + .radius(Radius::Lg) + .shadow(Shadow::Md) + .max_width(Dimension::Fixed(480)); + + println!("{}", styled_card.render()); + + // 7. Render with dark theme + println!("=== Dark Theme, English ==="); + let card_dark = ProfileCard::new( + UserProfile { + handle: profile.handle.clone(), + display_name: profile.display_name.clone(), + bio: profile.bio.clone(), + follower_count: 1, // test singular + following_count: profile.following_count, + is_verified: profile.is_verified, + is_following: true, + }, + dark_theme, + en_ctx, + ); + let styled_dark = card_dark + .padding(16) + .background(Color::Surface) + .radius(Radius::Lg) + .shadow(Shadow::Lg); + + println!("{}", styled_dark.render()); + + // 8. Layout demonstration + println!("=== Layout Engine Demo ==="); + + // Grid: auto columns — picks 1, 2, 3... based on container width + let grid = GridLayout::new().columns_auto(200.0).gap(16); + for width in [300.0f32, 600.0, 900.0, 1200.0] { + println!( + " Container {}px → {} columns", + width, + grid.active_columns(width) + ); + } + + // Responsive value + let cols: Responsive = Responsive::fixed(1).md(2).lg(3); + println!("\n Responsive columns:"); + for bp in [ + Breakpoint::Base, + Breakpoint::Sm, + Breakpoint::Md, + Breakpoint::Lg, + Breakpoint::Xl, + ] { + println!(" {:?}: {} col(s)", bp, cols.resolve(bp)); + } + + // Platform sizing + let ios_sizing = PlatformSizing::for_platform(PlatformFamily::Ios); + let android_sizing = PlatformSizing::for_platform(PlatformFamily::Android); + println!("\n Min touch targets:"); + println!(" iOS: {}pt", ios_sizing.min_touch_target); + println!(" Android: {}dp", android_sizing.min_touch_target); + + // 9. Locale formatting + println!("\n=== Locale-Aware Formatting ==="); + let number = 1_234_567.89; + for (tag, locale) in [ + ("en-US", Locale::en_us()), + ("de-DE", Locale::new("de-DE")), + ("fr-FR", Locale::fr_fr()), + ("ja-JP", Locale::ja()), + ] { + let formatted = format_number(number, &locale, 2); + let currency = format_currency(1234.56, &locale, "USD"); + println!(" {}: {} | {}", tag, formatted, currency); + } + + // 10. RTL detection + println!("\n=== RTL Detection ==="); + for tag in ["en-US", "ar-SA", "he", "fa", "zh-TW"] { + let locale = Locale::new(tag); + println!(" {}: {}", tag, if locale.is_rtl() { "RTL" } else { "LTR" }); + } + + println!("\nAll systems operational. el-ui is ready."); +} diff --git a/ui/examples/todo/App.el b/ui/examples/todo/App.el new file mode 100644 index 0000000..b7258da --- /dev/null +++ b/ui/examples/todo/App.el @@ -0,0 +1,54 @@ +component TodoItem { + props { + text: String + done: Bool = false + } + + state { + completed: Bool = false + } + + template { +
  • + completed = !completed} /> + {text} +
  • + } +} + +component TodoApp { + state { + newItem: String = "" + items: String = "" + } + + fn addItem() -> Void { + if newItem != "" { + items = items + newItem + ";" + newItem = "" + } + } + + template { +
    +

    Todos

    +
    + newItem = e.target.value} + placeholder="Add a todo..." + /> + +
    +
    + } +} + +component App { + template { +
    + +
    + } +} diff --git a/ui/examples/todo/app.js b/ui/examples/todo/app.js new file mode 100644 index 0000000..4e65b4b --- /dev/null +++ b/ui/examples/todo/app.js @@ -0,0 +1,108 @@ +import { Component, Graph, Renderer, Router, mount } from './el-ui.js'; + +class TodoItem extends Component { + constructor(props = {}) { + super(); + this.props = props; + this._graph = new Graph(); + this._stateNodes = {}; + this._state = {}; + // Props + this._props_text = props.text !== undefined ? props.text : undefined; + this._props_done = props.done !== undefined ? props.done : false; + // State nodes (Engram graph seeds) + this._stateNodes['completed'] = this._graph.seed({ type: 'state', name: 'completed', content: false }); + this._state['completed'] = false; + // Subscribe to graph activation events + for (const [key, nodeId] of Object.entries(this._stateNodes)) { + this._graph.subscribe(nodeId, (node) => { + this._state[key] = node.content; + if (this._renderer) this._renderer.patch(); + }); + } + } + + setState(name, value) { + if (this._stateNodes[name] !== undefined) { + this._graph.update(this._stateNodes[name], value); + } + } + + render() { + const __self = this; + const completed = this._state['completed']; + const text = this._props_text; + const done = this._props_done; + return `
  • ${text }
  • `; + } + +} + +class TodoApp extends Component { + constructor(props = {}) { + super(); + this.props = props; + this._graph = new Graph(); + this._stateNodes = {}; + this._state = {}; + // State nodes (Engram graph seeds) + this._stateNodes['newItem'] = this._graph.seed({ type: 'state', name: 'newItem', content: "" }); + this._state['newItem'] = ""; + this._stateNodes['items'] = this._graph.seed({ type: 'state', name: 'items', content: "" }); + this._state['items'] = ""; + // Subscribe to graph activation events + for (const [key, nodeId] of Object.entries(this._stateNodes)) { + this._graph.subscribe(nodeId, (node) => { + this._state[key] = node.content; + if (this._renderer) this._renderer.patch(); + }); + } + } + + setState(name, value) { + if (this._stateNodes[name] !== undefined) { + this._graph.update(this._stateNodes[name], value); + } + } + + addItem() { + const newItem = this._state['newItem']; + const items = this._state['items']; + if newItem != "" { items = items + newItem + ";" newItem = "" } + } + + render() { + const __self = this; + const newItem = this._state['newItem']; + const items = this._state['items']; + return `

    Todos

    `; + } + +} + +class App extends Component { + constructor(props = {}) { + super(); + this.props = props; + this._graph = new Graph(); + this._stateNodes = {}; + this._state = {}; + } + + setState(name, value) { + if (this._stateNodes[name] !== undefined) { + this._graph.update(this._stateNodes[name], value); + } + } + + render() { + const __self = this; + return `
    ${__self._child(TodoApp, { })}
    `; + } + +} + +export { TodoItem, TodoApp, App }; + +// Mount the app +mount(App, '#app'); diff --git a/ui/examples/todo/el-ui.js b/ui/examples/todo/el-ui.js new file mode 120000 index 0000000..a502a84 --- /dev/null +++ b/ui/examples/todo/el-ui.js @@ -0,0 +1 @@ +../../dist/el-ui.js \ No newline at end of file diff --git a/ui/examples/todo/index.html b/ui/examples/todo/index.html new file mode 100644 index 0000000..938f5b6 --- /dev/null +++ b/ui/examples/todo/index.html @@ -0,0 +1,141 @@ + + + + + + Todos — el-ui + + + +
    +
    el-ui · spreading activation
    + + + diff --git a/ui/runtime/src/activation.js b/ui/runtime/src/activation.js new file mode 100644 index 0000000..12f3f31 --- /dev/null +++ b/ui/runtime/src/activation.js @@ -0,0 +1,121 @@ +/** + * activation.js — Spreading activation utilities for el-ui. + * + * This module provides standalone activation functions that operate on any + * Graph instance. Useful for implementing custom reactive behavior outside + * of the standard component setState() lifecycle. + * + * The activation model mirrors engram-core/src/activation.rs exactly: + * - Best-first BFS from seed nodes + * - Multiplicative strength: parent_strength × edge.weight × target.importance + * - Winner-take-most: strongest path to each node wins + * - Prune: paths below threshold are cut (models attention filter) + */ + +export const PRUNE_THRESHOLD = 0.01; +export const DEFAULT_MAX_DEPTH = 3; +export const DEFAULT_LIMIT = 20; + +/** + * Run spreading activation from multiple seed nodes. + * + * @param {import('./graph.js').Graph} graph + * @param {string[]} seeds starting node IDs + * @param {object} opts + * @param {number} [opts.maxDepth=3] + * @param {number} [opts.limit=20] + * @param {number} [opts.pruneThreshold=0.01] + * @returns {Array<{nodeId: string, strength: number, hops: number, node: object}>} + */ +export function spreadActivation(graph, seeds, { + maxDepth = DEFAULT_MAX_DEPTH, + limit = DEFAULT_LIMIT, + pruneThreshold = PRUNE_THRESHOLD, +} = {}) { + /** @type {Map} */ + const bestStrength = new Map(); + /** @type {Array<{id: string, strength: number, hops: number}>} */ + const queue = []; + + const seedSet = new Set(seeds); + + for (const seed of seeds) { + const node = graph.get(seed); + if (!node) continue; + queue.push({ id: seed, strength: 1.0, hops: 0 }); + bestStrength.set(seed, { strength: 1.0, hops: 0 }); + } + + while (queue.length > 0) { + // Best-first: pop the highest-strength candidate + let bestIdx = 0; + for (let i = 1; i < queue.length; i++) { + if (queue[i].strength > queue[bestIdx].strength) bestIdx = i; + } + const { id, strength, hops } = queue.splice(bestIdx, 1)[0]; + + if (hops >= maxDepth) continue; + + const node = graph.get(id); + if (!node) continue; + + for (const edgeId of node.edges) { + const edge = graph.edges.get(edgeId); + if (!edge) continue; + + const target = graph.get(edge.to); + if (!target) continue; + + const targetStrength = strength * edge.weight * Math.max(0, target.importance); + + if (targetStrength <= pruneThreshold) continue; + + const prev = bestStrength.get(edge.to); + if (!prev || targetStrength > prev.strength) { + const nextHops = hops + 1; + bestStrength.set(edge.to, { strength: targetStrength, hops: nextHops }); + queue.push({ id: edge.to, strength: targetStrength, hops: nextHops }); + } + } + } + + // Collect results — exclude seeds, sort by strength + const results = []; + for (const [nodeId, { strength, hops }] of bestStrength) { + if (seedSet.has(nodeId)) continue; + const node = graph.get(nodeId); + if (node) results.push({ nodeId, strength, hops, node }); + } + + results.sort((a, b) => b.strength - a.strength); + return results.slice(0, limit); +} + +/** + * Compute activation strength between two specific nodes. + * Returns 0 if no path exists within maxDepth. + * + * @param {import('./graph.js').Graph} graph + * @param {string} fromId + * @param {string} toId + * @param {number} [maxDepth=3] + * @returns {number} + */ +export function activationStrength(graph, fromId, toId, maxDepth = DEFAULT_MAX_DEPTH) { + const results = spreadActivation(graph, [fromId], { maxDepth }); + const found = results.find(r => r.nodeId === toId); + return found ? found.strength : 0; +} + +/** + * Find all nodes reachable from a seed within the activation surface. + * Unlike spreadActivation(), this includes the seed itself. + * + * @param {import('./graph.js').Graph} graph + * @param {string} seedId + * @param {number} [maxDepth=3] + * @returns {Set} + */ +export function reachableNodes(graph, seedId, maxDepth = DEFAULT_MAX_DEPTH) { + return graph.activate(seedId, maxDepth); +} diff --git a/ui/runtime/src/graph.js b/ui/runtime/src/graph.js new file mode 100644 index 0000000..380673c --- /dev/null +++ b/ui/runtime/src/graph.js @@ -0,0 +1,224 @@ +/** + * graph.js — In-browser Engram graph for el-ui state management. + * + * Every piece of component state is a node in this graph. + * Edges encode relationships between state items (e.g., derived values, + * related data, component hierarchies). + * + * Reactivity is driven by spreading activation: when a node is updated, + * activation spreads outward through edges, and subscribers on any activated + * node are notified. Only subscribers in the activation surface update — + * this is the core of el-ui's selective re-rendering. + */ + +export class Graph { + constructor() { + /** @type {Map} */ + this.nodes = new Map(); + + /** @type {Map} */ + this.edges = new Map(); + + /** @type {Map>} */ + this.subscribers = new Map(); + } + + /** + * Create a new node and return its ID. + * @param {{type: string, name: string, content: any, importance?: number}} opts + * @returns {string} node ID + */ + seed({ type, name, content, importance = 0.5 }) { + const id = this._uuid(); + this.nodes.set(id, { id, type, name, content, importance, edges: [] }); + return id; + } + + /** + * Get a node by ID. + * @param {string} id + * @returns {{id: string, type: string, name: string, content: any, importance: number, edges: string[]} | undefined} + */ + get(id) { + return this.nodes.get(id); + } + + /** + * Update node content and trigger spreading activation. + * This is the primary mutation point — all state changes go through here. + * @param {string} id + * @param {any} newContent + */ + update(id, newContent) { + const node = this.nodes.get(id); + if (!node) return; + + node.content = newContent; + // Activation boosts importance — recently-changed state nodes + // become more salient (same model as Engram salience boost). + node.importance = Math.min(1.0, node.importance + 0.1); + + // Spreading activation from the updated node + const activated = this.activate(id); + + // Notify all subscribers in the activation surface + for (const nodeId of activated) { + const subs = this.subscribers.get(nodeId); + if (subs && subs.length > 0) { + const activatedNode = this.nodes.get(nodeId); + if (activatedNode) { + subs.forEach(cb => cb(activatedNode)); + } + } + } + + // Always notify direct subscribers on the changed node itself + const directSubs = this.subscribers.get(id); + if (directSubs && directSubs.length > 0) { + directSubs.forEach(cb => cb(node)); + } + } + + /** + * Spreading activation — BFS from a seed node. + * + * Faithfully mirrors the Engram spreading activation algorithm: + * strength = parent_strength × edge.weight × target.importance + * + * (In the browser we omit cosine_sim since we have no embedding vectors — + * the importance factor serves as the salience filter.) + * + * @param {string} seedId + * @param {number} maxDepth + * @param {number} pruneThreshold + * @returns {Set} set of activated node IDs (including the seed) + */ + activate(seedId, maxDepth = 3, pruneThreshold = 0.01) { + const result = new Set([seedId]); + /** @type {Array<{id: string, strength: number, depth: number}>} */ + const queue = [{ id: seedId, strength: 1.0, depth: 0 }]; + /** @type {Map} */ + const bestStrength = new Map([[seedId, 1.0]]); + + while (queue.length > 0) { + // Best-first: process highest-strength candidate + let bestIdx = 0; + for (let i = 1; i < queue.length; i++) { + if (queue[i].strength > queue[bestIdx].strength) bestIdx = i; + } + const { id, strength, depth } = queue.splice(bestIdx, 1)[0]; + + if (depth >= maxDepth) continue; + + const node = this.nodes.get(id); + if (!node) continue; + + for (const edgeId of node.edges) { + const edge = this.edges.get(edgeId); + if (!edge) continue; + + const target = this.nodes.get(edge.to); + if (!target) continue; + + // Activation formula (multiplicative — matches Engram engine) + const targetStrength = strength * edge.weight * Math.max(0, target.importance); + + if (targetStrength <= pruneThreshold) continue; + + const prevBest = bestStrength.get(edge.to) ?? 0; + if (targetStrength > prevBest) { + bestStrength.set(edge.to, targetStrength); + result.add(edge.to); + queue.push({ id: edge.to, strength: targetStrength, depth: depth + 1 }); + } + } + } + + return result; + } + + /** + * Semantic search — find nodes by content similarity. + * + * In v0.1 this uses simple string matching. In a future version this will + * use embedding vectors and cosine similarity (matching the Engram core engine). + * + * @param {string} query + * @param {string|null} nodeType optional filter by node type + * @returns {Array<{id: string, type: string, name: string, content: any, importance: number, score: number}>} + */ + search(query, nodeType = null) { + const results = []; + const q = query.toLowerCase(); + for (const [, node] of this.nodes) { + if (nodeType && node.type !== nodeType) continue; + const content = String(node.content).toLowerCase(); + const nameMatch = node.name.toLowerCase().includes(q); + const contentMatch = content.includes(q); + if (nameMatch || contentMatch) { + // Score: name matches score higher; importance boosts + const score = (nameMatch ? 0.6 : 0) + (contentMatch ? 0.4 : 0); + results.push({ ...node, score: score * node.importance }); + } + } + return results.sort((a, b) => b.score - a.score); + } + + /** + * Subscribe to updates on a specific node (and any activation-reachable neighbors). + * Returns an unsubscribe function. + * + * @param {string} nodeId + * @param {function} callback called with the node object when it activates + * @returns {function} unsubscribe + */ + subscribe(nodeId, callback) { + if (!this.subscribers.has(nodeId)) { + this.subscribers.set(nodeId, []); + } + this.subscribers.get(nodeId).push(callback); + return () => { + const subs = this.subscribers.get(nodeId); + if (!subs) return; + const idx = subs.indexOf(callback); + if (idx >= 0) subs.splice(idx, 1); + }; + } + + /** + * Connect two nodes with a directed edge. + * Higher weight = stronger activation path. + * + * @param {string} fromId + * @param {string} toId + * @param {{weight?: number, relation?: string}} opts + * @returns {string} edge ID + */ + connect(fromId, toId, { weight = 1.0, relation = 'related' } = {}) { + const edgeId = this._uuid(); + this.edges.set(edgeId, { id: edgeId, from: fromId, to: toId, weight, relation }); + const node = this.nodes.get(fromId); + if (node) node.edges.push(edgeId); + return edgeId; + } + + /** + * Return all nodes as an array (useful for debugging / DevTools). + * @returns {Array} + */ + dump() { + return [...this.nodes.values()]; + } + + /** @private */ + _uuid() { + if (typeof crypto !== 'undefined' && crypto.randomUUID) { + return crypto.randomUUID(); + } + // Fallback for environments without crypto.randomUUID + return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => { + const r = Math.random() * 16 | 0; + return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16); + }); + } +} diff --git a/ui/runtime/src/index.js b/ui/runtime/src/index.js new file mode 100644 index 0000000..5b33bc2 --- /dev/null +++ b/ui/runtime/src/index.js @@ -0,0 +1,136 @@ +/** + * el-ui — Activation-based frontend framework. + * + * State is an Engram graph. Reactivity is spreading activation. + * + * Core exports: + * Graph — in-browser Engram graph (nodes, edges, activation) + * Renderer — DOM mounting and patching + * Router — graph-based routing + * Component — base class for el-ui components + * mount() — attach a component to the DOM + * + * @module el-ui + */ + +export { Graph } from './graph.js'; +export { Renderer } from './renderer.js'; +export { Router } from './router.js'; +export { + spreadActivation, + activationStrength, + reachableNodes, + PRUNE_THRESHOLD, +} from './activation.js'; + +import { Graph } from './graph.js'; +import { Renderer } from './renderer.js'; + +/** + * Base class for all el-ui components. + * + * Subclasses override: + * render() → returns HTML string + * onMount() → called after first mount (optional) + * + * Subclasses call: + * setState(name, value) → update state, trigger activation, patch DOM + */ +export class Component { + constructor(props = {}) { + /** @type {Graph} */ + this._graph = new Graph(); + + /** @type {Record} state node IDs */ + this._stateNodes = {}; + + /** @type {Record} current state values */ + this._state = {}; + + /** @type {Record} current prop values */ + this.props = props; + + /** @type {Renderer|null} */ + this._renderer = null; + } + + /** + * Update a named state variable. + * Triggers spreading activation in the graph, then patches the DOM. + * + * @param {string} name + * @param {any} value + */ + setState(name, value) { + if (this._stateNodes[name] !== undefined) { + this._graph.update(this._stateNodes[name], value); + // Graph.update() notifies subscribers, which call _renderer.patch(). + // Belt-and-suspenders: also patch directly in case no subscribers yet. + if (this._renderer) this._renderer.patch(); + } + } + + /** + * Render a child component inline, sharing the parent's activation graph. + * Used by the compiler to embed child components in template strings. + * + * @param {typeof Component} ComponentClass + * @param {Record} props + * @returns {string} + */ + _child(ComponentClass, props = {}) { + try { + const instance = new ComponentClass(props); + // Share the parent graph so child state participates in the same + // activation surface. Child state changes can propagate upward. + instance._graph = this._graph; + return instance.render(); + } catch (e) { + console.warn(`el-ui: failed to render child ${ComponentClass?.name}`, e); + return ``; + } + } + + /** + * Override to return the component's HTML string. + * All state and props are accessible via this._state / this.props. + * @returns {string} + */ + render() { + return ''; + } + + /** + * Called once after the component is first mounted to the DOM. + * Override for side effects (timers, fetch calls, subscriptions). + */ + onMount() {} +} + +/** + * Mount a component to a DOM element and start the el-ui runtime. + * + * @param {typeof Component} ComponentClass the component class to mount + * @param {string} selector CSS selector for the root element + * @param {Record} [props={}] initial props + * @returns {Component} the live component instance + * + * @example + * import { mount } from './el-ui.js'; + * import { Counter } from './counter.js'; + * mount(Counter, '#app'); + */ +export function mount(ComponentClass, selector, props = {}) { + const root = document.querySelector(selector); + if (!root) { + throw new Error(`el-ui: no element found for selector '${selector}'`); + } + + const component = new ComponentClass(props); + const renderer = new Renderer(root, component); + component._renderer = renderer; + renderer.mount(); + return component; +} + +export default { mount, Component, Graph, Renderer }; diff --git a/ui/runtime/src/renderer.js b/ui/runtime/src/renderer.js new file mode 100644 index 0000000..8fa33e7 --- /dev/null +++ b/ui/runtime/src/renderer.js @@ -0,0 +1,144 @@ +/** + * renderer.js — DOM rendering and patching for el-ui. + * + * v0.1 strategy: full string re-render with event rebinding. + * The architecture is designed for future targeted DOM patching: + * `patch()` will accept the activated node set and only update + * DOM subtrees whose data-el-tag corresponds to an activated node. + * + * Event binding uses data-el-* attributes set by the compiler, + * which avoids innerHTML XSS risks for handler references while + * keeping the runtime small (no virtual DOM, no event delegation table). + */ + +export class Renderer { + /** + * @param {HTMLElement} root the mount point + * @param {import('./index.js').Component} component component instance + */ + constructor(root, component) { + this.root = root; + this.component = component; + this._currentHtml = ''; + this._boundHandlers = new WeakMap(); + } + + /** + * Initial mount — render and bind events. + */ + mount() { + this._currentHtml = this.component.render(); + this.root.innerHTML = this._currentHtml; + this._bindEvents(); + if (typeof this.component.onMount === 'function') { + this.component.onMount(); + } + } + + /** + * Patch the DOM after a state change. + * Called by the component when spreading activation completes. + * + * @param {Set} [_activatedNodes] future: targeted patching by node set + */ + patch(_activatedNodes) { + const newHtml = this.component.render(); + if (newHtml !== this._currentHtml) { + // Preserve scroll position and focused element identity + const focused = document.activeElement; + const focusedId = focused && focused !== document.body ? focused.id : null; + + this.root.innerHTML = newHtml; + this._bindEvents(); + this._currentHtml = newHtml; + + // Restore focus if element still exists + if (focusedId) { + const el = this.root.querySelector(`#${CSS.escape(focusedId)}`); + if (el) el.focus(); + } + } + } + + /** + * Bind all data-el-* event handlers declared by the compiler. + * + * The compiler emits attributes like: + * data-el-click="__self.handleClick()" + * data-el-input="(e) => __self.setState('value', e.target.value)" + * + * We eval these in the context of the component instance. + * (For production use, a full CSP-compatible binding would generate + * handler functions at compile time.) + * + * @private + */ + _bindEvents() { + const comp = this.component; + const eventNames = ['click', 'input', 'change', 'mouseenter', 'mouseleave', + 'keydown', 'keyup', 'keypress', 'focus', 'blur', + 'submit', 'mousedown', 'mouseup', 'dblclick', 'contextmenu']; + + for (const eventName of eventNames) { + const attr = `data-el-${eventName}`; + this.root.querySelectorAll(`[${attr}]`).forEach(el => { + const handlerExpr = el.getAttribute(attr); + if (!handlerExpr) return; + + // Build a handler function in the component's scope + const handler = this._compileHandler(handlerExpr, comp); + if (handler) { + // Remove previous binding if any + const prev = this._boundHandlers.get(el); + if (prev) el.removeEventListener(eventName, prev[eventName]); + + el.addEventListener(eventName, handler); + if (!this._boundHandlers.has(el)) this._boundHandlers.set(el, {}); + this._boundHandlers.get(el)[eventName] = handler; + } + }); + } + } + + /** + * Compile a handler expression string into a callable function. + * The expression is evaluated with `__self` bound to the component. + * + * @private + * @param {string} expr + * @param {object} comp + * @returns {function|null} + */ + _compileHandler(expr, comp) { + try { + // Decode HTML entities (attrs may have " etc.) + const decoded = expr + .replace(/"/g, '"') + .replace(/'/g, "'") + .replace(/&/g, '&') + .replace(/</g, '<') + .replace(/>/g, '>'); + + // If it looks like an arrow function or function reference, wrap it + const isArrow = decoded.includes('=>'); + const isCall = decoded.includes('('); + + if (isArrow) { + // Arrow function: `(e) => __self.setState(...)` or `() => ...` + // eslint-disable-next-line no-new-func + const fn = new Function('__self', `return ${decoded}`)(comp); + return typeof fn === 'function' ? fn : null; + } else if (isCall) { + // Method call: `__self.handleClick()` + // eslint-disable-next-line no-new-func + return new Function('__self', 'event', `${decoded}`).bind(null, comp); + } else { + // Bare identifier: method name on the component + return comp[decoded] ? comp[decoded].bind(comp) : null; + } + } catch (e) { + console.warn(`el-ui: failed to compile handler: ${expr}`, e); + return null; + } + } +} diff --git a/ui/runtime/src/router.js b/ui/runtime/src/router.js new file mode 100644 index 0000000..0823485 --- /dev/null +++ b/ui/runtime/src/router.js @@ -0,0 +1,136 @@ +/** + * router.js — Graph-based routing for el-ui. + * + * Routes are nodes in the graph. Navigation activates the target route node, + * which spreads through the graph to any components subscribed to routing. + * This means route changes propagate with the same activation semantics as + * state changes — route-dependent components update automatically. + * + * Route nodes have: + * type: 'route' + * name: the path string + * content: the path string + * importance: starts at 0.5, boosted on activation (recently visited routes + * become more salient — models browser history behavior) + */ + +export class Router { + /** + * @param {import('./graph.js').Graph} graph + * @param {Record} routes path → Component class + */ + constructor(graph, routes) { + this.graph = graph; + this.routes = routes; + this.currentPath = window.location.pathname; + this._routeNodes = {}; + this._subscribers = []; + + // Seed each route as a node in the graph + for (const [path] of Object.entries(routes)) { + const id = graph.seed({ type: 'route', name: path, content: path, importance: 0.3 }); + this._routeNodes[path] = id; + } + + // Connect route nodes in path order (parent → child activation chain) + // e.g., / → /about → /about/team + const paths = Object.keys(routes).sort(); + for (let i = 0; i < paths.length - 1; i++) { + const parent = paths[i]; + const child = paths[i + 1]; + if (child.startsWith(parent) && parent !== child) { + graph.connect(this._routeNodes[parent], this._routeNodes[child], { + weight: 0.8, + relation: 'subroute', + }); + } + } + + // Listen for browser back/forward + window.addEventListener('popstate', () => { + this._activate(window.location.pathname); + }); + } + + /** + * Navigate to a path, update history, and activate the route graph node. + * @param {string} path + * @param {boolean} [replace=false] use replaceState instead of pushState + */ + navigate(path, replace = false) { + if (path === this.currentPath) return; + + if (replace) { + history.replaceState({}, '', path); + } else { + history.pushState({}, '', path); + } + + this._activate(path); + } + + /** + * Get the Component class for the current path. + * Falls back to the '*' wildcard route if present. + * @returns {any} + */ + currentComponent() { + return this.routes[this.currentPath] ?? this.routes['*'] ?? null; + } + + /** + * Subscribe to route changes. + * @param {function(string): void} callback called with the new path + * @returns {function} unsubscribe + */ + subscribe(callback) { + this._subscribers.push(callback); + return () => { + const idx = this._subscribers.indexOf(callback); + if (idx >= 0) this._subscribers.splice(idx, 1); + }; + } + + /** + * Generate an href-compatible link string. + * @param {string} path + * @returns {string} + */ + href(path) { + return path; + } + + /** @private */ + _activate(path) { + const prevPath = this.currentPath; + this.currentPath = path; + + // Find the best matching route + const matchedPath = this._matchPath(path); + if (matchedPath && this._routeNodes[matchedPath]) { + // Spreading activation from the new route node + this.graph.activate(this._routeNodes[matchedPath]); + // Boost importance of the newly visited route + const node = this.graph.get(this._routeNodes[matchedPath]); + if (node) node.importance = Math.min(1.0, node.importance + 0.2); + } + + // Notify route subscribers + if (path !== prevPath) { + this._subscribers.forEach(cb => cb(path)); + } + } + + /** @private */ + _matchPath(path) { + // Exact match first + if (this.routes[path]) return path; + // Prefix match (longest prefix wins) + const candidates = Object.keys(this.routes) + .filter(r => r !== '*' && path.startsWith(r)) + .sort((a, b) => b.length - a.length); + if (candidates.length > 0) return candidates[0]; + // Wildcard + return '*'; + } +} diff --git a/ui/spec/framework.md b/ui/spec/framework.md new file mode 100644 index 0000000..bb8f771 --- /dev/null +++ b/ui/spec/framework.md @@ -0,0 +1,578 @@ +# el-ui Framework Specification + +Version 0.1.0 — April 2026 + +--- + +## Overview + +el-ui is a frontend framework where state is an Engram graph and reactivity is spreading activation. + +Every framework answers the same question differently: **what re-renders when state changes?** + +| Framework | Reactivity model | +|-----------|-----------------| +| React | Virtual DOM diffing | +| Vue | Dependency tracking (Proxy-based) | +| Svelte | Compile-time analysis | +| **el-ui** | **Spreading activation over a state graph** | + +The core insight: treating component state as a graph of related nodes, and using the same spreading activation algorithm as the Engram knowledge engine to determine what to update. Reactivity is not declared, tracked, or diffed — it is activated and propagated, exactly as associative memory works in biological neural networks. + +--- + +## 1. Activation-Based Reactivity + +### 1.1 The Model + +Every piece of state in an el-ui application is a **node** in an in-browser Engram graph. Nodes have: + +- `id` — UUID, the node's identity +- `type` — `'state'`, `'route'`, or user-defined +- `name` — the state variable name +- `content` — the current value +- `importance` — a salience weight `[0, 1]`, boosted when the node is activated + +Nodes are connected by **edges** with a `weight` `[0, 1]` and a `relation` label. + +When state changes (via `setState()`), spreading activation runs from the changed node: + +``` +strength = parent_strength × edge.weight × target.importance +``` + +This is multiplicative, matching the Engram core engine (`engram-core/src/activation.rs`). Every factor must be non-trivial for a path to propagate — weak edges, dormant nodes, and irrelevant connections die immediately. Components subscribed to nodes in the resulting **activation surface** update. Everything else stays still. + +### 1.2 Why Multiplication, Not Addition + +Addition allows many weak signals to accumulate into false relevance — an observation from the Engram architecture. The brain's associative memory is conjunctive: a path requires ALL its links to be strong. Multiplication enforces this. If any factor is near zero, the path dies. + +### 1.3 Pruning + +Paths with activation strength below `PRUNE_THRESHOLD` (default: `0.01`) are cut. This prevents exponential blowup in large state graphs and models the brain's attention filter. + +### 1.4 Importance Boost + +When a node is updated, its importance increases by 0.1 (capped at 1.0). Recently-changed state is more salient — it activates more easily in future propagation. This mirrors long-term potentiation: frequently-used pathways become lower-resistance. + +--- + +## 2. Component Definition Syntax + +Components are defined in `.el` files (the same extension as el source). A component is a specialized el module. + +### 2.1 Structure + +``` +component ComponentName { + props { + // optional prop declarations + } + + state { + // optional state declarations + } + + fn methodName(param: Type) -> ReturnType { + // method body + } + + template { + // HTML template + } +} +``` + +All four sections (`props`, `state`, methods, `template`) are optional. Components with no template render an empty string. + +### 2.2 Props + +Props are inputs from the parent component. They are read-only inside the component. + +``` +props { + label: String // required + variant: String = "primary" // optional, with default + disabled: Bool = false // boolean with default + onClick: Fn() -> Void // function prop +} +``` + +Prop types: `String`, `Int`, `Float`, `Bool`, `Fn(...) -> T`, `[T]`, `T?`. + +### 2.3 State + +State declarations create nodes in the component's Engram graph. + +``` +state { + count: Int = 0 + label: String = "hello" + active: Bool = false +} +``` + +Each state variable becomes: +1. A node in `this._graph` (seeded at construction time) +2. A reactive binding: changing the value via `setState()` triggers activation + +### 2.4 Methods + +Methods are `fn` definitions inside the component body. They have access to the component's current state and can call `setState()`. + +``` +fn increment() -> Void { + count = count + 1 +} +``` + +State assignments in method bodies (`count = count + 1`) are compiled to `setState('count', count + 1)` calls. + +--- + +## 3. Template Syntax + +### 3.1 Interpolation + +Embed any expression with `{expr}`: + +``` +

    {count}

    +

    {"Hello, " + name + "!"}

    +{active ? "on" : "off"} +``` + +### 3.2 Event Binding + +Bind DOM events with `on:event={handler}`: + +``` + + value = e.target.value} /> +
    hovered = true} on:mouseleave={() => hovered = false} /> +``` + +Supported events: `click`, `input`, `change`, `mouseenter`, `mouseleave`, `keydown`, `keyup`, `keypress`, `focus`, `blur`, `submit`, `mousedown`, `mouseup`, `dblclick`, `contextmenu`. + +The compiler emits `data-el-{event}` attributes. The renderer binds handlers at mount time and rebinds after each patch. + +### 3.3 Dynamic Attributes + +``` +
    + +``` + +### 3.4 Static Attributes + +``` +
    + +``` + +### 3.5 Boolean Attributes + +``` + + +``` + +Boolean attributes emit the attribute name if the expression is truthy, nothing if falsy. + +### 3.6 Component Usage + +Components are invoked by their name (uppercase first letter). Props are passed as attributes: + +``` +
    ` | +| `RawText(s)` | Inline expression text, text content | + +### 8.3 Parser (`crates/el-ui-compiler/src/parser.rs`) + +Hand-written recursive descent. Produces `Vec`. Each component is parsed as: + +1. `component Name {` — component declaration +2. `props { ... }` — prop definitions (optional) +3. `state { ... }` — state definitions (optional) +4. `fn method(...) -> Type { ... }` — methods (optional, multiple) +5. `template { ... }` — template tree (optional) + +The template is parsed as a tree of `TemplateNode` values. HTML elements, component references, interpolations, and block directives are all represented as nodes in this tree. + +### 8.4 Code Generator (`crates/el-ui-compiler/src/codegen.rs`) + +The code generator transforms the AST into a JavaScript ES2022 module. For each component: + +1. Emits a class extending `Component` from the runtime. +2. In the constructor: seeds state nodes into `this._graph`, subscribes to activation events. +3. Emits `setState()`, which calls `this._graph.update()` to trigger activation. +4. Emits a `render()` method returning a template literal string. +5. Translates state assignments in methods: `count = count + 1` → `this.setState('count', count + 1)`. +6. Translates template interpolations: `{count}` → `${count}`. +7. Emits event handlers as `data-el-{event}` attributes for the renderer to bind. + +### 8.5 CLI + +```bash +# Compile a single .el file +el-ui-compiler App.el -o app.js + +# Default output: same name, .js extension +el-ui-compiler App.el # produces App.js +``` + +--- + +## 9. Production Build — Quantum-Sealed via engram-crypto + +The production build pipeline follows the el sealed artifact format: + +```bash +# 1. Compile .el to .js +el-ui-compiler App.el -o app.js --target prod + +# 2. Seal the JavaScript bundle +ENGRAM_SEAL_KEY=my-deploy-key el seal app.js -o app.sealed +``` + +The sealed artifact is an `ENGRAM01` sealed bundle (same format as the el production target): + +``` +Offset Size Field +────── ────── ───────────────────────────────────────── +0 8 Magic: b"ENGRAM01" +8 2 Format version: u16 big-endian (currently 1) +10 * JSON: { algorithm_id, signature, encapsulated_key, nonce, ciphertext } +``` + +AES-256-GCM encryption. The key is derived from the deployment binding (environment variable, machine fingerprint, or none). Without the key, the bundle is indistinguishable from random bytes. No static analysis tool can extract the application logic, queries, or API keys from a sealed bundle. + +**Why "quantum-sealed":** AES-256 is quantum-resistant at 128-bit quantum security (Grover's algorithm provides only a quadratic speedup). The `algorithm_id` field is forward-compatible with ML-KEM when it stabilizes. + +### 9.1 The `{#activate}` Query is Protected + +A key benefit of production sealing: `{#activate}` query strings are embedded in the compiled bundle and encrypted with the application logic. Proprietary semantic queries (which encode business logic about how your application understands its data) are invisible to competitors who decompile your application. + +--- + +## 10. Runtime Size Target + +The `dist/el-ui.js` runtime targets **under 15KB minified and gzipped**. As of v0.1: + +| Module | Purpose | ~Size | +|--------|---------|-------| +| `graph.js` | Engram graph (nodes, edges, activation, search, subscribe) | ~3KB | +| `activation.js` | Standalone activation utilities | ~1.5KB | +| `renderer.js` | DOM patching, event binding | ~2KB | +| `router.js` | Graph-based routing | ~1.5KB | +| `index.js` | Component base class, `mount()`, re-exports | ~1KB | + +Total: ~9KB source, ~4KB minified+gzipped (estimated). + +--- + +## 11. Versioning and Compatibility + +el-ui follows semantic versioning. + +- **v0.1.x** — Initial release. Full re-render on state change. String-based `{#activate}` search. +- **v0.2.x** — Targeted DOM patching (patch only nodes in the activation surface). `{#activate}` with embedding-based semantic search. +- **v0.3.x** — ML-KEM sealed artifacts. Engram database integration for compile-time semantic type checking of `{#activate}` queries. +- **v1.0.0** — Stable API. Full production sealing. LSP integration with spreading activation autocomplete. + +--- + +## 12. Relationship to el + +el-ui `.el` files share the `.el` extension with el source files. Components are specialized el modules — in a future version, an `.el` file can mix component definitions with el type definitions, constants, and utility functions in a single compilation unit. + +The spreading activation algorithm in `graph.js` and `activation.js` faithfully mirrors `engram-core/src/activation.rs`: +- Same BFS-based traversal +- Same multiplicative strength formula +- Same pruning threshold semantics +- Same winner-take-most rule (strongest path to each node wins) + +The in-browser graph is a lightweight implementation without Engram's full embedding vector machinery. In production, a WASM-compiled Engram core can replace the JavaScript graph entirely, enabling true semantic activation with cosine similarity over embedding vectors.